fix(vim): ensure run command open a new split
For some reason the Run command was no longer opening a new window. It was just failing.
This commit is contained in:
parent
56b2b01f6f
commit
dab35e8523
1 changed files with 1 additions and 1 deletions
|
|
@ -13,7 +13,7 @@ function! s:aa_run(command)
|
||||||
let l:split = '-v'
|
let l:split = '-v'
|
||||||
endif
|
endif
|
||||||
|
|
||||||
execute 'silent !tmux split-window -p 50 ' . l:split . ' && tmux send-keys "' . a:command . '" C-m'
|
execute 'silent !tmux split-window ' . l:split . ' && tmux send-keys "' . a:command . '" C-m'
|
||||||
return
|
return
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue