We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b0cbdc commit 761f854Copy full SHA for 761f854
autoload/quickui/core.vim
@@ -406,6 +406,9 @@ function! quickui#core#buffer_alloc()
406
call setbufvar(bid, 'noswapfile', 1)
407
else
408
let bid = nvim_create_buf(v:false, v:true)
409
+ call setbufvar(bid, '&buftype', 'nofile')
410
+ call setbufvar(bid, '&bufhidden', 'hide')
411
+ call setbufvar(bid, 'noswapfile', 1)
412
endif
413
414
call setbufvar(bid, '&modifiable', 1)
0 commit comments