Mercurial > vim
annotate src/syntax.c @ 21788:acd6c7f8b633
Added tag v8.2.1443 for changeset 837e6a429950e6d4eb6ab657e01379306bdc694d
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Thu, 13 Aug 2020 21:45:06 +0200 |
parents | e35955a787a8 |
children | a6af570dad75 |
rev | line source |
---|---|
10042
4aead6a9b7a9
commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents:
9939
diff
changeset
|
1 /* vi:set ts=8 sts=4 sw=4 noet: |
7 | 2 * |
3 * VIM - Vi IMproved by Bram Moolenaar | |
4 * | |
5 * Do ":help uganda" in Vim to read copying and usage conditions. | |
6 * Do ":help credits" in Vim to see a list of people who contributed. | |
7 * See README.txt for an overview of the Vim source code. | |
8 */ | |
9 | |
10 /* | |
11 * syntax.c: code for syntax highlighting | |
12 */ | |
13 | |
14 #include "vim.h" | |
15 | |
16 #if defined(FEAT_SYN_HL) || defined(PROTO) | |
17 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
18 #define SYN_NAMELEN 50 // maximum length of a syntax name |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
19 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
20 // different types of offsets that are possible |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
21 #define SPO_MS_OFF 0 // match start offset |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
22 #define SPO_ME_OFF 1 // match end offset |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
23 #define SPO_HS_OFF 2 // highl. start offset |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
24 #define SPO_HE_OFF 3 // highl. end offset |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
25 #define SPO_RS_OFF 4 // region start offset |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
26 #define SPO_RE_OFF 5 // region end offset |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
27 #define SPO_LC_OFF 6 // leading context offset |
7 | 28 #define SPO_COUNT 7 |
29 | |
30 static char *(spo_name_tab[SPO_COUNT]) = | |
31 {"ms=", "me=", "hs=", "he=", "rs=", "re=", "lc="}; | |
32 | |
20623
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
33 static char e_illegal_arg[] = N_("E390: Illegal argument: %s"); |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
34 |
7 | 35 /* |
36 * The patterns that are being searched for are stored in a syn_pattern. | |
37 * A match item consists of one pattern. | |
38 * A start/end item consists of n start patterns and m end patterns. | |
39 * A start/skip/end item consists of n start patterns, one skip pattern and m | |
40 * end patterns. | |
41 * For the latter two, the patterns are always consecutive: start-skip-end. | |
42 * | |
43 * A character offset can be given for the matched text (_m_start and _m_end) | |
44 * and for the actually highlighted text (_h_start and _h_end). | |
13333
b4e7082de11d
patch 8.0.1541: synpat_T is taking too much memory
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
45 * |
b4e7082de11d
patch 8.0.1541: synpat_T is taking too much memory
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
46 * Note that ordering of members is optimized to reduce padding. |
7 | 47 */ |
48 typedef struct syn_pattern | |
49 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
50 char sp_type; // see SPTYPE_ defines below |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
51 char sp_syncing; // this item used for syncing |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
52 short sp_syn_match_id; // highlight group ID of pattern |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
53 short sp_off_flags; // see below |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
54 int sp_offsets[SPO_COUNT]; // offsets |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
55 int sp_flags; // see HL_ defines below |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
56 #ifdef FEAT_CONCEAL |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
57 int sp_cchar; // conceal substitute character |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
58 #endif |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
59 int sp_ic; // ignore-case flag for sp_prog |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
60 int sp_sync_idx; // sync item index (syncing only) |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
61 int sp_line_id; // ID of last line where tried |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
62 int sp_startcol; // next match in sp_line_id line |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
63 short *sp_cont_list; // cont. group IDs, if non-zero |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
64 short *sp_next_list; // next group IDs, if non-zero |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
65 struct sp_syn sp_syn; // struct passed to in_id_list() |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
66 char_u *sp_pattern; // regexp to match, pattern |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
67 regprog_T *sp_prog; // regexp to match, program |
4766
ec24ff78a79c
updated for version 7.3.1130
Bram Moolenaar <bram@vim.org>
parents:
4764
diff
changeset
|
68 #ifdef FEAT_PROFILE |
4764
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
69 syn_time_T sp_time; |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
70 #endif |
7 | 71 } synpat_T; |
72 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
73 // The sp_off_flags are computed like this: |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
74 // offset from the start of the matched text: (1 << SPO_XX_OFF) |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
75 // offset from the end of the matched text: (1 << (SPO_XX_OFF + SPO_COUNT)) |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
76 // When both are present, only one is used. |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
77 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
78 #define SPTYPE_MATCH 1 // match keyword with this group ID |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
79 #define SPTYPE_START 2 // match a regexp, start of item |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
80 #define SPTYPE_END 3 // match a regexp, end of item |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
81 #define SPTYPE_SKIP 4 // match a regexp, skip within item |
7 | 82 |
83 | |
84 #define SYN_ITEMS(buf) ((synpat_T *)((buf)->b_syn_patterns.ga_data)) | |
85 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
86 #define NONE_IDX -2 // value of sp_sync_idx for "NONE" |
7 | 87 |
88 /* | |
89 * Flags for b_syn_sync_flags: | |
90 */ | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
91 #define SF_CCOMMENT 0x01 // sync on a C-style comment |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
92 #define SF_MATCH 0x02 // sync by matching a pattern |
7 | 93 |
94 #define SYN_STATE_P(ssp) ((bufstate_T *)((ssp)->ga_data)) | |
95 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
96 #define MAXKEYWLEN 80 // maximum length of a keyword |
7 | 97 |
98 /* | |
99 * The attributes of the syntax item that has been recognized. | |
100 */ | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
101 static int current_attr = 0; // attr of current syntax word |
7 | 102 #ifdef FEAT_EVAL |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
103 static int current_id = 0; // ID of current char for syn_get_id() |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
104 static int current_trans_id = 0; // idem, transparency removed |
7 | 105 #endif |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
106 #ifdef FEAT_CONCEAL |
2425
b5ee68272ae5
Fix: concealed regions didn't get redrawn correctly when moving the cursor
Bram Moolenaar <bram@vim.org>
parents:
2418
diff
changeset
|
107 static int current_flags = 0; |
2392
0371401d9d33
Give each syntax item a sequence number, so that we know when it starts and
Bram Moolenaar <bram@vim.org>
parents:
2375
diff
changeset
|
108 static int current_seqnr = 0; |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
109 static int current_sub_char = 0; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
110 #endif |
7 | 111 |
221 | 112 typedef struct syn_cluster_S |
7 | 113 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
114 char_u *scl_name; // syntax cluster name |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
115 char_u *scl_name_u; // uppercase of scl_name |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
116 short *scl_list; // IDs in this syntax cluster |
221 | 117 } syn_cluster_T; |
7 | 118 |
119 /* | |
120 * Methods of combining two clusters | |
121 */ | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
122 #define CLUSTER_REPLACE 1 // replace first list with second |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
123 #define CLUSTER_ADD 2 // add second list to first |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
124 #define CLUSTER_SUBTRACT 3 // subtract second list from first |
7 | 125 |
221 | 126 #define SYN_CLSTR(buf) ((syn_cluster_T *)((buf)->b_syn_clusters.ga_data)) |
7 | 127 |
128 /* | |
129 * Syntax group IDs have different types: | |
2743 | 130 * 0 - 19999 normal syntax groups |
131 * 20000 - 20999 ALLBUT indicator (current_syn_inc_tag added) | |
132 * 21000 - 21999 TOP indicator (current_syn_inc_tag added) | |
133 * 22000 - 22999 CONTAINED indicator (current_syn_inc_tag added) | |
134 * 23000 - 32767 cluster IDs (subtract SYNID_CLUSTER for the cluster ID) | |
135 */ | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
136 #define SYNID_ALLBUT MAX_HL_ID // syntax group ID for contains=ALLBUT |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
137 #define SYNID_TOP 21000 // syntax group ID for contains=TOP |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
138 #define SYNID_CONTAINED 22000 // syntax group ID for contains=CONTAINED |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
139 #define SYNID_CLUSTER 23000 // first syntax group ID for clusters |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
140 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
141 #define MAX_SYN_INC_TAG 999 // maximum before the above overflow |
2743 | 142 #define MAX_CLUSTER_ID (32767 - SYNID_CLUSTER) |
7 | 143 |
144 /* | |
145 * Annoying Hack(TM): ":syn include" needs this pointer to pass to | |
146 * expand_filename(). Most of the other syntax commands don't need it, so | |
147 * instead of passing it to them, we stow it here. | |
148 */ | |
149 static char_u **syn_cmdlinep; | |
150 | |
151 /* | |
152 * Another Annoying Hack(TM): To prevent rules from other ":syn include"'d | |
2251
646d34788036
Fix a few compiler warnings. Fix crash with encrypted undo file.
Bram Moolenaar <bram@vim.org>
parents:
2250
diff
changeset
|
153 * files from leaking into ALLBUT lists, we assign a unique ID to the |
7 | 154 * rules in each ":syn include"'d file. |
155 */ | |
156 static int current_syn_inc_tag = 0; | |
157 static int running_syn_inc_tag = 0; | |
158 | |
159 /* | |
134 | 160 * In a hashtable item "hi_key" points to "keyword" in a keyentry. |
161 * This avoids adding a pointer to the hashtable item. | |
162 * KE2HIKEY() converts a var pointer to a hashitem key pointer. | |
163 * HIKEY2KE() converts a hashitem key pointer to a var pointer. | |
164 * HI2KE() converts a hashitem pointer to a var pointer. | |
165 */ | |
166 static keyentry_T dumkey; | |
167 #define KE2HIKEY(kp) ((kp)->keyword) | |
168 #define HIKEY2KE(p) ((keyentry_T *)((p) - (dumkey.keyword - (char_u *)&dumkey))) | |
169 #define HI2KE(hi) HIKEY2KE((hi)->hi_key) | |
170 | |
171 /* | |
7 | 172 * To reduce the time spent in keepend(), remember at which level in the state |
173 * stack the first item with "keepend" is present. When "-1", there is no | |
174 * "keepend" on the stack. | |
175 */ | |
176 static int keepend_level = -1; | |
177 | |
4764
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
178 static char msg_no_items[] = N_("No Syntax items defined for this buffer"); |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
179 |
7 | 180 /* |
181 * For the current state we need to remember more than just the idx. | |
182 * When si_m_endpos.lnum is 0, the items other than si_idx are unknown. | |
183 * (The end positions have the column number of the next char) | |
184 */ | |
185 typedef struct state_item | |
186 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
187 int si_idx; // index of syntax pattern or |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
188 // KEYWORD_IDX |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
189 int si_id; // highlight group ID for keywords |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
190 int si_trans_id; // idem, transparency removed |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
191 int si_m_lnum; // lnum of the match |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
192 int si_m_startcol; // starting column of the match |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
193 lpos_T si_m_endpos; // just after end posn of the match |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
194 lpos_T si_h_startpos; // start position of the highlighting |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
195 lpos_T si_h_endpos; // end position of the highlighting |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
196 lpos_T si_eoe_pos; // end position of end pattern |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
197 int si_end_idx; // group ID for end pattern or zero |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
198 int si_ends; // if match ends before si_m_endpos |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
199 int si_attr; // attributes in this state |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
200 long si_flags; // HL_HAS_EOL flag in this state, and |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
201 // HL_SKIP* for si_next_list |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
202 #ifdef FEAT_CONCEAL |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
203 int si_seqnr; // sequence number |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
204 int si_cchar; // substitution character for conceal |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
205 #endif |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
206 short *si_cont_list; // list of contained groups |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
207 short *si_next_list; // nextgroup IDs after this item ends |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
208 reg_extmatch_T *si_extmatch; // \z(...\) matches from start |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
209 // pattern |
7 | 210 } stateitem_T; |
211 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
212 #define KEYWORD_IDX -1 // value of si_idx for keywords |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
213 #define ID_LIST_ALL (short *)-1 // valid of si_cont_list for containing all |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
214 // but contained groups |
7 | 215 |
2392
0371401d9d33
Give each syntax item a sequence number, so that we know when it starts and
Bram Moolenaar <bram@vim.org>
parents:
2375
diff
changeset
|
216 #ifdef FEAT_CONCEAL |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
217 static int next_seqnr = 1; // value to use for si_seqnr |
2392
0371401d9d33
Give each syntax item a sequence number, so that we know when it starts and
Bram Moolenaar <bram@vim.org>
parents:
2375
diff
changeset
|
218 #endif |
0371401d9d33
Give each syntax item a sequence number, so that we know when it starts and
Bram Moolenaar <bram@vim.org>
parents:
2375
diff
changeset
|
219 |
7 | 220 /* |
154 | 221 * Struct to reduce the number of arguments to get_syn_options(), it's used |
222 * very often. | |
223 */ | |
224 typedef struct | |
225 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
226 int flags; // flags for contained and transparent |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
227 int keyword; // TRUE for ":syn keyword" |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
228 int *sync_idx; // syntax item for "grouphere" argument, NULL |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
229 // if not allowed |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
230 char has_cont_list; // TRUE if "cont_list" can be used |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
231 short *cont_list; // group IDs for "contains" argument |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
232 short *cont_in_list; // group IDs for "containedin" argument |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
233 short *next_list; // group IDs for "nextgroup" argument |
154 | 234 } syn_opt_arg_T; |
235 | |
236 /* | |
7 | 237 * The next possible match in the current line for any pattern is remembered, |
238 * to avoid having to try for a match in each column. | |
239 * If next_match_idx == -1, not tried (in this line) yet. | |
240 * If next_match_col == MAXCOL, no match found in this line. | |
241 * (All end positions have the column of the char after the end) | |
242 */ | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
243 static int next_match_col; // column for start of next match |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
244 static lpos_T next_match_m_endpos; // position for end of next match |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
245 static lpos_T next_match_h_startpos; // pos. for highl. start of next match |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
246 static lpos_T next_match_h_endpos; // pos. for highl. end of next match |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
247 static int next_match_idx; // index of matched item |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
248 static long next_match_flags; // flags for next match |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
249 static lpos_T next_match_eos_pos; // end of start pattn (start region) |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
250 static lpos_T next_match_eoe_pos; // pos. for end of end pattern |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
251 static int next_match_end_idx; // ID of group for end pattn or zero |
7 | 252 static reg_extmatch_T *next_match_extmatch = NULL; |
253 | |
254 /* | |
255 * A state stack is an array of integers or stateitem_T, stored in a | |
14968
c5ec5ddbe814
patch 8.1.0495: :filter only supports some commands
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
256 * garray_T. A state stack is invalid if its itemsize entry is zero. |
7 | 257 */ |
258 #define INVALID_STATE(ssp) ((ssp)->ga_itemsize == 0) | |
259 #define VALID_STATE(ssp) ((ssp)->ga_itemsize != 0) | |
260 | |
19934
3ff714d765ba
patch 8.2.0523: loops are repeated
Bram Moolenaar <Bram@vim.org>
parents:
19892
diff
changeset
|
261 #define FOR_ALL_SYNSTATES(sb, sst) \ |
3ff714d765ba
patch 8.2.0523: loops are repeated
Bram Moolenaar <Bram@vim.org>
parents:
19892
diff
changeset
|
262 for ((sst) = (sb)->b_sst_first; (sst) != NULL; (sst) = (sst)->sst_next) |
3ff714d765ba
patch 8.2.0523: loops are repeated
Bram Moolenaar <Bram@vim.org>
parents:
19892
diff
changeset
|
263 |
7 | 264 /* |
265 * The current state (within the line) of the recognition engine. | |
266 * When current_state.ga_itemsize is 0 the current state is invalid. | |
267 */ | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
268 static win_T *syn_win; // current window for highlighting |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
269 static buf_T *syn_buf; // current buffer for highlighting |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
270 static synblock_T *syn_block; // current buffer for highlighting |
11529
998d2cf59caa
patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
271 #ifdef FEAT_RELTIME |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
272 static proftime_T *syn_tm; // timeout limit |
11529
998d2cf59caa
patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
273 #endif |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
274 static linenr_T current_lnum = 0; // lnum of current state |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
275 static colnr_T current_col = 0; // column of current state |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
276 static int current_state_stored = 0; // TRUE if stored current state |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
277 // after setting current_finished |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
278 static int current_finished = 0; // current line has been finished |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
279 static garray_T current_state // current stack of state_items |
7 | 280 = {0, 0, 0, 0, NULL}; |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
281 static short *current_next_list = NULL; // when non-zero, nextgroup list |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
282 static int current_next_flags = 0; // flags for current_next_list |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
283 static int current_line_id = 0; // unique number for current line |
7 | 284 |
285 #define CUR_STATE(idx) ((stateitem_T *)(current_state.ga_data))[idx] | |
286 | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
287 static void syn_sync(win_T *wp, linenr_T lnum, synstate_T *last_valid); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
288 static int syn_match_linecont(linenr_T lnum); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
289 static void syn_start_line(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
290 static void syn_update_ends(int startofline); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
291 static void syn_stack_alloc(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
292 static int syn_stack_cleanup(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
293 static void syn_stack_free_entry(synblock_T *block, synstate_T *p); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
294 static synstate_T *syn_stack_find_entry(linenr_T lnum); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
295 static synstate_T *store_current_state(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
296 static void load_current_state(synstate_T *from); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
297 static void invalidate_current_state(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
298 static int syn_stack_equal(synstate_T *sp); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
299 static void validate_current_state(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
300 static int syn_finish_line(int syncing); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
301 static int syn_current_attr(int syncing, int displaying, int *can_spell, int keep_state); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
302 static int did_match_already(int idx, garray_T *gap); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
303 static stateitem_T *push_next_match(stateitem_T *cur_si); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
304 static void check_state_ends(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
305 static void update_si_attr(int idx); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
306 static void check_keepend(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
307 static void update_si_end(stateitem_T *sip, int startcol, int force); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
308 static short *copy_id_list(short *list); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
309 static int in_id_list(stateitem_T *item, short *cont_list, struct sp_syn *ssp, int contained); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
310 static int push_current_state(int idx); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
311 static void pop_current_state(void); |
4766
ec24ff78a79c
updated for version 7.3.1130
Bram Moolenaar <bram@vim.org>
parents:
4764
diff
changeset
|
312 #ifdef FEAT_PROFILE |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
313 static void syn_clear_time(syn_time_T *tt); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
314 static void syntime_clear(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
315 static void syntime_report(void); |
4764
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
316 static int syn_time_on = FALSE; |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
317 # define IF_SYN_TIME(p) (p) |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
318 #else |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
319 # define IF_SYN_TIME(p) NULL |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
320 typedef int syn_time_T; |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
321 #endif |
7 | 322 |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
323 static void syn_stack_apply_changes_block(synblock_T *block, buf_T *buf); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
324 static void find_endpos(int idx, lpos_T *startpos, lpos_T *m_endpos, lpos_T *hl_endpos, long *flagsp, lpos_T *end_endpos, int *end_idx, reg_extmatch_T *start_ext); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
325 |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
326 static void limit_pos(lpos_T *pos, lpos_T *limit); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
327 static void limit_pos_zero(lpos_T *pos, lpos_T *limit); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
328 static void syn_add_end_off(lpos_T *result, regmmatch_T *regmatch, synpat_T *spp, int idx, int extra); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
329 static void syn_add_start_off(lpos_T *result, regmmatch_T *regmatch, synpat_T *spp, int idx, int extra); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
330 static char_u *syn_getcurline(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
331 static int syn_regexec(regmmatch_T *rmp, linenr_T lnum, colnr_T col, syn_time_T *st); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
332 static int check_keyword_id(char_u *line, int startcol, int *endcol, long *flags, short **next_list, stateitem_T *cur_si, int *ccharp); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
333 static void syn_remove_pattern(synblock_T *block, int idx); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
334 static void syn_clear_pattern(synblock_T *block, int i); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
335 static void syn_clear_cluster(synblock_T *block, int i); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
336 static void syn_clear_one(int id, int syncing); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
337 static void syn_cmd_onoff(exarg_T *eap, char *name); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
338 static void syn_lines_msg(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
339 static void syn_match_msg(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
340 static void syn_list_one(int id, int syncing, int link_only); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
341 static void syn_list_cluster(int id); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
342 static void put_id_list(char_u *name, short *list, int attr); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
343 static void put_pattern(char *s, int c, synpat_T *spp, int attr); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
344 static int syn_list_keywords(int id, hashtab_T *ht, int did_header, int attr); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
345 static void syn_clear_keyword(int id, hashtab_T *ht); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
346 static void clear_keywtab(hashtab_T *ht); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
347 static int syn_scl_namen2id(char_u *linep, int len); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
348 static int syn_check_cluster(char_u *pp, int len); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
349 static int syn_add_cluster(char_u *name); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
350 static void init_syn_patterns(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
351 static char_u *get_syn_pattern(char_u *arg, synpat_T *ci); |
10618
4ee16e5e2e26
patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents:
10534
diff
changeset
|
352 static int get_id_list(char_u **arg, int keylen, short **list, int skip); |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
353 static void syn_combine_list(short **clstr1, short **clstr2, int list_op); |
7 | 354 |
12510
7a887dccd13a
patch 8.0.1133: syntax timeout not used correctly
Christian Brabandt <cb@256bit.org>
parents:
12487
diff
changeset
|
355 #if defined(FEAT_RELTIME) || defined(PROTO) |
7a887dccd13a
patch 8.0.1133: syntax timeout not used correctly
Christian Brabandt <cb@256bit.org>
parents:
12487
diff
changeset
|
356 /* |
7a887dccd13a
patch 8.0.1133: syntax timeout not used correctly
Christian Brabandt <cb@256bit.org>
parents:
12487
diff
changeset
|
357 * Set the timeout used for syntax highlighting. |
7a887dccd13a
patch 8.0.1133: syntax timeout not used correctly
Christian Brabandt <cb@256bit.org>
parents:
12487
diff
changeset
|
358 * Use NULL to reset, no timeout. |
7a887dccd13a
patch 8.0.1133: syntax timeout not used correctly
Christian Brabandt <cb@256bit.org>
parents:
12487
diff
changeset
|
359 */ |
7a887dccd13a
patch 8.0.1133: syntax timeout not used correctly
Christian Brabandt <cb@256bit.org>
parents:
12487
diff
changeset
|
360 void |
7a887dccd13a
patch 8.0.1133: syntax timeout not used correctly
Christian Brabandt <cb@256bit.org>
parents:
12487
diff
changeset
|
361 syn_set_timeout(proftime_T *tm) |
7a887dccd13a
patch 8.0.1133: syntax timeout not used correctly
Christian Brabandt <cb@256bit.org>
parents:
12487
diff
changeset
|
362 { |
7a887dccd13a
patch 8.0.1133: syntax timeout not used correctly
Christian Brabandt <cb@256bit.org>
parents:
12487
diff
changeset
|
363 syn_tm = tm; |
7a887dccd13a
patch 8.0.1133: syntax timeout not used correctly
Christian Brabandt <cb@256bit.org>
parents:
12487
diff
changeset
|
364 } |
7a887dccd13a
patch 8.0.1133: syntax timeout not used correctly
Christian Brabandt <cb@256bit.org>
parents:
12487
diff
changeset
|
365 #endif |
7a887dccd13a
patch 8.0.1133: syntax timeout not used correctly
Christian Brabandt <cb@256bit.org>
parents:
12487
diff
changeset
|
366 |
7 | 367 /* |
368 * Start the syntax recognition for a line. This function is normally called | |
369 * from the screen updating, once for each displayed line. | |
370 * The buffer is remembered in syn_buf, because get_syntax_attr() doesn't get | |
371 * it. Careful: curbuf and curwin are likely to point to another buffer and | |
372 * window. | |
373 */ | |
374 void | |
12510
7a887dccd13a
patch 8.0.1133: syntax timeout not used correctly
Christian Brabandt <cb@256bit.org>
parents:
12487
diff
changeset
|
375 syntax_start(win_T *wp, linenr_T lnum) |
7 | 376 { |
377 synstate_T *p; | |
378 synstate_T *last_valid = NULL; | |
379 synstate_T *last_min_valid = NULL; | |
1512 | 380 synstate_T *sp, *prev = NULL; |
7 | 381 linenr_T parsed_lnum; |
382 linenr_T first_stored; | |
383 int dist; | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
384 static varnumber_T changedtick = 0; // remember the last change ID |
7 | 385 |
2401
e7751177126b
Add the synconcealed() function and use it for :TOhtml. (Benjamin Fritz)
Bram Moolenaar <bram@vim.org>
parents:
2392
diff
changeset
|
386 #ifdef FEAT_CONCEAL |
e7751177126b
Add the synconcealed() function and use it for :TOhtml. (Benjamin Fritz)
Bram Moolenaar <bram@vim.org>
parents:
2392
diff
changeset
|
387 current_sub_char = NUL; |
e7751177126b
Add the synconcealed() function and use it for :TOhtml. (Benjamin Fritz)
Bram Moolenaar <bram@vim.org>
parents:
2392
diff
changeset
|
388 #endif |
e7751177126b
Add the synconcealed() function and use it for :TOhtml. (Benjamin Fritz)
Bram Moolenaar <bram@vim.org>
parents:
2392
diff
changeset
|
389 |
7 | 390 /* |
391 * After switching buffers, invalidate current_state. | |
26 | 392 * Also do this when a change was made, the current state may be invalid |
393 * then. | |
7 | 394 */ |
8806
8fff73f17ff1
commit https://github.com/vim/vim/commit/b681be175b6991cdc2b8ddd49b0e97e3fe2b201e
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
395 if (syn_block != wp->w_s |
8fff73f17ff1
commit https://github.com/vim/vim/commit/b681be175b6991cdc2b8ddd49b0e97e3fe2b201e
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
396 || syn_buf != wp->w_buffer |
10952
835604f3c37a
patch 8.0.0365: might free a dict item that wasn't allocated
Christian Brabandt <cb@256bit.org>
parents:
10889
diff
changeset
|
397 || changedtick != CHANGEDTICK(syn_buf)) |
7 | 398 { |
399 invalidate_current_state(); | |
400 syn_buf = wp->w_buffer; | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
401 syn_block = wp->w_s; |
7 | 402 } |
10952
835604f3c37a
patch 8.0.0365: might free a dict item that wasn't allocated
Christian Brabandt <cb@256bit.org>
parents:
10889
diff
changeset
|
403 changedtick = CHANGEDTICK(syn_buf); |
7 | 404 syn_win = wp; |
405 | |
406 /* | |
407 * Allocate syntax stack when needed. | |
408 */ | |
409 syn_stack_alloc(); | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
410 if (syn_block->b_sst_array == NULL) |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
411 return; // out of memory |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
412 syn_block->b_sst_lasttick = display_tick; |
7 | 413 |
414 /* | |
415 * If the state of the end of the previous line is useful, store it. | |
416 */ | |
417 if (VALID_STATE(¤t_state) | |
418 && current_lnum < lnum | |
419 && current_lnum < syn_buf->b_ml.ml_line_count) | |
420 { | |
421 (void)syn_finish_line(FALSE); | |
422 if (!current_state_stored) | |
423 { | |
424 ++current_lnum; | |
1512 | 425 (void)store_current_state(); |
7 | 426 } |
427 | |
428 /* | |
429 * If the current_lnum is now the same as "lnum", keep the current | |
430 * state (this happens very often!). Otherwise invalidate | |
431 * current_state and figure it out below. | |
432 */ | |
433 if (current_lnum != lnum) | |
434 invalidate_current_state(); | |
435 } | |
436 else | |
437 invalidate_current_state(); | |
438 | |
439 /* | |
440 * Try to synchronize from a saved state in b_sst_array[]. | |
441 * Only do this if lnum is not before and not to far beyond a saved state. | |
442 */ | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
443 if (INVALID_STATE(¤t_state) && syn_block->b_sst_array != NULL) |
7 | 444 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
445 // Find last valid saved state before start_lnum. |
19934
3ff714d765ba
patch 8.2.0523: loops are repeated
Bram Moolenaar <Bram@vim.org>
parents:
19892
diff
changeset
|
446 FOR_ALL_SYNSTATES(syn_block, p) |
7 | 447 { |
448 if (p->sst_lnum > lnum) | |
449 break; | |
450 if (p->sst_lnum <= lnum && p->sst_change_lnum == 0) | |
451 { | |
452 last_valid = p; | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
453 if (p->sst_lnum >= lnum - syn_block->b_syn_sync_minlines) |
7 | 454 last_min_valid = p; |
455 } | |
456 } | |
457 if (last_min_valid != NULL) | |
458 load_current_state(last_min_valid); | |
459 } | |
460 | |
461 /* | |
462 * If "lnum" is before or far beyond a line with a saved state, need to | |
463 * re-synchronize. | |
464 */ | |
465 if (INVALID_STATE(¤t_state)) | |
466 { | |
467 syn_sync(wp, lnum, last_valid); | |
2906 | 468 if (current_lnum == 1) |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
469 // First line is always valid, no matter "minlines". |
2906 | 470 first_stored = 1; |
471 else | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
472 // Need to parse "minlines" lines before state can be considered |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
473 // valid to store. |
2906 | 474 first_stored = current_lnum + syn_block->b_syn_sync_minlines; |
7 | 475 } |
476 else | |
477 first_stored = current_lnum; | |
478 | |
479 /* | |
480 * Advance from the sync point or saved state until the current line. | |
481 * Save some entries for syncing with later on. | |
482 */ | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
483 if (syn_block->b_sst_len <= Rows) |
819 | 484 dist = 999999; |
485 else | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
486 dist = syn_buf->b_ml.ml_line_count / (syn_block->b_sst_len - Rows) + 1; |
7 | 487 while (current_lnum < lnum) |
488 { | |
489 syn_start_line(); | |
490 (void)syn_finish_line(FALSE); | |
491 ++current_lnum; | |
492 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
493 // If we parsed at least "minlines" lines or started at a valid |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
494 // state, the current state is considered valid. |
7 | 495 if (current_lnum >= first_stored) |
496 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
497 // Check if the saved state entry is for the current line and is |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
498 // equal to the current state. If so, then validate all saved |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
499 // states that depended on a change before the parsed line. |
7 | 500 if (prev == NULL) |
1512 | 501 prev = syn_stack_find_entry(current_lnum - 1); |
502 if (prev == NULL) | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
503 sp = syn_block->b_sst_first; |
7 | 504 else |
1512 | 505 sp = prev; |
506 while (sp != NULL && sp->sst_lnum < current_lnum) | |
507 sp = sp->sst_next; | |
7 | 508 if (sp != NULL |
509 && sp->sst_lnum == current_lnum | |
510 && syn_stack_equal(sp)) | |
511 { | |
512 parsed_lnum = current_lnum; | |
513 prev = sp; | |
514 while (sp != NULL && sp->sst_change_lnum <= parsed_lnum) | |
515 { | |
516 if (sp->sst_lnum <= lnum) | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
517 // valid state before desired line, use this one |
7 | 518 prev = sp; |
519 else if (sp->sst_change_lnum == 0) | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
520 // past saved states depending on change, break here. |
7 | 521 break; |
522 sp->sst_change_lnum = 0; | |
523 sp = sp->sst_next; | |
524 } | |
525 load_current_state(prev); | |
526 } | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
527 // Store the state at this line when it's the first one, the line |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
528 // where we start parsing, or some distance from the previously |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
529 // saved state. But only when parsed at least 'minlines'. |
7 | 530 else if (prev == NULL |
531 || current_lnum == lnum | |
532 || current_lnum >= prev->sst_lnum + dist) | |
1512 | 533 prev = store_current_state(); |
7 | 534 } |
535 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
536 // This can take a long time: break when CTRL-C pressed. The current |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
537 // state will be wrong then. |
7 | 538 line_breakcheck(); |
539 if (got_int) | |
540 { | |
541 current_lnum = lnum; | |
542 break; | |
543 } | |
544 } | |
545 | |
546 syn_start_line(); | |
547 } | |
548 | |
549 /* | |
550 * We cannot simply discard growarrays full of state_items or buf_states; we | |
551 * have to manually release their extmatch pointers first. | |
552 */ | |
553 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
554 clear_syn_state(synstate_T *p) |
7 | 555 { |
556 int i; | |
557 garray_T *gap; | |
558 | |
559 if (p->sst_stacksize > SST_FIX_STATES) | |
560 { | |
561 gap = &(p->sst_union.sst_ga); | |
562 for (i = 0; i < gap->ga_len; i++) | |
563 unref_extmatch(SYN_STATE_P(gap)[i].bs_extmatch); | |
564 ga_clear(gap); | |
565 } | |
566 else | |
567 { | |
568 for (i = 0; i < p->sst_stacksize; i++) | |
569 unref_extmatch(p->sst_union.sst_stack[i].bs_extmatch); | |
570 } | |
571 } | |
572 | |
573 /* | |
574 * Cleanup the current_state stack. | |
575 */ | |
576 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
577 clear_current_state(void) |
7 | 578 { |
579 int i; | |
580 stateitem_T *sip; | |
581 | |
582 sip = (stateitem_T *)(current_state.ga_data); | |
583 for (i = 0; i < current_state.ga_len; i++) | |
584 unref_extmatch(sip[i].si_extmatch); | |
585 ga_clear(¤t_state); | |
586 } | |
587 | |
588 /* | |
589 * Try to find a synchronisation point for line "lnum". | |
590 * | |
591 * This sets current_lnum and the current state. One of three methods is | |
592 * used: | |
593 * 1. Search backwards for the end of a C-comment. | |
594 * 2. Search backwards for given sync patterns. | |
595 * 3. Simply start on a given number of lines above "lnum". | |
596 */ | |
597 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
598 syn_sync( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
599 win_T *wp, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
600 linenr_T start_lnum, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
601 synstate_T *last_valid) |
7 | 602 { |
603 buf_T *curbuf_save; | |
604 win_T *curwin_save; | |
605 pos_T cursor_save; | |
606 int idx; | |
607 linenr_T lnum; | |
608 linenr_T end_lnum; | |
609 linenr_T break_lnum; | |
610 int had_sync_point; | |
611 stateitem_T *cur_si; | |
612 synpat_T *spp; | |
613 char_u *line; | |
614 int found_flags = 0; | |
615 int found_match_idx = 0; | |
616 linenr_T found_current_lnum = 0; | |
617 int found_current_col= 0; | |
618 lpos_T found_m_endpos; | |
442 | 619 colnr_T prev_current_col; |
7 | 620 |
621 /* | |
622 * Clear any current state that might be hanging around. | |
623 */ | |
624 invalidate_current_state(); | |
625 | |
626 /* | |
627 * Start at least "minlines" back. Default starting point for parsing is | |
628 * there. | |
629 * Start further back, to avoid that scrolling backwards will result in | |
630 * resyncing for every line. Now it resyncs only one out of N lines, | |
631 * where N is minlines * 1.5, or minlines * 2 if minlines is small. | |
632 * Watch out for overflow when minlines is MAXLNUM. | |
633 */ | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
634 if (syn_block->b_syn_sync_minlines > start_lnum) |
7 | 635 start_lnum = 1; |
636 else | |
637 { | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
638 if (syn_block->b_syn_sync_minlines == 1) |
7 | 639 lnum = 1; |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
640 else if (syn_block->b_syn_sync_minlines < 10) |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
641 lnum = syn_block->b_syn_sync_minlines * 2; |
7 | 642 else |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
643 lnum = syn_block->b_syn_sync_minlines * 3 / 2; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
644 if (syn_block->b_syn_sync_maxlines != 0 |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
645 && lnum > syn_block->b_syn_sync_maxlines) |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
646 lnum = syn_block->b_syn_sync_maxlines; |
7 | 647 if (lnum >= start_lnum) |
648 start_lnum = 1; | |
649 else | |
650 start_lnum -= lnum; | |
651 } | |
652 current_lnum = start_lnum; | |
653 | |
654 /* | |
655 * 1. Search backwards for the end of a C-style comment. | |
656 */ | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
657 if (syn_block->b_syn_sync_flags & SF_CCOMMENT) |
7 | 658 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
659 // Need to make syn_buf the current buffer for a moment, to be able to |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
660 // use find_start_comment(). |
7 | 661 curwin_save = curwin; |
662 curwin = wp; | |
663 curbuf_save = curbuf; | |
664 curbuf = syn_buf; | |
665 | |
666 /* | |
667 * Skip lines that end in a backslash. | |
668 */ | |
669 for ( ; start_lnum > 1; --start_lnum) | |
670 { | |
671 line = ml_get(start_lnum - 1); | |
672 if (*line == NUL || *(line + STRLEN(line) - 1) != '\\') | |
673 break; | |
674 } | |
675 current_lnum = start_lnum; | |
676 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
677 // set cursor to start of search |
7 | 678 cursor_save = wp->w_cursor; |
679 wp->w_cursor.lnum = start_lnum; | |
680 wp->w_cursor.col = 0; | |
681 | |
682 /* | |
683 * If the line is inside a comment, need to find the syntax item that | |
684 * defines the comment. | |
685 * Restrict the search for the end of a comment to b_syn_sync_maxlines. | |
686 */ | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
687 if (find_start_comment((int)syn_block->b_syn_sync_maxlines) != NULL) |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
688 { |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
689 for (idx = syn_block->b_syn_patterns.ga_len; --idx >= 0; ) |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
690 if (SYN_ITEMS(syn_block)[idx].sp_syn.id |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
691 == syn_block->b_syn_sync_id |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
692 && SYN_ITEMS(syn_block)[idx].sp_type == SPTYPE_START) |
7 | 693 { |
694 validate_current_state(); | |
695 if (push_current_state(idx) == OK) | |
696 update_si_attr(current_state.ga_len - 1); | |
697 break; | |
698 } | |
699 } | |
700 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
701 // restore cursor and buffer |
7 | 702 wp->w_cursor = cursor_save; |
703 curwin = curwin_save; | |
704 curbuf = curbuf_save; | |
705 } | |
706 | |
707 /* | |
708 * 2. Search backwards for given sync patterns. | |
709 */ | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
710 else if (syn_block->b_syn_sync_flags & SF_MATCH) |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
711 { |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
712 if (syn_block->b_syn_sync_maxlines != 0 |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
713 && start_lnum > syn_block->b_syn_sync_maxlines) |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
714 break_lnum = start_lnum - syn_block->b_syn_sync_maxlines; |
7 | 715 else |
716 break_lnum = 0; | |
717 | |
699 | 718 found_m_endpos.lnum = 0; |
719 found_m_endpos.col = 0; | |
7 | 720 end_lnum = start_lnum; |
721 lnum = start_lnum; | |
722 while (--lnum > break_lnum) | |
723 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
724 // This can take a long time: break when CTRL-C pressed. |
7 | 725 line_breakcheck(); |
726 if (got_int) | |
727 { | |
728 invalidate_current_state(); | |
729 current_lnum = start_lnum; | |
730 break; | |
731 } | |
732 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
733 // Check if we have run into a valid saved state stack now. |
7 | 734 if (last_valid != NULL && lnum == last_valid->sst_lnum) |
735 { | |
736 load_current_state(last_valid); | |
737 break; | |
738 } | |
739 | |
740 /* | |
741 * Check if the previous line has the line-continuation pattern. | |
742 */ | |
743 if (lnum > 1 && syn_match_linecont(lnum - 1)) | |
744 continue; | |
745 | |
746 /* | |
747 * Start with nothing on the state stack | |
748 */ | |
749 validate_current_state(); | |
750 | |
751 for (current_lnum = lnum; current_lnum < end_lnum; ++current_lnum) | |
752 { | |
753 syn_start_line(); | |
754 for (;;) | |
755 { | |
756 had_sync_point = syn_finish_line(TRUE); | |
757 /* | |
758 * When a sync point has been found, remember where, and | |
759 * continue to look for another one, further on in the line. | |
760 */ | |
761 if (had_sync_point && current_state.ga_len) | |
762 { | |
763 cur_si = &CUR_STATE(current_state.ga_len - 1); | |
764 if (cur_si->si_m_endpos.lnum > start_lnum) | |
765 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
766 // ignore match that goes to after where started |
7 | 767 current_lnum = end_lnum; |
768 break; | |
769 } | |
1371 | 770 if (cur_si->si_idx < 0) |
771 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
772 // Cannot happen? |
1371 | 773 found_flags = 0; |
774 found_match_idx = KEYWORD_IDX; | |
775 } | |
776 else | |
777 { | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
778 spp = &(SYN_ITEMS(syn_block)[cur_si->si_idx]); |
1371 | 779 found_flags = spp->sp_flags; |
780 found_match_idx = spp->sp_sync_idx; | |
781 } | |
7 | 782 found_current_lnum = current_lnum; |
783 found_current_col = current_col; | |
784 found_m_endpos = cur_si->si_m_endpos; | |
785 /* | |
786 * Continue after the match (be aware of a zero-length | |
787 * match). | |
788 */ | |
789 if (found_m_endpos.lnum > current_lnum) | |
790 { | |
791 current_lnum = found_m_endpos.lnum; | |
792 current_col = found_m_endpos.col; | |
793 if (current_lnum >= end_lnum) | |
794 break; | |
795 } | |
796 else if (found_m_endpos.col > current_col) | |
797 current_col = found_m_endpos.col; | |
798 else | |
799 ++current_col; | |
800 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
801 // syn_current_attr() will have skipped the check for |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
802 // an item that ends here, need to do that now. Be |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
803 // careful not to go past the NUL. |
442 | 804 prev_current_col = current_col; |
805 if (syn_getcurline()[current_col] != NUL) | |
806 ++current_col; | |
7 | 807 check_state_ends(); |
442 | 808 current_col = prev_current_col; |
7 | 809 } |
810 else | |
811 break; | |
812 } | |
813 } | |
814 | |
815 /* | |
816 * If a sync point was encountered, break here. | |
817 */ | |
818 if (found_flags) | |
819 { | |
820 /* | |
821 * Put the item that was specified by the sync point on the | |
822 * state stack. If there was no item specified, make the | |
823 * state stack empty. | |
824 */ | |
825 clear_current_state(); | |
826 if (found_match_idx >= 0 | |
827 && push_current_state(found_match_idx) == OK) | |
828 update_si_attr(current_state.ga_len - 1); | |
829 | |
830 /* | |
831 * When using "grouphere", continue from the sync point | |
832 * match, until the end of the line. Parsing starts at | |
833 * the next line. | |
834 * For "groupthere" the parsing starts at start_lnum. | |
835 */ | |
836 if (found_flags & HL_SYNC_HERE) | |
837 { | |
838 if (current_state.ga_len) | |
839 { | |
840 cur_si = &CUR_STATE(current_state.ga_len - 1); | |
841 cur_si->si_h_startpos.lnum = found_current_lnum; | |
842 cur_si->si_h_startpos.col = found_current_col; | |
843 update_si_end(cur_si, (int)current_col, TRUE); | |
844 check_keepend(); | |
845 } | |
846 current_col = found_m_endpos.col; | |
847 current_lnum = found_m_endpos.lnum; | |
848 (void)syn_finish_line(FALSE); | |
849 ++current_lnum; | |
850 } | |
851 else | |
852 current_lnum = start_lnum; | |
853 | |
854 break; | |
855 } | |
856 | |
857 end_lnum = lnum; | |
858 invalidate_current_state(); | |
859 } | |
860 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
861 // Ran into start of the file or exceeded maximum number of lines |
7 | 862 if (lnum <= break_lnum) |
863 { | |
864 invalidate_current_state(); | |
865 current_lnum = break_lnum + 1; | |
866 } | |
867 } | |
868 | |
869 validate_current_state(); | |
870 } | |
871 | |
7687
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
872 static void |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
873 save_chartab(char_u *chartab) |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
874 { |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
875 if (syn_block->b_syn_isk != empty_option) |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
876 { |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
877 mch_memmove(chartab, syn_buf->b_chartab, (size_t)32); |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
878 mch_memmove(syn_buf->b_chartab, syn_win->w_s->b_syn_chartab, |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
879 (size_t)32); |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
880 } |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
881 } |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
882 |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
883 static void |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
884 restore_chartab(char_u *chartab) |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
885 { |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
886 if (syn_win->w_s->b_syn_isk != empty_option) |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
887 mch_memmove(syn_buf->b_chartab, chartab, (size_t)32); |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
888 } |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
889 |
7 | 890 /* |
891 * Return TRUE if the line-continuation pattern matches in line "lnum". | |
892 */ | |
893 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
894 syn_match_linecont(linenr_T lnum) |
7 | 895 { |
896 regmmatch_T regmatch; | |
6375 | 897 int r; |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
898 char_u buf_chartab[32]; // chartab array for syn iskyeyword |
7 | 899 |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
900 if (syn_block->b_syn_linecont_prog != NULL) |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
901 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
902 // use syntax iskeyword option |
7687
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
903 save_chartab(buf_chartab); |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
904 regmatch.rmm_ic = syn_block->b_syn_linecont_ic; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
905 regmatch.regprog = syn_block->b_syn_linecont_prog; |
6375 | 906 r = syn_regexec(®match, lnum, (colnr_T)0, |
4764
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
907 IF_SYN_TIME(&syn_block->b_syn_linecont_time)); |
6375 | 908 syn_block->b_syn_linecont_prog = regmatch.regprog; |
7687
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
909 restore_chartab(buf_chartab); |
6375 | 910 return r; |
7 | 911 } |
912 return FALSE; | |
913 } | |
914 | |
915 /* | |
916 * Prepare the current state for the start of a line. | |
917 */ | |
918 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
919 syn_start_line(void) |
7 | 920 { |
921 current_finished = FALSE; | |
922 current_col = 0; | |
923 | |
924 /* | |
925 * Need to update the end of a start/skip/end that continues from the | |
926 * previous line and regions that have "keepend". | |
927 */ | |
928 if (current_state.ga_len > 0) | |
2863 | 929 { |
7 | 930 syn_update_ends(TRUE); |
2863 | 931 check_state_ends(); |
932 } | |
7 | 933 |
934 next_match_idx = -1; | |
935 ++current_line_id; | |
11581
2298fda621d3
patch 8.0.0673: build failure without conceal feature
Christian Brabandt <cb@256bit.org>
parents:
11579
diff
changeset
|
936 #ifdef FEAT_CONCEAL |
11579
52e3a77c097b
patch 8.0.0672: third item of synconcealed() changes too often
Christian Brabandt <cb@256bit.org>
parents:
11541
diff
changeset
|
937 next_seqnr = 1; |
11581
2298fda621d3
patch 8.0.0673: build failure without conceal feature
Christian Brabandt <cb@256bit.org>
parents:
11579
diff
changeset
|
938 #endif |
7 | 939 } |
940 | |
941 /* | |
942 * Check for items in the stack that need their end updated. | |
943 * When "startofline" is TRUE the last item is always updated. | |
944 * When "startofline" is FALSE the item with "keepend" is forcefully updated. | |
945 */ | |
946 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
947 syn_update_ends(int startofline) |
7 | 948 { |
949 stateitem_T *cur_si; | |
950 int i; | |
991 | 951 int seen_keepend; |
7 | 952 |
953 if (startofline) | |
954 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
955 // Check for a match carried over from a previous line with a |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
956 // contained region. The match ends as soon as the region ends. |
7 | 957 for (i = 0; i < current_state.ga_len; ++i) |
958 { | |
959 cur_si = &CUR_STATE(i); | |
960 if (cur_si->si_idx >= 0 | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
961 && (SYN_ITEMS(syn_block)[cur_si->si_idx]).sp_type |
7 | 962 == SPTYPE_MATCH |
963 && cur_si->si_m_endpos.lnum < current_lnum) | |
964 { | |
965 cur_si->si_flags |= HL_MATCHCONT; | |
966 cur_si->si_m_endpos.lnum = 0; | |
967 cur_si->si_m_endpos.col = 0; | |
968 cur_si->si_h_endpos = cur_si->si_m_endpos; | |
969 cur_si->si_ends = TRUE; | |
970 } | |
971 } | |
972 } | |
973 | |
974 /* | |
975 * Need to update the end of a start/skip/end that continues from the | |
976 * previous line. And regions that have "keepend", because they may | |
991 | 977 * influence contained items. If we've just removed "extend" |
978 * (startofline == 0) then we should update ends of normal regions | |
979 * contained inside "keepend" because "extend" could have extended | |
980 * these "keepend" regions as well as contained normal regions. | |
7 | 981 * Then check for items ending in column 0. |
982 */ | |
983 i = current_state.ga_len - 1; | |
984 if (keepend_level >= 0) | |
985 for ( ; i > keepend_level; --i) | |
986 if (CUR_STATE(i).si_flags & HL_EXTEND) | |
987 break; | |
991 | 988 |
989 seen_keepend = FALSE; | |
7 | 990 for ( ; i < current_state.ga_len; ++i) |
991 { | |
992 cur_si = &CUR_STATE(i); | |
993 if ((cur_si->si_flags & HL_KEEPEND) | |
991 | 994 || (seen_keepend && !startofline) |
7 | 995 || (i == current_state.ga_len - 1 && startofline)) |
996 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
997 cur_si->si_h_startpos.col = 0; // start highl. in col 0 |
7 | 998 cur_si->si_h_startpos.lnum = current_lnum; |
999 | |
1000 if (!(cur_si->si_flags & HL_MATCHCONT)) | |
1001 update_si_end(cur_si, (int)current_col, !startofline); | |
991 | 1002 |
1003 if (!startofline && (cur_si->si_flags & HL_KEEPEND)) | |
1004 seen_keepend = TRUE; | |
7 | 1005 } |
1006 } | |
1007 check_keepend(); | |
1008 } | |
1009 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1010 ///////////////////////////////////////// |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1011 // Handling of the state stack cache. |
7 | 1012 |
1013 /* | |
1014 * EXPLANATION OF THE SYNTAX STATE STACK CACHE | |
1015 * | |
1016 * To speed up syntax highlighting, the state stack for the start of some | |
1017 * lines is cached. These entries can be used to start parsing at that point. | |
1018 * | |
1019 * The stack is kept in b_sst_array[] for each buffer. There is a list of | |
1020 * valid entries. b_sst_first points to the first one, then follow sst_next. | |
1021 * The entries are sorted on line number. The first entry is often for line 2 | |
1022 * (line 1 always starts with an empty stack). | |
1023 * There is also a list for free entries. This construction is used to avoid | |
1024 * having to allocate and free memory blocks too often. | |
1025 * | |
1026 * When making changes to the buffer, this is logged in b_mod_*. When calling | |
1027 * update_screen() to update the display, it will call | |
1028 * syn_stack_apply_changes() for each displayed buffer to adjust the cached | |
1029 * entries. The entries which are inside the changed area are removed, | |
1030 * because they must be recomputed. Entries below the changed have their line | |
1031 * number adjusted for deleted/inserted lines, and have their sst_change_lnum | |
1032 * set to indicate that a check must be made if the changed lines would change | |
1033 * the cached entry. | |
1034 * | |
1035 * When later displaying lines, an entry is stored for each line. Displayed | |
1036 * lines are likely to be displayed again, in which case the state at the | |
1037 * start of the line is needed. | |
1038 * For not displayed lines, an entry is stored for every so many lines. These | |
1039 * entries will be used e.g., when scrolling backwards. The distance between | |
1040 * entries depends on the number of lines in the buffer. For small buffers | |
1041 * the distance is fixed at SST_DIST, for large buffers there is a fixed | |
1042 * number of entries SST_MAX_ENTRIES, and the distance is computed. | |
1043 */ | |
1044 | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1045 static void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1046 syn_stack_free_block(synblock_T *block) |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1047 { |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1048 synstate_T *p; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1049 |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1050 if (block->b_sst_array != NULL) |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1051 { |
19934
3ff714d765ba
patch 8.2.0523: loops are repeated
Bram Moolenaar <Bram@vim.org>
parents:
19892
diff
changeset
|
1052 FOR_ALL_SYNSTATES(block, p) |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1053 clear_syn_state(p); |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
12973
diff
changeset
|
1054 VIM_CLEAR(block->b_sst_array); |
14850
85ef79b16181
patch 8.1.0437: may access freed memory when syntax HL times out
Christian Brabandt <cb@256bit.org>
parents:
14700
diff
changeset
|
1055 block->b_sst_first = NULL; |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1056 block->b_sst_len = 0; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1057 } |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1058 } |
7 | 1059 /* |
1060 * Free b_sst_array[] for buffer "buf". | |
1061 * Used when syntax items changed to force resyncing everywhere. | |
1062 */ | |
1063 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1064 syn_stack_free_all(synblock_T *block) |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1065 { |
11073
d2178a6cc9f3
patch 8.0.0425: build errors when building without folding
Christian Brabandt <cb@256bit.org>
parents:
10952
diff
changeset
|
1066 #ifdef FEAT_FOLDING |
7 | 1067 win_T *wp; |
11073
d2178a6cc9f3
patch 8.0.0425: build errors when building without folding
Christian Brabandt <cb@256bit.org>
parents:
10952
diff
changeset
|
1068 #endif |
7 | 1069 |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1070 syn_stack_free_block(block); |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1071 |
7 | 1072 #ifdef FEAT_FOLDING |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1073 // When using "syntax" fold method, must update all folds. |
7 | 1074 FOR_ALL_WINDOWS(wp) |
1075 { | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1076 if (wp->w_s == block && foldmethodIsSyntax(wp)) |
7 | 1077 foldUpdateAll(wp); |
1078 } | |
1079 #endif | |
1080 } | |
1081 | |
1082 /* | |
1083 * Allocate the syntax state stack for syn_buf when needed. | |
1084 * If the number of entries in b_sst_array[] is much too big or a bit too | |
1085 * small, reallocate it. | |
1086 * Also used to allocate b_sst_array[] for the first time. | |
1087 */ | |
1088 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1089 syn_stack_alloc(void) |
7 | 1090 { |
1091 long len; | |
1092 synstate_T *to, *from; | |
1093 synstate_T *sstp; | |
1094 | |
1095 len = syn_buf->b_ml.ml_line_count / SST_DIST + Rows * 2; | |
1096 if (len < SST_MIN_ENTRIES) | |
1097 len = SST_MIN_ENTRIES; | |
1098 else if (len > SST_MAX_ENTRIES) | |
1099 len = SST_MAX_ENTRIES; | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1100 if (syn_block->b_sst_len > len * 2 || syn_block->b_sst_len < len) |
7 | 1101 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1102 // Allocate 50% too much, to avoid reallocating too often. |
7 | 1103 len = syn_buf->b_ml.ml_line_count; |
1104 len = (len + len / 2) / SST_DIST + Rows * 2; | |
1105 if (len < SST_MIN_ENTRIES) | |
1106 len = SST_MIN_ENTRIES; | |
1107 else if (len > SST_MAX_ENTRIES) | |
1108 len = SST_MAX_ENTRIES; | |
1109 | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1110 if (syn_block->b_sst_array != NULL) |
7 | 1111 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1112 // When shrinking the array, cleanup the existing stack. |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1113 // Make sure that all valid entries fit in the new array. |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1114 while (syn_block->b_sst_len - syn_block->b_sst_freecount + 2 > len |
7 | 1115 && syn_stack_cleanup()) |
1116 ; | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1117 if (len < syn_block->b_sst_len - syn_block->b_sst_freecount + 2) |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1118 len = syn_block->b_sst_len - syn_block->b_sst_freecount + 2; |
7 | 1119 } |
1120 | |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16790
diff
changeset
|
1121 sstp = ALLOC_CLEAR_MULT(synstate_T, len); |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1122 if (sstp == NULL) // out of memory! |
7 | 1123 return; |
1124 | |
1125 to = sstp - 1; | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1126 if (syn_block->b_sst_array != NULL) |
7 | 1127 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1128 // Move the states from the old array to the new one. |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1129 for (from = syn_block->b_sst_first; from != NULL; |
7 | 1130 from = from->sst_next) |
1131 { | |
1132 ++to; | |
1133 *to = *from; | |
1134 to->sst_next = to + 1; | |
1135 } | |
1136 } | |
1137 if (to != sstp - 1) | |
1138 { | |
1139 to->sst_next = NULL; | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1140 syn_block->b_sst_first = sstp; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1141 syn_block->b_sst_freecount = len - (int)(to - sstp) - 1; |
7 | 1142 } |
1143 else | |
1144 { | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1145 syn_block->b_sst_first = NULL; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1146 syn_block->b_sst_freecount = len; |
7 | 1147 } |
1148 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1149 // Create the list of free entries. |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1150 syn_block->b_sst_firstfree = to + 1; |
7 | 1151 while (++to < sstp + len) |
1152 to->sst_next = to + 1; | |
1153 (sstp + len - 1)->sst_next = NULL; | |
1154 | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1155 vim_free(syn_block->b_sst_array); |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1156 syn_block->b_sst_array = sstp; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1157 syn_block->b_sst_len = len; |
7 | 1158 } |
1159 } | |
1160 | |
1161 /* | |
1162 * Check for changes in a buffer to affect stored syntax states. Uses the | |
1163 * b_mod_* fields. | |
1164 * Called from update_screen(), before screen is being updated, once for each | |
1165 * displayed buffer. | |
1166 */ | |
1167 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1168 syn_stack_apply_changes(buf_T *buf) |
7 | 1169 { |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1170 win_T *wp; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1171 |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1172 syn_stack_apply_changes_block(&buf->b_s, buf); |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1173 |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1174 FOR_ALL_WINDOWS(wp) |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1175 { |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1176 if ((wp->w_buffer == buf) && (wp->w_s != &buf->b_s)) |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1177 syn_stack_apply_changes_block(wp->w_s, buf); |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1178 } |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1179 } |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1180 |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1181 static void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1182 syn_stack_apply_changes_block(synblock_T *block, buf_T *buf) |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1183 { |
7 | 1184 synstate_T *p, *prev, *np; |
1185 linenr_T n; | |
1186 | |
1187 prev = NULL; | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1188 for (p = block->b_sst_first; p != NULL; ) |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1189 { |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1190 if (p->sst_lnum + block->b_syn_sync_linebreaks > buf->b_mod_top) |
7 | 1191 { |
1192 n = p->sst_lnum + buf->b_mod_xlines; | |
1193 if (n <= buf->b_mod_bot) | |
1194 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1195 // this state is inside the changed area, remove it |
7 | 1196 np = p->sst_next; |
1197 if (prev == NULL) | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1198 block->b_sst_first = np; |
7 | 1199 else |
1200 prev->sst_next = np; | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1201 syn_stack_free_entry(block, p); |
7 | 1202 p = np; |
1203 continue; | |
1204 } | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1205 // This state is below the changed area. Remember the line |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1206 // that needs to be parsed before this entry can be made valid |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1207 // again. |
7 | 1208 if (p->sst_change_lnum != 0 && p->sst_change_lnum > buf->b_mod_top) |
1209 { | |
1210 if (p->sst_change_lnum + buf->b_mod_xlines > buf->b_mod_top) | |
1211 p->sst_change_lnum += buf->b_mod_xlines; | |
1212 else | |
1213 p->sst_change_lnum = buf->b_mod_top; | |
1214 } | |
1215 if (p->sst_change_lnum == 0 | |
1216 || p->sst_change_lnum < buf->b_mod_bot) | |
1217 p->sst_change_lnum = buf->b_mod_bot; | |
1218 | |
1219 p->sst_lnum = n; | |
1220 } | |
1221 prev = p; | |
1222 p = p->sst_next; | |
1223 } | |
1224 } | |
1225 | |
1226 /* | |
1227 * Reduce the number of entries in the state stack for syn_buf. | |
1228 * Returns TRUE if at least one entry was freed. | |
1229 */ | |
1230 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1231 syn_stack_cleanup(void) |
7 | 1232 { |
1233 synstate_T *p, *prev; | |
1234 disptick_T tick; | |
1235 int above; | |
1236 int dist; | |
1237 int retval = FALSE; | |
1238 | |
14850
85ef79b16181
patch 8.1.0437: may access freed memory when syntax HL times out
Christian Brabandt <cb@256bit.org>
parents:
14700
diff
changeset
|
1239 if (syn_block->b_sst_first == NULL) |
7 | 1240 return retval; |
1241 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1242 // Compute normal distance between non-displayed entries. |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1243 if (syn_block->b_sst_len <= Rows) |
819 | 1244 dist = 999999; |
1245 else | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1246 dist = syn_buf->b_ml.ml_line_count / (syn_block->b_sst_len - Rows) + 1; |
7 | 1247 |
1248 /* | |
2020 | 1249 * Go through the list to find the "tick" for the oldest entry that can |
7 | 1250 * be removed. Set "above" when the "tick" for the oldest entry is above |
1251 * "b_sst_lasttick" (the display tick wraps around). | |
1252 */ | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1253 tick = syn_block->b_sst_lasttick; |
7 | 1254 above = FALSE; |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1255 prev = syn_block->b_sst_first; |
7 | 1256 for (p = prev->sst_next; p != NULL; prev = p, p = p->sst_next) |
1257 { | |
1258 if (prev->sst_lnum + dist > p->sst_lnum) | |
1259 { | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1260 if (p->sst_tick > syn_block->b_sst_lasttick) |
7 | 1261 { |
1262 if (!above || p->sst_tick < tick) | |
1263 tick = p->sst_tick; | |
1264 above = TRUE; | |
1265 } | |
1266 else if (!above && p->sst_tick < tick) | |
1267 tick = p->sst_tick; | |
1268 } | |
1269 } | |
1270 | |
1271 /* | |
1272 * Go through the list to make the entries for the oldest tick at an | |
1273 * interval of several lines. | |
1274 */ | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1275 prev = syn_block->b_sst_first; |
7 | 1276 for (p = prev->sst_next; p != NULL; prev = p, p = p->sst_next) |
1277 { | |
1278 if (p->sst_tick == tick && prev->sst_lnum + dist > p->sst_lnum) | |
1279 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1280 // Move this entry from used list to free list |
7 | 1281 prev->sst_next = p->sst_next; |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1282 syn_stack_free_entry(syn_block, p); |
7 | 1283 p = prev; |
1284 retval = TRUE; | |
1285 } | |
1286 } | |
1287 return retval; | |
1288 } | |
1289 | |
1290 /* | |
1291 * Free the allocated memory for a syn_state item. | |
1292 * Move the entry into the free list. | |
1293 */ | |
1294 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1295 syn_stack_free_entry(synblock_T *block, synstate_T *p) |
7 | 1296 { |
1297 clear_syn_state(p); | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1298 p->sst_next = block->b_sst_firstfree; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1299 block->b_sst_firstfree = p; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1300 ++block->b_sst_freecount; |
7 | 1301 } |
1302 | |
1303 /* | |
1304 * Find an entry in the list of state stacks at or before "lnum". | |
1305 * Returns NULL when there is no entry or the first entry is after "lnum". | |
1306 */ | |
1307 static synstate_T * | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1308 syn_stack_find_entry(linenr_T lnum) |
7 | 1309 { |
1310 synstate_T *p, *prev; | |
1311 | |
1312 prev = NULL; | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1313 for (p = syn_block->b_sst_first; p != NULL; prev = p, p = p->sst_next) |
7 | 1314 { |
1315 if (p->sst_lnum == lnum) | |
1316 return p; | |
1317 if (p->sst_lnum > lnum) | |
1318 break; | |
1319 } | |
1320 return prev; | |
1321 } | |
1322 | |
1323 /* | |
1324 * Try saving the current state in b_sst_array[]. | |
1325 * The current state must be valid for the start of the current_lnum line! | |
1326 */ | |
1327 static synstate_T * | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1328 store_current_state(void) |
7 | 1329 { |
1330 int i; | |
1331 synstate_T *p; | |
1332 bufstate_T *bp; | |
1333 stateitem_T *cur_si; | |
1512 | 1334 synstate_T *sp = syn_stack_find_entry(current_lnum); |
7 | 1335 |
1336 /* | |
1337 * If the current state contains a start or end pattern that continues | |
1338 * from the previous line, we can't use it. Don't store it then. | |
1339 */ | |
1340 for (i = current_state.ga_len - 1; i >= 0; --i) | |
1341 { | |
1342 cur_si = &CUR_STATE(i); | |
1343 if (cur_si->si_h_startpos.lnum >= current_lnum | |
1344 || cur_si->si_m_endpos.lnum >= current_lnum | |
1345 || cur_si->si_h_endpos.lnum >= current_lnum | |
1346 || (cur_si->si_end_idx | |
1347 && cur_si->si_eoe_pos.lnum >= current_lnum)) | |
1348 break; | |
1349 } | |
1350 if (i >= 0) | |
1351 { | |
1352 if (sp != NULL) | |
1353 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1354 // find "sp" in the list and remove it |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1355 if (syn_block->b_sst_first == sp) |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1356 // it's the first entry |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1357 syn_block->b_sst_first = sp->sst_next; |
7 | 1358 else |
1359 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1360 // find the entry just before this one to adjust sst_next |
19934
3ff714d765ba
patch 8.2.0523: loops are repeated
Bram Moolenaar <Bram@vim.org>
parents:
19892
diff
changeset
|
1361 FOR_ALL_SYNSTATES(syn_block, p) |
7 | 1362 if (p->sst_next == sp) |
1363 break; | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1364 if (p != NULL) // just in case |
840 | 1365 p->sst_next = sp->sst_next; |
7 | 1366 } |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1367 syn_stack_free_entry(syn_block, sp); |
7 | 1368 sp = NULL; |
1369 } | |
1370 } | |
1371 else if (sp == NULL || sp->sst_lnum != current_lnum) | |
1372 { | |
1373 /* | |
1374 * Add a new entry | |
1375 */ | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1376 // If no free items, cleanup the array first. |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1377 if (syn_block->b_sst_freecount == 0) |
7 | 1378 { |
1379 (void)syn_stack_cleanup(); | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1380 // "sp" may have been moved to the freelist now |
7 | 1381 sp = syn_stack_find_entry(current_lnum); |
1382 } | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1383 // Still no free items? Must be a strange problem... |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1384 if (syn_block->b_sst_freecount == 0) |
7 | 1385 sp = NULL; |
1386 else | |
1387 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1388 // Take the first item from the free list and put it in the used |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1389 // list, after *sp |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1390 p = syn_block->b_sst_firstfree; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1391 syn_block->b_sst_firstfree = p->sst_next; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1392 --syn_block->b_sst_freecount; |
7 | 1393 if (sp == NULL) |
1394 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1395 // Insert in front of the list |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1396 p->sst_next = syn_block->b_sst_first; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1397 syn_block->b_sst_first = p; |
7 | 1398 } |
1399 else | |
1400 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1401 // insert in list after *sp |
7 | 1402 p->sst_next = sp->sst_next; |
1403 sp->sst_next = p; | |
1404 } | |
1405 sp = p; | |
1406 sp->sst_stacksize = 0; | |
1407 sp->sst_lnum = current_lnum; | |
1408 } | |
1409 } | |
1410 if (sp != NULL) | |
1411 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1412 // When overwriting an existing state stack, clear it first |
7 | 1413 clear_syn_state(sp); |
1414 sp->sst_stacksize = current_state.ga_len; | |
1415 if (current_state.ga_len > SST_FIX_STATES) | |
1416 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1417 // Need to clear it, might be something remaining from when the |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1418 // length was less than SST_FIX_STATES. |
7 | 1419 ga_init2(&sp->sst_union.sst_ga, (int)sizeof(bufstate_T), 1); |
1420 if (ga_grow(&sp->sst_union.sst_ga, current_state.ga_len) == FAIL) | |
1421 sp->sst_stacksize = 0; | |
1422 else | |
1423 sp->sst_union.sst_ga.ga_len = current_state.ga_len; | |
1424 bp = SYN_STATE_P(&(sp->sst_union.sst_ga)); | |
1425 } | |
1426 else | |
1427 bp = sp->sst_union.sst_stack; | |
1428 for (i = 0; i < sp->sst_stacksize; ++i) | |
1429 { | |
1430 bp[i].bs_idx = CUR_STATE(i).si_idx; | |
1431 bp[i].bs_flags = CUR_STATE(i).si_flags; | |
2425
b5ee68272ae5
Fix: concealed regions didn't get redrawn correctly when moving the cursor
Bram Moolenaar <bram@vim.org>
parents:
2418
diff
changeset
|
1432 #ifdef FEAT_CONCEAL |
b5ee68272ae5
Fix: concealed regions didn't get redrawn correctly when moving the cursor
Bram Moolenaar <bram@vim.org>
parents:
2418
diff
changeset
|
1433 bp[i].bs_seqnr = CUR_STATE(i).si_seqnr; |
b5ee68272ae5
Fix: concealed regions didn't get redrawn correctly when moving the cursor
Bram Moolenaar <bram@vim.org>
parents:
2418
diff
changeset
|
1434 bp[i].bs_cchar = CUR_STATE(i).si_cchar; |
b5ee68272ae5
Fix: concealed regions didn't get redrawn correctly when moving the cursor
Bram Moolenaar <bram@vim.org>
parents:
2418
diff
changeset
|
1435 #endif |
7 | 1436 bp[i].bs_extmatch = ref_extmatch(CUR_STATE(i).si_extmatch); |
1437 } | |
1438 sp->sst_next_flags = current_next_flags; | |
1439 sp->sst_next_list = current_next_list; | |
1440 sp->sst_tick = display_tick; | |
1441 sp->sst_change_lnum = 0; | |
1442 } | |
1443 current_state_stored = TRUE; | |
1444 return sp; | |
1445 } | |
1446 | |
1447 /* | |
1448 * Copy a state stack from "from" in b_sst_array[] to current_state; | |
1449 */ | |
1450 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1451 load_current_state(synstate_T *from) |
7 | 1452 { |
1453 int i; | |
1454 bufstate_T *bp; | |
1455 | |
1456 clear_current_state(); | |
1457 validate_current_state(); | |
1458 keepend_level = -1; | |
1459 if (from->sst_stacksize | |
1460 && ga_grow(¤t_state, from->sst_stacksize) != FAIL) | |
1461 { | |
1462 if (from->sst_stacksize > SST_FIX_STATES) | |
1463 bp = SYN_STATE_P(&(from->sst_union.sst_ga)); | |
1464 else | |
1465 bp = from->sst_union.sst_stack; | |
1466 for (i = 0; i < from->sst_stacksize; ++i) | |
1467 { | |
1468 CUR_STATE(i).si_idx = bp[i].bs_idx; | |
1469 CUR_STATE(i).si_flags = bp[i].bs_flags; | |
2425
b5ee68272ae5
Fix: concealed regions didn't get redrawn correctly when moving the cursor
Bram Moolenaar <bram@vim.org>
parents:
2418
diff
changeset
|
1470 #ifdef FEAT_CONCEAL |
b5ee68272ae5
Fix: concealed regions didn't get redrawn correctly when moving the cursor
Bram Moolenaar <bram@vim.org>
parents:
2418
diff
changeset
|
1471 CUR_STATE(i).si_seqnr = bp[i].bs_seqnr; |
b5ee68272ae5
Fix: concealed regions didn't get redrawn correctly when moving the cursor
Bram Moolenaar <bram@vim.org>
parents:
2418
diff
changeset
|
1472 CUR_STATE(i).si_cchar = bp[i].bs_cchar; |
b5ee68272ae5
Fix: concealed regions didn't get redrawn correctly when moving the cursor
Bram Moolenaar <bram@vim.org>
parents:
2418
diff
changeset
|
1473 #endif |
7 | 1474 CUR_STATE(i).si_extmatch = ref_extmatch(bp[i].bs_extmatch); |
1475 if (keepend_level < 0 && (CUR_STATE(i).si_flags & HL_KEEPEND)) | |
1476 keepend_level = i; | |
1477 CUR_STATE(i).si_ends = FALSE; | |
1478 CUR_STATE(i).si_m_lnum = 0; | |
1479 if (CUR_STATE(i).si_idx >= 0) | |
1480 CUR_STATE(i).si_next_list = | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1481 (SYN_ITEMS(syn_block)[CUR_STATE(i).si_idx]).sp_next_list; |
7 | 1482 else |
1483 CUR_STATE(i).si_next_list = NULL; | |
1484 update_si_attr(i); | |
1485 } | |
1486 current_state.ga_len = from->sst_stacksize; | |
1487 } | |
1488 current_next_list = from->sst_next_list; | |
1489 current_next_flags = from->sst_next_flags; | |
1490 current_lnum = from->sst_lnum; | |
1491 } | |
1492 | |
1493 /* | |
1494 * Compare saved state stack "*sp" with the current state. | |
1495 * Return TRUE when they are equal. | |
1496 */ | |
1497 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1498 syn_stack_equal(synstate_T *sp) |
7 | 1499 { |
1500 int i, j; | |
1501 bufstate_T *bp; | |
1502 reg_extmatch_T *six, *bsx; | |
1503 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1504 // First a quick check if the stacks have the same size end nextlist. |
7 | 1505 if (sp->sst_stacksize == current_state.ga_len |
1506 && sp->sst_next_list == current_next_list) | |
1507 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1508 // Need to compare all states on both stacks. |
7 | 1509 if (sp->sst_stacksize > SST_FIX_STATES) |
1510 bp = SYN_STATE_P(&(sp->sst_union.sst_ga)); | |
1511 else | |
1512 bp = sp->sst_union.sst_stack; | |
1513 | |
1514 for (i = current_state.ga_len; --i >= 0; ) | |
1515 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1516 // If the item has another index the state is different. |
7 | 1517 if (bp[i].bs_idx != CUR_STATE(i).si_idx) |
1518 break; | |
1519 if (bp[i].bs_extmatch != CUR_STATE(i).si_extmatch) | |
1520 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1521 // When the extmatch pointers are different, the strings in |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1522 // them can still be the same. Check if the extmatch |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1523 // references are equal. |
7 | 1524 bsx = bp[i].bs_extmatch; |
1525 six = CUR_STATE(i).si_extmatch; | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1526 // If one of the extmatch pointers is NULL the states are |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1527 // different. |
7 | 1528 if (bsx == NULL || six == NULL) |
1529 break; | |
1530 for (j = 0; j < NSUBEXP; ++j) | |
1531 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1532 // Check each referenced match string. They must all be |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1533 // equal. |
7 | 1534 if (bsx->matches[j] != six->matches[j]) |
1535 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1536 // If the pointer is different it can still be the |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1537 // same text. Compare the strings, ignore case when |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1538 // the start item has the sp_ic flag set. |
7 | 1539 if (bsx->matches[j] == NULL |
1540 || six->matches[j] == NULL) | |
1541 break; | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1542 if ((SYN_ITEMS(syn_block)[CUR_STATE(i).si_idx]).sp_ic |
7 | 1543 ? MB_STRICMP(bsx->matches[j], |
1544 six->matches[j]) != 0 | |
1545 : STRCMP(bsx->matches[j], six->matches[j]) != 0) | |
1546 break; | |
1547 } | |
1548 } | |
1549 if (j != NSUBEXP) | |
1550 break; | |
1551 } | |
1552 } | |
1553 if (i < 0) | |
1554 return TRUE; | |
1555 } | |
1556 return FALSE; | |
1557 } | |
1558 | |
1559 /* | |
1560 * We stop parsing syntax above line "lnum". If the stored state at or below | |
1561 * this line depended on a change before it, it now depends on the line below | |
1562 * the last parsed line. | |
1563 * The window looks like this: | |
1564 * line which changed | |
1565 * displayed line | |
1566 * displayed line | |
1567 * lnum -> line below window | |
1568 */ | |
1569 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1570 syntax_end_parsing(linenr_T lnum) |
7 | 1571 { |
1572 synstate_T *sp; | |
1573 | |
1574 sp = syn_stack_find_entry(lnum); | |
1575 if (sp != NULL && sp->sst_lnum < lnum) | |
1576 sp = sp->sst_next; | |
1577 | |
1578 if (sp != NULL && sp->sst_change_lnum != 0) | |
1579 sp->sst_change_lnum = lnum; | |
1580 } | |
1581 | |
1582 /* | |
1583 * End of handling of the state stack. | |
1584 ****************************************/ | |
1585 | |
1586 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1587 invalidate_current_state(void) |
7 | 1588 { |
1589 clear_current_state(); | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1590 current_state.ga_itemsize = 0; // mark current_state invalid |
7 | 1591 current_next_list = NULL; |
1592 keepend_level = -1; | |
1593 } | |
1594 | |
1595 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1596 validate_current_state(void) |
7 | 1597 { |
1598 current_state.ga_itemsize = sizeof(stateitem_T); | |
1599 current_state.ga_growsize = 3; | |
1600 } | |
1601 | |
1602 /* | |
1603 * Return TRUE if the syntax at start of lnum changed since last time. | |
1604 * This will only be called just after get_syntax_attr() for the previous | |
1605 * line, to check if the next line needs to be redrawn too. | |
1606 */ | |
1607 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1608 syntax_check_changed(linenr_T lnum) |
7 | 1609 { |
1610 int retval = TRUE; | |
1611 synstate_T *sp; | |
1612 | |
1613 /* | |
1614 * Check the state stack when: | |
1615 * - lnum is just below the previously syntaxed line. | |
1616 * - lnum is not before the lines with saved states. | |
1617 * - lnum is not past the lines with saved states. | |
1618 * - lnum is at or before the last changed line. | |
1619 */ | |
1620 if (VALID_STATE(¤t_state) && lnum == current_lnum + 1) | |
1621 { | |
1622 sp = syn_stack_find_entry(lnum); | |
1623 if (sp != NULL && sp->sst_lnum == lnum) | |
1624 { | |
1625 /* | |
1626 * finish the previous line (needed when not all of the line was | |
1627 * drawn) | |
1628 */ | |
1629 (void)syn_finish_line(FALSE); | |
1630 | |
1631 /* | |
1632 * Compare the current state with the previously saved state of | |
1633 * the line. | |
1634 */ | |
1635 if (syn_stack_equal(sp)) | |
1636 retval = FALSE; | |
1637 | |
1638 /* | |
1639 * Store the current state in b_sst_array[] for later use. | |
1640 */ | |
1641 ++current_lnum; | |
1512 | 1642 (void)store_current_state(); |
7 | 1643 } |
1644 } | |
1645 | |
1646 return retval; | |
1647 } | |
1648 | |
1649 /* | |
1650 * Finish the current line. | |
1651 * This doesn't return any attributes, it only gets the state at the end of | |
1652 * the line. It can start anywhere in the line, as long as the current state | |
1653 * is valid. | |
1654 */ | |
1655 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1656 syn_finish_line( |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1657 int syncing) // called for syncing |
7 | 1658 { |
1659 stateitem_T *cur_si; | |
442 | 1660 colnr_T prev_current_col; |
7 | 1661 |
11189
e74af2aca96e
patch 8.0.0481: unnecessary if statement
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
1662 while (!current_finished) |
e74af2aca96e
patch 8.0.0481: unnecessary if statement
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
1663 { |
e74af2aca96e
patch 8.0.0481: unnecessary if statement
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
1664 (void)syn_current_attr(syncing, FALSE, NULL, FALSE); |
e74af2aca96e
patch 8.0.0481: unnecessary if statement
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
1665 /* |
e74af2aca96e
patch 8.0.0481: unnecessary if statement
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
1666 * When syncing, and found some item, need to check the item. |
e74af2aca96e
patch 8.0.0481: unnecessary if statement
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
1667 */ |
e74af2aca96e
patch 8.0.0481: unnecessary if statement
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
1668 if (syncing && current_state.ga_len) |
e74af2aca96e
patch 8.0.0481: unnecessary if statement
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
1669 { |
7 | 1670 /* |
11189
e74af2aca96e
patch 8.0.0481: unnecessary if statement
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
1671 * Check for match with sync item. |
7 | 1672 */ |
11189
e74af2aca96e
patch 8.0.0481: unnecessary if statement
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
1673 cur_si = &CUR_STATE(current_state.ga_len - 1); |
e74af2aca96e
patch 8.0.0481: unnecessary if statement
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
1674 if (cur_si->si_idx >= 0 |
e74af2aca96e
patch 8.0.0481: unnecessary if statement
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
1675 && (SYN_ITEMS(syn_block)[cur_si->si_idx].sp_flags |
e74af2aca96e
patch 8.0.0481: unnecessary if statement
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
1676 & (HL_SYNC_HERE|HL_SYNC_THERE))) |
e74af2aca96e
patch 8.0.0481: unnecessary if statement
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
1677 return TRUE; |
e74af2aca96e
patch 8.0.0481: unnecessary if statement
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
1678 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1679 // syn_current_attr() will have skipped the check for an item |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1680 // that ends here, need to do that now. Be careful not to go |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1681 // past the NUL. |
11189
e74af2aca96e
patch 8.0.0481: unnecessary if statement
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
1682 prev_current_col = current_col; |
e74af2aca96e
patch 8.0.0481: unnecessary if statement
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
1683 if (syn_getcurline()[current_col] != NUL) |
e74af2aca96e
patch 8.0.0481: unnecessary if statement
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
1684 ++current_col; |
e74af2aca96e
patch 8.0.0481: unnecessary if statement
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
1685 check_state_ends(); |
e74af2aca96e
patch 8.0.0481: unnecessary if statement
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
1686 current_col = prev_current_col; |
e74af2aca96e
patch 8.0.0481: unnecessary if statement
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
1687 } |
e74af2aca96e
patch 8.0.0481: unnecessary if statement
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
1688 ++current_col; |
7 | 1689 } |
1690 return FALSE; | |
1691 } | |
1692 | |
1693 /* | |
1694 * Return highlight attributes for next character. | |
1695 * Must first call syntax_start() once for the line. | |
1696 * "col" is normally 0 for the first use in a line, and increments by one each | |
1697 * time. It's allowed to skip characters and to stop before the end of the | |
1698 * line. But only a "col" after a previously used column is allowed. | |
221 | 1699 * When "can_spell" is not NULL set it to TRUE when spell-checking should be |
1700 * done. | |
7 | 1701 */ |
1702 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1703 get_syntax_attr( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1704 colnr_T col, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1705 int *can_spell, |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1706 int keep_state) // keep state of char at "col" |
7 | 1707 { |
1708 int attr = 0; | |
1709 | |
1363 | 1710 if (can_spell != NULL) |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1711 // Default: Only do spelling when there is no @Spell cluster or when |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1712 // ":syn spell toplevel" was used. |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1713 *can_spell = syn_block->b_syn_spell == SYNSPL_DEFAULT |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1714 ? (syn_block->b_spell_cluster_id == 0) |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1715 : (syn_block->b_syn_spell == SYNSPL_TOP); |
1363 | 1716 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1717 // check for out of memory situation |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1718 if (syn_block->b_sst_array == NULL) |
7 | 1719 return 0; |
1720 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1721 // After 'synmaxcol' the attribute is always zero. |
431 | 1722 if (syn_buf->b_p_smc > 0 && col >= (colnr_T)syn_buf->b_p_smc) |
419 | 1723 { |
1724 clear_current_state(); | |
1725 #ifdef FEAT_EVAL | |
1726 current_id = 0; | |
1727 current_trans_id = 0; | |
1728 #endif | |
2401
e7751177126b
Add the synconcealed() function and use it for :TOhtml. (Benjamin Fritz)
Bram Moolenaar <bram@vim.org>
parents:
2392
diff
changeset
|
1729 #ifdef FEAT_CONCEAL |
e7751177126b
Add the synconcealed() function and use it for :TOhtml. (Benjamin Fritz)
Bram Moolenaar <bram@vim.org>
parents:
2392
diff
changeset
|
1730 current_flags = 0; |
11579
52e3a77c097b
patch 8.0.0672: third item of synconcealed() changes too often
Christian Brabandt <cb@256bit.org>
parents:
11541
diff
changeset
|
1731 current_seqnr = 0; |
2401
e7751177126b
Add the synconcealed() function and use it for :TOhtml. (Benjamin Fritz)
Bram Moolenaar <bram@vim.org>
parents:
2392
diff
changeset
|
1732 #endif |
419 | 1733 return 0; |
1734 } | |
1735 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1736 // Make sure current_state is valid |
7 | 1737 if (INVALID_STATE(¤t_state)) |
1738 validate_current_state(); | |
1739 | |
1740 /* | |
1741 * Skip from the current column to "col", get the attributes for "col". | |
1742 */ | |
1743 while (current_col <= col) | |
1744 { | |
1504 | 1745 attr = syn_current_attr(FALSE, TRUE, can_spell, |
1746 current_col == col ? keep_state : FALSE); | |
7 | 1747 ++current_col; |
1748 } | |
1749 | |
1750 return attr; | |
1751 } | |
1752 | |
1753 /* | |
1754 * Get syntax attributes for current_lnum, current_col. | |
1755 */ | |
1756 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1757 syn_current_attr( |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1758 int syncing, // When 1: called for syncing |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1759 int displaying, // result will be displayed |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1760 int *can_spell, // return: do spell checking |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1761 int keep_state) // keep syntax stack afterwards |
7 | 1762 { |
1763 int syn_id; | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1764 lpos_T endpos; // was: char_u *endp; |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1765 lpos_T hl_startpos; // was: int hl_startcol; |
7 | 1766 lpos_T hl_endpos; |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1767 lpos_T eos_pos; // end-of-start match (start region) |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1768 lpos_T eoe_pos; // end-of-end pattern |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1769 int end_idx; // group ID for end pattern |
7 | 1770 int idx; |
1771 synpat_T *spp; | |
221 | 1772 stateitem_T *cur_si, *sip = NULL; |
7 | 1773 int startcol; |
1774 int endcol; | |
1775 long flags; | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1776 int cchar; |
7 | 1777 short *next_list; |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1778 int found_match; // found usable match |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1779 static int try_next_column = FALSE; // must try in next col |
7 | 1780 int do_keywords; |
1781 regmmatch_T regmatch; | |
1782 lpos_T pos; | |
1783 int lc_col; | |
1784 reg_extmatch_T *cur_extmatch = NULL; | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1785 char_u buf_chartab[32]; // chartab array for syn iskyeyword |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1786 char_u *line; // current line. NOTE: becomes invalid after |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1787 // looking for a pattern match! |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1788 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1789 // variables for zero-width matches that have a "nextgroup" argument |
7 | 1790 int keep_next_list; |
1791 int zero_width_next_list = FALSE; | |
1792 garray_T zero_width_next_ga; | |
1793 | |
1794 /* | |
1795 * No character, no attributes! Past end of line? | |
1796 * Do try matching with an empty line (could be the start of a region). | |
1797 */ | |
1798 line = syn_getcurline(); | |
1799 if (line[current_col] == NUL && current_col != 0) | |
1800 { | |
1801 /* | |
1802 * If we found a match after the last column, use it. | |
1803 */ | |
1804 if (next_match_idx >= 0 && next_match_col >= (int)current_col | |
1805 && next_match_col != MAXCOL) | |
1806 (void)push_next_match(NULL); | |
1807 | |
1808 current_finished = TRUE; | |
1809 current_state_stored = FALSE; | |
1810 return 0; | |
1811 } | |
1812 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1813 // if the current or next character is NUL, we will finish the line now |
7 | 1814 if (line[current_col] == NUL || line[current_col + 1] == NUL) |
1815 { | |
1816 current_finished = TRUE; | |
1817 current_state_stored = FALSE; | |
1818 } | |
1819 | |
1820 /* | |
1821 * When in the previous column there was a match but it could not be used | |
1822 * (empty match or already matched in this column) need to try again in | |
1823 * the next column. | |
1824 */ | |
1825 if (try_next_column) | |
1826 { | |
1827 next_match_idx = -1; | |
1828 try_next_column = FALSE; | |
1829 } | |
1830 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1831 // Only check for keywords when not syncing and there are some. |
7 | 1832 do_keywords = !syncing |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1833 && (syn_block->b_keywtab.ht_used > 0 |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1834 || syn_block->b_keywtab_ic.ht_used > 0); |
7 | 1835 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1836 // Init the list of zero-width matches with a nextlist. This is used to |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1837 // avoid matching the same item in the same position twice. |
7 | 1838 ga_init2(&zero_width_next_ga, (int)sizeof(int), 10); |
1839 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1840 // use syntax iskeyword option |
7687
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
1841 save_chartab(buf_chartab); |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
1842 |
7 | 1843 /* |
1844 * Repeat matching keywords and patterns, to find contained items at the | |
1845 * same column. This stops when there are no extra matches at the current | |
1846 * column. | |
1847 */ | |
1848 do | |
1849 { | |
1850 found_match = FALSE; | |
1851 keep_next_list = FALSE; | |
1852 syn_id = 0; | |
1853 | |
7687
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
1854 |
7 | 1855 /* |
1856 * 1. Check for a current state. | |
1857 * Only when there is no current state, or if the current state may | |
1858 * contain other things, we need to check for keywords and patterns. | |
1859 * Always need to check for contained items if some item has the | |
1860 * "containedin" argument (takes extra time!). | |
1861 */ | |
1862 if (current_state.ga_len) | |
1863 cur_si = &CUR_STATE(current_state.ga_len - 1); | |
1864 else | |
1865 cur_si = NULL; | |
1866 | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1867 if (syn_block->b_syn_containedin || cur_si == NULL |
7 | 1868 || cur_si->si_cont_list != NULL) |
1869 { | |
1870 /* | |
1871 * 2. Check for keywords, if on a keyword char after a non-keyword | |
1872 * char. Don't do this when syncing. | |
1873 */ | |
1874 if (do_keywords) | |
1875 { | |
1876 line = syn_getcurline(); | |
4043 | 1877 if (vim_iswordp_buf(line + current_col, syn_buf) |
7 | 1878 && (current_col == 0 |
4043 | 1879 || !vim_iswordp_buf(line + current_col - 1 |
7 | 1880 - (has_mbyte |
1881 ? (*mb_head_off)(line, line + current_col - 1) | |
15605
62b3805506b3
patch 8.1.0810: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
1882 : 0) , syn_buf))) |
7 | 1883 { |
1884 syn_id = check_keyword_id(line, (int)current_col, | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1885 &endcol, &flags, &next_list, cur_si, |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1886 &cchar); |
205 | 1887 if (syn_id != 0) |
7 | 1888 { |
1889 if (push_current_state(KEYWORD_IDX) == OK) | |
1890 { | |
1891 cur_si = &CUR_STATE(current_state.ga_len - 1); | |
1892 cur_si->si_m_startcol = current_col; | |
1893 cur_si->si_h_startpos.lnum = current_lnum; | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1894 cur_si->si_h_startpos.col = 0; // starts right away |
7 | 1895 cur_si->si_m_endpos.lnum = current_lnum; |
1896 cur_si->si_m_endpos.col = endcol; | |
1897 cur_si->si_h_endpos.lnum = current_lnum; | |
1898 cur_si->si_h_endpos.col = endcol; | |
1899 cur_si->si_ends = TRUE; | |
1900 cur_si->si_end_idx = 0; | |
1901 cur_si->si_flags = flags; | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1902 #ifdef FEAT_CONCEAL |
2392
0371401d9d33
Give each syntax item a sequence number, so that we know when it starts and
Bram Moolenaar <bram@vim.org>
parents:
2375
diff
changeset
|
1903 cur_si->si_seqnr = next_seqnr++; |
2425
b5ee68272ae5
Fix: concealed regions didn't get redrawn correctly when moving the cursor
Bram Moolenaar <bram@vim.org>
parents:
2418
diff
changeset
|
1904 cur_si->si_cchar = cchar; |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1905 if (current_state.ga_len > 1) |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1906 cur_si->si_flags |= |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1907 CUR_STATE(current_state.ga_len - 2).si_flags |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1908 & HL_CONCEAL; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1909 #endif |
7 | 1910 cur_si->si_id = syn_id; |
1911 cur_si->si_trans_id = syn_id; | |
1912 if (flags & HL_TRANSP) | |
1913 { | |
1914 if (current_state.ga_len < 2) | |
1915 { | |
1916 cur_si->si_attr = 0; | |
1917 cur_si->si_trans_id = 0; | |
1918 } | |
1919 else | |
1920 { | |
1921 cur_si->si_attr = CUR_STATE( | |
1922 current_state.ga_len - 2).si_attr; | |
1923 cur_si->si_trans_id = CUR_STATE( | |
1924 current_state.ga_len - 2).si_trans_id; | |
1925 } | |
1926 } | |
1927 else | |
1928 cur_si->si_attr = syn_id2attr(syn_id); | |
1929 cur_si->si_cont_list = NULL; | |
1930 cur_si->si_next_list = next_list; | |
1931 check_keepend(); | |
1932 } | |
1933 else | |
1934 vim_free(next_list); | |
1935 } | |
1936 } | |
1937 } | |
1938 | |
1939 /* | |
205 | 1940 * 3. Check for patterns (only if no keyword found). |
7 | 1941 */ |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1942 if (syn_id == 0 && syn_block->b_syn_patterns.ga_len) |
7 | 1943 { |
1944 /* | |
1945 * If we didn't check for a match yet, or we are past it, check | |
1946 * for any match with a pattern. | |
1947 */ | |
1948 if (next_match_idx < 0 || next_match_col < (int)current_col) | |
1949 { | |
1950 /* | |
1951 * Check all relevant patterns for a match at this | |
1952 * position. This is complicated, because matching with a | |
1953 * pattern takes quite a bit of time, thus we want to | |
1954 * avoid doing it when it's not needed. | |
1955 */ | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1956 next_match_idx = 0; // no match in this line yet |
7 | 1957 next_match_col = MAXCOL; |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1958 for (idx = syn_block->b_syn_patterns.ga_len; --idx >= 0; ) |
7 | 1959 { |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1960 spp = &(SYN_ITEMS(syn_block)[idx]); |
7 | 1961 if ( spp->sp_syncing == syncing |
1962 && (displaying || !(spp->sp_flags & HL_DISPLAY)) | |
1963 && (spp->sp_type == SPTYPE_MATCH | |
1964 || spp->sp_type == SPTYPE_START) | |
1965 && (current_next_list != NULL | |
1966 ? in_id_list(NULL, current_next_list, | |
1967 &spp->sp_syn, 0) | |
1968 : (cur_si == NULL | |
1969 ? !(spp->sp_flags & HL_CONTAINED) | |
1970 : in_id_list(cur_si, | |
1971 cur_si->si_cont_list, &spp->sp_syn, | |
1972 spp->sp_flags & HL_CONTAINED)))) | |
1973 { | |
6375 | 1974 int r; |
1975 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1976 // If we already tried matching in this line, and |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1977 // there isn't a match before next_match_col, skip |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1978 // this item. |
7 | 1979 if (spp->sp_line_id == current_line_id |
1980 && spp->sp_startcol >= next_match_col) | |
1981 continue; | |
1982 spp->sp_line_id = current_line_id; | |
1983 | |
1984 lc_col = current_col - spp->sp_offsets[SPO_LC_OFF]; | |
1985 if (lc_col < 0) | |
1986 lc_col = 0; | |
1987 | |
1988 regmatch.rmm_ic = spp->sp_ic; | |
1989 regmatch.regprog = spp->sp_prog; | |
6375 | 1990 r = syn_regexec(®match, |
4764
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
1991 current_lnum, |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
1992 (colnr_T)lc_col, |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
12973
diff
changeset
|
1993 IF_SYN_TIME(&spp->sp_time)); |
6375 | 1994 spp->sp_prog = regmatch.regprog; |
1995 if (!r) | |
7 | 1996 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
1997 // no match in this line, try another one |
7 | 1998 spp->sp_startcol = MAXCOL; |
1999 continue; | |
2000 } | |
2001 | |
2002 /* | |
2003 * Compute the first column of the match. | |
2004 */ | |
2005 syn_add_start_off(&pos, ®match, | |
2006 spp, SPO_MS_OFF, -1); | |
2007 if (pos.lnum > current_lnum) | |
2008 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2009 // must have used end of match in a next line, |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2010 // we can't handle that |
7 | 2011 spp->sp_startcol = MAXCOL; |
2012 continue; | |
2013 } | |
2014 startcol = pos.col; | |
2015 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2016 // remember the next column where this pattern |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2017 // matches in the current line |
7 | 2018 spp->sp_startcol = startcol; |
2019 | |
2020 /* | |
2021 * If a previously found match starts at a lower | |
2022 * column number, don't use this one. | |
2023 */ | |
2024 if (startcol >= next_match_col) | |
2025 continue; | |
2026 | |
2027 /* | |
2028 * If we matched this pattern at this position | |
2029 * before, skip it. Must retry in the next | |
2030 * column, because it may match from there. | |
2031 */ | |
2032 if (did_match_already(idx, &zero_width_next_ga)) | |
2033 { | |
2034 try_next_column = TRUE; | |
2035 continue; | |
2036 } | |
2037 | |
2038 endpos.lnum = regmatch.endpos[0].lnum; | |
2039 endpos.col = regmatch.endpos[0].col; | |
2040 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2041 // Compute the highlight start. |
7 | 2042 syn_add_start_off(&hl_startpos, ®match, |
2043 spp, SPO_HS_OFF, -1); | |
2044 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2045 // Compute the region start. |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2046 // Default is to use the end of the match. |
7 | 2047 syn_add_end_off(&eos_pos, ®match, |
2048 spp, SPO_RS_OFF, 0); | |
2049 | |
2050 /* | |
2051 * Grab the external submatches before they get | |
2052 * overwritten. Reference count doesn't change. | |
2053 */ | |
2054 unref_extmatch(cur_extmatch); | |
2055 cur_extmatch = re_extmatch_out; | |
2056 re_extmatch_out = NULL; | |
2057 | |
2058 flags = 0; | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2059 eoe_pos.lnum = 0; // avoid warning |
7 | 2060 eoe_pos.col = 0; |
2061 end_idx = 0; | |
2062 hl_endpos.lnum = 0; | |
2063 | |
2064 /* | |
2065 * For a "oneline" the end must be found in the | |
2066 * same line too. Search for it after the end of | |
2067 * the match with the start pattern. Set the | |
2068 * resulting end positions at the same time. | |
2069 */ | |
2070 if (spp->sp_type == SPTYPE_START | |
2071 && (spp->sp_flags & HL_ONELINE)) | |
2072 { | |
2073 lpos_T startpos; | |
2074 | |
2075 startpos = endpos; | |
2076 find_endpos(idx, &startpos, &endpos, &hl_endpos, | |
2077 &flags, &eoe_pos, &end_idx, cur_extmatch); | |
2078 if (endpos.lnum == 0) | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2079 continue; // not found |
7 | 2080 } |
2081 | |
2082 /* | |
2083 * For a "match" the size must be > 0 after the | |
2084 * end offset needs has been added. Except when | |
2085 * syncing. | |
2086 */ | |
2087 else if (spp->sp_type == SPTYPE_MATCH) | |
2088 { | |
2089 syn_add_end_off(&hl_endpos, ®match, spp, | |
2090 SPO_HE_OFF, 0); | |
2091 syn_add_end_off(&endpos, ®match, spp, | |
2092 SPO_ME_OFF, 0); | |
2093 if (endpos.lnum == current_lnum | |
2094 && (int)endpos.col + syncing < startcol) | |
2095 { | |
2096 /* | |
2097 * If an empty string is matched, may need | |
2098 * to try matching again at next column. | |
2099 */ | |
2100 if (regmatch.startpos[0].col | |
2101 == regmatch.endpos[0].col) | |
2102 try_next_column = TRUE; | |
2103 continue; | |
2104 } | |
2105 } | |
2106 | |
2107 /* | |
2108 * keep the best match so far in next_match_* | |
2109 */ | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2110 // Highlighting must start after startpos and end |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2111 // before endpos. |
7 | 2112 if (hl_startpos.lnum == current_lnum |
2113 && (int)hl_startpos.col < startcol) | |
2114 hl_startpos.col = startcol; | |
2115 limit_pos_zero(&hl_endpos, &endpos); | |
2116 | |
2117 next_match_idx = idx; | |
2118 next_match_col = startcol; | |
2119 next_match_m_endpos = endpos; | |
2120 next_match_h_endpos = hl_endpos; | |
2121 next_match_h_startpos = hl_startpos; | |
2122 next_match_flags = flags; | |
2123 next_match_eos_pos = eos_pos; | |
2124 next_match_eoe_pos = eoe_pos; | |
2125 next_match_end_idx = end_idx; | |
2126 unref_extmatch(next_match_extmatch); | |
2127 next_match_extmatch = cur_extmatch; | |
2128 cur_extmatch = NULL; | |
2129 } | |
2130 } | |
2131 } | |
2132 | |
2133 /* | |
2134 * If we found a match at the current column, use it. | |
2135 */ | |
2136 if (next_match_idx >= 0 && next_match_col == (int)current_col) | |
2137 { | |
2138 synpat_T *lspp; | |
2139 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2140 // When a zero-width item matched which has a nextgroup, |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2141 // don't push the item but set nextgroup. |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2142 lspp = &(SYN_ITEMS(syn_block)[next_match_idx]); |
7 | 2143 if (next_match_m_endpos.lnum == current_lnum |
2144 && next_match_m_endpos.col == current_col | |
2145 && lspp->sp_next_list != NULL) | |
2146 { | |
2147 current_next_list = lspp->sp_next_list; | |
2148 current_next_flags = lspp->sp_flags; | |
2149 keep_next_list = TRUE; | |
2150 zero_width_next_list = TRUE; | |
2151 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2152 // Add the index to a list, so that we can check |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2153 // later that we don't match it again (and cause an |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2154 // endless loop). |
7 | 2155 if (ga_grow(&zero_width_next_ga, 1) == OK) |
2156 { | |
2157 ((int *)(zero_width_next_ga.ga_data)) | |
2158 [zero_width_next_ga.ga_len++] = next_match_idx; | |
2159 } | |
2160 next_match_idx = -1; | |
2161 } | |
2162 else | |
2163 cur_si = push_next_match(cur_si); | |
2164 found_match = TRUE; | |
2165 } | |
2166 } | |
2167 } | |
2168 | |
2169 /* | |
2170 * Handle searching for nextgroup match. | |
2171 */ | |
2172 if (current_next_list != NULL && !keep_next_list) | |
2173 { | |
2174 /* | |
2175 * If a nextgroup was not found, continue looking for one if: | |
2176 * - this is an empty line and the "skipempty" option was given | |
2177 * - we are on white space and the "skipwhite" option was given | |
2178 */ | |
2179 if (!found_match) | |
2180 { | |
2181 line = syn_getcurline(); | |
2182 if (((current_next_flags & HL_SKIPWHITE) | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
2183 && VIM_ISWHITE(line[current_col])) |
7 | 2184 || ((current_next_flags & HL_SKIPEMPTY) |
2185 && *line == NUL)) | |
2186 break; | |
2187 } | |
2188 | |
2189 /* | |
2190 * If a nextgroup was found: Use it, and continue looking for | |
2191 * contained matches. | |
2192 * If a nextgroup was not found: Continue looking for a normal | |
2193 * match. | |
2194 * When did set current_next_list for a zero-width item and no | |
2195 * match was found don't loop (would get stuck). | |
2196 */ | |
2197 current_next_list = NULL; | |
2198 next_match_idx = -1; | |
2199 if (!zero_width_next_list) | |
2200 found_match = TRUE; | |
2201 } | |
2202 | |
2203 } while (found_match); | |
2204 | |
7687
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
2205 restore_chartab(buf_chartab); |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
2206 |
7 | 2207 /* |
2208 * Use attributes from the current state, if within its highlighting. | |
2209 * If not, use attributes from the current-but-one state, etc. | |
2210 */ | |
2211 current_attr = 0; | |
2212 #ifdef FEAT_EVAL | |
2213 current_id = 0; | |
2214 current_trans_id = 0; | |
2215 #endif | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2216 #ifdef FEAT_CONCEAL |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2217 current_flags = 0; |
11579
52e3a77c097b
patch 8.0.0672: third item of synconcealed() changes too often
Christian Brabandt <cb@256bit.org>
parents:
11541
diff
changeset
|
2218 current_seqnr = 0; |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2219 #endif |
7 | 2220 if (cur_si != NULL) |
2221 { | |
221 | 2222 #ifndef FEAT_EVAL |
2223 int current_trans_id = 0; | |
2224 #endif | |
7 | 2225 for (idx = current_state.ga_len - 1; idx >= 0; --idx) |
2226 { | |
2227 sip = &CUR_STATE(idx); | |
2228 if ((current_lnum > sip->si_h_startpos.lnum | |
2229 || (current_lnum == sip->si_h_startpos.lnum | |
2230 && current_col >= sip->si_h_startpos.col)) | |
2231 && (sip->si_h_endpos.lnum == 0 | |
2232 || current_lnum < sip->si_h_endpos.lnum | |
2233 || (current_lnum == sip->si_h_endpos.lnum | |
2234 && current_col < sip->si_h_endpos.col))) | |
2235 { | |
2236 current_attr = sip->si_attr; | |
2237 #ifdef FEAT_EVAL | |
2238 current_id = sip->si_id; | |
221 | 2239 #endif |
7 | 2240 current_trans_id = sip->si_trans_id; |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2241 #ifdef FEAT_CONCEAL |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2242 current_flags = sip->si_flags; |
2392
0371401d9d33
Give each syntax item a sequence number, so that we know when it starts and
Bram Moolenaar <bram@vim.org>
parents:
2375
diff
changeset
|
2243 current_seqnr = sip->si_seqnr; |
2425
b5ee68272ae5
Fix: concealed regions didn't get redrawn correctly when moving the cursor
Bram Moolenaar <bram@vim.org>
parents:
2418
diff
changeset
|
2244 current_sub_char = sip->si_cchar; |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2245 #endif |
7 | 2246 break; |
2247 } | |
2248 } | |
2249 | |
221 | 2250 if (can_spell != NULL) |
2251 { | |
2252 struct sp_syn sps; | |
2253 | |
2254 /* | |
2255 * set "can_spell" to TRUE if spell checking is supposed to be | |
2256 * done in the current item. | |
2257 */ | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2258 if (syn_block->b_spell_cluster_id == 0) |
227 | 2259 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2260 // There is no @Spell cluster: Do spelling for items without |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2261 // @NoSpell cluster. |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2262 if (syn_block->b_nospell_cluster_id == 0 |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2263 || current_trans_id == 0) |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2264 *can_spell = (syn_block->b_syn_spell != SYNSPL_NOTOP); |
227 | 2265 else |
2266 { | |
2267 sps.inc_tag = 0; | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2268 sps.id = syn_block->b_nospell_cluster_id; |
227 | 2269 sps.cont_in_list = NULL; |
2270 *can_spell = !in_id_list(sip, sip->si_cont_list, &sps, 0); | |
2271 } | |
2272 } | |
221 | 2273 else |
2274 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2275 // The @Spell cluster is defined: Do spelling in items with |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2276 // the @Spell cluster. But not when @NoSpell is also there. |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2277 // At the toplevel only spell check when ":syn spell toplevel" |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2278 // was used. |
320 | 2279 if (current_trans_id == 0) |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2280 *can_spell = (syn_block->b_syn_spell == SYNSPL_TOP); |
320 | 2281 else |
2282 { | |
2283 sps.inc_tag = 0; | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2284 sps.id = syn_block->b_spell_cluster_id; |
320 | 2285 sps.cont_in_list = NULL; |
2286 *can_spell = in_id_list(sip, sip->si_cont_list, &sps, 0); | |
2287 | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2288 if (syn_block->b_nospell_cluster_id != 0) |
320 | 2289 { |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2290 sps.id = syn_block->b_nospell_cluster_id; |
320 | 2291 if (in_id_list(sip, sip->si_cont_list, &sps, 0)) |
2292 *can_spell = FALSE; | |
2293 } | |
2294 } | |
221 | 2295 } |
2296 } | |
2297 | |
2298 | |
7 | 2299 /* |
2300 * Check for end of current state (and the states before it) at the | |
2301 * next column. Don't do this for syncing, because we would miss a | |
2302 * single character match. | |
2303 * First check if the current state ends at the current column. It | |
2304 * may be for an empty match and a containing item might end in the | |
2305 * current column. | |
2306 */ | |
1504 | 2307 if (!syncing && !keep_state) |
7 | 2308 { |
2309 check_state_ends(); | |
442 | 2310 if (current_state.ga_len > 0 |
2311 && syn_getcurline()[current_col] != NUL) | |
7 | 2312 { |
2313 ++current_col; | |
2314 check_state_ends(); | |
2315 --current_col; | |
2316 } | |
2317 } | |
2318 } | |
221 | 2319 else if (can_spell != NULL) |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2320 // Default: Only do spelling when there is no @Spell cluster or when |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2321 // ":syn spell toplevel" was used. |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2322 *can_spell = syn_block->b_syn_spell == SYNSPL_DEFAULT |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2323 ? (syn_block->b_spell_cluster_id == 0) |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2324 : (syn_block->b_syn_spell == SYNSPL_TOP); |
7 | 2325 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2326 // nextgroup ends at end of line, unless "skipnl" or "skipempty" present |
7 | 2327 if (current_next_list != NULL |
13375
33f514c94943
patch 8.0.1561: crash with rust syntax highligting
Christian Brabandt <cb@256bit.org>
parents:
13339
diff
changeset
|
2328 && (line = syn_getcurline())[current_col] != NUL |
33f514c94943
patch 8.0.1561: crash with rust syntax highligting
Christian Brabandt <cb@256bit.org>
parents:
13339
diff
changeset
|
2329 && line[current_col + 1] == NUL |
7 | 2330 && !(current_next_flags & (HL_SKIPNL | HL_SKIPEMPTY))) |
2331 current_next_list = NULL; | |
2332 | |
2333 if (zero_width_next_ga.ga_len > 0) | |
2334 ga_clear(&zero_width_next_ga); | |
2335 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2336 // No longer need external matches. But keep next_match_extmatch. |
7 | 2337 unref_extmatch(re_extmatch_out); |
2338 re_extmatch_out = NULL; | |
2339 unref_extmatch(cur_extmatch); | |
2340 | |
2341 return current_attr; | |
2342 } | |
2343 | |
2344 | |
2345 /* | |
2346 * Check if we already matched pattern "idx" at the current column. | |
2347 */ | |
2348 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2349 did_match_already(int idx, garray_T *gap) |
7 | 2350 { |
2351 int i; | |
2352 | |
2353 for (i = current_state.ga_len; --i >= 0; ) | |
2354 if (CUR_STATE(i).si_m_startcol == (int)current_col | |
2355 && CUR_STATE(i).si_m_lnum == (int)current_lnum | |
2356 && CUR_STATE(i).si_idx == idx) | |
2357 return TRUE; | |
2358 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2359 // Zero-width matches with a nextgroup argument are not put on the syntax |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2360 // stack, and can only be matched once anyway. |
7 | 2361 for (i = gap->ga_len; --i >= 0; ) |
2362 if (((int *)(gap->ga_data))[i] == idx) | |
2363 return TRUE; | |
2364 | |
2365 return FALSE; | |
2366 } | |
2367 | |
2368 /* | |
2369 * Push the next match onto the stack. | |
2370 */ | |
2371 static stateitem_T * | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2372 push_next_match(stateitem_T *cur_si) |
7 | 2373 { |
2374 synpat_T *spp; | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2375 #ifdef FEAT_CONCEAL |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2376 int save_flags; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2377 #endif |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2378 |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2379 spp = &(SYN_ITEMS(syn_block)[next_match_idx]); |
7 | 2380 |
2381 /* | |
2382 * Push the item in current_state stack; | |
2383 */ | |
2384 if (push_current_state(next_match_idx) == OK) | |
2385 { | |
2386 /* | |
2387 * If it's a start-skip-end type that crosses lines, figure out how | |
2388 * much it continues in this line. Otherwise just fill in the length. | |
2389 */ | |
2390 cur_si = &CUR_STATE(current_state.ga_len - 1); | |
2391 cur_si->si_h_startpos = next_match_h_startpos; | |
2392 cur_si->si_m_startcol = current_col; | |
2393 cur_si->si_m_lnum = current_lnum; | |
2394 cur_si->si_flags = spp->sp_flags; | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2395 #ifdef FEAT_CONCEAL |
2392
0371401d9d33
Give each syntax item a sequence number, so that we know when it starts and
Bram Moolenaar <bram@vim.org>
parents:
2375
diff
changeset
|
2396 cur_si->si_seqnr = next_seqnr++; |
2425
b5ee68272ae5
Fix: concealed regions didn't get redrawn correctly when moving the cursor
Bram Moolenaar <bram@vim.org>
parents:
2418
diff
changeset
|
2397 cur_si->si_cchar = spp->sp_cchar; |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2398 if (current_state.ga_len > 1) |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2399 cur_si->si_flags |= |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2400 CUR_STATE(current_state.ga_len - 2).si_flags & HL_CONCEAL; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2401 #endif |
7 | 2402 cur_si->si_next_list = spp->sp_next_list; |
2403 cur_si->si_extmatch = ref_extmatch(next_match_extmatch); | |
2404 if (spp->sp_type == SPTYPE_START && !(spp->sp_flags & HL_ONELINE)) | |
2405 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2406 // Try to find the end pattern in the current line |
7 | 2407 update_si_end(cur_si, (int)(next_match_m_endpos.col), TRUE); |
2408 check_keepend(); | |
2409 } | |
2410 else | |
2411 { | |
2412 cur_si->si_m_endpos = next_match_m_endpos; | |
2413 cur_si->si_h_endpos = next_match_h_endpos; | |
2414 cur_si->si_ends = TRUE; | |
2415 cur_si->si_flags |= next_match_flags; | |
2416 cur_si->si_eoe_pos = next_match_eoe_pos; | |
2417 cur_si->si_end_idx = next_match_end_idx; | |
2418 } | |
2419 if (keepend_level < 0 && (cur_si->si_flags & HL_KEEPEND)) | |
2420 keepend_level = current_state.ga_len - 1; | |
2421 check_keepend(); | |
2422 update_si_attr(current_state.ga_len - 1); | |
2423 | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2424 #ifdef FEAT_CONCEAL |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2425 save_flags = cur_si->si_flags & (HL_CONCEAL | HL_CONCEALENDS); |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2426 #endif |
7 | 2427 /* |
2428 * If the start pattern has another highlight group, push another item | |
2429 * on the stack for the start pattern. | |
2430 */ | |
2431 if ( spp->sp_type == SPTYPE_START | |
2432 && spp->sp_syn_match_id != 0 | |
2433 && push_current_state(next_match_idx) == OK) | |
2434 { | |
2435 cur_si = &CUR_STATE(current_state.ga_len - 1); | |
2436 cur_si->si_h_startpos = next_match_h_startpos; | |
2437 cur_si->si_m_startcol = current_col; | |
2438 cur_si->si_m_lnum = current_lnum; | |
2439 cur_si->si_m_endpos = next_match_eos_pos; | |
2440 cur_si->si_h_endpos = next_match_eos_pos; | |
2441 cur_si->si_ends = TRUE; | |
2442 cur_si->si_end_idx = 0; | |
2443 cur_si->si_flags = HL_MATCH; | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2444 #ifdef FEAT_CONCEAL |
2418
da067045878f
Fix for "concealends". (Vince Negri)
Bram Moolenaar <bram@vim.org>
parents:
2401
diff
changeset
|
2445 cur_si->si_seqnr = next_seqnr++; |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2446 cur_si->si_flags |= save_flags; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2447 if (cur_si->si_flags & HL_CONCEALENDS) |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2448 cur_si->si_flags |= HL_CONCEAL; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2449 #endif |
7 | 2450 cur_si->si_next_list = NULL; |
2451 check_keepend(); | |
2452 update_si_attr(current_state.ga_len - 1); | |
2453 } | |
2454 } | |
2455 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2456 next_match_idx = -1; // try other match next time |
7 | 2457 |
2458 return cur_si; | |
2459 } | |
2460 | |
2461 /* | |
2462 * Check for end of current state (and the states before it). | |
2463 */ | |
2464 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2465 check_state_ends(void) |
7 | 2466 { |
2467 stateitem_T *cur_si; | |
2863 | 2468 int had_extend; |
7 | 2469 |
2470 cur_si = &CUR_STATE(current_state.ga_len - 1); | |
2471 for (;;) | |
2472 { | |
2473 if (cur_si->si_ends | |
2474 && (cur_si->si_m_endpos.lnum < current_lnum | |
2475 || (cur_si->si_m_endpos.lnum == current_lnum | |
2476 && cur_si->si_m_endpos.col <= current_col))) | |
2477 { | |
2478 /* | |
2479 * If there is an end pattern group ID, highlight the end pattern | |
2480 * now. No need to pop the current item from the stack. | |
2481 * Only do this if the end pattern continues beyond the current | |
2482 * position. | |
2483 */ | |
2484 if (cur_si->si_end_idx | |
2485 && (cur_si->si_eoe_pos.lnum > current_lnum | |
2486 || (cur_si->si_eoe_pos.lnum == current_lnum | |
2487 && cur_si->si_eoe_pos.col > current_col))) | |
2488 { | |
2489 cur_si->si_idx = cur_si->si_end_idx; | |
2490 cur_si->si_end_idx = 0; | |
2491 cur_si->si_m_endpos = cur_si->si_eoe_pos; | |
2492 cur_si->si_h_endpos = cur_si->si_eoe_pos; | |
2493 cur_si->si_flags |= HL_MATCH; | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2494 #ifdef FEAT_CONCEAL |
2418
da067045878f
Fix for "concealends". (Vince Negri)
Bram Moolenaar <bram@vim.org>
parents:
2401
diff
changeset
|
2495 cur_si->si_seqnr = next_seqnr++; |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2496 if (cur_si->si_flags & HL_CONCEALENDS) |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2497 cur_si->si_flags |= HL_CONCEAL; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2498 #endif |
7 | 2499 update_si_attr(current_state.ga_len - 1); |
36 | 2500 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2501 // nextgroup= should not match in the end pattern |
2831 | 2502 current_next_list = NULL; |
2503 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2504 // what matches next may be different now, clear it |
36 | 2505 next_match_idx = 0; |
2506 next_match_col = MAXCOL; | |
7 | 2507 break; |
2508 } | |
2509 else | |
2510 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2511 // handle next_list, unless at end of line and no "skipnl" or |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2512 // "skipempty" |
7 | 2513 current_next_list = cur_si->si_next_list; |
2514 current_next_flags = cur_si->si_flags; | |
2515 if (!(current_next_flags & (HL_SKIPNL | HL_SKIPEMPTY)) | |
2516 && syn_getcurline()[current_col] == NUL) | |
2517 current_next_list = NULL; | |
2518 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2519 // When the ended item has "extend", another item with |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2520 // "keepend" now needs to check for its end. |
2863 | 2521 had_extend = (cur_si->si_flags & HL_EXTEND); |
7 | 2522 |
2523 pop_current_state(); | |
2524 | |
2525 if (current_state.ga_len == 0) | |
2526 break; | |
2527 | |
1503 | 2528 if (had_extend && keepend_level >= 0) |
7 | 2529 { |
2530 syn_update_ends(FALSE); | |
2531 if (current_state.ga_len == 0) | |
2532 break; | |
2533 } | |
2534 | |
2535 cur_si = &CUR_STATE(current_state.ga_len - 1); | |
2536 | |
2537 /* | |
2538 * Only for a region the search for the end continues after | |
2539 * the end of the contained item. If the contained match | |
2540 * included the end-of-line, break here, the region continues. | |
2541 * Don't do this when: | |
2542 * - "keepend" is used for the contained item | |
2543 * - not at the end of the line (could be end="x$"me=e-1). | |
2544 * - "excludenl" is used (HL_HAS_EOL won't be set) | |
2545 */ | |
2546 if (cur_si->si_idx >= 0 | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2547 && SYN_ITEMS(syn_block)[cur_si->si_idx].sp_type |
7 | 2548 == SPTYPE_START |
2549 && !(cur_si->si_flags & (HL_MATCH | HL_KEEPEND))) | |
2550 { | |
2551 update_si_end(cur_si, (int)current_col, TRUE); | |
2552 check_keepend(); | |
2553 if ((current_next_flags & HL_HAS_EOL) | |
2554 && keepend_level < 0 | |
2555 && syn_getcurline()[current_col] == NUL) | |
2556 break; | |
2557 } | |
2558 } | |
2559 } | |
2560 else | |
2561 break; | |
2562 } | |
2563 } | |
2564 | |
2565 /* | |
2566 * Update an entry in the current_state stack for a match or region. This | |
2567 * fills in si_attr, si_next_list and si_cont_list. | |
2568 */ | |
2569 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2570 update_si_attr(int idx) |
7 | 2571 { |
2572 stateitem_T *sip = &CUR_STATE(idx); | |
2573 synpat_T *spp; | |
2574 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2575 // This should not happen... |
1371 | 2576 if (sip->si_idx < 0) |
2577 return; | |
2578 | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2579 spp = &(SYN_ITEMS(syn_block)[sip->si_idx]); |
7 | 2580 if (sip->si_flags & HL_MATCH) |
2581 sip->si_id = spp->sp_syn_match_id; | |
2582 else | |
2583 sip->si_id = spp->sp_syn.id; | |
2584 sip->si_attr = syn_id2attr(sip->si_id); | |
2585 sip->si_trans_id = sip->si_id; | |
2586 if (sip->si_flags & HL_MATCH) | |
2587 sip->si_cont_list = NULL; | |
2588 else | |
2589 sip->si_cont_list = spp->sp_cont_list; | |
2590 | |
2591 /* | |
2592 * For transparent items, take attr from outer item. | |
2593 * Also take cont_list, if there is none. | |
2594 * Don't do this for the matchgroup of a start or end pattern. | |
2595 */ | |
2596 if ((spp->sp_flags & HL_TRANSP) && !(sip->si_flags & HL_MATCH)) | |
2597 { | |
2598 if (idx == 0) | |
2599 { | |
2600 sip->si_attr = 0; | |
2601 sip->si_trans_id = 0; | |
2602 if (sip->si_cont_list == NULL) | |
2603 sip->si_cont_list = ID_LIST_ALL; | |
2604 } | |
2605 else | |
2606 { | |
2607 sip->si_attr = CUR_STATE(idx - 1).si_attr; | |
2608 sip->si_trans_id = CUR_STATE(idx - 1).si_trans_id; | |
36 | 2609 sip->si_h_startpos = CUR_STATE(idx - 1).si_h_startpos; |
2610 sip->si_h_endpos = CUR_STATE(idx - 1).si_h_endpos; | |
7 | 2611 if (sip->si_cont_list == NULL) |
2612 { | |
2613 sip->si_flags |= HL_TRANS_CONT; | |
2614 sip->si_cont_list = CUR_STATE(idx - 1).si_cont_list; | |
2615 } | |
2616 } | |
2617 } | |
2618 } | |
2619 | |
2620 /* | |
2621 * Check the current stack for patterns with "keepend" flag. | |
2622 * Propagate the match-end to contained items, until a "skipend" item is found. | |
2623 */ | |
2624 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2625 check_keepend(void) |
7 | 2626 { |
2627 int i; | |
2628 lpos_T maxpos; | |
991 | 2629 lpos_T maxpos_h; |
7 | 2630 stateitem_T *sip; |
2631 | |
2632 /* | |
2633 * This check can consume a lot of time; only do it from the level where | |
2634 * there really is a keepend. | |
2635 */ | |
2636 if (keepend_level < 0) | |
2637 return; | |
2638 | |
2639 /* | |
2640 * Find the last index of an "extend" item. "keepend" items before that | |
2641 * won't do anything. If there is no "extend" item "i" will be | |
2642 * "keepend_level" and all "keepend" items will work normally. | |
2643 */ | |
2644 for (i = current_state.ga_len - 1; i > keepend_level; --i) | |
2645 if (CUR_STATE(i).si_flags & HL_EXTEND) | |
2646 break; | |
2647 | |
2648 maxpos.lnum = 0; | |
1702 | 2649 maxpos.col = 0; |
991 | 2650 maxpos_h.lnum = 0; |
1702 | 2651 maxpos_h.col = 0; |
7 | 2652 for ( ; i < current_state.ga_len; ++i) |
2653 { | |
2654 sip = &CUR_STATE(i); | |
2655 if (maxpos.lnum != 0) | |
2656 { | |
2657 limit_pos_zero(&sip->si_m_endpos, &maxpos); | |
991 | 2658 limit_pos_zero(&sip->si_h_endpos, &maxpos_h); |
7 | 2659 limit_pos_zero(&sip->si_eoe_pos, &maxpos); |
2660 sip->si_ends = TRUE; | |
2661 } | |
991 | 2662 if (sip->si_ends && (sip->si_flags & HL_KEEPEND)) |
2663 { | |
2664 if (maxpos.lnum == 0 | |
7 | 2665 || maxpos.lnum > sip->si_m_endpos.lnum |
2666 || (maxpos.lnum == sip->si_m_endpos.lnum | |
991 | 2667 && maxpos.col > sip->si_m_endpos.col)) |
2668 maxpos = sip->si_m_endpos; | |
2669 if (maxpos_h.lnum == 0 | |
2670 || maxpos_h.lnum > sip->si_h_endpos.lnum | |
2671 || (maxpos_h.lnum == sip->si_h_endpos.lnum | |
2672 && maxpos_h.col > sip->si_h_endpos.col)) | |
2673 maxpos_h = sip->si_h_endpos; | |
2674 } | |
7 | 2675 } |
2676 } | |
2677 | |
2678 /* | |
2679 * Update an entry in the current_state stack for a start-skip-end pattern. | |
2680 * This finds the end of the current item, if it's in the current line. | |
2681 * | |
2682 * Return the flags for the matched END. | |
2683 */ | |
2684 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2685 update_si_end( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2686 stateitem_T *sip, |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2687 int startcol, // where to start searching for the end |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2688 int force) // when TRUE overrule a previous end |
7 | 2689 { |
2690 lpos_T startpos; | |
2691 lpos_T endpos; | |
2692 lpos_T hl_endpos; | |
2693 lpos_T end_endpos; | |
2694 int end_idx; | |
2695 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2696 // return quickly for a keyword |
1371 | 2697 if (sip->si_idx < 0) |
2698 return; | |
2699 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2700 // Don't update when it's already done. Can be a match of an end pattern |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2701 // that started in a previous line. Watch out: can also be a "keepend" |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2702 // from a containing item. |
7 | 2703 if (!force && sip->si_m_endpos.lnum >= current_lnum) |
2704 return; | |
2705 | |
2706 /* | |
2707 * We need to find the end of the region. It may continue in the next | |
2708 * line. | |
2709 */ | |
2710 end_idx = 0; | |
2711 startpos.lnum = current_lnum; | |
2712 startpos.col = startcol; | |
2713 find_endpos(sip->si_idx, &startpos, &endpos, &hl_endpos, | |
2714 &(sip->si_flags), &end_endpos, &end_idx, sip->si_extmatch); | |
2715 | |
2716 if (endpos.lnum == 0) | |
2717 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2718 // No end pattern matched. |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2719 if (SYN_ITEMS(syn_block)[sip->si_idx].sp_flags & HL_ONELINE) |
7 | 2720 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2721 // a "oneline" never continues in the next line |
7 | 2722 sip->si_ends = TRUE; |
2723 sip->si_m_endpos.lnum = current_lnum; | |
2724 sip->si_m_endpos.col = (colnr_T)STRLEN(syn_getcurline()); | |
2725 } | |
2726 else | |
2727 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2728 // continues in the next line |
7 | 2729 sip->si_ends = FALSE; |
2730 sip->si_m_endpos.lnum = 0; | |
2731 } | |
2732 sip->si_h_endpos = sip->si_m_endpos; | |
2733 } | |
2734 else | |
2735 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2736 // match within this line |
7 | 2737 sip->si_m_endpos = endpos; |
2738 sip->si_h_endpos = hl_endpos; | |
2739 sip->si_eoe_pos = end_endpos; | |
2740 sip->si_ends = TRUE; | |
2741 sip->si_end_idx = end_idx; | |
2742 } | |
2743 } | |
2744 | |
2745 /* | |
2746 * Add a new state to the current state stack. | |
2747 * It is cleared and the index set to "idx". | |
2748 * Return FAIL if it's not possible (out of memory). | |
2749 */ | |
2750 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2751 push_current_state(int idx) |
7 | 2752 { |
2753 if (ga_grow(¤t_state, 1) == FAIL) | |
2754 return FAIL; | |
20007
aadd1cae2ff5
patch 8.2.0559: clearing a struct is verbose
Bram Moolenaar <Bram@vim.org>
parents:
19934
diff
changeset
|
2755 CLEAR_POINTER(&CUR_STATE(current_state.ga_len)); |
7 | 2756 CUR_STATE(current_state.ga_len).si_idx = idx; |
2757 ++current_state.ga_len; | |
2758 return OK; | |
2759 } | |
2760 | |
2761 /* | |
2762 * Remove a state from the current_state stack. | |
2763 */ | |
2764 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2765 pop_current_state(void) |
7 | 2766 { |
2767 if (current_state.ga_len) | |
2768 { | |
2769 unref_extmatch(CUR_STATE(current_state.ga_len - 1).si_extmatch); | |
2770 --current_state.ga_len; | |
2771 } | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2772 // after the end of a pattern, try matching a keyword or pattern |
7 | 2773 next_match_idx = -1; |
2774 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2775 // if first state with "keepend" is popped, reset keepend_level |
7 | 2776 if (keepend_level >= current_state.ga_len) |
2777 keepend_level = -1; | |
2778 } | |
2779 | |
2780 /* | |
2781 * Find the end of a start/skip/end syntax region after "startpos". | |
2782 * Only checks one line. | |
2783 * Also handles a match item that continued from a previous line. | |
2784 * If not found, the syntax item continues in the next line. m_endpos->lnum | |
2785 * will be 0. | |
2786 * If found, the end of the region and the end of the highlighting is | |
2787 * computed. | |
2788 */ | |
2789 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2790 find_endpos( |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2791 int idx, // index of the pattern |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2792 lpos_T *startpos, // where to start looking for an END match |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2793 lpos_T *m_endpos, // return: end of match |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2794 lpos_T *hl_endpos, // return: end of highlighting |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2795 long *flagsp, // return: flags of matching END |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2796 lpos_T *end_endpos, // return: end of end pattern match |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2797 int *end_idx, // return: group ID for end pat. match, or 0 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2798 reg_extmatch_T *start_ext) // submatches from the start pattern |
7 | 2799 { |
2800 colnr_T matchcol; | |
2801 synpat_T *spp, *spp_skip; | |
2802 int start_idx; | |
2803 int best_idx; | |
2804 regmmatch_T regmatch; | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2805 regmmatch_T best_regmatch; // startpos/endpos of best match |
7 | 2806 lpos_T pos; |
2807 char_u *line; | |
2808 int had_match = FALSE; | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2809 char_u buf_chartab[32]; // chartab array for syn option iskyeyword |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2810 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2811 // just in case we are invoked for a keyword |
1371 | 2812 if (idx < 0) |
2813 return; | |
2814 | |
7 | 2815 /* |
2816 * Check for being called with a START pattern. | |
2817 * Can happen with a match that continues to the next line, because it | |
2818 * contained a region. | |
2819 */ | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2820 spp = &(SYN_ITEMS(syn_block)[idx]); |
7 | 2821 if (spp->sp_type != SPTYPE_START) |
2822 { | |
2823 *hl_endpos = *startpos; | |
2824 return; | |
2825 } | |
2826 | |
2827 /* | |
2828 * Find the SKIP or first END pattern after the last START pattern. | |
2829 */ | |
2830 for (;;) | |
2831 { | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2832 spp = &(SYN_ITEMS(syn_block)[idx]); |
7 | 2833 if (spp->sp_type != SPTYPE_START) |
2834 break; | |
2835 ++idx; | |
2836 } | |
2837 | |
2838 /* | |
2839 * Lookup the SKIP pattern (if present) | |
2840 */ | |
2841 if (spp->sp_type == SPTYPE_SKIP) | |
2842 { | |
2843 spp_skip = spp; | |
2844 ++idx; | |
2845 } | |
2846 else | |
2847 spp_skip = NULL; | |
2848 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2849 // Setup external matches for syn_regexec(). |
7 | 2850 unref_extmatch(re_extmatch_in); |
2851 re_extmatch_in = ref_extmatch(start_ext); | |
2852 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2853 matchcol = startpos->col; // start looking for a match at sstart |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2854 start_idx = idx; // remember the first END pattern. |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2855 best_regmatch.startpos[0].col = 0; // avoid compiler warning |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2856 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2857 // use syntax iskeyword option |
7687
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
2858 save_chartab(buf_chartab); |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
2859 |
7 | 2860 for (;;) |
2861 { | |
2862 /* | |
2863 * Find end pattern that matches first after "matchcol". | |
2864 */ | |
2865 best_idx = -1; | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2866 for (idx = start_idx; idx < syn_block->b_syn_patterns.ga_len; ++idx) |
7 | 2867 { |
2868 int lc_col = matchcol; | |
6375 | 2869 int r; |
7 | 2870 |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2871 spp = &(SYN_ITEMS(syn_block)[idx]); |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2872 if (spp->sp_type != SPTYPE_END) // past last END pattern |
7 | 2873 break; |
2874 lc_col -= spp->sp_offsets[SPO_LC_OFF]; | |
2875 if (lc_col < 0) | |
2876 lc_col = 0; | |
2877 | |
2878 regmatch.rmm_ic = spp->sp_ic; | |
2879 regmatch.regprog = spp->sp_prog; | |
6375 | 2880 r = syn_regexec(®match, startpos->lnum, lc_col, |
2881 IF_SYN_TIME(&spp->sp_time)); | |
2882 spp->sp_prog = regmatch.regprog; | |
2883 if (r) | |
7 | 2884 { |
2885 if (best_idx == -1 || regmatch.startpos[0].col | |
2886 < best_regmatch.startpos[0].col) | |
2887 { | |
2888 best_idx = idx; | |
2889 best_regmatch.startpos[0] = regmatch.startpos[0]; | |
2890 best_regmatch.endpos[0] = regmatch.endpos[0]; | |
2891 } | |
2892 } | |
2893 } | |
2894 | |
2895 /* | |
2896 * If all end patterns have been tried, and there is no match, the | |
2897 * item continues until end-of-line. | |
2898 */ | |
2899 if (best_idx == -1) | |
2900 break; | |
2901 | |
2902 /* | |
2903 * If the skip pattern matches before the end pattern, | |
2904 * continue searching after the skip pattern. | |
2905 */ | |
2906 if (spp_skip != NULL) | |
2907 { | |
2908 int lc_col = matchcol - spp_skip->sp_offsets[SPO_LC_OFF]; | |
6375 | 2909 int r; |
7 | 2910 |
2911 if (lc_col < 0) | |
2912 lc_col = 0; | |
2913 regmatch.rmm_ic = spp_skip->sp_ic; | |
2914 regmatch.regprog = spp_skip->sp_prog; | |
6375 | 2915 r = syn_regexec(®match, startpos->lnum, lc_col, |
2916 IF_SYN_TIME(&spp_skip->sp_time)); | |
2917 spp_skip->sp_prog = regmatch.regprog; | |
2918 if (r && regmatch.startpos[0].col | |
7 | 2919 <= best_regmatch.startpos[0].col) |
2920 { | |
7500
ef568437e49a
commit https://github.com/vim/vim/commit/04bff88df6211f64731bf8f5afa088e94496db16
Christian Brabandt <cb@256bit.org>
parents:
7467
diff
changeset
|
2921 int line_len; |
ef568437e49a
commit https://github.com/vim/vim/commit/04bff88df6211f64731bf8f5afa088e94496db16
Christian Brabandt <cb@256bit.org>
parents:
7467
diff
changeset
|
2922 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2923 // Add offset to skip pattern match |
7 | 2924 syn_add_end_off(&pos, ®match, spp_skip, SPO_ME_OFF, 1); |
2925 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2926 // If the skip pattern goes on to the next line, there is no |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2927 // match with an end pattern in this line. |
7 | 2928 if (pos.lnum > startpos->lnum) |
2929 break; | |
2930 | |
2931 line = ml_get_buf(syn_buf, startpos->lnum, FALSE); | |
7500
ef568437e49a
commit https://github.com/vim/vim/commit/04bff88df6211f64731bf8f5afa088e94496db16
Christian Brabandt <cb@256bit.org>
parents:
7467
diff
changeset
|
2932 line_len = (int)STRLEN(line); |
7 | 2933 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2934 // take care of an empty match or negative offset |
7 | 2935 if (pos.col <= matchcol) |
2936 ++matchcol; | |
2937 else if (pos.col <= regmatch.endpos[0].col) | |
2938 matchcol = pos.col; | |
2939 else | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2940 // Be careful not to jump over the NUL at the end-of-line |
7 | 2941 for (matchcol = regmatch.endpos[0].col; |
7500
ef568437e49a
commit https://github.com/vim/vim/commit/04bff88df6211f64731bf8f5afa088e94496db16
Christian Brabandt <cb@256bit.org>
parents:
7467
diff
changeset
|
2942 matchcol < line_len && matchcol < pos.col; |
7 | 2943 ++matchcol) |
2944 ; | |
2945 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2946 // if the skip pattern includes end-of-line, break here |
7500
ef568437e49a
commit https://github.com/vim/vim/commit/04bff88df6211f64731bf8f5afa088e94496db16
Christian Brabandt <cb@256bit.org>
parents:
7467
diff
changeset
|
2947 if (matchcol >= line_len) |
7 | 2948 break; |
2949 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2950 continue; // start with first end pattern again |
7 | 2951 } |
2952 } | |
2953 | |
2954 /* | |
2955 * Match from start pattern to end pattern. | |
2956 * Correct for match and highlight offset of end pattern. | |
2957 */ | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
2958 spp = &(SYN_ITEMS(syn_block)[best_idx]); |
7 | 2959 syn_add_end_off(m_endpos, &best_regmatch, spp, SPO_ME_OFF, 1); |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2960 // can't end before the start |
7 | 2961 if (m_endpos->lnum == startpos->lnum && m_endpos->col < startpos->col) |
2962 m_endpos->col = startpos->col; | |
2963 | |
2964 syn_add_end_off(end_endpos, &best_regmatch, spp, SPO_HE_OFF, 1); | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2965 // can't end before the start |
7 | 2966 if (end_endpos->lnum == startpos->lnum |
2967 && end_endpos->col < startpos->col) | |
2968 end_endpos->col = startpos->col; | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2969 // can't end after the match |
7 | 2970 limit_pos(end_endpos, m_endpos); |
2971 | |
2972 /* | |
2973 * If the end group is highlighted differently, adjust the pointers. | |
2974 */ | |
2975 if (spp->sp_syn_match_id != spp->sp_syn.id && spp->sp_syn_match_id != 0) | |
2976 { | |
2977 *end_idx = best_idx; | |
2978 if (spp->sp_off_flags & (1 << (SPO_RE_OFF + SPO_COUNT))) | |
2979 { | |
2980 hl_endpos->lnum = best_regmatch.endpos[0].lnum; | |
2981 hl_endpos->col = best_regmatch.endpos[0].col; | |
2982 } | |
2983 else | |
2984 { | |
2985 hl_endpos->lnum = best_regmatch.startpos[0].lnum; | |
2986 hl_endpos->col = best_regmatch.startpos[0].col; | |
2987 } | |
2988 hl_endpos->col += spp->sp_offsets[SPO_RE_OFF]; | |
2989 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2990 // can't end before the start |
7 | 2991 if (hl_endpos->lnum == startpos->lnum |
2992 && hl_endpos->col < startpos->col) | |
2993 hl_endpos->col = startpos->col; | |
2994 limit_pos(hl_endpos, m_endpos); | |
2995 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2996 // now the match ends where the highlighting ends, it is turned |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
2997 // into the matchgroup for the end |
7 | 2998 *m_endpos = *hl_endpos; |
2999 } | |
3000 else | |
3001 { | |
3002 *end_idx = 0; | |
3003 *hl_endpos = *end_endpos; | |
3004 } | |
3005 | |
3006 *flagsp = spp->sp_flags; | |
3007 | |
3008 had_match = TRUE; | |
3009 break; | |
3010 } | |
3011 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
3012 // no match for an END pattern in this line |
7 | 3013 if (!had_match) |
3014 m_endpos->lnum = 0; | |
3015 | |
7687
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
3016 restore_chartab(buf_chartab); |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
3017 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
3018 // Remove external matches. |
7 | 3019 unref_extmatch(re_extmatch_in); |
3020 re_extmatch_in = NULL; | |
3021 } | |
3022 | |
3023 /* | |
3024 * Limit "pos" not to be after "limit". | |
3025 */ | |
3026 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3027 limit_pos(lpos_T *pos, lpos_T *limit) |
7 | 3028 { |
3029 if (pos->lnum > limit->lnum) | |
3030 *pos = *limit; | |
3031 else if (pos->lnum == limit->lnum && pos->col > limit->col) | |
3032 pos->col = limit->col; | |
3033 } | |
3034 | |
3035 /* | |
3036 * Limit "pos" not to be after "limit", unless pos->lnum is zero. | |
3037 */ | |
3038 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3039 limit_pos_zero( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3040 lpos_T *pos, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3041 lpos_T *limit) |
7 | 3042 { |
3043 if (pos->lnum == 0) | |
3044 *pos = *limit; | |
3045 else | |
3046 limit_pos(pos, limit); | |
3047 } | |
3048 | |
3049 /* | |
3050 * Add offset to matched text for end of match or highlight. | |
3051 */ | |
3052 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3053 syn_add_end_off( |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
3054 lpos_T *result, // returned position |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
3055 regmmatch_T *regmatch, // start/end of match |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
3056 synpat_T *spp, // matched pattern |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
3057 int idx, // index of offset |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
3058 int extra) // extra chars for offset to start |
7 | 3059 { |
3060 int col; | |
1624 | 3061 int off; |
3062 char_u *base; | |
3063 char_u *p; | |
7 | 3064 |
3065 if (spp->sp_off_flags & (1 << idx)) | |
3066 { | |
3067 result->lnum = regmatch->startpos[0].lnum; | |
1624 | 3068 col = regmatch->startpos[0].col; |
3069 off = spp->sp_offsets[idx] + extra; | |
7 | 3070 } |
3071 else | |
3072 { | |
3073 result->lnum = regmatch->endpos[0].lnum; | |
3074 col = regmatch->endpos[0].col; | |
1624 | 3075 off = spp->sp_offsets[idx]; |
3076 } | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
3077 // Don't go past the end of the line. Matters for "rs=e+2" when there |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
3078 // is a matchgroup. Watch out for match with last NL in the buffer. |
1624 | 3079 if (result->lnum > syn_buf->b_ml.ml_line_count) |
3080 col = 0; | |
3081 else if (off != 0) | |
3082 { | |
3083 base = ml_get_buf(syn_buf, result->lnum, FALSE); | |
3084 p = base + col; | |
3085 if (off > 0) | |
3086 { | |
3087 while (off-- > 0 && *p != NUL) | |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11119
diff
changeset
|
3088 MB_PTR_ADV(p); |
1624 | 3089 } |
3090 else if (off < 0) | |
3091 { | |
3092 while (off++ < 0 && base < p) | |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11119
diff
changeset
|
3093 MB_PTR_BACK(base, p); |
1624 | 3094 } |
3095 col = (int)(p - base); | |
3096 } | |
3097 result->col = col; | |
7 | 3098 } |
3099 | |
3100 /* | |
3101 * Add offset to matched text for start of match or highlight. | |
3102 * Avoid resulting column to become negative. | |
3103 */ | |
3104 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3105 syn_add_start_off( |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
3106 lpos_T *result, // returned position |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
3107 regmmatch_T *regmatch, // start/end of match |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3108 synpat_T *spp, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3109 int idx, |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
3110 int extra) // extra chars for offset to end |
7 | 3111 { |
3112 int col; | |
1624 | 3113 int off; |
3114 char_u *base; | |
3115 char_u *p; | |
7 | 3116 |
3117 if (spp->sp_off_flags & (1 << (idx + SPO_COUNT))) | |
3118 { | |
3119 result->lnum = regmatch->endpos[0].lnum; | |
1624 | 3120 col = regmatch->endpos[0].col; |
3121 off = spp->sp_offsets[idx] + extra; | |
7 | 3122 } |
3123 else | |
3124 { | |
3125 result->lnum = regmatch->startpos[0].lnum; | |
3126 col = regmatch->startpos[0].col; | |
1624 | 3127 off = spp->sp_offsets[idx]; |
3128 } | |
2092
98cc757f7e3d
updated for version 7.2.376
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
3129 if (result->lnum > syn_buf->b_ml.ml_line_count) |
98cc757f7e3d
updated for version 7.2.376
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
3130 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
3131 // a "\n" at the end of the pattern may take us below the last line |
2092
98cc757f7e3d
updated for version 7.2.376
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
3132 result->lnum = syn_buf->b_ml.ml_line_count; |
2100
7d121c69f540
updated for version 7.2.383
Bram Moolenaar <bram@zimbu.org>
parents:
2092
diff
changeset
|
3133 col = (int)STRLEN(ml_get_buf(syn_buf, result->lnum, FALSE)); |
2092
98cc757f7e3d
updated for version 7.2.376
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
3134 } |
1624 | 3135 if (off != 0) |
3136 { | |
3137 base = ml_get_buf(syn_buf, result->lnum, FALSE); | |
3138 p = base + col; | |
3139 if (off > 0) | |
3140 { | |
3141 while (off-- && *p != NUL) | |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11119
diff
changeset
|
3142 MB_PTR_ADV(p); |
1624 | 3143 } |
3144 else if (off < 0) | |
3145 { | |
3146 while (off++ && base < p) | |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11119
diff
changeset
|
3147 MB_PTR_BACK(base, p); |
1624 | 3148 } |
3149 col = (int)(p - base); | |
3150 } | |
3151 result->col = col; | |
7 | 3152 } |
3153 | |
3154 /* | |
3155 * Get current line in syntax buffer. | |
3156 */ | |
3157 static char_u * | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3158 syn_getcurline(void) |
7 | 3159 { |
3160 return ml_get_buf(syn_buf, current_lnum, FALSE); | |
3161 } | |
3162 | |
3163 /* | |
410 | 3164 * Call vim_regexec() to find a match with "rmp" in "syn_buf". |
7 | 3165 * Returns TRUE when there is a match. |
3166 */ | |
3167 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3168 syn_regexec( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3169 regmmatch_T *rmp, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3170 linenr_T lnum, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3171 colnr_T col, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3172 syn_time_T *st UNUSED) |
4764
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
3173 { |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
3174 int r; |
11529
998d2cf59caa
patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
3175 #ifdef FEAT_RELTIME |
998d2cf59caa
patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
3176 int timed_out = FALSE; |
998d2cf59caa
patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
3177 #endif |
4766
ec24ff78a79c
updated for version 7.3.1130
Bram Moolenaar <bram@vim.org>
parents:
4764
diff
changeset
|
3178 #ifdef FEAT_PROFILE |
4764
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
3179 proftime_T pt; |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
3180 |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
3181 if (syn_time_on) |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
3182 profile_start(&pt); |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
3183 #endif |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
3184 |
14161
7cac4646c552
patch 8.1.0098: segfault when pattern with z() is very slow
Christian Brabandt <cb@256bit.org>
parents:
13976
diff
changeset
|
3185 if (rmp->regprog == NULL) |
7cac4646c552
patch 8.1.0098: segfault when pattern with z() is very slow
Christian Brabandt <cb@256bit.org>
parents:
13976
diff
changeset
|
3186 // This can happen if a previous call to vim_regexec_multi() tried to |
7cac4646c552
patch 8.1.0098: segfault when pattern with z() is very slow
Christian Brabandt <cb@256bit.org>
parents:
13976
diff
changeset
|
3187 // use the NFA engine, which resulted in NFA_TOO_EXPENSIVE, and |
7cac4646c552
patch 8.1.0098: segfault when pattern with z() is very slow
Christian Brabandt <cb@256bit.org>
parents:
13976
diff
changeset
|
3188 // compiling the pattern with the other engine fails. |
7cac4646c552
patch 8.1.0098: segfault when pattern with z() is very slow
Christian Brabandt <cb@256bit.org>
parents:
13976
diff
changeset
|
3189 return FALSE; |
7cac4646c552
patch 8.1.0098: segfault when pattern with z() is very slow
Christian Brabandt <cb@256bit.org>
parents:
13976
diff
changeset
|
3190 |
410 | 3191 rmp->rmm_maxcol = syn_buf->b_p_smc; |
11529
998d2cf59caa
patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
3192 r = vim_regexec_multi(rmp, syn_win, syn_buf, lnum, col, |
998d2cf59caa
patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
3193 #ifdef FEAT_RELTIME |
998d2cf59caa
patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
3194 syn_tm, &timed_out |
998d2cf59caa
patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
3195 #else |
998d2cf59caa
patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
3196 NULL, NULL |
998d2cf59caa
patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
3197 #endif |
998d2cf59caa
patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
3198 ); |
4764
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
3199 |
4766
ec24ff78a79c
updated for version 7.3.1130
Bram Moolenaar <bram@vim.org>
parents:
4764
diff
changeset
|
3200 #ifdef FEAT_PROFILE |
4764
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
3201 if (syn_time_on) |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
3202 { |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
3203 profile_end(&pt); |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
3204 profile_add(&st->total, &pt); |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
3205 if (profile_cmp(&pt, &st->slowest) < 0) |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
3206 st->slowest = pt; |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
3207 ++st->count; |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
3208 if (r > 0) |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
3209 ++st->match; |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
3210 } |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
3211 #endif |
11529
998d2cf59caa
patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
3212 #ifdef FEAT_RELTIME |
14366
1c79c92a642e
patch 8.1.0198: there is no hint that syntax is disabled for 'redrawtime'
Christian Brabandt <cb@256bit.org>
parents:
14161
diff
changeset
|
3213 if (timed_out && !syn_win->w_s->b_syn_slow) |
1c79c92a642e
patch 8.1.0198: there is no hint that syntax is disabled for 'redrawtime'
Christian Brabandt <cb@256bit.org>
parents:
14161
diff
changeset
|
3214 { |
11529
998d2cf59caa
patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
3215 syn_win->w_s->b_syn_slow = TRUE; |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
3216 msg(_("'redrawtime' exceeded, syntax highlighting disabled")); |
14366
1c79c92a642e
patch 8.1.0198: there is no hint that syntax is disabled for 'redrawtime'
Christian Brabandt <cb@256bit.org>
parents:
14161
diff
changeset
|
3217 } |
11529
998d2cf59caa
patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
3218 #endif |
4764
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
3219 |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
3220 if (r > 0) |
7 | 3221 { |
3222 rmp->startpos[0].lnum += lnum; | |
3223 rmp->endpos[0].lnum += lnum; | |
3224 return TRUE; | |
3225 } | |
3226 return FALSE; | |
3227 } | |
3228 | |
3229 /* | |
3230 * Check one position in a line for a matching keyword. | |
3231 * The caller must check if a keyword can start at startcol. | |
11189
e74af2aca96e
patch 8.0.0481: unnecessary if statement
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
3232 * Return its ID if found, 0 otherwise. |
7 | 3233 */ |
3234 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3235 check_keyword_id( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3236 char_u *line, |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
3237 int startcol, // position in line to check for keyword |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
3238 int *endcolp, // return: character after found keyword |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
3239 long *flagsp, // return: flags of matching keyword |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
3240 short **next_listp, // return: next_list of matching keyword |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
3241 stateitem_T *cur_si, // item at the top of the stack |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
3242 int *ccharp UNUSED) // conceal substitution char |
7 | 3243 { |
134 | 3244 keyentry_T *kp; |
3245 char_u *kwp; | |
7 | 3246 int round; |
134 | 3247 int kwlen; |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
3248 char_u keyword[MAXKEYWLEN + 1]; // assume max. keyword len is 80 |
134 | 3249 hashtab_T *ht; |
3250 hashitem_T *hi; | |
7 | 3251 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
3252 // Find first character after the keyword. First character was already |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
3253 // checked. |
134 | 3254 kwp = line + startcol; |
3255 kwlen = 0; | |
7 | 3256 do |
3257 { | |
3258 if (has_mbyte) | |
474 | 3259 kwlen += (*mb_ptr2len)(kwp + kwlen); |
7 | 3260 else |
134 | 3261 ++kwlen; |
3262 } | |
4043 | 3263 while (vim_iswordp_buf(kwp + kwlen, syn_buf)); |
134 | 3264 |
3265 if (kwlen > MAXKEYWLEN) | |
7 | 3266 return 0; |
3267 | |
3268 /* | |
3269 * Must make a copy of the keyword, so we can add a NUL and make it | |
3270 * lowercase. | |
3271 */ | |
419 | 3272 vim_strncpy(keyword, kwp, kwlen); |
7 | 3273 |
3274 /* | |
3275 * Try twice: | |
3276 * 1. matching case | |
3277 * 2. ignoring case | |
3278 */ | |
3279 for (round = 1; round <= 2; ++round) | |
3280 { | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3281 ht = round == 1 ? &syn_block->b_keywtab : &syn_block->b_keywtab_ic; |
134 | 3282 if (ht->ht_used == 0) |
7 | 3283 continue; |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
3284 if (round == 2) // ignore case |
134 | 3285 (void)str_foldcase(kwp, kwlen, keyword, MAXKEYWLEN + 1); |
7 | 3286 |
3287 /* | |
134 | 3288 * Find keywords that match. There can be several with different |
3289 * attributes. | |
7 | 3290 * When current_next_list is non-zero accept only that group, otherwise: |
3291 * Accept a not-contained keyword at toplevel. | |
3292 * Accept a keyword at other levels only if it is in the contains list. | |
3293 */ | |
134 | 3294 hi = hash_find(ht, keyword); |
3295 if (!HASHITEM_EMPTY(hi)) | |
3296 for (kp = HI2KE(hi); kp != NULL; kp = kp->ke_next) | |
7 | 3297 { |
134 | 3298 if (current_next_list != 0 |
3299 ? in_id_list(NULL, current_next_list, &kp->k_syn, 0) | |
3300 : (cur_si == NULL | |
3301 ? !(kp->flags & HL_CONTAINED) | |
3302 : in_id_list(cur_si, cur_si->si_cont_list, | |
3303 &kp->k_syn, kp->flags & HL_CONTAINED))) | |
3304 { | |
3305 *endcolp = startcol + kwlen; | |
3306 *flagsp = kp->flags; | |
3307 *next_listp = kp->next_list; | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3308 #ifdef FEAT_CONCEAL |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3309 *ccharp = kp->k_char; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3310 #endif |
134 | 3311 return kp->k_syn.id; |
3312 } | |
7 | 3313 } |
3314 } | |
3315 return 0; | |
3316 } | |
3317 | |
3318 /* | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3319 * Handle ":syntax conceal" command. |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3320 */ |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3321 static void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3322 syn_cmd_conceal(exarg_T *eap UNUSED, int syncing UNUSED) |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3323 { |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3324 #ifdef FEAT_CONCEAL |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3325 char_u *arg = eap->arg; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3326 char_u *next; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3327 |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3328 eap->nextcmd = find_nextcmd(arg); |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3329 if (eap->skip) |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3330 return; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3331 |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3332 next = skiptowhite(arg); |
10618
4ee16e5e2e26
patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents:
10534
diff
changeset
|
3333 if (*arg == NUL) |
4ee16e5e2e26
patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents:
10534
diff
changeset
|
3334 { |
4ee16e5e2e26
patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents:
10534
diff
changeset
|
3335 if (curwin->w_s->b_syn_conceal) |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
3336 msg(_("syntax conceal on")); |
10618
4ee16e5e2e26
patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents:
10534
diff
changeset
|
3337 else |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
3338 msg(_("syntax conceal off")); |
10618
4ee16e5e2e26
patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents:
10534
diff
changeset
|
3339 } |
4ee16e5e2e26
patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents:
10534
diff
changeset
|
3340 else if (STRNICMP(arg, "on", 2) == 0 && next - arg == 2) |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3341 curwin->w_s->b_syn_conceal = TRUE; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3342 else if (STRNICMP(arg, "off", 3) == 0 && next - arg == 3) |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3343 curwin->w_s->b_syn_conceal = FALSE; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3344 else |
20623
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
3345 semsg(_(e_illegal_arg), arg); |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3346 #endif |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3347 } |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3348 |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3349 /* |
7 | 3350 * Handle ":syntax case" command. |
3351 */ | |
3352 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3353 syn_cmd_case(exarg_T *eap, int syncing UNUSED) |
7 | 3354 { |
3355 char_u *arg = eap->arg; | |
3356 char_u *next; | |
3357 | |
3358 eap->nextcmd = find_nextcmd(arg); | |
3359 if (eap->skip) | |
3360 return; | |
3361 | |
3362 next = skiptowhite(arg); | |
10618
4ee16e5e2e26
patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents:
10534
diff
changeset
|
3363 if (*arg == NUL) |
4ee16e5e2e26
patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents:
10534
diff
changeset
|
3364 { |
4ee16e5e2e26
patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents:
10534
diff
changeset
|
3365 if (curwin->w_s->b_syn_ic) |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
3366 msg(_("syntax case ignore")); |
10618
4ee16e5e2e26
patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents:
10534
diff
changeset
|
3367 else |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
3368 msg(_("syntax case match")); |
10618
4ee16e5e2e26
patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents:
10534
diff
changeset
|
3369 } |
4ee16e5e2e26
patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents:
10534
diff
changeset
|
3370 else if (STRNICMP(arg, "match", 5) == 0 && next - arg == 5) |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3371 curwin->w_s->b_syn_ic = FALSE; |
7 | 3372 else if (STRNICMP(arg, "ignore", 6) == 0 && next - arg == 6) |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3373 curwin->w_s->b_syn_ic = TRUE; |
7 | 3374 else |
20623
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
3375 semsg(_(e_illegal_arg), arg); |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
3376 } |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
3377 |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
3378 /* |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
3379 * Handle ":syntax foldlevel" command. |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
3380 */ |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
3381 static void |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
3382 syn_cmd_foldlevel(exarg_T *eap, int syncing UNUSED) |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
3383 { |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
3384 char_u *arg = eap->arg; |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
3385 char_u *arg_end; |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
3386 |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
3387 eap->nextcmd = find_nextcmd(arg); |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
3388 if (eap->skip) |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
3389 return; |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
3390 |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
3391 if (*arg == NUL) |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
3392 { |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
3393 switch (curwin->w_s->b_syn_foldlevel) |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
3394 { |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
3395 case SYNFLD_START: msg(_("syntax foldlevel start")); break; |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
3396 case SYNFLD_MINIMUM: msg(_("syntax foldlevel minimum")); break; |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
3397 default: break; |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
3398 } |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
3399 return; |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
3400 } |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
3401 |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
3402 arg_end = skiptowhite(arg); |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
3403 if (STRNICMP(arg, "start", 5) == 0 && arg_end - arg == 5) |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
3404 curwin->w_s->b_syn_foldlevel = SYNFLD_START; |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
3405 else if (STRNICMP(arg, "minimum", 7) == 0 && arg_end - arg == 7) |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
3406 curwin->w_s->b_syn_foldlevel = SYNFLD_MINIMUM; |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
3407 else |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
3408 { |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
3409 semsg(_(e_illegal_arg), arg); |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
3410 return; |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
3411 } |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
3412 |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
3413 arg = skipwhite(arg_end); |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
3414 if (*arg != NUL) |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
3415 { |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
3416 semsg(_(e_illegal_arg), arg); |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
3417 } |
7 | 3418 } |
3419 | |
3420 /* | |
419 | 3421 * Handle ":syntax spell" command. |
3422 */ | |
3423 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3424 syn_cmd_spell(exarg_T *eap, int syncing UNUSED) |
419 | 3425 { |
3426 char_u *arg = eap->arg; | |
3427 char_u *next; | |
3428 | |
3429 eap->nextcmd = find_nextcmd(arg); | |
3430 if (eap->skip) | |
3431 return; | |
3432 | |
3433 next = skiptowhite(arg); | |
10618
4ee16e5e2e26
patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents:
10534
diff
changeset
|
3434 if (*arg == NUL) |
4ee16e5e2e26
patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents:
10534
diff
changeset
|
3435 { |
4ee16e5e2e26
patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents:
10534
diff
changeset
|
3436 if (curwin->w_s->b_syn_spell == SYNSPL_TOP) |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
3437 msg(_("syntax spell toplevel")); |
10618
4ee16e5e2e26
patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents:
10534
diff
changeset
|
3438 else if (curwin->w_s->b_syn_spell == SYNSPL_NOTOP) |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
3439 msg(_("syntax spell notoplevel")); |
10618
4ee16e5e2e26
patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents:
10534
diff
changeset
|
3440 else |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
3441 msg(_("syntax spell default")); |
10618
4ee16e5e2e26
patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents:
10534
diff
changeset
|
3442 } |
4ee16e5e2e26
patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents:
10534
diff
changeset
|
3443 else if (STRNICMP(arg, "toplevel", 8) == 0 && next - arg == 8) |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3444 curwin->w_s->b_syn_spell = SYNSPL_TOP; |
419 | 3445 else if (STRNICMP(arg, "notoplevel", 10) == 0 && next - arg == 10) |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3446 curwin->w_s->b_syn_spell = SYNSPL_NOTOP; |
1064 | 3447 else if (STRNICMP(arg, "default", 7) == 0 && next - arg == 7) |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3448 curwin->w_s->b_syn_spell = SYNSPL_DEFAULT; |
419 | 3449 else |
6880 | 3450 { |
20623
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
3451 semsg(_(e_illegal_arg), arg); |
6880 | 3452 return; |
3453 } | |
3454 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
3455 // assume spell checking changed, force a redraw |
6880 | 3456 redraw_win_later(curwin, NOT_VALID); |
419 | 3457 } |
3458 | |
3459 /* | |
7687
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
3460 * Handle ":syntax iskeyword" command. |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
3461 */ |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
3462 static void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3463 syn_cmd_iskeyword(exarg_T *eap, int syncing UNUSED) |
7687
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
3464 { |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
3465 char_u *arg = eap->arg; |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
3466 char_u save_chartab[32]; |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
3467 char_u *save_isk; |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
3468 |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
3469 if (eap->skip) |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
3470 return; |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
3471 |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
3472 arg = skipwhite(arg); |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
3473 if (*arg == NUL) |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
3474 { |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
3475 msg_puts("\n"); |
7687
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
3476 if (curwin->w_s->b_syn_isk != empty_option) |
14366
1c79c92a642e
patch 8.1.0198: there is no hint that syntax is disabled for 'redrawtime'
Christian Brabandt <cb@256bit.org>
parents:
14161
diff
changeset
|
3477 { |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
3478 msg_puts(_("syntax iskeyword ")); |
7687
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
3479 msg_outtrans(curwin->w_s->b_syn_isk); |
14366
1c79c92a642e
patch 8.1.0198: there is no hint that syntax is disabled for 'redrawtime'
Christian Brabandt <cb@256bit.org>
parents:
14161
diff
changeset
|
3480 } |
7687
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
3481 else |
14366
1c79c92a642e
patch 8.1.0198: there is no hint that syntax is disabled for 'redrawtime'
Christian Brabandt <cb@256bit.org>
parents:
14161
diff
changeset
|
3482 msg_outtrans((char_u *)_("syntax iskeyword not set")); |
7687
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
3483 } |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
3484 else |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
3485 { |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
3486 if (STRNICMP(arg, "clear", 5) == 0) |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
3487 { |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
3488 mch_memmove(curwin->w_s->b_syn_chartab, curbuf->b_chartab, |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
3489 (size_t)32); |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
3490 clear_string_option(&curwin->w_s->b_syn_isk); |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
3491 } |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
3492 else |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
3493 { |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
3494 mch_memmove(save_chartab, curbuf->b_chartab, (size_t)32); |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
3495 save_isk = curbuf->b_p_isk; |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
3496 curbuf->b_p_isk = vim_strsave(arg); |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
3497 |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
3498 buf_init_chartab(curbuf, FALSE); |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
3499 mch_memmove(curwin->w_s->b_syn_chartab, curbuf->b_chartab, |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
3500 (size_t)32); |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
3501 mch_memmove(curbuf->b_chartab, save_chartab, (size_t)32); |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
3502 clear_string_option(&curwin->w_s->b_syn_isk); |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
3503 curwin->w_s->b_syn_isk = curbuf->b_p_isk; |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
3504 curbuf->b_p_isk = save_isk; |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
3505 } |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
3506 } |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
3507 redraw_win_later(curwin, NOT_VALID); |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
3508 } |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
3509 |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
3510 /* |
7 | 3511 * Clear all syntax info for one buffer. |
3512 */ | |
3513 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3514 syntax_clear(synblock_T *block) |
7 | 3515 { |
3516 int i; | |
3517 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
3518 block->b_syn_error = FALSE; // clear previous error |
11529
998d2cf59caa
patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
3519 #ifdef FEAT_RELTIME |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
3520 block->b_syn_slow = FALSE; // clear previous timeout |
11529
998d2cf59caa
patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
3521 #endif |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
3522 block->b_syn_ic = FALSE; // Use case, by default |
20623
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
3523 block->b_syn_foldlevel = SYNFLD_START; |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
3524 block->b_syn_spell = SYNSPL_DEFAULT; // default spell checking |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3525 block->b_syn_containedin = FALSE; |
10618
4ee16e5e2e26
patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents:
10534
diff
changeset
|
3526 #ifdef FEAT_CONCEAL |
4ee16e5e2e26
patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents:
10534
diff
changeset
|
3527 block->b_syn_conceal = FALSE; |
4ee16e5e2e26
patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents:
10534
diff
changeset
|
3528 #endif |
7 | 3529 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
3530 // free the keywords |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3531 clear_keywtab(&block->b_keywtab); |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3532 clear_keywtab(&block->b_keywtab_ic); |
7 | 3533 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
3534 // free the syntax patterns |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3535 for (i = block->b_syn_patterns.ga_len; --i >= 0; ) |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3536 syn_clear_pattern(block, i); |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3537 ga_clear(&block->b_syn_patterns); |
7 | 3538 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
3539 // free the syntax clusters |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3540 for (i = block->b_syn_clusters.ga_len; --i >= 0; ) |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3541 syn_clear_cluster(block, i); |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3542 ga_clear(&block->b_syn_clusters); |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3543 block->b_spell_cluster_id = 0; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3544 block->b_nospell_cluster_id = 0; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3545 |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3546 block->b_syn_sync_flags = 0; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3547 block->b_syn_sync_minlines = 0; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3548 block->b_syn_sync_maxlines = 0; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3549 block->b_syn_sync_linebreaks = 0; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3550 |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4803
diff
changeset
|
3551 vim_regfree(block->b_syn_linecont_prog); |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3552 block->b_syn_linecont_prog = NULL; |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
12973
diff
changeset
|
3553 VIM_CLEAR(block->b_syn_linecont_pat); |
7 | 3554 #ifdef FEAT_FOLDING |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3555 block->b_syn_folditems = 0; |
7 | 3556 #endif |
7687
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
3557 clear_string_option(&block->b_syn_isk); |
7 | 3558 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
3559 // free the stored states |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3560 syn_stack_free_all(block); |
7 | 3561 invalidate_current_state(); |
2743 | 3562 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
3563 // Reset the counter for ":syn include" |
2743 | 3564 running_syn_inc_tag = 0; |
7 | 3565 } |
3566 | |
3567 /* | |
2253
12ebd6f6dfce
Fixed: after ":ownsyntax perl" and ":e" syntax was cleared in other window.
Bram Moolenaar <bram@vim.org>
parents:
2252
diff
changeset
|
3568 * Get rid of ownsyntax for window "wp". |
12ebd6f6dfce
Fixed: after ":ownsyntax perl" and ":e" syntax was cleared in other window.
Bram Moolenaar <bram@vim.org>
parents:
2252
diff
changeset
|
3569 */ |
12ebd6f6dfce
Fixed: after ":ownsyntax perl" and ":e" syntax was cleared in other window.
Bram Moolenaar <bram@vim.org>
parents:
2252
diff
changeset
|
3570 void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3571 reset_synblock(win_T *wp) |
2253
12ebd6f6dfce
Fixed: after ":ownsyntax perl" and ":e" syntax was cleared in other window.
Bram Moolenaar <bram@vim.org>
parents:
2252
diff
changeset
|
3572 { |
12ebd6f6dfce
Fixed: after ":ownsyntax perl" and ":e" syntax was cleared in other window.
Bram Moolenaar <bram@vim.org>
parents:
2252
diff
changeset
|
3573 if (wp->w_s != &wp->w_buffer->b_s) |
12ebd6f6dfce
Fixed: after ":ownsyntax perl" and ":e" syntax was cleared in other window.
Bram Moolenaar <bram@vim.org>
parents:
2252
diff
changeset
|
3574 { |
12ebd6f6dfce
Fixed: after ":ownsyntax perl" and ":e" syntax was cleared in other window.
Bram Moolenaar <bram@vim.org>
parents:
2252
diff
changeset
|
3575 syntax_clear(wp->w_s); |
12ebd6f6dfce
Fixed: after ":ownsyntax perl" and ":e" syntax was cleared in other window.
Bram Moolenaar <bram@vim.org>
parents:
2252
diff
changeset
|
3576 vim_free(wp->w_s); |
12ebd6f6dfce
Fixed: after ":ownsyntax perl" and ":e" syntax was cleared in other window.
Bram Moolenaar <bram@vim.org>
parents:
2252
diff
changeset
|
3577 wp->w_s = &wp->w_buffer->b_s; |
12ebd6f6dfce
Fixed: after ":ownsyntax perl" and ":e" syntax was cleared in other window.
Bram Moolenaar <bram@vim.org>
parents:
2252
diff
changeset
|
3578 } |
12ebd6f6dfce
Fixed: after ":ownsyntax perl" and ":e" syntax was cleared in other window.
Bram Moolenaar <bram@vim.org>
parents:
2252
diff
changeset
|
3579 } |
12ebd6f6dfce
Fixed: after ":ownsyntax perl" and ":e" syntax was cleared in other window.
Bram Moolenaar <bram@vim.org>
parents:
2252
diff
changeset
|
3580 |
12ebd6f6dfce
Fixed: after ":ownsyntax perl" and ":e" syntax was cleared in other window.
Bram Moolenaar <bram@vim.org>
parents:
2252
diff
changeset
|
3581 /* |
7 | 3582 * Clear syncing info for one buffer. |
3583 */ | |
3584 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3585 syntax_sync_clear(void) |
7 | 3586 { |
3587 int i; | |
3588 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
3589 // free the syntax patterns |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3590 for (i = curwin->w_s->b_syn_patterns.ga_len; --i >= 0; ) |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3591 if (SYN_ITEMS(curwin->w_s)[i].sp_syncing) |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3592 syn_remove_pattern(curwin->w_s, i); |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3593 |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3594 curwin->w_s->b_syn_sync_flags = 0; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3595 curwin->w_s->b_syn_sync_minlines = 0; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3596 curwin->w_s->b_syn_sync_maxlines = 0; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3597 curwin->w_s->b_syn_sync_linebreaks = 0; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3598 |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4803
diff
changeset
|
3599 vim_regfree(curwin->w_s->b_syn_linecont_prog); |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3600 curwin->w_s->b_syn_linecont_prog = NULL; |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
12973
diff
changeset
|
3601 VIM_CLEAR(curwin->w_s->b_syn_linecont_pat); |
7687
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
3602 clear_string_option(&curwin->w_s->b_syn_isk); |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
3603 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
3604 syn_stack_free_all(curwin->w_s); // Need to recompute all syntax. |
7 | 3605 } |
3606 | |
3607 /* | |
3608 * Remove one pattern from the buffer's pattern list. | |
3609 */ | |
3610 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3611 syn_remove_pattern( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3612 synblock_T *block, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3613 int idx) |
7 | 3614 { |
3615 synpat_T *spp; | |
3616 | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3617 spp = &(SYN_ITEMS(block)[idx]); |
7 | 3618 #ifdef FEAT_FOLDING |
3619 if (spp->sp_flags & HL_FOLD) | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3620 --block->b_syn_folditems; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3621 #endif |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3622 syn_clear_pattern(block, idx); |
7 | 3623 mch_memmove(spp, spp + 1, |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3624 sizeof(synpat_T) * (block->b_syn_patterns.ga_len - idx - 1)); |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3625 --block->b_syn_patterns.ga_len; |
7 | 3626 } |
3627 | |
3628 /* | |
3629 * Clear and free one syntax pattern. When clearing all, must be called from | |
3630 * last to first! | |
3631 */ | |
3632 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3633 syn_clear_pattern(synblock_T *block, int i) |
7 | 3634 { |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3635 vim_free(SYN_ITEMS(block)[i].sp_pattern); |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4803
diff
changeset
|
3636 vim_regfree(SYN_ITEMS(block)[i].sp_prog); |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
3637 // Only free sp_cont_list and sp_next_list of first start pattern |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3638 if (i == 0 || SYN_ITEMS(block)[i - 1].sp_type != SPTYPE_START) |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3639 { |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3640 vim_free(SYN_ITEMS(block)[i].sp_cont_list); |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3641 vim_free(SYN_ITEMS(block)[i].sp_next_list); |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3642 vim_free(SYN_ITEMS(block)[i].sp_syn.cont_in_list); |
7 | 3643 } |
3644 } | |
3645 | |
3646 /* | |
3647 * Clear and free one syntax cluster. | |
3648 */ | |
3649 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3650 syn_clear_cluster(synblock_T *block, int i) |
7 | 3651 { |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3652 vim_free(SYN_CLSTR(block)[i].scl_name); |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3653 vim_free(SYN_CLSTR(block)[i].scl_name_u); |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3654 vim_free(SYN_CLSTR(block)[i].scl_list); |
7 | 3655 } |
3656 | |
3657 /* | |
3658 * Handle ":syntax clear" command. | |
3659 */ | |
3660 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3661 syn_cmd_clear(exarg_T *eap, int syncing) |
7 | 3662 { |
3663 char_u *arg = eap->arg; | |
3664 char_u *arg_end; | |
3665 int id; | |
3666 | |
3667 eap->nextcmd = find_nextcmd(arg); | |
3668 if (eap->skip) | |
3669 return; | |
3670 | |
3671 /* | |
3672 * We have to disable this within ":syn include @group filename", | |
3673 * because otherwise @group would get deleted. | |
3674 * Only required for Vim 5.x syntax files, 6.0 ones don't contain ":syn | |
3675 * clear". | |
3676 */ | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3677 if (curwin->w_s->b_syn_topgrp != 0) |
7 | 3678 return; |
3679 | |
20116
513c62184ed8
patch 8.2.0613: Vim9: no check for space before #comment
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
3680 if (ends_excmd2(eap->cmd, arg)) |
7 | 3681 { |
3682 /* | |
3683 * No argument: Clear all syntax items. | |
3684 */ | |
3685 if (syncing) | |
3686 syntax_sync_clear(); | |
3687 else | |
3688 { | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3689 syntax_clear(curwin->w_s); |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3690 if (curwin->w_s == &curwin->w_buffer->b_s) |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3691 do_unlet((char_u *)"b:current_syntax", TRUE); |
2252
a0b5918c33cc
Fixed memory leak in ":ownsyntax".
Bram Moolenaar <bram@vim.org>
parents:
2251
diff
changeset
|
3692 do_unlet((char_u *)"w:current_syntax", TRUE); |
7 | 3693 } |
3694 } | |
3695 else | |
3696 { | |
3697 /* | |
3698 * Clear the group IDs that are in the argument. | |
3699 */ | |
20116
513c62184ed8
patch 8.2.0613: Vim9: no check for space before #comment
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
3700 while (!ends_excmd2(eap->cmd, arg)) |
7 | 3701 { |
3702 arg_end = skiptowhite(arg); | |
3703 if (*arg == '@') | |
3704 { | |
3705 id = syn_scl_namen2id(arg + 1, (int)(arg_end - arg - 1)); | |
3706 if (id == 0) | |
3707 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
14968
diff
changeset
|
3708 semsg(_("E391: No such syntax cluster: %s"), arg); |
7 | 3709 break; |
3710 } | |
3711 else | |
3712 { | |
3713 /* | |
3714 * We can't physically delete a cluster without changing | |
3715 * the IDs of other clusters, so we do the next best thing | |
3716 * and make it empty. | |
3717 */ | |
3718 short scl_id = id - SYNID_CLUSTER; | |
3719 | |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
12973
diff
changeset
|
3720 VIM_CLEAR(SYN_CLSTR(curwin->w_s)[scl_id].scl_list); |
7 | 3721 } |
3722 } | |
3723 else | |
3724 { | |
3725 id = syn_namen2id(arg, (int)(arg_end - arg)); | |
3726 if (id == 0) | |
3727 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
14968
diff
changeset
|
3728 semsg(_(e_nogroup), arg); |
7 | 3729 break; |
3730 } | |
3731 else | |
3732 syn_clear_one(id, syncing); | |
3733 } | |
3734 arg = skipwhite(arg_end); | |
3735 } | |
3736 } | |
745 | 3737 redraw_curbuf_later(SOME_VALID); |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
3738 syn_stack_free_all(curwin->w_s); // Need to recompute all syntax. |
7 | 3739 } |
3740 | |
3741 /* | |
3742 * Clear one syntax group for the current buffer. | |
3743 */ | |
3744 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3745 syn_clear_one(int id, int syncing) |
7 | 3746 { |
3747 synpat_T *spp; | |
3748 int idx; | |
3749 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
3750 // Clear keywords only when not ":syn sync clear group-name" |
7 | 3751 if (!syncing) |
3752 { | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3753 (void)syn_clear_keyword(id, &curwin->w_s->b_keywtab); |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3754 (void)syn_clear_keyword(id, &curwin->w_s->b_keywtab_ic); |
7 | 3755 } |
3756 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
3757 // clear the patterns for "id" |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3758 for (idx = curwin->w_s->b_syn_patterns.ga_len; --idx >= 0; ) |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3759 { |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3760 spp = &(SYN_ITEMS(curwin->w_s)[idx]); |
7 | 3761 if (spp->sp_syn.id != id || spp->sp_syncing != syncing) |
3762 continue; | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3763 syn_remove_pattern(curwin->w_s, idx); |
7 | 3764 } |
3765 } | |
3766 | |
3767 /* | |
3768 * Handle ":syntax on" command. | |
3769 */ | |
3770 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3771 syn_cmd_on(exarg_T *eap, int syncing UNUSED) |
7 | 3772 { |
3773 syn_cmd_onoff(eap, "syntax"); | |
3774 } | |
3775 | |
3776 /* | |
3777 * Handle ":syntax enable" command. | |
3778 */ | |
3779 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3780 syn_cmd_enable(exarg_T *eap, int syncing UNUSED) |
7 | 3781 { |
3782 set_internal_string_var((char_u *)"syntax_cmd", (char_u *)"enable"); | |
3783 syn_cmd_onoff(eap, "syntax"); | |
148 | 3784 do_unlet((char_u *)"g:syntax_cmd", TRUE); |
7 | 3785 } |
3786 | |
3787 /* | |
3788 * Handle ":syntax reset" command. | |
8815
50d9fb580ffe
commit https://github.com/vim/vim/commit/8bc189e81aa98ba4aebb03a9dc9527a210fce816
Christian Brabandt <cb@256bit.org>
parents:
8806
diff
changeset
|
3789 * It actually resets highlighting, not syntax. |
7 | 3790 */ |
3791 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3792 syn_cmd_reset(exarg_T *eap, int syncing UNUSED) |
7 | 3793 { |
3794 eap->nextcmd = check_nextcmd(eap->arg); | |
3795 if (!eap->skip) | |
3796 { | |
3797 set_internal_string_var((char_u *)"syntax_cmd", (char_u *)"reset"); | |
3798 do_cmdline_cmd((char_u *)"runtime! syntax/syncolor.vim"); | |
148 | 3799 do_unlet((char_u *)"g:syntax_cmd", TRUE); |
7 | 3800 } |
3801 } | |
3802 | |
3803 /* | |
3804 * Handle ":syntax manual" command. | |
3805 */ | |
3806 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3807 syn_cmd_manual(exarg_T *eap, int syncing UNUSED) |
7 | 3808 { |
3809 syn_cmd_onoff(eap, "manual"); | |
3810 } | |
3811 | |
3812 /* | |
3813 * Handle ":syntax off" command. | |
3814 */ | |
3815 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3816 syn_cmd_off(exarg_T *eap, int syncing UNUSED) |
7 | 3817 { |
3818 syn_cmd_onoff(eap, "nosyntax"); | |
3819 } | |
3820 | |
3821 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3822 syn_cmd_onoff(exarg_T *eap, char *name) |
7 | 3823 { |
3824 char_u buf[100]; | |
3825 | |
3826 eap->nextcmd = check_nextcmd(eap->arg); | |
3827 if (!eap->skip) | |
3828 { | |
3829 STRCPY(buf, "so "); | |
274 | 3830 vim_snprintf((char *)buf + 3, sizeof(buf) - 3, SYNTAX_FNAME, name); |
7 | 3831 do_cmdline_cmd(buf); |
3832 } | |
3833 } | |
3834 | |
3835 /* | |
3836 * Handle ":syntax [list]" command: list current syntax words. | |
3837 */ | |
3838 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3839 syn_cmd_list( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3840 exarg_T *eap, |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
3841 int syncing) // when TRUE: list syncing items |
7 | 3842 { |
3843 char_u *arg = eap->arg; | |
3844 int id; | |
3845 char_u *arg_end; | |
3846 | |
3847 eap->nextcmd = find_nextcmd(arg); | |
3848 if (eap->skip) | |
3849 return; | |
3850 | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3851 if (!syntax_present(curwin)) |
7 | 3852 { |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
3853 msg(_(msg_no_items)); |
7 | 3854 return; |
3855 } | |
3856 | |
3857 if (syncing) | |
3858 { | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3859 if (curwin->w_s->b_syn_sync_flags & SF_CCOMMENT) |
7 | 3860 { |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
3861 msg_puts(_("syncing on C-style comments")); |
7 | 3862 syn_lines_msg(); |
3863 syn_match_msg(); | |
3864 return; | |
3865 } | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3866 else if (!(curwin->w_s->b_syn_sync_flags & SF_MATCH)) |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3867 { |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3868 if (curwin->w_s->b_syn_sync_minlines == 0) |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
3869 msg_puts(_("no syncing")); |
7 | 3870 else |
3871 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
3872 msg_puts(_("syncing starts ")); |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3873 msg_outnum(curwin->w_s->b_syn_sync_minlines); |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
3874 msg_puts(_(" lines before top line")); |
7 | 3875 syn_match_msg(); |
3876 } | |
3877 return; | |
3878 } | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
3879 msg_puts_title(_("\n--- Syntax sync items ---")); |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3880 if (curwin->w_s->b_syn_sync_minlines > 0 |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3881 || curwin->w_s->b_syn_sync_maxlines > 0 |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3882 || curwin->w_s->b_syn_sync_linebreaks > 0) |
7 | 3883 { |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
3884 msg_puts(_("\nsyncing on items")); |
7 | 3885 syn_lines_msg(); |
3886 syn_match_msg(); | |
3887 } | |
3888 } | |
3889 else | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
3890 msg_puts_title(_("\n--- Syntax items ---")); |
20116
513c62184ed8
patch 8.2.0613: Vim9: no check for space before #comment
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
3891 if (ends_excmd2(eap->cmd, arg)) |
7 | 3892 { |
3893 /* | |
3894 * No argument: List all group IDs and all syntax clusters. | |
3895 */ | |
17401
5462bb963075
patch 8.1.1699: highlight_ga can be local instead of global
Bram Moolenaar <Bram@vim.org>
parents:
17389
diff
changeset
|
3896 for (id = 1; id <= highlight_num_groups() && !got_int; ++id) |
7 | 3897 syn_list_one(id, syncing, FALSE); |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3898 for (id = 0; id < curwin->w_s->b_syn_clusters.ga_len && !got_int; ++id) |
7 | 3899 syn_list_cluster(id); |
3900 } | |
3901 else | |
3902 { | |
3903 /* | |
3904 * List the group IDs and syntax clusters that are in the argument. | |
3905 */ | |
20116
513c62184ed8
patch 8.2.0613: Vim9: no check for space before #comment
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
3906 while (!ends_excmd2(eap->cmd, arg) && !got_int) |
7 | 3907 { |
3908 arg_end = skiptowhite(arg); | |
3909 if (*arg == '@') | |
3910 { | |
3911 id = syn_scl_namen2id(arg + 1, (int)(arg_end - arg - 1)); | |
3912 if (id == 0) | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
14968
diff
changeset
|
3913 semsg(_("E392: No such syntax cluster: %s"), arg); |
7 | 3914 else |
3915 syn_list_cluster(id - SYNID_CLUSTER); | |
3916 } | |
3917 else | |
3918 { | |
3919 id = syn_namen2id(arg, (int)(arg_end - arg)); | |
3920 if (id == 0) | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
14968
diff
changeset
|
3921 semsg(_(e_nogroup), arg); |
7 | 3922 else |
3923 syn_list_one(id, syncing, TRUE); | |
3924 } | |
3925 arg = skipwhite(arg_end); | |
3926 } | |
3927 } | |
3928 eap->nextcmd = check_nextcmd(arg); | |
3929 } | |
3930 | |
3931 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3932 syn_lines_msg(void) |
7 | 3933 { |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3934 if (curwin->w_s->b_syn_sync_maxlines > 0 |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3935 || curwin->w_s->b_syn_sync_minlines > 0) |
7 | 3936 { |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
3937 msg_puts("; "); |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3938 if (curwin->w_s->b_syn_sync_minlines > 0) |
7 | 3939 { |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
3940 msg_puts(_("minimal ")); |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3941 msg_outnum(curwin->w_s->b_syn_sync_minlines); |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3942 if (curwin->w_s->b_syn_sync_maxlines) |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
3943 msg_puts(", "); |
7 | 3944 } |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3945 if (curwin->w_s->b_syn_sync_maxlines > 0) |
7 | 3946 { |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
3947 msg_puts(_("maximal ")); |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3948 msg_outnum(curwin->w_s->b_syn_sync_maxlines); |
7 | 3949 } |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
3950 msg_puts(_(" lines before top line")); |
7 | 3951 } |
3952 } | |
3953 | |
3954 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3955 syn_match_msg(void) |
7 | 3956 { |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3957 if (curwin->w_s->b_syn_sync_linebreaks > 0) |
7 | 3958 { |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
3959 msg_puts(_("; match ")); |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3960 msg_outnum(curwin->w_s->b_syn_sync_linebreaks); |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
3961 msg_puts(_(" line breaks")); |
7 | 3962 } |
3963 } | |
3964 | |
3965 static int last_matchgroup; | |
3966 | |
3967 struct name_list | |
3968 { | |
3969 int flag; | |
3970 char *name; | |
3971 }; | |
3972 | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
3973 static void syn_list_flags(struct name_list *nl, int flags, int attr); |
7 | 3974 |
3975 /* | |
3976 * List one syntax item, for ":syntax" or "syntax list syntax_name". | |
3977 */ | |
3978 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3979 syn_list_one( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3980 int id, |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
3981 int syncing, // when TRUE: list syncing items |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
3982 int link_only) // when TRUE; list link-only too |
7 | 3983 { |
3984 int attr; | |
3985 int idx; | |
3986 int did_header = FALSE; | |
3987 synpat_T *spp; | |
3988 static struct name_list namelist1[] = | |
3989 { | |
3990 {HL_DISPLAY, "display"}, | |
3991 {HL_CONTAINED, "contained"}, | |
3992 {HL_ONELINE, "oneline"}, | |
3993 {HL_KEEPEND, "keepend"}, | |
3994 {HL_EXTEND, "extend"}, | |
3995 {HL_EXCLUDENL, "excludenl"}, | |
3996 {HL_TRANSP, "transparent"}, | |
3997 {HL_FOLD, "fold"}, | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3998 #ifdef FEAT_CONCEAL |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3999 {HL_CONCEAL, "conceal"}, |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4000 {HL_CONCEALENDS, "concealends"}, |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4001 #endif |
7 | 4002 {0, NULL} |
4003 }; | |
4004 static struct name_list namelist2[] = | |
4005 { | |
4006 {HL_SKIPWHITE, "skipwhite"}, | |
4007 {HL_SKIPNL, "skipnl"}, | |
4008 {HL_SKIPEMPTY, "skipempty"}, | |
4009 {0, NULL} | |
4010 }; | |
4011 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
4012 attr = HL_ATTR(HLF_D); // highlight like directories |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
4013 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
4014 // list the keywords for "id" |
7 | 4015 if (!syncing) |
4016 { | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4017 did_header = syn_list_keywords(id, &curwin->w_s->b_keywtab, FALSE, attr); |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4018 did_header = syn_list_keywords(id, &curwin->w_s->b_keywtab_ic, |
7 | 4019 did_header, attr); |
4020 } | |
4021 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
4022 // list the patterns for "id" |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4023 for (idx = 0; idx < curwin->w_s->b_syn_patterns.ga_len && !got_int; ++idx) |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4024 { |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4025 spp = &(SYN_ITEMS(curwin->w_s)[idx]); |
7 | 4026 if (spp->sp_syn.id != id || spp->sp_syncing != syncing) |
4027 continue; | |
4028 | |
4029 (void)syn_list_header(did_header, 999, id); | |
4030 did_header = TRUE; | |
4031 last_matchgroup = 0; | |
4032 if (spp->sp_type == SPTYPE_MATCH) | |
4033 { | |
4034 put_pattern("match", ' ', spp, attr); | |
4035 msg_putchar(' '); | |
4036 } | |
4037 else if (spp->sp_type == SPTYPE_START) | |
4038 { | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4039 while (SYN_ITEMS(curwin->w_s)[idx].sp_type == SPTYPE_START) |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4040 put_pattern("start", '=', &SYN_ITEMS(curwin->w_s)[idx++], attr); |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4041 if (SYN_ITEMS(curwin->w_s)[idx].sp_type == SPTYPE_SKIP) |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4042 put_pattern("skip", '=', &SYN_ITEMS(curwin->w_s)[idx++], attr); |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4043 while (idx < curwin->w_s->b_syn_patterns.ga_len |
17401
5462bb963075
patch 8.1.1699: highlight_ga can be local instead of global
Bram Moolenaar <Bram@vim.org>
parents:
17389
diff
changeset
|
4044 && SYN_ITEMS(curwin->w_s)[idx].sp_type == SPTYPE_END) |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4045 put_pattern("end", '=', &SYN_ITEMS(curwin->w_s)[idx++], attr); |
7 | 4046 --idx; |
4047 msg_putchar(' '); | |
4048 } | |
4049 syn_list_flags(namelist1, spp->sp_flags, attr); | |
4050 | |
4051 if (spp->sp_cont_list != NULL) | |
4052 put_id_list((char_u *)"contains", spp->sp_cont_list, attr); | |
4053 | |
4054 if (spp->sp_syn.cont_in_list != NULL) | |
4055 put_id_list((char_u *)"containedin", | |
4056 spp->sp_syn.cont_in_list, attr); | |
4057 | |
4058 if (spp->sp_next_list != NULL) | |
4059 { | |
4060 put_id_list((char_u *)"nextgroup", spp->sp_next_list, attr); | |
4061 syn_list_flags(namelist2, spp->sp_flags, attr); | |
4062 } | |
4063 if (spp->sp_flags & (HL_SYNC_HERE|HL_SYNC_THERE)) | |
4064 { | |
4065 if (spp->sp_flags & HL_SYNC_HERE) | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
4066 msg_puts_attr("grouphere", attr); |
7 | 4067 else |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
4068 msg_puts_attr("groupthere", attr); |
7 | 4069 msg_putchar(' '); |
4070 if (spp->sp_sync_idx >= 0) | |
17401
5462bb963075
patch 8.1.1699: highlight_ga can be local instead of global
Bram Moolenaar <Bram@vim.org>
parents:
17389
diff
changeset
|
4071 msg_outtrans(highlight_group_name(SYN_ITEMS(curwin->w_s) |
5462bb963075
patch 8.1.1699: highlight_ga can be local instead of global
Bram Moolenaar <Bram@vim.org>
parents:
17389
diff
changeset
|
4072 [spp->sp_sync_idx].sp_syn.id - 1)); |
7 | 4073 else |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
4074 msg_puts("NONE"); |
7 | 4075 msg_putchar(' '); |
4076 } | |
4077 } | |
4078 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
4079 // list the link, if there is one |
17401
5462bb963075
patch 8.1.1699: highlight_ga can be local instead of global
Bram Moolenaar <Bram@vim.org>
parents:
17389
diff
changeset
|
4080 if (highlight_link_id(id - 1) && (did_header || link_only) && !got_int) |
7 | 4081 { |
4082 (void)syn_list_header(did_header, 999, id); | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
4083 msg_puts_attr("links to", attr); |
7 | 4084 msg_putchar(' '); |
17401
5462bb963075
patch 8.1.1699: highlight_ga can be local instead of global
Bram Moolenaar <Bram@vim.org>
parents:
17389
diff
changeset
|
4085 msg_outtrans(highlight_group_name(highlight_link_id(id - 1) - 1)); |
7 | 4086 } |
4087 } | |
4088 | |
4089 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4090 syn_list_flags(struct name_list *nlist, int flags, int attr) |
7 | 4091 { |
4092 int i; | |
4093 | |
3263 | 4094 for (i = 0; nlist[i].flag != 0; ++i) |
4095 if (flags & nlist[i].flag) | |
4096 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
4097 msg_puts_attr(nlist[i].name, attr); |
7 | 4098 msg_putchar(' '); |
4099 } | |
4100 } | |
4101 | |
4102 /* | |
4103 * List one syntax cluster, for ":syntax" or "syntax list syntax_name". | |
4104 */ | |
4105 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4106 syn_list_cluster(int id) |
7 | 4107 { |
4108 int endcol = 15; | |
4109 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
4110 // slight hack: roughly duplicate the guts of syn_list_header() |
7 | 4111 msg_putchar('\n'); |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4112 msg_outtrans(SYN_CLSTR(curwin->w_s)[id].scl_name); |
7 | 4113 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
4114 if (msg_col >= endcol) // output at least one space |
7 | 4115 endcol = msg_col + 1; |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
4116 if (Columns <= endcol) // avoid hang for tiny window |
7 | 4117 endcol = Columns - 1; |
4118 | |
4119 msg_advance(endcol); | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4120 if (SYN_CLSTR(curwin->w_s)[id].scl_list != NULL) |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4121 { |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4122 put_id_list((char_u *)"cluster", SYN_CLSTR(curwin->w_s)[id].scl_list, |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
4123 HL_ATTR(HLF_D)); |
7 | 4124 } |
4125 else | |
4126 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
4127 msg_puts_attr("cluster", HL_ATTR(HLF_D)); |
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
4128 msg_puts("=NONE"); |
7 | 4129 } |
4130 } | |
4131 | |
4132 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4133 put_id_list(char_u *name, short *list, int attr) |
7 | 4134 { |
4135 short *p; | |
4136 | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
4137 msg_puts_attr((char *)name, attr); |
7 | 4138 msg_putchar('='); |
4139 for (p = list; *p; ++p) | |
4140 { | |
4141 if (*p >= SYNID_ALLBUT && *p < SYNID_TOP) | |
4142 { | |
4143 if (p[1]) | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
4144 msg_puts("ALLBUT"); |
7 | 4145 else |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
4146 msg_puts("ALL"); |
7 | 4147 } |
4148 else if (*p >= SYNID_TOP && *p < SYNID_CONTAINED) | |
4149 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
4150 msg_puts("TOP"); |
7 | 4151 } |
4152 else if (*p >= SYNID_CONTAINED && *p < SYNID_CLUSTER) | |
4153 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
4154 msg_puts("CONTAINED"); |
7 | 4155 } |
4156 else if (*p >= SYNID_CLUSTER) | |
4157 { | |
4158 short scl_id = *p - SYNID_CLUSTER; | |
4159 | |
4160 msg_putchar('@'); | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4161 msg_outtrans(SYN_CLSTR(curwin->w_s)[scl_id].scl_name); |
7 | 4162 } |
4163 else | |
17401
5462bb963075
patch 8.1.1699: highlight_ga can be local instead of global
Bram Moolenaar <Bram@vim.org>
parents:
17389
diff
changeset
|
4164 msg_outtrans(highlight_group_name(*p - 1)); |
7 | 4165 if (p[1]) |
4166 msg_putchar(','); | |
4167 } | |
4168 msg_putchar(' '); | |
4169 } | |
4170 | |
4171 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4172 put_pattern( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4173 char *s, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4174 int c, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4175 synpat_T *spp, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4176 int attr) |
7 | 4177 { |
4178 long n; | |
4179 int mask; | |
4180 int first; | |
4181 static char *sepchars = "/+=-#@\"|'^&"; | |
4182 int i; | |
4183 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
4184 // May have to write "matchgroup=group" |
7 | 4185 if (last_matchgroup != spp->sp_syn_match_id) |
4186 { | |
4187 last_matchgroup = spp->sp_syn_match_id; | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
4188 msg_puts_attr("matchgroup", attr); |
7 | 4189 msg_putchar('='); |
4190 if (last_matchgroup == 0) | |
4191 msg_outtrans((char_u *)"NONE"); | |
4192 else | |
17401
5462bb963075
patch 8.1.1699: highlight_ga can be local instead of global
Bram Moolenaar <Bram@vim.org>
parents:
17389
diff
changeset
|
4193 msg_outtrans(highlight_group_name(last_matchgroup - 1)); |
7 | 4194 msg_putchar(' '); |
4195 } | |
4196 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
4197 // output the name of the pattern and an '=' or ' ' |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
4198 msg_puts_attr(s, attr); |
7 | 4199 msg_putchar(c); |
4200 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
4201 // output the pattern, in between a char that is not in the pattern |
7 | 4202 for (i = 0; vim_strchr(spp->sp_pattern, sepchars[i]) != NULL; ) |
4203 if (sepchars[++i] == NUL) | |
4204 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
4205 i = 0; // no good char found, just use the first one |
7 | 4206 break; |
4207 } | |
4208 msg_putchar(sepchars[i]); | |
4209 msg_outtrans(spp->sp_pattern); | |
4210 msg_putchar(sepchars[i]); | |
4211 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
4212 // output any pattern options |
7 | 4213 first = TRUE; |
4214 for (i = 0; i < SPO_COUNT; ++i) | |
4215 { | |
4216 mask = (1 << i); | |
4217 if (spp->sp_off_flags & (mask + (mask << SPO_COUNT))) | |
4218 { | |
4219 if (!first) | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
4220 msg_putchar(','); // separate with commas |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
4221 msg_puts(spo_name_tab[i]); |
7 | 4222 n = spp->sp_offsets[i]; |
4223 if (i != SPO_LC_OFF) | |
4224 { | |
4225 if (spp->sp_off_flags & mask) | |
4226 msg_putchar('s'); | |
4227 else | |
4228 msg_putchar('e'); | |
4229 if (n > 0) | |
4230 msg_putchar('+'); | |
4231 } | |
4232 if (n || i == SPO_LC_OFF) | |
4233 msg_outnum(n); | |
4234 first = FALSE; | |
4235 } | |
4236 } | |
4237 msg_putchar(' '); | |
4238 } | |
4239 | |
4240 /* | |
4241 * List or clear the keywords for one syntax group. | |
4242 * Return TRUE if the header has been printed. | |
4243 */ | |
4244 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4245 syn_list_keywords( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4246 int id, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4247 hashtab_T *ht, |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
4248 int did_header, // header has already been printed |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4249 int attr) |
7 | 4250 { |
4251 int outlen; | |
134 | 4252 hashitem_T *hi; |
4253 keyentry_T *kp; | |
4254 int todo; | |
7 | 4255 int prev_contained = 0; |
4256 short *prev_next_list = NULL; | |
4257 short *prev_cont_in_list = NULL; | |
4258 int prev_skipnl = 0; | |
4259 int prev_skipwhite = 0; | |
4260 int prev_skipempty = 0; | |
4261 | |
4262 /* | |
4263 * Unfortunately, this list of keywords is not sorted on alphabet but on | |
4264 * hash value... | |
4265 */ | |
835 | 4266 todo = (int)ht->ht_used; |
134 | 4267 for (hi = ht->ht_array; todo > 0 && !got_int; ++hi) |
4268 { | |
4269 if (!HASHITEM_EMPTY(hi)) | |
4270 { | |
4271 --todo; | |
4272 for (kp = HI2KE(hi); kp != NULL && !got_int; kp = kp->ke_next) | |
7 | 4273 { |
134 | 4274 if (kp->k_syn.id == id) |
7 | 4275 { |
134 | 4276 if (prev_contained != (kp->flags & HL_CONTAINED) |
4277 || prev_skipnl != (kp->flags & HL_SKIPNL) | |
4278 || prev_skipwhite != (kp->flags & HL_SKIPWHITE) | |
4279 || prev_skipempty != (kp->flags & HL_SKIPEMPTY) | |
4280 || prev_cont_in_list != kp->k_syn.cont_in_list | |
4281 || prev_next_list != kp->next_list) | |
4282 outlen = 9999; | |
4283 else | |
4284 outlen = (int)STRLEN(kp->keyword); | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
4285 // output "contained" and "nextgroup" on each line |
134 | 4286 if (syn_list_header(did_header, outlen, id)) |
4287 { | |
4288 prev_contained = 0; | |
4289 prev_next_list = NULL; | |
4290 prev_cont_in_list = NULL; | |
4291 prev_skipnl = 0; | |
4292 prev_skipwhite = 0; | |
4293 prev_skipempty = 0; | |
4294 } | |
4295 did_header = TRUE; | |
4296 if (prev_contained != (kp->flags & HL_CONTAINED)) | |
4297 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
4298 msg_puts_attr("contained", attr); |
134 | 4299 msg_putchar(' '); |
4300 prev_contained = (kp->flags & HL_CONTAINED); | |
4301 } | |
4302 if (kp->k_syn.cont_in_list != prev_cont_in_list) | |
4303 { | |
4304 put_id_list((char_u *)"containedin", | |
4305 kp->k_syn.cont_in_list, attr); | |
4306 msg_putchar(' '); | |
4307 prev_cont_in_list = kp->k_syn.cont_in_list; | |
4308 } | |
4309 if (kp->next_list != prev_next_list) | |
4310 { | |
4311 put_id_list((char_u *)"nextgroup", kp->next_list, attr); | |
4312 msg_putchar(' '); | |
4313 prev_next_list = kp->next_list; | |
4314 if (kp->flags & HL_SKIPNL) | |
4315 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
4316 msg_puts_attr("skipnl", attr); |
134 | 4317 msg_putchar(' '); |
4318 prev_skipnl = (kp->flags & HL_SKIPNL); | |
4319 } | |
4320 if (kp->flags & HL_SKIPWHITE) | |
4321 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
4322 msg_puts_attr("skipwhite", attr); |
134 | 4323 msg_putchar(' '); |
4324 prev_skipwhite = (kp->flags & HL_SKIPWHITE); | |
4325 } | |
4326 if (kp->flags & HL_SKIPEMPTY) | |
4327 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
4328 msg_puts_attr("skipempty", attr); |
134 | 4329 msg_putchar(' '); |
4330 prev_skipempty = (kp->flags & HL_SKIPEMPTY); | |
4331 } | |
4332 } | |
4333 msg_outtrans(kp->keyword); | |
7 | 4334 } |
4335 } | |
4336 } | |
4337 } | |
4338 | |
4339 return did_header; | |
4340 } | |
4341 | |
4342 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4343 syn_clear_keyword(int id, hashtab_T *ht) |
134 | 4344 { |
4345 hashitem_T *hi; | |
4346 keyentry_T *kp; | |
4347 keyentry_T *kp_prev; | |
4348 keyentry_T *kp_next; | |
4349 int todo; | |
4350 | |
4351 hash_lock(ht); | |
835 | 4352 todo = (int)ht->ht_used; |
134 | 4353 for (hi = ht->ht_array; todo > 0; ++hi) |
4354 { | |
4355 if (!HASHITEM_EMPTY(hi)) | |
4356 { | |
4357 --todo; | |
4358 kp_prev = NULL; | |
4359 for (kp = HI2KE(hi); kp != NULL; ) | |
7 | 4360 { |
134 | 4361 if (kp->k_syn.id == id) |
4362 { | |
4363 kp_next = kp->ke_next; | |
4364 if (kp_prev == NULL) | |
4365 { | |
4366 if (kp_next == NULL) | |
4367 hash_remove(ht, hi); | |
4368 else | |
4369 hi->hi_key = KE2HIKEY(kp_next); | |
4370 } | |
4371 else | |
4372 kp_prev->ke_next = kp_next; | |
4373 vim_free(kp->next_list); | |
4374 vim_free(kp->k_syn.cont_in_list); | |
4375 vim_free(kp); | |
4376 kp = kp_next; | |
4377 } | |
7 | 4378 else |
134 | 4379 { |
4380 kp_prev = kp; | |
4381 kp = kp->ke_next; | |
4382 } | |
7 | 4383 } |
134 | 4384 } |
4385 } | |
4386 hash_unlock(ht); | |
4387 } | |
4388 | |
4389 /* | |
4390 * Clear a whole keyword table. | |
7 | 4391 */ |
4392 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4393 clear_keywtab(hashtab_T *ht) |
134 | 4394 { |
4395 hashitem_T *hi; | |
4396 int todo; | |
4397 keyentry_T *kp; | |
4398 keyentry_T *kp_next; | |
4399 | |
835 | 4400 todo = (int)ht->ht_used; |
134 | 4401 for (hi = ht->ht_array; todo > 0; ++hi) |
4402 { | |
4403 if (!HASHITEM_EMPTY(hi)) | |
4404 { | |
4405 --todo; | |
4406 for (kp = HI2KE(hi); kp != NULL; kp = kp_next) | |
7 | 4407 { |
134 | 4408 kp_next = kp->ke_next; |
4409 vim_free(kp->next_list); | |
4410 vim_free(kp->k_syn.cont_in_list); | |
4411 vim_free(kp); | |
7 | 4412 } |
134 | 4413 } |
4414 } | |
4415 hash_clear(ht); | |
4416 hash_init(ht); | |
7 | 4417 } |
4418 | |
4419 /* | |
4420 * Add a keyword to the list of keywords. | |
4421 */ | |
4422 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4423 add_keyword( |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
4424 char_u *name, // name of keyword |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
4425 int id, // group ID for this keyword |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
4426 int flags, // flags for this keyword |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
4427 short *cont_in_list, // containedin for this keyword |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
4428 short *next_list, // nextgroup for this keyword |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4429 int conceal_char) |
7 | 4430 { |
134 | 4431 keyentry_T *kp; |
4432 hashtab_T *ht; | |
4433 hashitem_T *hi; | |
154 | 4434 char_u *name_ic; |
134 | 4435 long_u hash; |
154 | 4436 char_u name_folded[MAXKEYWLEN + 1]; |
7 | 4437 |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4438 if (curwin->w_s->b_syn_ic) |
154 | 4439 name_ic = str_foldcase(name, (int)STRLEN(name), |
4440 name_folded, MAXKEYWLEN + 1); | |
4441 else | |
4442 name_ic = name; | |
17659
121bdff812b4
patch 8.1.1827: allocating more memory than needed for extended structs
Bram Moolenaar <Bram@vim.org>
parents:
17401
diff
changeset
|
4443 kp = alloc(offsetof(keyentry_T, keyword) + STRLEN(name_ic) + 1); |
134 | 4444 if (kp == NULL) |
4445 return; | |
4446 STRCPY(kp->keyword, name_ic); | |
4447 kp->k_syn.id = id; | |
4448 kp->k_syn.inc_tag = current_syn_inc_tag; | |
4449 kp->flags = flags; | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4450 kp->k_char = conceal_char; |
134 | 4451 kp->k_syn.cont_in_list = copy_id_list(cont_in_list); |
4452 if (cont_in_list != NULL) | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4453 curwin->w_s->b_syn_containedin = TRUE; |
134 | 4454 kp->next_list = copy_id_list(next_list); |
4455 | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4456 if (curwin->w_s->b_syn_ic) |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4457 ht = &curwin->w_s->b_keywtab_ic; |
7 | 4458 else |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4459 ht = &curwin->w_s->b_keywtab; |
134 | 4460 |
4461 hash = hash_hash(kp->keyword); | |
4462 hi = hash_lookup(ht, kp->keyword, hash); | |
4463 if (HASHITEM_EMPTY(hi)) | |
4464 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
4465 // new keyword, add to hashtable |
134 | 4466 kp->ke_next = NULL; |
4467 hash_add_item(ht, hi, kp->keyword, hash); | |
4468 } | |
4469 else | |
4470 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
4471 // keyword already exists, prepend to list |
134 | 4472 kp->ke_next = HI2KE(hi); |
4473 hi->hi_key = KE2HIKEY(kp); | |
4474 } | |
7 | 4475 } |
4476 | |
4477 /* | |
4478 * Get the start and end of the group name argument. | |
4479 * Return a pointer to the first argument. | |
4480 * Return NULL if the end of the command was found instead of further args. | |
4481 */ | |
4482 static char_u * | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4483 get_group_name( |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
4484 char_u *arg, // start of the argument |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
4485 char_u **name_end) // pointer to end of the name |
7 | 4486 { |
4487 char_u *rest; | |
4488 | |
4489 *name_end = skiptowhite(arg); | |
4490 rest = skipwhite(*name_end); | |
4491 | |
4492 /* | |
4493 * Check if there are enough arguments. The first argument may be a | |
4494 * pattern, where '|' is allowed, so only check for NUL. | |
4495 */ | |
4496 if (ends_excmd(*arg) || *rest == NUL) | |
4497 return NULL; | |
4498 return rest; | |
4499 } | |
4500 | |
4501 /* | |
4502 * Check for syntax command option arguments. | |
4503 * This can be called at any place in the list of arguments, and just picks | |
4504 * out the arguments that are known. Can be called several times in a row to | |
4505 * collect all options in between other arguments. | |
4506 * Return a pointer to the next argument (which isn't an option). | |
4507 * Return NULL for any error; | |
4508 */ | |
4509 static char_u * | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4510 get_syn_options( |
20116
513c62184ed8
patch 8.2.0613: Vim9: no check for space before #comment
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
4511 char_u *start, // next argument to be checked |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
4512 syn_opt_arg_T *opt, // various things |
10618
4ee16e5e2e26
patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents:
10534
diff
changeset
|
4513 int *conceal_char UNUSED, |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
4514 int skip) // TRUE if skipping over command |
154 | 4515 { |
20116
513c62184ed8
patch 8.2.0613: Vim9: no check for space before #comment
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
4516 char_u *arg = start; |
7 | 4517 char_u *gname_start, *gname; |
4518 int syn_id; | |
4519 int len; | |
154 | 4520 char *p; |
7 | 4521 int i; |
4522 int fidx; | |
4523 static struct flag | |
4524 { | |
4525 char *name; | |
154 | 4526 int argtype; |
4527 int flags; | |
4528 } flagtab[] = { {"cCoOnNtTaAiInNeEdD", 0, HL_CONTAINED}, | |
4529 {"oOnNeElLiInNeE", 0, HL_ONELINE}, | |
4530 {"kKeEeEpPeEnNdD", 0, HL_KEEPEND}, | |
4531 {"eExXtTeEnNdD", 0, HL_EXTEND}, | |
4532 {"eExXcClLuUdDeEnNlL", 0, HL_EXCLUDENL}, | |
4533 {"tTrRaAnNsSpPaArReEnNtT", 0, HL_TRANSP}, | |
4534 {"sSkKiIpPnNlL", 0, HL_SKIPNL}, | |
4535 {"sSkKiIpPwWhHiItTeE", 0, HL_SKIPWHITE}, | |
4536 {"sSkKiIpPeEmMpPtTyY", 0, HL_SKIPEMPTY}, | |
4537 {"gGrRoOuUpPhHeErReE", 0, HL_SYNC_HERE}, | |
4538 {"gGrRoOuUpPtThHeErReE", 0, HL_SYNC_THERE}, | |
4539 {"dDiIsSpPlLaAyY", 0, HL_DISPLAY}, | |
4540 {"fFoOlLdD", 0, HL_FOLD}, | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4541 {"cCoOnNcCeEaAlL", 0, HL_CONCEAL}, |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4542 {"cCoOnNcCeEaAlLeEnNdDsS", 0, HL_CONCEALENDS}, |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4543 {"cCcChHaArR", 11, 0}, |
154 | 4544 {"cCoOnNtTaAiInNsS", 1, 0}, |
4545 {"cCoOnNtTaAiInNeEdDiInN", 2, 0}, | |
4546 {"nNeExXtTgGrRoOuUpP", 3, 0}, | |
7 | 4547 }; |
154 | 4548 static char *first_letters = "cCoOkKeEtTsSgGdDfFnN"; |
7 | 4549 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
4550 if (arg == NULL) // already detected error |
7 | 4551 return NULL; |
4552 | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4553 #ifdef FEAT_CONCEAL |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4554 if (curwin->w_s->b_syn_conceal) |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4555 opt->flags |= HL_CONCEAL; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4556 #endif |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4557 |
7 | 4558 for (;;) |
4559 { | |
154 | 4560 /* |
4561 * This is used very often when a large number of keywords is defined. | |
4562 * Need to skip quickly when no option name is found. | |
4563 * Also avoid tolower(), it's slow. | |
4564 */ | |
4565 if (strchr(first_letters, *arg) == NULL) | |
4566 break; | |
7 | 4567 |
4568 for (fidx = sizeof(flagtab) / sizeof(struct flag); --fidx >= 0; ) | |
4569 { | |
154 | 4570 p = flagtab[fidx].name; |
4571 for (i = 0, len = 0; p[i] != NUL; i += 2, ++len) | |
4572 if (arg[len] != p[i] && arg[len] != p[i + 1]) | |
4573 break; | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
4574 if (p[i] == NUL && (VIM_ISWHITE(arg[len]) |
154 | 4575 || (flagtab[fidx].argtype > 0 |
4576 ? arg[len] == '=' | |
20116
513c62184ed8
patch 8.2.0613: Vim9: no check for space before #comment
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
4577 : ends_excmd2(start, arg + len)))) |
7 | 4578 { |
154 | 4579 if (opt->keyword |
4580 && (flagtab[fidx].flags == HL_DISPLAY | |
4581 || flagtab[fidx].flags == HL_FOLD | |
4582 || flagtab[fidx].flags == HL_EXTEND)) | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
4583 // treat "display", "fold" and "extend" as a keyword |
7 | 4584 fidx = -1; |
4585 break; | |
4586 } | |
4587 } | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
4588 if (fidx < 0) // no match found |
154 | 4589 break; |
4590 | |
4591 if (flagtab[fidx].argtype == 1) | |
4592 { | |
4593 if (!opt->has_cont_list) | |
7 | 4594 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
14968
diff
changeset
|
4595 emsg(_("E395: contains argument not accepted here")); |
7 | 4596 return NULL; |
4597 } | |
10618
4ee16e5e2e26
patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents:
10534
diff
changeset
|
4598 if (get_id_list(&arg, 8, &opt->cont_list, skip) == FAIL) |
7 | 4599 return NULL; |
4600 } | |
154 | 4601 else if (flagtab[fidx].argtype == 2) |
4602 { | |
10618
4ee16e5e2e26
patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents:
10534
diff
changeset
|
4603 if (get_id_list(&arg, 11, &opt->cont_in_list, skip) == FAIL) |
7 | 4604 return NULL; |
4605 } | |
154 | 4606 else if (flagtab[fidx].argtype == 3) |
4607 { | |
10618
4ee16e5e2e26
patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents:
10534
diff
changeset
|
4608 if (get_id_list(&arg, 9, &opt->next_list, skip) == FAIL) |
7 | 4609 return NULL; |
4610 } | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4611 else if (flagtab[fidx].argtype == 11 && arg[5] == '=') |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4612 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
4613 // cchar=? |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4614 if (has_mbyte) |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4615 { |
15605
62b3805506b3
patch 8.1.0810: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4616 #ifdef FEAT_CONCEAL |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4617 *conceal_char = mb_ptr2char(arg + 6); |
15605
62b3805506b3
patch 8.1.0810: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4618 #endif |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4619 arg += mb_ptr2len(arg + 6) - 1; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4620 } |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4621 else |
2251
646d34788036
Fix a few compiler warnings. Fix crash with encrypted undo file.
Bram Moolenaar <bram@vim.org>
parents:
2250
diff
changeset
|
4622 { |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4623 #ifdef FEAT_CONCEAL |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4624 *conceal_char = arg[6]; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4625 #else |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4626 ; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4627 #endif |
2251
646d34788036
Fix a few compiler warnings. Fix crash with encrypted undo file.
Bram Moolenaar <bram@vim.org>
parents:
2250
diff
changeset
|
4628 } |
2686 | 4629 #ifdef FEAT_CONCEAL |
4630 if (!vim_isprintc_strict(*conceal_char)) | |
4631 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
14968
diff
changeset
|
4632 emsg(_("E844: invalid cchar value")); |
2686 | 4633 return NULL; |
4634 } | |
4635 #endif | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4636 arg = skipwhite(arg + 7); |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4637 } |
7 | 4638 else |
154 | 4639 { |
4640 opt->flags |= flagtab[fidx].flags; | |
4641 arg = skipwhite(arg + len); | |
4642 | |
4643 if (flagtab[fidx].flags == HL_SYNC_HERE | |
4644 || flagtab[fidx].flags == HL_SYNC_THERE) | |
4645 { | |
4646 if (opt->sync_idx == NULL) | |
4647 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
14968
diff
changeset
|
4648 emsg(_("E393: group[t]here not accepted here")); |
154 | 4649 return NULL; |
4650 } | |
4651 gname_start = arg; | |
4652 arg = skiptowhite(arg); | |
4653 if (gname_start == arg) | |
4654 return NULL; | |
20830
9064044fd4f6
patch 8.2.0967: unnecessary type casts for vim_strnsave()
Bram Moolenaar <Bram@vim.org>
parents:
20751
diff
changeset
|
4655 gname = vim_strnsave(gname_start, arg - gname_start); |
154 | 4656 if (gname == NULL) |
4657 return NULL; | |
4658 if (STRCMP(gname, "NONE") == 0) | |
4659 *opt->sync_idx = NONE_IDX; | |
4660 else | |
4661 { | |
4662 syn_id = syn_name2id(gname); | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4663 for (i = curwin->w_s->b_syn_patterns.ga_len; --i >= 0; ) |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4664 if (SYN_ITEMS(curwin->w_s)[i].sp_syn.id == syn_id |
20830
9064044fd4f6
patch 8.2.0967: unnecessary type casts for vim_strnsave()
Bram Moolenaar <Bram@vim.org>
parents:
20751
diff
changeset
|
4665 && SYN_ITEMS(curwin->w_s)[i].sp_type |
9064044fd4f6
patch 8.2.0967: unnecessary type casts for vim_strnsave()
Bram Moolenaar <Bram@vim.org>
parents:
20751
diff
changeset
|
4666 == SPTYPE_START) |
154 | 4667 { |
4668 *opt->sync_idx = i; | |
4669 break; | |
4670 } | |
4671 if (i < 0) | |
4672 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
14968
diff
changeset
|
4673 semsg(_("E394: Didn't find region item for %s"), gname); |
154 | 4674 vim_free(gname); |
4675 return NULL; | |
4676 } | |
4677 } | |
4678 | |
4679 vim_free(gname); | |
4680 arg = skipwhite(arg); | |
4681 } | |
4682 #ifdef FEAT_FOLDING | |
4683 else if (flagtab[fidx].flags == HL_FOLD | |
4684 && foldmethodIsSyntax(curwin)) | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
4685 // Need to update folds later. |
154 | 4686 foldUpdateAll(curwin); |
4687 #endif | |
4688 } | |
4689 } | |
7 | 4690 |
4691 return arg; | |
4692 } | |
4693 | |
4694 /* | |
4695 * Adjustments to syntax item when declared in a ":syn include"'d file. | |
4696 * Set the contained flag, and if the item is not already contained, add it | |
4697 * to the specified top-level group, if any. | |
4698 */ | |
4699 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4700 syn_incl_toplevel(int id, int *flagsp) |
7 | 4701 { |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4702 if ((*flagsp & HL_CONTAINED) || curwin->w_s->b_syn_topgrp == 0) |
7 | 4703 return; |
4704 *flagsp |= HL_CONTAINED; | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4705 if (curwin->w_s->b_syn_topgrp >= SYNID_CLUSTER) |
7 | 4706 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
4707 // We have to alloc this, because syn_combine_list() will free it. |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16790
diff
changeset
|
4708 short *grp_list = ALLOC_MULT(short, 2); |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4709 int tlg_id = curwin->w_s->b_syn_topgrp - SYNID_CLUSTER; |
7 | 4710 |
4711 if (grp_list != NULL) | |
4712 { | |
4713 grp_list[0] = id; | |
4714 grp_list[1] = 0; | |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16790
diff
changeset
|
4715 syn_combine_list(&SYN_CLSTR(curwin->w_s)[tlg_id].scl_list, |
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16790
diff
changeset
|
4716 &grp_list, CLUSTER_ADD); |
7 | 4717 } |
4718 } | |
4719 } | |
4720 | |
4721 /* | |
4722 * Handle ":syntax include [@{group-name}] filename" command. | |
4723 */ | |
4724 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4725 syn_cmd_include(exarg_T *eap, int syncing UNUSED) |
7 | 4726 { |
4727 char_u *arg = eap->arg; | |
4728 int sgl_id = 1; | |
4729 char_u *group_name_end; | |
4730 char_u *rest; | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
14968
diff
changeset
|
4731 char *errormsg = NULL; |
7 | 4732 int prev_toplvl_grp; |
4733 int prev_syn_inc_tag; | |
4734 int source = FALSE; | |
4735 | |
4736 eap->nextcmd = find_nextcmd(arg); | |
4737 if (eap->skip) | |
4738 return; | |
4739 | |
4740 if (arg[0] == '@') | |
4741 { | |
4742 ++arg; | |
4743 rest = get_group_name(arg, &group_name_end); | |
4744 if (rest == NULL) | |
4745 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
14968
diff
changeset
|
4746 emsg(_("E397: Filename required")); |
7 | 4747 return; |
4748 } | |
4749 sgl_id = syn_check_cluster(arg, (int)(group_name_end - arg)); | |
2743 | 4750 if (sgl_id == 0) |
4751 return; | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
4752 // separate_nextcmd() and expand_filename() depend on this |
7 | 4753 eap->arg = rest; |
4754 } | |
4755 | |
4756 /* | |
4757 * Everything that's left, up to the next command, should be the | |
4758 * filename to include. | |
4759 */ | |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17227
diff
changeset
|
4760 eap->argt |= (EX_XFILE | EX_NOSPC); |
7 | 4761 separate_nextcmd(eap); |
4762 if (*eap->arg == '<' || *eap->arg == '$' || mch_isFullName(eap->arg)) | |
4763 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
4764 // For an absolute path, "$VIM/..." or "<sfile>.." we ":source" the |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
4765 // file. Need to expand the file name first. In other cases |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
4766 // ":runtime!" is used. |
7 | 4767 source = TRUE; |
4768 if (expand_filename(eap, syn_cmdlinep, &errormsg) == FAIL) | |
4769 { | |
4770 if (errormsg != NULL) | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
14968
diff
changeset
|
4771 emsg(errormsg); |
7 | 4772 return; |
4773 } | |
4774 } | |
4775 | |
4776 /* | |
4777 * Save and restore the existing top-level grouplist id and ":syn | |
4778 * include" tag around the actual inclusion. | |
4779 */ | |
2743 | 4780 if (running_syn_inc_tag >= MAX_SYN_INC_TAG) |
4781 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
14968
diff
changeset
|
4782 emsg(_("E847: Too many syntax includes")); |
2743 | 4783 return; |
4784 } | |
7 | 4785 prev_syn_inc_tag = current_syn_inc_tag; |
4786 current_syn_inc_tag = ++running_syn_inc_tag; | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4787 prev_toplvl_grp = curwin->w_s->b_syn_topgrp; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4788 curwin->w_s->b_syn_topgrp = sgl_id; |
19181
94eda51ba9ba
patch 8.2.0149: maintaining a Vim9 branch separately is more work
Bram Moolenaar <Bram@vim.org>
parents:
18814
diff
changeset
|
4789 if (source ? do_source(eap->arg, FALSE, DOSO_NONE, NULL) == FAIL |
8524
2f57bbe870ea
commit https://github.com/vim/vim/commit/7f8989dd8a627af2185df381195351a913f3777f
Christian Brabandt <cb@256bit.org>
parents:
8514
diff
changeset
|
4790 : source_runtime(eap->arg, DIP_ALL) == FAIL) |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
14968
diff
changeset
|
4791 semsg(_(e_notopen), eap->arg); |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4792 curwin->w_s->b_syn_topgrp = prev_toplvl_grp; |
7 | 4793 current_syn_inc_tag = prev_syn_inc_tag; |
4794 } | |
4795 | |
4796 /* | |
4797 * Handle ":syntax keyword {group-name} [{option}] keyword .." command. | |
4798 */ | |
4799 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4800 syn_cmd_keyword(exarg_T *eap, int syncing UNUSED) |
7 | 4801 { |
4802 char_u *arg = eap->arg; | |
4803 char_u *group_name_end; | |
4804 int syn_id; | |
4805 char_u *rest; | |
2743 | 4806 char_u *keyword_copy = NULL; |
7 | 4807 char_u *p; |
154 | 4808 char_u *kw; |
4809 syn_opt_arg_T syn_opt_arg; | |
4810 int cnt; | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4811 int conceal_char = NUL; |
7 | 4812 |
4813 rest = get_group_name(arg, &group_name_end); | |
4814 | |
4815 if (rest != NULL) | |
4816 { | |
10618
4ee16e5e2e26
patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents:
10534
diff
changeset
|
4817 if (eap->skip) |
4ee16e5e2e26
patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents:
10534
diff
changeset
|
4818 syn_id = -1; |
4ee16e5e2e26
patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents:
10534
diff
changeset
|
4819 else |
4ee16e5e2e26
patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents:
10534
diff
changeset
|
4820 syn_id = syn_check_group(arg, (int)(group_name_end - arg)); |
2743 | 4821 if (syn_id != 0) |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
4822 // allocate a buffer, for removing backslashes in the keyword |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16611
diff
changeset
|
4823 keyword_copy = alloc(STRLEN(rest) + 1); |
7 | 4824 if (keyword_copy != NULL) |
4825 { | |
154 | 4826 syn_opt_arg.flags = 0; |
4827 syn_opt_arg.keyword = TRUE; | |
4828 syn_opt_arg.sync_idx = NULL; | |
4829 syn_opt_arg.has_cont_list = FALSE; | |
4830 syn_opt_arg.cont_in_list = NULL; | |
4831 syn_opt_arg.next_list = NULL; | |
4832 | |
7 | 4833 /* |
4834 * The options given apply to ALL keywords, so all options must be | |
4835 * found before keywords can be created. | |
154 | 4836 * 1: collect the options and copy the keywords to keyword_copy. |
7 | 4837 */ |
154 | 4838 cnt = 0; |
4839 p = keyword_copy; | |
20116
513c62184ed8
patch 8.2.0613: Vim9: no check for space before #comment
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
4840 for ( ; rest != NULL && !ends_excmd2(eap->arg, rest); |
513c62184ed8
patch 8.2.0613: Vim9: no check for space before #comment
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
4841 rest = skipwhite(rest)) |
7 | 4842 { |
10618
4ee16e5e2e26
patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents:
10534
diff
changeset
|
4843 rest = get_syn_options(rest, &syn_opt_arg, &conceal_char, |
4ee16e5e2e26
patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents:
10534
diff
changeset
|
4844 eap->skip); |
20116
513c62184ed8
patch 8.2.0613: Vim9: no check for space before #comment
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
4845 if (rest == NULL || ends_excmd2(eap->arg, rest)) |
154 | 4846 break; |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
4847 // Copy the keyword, removing backslashes, and add a NUL. |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
4848 while (*rest != NUL && !VIM_ISWHITE(*rest)) |
154 | 4849 { |
4850 if (*rest == '\\' && rest[1] != NUL) | |
4851 ++rest; | |
4852 *p++ = *rest++; | |
4853 } | |
4854 *p++ = NUL; | |
4855 ++cnt; | |
4856 } | |
4857 | |
4858 if (!eap->skip) | |
4859 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
4860 // Adjust flags for use of ":syn include". |
154 | 4861 syn_incl_toplevel(syn_id, &syn_opt_arg.flags); |
4862 | |
7 | 4863 /* |
154 | 4864 * 2: Add an entry for each keyword. |
7 | 4865 */ |
154 | 4866 for (kw = keyword_copy; --cnt >= 0; kw += STRLEN(kw) + 1) |
7 | 4867 { |
154 | 4868 for (p = vim_strchr(kw, '['); ; ) |
7 | 4869 { |
154 | 4870 if (p != NULL) |
4871 *p = NUL; | |
4872 add_keyword(kw, syn_id, syn_opt_arg.flags, | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4873 syn_opt_arg.cont_in_list, |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4874 syn_opt_arg.next_list, conceal_char); |
168 | 4875 if (p == NULL) |
4876 break; | |
4877 if (p[1] == NUL) | |
4878 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
14968
diff
changeset
|
4879 semsg(_("E789: Missing ']': %s"), kw); |
7017 | 4880 goto error; |
168 | 4881 } |
4882 if (p[1] == ']') | |
4883 { | |
7017 | 4884 if (p[2] != NUL) |
4885 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
14968
diff
changeset
|
4886 semsg(_("E890: trailing char after ']': %s]%s"), |
7017 | 4887 kw, &p[2]); |
4888 goto error; | |
4889 } | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
4890 kw = p + 1; // skip over the "]" |
168 | 4891 break; |
4892 } | |
154 | 4893 if (has_mbyte) |
7 | 4894 { |
474 | 4895 int l = (*mb_ptr2len)(p + 1); |
154 | 4896 |
4897 mch_memmove(p, p + 1, l); | |
4898 p += l; | |
4899 } | |
4900 else | |
4901 { | |
4902 p[0] = p[1]; | |
4903 ++p; | |
7 | 4904 } |
4905 } | |
4906 } | |
4907 } | |
7017 | 4908 error: |
7 | 4909 vim_free(keyword_copy); |
168 | 4910 vim_free(syn_opt_arg.cont_in_list); |
4911 vim_free(syn_opt_arg.next_list); | |
7 | 4912 } |
4913 } | |
4914 | |
4915 if (rest != NULL) | |
4916 eap->nextcmd = check_nextcmd(rest); | |
4917 else | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
14968
diff
changeset
|
4918 semsg(_(e_invarg2), arg); |
7 | 4919 |
745 | 4920 redraw_curbuf_later(SOME_VALID); |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
4921 syn_stack_free_all(curwin->w_s); // Need to recompute all syntax. |
7 | 4922 } |
4923 | |
4924 /* | |
4925 * Handle ":syntax match {name} [{options}] {pattern} [{options}]". | |
4926 * | |
4927 * Also ":syntax sync match {name} [[grouphere | groupthere] {group-name}] .." | |
4928 */ | |
4929 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4930 syn_cmd_match( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4931 exarg_T *eap, |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
4932 int syncing) // TRUE for ":syntax sync match .. " |
7 | 4933 { |
4934 char_u *arg = eap->arg; | |
4935 char_u *group_name_end; | |
4936 char_u *rest; | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
4937 synpat_T item; // the item found in the line |
7 | 4938 int syn_id; |
4939 int idx; | |
154 | 4940 syn_opt_arg_T syn_opt_arg; |
7 | 4941 int sync_idx = 0; |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4942 int conceal_char = NUL; |
20116
513c62184ed8
patch 8.2.0613: Vim9: no check for space before #comment
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
4943 int orig_called_emsg = called_emsg; |
7 | 4944 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
4945 // Isolate the group name, check for validity |
7 | 4946 rest = get_group_name(arg, &group_name_end); |
4947 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
4948 // Get options before the pattern |
154 | 4949 syn_opt_arg.flags = 0; |
4950 syn_opt_arg.keyword = FALSE; | |
4951 syn_opt_arg.sync_idx = syncing ? &sync_idx : NULL; | |
4952 syn_opt_arg.has_cont_list = TRUE; | |
4953 syn_opt_arg.cont_list = NULL; | |
4954 syn_opt_arg.cont_in_list = NULL; | |
4955 syn_opt_arg.next_list = NULL; | |
10618
4ee16e5e2e26
patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents:
10534
diff
changeset
|
4956 rest = get_syn_options(rest, &syn_opt_arg, &conceal_char, eap->skip); |
7 | 4957 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
4958 // get the pattern. |
7 | 4959 init_syn_patterns(); |
20007
aadd1cae2ff5
patch 8.2.0559: clearing a struct is verbose
Bram Moolenaar <Bram@vim.org>
parents:
19934
diff
changeset
|
4960 CLEAR_FIELD(item); |
7 | 4961 rest = get_syn_pattern(rest, &item); |
154 | 4962 if (vim_regcomp_had_eol() && !(syn_opt_arg.flags & HL_EXCLUDENL)) |
4963 syn_opt_arg.flags |= HL_HAS_EOL; | |
7 | 4964 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
4965 // Get options after the pattern |
10618
4ee16e5e2e26
patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents:
10534
diff
changeset
|
4966 rest = get_syn_options(rest, &syn_opt_arg, &conceal_char, eap->skip); |
7 | 4967 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
4968 if (rest != NULL) // all arguments are valid |
7 | 4969 { |
4970 /* | |
4971 * Check for trailing command and illegal trailing arguments. | |
4972 */ | |
4973 eap->nextcmd = check_nextcmd(rest); | |
20116
513c62184ed8
patch 8.2.0613: Vim9: no check for space before #comment
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
4974 if (!ends_excmd2(eap->cmd, rest) || eap->skip) |
7 | 4975 rest = NULL; |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4976 else if (ga_grow(&curwin->w_s->b_syn_patterns, 1) != FAIL |
7 | 4977 && (syn_id = syn_check_group(arg, |
4978 (int)(group_name_end - arg))) != 0) | |
4979 { | |
154 | 4980 syn_incl_toplevel(syn_id, &syn_opt_arg.flags); |
7 | 4981 /* |
4982 * Store the pattern in the syn_items list | |
4983 */ | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4984 idx = curwin->w_s->b_syn_patterns.ga_len; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4985 SYN_ITEMS(curwin->w_s)[idx] = item; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4986 SYN_ITEMS(curwin->w_s)[idx].sp_syncing = syncing; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4987 SYN_ITEMS(curwin->w_s)[idx].sp_type = SPTYPE_MATCH; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4988 SYN_ITEMS(curwin->w_s)[idx].sp_syn.id = syn_id; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4989 SYN_ITEMS(curwin->w_s)[idx].sp_syn.inc_tag = current_syn_inc_tag; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4990 SYN_ITEMS(curwin->w_s)[idx].sp_flags = syn_opt_arg.flags; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4991 SYN_ITEMS(curwin->w_s)[idx].sp_sync_idx = sync_idx; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4992 SYN_ITEMS(curwin->w_s)[idx].sp_cont_list = syn_opt_arg.cont_list; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4993 SYN_ITEMS(curwin->w_s)[idx].sp_syn.cont_in_list = |
154 | 4994 syn_opt_arg.cont_in_list; |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4995 #ifdef FEAT_CONCEAL |
2425
b5ee68272ae5
Fix: concealed regions didn't get redrawn correctly when moving the cursor
Bram Moolenaar <bram@vim.org>
parents:
2418
diff
changeset
|
4996 SYN_ITEMS(curwin->w_s)[idx].sp_cchar = conceal_char; |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4997 #endif |
154 | 4998 if (syn_opt_arg.cont_in_list != NULL) |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4999 curwin->w_s->b_syn_containedin = TRUE; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
5000 SYN_ITEMS(curwin->w_s)[idx].sp_next_list = syn_opt_arg.next_list; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
5001 ++curwin->w_s->b_syn_patterns.ga_len; |
7 | 5002 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
5003 // remember that we found a match for syncing on |
154 | 5004 if (syn_opt_arg.flags & (HL_SYNC_HERE|HL_SYNC_THERE)) |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
5005 curwin->w_s->b_syn_sync_flags |= SF_MATCH; |
7 | 5006 #ifdef FEAT_FOLDING |
154 | 5007 if (syn_opt_arg.flags & HL_FOLD) |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
5008 ++curwin->w_s->b_syn_folditems; |
7 | 5009 #endif |
5010 | |
745 | 5011 redraw_curbuf_later(SOME_VALID); |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
5012 syn_stack_free_all(curwin->w_s); // Need to recompute all syntax. |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
5013 return; // don't free the progs and patterns now |
7 | 5014 } |
5015 } | |
5016 | |
5017 /* | |
5018 * Something failed, free the allocated memory. | |
5019 */ | |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4803
diff
changeset
|
5020 vim_regfree(item.sp_prog); |
7 | 5021 vim_free(item.sp_pattern); |
154 | 5022 vim_free(syn_opt_arg.cont_list); |
5023 vim_free(syn_opt_arg.cont_in_list); | |
5024 vim_free(syn_opt_arg.next_list); | |
7 | 5025 |
20116
513c62184ed8
patch 8.2.0613: Vim9: no check for space before #comment
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
5026 if (rest == NULL && called_emsg == orig_called_emsg) |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
14968
diff
changeset
|
5027 semsg(_(e_invarg2), arg); |
7 | 5028 } |
5029 | |
5030 /* | |
5031 * Handle ":syntax region {group-name} [matchgroup={group-name}] | |
5032 * start {start} .. [skip {skip}] end {end} .. [{options}]". | |
5033 */ | |
5034 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5035 syn_cmd_region( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5036 exarg_T *eap, |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
5037 int syncing) // TRUE for ":syntax sync region .." |
7 | 5038 { |
5039 char_u *arg = eap->arg; | |
5040 char_u *group_name_end; | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
5041 char_u *rest; // next arg, NULL on error |
7 | 5042 char_u *key_end; |
5043 char_u *key = NULL; | |
5044 char_u *p; | |
5045 int item; | |
5046 #define ITEM_START 0 | |
5047 #define ITEM_SKIP 1 | |
5048 #define ITEM_END 2 | |
5049 #define ITEM_MATCHGROUP 3 | |
5050 struct pat_ptr | |
5051 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
5052 synpat_T *pp_synp; // pointer to syn_pattern |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
5053 int pp_matchgroup_id; // matchgroup ID |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
5054 struct pat_ptr *pp_next; // pointer to next pat_ptr |
7 | 5055 } *(pat_ptrs[3]); |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
5056 // patterns found in the line |
7 | 5057 struct pat_ptr *ppp; |
5058 struct pat_ptr *ppp_next; | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
5059 int pat_count = 0; // nr of syn_patterns found |
7 | 5060 int syn_id; |
5061 int matchgroup_id = 0; | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
5062 int not_enough = FALSE; // not enough arguments |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
5063 int illegal = FALSE; // illegal arguments |
7 | 5064 int success = FALSE; |
5065 int idx; | |
154 | 5066 syn_opt_arg_T syn_opt_arg; |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
5067 int conceal_char = NUL; |
7 | 5068 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
5069 // Isolate the group name, check for validity |
7 | 5070 rest = get_group_name(arg, &group_name_end); |
5071 | |
5072 pat_ptrs[0] = NULL; | |
5073 pat_ptrs[1] = NULL; | |
5074 pat_ptrs[2] = NULL; | |
5075 | |
5076 init_syn_patterns(); | |
5077 | |
154 | 5078 syn_opt_arg.flags = 0; |
5079 syn_opt_arg.keyword = FALSE; | |
5080 syn_opt_arg.sync_idx = NULL; | |
5081 syn_opt_arg.has_cont_list = TRUE; | |
5082 syn_opt_arg.cont_list = NULL; | |
5083 syn_opt_arg.cont_in_list = NULL; | |
5084 syn_opt_arg.next_list = NULL; | |
5085 | |
7 | 5086 /* |
5087 * get the options, patterns and matchgroup. | |
5088 */ | |
20116
513c62184ed8
patch 8.2.0613: Vim9: no check for space before #comment
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
5089 while (rest != NULL && !ends_excmd2(eap->cmd, rest)) |
7 | 5090 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
5091 // Check for option arguments |
10618
4ee16e5e2e26
patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents:
10534
diff
changeset
|
5092 rest = get_syn_options(rest, &syn_opt_arg, &conceal_char, eap->skip); |
20116
513c62184ed8
patch 8.2.0613: Vim9: no check for space before #comment
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
5093 if (rest == NULL || ends_excmd2(eap->cmd, rest)) |
7 | 5094 break; |
5095 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
5096 // must be a pattern or matchgroup then |
7 | 5097 key_end = rest; |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
5098 while (*key_end && !VIM_ISWHITE(*key_end) && *key_end != '=') |
7 | 5099 ++key_end; |
5100 vim_free(key); | |
20751
d9a2e5dcfd9f
patch 8.2.0928: many type casts are used for vim_strnsave()
Bram Moolenaar <Bram@vim.org>
parents:
20623
diff
changeset
|
5101 key = vim_strnsave_up(rest, key_end - rest); |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
5102 if (key == NULL) // out of memory |
7 | 5103 { |
5104 rest = NULL; | |
5105 break; | |
5106 } | |
5107 if (STRCMP(key, "MATCHGROUP") == 0) | |
5108 item = ITEM_MATCHGROUP; | |
5109 else if (STRCMP(key, "START") == 0) | |
5110 item = ITEM_START; | |
5111 else if (STRCMP(key, "END") == 0) | |
5112 item = ITEM_END; | |
5113 else if (STRCMP(key, "SKIP") == 0) | |
5114 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
5115 if (pat_ptrs[ITEM_SKIP] != NULL) // one skip pattern allowed |
7 | 5116 { |
5117 illegal = TRUE; | |
5118 break; | |
5119 } | |
5120 item = ITEM_SKIP; | |
5121 } | |
5122 else | |
5123 break; | |
5124 rest = skipwhite(key_end); | |
5125 if (*rest != '=') | |
5126 { | |
5127 rest = NULL; | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
14968
diff
changeset
|
5128 semsg(_("E398: Missing '=': %s"), arg); |
7 | 5129 break; |
5130 } | |
5131 rest = skipwhite(rest + 1); | |
5132 if (*rest == NUL) | |
5133 { | |
5134 not_enough = TRUE; | |
5135 break; | |
5136 } | |
5137 | |
5138 if (item == ITEM_MATCHGROUP) | |
5139 { | |
5140 p = skiptowhite(rest); | |
5141 if ((p - rest == 4 && STRNCMP(rest, "NONE", 4) == 0) || eap->skip) | |
5142 matchgroup_id = 0; | |
5143 else | |
5144 { | |
5145 matchgroup_id = syn_check_group(rest, (int)(p - rest)); | |
5146 if (matchgroup_id == 0) | |
5147 { | |
5148 illegal = TRUE; | |
5149 break; | |
5150 } | |
5151 } | |
5152 rest = skipwhite(p); | |
5153 } | |
5154 else | |
5155 { | |
5156 /* | |
5157 * Allocate room for a syn_pattern, and link it in the list of | |
5158 * syn_patterns for this item, at the start (because the list is | |
5159 * used from end to start). | |
5160 */ | |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16790
diff
changeset
|
5161 ppp = ALLOC_ONE(struct pat_ptr); |
7 | 5162 if (ppp == NULL) |
5163 { | |
5164 rest = NULL; | |
5165 break; | |
5166 } | |
5167 ppp->pp_next = pat_ptrs[item]; | |
5168 pat_ptrs[item] = ppp; | |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16790
diff
changeset
|
5169 ppp->pp_synp = ALLOC_CLEAR_ONE(synpat_T); |
7 | 5170 if (ppp->pp_synp == NULL) |
5171 { | |
5172 rest = NULL; | |
5173 break; | |
5174 } | |
5175 | |
5176 /* | |
5177 * Get the syntax pattern and the following offset(s). | |
5178 */ | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
5179 // Enable the appropriate \z specials. |
7 | 5180 if (item == ITEM_START) |
5181 reg_do_extmatch = REX_SET; | |
5182 else if (item == ITEM_SKIP || item == ITEM_END) | |
5183 reg_do_extmatch = REX_USE; | |
5184 rest = get_syn_pattern(rest, ppp->pp_synp); | |
5185 reg_do_extmatch = 0; | |
5186 if (item == ITEM_END && vim_regcomp_had_eol() | |
154 | 5187 && !(syn_opt_arg.flags & HL_EXCLUDENL)) |
7 | 5188 ppp->pp_synp->sp_flags |= HL_HAS_EOL; |
5189 ppp->pp_matchgroup_id = matchgroup_id; | |
5190 ++pat_count; | |
5191 } | |
5192 } | |
5193 vim_free(key); | |
5194 if (illegal || not_enough) | |
5195 rest = NULL; | |
5196 | |
5197 /* | |
5198 * Must have a "start" and "end" pattern. | |
5199 */ | |
5200 if (rest != NULL && (pat_ptrs[ITEM_START] == NULL || | |
5201 pat_ptrs[ITEM_END] == NULL)) | |
5202 { | |
5203 not_enough = TRUE; | |
5204 rest = NULL; | |
5205 } | |
5206 | |
5207 if (rest != NULL) | |
5208 { | |
5209 /* | |
5210 * Check for trailing garbage or command. | |
5211 * If OK, add the item. | |
5212 */ | |
5213 eap->nextcmd = check_nextcmd(rest); | |
5214 if (!ends_excmd(*rest) || eap->skip) | |
5215 rest = NULL; | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
5216 else if (ga_grow(&(curwin->w_s->b_syn_patterns), pat_count) != FAIL |
7 | 5217 && (syn_id = syn_check_group(arg, |
5218 (int)(group_name_end - arg))) != 0) | |
5219 { | |
154 | 5220 syn_incl_toplevel(syn_id, &syn_opt_arg.flags); |
7 | 5221 /* |
5222 * Store the start/skip/end in the syn_items list | |
5223 */ | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
5224 idx = curwin->w_s->b_syn_patterns.ga_len; |
7 | 5225 for (item = ITEM_START; item <= ITEM_END; ++item) |
5226 { | |
5227 for (ppp = pat_ptrs[item]; ppp != NULL; ppp = ppp->pp_next) | |
5228 { | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
5229 SYN_ITEMS(curwin->w_s)[idx] = *(ppp->pp_synp); |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
5230 SYN_ITEMS(curwin->w_s)[idx].sp_syncing = syncing; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
5231 SYN_ITEMS(curwin->w_s)[idx].sp_type = |
7 | 5232 (item == ITEM_START) ? SPTYPE_START : |
5233 (item == ITEM_SKIP) ? SPTYPE_SKIP : SPTYPE_END; | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
5234 SYN_ITEMS(curwin->w_s)[idx].sp_flags |= syn_opt_arg.flags; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
5235 SYN_ITEMS(curwin->w_s)[idx].sp_syn.id = syn_id; |
2743 | 5236 SYN_ITEMS(curwin->w_s)[idx].sp_syn.inc_tag = |
5237 current_syn_inc_tag; | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
5238 SYN_ITEMS(curwin->w_s)[idx].sp_syn_match_id = |
7 | 5239 ppp->pp_matchgroup_id; |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
5240 #ifdef FEAT_CONCEAL |
2425
b5ee68272ae5
Fix: concealed regions didn't get redrawn correctly when moving the cursor
Bram Moolenaar <bram@vim.org>
parents:
2418
diff
changeset
|
5241 SYN_ITEMS(curwin->w_s)[idx].sp_cchar = conceal_char; |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
5242 #endif |
7 | 5243 if (item == ITEM_START) |
5244 { | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
5245 SYN_ITEMS(curwin->w_s)[idx].sp_cont_list = |
154 | 5246 syn_opt_arg.cont_list; |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
5247 SYN_ITEMS(curwin->w_s)[idx].sp_syn.cont_in_list = |
154 | 5248 syn_opt_arg.cont_in_list; |
5249 if (syn_opt_arg.cont_in_list != NULL) | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
5250 curwin->w_s->b_syn_containedin = TRUE; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
5251 SYN_ITEMS(curwin->w_s)[idx].sp_next_list = |
154 | 5252 syn_opt_arg.next_list; |
7 | 5253 } |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
5254 ++curwin->w_s->b_syn_patterns.ga_len; |
7 | 5255 ++idx; |
5256 #ifdef FEAT_FOLDING | |
154 | 5257 if (syn_opt_arg.flags & HL_FOLD) |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
5258 ++curwin->w_s->b_syn_folditems; |
7 | 5259 #endif |
5260 } | |
5261 } | |
5262 | |
745 | 5263 redraw_curbuf_later(SOME_VALID); |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
5264 syn_stack_free_all(curwin->w_s); // Need to recompute all syntax. |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
5265 success = TRUE; // don't free the progs and patterns now |
7 | 5266 } |
5267 } | |
5268 | |
5269 /* | |
5270 * Free the allocated memory. | |
5271 */ | |
5272 for (item = ITEM_START; item <= ITEM_END; ++item) | |
5273 for (ppp = pat_ptrs[item]; ppp != NULL; ppp = ppp_next) | |
5274 { | |
17907
4cf69f8d1ec6
patch 8.1.1950: using NULL pointer after an out-of-memory
Bram Moolenaar <Bram@vim.org>
parents:
17781
diff
changeset
|
5275 if (!success && ppp->pp_synp != NULL) |
7 | 5276 { |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4803
diff
changeset
|
5277 vim_regfree(ppp->pp_synp->sp_prog); |
7 | 5278 vim_free(ppp->pp_synp->sp_pattern); |
5279 } | |
5280 vim_free(ppp->pp_synp); | |
5281 ppp_next = ppp->pp_next; | |
5282 vim_free(ppp); | |
5283 } | |
5284 | |
5285 if (!success) | |
5286 { | |
154 | 5287 vim_free(syn_opt_arg.cont_list); |
5288 vim_free(syn_opt_arg.cont_in_list); | |
5289 vim_free(syn_opt_arg.next_list); | |
7 | 5290 if (not_enough) |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
14968
diff
changeset
|
5291 semsg(_("E399: Not enough arguments: syntax region %s"), arg); |
7 | 5292 else if (illegal || rest == NULL) |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
14968
diff
changeset
|
5293 semsg(_(e_invarg2), arg); |
7 | 5294 } |
5295 } | |
5296 | |
5297 /* | |
5298 * A simple syntax group ID comparison function suitable for use in qsort() | |
5299 */ | |
5300 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5301 syn_compare_stub(const void *v1, const void *v2) |
7 | 5302 { |
5303 const short *s1 = v1; | |
5304 const short *s2 = v2; | |
5305 | |
5306 return (*s1 > *s2 ? 1 : *s1 < *s2 ? -1 : 0); | |
5307 } | |
5308 | |
5309 /* | |
5310 * Combines lists of syntax clusters. | |
5311 * *clstr1 and *clstr2 must both be allocated memory; they will be consumed. | |
5312 */ | |
5313 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5314 syn_combine_list(short **clstr1, short **clstr2, int list_op) |
7 | 5315 { |
5316 int count1 = 0; | |
5317 int count2 = 0; | |
5318 short *g1; | |
5319 short *g2; | |
5320 short *clstr = NULL; | |
5321 int count; | |
5322 int round; | |
5323 | |
5324 /* | |
5325 * Handle degenerate cases. | |
5326 */ | |
5327 if (*clstr2 == NULL) | |
5328 return; | |
5329 if (*clstr1 == NULL || list_op == CLUSTER_REPLACE) | |
5330 { | |
5331 if (list_op == CLUSTER_REPLACE) | |
5332 vim_free(*clstr1); | |
5333 if (list_op == CLUSTER_REPLACE || list_op == CLUSTER_ADD) | |
5334 *clstr1 = *clstr2; | |
5335 else | |
5336 vim_free(*clstr2); | |
5337 return; | |
5338 } | |
5339 | |
5340 for (g1 = *clstr1; *g1; g1++) | |
5341 ++count1; | |
5342 for (g2 = *clstr2; *g2; g2++) | |
5343 ++count2; | |
5344 | |
5345 /* | |
5346 * For speed purposes, sort both lists. | |
5347 */ | |
5348 qsort(*clstr1, (size_t)count1, sizeof(short), syn_compare_stub); | |
5349 qsort(*clstr2, (size_t)count2, sizeof(short), syn_compare_stub); | |
5350 | |
5351 /* | |
5352 * We proceed in two passes; in round 1, we count the elements to place | |
5353 * in the new list, and in round 2, we allocate and populate the new | |
5354 * list. For speed, we use a mergesort-like method, adding the smaller | |
5355 * of the current elements in each list to the new list. | |
5356 */ | |
5357 for (round = 1; round <= 2; round++) | |
5358 { | |
5359 g1 = *clstr1; | |
5360 g2 = *clstr2; | |
5361 count = 0; | |
5362 | |
5363 /* | |
5364 * First, loop through the lists until one of them is empty. | |
5365 */ | |
5366 while (*g1 && *g2) | |
5367 { | |
5368 /* | |
5369 * We always want to add from the first list. | |
5370 */ | |
5371 if (*g1 < *g2) | |
5372 { | |
5373 if (round == 2) | |
5374 clstr[count] = *g1; | |
5375 count++; | |
5376 g1++; | |
5377 continue; | |
5378 } | |
5379 /* | |
5380 * We only want to add from the second list if we're adding the | |
5381 * lists. | |
5382 */ | |
5383 if (list_op == CLUSTER_ADD) | |
5384 { | |
5385 if (round == 2) | |
5386 clstr[count] = *g2; | |
5387 count++; | |
5388 } | |
5389 if (*g1 == *g2) | |
5390 g1++; | |
5391 g2++; | |
5392 } | |
5393 | |
5394 /* | |
5395 * Now add the leftovers from whichever list didn't get finished | |
5396 * first. As before, we only want to add from the second list if | |
5397 * we're adding the lists. | |
5398 */ | |
5399 for (; *g1; g1++, count++) | |
5400 if (round == 2) | |
5401 clstr[count] = *g1; | |
5402 if (list_op == CLUSTER_ADD) | |
5403 for (; *g2; g2++, count++) | |
5404 if (round == 2) | |
5405 clstr[count] = *g2; | |
5406 | |
5407 if (round == 1) | |
5408 { | |
5409 /* | |
5410 * If the group ended up empty, we don't need to allocate any | |
5411 * space for it. | |
5412 */ | |
5413 if (count == 0) | |
5414 { | |
5415 clstr = NULL; | |
5416 break; | |
5417 } | |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16790
diff
changeset
|
5418 clstr = ALLOC_MULT(short, count + 1); |
7 | 5419 if (clstr == NULL) |
5420 break; | |
5421 clstr[count] = 0; | |
5422 } | |
5423 } | |
5424 | |
5425 /* | |
5426 * Finally, put the new list in place. | |
5427 */ | |
5428 vim_free(*clstr1); | |
5429 vim_free(*clstr2); | |
5430 *clstr1 = clstr; | |
5431 } | |
5432 | |
5433 /* | |
11189
e74af2aca96e
patch 8.0.0481: unnecessary if statement
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
5434 * Lookup a syntax cluster name and return its ID. |
7 | 5435 * If it is not found, 0 is returned. |
5436 */ | |
5437 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5438 syn_scl_name2id(char_u *name) |
7 | 5439 { |
5440 int i; | |
5441 char_u *name_u; | |
5442 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
5443 // Avoid using stricmp() too much, it's slow on some systems |
7 | 5444 name_u = vim_strsave_up(name); |
5445 if (name_u == NULL) | |
5446 return 0; | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
5447 for (i = curwin->w_s->b_syn_clusters.ga_len; --i >= 0; ) |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
5448 if (SYN_CLSTR(curwin->w_s)[i].scl_name_u != NULL |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
5449 && STRCMP(name_u, SYN_CLSTR(curwin->w_s)[i].scl_name_u) == 0) |
7 | 5450 break; |
5451 vim_free(name_u); | |
5452 return (i < 0 ? 0 : i + SYNID_CLUSTER); | |
5453 } | |
5454 | |
5455 /* | |
5456 * Like syn_scl_name2id(), but take a pointer + length argument. | |
5457 */ | |
5458 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5459 syn_scl_namen2id(char_u *linep, int len) |
7 | 5460 { |
5461 char_u *name; | |
5462 int id = 0; | |
5463 | |
5464 name = vim_strnsave(linep, len); | |
5465 if (name != NULL) | |
5466 { | |
5467 id = syn_scl_name2id(name); | |
5468 vim_free(name); | |
5469 } | |
5470 return id; | |
5471 } | |
5472 | |
5473 /* | |
11189
e74af2aca96e
patch 8.0.0481: unnecessary if statement
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
5474 * Find syntax cluster name in the table and return its ID. |
7 | 5475 * The argument is a pointer to the name and the length of the name. |
5476 * If it doesn't exist yet, a new entry is created. | |
5477 * Return 0 for failure. | |
5478 */ | |
5479 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5480 syn_check_cluster(char_u *pp, int len) |
7 | 5481 { |
5482 int id; | |
5483 char_u *name; | |
5484 | |
5485 name = vim_strnsave(pp, len); | |
5486 if (name == NULL) | |
5487 return 0; | |
5488 | |
5489 id = syn_scl_name2id(name); | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
5490 if (id == 0) // doesn't exist yet |
7 | 5491 id = syn_add_cluster(name); |
5492 else | |
5493 vim_free(name); | |
5494 return id; | |
5495 } | |
5496 | |
5497 /* | |
11189
e74af2aca96e
patch 8.0.0481: unnecessary if statement
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
5498 * Add new syntax cluster and return its ID. |
7 | 5499 * "name" must be an allocated string, it will be consumed. |
5500 * Return 0 for failure. | |
5501 */ | |
5502 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5503 syn_add_cluster(char_u *name) |
221 | 5504 { |
5505 int len; | |
7 | 5506 |
5507 /* | |
5508 * First call for this growarray: init growing array. | |
5509 */ | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
5510 if (curwin->w_s->b_syn_clusters.ga_data == NULL) |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
5511 { |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
5512 curwin->w_s->b_syn_clusters.ga_itemsize = sizeof(syn_cluster_T); |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
5513 curwin->w_s->b_syn_clusters.ga_growsize = 10; |
7 | 5514 } |
5515 | |
2743 | 5516 len = curwin->w_s->b_syn_clusters.ga_len; |
5517 if (len >= MAX_CLUSTER_ID) | |
5518 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
14968
diff
changeset
|
5519 emsg(_("E848: Too many syntax clusters")); |
2743 | 5520 vim_free(name); |
5521 return 0; | |
5522 } | |
5523 | |
7 | 5524 /* |
5525 * Make room for at least one other cluster entry. | |
5526 */ | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
5527 if (ga_grow(&curwin->w_s->b_syn_clusters, 1) == FAIL) |
7 | 5528 { |
5529 vim_free(name); | |
5530 return 0; | |
5531 } | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
5532 |
20007
aadd1cae2ff5
patch 8.2.0559: clearing a struct is verbose
Bram Moolenaar <Bram@vim.org>
parents:
19934
diff
changeset
|
5533 CLEAR_POINTER(&(SYN_CLSTR(curwin->w_s)[len])); |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
5534 SYN_CLSTR(curwin->w_s)[len].scl_name = name; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
5535 SYN_CLSTR(curwin->w_s)[len].scl_name_u = vim_strsave_up(name); |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
5536 SYN_CLSTR(curwin->w_s)[len].scl_list = NULL; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
5537 ++curwin->w_s->b_syn_clusters.ga_len; |
7 | 5538 |
221 | 5539 if (STRICMP(name, "Spell") == 0) |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
5540 curwin->w_s->b_spell_cluster_id = len + SYNID_CLUSTER; |
227 | 5541 if (STRICMP(name, "NoSpell") == 0) |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
5542 curwin->w_s->b_nospell_cluster_id = len + SYNID_CLUSTER; |
221 | 5543 |
7 | 5544 return len + SYNID_CLUSTER; |
5545 } | |
5546 | |
5547 /* | |
5548 * Handle ":syntax cluster {cluster-name} [contains={groupname},..] | |
5549 * [add={groupname},..] [remove={groupname},..]". | |
5550 */ | |
5551 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5552 syn_cmd_cluster(exarg_T *eap, int syncing UNUSED) |
7 | 5553 { |
5554 char_u *arg = eap->arg; | |
5555 char_u *group_name_end; | |
5556 char_u *rest; | |
5557 int scl_id; | |
5558 short *clstr_list; | |
5559 int got_clstr = FALSE; | |
5560 int opt_len; | |
5561 int list_op; | |
5562 | |
5563 eap->nextcmd = find_nextcmd(arg); | |
5564 if (eap->skip) | |
5565 return; | |
5566 | |
5567 rest = get_group_name(arg, &group_name_end); | |
5568 | |
5569 if (rest != NULL) | |
5570 { | |
2743 | 5571 scl_id = syn_check_cluster(arg, (int)(group_name_end - arg)); |
5572 if (scl_id == 0) | |
5573 return; | |
5574 scl_id -= SYNID_CLUSTER; | |
7 | 5575 |
5576 for (;;) | |
5577 { | |
5578 if (STRNICMP(rest, "add", 3) == 0 | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
5579 && (VIM_ISWHITE(rest[3]) || rest[3] == '=')) |
7 | 5580 { |
5581 opt_len = 3; | |
5582 list_op = CLUSTER_ADD; | |
5583 } | |
5584 else if (STRNICMP(rest, "remove", 6) == 0 | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
5585 && (VIM_ISWHITE(rest[6]) || rest[6] == '=')) |
7 | 5586 { |
5587 opt_len = 6; | |
5588 list_op = CLUSTER_SUBTRACT; | |
5589 } | |
5590 else if (STRNICMP(rest, "contains", 8) == 0 | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
5591 && (VIM_ISWHITE(rest[8]) || rest[8] == '=')) |
7 | 5592 { |
5593 opt_len = 8; | |
5594 list_op = CLUSTER_REPLACE; | |
5595 } | |
5596 else | |
5597 break; | |
5598 | |
5599 clstr_list = NULL; | |
10618
4ee16e5e2e26
patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents:
10534
diff
changeset
|
5600 if (get_id_list(&rest, opt_len, &clstr_list, eap->skip) == FAIL) |
7 | 5601 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
14968
diff
changeset
|
5602 semsg(_(e_invarg2), rest); |
7 | 5603 break; |
5604 } | |
10618
4ee16e5e2e26
patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents:
10534
diff
changeset
|
5605 if (scl_id >= 0) |
4ee16e5e2e26
patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents:
10534
diff
changeset
|
5606 syn_combine_list(&SYN_CLSTR(curwin->w_s)[scl_id].scl_list, |
7 | 5607 &clstr_list, list_op); |
10648
4f3decf25b7d
patch 8.0.0214: leaking memory when syntax cluster id is unknown
Christian Brabandt <cb@256bit.org>
parents:
10629
diff
changeset
|
5608 else |
4f3decf25b7d
patch 8.0.0214: leaking memory when syntax cluster id is unknown
Christian Brabandt <cb@256bit.org>
parents:
10629
diff
changeset
|
5609 vim_free(clstr_list); |
7 | 5610 got_clstr = TRUE; |
5611 } | |
5612 | |
5613 if (got_clstr) | |
5614 { | |
745 | 5615 redraw_curbuf_later(SOME_VALID); |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
5616 syn_stack_free_all(curwin->w_s); // Need to recompute all. |
7 | 5617 } |
5618 } | |
5619 | |
5620 if (!got_clstr) | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
14968
diff
changeset
|
5621 emsg(_("E400: No cluster specified")); |
20116
513c62184ed8
patch 8.2.0613: Vim9: no check for space before #comment
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
5622 if (rest == NULL || !ends_excmd2(eap->cmd, rest)) |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
14968
diff
changeset
|
5623 semsg(_(e_invarg2), arg); |
7 | 5624 } |
5625 | |
5626 /* | |
5627 * On first call for current buffer: Init growing array. | |
5628 */ | |
5629 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5630 init_syn_patterns(void) |
7 | 5631 { |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
5632 curwin->w_s->b_syn_patterns.ga_itemsize = sizeof(synpat_T); |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
5633 curwin->w_s->b_syn_patterns.ga_growsize = 10; |
7 | 5634 } |
5635 | |
5636 /* | |
5637 * Get one pattern for a ":syntax match" or ":syntax region" command. | |
5638 * Stores the pattern and program in a synpat_T. | |
5639 * Returns a pointer to the next argument, or NULL in case of an error. | |
5640 */ | |
5641 static char_u * | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5642 get_syn_pattern(char_u *arg, synpat_T *ci) |
7 | 5643 { |
5644 char_u *end; | |
5645 int *p; | |
5646 int idx; | |
5647 char_u *cpo_save; | |
5648 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
5649 // need at least three chars |
6993 | 5650 if (arg == NULL || arg[0] == NUL || arg[1] == NUL || arg[2] == NUL) |
7 | 5651 return NULL; |
5652 | |
19892
5feb426d2ea1
patch 8.2.0502: Vim9: some code is not tested
Bram Moolenaar <Bram@vim.org>
parents:
19181
diff
changeset
|
5653 end = skip_regexp(arg + 1, *arg, TRUE); |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
5654 if (*end != *arg) // end delimiter not found |
7 | 5655 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
14968
diff
changeset
|
5656 semsg(_("E401: Pattern delimiter not found: %s"), arg); |
7 | 5657 return NULL; |
5658 } | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
5659 // store the pattern and compiled regexp program |
20830
9064044fd4f6
patch 8.2.0967: unnecessary type casts for vim_strnsave()
Bram Moolenaar <Bram@vim.org>
parents:
20751
diff
changeset
|
5660 if ((ci->sp_pattern = vim_strnsave(arg + 1, end - arg - 1)) == NULL) |
7 | 5661 return NULL; |
5662 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
5663 // Make 'cpoptions' empty, to avoid the 'l' flag |
7 | 5664 cpo_save = p_cpo; |
5665 p_cpo = (char_u *)""; | |
5666 ci->sp_prog = vim_regcomp(ci->sp_pattern, RE_MAGIC); | |
5667 p_cpo = cpo_save; | |
5668 | |
5669 if (ci->sp_prog == NULL) | |
5670 return NULL; | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
5671 ci->sp_ic = curwin->w_s->b_syn_ic; |
4766
ec24ff78a79c
updated for version 7.3.1130
Bram Moolenaar <bram@vim.org>
parents:
4764
diff
changeset
|
5672 #ifdef FEAT_PROFILE |
4764
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
5673 syn_clear_time(&ci->sp_time); |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
5674 #endif |
7 | 5675 |
5676 /* | |
5677 * Check for a match, highlight or region offset. | |
5678 */ | |
5679 ++end; | |
5680 do | |
5681 { | |
5682 for (idx = SPO_COUNT; --idx >= 0; ) | |
5683 if (STRNCMP(end, spo_name_tab[idx], 3) == 0) | |
5684 break; | |
5685 if (idx >= 0) | |
5686 { | |
5687 p = &(ci->sp_offsets[idx]); | |
5688 if (idx != SPO_LC_OFF) | |
5689 switch (end[3]) | |
5690 { | |
5691 case 's': break; | |
5692 case 'b': break; | |
5693 case 'e': idx += SPO_COUNT; break; | |
5694 default: idx = -1; break; | |
5695 } | |
5696 if (idx >= 0) | |
5697 { | |
5698 ci->sp_off_flags |= (1 << idx); | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
5699 if (idx == SPO_LC_OFF) // lc=99 |
7 | 5700 { |
5701 end += 3; | |
5702 *p = getdigits(&end); | |
5703 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
5704 // "lc=" offset automatically sets "ms=" offset |
7 | 5705 if (!(ci->sp_off_flags & (1 << SPO_MS_OFF))) |
5706 { | |
5707 ci->sp_off_flags |= (1 << SPO_MS_OFF); | |
5708 ci->sp_offsets[SPO_MS_OFF] = *p; | |
5709 } | |
5710 } | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
5711 else // yy=x+99 |
7 | 5712 { |
5713 end += 4; | |
5714 if (*end == '+') | |
5715 { | |
5716 ++end; | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
5717 *p = getdigits(&end); // positive offset |
7 | 5718 } |
5719 else if (*end == '-') | |
5720 { | |
5721 ++end; | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
5722 *p = -getdigits(&end); // negative offset |
7 | 5723 } |
5724 } | |
5725 if (*end != ',') | |
5726 break; | |
5727 ++end; | |
5728 } | |
5729 } | |
5730 } while (idx >= 0); | |
5731 | |
20116
513c62184ed8
patch 8.2.0613: Vim9: no check for space before #comment
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
5732 if (!ends_excmd2(arg, end) && !VIM_ISWHITE(*end)) |
7 | 5733 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
14968
diff
changeset
|
5734 semsg(_("E402: Garbage after pattern: %s"), arg); |
7 | 5735 return NULL; |
5736 } | |
5737 return skipwhite(end); | |
5738 } | |
5739 | |
5740 /* | |
5741 * Handle ":syntax sync .." command. | |
5742 */ | |
5743 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5744 syn_cmd_sync(exarg_T *eap, int syncing UNUSED) |
7 | 5745 { |
5746 char_u *arg_start = eap->arg; | |
5747 char_u *arg_end; | |
5748 char_u *key = NULL; | |
5749 char_u *next_arg; | |
5750 int illegal = FALSE; | |
5751 int finished = FALSE; | |
5752 long n; | |
5753 char_u *cpo_save; | |
5754 | |
20116
513c62184ed8
patch 8.2.0613: Vim9: no check for space before #comment
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
5755 if (ends_excmd2(eap->cmd, arg_start)) |
7 | 5756 { |
5757 syn_cmd_list(eap, TRUE); | |
5758 return; | |
5759 } | |
5760 | |
20116
513c62184ed8
patch 8.2.0613: Vim9: no check for space before #comment
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
5761 while (!ends_excmd2(eap->cmd, arg_start)) |
7 | 5762 { |
5763 arg_end = skiptowhite(arg_start); | |
5764 next_arg = skipwhite(arg_end); | |
5765 vim_free(key); | |
20751
d9a2e5dcfd9f
patch 8.2.0928: many type casts are used for vim_strnsave()
Bram Moolenaar <Bram@vim.org>
parents:
20623
diff
changeset
|
5766 key = vim_strnsave_up(arg_start, arg_end - arg_start); |
21240
e35955a787a8
patch 8.2.1171: possible crash when out of memory
Bram Moolenaar <Bram@vim.org>
parents:
20830
diff
changeset
|
5767 if (key == NULL) |
e35955a787a8
patch 8.2.1171: possible crash when out of memory
Bram Moolenaar <Bram@vim.org>
parents:
20830
diff
changeset
|
5768 break; |
7 | 5769 if (STRCMP(key, "CCOMMENT") == 0) |
5770 { | |
5771 if (!eap->skip) | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
5772 curwin->w_s->b_syn_sync_flags |= SF_CCOMMENT; |
20116
513c62184ed8
patch 8.2.0613: Vim9: no check for space before #comment
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
5773 if (!ends_excmd2(eap->cmd, next_arg)) |
7 | 5774 { |
5775 arg_end = skiptowhite(next_arg); | |
5776 if (!eap->skip) | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
5777 curwin->w_s->b_syn_sync_id = syn_check_group(next_arg, |
7 | 5778 (int)(arg_end - next_arg)); |
5779 next_arg = skipwhite(arg_end); | |
5780 } | |
5781 else if (!eap->skip) | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
5782 curwin->w_s->b_syn_sync_id = syn_name2id((char_u *)"Comment"); |
7 | 5783 } |
5784 else if ( STRNCMP(key, "LINES", 5) == 0 | |
5785 || STRNCMP(key, "MINLINES", 8) == 0 | |
5786 || STRNCMP(key, "MAXLINES", 8) == 0 | |
5787 || STRNCMP(key, "LINEBREAKS", 10) == 0) | |
5788 { | |
5789 if (key[4] == 'S') | |
5790 arg_end = key + 6; | |
5791 else if (key[0] == 'L') | |
5792 arg_end = key + 11; | |
5793 else | |
5794 arg_end = key + 9; | |
5795 if (arg_end[-1] != '=' || !VIM_ISDIGIT(*arg_end)) | |
5796 { | |
5797 illegal = TRUE; | |
5798 break; | |
5799 } | |
5800 n = getdigits(&arg_end); | |
5801 if (!eap->skip) | |
5802 { | |
5803 if (key[4] == 'B') | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
5804 curwin->w_s->b_syn_sync_linebreaks = n; |
7 | 5805 else if (key[1] == 'A') |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
5806 curwin->w_s->b_syn_sync_maxlines = n; |
7 | 5807 else |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
5808 curwin->w_s->b_syn_sync_minlines = n; |
7 | 5809 } |
5810 } | |
5811 else if (STRCMP(key, "FROMSTART") == 0) | |
5812 { | |
5813 if (!eap->skip) | |
5814 { | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
5815 curwin->w_s->b_syn_sync_minlines = MAXLNUM; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
5816 curwin->w_s->b_syn_sync_maxlines = 0; |
7 | 5817 } |
5818 } | |
5819 else if (STRCMP(key, "LINECONT") == 0) | |
5820 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
5821 if (*next_arg == NUL) // missing pattern |
7504
013f285f31a6
commit https://github.com/vim/vim/commit/2795e21eaafaeaf95a91667fd411023280d0f902
Christian Brabandt <cb@256bit.org>
parents:
7500
diff
changeset
|
5822 { |
013f285f31a6
commit https://github.com/vim/vim/commit/2795e21eaafaeaf95a91667fd411023280d0f902
Christian Brabandt <cb@256bit.org>
parents:
7500
diff
changeset
|
5823 illegal = TRUE; |
013f285f31a6
commit https://github.com/vim/vim/commit/2795e21eaafaeaf95a91667fd411023280d0f902
Christian Brabandt <cb@256bit.org>
parents:
7500
diff
changeset
|
5824 break; |
013f285f31a6
commit https://github.com/vim/vim/commit/2795e21eaafaeaf95a91667fd411023280d0f902
Christian Brabandt <cb@256bit.org>
parents:
7500
diff
changeset
|
5825 } |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
5826 if (curwin->w_s->b_syn_linecont_pat != NULL) |
7 | 5827 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
14968
diff
changeset
|
5828 emsg(_("E403: syntax sync: line continuations pattern specified twice")); |
7 | 5829 finished = TRUE; |
5830 break; | |
5831 } | |
19892
5feb426d2ea1
patch 8.2.0502: Vim9: some code is not tested
Bram Moolenaar <Bram@vim.org>
parents:
19181
diff
changeset
|
5832 arg_end = skip_regexp(next_arg + 1, *next_arg, TRUE); |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
5833 if (*arg_end != *next_arg) // end delimiter not found |
7 | 5834 { |
5835 illegal = TRUE; | |
5836 break; | |
5837 } | |
5838 | |
5839 if (!eap->skip) | |
5840 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
5841 // store the pattern and compiled regexp program |
20830
9064044fd4f6
patch 8.2.0967: unnecessary type casts for vim_strnsave()
Bram Moolenaar <Bram@vim.org>
parents:
20751
diff
changeset
|
5842 if ((curwin->w_s->b_syn_linecont_pat = |
9064044fd4f6
patch 8.2.0967: unnecessary type casts for vim_strnsave()
Bram Moolenaar <Bram@vim.org>
parents:
20751
diff
changeset
|
5843 vim_strnsave(next_arg + 1, |
9064044fd4f6
patch 8.2.0967: unnecessary type casts for vim_strnsave()
Bram Moolenaar <Bram@vim.org>
parents:
20751
diff
changeset
|
5844 arg_end - next_arg - 1)) == NULL) |
7 | 5845 { |
5846 finished = TRUE; | |
5847 break; | |
5848 } | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
5849 curwin->w_s->b_syn_linecont_ic = curwin->w_s->b_syn_ic; |
7 | 5850 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
5851 // Make 'cpoptions' empty, to avoid the 'l' flag |
7 | 5852 cpo_save = p_cpo; |
5853 p_cpo = (char_u *)""; | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
5854 curwin->w_s->b_syn_linecont_prog = |
4764
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
5855 vim_regcomp(curwin->w_s->b_syn_linecont_pat, RE_MAGIC); |
7 | 5856 p_cpo = cpo_save; |
4766
ec24ff78a79c
updated for version 7.3.1130
Bram Moolenaar <bram@vim.org>
parents:
4764
diff
changeset
|
5857 #ifdef FEAT_PROFILE |
4764
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
5858 syn_clear_time(&curwin->w_s->b_syn_linecont_time); |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
5859 #endif |
7 | 5860 |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
5861 if (curwin->w_s->b_syn_linecont_prog == NULL) |
7 | 5862 { |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
12973
diff
changeset
|
5863 VIM_CLEAR(curwin->w_s->b_syn_linecont_pat); |
7 | 5864 finished = TRUE; |
5865 break; | |
5866 } | |
5867 } | |
5868 next_arg = skipwhite(arg_end + 1); | |
5869 } | |
5870 else | |
5871 { | |
5872 eap->arg = next_arg; | |
5873 if (STRCMP(key, "MATCH") == 0) | |
5874 syn_cmd_match(eap, TRUE); | |
5875 else if (STRCMP(key, "REGION") == 0) | |
5876 syn_cmd_region(eap, TRUE); | |
5877 else if (STRCMP(key, "CLEAR") == 0) | |
5878 syn_cmd_clear(eap, TRUE); | |
5879 else | |
5880 illegal = TRUE; | |
5881 finished = TRUE; | |
5882 break; | |
5883 } | |
5884 arg_start = next_arg; | |
5885 } | |
5886 vim_free(key); | |
5887 if (illegal) | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
14968
diff
changeset
|
5888 semsg(_("E404: Illegal arguments: %s"), arg_start); |
7 | 5889 else if (!finished) |
5890 { | |
5891 eap->nextcmd = check_nextcmd(arg_start); | |
745 | 5892 redraw_curbuf_later(SOME_VALID); |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
5893 syn_stack_free_all(curwin->w_s); // Need to recompute all syntax. |
7 | 5894 } |
5895 } | |
5896 | |
5897 /* | |
5898 * Convert a line of highlight group names into a list of group ID numbers. | |
5899 * "arg" should point to the "contains" or "nextgroup" keyword. | |
5900 * "arg" is advanced to after the last group name. | |
5901 * Careful: the argument is modified (NULs added). | |
5902 * returns FAIL for some error, OK for success. | |
5903 */ | |
5904 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5905 get_id_list( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5906 char_u **arg, |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
5907 int keylen, // length of keyword |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
5908 short **list, // where to store the resulting list, if not |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
5909 // NULL, the list is silently skipped! |
10618
4ee16e5e2e26
patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents:
10534
diff
changeset
|
5910 int skip) |
7 | 5911 { |
5912 char_u *p = NULL; | |
5913 char_u *end; | |
5914 int round; | |
5915 int count; | |
5916 int total_count = 0; | |
5917 short *retval = NULL; | |
5918 char_u *name; | |
5919 regmatch_T regmatch; | |
5920 int id; | |
5921 int i; | |
5922 int failed = FALSE; | |
5923 | |
5924 /* | |
5925 * We parse the list twice: | |
5926 * round == 1: count the number of items, allocate the array. | |
5927 * round == 2: fill the array with the items. | |
5928 * In round 1 new groups may be added, causing the number of items to | |
5929 * grow when a regexp is used. In that case round 1 is done once again. | |
5930 */ | |
5931 for (round = 1; round <= 2; ++round) | |
5932 { | |
5933 /* | |
5934 * skip "contains" | |
5935 */ | |
5936 p = skipwhite(*arg + keylen); | |
5937 if (*p != '=') | |
5938 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
14968
diff
changeset
|
5939 semsg(_("E405: Missing equal sign: %s"), *arg); |
7 | 5940 break; |
5941 } | |
5942 p = skipwhite(p + 1); | |
20116
513c62184ed8
patch 8.2.0613: Vim9: no check for space before #comment
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
5943 if (ends_excmd2(*arg, p)) |
7 | 5944 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
14968
diff
changeset
|
5945 semsg(_("E406: Empty argument: %s"), *arg); |
7 | 5946 break; |
5947 } | |
5948 | |
5949 /* | |
5950 * parse the arguments after "contains" | |
5951 */ | |
5952 count = 0; | |
20116
513c62184ed8
patch 8.2.0613: Vim9: no check for space before #comment
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
5953 while (!ends_excmd2(*arg, p)) |
7 | 5954 { |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
5955 for (end = p; *end && !VIM_ISWHITE(*end) && *end != ','; ++end) |
7 | 5956 ; |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
5957 name = alloc(end - p + 3); // leave room for "^$" |
7 | 5958 if (name == NULL) |
5959 { | |
5960 failed = TRUE; | |
5961 break; | |
5962 } | |
419 | 5963 vim_strncpy(name + 1, p, end - p); |
7 | 5964 if ( STRCMP(name + 1, "ALLBUT") == 0 |
5965 || STRCMP(name + 1, "ALL") == 0 | |
5966 || STRCMP(name + 1, "TOP") == 0 | |
5967 || STRCMP(name + 1, "CONTAINED") == 0) | |
5968 { | |
5969 if (TOUPPER_ASC(**arg) != 'C') | |
5970 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
14968
diff
changeset
|
5971 semsg(_("E407: %s not allowed here"), name + 1); |
7 | 5972 failed = TRUE; |
5973 vim_free(name); | |
5974 break; | |
5975 } | |
5976 if (count != 0) | |
5977 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
14968
diff
changeset
|
5978 semsg(_("E408: %s must be first in contains list"), |
10648
4f3decf25b7d
patch 8.0.0214: leaking memory when syntax cluster id is unknown
Christian Brabandt <cb@256bit.org>
parents:
10629
diff
changeset
|
5979 name + 1); |
7 | 5980 failed = TRUE; |
5981 vim_free(name); | |
5982 break; | |
5983 } | |
5984 if (name[1] == 'A') | |
5985 id = SYNID_ALLBUT; | |
5986 else if (name[1] == 'T') | |
5987 id = SYNID_TOP; | |
5988 else | |
5989 id = SYNID_CONTAINED; | |
5990 id += current_syn_inc_tag; | |
5991 } | |
5992 else if (name[1] == '@') | |
5993 { | |
10629
16fc46021e51
patch 8.0.0204: compiler warns for uninitialized variable
Christian Brabandt <cb@256bit.org>
parents:
10624
diff
changeset
|
5994 if (skip) |
16fc46021e51
patch 8.0.0204: compiler warns for uninitialized variable
Christian Brabandt <cb@256bit.org>
parents:
10624
diff
changeset
|
5995 id = -1; |
16fc46021e51
patch 8.0.0204: compiler warns for uninitialized variable
Christian Brabandt <cb@256bit.org>
parents:
10624
diff
changeset
|
5996 else |
10618
4ee16e5e2e26
patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents:
10534
diff
changeset
|
5997 id = syn_check_cluster(name + 2, (int)(end - p - 1)); |
7 | 5998 } |
5999 else | |
6000 { | |
6001 /* | |
6002 * Handle full group name. | |
6003 */ | |
6004 if (vim_strpbrk(name + 1, (char_u *)"\\.*^$~[") == NULL) | |
6005 id = syn_check_group(name + 1, (int)(end - p)); | |
6006 else | |
6007 { | |
6008 /* | |
6009 * Handle match of regexp with group names. | |
6010 */ | |
6011 *name = '^'; | |
6012 STRCAT(name, "$"); | |
6013 regmatch.regprog = vim_regcomp(name, RE_MAGIC); | |
6014 if (regmatch.regprog == NULL) | |
6015 { | |
6016 failed = TRUE; | |
6017 vim_free(name); | |
6018 break; | |
6019 } | |
6020 | |
6021 regmatch.rm_ic = TRUE; | |
6022 id = 0; | |
17401
5462bb963075
patch 8.1.1699: highlight_ga can be local instead of global
Bram Moolenaar <Bram@vim.org>
parents:
17389
diff
changeset
|
6023 for (i = highlight_num_groups(); --i >= 0; ) |
7 | 6024 { |
17401
5462bb963075
patch 8.1.1699: highlight_ga can be local instead of global
Bram Moolenaar <Bram@vim.org>
parents:
17389
diff
changeset
|
6025 if (vim_regexec(®match, highlight_group_name(i), |
7 | 6026 (colnr_T)0)) |
6027 { | |
6028 if (round == 2) | |
6029 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
6030 // Got more items than expected; can happen |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
6031 // when adding items that match: |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
6032 // "contains=a.*b,axb". |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
6033 // Go back to first round |
7 | 6034 if (count >= total_count) |
6035 { | |
6036 vim_free(retval); | |
6037 round = 1; | |
6038 } | |
6039 else | |
6040 retval[count] = i + 1; | |
6041 } | |
6042 ++count; | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
6043 id = -1; // remember that we found one |
7 | 6044 } |
6045 } | |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4803
diff
changeset
|
6046 vim_regfree(regmatch.regprog); |
7 | 6047 } |
6048 } | |
6049 vim_free(name); | |
6050 if (id == 0) | |
6051 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
14968
diff
changeset
|
6052 semsg(_("E409: Unknown group name: %s"), p); |
7 | 6053 failed = TRUE; |
6054 break; | |
6055 } | |
6056 if (id > 0) | |
6057 { | |
6058 if (round == 2) | |
6059 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
6060 // Got more items than expected, go back to first round |
7 | 6061 if (count >= total_count) |
6062 { | |
6063 vim_free(retval); | |
6064 round = 1; | |
6065 } | |
6066 else | |
6067 retval[count] = id; | |
6068 } | |
6069 ++count; | |
6070 } | |
6071 p = skipwhite(end); | |
6072 if (*p != ',') | |
6073 break; | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
6074 p = skipwhite(p + 1); // skip comma in between arguments |
7 | 6075 } |
6076 if (failed) | |
6077 break; | |
6078 if (round == 1) | |
6079 { | |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16790
diff
changeset
|
6080 retval = ALLOC_MULT(short, count + 1); |
7 | 6081 if (retval == NULL) |
6082 break; | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
6083 retval[count] = 0; // zero means end of the list |
7 | 6084 total_count = count; |
6085 } | |
6086 } | |
6087 | |
6088 *arg = p; | |
6089 if (failed || retval == NULL) | |
6090 { | |
6091 vim_free(retval); | |
6092 return FAIL; | |
6093 } | |
6094 | |
6095 if (*list == NULL) | |
6096 *list = retval; | |
6097 else | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
6098 vim_free(retval); // list already found, don't overwrite it |
7 | 6099 |
6100 return OK; | |
6101 } | |
6102 | |
6103 /* | |
6104 * Make a copy of an ID list. | |
6105 */ | |
6106 static short * | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6107 copy_id_list(short *list) |
7 | 6108 { |
6109 int len; | |
6110 int count; | |
6111 short *retval; | |
6112 | |
6113 if (list == NULL) | |
6114 return NULL; | |
6115 | |
6116 for (count = 0; list[count]; ++count) | |
6117 ; | |
6118 len = (count + 1) * sizeof(short); | |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16790
diff
changeset
|
6119 retval = alloc(len); |
7 | 6120 if (retval != NULL) |
6121 mch_memmove(retval, list, (size_t)len); | |
6122 | |
6123 return retval; | |
6124 } | |
6125 | |
6126 /* | |
6127 * Check if syntax group "ssp" is in the ID list "list" of "cur_si". | |
6128 * "cur_si" can be NULL if not checking the "containedin" list. | |
6129 * Used to check if a syntax item is in the "contains" or "nextgroup" list of | |
6130 * the current item. | |
6131 * This function is called very often, keep it fast!! | |
6132 */ | |
6133 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6134 in_id_list( |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
6135 stateitem_T *cur_si, // current item or NULL |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
6136 short *list, // id list |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
6137 struct sp_syn *ssp, // group id and ":syn include" tag of group |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
6138 int contained) // group id is contained |
7 | 6139 { |
6140 int retval; | |
6141 short *scl_list; | |
6142 short item; | |
6143 short id = ssp->id; | |
6144 static int depth = 0; | |
6145 int r; | |
6146 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
6147 // If ssp has a "containedin" list and "cur_si" is in it, return TRUE. |
36 | 6148 if (cur_si != NULL && ssp->cont_in_list != NULL |
6149 && !(cur_si->si_flags & HL_MATCH)) | |
7 | 6150 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
6151 // Ignore transparent items without a contains argument. Double check |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
6152 // that we don't go back past the first one. |
7 | 6153 while ((cur_si->si_flags & HL_TRANS_CONT) |
6154 && cur_si > (stateitem_T *)(current_state.ga_data)) | |
6155 --cur_si; | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
6156 // cur_si->si_idx is -1 for keywords, these never contain anything. |
7 | 6157 if (cur_si->si_idx >= 0 && in_id_list(NULL, ssp->cont_in_list, |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
6158 &(SYN_ITEMS(syn_block)[cur_si->si_idx].sp_syn), |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
6159 SYN_ITEMS(syn_block)[cur_si->si_idx].sp_flags & HL_CONTAINED)) |
7 | 6160 return TRUE; |
6161 } | |
6162 | |
6163 if (list == NULL) | |
6164 return FALSE; | |
6165 | |
6166 /* | |
6167 * If list is ID_LIST_ALL, we are in a transparent item that isn't | |
6168 * inside anything. Only allow not-contained groups. | |
6169 */ | |
6170 if (list == ID_LIST_ALL) | |
6171 return !contained; | |
6172 | |
6173 /* | |
6174 * If the first item is "ALLBUT", return TRUE if "id" is NOT in the | |
6175 * contains list. We also require that "id" is at the same ":syn include" | |
6176 * level as the list. | |
6177 */ | |
6178 item = *list; | |
6179 if (item >= SYNID_ALLBUT && item < SYNID_CLUSTER) | |
6180 { | |
6181 if (item < SYNID_TOP) | |
6182 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
6183 // ALL or ALLBUT: accept all groups in the same file |
7 | 6184 if (item - SYNID_ALLBUT != ssp->inc_tag) |
6185 return FALSE; | |
6186 } | |
6187 else if (item < SYNID_CONTAINED) | |
6188 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
6189 // TOP: accept all not-contained groups in the same file |
7 | 6190 if (item - SYNID_TOP != ssp->inc_tag || contained) |
6191 return FALSE; | |
6192 } | |
6193 else | |
6194 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
6195 // CONTAINED: accept all contained groups in the same file |
7 | 6196 if (item - SYNID_CONTAINED != ssp->inc_tag || !contained) |
6197 return FALSE; | |
6198 } | |
6199 item = *++list; | |
6200 retval = FALSE; | |
6201 } | |
6202 else | |
6203 retval = TRUE; | |
6204 | |
6205 /* | |
6206 * Return "retval" if id is in the contains list. | |
6207 */ | |
6208 while (item != 0) | |
6209 { | |
6210 if (item == id) | |
6211 return retval; | |
6212 if (item >= SYNID_CLUSTER) | |
6213 { | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
6214 scl_list = SYN_CLSTR(syn_block)[item - SYNID_CLUSTER].scl_list; |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
6215 // restrict recursiveness to 30 to avoid an endless loop for a |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
6216 // cluster that includes itself (indirectly) |
7 | 6217 if (scl_list != NULL && depth < 30) |
6218 { | |
6219 ++depth; | |
6220 r = in_id_list(NULL, scl_list, ssp, contained); | |
6221 --depth; | |
6222 if (r) | |
6223 return retval; | |
6224 } | |
6225 } | |
6226 item = *++list; | |
6227 } | |
6228 return !retval; | |
6229 } | |
6230 | |
6231 struct subcommand | |
6232 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
6233 char *name; // subcommand name |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
6234 void (*func)(exarg_T *, int); // function to call |
7 | 6235 }; |
6236 | |
6237 static struct subcommand subcommands[] = | |
6238 { | |
6239 {"case", syn_cmd_case}, | |
6240 {"clear", syn_cmd_clear}, | |
6241 {"cluster", syn_cmd_cluster}, | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
6242 {"conceal", syn_cmd_conceal}, |
7 | 6243 {"enable", syn_cmd_enable}, |
20623
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
6244 {"foldlevel", syn_cmd_foldlevel}, |
7 | 6245 {"include", syn_cmd_include}, |
7687
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
6246 {"iskeyword", syn_cmd_iskeyword}, |
7 | 6247 {"keyword", syn_cmd_keyword}, |
6248 {"list", syn_cmd_list}, | |
6249 {"manual", syn_cmd_manual}, | |
6250 {"match", syn_cmd_match}, | |
6251 {"on", syn_cmd_on}, | |
6252 {"off", syn_cmd_off}, | |
6253 {"region", syn_cmd_region}, | |
6254 {"reset", syn_cmd_reset}, | |
419 | 6255 {"spell", syn_cmd_spell}, |
7 | 6256 {"sync", syn_cmd_sync}, |
6257 {"", syn_cmd_list}, | |
6258 {NULL, NULL} | |
6259 }; | |
6260 | |
6261 /* | |
6262 * ":syntax". | |
6263 * This searches the subcommands[] table for the subcommand name, and calls a | |
6264 * syntax_subcommand() function to do the rest. | |
6265 */ | |
6266 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6267 ex_syntax(exarg_T *eap) |
7 | 6268 { |
6269 char_u *arg = eap->arg; | |
6270 char_u *subcmd_end; | |
6271 char_u *subcmd_name; | |
6272 int i; | |
6273 | |
6274 syn_cmdlinep = eap->cmdlinep; | |
6275 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
6276 // isolate subcommand name |
7 | 6277 for (subcmd_end = arg; ASCII_ISALPHA(*subcmd_end); ++subcmd_end) |
6278 ; | |
20830
9064044fd4f6
patch 8.2.0967: unnecessary type casts for vim_strnsave()
Bram Moolenaar <Bram@vim.org>
parents:
20751
diff
changeset
|
6279 subcmd_name = vim_strnsave(arg, subcmd_end - arg); |
7 | 6280 if (subcmd_name != NULL) |
6281 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
6282 if (eap->skip) // skip error messages for all subcommands |
7 | 6283 ++emsg_skip; |
6284 for (i = 0; ; ++i) | |
6285 { | |
6286 if (subcommands[i].name == NULL) | |
6287 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
14968
diff
changeset
|
6288 semsg(_("E410: Invalid :syntax subcommand: %s"), subcmd_name); |
7 | 6289 break; |
6290 } | |
6291 if (STRCMP(subcmd_name, (char_u *)subcommands[i].name) == 0) | |
6292 { | |
6293 eap->arg = skipwhite(subcmd_end); | |
6294 (subcommands[i].func)(eap, FALSE); | |
6295 break; | |
6296 } | |
6297 } | |
6298 vim_free(subcmd_name); | |
6299 if (eap->skip) | |
6300 --emsg_skip; | |
6301 } | |
6302 } | |
6303 | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
6304 void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6305 ex_ownsyntax(exarg_T *eap) |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
6306 { |
2252
a0b5918c33cc
Fixed memory leak in ":ownsyntax".
Bram Moolenaar <bram@vim.org>
parents:
2251
diff
changeset
|
6307 char_u *old_value; |
a0b5918c33cc
Fixed memory leak in ":ownsyntax".
Bram Moolenaar <bram@vim.org>
parents:
2251
diff
changeset
|
6308 char_u *new_value; |
a0b5918c33cc
Fixed memory leak in ":ownsyntax".
Bram Moolenaar <bram@vim.org>
parents:
2251
diff
changeset
|
6309 |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
6310 if (curwin->w_s == &curwin->w_buffer->b_s) |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
6311 { |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16790
diff
changeset
|
6312 curwin->w_s = ALLOC_ONE(synblock_T); |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
6313 memset(curwin->w_s, 0, sizeof(synblock_T)); |
7030
8d513ddfe3ec
commit https://github.com/vim/vim/commit/670acbc70f371409b46b722bd9a1166e53574f42
Christian Brabandt <cb@256bit.org>
parents:
7017
diff
changeset
|
6314 hash_init(&curwin->w_s->b_keywtab); |
8d513ddfe3ec
commit https://github.com/vim/vim/commit/670acbc70f371409b46b722bd9a1166e53574f42
Christian Brabandt <cb@256bit.org>
parents:
7017
diff
changeset
|
6315 hash_init(&curwin->w_s->b_keywtab_ic); |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
6316 #ifdef FEAT_SPELL |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
6317 // TODO: keep the spell checking as it was. |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
6318 curwin->w_p_spell = FALSE; // No spell checking |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
6319 clear_string_option(&curwin->w_s->b_p_spc); |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
6320 clear_string_option(&curwin->w_s->b_p_spf); |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
6321 clear_string_option(&curwin->w_s->b_p_spl); |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
6322 #endif |
7687
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
6323 clear_string_option(&curwin->w_s->b_syn_isk); |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
6324 } |
2252
a0b5918c33cc
Fixed memory leak in ":ownsyntax".
Bram Moolenaar <bram@vim.org>
parents:
2251
diff
changeset
|
6325 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
6326 // save value of b:current_syntax |
2252
a0b5918c33cc
Fixed memory leak in ":ownsyntax".
Bram Moolenaar <bram@vim.org>
parents:
2251
diff
changeset
|
6327 old_value = get_var_value((char_u *)"b:current_syntax"); |
a0b5918c33cc
Fixed memory leak in ":ownsyntax".
Bram Moolenaar <bram@vim.org>
parents:
2251
diff
changeset
|
6328 if (old_value != NULL) |
a0b5918c33cc
Fixed memory leak in ":ownsyntax".
Bram Moolenaar <bram@vim.org>
parents:
2251
diff
changeset
|
6329 old_value = vim_strsave(old_value); |
a0b5918c33cc
Fixed memory leak in ":ownsyntax".
Bram Moolenaar <bram@vim.org>
parents:
2251
diff
changeset
|
6330 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
6331 // Apply the "syntax" autocommand event, this finds and loads the syntax |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
6332 // file. |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
6333 apply_autocmds(EVENT_SYNTAX, eap->arg, curbuf->b_fname, TRUE, curbuf); |
2252
a0b5918c33cc
Fixed memory leak in ":ownsyntax".
Bram Moolenaar <bram@vim.org>
parents:
2251
diff
changeset
|
6334 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
6335 // move value of b:current_syntax to w:current_syntax |
2252
a0b5918c33cc
Fixed memory leak in ":ownsyntax".
Bram Moolenaar <bram@vim.org>
parents:
2251
diff
changeset
|
6336 new_value = get_var_value((char_u *)"b:current_syntax"); |
2256
8b3203df361f
Fix crash for ":ownsyntax". (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2253
diff
changeset
|
6337 if (new_value != NULL) |
8b3203df361f
Fix crash for ":ownsyntax". (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2253
diff
changeset
|
6338 set_internal_string_var((char_u *)"w:current_syntax", new_value); |
2252
a0b5918c33cc
Fixed memory leak in ":ownsyntax".
Bram Moolenaar <bram@vim.org>
parents:
2251
diff
changeset
|
6339 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
6340 // restore value of b:current_syntax |
2256
8b3203df361f
Fix crash for ":ownsyntax". (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2253
diff
changeset
|
6341 if (old_value == NULL) |
8b3203df361f
Fix crash for ":ownsyntax". (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2253
diff
changeset
|
6342 do_unlet((char_u *)"b:current_syntax", TRUE); |
8b3203df361f
Fix crash for ":ownsyntax". (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2253
diff
changeset
|
6343 else |
2252
a0b5918c33cc
Fixed memory leak in ":ownsyntax".
Bram Moolenaar <bram@vim.org>
parents:
2251
diff
changeset
|
6344 { |
a0b5918c33cc
Fixed memory leak in ":ownsyntax".
Bram Moolenaar <bram@vim.org>
parents:
2251
diff
changeset
|
6345 set_internal_string_var((char_u *)"b:current_syntax", old_value); |
a0b5918c33cc
Fixed memory leak in ":ownsyntax".
Bram Moolenaar <bram@vim.org>
parents:
2251
diff
changeset
|
6346 vim_free(old_value); |
a0b5918c33cc
Fixed memory leak in ":ownsyntax".
Bram Moolenaar <bram@vim.org>
parents:
2251
diff
changeset
|
6347 } |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
6348 } |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
6349 |
7 | 6350 int |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6351 syntax_present(win_T *win) |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
6352 { |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
6353 return (win->w_s->b_syn_patterns.ga_len != 0 |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
6354 || win->w_s->b_syn_clusters.ga_len != 0 |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
6355 || win->w_s->b_keywtab.ht_used > 0 |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
6356 || win->w_s->b_keywtab_ic.ht_used > 0); |
7 | 6357 } |
6358 | |
6359 | |
6360 static enum | |
6361 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
6362 EXP_SUBCMD, // expand ":syn" sub-commands |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
6363 EXP_CASE, // expand ":syn case" arguments |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
6364 EXP_SPELL, // expand ":syn spell" arguments |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
6365 EXP_SYNC // expand ":syn sync" arguments |
7 | 6366 } expand_what; |
6367 | |
1322 | 6368 /* |
6369 * Reset include_link, include_default, include_none to 0. | |
6370 * Called when we are done expanding. | |
6371 */ | |
6372 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6373 reset_expand_highlight(void) |
1322 | 6374 { |
6375 include_link = include_default = include_none = 0; | |
6376 } | |
6377 | |
6378 /* | |
6379 * Handle command line completion for :match and :echohl command: Add "None" | |
6380 * as highlight group. | |
6381 */ | |
6382 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6383 set_context_in_echohl_cmd(expand_T *xp, char_u *arg) |
1322 | 6384 { |
6385 xp->xp_context = EXPAND_HIGHLIGHT; | |
6386 xp->xp_pattern = arg; | |
6387 include_none = 1; | |
6388 } | |
7 | 6389 |
6390 /* | |
6391 * Handle command line completion for :syntax command. | |
6392 */ | |
6393 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6394 set_context_in_syntax_cmd(expand_T *xp, char_u *arg) |
7 | 6395 { |
6396 char_u *p; | |
6397 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
6398 // Default: expand subcommands |
7 | 6399 xp->xp_context = EXPAND_SYNTAX; |
6400 expand_what = EXP_SUBCMD; | |
6401 xp->xp_pattern = arg; | |
1322 | 6402 include_link = 0; |
6403 include_default = 0; | |
7 | 6404 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
6405 // (part of) subcommand already typed |
7 | 6406 if (*arg != NUL) |
6407 { | |
6408 p = skiptowhite(arg); | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
6409 if (*p != NUL) // past first word |
7 | 6410 { |
6411 xp->xp_pattern = skipwhite(p); | |
6412 if (*skiptowhite(xp->xp_pattern) != NUL) | |
6413 xp->xp_context = EXPAND_NOTHING; | |
6414 else if (STRNICMP(arg, "case", p - arg) == 0) | |
6415 expand_what = EXP_CASE; | |
10534
1c6db35e3527
commit https://github.com/vim/vim/commit/2d02839050a2557bf36dab37ccd9f92168a757d1
Christian Brabandt <cb@256bit.org>
parents:
10530
diff
changeset
|
6416 else if (STRNICMP(arg, "spell", p - arg) == 0) |
1c6db35e3527
commit https://github.com/vim/vim/commit/2d02839050a2557bf36dab37ccd9f92168a757d1
Christian Brabandt <cb@256bit.org>
parents:
10530
diff
changeset
|
6417 expand_what = EXP_SPELL; |
1c6db35e3527
commit https://github.com/vim/vim/commit/2d02839050a2557bf36dab37ccd9f92168a757d1
Christian Brabandt <cb@256bit.org>
parents:
10530
diff
changeset
|
6418 else if (STRNICMP(arg, "sync", p - arg) == 0) |
1c6db35e3527
commit https://github.com/vim/vim/commit/2d02839050a2557bf36dab37ccd9f92168a757d1
Christian Brabandt <cb@256bit.org>
parents:
10530
diff
changeset
|
6419 expand_what = EXP_SYNC; |
7 | 6420 else if ( STRNICMP(arg, "keyword", p - arg) == 0 |
6421 || STRNICMP(arg, "region", p - arg) == 0 | |
6422 || STRNICMP(arg, "match", p - arg) == 0 | |
6423 || STRNICMP(arg, "list", p - arg) == 0) | |
6424 xp->xp_context = EXPAND_HIGHLIGHT; | |
6425 else | |
6426 xp->xp_context = EXPAND_NOTHING; | |
6427 } | |
6428 } | |
6429 } | |
6430 | |
6431 /* | |
6432 * Function given to ExpandGeneric() to obtain the list syntax names for | |
6433 * expansion. | |
6434 */ | |
6435 char_u * | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6436 get_syntax_name(expand_T *xp UNUSED, int idx) |
7 | 6437 { |
10534
1c6db35e3527
commit https://github.com/vim/vim/commit/2d02839050a2557bf36dab37ccd9f92168a757d1
Christian Brabandt <cb@256bit.org>
parents:
10530
diff
changeset
|
6438 switch (expand_what) |
1c6db35e3527
commit https://github.com/vim/vim/commit/2d02839050a2557bf36dab37ccd9f92168a757d1
Christian Brabandt <cb@256bit.org>
parents:
10530
diff
changeset
|
6439 { |
1c6db35e3527
commit https://github.com/vim/vim/commit/2d02839050a2557bf36dab37ccd9f92168a757d1
Christian Brabandt <cb@256bit.org>
parents:
10530
diff
changeset
|
6440 case EXP_SUBCMD: |
1c6db35e3527
commit https://github.com/vim/vim/commit/2d02839050a2557bf36dab37ccd9f92168a757d1
Christian Brabandt <cb@256bit.org>
parents:
10530
diff
changeset
|
6441 return (char_u *)subcommands[idx].name; |
1c6db35e3527
commit https://github.com/vim/vim/commit/2d02839050a2557bf36dab37ccd9f92168a757d1
Christian Brabandt <cb@256bit.org>
parents:
10530
diff
changeset
|
6442 case EXP_CASE: |
1c6db35e3527
commit https://github.com/vim/vim/commit/2d02839050a2557bf36dab37ccd9f92168a757d1
Christian Brabandt <cb@256bit.org>
parents:
10530
diff
changeset
|
6443 { |
1c6db35e3527
commit https://github.com/vim/vim/commit/2d02839050a2557bf36dab37ccd9f92168a757d1
Christian Brabandt <cb@256bit.org>
parents:
10530
diff
changeset
|
6444 static char *case_args[] = {"match", "ignore", NULL}; |
1c6db35e3527
commit https://github.com/vim/vim/commit/2d02839050a2557bf36dab37ccd9f92168a757d1
Christian Brabandt <cb@256bit.org>
parents:
10530
diff
changeset
|
6445 return (char_u *)case_args[idx]; |
1c6db35e3527
commit https://github.com/vim/vim/commit/2d02839050a2557bf36dab37ccd9f92168a757d1
Christian Brabandt <cb@256bit.org>
parents:
10530
diff
changeset
|
6446 } |
1c6db35e3527
commit https://github.com/vim/vim/commit/2d02839050a2557bf36dab37ccd9f92168a757d1
Christian Brabandt <cb@256bit.org>
parents:
10530
diff
changeset
|
6447 case EXP_SPELL: |
1c6db35e3527
commit https://github.com/vim/vim/commit/2d02839050a2557bf36dab37ccd9f92168a757d1
Christian Brabandt <cb@256bit.org>
parents:
10530
diff
changeset
|
6448 { |
1c6db35e3527
commit https://github.com/vim/vim/commit/2d02839050a2557bf36dab37ccd9f92168a757d1
Christian Brabandt <cb@256bit.org>
parents:
10530
diff
changeset
|
6449 static char *spell_args[] = |
1c6db35e3527
commit https://github.com/vim/vim/commit/2d02839050a2557bf36dab37ccd9f92168a757d1
Christian Brabandt <cb@256bit.org>
parents:
10530
diff
changeset
|
6450 {"toplevel", "notoplevel", "default", NULL}; |
1c6db35e3527
commit https://github.com/vim/vim/commit/2d02839050a2557bf36dab37ccd9f92168a757d1
Christian Brabandt <cb@256bit.org>
parents:
10530
diff
changeset
|
6451 return (char_u *)spell_args[idx]; |
1c6db35e3527
commit https://github.com/vim/vim/commit/2d02839050a2557bf36dab37ccd9f92168a757d1
Christian Brabandt <cb@256bit.org>
parents:
10530
diff
changeset
|
6452 } |
1c6db35e3527
commit https://github.com/vim/vim/commit/2d02839050a2557bf36dab37ccd9f92168a757d1
Christian Brabandt <cb@256bit.org>
parents:
10530
diff
changeset
|
6453 case EXP_SYNC: |
1c6db35e3527
commit https://github.com/vim/vim/commit/2d02839050a2557bf36dab37ccd9f92168a757d1
Christian Brabandt <cb@256bit.org>
parents:
10530
diff
changeset
|
6454 { |
1c6db35e3527
commit https://github.com/vim/vim/commit/2d02839050a2557bf36dab37ccd9f92168a757d1
Christian Brabandt <cb@256bit.org>
parents:
10530
diff
changeset
|
6455 static char *sync_args[] = |
1c6db35e3527
commit https://github.com/vim/vim/commit/2d02839050a2557bf36dab37ccd9f92168a757d1
Christian Brabandt <cb@256bit.org>
parents:
10530
diff
changeset
|
6456 {"ccomment", "clear", "fromstart", |
1c6db35e3527
commit https://github.com/vim/vim/commit/2d02839050a2557bf36dab37ccd9f92168a757d1
Christian Brabandt <cb@256bit.org>
parents:
10530
diff
changeset
|
6457 "linebreaks=", "linecont", "lines=", "match", |
1c6db35e3527
commit https://github.com/vim/vim/commit/2d02839050a2557bf36dab37ccd9f92168a757d1
Christian Brabandt <cb@256bit.org>
parents:
10530
diff
changeset
|
6458 "maxlines=", "minlines=", "region", NULL}; |
1c6db35e3527
commit https://github.com/vim/vim/commit/2d02839050a2557bf36dab37ccd9f92168a757d1
Christian Brabandt <cb@256bit.org>
parents:
10530
diff
changeset
|
6459 return (char_u *)sync_args[idx]; |
1c6db35e3527
commit https://github.com/vim/vim/commit/2d02839050a2557bf36dab37ccd9f92168a757d1
Christian Brabandt <cb@256bit.org>
parents:
10530
diff
changeset
|
6460 } |
1c6db35e3527
commit https://github.com/vim/vim/commit/2d02839050a2557bf36dab37ccd9f92168a757d1
Christian Brabandt <cb@256bit.org>
parents:
10530
diff
changeset
|
6461 } |
1c6db35e3527
commit https://github.com/vim/vim/commit/2d02839050a2557bf36dab37ccd9f92168a757d1
Christian Brabandt <cb@256bit.org>
parents:
10530
diff
changeset
|
6462 return NULL; |
7 | 6463 } |
6464 | |
6465 | |
6466 /* | |
6467 * Function called for expression evaluation: get syntax ID at file position. | |
6468 */ | |
6469 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6470 syn_get_id( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6471 win_T *wp, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6472 long lnum, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6473 colnr_T col, |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
6474 int trans, // remove transparency |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
6475 int *spellp, // return: can do spell checking |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
6476 int keep_state) // keep state of char at "col" |
7 | 6477 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
6478 // When the position is not after the current position and in the same |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
6479 // line of the same buffer, need to restart parsing. |
499 | 6480 if (wp->w_buffer != syn_buf |
7 | 6481 || lnum != current_lnum |
253 | 6482 || col < current_col) |
12510
7a887dccd13a
patch 8.0.1133: syntax timeout not used correctly
Christian Brabandt <cb@256bit.org>
parents:
12487
diff
changeset
|
6483 syntax_start(wp, lnum); |
7685
616460b73ee3
commit https://github.com/vim/vim/commit/6773a348da0dcf45df3c6c6649880655ec0d2042
Christian Brabandt <cb@256bit.org>
parents:
7504
diff
changeset
|
6484 else if (wp->w_buffer == syn_buf |
616460b73ee3
commit https://github.com/vim/vim/commit/6773a348da0dcf45df3c6c6649880655ec0d2042
Christian Brabandt <cb@256bit.org>
parents:
7504
diff
changeset
|
6485 && lnum == current_lnum |
616460b73ee3
commit https://github.com/vim/vim/commit/6773a348da0dcf45df3c6c6649880655ec0d2042
Christian Brabandt <cb@256bit.org>
parents:
7504
diff
changeset
|
6486 && col > current_col) |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
6487 // next_match may not be correct when moving around, e.g. with the |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
6488 // "skip" expression in searchpair() |
7685
616460b73ee3
commit https://github.com/vim/vim/commit/6773a348da0dcf45df3c6c6649880655ec0d2042
Christian Brabandt <cb@256bit.org>
parents:
7504
diff
changeset
|
6489 next_match_idx = -1; |
7 | 6490 |
2375
a96dd77ce213
For conceal mode: when two different syntax items follow each other, show the
Bram Moolenaar <bram@vim.org>
parents:
2318
diff
changeset
|
6491 (void)get_syntax_attr(col, spellp, keep_state); |
7 | 6492 |
6493 return (trans ? current_trans_id : current_id); | |
6494 } | |
6495 | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
6496 #if defined(FEAT_CONCEAL) || defined(PROTO) |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
6497 /* |
2375
a96dd77ce213
For conceal mode: when two different syntax items follow each other, show the
Bram Moolenaar <bram@vim.org>
parents:
2318
diff
changeset
|
6498 * Get extra information about the syntax item. Must be called right after |
a96dd77ce213
For conceal mode: when two different syntax items follow each other, show the
Bram Moolenaar <bram@vim.org>
parents:
2318
diff
changeset
|
6499 * get_syntax_attr(). |
2392
0371401d9d33
Give each syntax item a sequence number, so that we know when it starts and
Bram Moolenaar <bram@vim.org>
parents:
2375
diff
changeset
|
6500 * Stores the current item sequence nr in "*seqnrp". |
2375
a96dd77ce213
For conceal mode: when two different syntax items follow each other, show the
Bram Moolenaar <bram@vim.org>
parents:
2318
diff
changeset
|
6501 * Returns the current flags. |
a96dd77ce213
For conceal mode: when two different syntax items follow each other, show the
Bram Moolenaar <bram@vim.org>
parents:
2318
diff
changeset
|
6502 */ |
a96dd77ce213
For conceal mode: when two different syntax items follow each other, show the
Bram Moolenaar <bram@vim.org>
parents:
2318
diff
changeset
|
6503 int |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6504 get_syntax_info(int *seqnrp) |
2392
0371401d9d33
Give each syntax item a sequence number, so that we know when it starts and
Bram Moolenaar <bram@vim.org>
parents:
2375
diff
changeset
|
6505 { |
0371401d9d33
Give each syntax item a sequence number, so that we know when it starts and
Bram Moolenaar <bram@vim.org>
parents:
2375
diff
changeset
|
6506 *seqnrp = current_seqnr; |
2375
a96dd77ce213
For conceal mode: when two different syntax items follow each other, show the
Bram Moolenaar <bram@vim.org>
parents:
2318
diff
changeset
|
6507 return current_flags; |
a96dd77ce213
For conceal mode: when two different syntax items follow each other, show the
Bram Moolenaar <bram@vim.org>
parents:
2318
diff
changeset
|
6508 } |
a96dd77ce213
For conceal mode: when two different syntax items follow each other, show the
Bram Moolenaar <bram@vim.org>
parents:
2318
diff
changeset
|
6509 |
a96dd77ce213
For conceal mode: when two different syntax items follow each other, show the
Bram Moolenaar <bram@vim.org>
parents:
2318
diff
changeset
|
6510 /* |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
6511 * Return conceal substitution character |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
6512 */ |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
6513 int |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6514 syn_get_sub_char(void) |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
6515 { |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
6516 return current_sub_char; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
6517 } |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
6518 #endif |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
6519 |
1500 | 6520 #if defined(FEAT_EVAL) || defined(PROTO) |
6521 /* | |
6522 * Return the syntax ID at position "i" in the current stack. | |
6523 * The caller must have called syn_get_id() before to fill the stack. | |
6524 * Returns -1 when "i" is out of range. | |
6525 */ | |
6526 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6527 syn_get_stack_item(int i) |
1500 | 6528 { |
1504 | 6529 if (i >= current_state.ga_len) |
6530 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
6531 // Need to invalidate the state, because we didn't properly finish it |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
6532 // for the last character, "keep_state" was TRUE. |
1504 | 6533 invalidate_current_state(); |
6534 current_col = MAXCOL; | |
1500 | 6535 return -1; |
1504 | 6536 } |
1500 | 6537 return CUR_STATE(i).si_id; |
6538 } | |
6539 #endif | |
6540 | |
7 | 6541 #if defined(FEAT_FOLDING) || defined(PROTO) |
20623
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
6542 static int |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
6543 syn_cur_foldlevel(void) |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
6544 { |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
6545 int level = 0; |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
6546 int i; |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
6547 |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
6548 for (i = 0; i < current_state.ga_len; ++i) |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
6549 if (CUR_STATE(i).si_flags & HL_FOLD) |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
6550 ++level; |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
6551 return level; |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
6552 } |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
6553 |
7 | 6554 /* |
6555 * Function called to get folding level for line "lnum" in window "wp". | |
6556 */ | |
6557 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6558 syn_get_foldlevel(win_T *wp, long lnum) |
7 | 6559 { |
6560 int level = 0; | |
20623
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
6561 int low_level; |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
6562 int cur_level; |
7 | 6563 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
6564 // Return quickly when there are no fold items at all. |
11529
998d2cf59caa
patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
6565 if (wp->w_s->b_syn_folditems != 0 |
998d2cf59caa
patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
6566 && !wp->w_s->b_syn_error |
998d2cf59caa
patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
6567 # ifdef SYN_TIME_LIMIT |
998d2cf59caa
patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
6568 && !wp->w_s->b_syn_slow |
998d2cf59caa
patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
6569 # endif |
998d2cf59caa
patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
6570 ) |
998d2cf59caa
patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
6571 { |
12510
7a887dccd13a
patch 8.0.1133: syntax timeout not used correctly
Christian Brabandt <cb@256bit.org>
parents:
12487
diff
changeset
|
6572 syntax_start(wp, lnum); |
7 | 6573 |
20623
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
6574 // Start with the fold level at the start of the line. |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
6575 level = syn_cur_foldlevel(); |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
6576 |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
6577 if (wp->w_s->b_syn_foldlevel == SYNFLD_MINIMUM) |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
6578 { |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
6579 // Find the lowest fold level that is followed by a higher one. |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
6580 cur_level = level; |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
6581 low_level = cur_level; |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
6582 while (!current_finished) |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
6583 { |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
6584 (void)syn_current_attr(FALSE, FALSE, NULL, FALSE); |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
6585 cur_level = syn_cur_foldlevel(); |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
6586 if (cur_level < low_level) |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
6587 low_level = cur_level; |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
6588 else if (cur_level > low_level) |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
6589 level = low_level; |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
6590 ++current_col; |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
6591 } |
99b6e6bf48bf
patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents:
20116
diff
changeset
|
6592 } |
7 | 6593 } |
6594 if (level > wp->w_p_fdn) | |
1028 | 6595 { |
7 | 6596 level = wp->w_p_fdn; |
1028 | 6597 if (level < 0) |
6598 level = 0; | |
6599 } | |
7 | 6600 return level; |
6601 } | |
6602 #endif | |
6603 | |
6567 | 6604 #if defined(FEAT_PROFILE) || defined(PROTO) |
4764
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6605 /* |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6606 * ":syntime". |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6607 */ |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6608 void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6609 ex_syntime(exarg_T *eap) |
4764
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6610 { |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6611 if (STRCMP(eap->arg, "on") == 0) |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6612 syn_time_on = TRUE; |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6613 else if (STRCMP(eap->arg, "off") == 0) |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6614 syn_time_on = FALSE; |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6615 else if (STRCMP(eap->arg, "clear") == 0) |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6616 syntime_clear(); |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6617 else if (STRCMP(eap->arg, "report") == 0) |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6618 syntime_report(); |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6619 else |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
14968
diff
changeset
|
6620 semsg(_(e_invarg2), eap->arg); |
4764
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6621 } |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6622 |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6623 static void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6624 syn_clear_time(syn_time_T *st) |
4764
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6625 { |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6626 profile_zero(&st->total); |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6627 profile_zero(&st->slowest); |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6628 st->count = 0; |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6629 st->match = 0; |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6630 } |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6631 |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6632 /* |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6633 * Clear the syntax timing for the current buffer. |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6634 */ |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6635 static void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6636 syntime_clear(void) |
4764
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6637 { |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6638 int idx; |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6639 synpat_T *spp; |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6640 |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6641 if (!syntax_present(curwin)) |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6642 { |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
6643 msg(_(msg_no_items)); |
4764
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6644 return; |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6645 } |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6646 for (idx = 0; idx < curwin->w_s->b_syn_patterns.ga_len; ++idx) |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6647 { |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6648 spp = &(SYN_ITEMS(curwin->w_s)[idx]); |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6649 syn_clear_time(&spp->sp_time); |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6650 } |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6651 } |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6652 |
4803
220bdea4f579
updated for version 7.3.1148
Bram Moolenaar <bram@vim.org>
parents:
4791
diff
changeset
|
6653 /* |
220bdea4f579
updated for version 7.3.1148
Bram Moolenaar <bram@vim.org>
parents:
4791
diff
changeset
|
6654 * Function given to ExpandGeneric() to obtain the possible arguments of the |
220bdea4f579
updated for version 7.3.1148
Bram Moolenaar <bram@vim.org>
parents:
4791
diff
changeset
|
6655 * ":syntime {on,off,clear,report}" command. |
220bdea4f579
updated for version 7.3.1148
Bram Moolenaar <bram@vim.org>
parents:
4791
diff
changeset
|
6656 */ |
220bdea4f579
updated for version 7.3.1148
Bram Moolenaar <bram@vim.org>
parents:
4791
diff
changeset
|
6657 char_u * |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6658 get_syntime_arg(expand_T *xp UNUSED, int idx) |
4803
220bdea4f579
updated for version 7.3.1148
Bram Moolenaar <bram@vim.org>
parents:
4791
diff
changeset
|
6659 { |
220bdea4f579
updated for version 7.3.1148
Bram Moolenaar <bram@vim.org>
parents:
4791
diff
changeset
|
6660 switch (idx) |
220bdea4f579
updated for version 7.3.1148
Bram Moolenaar <bram@vim.org>
parents:
4791
diff
changeset
|
6661 { |
220bdea4f579
updated for version 7.3.1148
Bram Moolenaar <bram@vim.org>
parents:
4791
diff
changeset
|
6662 case 0: return (char_u *)"on"; |
220bdea4f579
updated for version 7.3.1148
Bram Moolenaar <bram@vim.org>
parents:
4791
diff
changeset
|
6663 case 1: return (char_u *)"off"; |
220bdea4f579
updated for version 7.3.1148
Bram Moolenaar <bram@vim.org>
parents:
4791
diff
changeset
|
6664 case 2: return (char_u *)"clear"; |
220bdea4f579
updated for version 7.3.1148
Bram Moolenaar <bram@vim.org>
parents:
4791
diff
changeset
|
6665 case 3: return (char_u *)"report"; |
220bdea4f579
updated for version 7.3.1148
Bram Moolenaar <bram@vim.org>
parents:
4791
diff
changeset
|
6666 } |
220bdea4f579
updated for version 7.3.1148
Bram Moolenaar <bram@vim.org>
parents:
4791
diff
changeset
|
6667 return NULL; |
220bdea4f579
updated for version 7.3.1148
Bram Moolenaar <bram@vim.org>
parents:
4791
diff
changeset
|
6668 } |
220bdea4f579
updated for version 7.3.1148
Bram Moolenaar <bram@vim.org>
parents:
4791
diff
changeset
|
6669 |
4764
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6670 typedef struct |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6671 { |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6672 proftime_T total; |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6673 int count; |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6674 int match; |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6675 proftime_T slowest; |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6676 proftime_T average; |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6677 int id; |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6678 char_u *pattern; |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6679 } time_entry_T; |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6680 |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6681 static int |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6682 syn_compare_syntime(const void *v1, const void *v2) |
4764
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6683 { |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6684 const time_entry_T *s1 = v1; |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6685 const time_entry_T *s2 = v2; |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6686 |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6687 return profile_cmp(&s1->total, &s2->total); |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6688 } |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6689 |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6690 /* |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6691 * Clear the syntax timing for the current buffer. |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6692 */ |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6693 static void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6694 syntime_report(void) |
4764
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6695 { |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6696 int idx; |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6697 synpat_T *spp; |
4803
220bdea4f579
updated for version 7.3.1148
Bram Moolenaar <bram@vim.org>
parents:
4791
diff
changeset
|
6698 # ifdef FEAT_FLOAT |
4764
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6699 proftime_T tm; |
4803
220bdea4f579
updated for version 7.3.1148
Bram Moolenaar <bram@vim.org>
parents:
4791
diff
changeset
|
6700 # endif |
4764
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6701 int len; |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6702 proftime_T total_total; |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6703 int total_count = 0; |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6704 garray_T ga; |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6705 time_entry_T *p; |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6706 |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6707 if (!syntax_present(curwin)) |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6708 { |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
6709 msg(_(msg_no_items)); |
4764
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6710 return; |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6711 } |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6712 |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6713 ga_init2(&ga, sizeof(time_entry_T), 50); |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6714 profile_zero(&total_total); |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6715 for (idx = 0; idx < curwin->w_s->b_syn_patterns.ga_len; ++idx) |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6716 { |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6717 spp = &(SYN_ITEMS(curwin->w_s)[idx]); |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6718 if (spp->sp_time.count > 0) |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6719 { |
7009 | 6720 (void)ga_grow(&ga, 1); |
4764
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6721 p = ((time_entry_T *)ga.ga_data) + ga.ga_len; |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6722 p->total = spp->sp_time.total; |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6723 profile_add(&total_total, &spp->sp_time.total); |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6724 p->count = spp->sp_time.count; |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6725 p->match = spp->sp_time.match; |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6726 total_count += spp->sp_time.count; |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6727 p->slowest = spp->sp_time.slowest; |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6728 # ifdef FEAT_FLOAT |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6729 profile_divide(&spp->sp_time.total, spp->sp_time.count, &tm); |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6730 p->average = tm; |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6731 # endif |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6732 p->id = spp->sp_syn.id; |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6733 p->pattern = spp->sp_pattern; |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6734 ++ga.ga_len; |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6735 } |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6736 } |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6737 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
6738 // Sort on total time. Skip if there are no items to avoid passing NULL |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
6739 // pointer to qsort(). |
10530
ea5adbeccfc1
commit https://github.com/vim/vim/commit/a216255a4faa91a15e7005ac319f2f62294f3f9e
Christian Brabandt <cb@256bit.org>
parents:
10499
diff
changeset
|
6740 if (ga.ga_len > 1) |
ea5adbeccfc1
commit https://github.com/vim/vim/commit/a216255a4faa91a15e7005ac319f2f62294f3f9e
Christian Brabandt <cb@256bit.org>
parents:
10499
diff
changeset
|
6741 qsort(ga.ga_data, (size_t)ga.ga_len, sizeof(time_entry_T), |
4776
e4bc21965079
updated for version 7.3.1135
Bram Moolenaar <bram@vim.org>
parents:
4766
diff
changeset
|
6742 syn_compare_syntime); |
4764
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6743 |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
6744 msg_puts_title(_(" TOTAL COUNT MATCH SLOWEST AVERAGE NAME PATTERN")); |
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
6745 msg_puts("\n"); |
4764
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6746 for (idx = 0; idx < ga.ga_len && !got_int; ++idx) |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6747 { |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6748 p = ((time_entry_T *)ga.ga_data) + idx; |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6749 |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
6750 msg_puts(profile_msg(&p->total)); |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
6751 msg_puts(" "); // make sure there is always a separating space |
4764
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6752 msg_advance(13); |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6753 msg_outnum(p->count); |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
6754 msg_puts(" "); |
4764
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6755 msg_advance(20); |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6756 msg_outnum(p->match); |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
6757 msg_puts(" "); |
4764
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6758 msg_advance(26); |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
6759 msg_puts(profile_msg(&p->slowest)); |
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
6760 msg_puts(" "); |
4764
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6761 msg_advance(38); |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6762 # ifdef FEAT_FLOAT |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
6763 msg_puts(profile_msg(&p->average)); |
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
6764 msg_puts(" "); |
4764
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6765 # endif |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6766 msg_advance(50); |
17401
5462bb963075
patch 8.1.1699: highlight_ga can be local instead of global
Bram Moolenaar <Bram@vim.org>
parents:
17389
diff
changeset
|
6767 msg_outtrans(highlight_group_name(p->id - 1)); |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
6768 msg_puts(" "); |
4764
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6769 |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6770 msg_advance(69); |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6771 if (Columns < 80) |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
6772 len = 20; // will wrap anyway |
4764
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6773 else |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6774 len = Columns - 70; |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6775 if (len > (int)STRLEN(p->pattern)) |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6776 len = (int)STRLEN(p->pattern); |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6777 msg_outtrans_len(p->pattern, len); |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
6778 msg_puts("\n"); |
4764
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6779 } |
4791
65cef998f860
updated for version 7.3.1142
Bram Moolenaar <bram@vim.org>
parents:
4776
diff
changeset
|
6780 ga_clear(&ga); |
4764
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6781 if (!got_int) |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6782 { |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
6783 msg_puts("\n"); |
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
6784 msg_puts(profile_msg(&total_total)); |
4764
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6785 msg_advance(13); |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6786 msg_outnum(total_count); |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
6787 msg_puts("\n"); |
4764
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6788 } |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6789 } |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6790 #endif |
f824cb97eb92
updated for version 7.3.1129
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
6791 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17907
diff
changeset
|
6792 #endif // FEAT_SYN_HL |