diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-08-14 19:11:36 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-14 19:11:36 +0800 |
commit | b1faf5f0b92356c5abb434cbb978c1db34f89c4a (patch) | |
tree | 6180d8b5d36e09b6874e3075110f87f1fa05dcda /runtime | |
parent | c77cce615b1bdacd60f98ba5f41540535d142a1f (diff) | |
download | rneovim-b1faf5f0b92356c5abb434cbb978c1db34f89c4a.tar.gz rneovim-b1faf5f0b92356c5abb434cbb978c1db34f89c4a.tar.bz2 rneovim-b1faf5f0b92356c5abb434cbb978c1db34f89c4a.zip |
vim-patch:8.2.4249: the timeout limit for spell suggestions is always 5000 (#19769)
Problem: The timeout limit for spell suggestions is always 5000 milli
seconds.
Solution: Add the "timeout" entry to 'spellsuggest'.
https://github.com/vim/vim/commit/585ee07cfef307b2fc828537e0d31fdc22d7e79f
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/options.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index 614c6aec60..579c76d57e 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -5876,6 +5876,11 @@ A jump table for the options with a short description can be found at |Q_op|. suggestions is never more than the value of 'lines' minus two. + timeout:{millisec} Limit the time searching for suggestions to + {millisec} milli seconds. Applies to the following + methods. When omitted the limit is 5000. When + negative there is no limit. + file:{filename} Read file {filename}, which must have two columns, separated by a slash. The first column contains the bad word, the second column the suggested good word. |