diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2019-06-01 11:48:53 +1200 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2019-06-01 11:48:53 +1200 |
commit | 1cd19aa3fe276f1b71d19cb8171d140335132d1f (patch) | |
tree | 0366ddd8f12d46d920c1bc0da2cdc16487e46917 /autoload/write_mkpath.vim | |
parent | Merge branch 'hotfix/v1.1.1' (diff) | |
download | vim-write-mkpath-1cd19aa3fe276f1b71d19cb8171d140335132d1f.tar.gz vim-write-mkpath-1cd19aa3fe276f1b71d19cb8171d140335132d1f.zip |
Wipe alternate buffer
Diffstat (limited to 'autoload/write_mkpath.vim')
-rw-r--r-- | autoload/write_mkpath.vim | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/autoload/write_mkpath.vim b/autoload/write_mkpath.vim index 3bcd786..6c55e78 100644 --- a/autoload/write_mkpath.vim +++ b/autoload/write_mkpath.vim @@ -20,7 +20,10 @@ function! write_mkpath#New(path) abort " Set filename to absolute path using :file {name}; do it silently so that " the nice name remains displayed to the user. Record the name of the " alternate buffer first, so we can put it back after :file messes with it. - execute 'silent keepalt file '.fnameescape(getcwd().'/'.a:path) + execute 'silent file '.fnameescape(getcwd().'/'.a:path) + + " Wipe the unlisted alternate buffer that :file leaves behind + bwipe # endfunction |