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/structs.h b/src/structs.h index 5c65cc6..143d46d 100644 --- a/src/structs.h +++ b/src/structs.h
@@ -1362,6 +1362,8 @@ #if !defined(FEAT_SYN_HL) && !defined(FEAT_SPELL) int dummy; #endif + char_u b_syn_chartab[32]; /* syntax iskeyword option */ + char_u *b_syn_isk; /* iskeyword option */ } synblock_T;