Skip to content

Commit

Permalink
Pass correct argument to bufhidden var in vim_api (#131)
Browse files Browse the repository at this point in the history
  • Loading branch information
z0rc authored Apr 21, 2022
1 parent 4c54bd7 commit 3cf8e52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autoload/wilder/renderer/vim_api.vim
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ function! s:new_buf() abort
call bufload(l:buf)

call setbufvar(l:buf, '&buftype', 'nofile')
call setbufvar(l:buf, '&bufhidden', 1)
call setbufvar(l:buf, '&bufhidden', 'hide')
call setbufvar(l:buf, '&swapfile', 0)
call setbufvar(l:buf, '&undolevels', -1)

Expand Down

0 comments on commit 3cf8e52

Please sign in to comment.