From 84ddd0c5f6f509d3997668dfb902bfe8b04e6ecf Mon Sep 17 00:00:00 2001 From: jdhao Date: Sun, 17 Jan 2021 23:46:34 +0800 Subject: [PATCH] Remove number from spell suggestion It seems that adding number to the default spell suggestion (fast) will make Neovim super slow when we press z= for spell suggestions. Without that number, Neovim will be super responsive. See also vim/vim#4087. --- core/options.vim | 1 - 1 file changed, 1 deletion(-) diff --git a/core/options.vim b/core/options.vim index 3f8d883..abe9b26 100644 --- a/core/options.vim +++ b/core/options.vim @@ -123,7 +123,6 @@ set pumheight=10 " Maximum number of items to show in popup menu set complete+=kspell complete-=w complete-=b complete-=u complete-=t set spelllang=en,cjk " Spell languages -set spellsuggest+=10 " The number of suggestions shown in the screen for z= " Align indent to next multiple value of shiftwidth. For its meaning, " see http://vim.1045645.n5.nabble.com/shiftround-option-td5712100.html