More flexible send-to-program functions

This commit is contained in:
Henrik Lissner 2015-03-18 03:17:24 -04:00
parent e2e38273ba
commit bc1881def9
2 changed files with 20 additions and 14 deletions

View file

@ -72,10 +72,12 @@
"\\ ]" 'next-buffer
"\\ [" 'previous-buffer
"\\ o f" 'my-send-dir-to-finder
"\\ o u" 'my-send-to-transmit
"\\ o l" 'my-send-to-launchbar
"\\ o L" 'my-send-dir-to-launchbar
"\\ o f" (λ (my-send-dir-to-finder default-directory))
"\\ o F" 'my-send-dir-to-finder
"\\ o u" (λ (my-send-to-transmit buffer-file-name))
"\\ o U" 'my-send-to-transmit
"\\ o l" (λ (my-send-to-launchbar buffer-file-name))
"\\ o L" 'my-send-to-launchbar
;; tmux: cd (default-directory)
"\\ o t" (λ (ex:tmux-chdir nil t))