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 56db16f commit e3b6155Copy full SHA for e3b6155
autoload/sy/util.vim
@@ -153,7 +153,7 @@ function! sy#util#popup_create(hunkdiff) abort
153
\ 'height': height,
154
\ })
155
call nvim_win_set_option(s:popup_window, 'cursorline', v:false)
156
- call nvim_win_set_option(s:popup_window, 'foldcolumn', 0)
+ call nvim_win_set_option(s:popup_window, 'foldcolumn', has('nvim-0.5') ? '0' : 0)
157
call nvim_win_set_option(s:popup_window, 'foldenable', v:false)
158
call nvim_win_set_option(s:popup_window, 'number', v:false)
159
call nvim_win_set_option(s:popup_window, 'relativenumber', v:false)
0 commit comments