From 3e8ecdb1180c4c1ab4913cfd766c0e804b1e154f Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Fri, 7 Aug 2015 12:50:43 +0200 Subject: [PATCH] Fix tmux commands --- core/lib/defuns-tmux.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/lib/defuns-tmux.el b/core/lib/defuns-tmux.el index 2d73c9222..4978723b1 100644 --- a/core/lib/defuns-tmux.el +++ b/core/lib/defuns-tmux.el @@ -12,7 +12,7 @@ (evil-define-command narf:tmux-run (&optional command bang) "Sends input to tmux. Use `bang' to append to tmux" (interactive "") - (nerf/tmux-send (format (if bang "C-u %s Enter" "%s") + (narf--tmux-send (format (if bang "C-u %s Enter" "%s") (shell-quote-argument command))) (when (evil-ex-p) (message "[Tmux] %s" command))) @@ -27,7 +27,7 @@ (file-truename path) (error "Directory doesn't exist %s" path)) (if bang default-directory (narf/project-root)))))) - (nerf/tmux-send (format "C-u cd Space %s Enter" (shell-quote-argument dir))) + (narf--tmux-send (format "C-u cd Space %s Enter" (shell-quote-argument dir))) (when (evil-ex-p) (message "[Tmux] cd %s" dir))))