From 57bbdc447877c1bebeff2479aeab9442658e451b Mon Sep 17 00:00:00 2001 From: Thales Mello <1127394+thalesmello@users.noreply.github.com> Date: Sat, 13 Feb 2021 10:09:55 -0800 Subject: [PATCH] Enable tab autocompletion on VimuxPromptOption (#142) --- plugin/vimux.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/vimux.vim b/plugin/vimux.vim index f41eb00..6f9d722 100644 --- a/plugin/vimux.vim +++ b/plugin/vimux.vim @@ -167,7 +167,7 @@ endfunction function! VimuxPromptCommand(...) let command = a:0 == 1 ? a:1 : "" - let l:command = input(_VimuxOption("g:VimuxPromptString", "Command? "), command) + let l:command = input(_VimuxOption("g:VimuxPromptString", "Command? "), command, 'shellcmd') call VimuxRunCommand(l:command) endfunction