comparison src/buffer.c @ 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 d571231175b4
children db18625d8134
comparison
equal deleted inserted replaced
20801:f69512e0cedc 20802:ed00f0fbdaef
2285 clear_string_option(&buf->b_s.b_p_spc); 2285 clear_string_option(&buf->b_s.b_p_spc);
2286 clear_string_option(&buf->b_s.b_p_spf); 2286 clear_string_option(&buf->b_s.b_p_spf);
2287 vim_regfree(buf->b_s.b_cap_prog); 2287 vim_regfree(buf->b_s.b_cap_prog);
2288 buf->b_s.b_cap_prog = NULL; 2288 buf->b_s.b_cap_prog = NULL;
2289 clear_string_option(&buf->b_s.b_p_spl); 2289 clear_string_option(&buf->b_s.b_p_spl);
2290 clear_string_option(&buf->b_s.b_p_spo);
2290 #endif 2291 #endif
2291 #ifdef FEAT_SEARCHPATH 2292 #ifdef FEAT_SEARCHPATH
2292 clear_string_option(&buf->b_p_sua); 2293 clear_string_option(&buf->b_p_sua);
2293 #endif 2294 #endif
2294 clear_string_option(&buf->b_p_ft); 2295 clear_string_option(&buf->b_p_ft);