From 8fb2563918937e0bc53718de02ce000e7c97db8a Mon Sep 17 00:00:00 2001 From: Brian Riddle Date: Mon, 22 Oct 2012 09:07:33 +0200 Subject: [PATCH] Moved default outside if statement. --- plugin/vimux.vim | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/plugin/vimux.vim b/plugin/vimux.vim index 3f186bb..41c6f54 100644 --- a/plugin/vimux.vim +++ b/plugin/vimux.vim @@ -154,10 +154,9 @@ endfunction function VimuxPromptCommand() + let l:command = input("Command? ") if exists("g:VimuxPromptString") let l:command = input(g:VimuxPromptString) - elseif - let l:command = input("Command? ") endif call VimuxRunCommand(l:command) endfunction