We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6825794 commit f4f473cCopy full SHA for f4f473c
autoload/easycomplete/pum.vim
@@ -221,8 +221,11 @@ function! s:OpenPum(startcol, lines)
221
call nvim_win_set_cursor(s:pum_window, [1, 0])
222
call s:RenderScrollBar()
223
call s:RenderScrollThumb()
224
- noa setl textwidth=0
225
- noa setl completeopt=menu
+ " 缓解在 cmdline 中匹配查找时造成Search高亮的抖动
+ if !(exists("g:easycomplete_cmdline_typing") && g:easycomplete_cmdline_typing == 1)
226
+ noa setl textwidth=0
227
+ noa setl completeopt=menu
228
+ endif
229
if g:easycomplete_ghost_text &&
230
\ !(exists("g:easycomplete_cmdline_typing") && g:easycomplete_cmdline_typing == 1)
231
noa setlocal lazyredraw
0 commit comments