diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-06-10 21:47:00 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-06-10 21:47:00 +0200 |
commit | 362b44bd4aa87a2aef0f8fd5a28d68dd09a7d909 (patch) | |
tree | b3fa3018fe6a580e84e61b69c13d35aa2c193c59 /runtime/doc/options.txt | |
parent | be5ee8686a50acf07b823bd293f9c765e533d213 (diff) | |
download | vim-git-362b44bd4aa87a2aef0f8fd5a28d68dd09a7d909.tar.gz |
patch 8.2.0953: spell checking doesn't work for CamelCased wordsv8.2.0953
Problem: Spell checking doesn't work for CamelCased words.
Solution: Add the "camel" value in the new option 'spelloptions'.
(closes #1235)
Diffstat (limited to 'runtime/doc/options.txt')
-rw-r--r-- | runtime/doc/options.txt | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index 9f9ae9491..d8e3192fd 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -7105,6 +7105,16 @@ A jump table for the options with a short description can be found at |Q_op|. up to the first character that is not an ASCII letter or number and not a dash. Also see |set-spc-auto|. + *'spelloptions'* *'spo'* +'spelloptions' 'spo' string (default "") + local to buffer + {not available when compiled without the |+syntax| + feature} + A comma separated list of options for spell checking: + camel When a word is CamelCased, assume "Cased" is a + separate word: every upper-case character in a word + that comes after a lower case character indicates the + start of a new word. *'spellsuggest'* *'sps'* 'spellsuggest' 'sps' string (default "best") |