commit | b8060fe862f684b591f9ac679eac5b2594d6c5a0 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Tue Jan 19 22:29:28 2016 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Tue Jan 19 22:29:28 2016 +0100 |
tree | eaa1b9362e597709e26042b70c7c0556c90ab003 | |
parent | 6773a348da0dcf45df3c6c6649880655ec0d2042 [diff] [blame] |
patch 7.4.1142 Problem: Cannot define keyword characters for a syntax file. Solution: Add the ":syn iskeyword" command. (Christian Brabandt)
diff --git a/src/buffer.c b/src/buffer.c index fd94a27..8986ac4 100644 --- a/src/buffer.c +++ b/src/buffer.c
@@ -1955,6 +1955,7 @@ clear_string_option(&buf->b_p_nf); #ifdef FEAT_SYN_HL clear_string_option(&buf->b_p_syn); + clear_string_option(&buf->b_s.b_syn_isk); #endif #ifdef FEAT_SPELL clear_string_option(&buf->b_s.b_p_spc);