Allow all commands to be used in chains (#182)

Allow all commands to be used in chains
fix-tmux-next-3dot4
Caleb Maclennan 3 years ago committed by GitHub
parent ed12df373a
commit a2ab8880a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -20,19 +20,19 @@ if !executable(s:VimuxTmuxCmd())
finish finish
endif endif
command -nargs=* VimuxRunCommand :call VimuxRunCommand(<args>) command -bar -nargs=* VimuxRunCommand :call VimuxRunCommand(<args>)
command VimuxRunLastCommand :call VimuxRunLastCommand() command -bar VimuxRunLastCommand :call VimuxRunLastCommand()
command VimuxOpenRunner :call VimuxOpenRunner() command -bar VimuxOpenRunner :call VimuxOpenRunner()
command VimuxCloseRunner :call VimuxCloseRunner() command -bar VimuxCloseRunner :call VimuxCloseRunner()
command VimuxZoomRunner :call VimuxZoomRunner() command -bar VimuxZoomRunner :call VimuxZoomRunner()
command VimuxInspectRunner :call VimuxInspectRunner() command -bar VimuxInspectRunner :call VimuxInspectRunner()
command VimuxScrollUpInspect :call VimuxScrollUpInspect() command -bar VimuxScrollUpInspect :call VimuxScrollUpInspect()
command VimuxScrollDownInspect :call VimuxScrollDownInspect() command -bar VimuxScrollDownInspect :call VimuxScrollDownInspect()
command VimuxInterruptRunner :call VimuxInterruptRunner() command -bar VimuxInterruptRunner :call VimuxInterruptRunner()
command -nargs=? VimuxPromptCommand :call VimuxPromptCommand(<args>) command -bar -nargs=? VimuxPromptCommand :call VimuxPromptCommand(<args>)
command VimuxClearTerminalScreen :call VimuxClearTerminalScreen() command -bar VimuxClearTerminalScreen :call VimuxClearTerminalScreen()
command VimuxClearRunnerHistory :call VimuxClearRunnerHistory() command -bar VimuxClearRunnerHistory :call VimuxClearRunnerHistory()
command VimuxTogglePane :call VimuxTogglePane() command -bar VimuxTogglePane :call VimuxTogglePane()
function! VimuxRunCommandInDir(command, useFile) function! VimuxRunCommandInDir(command, useFile)
let l:file = '' let l:file = ''

Loading…
Cancel
Save