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:
Ade Attwood 2024-05-19 19:18:46 +01:00
parent 56b2b01f6f
commit dab35e8523

View file

@ -13,7 +13,7 @@ function! s:aa_run(command)
let l:split = '-v'
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
endif