Implemented simple SplitOpen function and command

This commit is contained in:
Michael Mandl 2019-10-18 13:25:21 +02:00
parent ce309777fe
commit 619265f363

13
plugin/split-open.vim Normal file
View file

@ -0,0 +1,13 @@
function! SplitOpenFile(filename)
execute("tabedit " . a:filename)
let l:file_extension = tolower(fnamemodify(a:filename, ":e"))
if l:file_extension == "cpp"
execute("FSSplitLeft")
execute("wincmd l")
elseif l:file_extension == "h"
execute("FSSplitRight")
execute("wincmd h")
endif
endfunction
command! -nargs=1 SplitOpen :call SplitOpenFile("<args>")