Skip to content
Snippets Groups Projects
Commit b5850ebd authored by Junegunn Choi's avatar Junegunn Choi
Browse files

[vim] Open selected file in the current window if it's empty

Close #451
parent ac0a62e4
No related branches found
No related tags found
No related merge requests found
......@@ -409,10 +409,16 @@ function! s:cmd_callback(lines) abort
augroup END
endif
try
let empty = empty(expand('%')) && line('$') == 1 && empty(getline(1)) && !&modified
let autochdir = &autochdir
set noautochdir
for item in a:lines
execute cmd s:escape(item)
if empty
execute 'e' s:escape(item)
let empty = 0
else
execute cmd s:escape(item)
endif
if exists('#BufEnter') && isdirectory(item)
doautocmd BufEnter
endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment