Implemented simple SplitOpen function and command

pull/1/head
mandlm 2019-10-18 13:25:21 +02:00
parent ce309777fe
commit 619265f363
1 changed files with 13 additions and 0 deletions

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>")