comparison runtime/doc/options.txt @ 20802:ed00f0fbdaef v8.2.0953

patch 8.2.0953: spell checking doesn't work for CamelCased words Commit: https://github.com/vim/vim/commit/362b44bd4aa87a2aef0f8fd5a28d68dd09a7d909 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Jun 10 21:47:00 2020 +0200 patch 8.2.0953: spell checking doesn't work for CamelCased words Problem: Spell checking doesn't work for CamelCased words. Solution: Add the "camel" value in the new option 'spelloptions'. (closes #1235)
author Bram Moolenaar <Bram@vim.org>
date Wed, 10 Jun 2020 22:00:04 +0200
parents 47bfe07e06a3
children 8e5f991db3b4
comparison
equal deleted inserted replaced
20801:f69512e0cedc 20802:ed00f0fbdaef
7103 After this option has been set successfully, Vim will source the files 7103 After this option has been set successfully, Vim will source the files
7104 "spell/LANG.vim" in 'runtimepath'. "LANG" is the value of 'spelllang' 7104 "spell/LANG.vim" in 'runtimepath'. "LANG" is the value of 'spelllang'
7105 up to the first character that is not an ASCII letter or number and 7105 up to the first character that is not an ASCII letter or number and
7106 not a dash. Also see |set-spc-auto|. 7106 not a dash. Also see |set-spc-auto|.
7107 7107
7108 *'spelloptions'* *'spo'*
7109 'spelloptions' 'spo' string (default "")
7110 local to buffer
7111 {not available when compiled without the |+syntax|
7112 feature}
7113 A comma separated list of options for spell checking:
7114 camel When a word is CamelCased, assume "Cased" is a
7115 separate word: every upper-case character in a word
7116 that comes after a lower case character indicates the
7117 start of a new word.
7108 7118
7109 *'spellsuggest'* *'sps'* 7119 *'spellsuggest'* *'sps'*
7110 'spellsuggest' 'sps' string (default "best") 7120 'spellsuggest' 'sps' string (default "best")
7111 global 7121 global
7112 {not available when compiled without the |+syntax| 7122 {not available when compiled without the |+syntax|