aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjdhao <jdhao@hotmail.com>2021-01-17 23:46:34 +0800
committerjdhao <jdhao@hotmail.com>2021-01-17 23:46:34 +0800
commit84ddd0c5f6f509d3997668dfb902bfe8b04e6ecf (patch)
tree304873fca2f6fecf0b8a6c6f963ef5337b26dcfa
parentc81d148627fcbba2c3120110155ed3f8104bb985 (diff)
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.
-rw-r--r--core/options.vim1
1 files changed, 0 insertions, 1 deletions
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