Skip to content

Commit a2ab888

Browse files
authored
Allow all commands to be used in chains (#182)
Allow all commands to be used in chains
1 parent ed12df3 commit a2ab888

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

plugin/vimux.vim

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -20,19 +20,19 @@ if !executable(s:VimuxTmuxCmd())
2020
finish
2121
endif
2222

23-
command -nargs=* VimuxRunCommand :call VimuxRunCommand(<args>)
24-
command VimuxRunLastCommand :call VimuxRunLastCommand()
25-
command VimuxOpenRunner :call VimuxOpenRunner()
26-
command VimuxCloseRunner :call VimuxCloseRunner()
27-
command VimuxZoomRunner :call VimuxZoomRunner()
28-
command VimuxInspectRunner :call VimuxInspectRunner()
29-
command VimuxScrollUpInspect :call VimuxScrollUpInspect()
30-
command VimuxScrollDownInspect :call VimuxScrollDownInspect()
31-
command VimuxInterruptRunner :call VimuxInterruptRunner()
32-
command -nargs=? VimuxPromptCommand :call VimuxPromptCommand(<args>)
33-
command VimuxClearTerminalScreen :call VimuxClearTerminalScreen()
34-
command VimuxClearRunnerHistory :call VimuxClearRunnerHistory()
35-
command VimuxTogglePane :call VimuxTogglePane()
23+
command -bar -nargs=* VimuxRunCommand :call VimuxRunCommand(<args>)
24+
command -bar VimuxRunLastCommand :call VimuxRunLastCommand()
25+
command -bar VimuxOpenRunner :call VimuxOpenRunner()
26+
command -bar VimuxCloseRunner :call VimuxCloseRunner()
27+
command -bar VimuxZoomRunner :call VimuxZoomRunner()
28+
command -bar VimuxInspectRunner :call VimuxInspectRunner()
29+
command -bar VimuxScrollUpInspect :call VimuxScrollUpInspect()
30+
command -bar VimuxScrollDownInspect :call VimuxScrollDownInspect()
31+
command -bar VimuxInterruptRunner :call VimuxInterruptRunner()
32+
command -bar -nargs=? VimuxPromptCommand :call VimuxPromptCommand(<args>)
33+
command -bar VimuxClearTerminalScreen :call VimuxClearTerminalScreen()
34+
command -bar VimuxClearRunnerHistory :call VimuxClearRunnerHistory()
35+
command -bar VimuxTogglePane :call VimuxTogglePane()
3636

3737
function! VimuxRunCommandInDir(command, useFile)
3838
let l:file = ''

0 commit comments

Comments
 (0)