doomemacs/modules/tools/tmux/autoload/evil.el
2017-02-20 00:26:08 -05:00

15 lines
408 B
EmacsLisp

;;; extra/tmux/autoload/evil.el
;;;###autoload (autoload '+tmux:run "extra/tmux/autoload/evil" nil t)
(evil-define-command +tmux:run (command bang)
(interactive "<fsh><!>")
(+tmux/run command bang))
;;;###autoload (autoload '+tmux:cd-here "extra/tmux/autoload/evil" nil t)
(evil-define-command +tmux:cd-here (bang)
(interactive "<!>")
(if bang
(+tmux/cd-to-here)
(+tmux/cd-to-project)))