2017-04-09 22:25:18 -04:00
|
|
|
;;; tools/tmux/autoload/evil.el
|
2017-02-19 18:55:00 -05:00
|
|
|
|
2017-04-09 22:25:18 -04:00
|
|
|
;;;###autoload (autoload '+tmux:run "tools/tmux/autoload/evil" nil t)
|
2017-02-19 18:55:00 -05:00
|
|
|
(evil-define-command +tmux:run (command bang)
|
|
|
|
(interactive "<fsh><!>")
|
|
|
|
(+tmux/run command bang))
|
|
|
|
|
2017-04-09 22:25:18 -04:00
|
|
|
;;;###autoload (autoload '+tmux:cd-here "tools/tmux/autoload/evil" nil t)
|
2017-02-19 18:55:00 -05:00
|
|
|
(evil-define-command +tmux:cd-here (bang)
|
|
|
|
(interactive "<!>")
|
|
|
|
(if bang
|
|
|
|
(+tmux/cd-to-here)
|
|
|
|
(+tmux/cd-to-project)))
|
|
|
|
|