Skip to content

Commit b8965b0

Browse files
author
Niklas Koll
committed
Fix opening command ignored with tempfile
1 parent d735b5b commit b8965b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

autoload/inline_edit/proxy.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ function! s:CreateProxyBuffer(proxy, lines)
172172
$delete _
173173
set nomodified
174174
elseif g:inline_edit_proxy_type == 'tempfile'
175-
exe 'silent noswapfile split ' . tempname()
175+
exe 'silent noswapfile ' . g:inline_edit_new_buffer_command . ' ' . tempname()
176176
call append(0, lines)
177177
$delete _
178178
write

0 commit comments

Comments
 (0)