comparison src/option.h @ 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 cea8ae407452
children 35921b7fc07a
comparison
equal deleted inserted replaced
20801:f69512e0cedc 20802:ed00f0fbdaef
911 #endif 911 #endif
912 #ifdef FEAT_SPELL 912 #ifdef FEAT_SPELL
913 EXTERN char_u *p_spc; // 'spellcapcheck' 913 EXTERN char_u *p_spc; // 'spellcapcheck'
914 EXTERN char_u *p_spf; // 'spellfile' 914 EXTERN char_u *p_spf; // 'spellfile'
915 EXTERN char_u *p_spl; // 'spelllang' 915 EXTERN char_u *p_spl; // 'spelllang'
916 EXTERN char_u *p_spo; // 'spelloptions'
916 EXTERN char_u *p_sps; // 'spellsuggest' 917 EXTERN char_u *p_sps; // 'spellsuggest'
917 #endif 918 #endif
918 EXTERN int p_spr; // 'splitright' 919 EXTERN int p_spr; // 'splitright'
919 EXTERN int p_sol; // 'startofline' 920 EXTERN int p_sol; // 'startofline'
920 EXTERN char_u *p_su; // 'suffixes' 921 EXTERN char_u *p_su; // 'suffixes'
1183 #endif 1184 #endif
1184 #ifdef FEAT_SPELL 1185 #ifdef FEAT_SPELL
1185 , BV_SPC 1186 , BV_SPC
1186 , BV_SPF 1187 , BV_SPF
1187 , BV_SPL 1188 , BV_SPL
1189 , BV_SPO
1188 #endif 1190 #endif
1189 , BV_STS 1191 , BV_STS
1190 #ifdef FEAT_SEARCHPATH 1192 #ifdef FEAT_SEARCHPATH
1191 , BV_SUA 1193 , BV_SUA
1192 #endif 1194 #endif