Mercurial > vim
annotate src/version.c @ 8835:c1a5623cfc86 v7.4.1705
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Apr 3 22:08:05 2016 +0200
patch 7.4.1705
Problem: The 'guifont' option does not allow for a quality setting.
Solution: Add the "q" item, supported on MS-Windows. (Yasuhiro Matsumoto)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 03 Apr 2016 22:15:05 +0200 |
parents | dc10bd23f918 |
children | e6c92db1e8b8 |
rev | line source |
---|---|
7 | 1 /* vi:set ts=8 sts=4 sw=4: |
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 #include "vim.h" | |
11 | |
12 #ifdef AMIGA | |
13 # include <time.h> /* for time() */ | |
14 #endif | |
15 | |
16 /* | |
17 * Vim originated from Stevie version 3.6 (Fish disk 217) by GRWalter (Fred) | |
18 * It has been changed beyond recognition since then. | |
19 * | |
26 | 20 * Differences between version 6.x and 7.x can be found with ":help version7". |
7 | 21 * Differences between version 5.x and 6.x can be found with ":help version6". |
22 * Differences between version 4.x and 5.x can be found with ":help version5". | |
23 * Differences between version 3.0 and 4.x can be found with ":help version4". | |
24 * All the remarks about older versions have been removed, they are not very | |
25 * interesting. | |
26 */ | |
27 | |
28 #include "version.h" | |
29 | |
378 | 30 char *Version = VIM_VERSION_SHORT; |
31 static char *mediumVersion = VIM_VERSION_MEDIUM; | |
7 | 32 |
33 #if defined(HAVE_DATE_TIME) || defined(PROTO) | |
34 # if (defined(VMS) && defined(VAXC)) || defined(PROTO) | |
35 char longVersion[sizeof(VIM_VERSION_LONG_DATE) + sizeof(__DATE__) | |
36 + sizeof(__TIME__) + 3]; | |
4147 | 37 |
7 | 38 void |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
39 make_version(void) |
7 | 40 { |
41 /* | |
42 * Construct the long version string. Necessary because | |
43 * VAX C can't catenate strings in the preprocessor. | |
44 */ | |
45 strcpy(longVersion, VIM_VERSION_LONG_DATE); | |
46 strcat(longVersion, __DATE__); | |
47 strcat(longVersion, " "); | |
48 strcat(longVersion, __TIME__); | |
49 strcat(longVersion, ")"); | |
50 } | |
51 # else | |
52 char *longVersion = VIM_VERSION_LONG_DATE __DATE__ " " __TIME__ ")"; | |
53 # endif | |
54 #else | |
55 char *longVersion = VIM_VERSION_LONG; | |
56 #endif | |
57 | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
58 static void list_features(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
59 static void version_msg(char *s); |
7 | 60 |
61 static char *(features[]) = | |
62 { | |
5316 | 63 #ifdef HAVE_ACL |
64 "+acl", | |
65 #else | |
66 "-acl", | |
67 #endif | |
7 | 68 #ifdef AMIGA /* only for Amiga systems */ |
69 # ifdef FEAT_ARP | |
70 "+ARP", | |
71 # else | |
72 "-ARP", | |
73 # endif | |
74 #endif | |
75 #ifdef FEAT_ARABIC | |
76 "+arabic", | |
77 #else | |
78 "-arabic", | |
79 #endif | |
80 #ifdef FEAT_AUTOCMD | |
81 "+autocmd", | |
82 #else | |
83 "-autocmd", | |
84 #endif | |
85 #ifdef FEAT_BEVAL | |
86 "+balloon_eval", | |
87 #else | |
88 "-balloon_eval", | |
89 #endif | |
90 #ifdef FEAT_BROWSE | |
91 "+browse", | |
92 #else | |
93 "-browse", | |
94 #endif | |
95 #ifdef NO_BUILTIN_TCAPS | |
96 "-builtin_terms", | |
97 #endif | |
98 #ifdef SOME_BUILTIN_TCAPS | |
99 "+builtin_terms", | |
100 #endif | |
101 #ifdef ALL_BUILTIN_TCAPS | |
102 "++builtin_terms", | |
103 #endif | |
104 #ifdef FEAT_BYTEOFF | |
105 "+byte_offset", | |
106 #else | |
107 "-byte_offset", | |
108 #endif | |
8493
caed4b2d305f
commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821
Christian Brabandt <cb@256bit.org>
parents:
8491
diff
changeset
|
109 #ifdef FEAT_JOB_CHANNEL |
7759
39be49fd70d9
commit https://github.com/vim/vim/commit/5aec481097278d7d4e6559d9db2b9c3b8aa0dd5d
Christian Brabandt <cb@256bit.org>
parents:
7757
diff
changeset
|
110 "+channel", |
39be49fd70d9
commit https://github.com/vim/vim/commit/5aec481097278d7d4e6559d9db2b9c3b8aa0dd5d
Christian Brabandt <cb@256bit.org>
parents:
7757
diff
changeset
|
111 #else |
39be49fd70d9
commit https://github.com/vim/vim/commit/5aec481097278d7d4e6559d9db2b9c3b8aa0dd5d
Christian Brabandt <cb@256bit.org>
parents:
7757
diff
changeset
|
112 "-channel", |
39be49fd70d9
commit https://github.com/vim/vim/commit/5aec481097278d7d4e6559d9db2b9c3b8aa0dd5d
Christian Brabandt <cb@256bit.org>
parents:
7757
diff
changeset
|
113 #endif |
7 | 114 #ifdef FEAT_CINDENT |
115 "+cindent", | |
116 #else | |
117 "-cindent", | |
118 #endif | |
119 #ifdef FEAT_CLIENTSERVER | |
120 "+clientserver", | |
121 #else | |
122 "-clientserver", | |
123 #endif | |
124 #ifdef FEAT_CLIPBOARD | |
125 "+clipboard", | |
126 #else | |
127 "-clipboard", | |
128 #endif | |
129 #ifdef FEAT_CMDL_COMPL | |
130 "+cmdline_compl", | |
131 #else | |
132 "-cmdline_compl", | |
133 #endif | |
134 #ifdef FEAT_CMDHIST | |
135 "+cmdline_hist", | |
136 #else | |
137 "-cmdline_hist", | |
138 #endif | |
139 #ifdef FEAT_CMDL_INFO | |
140 "+cmdline_info", | |
141 #else | |
142 "-cmdline_info", | |
143 #endif | |
144 #ifdef FEAT_COMMENTS | |
145 "+comments", | |
146 #else | |
147 "-comments", | |
148 #endif | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
149 #ifdef FEAT_CONCEAL |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
150 "+conceal", |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
151 #else |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
152 "-conceal", |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
153 #endif |
7 | 154 #ifdef FEAT_CRYPT |
155 "+cryptv", | |
156 #else | |
157 "-cryptv", | |
158 #endif | |
159 #ifdef FEAT_CSCOPE | |
160 "+cscope", | |
161 #else | |
162 "-cscope", | |
163 #endif | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
164 #ifdef FEAT_CURSORBIND |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
165 "+cursorbind", |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
166 #else |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
167 "-cursorbind", |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
168 #endif |
647 | 169 #ifdef CURSOR_SHAPE |
170 "+cursorshape", | |
171 #else | |
172 "-cursorshape", | |
173 #endif | |
7 | 174 #if defined(FEAT_CON_DIALOG) && defined(FEAT_GUI_DIALOG) |
175 "+dialog_con_gui", | |
176 #else | |
177 # if defined(FEAT_CON_DIALOG) | |
178 "+dialog_con", | |
179 # else | |
180 # if defined(FEAT_GUI_DIALOG) | |
181 "+dialog_gui", | |
182 # else | |
183 "-dialog", | |
184 # endif | |
185 # endif | |
186 #endif | |
187 #ifdef FEAT_DIFF | |
188 "+diff", | |
189 #else | |
190 "-diff", | |
191 #endif | |
192 #ifdef FEAT_DIGRAPHS | |
193 "+digraphs", | |
194 #else | |
195 "-digraphs", | |
196 #endif | |
6110 | 197 #ifdef FEAT_GUI_W32 |
198 # ifdef FEAT_DIRECTX | |
199 "+directx", | |
200 # else | |
201 "-directx", | |
202 # endif | |
203 #endif | |
7 | 204 #ifdef FEAT_DND |
205 "+dnd", | |
206 #else | |
207 "-dnd", | |
208 #endif | |
209 #ifdef EBCDIC | |
210 "+ebcdic", | |
211 #else | |
212 "-ebcdic", | |
213 #endif | |
214 #ifdef FEAT_EMACS_TAGS | |
215 "+emacs_tags", | |
216 #else | |
217 "-emacs_tags", | |
218 #endif | |
219 #ifdef FEAT_EVAL | |
220 "+eval", | |
221 #else | |
222 "-eval", | |
223 #endif | |
224 "+ex_extra", | |
225 #ifdef FEAT_SEARCH_EXTRA | |
226 "+extra_search", | |
227 #else | |
228 "-extra_search", | |
229 #endif | |
230 #ifdef FEAT_FKMAP | |
231 "+farsi", | |
232 #else | |
233 "-farsi", | |
234 #endif | |
235 #ifdef FEAT_SEARCHPATH | |
236 "+file_in_path", | |
237 #else | |
238 "-file_in_path", | |
239 #endif | |
240 #ifdef FEAT_FIND_ID | |
241 "+find_in_path", | |
242 #else | |
243 "-find_in_path", | |
244 #endif | |
1621 | 245 #ifdef FEAT_FLOAT |
246 "+float", | |
247 #else | |
248 "-float", | |
249 #endif | |
7 | 250 #ifdef FEAT_FOLDING |
251 "+folding", | |
252 #else | |
253 "-folding", | |
254 #endif | |
255 #ifdef FEAT_FOOTER | |
256 "+footer", | |
257 #else | |
258 "-footer", | |
259 #endif | |
260 /* only interesting on Unix systems */ | |
261 #if !defined(USE_SYSTEM) && defined(UNIX) | |
262 "+fork()", | |
263 #endif | |
264 #ifdef FEAT_GETTEXT | |
265 # ifdef DYNAMIC_GETTEXT | |
266 "+gettext/dyn", | |
267 # else | |
268 "+gettext", | |
269 # endif | |
270 #else | |
271 "-gettext", | |
272 #endif | |
273 #ifdef FEAT_HANGULIN | |
274 "+hangul_input", | |
275 #else | |
276 "-hangul_input", | |
277 #endif | |
278 #if (defined(HAVE_ICONV_H) && defined(USE_ICONV)) || defined(DYNAMIC_ICONV) | |
279 # ifdef DYNAMIC_ICONV | |
280 "+iconv/dyn", | |
281 # else | |
282 "+iconv", | |
283 # endif | |
284 #else | |
285 "-iconv", | |
286 #endif | |
287 #ifdef FEAT_INS_EXPAND | |
288 "+insert_expand", | |
289 #else | |
290 "-insert_expand", | |
291 #endif | |
8493
caed4b2d305f
commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821
Christian Brabandt <cb@256bit.org>
parents:
8491
diff
changeset
|
292 #ifdef FEAT_JOB_CHANNEL |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7955
diff
changeset
|
293 "+job", |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7955
diff
changeset
|
294 #else |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7955
diff
changeset
|
295 "-job", |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7955
diff
changeset
|
296 #endif |
7 | 297 #ifdef FEAT_JUMPLIST |
298 "+jumplist", | |
299 #else | |
300 "-jumplist", | |
301 #endif | |
302 #ifdef FEAT_KEYMAP | |
303 "+keymap", | |
304 #else | |
305 "-keymap", | |
306 #endif | |
307 #ifdef FEAT_LANGMAP | |
308 "+langmap", | |
309 #else | |
310 "-langmap", | |
311 #endif | |
312 #ifdef FEAT_LIBCALL | |
313 "+libcall", | |
314 #else | |
315 "-libcall", | |
316 #endif | |
317 #ifdef FEAT_LINEBREAK | |
318 "+linebreak", | |
319 #else | |
320 "-linebreak", | |
321 #endif | |
322 #ifdef FEAT_LISP | |
323 "+lispindent", | |
324 #else | |
325 "-lispindent", | |
326 #endif | |
327 #ifdef FEAT_LISTCMDS | |
328 "+listcmds", | |
329 #else | |
330 "-listcmds", | |
331 #endif | |
332 #ifdef FEAT_LOCALMAP | |
333 "+localmap", | |
334 #else | |
335 "-localmap", | |
336 #endif | |
2320
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
337 #ifdef FEAT_LUA |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
338 # ifdef DYNAMIC_LUA |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
339 "+lua/dyn", |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
340 # else |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
341 "+lua", |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
342 # endif |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
343 #else |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
344 "-lua", |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
345 #endif |
7 | 346 #ifdef FEAT_MENU |
347 "+menu", | |
348 #else | |
349 "-menu", | |
350 #endif | |
351 #ifdef FEAT_SESSION | |
352 "+mksession", | |
353 #else | |
354 "-mksession", | |
355 #endif | |
356 #ifdef FEAT_MODIFY_FNAME | |
357 "+modify_fname", | |
358 #else | |
359 "-modify_fname", | |
360 #endif | |
361 #ifdef FEAT_MOUSE | |
362 "+mouse", | |
363 # ifdef FEAT_MOUSESHAPE | |
364 "+mouseshape", | |
365 # else | |
366 "-mouseshape", | |
367 # endif | |
368 # else | |
369 "-mouse", | |
370 #endif | |
3898 | 371 |
7 | 372 #if defined(UNIX) || defined(VMS) |
373 # ifdef FEAT_MOUSE_DEC | |
374 "+mouse_dec", | |
375 # else | |
376 "-mouse_dec", | |
377 # endif | |
378 # ifdef FEAT_MOUSE_GPM | |
379 "+mouse_gpm", | |
380 # else | |
381 "-mouse_gpm", | |
382 # endif | |
383 # ifdef FEAT_MOUSE_JSB | |
384 "+mouse_jsbterm", | |
385 # else | |
386 "-mouse_jsbterm", | |
387 # endif | |
388 # ifdef FEAT_MOUSE_NET | |
389 "+mouse_netterm", | |
390 # else | |
391 "-mouse_netterm", | |
392 # endif | |
393 #endif | |
3898 | 394 |
7 | 395 #ifdef __QNX__ |
396 # ifdef FEAT_MOUSE_PTERM | |
397 "+mouse_pterm", | |
398 # else | |
399 "-mouse_pterm", | |
400 # endif | |
401 #endif | |
3898 | 402 |
403 #if defined(UNIX) || defined(VMS) | |
404 # ifdef FEAT_MOUSE_SGR | |
405 "+mouse_sgr", | |
406 # else | |
407 "-mouse_sgr", | |
408 # endif | |
409 # ifdef FEAT_SYSMOUSE | |
410 "+mouse_sysmouse", | |
411 # else | |
412 "-mouse_sysmouse", | |
413 # endif | |
414 # ifdef FEAT_MOUSE_URXVT | |
415 "+mouse_urxvt", | |
416 # else | |
417 "-mouse_urxvt", | |
418 # endif | |
419 # ifdef FEAT_MOUSE_XTERM | |
420 "+mouse_xterm", | |
421 # else | |
422 "-mouse_xterm", | |
423 # endif | |
424 #endif | |
425 | |
7 | 426 #ifdef FEAT_MBYTE_IME |
427 # ifdef DYNAMIC_IME | |
428 "+multi_byte_ime/dyn", | |
429 # else | |
430 "+multi_byte_ime", | |
431 # endif | |
432 #else | |
433 # ifdef FEAT_MBYTE | |
434 "+multi_byte", | |
435 # else | |
436 "-multi_byte", | |
437 # endif | |
438 #endif | |
439 #ifdef FEAT_MULTI_LANG | |
440 "+multi_lang", | |
441 #else | |
442 "-multi_lang", | |
443 #endif | |
14 | 444 #ifdef FEAT_MZSCHEME |
132 | 445 # ifdef DYNAMIC_MZSCHEME |
446 "+mzscheme/dyn", | |
447 # else | |
14 | 448 "+mzscheme", |
132 | 449 # endif |
14 | 450 #else |
451 "-mzscheme", | |
452 #endif | |
7 | 453 #ifdef FEAT_NETBEANS_INTG |
454 "+netbeans_intg", | |
455 #else | |
456 "-netbeans_intg", | |
457 #endif | |
458 #ifdef FEAT_GUI_W32 | |
459 # ifdef FEAT_OLE | |
460 "+ole", | |
461 # else | |
462 "-ole", | |
463 # endif | |
464 #endif | |
8182
95d59081580f
commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents:
8180
diff
changeset
|
465 "+packages", |
7 | 466 #ifdef FEAT_PATH_EXTRA |
467 "+path_extra", | |
468 #else | |
469 "-path_extra", | |
470 #endif | |
471 #ifdef FEAT_PERL | |
472 # ifdef DYNAMIC_PERL | |
473 "+perl/dyn", | |
474 # else | |
475 "+perl", | |
476 # endif | |
477 #else | |
478 "-perl", | |
479 #endif | |
2214
f8222d1f9a73
Included patch for persistent undo. Lots of changes and added test.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
480 #ifdef FEAT_PERSISTENT_UNDO |
f8222d1f9a73
Included patch for persistent undo. Lots of changes and added test.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
481 "+persistent_undo", |
f8222d1f9a73
Included patch for persistent undo. Lots of changes and added test.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
482 #else |
f8222d1f9a73
Included patch for persistent undo. Lots of changes and added test.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
483 "-persistent_undo", |
f8222d1f9a73
Included patch for persistent undo. Lots of changes and added test.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
484 #endif |
7 | 485 #ifdef FEAT_PRINTER |
486 # ifdef FEAT_POSTSCRIPT | |
487 "+postscript", | |
488 # else | |
489 "-postscript", | |
490 # endif | |
491 "+printer", | |
492 #else | |
493 "-printer", | |
494 #endif | |
170 | 495 #ifdef FEAT_PROFILE |
496 "+profile", | |
497 #else | |
498 "-profile", | |
499 #endif | |
7 | 500 #ifdef FEAT_PYTHON |
501 # ifdef DYNAMIC_PYTHON | |
502 "+python/dyn", | |
503 # else | |
504 "+python", | |
505 # endif | |
506 #else | |
507 "-python", | |
508 #endif | |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
509 #ifdef FEAT_PYTHON3 |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
510 # ifdef DYNAMIC_PYTHON3 |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
511 "+python3/dyn", |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
512 # else |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
513 "+python3", |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
514 # endif |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
515 #else |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
516 "-python3", |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
517 #endif |
7 | 518 #ifdef FEAT_QUICKFIX |
519 "+quickfix", | |
520 #else | |
521 "-quickfix", | |
522 #endif | |
857 | 523 #ifdef FEAT_RELTIME |
524 "+reltime", | |
525 #else | |
526 "-reltime", | |
527 #endif | |
7 | 528 #ifdef FEAT_RIGHTLEFT |
529 "+rightleft", | |
530 #else | |
531 "-rightleft", | |
532 #endif | |
533 #ifdef FEAT_RUBY | |
534 # ifdef DYNAMIC_RUBY | |
535 "+ruby/dyn", | |
536 # else | |
537 "+ruby", | |
538 # endif | |
539 #else | |
540 "-ruby", | |
541 #endif | |
542 #ifdef FEAT_SCROLLBIND | |
543 "+scrollbind", | |
544 #else | |
545 "-scrollbind", | |
546 #endif | |
547 #ifdef FEAT_SIGNS | |
548 "+signs", | |
549 #else | |
550 "-signs", | |
551 #endif | |
552 #ifdef FEAT_SMARTINDENT | |
553 "+smartindent", | |
554 #else | |
555 "-smartindent", | |
556 #endif | |
1989 | 557 #ifdef STARTUPTIME |
558 "+startuptime", | |
559 #else | |
560 "-startuptime", | |
561 #endif | |
7 | 562 #ifdef FEAT_STL_OPT |
563 "+statusline", | |
564 #else | |
565 "-statusline", | |
566 #endif | |
567 #ifdef FEAT_SUN_WORKSHOP | |
568 "+sun_workshop", | |
569 #else | |
570 "-sun_workshop", | |
571 #endif | |
572 #ifdef FEAT_SYN_HL | |
573 "+syntax", | |
574 #else | |
575 "-syntax", | |
576 #endif | |
577 /* only interesting on Unix systems */ | |
578 #if defined(USE_SYSTEM) && (defined(UNIX) || defined(__EMX__)) | |
579 "+system()", | |
580 #endif | |
581 #ifdef FEAT_TAG_BINS | |
582 "+tag_binary", | |
583 #else | |
584 "-tag_binary", | |
585 #endif | |
586 #ifdef FEAT_TAG_OLDSTATIC | |
587 "+tag_old_static", | |
588 #else | |
589 "-tag_old_static", | |
590 #endif | |
591 #ifdef FEAT_TAG_ANYWHITE | |
592 "+tag_any_white", | |
593 #else | |
594 "-tag_any_white", | |
595 #endif | |
596 #ifdef FEAT_TCL | |
597 # ifdef DYNAMIC_TCL | |
598 "+tcl/dyn", | |
599 # else | |
600 "+tcl", | |
601 # endif | |
602 #else | |
603 "-tcl", | |
604 #endif | |
605 #if defined(UNIX) || defined(__EMX__) | |
606 /* only Unix (or OS/2 with EMX!) can have terminfo instead of termcap */ | |
607 # ifdef TERMINFO | |
608 "+terminfo", | |
609 # else | |
610 "-terminfo", | |
611 # endif | |
612 #else /* unix always includes termcap support */ | |
613 # ifdef HAVE_TGETENT | |
614 "+tgetent", | |
615 # else | |
616 "-tgetent", | |
617 # endif | |
618 #endif | |
619 #ifdef FEAT_TERMRESPONSE | |
620 "+termresponse", | |
621 #else | |
622 "-termresponse", | |
623 #endif | |
624 #ifdef FEAT_TEXTOBJ | |
625 "+textobjects", | |
626 #else | |
627 "-textobjects", | |
628 #endif | |
8577
63dc856bd13d
commit https://github.com/vim/vim/commit/975b5271eed4fa0500c24a8f37be0b1797cb9db7
Christian Brabandt <cb@256bit.org>
parents:
8575
diff
changeset
|
629 #ifdef FEAT_TIMERS |
63dc856bd13d
commit https://github.com/vim/vim/commit/975b5271eed4fa0500c24a8f37be0b1797cb9db7
Christian Brabandt <cb@256bit.org>
parents:
8575
diff
changeset
|
630 "+timers", |
63dc856bd13d
commit https://github.com/vim/vim/commit/975b5271eed4fa0500c24a8f37be0b1797cb9db7
Christian Brabandt <cb@256bit.org>
parents:
8575
diff
changeset
|
631 #else |
63dc856bd13d
commit https://github.com/vim/vim/commit/975b5271eed4fa0500c24a8f37be0b1797cb9db7
Christian Brabandt <cb@256bit.org>
parents:
8575
diff
changeset
|
632 "-timers", |
63dc856bd13d
commit https://github.com/vim/vim/commit/975b5271eed4fa0500c24a8f37be0b1797cb9db7
Christian Brabandt <cb@256bit.org>
parents:
8575
diff
changeset
|
633 #endif |
7 | 634 #ifdef FEAT_TITLE |
635 "+title", | |
636 #else | |
637 "-title", | |
638 #endif | |
639 #ifdef FEAT_TOOLBAR | |
640 "+toolbar", | |
641 #else | |
642 "-toolbar", | |
643 #endif | |
644 #ifdef FEAT_USR_CMDS | |
645 "+user_commands", | |
646 #else | |
647 "-user_commands", | |
648 #endif | |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8641
diff
changeset
|
649 #ifdef FEAT_WINDOWS |
7 | 650 "+vertsplit", |
651 #else | |
652 "-vertsplit", | |
653 #endif | |
654 #ifdef FEAT_VIRTUALEDIT | |
655 "+virtualedit", | |
656 #else | |
657 "-virtualedit", | |
658 #endif | |
659 "+visual", | |
5735 | 660 #ifdef FEAT_VISUALEXTRA |
7 | 661 "+visualextra", |
5735 | 662 #else |
7 | 663 "-visualextra", |
664 #endif | |
665 #ifdef FEAT_VIMINFO | |
666 "+viminfo", | |
667 #else | |
668 "-viminfo", | |
669 #endif | |
670 #ifdef FEAT_VREPLACE | |
671 "+vreplace", | |
672 #else | |
673 "-vreplace", | |
674 #endif | |
675 #ifdef FEAT_WILDIGN | |
676 "+wildignore", | |
677 #else | |
678 "-wildignore", | |
679 #endif | |
680 #ifdef FEAT_WILDMENU | |
681 "+wildmenu", | |
682 #else | |
683 "-wildmenu", | |
684 #endif | |
685 #ifdef FEAT_WINDOWS | |
686 "+windows", | |
687 #else | |
688 "-windows", | |
689 #endif | |
690 #ifdef FEAT_WRITEBACKUP | |
691 "+writebackup", | |
692 #else | |
693 "-writebackup", | |
694 #endif | |
695 #if defined(UNIX) || defined(VMS) | |
696 # ifdef FEAT_X11 | |
697 "+X11", | |
698 # else | |
699 "-X11", | |
700 # endif | |
701 #endif | |
702 #ifdef FEAT_XFONTSET | |
703 "+xfontset", | |
704 #else | |
705 "-xfontset", | |
706 #endif | |
707 #ifdef FEAT_XIM | |
708 "+xim", | |
709 #else | |
710 "-xim", | |
711 #endif | |
712 #if defined(UNIX) || defined(VMS) | |
713 # ifdef USE_XSMP_INTERACT | |
714 "+xsmp_interact", | |
715 # else | |
716 # ifdef USE_XSMP | |
717 "+xsmp", | |
718 # else | |
719 "-xsmp", | |
720 # endif | |
721 # endif | |
722 # ifdef FEAT_XCLIPBOARD | |
723 "+xterm_clipboard", | |
724 # else | |
725 "-xterm_clipboard", | |
726 # endif | |
727 #endif | |
728 #ifdef FEAT_XTERM_SAVE | |
729 "+xterm_save", | |
730 #else | |
731 "-xterm_save", | |
732 #endif | |
733 #ifdef WIN3264 | |
734 # ifdef FEAT_XPM_W32 | |
735 "+xpm_w32", | |
736 # else | |
737 "-xpm_w32", | |
738 # endif | |
5316 | 739 #else |
740 # ifdef HAVE_XPM | |
741 "+xpm", | |
742 # else | |
743 "-xpm", | |
744 # endif | |
7 | 745 #endif |
746 NULL | |
747 }; | |
748 | |
749 static int included_patches[] = | |
750 { /* Add new patch number below this line */ | |
751 /**/ | |
8835
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8833
diff
changeset
|
752 1705, |
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8833
diff
changeset
|
753 /**/ |
8833
dc10bd23f918
commit https://github.com/vim/vim/commit/3dda7db4e1f7c4a8110a1f83001ec36b46693d27
Christian Brabandt <cb@256bit.org>
parents:
8831
diff
changeset
|
754 1704, |
dc10bd23f918
commit https://github.com/vim/vim/commit/3dda7db4e1f7c4a8110a1f83001ec36b46693d27
Christian Brabandt <cb@256bit.org>
parents:
8831
diff
changeset
|
755 /**/ |
8831
6f41d68aa68e
commit https://github.com/vim/vim/commit/b50e5f56861deb867478997397f7c784a7043233
Christian Brabandt <cb@256bit.org>
parents:
8829
diff
changeset
|
756 1703, |
6f41d68aa68e
commit https://github.com/vim/vim/commit/b50e5f56861deb867478997397f7c784a7043233
Christian Brabandt <cb@256bit.org>
parents:
8829
diff
changeset
|
757 /**/ |
8829
a2c27f6aaf3a
commit https://github.com/vim/vim/commit/4afc7c5d4a73340831077a02bfe1f74935e7f4a1
Christian Brabandt <cb@256bit.org>
parents:
8827
diff
changeset
|
758 1702, |
a2c27f6aaf3a
commit https://github.com/vim/vim/commit/4afc7c5d4a73340831077a02bfe1f74935e7f4a1
Christian Brabandt <cb@256bit.org>
parents:
8827
diff
changeset
|
759 /**/ |
8827
c154fbd3004f
commit https://github.com/vim/vim/commit/f9f22dbe4f90673ecce601a9dee4bb750ce3cd8f
Christian Brabandt <cb@256bit.org>
parents:
8825
diff
changeset
|
760 1701, |
c154fbd3004f
commit https://github.com/vim/vim/commit/f9f22dbe4f90673ecce601a9dee4bb750ce3cd8f
Christian Brabandt <cb@256bit.org>
parents:
8825
diff
changeset
|
761 /**/ |
8825
318eaa6fa973
commit https://github.com/vim/vim/commit/22e421549d54147d003f6444de007cb1d73f1d27
Christian Brabandt <cb@256bit.org>
parents:
8823
diff
changeset
|
762 1700, |
318eaa6fa973
commit https://github.com/vim/vim/commit/22e421549d54147d003f6444de007cb1d73f1d27
Christian Brabandt <cb@256bit.org>
parents:
8823
diff
changeset
|
763 /**/ |
8823
6d92bbe6c7de
commit https://github.com/vim/vim/commit/71fb0c146bef08dc276fc5793bd47366e6e0f32a
Christian Brabandt <cb@256bit.org>
parents:
8821
diff
changeset
|
764 1699, |
6d92bbe6c7de
commit https://github.com/vim/vim/commit/71fb0c146bef08dc276fc5793bd47366e6e0f32a
Christian Brabandt <cb@256bit.org>
parents:
8821
diff
changeset
|
765 /**/ |
8821
0bab7b98e930
commit https://github.com/vim/vim/commit/298c65971e884666d57c32bff6b730d517d9dc30
Christian Brabandt <cb@256bit.org>
parents:
8819
diff
changeset
|
766 1698, |
0bab7b98e930
commit https://github.com/vim/vim/commit/298c65971e884666d57c32bff6b730d517d9dc30
Christian Brabandt <cb@256bit.org>
parents:
8819
diff
changeset
|
767 /**/ |
8819
a1132255e3e1
commit https://github.com/vim/vim/commit/cb0700844c1274fe8bc0ceaffaee0ad21c406f30
Christian Brabandt <cb@256bit.org>
parents:
8817
diff
changeset
|
768 1697, |
a1132255e3e1
commit https://github.com/vim/vim/commit/cb0700844c1274fe8bc0ceaffaee0ad21c406f30
Christian Brabandt <cb@256bit.org>
parents:
8817
diff
changeset
|
769 /**/ |
8817
b7eb7bbd71d0
commit https://github.com/vim/vim/commit/fd773e9e88add7d1ffef890fb9f3a00d613b4326
Christian Brabandt <cb@256bit.org>
parents:
8815
diff
changeset
|
770 1696, |
b7eb7bbd71d0
commit https://github.com/vim/vim/commit/fd773e9e88add7d1ffef890fb9f3a00d613b4326
Christian Brabandt <cb@256bit.org>
parents:
8815
diff
changeset
|
771 /**/ |
8815
50d9fb580ffe
commit https://github.com/vim/vim/commit/8bc189e81aa98ba4aebb03a9dc9527a210fce816
Christian Brabandt <cb@256bit.org>
parents:
8813
diff
changeset
|
772 1695, |
50d9fb580ffe
commit https://github.com/vim/vim/commit/8bc189e81aa98ba4aebb03a9dc9527a210fce816
Christian Brabandt <cb@256bit.org>
parents:
8813
diff
changeset
|
773 /**/ |
8813
b92938076e40
commit https://github.com/vim/vim/commit/f28d87146544e3b5d70aaa6a2513019f6de043ad
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
774 1694, |
b92938076e40
commit https://github.com/vim/vim/commit/f28d87146544e3b5d70aaa6a2513019f6de043ad
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
775 /**/ |
8810
83d0b976d9b3
commit https://github.com/vim/vim/commit/864733ad92e30cd603314604af73f25106db4c90
Christian Brabandt <cb@256bit.org>
parents:
8808
diff
changeset
|
776 1693, |
83d0b976d9b3
commit https://github.com/vim/vim/commit/864733ad92e30cd603314604af73f25106db4c90
Christian Brabandt <cb@256bit.org>
parents:
8808
diff
changeset
|
777 /**/ |
8808
6b70b9cdebfc
commit https://github.com/vim/vim/commit/9bd547aca41799605c3a3f83444f6725c2d6eda9
Christian Brabandt <cb@256bit.org>
parents:
8806
diff
changeset
|
778 1692, |
6b70b9cdebfc
commit https://github.com/vim/vim/commit/9bd547aca41799605c3a3f83444f6725c2d6eda9
Christian Brabandt <cb@256bit.org>
parents:
8806
diff
changeset
|
779 /**/ |
8806
8fff73f17ff1
commit https://github.com/vim/vim/commit/b681be175b6991cdc2b8ddd49b0e97e3fe2b201e
Christian Brabandt <cb@256bit.org>
parents:
8804
diff
changeset
|
780 1691, |
8fff73f17ff1
commit https://github.com/vim/vim/commit/b681be175b6991cdc2b8ddd49b0e97e3fe2b201e
Christian Brabandt <cb@256bit.org>
parents:
8804
diff
changeset
|
781 /**/ |
8804
75446578a52f
commit https://github.com/vim/vim/commit/42356150badca33b4e42dc8172abbceff2e86cbe
Christian Brabandt <cb@256bit.org>
parents:
8802
diff
changeset
|
782 1690, |
75446578a52f
commit https://github.com/vim/vim/commit/42356150badca33b4e42dc8172abbceff2e86cbe
Christian Brabandt <cb@256bit.org>
parents:
8802
diff
changeset
|
783 /**/ |
8802
eaf11fa2fec8
commit https://github.com/vim/vim/commit/758535a1df4c5e86b45dddf12db2a54dea28ca40
Christian Brabandt <cb@256bit.org>
parents:
8800
diff
changeset
|
784 1689, |
eaf11fa2fec8
commit https://github.com/vim/vim/commit/758535a1df4c5e86b45dddf12db2a54dea28ca40
Christian Brabandt <cb@256bit.org>
parents:
8800
diff
changeset
|
785 /**/ |
8800
f57949e1e9f1
commit https://github.com/vim/vim/commit/67c2c058ea34628bd575aac7ddba4cd3b244ed57
Christian Brabandt <cb@256bit.org>
parents:
8798
diff
changeset
|
786 1688, |
f57949e1e9f1
commit https://github.com/vim/vim/commit/67c2c058ea34628bd575aac7ddba4cd3b244ed57
Christian Brabandt <cb@256bit.org>
parents:
8798
diff
changeset
|
787 /**/ |
8798
176647a751d7
commit https://github.com/vim/vim/commit/bdf0bda968a53a55149a4c83a10a60c28e431305
Christian Brabandt <cb@256bit.org>
parents:
8796
diff
changeset
|
788 1687, |
176647a751d7
commit https://github.com/vim/vim/commit/bdf0bda968a53a55149a4c83a10a60c28e431305
Christian Brabandt <cb@256bit.org>
parents:
8796
diff
changeset
|
789 /**/ |
8796
fb764adba294
commit https://github.com/vim/vim/commit/e9c07270031e312082604d3505650f185aa65948
Christian Brabandt <cb@256bit.org>
parents:
8793
diff
changeset
|
790 1686, |
fb764adba294
commit https://github.com/vim/vim/commit/e9c07270031e312082604d3505650f185aa65948
Christian Brabandt <cb@256bit.org>
parents:
8793
diff
changeset
|
791 /**/ |
8793
dda254280bab
commit https://github.com/vim/vim/commit/7fed5c18f8577b75404b80d8b9a9907b1bbd27e4
Christian Brabandt <cb@256bit.org>
parents:
8791
diff
changeset
|
792 1685, |
dda254280bab
commit https://github.com/vim/vim/commit/7fed5c18f8577b75404b80d8b9a9907b1bbd27e4
Christian Brabandt <cb@256bit.org>
parents:
8791
diff
changeset
|
793 /**/ |
8791
43b5ff7837ea
commit https://github.com/vim/vim/commit/d18cfb7dbfd32af729d3ac5136f77dcdbefe5dee
Christian Brabandt <cb@256bit.org>
parents:
8789
diff
changeset
|
794 1684, |
43b5ff7837ea
commit https://github.com/vim/vim/commit/d18cfb7dbfd32af729d3ac5136f77dcdbefe5dee
Christian Brabandt <cb@256bit.org>
parents:
8789
diff
changeset
|
795 /**/ |
8789
667da8443275
commit https://github.com/vim/vim/commit/e609ad557c15e3e5d1e9ace2c578f48c5589c488
Christian Brabandt <cb@256bit.org>
parents:
8787
diff
changeset
|
796 1683, |
667da8443275
commit https://github.com/vim/vim/commit/e609ad557c15e3e5d1e9ace2c578f48c5589c488
Christian Brabandt <cb@256bit.org>
parents:
8787
diff
changeset
|
797 /**/ |
8787
33f5732d8932
commit https://github.com/vim/vim/commit/72188e9aae26e6191c68ff673ef145104b17c64f
Christian Brabandt <cb@256bit.org>
parents:
8785
diff
changeset
|
798 1682, |
33f5732d8932
commit https://github.com/vim/vim/commit/72188e9aae26e6191c68ff673ef145104b17c64f
Christian Brabandt <cb@256bit.org>
parents:
8785
diff
changeset
|
799 /**/ |
8785
1cb59cd2d382
commit https://github.com/vim/vim/commit/ef9d9b94a8803c405884bb6914ed745ede57c596
Christian Brabandt <cb@256bit.org>
parents:
8783
diff
changeset
|
800 1681, |
1cb59cd2d382
commit https://github.com/vim/vim/commit/ef9d9b94a8803c405884bb6914ed745ede57c596
Christian Brabandt <cb@256bit.org>
parents:
8783
diff
changeset
|
801 /**/ |
8783
23b7f05a7f48
commit https://github.com/vim/vim/commit/925ccfde79bf734bc89269c705cebe2d49fe6444
Christian Brabandt <cb@256bit.org>
parents:
8781
diff
changeset
|
802 1680, |
23b7f05a7f48
commit https://github.com/vim/vim/commit/925ccfde79bf734bc89269c705cebe2d49fe6444
Christian Brabandt <cb@256bit.org>
parents:
8781
diff
changeset
|
803 /**/ |
8781
65be74c1467b
commit https://github.com/vim/vim/commit/7d2a5796d39905a972e8f74af5f7b0a62e3de173
Christian Brabandt <cb@256bit.org>
parents:
8779
diff
changeset
|
804 1679, |
65be74c1467b
commit https://github.com/vim/vim/commit/7d2a5796d39905a972e8f74af5f7b0a62e3de173
Christian Brabandt <cb@256bit.org>
parents:
8779
diff
changeset
|
805 /**/ |
8779
26495bd795d2
commit https://github.com/vim/vim/commit/8b29aba0192cc56294ef49bb3c01adff4b8f3a28
Christian Brabandt <cb@256bit.org>
parents:
8777
diff
changeset
|
806 1678, |
26495bd795d2
commit https://github.com/vim/vim/commit/8b29aba0192cc56294ef49bb3c01adff4b8f3a28
Christian Brabandt <cb@256bit.org>
parents:
8777
diff
changeset
|
807 /**/ |
8777
a345060d671a
commit https://github.com/vim/vim/commit/0b9e4d1224522791c0dbbd45742cbd688be823f3
Christian Brabandt <cb@256bit.org>
parents:
8775
diff
changeset
|
808 1677, |
a345060d671a
commit https://github.com/vim/vim/commit/0b9e4d1224522791c0dbbd45742cbd688be823f3
Christian Brabandt <cb@256bit.org>
parents:
8775
diff
changeset
|
809 /**/ |
8775
d5136647ce31
commit https://github.com/vim/vim/commit/fead3ac9a35e0fc358141d3eb19574cd8a3ecb55
Christian Brabandt <cb@256bit.org>
parents:
8773
diff
changeset
|
810 1676, |
d5136647ce31
commit https://github.com/vim/vim/commit/fead3ac9a35e0fc358141d3eb19574cd8a3ecb55
Christian Brabandt <cb@256bit.org>
parents:
8773
diff
changeset
|
811 /**/ |
8773
08944b17c29c
commit https://github.com/vim/vim/commit/e101204906e10f1e100e2f9017985c61f26b03ac
Christian Brabandt <cb@256bit.org>
parents:
8771
diff
changeset
|
812 1675, |
08944b17c29c
commit https://github.com/vim/vim/commit/e101204906e10f1e100e2f9017985c61f26b03ac
Christian Brabandt <cb@256bit.org>
parents:
8771
diff
changeset
|
813 /**/ |
8771
57cafbda13ad
commit https://github.com/vim/vim/commit/cf2d8dee5117b9add3a3f5fc91b3569437e7d359
Christian Brabandt <cb@256bit.org>
parents:
8769
diff
changeset
|
814 1674, |
57cafbda13ad
commit https://github.com/vim/vim/commit/cf2d8dee5117b9add3a3f5fc91b3569437e7d359
Christian Brabandt <cb@256bit.org>
parents:
8769
diff
changeset
|
815 /**/ |
8769
7ac9d9e98892
commit https://github.com/vim/vim/commit/2946d0236dc9e23ec0050feacdb959b9ae5672a8
Christian Brabandt <cb@256bit.org>
parents:
8767
diff
changeset
|
816 1673, |
7ac9d9e98892
commit https://github.com/vim/vim/commit/2946d0236dc9e23ec0050feacdb959b9ae5672a8
Christian Brabandt <cb@256bit.org>
parents:
8767
diff
changeset
|
817 /**/ |
8767
3c8ddce4118e
commit https://github.com/vim/vim/commit/e934e8f5c1c5c64411d98583ecbcf89e5ad01073
Christian Brabandt <cb@256bit.org>
parents:
8765
diff
changeset
|
818 1672, |
3c8ddce4118e
commit https://github.com/vim/vim/commit/e934e8f5c1c5c64411d98583ecbcf89e5ad01073
Christian Brabandt <cb@256bit.org>
parents:
8765
diff
changeset
|
819 /**/ |
8765
3daf70d22168
commit https://github.com/vim/vim/commit/61264d99692803eec76a171916ab9720c75536b0
Christian Brabandt <cb@256bit.org>
parents:
8763
diff
changeset
|
820 1671, |
3daf70d22168
commit https://github.com/vim/vim/commit/61264d99692803eec76a171916ab9720c75536b0
Christian Brabandt <cb@256bit.org>
parents:
8763
diff
changeset
|
821 /**/ |
8763
4b83af41f5db
commit https://github.com/vim/vim/commit/a32095fc8fdf5fe3d487c86d9cc54adb1236731e
Christian Brabandt <cb@256bit.org>
parents:
8761
diff
changeset
|
822 1670, |
4b83af41f5db
commit https://github.com/vim/vim/commit/a32095fc8fdf5fe3d487c86d9cc54adb1236731e
Christian Brabandt <cb@256bit.org>
parents:
8761
diff
changeset
|
823 /**/ |
8761
f8707ec9efe4
commit https://github.com/vim/vim/commit/8b877ac38e96424a08a8b8eb713ef4b3cf0064be
Christian Brabandt <cb@256bit.org>
parents:
8759
diff
changeset
|
824 1669, |
f8707ec9efe4
commit https://github.com/vim/vim/commit/8b877ac38e96424a08a8b8eb713ef4b3cf0064be
Christian Brabandt <cb@256bit.org>
parents:
8759
diff
changeset
|
825 /**/ |
8759
cc2ef7367643
commit https://github.com/vim/vim/commit/ee1f7b3cb71684aaa9bf457e2caf9d02187e6b7c
Christian Brabandt <cb@256bit.org>
parents:
8757
diff
changeset
|
826 1668, |
cc2ef7367643
commit https://github.com/vim/vim/commit/ee1f7b3cb71684aaa9bf457e2caf9d02187e6b7c
Christian Brabandt <cb@256bit.org>
parents:
8757
diff
changeset
|
827 /**/ |
8757
4fb37555e814
commit https://github.com/vim/vim/commit/84e1d2b21a424f2687b61daaf84f5fc4f1ab0abe
Christian Brabandt <cb@256bit.org>
parents:
8755
diff
changeset
|
828 1667, |
4fb37555e814
commit https://github.com/vim/vim/commit/84e1d2b21a424f2687b61daaf84f5fc4f1ab0abe
Christian Brabandt <cb@256bit.org>
parents:
8755
diff
changeset
|
829 /**/ |
8755
7038ec89d1fd
commit https://github.com/vim/vim/commit/46c00a6565b8f1f4b7b1041d03eaceaf6ffc4aee
Christian Brabandt <cb@256bit.org>
parents:
8753
diff
changeset
|
830 1666, |
7038ec89d1fd
commit https://github.com/vim/vim/commit/46c00a6565b8f1f4b7b1041d03eaceaf6ffc4aee
Christian Brabandt <cb@256bit.org>
parents:
8753
diff
changeset
|
831 /**/ |
8753
df91c8263f04
commit https://github.com/vim/vim/commit/8038568722a0aad72d001edf4972c29abab57f8f
Christian Brabandt <cb@256bit.org>
parents:
8751
diff
changeset
|
832 1665, |
df91c8263f04
commit https://github.com/vim/vim/commit/8038568722a0aad72d001edf4972c29abab57f8f
Christian Brabandt <cb@256bit.org>
parents:
8751
diff
changeset
|
833 /**/ |
8751
7f974075eb8f
commit https://github.com/vim/vim/commit/89c64d557dbe0bacfdd7b2872411b00cc1523d85
Christian Brabandt <cb@256bit.org>
parents:
8749
diff
changeset
|
834 1664, |
7f974075eb8f
commit https://github.com/vim/vim/commit/89c64d557dbe0bacfdd7b2872411b00cc1523d85
Christian Brabandt <cb@256bit.org>
parents:
8749
diff
changeset
|
835 /**/ |
8749
65a5a18d3acf
commit https://github.com/vim/vim/commit/ea6553bec340920d8a09c7210cdc2d218e25ace2
Christian Brabandt <cb@256bit.org>
parents:
8746
diff
changeset
|
836 1663, |
65a5a18d3acf
commit https://github.com/vim/vim/commit/ea6553bec340920d8a09c7210cdc2d218e25ace2
Christian Brabandt <cb@256bit.org>
parents:
8746
diff
changeset
|
837 /**/ |
8746
4c38a4733578
commit https://github.com/vim/vim/commit/c4dcd60c76666bf113719f929709ad6120eb6528
Christian Brabandt <cb@256bit.org>
parents:
8744
diff
changeset
|
838 1662, |
4c38a4733578
commit https://github.com/vim/vim/commit/c4dcd60c76666bf113719f929709ad6120eb6528
Christian Brabandt <cb@256bit.org>
parents:
8744
diff
changeset
|
839 /**/ |
8744
ff9973bbbfcb
commit https://github.com/vim/vim/commit/fa8b2e173dd5f6c4a5cfd326abdcf68b8eebf90d
Christian Brabandt <cb@256bit.org>
parents:
8742
diff
changeset
|
840 1661, |
ff9973bbbfcb
commit https://github.com/vim/vim/commit/fa8b2e173dd5f6c4a5cfd326abdcf68b8eebf90d
Christian Brabandt <cb@256bit.org>
parents:
8742
diff
changeset
|
841 /**/ |
8742
03e5171c23e5
commit https://github.com/vim/vim/commit/819821c5a95fc60797ecbb5e5ca1302e397e3d9a
Christian Brabandt <cb@256bit.org>
parents:
8740
diff
changeset
|
842 1660, |
03e5171c23e5
commit https://github.com/vim/vim/commit/819821c5a95fc60797ecbb5e5ca1302e397e3d9a
Christian Brabandt <cb@256bit.org>
parents:
8740
diff
changeset
|
843 /**/ |
8740
a35b596cd7ac
commit https://github.com/vim/vim/commit/e1581307d281ceb35726e1b4ca30ef773a2ef23e
Christian Brabandt <cb@256bit.org>
parents:
8738
diff
changeset
|
844 1659, |
a35b596cd7ac
commit https://github.com/vim/vim/commit/e1581307d281ceb35726e1b4ca30ef773a2ef23e
Christian Brabandt <cb@256bit.org>
parents:
8738
diff
changeset
|
845 /**/ |
8738
e770986c855a
commit https://github.com/vim/vim/commit/1473551a4457d4920b235eeeb9f279e196ee7225
Christian Brabandt <cb@256bit.org>
parents:
8736
diff
changeset
|
846 1658, |
e770986c855a
commit https://github.com/vim/vim/commit/1473551a4457d4920b235eeeb9f279e196ee7225
Christian Brabandt <cb@256bit.org>
parents:
8736
diff
changeset
|
847 /**/ |
8736
06bf71f13eb7
commit https://github.com/vim/vim/commit/8fdd7210479f0c486822ad8934087b4bfd8a4765
Christian Brabandt <cb@256bit.org>
parents:
8734
diff
changeset
|
848 1657, |
06bf71f13eb7
commit https://github.com/vim/vim/commit/8fdd7210479f0c486822ad8934087b4bfd8a4765
Christian Brabandt <cb@256bit.org>
parents:
8734
diff
changeset
|
849 /**/ |
8734
986f7c00d43d
commit https://github.com/vim/vim/commit/92e35efaf6a3278e4729115648997f09cd4005f5
Christian Brabandt <cb@256bit.org>
parents:
8732
diff
changeset
|
850 1656, |
986f7c00d43d
commit https://github.com/vim/vim/commit/92e35efaf6a3278e4729115648997f09cd4005f5
Christian Brabandt <cb@256bit.org>
parents:
8732
diff
changeset
|
851 /**/ |
8732
29765df3a866
commit https://github.com/vim/vim/commit/1e7885abe8daa793fd9328d0fd6c456214cb467e
Christian Brabandt <cb@256bit.org>
parents:
8730
diff
changeset
|
852 1655, |
29765df3a866
commit https://github.com/vim/vim/commit/1e7885abe8daa793fd9328d0fd6c456214cb467e
Christian Brabandt <cb@256bit.org>
parents:
8730
diff
changeset
|
853 /**/ |
8730
c1ac169ee618
commit https://github.com/vim/vim/commit/52c6eaffd43a8c8865f8d6ed7cde0a8b137479e2
Christian Brabandt <cb@256bit.org>
parents:
8728
diff
changeset
|
854 1654, |
c1ac169ee618
commit https://github.com/vim/vim/commit/52c6eaffd43a8c8865f8d6ed7cde0a8b137479e2
Christian Brabandt <cb@256bit.org>
parents:
8728
diff
changeset
|
855 /**/ |
8728
b1ca6aa215b7
commit https://github.com/vim/vim/commit/da64ab322ae35e473a24b211d22d05b1439aa05c
Christian Brabandt <cb@256bit.org>
parents:
8726
diff
changeset
|
856 1653, |
b1ca6aa215b7
commit https://github.com/vim/vim/commit/da64ab322ae35e473a24b211d22d05b1439aa05c
Christian Brabandt <cb@256bit.org>
parents:
8726
diff
changeset
|
857 /**/ |
8726
4c5c08316979
commit https://github.com/vim/vim/commit/610cc1b9b3c8104382f5506606c1f87118c28114
Christian Brabandt <cb@256bit.org>
parents:
8724
diff
changeset
|
858 1652, |
4c5c08316979
commit https://github.com/vim/vim/commit/610cc1b9b3c8104382f5506606c1f87118c28114
Christian Brabandt <cb@256bit.org>
parents:
8724
diff
changeset
|
859 /**/ |
8724
e6d1608ca601
commit https://github.com/vim/vim/commit/780d4c3fff3c06baa3135a9f9739c56a0c280a94
Christian Brabandt <cb@256bit.org>
parents:
8722
diff
changeset
|
860 1651, |
e6d1608ca601
commit https://github.com/vim/vim/commit/780d4c3fff3c06baa3135a9f9739c56a0c280a94
Christian Brabandt <cb@256bit.org>
parents:
8722
diff
changeset
|
861 /**/ |
8722
ecb57048c2a8
commit https://github.com/vim/vim/commit/f68f1d70799631d38461c36cd59d08cf839b010d
Christian Brabandt <cb@256bit.org>
parents:
8720
diff
changeset
|
862 1650, |
ecb57048c2a8
commit https://github.com/vim/vim/commit/f68f1d70799631d38461c36cd59d08cf839b010d
Christian Brabandt <cb@256bit.org>
parents:
8720
diff
changeset
|
863 /**/ |
8720
9380c37723f8
commit https://github.com/vim/vim/commit/aedfcbe1e6c7df6edcd6756d7601bfdec7dd2087
Christian Brabandt <cb@256bit.org>
parents:
8718
diff
changeset
|
864 1649, |
9380c37723f8
commit https://github.com/vim/vim/commit/aedfcbe1e6c7df6edcd6756d7601bfdec7dd2087
Christian Brabandt <cb@256bit.org>
parents:
8718
diff
changeset
|
865 /**/ |
8718
f1840a719771
commit https://github.com/vim/vim/commit/bee6c0cf86a75faa2aa893f2c9db82fd944a89a5
Christian Brabandt <cb@256bit.org>
parents:
8716
diff
changeset
|
866 1648, |
f1840a719771
commit https://github.com/vim/vim/commit/bee6c0cf86a75faa2aa893f2c9db82fd944a89a5
Christian Brabandt <cb@256bit.org>
parents:
8716
diff
changeset
|
867 /**/ |
8716
4ce26276caeb
commit https://github.com/vim/vim/commit/8b20179c657b4266dff115486ca68c6a50324071
Christian Brabandt <cb@256bit.org>
parents:
8714
diff
changeset
|
868 1647, |
4ce26276caeb
commit https://github.com/vim/vim/commit/8b20179c657b4266dff115486ca68c6a50324071
Christian Brabandt <cb@256bit.org>
parents:
8714
diff
changeset
|
869 /**/ |
8714
a5224eeb3546
commit https://github.com/vim/vim/commit/4c90861e9f864eab94f043c432acff508396ed62
Christian Brabandt <cb@256bit.org>
parents:
8712
diff
changeset
|
870 1646, |
a5224eeb3546
commit https://github.com/vim/vim/commit/4c90861e9f864eab94f043c432acff508396ed62
Christian Brabandt <cb@256bit.org>
parents:
8712
diff
changeset
|
871 /**/ |
8712
65130a9d3386
commit https://github.com/vim/vim/commit/c5fbe8af4cd80789f831b78aa44ff0b238138769
Christian Brabandt <cb@256bit.org>
parents:
8710
diff
changeset
|
872 1645, |
65130a9d3386
commit https://github.com/vim/vim/commit/c5fbe8af4cd80789f831b78aa44ff0b238138769
Christian Brabandt <cb@256bit.org>
parents:
8710
diff
changeset
|
873 /**/ |
8710
af3cb5c068fd
commit https://github.com/vim/vim/commit/24c77a1e3a2ad510582116229462b482d69b4b8e
Christian Brabandt <cb@256bit.org>
parents:
8708
diff
changeset
|
874 1644, |
af3cb5c068fd
commit https://github.com/vim/vim/commit/24c77a1e3a2ad510582116229462b482d69b4b8e
Christian Brabandt <cb@256bit.org>
parents:
8708
diff
changeset
|
875 /**/ |
8708
31f9fa8e1532
commit https://github.com/vim/vim/commit/d4caf5c16a9f1c9477d426e58d8d3dc47ab5f066
Christian Brabandt <cb@256bit.org>
parents:
8706
diff
changeset
|
876 1643, |
31f9fa8e1532
commit https://github.com/vim/vim/commit/d4caf5c16a9f1c9477d426e58d8d3dc47ab5f066
Christian Brabandt <cb@256bit.org>
parents:
8706
diff
changeset
|
877 /**/ |
8706
f63892cfe283
commit https://github.com/vim/vim/commit/6a08454b93784c92296d4c08456401cbaa74c9d5
Christian Brabandt <cb@256bit.org>
parents:
8704
diff
changeset
|
878 1642, |
f63892cfe283
commit https://github.com/vim/vim/commit/6a08454b93784c92296d4c08456401cbaa74c9d5
Christian Brabandt <cb@256bit.org>
parents:
8704
diff
changeset
|
879 /**/ |
8704
8af6e33e4d4c
commit https://github.com/vim/vim/commit/5ca84ce4aa2832041f843e624c222bbc1f4d3e14
Christian Brabandt <cb@256bit.org>
parents:
8702
diff
changeset
|
880 1641, |
8af6e33e4d4c
commit https://github.com/vim/vim/commit/5ca84ce4aa2832041f843e624c222bbc1f4d3e14
Christian Brabandt <cb@256bit.org>
parents:
8702
diff
changeset
|
881 /**/ |
8702
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8700
diff
changeset
|
882 1640, |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8700
diff
changeset
|
883 /**/ |
8700
077706f01e80
commit https://github.com/vim/vim/commit/5f436fcf9960c95702820d5ac1b8b612995f6c04
Christian Brabandt <cb@256bit.org>
parents:
8698
diff
changeset
|
884 1639, |
077706f01e80
commit https://github.com/vim/vim/commit/5f436fcf9960c95702820d5ac1b8b612995f6c04
Christian Brabandt <cb@256bit.org>
parents:
8698
diff
changeset
|
885 /**/ |
8698
13b0ed12a78a
commit https://github.com/vim/vim/commit/e4eb6ff089e79e659acf33c17dd0fda7177de526
Christian Brabandt <cb@256bit.org>
parents:
8696
diff
changeset
|
886 1638, |
13b0ed12a78a
commit https://github.com/vim/vim/commit/e4eb6ff089e79e659acf33c17dd0fda7177de526
Christian Brabandt <cb@256bit.org>
parents:
8696
diff
changeset
|
887 /**/ |
8696
869727342e43
commit https://github.com/vim/vim/commit/6c0e984f263fc1eef42c9b34a80eff1bceb8d05b
Christian Brabandt <cb@256bit.org>
parents:
8694
diff
changeset
|
888 1637, |
869727342e43
commit https://github.com/vim/vim/commit/6c0e984f263fc1eef42c9b34a80eff1bceb8d05b
Christian Brabandt <cb@256bit.org>
parents:
8694
diff
changeset
|
889 /**/ |
8694
f2e81ae5ab48
commit https://github.com/vim/vim/commit/6135d0d803084f6c2dd8672df1bef4c6e58f9e19
Christian Brabandt <cb@256bit.org>
parents:
8692
diff
changeset
|
890 1636, |
f2e81ae5ab48
commit https://github.com/vim/vim/commit/6135d0d803084f6c2dd8672df1bef4c6e58f9e19
Christian Brabandt <cb@256bit.org>
parents:
8692
diff
changeset
|
891 /**/ |
8692
683b3702970a
commit https://github.com/vim/vim/commit/6a06363861fcc6beca6e06b39385da411ce58633
Christian Brabandt <cb@256bit.org>
parents:
8690
diff
changeset
|
892 1635, |
683b3702970a
commit https://github.com/vim/vim/commit/6a06363861fcc6beca6e06b39385da411ce58633
Christian Brabandt <cb@256bit.org>
parents:
8690
diff
changeset
|
893 /**/ |
8690
6a1becf4f282
commit https://github.com/vim/vim/commit/8e08125d3a9afd0b16cd84454ae9ddad0abaaab0
Christian Brabandt <cb@256bit.org>
parents:
8688
diff
changeset
|
894 1634, |
6a1becf4f282
commit https://github.com/vim/vim/commit/8e08125d3a9afd0b16cd84454ae9ddad0abaaab0
Christian Brabandt <cb@256bit.org>
parents:
8688
diff
changeset
|
895 /**/ |
8688
7ec1aa86dc80
commit https://github.com/vim/vim/commit/b763eba7ae3540cd879f7c29882a29308f9688db
Christian Brabandt <cb@256bit.org>
parents:
8686
diff
changeset
|
896 1633, |
7ec1aa86dc80
commit https://github.com/vim/vim/commit/b763eba7ae3540cd879f7c29882a29308f9688db
Christian Brabandt <cb@256bit.org>
parents:
8686
diff
changeset
|
897 /**/ |
8686
92657771648f
commit https://github.com/vim/vim/commit/6098957458e538682f54e23de217da06200876a3
Christian Brabandt <cb@256bit.org>
parents:
8684
diff
changeset
|
898 1632, |
92657771648f
commit https://github.com/vim/vim/commit/6098957458e538682f54e23de217da06200876a3
Christian Brabandt <cb@256bit.org>
parents:
8684
diff
changeset
|
899 /**/ |
8684
6e567914f55a
commit https://github.com/vim/vim/commit/573e445664eef399a72b1bfc975260a639605fef
Christian Brabandt <cb@256bit.org>
parents:
8682
diff
changeset
|
900 1631, |
6e567914f55a
commit https://github.com/vim/vim/commit/573e445664eef399a72b1bfc975260a639605fef
Christian Brabandt <cb@256bit.org>
parents:
8682
diff
changeset
|
901 /**/ |
8682
4ce551bd5024
commit https://github.com/vim/vim/commit/d63aff0a65b955447de2fd8bfdaee29b61ce2843
Christian Brabandt <cb@256bit.org>
parents:
8680
diff
changeset
|
902 1630, |
4ce551bd5024
commit https://github.com/vim/vim/commit/d63aff0a65b955447de2fd8bfdaee29b61ce2843
Christian Brabandt <cb@256bit.org>
parents:
8680
diff
changeset
|
903 /**/ |
8680
131e651fb347
commit https://github.com/vim/vim/commit/b86f10ee10bdf932df02bdaf601dffa671518a47
Christian Brabandt <cb@256bit.org>
parents:
8678
diff
changeset
|
904 1629, |
131e651fb347
commit https://github.com/vim/vim/commit/b86f10ee10bdf932df02bdaf601dffa671518a47
Christian Brabandt <cb@256bit.org>
parents:
8678
diff
changeset
|
905 /**/ |
8678
a4e7f4a62193
commit https://github.com/vim/vim/commit/3f3fbd3fdb73bdfbfeab22a9dfc7a25e38bdf5f6
Christian Brabandt <cb@256bit.org>
parents:
8676
diff
changeset
|
906 1628, |
a4e7f4a62193
commit https://github.com/vim/vim/commit/3f3fbd3fdb73bdfbfeab22a9dfc7a25e38bdf5f6
Christian Brabandt <cb@256bit.org>
parents:
8676
diff
changeset
|
907 /**/ |
8676
289765409225
commit https://github.com/vim/vim/commit/75f7265dd402665b8600fdf21ba33f19db06ac0d
Christian Brabandt <cb@256bit.org>
parents:
8674
diff
changeset
|
908 1627, |
289765409225
commit https://github.com/vim/vim/commit/75f7265dd402665b8600fdf21ba33f19db06ac0d
Christian Brabandt <cb@256bit.org>
parents:
8674
diff
changeset
|
909 /**/ |
8674
4a4d5815a974
commit https://github.com/vim/vim/commit/580984e026a46ea0c29789897b701057423b4923
Christian Brabandt <cb@256bit.org>
parents:
8671
diff
changeset
|
910 1626, |
4a4d5815a974
commit https://github.com/vim/vim/commit/580984e026a46ea0c29789897b701057423b4923
Christian Brabandt <cb@256bit.org>
parents:
8671
diff
changeset
|
911 /**/ |
8671
8f6bc5626829
commit https://github.com/vim/vim/commit/be6aa46c4d8948e164f7d181dc19ed2fc4818395
Christian Brabandt <cb@256bit.org>
parents:
8669
diff
changeset
|
912 1625, |
8f6bc5626829
commit https://github.com/vim/vim/commit/be6aa46c4d8948e164f7d181dc19ed2fc4818395
Christian Brabandt <cb@256bit.org>
parents:
8669
diff
changeset
|
913 /**/ |
8669
06848fe9c816
commit https://github.com/vim/vim/commit/03602ec28ed25739e88b2c835adb0662d3720bb2
Christian Brabandt <cb@256bit.org>
parents:
8667
diff
changeset
|
914 1624, |
06848fe9c816
commit https://github.com/vim/vim/commit/03602ec28ed25739e88b2c835adb0662d3720bb2
Christian Brabandt <cb@256bit.org>
parents:
8667
diff
changeset
|
915 /**/ |
8667
8c80c21a1885
commit https://github.com/vim/vim/commit/e9d6a298df6108e2044b1f0da5a2712f0c51c7d9
Christian Brabandt <cb@256bit.org>
parents:
8665
diff
changeset
|
916 1623, |
8c80c21a1885
commit https://github.com/vim/vim/commit/e9d6a298df6108e2044b1f0da5a2712f0c51c7d9
Christian Brabandt <cb@256bit.org>
parents:
8665
diff
changeset
|
917 /**/ |
8665
7a2346148551
commit https://github.com/vim/vim/commit/17b56c9f8327e6869580e3cfd82efcf8966d797a
Christian Brabandt <cb@256bit.org>
parents:
8663
diff
changeset
|
918 1622, |
7a2346148551
commit https://github.com/vim/vim/commit/17b56c9f8327e6869580e3cfd82efcf8966d797a
Christian Brabandt <cb@256bit.org>
parents:
8663
diff
changeset
|
919 /**/ |
8663
b2a48aabe21f
commit https://github.com/vim/vim/commit/a63cdb5ed685181c377ee89f1d1de6a97dfeb151
Christian Brabandt <cb@256bit.org>
parents:
8661
diff
changeset
|
920 1621, |
b2a48aabe21f
commit https://github.com/vim/vim/commit/a63cdb5ed685181c377ee89f1d1de6a97dfeb151
Christian Brabandt <cb@256bit.org>
parents:
8661
diff
changeset
|
921 /**/ |
8661
a931160ffc41
commit https://github.com/vim/vim/commit/4077b33a8370afb3d5ae74e556a0119cf51fe294
Christian Brabandt <cb@256bit.org>
parents:
8659
diff
changeset
|
922 1620, |
a931160ffc41
commit https://github.com/vim/vim/commit/4077b33a8370afb3d5ae74e556a0119cf51fe294
Christian Brabandt <cb@256bit.org>
parents:
8659
diff
changeset
|
923 /**/ |
8659
72e2f387466f
commit https://github.com/vim/vim/commit/364fa5c7ec2a99a791c8f8b66fe70b0bf1dd9a41
Christian Brabandt <cb@256bit.org>
parents:
8657
diff
changeset
|
924 1619, |
72e2f387466f
commit https://github.com/vim/vim/commit/364fa5c7ec2a99a791c8f8b66fe70b0bf1dd9a41
Christian Brabandt <cb@256bit.org>
parents:
8657
diff
changeset
|
925 /**/ |
8657
c70eea7a7677
commit https://github.com/vim/vim/commit/a4f6ca717b4483eb82c6c71f71a5a5cf70e55d80
Christian Brabandt <cb@256bit.org>
parents:
8655
diff
changeset
|
926 1618, |
c70eea7a7677
commit https://github.com/vim/vim/commit/a4f6ca717b4483eb82c6c71f71a5a5cf70e55d80
Christian Brabandt <cb@256bit.org>
parents:
8655
diff
changeset
|
927 /**/ |
8655
1eb302bf2475
commit https://github.com/vim/vim/commit/ba61ac0d61f46de7d29c64bb0de6d25c2e378be0
Christian Brabandt <cb@256bit.org>
parents:
8653
diff
changeset
|
928 1617, |
1eb302bf2475
commit https://github.com/vim/vim/commit/ba61ac0d61f46de7d29c64bb0de6d25c2e378be0
Christian Brabandt <cb@256bit.org>
parents:
8653
diff
changeset
|
929 /**/ |
8653
d80edead9675
commit https://github.com/vim/vim/commit/ac74d5e86cd16b42e81ba48f58f3d45c72758248
Christian Brabandt <cb@256bit.org>
parents:
8651
diff
changeset
|
930 1616, |
d80edead9675
commit https://github.com/vim/vim/commit/ac74d5e86cd16b42e81ba48f58f3d45c72758248
Christian Brabandt <cb@256bit.org>
parents:
8651
diff
changeset
|
931 /**/ |
8651
8a106a24d128
commit https://github.com/vim/vim/commit/829c8e369630a7cbbdac015d8177b7fde25e2f19
Christian Brabandt <cb@256bit.org>
parents:
8649
diff
changeset
|
932 1615, |
8a106a24d128
commit https://github.com/vim/vim/commit/829c8e369630a7cbbdac015d8177b7fde25e2f19
Christian Brabandt <cb@256bit.org>
parents:
8649
diff
changeset
|
933 /**/ |
8649
ec78ecf15de7
commit https://github.com/vim/vim/commit/7eba3d2cbf19e731dc51652bc26099cc253d538a
Christian Brabandt <cb@256bit.org>
parents:
8647
diff
changeset
|
934 1614, |
ec78ecf15de7
commit https://github.com/vim/vim/commit/7eba3d2cbf19e731dc51652bc26099cc253d538a
Christian Brabandt <cb@256bit.org>
parents:
8647
diff
changeset
|
935 /**/ |
8647
59866aabe737
commit https://github.com/vim/vim/commit/064154c3fedd6a46ca2f61463d7e5567bd22d9f1
Christian Brabandt <cb@256bit.org>
parents:
8645
diff
changeset
|
936 1613, |
59866aabe737
commit https://github.com/vim/vim/commit/064154c3fedd6a46ca2f61463d7e5567bd22d9f1
Christian Brabandt <cb@256bit.org>
parents:
8645
diff
changeset
|
937 /**/ |
8645
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
938 1612, |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
939 /**/ |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8641
diff
changeset
|
940 1611, |
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8641
diff
changeset
|
941 /**/ |
8641
0af716a4f5d2
commit https://github.com/vim/vim/commit/cc6cf9b9f9045a7d8b5923ea0c556e9a4c2567d3
Christian Brabandt <cb@256bit.org>
parents:
8639
diff
changeset
|
942 1610, |
0af716a4f5d2
commit https://github.com/vim/vim/commit/cc6cf9b9f9045a7d8b5923ea0c556e9a4c2567d3
Christian Brabandt <cb@256bit.org>
parents:
8639
diff
changeset
|
943 /**/ |
8639
91286ec46e97
commit https://github.com/vim/vim/commit/4d581a826c54cecdde3001fdf0a5becf67e54cfd
Christian Brabandt <cb@256bit.org>
parents:
8637
diff
changeset
|
944 1609, |
91286ec46e97
commit https://github.com/vim/vim/commit/4d581a826c54cecdde3001fdf0a5becf67e54cfd
Christian Brabandt <cb@256bit.org>
parents:
8637
diff
changeset
|
945 /**/ |
8637
ff41ece2e4b8
commit https://github.com/vim/vim/commit/5c29154b521e9948190be653cfda666ecbb63b5b
Christian Brabandt <cb@256bit.org>
parents:
8635
diff
changeset
|
946 1608, |
ff41ece2e4b8
commit https://github.com/vim/vim/commit/5c29154b521e9948190be653cfda666ecbb63b5b
Christian Brabandt <cb@256bit.org>
parents:
8635
diff
changeset
|
947 /**/ |
8635
3a38d465f731
commit https://github.com/vim/vim/commit/f0e86a0dbddc18568910e9e4aaae0cd88ca8087a
Christian Brabandt <cb@256bit.org>
parents:
8633
diff
changeset
|
948 1607, |
3a38d465f731
commit https://github.com/vim/vim/commit/f0e86a0dbddc18568910e9e4aaae0cd88ca8087a
Christian Brabandt <cb@256bit.org>
parents:
8633
diff
changeset
|
949 /**/ |
8633
80d78e1ab787
commit https://github.com/vim/vim/commit/953cc7fb139dc2ba8590f8b03a095b63f4e1208f
Christian Brabandt <cb@256bit.org>
parents:
8631
diff
changeset
|
950 1606, |
80d78e1ab787
commit https://github.com/vim/vim/commit/953cc7fb139dc2ba8590f8b03a095b63f4e1208f
Christian Brabandt <cb@256bit.org>
parents:
8631
diff
changeset
|
951 /**/ |
8631
e5f2e0f8af10
commit https://github.com/vim/vim/commit/3905e291fe4375ca5c59efa9ffcb01a39c7be3a9
Christian Brabandt <cb@256bit.org>
parents:
8629
diff
changeset
|
952 1605, |
e5f2e0f8af10
commit https://github.com/vim/vim/commit/3905e291fe4375ca5c59efa9ffcb01a39c7be3a9
Christian Brabandt <cb@256bit.org>
parents:
8629
diff
changeset
|
953 /**/ |
8629
54ac275e3fc4
commit https://github.com/vim/vim/commit/3848e00e0177abdb31bc600234967863ec487233
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
954 1604, |
54ac275e3fc4
commit https://github.com/vim/vim/commit/3848e00e0177abdb31bc600234967863ec487233
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
955 /**/ |
8627
7c98c5d0298c
commit https://github.com/vim/vim/commit/bfb96c047b79b2aab5fd57a2472871508819f3ef
Christian Brabandt <cb@256bit.org>
parents:
8625
diff
changeset
|
956 1603, |
7c98c5d0298c
commit https://github.com/vim/vim/commit/bfb96c047b79b2aab5fd57a2472871508819f3ef
Christian Brabandt <cb@256bit.org>
parents:
8625
diff
changeset
|
957 /**/ |
8625
d98fbc8dca8e
commit https://github.com/vim/vim/commit/cff572abb922d49455b01484e99b98c371fa4560
Christian Brabandt <cb@256bit.org>
parents:
8623
diff
changeset
|
958 1602, |
d98fbc8dca8e
commit https://github.com/vim/vim/commit/cff572abb922d49455b01484e99b98c371fa4560
Christian Brabandt <cb@256bit.org>
parents:
8623
diff
changeset
|
959 /**/ |
8623
58e749232bd7
commit https://github.com/vim/vim/commit/818c9e7edfce339eff7cb357f2ec29a72afd1977
Christian Brabandt <cb@256bit.org>
parents:
8621
diff
changeset
|
960 1601, |
58e749232bd7
commit https://github.com/vim/vim/commit/818c9e7edfce339eff7cb357f2ec29a72afd1977
Christian Brabandt <cb@256bit.org>
parents:
8621
diff
changeset
|
961 /**/ |
8621
6b9c960d68b3
commit https://github.com/vim/vim/commit/062cc1857d1c990287384409332b2b050bc9c82e
Christian Brabandt <cb@256bit.org>
parents:
8619
diff
changeset
|
962 1600, |
6b9c960d68b3
commit https://github.com/vim/vim/commit/062cc1857d1c990287384409332b2b050bc9c82e
Christian Brabandt <cb@256bit.org>
parents:
8619
diff
changeset
|
963 /**/ |
8619
5c9603b1084d
commit https://github.com/vim/vim/commit/8a82c7fa5ec55b59782f7a7846d6152ccf3a22c7
Christian Brabandt <cb@256bit.org>
parents:
8617
diff
changeset
|
964 1599, |
5c9603b1084d
commit https://github.com/vim/vim/commit/8a82c7fa5ec55b59782f7a7846d6152ccf3a22c7
Christian Brabandt <cb@256bit.org>
parents:
8617
diff
changeset
|
965 /**/ |
8617
eab968bf3ce7
commit https://github.com/vim/vim/commit/6d8d849f5ac8a3a228c62fd29e8f40ae1b8381fc
Christian Brabandt <cb@256bit.org>
parents:
8615
diff
changeset
|
966 1598, |
eab968bf3ce7
commit https://github.com/vim/vim/commit/6d8d849f5ac8a3a228c62fd29e8f40ae1b8381fc
Christian Brabandt <cb@256bit.org>
parents:
8615
diff
changeset
|
967 /**/ |
8615
99aed8c33bbf
commit https://github.com/vim/vim/commit/9f6154f26ef17b0a7efd2fcdd79cabfe510f28b4
Christian Brabandt <cb@256bit.org>
parents:
8613
diff
changeset
|
968 1597, |
99aed8c33bbf
commit https://github.com/vim/vim/commit/9f6154f26ef17b0a7efd2fcdd79cabfe510f28b4
Christian Brabandt <cb@256bit.org>
parents:
8613
diff
changeset
|
969 /**/ |
8613
3dacf96b4020
commit https://github.com/vim/vim/commit/ba8cd122ef60a7c71a7723be0d635f0c2d4556ab
Christian Brabandt <cb@256bit.org>
parents:
8611
diff
changeset
|
970 1596, |
3dacf96b4020
commit https://github.com/vim/vim/commit/ba8cd122ef60a7c71a7723be0d635f0c2d4556ab
Christian Brabandt <cb@256bit.org>
parents:
8611
diff
changeset
|
971 /**/ |
8611
f12689430f4b
commit https://github.com/vim/vim/commit/c0a1d7f3ad4d41b64c6c881bb8ad7c201f8439a3
Christian Brabandt <cb@256bit.org>
parents:
8609
diff
changeset
|
972 1595, |
f12689430f4b
commit https://github.com/vim/vim/commit/c0a1d7f3ad4d41b64c6c881bb8ad7c201f8439a3
Christian Brabandt <cb@256bit.org>
parents:
8609
diff
changeset
|
973 /**/ |
8609
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8607
diff
changeset
|
974 1594, |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8607
diff
changeset
|
975 /**/ |
8607
d762390fb27b
commit https://github.com/vim/vim/commit/a889cf4642a89537e3eeecf6d30326bf6aa4776f
Christian Brabandt <cb@256bit.org>
parents:
8605
diff
changeset
|
976 1593, |
d762390fb27b
commit https://github.com/vim/vim/commit/a889cf4642a89537e3eeecf6d30326bf6aa4776f
Christian Brabandt <cb@256bit.org>
parents:
8605
diff
changeset
|
977 /**/ |
8605
536b9b88d1ca
commit https://github.com/vim/vim/commit/0899d698030ec076eb26352cda1ea334ab0819d9
Christian Brabandt <cb@256bit.org>
parents:
8603
diff
changeset
|
978 1592, |
536b9b88d1ca
commit https://github.com/vim/vim/commit/0899d698030ec076eb26352cda1ea334ab0819d9
Christian Brabandt <cb@256bit.org>
parents:
8603
diff
changeset
|
979 /**/ |
8603
bfa74b84c41c
commit https://github.com/vim/vim/commit/5584df65a0ca2315d1eebc13c54a448bee4d0758
Christian Brabandt <cb@256bit.org>
parents:
8601
diff
changeset
|
980 1591, |
bfa74b84c41c
commit https://github.com/vim/vim/commit/5584df65a0ca2315d1eebc13c54a448bee4d0758
Christian Brabandt <cb@256bit.org>
parents:
8601
diff
changeset
|
981 /**/ |
8601
46306a98407c
commit https://github.com/vim/vim/commit/3f242a844e83a5a04943869f6e3bcbf8650dc465
Christian Brabandt <cb@256bit.org>
parents:
8599
diff
changeset
|
982 1590, |
46306a98407c
commit https://github.com/vim/vim/commit/3f242a844e83a5a04943869f6e3bcbf8650dc465
Christian Brabandt <cb@256bit.org>
parents:
8599
diff
changeset
|
983 /**/ |
8599
ddb04cbe1e0c
commit https://github.com/vim/vim/commit/9e63f61cb01c70fd71652f54b2d01ee27b2a3534
Christian Brabandt <cb@256bit.org>
parents:
8597
diff
changeset
|
984 1589, |
ddb04cbe1e0c
commit https://github.com/vim/vim/commit/9e63f61cb01c70fd71652f54b2d01ee27b2a3534
Christian Brabandt <cb@256bit.org>
parents:
8597
diff
changeset
|
985 /**/ |
8597
51de88bf954d
commit https://github.com/vim/vim/commit/1ff2b64b11e7d263c6853745d5e594bd8f94b91e
Christian Brabandt <cb@256bit.org>
parents:
8595
diff
changeset
|
986 1588, |
51de88bf954d
commit https://github.com/vim/vim/commit/1ff2b64b11e7d263c6853745d5e594bd8f94b91e
Christian Brabandt <cb@256bit.org>
parents:
8595
diff
changeset
|
987 /**/ |
8595
887b378f29d1
commit https://github.com/vim/vim/commit/1c8b4edb9b6cd5248925f3f06ec82486be9fb4ea
Christian Brabandt <cb@256bit.org>
parents:
8593
diff
changeset
|
988 1587, |
887b378f29d1
commit https://github.com/vim/vim/commit/1c8b4edb9b6cd5248925f3f06ec82486be9fb4ea
Christian Brabandt <cb@256bit.org>
parents:
8593
diff
changeset
|
989 /**/ |
8593
dc36cef103de
commit https://github.com/vim/vim/commit/8a1bb046378f4bc68d6a04af2eab80fb3ce04da6
Christian Brabandt <cb@256bit.org>
parents:
8591
diff
changeset
|
990 1586, |
dc36cef103de
commit https://github.com/vim/vim/commit/8a1bb046378f4bc68d6a04af2eab80fb3ce04da6
Christian Brabandt <cb@256bit.org>
parents:
8591
diff
changeset
|
991 /**/ |
8591
5bc958a92849
commit https://github.com/vim/vim/commit/d22a18928ebcb465393da1418bb88204b97badb1
Christian Brabandt <cb@256bit.org>
parents:
8589
diff
changeset
|
992 1585, |
5bc958a92849
commit https://github.com/vim/vim/commit/d22a18928ebcb465393da1418bb88204b97badb1
Christian Brabandt <cb@256bit.org>
parents:
8589
diff
changeset
|
993 /**/ |
8589
e32ab146b6c9
commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents:
8587
diff
changeset
|
994 1584, |
e32ab146b6c9
commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents:
8587
diff
changeset
|
995 /**/ |
8587
fb8d7086e99d
commit https://github.com/vim/vim/commit/597385ab43093ba27adcb86cdc1b46aba86a0093
Christian Brabandt <cb@256bit.org>
parents:
8585
diff
changeset
|
996 1583, |
fb8d7086e99d
commit https://github.com/vim/vim/commit/597385ab43093ba27adcb86cdc1b46aba86a0093
Christian Brabandt <cb@256bit.org>
parents:
8585
diff
changeset
|
997 /**/ |
8585
ce37bbedcb65
commit https://github.com/vim/vim/commit/6f2e4b36c9d9908e1cace2b1b96e2c154a837bc2
Christian Brabandt <cb@256bit.org>
parents:
8583
diff
changeset
|
998 1582, |
ce37bbedcb65
commit https://github.com/vim/vim/commit/6f2e4b36c9d9908e1cace2b1b96e2c154a837bc2
Christian Brabandt <cb@256bit.org>
parents:
8583
diff
changeset
|
999 /**/ |
8583
537bbbd4e987
commit https://github.com/vim/vim/commit/65639032bb7b17996cd255d1508a1df4ad528a1f
Christian Brabandt <cb@256bit.org>
parents:
8581
diff
changeset
|
1000 1581, |
537bbbd4e987
commit https://github.com/vim/vim/commit/65639032bb7b17996cd255d1508a1df4ad528a1f
Christian Brabandt <cb@256bit.org>
parents:
8581
diff
changeset
|
1001 /**/ |
8581
fd454847836d
commit https://github.com/vim/vim/commit/7a5c46a9df7ef01a4f6a620861c35400d5ad28d9
Christian Brabandt <cb@256bit.org>
parents:
8579
diff
changeset
|
1002 1580, |
fd454847836d
commit https://github.com/vim/vim/commit/7a5c46a9df7ef01a4f6a620861c35400d5ad28d9
Christian Brabandt <cb@256bit.org>
parents:
8579
diff
changeset
|
1003 /**/ |
8579
556817999955
commit https://github.com/vim/vim/commit/a3dc5e92dcb79bdc4f0103e6eb91de4c7a6ee9a7
Christian Brabandt <cb@256bit.org>
parents:
8577
diff
changeset
|
1004 1579, |
556817999955
commit https://github.com/vim/vim/commit/a3dc5e92dcb79bdc4f0103e6eb91de4c7a6ee9a7
Christian Brabandt <cb@256bit.org>
parents:
8577
diff
changeset
|
1005 /**/ |
8577
63dc856bd13d
commit https://github.com/vim/vim/commit/975b5271eed4fa0500c24a8f37be0b1797cb9db7
Christian Brabandt <cb@256bit.org>
parents:
8575
diff
changeset
|
1006 1578, |
63dc856bd13d
commit https://github.com/vim/vim/commit/975b5271eed4fa0500c24a8f37be0b1797cb9db7
Christian Brabandt <cb@256bit.org>
parents:
8575
diff
changeset
|
1007 /**/ |
8575
b5209a4e5baf
commit https://github.com/vim/vim/commit/ab1fa3955f25dfdb7e329c3bd76e175c93c8cb5e
Christian Brabandt <cb@256bit.org>
parents:
8573
diff
changeset
|
1008 1577, |
b5209a4e5baf
commit https://github.com/vim/vim/commit/ab1fa3955f25dfdb7e329c3bd76e175c93c8cb5e
Christian Brabandt <cb@256bit.org>
parents:
8573
diff
changeset
|
1009 /**/ |
8573
c76cb97073bd
commit https://github.com/vim/vim/commit/927030af23982a70580178e32806cd3638ce6e5b
Christian Brabandt <cb@256bit.org>
parents:
8571
diff
changeset
|
1010 1576, |
c76cb97073bd
commit https://github.com/vim/vim/commit/927030af23982a70580178e32806cd3638ce6e5b
Christian Brabandt <cb@256bit.org>
parents:
8571
diff
changeset
|
1011 /**/ |
8571
debe6347024d
commit https://github.com/vim/vim/commit/89e375a88f3eceb73bbd97e78aca1a1c4647c897
Christian Brabandt <cb@256bit.org>
parents:
8568
diff
changeset
|
1012 1575, |
debe6347024d
commit https://github.com/vim/vim/commit/89e375a88f3eceb73bbd97e78aca1a1c4647c897
Christian Brabandt <cb@256bit.org>
parents:
8568
diff
changeset
|
1013 /**/ |
8568
17bbbca531be
commit https://github.com/vim/vim/commit/d22e9465f6228207a4fe722ee84371c7817060d6
Christian Brabandt <cb@256bit.org>
parents:
8566
diff
changeset
|
1014 1574, |
17bbbca531be
commit https://github.com/vim/vim/commit/d22e9465f6228207a4fe722ee84371c7817060d6
Christian Brabandt <cb@256bit.org>
parents:
8566
diff
changeset
|
1015 /**/ |
8566
28e10c1bed22
commit https://github.com/vim/vim/commit/ce2ec0a82a778ff4d79a2c3309f6cac079d7b5ee
Christian Brabandt <cb@256bit.org>
parents:
8564
diff
changeset
|
1016 1573, |
28e10c1bed22
commit https://github.com/vim/vim/commit/ce2ec0a82a778ff4d79a2c3309f6cac079d7b5ee
Christian Brabandt <cb@256bit.org>
parents:
8564
diff
changeset
|
1017 /**/ |
8564
8818bca7a824
commit https://github.com/vim/vim/commit/85a7cb4dcf50aa562ff1fc872bfc1b50a5a9e368
Christian Brabandt <cb@256bit.org>
parents:
8562
diff
changeset
|
1018 1572, |
8818bca7a824
commit https://github.com/vim/vim/commit/85a7cb4dcf50aa562ff1fc872bfc1b50a5a9e368
Christian Brabandt <cb@256bit.org>
parents:
8562
diff
changeset
|
1019 /**/ |
8562
40b982c98587
commit https://github.com/vim/vim/commit/8e15ffcde757ffc6cfe8b5e384948b3278e9af33
Christian Brabandt <cb@256bit.org>
parents:
8560
diff
changeset
|
1020 1571, |
40b982c98587
commit https://github.com/vim/vim/commit/8e15ffcde757ffc6cfe8b5e384948b3278e9af33
Christian Brabandt <cb@256bit.org>
parents:
8560
diff
changeset
|
1021 /**/ |
8560
f3c636c673f7
commit https://github.com/vim/vim/commit/426dd0219512af5f4abeb0901b533159253ffba3
Christian Brabandt <cb@256bit.org>
parents:
8558
diff
changeset
|
1022 1570, |
f3c636c673f7
commit https://github.com/vim/vim/commit/426dd0219512af5f4abeb0901b533159253ffba3
Christian Brabandt <cb@256bit.org>
parents:
8558
diff
changeset
|
1023 /**/ |
8558
22aecf80378e
commit https://github.com/vim/vim/commit/e27dba499aaaf2ffe9f0da45f062450b434cddaa
Christian Brabandt <cb@256bit.org>
parents:
8556
diff
changeset
|
1024 1569, |
22aecf80378e
commit https://github.com/vim/vim/commit/e27dba499aaaf2ffe9f0da45f062450b434cddaa
Christian Brabandt <cb@256bit.org>
parents:
8556
diff
changeset
|
1025 /**/ |
8556
f4dca5239317
commit https://github.com/vim/vim/commit/00f9e0dbbd3472db217d56639fad9346b9eb3b82
Christian Brabandt <cb@256bit.org>
parents:
8554
diff
changeset
|
1026 1568, |
f4dca5239317
commit https://github.com/vim/vim/commit/00f9e0dbbd3472db217d56639fad9346b9eb3b82
Christian Brabandt <cb@256bit.org>
parents:
8554
diff
changeset
|
1027 /**/ |
8554
7d3548ae729d
commit https://github.com/vim/vim/commit/1abb502635c7f317e05a0cf3ea067101f9d684f5
Christian Brabandt <cb@256bit.org>
parents:
8552
diff
changeset
|
1028 1567, |
7d3548ae729d
commit https://github.com/vim/vim/commit/1abb502635c7f317e05a0cf3ea067101f9d684f5
Christian Brabandt <cb@256bit.org>
parents:
8552
diff
changeset
|
1029 /**/ |
8552
96968d6bba3e
commit https://github.com/vim/vim/commit/4f118be2bb987cdf313da879d2a93ae125e99202
Christian Brabandt <cb@256bit.org>
parents:
8550
diff
changeset
|
1030 1566, |
96968d6bba3e
commit https://github.com/vim/vim/commit/4f118be2bb987cdf313da879d2a93ae125e99202
Christian Brabandt <cb@256bit.org>
parents:
8550
diff
changeset
|
1031 /**/ |
8550
56d0eb96c25a
commit https://github.com/vim/vim/commit/f1551964448607f8222de2d8f0992ea43eb2fe67
Christian Brabandt <cb@256bit.org>
parents:
8548
diff
changeset
|
1032 1565, |
56d0eb96c25a
commit https://github.com/vim/vim/commit/f1551964448607f8222de2d8f0992ea43eb2fe67
Christian Brabandt <cb@256bit.org>
parents:
8548
diff
changeset
|
1033 /**/ |
8548
24db3583c496
commit https://github.com/vim/vim/commit/346418c624f1bc7c04c98907134a2b284e6452dd
Christian Brabandt <cb@256bit.org>
parents:
8546
diff
changeset
|
1034 1564, |
24db3583c496
commit https://github.com/vim/vim/commit/346418c624f1bc7c04c98907134a2b284e6452dd
Christian Brabandt <cb@256bit.org>
parents:
8546
diff
changeset
|
1035 /**/ |
8546
996109e24f02
commit https://github.com/vim/vim/commit/790500a8e65bee295ef51a59dfa67ecbaab8ea17
Christian Brabandt <cb@256bit.org>
parents:
8544
diff
changeset
|
1036 1563, |
996109e24f02
commit https://github.com/vim/vim/commit/790500a8e65bee295ef51a59dfa67ecbaab8ea17
Christian Brabandt <cb@256bit.org>
parents:
8544
diff
changeset
|
1037 /**/ |
8544
b4850f705181
commit https://github.com/vim/vim/commit/9eb3bb2930f804c1d428ea4527e136ac9cd9da43
Christian Brabandt <cb@256bit.org>
parents:
8542
diff
changeset
|
1038 1562, |
b4850f705181
commit https://github.com/vim/vim/commit/9eb3bb2930f804c1d428ea4527e136ac9cd9da43
Christian Brabandt <cb@256bit.org>
parents:
8542
diff
changeset
|
1039 /**/ |
8542
80cfe52ca3a2
commit https://github.com/vim/vim/commit/39afdea2035c34239910267978538a3c99b66911
Christian Brabandt <cb@256bit.org>
parents:
8540
diff
changeset
|
1040 1561, |
80cfe52ca3a2
commit https://github.com/vim/vim/commit/39afdea2035c34239910267978538a3c99b66911
Christian Brabandt <cb@256bit.org>
parents:
8540
diff
changeset
|
1041 /**/ |
8540
fec8655cf1bf
commit https://github.com/vim/vim/commit/d6c2f0526064eef6f8917d2bad00df707d79ea16
Christian Brabandt <cb@256bit.org>
parents:
8538
diff
changeset
|
1042 1560, |
fec8655cf1bf
commit https://github.com/vim/vim/commit/d6c2f0526064eef6f8917d2bad00df707d79ea16
Christian Brabandt <cb@256bit.org>
parents:
8538
diff
changeset
|
1043 /**/ |
8538
c337c813c64d
commit https://github.com/vim/vim/commit/1735bc988c546cc962c5f94792815b4d7cb79710
Christian Brabandt <cb@256bit.org>
parents:
8536
diff
changeset
|
1044 1559, |
c337c813c64d
commit https://github.com/vim/vim/commit/1735bc988c546cc962c5f94792815b4d7cb79710
Christian Brabandt <cb@256bit.org>
parents:
8536
diff
changeset
|
1045 /**/ |
8536
09041d2fd7d0
commit https://github.com/vim/vim/commit/9cdf86b86f5fdb5a45b682f336846f9d9a9c6f1f
Christian Brabandt <cb@256bit.org>
parents:
8534
diff
changeset
|
1046 1558, |
09041d2fd7d0
commit https://github.com/vim/vim/commit/9cdf86b86f5fdb5a45b682f336846f9d9a9c6f1f
Christian Brabandt <cb@256bit.org>
parents:
8534
diff
changeset
|
1047 /**/ |
8534
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8532
diff
changeset
|
1048 1557, |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8532
diff
changeset
|
1049 /**/ |
8532
3de84783c029
commit https://github.com/vim/vim/commit/a3442cb5056ca62fc71fa03f68a9395e4391caf4
Christian Brabandt <cb@256bit.org>
parents:
8530
diff
changeset
|
1050 1556, |
3de84783c029
commit https://github.com/vim/vim/commit/a3442cb5056ca62fc71fa03f68a9395e4391caf4
Christian Brabandt <cb@256bit.org>
parents:
8530
diff
changeset
|
1051 /**/ |
8530
66afe6d5a9de
commit https://github.com/vim/vim/commit/fff341eb5960f656529b56c949043f041eddbb1e
Christian Brabandt <cb@256bit.org>
parents:
8528
diff
changeset
|
1052 1555, |
66afe6d5a9de
commit https://github.com/vim/vim/commit/fff341eb5960f656529b56c949043f041eddbb1e
Christian Brabandt <cb@256bit.org>
parents:
8528
diff
changeset
|
1053 /**/ |
8528
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8526
diff
changeset
|
1054 1554, |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8526
diff
changeset
|
1055 /**/ |
8526
981cc3bef9f3
commit https://github.com/vim/vim/commit/8dcf259d904cfb965d31841dc74a5cfaf5a351d9
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
1056 1553, |
981cc3bef9f3
commit https://github.com/vim/vim/commit/8dcf259d904cfb965d31841dc74a5cfaf5a351d9
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
1057 /**/ |
8524
2f57bbe870ea
commit https://github.com/vim/vim/commit/7f8989dd8a627af2185df381195351a913f3777f
Christian Brabandt <cb@256bit.org>
parents:
8522
diff
changeset
|
1058 1552, |
2f57bbe870ea
commit https://github.com/vim/vim/commit/7f8989dd8a627af2185df381195351a913f3777f
Christian Brabandt <cb@256bit.org>
parents:
8522
diff
changeset
|
1059 /**/ |
8522
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8520
diff
changeset
|
1060 1551, |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8520
diff
changeset
|
1061 /**/ |
8520
b4350a4d1e01
commit https://github.com/vim/vim/commit/2d8f56acb32428d0f965d42dd13b27100b46fa15
Christian Brabandt <cb@256bit.org>
parents:
8518
diff
changeset
|
1062 1550, |
b4350a4d1e01
commit https://github.com/vim/vim/commit/2d8f56acb32428d0f965d42dd13b27100b46fa15
Christian Brabandt <cb@256bit.org>
parents:
8518
diff
changeset
|
1063 /**/ |
8518
24ac80377d86
commit https://github.com/vim/vim/commit/c835293d54c223627c7d4516ee273c21a3506fa1
Christian Brabandt <cb@256bit.org>
parents:
8516
diff
changeset
|
1064 1549, |
24ac80377d86
commit https://github.com/vim/vim/commit/c835293d54c223627c7d4516ee273c21a3506fa1
Christian Brabandt <cb@256bit.org>
parents:
8516
diff
changeset
|
1065 /**/ |
8516
14ab6c685581
commit https://github.com/vim/vim/commit/5a2800fd141a8fc0c80cdf421dcb76001a22327f
Christian Brabandt <cb@256bit.org>
parents:
8514
diff
changeset
|
1066 1548, |
14ab6c685581
commit https://github.com/vim/vim/commit/5a2800fd141a8fc0c80cdf421dcb76001a22327f
Christian Brabandt <cb@256bit.org>
parents:
8514
diff
changeset
|
1067 /**/ |
8514
260d01c1cd17
commit https://github.com/vim/vim/commit/385111bd86e0b38667879c3e89506ca1ae98e1df
Christian Brabandt <cb@256bit.org>
parents:
8512
diff
changeset
|
1068 1547, |
260d01c1cd17
commit https://github.com/vim/vim/commit/385111bd86e0b38667879c3e89506ca1ae98e1df
Christian Brabandt <cb@256bit.org>
parents:
8512
diff
changeset
|
1069 /**/ |
8512
5104f96b6ecf
commit https://github.com/vim/vim/commit/f6f32c38bf3319144a84a01a154c8c91939e7acf
Christian Brabandt <cb@256bit.org>
parents:
8510
diff
changeset
|
1070 1546, |
5104f96b6ecf
commit https://github.com/vim/vim/commit/f6f32c38bf3319144a84a01a154c8c91939e7acf
Christian Brabandt <cb@256bit.org>
parents:
8510
diff
changeset
|
1071 /**/ |
8510
9f5bd031530d
commit https://github.com/vim/vim/commit/b4ebf9ae3b93d082ab3b9f4aab2f6729f77fa46a
Christian Brabandt <cb@256bit.org>
parents:
8508
diff
changeset
|
1072 1545, |
9f5bd031530d
commit https://github.com/vim/vim/commit/b4ebf9ae3b93d082ab3b9f4aab2f6729f77fa46a
Christian Brabandt <cb@256bit.org>
parents:
8508
diff
changeset
|
1073 /**/ |
8508
13e5a1f02be4
commit https://github.com/vim/vim/commit/583c1f14a4e1d89fe029b1c134d405357468ece7
Christian Brabandt <cb@256bit.org>
parents:
8506
diff
changeset
|
1074 1544, |
13e5a1f02be4
commit https://github.com/vim/vim/commit/583c1f14a4e1d89fe029b1c134d405357468ece7
Christian Brabandt <cb@256bit.org>
parents:
8506
diff
changeset
|
1075 /**/ |
8506
c93c352717b3
commit https://github.com/vim/vim/commit/5a6ec52392b78d41153660d0353d5b86a2dc583c
Christian Brabandt <cb@256bit.org>
parents:
8504
diff
changeset
|
1076 1543, |
c93c352717b3
commit https://github.com/vim/vim/commit/5a6ec52392b78d41153660d0353d5b86a2dc583c
Christian Brabandt <cb@256bit.org>
parents:
8504
diff
changeset
|
1077 /**/ |
8504
0b31cc4b261e
commit https://github.com/vim/vim/commit/1adda3403d80e96446248a92ceafee036053765c
Christian Brabandt <cb@256bit.org>
parents:
8502
diff
changeset
|
1078 1542, |
0b31cc4b261e
commit https://github.com/vim/vim/commit/1adda3403d80e96446248a92ceafee036053765c
Christian Brabandt <cb@256bit.org>
parents:
8502
diff
changeset
|
1079 /**/ |
8502
ee5cb2e9ed5a
commit https://github.com/vim/vim/commit/8950a563b306ce76f259573d91c2ddccdf52e32e
Christian Brabandt <cb@256bit.org>
parents:
8500
diff
changeset
|
1080 1541, |
ee5cb2e9ed5a
commit https://github.com/vim/vim/commit/8950a563b306ce76f259573d91c2ddccdf52e32e
Christian Brabandt <cb@256bit.org>
parents:
8500
diff
changeset
|
1081 /**/ |
8500
1227dc21865b
commit https://github.com/vim/vim/commit/ac42afd10b96424b89762871905e3e785cdfba3d
Christian Brabandt <cb@256bit.org>
parents:
8498
diff
changeset
|
1082 1540, |
1227dc21865b
commit https://github.com/vim/vim/commit/ac42afd10b96424b89762871905e3e785cdfba3d
Christian Brabandt <cb@256bit.org>
parents:
8498
diff
changeset
|
1083 /**/ |
8498
42277980a76d
commit https://github.com/vim/vim/commit/8e2c942ce49f2555d7dc2088cf3aa856820c5e32
Christian Brabandt <cb@256bit.org>
parents:
8495
diff
changeset
|
1084 1539, |
42277980a76d
commit https://github.com/vim/vim/commit/8e2c942ce49f2555d7dc2088cf3aa856820c5e32
Christian Brabandt <cb@256bit.org>
parents:
8495
diff
changeset
|
1085 /**/ |
8495
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
1086 1538, |
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
1087 /**/ |
8493
caed4b2d305f
commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821
Christian Brabandt <cb@256bit.org>
parents:
8491
diff
changeset
|
1088 1537, |
caed4b2d305f
commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821
Christian Brabandt <cb@256bit.org>
parents:
8491
diff
changeset
|
1089 /**/ |
8491
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8489
diff
changeset
|
1090 1536, |
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8489
diff
changeset
|
1091 /**/ |
8489
76b9c2305531
commit https://github.com/vim/vim/commit/9e496854a9fe56699687a4f86003fad115b3b375
Christian Brabandt <cb@256bit.org>
parents:
8487
diff
changeset
|
1092 1535, |
76b9c2305531
commit https://github.com/vim/vim/commit/9e496854a9fe56699687a4f86003fad115b3b375
Christian Brabandt <cb@256bit.org>
parents:
8487
diff
changeset
|
1093 /**/ |
8487
ce789e3dc84d
commit https://github.com/vim/vim/commit/846cdb227526272e2cd8ecba4f7168e2226cd633
Christian Brabandt <cb@256bit.org>
parents:
8485
diff
changeset
|
1094 1534, |
ce789e3dc84d
commit https://github.com/vim/vim/commit/846cdb227526272e2cd8ecba4f7168e2226cd633
Christian Brabandt <cb@256bit.org>
parents:
8485
diff
changeset
|
1095 /**/ |
8485
675ec6cc9021
commit https://github.com/vim/vim/commit/74c5bbf13435a7ab1e3461078bbcb1200f0451e1
Christian Brabandt <cb@256bit.org>
parents:
8483
diff
changeset
|
1096 1533, |
675ec6cc9021
commit https://github.com/vim/vim/commit/74c5bbf13435a7ab1e3461078bbcb1200f0451e1
Christian Brabandt <cb@256bit.org>
parents:
8483
diff
changeset
|
1097 /**/ |
8483
7376d36395f0
commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents:
8481
diff
changeset
|
1098 1532, |
7376d36395f0
commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents:
8481
diff
changeset
|
1099 /**/ |
8481
8924d7adbc22
commit https://github.com/vim/vim/commit/40e8cb292c36f5057628e570591e8917ac1ca121
Christian Brabandt <cb@256bit.org>
parents:
8479
diff
changeset
|
1100 1531, |
8924d7adbc22
commit https://github.com/vim/vim/commit/40e8cb292c36f5057628e570591e8917ac1ca121
Christian Brabandt <cb@256bit.org>
parents:
8479
diff
changeset
|
1101 /**/ |
8479
9f63e4506c40
commit https://github.com/vim/vim/commit/75578a388d2aff59dc330ceccd8894c79b4bc735
Christian Brabandt <cb@256bit.org>
parents:
8477
diff
changeset
|
1102 1530, |
9f63e4506c40
commit https://github.com/vim/vim/commit/75578a388d2aff59dc330ceccd8894c79b4bc735
Christian Brabandt <cb@256bit.org>
parents:
8477
diff
changeset
|
1103 /**/ |
8477
c08c6d19db4d
commit https://github.com/vim/vim/commit/29fd03878c41526a586d77b3f3cd7938d26297af
Christian Brabandt <cb@256bit.org>
parents:
8475
diff
changeset
|
1104 1529, |
c08c6d19db4d
commit https://github.com/vim/vim/commit/29fd03878c41526a586d77b3f3cd7938d26297af
Christian Brabandt <cb@256bit.org>
parents:
8475
diff
changeset
|
1105 /**/ |
8475
aec051e61547
commit https://github.com/vim/vim/commit/af1a0e371e739f8dff337fd31da0ff8ffb347b43
Christian Brabandt <cb@256bit.org>
parents:
8473
diff
changeset
|
1106 1528, |
aec051e61547
commit https://github.com/vim/vim/commit/af1a0e371e739f8dff337fd31da0ff8ffb347b43
Christian Brabandt <cb@256bit.org>
parents:
8473
diff
changeset
|
1107 /**/ |
8473
ade1797aa6f4
commit https://github.com/vim/vim/commit/562ca7142845273bca656aa5aeeda90f001062e0
Christian Brabandt <cb@256bit.org>
parents:
8471
diff
changeset
|
1108 1527, |
ade1797aa6f4
commit https://github.com/vim/vim/commit/562ca7142845273bca656aa5aeeda90f001062e0
Christian Brabandt <cb@256bit.org>
parents:
8471
diff
changeset
|
1109 /**/ |
8471
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
1110 1526, |
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
1111 /**/ |
8469
42020d59a432
commit https://github.com/vim/vim/commit/beb003b303cde1e55634aae9f810535684b76211
Christian Brabandt <cb@256bit.org>
parents:
8467
diff
changeset
|
1112 1525, |
42020d59a432
commit https://github.com/vim/vim/commit/beb003b303cde1e55634aae9f810535684b76211
Christian Brabandt <cb@256bit.org>
parents:
8467
diff
changeset
|
1113 /**/ |
8467
86a327403fb0
commit https://github.com/vim/vim/commit/045a284a83c2a85113de233d5233eae34724a4b6
Christian Brabandt <cb@256bit.org>
parents:
8465
diff
changeset
|
1114 1524, |
86a327403fb0
commit https://github.com/vim/vim/commit/045a284a83c2a85113de233d5233eae34724a4b6
Christian Brabandt <cb@256bit.org>
parents:
8465
diff
changeset
|
1115 /**/ |
8465
5927180d0b4d
commit https://github.com/vim/vim/commit/0622732b32ff4a883e4f490a1b38ada539da8ba2
Christian Brabandt <cb@256bit.org>
parents:
8463
diff
changeset
|
1116 1523, |
5927180d0b4d
commit https://github.com/vim/vim/commit/0622732b32ff4a883e4f490a1b38ada539da8ba2
Christian Brabandt <cb@256bit.org>
parents:
8463
diff
changeset
|
1117 /**/ |
8463
508504ca52ac
commit https://github.com/vim/vim/commit/6ff02c96519946716069f05c62849986a706033b
Christian Brabandt <cb@256bit.org>
parents:
8461
diff
changeset
|
1118 1522, |
508504ca52ac
commit https://github.com/vim/vim/commit/6ff02c96519946716069f05c62849986a706033b
Christian Brabandt <cb@256bit.org>
parents:
8461
diff
changeset
|
1119 /**/ |
8461
988ddc5742f5
commit https://github.com/vim/vim/commit/8322e1f06e8fa39a6bb790a7d8d7db5d7aff3366
Christian Brabandt <cb@256bit.org>
parents:
8459
diff
changeset
|
1120 1521, |
988ddc5742f5
commit https://github.com/vim/vim/commit/8322e1f06e8fa39a6bb790a7d8d7db5d7aff3366
Christian Brabandt <cb@256bit.org>
parents:
8459
diff
changeset
|
1121 /**/ |
8459
9fb171e8466d
commit https://github.com/vim/vim/commit/d9d473ea124339c4dd173127db47c4583645ac2c
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
1122 1520, |
9fb171e8466d
commit https://github.com/vim/vim/commit/d9d473ea124339c4dd173127db47c4583645ac2c
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
1123 /**/ |
8457
20533e3de373
commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents:
8455
diff
changeset
|
1124 1519, |
20533e3de373
commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents:
8455
diff
changeset
|
1125 /**/ |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8453
diff
changeset
|
1126 1518, |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8453
diff
changeset
|
1127 /**/ |
8453
fed4e19bd884
commit https://github.com/vim/vim/commit/367aabdbf76f7df00fd18e39d9378d1360a526ab
Christian Brabandt <cb@256bit.org>
parents:
8451
diff
changeset
|
1128 1517, |
fed4e19bd884
commit https://github.com/vim/vim/commit/367aabdbf76f7df00fd18e39d9378d1360a526ab
Christian Brabandt <cb@256bit.org>
parents:
8451
diff
changeset
|
1129 /**/ |
8451
c0b5c2b0a5ee
commit https://github.com/vim/vim/commit/8049253b96838b3584600e5ad229abad37a95b10
Christian Brabandt <cb@256bit.org>
parents:
8449
diff
changeset
|
1130 1516, |
c0b5c2b0a5ee
commit https://github.com/vim/vim/commit/8049253b96838b3584600e5ad229abad37a95b10
Christian Brabandt <cb@256bit.org>
parents:
8449
diff
changeset
|
1131 /**/ |
8449
3d567b5839c5
commit https://github.com/vim/vim/commit/9fe885e49ade94e6277db0dd18a5bbc1c94c60c4
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
1132 1515, |
3d567b5839c5
commit https://github.com/vim/vim/commit/9fe885e49ade94e6277db0dd18a5bbc1c94c60c4
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
1133 /**/ |
8447
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8445
diff
changeset
|
1134 1514, |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8445
diff
changeset
|
1135 /**/ |
8445
dd2e2bd69d0e
commit https://github.com/vim/vim/commit/41e0f2f48f541eb2c8eb5620d3f1d270eb979154
Christian Brabandt <cb@256bit.org>
parents:
8443
diff
changeset
|
1136 1513, |
dd2e2bd69d0e
commit https://github.com/vim/vim/commit/41e0f2f48f541eb2c8eb5620d3f1d270eb979154
Christian Brabandt <cb@256bit.org>
parents:
8443
diff
changeset
|
1137 /**/ |
8443
6c421014a0b3
commit https://github.com/vim/vim/commit/94d0191dbcce829ad9b92d902b6e2717041db3b8
Christian Brabandt <cb@256bit.org>
parents:
8441
diff
changeset
|
1138 1512, |
6c421014a0b3
commit https://github.com/vim/vim/commit/94d0191dbcce829ad9b92d902b6e2717041db3b8
Christian Brabandt <cb@256bit.org>
parents:
8441
diff
changeset
|
1139 /**/ |
8441
768065c86a35
commit https://github.com/vim/vim/commit/af6e36ff16736106a1bc63bb4d01f51fdfeb29a2
Christian Brabandt <cb@256bit.org>
parents:
8438
diff
changeset
|
1140 1511, |
768065c86a35
commit https://github.com/vim/vim/commit/af6e36ff16736106a1bc63bb4d01f51fdfeb29a2
Christian Brabandt <cb@256bit.org>
parents:
8438
diff
changeset
|
1141 /**/ |
8438
541ca10b3bc7
commit https://github.com/vim/vim/commit/304563c0b3e24895322ce3a29378388665b4769b
Christian Brabandt <cb@256bit.org>
parents:
8436
diff
changeset
|
1142 1510, |
541ca10b3bc7
commit https://github.com/vim/vim/commit/304563c0b3e24895322ce3a29378388665b4769b
Christian Brabandt <cb@256bit.org>
parents:
8436
diff
changeset
|
1143 /**/ |
8436
0e6fd2f802b3
commit https://github.com/vim/vim/commit/151f656e171f6ffbb0cbeb343cbcf2ffac0c36b0
Christian Brabandt <cb@256bit.org>
parents:
8434
diff
changeset
|
1144 1509, |
0e6fd2f802b3
commit https://github.com/vim/vim/commit/151f656e171f6ffbb0cbeb343cbcf2ffac0c36b0
Christian Brabandt <cb@256bit.org>
parents:
8434
diff
changeset
|
1145 /**/ |
8434
a0e7d7070799
commit https://github.com/vim/vim/commit/47cff3a444be7e99bae52b39b2174c22d58d2f86
Christian Brabandt <cb@256bit.org>
parents:
8432
diff
changeset
|
1146 1508, |
a0e7d7070799
commit https://github.com/vim/vim/commit/47cff3a444be7e99bae52b39b2174c22d58d2f86
Christian Brabandt <cb@256bit.org>
parents:
8432
diff
changeset
|
1147 /**/ |
8432
6af4329b5592
commit https://github.com/vim/vim/commit/4e329fcaf7122370a6d1815a30aaf29476d3f722
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
1148 1507, |
6af4329b5592
commit https://github.com/vim/vim/commit/4e329fcaf7122370a6d1815a30aaf29476d3f722
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
1149 /**/ |
8430
800423dbc260
commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents:
8428
diff
changeset
|
1150 1506, |
800423dbc260
commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents:
8428
diff
changeset
|
1151 /**/ |
8428
4e22d0e7bfb1
commit https://github.com/vim/vim/commit/d0b6502a7ace39d6cd30874110a572371d10beae
Christian Brabandt <cb@256bit.org>
parents:
8426
diff
changeset
|
1152 1505, |
4e22d0e7bfb1
commit https://github.com/vim/vim/commit/d0b6502a7ace39d6cd30874110a572371d10beae
Christian Brabandt <cb@256bit.org>
parents:
8426
diff
changeset
|
1153 /**/ |
8426
02ce040591c8
commit https://github.com/vim/vim/commit/3f39f648662bf8723f687d14694041779ed0780c
Christian Brabandt <cb@256bit.org>
parents:
8424
diff
changeset
|
1154 1504, |
02ce040591c8
commit https://github.com/vim/vim/commit/3f39f648662bf8723f687d14694041779ed0780c
Christian Brabandt <cb@256bit.org>
parents:
8424
diff
changeset
|
1155 /**/ |
8424
be45d4921f1f
commit https://github.com/vim/vim/commit/839fd11d7ed1a96bace3159c4d1861658864aae3
Christian Brabandt <cb@256bit.org>
parents:
8422
diff
changeset
|
1156 1503, |
be45d4921f1f
commit https://github.com/vim/vim/commit/839fd11d7ed1a96bace3159c4d1861658864aae3
Christian Brabandt <cb@256bit.org>
parents:
8422
diff
changeset
|
1157 /**/ |
8422
5d2c84be23b5
commit https://github.com/vim/vim/commit/99ef06296f3c37490511c03786a2c8672e015c56
Christian Brabandt <cb@256bit.org>
parents:
8420
diff
changeset
|
1158 1502, |
5d2c84be23b5
commit https://github.com/vim/vim/commit/99ef06296f3c37490511c03786a2c8672e015c56
Christian Brabandt <cb@256bit.org>
parents:
8420
diff
changeset
|
1159 /**/ |
8420
f6d21a33d489
commit https://github.com/vim/vim/commit/38fd4bb2842df7634823b99c655b3896a7a2e988
Christian Brabandt <cb@256bit.org>
parents:
8418
diff
changeset
|
1160 1501, |
f6d21a33d489
commit https://github.com/vim/vim/commit/38fd4bb2842df7634823b99c655b3896a7a2e988
Christian Brabandt <cb@256bit.org>
parents:
8418
diff
changeset
|
1161 /**/ |
8418
89f38c77e11e
commit https://github.com/vim/vim/commit/9ef00be261115acb5bae3b3ca45c1d86a19ba2c7
Christian Brabandt <cb@256bit.org>
parents:
8416
diff
changeset
|
1162 1500, |
89f38c77e11e
commit https://github.com/vim/vim/commit/9ef00be261115acb5bae3b3ca45c1d86a19ba2c7
Christian Brabandt <cb@256bit.org>
parents:
8416
diff
changeset
|
1163 /**/ |
8416
1a6527cce675
commit https://github.com/vim/vim/commit/be82c254862e475a582c0717455e1db6bf96b0d0
Christian Brabandt <cb@256bit.org>
parents:
8414
diff
changeset
|
1164 1499, |
1a6527cce675
commit https://github.com/vim/vim/commit/be82c254862e475a582c0717455e1db6bf96b0d0
Christian Brabandt <cb@256bit.org>
parents:
8414
diff
changeset
|
1165 /**/ |
8414
8c888844de9c
commit https://github.com/vim/vim/commit/2588b5a43f049ddf542991050260237051caad77
Christian Brabandt <cb@256bit.org>
parents:
8412
diff
changeset
|
1166 1498, |
8c888844de9c
commit https://github.com/vim/vim/commit/2588b5a43f049ddf542991050260237051caad77
Christian Brabandt <cb@256bit.org>
parents:
8412
diff
changeset
|
1167 /**/ |
8412
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8410
diff
changeset
|
1168 1497, |
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8410
diff
changeset
|
1169 /**/ |
8410
05ec48deb353
commit https://github.com/vim/vim/commit/a96909cfaf21dbbf033e904ccdcda9905799f0fc
Christian Brabandt <cb@256bit.org>
parents:
8408
diff
changeset
|
1170 1496, |
05ec48deb353
commit https://github.com/vim/vim/commit/a96909cfaf21dbbf033e904ccdcda9905799f0fc
Christian Brabandt <cb@256bit.org>
parents:
8408
diff
changeset
|
1171 /**/ |
8408
2f1a63269250
commit https://github.com/vim/vim/commit/802d559431e6003a46c7f19628213b7cec8ba6d0
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
1172 1495, |
2f1a63269250
commit https://github.com/vim/vim/commit/802d559431e6003a46c7f19628213b7cec8ba6d0
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
1173 /**/ |
8406
5d926807c19c
commit https://github.com/vim/vim/commit/119d4693e06e68d4f099aa7287e375ae3d265fd0
Christian Brabandt <cb@256bit.org>
parents:
8404
diff
changeset
|
1174 1494, |
5d926807c19c
commit https://github.com/vim/vim/commit/119d4693e06e68d4f099aa7287e375ae3d265fd0
Christian Brabandt <cb@256bit.org>
parents:
8404
diff
changeset
|
1175 /**/ |
8404
8894d595b786
commit https://github.com/vim/vim/commit/5983ad0b038fa689653246cb304fd43e8ae39a78
Christian Brabandt <cb@256bit.org>
parents:
8402
diff
changeset
|
1176 1493, |
8894d595b786
commit https://github.com/vim/vim/commit/5983ad0b038fa689653246cb304fd43e8ae39a78
Christian Brabandt <cb@256bit.org>
parents:
8402
diff
changeset
|
1177 /**/ |
8402
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8399
diff
changeset
|
1178 1492, |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8399
diff
changeset
|
1179 /**/ |
8399
7d1c42e3ce11
commit https://github.com/vim/vim/commit/20b4f463f4ab50fa9bcc9838aa94101fa5698125
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
1180 1491, |
7d1c42e3ce11
commit https://github.com/vim/vim/commit/20b4f463f4ab50fa9bcc9838aa94101fa5698125
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
1181 /**/ |
8397
1e58a938aafc
commit https://github.com/vim/vim/commit/2369c15407cf9a730a396ebf9709abb280c5ce48
Christian Brabandt <cb@256bit.org>
parents:
8395
diff
changeset
|
1182 1490, |
1e58a938aafc
commit https://github.com/vim/vim/commit/2369c15407cf9a730a396ebf9709abb280c5ce48
Christian Brabandt <cb@256bit.org>
parents:
8395
diff
changeset
|
1183 /**/ |
8395
8137d5b642f3
commit https://github.com/vim/vim/commit/0c171716c0430458741fbf18a6fd4baea4c0390b
Christian Brabandt <cb@256bit.org>
parents:
8393
diff
changeset
|
1184 1489, |
8137d5b642f3
commit https://github.com/vim/vim/commit/0c171716c0430458741fbf18a6fd4baea4c0390b
Christian Brabandt <cb@256bit.org>
parents:
8393
diff
changeset
|
1185 /**/ |
8393
a7f94f0ba183
commit https://github.com/vim/vim/commit/179f1b9a7ddf3624daf6380c3dad740e0a1ba361
Christian Brabandt <cb@256bit.org>
parents:
8390
diff
changeset
|
1186 1488, |
a7f94f0ba183
commit https://github.com/vim/vim/commit/179f1b9a7ddf3624daf6380c3dad740e0a1ba361
Christian Brabandt <cb@256bit.org>
parents:
8390
diff
changeset
|
1187 /**/ |
8390
2230c0da23bd
commit https://github.com/vim/vim/commit/6300317b15eb33409f652c603fb402417fe4eed7
Christian Brabandt <cb@256bit.org>
parents:
8388
diff
changeset
|
1188 1487, |
2230c0da23bd
commit https://github.com/vim/vim/commit/6300317b15eb33409f652c603fb402417fe4eed7
Christian Brabandt <cb@256bit.org>
parents:
8388
diff
changeset
|
1189 /**/ |
8388
f5972de59001
commit https://github.com/vim/vim/commit/f3654827368e6204608036353a0360e9e7c21e02
Christian Brabandt <cb@256bit.org>
parents:
8386
diff
changeset
|
1190 1486, |
f5972de59001
commit https://github.com/vim/vim/commit/f3654827368e6204608036353a0360e9e7c21e02
Christian Brabandt <cb@256bit.org>
parents:
8386
diff
changeset
|
1191 /**/ |
8386
3b9a306724ec
commit https://github.com/vim/vim/commit/014069a7ac51557e531eb3c8b94e36f2193f6c21
Christian Brabandt <cb@256bit.org>
parents:
8384
diff
changeset
|
1192 1485, |
3b9a306724ec
commit https://github.com/vim/vim/commit/014069a7ac51557e531eb3c8b94e36f2193f6c21
Christian Brabandt <cb@256bit.org>
parents:
8384
diff
changeset
|
1193 /**/ |
8384
764dba33605c
commit https://github.com/vim/vim/commit/c25558bff4ed10d2642e6f5c016701641c494916
Christian Brabandt <cb@256bit.org>
parents:
8382
diff
changeset
|
1194 1484, |
764dba33605c
commit https://github.com/vim/vim/commit/c25558bff4ed10d2642e6f5c016701641c494916
Christian Brabandt <cb@256bit.org>
parents:
8382
diff
changeset
|
1195 /**/ |
8382
3dbe93a240d8
commit https://github.com/vim/vim/commit/d6547fc6471d9084f942bdc4ae3aedb39361751d
Christian Brabandt <cb@256bit.org>
parents:
8380
diff
changeset
|
1196 1483, |
3dbe93a240d8
commit https://github.com/vim/vim/commit/d6547fc6471d9084f942bdc4ae3aedb39361751d
Christian Brabandt <cb@256bit.org>
parents:
8380
diff
changeset
|
1197 /**/ |
8380
892d7dcf17ec
commit https://github.com/vim/vim/commit/da94fdf2588b3910d38e477a755748ce2c6d2e66
Christian Brabandt <cb@256bit.org>
parents:
8378
diff
changeset
|
1198 1482, |
892d7dcf17ec
commit https://github.com/vim/vim/commit/da94fdf2588b3910d38e477a755748ce2c6d2e66
Christian Brabandt <cb@256bit.org>
parents:
8378
diff
changeset
|
1199 /**/ |
8378
52777ec8a394
commit https://github.com/vim/vim/commit/9f7820f83bc994bbbecdca9483b355953f07179b
Christian Brabandt <cb@256bit.org>
parents:
8376
diff
changeset
|
1200 1481, |
52777ec8a394
commit https://github.com/vim/vim/commit/9f7820f83bc994bbbecdca9483b355953f07179b
Christian Brabandt <cb@256bit.org>
parents:
8376
diff
changeset
|
1201 /**/ |
8376
e448f2a5d45b
commit https://github.com/vim/vim/commit/91715873d19a1859c08eeded7848113596e2f2bd
Christian Brabandt <cb@256bit.org>
parents:
8374
diff
changeset
|
1202 1480, |
e448f2a5d45b
commit https://github.com/vim/vim/commit/91715873d19a1859c08eeded7848113596e2f2bd
Christian Brabandt <cb@256bit.org>
parents:
8374
diff
changeset
|
1203 /**/ |
8374
5d834058bf44
commit https://github.com/vim/vim/commit/863c1a9079fa340d663ccafb011729a29186d73e
Christian Brabandt <cb@256bit.org>
parents:
8372
diff
changeset
|
1204 1479, |
5d834058bf44
commit https://github.com/vim/vim/commit/863c1a9079fa340d663ccafb011729a29186d73e
Christian Brabandt <cb@256bit.org>
parents:
8372
diff
changeset
|
1205 /**/ |
8372
ce791ff9e0da
commit https://github.com/vim/vim/commit/1bdd42627d619258d0e847f217cfc1c2795f1ac5
Christian Brabandt <cb@256bit.org>
parents:
8370
diff
changeset
|
1206 1478, |
ce791ff9e0da
commit https://github.com/vim/vim/commit/1bdd42627d619258d0e847f217cfc1c2795f1ac5
Christian Brabandt <cb@256bit.org>
parents:
8370
diff
changeset
|
1207 /**/ |
8370
cd7ea16d1300
commit https://github.com/vim/vim/commit/b5760a1ce5b700fc32b8bd11948ee189a847c59e
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
1208 1477, |
cd7ea16d1300
commit https://github.com/vim/vim/commit/b5760a1ce5b700fc32b8bd11948ee189a847c59e
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
1209 /**/ |
8368
db2a07b710ed
commit https://github.com/vim/vim/commit/f1d2501ebe33e148886c2914acd33140e20ee222
Christian Brabandt <cb@256bit.org>
parents:
8366
diff
changeset
|
1210 1476, |
db2a07b710ed
commit https://github.com/vim/vim/commit/f1d2501ebe33e148886c2914acd33140e20ee222
Christian Brabandt <cb@256bit.org>
parents:
8366
diff
changeset
|
1211 /**/ |
8366
6099e8185045
commit https://github.com/vim/vim/commit/00ded43a5a85df57abb74f9e3a38a401f6fbd8fd
Christian Brabandt <cb@256bit.org>
parents:
8364
diff
changeset
|
1212 1475, |
6099e8185045
commit https://github.com/vim/vim/commit/00ded43a5a85df57abb74f9e3a38a401f6fbd8fd
Christian Brabandt <cb@256bit.org>
parents:
8364
diff
changeset
|
1213 /**/ |
8364
991d8fd4d841
commit https://github.com/vim/vim/commit/5fac467474376a844407cecc0ff481510ead221c
Christian Brabandt <cb@256bit.org>
parents:
8362
diff
changeset
|
1214 1474, |
991d8fd4d841
commit https://github.com/vim/vim/commit/5fac467474376a844407cecc0ff481510ead221c
Christian Brabandt <cb@256bit.org>
parents:
8362
diff
changeset
|
1215 /**/ |
8362
a541dd5cfd3a
commit https://github.com/vim/vim/commit/d1413d90983fc6c579ad66ba4d4611b057197f94
Christian Brabandt <cb@256bit.org>
parents:
8360
diff
changeset
|
1216 1473, |
a541dd5cfd3a
commit https://github.com/vim/vim/commit/d1413d90983fc6c579ad66ba4d4611b057197f94
Christian Brabandt <cb@256bit.org>
parents:
8360
diff
changeset
|
1217 /**/ |
8360
45740f83b3ce
commit https://github.com/vim/vim/commit/4ca812b15378f83e56a2dc42947a61d0aa40697f
Christian Brabandt <cb@256bit.org>
parents:
8358
diff
changeset
|
1218 1472, |
45740f83b3ce
commit https://github.com/vim/vim/commit/4ca812b15378f83e56a2dc42947a61d0aa40697f
Christian Brabandt <cb@256bit.org>
parents:
8358
diff
changeset
|
1219 /**/ |
8358
49d0e094cb93
commit https://github.com/vim/vim/commit/bf73b91c664488ca57e2b4a8eb9b1f36f6625bc7
Christian Brabandt <cb@256bit.org>
parents:
8356
diff
changeset
|
1220 1471, |
49d0e094cb93
commit https://github.com/vim/vim/commit/bf73b91c664488ca57e2b4a8eb9b1f36f6625bc7
Christian Brabandt <cb@256bit.org>
parents:
8356
diff
changeset
|
1221 /**/ |
8356
e0d576743e4f
commit https://github.com/vim/vim/commit/289a90551d185c307abd4cfe6baadea8990d956b
Christian Brabandt <cb@256bit.org>
parents:
8354
diff
changeset
|
1222 1470, |
e0d576743e4f
commit https://github.com/vim/vim/commit/289a90551d185c307abd4cfe6baadea8990d956b
Christian Brabandt <cb@256bit.org>
parents:
8354
diff
changeset
|
1223 /**/ |
8354
b151c3f9be72
commit https://github.com/vim/vim/commit/42bc6dde46f1b52476cc84ee89277f981b4116c4
Christian Brabandt <cb@256bit.org>
parents:
8352
diff
changeset
|
1224 1469, |
b151c3f9be72
commit https://github.com/vim/vim/commit/42bc6dde46f1b52476cc84ee89277f981b4116c4
Christian Brabandt <cb@256bit.org>
parents:
8352
diff
changeset
|
1225 /**/ |
8352
2c40b40c3220
commit https://github.com/vim/vim/commit/51d1d536802b5d8232d47e56f165ba8a009529b5
Christian Brabandt <cb@256bit.org>
parents:
8350
diff
changeset
|
1226 1468, |
2c40b40c3220
commit https://github.com/vim/vim/commit/51d1d536802b5d8232d47e56f165ba8a009529b5
Christian Brabandt <cb@256bit.org>
parents:
8350
diff
changeset
|
1227 /**/ |
8350
e70fa2e110ec
commit https://github.com/vim/vim/commit/10b369f67064cee91a5eb41383a694162c5c5e73
Christian Brabandt <cb@256bit.org>
parents:
8348
diff
changeset
|
1228 1467, |
e70fa2e110ec
commit https://github.com/vim/vim/commit/10b369f67064cee91a5eb41383a694162c5c5e73
Christian Brabandt <cb@256bit.org>
parents:
8348
diff
changeset
|
1229 /**/ |
8348
a0cff08e7aa3
commit https://github.com/vim/vim/commit/6b584af3d7337639da27fd847c7c69a406af397e
Christian Brabandt <cb@256bit.org>
parents:
8346
diff
changeset
|
1230 1466, |
a0cff08e7aa3
commit https://github.com/vim/vim/commit/6b584af3d7337639da27fd847c7c69a406af397e
Christian Brabandt <cb@256bit.org>
parents:
8346
diff
changeset
|
1231 /**/ |
8346
8fa75a4c39bd
commit https://github.com/vim/vim/commit/cc7f8be3e0e6c4d902b02052a862e21c3a3fbe22
Christian Brabandt <cb@256bit.org>
parents:
8344
diff
changeset
|
1232 1465, |
8fa75a4c39bd
commit https://github.com/vim/vim/commit/cc7f8be3e0e6c4d902b02052a862e21c3a3fbe22
Christian Brabandt <cb@256bit.org>
parents:
8344
diff
changeset
|
1233 /**/ |
8344
2aa24f702b8d
commit https://github.com/vim/vim/commit/5131c144feb046c5e2b72e6c172159d80ce06b3c
Christian Brabandt <cb@256bit.org>
parents:
8342
diff
changeset
|
1234 1464, |
2aa24f702b8d
commit https://github.com/vim/vim/commit/5131c144feb046c5e2b72e6c172159d80ce06b3c
Christian Brabandt <cb@256bit.org>
parents:
8342
diff
changeset
|
1235 /**/ |
8342
446558924b66
commit https://github.com/vim/vim/commit/a6b8976bb724f8c85dd5699d115d795f7b730298
Christian Brabandt <cb@256bit.org>
parents:
8340
diff
changeset
|
1236 1463, |
446558924b66
commit https://github.com/vim/vim/commit/a6b8976bb724f8c85dd5699d115d795f7b730298
Christian Brabandt <cb@256bit.org>
parents:
8340
diff
changeset
|
1237 /**/ |
8340
c66e1f50c142
commit https://github.com/vim/vim/commit/2f6271b1e7cff985cac66f6850116bcf3fcccd58
Christian Brabandt <cb@256bit.org>
parents:
8338
diff
changeset
|
1238 1462, |
c66e1f50c142
commit https://github.com/vim/vim/commit/2f6271b1e7cff985cac66f6850116bcf3fcccd58
Christian Brabandt <cb@256bit.org>
parents:
8338
diff
changeset
|
1239 /**/ |
8338
3e54b31d50c7
commit https://github.com/vim/vim/commit/a86f14a923d9a242107c16d0852f61f3daf985a8
Christian Brabandt <cb@256bit.org>
parents:
8336
diff
changeset
|
1240 1461, |
3e54b31d50c7
commit https://github.com/vim/vim/commit/a86f14a923d9a242107c16d0852f61f3daf985a8
Christian Brabandt <cb@256bit.org>
parents:
8336
diff
changeset
|
1241 /**/ |
8336
d44ff1525ff0
commit https://github.com/vim/vim/commit/fdcc9afb71ea88fe63bbed8bad0d5bae607bfb73
Christian Brabandt <cb@256bit.org>
parents:
8334
diff
changeset
|
1242 1460, |
d44ff1525ff0
commit https://github.com/vim/vim/commit/fdcc9afb71ea88fe63bbed8bad0d5bae607bfb73
Christian Brabandt <cb@256bit.org>
parents:
8334
diff
changeset
|
1243 /**/ |
8334
ad4b00bf2984
commit https://github.com/vim/vim/commit/e081e21f760bffc24ca98d5f9bbdb5f02e6aea79
Christian Brabandt <cb@256bit.org>
parents:
8332
diff
changeset
|
1244 1459, |
ad4b00bf2984
commit https://github.com/vim/vim/commit/e081e21f760bffc24ca98d5f9bbdb5f02e6aea79
Christian Brabandt <cb@256bit.org>
parents:
8332
diff
changeset
|
1245 /**/ |
8332
07713b8243ac
commit https://github.com/vim/vim/commit/fdd6ce4a2f922afac7bd719a00228dbd8539b9c4
Christian Brabandt <cb@256bit.org>
parents:
8330
diff
changeset
|
1246 1458, |
07713b8243ac
commit https://github.com/vim/vim/commit/fdd6ce4a2f922afac7bd719a00228dbd8539b9c4
Christian Brabandt <cb@256bit.org>
parents:
8330
diff
changeset
|
1247 /**/ |
8330
ec940c11f749
commit https://github.com/vim/vim/commit/d42119fff228434fe57e88d501c744de0a9fb1b1
Christian Brabandt <cb@256bit.org>
parents:
8328
diff
changeset
|
1248 1457, |
ec940c11f749
commit https://github.com/vim/vim/commit/d42119fff228434fe57e88d501c744de0a9fb1b1
Christian Brabandt <cb@256bit.org>
parents:
8328
diff
changeset
|
1249 /**/ |
8328
0a55dd381410
commit https://github.com/vim/vim/commit/29e1951e14907b62797554ad0cc85cbbe75a1be4
Christian Brabandt <cb@256bit.org>
parents:
8326
diff
changeset
|
1250 1456, |
0a55dd381410
commit https://github.com/vim/vim/commit/29e1951e14907b62797554ad0cc85cbbe75a1be4
Christian Brabandt <cb@256bit.org>
parents:
8326
diff
changeset
|
1251 /**/ |
8326
bec1dcfaa8be
commit https://github.com/vim/vim/commit/fc2457e21d136cb366076edd448e67c9732dc40a
Christian Brabandt <cb@256bit.org>
parents:
8324
diff
changeset
|
1252 1455, |
bec1dcfaa8be
commit https://github.com/vim/vim/commit/fc2457e21d136cb366076edd448e67c9732dc40a
Christian Brabandt <cb@256bit.org>
parents:
8324
diff
changeset
|
1253 /**/ |
8324
5e88bd55b789
commit https://github.com/vim/vim/commit/9730f74a0b2acb490943393a203a24ab8fab923a
Christian Brabandt <cb@256bit.org>
parents:
8322
diff
changeset
|
1254 1454, |
5e88bd55b789
commit https://github.com/vim/vim/commit/9730f74a0b2acb490943393a203a24ab8fab923a
Christian Brabandt <cb@256bit.org>
parents:
8322
diff
changeset
|
1255 /**/ |
8322
cff44093ddb0
commit https://github.com/vim/vim/commit/9bfdba3de39c9d23d0d44c92b8aeb5a133513806
Christian Brabandt <cb@256bit.org>
parents:
8320
diff
changeset
|
1256 1453, |
cff44093ddb0
commit https://github.com/vim/vim/commit/9bfdba3de39c9d23d0d44c92b8aeb5a133513806
Christian Brabandt <cb@256bit.org>
parents:
8320
diff
changeset
|
1257 /**/ |
8320
e2021d6feeda
commit https://github.com/vim/vim/commit/18b5d6df10a5f08ffebbec85a1cf2828871e3736
Christian Brabandt <cb@256bit.org>
parents:
8318
diff
changeset
|
1258 1452, |
e2021d6feeda
commit https://github.com/vim/vim/commit/18b5d6df10a5f08ffebbec85a1cf2828871e3736
Christian Brabandt <cb@256bit.org>
parents:
8318
diff
changeset
|
1259 /**/ |
8318
190d8084cb3a
commit https://github.com/vim/vim/commit/707659490d35e8d66e8bbdcfd93b12dc1387d86c
Christian Brabandt <cb@256bit.org>
parents:
8316
diff
changeset
|
1260 1451, |
190d8084cb3a
commit https://github.com/vim/vim/commit/707659490d35e8d66e8bbdcfd93b12dc1387d86c
Christian Brabandt <cb@256bit.org>
parents:
8316
diff
changeset
|
1261 /**/ |
8316
058b9e4a291b
commit https://github.com/vim/vim/commit/1c39102666d2ccb998059bd7ada2d2efa31a11bc
Christian Brabandt <cb@256bit.org>
parents:
8314
diff
changeset
|
1262 1450, |
058b9e4a291b
commit https://github.com/vim/vim/commit/1c39102666d2ccb998059bd7ada2d2efa31a11bc
Christian Brabandt <cb@256bit.org>
parents:
8314
diff
changeset
|
1263 /**/ |
8314
4e057409f1d7
commit https://github.com/vim/vim/commit/8cc6977a9655603bfc4aab64edddafef147da65e
Christian Brabandt <cb@256bit.org>
parents:
8312
diff
changeset
|
1264 1449, |
4e057409f1d7
commit https://github.com/vim/vim/commit/8cc6977a9655603bfc4aab64edddafef147da65e
Christian Brabandt <cb@256bit.org>
parents:
8312
diff
changeset
|
1265 /**/ |
8312
1001ec135d6e
commit https://github.com/vim/vim/commit/c5215e943bf5a045089693b60b8805a794d8c2f6
Christian Brabandt <cb@256bit.org>
parents:
8310
diff
changeset
|
1266 1448, |
1001ec135d6e
commit https://github.com/vim/vim/commit/c5215e943bf5a045089693b60b8805a794d8c2f6
Christian Brabandt <cb@256bit.org>
parents:
8310
diff
changeset
|
1267 /**/ |
8310
aec8f8ce8e4c
commit https://github.com/vim/vim/commit/d6051b5eb83687f60bb4a2f3d5cd23fe8b290eb4
Christian Brabandt <cb@256bit.org>
parents:
8308
diff
changeset
|
1268 1447, |
aec8f8ce8e4c
commit https://github.com/vim/vim/commit/d6051b5eb83687f60bb4a2f3d5cd23fe8b290eb4
Christian Brabandt <cb@256bit.org>
parents:
8308
diff
changeset
|
1269 /**/ |
8308
c1f29c1a968a
commit https://github.com/vim/vim/commit/80e78847395b5c8ada7861674774d81bd0a42789
Christian Brabandt <cb@256bit.org>
parents:
8306
diff
changeset
|
1270 1446, |
c1f29c1a968a
commit https://github.com/vim/vim/commit/80e78847395b5c8ada7861674774d81bd0a42789
Christian Brabandt <cb@256bit.org>
parents:
8306
diff
changeset
|
1271 /**/ |
8306
7fcf3f6020c1
commit https://github.com/vim/vim/commit/b36287283781e09d8874157b9d9bdc5243a2f319
Christian Brabandt <cb@256bit.org>
parents:
8304
diff
changeset
|
1272 1445, |
7fcf3f6020c1
commit https://github.com/vim/vim/commit/b36287283781e09d8874157b9d9bdc5243a2f319
Christian Brabandt <cb@256bit.org>
parents:
8304
diff
changeset
|
1273 /**/ |
8304
097886a3379b
commit https://github.com/vim/vim/commit/0f526f5652e0a5432493b3f2a1cb34ab99a9da0a
Christian Brabandt <cb@256bit.org>
parents:
8301
diff
changeset
|
1274 1444, |
097886a3379b
commit https://github.com/vim/vim/commit/0f526f5652e0a5432493b3f2a1cb34ab99a9da0a
Christian Brabandt <cb@256bit.org>
parents:
8301
diff
changeset
|
1275 /**/ |
8301
6a4c11fa1aa3
commit https://github.com/vim/vim/commit/3f2a5d8dfbe2998b4d3d369c0275e2366c92666b
Christian Brabandt <cb@256bit.org>
parents:
8299
diff
changeset
|
1276 1443, |
6a4c11fa1aa3
commit https://github.com/vim/vim/commit/3f2a5d8dfbe2998b4d3d369c0275e2366c92666b
Christian Brabandt <cb@256bit.org>
parents:
8299
diff
changeset
|
1277 /**/ |
8299
d2a215e8d5b4
commit https://github.com/vim/vim/commit/e0fd2aa8f6544f9cf8286c707be3fb1c66c609e6
Christian Brabandt <cb@256bit.org>
parents:
8297
diff
changeset
|
1278 1442, |
d2a215e8d5b4
commit https://github.com/vim/vim/commit/e0fd2aa8f6544f9cf8286c707be3fb1c66c609e6
Christian Brabandt <cb@256bit.org>
parents:
8297
diff
changeset
|
1279 /**/ |
8297
4929eca308b7
commit https://github.com/vim/vim/commit/e26643e6bcd6c6c42f5eae78cee2e7950cd3f629
Christian Brabandt <cb@256bit.org>
parents:
8295
diff
changeset
|
1280 1441, |
4929eca308b7
commit https://github.com/vim/vim/commit/e26643e6bcd6c6c42f5eae78cee2e7950cd3f629
Christian Brabandt <cb@256bit.org>
parents:
8295
diff
changeset
|
1281 /**/ |
8295
18fd94bd4eb8
commit https://github.com/vim/vim/commit/fefecb0fbe14c44d46f91036d76bbb6c28162da8
Christian Brabandt <cb@256bit.org>
parents:
8293
diff
changeset
|
1282 1440, |
18fd94bd4eb8
commit https://github.com/vim/vim/commit/fefecb0fbe14c44d46f91036d76bbb6c28162da8
Christian Brabandt <cb@256bit.org>
parents:
8293
diff
changeset
|
1283 /**/ |
8293
367a7fed630b
commit https://github.com/vim/vim/commit/f97ddbeb255c64a2b3d9db4b049278cd286070a6
Christian Brabandt <cb@256bit.org>
parents:
8291
diff
changeset
|
1284 1439, |
367a7fed630b
commit https://github.com/vim/vim/commit/f97ddbeb255c64a2b3d9db4b049278cd286070a6
Christian Brabandt <cb@256bit.org>
parents:
8291
diff
changeset
|
1285 /**/ |
8291
ac0c43e7af20
commit https://github.com/vim/vim/commit/c7f0ebc6d1e1cdaed816b88a0d6092c5ace615eb
Christian Brabandt <cb@256bit.org>
parents:
8289
diff
changeset
|
1286 1438, |
ac0c43e7af20
commit https://github.com/vim/vim/commit/c7f0ebc6d1e1cdaed816b88a0d6092c5ace615eb
Christian Brabandt <cb@256bit.org>
parents:
8289
diff
changeset
|
1287 /**/ |
8289
6ae3fb4fe7c1
commit https://github.com/vim/vim/commit/136f29a91dbafce424e31a4af133155f997e8f78
Christian Brabandt <cb@256bit.org>
parents:
8287
diff
changeset
|
1288 1437, |
6ae3fb4fe7c1
commit https://github.com/vim/vim/commit/136f29a91dbafce424e31a4af133155f997e8f78
Christian Brabandt <cb@256bit.org>
parents:
8287
diff
changeset
|
1289 /**/ |
8287
56dbae4b73c6
commit https://github.com/vim/vim/commit/e98991b8cfaf29016d14b8ec437d3dedfc0a5eb7
Christian Brabandt <cb@256bit.org>
parents:
8285
diff
changeset
|
1290 1436, |
56dbae4b73c6
commit https://github.com/vim/vim/commit/e98991b8cfaf29016d14b8ec437d3dedfc0a5eb7
Christian Brabandt <cb@256bit.org>
parents:
8285
diff
changeset
|
1291 /**/ |
8285
e05e28dcb590
commit https://github.com/vim/vim/commit/8b1862a31639becadcbbca5dc2eaa92db73e8e5f
Christian Brabandt <cb@256bit.org>
parents:
8283
diff
changeset
|
1292 1435, |
e05e28dcb590
commit https://github.com/vim/vim/commit/8b1862a31639becadcbbca5dc2eaa92db73e8e5f
Christian Brabandt <cb@256bit.org>
parents:
8283
diff
changeset
|
1293 /**/ |
8283
b8a56d4d83e0
commit https://github.com/vim/vim/commit/b6ff81188d27fae774d9ad2dfb498f596d697d4b
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
1294 1434, |
b8a56d4d83e0
commit https://github.com/vim/vim/commit/b6ff81188d27fae774d9ad2dfb498f596d697d4b
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
1295 /**/ |
8281
74b15ed0a259
commit https://github.com/vim/vim/commit/85b11769ab507c7df93f319fd964fa579701b76b
Christian Brabandt <cb@256bit.org>
parents:
8279
diff
changeset
|
1296 1433, |
74b15ed0a259
commit https://github.com/vim/vim/commit/85b11769ab507c7df93f319fd964fa579701b76b
Christian Brabandt <cb@256bit.org>
parents:
8279
diff
changeset
|
1297 /**/ |
8279
738c2929d6ad
commit https://github.com/vim/vim/commit/4d1961783fdcb133b6b181acb7166b9f1872bf09
Christian Brabandt <cb@256bit.org>
parents:
8277
diff
changeset
|
1298 1432, |
738c2929d6ad
commit https://github.com/vim/vim/commit/4d1961783fdcb133b6b181acb7166b9f1872bf09
Christian Brabandt <cb@256bit.org>
parents:
8277
diff
changeset
|
1299 /**/ |
8277
fa1e3fa56104
commit https://github.com/vim/vim/commit/9e24f0c5c1b1097295d0619d95da66e6b2d83ac9
Christian Brabandt <cb@256bit.org>
parents:
8275
diff
changeset
|
1300 1431, |
fa1e3fa56104
commit https://github.com/vim/vim/commit/9e24f0c5c1b1097295d0619d95da66e6b2d83ac9
Christian Brabandt <cb@256bit.org>
parents:
8275
diff
changeset
|
1301 /**/ |
8275
ff900e499f79
commit https://github.com/vim/vim/commit/7ce686c990ea8c490d16be7f1c6bd95eb48816f9
Christian Brabandt <cb@256bit.org>
parents:
8273
diff
changeset
|
1302 1430, |
ff900e499f79
commit https://github.com/vim/vim/commit/7ce686c990ea8c490d16be7f1c6bd95eb48816f9
Christian Brabandt <cb@256bit.org>
parents:
8273
diff
changeset
|
1303 /**/ |
8273
0c3210caefa6
commit https://github.com/vim/vim/commit/d804fdf4c25435284333258856bc265f1ff10b09
Christian Brabandt <cb@256bit.org>
parents:
8271
diff
changeset
|
1304 1429, |
0c3210caefa6
commit https://github.com/vim/vim/commit/d804fdf4c25435284333258856bc265f1ff10b09
Christian Brabandt <cb@256bit.org>
parents:
8271
diff
changeset
|
1305 /**/ |
8271
770774e66011
commit https://github.com/vim/vim/commit/edb4f2b3601b0abd47091606269c0ac3244a805b
Christian Brabandt <cb@256bit.org>
parents:
8269
diff
changeset
|
1306 1428, |
770774e66011
commit https://github.com/vim/vim/commit/edb4f2b3601b0abd47091606269c0ac3244a805b
Christian Brabandt <cb@256bit.org>
parents:
8269
diff
changeset
|
1307 /**/ |
8269
553a4c8dd796
commit https://github.com/vim/vim/commit/43acbce1bb0a33edc67496b220cae629ad95d2d8
Christian Brabandt <cb@256bit.org>
parents:
8267
diff
changeset
|
1308 1427, |
553a4c8dd796
commit https://github.com/vim/vim/commit/43acbce1bb0a33edc67496b220cae629ad95d2d8
Christian Brabandt <cb@256bit.org>
parents:
8267
diff
changeset
|
1309 /**/ |
8267
108d30ed34ba
commit https://github.com/vim/vim/commit/187db50d0499aecf4cfd42fb4db0a1bebf61c8cd
Christian Brabandt <cb@256bit.org>
parents:
8265
diff
changeset
|
1310 1426, |
108d30ed34ba
commit https://github.com/vim/vim/commit/187db50d0499aecf4cfd42fb4db0a1bebf61c8cd
Christian Brabandt <cb@256bit.org>
parents:
8265
diff
changeset
|
1311 /**/ |
8265
792bc43e69a7
commit https://github.com/vim/vim/commit/6e722e2f948bc51fcb92d98d6f2a089dac01e2bd
Christian Brabandt <cb@256bit.org>
parents:
8263
diff
changeset
|
1312 1425, |
792bc43e69a7
commit https://github.com/vim/vim/commit/6e722e2f948bc51fcb92d98d6f2a089dac01e2bd
Christian Brabandt <cb@256bit.org>
parents:
8263
diff
changeset
|
1313 /**/ |
8263
96c0100f22f1
commit https://github.com/vim/vim/commit/0c0dac1fb134309462b263fd5347d9232bfe36ed
Christian Brabandt <cb@256bit.org>
parents:
8261
diff
changeset
|
1314 1424, |
96c0100f22f1
commit https://github.com/vim/vim/commit/0c0dac1fb134309462b263fd5347d9232bfe36ed
Christian Brabandt <cb@256bit.org>
parents:
8261
diff
changeset
|
1315 /**/ |
8261
a412b466bedc
commit https://github.com/vim/vim/commit/4cafa6dc7f0728b018979aff0ca039908ecf2ae1
Christian Brabandt <cb@256bit.org>
parents:
8259
diff
changeset
|
1316 1423, |
a412b466bedc
commit https://github.com/vim/vim/commit/4cafa6dc7f0728b018979aff0ca039908ecf2ae1
Christian Brabandt <cb@256bit.org>
parents:
8259
diff
changeset
|
1317 /**/ |
8259
99a70c3b902f
commit https://github.com/vim/vim/commit/46c85439c966d7ed39fb3d711d4d6c61ac964647
Christian Brabandt <cb@256bit.org>
parents:
8257
diff
changeset
|
1318 1422, |
99a70c3b902f
commit https://github.com/vim/vim/commit/46c85439c966d7ed39fb3d711d4d6c61ac964647
Christian Brabandt <cb@256bit.org>
parents:
8257
diff
changeset
|
1319 /**/ |
8257
c4ffdda8cdfd
commit https://github.com/vim/vim/commit/c8dcbb12c5d7f3eb0c334daebb4475bb015b91e7
Christian Brabandt <cb@256bit.org>
parents:
8255
diff
changeset
|
1320 1421, |
c4ffdda8cdfd
commit https://github.com/vim/vim/commit/c8dcbb12c5d7f3eb0c334daebb4475bb015b91e7
Christian Brabandt <cb@256bit.org>
parents:
8255
diff
changeset
|
1321 /**/ |
8255
355652348057
commit https://github.com/vim/vim/commit/d2227a02b03708eb0579e17612d5a96262f3d463
Christian Brabandt <cb@256bit.org>
parents:
8253
diff
changeset
|
1322 1420, |
355652348057
commit https://github.com/vim/vim/commit/d2227a02b03708eb0579e17612d5a96262f3d463
Christian Brabandt <cb@256bit.org>
parents:
8253
diff
changeset
|
1323 /**/ |
8253
1b6a589a0efc
commit https://github.com/vim/vim/commit/49c39ff678e2ba9f7dc280b25368e12084a610cf
Christian Brabandt <cb@256bit.org>
parents:
8251
diff
changeset
|
1324 1419, |
1b6a589a0efc
commit https://github.com/vim/vim/commit/49c39ff678e2ba9f7dc280b25368e12084a610cf
Christian Brabandt <cb@256bit.org>
parents:
8251
diff
changeset
|
1325 /**/ |
8251
989ac3aed1ef
commit https://github.com/vim/vim/commit/923d926d57d985ec8965da9d0cd3634e6b24bfe1
Christian Brabandt <cb@256bit.org>
parents:
8249
diff
changeset
|
1326 1418, |
989ac3aed1ef
commit https://github.com/vim/vim/commit/923d926d57d985ec8965da9d0cd3634e6b24bfe1
Christian Brabandt <cb@256bit.org>
parents:
8249
diff
changeset
|
1327 /**/ |
8249
8dd8d96278a4
commit https://github.com/vim/vim/commit/265f64efcf8df61cfbc93bbe103018dcfc5836e4
Christian Brabandt <cb@256bit.org>
parents:
8247
diff
changeset
|
1328 1417, |
8dd8d96278a4
commit https://github.com/vim/vim/commit/265f64efcf8df61cfbc93bbe103018dcfc5836e4
Christian Brabandt <cb@256bit.org>
parents:
8247
diff
changeset
|
1329 /**/ |
8247
6ee794dc950e
commit https://github.com/vim/vim/commit/669cac0a805333e69b9e1176425083914eada659
Christian Brabandt <cb@256bit.org>
parents:
8244
diff
changeset
|
1330 1416, |
6ee794dc950e
commit https://github.com/vim/vim/commit/669cac0a805333e69b9e1176425083914eada659
Christian Brabandt <cb@256bit.org>
parents:
8244
diff
changeset
|
1331 /**/ |
8244
acc8029e530f
commit https://github.com/vim/vim/commit/84f4996d2ab2982006d79ee69df4688c966bf8e8
Christian Brabandt <cb@256bit.org>
parents:
8242
diff
changeset
|
1332 1415, |
acc8029e530f
commit https://github.com/vim/vim/commit/84f4996d2ab2982006d79ee69df4688c966bf8e8
Christian Brabandt <cb@256bit.org>
parents:
8242
diff
changeset
|
1333 /**/ |
8242
1313d2e282dc
commit https://github.com/vim/vim/commit/81275ca9ce3059148fdb65dff29f7ecdbca446fb
Christian Brabandt <cb@256bit.org>
parents:
8240
diff
changeset
|
1334 1414, |
1313d2e282dc
commit https://github.com/vim/vim/commit/81275ca9ce3059148fdb65dff29f7ecdbca446fb
Christian Brabandt <cb@256bit.org>
parents:
8240
diff
changeset
|
1335 /**/ |
8240
60586ce747c4
commit https://github.com/vim/vim/commit/8b374215ccd35003b95ba1df8f12e03bf8a8adc3
Christian Brabandt <cb@256bit.org>
parents:
8238
diff
changeset
|
1336 1413, |
60586ce747c4
commit https://github.com/vim/vim/commit/8b374215ccd35003b95ba1df8f12e03bf8a8adc3
Christian Brabandt <cb@256bit.org>
parents:
8238
diff
changeset
|
1337 /**/ |
8238
d7e1526ae1b9
commit https://github.com/vim/vim/commit/68c85fcdf31c104db21c96cd5871724e458c95ff
Christian Brabandt <cb@256bit.org>
parents:
8236
diff
changeset
|
1338 1412, |
d7e1526ae1b9
commit https://github.com/vim/vim/commit/68c85fcdf31c104db21c96cd5871724e458c95ff
Christian Brabandt <cb@256bit.org>
parents:
8236
diff
changeset
|
1339 /**/ |
8236
6d221d623c8e
commit https://github.com/vim/vim/commit/9e34110816522b081feb65ed5b2f4ec03d290e30
Christian Brabandt <cb@256bit.org>
parents:
8234
diff
changeset
|
1340 1411, |
6d221d623c8e
commit https://github.com/vim/vim/commit/9e34110816522b081feb65ed5b2f4ec03d290e30
Christian Brabandt <cb@256bit.org>
parents:
8234
diff
changeset
|
1341 /**/ |
8234
dc72f4a463e4
commit https://github.com/vim/vim/commit/42dd7aee41ffcc5afdbf9bb83d70e7123261cada
Christian Brabandt <cb@256bit.org>
parents:
8232
diff
changeset
|
1342 1410, |
dc72f4a463e4
commit https://github.com/vim/vim/commit/42dd7aee41ffcc5afdbf9bb83d70e7123261cada
Christian Brabandt <cb@256bit.org>
parents:
8232
diff
changeset
|
1343 /**/ |
8232
a777ff826523
commit https://github.com/vim/vim/commit/1858a842af5e3b07157add378ee3fd7b512cfea6
Christian Brabandt <cb@256bit.org>
parents:
8230
diff
changeset
|
1344 1409, |
a777ff826523
commit https://github.com/vim/vim/commit/1858a842af5e3b07157add378ee3fd7b512cfea6
Christian Brabandt <cb@256bit.org>
parents:
8230
diff
changeset
|
1345 /**/ |
8230
51ca0cee512e
commit https://github.com/vim/vim/commit/3ea0f1ae318db6cd9413914bb2ff824d71cefc6e
Christian Brabandt <cb@256bit.org>
parents:
8228
diff
changeset
|
1346 1408, |
51ca0cee512e
commit https://github.com/vim/vim/commit/3ea0f1ae318db6cd9413914bb2ff824d71cefc6e
Christian Brabandt <cb@256bit.org>
parents:
8228
diff
changeset
|
1347 /**/ |
8228
a0e552c51c34
commit https://github.com/vim/vim/commit/f1b6ac72293e658bb6e68c5cfd926c405b1b6f34
Christian Brabandt <cb@256bit.org>
parents:
8226
diff
changeset
|
1348 1407, |
a0e552c51c34
commit https://github.com/vim/vim/commit/f1b6ac72293e658bb6e68c5cfd926c405b1b6f34
Christian Brabandt <cb@256bit.org>
parents:
8226
diff
changeset
|
1349 /**/ |
8226
cb0edf7bd0a4
commit https://github.com/vim/vim/commit/e16e5a9d8d6d3159107541a259c6823ade18fd08
Christian Brabandt <cb@256bit.org>
parents:
8224
diff
changeset
|
1350 1406, |
cb0edf7bd0a4
commit https://github.com/vim/vim/commit/e16e5a9d8d6d3159107541a259c6823ade18fd08
Christian Brabandt <cb@256bit.org>
parents:
8224
diff
changeset
|
1351 /**/ |
8224
2baf64fead5e
commit https://github.com/vim/vim/commit/8aefbe0ad5d05ee7225b20024b0f3023286ebd0f
Christian Brabandt <cb@256bit.org>
parents:
8222
diff
changeset
|
1352 1405, |
2baf64fead5e
commit https://github.com/vim/vim/commit/8aefbe0ad5d05ee7225b20024b0f3023286ebd0f
Christian Brabandt <cb@256bit.org>
parents:
8222
diff
changeset
|
1353 /**/ |
8222
4f0677020a43
commit https://github.com/vim/vim/commit/9186a276222ea8a7c88f4092ac5b4201381f4e20
Christian Brabandt <cb@256bit.org>
parents:
8220
diff
changeset
|
1354 1404, |
4f0677020a43
commit https://github.com/vim/vim/commit/9186a276222ea8a7c88f4092ac5b4201381f4e20
Christian Brabandt <cb@256bit.org>
parents:
8220
diff
changeset
|
1355 /**/ |
8220
ad9edad64d22
commit https://github.com/vim/vim/commit/0106e3d0bf8a38351af45331cbf3b9172a6bb90b
Christian Brabandt <cb@256bit.org>
parents:
8218
diff
changeset
|
1356 1403, |
ad9edad64d22
commit https://github.com/vim/vim/commit/0106e3d0bf8a38351af45331cbf3b9172a6bb90b
Christian Brabandt <cb@256bit.org>
parents:
8218
diff
changeset
|
1357 /**/ |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8216
diff
changeset
|
1358 1402, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8216
diff
changeset
|
1359 /**/ |
8216
03af9acbefb0
commit https://github.com/vim/vim/commit/6bd364e08461159ad3c153ffba4def5b896486a1
Christian Brabandt <cb@256bit.org>
parents:
8214
diff
changeset
|
1360 1401, |
03af9acbefb0
commit https://github.com/vim/vim/commit/6bd364e08461159ad3c153ffba4def5b896486a1
Christian Brabandt <cb@256bit.org>
parents:
8214
diff
changeset
|
1361 /**/ |
8214
51b4fba718bf
commit https://github.com/vim/vim/commit/254ebaf068919407de6bd83ac905bd2f36ad944e
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
1362 1400, |
51b4fba718bf
commit https://github.com/vim/vim/commit/254ebaf068919407de6bd83ac905bd2f36ad944e
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
1363 /**/ |
8212
05b88224cea1
commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce
Christian Brabandt <cb@256bit.org>
parents:
8210
diff
changeset
|
1364 1399, |
05b88224cea1
commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce
Christian Brabandt <cb@256bit.org>
parents:
8210
diff
changeset
|
1365 /**/ |
8210
b717dae2f26d
commit https://github.com/vim/vim/commit/4e221c99e85ed40c98892068a01270b9e7492d98
Christian Brabandt <cb@256bit.org>
parents:
8208
diff
changeset
|
1366 1398, |
b717dae2f26d
commit https://github.com/vim/vim/commit/4e221c99e85ed40c98892068a01270b9e7492d98
Christian Brabandt <cb@256bit.org>
parents:
8208
diff
changeset
|
1367 /**/ |
8208
c11aaa31a0ed
commit https://github.com/vim/vim/commit/0bb6108eb4e1ecaed437bc507f514f5da7816d9e
Christian Brabandt <cb@256bit.org>
parents:
8206
diff
changeset
|
1368 1397, |
c11aaa31a0ed
commit https://github.com/vim/vim/commit/0bb6108eb4e1ecaed437bc507f514f5da7816d9e
Christian Brabandt <cb@256bit.org>
parents:
8206
diff
changeset
|
1369 /**/ |
8206
78f2e8c07973
commit https://github.com/vim/vim/commit/1daae446e58fd90f98c51ff3af8f54bfa5197751
Christian Brabandt <cb@256bit.org>
parents:
8204
diff
changeset
|
1370 1396, |
78f2e8c07973
commit https://github.com/vim/vim/commit/1daae446e58fd90f98c51ff3af8f54bfa5197751
Christian Brabandt <cb@256bit.org>
parents:
8204
diff
changeset
|
1371 /**/ |
8204
08d251a1c178
commit https://github.com/vim/vim/commit/eed284a16977ab81fa6da8c9562990ba498acd8c
Christian Brabandt <cb@256bit.org>
parents:
8202
diff
changeset
|
1372 1395, |
08d251a1c178
commit https://github.com/vim/vim/commit/eed284a16977ab81fa6da8c9562990ba498acd8c
Christian Brabandt <cb@256bit.org>
parents:
8202
diff
changeset
|
1373 /**/ |
8202
c16aa03d8db5
commit https://github.com/vim/vim/commit/0b962473ddc7cee3cb45253dea273573bcca9bf9
Christian Brabandt <cb@256bit.org>
parents:
8200
diff
changeset
|
1374 1394, |
c16aa03d8db5
commit https://github.com/vim/vim/commit/0b962473ddc7cee3cb45253dea273573bcca9bf9
Christian Brabandt <cb@256bit.org>
parents:
8200
diff
changeset
|
1375 /**/ |
8200
ee84450e604e
commit https://github.com/vim/vim/commit/bd73ae1bc63a3b0187ffe7fc8f0caee5a4eb66fa
Christian Brabandt <cb@256bit.org>
parents:
8198
diff
changeset
|
1376 1393, |
ee84450e604e
commit https://github.com/vim/vim/commit/bd73ae1bc63a3b0187ffe7fc8f0caee5a4eb66fa
Christian Brabandt <cb@256bit.org>
parents:
8198
diff
changeset
|
1377 /**/ |
8198
7c21dd028e0f
commit https://github.com/vim/vim/commit/2cd5bb2505acc001933e97cf788f473f8db60895
Christian Brabandt <cb@256bit.org>
parents:
8196
diff
changeset
|
1378 1392, |
7c21dd028e0f
commit https://github.com/vim/vim/commit/2cd5bb2505acc001933e97cf788f473f8db60895
Christian Brabandt <cb@256bit.org>
parents:
8196
diff
changeset
|
1379 /**/ |
8196
cbb2f84da063
commit https://github.com/vim/vim/commit/4db20ab091330e460f08651d6052afd0536c507a
Christian Brabandt <cb@256bit.org>
parents:
8194
diff
changeset
|
1380 1391, |
cbb2f84da063
commit https://github.com/vim/vim/commit/4db20ab091330e460f08651d6052afd0536c507a
Christian Brabandt <cb@256bit.org>
parents:
8194
diff
changeset
|
1381 /**/ |
8194
265bcedffc15
commit https://github.com/vim/vim/commit/33c31d5abf122806a4a1b4353e5bdc1dbb9468c0
Christian Brabandt <cb@256bit.org>
parents:
8192
diff
changeset
|
1382 1390, |
265bcedffc15
commit https://github.com/vim/vim/commit/33c31d5abf122806a4a1b4353e5bdc1dbb9468c0
Christian Brabandt <cb@256bit.org>
parents:
8192
diff
changeset
|
1383 /**/ |
8192
fa2668601c7a
commit https://github.com/vim/vim/commit/b2bd6a087d0598f6934bba825bed7535f42efc91
Christian Brabandt <cb@256bit.org>
parents:
8190
diff
changeset
|
1384 1389, |
fa2668601c7a
commit https://github.com/vim/vim/commit/b2bd6a087d0598f6934bba825bed7535f42efc91
Christian Brabandt <cb@256bit.org>
parents:
8190
diff
changeset
|
1385 /**/ |
8190
a8e7b8328cb4
commit https://github.com/vim/vim/commit/bdcd75275002c3b74015bb9bc0a01b13bb6107d4
Christian Brabandt <cb@256bit.org>
parents:
8188
diff
changeset
|
1386 1388, |
a8e7b8328cb4
commit https://github.com/vim/vim/commit/bdcd75275002c3b74015bb9bc0a01b13bb6107d4
Christian Brabandt <cb@256bit.org>
parents:
8188
diff
changeset
|
1387 /**/ |
8188
9531717f0694
commit https://github.com/vim/vim/commit/8f8ae40ce45822c51c7f3cc58d7c23990f0ecc3d
Christian Brabandt <cb@256bit.org>
parents:
8186
diff
changeset
|
1388 1387, |
9531717f0694
commit https://github.com/vim/vim/commit/8f8ae40ce45822c51c7f3cc58d7c23990f0ecc3d
Christian Brabandt <cb@256bit.org>
parents:
8186
diff
changeset
|
1389 /**/ |
8186
5fed86dac210
commit https://github.com/vim/vim/commit/23c463a157b4f5585ad85efc9f453ffc09c245c3
Christian Brabandt <cb@256bit.org>
parents:
8184
diff
changeset
|
1390 1386, |
5fed86dac210
commit https://github.com/vim/vim/commit/23c463a157b4f5585ad85efc9f453ffc09c245c3
Christian Brabandt <cb@256bit.org>
parents:
8184
diff
changeset
|
1391 /**/ |
8184
1f81c571d0e7
commit https://github.com/vim/vim/commit/5e83840756f6bb446d5cd8d026c1430b203645f1
Christian Brabandt <cb@256bit.org>
parents:
8182
diff
changeset
|
1392 1385, |
1f81c571d0e7
commit https://github.com/vim/vim/commit/5e83840756f6bb446d5cd8d026c1430b203645f1
Christian Brabandt <cb@256bit.org>
parents:
8182
diff
changeset
|
1393 /**/ |
8182
95d59081580f
commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents:
8180
diff
changeset
|
1394 1384, |
95d59081580f
commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents:
8180
diff
changeset
|
1395 /**/ |
8180
1e48ffa2d697
commit https://github.com/vim/vim/commit/271273c39f2150ecdaa67fe1a2a8e9cdc63db545
Christian Brabandt <cb@256bit.org>
parents:
8178
diff
changeset
|
1396 1383, |
1e48ffa2d697
commit https://github.com/vim/vim/commit/271273c39f2150ecdaa67fe1a2a8e9cdc63db545
Christian Brabandt <cb@256bit.org>
parents:
8178
diff
changeset
|
1397 /**/ |
8178
e77efd7a7dad
commit https://github.com/vim/vim/commit/02e83b438ea7071fdb176dabbaefea319ab2d686
Christian Brabandt <cb@256bit.org>
parents:
8176
diff
changeset
|
1398 1382, |
e77efd7a7dad
commit https://github.com/vim/vim/commit/02e83b438ea7071fdb176dabbaefea319ab2d686
Christian Brabandt <cb@256bit.org>
parents:
8176
diff
changeset
|
1399 /**/ |
8176
477c1d855698
commit https://github.com/vim/vim/commit/eab089d22f172ddd2d33367a998e68c2f1c6c989
Christian Brabandt <cb@256bit.org>
parents:
8174
diff
changeset
|
1400 1381, |
477c1d855698
commit https://github.com/vim/vim/commit/eab089d22f172ddd2d33367a998e68c2f1c6c989
Christian Brabandt <cb@256bit.org>
parents:
8174
diff
changeset
|
1401 /**/ |
8174
f2286ff0c102
commit https://github.com/vim/vim/commit/ee1cffc07a42441924c5353af7fd7ab6e97e5aae
Christian Brabandt <cb@256bit.org>
parents:
8172
diff
changeset
|
1402 1380, |
f2286ff0c102
commit https://github.com/vim/vim/commit/ee1cffc07a42441924c5353af7fd7ab6e97e5aae
Christian Brabandt <cb@256bit.org>
parents:
8172
diff
changeset
|
1403 /**/ |
8172
db5c79d93eee
commit https://github.com/vim/vim/commit/b7522a2f0ca6c970df37241c9e70024465d8596b
Christian Brabandt <cb@256bit.org>
parents:
8170
diff
changeset
|
1404 1379, |
db5c79d93eee
commit https://github.com/vim/vim/commit/b7522a2f0ca6c970df37241c9e70024465d8596b
Christian Brabandt <cb@256bit.org>
parents:
8170
diff
changeset
|
1405 /**/ |
8170
a0ffb1f3dedc
commit https://github.com/vim/vim/commit/65edff8f51e9e54f85407bdb9156ae8e3e1b76a1
Christian Brabandt <cb@256bit.org>
parents:
8168
diff
changeset
|
1406 1378, |
a0ffb1f3dedc
commit https://github.com/vim/vim/commit/65edff8f51e9e54f85407bdb9156ae8e3e1b76a1
Christian Brabandt <cb@256bit.org>
parents:
8168
diff
changeset
|
1407 /**/ |
8168
454a30a7590e
commit https://github.com/vim/vim/commit/08298fa1d3e32c2af476582792fc4f70cd57a59a
Christian Brabandt <cb@256bit.org>
parents:
8165
diff
changeset
|
1408 1377, |
454a30a7590e
commit https://github.com/vim/vim/commit/08298fa1d3e32c2af476582792fc4f70cd57a59a
Christian Brabandt <cb@256bit.org>
parents:
8165
diff
changeset
|
1409 /**/ |
8165
973686665238
commit https://github.com/vim/vim/commit/b6b5252bcde68b296858bc090cb424493635dfec
Christian Brabandt <cb@256bit.org>
parents:
8163
diff
changeset
|
1410 1376, |
973686665238
commit https://github.com/vim/vim/commit/b6b5252bcde68b296858bc090cb424493635dfec
Christian Brabandt <cb@256bit.org>
parents:
8163
diff
changeset
|
1411 /**/ |
8163
d8a8e86f39ad
commit https://github.com/vim/vim/commit/e89ff0472bc33779583d48e8d38a5e794d05613a
Christian Brabandt <cb@256bit.org>
parents:
8161
diff
changeset
|
1412 1375, |
d8a8e86f39ad
commit https://github.com/vim/vim/commit/e89ff0472bc33779583d48e8d38a5e794d05613a
Christian Brabandt <cb@256bit.org>
parents:
8161
diff
changeset
|
1413 /**/ |
8161
e9caba58213b
commit https://github.com/vim/vim/commit/af7559f66603075e9b4d39d873b2161ea3ec8492
Christian Brabandt <cb@256bit.org>
parents:
8159
diff
changeset
|
1414 1374, |
e9caba58213b
commit https://github.com/vim/vim/commit/af7559f66603075e9b4d39d873b2161ea3ec8492
Christian Brabandt <cb@256bit.org>
parents:
8159
diff
changeset
|
1415 /**/ |
8159
d0958e22d9ff
commit https://github.com/vim/vim/commit/ece61b06ef4726515177c9b293e1c20d2122a73f
Christian Brabandt <cb@256bit.org>
parents:
8157
diff
changeset
|
1416 1373, |
d0958e22d9ff
commit https://github.com/vim/vim/commit/ece61b06ef4726515177c9b293e1c20d2122a73f
Christian Brabandt <cb@256bit.org>
parents:
8157
diff
changeset
|
1417 /**/ |
8157
74b44d06d3c7
commit https://github.com/vim/vim/commit/6f3a544228c1faf92211cbaf8bbedb1dff883f90
Christian Brabandt <cb@256bit.org>
parents:
8155
diff
changeset
|
1418 1372, |
74b44d06d3c7
commit https://github.com/vim/vim/commit/6f3a544228c1faf92211cbaf8bbedb1dff883f90
Christian Brabandt <cb@256bit.org>
parents:
8155
diff
changeset
|
1419 /**/ |
8155
6ee6fb27dcea
commit https://github.com/vim/vim/commit/fffd5560c6c8840be3233ef1c8da3c9e5dd424ea
Christian Brabandt <cb@256bit.org>
parents:
8153
diff
changeset
|
1420 1371, |
6ee6fb27dcea
commit https://github.com/vim/vim/commit/fffd5560c6c8840be3233ef1c8da3c9e5dd424ea
Christian Brabandt <cb@256bit.org>
parents:
8153
diff
changeset
|
1421 /**/ |
8153
240deebfadde
commit https://github.com/vim/vim/commit/ddbe7d26b10c4374f406b807ae161826cf2096e1
Christian Brabandt <cb@256bit.org>
parents:
8151
diff
changeset
|
1422 1370, |
240deebfadde
commit https://github.com/vim/vim/commit/ddbe7d26b10c4374f406b807ae161826cf2096e1
Christian Brabandt <cb@256bit.org>
parents:
8151
diff
changeset
|
1423 /**/ |
8151
aa845d10c6fb
commit https://github.com/vim/vim/commit/42d38a2db17e70312d073095257555c27a5f9443
Christian Brabandt <cb@256bit.org>
parents:
8149
diff
changeset
|
1424 1369, |
aa845d10c6fb
commit https://github.com/vim/vim/commit/42d38a2db17e70312d073095257555c27a5f9443
Christian Brabandt <cb@256bit.org>
parents:
8149
diff
changeset
|
1425 /**/ |
8149
028e24e4c0f4
commit https://github.com/vim/vim/commit/914331648dc3609ca9f6954f4019497e5fb3274e
Christian Brabandt <cb@256bit.org>
parents:
8146
diff
changeset
|
1426 1368, |
028e24e4c0f4
commit https://github.com/vim/vim/commit/914331648dc3609ca9f6954f4019497e5fb3274e
Christian Brabandt <cb@256bit.org>
parents:
8146
diff
changeset
|
1427 /**/ |
8146
5dacbd22fefd
commit https://github.com/vim/vim/commit/c6b14f0a8346ec7ddd86f3349d0b861a1b500147
Christian Brabandt <cb@256bit.org>
parents:
8144
diff
changeset
|
1428 1367, |
5dacbd22fefd
commit https://github.com/vim/vim/commit/c6b14f0a8346ec7ddd86f3349d0b861a1b500147
Christian Brabandt <cb@256bit.org>
parents:
8144
diff
changeset
|
1429 /**/ |
8144
efbb9916290c
commit https://github.com/vim/vim/commit/663128270e6ea6b529c45ceee4b369734b8b2fdb
Christian Brabandt <cb@256bit.org>
parents:
8142
diff
changeset
|
1430 1366, |
efbb9916290c
commit https://github.com/vim/vim/commit/663128270e6ea6b529c45ceee4b369734b8b2fdb
Christian Brabandt <cb@256bit.org>
parents:
8142
diff
changeset
|
1431 /**/ |
8142
71aabce3142e
commit https://github.com/vim/vim/commit/befb366affa6309c6b4a469ec7f729821e3a36fa
Christian Brabandt <cb@256bit.org>
parents:
8140
diff
changeset
|
1432 1365, |
71aabce3142e
commit https://github.com/vim/vim/commit/befb366affa6309c6b4a469ec7f729821e3a36fa
Christian Brabandt <cb@256bit.org>
parents:
8140
diff
changeset
|
1433 /**/ |
8140
563c923b1584
commit https://github.com/vim/vim/commit/cf7164a088664961e7d70dd100c5874dc5ceb293
Christian Brabandt <cb@256bit.org>
parents:
8138
diff
changeset
|
1434 1364, |
563c923b1584
commit https://github.com/vim/vim/commit/cf7164a088664961e7d70dd100c5874dc5ceb293
Christian Brabandt <cb@256bit.org>
parents:
8138
diff
changeset
|
1435 /**/ |
8138
f52504c10387
commit https://github.com/vim/vim/commit/065bbac8adfe29a09958570237d223457f235c6c
Christian Brabandt <cb@256bit.org>
parents:
8136
diff
changeset
|
1436 1363, |
f52504c10387
commit https://github.com/vim/vim/commit/065bbac8adfe29a09958570237d223457f235c6c
Christian Brabandt <cb@256bit.org>
parents:
8136
diff
changeset
|
1437 /**/ |
8136
9b2d25319c48
commit https://github.com/vim/vim/commit/8600ace87618d33ad3182124be447f0b2c9728f4
Christian Brabandt <cb@256bit.org>
parents:
8134
diff
changeset
|
1438 1362, |
9b2d25319c48
commit https://github.com/vim/vim/commit/8600ace87618d33ad3182124be447f0b2c9728f4
Christian Brabandt <cb@256bit.org>
parents:
8134
diff
changeset
|
1439 /**/ |
8134
8abef552ece7
commit https://github.com/vim/vim/commit/254e00d71429aa4e71b93d3e8c6bb93bfebe4f26
Christian Brabandt <cb@256bit.org>
parents:
8132
diff
changeset
|
1440 1361, |
8abef552ece7
commit https://github.com/vim/vim/commit/254e00d71429aa4e71b93d3e8c6bb93bfebe4f26
Christian Brabandt <cb@256bit.org>
parents:
8132
diff
changeset
|
1441 /**/ |
8132
f96536c291d8
commit https://github.com/vim/vim/commit/0ba75a9714884895b2ac09733158c47544a8dfb9
Christian Brabandt <cb@256bit.org>
parents:
8130
diff
changeset
|
1442 1360, |
f96536c291d8
commit https://github.com/vim/vim/commit/0ba75a9714884895b2ac09733158c47544a8dfb9
Christian Brabandt <cb@256bit.org>
parents:
8130
diff
changeset
|
1443 /**/ |
8130
3462f9cfedf8
commit https://github.com/vim/vim/commit/1f6ef66254c1e25ef1c7972aa9a0ba119ebc17e4
Christian Brabandt <cb@256bit.org>
parents:
8128
diff
changeset
|
1444 1359, |
3462f9cfedf8
commit https://github.com/vim/vim/commit/1f6ef66254c1e25ef1c7972aa9a0ba119ebc17e4
Christian Brabandt <cb@256bit.org>
parents:
8128
diff
changeset
|
1445 /**/ |
8128
985cd5917560
commit https://github.com/vim/vim/commit/1d6fbe654066845ff2a182ed258e6e9d3408fa90
Christian Brabandt <cb@256bit.org>
parents:
8126
diff
changeset
|
1446 1358, |
985cd5917560
commit https://github.com/vim/vim/commit/1d6fbe654066845ff2a182ed258e6e9d3408fa90
Christian Brabandt <cb@256bit.org>
parents:
8126
diff
changeset
|
1447 /**/ |
8126
0aa9cb77a8dd
commit https://github.com/vim/vim/commit/132006c3d0f87dbda5f4d5410fcce312e4716f72
Christian Brabandt <cb@256bit.org>
parents:
8124
diff
changeset
|
1448 1357, |
0aa9cb77a8dd
commit https://github.com/vim/vim/commit/132006c3d0f87dbda5f4d5410fcce312e4716f72
Christian Brabandt <cb@256bit.org>
parents:
8124
diff
changeset
|
1449 /**/ |
8124
310dd635e8c9
commit https://github.com/vim/vim/commit/40ea1da14ba196a23309789852e1b663fd92e3a8
Christian Brabandt <cb@256bit.org>
parents:
8122
diff
changeset
|
1450 1356, |
310dd635e8c9
commit https://github.com/vim/vim/commit/40ea1da14ba196a23309789852e1b663fd92e3a8
Christian Brabandt <cb@256bit.org>
parents:
8122
diff
changeset
|
1451 /**/ |
8122
39532ee7dd43
commit https://github.com/vim/vim/commit/ed5a78e11c80c7b13b233149fd4273b71fc96262
Christian Brabandt <cb@256bit.org>
parents:
8120
diff
changeset
|
1452 1355, |
39532ee7dd43
commit https://github.com/vim/vim/commit/ed5a78e11c80c7b13b233149fd4273b71fc96262
Christian Brabandt <cb@256bit.org>
parents:
8120
diff
changeset
|
1453 /**/ |
8120
350f8040bd37
commit https://github.com/vim/vim/commit/223b723be0703137cf6373e23f8ae5c02e92ef82
Christian Brabandt <cb@256bit.org>
parents:
8118
diff
changeset
|
1454 1354, |
350f8040bd37
commit https://github.com/vim/vim/commit/223b723be0703137cf6373e23f8ae5c02e92ef82
Christian Brabandt <cb@256bit.org>
parents:
8118
diff
changeset
|
1455 /**/ |
8118
1f28be191fab
commit https://github.com/vim/vim/commit/922d25f99c6d38e7f9cfca7a53ab841641517ebc
Christian Brabandt <cb@256bit.org>
parents:
8116
diff
changeset
|
1456 1353, |
1f28be191fab
commit https://github.com/vim/vim/commit/922d25f99c6d38e7f9cfca7a53ab841641517ebc
Christian Brabandt <cb@256bit.org>
parents:
8116
diff
changeset
|
1457 /**/ |
8116
3c1bdf20c8b9
commit https://github.com/vim/vim/commit/93bf558caef2d507ef6baf56eaf6025b63da1e34
Christian Brabandt <cb@256bit.org>
parents:
8114
diff
changeset
|
1458 1352, |
3c1bdf20c8b9
commit https://github.com/vim/vim/commit/93bf558caef2d507ef6baf56eaf6025b63da1e34
Christian Brabandt <cb@256bit.org>
parents:
8114
diff
changeset
|
1459 /**/ |
8114
4aea0b0aa714
commit https://github.com/vim/vim/commit/81661fb86801e6d6e5194b43dfd27d73fcc016ec
Christian Brabandt <cb@256bit.org>
parents:
8112
diff
changeset
|
1460 1351, |
4aea0b0aa714
commit https://github.com/vim/vim/commit/81661fb86801e6d6e5194b43dfd27d73fcc016ec
Christian Brabandt <cb@256bit.org>
parents:
8112
diff
changeset
|
1461 /**/ |
8112
a62ff5ff60c1
commit https://github.com/vim/vim/commit/ec70bdd68a531762a62728747ab529d7a6dfc842
Christian Brabandt <cb@256bit.org>
parents:
8110
diff
changeset
|
1462 1350, |
a62ff5ff60c1
commit https://github.com/vim/vim/commit/ec70bdd68a531762a62728747ab529d7a6dfc842
Christian Brabandt <cb@256bit.org>
parents:
8110
diff
changeset
|
1463 /**/ |
8110
d1974721ddc5
commit https://github.com/vim/vim/commit/74a97b1ea0fe2c729e26718d0eec4164c8bed151
Christian Brabandt <cb@256bit.org>
parents:
8108
diff
changeset
|
1464 1349, |
d1974721ddc5
commit https://github.com/vim/vim/commit/74a97b1ea0fe2c729e26718d0eec4164c8bed151
Christian Brabandt <cb@256bit.org>
parents:
8108
diff
changeset
|
1465 /**/ |
8108
50515f2e81d1
commit https://github.com/vim/vim/commit/7f0608fb5219645d776fadfe13efb867c2460698
Christian Brabandt <cb@256bit.org>
parents:
8106
diff
changeset
|
1466 1348, |
50515f2e81d1
commit https://github.com/vim/vim/commit/7f0608fb5219645d776fadfe13efb867c2460698
Christian Brabandt <cb@256bit.org>
parents:
8106
diff
changeset
|
1467 /**/ |
8106
58505cbea7e5
commit https://github.com/vim/vim/commit/8b778d55993d951a65f8a59843cecd177c707676
Christian Brabandt <cb@256bit.org>
parents:
8104
diff
changeset
|
1468 1347, |
58505cbea7e5
commit https://github.com/vim/vim/commit/8b778d55993d951a65f8a59843cecd177c707676
Christian Brabandt <cb@256bit.org>
parents:
8104
diff
changeset
|
1469 /**/ |
8104
1a03abdc4234
commit https://github.com/vim/vim/commit/a1e24b9bc9123ff6dd23e3cac2287a4411ef5572
Christian Brabandt <cb@256bit.org>
parents:
8102
diff
changeset
|
1470 1346, |
1a03abdc4234
commit https://github.com/vim/vim/commit/a1e24b9bc9123ff6dd23e3cac2287a4411ef5572
Christian Brabandt <cb@256bit.org>
parents:
8102
diff
changeset
|
1471 /**/ |
8102
441298d72f3c
commit https://github.com/vim/vim/commit/a87e2c277eabf0134925c340e9dc4fe9446f3636
Christian Brabandt <cb@256bit.org>
parents:
8100
diff
changeset
|
1472 1345, |
441298d72f3c
commit https://github.com/vim/vim/commit/a87e2c277eabf0134925c340e9dc4fe9446f3636
Christian Brabandt <cb@256bit.org>
parents:
8100
diff
changeset
|
1473 /**/ |
8100
ae50910ce279
commit https://github.com/vim/vim/commit/203219048fa007b5042d9b893fd647aef44722a0
Christian Brabandt <cb@256bit.org>
parents:
8098
diff
changeset
|
1474 1344, |
ae50910ce279
commit https://github.com/vim/vim/commit/203219048fa007b5042d9b893fd647aef44722a0
Christian Brabandt <cb@256bit.org>
parents:
8098
diff
changeset
|
1475 /**/ |
8098
7bc924a34288
commit https://github.com/vim/vim/commit/cd39bbcd1dd5bdc280f0fa5833b1107853f1227f
Christian Brabandt <cb@256bit.org>
parents:
8096
diff
changeset
|
1476 1343, |
7bc924a34288
commit https://github.com/vim/vim/commit/cd39bbcd1dd5bdc280f0fa5833b1107853f1227f
Christian Brabandt <cb@256bit.org>
parents:
8096
diff
changeset
|
1477 /**/ |
8096
882ba5080c5c
commit https://github.com/vim/vim/commit/e74e8e7d758e9312165a931f176185f07a64231a
Christian Brabandt <cb@256bit.org>
parents:
8094
diff
changeset
|
1478 1342, |
882ba5080c5c
commit https://github.com/vim/vim/commit/e74e8e7d758e9312165a931f176185f07a64231a
Christian Brabandt <cb@256bit.org>
parents:
8094
diff
changeset
|
1479 /**/ |
8094
18a3f0f05244
commit https://github.com/vim/vim/commit/910b8aac5dc4693c4508b7acd2cef0bbfac04242
Christian Brabandt <cb@256bit.org>
parents:
8092
diff
changeset
|
1480 1341, |
18a3f0f05244
commit https://github.com/vim/vim/commit/910b8aac5dc4693c4508b7acd2cef0bbfac04242
Christian Brabandt <cb@256bit.org>
parents:
8092
diff
changeset
|
1481 /**/ |
8092
d82fb42b611b
commit https://github.com/vim/vim/commit/7d63f624603ebeae336d4c504f82ab3da3481f46
Christian Brabandt <cb@256bit.org>
parents:
8090
diff
changeset
|
1482 1340, |
d82fb42b611b
commit https://github.com/vim/vim/commit/7d63f624603ebeae336d4c504f82ab3da3481f46
Christian Brabandt <cb@256bit.org>
parents:
8090
diff
changeset
|
1483 /**/ |
8090
54cfe888c627
commit https://github.com/vim/vim/commit/418f81b5fa400ed59793384f2f3d9df45390f080
Christian Brabandt <cb@256bit.org>
parents:
8088
diff
changeset
|
1484 1339, |
54cfe888c627
commit https://github.com/vim/vim/commit/418f81b5fa400ed59793384f2f3d9df45390f080
Christian Brabandt <cb@256bit.org>
parents:
8088
diff
changeset
|
1485 /**/ |
8088
1b70dae3e79a
commit https://github.com/vim/vim/commit/0c2c96e47c8b44f7d69da2add906224a89318ff7
Christian Brabandt <cb@256bit.org>
parents:
8086
diff
changeset
|
1486 1338, |
1b70dae3e79a
commit https://github.com/vim/vim/commit/0c2c96e47c8b44f7d69da2add906224a89318ff7
Christian Brabandt <cb@256bit.org>
parents:
8086
diff
changeset
|
1487 /**/ |
8086
04ed31f9ef70
commit https://github.com/vim/vim/commit/ba093bc0002ac60aebd0f2d8a458e2fdac38f1ed
Christian Brabandt <cb@256bit.org>
parents:
8084
diff
changeset
|
1488 1337, |
04ed31f9ef70
commit https://github.com/vim/vim/commit/ba093bc0002ac60aebd0f2d8a458e2fdac38f1ed
Christian Brabandt <cb@256bit.org>
parents:
8084
diff
changeset
|
1489 /**/ |
8084
3ea56a74077f
commit https://github.com/vim/vim/commit/9a6e33a19b18f20c25b73392cd2faa3ec4890c8c
Christian Brabandt <cb@256bit.org>
parents:
8082
diff
changeset
|
1490 1336, |
3ea56a74077f
commit https://github.com/vim/vim/commit/9a6e33a19b18f20c25b73392cd2faa3ec4890c8c
Christian Brabandt <cb@256bit.org>
parents:
8082
diff
changeset
|
1491 /**/ |
8082
0c7f5abe84b8
commit https://github.com/vim/vim/commit/5d54a045989599468b7a971fc354b0cba4e2b09d
Christian Brabandt <cb@256bit.org>
parents:
8080
diff
changeset
|
1492 1335, |
0c7f5abe84b8
commit https://github.com/vim/vim/commit/5d54a045989599468b7a971fc354b0cba4e2b09d
Christian Brabandt <cb@256bit.org>
parents:
8080
diff
changeset
|
1493 /**/ |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8078
diff
changeset
|
1494 1334, |
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8078
diff
changeset
|
1495 /**/ |
8078
7676818d486b
commit https://github.com/vim/vim/commit/f8df7addc5f741c16fa2a458f8777ac1fdf2e01e
Christian Brabandt <cb@256bit.org>
parents:
8076
diff
changeset
|
1496 1333, |
7676818d486b
commit https://github.com/vim/vim/commit/f8df7addc5f741c16fa2a458f8777ac1fdf2e01e
Christian Brabandt <cb@256bit.org>
parents:
8076
diff
changeset
|
1497 /**/ |
8076
3b0127287851
commit https://github.com/vim/vim/commit/acd58ef676bb9559ac0f635f66b62f4602929c87
Christian Brabandt <cb@256bit.org>
parents:
8074
diff
changeset
|
1498 1332, |
3b0127287851
commit https://github.com/vim/vim/commit/acd58ef676bb9559ac0f635f66b62f4602929c87
Christian Brabandt <cb@256bit.org>
parents:
8074
diff
changeset
|
1499 /**/ |
8074
dc32c8026899
commit https://github.com/vim/vim/commit/d46ae142aa9452e99576b5e923de974704e3c896
Christian Brabandt <cb@256bit.org>
parents:
8072
diff
changeset
|
1500 1331, |
dc32c8026899
commit https://github.com/vim/vim/commit/d46ae142aa9452e99576b5e923de974704e3c896
Christian Brabandt <cb@256bit.org>
parents:
8072
diff
changeset
|
1501 /**/ |
8072
38887bf423ba
commit https://github.com/vim/vim/commit/0943a09db84b036ec550d7f2e5b832f621b400ca
Christian Brabandt <cb@256bit.org>
parents:
8070
diff
changeset
|
1502 1330, |
38887bf423ba
commit https://github.com/vim/vim/commit/0943a09db84b036ec550d7f2e5b832f621b400ca
Christian Brabandt <cb@256bit.org>
parents:
8070
diff
changeset
|
1503 /**/ |
8070
e4c3f6720b03
commit https://github.com/vim/vim/commit/5cefd4098204b4677387511b586673649f2fab48
Christian Brabandt <cb@256bit.org>
parents:
8068
diff
changeset
|
1504 1329, |
e4c3f6720b03
commit https://github.com/vim/vim/commit/5cefd4098204b4677387511b586673649f2fab48
Christian Brabandt <cb@256bit.org>
parents:
8068
diff
changeset
|
1505 /**/ |
8068
9c6740f2204f
commit https://github.com/vim/vim/commit/12dcf024e90ab511f04a08b20fe7eedbe92096d2
Christian Brabandt <cb@256bit.org>
parents:
8066
diff
changeset
|
1506 1328, |
9c6740f2204f
commit https://github.com/vim/vim/commit/12dcf024e90ab511f04a08b20fe7eedbe92096d2
Christian Brabandt <cb@256bit.org>
parents:
8066
diff
changeset
|
1507 /**/ |
8066
1aa8ed4ee48b
commit https://github.com/vim/vim/commit/b6a7737938e7e7b34f862f58aa5498e6f652e33d
Christian Brabandt <cb@256bit.org>
parents:
8064
diff
changeset
|
1508 1327, |
1aa8ed4ee48b
commit https://github.com/vim/vim/commit/b6a7737938e7e7b34f862f58aa5498e6f652e33d
Christian Brabandt <cb@256bit.org>
parents:
8064
diff
changeset
|
1509 /**/ |
8064
1e853c5273d0
commit https://github.com/vim/vim/commit/97eba78f69ba68ce8e1fc72bbe762fc321e0a4b1
Christian Brabandt <cb@256bit.org>
parents:
8062
diff
changeset
|
1510 1326, |
1e853c5273d0
commit https://github.com/vim/vim/commit/97eba78f69ba68ce8e1fc72bbe762fc321e0a4b1
Christian Brabandt <cb@256bit.org>
parents:
8062
diff
changeset
|
1511 /**/ |
8062
7fe3b9dc132b
commit https://github.com/vim/vim/commit/2368917d8f0c0a997eac7a51ddfaa748dc528392
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
1512 1325, |
7fe3b9dc132b
commit https://github.com/vim/vim/commit/2368917d8f0c0a997eac7a51ddfaa748dc528392
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
1513 /**/ |
8059
19304db153bc
commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents:
8057
diff
changeset
|
1514 1324, |
19304db153bc
commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents:
8057
diff
changeset
|
1515 /**/ |
8057
e407d5bce2f5
commit https://github.com/vim/vim/commit/a971df849f92e32e18ce475fdb47ad9ea2aa47f3
Christian Brabandt <cb@256bit.org>
parents:
8055
diff
changeset
|
1516 1323, |
e407d5bce2f5
commit https://github.com/vim/vim/commit/a971df849f92e32e18ce475fdb47ad9ea2aa47f3
Christian Brabandt <cb@256bit.org>
parents:
8055
diff
changeset
|
1517 /**/ |
8055
6db4b1c863ec
commit https://github.com/vim/vim/commit/3bece9fee9c02934d3e295b29d253e13d4ef26a7
Christian Brabandt <cb@256bit.org>
parents:
8053
diff
changeset
|
1518 1322, |
6db4b1c863ec
commit https://github.com/vim/vim/commit/3bece9fee9c02934d3e295b29d253e13d4ef26a7
Christian Brabandt <cb@256bit.org>
parents:
8053
diff
changeset
|
1519 /**/ |
8053
774d53057a23
commit https://github.com/vim/vim/commit/71b0f7b5c083d32fd37fa825f5d829b6a6c1a09a
Christian Brabandt <cb@256bit.org>
parents:
8051
diff
changeset
|
1520 1321, |
774d53057a23
commit https://github.com/vim/vim/commit/71b0f7b5c083d32fd37fa825f5d829b6a6c1a09a
Christian Brabandt <cb@256bit.org>
parents:
8051
diff
changeset
|
1521 /**/ |
8051
7e298e8c5741
commit https://github.com/vim/vim/commit/44d571868f4fcf000e8b03ee0a350f1f8131c9ca
Christian Brabandt <cb@256bit.org>
parents:
8049
diff
changeset
|
1522 1320, |
7e298e8c5741
commit https://github.com/vim/vim/commit/44d571868f4fcf000e8b03ee0a350f1f8131c9ca
Christian Brabandt <cb@256bit.org>
parents:
8049
diff
changeset
|
1523 /**/ |
8049
15253130abd8
commit https://github.com/vim/vim/commit/16eb4f88000cfdba68df6c421fe44e7e029ba53e
Christian Brabandt <cb@256bit.org>
parents:
8047
diff
changeset
|
1524 1319, |
15253130abd8
commit https://github.com/vim/vim/commit/16eb4f88000cfdba68df6c421fe44e7e029ba53e
Christian Brabandt <cb@256bit.org>
parents:
8047
diff
changeset
|
1525 /**/ |
8047
7c74cafac0a1
commit https://github.com/vim/vim/commit/7b3ca76a451b10d238ef946f3231762e0bd988e9
Christian Brabandt <cb@256bit.org>
parents:
8045
diff
changeset
|
1526 1318, |
7c74cafac0a1
commit https://github.com/vim/vim/commit/7b3ca76a451b10d238ef946f3231762e0bd988e9
Christian Brabandt <cb@256bit.org>
parents:
8045
diff
changeset
|
1527 /**/ |
8045
9f9b74579bdc
commit https://github.com/vim/vim/commit/0727d362b4dad83d9fdf1caba074213e77e0aa49
Christian Brabandt <cb@256bit.org>
parents:
8043
diff
changeset
|
1528 1317, |
9f9b74579bdc
commit https://github.com/vim/vim/commit/0727d362b4dad83d9fdf1caba074213e77e0aa49
Christian Brabandt <cb@256bit.org>
parents:
8043
diff
changeset
|
1529 /**/ |
8043
167e22951df4
commit https://github.com/vim/vim/commit/fa4bce7dd23e62d5a2fd79c7719969e11d5597aa
Christian Brabandt <cb@256bit.org>
parents:
8041
diff
changeset
|
1530 1316, |
167e22951df4
commit https://github.com/vim/vim/commit/fa4bce7dd23e62d5a2fd79c7719969e11d5597aa
Christian Brabandt <cb@256bit.org>
parents:
8041
diff
changeset
|
1531 /**/ |
8041
c6443e78cf2d
commit https://github.com/vim/vim/commit/7707344ddec9069b495b2a5ed41f2104466fc88b
Christian Brabandt <cb@256bit.org>
parents:
8039
diff
changeset
|
1532 1315, |
c6443e78cf2d
commit https://github.com/vim/vim/commit/7707344ddec9069b495b2a5ed41f2104466fc88b
Christian Brabandt <cb@256bit.org>
parents:
8039
diff
changeset
|
1533 /**/ |
8039
72324c2e890a
commit https://github.com/vim/vim/commit/e516c39ee97cb85fa230fbb1b1f54ad1346920d9
Christian Brabandt <cb@256bit.org>
parents:
8037
diff
changeset
|
1534 1314, |
72324c2e890a
commit https://github.com/vim/vim/commit/e516c39ee97cb85fa230fbb1b1f54ad1346920d9
Christian Brabandt <cb@256bit.org>
parents:
8037
diff
changeset
|
1535 /**/ |
8037
9dea1571b352
commit https://github.com/vim/vim/commit/bfa1ffca8bcce92c030d8366036a316954f1ee69
Christian Brabandt <cb@256bit.org>
parents:
8035
diff
changeset
|
1536 1313, |
9dea1571b352
commit https://github.com/vim/vim/commit/bfa1ffca8bcce92c030d8366036a316954f1ee69
Christian Brabandt <cb@256bit.org>
parents:
8035
diff
changeset
|
1537 /**/ |
8035
f48041801aac
commit https://github.com/vim/vim/commit/f8b7d890f1d62f3ab101d2b02dd7716cb7f053cb
Christian Brabandt <cb@256bit.org>
parents:
8033
diff
changeset
|
1538 1312, |
f48041801aac
commit https://github.com/vim/vim/commit/f8b7d890f1d62f3ab101d2b02dd7716cb7f053cb
Christian Brabandt <cb@256bit.org>
parents:
8033
diff
changeset
|
1539 /**/ |
8033
a1b10634a28a
commit https://github.com/vim/vim/commit/d090d7bab5a0d96559579e078dfdcc6d7d4f4713
Christian Brabandt <cb@256bit.org>
parents:
8031
diff
changeset
|
1540 1311, |
a1b10634a28a
commit https://github.com/vim/vim/commit/d090d7bab5a0d96559579e078dfdcc6d7d4f4713
Christian Brabandt <cb@256bit.org>
parents:
8031
diff
changeset
|
1541 /**/ |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8029
diff
changeset
|
1542 1310, |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8029
diff
changeset
|
1543 /**/ |
8029
770dd91ad9f7
commit https://github.com/vim/vim/commit/00af60bbb6cc7e8ccafddb30a1964f891b800bce
Christian Brabandt <cb@256bit.org>
parents:
8027
diff
changeset
|
1544 1309, |
770dd91ad9f7
commit https://github.com/vim/vim/commit/00af60bbb6cc7e8ccafddb30a1964f891b800bce
Christian Brabandt <cb@256bit.org>
parents:
8027
diff
changeset
|
1545 /**/ |
8027
4fd171e5cedc
commit https://github.com/vim/vim/commit/45c7f054730da5c88e1e5c7de290d25c450578a0
Christian Brabandt <cb@256bit.org>
parents:
8025
diff
changeset
|
1546 1308, |
4fd171e5cedc
commit https://github.com/vim/vim/commit/45c7f054730da5c88e1e5c7de290d25c450578a0
Christian Brabandt <cb@256bit.org>
parents:
8025
diff
changeset
|
1547 /**/ |
8025
1f0f08c601b7
commit https://github.com/vim/vim/commit/f02c5cffd8cd567d8dfbe4d9e93ec75eb29e7910
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
1548 1307, |
1f0f08c601b7
commit https://github.com/vim/vim/commit/f02c5cffd8cd567d8dfbe4d9e93ec75eb29e7910
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
1549 /**/ |
8023
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
8021
diff
changeset
|
1550 1306, |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
8021
diff
changeset
|
1551 /**/ |
8021
b6b4f354df23
commit https://github.com/vim/vim/commit/7c29f387819b5817b003d2ba73e2b5cf3cb3d0dd
Christian Brabandt <cb@256bit.org>
parents:
8019
diff
changeset
|
1552 1305, |
b6b4f354df23
commit https://github.com/vim/vim/commit/7c29f387819b5817b003d2ba73e2b5cf3cb3d0dd
Christian Brabandt <cb@256bit.org>
parents:
8019
diff
changeset
|
1553 /**/ |
8019
d685893d852e
commit https://github.com/vim/vim/commit/7823a3bd2eed6ff9e544d201de96710bd5344aaf
Christian Brabandt <cb@256bit.org>
parents:
8017
diff
changeset
|
1554 1304, |
d685893d852e
commit https://github.com/vim/vim/commit/7823a3bd2eed6ff9e544d201de96710bd5344aaf
Christian Brabandt <cb@256bit.org>
parents:
8017
diff
changeset
|
1555 /**/ |
8017
c59a65524084
commit https://github.com/vim/vim/commit/b6a4fee37ebbb0c76f2fbda7d06cbf48a3a07e8d
Christian Brabandt <cb@256bit.org>
parents:
8015
diff
changeset
|
1556 1303, |
c59a65524084
commit https://github.com/vim/vim/commit/b6a4fee37ebbb0c76f2fbda7d06cbf48a3a07e8d
Christian Brabandt <cb@256bit.org>
parents:
8015
diff
changeset
|
1557 /**/ |
8015
b421c7f2f172
commit https://github.com/vim/vim/commit/6119e6156e024d9047bbfeb7cdfdae259f9e1b92
Christian Brabandt <cb@256bit.org>
parents:
8013
diff
changeset
|
1558 1302, |
b421c7f2f172
commit https://github.com/vim/vim/commit/6119e6156e024d9047bbfeb7cdfdae259f9e1b92
Christian Brabandt <cb@256bit.org>
parents:
8013
diff
changeset
|
1559 /**/ |
8013
dfae8bce5920
commit https://github.com/vim/vim/commit/39b21272d521512b6ecac6cc0f310944f21b7443
Christian Brabandt <cb@256bit.org>
parents:
8011
diff
changeset
|
1560 1301, |
dfae8bce5920
commit https://github.com/vim/vim/commit/39b21272d521512b6ecac6cc0f310944f21b7443
Christian Brabandt <cb@256bit.org>
parents:
8011
diff
changeset
|
1561 /**/ |
8011
26f555e9aab1
commit https://github.com/vim/vim/commit/2ab375e54ef4eac438d1aef8b99d9e71f2fa0c63
Christian Brabandt <cb@256bit.org>
parents:
8009
diff
changeset
|
1562 1300, |
26f555e9aab1
commit https://github.com/vim/vim/commit/2ab375e54ef4eac438d1aef8b99d9e71f2fa0c63
Christian Brabandt <cb@256bit.org>
parents:
8009
diff
changeset
|
1563 /**/ |
8009
b2cfa3416ba0
commit https://github.com/vim/vim/commit/f6157284de71d8881f3b89fbd79d1ecbf842929f
Christian Brabandt <cb@256bit.org>
parents:
8007
diff
changeset
|
1564 1299, |
b2cfa3416ba0
commit https://github.com/vim/vim/commit/f6157284de71d8881f3b89fbd79d1ecbf842929f
Christian Brabandt <cb@256bit.org>
parents:
8007
diff
changeset
|
1565 /**/ |
8007
ac78cba9e72b
commit https://github.com/vim/vim/commit/d6a8d48587b2ff43c343fa365898576cc1e235ea
Christian Brabandt <cb@256bit.org>
parents:
8005
diff
changeset
|
1566 1298, |
ac78cba9e72b
commit https://github.com/vim/vim/commit/d6a8d48587b2ff43c343fa365898576cc1e235ea
Christian Brabandt <cb@256bit.org>
parents:
8005
diff
changeset
|
1567 /**/ |
8005
d65aa95725d3
commit https://github.com/vim/vim/commit/a483326e3b04215b86fe9c582ac96bb9679f0812
Christian Brabandt <cb@256bit.org>
parents:
8003
diff
changeset
|
1568 1297, |
d65aa95725d3
commit https://github.com/vim/vim/commit/a483326e3b04215b86fe9c582ac96bb9679f0812
Christian Brabandt <cb@256bit.org>
parents:
8003
diff
changeset
|
1569 /**/ |
8003
94798af62c56
commit https://github.com/vim/vim/commit/f068dcafcfe0c8018e5a559c50769ca1364bd9a5
Christian Brabandt <cb@256bit.org>
parents:
8001
diff
changeset
|
1570 1296, |
94798af62c56
commit https://github.com/vim/vim/commit/f068dcafcfe0c8018e5a559c50769ca1364bd9a5
Christian Brabandt <cb@256bit.org>
parents:
8001
diff
changeset
|
1571 /**/ |
8001
e5dbeb923ce6
commit https://github.com/vim/vim/commit/4d8747cdfc13843a5680dc8340fbeb6d32e7b626
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
1572 1295, |
e5dbeb923ce6
commit https://github.com/vim/vim/commit/4d8747cdfc13843a5680dc8340fbeb6d32e7b626
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
1573 /**/ |
7999
92ad477c6ab3
commit https://github.com/vim/vim/commit/7280140c08799f683ef31a6c1019e283c3dc13aa
Christian Brabandt <cb@256bit.org>
parents:
7997
diff
changeset
|
1574 1294, |
92ad477c6ab3
commit https://github.com/vim/vim/commit/7280140c08799f683ef31a6c1019e283c3dc13aa
Christian Brabandt <cb@256bit.org>
parents:
7997
diff
changeset
|
1575 /**/ |
7997
c1c9ab17e197
commit https://github.com/vim/vim/commit/e56bf15c163a921ce9e1c09c0d5b3a03efc63324
Christian Brabandt <cb@256bit.org>
parents:
7995
diff
changeset
|
1576 1293, |
c1c9ab17e197
commit https://github.com/vim/vim/commit/e56bf15c163a921ce9e1c09c0d5b3a03efc63324
Christian Brabandt <cb@256bit.org>
parents:
7995
diff
changeset
|
1577 /**/ |
7995
d244f2e46d69
commit https://github.com/vim/vim/commit/2fc83fcd1d6dfd4728a2ef70e2316f79203c7ee0
Christian Brabandt <cb@256bit.org>
parents:
7993
diff
changeset
|
1578 1292, |
d244f2e46d69
commit https://github.com/vim/vim/commit/2fc83fcd1d6dfd4728a2ef70e2316f79203c7ee0
Christian Brabandt <cb@256bit.org>
parents:
7993
diff
changeset
|
1579 /**/ |
7993
0756eab66b71
commit https://github.com/vim/vim/commit/b92abad0c58de36d0b0afdcd4ec05261fa1fa84c
Christian Brabandt <cb@256bit.org>
parents:
7990
diff
changeset
|
1580 1291, |
0756eab66b71
commit https://github.com/vim/vim/commit/b92abad0c58de36d0b0afdcd4ec05261fa1fa84c
Christian Brabandt <cb@256bit.org>
parents:
7990
diff
changeset
|
1581 /**/ |
7990
75de22db840d
commit https://github.com/vim/vim/commit/ee5aeae22b8029fdb5ae97bb6ed8114a81e34c22
Christian Brabandt <cb@256bit.org>
parents:
7988
diff
changeset
|
1582 1290, |
75de22db840d
commit https://github.com/vim/vim/commit/ee5aeae22b8029fdb5ae97bb6ed8114a81e34c22
Christian Brabandt <cb@256bit.org>
parents:
7988
diff
changeset
|
1583 /**/ |
7988
d3fed9a639db
commit https://github.com/vim/vim/commit/0fa98e7b85b52c63611b2fe8e370f0aa1c8f6dc9
Christian Brabandt <cb@256bit.org>
parents:
7986
diff
changeset
|
1584 1289, |
d3fed9a639db
commit https://github.com/vim/vim/commit/0fa98e7b85b52c63611b2fe8e370f0aa1c8f6dc9
Christian Brabandt <cb@256bit.org>
parents:
7986
diff
changeset
|
1585 /**/ |
7986
8e0d4cd8157a
commit https://github.com/vim/vim/commit/ae8eb3ca927f1b0ac2a6643da8699538cdc380f6
Christian Brabandt <cb@256bit.org>
parents:
7984
diff
changeset
|
1586 1288, |
8e0d4cd8157a
commit https://github.com/vim/vim/commit/ae8eb3ca927f1b0ac2a6643da8699538cdc380f6
Christian Brabandt <cb@256bit.org>
parents:
7984
diff
changeset
|
1587 /**/ |
7984
c166ff6797cb
commit https://github.com/vim/vim/commit/74f5e65bcc3d77ab879f56eb977f5038edccbcf8
Christian Brabandt <cb@256bit.org>
parents:
7982
diff
changeset
|
1588 1287, |
c166ff6797cb
commit https://github.com/vim/vim/commit/74f5e65bcc3d77ab879f56eb977f5038edccbcf8
Christian Brabandt <cb@256bit.org>
parents:
7982
diff
changeset
|
1589 /**/ |
7982
5c30ba57aaea
commit https://github.com/vim/vim/commit/7a84dbe6be0ef0e1ffbb7148cfe4ab50b9ba8f41
Christian Brabandt <cb@256bit.org>
parents:
7979
diff
changeset
|
1590 1286, |
5c30ba57aaea
commit https://github.com/vim/vim/commit/7a84dbe6be0ef0e1ffbb7148cfe4ab50b9ba8f41
Christian Brabandt <cb@256bit.org>
parents:
7979
diff
changeset
|
1591 /**/ |
7979
22367b9f528a
commit https://github.com/vim/vim/commit/79c2c881bb7ae1cbdeeff91d4875b4bf2e54df06
Christian Brabandt <cb@256bit.org>
parents:
7977
diff
changeset
|
1592 1285, |
22367b9f528a
commit https://github.com/vim/vim/commit/79c2c881bb7ae1cbdeeff91d4875b4bf2e54df06
Christian Brabandt <cb@256bit.org>
parents:
7977
diff
changeset
|
1593 /**/ |
7977
96fe78b32ad5
commit https://github.com/vim/vim/commit/dc94a26a641914df5f1ba1ab47a5752e1137287e
Christian Brabandt <cb@256bit.org>
parents:
7975
diff
changeset
|
1594 1284, |
96fe78b32ad5
commit https://github.com/vim/vim/commit/dc94a26a641914df5f1ba1ab47a5752e1137287e
Christian Brabandt <cb@256bit.org>
parents:
7975
diff
changeset
|
1595 /**/ |
7975
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7973
diff
changeset
|
1596 1283, |
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7973
diff
changeset
|
1597 /**/ |
7973
00344cd730f6
commit https://github.com/vim/vim/commit/768ce2435ae956041579ef2d26e3e9d3a2444e1e
Christian Brabandt <cb@256bit.org>
parents:
7971
diff
changeset
|
1598 1282, |
00344cd730f6
commit https://github.com/vim/vim/commit/768ce2435ae956041579ef2d26e3e9d3a2444e1e
Christian Brabandt <cb@256bit.org>
parents:
7971
diff
changeset
|
1599 /**/ |
7971
f91a24e33475
commit https://github.com/vim/vim/commit/ea8c219ca852cc8eaf603b1bf475edf95e2850cf
Christian Brabandt <cb@256bit.org>
parents:
7969
diff
changeset
|
1600 1281, |
f91a24e33475
commit https://github.com/vim/vim/commit/ea8c219ca852cc8eaf603b1bf475edf95e2850cf
Christian Brabandt <cb@256bit.org>
parents:
7969
diff
changeset
|
1601 /**/ |
7969
0de25de30ba3
commit https://github.com/vim/vim/commit/eba6d8c66c3511a5e1bfe6ffa30c8bea47d129ad
Christian Brabandt <cb@256bit.org>
parents:
7967
diff
changeset
|
1602 1280, |
0de25de30ba3
commit https://github.com/vim/vim/commit/eba6d8c66c3511a5e1bfe6ffa30c8bea47d129ad
Christian Brabandt <cb@256bit.org>
parents:
7967
diff
changeset
|
1603 /**/ |
7967
45ea5ebf3a98
commit https://github.com/vim/vim/commit/595e64e259faefb330866852e1b9f6168544572a
Christian Brabandt <cb@256bit.org>
parents:
7965
diff
changeset
|
1604 1279, |
45ea5ebf3a98
commit https://github.com/vim/vim/commit/595e64e259faefb330866852e1b9f6168544572a
Christian Brabandt <cb@256bit.org>
parents:
7965
diff
changeset
|
1605 /**/ |
7965
646d5148fee2
commit https://github.com/vim/vim/commit/55fab439a6f3bba6dbe780ac034b84d5822a1a96
Christian Brabandt <cb@256bit.org>
parents:
7963
diff
changeset
|
1606 1278, |
646d5148fee2
commit https://github.com/vim/vim/commit/55fab439a6f3bba6dbe780ac034b84d5822a1a96
Christian Brabandt <cb@256bit.org>
parents:
7963
diff
changeset
|
1607 /**/ |
7963
d96e38f35e2d
commit https://github.com/vim/vim/commit/a6f72ba7c6cadd37be38d92008d10a3025fdc5ec
Christian Brabandt <cb@256bit.org>
parents:
7961
diff
changeset
|
1608 1277, |
d96e38f35e2d
commit https://github.com/vim/vim/commit/a6f72ba7c6cadd37be38d92008d10a3025fdc5ec
Christian Brabandt <cb@256bit.org>
parents:
7961
diff
changeset
|
1609 /**/ |
7961
a7e58c6e4e9a
commit https://github.com/vim/vim/commit/fbc4b4db3a9690906a96e16724350a6241cf32a5
Christian Brabandt <cb@256bit.org>
parents:
7959
diff
changeset
|
1610 1276, |
a7e58c6e4e9a
commit https://github.com/vim/vim/commit/fbc4b4db3a9690906a96e16724350a6241cf32a5
Christian Brabandt <cb@256bit.org>
parents:
7959
diff
changeset
|
1611 /**/ |
7959
fc9ba91a6533
commit https://github.com/vim/vim/commit/cb4b01230be26ada92a1622c2278277d59ef2ec1
Christian Brabandt <cb@256bit.org>
parents:
7957
diff
changeset
|
1612 1275, |
fc9ba91a6533
commit https://github.com/vim/vim/commit/cb4b01230be26ada92a1622c2278277d59ef2ec1
Christian Brabandt <cb@256bit.org>
parents:
7957
diff
changeset
|
1613 /**/ |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7955
diff
changeset
|
1614 1274, |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7955
diff
changeset
|
1615 /**/ |
7955
a4de8e834b8f
commit https://github.com/vim/vim/commit/c5f98ee987ae0c369867cf6cc581c766d3c0226d
Christian Brabandt <cb@256bit.org>
parents:
7953
diff
changeset
|
1616 1273, |
a4de8e834b8f
commit https://github.com/vim/vim/commit/c5f98ee987ae0c369867cf6cc581c766d3c0226d
Christian Brabandt <cb@256bit.org>
parents:
7953
diff
changeset
|
1617 /**/ |
7953
a028a16110e2
commit https://github.com/vim/vim/commit/1701481c53f4e6756038c9c00d51d491a8f42c65
Christian Brabandt <cb@256bit.org>
parents:
7951
diff
changeset
|
1618 1272, |
a028a16110e2
commit https://github.com/vim/vim/commit/1701481c53f4e6756038c9c00d51d491a8f42c65
Christian Brabandt <cb@256bit.org>
parents:
7951
diff
changeset
|
1619 /**/ |
7951
03e716299680
commit https://github.com/vim/vim/commit/3712792637516aea7acf76a11533be1066952820
Christian Brabandt <cb@256bit.org>
parents:
7949
diff
changeset
|
1620 1271, |
03e716299680
commit https://github.com/vim/vim/commit/3712792637516aea7acf76a11533be1066952820
Christian Brabandt <cb@256bit.org>
parents:
7949
diff
changeset
|
1621 /**/ |
7949
3f7382858d4d
commit https://github.com/vim/vim/commit/81e7a9c3fb37cad46c8f04a5ce871fb06819a371
Christian Brabandt <cb@256bit.org>
parents:
7947
diff
changeset
|
1622 1270, |
3f7382858d4d
commit https://github.com/vim/vim/commit/81e7a9c3fb37cad46c8f04a5ce871fb06819a371
Christian Brabandt <cb@256bit.org>
parents:
7947
diff
changeset
|
1623 /**/ |
7947
b2922673917a
commit https://github.com/vim/vim/commit/4f8b8faec31a934920a723053e8dcf47b6fac08c
Christian Brabandt <cb@256bit.org>
parents:
7945
diff
changeset
|
1624 1269, |
b2922673917a
commit https://github.com/vim/vim/commit/4f8b8faec31a934920a723053e8dcf47b6fac08c
Christian Brabandt <cb@256bit.org>
parents:
7945
diff
changeset
|
1625 /**/ |
7945
e72438a11172
commit https://github.com/vim/vim/commit/26dfc41335ef47fe765643148ae980be388084ec
Christian Brabandt <cb@256bit.org>
parents:
7943
diff
changeset
|
1626 1268, |
e72438a11172
commit https://github.com/vim/vim/commit/26dfc41335ef47fe765643148ae980be388084ec
Christian Brabandt <cb@256bit.org>
parents:
7943
diff
changeset
|
1627 /**/ |
7943
e875f0fbd9c0
commit https://github.com/vim/vim/commit/a03f23351588f04276469cd7742b7ec655bb604b
Christian Brabandt <cb@256bit.org>
parents:
7941
diff
changeset
|
1628 1267, |
e875f0fbd9c0
commit https://github.com/vim/vim/commit/a03f23351588f04276469cd7742b7ec655bb604b
Christian Brabandt <cb@256bit.org>
parents:
7941
diff
changeset
|
1629 /**/ |
7941
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7939
diff
changeset
|
1630 1266, |
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7939
diff
changeset
|
1631 /**/ |
7939
dcc0bd6b1574
commit https://github.com/vim/vim/commit/f416086f264c1d998863b2e600f4c14f799d0d99
Christian Brabandt <cb@256bit.org>
parents:
7937
diff
changeset
|
1632 1265, |
dcc0bd6b1574
commit https://github.com/vim/vim/commit/f416086f264c1d998863b2e600f4c14f799d0d99
Christian Brabandt <cb@256bit.org>
parents:
7937
diff
changeset
|
1633 /**/ |
7937
2e905dfc6999
commit https://github.com/vim/vim/commit/6076fe1986255d32b7a078a28bf9e7bea19d6f30
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
1634 1264, |
2e905dfc6999
commit https://github.com/vim/vim/commit/6076fe1986255d32b7a078a28bf9e7bea19d6f30
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
1635 /**/ |
7935
3f2e0b62003d
commit https://github.com/vim/vim/commit/4d919d748e4e435edb135aa5ccf6ee7de9212023
Christian Brabandt <cb@256bit.org>
parents:
7933
diff
changeset
|
1636 1263, |
3f2e0b62003d
commit https://github.com/vim/vim/commit/4d919d748e4e435edb135aa5ccf6ee7de9212023
Christian Brabandt <cb@256bit.org>
parents:
7933
diff
changeset
|
1637 /**/ |
7933
1f0743f4f88f
commit https://github.com/vim/vim/commit/a07fec9c85d062acd9dd433a2e681770f459ba47
Christian Brabandt <cb@256bit.org>
parents:
7931
diff
changeset
|
1638 1262, |
1f0743f4f88f
commit https://github.com/vim/vim/commit/a07fec9c85d062acd9dd433a2e681770f459ba47
Christian Brabandt <cb@256bit.org>
parents:
7931
diff
changeset
|
1639 /**/ |
7931
2679e636e862
commit https://github.com/vim/vim/commit/4b6a6dcbe7bd13170c4884cc17acb1eac2c633d1
Christian Brabandt <cb@256bit.org>
parents:
7929
diff
changeset
|
1640 1261, |
2679e636e862
commit https://github.com/vim/vim/commit/4b6a6dcbe7bd13170c4884cc17acb1eac2c633d1
Christian Brabandt <cb@256bit.org>
parents:
7929
diff
changeset
|
1641 /**/ |
7929
e44240b5a6da
commit https://github.com/vim/vim/commit/a8343c1808f2f268282f3030ce4adaf22e8ade54
Christian Brabandt <cb@256bit.org>
parents:
7927
diff
changeset
|
1642 1260, |
e44240b5a6da
commit https://github.com/vim/vim/commit/a8343c1808f2f268282f3030ce4adaf22e8ade54
Christian Brabandt <cb@256bit.org>
parents:
7927
diff
changeset
|
1643 /**/ |
7927
2a34dd90beba
commit https://github.com/vim/vim/commit/3fc3e14282c182c046d1335f3d576bc0eeb605c5
Christian Brabandt <cb@256bit.org>
parents:
7925
diff
changeset
|
1644 1259, |
2a34dd90beba
commit https://github.com/vim/vim/commit/3fc3e14282c182c046d1335f3d576bc0eeb605c5
Christian Brabandt <cb@256bit.org>
parents:
7925
diff
changeset
|
1645 /**/ |
7925
b724dbb299d5
commit https://github.com/vim/vim/commit/a02b321686d9827ac806353ea8af780676da340d
Christian Brabandt <cb@256bit.org>
parents:
7922
diff
changeset
|
1646 1258, |
b724dbb299d5
commit https://github.com/vim/vim/commit/a02b321686d9827ac806353ea8af780676da340d
Christian Brabandt <cb@256bit.org>
parents:
7922
diff
changeset
|
1647 /**/ |
7922
14540239601d
commit https://github.com/vim/vim/commit/e24692573a266f5060c06dd80bde264092c90dd5
Christian Brabandt <cb@256bit.org>
parents:
7920
diff
changeset
|
1648 1257, |
14540239601d
commit https://github.com/vim/vim/commit/e24692573a266f5060c06dd80bde264092c90dd5
Christian Brabandt <cb@256bit.org>
parents:
7920
diff
changeset
|
1649 /**/ |
7920
1ebc7be4dbbf
commit https://github.com/vim/vim/commit/b3e2f00f39d6edafda6e5508a926ebd244997a0f
Christian Brabandt <cb@256bit.org>
parents:
7918
diff
changeset
|
1650 1256, |
1ebc7be4dbbf
commit https://github.com/vim/vim/commit/b3e2f00f39d6edafda6e5508a926ebd244997a0f
Christian Brabandt <cb@256bit.org>
parents:
7918
diff
changeset
|
1651 /**/ |
7918
ce5a7a613867
commit https://github.com/vim/vim/commit/66624ff0d9e1de2fc5eb4f95f3a3a2ed70b10138
Christian Brabandt <cb@256bit.org>
parents:
7916
diff
changeset
|
1652 1255, |
ce5a7a613867
commit https://github.com/vim/vim/commit/66624ff0d9e1de2fc5eb4f95f3a3a2ed70b10138
Christian Brabandt <cb@256bit.org>
parents:
7916
diff
changeset
|
1653 /**/ |
7916
54602dcac207
commit https://github.com/vim/vim/commit/3b05b135e3ee4cfd59983fd63461e8f7642c1713
Christian Brabandt <cb@256bit.org>
parents:
7914
diff
changeset
|
1654 1254, |
54602dcac207
commit https://github.com/vim/vim/commit/3b05b135e3ee4cfd59983fd63461e8f7642c1713
Christian Brabandt <cb@256bit.org>
parents:
7914
diff
changeset
|
1655 /**/ |
7914
35973ce58c84
commit https://github.com/vim/vim/commit/608a8919cae982cb38e38725a843df47b234dae6
Christian Brabandt <cb@256bit.org>
parents:
7912
diff
changeset
|
1656 1253, |
35973ce58c84
commit https://github.com/vim/vim/commit/608a8919cae982cb38e38725a843df47b234dae6
Christian Brabandt <cb@256bit.org>
parents:
7912
diff
changeset
|
1657 /**/ |
7912
1c6ef9113556
commit https://github.com/vim/vim/commit/e7bed627c89ed80bc4b2d96f542819029adf6e76
Christian Brabandt <cb@256bit.org>
parents:
7910
diff
changeset
|
1658 1252, |
1c6ef9113556
commit https://github.com/vim/vim/commit/e7bed627c89ed80bc4b2d96f542819029adf6e76
Christian Brabandt <cb@256bit.org>
parents:
7910
diff
changeset
|
1659 /**/ |
7910
e873010fb658
commit https://github.com/vim/vim/commit/bf087cead956513bcd8d40d70322875c479a1984
Christian Brabandt <cb@256bit.org>
parents:
7908
diff
changeset
|
1660 1251, |
e873010fb658
commit https://github.com/vim/vim/commit/bf087cead956513bcd8d40d70322875c479a1984
Christian Brabandt <cb@256bit.org>
parents:
7908
diff
changeset
|
1661 /**/ |
7908
a343a738010e
commit https://github.com/vim/vim/commit/2212c4154cde0641225782cc4dd1a6483ff2ff35
Christian Brabandt <cb@256bit.org>
parents:
7906
diff
changeset
|
1662 1250, |
a343a738010e
commit https://github.com/vim/vim/commit/2212c4154cde0641225782cc4dd1a6483ff2ff35
Christian Brabandt <cb@256bit.org>
parents:
7906
diff
changeset
|
1663 /**/ |
7906
ea1fd8d750a6
commit https://github.com/vim/vim/commit/fcb1e3d16832ce06da0dc38ecb7ab9aaa3ee4383
Christian Brabandt <cb@256bit.org>
parents:
7904
diff
changeset
|
1664 1249, |
ea1fd8d750a6
commit https://github.com/vim/vim/commit/fcb1e3d16832ce06da0dc38ecb7ab9aaa3ee4383
Christian Brabandt <cb@256bit.org>
parents:
7904
diff
changeset
|
1665 /**/ |
7904
14a5de0990a5
commit https://github.com/vim/vim/commit/f92591f7f9fc78d2aced99befe444cb423b26df8
Christian Brabandt <cb@256bit.org>
parents:
7902
diff
changeset
|
1666 1248, |
14a5de0990a5
commit https://github.com/vim/vim/commit/f92591f7f9fc78d2aced99befe444cb423b26df8
Christian Brabandt <cb@256bit.org>
parents:
7902
diff
changeset
|
1667 /**/ |
7902
f12d6235a753
commit https://github.com/vim/vim/commit/a0f9cd148eaab23b2037d2f543f3b8f5a3a7ad3c
Christian Brabandt <cb@256bit.org>
parents:
7899
diff
changeset
|
1668 1247, |
f12d6235a753
commit https://github.com/vim/vim/commit/a0f9cd148eaab23b2037d2f543f3b8f5a3a7ad3c
Christian Brabandt <cb@256bit.org>
parents:
7899
diff
changeset
|
1669 /**/ |
7899
93c61501c2cf
commit https://github.com/vim/vim/commit/d7ece1008ee6173afda6d173bed486ae79c1c38a
Christian Brabandt <cb@256bit.org>
parents:
7897
diff
changeset
|
1670 1246, |
93c61501c2cf
commit https://github.com/vim/vim/commit/d7ece1008ee6173afda6d173bed486ae79c1c38a
Christian Brabandt <cb@256bit.org>
parents:
7897
diff
changeset
|
1671 /**/ |
7897
43071dab7621
commit https://github.com/vim/vim/commit/d087566a419cc107adab77db997b184ea0e433ad
Christian Brabandt <cb@256bit.org>
parents:
7895
diff
changeset
|
1672 1245, |
43071dab7621
commit https://github.com/vim/vim/commit/d087566a419cc107adab77db997b184ea0e433ad
Christian Brabandt <cb@256bit.org>
parents:
7895
diff
changeset
|
1673 /**/ |
7895
bff95e0d8885
commit https://github.com/vim/vim/commit/f57969a20a4398f56e3028a6cc1102f9f9286ccf
Christian Brabandt <cb@256bit.org>
parents:
7893
diff
changeset
|
1674 1244, |
bff95e0d8885
commit https://github.com/vim/vim/commit/f57969a20a4398f56e3028a6cc1102f9f9286ccf
Christian Brabandt <cb@256bit.org>
parents:
7893
diff
changeset
|
1675 /**/ |
7893
df2b8af14072
commit https://github.com/vim/vim/commit/fbf9c6b6c3bdb1c2eb42ea8c227e8ee021a7a8f2
Christian Brabandt <cb@256bit.org>
parents:
7891
diff
changeset
|
1676 1243, |
df2b8af14072
commit https://github.com/vim/vim/commit/fbf9c6b6c3bdb1c2eb42ea8c227e8ee021a7a8f2
Christian Brabandt <cb@256bit.org>
parents:
7891
diff
changeset
|
1677 /**/ |
7891
d14cf20b44dc
commit https://github.com/vim/vim/commit/8d8c509ac8dea59ad07712971d74afae08521f79
Christian Brabandt <cb@256bit.org>
parents:
7889
diff
changeset
|
1678 1242, |
d14cf20b44dc
commit https://github.com/vim/vim/commit/8d8c509ac8dea59ad07712971d74afae08521f79
Christian Brabandt <cb@256bit.org>
parents:
7889
diff
changeset
|
1679 /**/ |
7889
8e84273089d0
commit https://github.com/vim/vim/commit/04b08c3de68534adff95c8823787299e07ed3b49
Christian Brabandt <cb@256bit.org>
parents:
7887
diff
changeset
|
1680 1241, |
8e84273089d0
commit https://github.com/vim/vim/commit/04b08c3de68534adff95c8823787299e07ed3b49
Christian Brabandt <cb@256bit.org>
parents:
7887
diff
changeset
|
1681 /**/ |
7887
a98b93736894
commit https://github.com/vim/vim/commit/bc073092254df17b282d162d8e8181e8f6a7a356
Christian Brabandt <cb@256bit.org>
parents:
7885
diff
changeset
|
1682 1240, |
a98b93736894
commit https://github.com/vim/vim/commit/bc073092254df17b282d162d8e8181e8f6a7a356
Christian Brabandt <cb@256bit.org>
parents:
7885
diff
changeset
|
1683 /**/ |
7885
6e6f829af138
commit https://github.com/vim/vim/commit/df5b27b20ec023274fb0f5347973d5abcde7ddd6
Christian Brabandt <cb@256bit.org>
parents:
7883
diff
changeset
|
1684 1239, |
6e6f829af138
commit https://github.com/vim/vim/commit/df5b27b20ec023274fb0f5347973d5abcde7ddd6
Christian Brabandt <cb@256bit.org>
parents:
7883
diff
changeset
|
1685 /**/ |
7883
98a96e0ca73b
commit https://github.com/vim/vim/commit/56ead341a75e1a0395eee94a3280c67e2278a57e
Christian Brabandt <cb@256bit.org>
parents:
7881
diff
changeset
|
1686 1238, |
98a96e0ca73b
commit https://github.com/vim/vim/commit/56ead341a75e1a0395eee94a3280c67e2278a57e
Christian Brabandt <cb@256bit.org>
parents:
7881
diff
changeset
|
1687 /**/ |
7881
e7afe45a202a
commit https://github.com/vim/vim/commit/d9ea9069f5ef5b8b9f9e0d0daecdd124e2dcd818
Christian Brabandt <cb@256bit.org>
parents:
7879
diff
changeset
|
1688 1237, |
e7afe45a202a
commit https://github.com/vim/vim/commit/d9ea9069f5ef5b8b9f9e0d0daecdd124e2dcd818
Christian Brabandt <cb@256bit.org>
parents:
7879
diff
changeset
|
1689 /**/ |
7879
895150cd3e6f
commit https://github.com/vim/vim/commit/885f24fbcae2a39ae496ffb3a1e139379be8fae1
Christian Brabandt <cb@256bit.org>
parents:
7877
diff
changeset
|
1690 1236, |
895150cd3e6f
commit https://github.com/vim/vim/commit/885f24fbcae2a39ae496ffb3a1e139379be8fae1
Christian Brabandt <cb@256bit.org>
parents:
7877
diff
changeset
|
1691 /**/ |
7877
7fbd2de703a9
commit https://github.com/vim/vim/commit/11e0afa00a8e6c0aa1d50f760b5d5cb62dade038
Christian Brabandt <cb@256bit.org>
parents:
7874
diff
changeset
|
1692 1235, |
7fbd2de703a9
commit https://github.com/vim/vim/commit/11e0afa00a8e6c0aa1d50f760b5d5cb62dade038
Christian Brabandt <cb@256bit.org>
parents:
7874
diff
changeset
|
1693 /**/ |
7874
2313f1a94153
commit https://github.com/vim/vim/commit/488a130ea261f02317adc2c2ca93cc6e68cf2c23
Christian Brabandt <cb@256bit.org>
parents:
7872
diff
changeset
|
1694 1234, |
2313f1a94153
commit https://github.com/vim/vim/commit/488a130ea261f02317adc2c2ca93cc6e68cf2c23
Christian Brabandt <cb@256bit.org>
parents:
7872
diff
changeset
|
1695 /**/ |
7872
4b9d4600166f
commit https://github.com/vim/vim/commit/14ad611ca435d97e8fd0d9ab03ddc982843298ac
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1696 1233, |
4b9d4600166f
commit https://github.com/vim/vim/commit/14ad611ca435d97e8fd0d9ab03ddc982843298ac
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1697 /**/ |
7870
fb5ba6fbc843
commit https://github.com/vim/vim/commit/1357caf31f3e447d99baf8dd6a3243e2ab38567f
Christian Brabandt <cb@256bit.org>
parents:
7868
diff
changeset
|
1698 1232, |
fb5ba6fbc843
commit https://github.com/vim/vim/commit/1357caf31f3e447d99baf8dd6a3243e2ab38567f
Christian Brabandt <cb@256bit.org>
parents:
7868
diff
changeset
|
1699 /**/ |
7868
17e6ff1a74f1
commit https://github.com/vim/vim/commit/19d2f1589850d7db1ce77efec052929246f156e2
Christian Brabandt <cb@256bit.org>
parents:
7866
diff
changeset
|
1700 1231, |
17e6ff1a74f1
commit https://github.com/vim/vim/commit/19d2f1589850d7db1ce77efec052929246f156e2
Christian Brabandt <cb@256bit.org>
parents:
7866
diff
changeset
|
1701 /**/ |
7866
30a9f5fc3508
commit https://github.com/vim/vim/commit/ca568aeec60dd6cc13b4dcf5cec0e0a07113547f
Christian Brabandt <cb@256bit.org>
parents:
7864
diff
changeset
|
1702 1230, |
30a9f5fc3508
commit https://github.com/vim/vim/commit/ca568aeec60dd6cc13b4dcf5cec0e0a07113547f
Christian Brabandt <cb@256bit.org>
parents:
7864
diff
changeset
|
1703 /**/ |
7864
6b0891de44a9
commit https://github.com/vim/vim/commit/fb1f62691eae7c79a28b3b17a60e72ce198c71a2
Christian Brabandt <cb@256bit.org>
parents:
7862
diff
changeset
|
1704 1229, |
6b0891de44a9
commit https://github.com/vim/vim/commit/fb1f62691eae7c79a28b3b17a60e72ce198c71a2
Christian Brabandt <cb@256bit.org>
parents:
7862
diff
changeset
|
1705 /**/ |
7862
d4fec9208e7e
commit https://github.com/vim/vim/commit/155500077c80cdb5d9c63996000c011b66a676bf
Christian Brabandt <cb@256bit.org>
parents:
7860
diff
changeset
|
1706 1228, |
d4fec9208e7e
commit https://github.com/vim/vim/commit/155500077c80cdb5d9c63996000c011b66a676bf
Christian Brabandt <cb@256bit.org>
parents:
7860
diff
changeset
|
1707 /**/ |
7860
150576e6b984
commit https://github.com/vim/vim/commit/448a22549b4528fd81d520497f30672567199c96
Christian Brabandt <cb@256bit.org>
parents:
7858
diff
changeset
|
1708 1227, |
150576e6b984
commit https://github.com/vim/vim/commit/448a22549b4528fd81d520497f30672567199c96
Christian Brabandt <cb@256bit.org>
parents:
7858
diff
changeset
|
1709 /**/ |
7858
e90a16795c74
commit https://github.com/vim/vim/commit/3803bad99de92f4c5ebd6f40b757bc7ade47619e
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
1710 1226, |
e90a16795c74
commit https://github.com/vim/vim/commit/3803bad99de92f4c5ebd6f40b757bc7ade47619e
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
1711 /**/ |
7856
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7854
diff
changeset
|
1712 1225, |
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7854
diff
changeset
|
1713 /**/ |
7854
b512d9cce151
commit https://github.com/vim/vim/commit/bbb3339dbfa2067fab616698739097df06aa5e6c
Christian Brabandt <cb@256bit.org>
parents:
7852
diff
changeset
|
1714 1224, |
b512d9cce151
commit https://github.com/vim/vim/commit/bbb3339dbfa2067fab616698739097df06aa5e6c
Christian Brabandt <cb@256bit.org>
parents:
7852
diff
changeset
|
1715 /**/ |
7852
8818755d8326
commit https://github.com/vim/vim/commit/a542c680a8b42cb766e64d4ee7374ef4dacb7832
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
1716 1223, |
8818755d8326
commit https://github.com/vim/vim/commit/a542c680a8b42cb766e64d4ee7374ef4dacb7832
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
1717 /**/ |
7850
10f17a228661
commit https://github.com/vim/vim/commit/e2c3810c2ae290bbc2cba18eb47cc2d44e4b9797
Christian Brabandt <cb@256bit.org>
parents:
7848
diff
changeset
|
1718 1222, |
10f17a228661
commit https://github.com/vim/vim/commit/e2c3810c2ae290bbc2cba18eb47cc2d44e4b9797
Christian Brabandt <cb@256bit.org>
parents:
7848
diff
changeset
|
1719 /**/ |
7848
798673834bab
commit https://github.com/vim/vim/commit/3c124e3ac81521ae1e7e4a9cb9597ab754b92429
Christian Brabandt <cb@256bit.org>
parents:
7846
diff
changeset
|
1720 1221, |
798673834bab
commit https://github.com/vim/vim/commit/3c124e3ac81521ae1e7e4a9cb9597ab754b92429
Christian Brabandt <cb@256bit.org>
parents:
7846
diff
changeset
|
1721 /**/ |
7846
2f7ad0b85929
commit https://github.com/vim/vim/commit/fa399af7ece091203bd70ebcf955bf07a820beff
Christian Brabandt <cb@256bit.org>
parents:
7844
diff
changeset
|
1722 1220, |
2f7ad0b85929
commit https://github.com/vim/vim/commit/fa399af7ece091203bd70ebcf955bf07a820beff
Christian Brabandt <cb@256bit.org>
parents:
7844
diff
changeset
|
1723 /**/ |
7844
6669966db9e9
commit https://github.com/vim/vim/commit/937204a9175d0fe2f13c8bc4ebeb043003d7e7d7
Christian Brabandt <cb@256bit.org>
parents:
7842
diff
changeset
|
1724 1219, |
6669966db9e9
commit https://github.com/vim/vim/commit/937204a9175d0fe2f13c8bc4ebeb043003d7e7d7
Christian Brabandt <cb@256bit.org>
parents:
7842
diff
changeset
|
1725 /**/ |
7842
cf744110897d
commit https://github.com/vim/vim/commit/779a7759ad03e6a3fb616828793512644390655a
Christian Brabandt <cb@256bit.org>
parents:
7840
diff
changeset
|
1726 1218, |
cf744110897d
commit https://github.com/vim/vim/commit/779a7759ad03e6a3fb616828793512644390655a
Christian Brabandt <cb@256bit.org>
parents:
7840
diff
changeset
|
1727 /**/ |
7840
28f569c7dab9
commit https://github.com/vim/vim/commit/20fb9f346497daca4d19402fdfa5de7958642477
Christian Brabandt <cb@256bit.org>
parents:
7838
diff
changeset
|
1728 1217, |
28f569c7dab9
commit https://github.com/vim/vim/commit/20fb9f346497daca4d19402fdfa5de7958642477
Christian Brabandt <cb@256bit.org>
parents:
7838
diff
changeset
|
1729 /**/ |
7838
cfed0e9f0ca2
commit https://github.com/vim/vim/commit/ba4ef2757cfc126f342b710f1ad9ea39e6b56cec
Christian Brabandt <cb@256bit.org>
parents:
7837
diff
changeset
|
1730 1216, |
cfed0e9f0ca2
commit https://github.com/vim/vim/commit/ba4ef2757cfc126f342b710f1ad9ea39e6b56cec
Christian Brabandt <cb@256bit.org>
parents:
7837
diff
changeset
|
1731 /**/ |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
1732 1215, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
1733 /**/ |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
1734 1214, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
1735 /**/ |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7831
diff
changeset
|
1736 1213, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7831
diff
changeset
|
1737 /**/ |
7831
d621ab23fd19
commit https://github.com/vim/vim/commit/c1ab67674aa0dfdcf9f0e9701ac248e3eb41b19c
Christian Brabandt <cb@256bit.org>
parents:
7829
diff
changeset
|
1738 1212, |
d621ab23fd19
commit https://github.com/vim/vim/commit/c1ab67674aa0dfdcf9f0e9701ac248e3eb41b19c
Christian Brabandt <cb@256bit.org>
parents:
7829
diff
changeset
|
1739 /**/ |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7827
diff
changeset
|
1740 1211, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7827
diff
changeset
|
1741 /**/ |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7825
diff
changeset
|
1742 1210, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7825
diff
changeset
|
1743 /**/ |
7825
7898da204b98
commit https://github.com/vim/vim/commit/02fdaeaa697fb5af4ba7fee6e209b3c2c825bb4f
Christian Brabandt <cb@256bit.org>
parents:
7823
diff
changeset
|
1744 1209, |
7898da204b98
commit https://github.com/vim/vim/commit/02fdaeaa697fb5af4ba7fee6e209b3c2c825bb4f
Christian Brabandt <cb@256bit.org>
parents:
7823
diff
changeset
|
1745 /**/ |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7821
diff
changeset
|
1746 1208, |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7821
diff
changeset
|
1747 /**/ |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7819
diff
changeset
|
1748 1207, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7819
diff
changeset
|
1749 /**/ |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7817
diff
changeset
|
1750 1206, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7817
diff
changeset
|
1751 /**/ |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
1752 1205, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
1753 /**/ |
7815
3a96dfb42c55
commit https://github.com/vim/vim/commit/305598b71261265994e2846b4ff4a4d8efade280
Christian Brabandt <cb@256bit.org>
parents:
7813
diff
changeset
|
1754 1204, |
3a96dfb42c55
commit https://github.com/vim/vim/commit/305598b71261265994e2846b4ff4a4d8efade280
Christian Brabandt <cb@256bit.org>
parents:
7813
diff
changeset
|
1755 /**/ |
7813
744c66477ba9
commit https://github.com/vim/vim/commit/4349c57543a98dc417b74da5a08c326337aa0bd3
Christian Brabandt <cb@256bit.org>
parents:
7811
diff
changeset
|
1756 1203, |
744c66477ba9
commit https://github.com/vim/vim/commit/4349c57543a98dc417b74da5a08c326337aa0bd3
Christian Brabandt <cb@256bit.org>
parents:
7811
diff
changeset
|
1757 /**/ |
7811
7fda54504fee
commit https://github.com/vim/vim/commit/3e96c3d241ab657cf4df0913ea8de50a6cb90730
Christian Brabandt <cb@256bit.org>
parents:
7809
diff
changeset
|
1758 1202, |
7fda54504fee
commit https://github.com/vim/vim/commit/3e96c3d241ab657cf4df0913ea8de50a6cb90730
Christian Brabandt <cb@256bit.org>
parents:
7809
diff
changeset
|
1759 /**/ |
7809
4635a259ecc0
commit https://github.com/vim/vim/commit/569850724ef37061bfd4cb6423f04c8b8c690515
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1760 1201, |
4635a259ecc0
commit https://github.com/vim/vim/commit/569850724ef37061bfd4cb6423f04c8b8c690515
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1761 /**/ |
7807
1a5d34492798
commit https://github.com/vim/vim/commit/d99df423c559d85c17779b3685426c489554908c
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1762 1200, |
1a5d34492798
commit https://github.com/vim/vim/commit/d99df423c559d85c17779b3685426c489554908c
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1763 /**/ |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1764 1199, |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1765 /**/ |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
1766 1198, |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
1767 /**/ |
7801
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1768 1197, |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1769 /**/ |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7797
diff
changeset
|
1770 1196, |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7797
diff
changeset
|
1771 /**/ |
7797
0d46cea25641
commit https://github.com/vim/vim/commit/f12d983deab06b0408781d7a6c2f8970d765b723
Christian Brabandt <cb@256bit.org>
parents:
7795
diff
changeset
|
1772 1195, |
0d46cea25641
commit https://github.com/vim/vim/commit/f12d983deab06b0408781d7a6c2f8970d765b723
Christian Brabandt <cb@256bit.org>
parents:
7795
diff
changeset
|
1773 /**/ |
7795
4f23088b47ea
commit https://github.com/vim/vim/commit/83162468b3c8722fffea033d3de144cd4191472a
Christian Brabandt <cb@256bit.org>
parents:
7793
diff
changeset
|
1774 1194, |
4f23088b47ea
commit https://github.com/vim/vim/commit/83162468b3c8722fffea033d3de144cd4191472a
Christian Brabandt <cb@256bit.org>
parents:
7793
diff
changeset
|
1775 /**/ |
7793
2981a37cec61
commit https://github.com/vim/vim/commit/b8b6511fc1f8422a17778d710ed11538174a7f33
Christian Brabandt <cb@256bit.org>
parents:
7791
diff
changeset
|
1776 1193, |
2981a37cec61
commit https://github.com/vim/vim/commit/b8b6511fc1f8422a17778d710ed11538174a7f33
Christian Brabandt <cb@256bit.org>
parents:
7791
diff
changeset
|
1777 /**/ |
7791
6f81cf49da14
commit https://github.com/vim/vim/commit/fa06a517b5d5e37f40ab7c884bd334f089988fac
Christian Brabandt <cb@256bit.org>
parents:
7788
diff
changeset
|
1778 1192, |
6f81cf49da14
commit https://github.com/vim/vim/commit/fa06a517b5d5e37f40ab7c884bd334f089988fac
Christian Brabandt <cb@256bit.org>
parents:
7788
diff
changeset
|
1779 /**/ |
7788
192ae655ac91
commit https://github.com/vim/vim/commit/3b5f929b18492fec291d1ec95a91f54e5912c03b
Christian Brabandt <cb@256bit.org>
parents:
7786
diff
changeset
|
1780 1191, |
192ae655ac91
commit https://github.com/vim/vim/commit/3b5f929b18492fec291d1ec95a91f54e5912c03b
Christian Brabandt <cb@256bit.org>
parents:
7786
diff
changeset
|
1781 /**/ |
7786
0ee0c7729f28
commit https://github.com/vim/vim/commit/ba59ddbd3642d02614acbe52694e3e8a78c0e9d3
Christian Brabandt <cb@256bit.org>
parents:
7784
diff
changeset
|
1782 1190, |
0ee0c7729f28
commit https://github.com/vim/vim/commit/ba59ddbd3642d02614acbe52694e3e8a78c0e9d3
Christian Brabandt <cb@256bit.org>
parents:
7784
diff
changeset
|
1783 /**/ |
7784
29d4ee3f009a
commit https://github.com/vim/vim/commit/923e43b837ca4c8edb7998743f142823eaeaf588
Christian Brabandt <cb@256bit.org>
parents:
7782
diff
changeset
|
1784 1189, |
29d4ee3f009a
commit https://github.com/vim/vim/commit/923e43b837ca4c8edb7998743f142823eaeaf588
Christian Brabandt <cb@256bit.org>
parents:
7782
diff
changeset
|
1785 /**/ |
7782
3a99194bd187
commit https://github.com/vim/vim/commit/009d84a34f3678ec93921bee3bc05be2fd606264
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
1786 1188, |
3a99194bd187
commit https://github.com/vim/vim/commit/009d84a34f3678ec93921bee3bc05be2fd606264
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
1787 /**/ |
7780
e09af43f98f7
commit https://github.com/vim/vim/commit/85be35f33ea848b50e84d57321a45ebfedfad669
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
1788 1187, |
e09af43f98f7
commit https://github.com/vim/vim/commit/85be35f33ea848b50e84d57321a45ebfedfad669
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
1789 /**/ |
7778
4e09a38129a3
commit https://github.com/vim/vim/commit/4a1314cb9c1847dc32ceeb3eebeae123ef10b16e
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1790 1186, |
4e09a38129a3
commit https://github.com/vim/vim/commit/4a1314cb9c1847dc32ceeb3eebeae123ef10b16e
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1791 /**/ |
7776
d30f4f9b1024
commit https://github.com/vim/vim/commit/0d6f835683bede8bfa171c2518dce10832eb8226
Christian Brabandt <cb@256bit.org>
parents:
7774
diff
changeset
|
1792 1185, |
d30f4f9b1024
commit https://github.com/vim/vim/commit/0d6f835683bede8bfa171c2518dce10832eb8226
Christian Brabandt <cb@256bit.org>
parents:
7774
diff
changeset
|
1793 /**/ |
7774
656db98806b3
commit https://github.com/vim/vim/commit/54e09e71984af6db92f3ad37ce390630a23407af
Christian Brabandt <cb@256bit.org>
parents:
7772
diff
changeset
|
1794 1184, |
656db98806b3
commit https://github.com/vim/vim/commit/54e09e71984af6db92f3ad37ce390630a23407af
Christian Brabandt <cb@256bit.org>
parents:
7772
diff
changeset
|
1795 /**/ |
7772
0677c5b880d1
commit https://github.com/vim/vim/commit/fb4194e4e0d6bd2df43c3e75a969866fcb103f6b
Christian Brabandt <cb@256bit.org>
parents:
7770
diff
changeset
|
1796 1183, |
0677c5b880d1
commit https://github.com/vim/vim/commit/fb4194e4e0d6bd2df43c3e75a969866fcb103f6b
Christian Brabandt <cb@256bit.org>
parents:
7770
diff
changeset
|
1797 /**/ |
7770
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7768
diff
changeset
|
1798 1182, |
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7768
diff
changeset
|
1799 /**/ |
7768
3d8e4e0d7127
commit https://github.com/vim/vim/commit/6650a694547eb744afa060ec62dd8270e99db9f2
Christian Brabandt <cb@256bit.org>
parents:
7765
diff
changeset
|
1800 1181, |
3d8e4e0d7127
commit https://github.com/vim/vim/commit/6650a694547eb744afa060ec62dd8270e99db9f2
Christian Brabandt <cb@256bit.org>
parents:
7765
diff
changeset
|
1801 /**/ |
7765
9c0d554a497e
commit https://github.com/vim/vim/commit/7465c6375fd60eab603681bcad8a8744ddc31614
Christian Brabandt <cb@256bit.org>
parents:
7763
diff
changeset
|
1802 1180, |
9c0d554a497e
commit https://github.com/vim/vim/commit/7465c6375fd60eab603681bcad8a8744ddc31614
Christian Brabandt <cb@256bit.org>
parents:
7763
diff
changeset
|
1803 /**/ |
7763
26bb1a6abe25
commit https://github.com/vim/vim/commit/f4f79b84a5595c511f6fdbe4e3e1d188d97879a0
Christian Brabandt <cb@256bit.org>
parents:
7761
diff
changeset
|
1804 1179, |
26bb1a6abe25
commit https://github.com/vim/vim/commit/f4f79b84a5595c511f6fdbe4e3e1d188d97879a0
Christian Brabandt <cb@256bit.org>
parents:
7761
diff
changeset
|
1805 /**/ |
7761
db5864658024
commit https://github.com/vim/vim/commit/767d8c1a1ae762ecf47297c168b8c23caf05d30a
Christian Brabandt <cb@256bit.org>
parents:
7759
diff
changeset
|
1806 1178, |
db5864658024
commit https://github.com/vim/vim/commit/767d8c1a1ae762ecf47297c168b8c23caf05d30a
Christian Brabandt <cb@256bit.org>
parents:
7759
diff
changeset
|
1807 /**/ |
7759
39be49fd70d9
commit https://github.com/vim/vim/commit/5aec481097278d7d4e6559d9db2b9c3b8aa0dd5d
Christian Brabandt <cb@256bit.org>
parents:
7757
diff
changeset
|
1808 1177, |
39be49fd70d9
commit https://github.com/vim/vim/commit/5aec481097278d7d4e6559d9db2b9c3b8aa0dd5d
Christian Brabandt <cb@256bit.org>
parents:
7757
diff
changeset
|
1809 /**/ |
7757
34bfc3456830
commit https://github.com/vim/vim/commit/1d63539cc72c5be7ad875d2d48a34c4f74c096ab
Christian Brabandt <cb@256bit.org>
parents:
7755
diff
changeset
|
1810 1176, |
34bfc3456830
commit https://github.com/vim/vim/commit/1d63539cc72c5be7ad875d2d48a34c4f74c096ab
Christian Brabandt <cb@256bit.org>
parents:
7755
diff
changeset
|
1811 /**/ |
7755
b21c2a9dcd7d
commit https://github.com/vim/vim/commit/f75612fd9912205870bf024e4fb20af62b096c1d
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
1812 1175, |
b21c2a9dcd7d
commit https://github.com/vim/vim/commit/f75612fd9912205870bf024e4fb20af62b096c1d
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
1813 /**/ |
7753
15e67f90b9b2
commit https://github.com/vim/vim/commit/3e53c700a2bcbe7fafb51cd01f3e6428fd803099
Christian Brabandt <cb@256bit.org>
parents:
7751
diff
changeset
|
1814 1174, |
15e67f90b9b2
commit https://github.com/vim/vim/commit/3e53c700a2bcbe7fafb51cd01f3e6428fd803099
Christian Brabandt <cb@256bit.org>
parents:
7751
diff
changeset
|
1815 /**/ |
7751
d6e62c739839
commit https://github.com/vim/vim/commit/65591001e405cbaaf9772c9375d0bb6049cf9a3a
Christian Brabandt <cb@256bit.org>
parents:
7749
diff
changeset
|
1816 1173, |
d6e62c739839
commit https://github.com/vim/vim/commit/65591001e405cbaaf9772c9375d0bb6049cf9a3a
Christian Brabandt <cb@256bit.org>
parents:
7749
diff
changeset
|
1817 /**/ |
7749
3a1b60f5e89b
commit https://github.com/vim/vim/commit/16435480f0f41372585b3d305a29b5fda8271fbc
Christian Brabandt <cb@256bit.org>
parents:
7747
diff
changeset
|
1818 1172, |
3a1b60f5e89b
commit https://github.com/vim/vim/commit/16435480f0f41372585b3d305a29b5fda8271fbc
Christian Brabandt <cb@256bit.org>
parents:
7747
diff
changeset
|
1819 /**/ |
7747
e086f4ca4617
commit https://github.com/vim/vim/commit/2e2301437cb5cd4782fa031ea36dea086b9bd804
Christian Brabandt <cb@256bit.org>
parents:
7745
diff
changeset
|
1820 1171, |
e086f4ca4617
commit https://github.com/vim/vim/commit/2e2301437cb5cd4782fa031ea36dea086b9bd804
Christian Brabandt <cb@256bit.org>
parents:
7745
diff
changeset
|
1821 /**/ |
7745
555da309a7de
commit https://github.com/vim/vim/commit/0e7f88e73ee6a47a9c2933b7fdbfc4d83476f67f
Christian Brabandt <cb@256bit.org>
parents:
7743
diff
changeset
|
1822 1170, |
555da309a7de
commit https://github.com/vim/vim/commit/0e7f88e73ee6a47a9c2933b7fdbfc4d83476f67f
Christian Brabandt <cb@256bit.org>
parents:
7743
diff
changeset
|
1823 /**/ |
7743
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7740
diff
changeset
|
1824 1169, |
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7740
diff
changeset
|
1825 /**/ |
7740
00fc76e6bd99
commit https://github.com/vim/vim/commit/f48aa160fdd7b8caa7678e1a2139244dd2bdc547
Christian Brabandt <cb@256bit.org>
parents:
7738
diff
changeset
|
1826 1168, |
00fc76e6bd99
commit https://github.com/vim/vim/commit/f48aa160fdd7b8caa7678e1a2139244dd2bdc547
Christian Brabandt <cb@256bit.org>
parents:
7738
diff
changeset
|
1827 /**/ |
7738
598a96d35a0e
commit https://github.com/vim/vim/commit/04369229657f182d35b471eb8b38f273a4d9ef65
Christian Brabandt <cb@256bit.org>
parents:
7736
diff
changeset
|
1828 1167, |
598a96d35a0e
commit https://github.com/vim/vim/commit/04369229657f182d35b471eb8b38f273a4d9ef65
Christian Brabandt <cb@256bit.org>
parents:
7736
diff
changeset
|
1829 /**/ |
7736
f2ddad8cbce7
commit https://github.com/vim/vim/commit/fcaaae6b3fdbf3421a1ff95a25ae16d82381c39a
Christian Brabandt <cb@256bit.org>
parents:
7734
diff
changeset
|
1830 1166, |
f2ddad8cbce7
commit https://github.com/vim/vim/commit/fcaaae6b3fdbf3421a1ff95a25ae16d82381c39a
Christian Brabandt <cb@256bit.org>
parents:
7734
diff
changeset
|
1831 /**/ |
7734
616769d423fc
commit https://github.com/vim/vim/commit/938ee834d345062cd94f8fdfd54fad0019432a83
Christian Brabandt <cb@256bit.org>
parents:
7732
diff
changeset
|
1832 1165, |
616769d423fc
commit https://github.com/vim/vim/commit/938ee834d345062cd94f8fdfd54fad0019432a83
Christian Brabandt <cb@256bit.org>
parents:
7732
diff
changeset
|
1833 /**/ |
7732
4a4f1dd1abe8
commit https://github.com/vim/vim/commit/6039c7f05376f0e470cf62bf2757e653aea357f3
Christian Brabandt <cb@256bit.org>
parents:
7730
diff
changeset
|
1834 1164, |
4a4f1dd1abe8
commit https://github.com/vim/vim/commit/6039c7f05376f0e470cf62bf2757e653aea357f3
Christian Brabandt <cb@256bit.org>
parents:
7730
diff
changeset
|
1835 /**/ |
7730
80ce794827c4
commit https://github.com/vim/vim/commit/17a13437c9414a8693369a97f3be2fc8ad48c12e
Christian Brabandt <cb@256bit.org>
parents:
7728
diff
changeset
|
1836 1163, |
80ce794827c4
commit https://github.com/vim/vim/commit/17a13437c9414a8693369a97f3be2fc8ad48c12e
Christian Brabandt <cb@256bit.org>
parents:
7728
diff
changeset
|
1837 /**/ |
7728
e493c5dd85b3
commit https://github.com/vim/vim/commit/9e3be26872307f9c53a9f37647a659091bdffb1f
Christian Brabandt <cb@256bit.org>
parents:
7726
diff
changeset
|
1838 1162, |
e493c5dd85b3
commit https://github.com/vim/vim/commit/9e3be26872307f9c53a9f37647a659091bdffb1f
Christian Brabandt <cb@256bit.org>
parents:
7726
diff
changeset
|
1839 /**/ |
7726
f6311c321411
commit https://github.com/vim/vim/commit/2faa29f896252073b53f387406109e331fbbe5f8
Christian Brabandt <cb@256bit.org>
parents:
7724
diff
changeset
|
1840 1161, |
f6311c321411
commit https://github.com/vim/vim/commit/2faa29f896252073b53f387406109e331fbbe5f8
Christian Brabandt <cb@256bit.org>
parents:
7724
diff
changeset
|
1841 /**/ |
7724
87f3f9536ecf
commit https://github.com/vim/vim/commit/bd4593ffb170230504500ddedabad3fad1f31291
Christian Brabandt <cb@256bit.org>
parents:
7722
diff
changeset
|
1842 1160, |
87f3f9536ecf
commit https://github.com/vim/vim/commit/bd4593ffb170230504500ddedabad3fad1f31291
Christian Brabandt <cb@256bit.org>
parents:
7722
diff
changeset
|
1843 /**/ |
7722
c4f8b1d48f20
commit https://github.com/vim/vim/commit/e240c2da796531e807ea9df78bdbcc7b1012870c
Christian Brabandt <cb@256bit.org>
parents:
7720
diff
changeset
|
1844 1159, |
c4f8b1d48f20
commit https://github.com/vim/vim/commit/e240c2da796531e807ea9df78bdbcc7b1012870c
Christian Brabandt <cb@256bit.org>
parents:
7720
diff
changeset
|
1845 /**/ |
7720
7c52f11e6df3
commit https://github.com/vim/vim/commit/48e697e4b6b6b490c58ec9393da9b2d2ea47c6d8
Christian Brabandt <cb@256bit.org>
parents:
7718
diff
changeset
|
1846 1158, |
7c52f11e6df3
commit https://github.com/vim/vim/commit/48e697e4b6b6b490c58ec9393da9b2d2ea47c6d8
Christian Brabandt <cb@256bit.org>
parents:
7718
diff
changeset
|
1847 /**/ |
7718
6ebd8bdf41bc
commit https://github.com/vim/vim/commit/f95534c3d411084d1b6112fe64f6108bf7acbb92
Christian Brabandt <cb@256bit.org>
parents:
7716
diff
changeset
|
1848 1157, |
6ebd8bdf41bc
commit https://github.com/vim/vim/commit/f95534c3d411084d1b6112fe64f6108bf7acbb92
Christian Brabandt <cb@256bit.org>
parents:
7716
diff
changeset
|
1849 /**/ |
7716
9d79943791ea
commit https://github.com/vim/vim/commit/2dedb45260604911035cff2364aca90a69156ed9
Christian Brabandt <cb@256bit.org>
parents:
7714
diff
changeset
|
1850 1156, |
9d79943791ea
commit https://github.com/vim/vim/commit/2dedb45260604911035cff2364aca90a69156ed9
Christian Brabandt <cb@256bit.org>
parents:
7714
diff
changeset
|
1851 /**/ |
7714
c29a7e38b8ac
commit https://github.com/vim/vim/commit/64922b9014765a41bb09e8612433a2a61918af6e
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
1852 1155, |
c29a7e38b8ac
commit https://github.com/vim/vim/commit/64922b9014765a41bb09e8612433a2a61918af6e
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
1853 /**/ |
7712
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
1854 1154, |
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
1855 /**/ |
7710
bf58e9f8d52a
commit https://github.com/vim/vim/commit/6920c72d4d62c8dc5596e9f392e38204f561d7af
Christian Brabandt <cb@256bit.org>
parents:
7708
diff
changeset
|
1856 1153, |
bf58e9f8d52a
commit https://github.com/vim/vim/commit/6920c72d4d62c8dc5596e9f392e38204f561d7af
Christian Brabandt <cb@256bit.org>
parents:
7708
diff
changeset
|
1857 /**/ |
7708
1a595b2a4d5e
commit https://github.com/vim/vim/commit/09e786e7a7fc952f43e3f88ba49ab1ac6ef3b3a3
Christian Brabandt <cb@256bit.org>
parents:
7705
diff
changeset
|
1858 1152, |
1a595b2a4d5e
commit https://github.com/vim/vim/commit/09e786e7a7fc952f43e3f88ba49ab1ac6ef3b3a3
Christian Brabandt <cb@256bit.org>
parents:
7705
diff
changeset
|
1859 /**/ |
7705
1b9a1c10806b
commit https://github.com/vim/vim/commit/5f8a14b9dea094b8bbab94cfc1e8da8e633fbc01
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
1860 1151, |
1b9a1c10806b
commit https://github.com/vim/vim/commit/5f8a14b9dea094b8bbab94cfc1e8da8e633fbc01
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
1861 /**/ |
7703
39251e981d1f
commit https://github.com/vim/vim/commit/25281634cda03ce302aaf9f906a9520b5f81f91e
Christian Brabandt <cb@256bit.org>
parents:
7701
diff
changeset
|
1862 1150, |
39251e981d1f
commit https://github.com/vim/vim/commit/25281634cda03ce302aaf9f906a9520b5f81f91e
Christian Brabandt <cb@256bit.org>
parents:
7701
diff
changeset
|
1863 /**/ |
7701
075810b0cb6c
commit https://github.com/vim/vim/commit/d6357e8f93c50f984ffd69c3a0d247d8603f86c3
Christian Brabandt <cb@256bit.org>
parents:
7699
diff
changeset
|
1864 1149, |
075810b0cb6c
commit https://github.com/vim/vim/commit/d6357e8f93c50f984ffd69c3a0d247d8603f86c3
Christian Brabandt <cb@256bit.org>
parents:
7699
diff
changeset
|
1865 /**/ |
7699
854302b82ff9
commit https://github.com/vim/vim/commit/e5f2be61595fbbba77261f3bf1e032fe03a1966d
Christian Brabandt <cb@256bit.org>
parents:
7697
diff
changeset
|
1866 1148, |
854302b82ff9
commit https://github.com/vim/vim/commit/e5f2be61595fbbba77261f3bf1e032fe03a1966d
Christian Brabandt <cb@256bit.org>
parents:
7697
diff
changeset
|
1867 /**/ |
7697
f04e2b6feea2
commit https://github.com/vim/vim/commit/88e8f9f14434a7cd538d0c159dc432bea869a5bd
Christian Brabandt <cb@256bit.org>
parents:
7695
diff
changeset
|
1868 1147, |
f04e2b6feea2
commit https://github.com/vim/vim/commit/88e8f9f14434a7cd538d0c159dc432bea869a5bd
Christian Brabandt <cb@256bit.org>
parents:
7695
diff
changeset
|
1869 /**/ |
7695
a865f9773cb2
commit https://github.com/vim/vim/commit/a7c3795a2e65233ba2d187d680acc83bf6bf4ef5
Christian Brabandt <cb@256bit.org>
parents:
7693
diff
changeset
|
1870 1146, |
a865f9773cb2
commit https://github.com/vim/vim/commit/a7c3795a2e65233ba2d187d680acc83bf6bf4ef5
Christian Brabandt <cb@256bit.org>
parents:
7693
diff
changeset
|
1871 /**/ |
7693
6157052a0e58
commit https://github.com/vim/vim/commit/23c4f7183cca0ff8d2c5c2ef9a5c62f6307e07ea
Christian Brabandt <cb@256bit.org>
parents:
7691
diff
changeset
|
1872 1145, |
6157052a0e58
commit https://github.com/vim/vim/commit/23c4f7183cca0ff8d2c5c2ef9a5c62f6307e07ea
Christian Brabandt <cb@256bit.org>
parents:
7691
diff
changeset
|
1873 /**/ |
7691
fd4175b669e2
commit https://github.com/vim/vim/commit/17576a1e33d71b5602cee86bf220a806c8412605
Christian Brabandt <cb@256bit.org>
parents:
7689
diff
changeset
|
1874 1144, |
fd4175b669e2
commit https://github.com/vim/vim/commit/17576a1e33d71b5602cee86bf220a806c8412605
Christian Brabandt <cb@256bit.org>
parents:
7689
diff
changeset
|
1875 /**/ |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
1876 1143, |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
1877 /**/ |
7687
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
1878 1142, |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
1879 /**/ |
7685
616460b73ee3
commit https://github.com/vim/vim/commit/6773a348da0dcf45df3c6c6649880655ec0d2042
Christian Brabandt <cb@256bit.org>
parents:
7683
diff
changeset
|
1880 1141, |
616460b73ee3
commit https://github.com/vim/vim/commit/6773a348da0dcf45df3c6c6649880655ec0d2042
Christian Brabandt <cb@256bit.org>
parents:
7683
diff
changeset
|
1881 /**/ |
7683
ec434c82f72c
commit https://github.com/vim/vim/commit/e266d6d664d6d743c79797af400b2c01ec746216
Christian Brabandt <cb@256bit.org>
parents:
7681
diff
changeset
|
1882 1140, |
ec434c82f72c
commit https://github.com/vim/vim/commit/e266d6d664d6d743c79797af400b2c01ec746216
Christian Brabandt <cb@256bit.org>
parents:
7681
diff
changeset
|
1883 /**/ |
7681
07cfa8fea697
commit https://github.com/vim/vim/commit/fce7b3d24fd18b1486e474e933a95f9090df9973
Christian Brabandt <cb@256bit.org>
parents:
7679
diff
changeset
|
1884 1139, |
07cfa8fea697
commit https://github.com/vim/vim/commit/fce7b3d24fd18b1486e474e933a95f9090df9973
Christian Brabandt <cb@256bit.org>
parents:
7679
diff
changeset
|
1885 /**/ |
7679
c80284cfe1b8
commit https://github.com/vim/vim/commit/3a466a87180d677b898687ef72d09f14a397794e
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
1886 1138, |
c80284cfe1b8
commit https://github.com/vim/vim/commit/3a466a87180d677b898687ef72d09f14a397794e
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
1887 /**/ |
7677
85a7a945fb87
commit https://github.com/vim/vim/commit/62ef797496c6243d111c596a592a8ef8c1d1e710
Christian Brabandt <cb@256bit.org>
parents:
7675
diff
changeset
|
1888 1137, |
85a7a945fb87
commit https://github.com/vim/vim/commit/62ef797496c6243d111c596a592a8ef8c1d1e710
Christian Brabandt <cb@256bit.org>
parents:
7675
diff
changeset
|
1889 /**/ |
7675
eb9cc96138a3
commit https://github.com/vim/vim/commit/da5dcd936656f524dd0ae7cb2685245f07f5720f
Christian Brabandt <cb@256bit.org>
parents:
7672
diff
changeset
|
1890 1136, |
eb9cc96138a3
commit https://github.com/vim/vim/commit/da5dcd936656f524dd0ae7cb2685245f07f5720f
Christian Brabandt <cb@256bit.org>
parents:
7672
diff
changeset
|
1891 /**/ |
7672
da2eb24b83d2
commit https://github.com/vim/vim/commit/301417041bdb15264a9c8ff20e4fea4dcc12c478
Christian Brabandt <cb@256bit.org>
parents:
7670
diff
changeset
|
1892 1135, |
da2eb24b83d2
commit https://github.com/vim/vim/commit/301417041bdb15264a9c8ff20e4fea4dcc12c478
Christian Brabandt <cb@256bit.org>
parents:
7670
diff
changeset
|
1893 /**/ |
7670
fd31843c7b58
commit https://github.com/vim/vim/commit/82e4184d489e2ce950c871354062fca40bf59598
Christian Brabandt <cb@256bit.org>
parents:
7668
diff
changeset
|
1894 1134, |
fd31843c7b58
commit https://github.com/vim/vim/commit/82e4184d489e2ce950c871354062fca40bf59598
Christian Brabandt <cb@256bit.org>
parents:
7668
diff
changeset
|
1895 /**/ |
7668
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
7666
diff
changeset
|
1896 1133, |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
7666
diff
changeset
|
1897 /**/ |
7666
8edd1afaf6b7
commit https://github.com/vim/vim/commit/99dbe291f55022bd5166c9c3c7967b8693cd9d1b
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
1898 1132, |
8edd1afaf6b7
commit https://github.com/vim/vim/commit/99dbe291f55022bd5166c9c3c7967b8693cd9d1b
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
1899 /**/ |
7664
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7662
diff
changeset
|
1900 1131, |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7662
diff
changeset
|
1901 /**/ |
7662
4d34891e98f4
commit https://github.com/vim/vim/commit/61ff4dd6a4d47bd32383fe28087be2b37dec53f4
Christian Brabandt <cb@256bit.org>
parents:
7660
diff
changeset
|
1902 1130, |
4d34891e98f4
commit https://github.com/vim/vim/commit/61ff4dd6a4d47bd32383fe28087be2b37dec53f4
Christian Brabandt <cb@256bit.org>
parents:
7660
diff
changeset
|
1903 /**/ |
7660
066ef357ea91
commit https://github.com/vim/vim/commit/77324fc9d3206a12f5ae39da1574be3ee1273591
Christian Brabandt <cb@256bit.org>
parents:
7657
diff
changeset
|
1904 1129, |
066ef357ea91
commit https://github.com/vim/vim/commit/77324fc9d3206a12f5ae39da1574be3ee1273591
Christian Brabandt <cb@256bit.org>
parents:
7657
diff
changeset
|
1905 /**/ |
7657
9c5e8254ea6b
commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents:
7655
diff
changeset
|
1906 1128, |
9c5e8254ea6b
commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents:
7655
diff
changeset
|
1907 /**/ |
7655
94f34dc2f254
commit https://github.com/vim/vim/commit/021b593e7ed6c7111cbf189744ad1e5d6c4a7d79
Christian Brabandt <cb@256bit.org>
parents:
7653
diff
changeset
|
1908 1127, |
94f34dc2f254
commit https://github.com/vim/vim/commit/021b593e7ed6c7111cbf189744ad1e5d6c4a7d79
Christian Brabandt <cb@256bit.org>
parents:
7653
diff
changeset
|
1909 /**/ |
7653
d4370fef0175
commit https://github.com/vim/vim/commit/c970330676eaae7ba7cd05cfa46df5a413853ef9
Christian Brabandt <cb@256bit.org>
parents:
7651
diff
changeset
|
1910 1126, |
d4370fef0175
commit https://github.com/vim/vim/commit/c970330676eaae7ba7cd05cfa46df5a413853ef9
Christian Brabandt <cb@256bit.org>
parents:
7651
diff
changeset
|
1911 /**/ |
7651
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7649
diff
changeset
|
1912 1125, |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7649
diff
changeset
|
1913 /**/ |
7649
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7647
diff
changeset
|
1914 1124, |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7647
diff
changeset
|
1915 /**/ |
7647
65b2d593c203
commit https://github.com/vim/vim/commit/a24f0a550fed3d9773800cf6be4efd072fff20ec
Christian Brabandt <cb@256bit.org>
parents:
7645
diff
changeset
|
1916 1123, |
65b2d593c203
commit https://github.com/vim/vim/commit/a24f0a550fed3d9773800cf6be4efd072fff20ec
Christian Brabandt <cb@256bit.org>
parents:
7645
diff
changeset
|
1917 /**/ |
7645
1529ae1c456a
commit https://github.com/vim/vim/commit/42c9cfa7f4d2f176234e385573ff2fb1f61915e5
Christian Brabandt <cb@256bit.org>
parents:
7643
diff
changeset
|
1918 1122, |
1529ae1c456a
commit https://github.com/vim/vim/commit/42c9cfa7f4d2f176234e385573ff2fb1f61915e5
Christian Brabandt <cb@256bit.org>
parents:
7643
diff
changeset
|
1919 /**/ |
7643
2b2e90fcd72b
commit https://github.com/vim/vim/commit/08b270a8a4544be9a7fecce311834fde2b457634
Christian Brabandt <cb@256bit.org>
parents:
7641
diff
changeset
|
1920 1121, |
2b2e90fcd72b
commit https://github.com/vim/vim/commit/08b270a8a4544be9a7fecce311834fde2b457634
Christian Brabandt <cb@256bit.org>
parents:
7641
diff
changeset
|
1921 /**/ |
7641
b44fc33ef92a
commit https://github.com/vim/vim/commit/336bd622c31e1805495c034e1a8cfadcc0bbabc7
Christian Brabandt <cb@256bit.org>
parents:
7639
diff
changeset
|
1922 1120, |
b44fc33ef92a
commit https://github.com/vim/vim/commit/336bd622c31e1805495c034e1a8cfadcc0bbabc7
Christian Brabandt <cb@256bit.org>
parents:
7639
diff
changeset
|
1923 /**/ |
7639
0ecb62a66a7a
commit https://github.com/vim/vim/commit/72defda84eb26be9e2ade56c7877b912f818026e
Christian Brabandt <cb@256bit.org>
parents:
7637
diff
changeset
|
1924 1119, |
0ecb62a66a7a
commit https://github.com/vim/vim/commit/72defda84eb26be9e2ade56c7877b912f818026e
Christian Brabandt <cb@256bit.org>
parents:
7637
diff
changeset
|
1925 /**/ |
7637
81f94c1e2e4d
commit https://github.com/vim/vim/commit/a99b90437af730dcafd9143c0942c87777a00d52
Christian Brabandt <cb@256bit.org>
parents:
7635
diff
changeset
|
1926 1118, |
81f94c1e2e4d
commit https://github.com/vim/vim/commit/a99b90437af730dcafd9143c0942c87777a00d52
Christian Brabandt <cb@256bit.org>
parents:
7635
diff
changeset
|
1927 /**/ |
7635
1506f86b120f
commit https://github.com/vim/vim/commit/d82103ed8534a1207742e9666ac7ef1e47dda12d
Christian Brabandt <cb@256bit.org>
parents:
7633
diff
changeset
|
1928 1117, |
1506f86b120f
commit https://github.com/vim/vim/commit/d82103ed8534a1207742e9666ac7ef1e47dda12d
Christian Brabandt <cb@256bit.org>
parents:
7633
diff
changeset
|
1929 /**/ |
7633
2a280b8e7040
commit https://github.com/vim/vim/commit/b0967d587fc420fa02832533d4915c85d1a78c17
Christian Brabandt <cb@256bit.org>
parents:
7631
diff
changeset
|
1930 1116, |
2a280b8e7040
commit https://github.com/vim/vim/commit/b0967d587fc420fa02832533d4915c85d1a78c17
Christian Brabandt <cb@256bit.org>
parents:
7631
diff
changeset
|
1931 /**/ |
7631
ad3e9ea845e7
commit https://github.com/vim/vim/commit/d0232917ced39ff4838665fbcf379d5116a91aa3
Christian Brabandt <cb@256bit.org>
parents:
7629
diff
changeset
|
1932 1115, |
ad3e9ea845e7
commit https://github.com/vim/vim/commit/d0232917ced39ff4838665fbcf379d5116a91aa3
Christian Brabandt <cb@256bit.org>
parents:
7629
diff
changeset
|
1933 /**/ |
7629
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7627
diff
changeset
|
1934 1114, |
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7627
diff
changeset
|
1935 /**/ |
7627
d9ec7d22494d
commit https://github.com/vim/vim/commit/4119cf80e1e534057680f9543e73edf7967c2440
Christian Brabandt <cb@256bit.org>
parents:
7625
diff
changeset
|
1936 1113, |
d9ec7d22494d
commit https://github.com/vim/vim/commit/4119cf80e1e534057680f9543e73edf7967c2440
Christian Brabandt <cb@256bit.org>
parents:
7625
diff
changeset
|
1937 /**/ |
7625
b4384c581806
commit https://github.com/vim/vim/commit/2db5c3b3ceeaded7fb5a64dc5cb22b0cb95b78a1
Christian Brabandt <cb@256bit.org>
parents:
7623
diff
changeset
|
1938 1112, |
b4384c581806
commit https://github.com/vim/vim/commit/2db5c3b3ceeaded7fb5a64dc5cb22b0cb95b78a1
Christian Brabandt <cb@256bit.org>
parents:
7623
diff
changeset
|
1939 /**/ |
7623
2720952e9acb
commit https://github.com/vim/vim/commit/f60b796fa9870bdfc4cdeb91653bac041916077d
Christian Brabandt <cb@256bit.org>
parents:
7621
diff
changeset
|
1940 1111, |
2720952e9acb
commit https://github.com/vim/vim/commit/f60b796fa9870bdfc4cdeb91653bac041916077d
Christian Brabandt <cb@256bit.org>
parents:
7621
diff
changeset
|
1941 /**/ |
7621
503534e56ce1
commit https://github.com/vim/vim/commit/8c600052fabe4859470d9d0ba2ddd74a52ea9745
Christian Brabandt <cb@256bit.org>
parents:
7619
diff
changeset
|
1942 1110, |
503534e56ce1
commit https://github.com/vim/vim/commit/8c600052fabe4859470d9d0ba2ddd74a52ea9745
Christian Brabandt <cb@256bit.org>
parents:
7619
diff
changeset
|
1943 /**/ |
7619
6fed43c541c8
commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents:
7617
diff
changeset
|
1944 1109, |
6fed43c541c8
commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents:
7617
diff
changeset
|
1945 /**/ |
7617
80bc36419c21
commit https://github.com/vim/vim/commit/58adb14739fa240ca6020cede9ab1f1cb07bd90a
Christian Brabandt <cb@256bit.org>
parents:
7615
diff
changeset
|
1946 1108, |
80bc36419c21
commit https://github.com/vim/vim/commit/58adb14739fa240ca6020cede9ab1f1cb07bd90a
Christian Brabandt <cb@256bit.org>
parents:
7615
diff
changeset
|
1947 /**/ |
7615
228ff048db20
commit https://github.com/vim/vim/commit/da440d21a6b94d7f525fa7be9b1417c78dd9aa4c
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
1948 1107, |
228ff048db20
commit https://github.com/vim/vim/commit/da440d21a6b94d7f525fa7be9b1417c78dd9aa4c
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
1949 /**/ |
7613
4456fa2d22e8
commit https://github.com/vim/vim/commit/286eacd3f6631e985089176fb1dff1bcf1a1d6b5
Christian Brabandt <cb@256bit.org>
parents:
7611
diff
changeset
|
1950 1106, |
4456fa2d22e8
commit https://github.com/vim/vim/commit/286eacd3f6631e985089176fb1dff1bcf1a1d6b5
Christian Brabandt <cb@256bit.org>
parents:
7611
diff
changeset
|
1951 /**/ |
7611
9c420b8db435
commit https://github.com/vim/vim/commit/9bbf63dbf8286fadc0cd6b3428010abb67b1b64d
Christian Brabandt <cb@256bit.org>
parents:
7609
diff
changeset
|
1952 1105, |
9c420b8db435
commit https://github.com/vim/vim/commit/9bbf63dbf8286fadc0cd6b3428010abb67b1b64d
Christian Brabandt <cb@256bit.org>
parents:
7609
diff
changeset
|
1953 /**/ |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7607
diff
changeset
|
1954 1104, |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7607
diff
changeset
|
1955 /**/ |
7607
33b43ec0a005
commit https://github.com/vim/vim/commit/d125001297ac76e0ed4759a9320ffb7872cf6242
Christian Brabandt <cb@256bit.org>
parents:
7605
diff
changeset
|
1956 1103, |
33b43ec0a005
commit https://github.com/vim/vim/commit/d125001297ac76e0ed4759a9320ffb7872cf6242
Christian Brabandt <cb@256bit.org>
parents:
7605
diff
changeset
|
1957 /**/ |
7605
8fc60af6dbf5
commit https://github.com/vim/vim/commit/f1f60f859cdbb2638b3662ccf7b1d179865fe7dc
Christian Brabandt <cb@256bit.org>
parents:
7603
diff
changeset
|
1958 1102, |
8fc60af6dbf5
commit https://github.com/vim/vim/commit/f1f60f859cdbb2638b3662ccf7b1d179865fe7dc
Christian Brabandt <cb@256bit.org>
parents:
7603
diff
changeset
|
1959 /**/ |
7603
d3892f6c917e
commit https://github.com/vim/vim/commit/e39b3d9fb4e4006684c33847d1ef6a0d742699dd
Christian Brabandt <cb@256bit.org>
parents:
7602
diff
changeset
|
1960 1101, |
d3892f6c917e
commit https://github.com/vim/vim/commit/e39b3d9fb4e4006684c33847d1ef6a0d742699dd
Christian Brabandt <cb@256bit.org>
parents:
7602
diff
changeset
|
1961 /**/ |
7602
a82b2d79e61b
commit https://github.com/vim/vim/commit/abfa9efb983c6fe9f5c4c342ff4d7017ce9a2c4b
Christian Brabandt <cb@256bit.org>
parents:
7600
diff
changeset
|
1962 1100, |
a82b2d79e61b
commit https://github.com/vim/vim/commit/abfa9efb983c6fe9f5c4c342ff4d7017ce9a2c4b
Christian Brabandt <cb@256bit.org>
parents:
7600
diff
changeset
|
1963 /**/ |
7600
fa59fafb6a94
commit https://github.com/vim/vim/commit/36d7cd8965bc4027d420c7d70c56ac95d83d3bfa
Christian Brabandt <cb@256bit.org>
parents:
7598
diff
changeset
|
1964 1099, |
fa59fafb6a94
commit https://github.com/vim/vim/commit/36d7cd8965bc4027d420c7d70c56ac95d83d3bfa
Christian Brabandt <cb@256bit.org>
parents:
7598
diff
changeset
|
1965 /**/ |
7598
1a528724f9d6
commit https://github.com/vim/vim/commit/b7604cc19fa1db6a8182546bf662aa13d4574d7a
Christian Brabandt <cb@256bit.org>
parents:
7595
diff
changeset
|
1966 1098, |
1a528724f9d6
commit https://github.com/vim/vim/commit/b7604cc19fa1db6a8182546bf662aa13d4574d7a
Christian Brabandt <cb@256bit.org>
parents:
7595
diff
changeset
|
1967 /**/ |
7595
99e93f72ff91
commit https://github.com/vim/vim/commit/065ee9aebf9abe08ae8c0dba7d05cbdcc423c8e0
Christian Brabandt <cb@256bit.org>
parents:
7593
diff
changeset
|
1968 1097, |
99e93f72ff91
commit https://github.com/vim/vim/commit/065ee9aebf9abe08ae8c0dba7d05cbdcc423c8e0
Christian Brabandt <cb@256bit.org>
parents:
7593
diff
changeset
|
1969 /**/ |
7593
87e607fb6853
commit https://github.com/vim/vim/commit/a260b87d9da17f605666630f18c1ed909c2b8bae
Christian Brabandt <cb@256bit.org>
parents:
7591
diff
changeset
|
1970 1096, |
87e607fb6853
commit https://github.com/vim/vim/commit/a260b87d9da17f605666630f18c1ed909c2b8bae
Christian Brabandt <cb@256bit.org>
parents:
7591
diff
changeset
|
1971 /**/ |
7591
4447dc38bc22
commit https://github.com/vim/vim/commit/3d6d5cc3a417c04d9772596ea83f8e6b41321781
Christian Brabandt <cb@256bit.org>
parents:
7588
diff
changeset
|
1972 1095, |
4447dc38bc22
commit https://github.com/vim/vim/commit/3d6d5cc3a417c04d9772596ea83f8e6b41321781
Christian Brabandt <cb@256bit.org>
parents:
7588
diff
changeset
|
1973 /**/ |
7588
0738fa9c4971
commit https://github.com/vim/vim/commit/ccb80989f2779c8441f7f15d160fb2141bd1676d
Christian Brabandt <cb@256bit.org>
parents:
7586
diff
changeset
|
1974 1094, |
0738fa9c4971
commit https://github.com/vim/vim/commit/ccb80989f2779c8441f7f15d160fb2141bd1676d
Christian Brabandt <cb@256bit.org>
parents:
7586
diff
changeset
|
1975 /**/ |
7586
9fc996244059
commit https://github.com/vim/vim/commit/24c4d539eed33e8073f8f9fe2bee497bbba935a4
Christian Brabandt <cb@256bit.org>
parents:
7584
diff
changeset
|
1976 1093, |
9fc996244059
commit https://github.com/vim/vim/commit/24c4d539eed33e8073f8f9fe2bee497bbba935a4
Christian Brabandt <cb@256bit.org>
parents:
7584
diff
changeset
|
1977 /**/ |
7584
9b7de205336d
commit https://github.com/vim/vim/commit/a803c7f94070f94b831fdfd1984f288c8b825b5d
Christian Brabandt <cb@256bit.org>
parents:
7582
diff
changeset
|
1978 1092, |
9b7de205336d
commit https://github.com/vim/vim/commit/a803c7f94070f94b831fdfd1984f288c8b825b5d
Christian Brabandt <cb@256bit.org>
parents:
7582
diff
changeset
|
1979 /**/ |
7582
e0acbccdf1fc
commit https://github.com/vim/vim/commit/b01f357791f88c7083e58cf2b36509dd83f21ea2
Christian Brabandt <cb@256bit.org>
parents:
7580
diff
changeset
|
1980 1091, |
e0acbccdf1fc
commit https://github.com/vim/vim/commit/b01f357791f88c7083e58cf2b36509dd83f21ea2
Christian Brabandt <cb@256bit.org>
parents:
7580
diff
changeset
|
1981 /**/ |
7580
e9c8eacb6760
commit https://github.com/vim/vim/commit/b5690794cf081773628fa0f1f2b948fd129d5b39
Christian Brabandt <cb@256bit.org>
parents:
7578
diff
changeset
|
1982 1090, |
e9c8eacb6760
commit https://github.com/vim/vim/commit/b5690794cf081773628fa0f1f2b948fd129d5b39
Christian Brabandt <cb@256bit.org>
parents:
7578
diff
changeset
|
1983 /**/ |
7578
fdae4c496775
commit https://github.com/vim/vim/commit/ef2b5036b3005f1ce15d146dce72379a9834c56d
Christian Brabandt <cb@256bit.org>
parents:
7576
diff
changeset
|
1984 1089, |
fdae4c496775
commit https://github.com/vim/vim/commit/ef2b5036b3005f1ce15d146dce72379a9834c56d
Christian Brabandt <cb@256bit.org>
parents:
7576
diff
changeset
|
1985 /**/ |
7576
e008ca0e2af2
commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents:
7574
diff
changeset
|
1986 1088, |
e008ca0e2af2
commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents:
7574
diff
changeset
|
1987 /**/ |
7574
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7572
diff
changeset
|
1988 1087, |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7572
diff
changeset
|
1989 /**/ |
7572
992fe73d4ee6
commit https://github.com/vim/vim/commit/507edf63df75fe228e0f76b845b58d60266e65d8
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
1990 1086, |
992fe73d4ee6
commit https://github.com/vim/vim/commit/507edf63df75fe228e0f76b845b58d60266e65d8
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
1991 /**/ |
7570
4250ecde6009
commit https://github.com/vim/vim/commit/a52dfaed104183c1fa2a3b6e4430b23d86bcbece
Christian Brabandt <cb@256bit.org>
parents:
7568
diff
changeset
|
1992 1085, |
4250ecde6009
commit https://github.com/vim/vim/commit/a52dfaed104183c1fa2a3b6e4430b23d86bcbece
Christian Brabandt <cb@256bit.org>
parents:
7568
diff
changeset
|
1993 /**/ |
7568
5274513d3f54
commit https://github.com/vim/vim/commit/e1edc1caba05c553fa60b1cf45a7670b1cfd63fe
Christian Brabandt <cb@256bit.org>
parents:
7566
diff
changeset
|
1994 1084, |
5274513d3f54
commit https://github.com/vim/vim/commit/e1edc1caba05c553fa60b1cf45a7670b1cfd63fe
Christian Brabandt <cb@256bit.org>
parents:
7566
diff
changeset
|
1995 /**/ |
7566
1dd5b27a79b1
commit https://github.com/vim/vim/commit/4514d2769b05faf6edcca42c3ab3d42da84270f1
Christian Brabandt <cb@256bit.org>
parents:
7564
diff
changeset
|
1996 1083, |
1dd5b27a79b1
commit https://github.com/vim/vim/commit/4514d2769b05faf6edcca42c3ab3d42da84270f1
Christian Brabandt <cb@256bit.org>
parents:
7564
diff
changeset
|
1997 /**/ |
7564
aee06f1762e0
commit https://github.com/vim/vim/commit/858b96f382eeb8f1eab5100639e7b09523a6a2a1
Christian Brabandt <cb@256bit.org>
parents:
7562
diff
changeset
|
1998 1082, |
aee06f1762e0
commit https://github.com/vim/vim/commit/858b96f382eeb8f1eab5100639e7b09523a6a2a1
Christian Brabandt <cb@256bit.org>
parents:
7562
diff
changeset
|
1999 /**/ |
7562
f73876aa9a13
commit https://github.com/vim/vim/commit/254b105b755d9736ece5f7f28db92acaf3e7bf76
Christian Brabandt <cb@256bit.org>
parents:
7560
diff
changeset
|
2000 1081, |
f73876aa9a13
commit https://github.com/vim/vim/commit/254b105b755d9736ece5f7f28db92acaf3e7bf76
Christian Brabandt <cb@256bit.org>
parents:
7560
diff
changeset
|
2001 /**/ |
7560
fb84355cd972
commit https://github.com/vim/vim/commit/f32c5cd6e0e6aa6d4aeacb6bf52e3d3ba21e5201
Christian Brabandt <cb@256bit.org>
parents:
7558
diff
changeset
|
2002 1080, |
fb84355cd972
commit https://github.com/vim/vim/commit/f32c5cd6e0e6aa6d4aeacb6bf52e3d3ba21e5201
Christian Brabandt <cb@256bit.org>
parents:
7558
diff
changeset
|
2003 /**/ |
7558
9a4c9dccd603
commit https://github.com/vim/vim/commit/b86a343280b08d6701da68ee0651e960a0a7a61c
Christian Brabandt <cb@256bit.org>
parents:
7555
diff
changeset
|
2004 1079, |
9a4c9dccd603
commit https://github.com/vim/vim/commit/b86a343280b08d6701da68ee0651e960a0a7a61c
Christian Brabandt <cb@256bit.org>
parents:
7555
diff
changeset
|
2005 /**/ |
7555
5bbfac219f20
commit https://github.com/vim/vim/commit/d08a8d4a31ed10225aca6be7565220fa541c32ac
Christian Brabandt <cb@256bit.org>
parents:
7553
diff
changeset
|
2006 1078, |
5bbfac219f20
commit https://github.com/vim/vim/commit/d08a8d4a31ed10225aca6be7565220fa541c32ac
Christian Brabandt <cb@256bit.org>
parents:
7553
diff
changeset
|
2007 /**/ |
7553
f0205ac9818f
commit https://github.com/vim/vim/commit/30a89473ee64a276215a55e7fa99e008945022df
Christian Brabandt <cb@256bit.org>
parents:
7551
diff
changeset
|
2008 1077, |
f0205ac9818f
commit https://github.com/vim/vim/commit/30a89473ee64a276215a55e7fa99e008945022df
Christian Brabandt <cb@256bit.org>
parents:
7551
diff
changeset
|
2009 /**/ |
7551
f624d7671e0c
commit https://github.com/vim/vim/commit/6a3c8aff0439c8406082760c54b26e00ff19a90c
Christian Brabandt <cb@256bit.org>
parents:
7549
diff
changeset
|
2010 1076, |
f624d7671e0c
commit https://github.com/vim/vim/commit/6a3c8aff0439c8406082760c54b26e00ff19a90c
Christian Brabandt <cb@256bit.org>
parents:
7549
diff
changeset
|
2011 /**/ |
7549
b80fb2cfd62b
commit https://github.com/vim/vim/commit/05fe017c1ac0503b706dad695097572fde01ab0b
Christian Brabandt <cb@256bit.org>
parents:
7547
diff
changeset
|
2012 1075, |
b80fb2cfd62b
commit https://github.com/vim/vim/commit/05fe017c1ac0503b706dad695097572fde01ab0b
Christian Brabandt <cb@256bit.org>
parents:
7547
diff
changeset
|
2013 /**/ |
7547
567e027a3ea1
commit https://github.com/vim/vim/commit/5fa4d448fb717874b6619bcda62e42190702997c
Christian Brabandt <cb@256bit.org>
parents:
7545
diff
changeset
|
2014 1074, |
567e027a3ea1
commit https://github.com/vim/vim/commit/5fa4d448fb717874b6619bcda62e42190702997c
Christian Brabandt <cb@256bit.org>
parents:
7545
diff
changeset
|
2015 /**/ |
7545
4c922651fd78
commit https://github.com/vim/vim/commit/28fb79db6b52d1154e8dc63d227673648c2fce15
Christian Brabandt <cb@256bit.org>
parents:
7542
diff
changeset
|
2016 1073, |
4c922651fd78
commit https://github.com/vim/vim/commit/28fb79db6b52d1154e8dc63d227673648c2fce15
Christian Brabandt <cb@256bit.org>
parents:
7542
diff
changeset
|
2017 /**/ |
7542
7df80e470272
commit https://github.com/vim/vim/commit/450919587d4566ce3d17e685e183d5c17d9c2a11
Christian Brabandt <cb@256bit.org>
parents:
7540
diff
changeset
|
2018 1072, |
7df80e470272
commit https://github.com/vim/vim/commit/450919587d4566ce3d17e685e183d5c17d9c2a11
Christian Brabandt <cb@256bit.org>
parents:
7540
diff
changeset
|
2019 /**/ |
7540
b910bb01832a
commit https://github.com/vim/vim/commit/cfc0a350a9fa04f1b0cfa1ba31fbd2847376513f
Christian Brabandt <cb@256bit.org>
parents:
7538
diff
changeset
|
2020 1071, |
b910bb01832a
commit https://github.com/vim/vim/commit/cfc0a350a9fa04f1b0cfa1ba31fbd2847376513f
Christian Brabandt <cb@256bit.org>
parents:
7538
diff
changeset
|
2021 /**/ |
7538
c9fc24b76293
commit https://github.com/vim/vim/commit/8a5115cf18751022387af2085f374d38c60dde83
Christian Brabandt <cb@256bit.org>
parents:
7536
diff
changeset
|
2022 1070, |
c9fc24b76293
commit https://github.com/vim/vim/commit/8a5115cf18751022387af2085f374d38c60dde83
Christian Brabandt <cb@256bit.org>
parents:
7536
diff
changeset
|
2023 /**/ |
7536
30b74472ff81
commit https://github.com/vim/vim/commit/5f24542e5eda590acdbee89b120fa2e19ec7596e
Christian Brabandt <cb@256bit.org>
parents:
7534
diff
changeset
|
2024 1069, |
30b74472ff81
commit https://github.com/vim/vim/commit/5f24542e5eda590acdbee89b120fa2e19ec7596e
Christian Brabandt <cb@256bit.org>
parents:
7534
diff
changeset
|
2025 /**/ |
7534
0765665083be
commit https://github.com/vim/vim/commit/71bcfdf30109c3d6e40d143adcaf33964b18a70b
Christian Brabandt <cb@256bit.org>
parents:
7532
diff
changeset
|
2026 1068, |
0765665083be
commit https://github.com/vim/vim/commit/71bcfdf30109c3d6e40d143adcaf33964b18a70b
Christian Brabandt <cb@256bit.org>
parents:
7532
diff
changeset
|
2027 /**/ |
7532
0acbe61244ac
commit https://github.com/vim/vim/commit/449538c3d2f7089dcaa1a888f09f41714faec9a6
Christian Brabandt <cb@256bit.org>
parents:
7530
diff
changeset
|
2028 1067, |
0acbe61244ac
commit https://github.com/vim/vim/commit/449538c3d2f7089dcaa1a888f09f41714faec9a6
Christian Brabandt <cb@256bit.org>
parents:
7530
diff
changeset
|
2029 /**/ |
7530
5d1b5fd708c6
commit https://github.com/vim/vim/commit/64496ffc9cfb0eb6f2074f22809de2b420b5f300
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
2030 1066, |
5d1b5fd708c6
commit https://github.com/vim/vim/commit/64496ffc9cfb0eb6f2074f22809de2b420b5f300
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
2031 /**/ |
7528
53163e4d9e4f
commit https://github.com/vim/vim/commit/25e4fcde767084d1a79e0926bc301c92987c0cce
Christian Brabandt <cb@256bit.org>
parents:
7526
diff
changeset
|
2032 1065, |
53163e4d9e4f
commit https://github.com/vim/vim/commit/25e4fcde767084d1a79e0926bc301c92987c0cce
Christian Brabandt <cb@256bit.org>
parents:
7526
diff
changeset
|
2033 /**/ |
7526
08c1f73efcde
commit https://github.com/vim/vim/commit/7b877b360532713dc21a0ff3d55a76ac02eaf573
Christian Brabandt <cb@256bit.org>
parents:
7523
diff
changeset
|
2034 1064, |
08c1f73efcde
commit https://github.com/vim/vim/commit/7b877b360532713dc21a0ff3d55a76ac02eaf573
Christian Brabandt <cb@256bit.org>
parents:
7523
diff
changeset
|
2035 /**/ |
7523
55cd9a99514d
commit https://github.com/vim/vim/commit/eca99bd45f094b1b12e22b9d6b206bd05dc9a38c
Christian Brabandt <cb@256bit.org>
parents:
7521
diff
changeset
|
2036 1063, |
55cd9a99514d
commit https://github.com/vim/vim/commit/eca99bd45f094b1b12e22b9d6b206bd05dc9a38c
Christian Brabandt <cb@256bit.org>
parents:
7521
diff
changeset
|
2037 /**/ |
7521
665330ac1d78
commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents:
7519
diff
changeset
|
2038 1062, |
665330ac1d78
commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents:
7519
diff
changeset
|
2039 /**/ |
7519
98fede2c9574
commit https://github.com/vim/vim/commit/285bf84b4b9aca828828a8729b04cd59ab333dac
Christian Brabandt <cb@256bit.org>
parents:
7517
diff
changeset
|
2040 1061, |
98fede2c9574
commit https://github.com/vim/vim/commit/285bf84b4b9aca828828a8729b04cd59ab333dac
Christian Brabandt <cb@256bit.org>
parents:
7517
diff
changeset
|
2041 /**/ |
7517
9d67399f49c6
commit https://github.com/vim/vim/commit/6602af7fe069246dbcf419c3e904a78b60e7d4dc
Christian Brabandt <cb@256bit.org>
parents:
7515
diff
changeset
|
2042 1060, |
9d67399f49c6
commit https://github.com/vim/vim/commit/6602af7fe069246dbcf419c3e904a78b60e7d4dc
Christian Brabandt <cb@256bit.org>
parents:
7515
diff
changeset
|
2043 /**/ |
7515
cc0398578d2f
commit https://github.com/vim/vim/commit/fd39d08fb6f61bc6c1366de8a7af19a42dc1b377
Christian Brabandt <cb@256bit.org>
parents:
7513
diff
changeset
|
2044 1059, |
cc0398578d2f
commit https://github.com/vim/vim/commit/fd39d08fb6f61bc6c1366de8a7af19a42dc1b377
Christian Brabandt <cb@256bit.org>
parents:
7513
diff
changeset
|
2045 /**/ |
7513
37e061ec063c
commit https://github.com/vim/vim/commit/75bdf6aa30a5c99d67c42886cf7a4a000bbaa422
Christian Brabandt <cb@256bit.org>
parents:
7511
diff
changeset
|
2046 1058, |
37e061ec063c
commit https://github.com/vim/vim/commit/75bdf6aa30a5c99d67c42886cf7a4a000bbaa422
Christian Brabandt <cb@256bit.org>
parents:
7511
diff
changeset
|
2047 /**/ |
7511
9985800f116d
commit https://github.com/vim/vim/commit/2b7db933b0418f3964da5399047ce8998007874c
Christian Brabandt <cb@256bit.org>
parents:
7509
diff
changeset
|
2048 1057, |
9985800f116d
commit https://github.com/vim/vim/commit/2b7db933b0418f3964da5399047ce8998007874c
Christian Brabandt <cb@256bit.org>
parents:
7509
diff
changeset
|
2049 /**/ |
7509
a64793340689
commit https://github.com/vim/vim/commit/ca1fe985175385c609f8e06672a1014729aba05c
Christian Brabandt <cb@256bit.org>
parents:
7506
diff
changeset
|
2050 1056, |
a64793340689
commit https://github.com/vim/vim/commit/ca1fe985175385c609f8e06672a1014729aba05c
Christian Brabandt <cb@256bit.org>
parents:
7506
diff
changeset
|
2051 /**/ |
7506
cfc0d60f6233
commit https://github.com/vim/vim/commit/e7893a4088d6ea796bcab6195d232cb26c12c317
Christian Brabandt <cb@256bit.org>
parents:
7504
diff
changeset
|
2052 1055, |
cfc0d60f6233
commit https://github.com/vim/vim/commit/e7893a4088d6ea796bcab6195d232cb26c12c317
Christian Brabandt <cb@256bit.org>
parents:
7504
diff
changeset
|
2053 /**/ |
7504
013f285f31a6
commit https://github.com/vim/vim/commit/2795e21eaafaeaf95a91667fd411023280d0f902
Christian Brabandt <cb@256bit.org>
parents:
7502
diff
changeset
|
2054 1054, |
013f285f31a6
commit https://github.com/vim/vim/commit/2795e21eaafaeaf95a91667fd411023280d0f902
Christian Brabandt <cb@256bit.org>
parents:
7502
diff
changeset
|
2055 /**/ |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
7500
diff
changeset
|
2056 1053, |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
7500
diff
changeset
|
2057 /**/ |
7500
ef568437e49a
commit https://github.com/vim/vim/commit/04bff88df6211f64731bf8f5afa088e94496db16
Christian Brabandt <cb@256bit.org>
parents:
7498
diff
changeset
|
2058 1052, |
ef568437e49a
commit https://github.com/vim/vim/commit/04bff88df6211f64731bf8f5afa088e94496db16
Christian Brabandt <cb@256bit.org>
parents:
7498
diff
changeset
|
2059 /**/ |
7498
3fcd3d235f7b
commit https://github.com/vim/vim/commit/af8af8bfac5792fa64efbc524032d568cc7754f7
Christian Brabandt <cb@256bit.org>
parents:
7496
diff
changeset
|
2060 1051, |
3fcd3d235f7b
commit https://github.com/vim/vim/commit/af8af8bfac5792fa64efbc524032d568cc7754f7
Christian Brabandt <cb@256bit.org>
parents:
7496
diff
changeset
|
2061 /**/ |
7496
6d969668bfc8
commit https://github.com/vim/vim/commit/c71982b23978ef61d0a2f0fe5535e782e1c561ed
Christian Brabandt <cb@256bit.org>
parents:
7494
diff
changeset
|
2062 1050, |
6d969668bfc8
commit https://github.com/vim/vim/commit/c71982b23978ef61d0a2f0fe5535e782e1c561ed
Christian Brabandt <cb@256bit.org>
parents:
7494
diff
changeset
|
2063 /**/ |
7494
b4419a42ac32
commit https://github.com/vim/vim/commit/485dace817a99f4cf92a598845d27c8ee685df93
Christian Brabandt <cb@256bit.org>
parents:
7492
diff
changeset
|
2064 1049, |
b4419a42ac32
commit https://github.com/vim/vim/commit/485dace817a99f4cf92a598845d27c8ee685df93
Christian Brabandt <cb@256bit.org>
parents:
7492
diff
changeset
|
2065 /**/ |
7492
26d13d73837f
commit https://github.com/vim/vim/commit/c7803a1c42228566ee2e2efcd621b21d0a8ed3ea
Christian Brabandt <cb@256bit.org>
parents:
7490
diff
changeset
|
2066 1048, |
26d13d73837f
commit https://github.com/vim/vim/commit/c7803a1c42228566ee2e2efcd621b21d0a8ed3ea
Christian Brabandt <cb@256bit.org>
parents:
7490
diff
changeset
|
2067 /**/ |
7490
4a81ecde8701
commit https://github.com/vim/vim/commit/7f68203168aeb22fcf8a5a9680503fe16759ebd4
Christian Brabandt <cb@256bit.org>
parents:
7488
diff
changeset
|
2068 1047, |
4a81ecde8701
commit https://github.com/vim/vim/commit/7f68203168aeb22fcf8a5a9680503fe16759ebd4
Christian Brabandt <cb@256bit.org>
parents:
7488
diff
changeset
|
2069 /**/ |
7488
6f14d7da2d8a
commit https://github.com/vim/vim/commit/2d6c8002729821acc54a4de41d5c5f3d50594973
Christian Brabandt <cb@256bit.org>
parents:
7486
diff
changeset
|
2070 1046, |
6f14d7da2d8a
commit https://github.com/vim/vim/commit/2d6c8002729821acc54a4de41d5c5f3d50594973
Christian Brabandt <cb@256bit.org>
parents:
7486
diff
changeset
|
2071 /**/ |
7486
8d09c2ce1825
commit https://github.com/vim/vim/commit/47707f6f34007dd803c75addbbd578fd37a74a92
Christian Brabandt <cb@256bit.org>
parents:
7484
diff
changeset
|
2072 1045, |
8d09c2ce1825
commit https://github.com/vim/vim/commit/47707f6f34007dd803c75addbbd578fd37a74a92
Christian Brabandt <cb@256bit.org>
parents:
7484
diff
changeset
|
2073 /**/ |
7484
1fe988587423
commit https://github.com/vim/vim/commit/718272a7e13c71095ce07eb3b3d5e1f9790a6991
Christian Brabandt <cb@256bit.org>
parents:
7482
diff
changeset
|
2074 1044, |
1fe988587423
commit https://github.com/vim/vim/commit/718272a7e13c71095ce07eb3b3d5e1f9790a6991
Christian Brabandt <cb@256bit.org>
parents:
7482
diff
changeset
|
2075 /**/ |
7482
52d76b2f56c7
commit https://github.com/vim/vim/commit/d7a08a23bf210147e846c74af570bd219e4903da
Christian Brabandt <cb@256bit.org>
parents:
7480
diff
changeset
|
2076 1043, |
52d76b2f56c7
commit https://github.com/vim/vim/commit/d7a08a23bf210147e846c74af570bd219e4903da
Christian Brabandt <cb@256bit.org>
parents:
7480
diff
changeset
|
2077 /**/ |
7480
a49163681559
commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents:
7478
diff
changeset
|
2078 1042, |
a49163681559
commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents:
7478
diff
changeset
|
2079 /**/ |
7478
dbfa0f9ab289
commit https://github.com/vim/vim/commit/022b896592721838e387e99fd785d3ded7b68be7
Christian Brabandt <cb@256bit.org>
parents:
7475
diff
changeset
|
2080 1041, |
dbfa0f9ab289
commit https://github.com/vim/vim/commit/022b896592721838e387e99fd785d3ded7b68be7
Christian Brabandt <cb@256bit.org>
parents:
7475
diff
changeset
|
2081 /**/ |
7475
6b5ce5161d6d
commit https://github.com/vim/vim/commit/24db72958fc91bd067c7d60a4990d09a6f295b48
Christian Brabandt <cb@256bit.org>
parents:
7473
diff
changeset
|
2082 1040, |
6b5ce5161d6d
commit https://github.com/vim/vim/commit/24db72958fc91bd067c7d60a4990d09a6f295b48
Christian Brabandt <cb@256bit.org>
parents:
7473
diff
changeset
|
2083 /**/ |
7473
ef60fac8f3eb
commit https://github.com/vim/vim/commit/d798af8c77cf47dba74b6b69ae4eba904023981c
Christian Brabandt <cb@256bit.org>
parents:
7471
diff
changeset
|
2084 1039, |
ef60fac8f3eb
commit https://github.com/vim/vim/commit/d798af8c77cf47dba74b6b69ae4eba904023981c
Christian Brabandt <cb@256bit.org>
parents:
7471
diff
changeset
|
2085 /**/ |
7471
c79a52efcf2f
commit https://github.com/vim/vim/commit/d2e03f02c4a69d13bd90b5d084990bca95d0b0af
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
2086 1038, |
c79a52efcf2f
commit https://github.com/vim/vim/commit/d2e03f02c4a69d13bd90b5d084990bca95d0b0af
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
2087 /**/ |
7469
15eefe1b0dad
commit https://github.com/vim/vim/commit/027387f70c671f62e3e08e0bdd09ec05b0232735
Christian Brabandt <cb@256bit.org>
parents:
7467
diff
changeset
|
2088 1037, |
15eefe1b0dad
commit https://github.com/vim/vim/commit/027387f70c671f62e3e08e0bdd09ec05b0232735
Christian Brabandt <cb@256bit.org>
parents:
7467
diff
changeset
|
2089 /**/ |
7467
765110dd332c
commit https://github.com/vim/vim/commit/fa03fd6c4a9fe05274d62ddefd645cb5801d2023
Christian Brabandt <cb@256bit.org>
parents:
7465
diff
changeset
|
2090 1036, |
765110dd332c
commit https://github.com/vim/vim/commit/fa03fd6c4a9fe05274d62ddefd645cb5801d2023
Christian Brabandt <cb@256bit.org>
parents:
7465
diff
changeset
|
2091 /**/ |
7465
71e2aca45b81
commit https://github.com/vim/vim/commit/a3306958dcb9aadff1e1e8521d908d86b10ac99a
Christian Brabandt <cb@256bit.org>
parents:
7462
diff
changeset
|
2092 1035, |
71e2aca45b81
commit https://github.com/vim/vim/commit/a3306958dcb9aadff1e1e8521d908d86b10ac99a
Christian Brabandt <cb@256bit.org>
parents:
7462
diff
changeset
|
2093 /**/ |
7462
eb7b199f3d01
commit https://github.com/vim/vim/commit/aac624bacd4be0c5a8e603dac9020f4a754c9c9c
Christian Brabandt <cb@256bit.org>
parents:
7460
diff
changeset
|
2094 1034, |
eb7b199f3d01
commit https://github.com/vim/vim/commit/aac624bacd4be0c5a8e603dac9020f4a754c9c9c
Christian Brabandt <cb@256bit.org>
parents:
7460
diff
changeset
|
2095 /**/ |
7460
1420ccc9f610
commit https://github.com/vim/vim/commit/ee2739787f1e996739541bb60e6003b892497e03
Christian Brabandt <cb@256bit.org>
parents:
7458
diff
changeset
|
2096 1033, |
1420ccc9f610
commit https://github.com/vim/vim/commit/ee2739787f1e996739541bb60e6003b892497e03
Christian Brabandt <cb@256bit.org>
parents:
7458
diff
changeset
|
2097 /**/ |
7458
e583db6c4fd4
commit https://github.com/vim/vim/commit/cbfe32953aea09d35d9ac7e5865c915b14e310c1
Christian Brabandt <cb@256bit.org>
parents:
7456
diff
changeset
|
2098 1032, |
e583db6c4fd4
commit https://github.com/vim/vim/commit/cbfe32953aea09d35d9ac7e5865c915b14e310c1
Christian Brabandt <cb@256bit.org>
parents:
7456
diff
changeset
|
2099 /**/ |
7456
2c5e813e8852
commit https://github.com/vim/vim/commit/3c6f92e52ef15df4aa248ce00eacd65928044210
Christian Brabandt <cb@256bit.org>
parents:
7454
diff
changeset
|
2100 1031, |
2c5e813e8852
commit https://github.com/vim/vim/commit/3c6f92e52ef15df4aa248ce00eacd65928044210
Christian Brabandt <cb@256bit.org>
parents:
7454
diff
changeset
|
2101 /**/ |
7454
4ff843da79fd
commit https://github.com/vim/vim/commit/a2cce8630756769b2cefdc28c7290ae9262cddb1
Christian Brabandt <cb@256bit.org>
parents:
7452
diff
changeset
|
2102 1030, |
4ff843da79fd
commit https://github.com/vim/vim/commit/a2cce8630756769b2cefdc28c7290ae9262cddb1
Christian Brabandt <cb@256bit.org>
parents:
7452
diff
changeset
|
2103 /**/ |
7452
b3eb1dfbc1fa
commit https://github.com/vim/vim/commit/d3343960d7745bd586197a28b9a96d634a292422
Christian Brabandt <cb@256bit.org>
parents:
7450
diff
changeset
|
2104 1029, |
b3eb1dfbc1fa
commit https://github.com/vim/vim/commit/d3343960d7745bd586197a28b9a96d634a292422
Christian Brabandt <cb@256bit.org>
parents:
7450
diff
changeset
|
2105 /**/ |
7450
e159dff12e40
commit https://github.com/vim/vim/commit/92c23d8ab82e723e5fa2e0c5ee06348d72b8e444
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2106 1028, |
e159dff12e40
commit https://github.com/vim/vim/commit/92c23d8ab82e723e5fa2e0c5ee06348d72b8e444
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2107 /**/ |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7445
diff
changeset
|
2108 1027, |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7445
diff
changeset
|
2109 /**/ |
7445
e81526d6709f
commit https://github.com/vim/vim/commit/acf92d27c94811e3bd6b84cfd54246e91d44c355
Christian Brabandt <cb@256bit.org>
parents:
7443
diff
changeset
|
2110 1026, |
e81526d6709f
commit https://github.com/vim/vim/commit/acf92d27c94811e3bd6b84cfd54246e91d44c355
Christian Brabandt <cb@256bit.org>
parents:
7443
diff
changeset
|
2111 /**/ |
7443
357b7bd8d612
commit https://github.com/vim/vim/commit/6c7b44472f7055c78d996e1b626bd2932502212f
Christian Brabandt <cb@256bit.org>
parents:
7441
diff
changeset
|
2112 1025, |
357b7bd8d612
commit https://github.com/vim/vim/commit/6c7b44472f7055c78d996e1b626bd2932502212f
Christian Brabandt <cb@256bit.org>
parents:
7441
diff
changeset
|
2113 /**/ |
7441
7017b495ca53
commit https://github.com/vim/vim/commit/d5c899a3f1d67a220e571dadf90dde1bbd41e166
Christian Brabandt <cb@256bit.org>
parents:
7439
diff
changeset
|
2114 1024, |
7017b495ca53
commit https://github.com/vim/vim/commit/d5c899a3f1d67a220e571dadf90dde1bbd41e166
Christian Brabandt <cb@256bit.org>
parents:
7439
diff
changeset
|
2115 /**/ |
7439
63a96fadf679
commit https://github.com/vim/vim/commit/2c15f6aa8fd057721e35d03523577b41cf7aaad5
Christian Brabandt <cb@256bit.org>
parents:
7437
diff
changeset
|
2116 1023, |
63a96fadf679
commit https://github.com/vim/vim/commit/2c15f6aa8fd057721e35d03523577b41cf7aaad5
Christian Brabandt <cb@256bit.org>
parents:
7437
diff
changeset
|
2117 /**/ |
7437
388977454c14
commit https://github.com/vim/vim/commit/43f837dea588207c87c34794b19c024e9ff1db3e
Christian Brabandt <cb@256bit.org>
parents:
7435
diff
changeset
|
2118 1022, |
388977454c14
commit https://github.com/vim/vim/commit/43f837dea588207c87c34794b19c024e9ff1db3e
Christian Brabandt <cb@256bit.org>
parents:
7435
diff
changeset
|
2119 /**/ |
7435
a4b4cbf8d044
commit https://github.com/vim/vim/commit/17b609ed7f3d718e233a561f792f7473e48b0aaa
Christian Brabandt <cb@256bit.org>
parents:
7433
diff
changeset
|
2120 1021, |
a4b4cbf8d044
commit https://github.com/vim/vim/commit/17b609ed7f3d718e233a561f792f7473e48b0aaa
Christian Brabandt <cb@256bit.org>
parents:
7433
diff
changeset
|
2121 /**/ |
7433
b5d07f5e78ba
commit https://github.com/vim/vim/commit/7eae47af89580df07a72079405a0e7b8aad784a8
Christian Brabandt <cb@256bit.org>
parents:
7430
diff
changeset
|
2122 1020, |
b5d07f5e78ba
commit https://github.com/vim/vim/commit/7eae47af89580df07a72079405a0e7b8aad784a8
Christian Brabandt <cb@256bit.org>
parents:
7430
diff
changeset
|
2123 /**/ |
7430
e2fe7a67b3a4
commit https://github.com/vim/vim/commit/39373819fd5fad825df416f1e2b96a6f43758e23
Christian Brabandt <cb@256bit.org>
parents:
7428
diff
changeset
|
2124 1019, |
e2fe7a67b3a4
commit https://github.com/vim/vim/commit/39373819fd5fad825df416f1e2b96a6f43758e23
Christian Brabandt <cb@256bit.org>
parents:
7428
diff
changeset
|
2125 /**/ |
7428
a4838cba1f48
commit https://github.com/vim/vim/commit/af2dff8fbc0e0c1dd7cb5ae058c3b896c28f7d24
Christian Brabandt <cb@256bit.org>
parents:
7426
diff
changeset
|
2126 1018, |
a4838cba1f48
commit https://github.com/vim/vim/commit/af2dff8fbc0e0c1dd7cb5ae058c3b896c28f7d24
Christian Brabandt <cb@256bit.org>
parents:
7426
diff
changeset
|
2127 /**/ |
7426
779a7c14c795
commit https://github.com/vim/vim/commit/8f79acdf7ede2693fbda53c3c9693f16db4f193b
Christian Brabandt <cb@256bit.org>
parents:
7424
diff
changeset
|
2128 1017, |
779a7c14c795
commit https://github.com/vim/vim/commit/8f79acdf7ede2693fbda53c3c9693f16db4f193b
Christian Brabandt <cb@256bit.org>
parents:
7424
diff
changeset
|
2129 /**/ |
7424
c260e4df3a24
commit https://github.com/vim/vim/commit/8dfc5eb32818b11ff5818a060324b94345c40031
Christian Brabandt <cb@256bit.org>
parents:
7422
diff
changeset
|
2130 1016, |
c260e4df3a24
commit https://github.com/vim/vim/commit/8dfc5eb32818b11ff5818a060324b94345c40031
Christian Brabandt <cb@256bit.org>
parents:
7422
diff
changeset
|
2131 /**/ |
7422
35af1e06696b
commit https://github.com/vim/vim/commit/c21d67e33c1b42a492e04788cbb14a23a6724e39
Christian Brabandt <cb@256bit.org>
parents:
7420
diff
changeset
|
2132 1015, |
35af1e06696b
commit https://github.com/vim/vim/commit/c21d67e33c1b42a492e04788cbb14a23a6724e39
Christian Brabandt <cb@256bit.org>
parents:
7420
diff
changeset
|
2133 /**/ |
7420
37092e334ef2
commit https://github.com/vim/vim/commit/06b0734d9cd2f39d4c12c7fd89a100eadbe5be78
Christian Brabandt <cb@256bit.org>
parents:
7418
diff
changeset
|
2134 1014, |
37092e334ef2
commit https://github.com/vim/vim/commit/06b0734d9cd2f39d4c12c7fd89a100eadbe5be78
Christian Brabandt <cb@256bit.org>
parents:
7418
diff
changeset
|
2135 /**/ |
7418
e7874551bb34
commit https://github.com/vim/vim/commit/9b05a0d0f94d8c4c1ddd51e7f31b73f7556bdbdc
Christian Brabandt <cb@256bit.org>
parents:
7416
diff
changeset
|
2136 1013, |
e7874551bb34
commit https://github.com/vim/vim/commit/9b05a0d0f94d8c4c1ddd51e7f31b73f7556bdbdc
Christian Brabandt <cb@256bit.org>
parents:
7416
diff
changeset
|
2137 /**/ |
7416
cd69647bb839
commit https://github.com/vim/vim/commit/1000565c3a2439c9a7c9759284814dbf3b8bc20d
Christian Brabandt <cb@256bit.org>
parents:
7414
diff
changeset
|
2138 1012, |
cd69647bb839
commit https://github.com/vim/vim/commit/1000565c3a2439c9a7c9759284814dbf3b8bc20d
Christian Brabandt <cb@256bit.org>
parents:
7414
diff
changeset
|
2139 /**/ |
7414
d467ca80d3c1
commit https://github.com/vim/vim/commit/2bf2417612879de627dcea1dbb22ee2199b16963
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
2140 1011, |
d467ca80d3c1
commit https://github.com/vim/vim/commit/2bf2417612879de627dcea1dbb22ee2199b16963
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
2141 /**/ |
7412
bc5de65e499a
commit https://github.com/vim/vim/commit/2d820808cda15b3ad9fe674393d1f1e997453d9e
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
2142 1010, |
bc5de65e499a
commit https://github.com/vim/vim/commit/2d820808cda15b3ad9fe674393d1f1e997453d9e
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
2143 /**/ |
7410
08e62c4fc17d
commit https://github.com/vim/vim/commit/53076830fea6df737455523f7e235bfe4f79864d
Christian Brabandt <cb@256bit.org>
parents:
7408
diff
changeset
|
2144 1009, |
08e62c4fc17d
commit https://github.com/vim/vim/commit/53076830fea6df737455523f7e235bfe4f79864d
Christian Brabandt <cb@256bit.org>
parents:
7408
diff
changeset
|
2145 /**/ |
7408
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
7406
diff
changeset
|
2146 1008, |
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
7406
diff
changeset
|
2147 /**/ |
7406
c97735aaef9f
commit https://github.com/vim/vim/commit/e3303cb0817e826e3c25d5dc4ac10b569d0841e1
Christian Brabandt <cb@256bit.org>
parents:
7404
diff
changeset
|
2148 1007, |
c97735aaef9f
commit https://github.com/vim/vim/commit/e3303cb0817e826e3c25d5dc4ac10b569d0841e1
Christian Brabandt <cb@256bit.org>
parents:
7404
diff
changeset
|
2149 /**/ |
7404
fb61ce5915fc
commit https://github.com/vim/vim/commit/96c664af27ec9535f2c3cd9b889faad3e9460ad6
Christian Brabandt <cb@256bit.org>
parents:
7402
diff
changeset
|
2150 1006, |
fb61ce5915fc
commit https://github.com/vim/vim/commit/96c664af27ec9535f2c3cd9b889faad3e9460ad6
Christian Brabandt <cb@256bit.org>
parents:
7402
diff
changeset
|
2151 /**/ |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7399
diff
changeset
|
2152 1005, |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7399
diff
changeset
|
2153 /**/ |
7399
d45f2dbdac8d
commit https://github.com/vim/vim/commit/08b7bae91adb79d30d4c923fd758e2f7cecd33ef
Christian Brabandt <cb@256bit.org>
parents:
7397
diff
changeset
|
2154 1004, |
d45f2dbdac8d
commit https://github.com/vim/vim/commit/08b7bae91adb79d30d4c923fd758e2f7cecd33ef
Christian Brabandt <cb@256bit.org>
parents:
7397
diff
changeset
|
2155 /**/ |
7397
7ec544daecd5
commit https://github.com/vim/vim/commit/7b5f0a15bce11754c47f849b2ddd68ba0909afac
Christian Brabandt <cb@256bit.org>
parents:
7395
diff
changeset
|
2156 1003, |
7ec544daecd5
commit https://github.com/vim/vim/commit/7b5f0a15bce11754c47f849b2ddd68ba0909afac
Christian Brabandt <cb@256bit.org>
parents:
7395
diff
changeset
|
2157 /**/ |
7395
377253525da5
commit https://github.com/vim/vim/commit/604619784c7f9007a883c123231d080598bd49f5
Christian Brabandt <cb@256bit.org>
parents:
7393
diff
changeset
|
2158 1002, |
377253525da5
commit https://github.com/vim/vim/commit/604619784c7f9007a883c123231d080598bd49f5
Christian Brabandt <cb@256bit.org>
parents:
7393
diff
changeset
|
2159 /**/ |
7393
467b7c511585
commit https://github.com/vim/vim/commit/f49e240c2def978247fa457aa105bb3024413f7d
Christian Brabandt <cb@256bit.org>
parents:
7391
diff
changeset
|
2160 1001, |
467b7c511585
commit https://github.com/vim/vim/commit/f49e240c2def978247fa457aa105bb3024413f7d
Christian Brabandt <cb@256bit.org>
parents:
7391
diff
changeset
|
2161 /**/ |
7391
4761fed349ed
commit https://github.com/vim/vim/commit/c06624661a3aa6642304c06db9cebe553a4cab17
Christian Brabandt <cb@256bit.org>
parents:
7389
diff
changeset
|
2162 1000, |
4761fed349ed
commit https://github.com/vim/vim/commit/c06624661a3aa6642304c06db9cebe553a4cab17
Christian Brabandt <cb@256bit.org>
parents:
7389
diff
changeset
|
2163 /**/ |
7389
f7ed82d38e6d
commit https://github.com/vim/vim/commit/b8cb643eab0e84d6a41f5884c7e41736218425fb
Christian Brabandt <cb@256bit.org>
parents:
7387
diff
changeset
|
2164 999, |
f7ed82d38e6d
commit https://github.com/vim/vim/commit/b8cb643eab0e84d6a41f5884c7e41736218425fb
Christian Brabandt <cb@256bit.org>
parents:
7387
diff
changeset
|
2165 /**/ |
7387
702f694c9396
commit https://github.com/vim/vim/commit/f9c8bd2137b045f9a64d63eefcf022b4726b1419
Christian Brabandt <cb@256bit.org>
parents:
7385
diff
changeset
|
2166 998, |
702f694c9396
commit https://github.com/vim/vim/commit/f9c8bd2137b045f9a64d63eefcf022b4726b1419
Christian Brabandt <cb@256bit.org>
parents:
7385
diff
changeset
|
2167 /**/ |
7385
160f4b03d8d0
commit https://github.com/vim/vim/commit/4c7bb12c82914307e6bbb73d95cfb3ba7189813a
Christian Brabandt <cb@256bit.org>
parents:
7382
diff
changeset
|
2168 997, |
160f4b03d8d0
commit https://github.com/vim/vim/commit/4c7bb12c82914307e6bbb73d95cfb3ba7189813a
Christian Brabandt <cb@256bit.org>
parents:
7382
diff
changeset
|
2169 /**/ |
7382
58958b8c9881
commit https://github.com/vim/vim/commit/e292d80bede5cb0b9b1ca95176ad6c3fbaae2e0a
Christian Brabandt <cb@256bit.org>
parents:
7380
diff
changeset
|
2170 996, |
58958b8c9881
commit https://github.com/vim/vim/commit/e292d80bede5cb0b9b1ca95176ad6c3fbaae2e0a
Christian Brabandt <cb@256bit.org>
parents:
7380
diff
changeset
|
2171 /**/ |
7380
055a0b587a3e
commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents:
7378
diff
changeset
|
2172 995, |
055a0b587a3e
commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents:
7378
diff
changeset
|
2173 /**/ |
7378
a6c23c3c5880
commit https://github.com/vim/vim/commit/4e5a31c8b3e259605f4d8543aaae68578cf9b0d7
Christian Brabandt <cb@256bit.org>
parents:
7376
diff
changeset
|
2174 994, |
a6c23c3c5880
commit https://github.com/vim/vim/commit/4e5a31c8b3e259605f4d8543aaae68578cf9b0d7
Christian Brabandt <cb@256bit.org>
parents:
7376
diff
changeset
|
2175 /**/ |
7376
88843d12c82b
commit https://github.com/vim/vim/commit/52f6ae1366b34fc5771595c0bd17c779a7f6f544
Christian Brabandt <cb@256bit.org>
parents:
7374
diff
changeset
|
2176 993, |
88843d12c82b
commit https://github.com/vim/vim/commit/52f6ae1366b34fc5771595c0bd17c779a7f6f544
Christian Brabandt <cb@256bit.org>
parents:
7374
diff
changeset
|
2177 /**/ |
7374
7e367104f6b6
commit https://github.com/vim/vim/commit/013806229a1e15480592f6bc8453130685ec750b
Christian Brabandt <cb@256bit.org>
parents:
7372
diff
changeset
|
2178 992, |
7e367104f6b6
commit https://github.com/vim/vim/commit/013806229a1e15480592f6bc8453130685ec750b
Christian Brabandt <cb@256bit.org>
parents:
7372
diff
changeset
|
2179 /**/ |
7372
6b057079a836
commit https://github.com/vim/vim/commit/096c8bb40d51b22a4b1d761baf7bb79fb9e55a28
Christian Brabandt <cb@256bit.org>
parents:
7370
diff
changeset
|
2180 991, |
6b057079a836
commit https://github.com/vim/vim/commit/096c8bb40d51b22a4b1d761baf7bb79fb9e55a28
Christian Brabandt <cb@256bit.org>
parents:
7370
diff
changeset
|
2181 /**/ |
7370
e396c6134266
commit https://github.com/vim/vim/commit/e5c5f0c66c9491aca013f30da6e4f730a7ba7db6
Christian Brabandt <cb@256bit.org>
parents:
7368
diff
changeset
|
2182 990, |
e396c6134266
commit https://github.com/vim/vim/commit/e5c5f0c66c9491aca013f30da6e4f730a7ba7db6
Christian Brabandt <cb@256bit.org>
parents:
7368
diff
changeset
|
2183 /**/ |
7368
adc796ba7dda
commit https://github.com/vim/vim/commit/0107f5ba87ca9427500d0fc42ec80a1f3fca9fdb
Christian Brabandt <cb@256bit.org>
parents:
7366
diff
changeset
|
2184 989, |
adc796ba7dda
commit https://github.com/vim/vim/commit/0107f5ba87ca9427500d0fc42ec80a1f3fca9fdb
Christian Brabandt <cb@256bit.org>
parents:
7366
diff
changeset
|
2185 /**/ |
7366
eec1dc8ca160
commit https://github.com/vim/vim/commit/40bbceee2213a6fa8fdc1d3f3920d61fb5370803
Christian Brabandt <cb@256bit.org>
parents:
7364
diff
changeset
|
2186 988, |
eec1dc8ca160
commit https://github.com/vim/vim/commit/40bbceee2213a6fa8fdc1d3f3920d61fb5370803
Christian Brabandt <cb@256bit.org>
parents:
7364
diff
changeset
|
2187 /**/ |
7364
fe2f6b92d806
commit https://github.com/vim/vim/commit/0d27f64f7188efef99062a3c5694027c12401670
Christian Brabandt <cb@256bit.org>
parents:
7362
diff
changeset
|
2188 987, |
fe2f6b92d806
commit https://github.com/vim/vim/commit/0d27f64f7188efef99062a3c5694027c12401670
Christian Brabandt <cb@256bit.org>
parents:
7362
diff
changeset
|
2189 /**/ |
7362
16c67ab8eafd
commit https://github.com/vim/vim/commit/da9888a3f0118ce1ce5acbdcf4720602c2de2a3b
Christian Brabandt <cb@256bit.org>
parents:
7360
diff
changeset
|
2190 986, |
16c67ab8eafd
commit https://github.com/vim/vim/commit/da9888a3f0118ce1ce5acbdcf4720602c2de2a3b
Christian Brabandt <cb@256bit.org>
parents:
7360
diff
changeset
|
2191 /**/ |
7360
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7358
diff
changeset
|
2192 985, |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7358
diff
changeset
|
2193 /**/ |
7358
6fbeef3b65e6
commit https://github.com/vim/vim/commit/ad4d8a192abf44b89371af87d70b971cd654b799
Christian Brabandt <cb@256bit.org>
parents:
7356
diff
changeset
|
2194 984, |
6fbeef3b65e6
commit https://github.com/vim/vim/commit/ad4d8a192abf44b89371af87d70b971cd654b799
Christian Brabandt <cb@256bit.org>
parents:
7356
diff
changeset
|
2195 /**/ |
7356
f0eb9aa9eb32
commit https://github.com/vim/vim/commit/a60824308cd9bc192c5d38fc16cccfcf652b40f6
Christian Brabandt <cb@256bit.org>
parents:
7354
diff
changeset
|
2196 983, |
f0eb9aa9eb32
commit https://github.com/vim/vim/commit/a60824308cd9bc192c5d38fc16cccfcf652b40f6
Christian Brabandt <cb@256bit.org>
parents:
7354
diff
changeset
|
2197 /**/ |
7354
81dc9e30aad6
commit https://github.com/vim/vim/commit/7b6156f4cd4027b664a916ba546e9b05d4c49e11
Christian Brabandt <cb@256bit.org>
parents:
7352
diff
changeset
|
2198 982, |
81dc9e30aad6
commit https://github.com/vim/vim/commit/7b6156f4cd4027b664a916ba546e9b05d4c49e11
Christian Brabandt <cb@256bit.org>
parents:
7352
diff
changeset
|
2199 /**/ |
7352
ddab7ae8796d
commit https://github.com/vim/vim/commit/4686b323e4bc0f466500b018959f6c8965f010f9
Christian Brabandt <cb@256bit.org>
parents:
7350
diff
changeset
|
2200 981, |
ddab7ae8796d
commit https://github.com/vim/vim/commit/4686b323e4bc0f466500b018959f6c8965f010f9
Christian Brabandt <cb@256bit.org>
parents:
7350
diff
changeset
|
2201 /**/ |
7350
5ac8ee7bf4ff
commit https://github.com/vim/vim/commit/57d7971b5f1621071176eea81cdb0d1fc50c925d
Christian Brabandt <cb@256bit.org>
parents:
7347
diff
changeset
|
2202 980, |
5ac8ee7bf4ff
commit https://github.com/vim/vim/commit/57d7971b5f1621071176eea81cdb0d1fc50c925d
Christian Brabandt <cb@256bit.org>
parents:
7347
diff
changeset
|
2203 /**/ |
7347
8977b399cf55
commit https://github.com/vim/vim/commit/4a8c2cfc56b9affc36934aa0f20d8cfd2b1511c8
Christian Brabandt <cb@256bit.org>
parents:
7345
diff
changeset
|
2204 979, |
8977b399cf55
commit https://github.com/vim/vim/commit/4a8c2cfc56b9affc36934aa0f20d8cfd2b1511c8
Christian Brabandt <cb@256bit.org>
parents:
7345
diff
changeset
|
2205 /**/ |
7345
e88aee1842ba
commit https://github.com/vim/vim/commit/c42b9c670ea621d4dac0f216e011a6db576c5136
Christian Brabandt <cb@256bit.org>
parents:
7344
diff
changeset
|
2206 978, |
e88aee1842ba
commit https://github.com/vim/vim/commit/c42b9c670ea621d4dac0f216e011a6db576c5136
Christian Brabandt <cb@256bit.org>
parents:
7344
diff
changeset
|
2207 /**/ |
7344
68f2cac6b0db
commit https://github.com/vim/vim/commit/9bc01ebb957d2b30d57bd30d7aee6f1df2a336b0
Christian Brabandt <cb@256bit.org>
parents:
7342
diff
changeset
|
2208 977, |
68f2cac6b0db
commit https://github.com/vim/vim/commit/9bc01ebb957d2b30d57bd30d7aee6f1df2a336b0
Christian Brabandt <cb@256bit.org>
parents:
7342
diff
changeset
|
2209 /**/ |
7342
b871e4bdb319
commit https://github.com/vim/vim/commit/8def26a0f5f5535e9af64e715cb80845fc8ec322
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
2210 976, |
b871e4bdb319
commit https://github.com/vim/vim/commit/8def26a0f5f5535e9af64e715cb80845fc8ec322
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
2211 /**/ |
7340
645abb8d8daf
commit https://github.com/vim/vim/commit/75e3ad019933f4879137775549261bf51985ab7d
Christian Brabandt <cb@256bit.org>
parents:
7338
diff
changeset
|
2212 975, |
645abb8d8daf
commit https://github.com/vim/vim/commit/75e3ad019933f4879137775549261bf51985ab7d
Christian Brabandt <cb@256bit.org>
parents:
7338
diff
changeset
|
2213 /**/ |
7338
96d5dd9e7bc9
commit https://github.com/vim/vim/commit/f29a82dcd0914c76f595d475ddac4517371fab2b
Christian Brabandt <cb@256bit.org>
parents:
7336
diff
changeset
|
2214 974, |
96d5dd9e7bc9
commit https://github.com/vim/vim/commit/f29a82dcd0914c76f595d475ddac4517371fab2b
Christian Brabandt <cb@256bit.org>
parents:
7336
diff
changeset
|
2215 /**/ |
7336
4c5f53a60543
commit https://github.com/vim/vim/commit/6f62fed349bf829da2adb02619dc9acba13c8ab6
Christian Brabandt <cb@256bit.org>
parents:
7334
diff
changeset
|
2216 973, |
4c5f53a60543
commit https://github.com/vim/vim/commit/6f62fed349bf829da2adb02619dc9acba13c8ab6
Christian Brabandt <cb@256bit.org>
parents:
7334
diff
changeset
|
2217 /**/ |
7334
6890f5a58109
commit https://github.com/vim/vim/commit/a98849670674264de699d7ab22ae4b9b32e78f4a
Christian Brabandt <cb@256bit.org>
parents:
7332
diff
changeset
|
2218 972, |
6890f5a58109
commit https://github.com/vim/vim/commit/a98849670674264de699d7ab22ae4b9b32e78f4a
Christian Brabandt <cb@256bit.org>
parents:
7332
diff
changeset
|
2219 /**/ |
7332
38e4f3a246eb
commit https://github.com/vim/vim/commit/099fdde0f073315b7f2700786ae533d23a556348
Christian Brabandt <cb@256bit.org>
parents:
7330
diff
changeset
|
2220 971, |
38e4f3a246eb
commit https://github.com/vim/vim/commit/099fdde0f073315b7f2700786ae533d23a556348
Christian Brabandt <cb@256bit.org>
parents:
7330
diff
changeset
|
2221 /**/ |
7330
8ab712f2c3b8
commit https://github.com/vim/vim/commit/9ec021a2b0dd35ba744a8e2a9430a643c85b922a
Christian Brabandt <cb@256bit.org>
parents:
7328
diff
changeset
|
2222 970, |
8ab712f2c3b8
commit https://github.com/vim/vim/commit/9ec021a2b0dd35ba744a8e2a9430a643c85b922a
Christian Brabandt <cb@256bit.org>
parents:
7328
diff
changeset
|
2223 /**/ |
7328
6679f41bddea
commit https://github.com/vim/vim/commit/35be4534c029148a89ccc41e8e465d793e7ed7c2
Christian Brabandt <cb@256bit.org>
parents:
7326
diff
changeset
|
2224 969, |
6679f41bddea
commit https://github.com/vim/vim/commit/35be4534c029148a89ccc41e8e465d793e7ed7c2
Christian Brabandt <cb@256bit.org>
parents:
7326
diff
changeset
|
2225 /**/ |
7326
d4e1c1705137
commit https://github.com/vim/vim/commit/b65c749ac5a8a990d53493e3b9677142b1b9e4ce
Christian Brabandt <cb@256bit.org>
parents:
7324
diff
changeset
|
2226 968, |
d4e1c1705137
commit https://github.com/vim/vim/commit/b65c749ac5a8a990d53493e3b9677142b1b9e4ce
Christian Brabandt <cb@256bit.org>
parents:
7324
diff
changeset
|
2227 /**/ |
7324
a3b8a63c88ef
commit https://github.com/vim/vim/commit/6b90351786eb0915336b576cc930300bf5c9ac63
Christian Brabandt <cb@256bit.org>
parents:
7322
diff
changeset
|
2228 967, |
a3b8a63c88ef
commit https://github.com/vim/vim/commit/6b90351786eb0915336b576cc930300bf5c9ac63
Christian Brabandt <cb@256bit.org>
parents:
7322
diff
changeset
|
2229 /**/ |
7322
6f398bb76c29
commit https://github.com/vim/vim/commit/49222bee65228c7b5994b33c1568394c3cbf4583
Christian Brabandt <cb@256bit.org>
parents:
7320
diff
changeset
|
2230 966, |
6f398bb76c29
commit https://github.com/vim/vim/commit/49222bee65228c7b5994b33c1568394c3cbf4583
Christian Brabandt <cb@256bit.org>
parents:
7320
diff
changeset
|
2231 /**/ |
7320
cc484bbb73dc
commit https://github.com/vim/vim/commit/941aea2b975623a0c8bc24b140881ef0032a8bb8
Christian Brabandt <cb@256bit.org>
parents:
7318
diff
changeset
|
2232 965, |
cc484bbb73dc
commit https://github.com/vim/vim/commit/941aea2b975623a0c8bc24b140881ef0032a8bb8
Christian Brabandt <cb@256bit.org>
parents:
7318
diff
changeset
|
2233 /**/ |
7318
de124c05fe4f
commit https://github.com/vim/vim/commit/91376b63877c113fe9a3fff2c1b04bf9504f447f
Christian Brabandt <cb@256bit.org>
parents:
7316
diff
changeset
|
2234 964, |
de124c05fe4f
commit https://github.com/vim/vim/commit/91376b63877c113fe9a3fff2c1b04bf9504f447f
Christian Brabandt <cb@256bit.org>
parents:
7316
diff
changeset
|
2235 /**/ |
7316
6170f4945b83
commit https://github.com/vim/vim/commit/1c57fe8b9450eb29c3e42a94527d4b7514f853e2
Christian Brabandt <cb@256bit.org>
parents:
7313
diff
changeset
|
2236 963, |
6170f4945b83
commit https://github.com/vim/vim/commit/1c57fe8b9450eb29c3e42a94527d4b7514f853e2
Christian Brabandt <cb@256bit.org>
parents:
7313
diff
changeset
|
2237 /**/ |
7313
2062247be2d0
commit https://github.com/vim/vim/commit/3f12a2421bda43a4e48c822541b75f72ee11125a
Christian Brabandt <cb@256bit.org>
parents:
7311
diff
changeset
|
2238 962, |
2062247be2d0
commit https://github.com/vim/vim/commit/3f12a2421bda43a4e48c822541b75f72ee11125a
Christian Brabandt <cb@256bit.org>
parents:
7311
diff
changeset
|
2239 /**/ |
7311
743c258ca3ab
commit https://github.com/vim/vim/commit/9dc2ce398bb3456cc8f590ef0260459798b34d2a
Christian Brabandt <cb@256bit.org>
parents:
7309
diff
changeset
|
2240 961, |
743c258ca3ab
commit https://github.com/vim/vim/commit/9dc2ce398bb3456cc8f590ef0260459798b34d2a
Christian Brabandt <cb@256bit.org>
parents:
7309
diff
changeset
|
2241 /**/ |
7309
c412b0922c27
commit https://github.com/vim/vim/commit/90f5d0a5c3bbfeefcbc4d6eac59cf225ec714b28
Christian Brabandt <cb@256bit.org>
parents:
7307
diff
changeset
|
2242 960, |
c412b0922c27
commit https://github.com/vim/vim/commit/90f5d0a5c3bbfeefcbc4d6eac59cf225ec714b28
Christian Brabandt <cb@256bit.org>
parents:
7307
diff
changeset
|
2243 /**/ |
7307
5d9e27621ffa
commit https://github.com/vim/vim/commit/0379d01c52e7930ccfc9133f229fba54a2024a42
Christian Brabandt <cb@256bit.org>
parents:
7305
diff
changeset
|
2244 959, |
5d9e27621ffa
commit https://github.com/vim/vim/commit/0379d01c52e7930ccfc9133f229fba54a2024a42
Christian Brabandt <cb@256bit.org>
parents:
7305
diff
changeset
|
2245 /**/ |
7305
372c785c04b6
commit https://github.com/vim/vim/commit/e1a61991d9b6fd5f65636d17583f93118268cda5
Christian Brabandt <cb@256bit.org>
parents:
7303
diff
changeset
|
2246 958, |
372c785c04b6
commit https://github.com/vim/vim/commit/e1a61991d9b6fd5f65636d17583f93118268cda5
Christian Brabandt <cb@256bit.org>
parents:
7303
diff
changeset
|
2247 /**/ |
7303
88f9d339026b
commit https://github.com/vim/vim/commit/bc96c29ffc753daef302d20322d1e3d560094f44
Christian Brabandt <cb@256bit.org>
parents:
7301
diff
changeset
|
2248 957, |
88f9d339026b
commit https://github.com/vim/vim/commit/bc96c29ffc753daef302d20322d1e3d560094f44
Christian Brabandt <cb@256bit.org>
parents:
7301
diff
changeset
|
2249 /**/ |
7301
514f51fa1966
commit https://github.com/vim/vim/commit/f882d9f89dbe24ab1ba4bc88529bef28242fd2ed
Christian Brabandt <cb@256bit.org>
parents:
7299
diff
changeset
|
2250 956, |
514f51fa1966
commit https://github.com/vim/vim/commit/f882d9f89dbe24ab1ba4bc88529bef28242fd2ed
Christian Brabandt <cb@256bit.org>
parents:
7299
diff
changeset
|
2251 /**/ |
7299
e31e803a2910
commit https://github.com/vim/vim/commit/3b8fcd945c5f0ee104eaabcf969fb6f973e79c77
Christian Brabandt <cb@256bit.org>
parents:
7297
diff
changeset
|
2252 955, |
e31e803a2910
commit https://github.com/vim/vim/commit/3b8fcd945c5f0ee104eaabcf969fb6f973e79c77
Christian Brabandt <cb@256bit.org>
parents:
7297
diff
changeset
|
2253 /**/ |
7297
67c7a524b84f
commit https://github.com/vim/vim/commit/f609dcf8c1094f6fc95f4fc36321a1fb08a7110c
Christian Brabandt <cb@256bit.org>
parents:
7295
diff
changeset
|
2254 954, |
67c7a524b84f
commit https://github.com/vim/vim/commit/f609dcf8c1094f6fc95f4fc36321a1fb08a7110c
Christian Brabandt <cb@256bit.org>
parents:
7295
diff
changeset
|
2255 /**/ |
7295
6922fcadafe6
commit https://github.com/vim/vim/commit/de0ad40cb3c1bc691a754698ed16a5b6cdb4086b
Christian Brabandt <cb@256bit.org>
parents:
7293
diff
changeset
|
2256 953, |
6922fcadafe6
commit https://github.com/vim/vim/commit/de0ad40cb3c1bc691a754698ed16a5b6cdb4086b
Christian Brabandt <cb@256bit.org>
parents:
7293
diff
changeset
|
2257 /**/ |
7293
979f8a595326
commit https://github.com/vim/vim/commit/6cd1345307440491580e5e86cb82c54ee9a46baa
Christian Brabandt <cb@256bit.org>
parents:
7291
diff
changeset
|
2258 952, |
979f8a595326
commit https://github.com/vim/vim/commit/6cd1345307440491580e5e86cb82c54ee9a46baa
Christian Brabandt <cb@256bit.org>
parents:
7291
diff
changeset
|
2259 /**/ |
7291
6ffc75d807bd
commit https://github.com/vim/vim/commit/b00da1d6d1655cb6e415f84ecc3be5ff3b790811
Christian Brabandt <cb@256bit.org>
parents:
7289
diff
changeset
|
2260 951, |
6ffc75d807bd
commit https://github.com/vim/vim/commit/b00da1d6d1655cb6e415f84ecc3be5ff3b790811
Christian Brabandt <cb@256bit.org>
parents:
7289
diff
changeset
|
2261 /**/ |
7289
32efe489afc5
commit https://github.com/vim/vim/commit/4649ded2877508fe343cbcf6f7e7fd277be0aab3
Christian Brabandt <cb@256bit.org>
parents:
7287
diff
changeset
|
2262 950, |
32efe489afc5
commit https://github.com/vim/vim/commit/4649ded2877508fe343cbcf6f7e7fd277be0aab3
Christian Brabandt <cb@256bit.org>
parents:
7287
diff
changeset
|
2263 /**/ |
7287
6fcadba9ec7a
commit https://github.com/vim/vim/commit/32a214e78df0120f92fe049eab1385c60f0cdb0b
Christian Brabandt <cb@256bit.org>
parents:
7285
diff
changeset
|
2264 949, |
6fcadba9ec7a
commit https://github.com/vim/vim/commit/32a214e78df0120f92fe049eab1385c60f0cdb0b
Christian Brabandt <cb@256bit.org>
parents:
7285
diff
changeset
|
2265 /**/ |
7285
a34232b17763
commit https://github.com/vim/vim/commit/20ad69ccfb60ef718bd26387ef0e5424461a643e
Christian Brabandt <cb@256bit.org>
parents:
7283
diff
changeset
|
2266 948, |
a34232b17763
commit https://github.com/vim/vim/commit/20ad69ccfb60ef718bd26387ef0e5424461a643e
Christian Brabandt <cb@256bit.org>
parents:
7283
diff
changeset
|
2267 /**/ |
7283
631cd8059bf4
commit https://github.com/vim/vim/commit/5311c02f25eed8f34e8a80becb98e86264f371c3
Christian Brabandt <cb@256bit.org>
parents:
7281
diff
changeset
|
2268 947, |
631cd8059bf4
commit https://github.com/vim/vim/commit/5311c02f25eed8f34e8a80becb98e86264f371c3
Christian Brabandt <cb@256bit.org>
parents:
7281
diff
changeset
|
2269 /**/ |
7281
2a4593702d5c
commit https://github.com/vim/vim/commit/bbfbaf9741deebb9f1ed790885bd571c4cbce17a
Christian Brabandt <cb@256bit.org>
parents:
7279
diff
changeset
|
2270 946, |
2a4593702d5c
commit https://github.com/vim/vim/commit/bbfbaf9741deebb9f1ed790885bd571c4cbce17a
Christian Brabandt <cb@256bit.org>
parents:
7279
diff
changeset
|
2271 /**/ |
7279
b5e9810b389d
commit https://github.com/vim/vim/commit/683fa185a4b4ed7595e5942901548b8239ed5cdb
Christian Brabandt <cb@256bit.org>
parents:
7277
diff
changeset
|
2272 945, |
b5e9810b389d
commit https://github.com/vim/vim/commit/683fa185a4b4ed7595e5942901548b8239ed5cdb
Christian Brabandt <cb@256bit.org>
parents:
7277
diff
changeset
|
2273 /**/ |
7277
6600871bb38c
commit https://github.com/vim/vim/commit/43345546ae63710441f066648b8485fb545b3801
Christian Brabandt <cb@256bit.org>
parents:
7275
diff
changeset
|
2274 944, |
6600871bb38c
commit https://github.com/vim/vim/commit/43345546ae63710441f066648b8485fb545b3801
Christian Brabandt <cb@256bit.org>
parents:
7275
diff
changeset
|
2275 /**/ |
7275
4b4ac70f5173
commit https://github.com/vim/vim/commit/48a969b48898fb08dce636c6b918408c6fbd3ea0
Christian Brabandt <cb@256bit.org>
parents:
7273
diff
changeset
|
2276 943, |
4b4ac70f5173
commit https://github.com/vim/vim/commit/48a969b48898fb08dce636c6b918408c6fbd3ea0
Christian Brabandt <cb@256bit.org>
parents:
7273
diff
changeset
|
2277 /**/ |
7273
73207eca53f5
commit https://github.com/vim/vim/commit/60422e68a3a555144f8c76c666f050e8d104c16b
Christian Brabandt <cb@256bit.org>
parents:
7266
diff
changeset
|
2278 942, |
73207eca53f5
commit https://github.com/vim/vim/commit/60422e68a3a555144f8c76c666f050e8d104c16b
Christian Brabandt <cb@256bit.org>
parents:
7266
diff
changeset
|
2279 /**/ |
7266
6ba7182fb7bd
commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents:
7264
diff
changeset
|
2280 941, |
6ba7182fb7bd
commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents:
7264
diff
changeset
|
2281 /**/ |
7264
b1b86aa171cd
commit https://github.com/vim/vim/commit/2a1b474fd82aff922f18570593972b12feaa2073
Christian Brabandt <cb@256bit.org>
parents:
7262
diff
changeset
|
2282 940, |
b1b86aa171cd
commit https://github.com/vim/vim/commit/2a1b474fd82aff922f18570593972b12feaa2073
Christian Brabandt <cb@256bit.org>
parents:
7262
diff
changeset
|
2283 /**/ |
7262
fadf7fc3b666
commit https://github.com/vim/vim/commit/9a7d58e42ed54406437c2394e5a489ee6a9e4220
Christian Brabandt <cb@256bit.org>
parents:
7260
diff
changeset
|
2284 939, |
fadf7fc3b666
commit https://github.com/vim/vim/commit/9a7d58e42ed54406437c2394e5a489ee6a9e4220
Christian Brabandt <cb@256bit.org>
parents:
7260
diff
changeset
|
2285 /**/ |
7260
8ba562cb3e07
commit https://github.com/vim/vim/commit/88e484bf1b0afb5f2dec44f19335729578ace66a
Christian Brabandt <cb@256bit.org>
parents:
7258
diff
changeset
|
2286 938, |
8ba562cb3e07
commit https://github.com/vim/vim/commit/88e484bf1b0afb5f2dec44f19335729578ace66a
Christian Brabandt <cb@256bit.org>
parents:
7258
diff
changeset
|
2287 /**/ |
7258
7245d8635ac7
commit https://github.com/vim/vim/commit/5ad075c0735d3d8b97708d17c22de8facb15f997
Christian Brabandt <cb@256bit.org>
parents:
7256
diff
changeset
|
2288 937, |
7245d8635ac7
commit https://github.com/vim/vim/commit/5ad075c0735d3d8b97708d17c22de8facb15f997
Christian Brabandt <cb@256bit.org>
parents:
7256
diff
changeset
|
2289 /**/ |
7256
79270eaac6de
commit https://github.com/vim/vim/commit/294a7e55b01149154807a23323038784549b8946
Christian Brabandt <cb@256bit.org>
parents:
7254
diff
changeset
|
2290 936, |
79270eaac6de
commit https://github.com/vim/vim/commit/294a7e55b01149154807a23323038784549b8946
Christian Brabandt <cb@256bit.org>
parents:
7254
diff
changeset
|
2291 /**/ |
7254
b4b7b06c7951
commit https://github.com/vim/vim/commit/6040256d8b0404564ac6f192296b12ea9d175e7d
Christian Brabandt <cb@256bit.org>
parents:
7252
diff
changeset
|
2292 935, |
b4b7b06c7951
commit https://github.com/vim/vim/commit/6040256d8b0404564ac6f192296b12ea9d175e7d
Christian Brabandt <cb@256bit.org>
parents:
7252
diff
changeset
|
2293 /**/ |
7252
1b591fcf2517
commit https://github.com/vim/vim/commit/7487792ab14c1fb8dbdb37bdd74265d8b1d3be50
Christian Brabandt <cb@256bit.org>
parents:
7250
diff
changeset
|
2294 934, |
1b591fcf2517
commit https://github.com/vim/vim/commit/7487792ab14c1fb8dbdb37bdd74265d8b1d3be50
Christian Brabandt <cb@256bit.org>
parents:
7250
diff
changeset
|
2295 /**/ |
7250
99476f1aaacd
commit https://github.com/vim/vim/commit/e4eda3bc7157932b0bf380fd3fdc1ba8f4438b60
Christian Brabandt <cb@256bit.org>
parents:
7248
diff
changeset
|
2296 933, |
99476f1aaacd
commit https://github.com/vim/vim/commit/e4eda3bc7157932b0bf380fd3fdc1ba8f4438b60
Christian Brabandt <cb@256bit.org>
parents:
7248
diff
changeset
|
2297 /**/ |
7248
dc7b1567d057
commit https://github.com/vim/vim/commit/8f08dab18df6dbf6c4b4973fd2d480e4bffb82d8
Christian Brabandt <cb@256bit.org>
parents:
7246
diff
changeset
|
2298 932, |
dc7b1567d057
commit https://github.com/vim/vim/commit/8f08dab18df6dbf6c4b4973fd2d480e4bffb82d8
Christian Brabandt <cb@256bit.org>
parents:
7246
diff
changeset
|
2299 /**/ |
7246
a69b5e4beefd
commit https://github.com/vim/vim/commit/cfcd1ddd103129b309671cba5cff55e19a9908e4
Christian Brabandt <cb@256bit.org>
parents:
7243
diff
changeset
|
2300 931, |
a69b5e4beefd
commit https://github.com/vim/vim/commit/cfcd1ddd103129b309671cba5cff55e19a9908e4
Christian Brabandt <cb@256bit.org>
parents:
7243
diff
changeset
|
2301 /**/ |
7243
861a44fc5183
commit https://github.com/vim/vim/commit/97b0b0ec764d3a247ef600d809b965d5ab37155d
Christian Brabandt <cb@256bit.org>
parents:
7241
diff
changeset
|
2302 930, |
861a44fc5183
commit https://github.com/vim/vim/commit/97b0b0ec764d3a247ef600d809b965d5ab37155d
Christian Brabandt <cb@256bit.org>
parents:
7241
diff
changeset
|
2303 /**/ |
7241
0c1278704b5c
commit https://github.com/vim/vim/commit/d29c6fea94947b3f4b54fbd5a6f832a7d744bf27
Christian Brabandt <cb@256bit.org>
parents:
7239
diff
changeset
|
2304 929, |
0c1278704b5c
commit https://github.com/vim/vim/commit/d29c6fea94947b3f4b54fbd5a6f832a7d744bf27
Christian Brabandt <cb@256bit.org>
parents:
7239
diff
changeset
|
2305 /**/ |
7239
89c6f7c6704a
commit https://github.com/vim/vim/commit/5d8afebb5bf7fb1e8ce06062451dc6a1f9a53ac0
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
2306 928, |
89c6f7c6704a
commit https://github.com/vim/vim/commit/5d8afebb5bf7fb1e8ce06062451dc6a1f9a53ac0
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
2307 /**/ |
7237
2a95fa0a07b5
commit https://github.com/vim/vim/commit/9b1067e038d371bd6c51e5da025383761f4921b4
Christian Brabandt <cb@256bit.org>
parents:
7235
diff
changeset
|
2308 927, |
2a95fa0a07b5
commit https://github.com/vim/vim/commit/9b1067e038d371bd6c51e5da025383761f4921b4
Christian Brabandt <cb@256bit.org>
parents:
7235
diff
changeset
|
2309 /**/ |
7235
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7233
diff
changeset
|
2310 926, |
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7233
diff
changeset
|
2311 /**/ |
7233
9487ea110214
commit https://github.com/vim/vim/commit/a0ed84a26897c994512873a895b9fc54e90c6845
Christian Brabandt <cb@256bit.org>
parents:
7231
diff
changeset
|
2312 925, |
9487ea110214
commit https://github.com/vim/vim/commit/a0ed84a26897c994512873a895b9fc54e90c6845
Christian Brabandt <cb@256bit.org>
parents:
7231
diff
changeset
|
2313 /**/ |
7231
a4d10eec6356
commit https://github.com/vim/vim/commit/32d03b34ac8a34a962f57847fc431a2b4e14efea
Christian Brabandt <cb@256bit.org>
parents:
7229
diff
changeset
|
2314 924, |
a4d10eec6356
commit https://github.com/vim/vim/commit/32d03b34ac8a34a962f57847fc431a2b4e14efea
Christian Brabandt <cb@256bit.org>
parents:
7229
diff
changeset
|
2315 /**/ |
7229
ae360f1df2aa
commit https://github.com/vim/vim/commit/6a2697ffd7e894861853b351689b0ddec8901c96
Christian Brabandt <cb@256bit.org>
parents:
7226
diff
changeset
|
2316 923, |
ae360f1df2aa
commit https://github.com/vim/vim/commit/6a2697ffd7e894861853b351689b0ddec8901c96
Christian Brabandt <cb@256bit.org>
parents:
7226
diff
changeset
|
2317 /**/ |
7226
9b350a65138a
commit https://github.com/vim/vim/commit/1c2836e268ce930bca9ea1287d0d83e92ce1b3ff
Christian Brabandt <cb@256bit.org>
parents:
7224
diff
changeset
|
2318 922, |
9b350a65138a
commit https://github.com/vim/vim/commit/1c2836e268ce930bca9ea1287d0d83e92ce1b3ff
Christian Brabandt <cb@256bit.org>
parents:
7224
diff
changeset
|
2319 /**/ |
7224
42bf8902d4da
commit https://github.com/vim/vim/commit/cd1c55f706c2f9b8310b8a9fc1f8226c7fd19372
Christian Brabandt <cb@256bit.org>
parents:
7222
diff
changeset
|
2320 921, |
42bf8902d4da
commit https://github.com/vim/vim/commit/cd1c55f706c2f9b8310b8a9fc1f8226c7fd19372
Christian Brabandt <cb@256bit.org>
parents:
7222
diff
changeset
|
2321 /**/ |
7222
4e86d5700260
commit https://github.com/vim/vim/commit/a93f975e8b39d7cfc8145dbe181cc4e5e4ec0bdf
Christian Brabandt <cb@256bit.org>
parents:
7220
diff
changeset
|
2322 920, |
4e86d5700260
commit https://github.com/vim/vim/commit/a93f975e8b39d7cfc8145dbe181cc4e5e4ec0bdf
Christian Brabandt <cb@256bit.org>
parents:
7220
diff
changeset
|
2323 /**/ |
7220
1931b890e7d7
commit https://github.com/vim/vim/commit/d4ece23e2e602d820ab7367c383dc0d72dd87029
Christian Brabandt <cb@256bit.org>
parents:
7218
diff
changeset
|
2324 919, |
1931b890e7d7
commit https://github.com/vim/vim/commit/d4ece23e2e602d820ab7367c383dc0d72dd87029
Christian Brabandt <cb@256bit.org>
parents:
7218
diff
changeset
|
2325 /**/ |
7218
36dc8df8560f
commit https://github.com/vim/vim/commit/0796c0625fa4b9eb2f47fe8c976b78523924e1fb
Christian Brabandt <cb@256bit.org>
parents:
7216
diff
changeset
|
2326 918, |
36dc8df8560f
commit https://github.com/vim/vim/commit/0796c0625fa4b9eb2f47fe8c976b78523924e1fb
Christian Brabandt <cb@256bit.org>
parents:
7216
diff
changeset
|
2327 /**/ |
7216
310925215e17
commit https://github.com/vim/vim/commit/1be2ed6c11671eabefa0fc8600fd2af6cd3963e8
Christian Brabandt <cb@256bit.org>
parents:
7214
diff
changeset
|
2328 917, |
310925215e17
commit https://github.com/vim/vim/commit/1be2ed6c11671eabefa0fc8600fd2af6cd3963e8
Christian Brabandt <cb@256bit.org>
parents:
7214
diff
changeset
|
2329 /**/ |
7214
e036defe034e
commit https://github.com/vim/vim/commit/8648357841065295e39831d2b559d87ca01a7a7c
Christian Brabandt <cb@256bit.org>
parents:
7212
diff
changeset
|
2330 916, |
e036defe034e
commit https://github.com/vim/vim/commit/8648357841065295e39831d2b559d87ca01a7a7c
Christian Brabandt <cb@256bit.org>
parents:
7212
diff
changeset
|
2331 /**/ |
7212
55c67e16e4fd
commit https://github.com/vim/vim/commit/174674743d9a2d7361c9cd89836f8dd8651edeeb
Christian Brabandt <cb@256bit.org>
parents:
7210
diff
changeset
|
2332 915, |
55c67e16e4fd
commit https://github.com/vim/vim/commit/174674743d9a2d7361c9cd89836f8dd8651edeeb
Christian Brabandt <cb@256bit.org>
parents:
7210
diff
changeset
|
2333 /**/ |
7210
08b50e436093
commit https://github.com/vim/vim/commit/98b30a473a58ae98c280e0383c8b1e08c0ebced5
Christian Brabandt <cb@256bit.org>
parents:
7208
diff
changeset
|
2334 914, |
08b50e436093
commit https://github.com/vim/vim/commit/98b30a473a58ae98c280e0383c8b1e08c0ebced5
Christian Brabandt <cb@256bit.org>
parents:
7208
diff
changeset
|
2335 /**/ |
7208
2c00f6b312bf
commit https://github.com/vim/vim/commit/72f4cc4a987d123c0ed909c85b9a05f65cef7202
Christian Brabandt <cb@256bit.org>
parents:
7206
diff
changeset
|
2336 913, |
2c00f6b312bf
commit https://github.com/vim/vim/commit/72f4cc4a987d123c0ed909c85b9a05f65cef7202
Christian Brabandt <cb@256bit.org>
parents:
7206
diff
changeset
|
2337 /**/ |
7206
c6a7305972fe
commit https://github.com/vim/vim/commit/e01f4f86cef7bed3cb99b26f9f57d86f6eb5fe1a
Christian Brabandt <cb@256bit.org>
parents:
7204
diff
changeset
|
2338 912, |
c6a7305972fe
commit https://github.com/vim/vim/commit/e01f4f86cef7bed3cb99b26f9f57d86f6eb5fe1a
Christian Brabandt <cb@256bit.org>
parents:
7204
diff
changeset
|
2339 /**/ |
7204
5fad7bc0fe83
commit https://github.com/vim/vim/commit/450ca4335e467ac29c1560b7397225a974aee3bf
Christian Brabandt <cb@256bit.org>
parents:
7202
diff
changeset
|
2340 911, |
5fad7bc0fe83
commit https://github.com/vim/vim/commit/450ca4335e467ac29c1560b7397225a974aee3bf
Christian Brabandt <cb@256bit.org>
parents:
7202
diff
changeset
|
2341 /**/ |
7202
de43f10a3850
commit https://github.com/vim/vim/commit/e7427f4b7e1af6a63600183be6b4c5724beb2f66
Christian Brabandt <cb@256bit.org>
parents:
7200
diff
changeset
|
2342 910, |
de43f10a3850
commit https://github.com/vim/vim/commit/e7427f4b7e1af6a63600183be6b4c5724beb2f66
Christian Brabandt <cb@256bit.org>
parents:
7200
diff
changeset
|
2343 /**/ |
7200
bc951043f655
commit https://github.com/vim/vim/commit/de59ba33aa3b94f2757dbf3451682d762c15ebcf
Christian Brabandt <cb@256bit.org>
parents:
7198
diff
changeset
|
2344 909, |
bc951043f655
commit https://github.com/vim/vim/commit/de59ba33aa3b94f2757dbf3451682d762c15ebcf
Christian Brabandt <cb@256bit.org>
parents:
7198
diff
changeset
|
2345 /**/ |
7198
b58e16f9119e
commit https://github.com/vim/vim/commit/a16f472edfa028e5574c7c145d02f3821edbc698
Christian Brabandt <cb@256bit.org>
parents:
7196
diff
changeset
|
2346 908, |
b58e16f9119e
commit https://github.com/vim/vim/commit/a16f472edfa028e5574c7c145d02f3821edbc698
Christian Brabandt <cb@256bit.org>
parents:
7196
diff
changeset
|
2347 /**/ |
7196
42717d048817
commit https://github.com/vim/vim/commit/d94464ee294a351ce7b6ba18e8bd3f24f1bef920
Christian Brabandt <cb@256bit.org>
parents:
7194
diff
changeset
|
2348 907, |
42717d048817
commit https://github.com/vim/vim/commit/d94464ee294a351ce7b6ba18e8bd3f24f1bef920
Christian Brabandt <cb@256bit.org>
parents:
7194
diff
changeset
|
2349 /**/ |
7194
272f04b41f51
commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents:
7191
diff
changeset
|
2350 906, |
272f04b41f51
commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents:
7191
diff
changeset
|
2351 /**/ |
7191
692dac7183de
commit https://github.com/vim/vim/commit/d424747d5821c2873e24d25d3407d08b25ea3443
Christian Brabandt <cb@256bit.org>
parents:
7189
diff
changeset
|
2352 905, |
692dac7183de
commit https://github.com/vim/vim/commit/d424747d5821c2873e24d25d3407d08b25ea3443
Christian Brabandt <cb@256bit.org>
parents:
7189
diff
changeset
|
2353 /**/ |
7189
0b4387f570ec
commit https://github.com/vim/vim/commit/6407b3e80d7d7f8f0797c13ae35cc06f96be46c9
Christian Brabandt <cb@256bit.org>
parents:
7186
diff
changeset
|
2354 904, |
0b4387f570ec
commit https://github.com/vim/vim/commit/6407b3e80d7d7f8f0797c13ae35cc06f96be46c9
Christian Brabandt <cb@256bit.org>
parents:
7186
diff
changeset
|
2355 /**/ |
7186
41885de3d577
commit https://github.com/vim/vim/commit/7314efd87d8c4095229bdc2867a553c36c064918
Christian Brabandt <cb@256bit.org>
parents:
7184
diff
changeset
|
2356 903, |
41885de3d577
commit https://github.com/vim/vim/commit/7314efd87d8c4095229bdc2867a553c36c064918
Christian Brabandt <cb@256bit.org>
parents:
7184
diff
changeset
|
2357 /**/ |
7184
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7181
diff
changeset
|
2358 902, |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7181
diff
changeset
|
2359 /**/ |
7181
ce8b286e89ef
commit https://github.com/vim/vim/commit/e7d1376b636e6c758196c3542bd2c1053f9edb75
Christian Brabandt <cb@256bit.org>
parents:
7179
diff
changeset
|
2360 901, |
ce8b286e89ef
commit https://github.com/vim/vim/commit/e7d1376b636e6c758196c3542bd2c1053f9edb75
Christian Brabandt <cb@256bit.org>
parents:
7179
diff
changeset
|
2361 /**/ |
7179
f7d6cc6b78b5
commit https://github.com/vim/vim/commit/f1a4c98ea6fa122ceb24c1ad17e184703cbfd182
Christian Brabandt <cb@256bit.org>
parents:
7177
diff
changeset
|
2362 900, |
f7d6cc6b78b5
commit https://github.com/vim/vim/commit/f1a4c98ea6fa122ceb24c1ad17e184703cbfd182
Christian Brabandt <cb@256bit.org>
parents:
7177
diff
changeset
|
2363 /**/ |
7177
c4d677c50b9b
commit https://github.com/vim/vim/commit/c92399f4ee6d0289dbe5d708d14a84e32f617bd5
Christian Brabandt <cb@256bit.org>
parents:
7174
diff
changeset
|
2364 899, |
c4d677c50b9b
commit https://github.com/vim/vim/commit/c92399f4ee6d0289dbe5d708d14a84e32f617bd5
Christian Brabandt <cb@256bit.org>
parents:
7174
diff
changeset
|
2365 /**/ |
7174
22f87d5e9533
commit https://github.com/vim/vim/commit/04dfd512293e951479aec2378753b946c39bea87
Christian Brabandt <cb@256bit.org>
parents:
7172
diff
changeset
|
2366 898, |
22f87d5e9533
commit https://github.com/vim/vim/commit/04dfd512293e951479aec2378753b946c39bea87
Christian Brabandt <cb@256bit.org>
parents:
7172
diff
changeset
|
2367 /**/ |
7172
ad57f5b5bd6c
commit https://github.com/vim/vim/commit/4e86150ec5b5158da92b28938ea55819dc890a14
Christian Brabandt <cb@256bit.org>
parents:
7170
diff
changeset
|
2368 897, |
ad57f5b5bd6c
commit https://github.com/vim/vim/commit/4e86150ec5b5158da92b28938ea55819dc890a14
Christian Brabandt <cb@256bit.org>
parents:
7170
diff
changeset
|
2369 /**/ |
7170
beb67ef38f88
commit https://github.com/vim/vim/commit/b4f6a46b01ed00b642a2271e9d1559e51ab0f2c4
Christian Brabandt <cb@256bit.org>
parents:
7168
diff
changeset
|
2370 896, |
beb67ef38f88
commit https://github.com/vim/vim/commit/b4f6a46b01ed00b642a2271e9d1559e51ab0f2c4
Christian Brabandt <cb@256bit.org>
parents:
7168
diff
changeset
|
2371 /**/ |
7168
0f2807c05687
commit https://github.com/vim/vim/commit/23d1b62746dce048c80cc19e7e5af1d513b6b4cf
Christian Brabandt <cb@256bit.org>
parents:
7166
diff
changeset
|
2372 895, |
0f2807c05687
commit https://github.com/vim/vim/commit/23d1b62746dce048c80cc19e7e5af1d513b6b4cf
Christian Brabandt <cb@256bit.org>
parents:
7166
diff
changeset
|
2373 /**/ |
7166
fbec41e5651e
commit https://github.com/vim/vim/commit/f59c73da1e8eb16e7b49b4465aedd1d6ddacc6fd
Christian Brabandt <cb@256bit.org>
parents:
7164
diff
changeset
|
2374 894, |
fbec41e5651e
commit https://github.com/vim/vim/commit/f59c73da1e8eb16e7b49b4465aedd1d6ddacc6fd
Christian Brabandt <cb@256bit.org>
parents:
7164
diff
changeset
|
2375 /**/ |
7164
d3c57e7f489a
commit https://github.com/vim/vim/commit/d1b15dec4d00d7ed5e92ff4e0fb7fc2e0818e479
Christian Brabandt <cb@256bit.org>
parents:
7162
diff
changeset
|
2376 893, |
d3c57e7f489a
commit https://github.com/vim/vim/commit/d1b15dec4d00d7ed5e92ff4e0fb7fc2e0818e479
Christian Brabandt <cb@256bit.org>
parents:
7162
diff
changeset
|
2377 /**/ |
7162
fe090e9cd10a
commit https://github.com/vim/vim/commit/9d6ca1cc5ebb6e61cc2ef73aecfbb0bdbb65432f
Christian Brabandt <cb@256bit.org>
parents:
7160
diff
changeset
|
2378 892, |
fe090e9cd10a
commit https://github.com/vim/vim/commit/9d6ca1cc5ebb6e61cc2ef73aecfbb0bdbb65432f
Christian Brabandt <cb@256bit.org>
parents:
7160
diff
changeset
|
2379 /**/ |
7160
accd3a0e9bf4
commit https://github.com/vim/vim/commit/089af18d1fd0961ff504ee72db0156bbfe509cdf
Christian Brabandt <cb@256bit.org>
parents:
7158
diff
changeset
|
2380 891, |
accd3a0e9bf4
commit https://github.com/vim/vim/commit/089af18d1fd0961ff504ee72db0156bbfe509cdf
Christian Brabandt <cb@256bit.org>
parents:
7158
diff
changeset
|
2381 /**/ |
7158
43ac8dc380c7
commit https://github.com/vim/vim/commit/094454fa708d3297db744f095cd2b7b155a8b6ad
Christian Brabandt <cb@256bit.org>
parents:
7156
diff
changeset
|
2382 890, |
43ac8dc380c7
commit https://github.com/vim/vim/commit/094454fa708d3297db744f095cd2b7b155a8b6ad
Christian Brabandt <cb@256bit.org>
parents:
7156
diff
changeset
|
2383 /**/ |
7156
0b4e65cf84fb
commit https://github.com/vim/vim/commit/74b738d414b2895b3365e26ae3b7792eb82ccf47
Christian Brabandt <cb@256bit.org>
parents:
7154
diff
changeset
|
2384 889, |
0b4e65cf84fb
commit https://github.com/vim/vim/commit/74b738d414b2895b3365e26ae3b7792eb82ccf47
Christian Brabandt <cb@256bit.org>
parents:
7154
diff
changeset
|
2385 /**/ |
7154
a01294e1c02f
commit https://github.com/vim/vim/commit/ba117c23dfd1146aca3235bea172df17a48bccee
Christian Brabandt <cb@256bit.org>
parents:
7152
diff
changeset
|
2386 888, |
a01294e1c02f
commit https://github.com/vim/vim/commit/ba117c23dfd1146aca3235bea172df17a48bccee
Christian Brabandt <cb@256bit.org>
parents:
7152
diff
changeset
|
2387 /**/ |
7152
cbdc02d71a18
commit https://github.com/vim/vim/commit/c2b717ebd6719e722dcb5f10e4c74033a53ff7c7
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2388 887, |
cbdc02d71a18
commit https://github.com/vim/vim/commit/c2b717ebd6719e722dcb5f10e4c74033a53ff7c7
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2389 /**/ |
7150
46390681bd80
commit https://github.com/vim/vim/commit/1d478a6242871dcf4566814d3c6208df17991426
Christian Brabandt <cb@256bit.org>
parents:
7148
diff
changeset
|
2390 886, |
46390681bd80
commit https://github.com/vim/vim/commit/1d478a6242871dcf4566814d3c6208df17991426
Christian Brabandt <cb@256bit.org>
parents:
7148
diff
changeset
|
2391 /**/ |
7148
339e657a6ed6
commit https://github.com/vim/vim/commit/c79a5452acd695238798947e40086f9823c400e7
Christian Brabandt <cb@256bit.org>
parents:
7145
diff
changeset
|
2392 885, |
339e657a6ed6
commit https://github.com/vim/vim/commit/c79a5452acd695238798947e40086f9823c400e7
Christian Brabandt <cb@256bit.org>
parents:
7145
diff
changeset
|
2393 /**/ |
7145
7669c1269190
commit https://github.com/vim/vim/commit/c1d20998d71f3fa0aebeeee42007a337cd7e3d8a
Christian Brabandt <cb@256bit.org>
parents:
7143
diff
changeset
|
2394 884, |
7669c1269190
commit https://github.com/vim/vim/commit/c1d20998d71f3fa0aebeeee42007a337cd7e3d8a
Christian Brabandt <cb@256bit.org>
parents:
7143
diff
changeset
|
2395 /**/ |
7143
fe6d525d12f4
commit https://github.com/vim/vim/commit/10ad1d90da8c464e1bf08bf23d92d4888378a8a1
Christian Brabandt <cb@256bit.org>
parents:
7141
diff
changeset
|
2396 883, |
fe6d525d12f4
commit https://github.com/vim/vim/commit/10ad1d90da8c464e1bf08bf23d92d4888378a8a1
Christian Brabandt <cb@256bit.org>
parents:
7141
diff
changeset
|
2397 /**/ |
7141
4e8f07fc7ca3
commit https://github.com/vim/vim/commit/5f1fea28f5bc573e2430773c49e95ae1f9cc2a25
Christian Brabandt <cb@256bit.org>
parents:
7139
diff
changeset
|
2398 882, |
4e8f07fc7ca3
commit https://github.com/vim/vim/commit/5f1fea28f5bc573e2430773c49e95ae1f9cc2a25
Christian Brabandt <cb@256bit.org>
parents:
7139
diff
changeset
|
2399 /**/ |
7139
d1e35ca56c73
commit https://github.com/vim/vim/commit/0a777ab9890ba0e8dd57f082e98fde1adab36aa0
Christian Brabandt <cb@256bit.org>
parents:
7137
diff
changeset
|
2400 881, |
d1e35ca56c73
commit https://github.com/vim/vim/commit/0a777ab9890ba0e8dd57f082e98fde1adab36aa0
Christian Brabandt <cb@256bit.org>
parents:
7137
diff
changeset
|
2401 /**/ |
7137
41896b9720cc
commit https://github.com/vim/vim/commit/02d803fc0cc99a1c86a3553a1d445137eab1aa8d
Christian Brabandt <cb@256bit.org>
parents:
7135
diff
changeset
|
2402 880, |
41896b9720cc
commit https://github.com/vim/vim/commit/02d803fc0cc99a1c86a3553a1d445137eab1aa8d
Christian Brabandt <cb@256bit.org>
parents:
7135
diff
changeset
|
2403 /**/ |
7135
9d4986f52df8
commit https://github.com/vim/vim/commit/1d6328ca00fc6cfe37b1f5e038ec23f443258886
Christian Brabandt <cb@256bit.org>
parents:
7133
diff
changeset
|
2404 879, |
9d4986f52df8
commit https://github.com/vim/vim/commit/1d6328ca00fc6cfe37b1f5e038ec23f443258886
Christian Brabandt <cb@256bit.org>
parents:
7133
diff
changeset
|
2405 /**/ |
7133
48ce650e8a27
commit https://github.com/vim/vim/commit/69b67f7e774dc212e8c97495ee81c601b8a89ac2
Christian Brabandt <cb@256bit.org>
parents:
7131
diff
changeset
|
2406 878, |
48ce650e8a27
commit https://github.com/vim/vim/commit/69b67f7e774dc212e8c97495ee81c601b8a89ac2
Christian Brabandt <cb@256bit.org>
parents:
7131
diff
changeset
|
2407 /**/ |
7131
cc5570ed684e
commit https://github.com/vim/vim/commit/4d0c7bc74ac6fad5cb599dc3ade6996e848d83b6
Christian Brabandt <cb@256bit.org>
parents:
7129
diff
changeset
|
2408 877, |
cc5570ed684e
commit https://github.com/vim/vim/commit/4d0c7bc74ac6fad5cb599dc3ade6996e848d83b6
Christian Brabandt <cb@256bit.org>
parents:
7129
diff
changeset
|
2409 /**/ |
7129
aaf96b1aa605
commit https://github.com/vim/vim/commit/b0262f239e77480f81fa3345491b7b6d52a17f6d
Christian Brabandt <cb@256bit.org>
parents:
7127
diff
changeset
|
2410 876, |
aaf96b1aa605
commit https://github.com/vim/vim/commit/b0262f239e77480f81fa3345491b7b6d52a17f6d
Christian Brabandt <cb@256bit.org>
parents:
7127
diff
changeset
|
2411 /**/ |
7127
e945a8e35535
commit https://github.com/vim/vim/commit/3fe076f0feb91460266fdf7f9133a59c49a53c4e
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
2412 875, |
e945a8e35535
commit https://github.com/vim/vim/commit/3fe076f0feb91460266fdf7f9133a59c49a53c4e
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
2413 /**/ |
7125
52a7ba315f03
commit https://github.com/vim/vim/commit/8919554fe17255cddbbce6b833fab9aba19c8b88
Christian Brabandt <cb@256bit.org>
parents:
7123
diff
changeset
|
2414 874, |
52a7ba315f03
commit https://github.com/vim/vim/commit/8919554fe17255cddbbce6b833fab9aba19c8b88
Christian Brabandt <cb@256bit.org>
parents:
7123
diff
changeset
|
2415 /**/ |
7123
077ae8b63e15
commit https://github.com/vim/vim/commit/b8603882b1679385b287f14c527fa61eee60a9dd
Christian Brabandt <cb@256bit.org>
parents:
7121
diff
changeset
|
2416 873, |
077ae8b63e15
commit https://github.com/vim/vim/commit/b8603882b1679385b287f14c527fa61eee60a9dd
Christian Brabandt <cb@256bit.org>
parents:
7121
diff
changeset
|
2417 /**/ |
7121
a497a9868255
commit https://github.com/vim/vim/commit/0600f3511c6018cbcdb170a904bcf6533a06bf2d
Christian Brabandt <cb@256bit.org>
parents:
7119
diff
changeset
|
2418 872, |
a497a9868255
commit https://github.com/vim/vim/commit/0600f3511c6018cbcdb170a904bcf6533a06bf2d
Christian Brabandt <cb@256bit.org>
parents:
7119
diff
changeset
|
2419 /**/ |
7119
6bc1695b7f11
commit https://github.com/vim/vim/commit/7b256fe7445b46929f660ea74e9090418f857696
Christian Brabandt <cb@256bit.org>
parents:
7117
diff
changeset
|
2420 871, |
6bc1695b7f11
commit https://github.com/vim/vim/commit/7b256fe7445b46929f660ea74e9090418f857696
Christian Brabandt <cb@256bit.org>
parents:
7117
diff
changeset
|
2421 /**/ |
7117
9946e87686c8
commit https://github.com/vim/vim/commit/2455c4ede8d4ff6f0754977b548708eec08869eb
Christian Brabandt <cb@256bit.org>
parents:
7115
diff
changeset
|
2422 870, |
9946e87686c8
commit https://github.com/vim/vim/commit/2455c4ede8d4ff6f0754977b548708eec08869eb
Christian Brabandt <cb@256bit.org>
parents:
7115
diff
changeset
|
2423 /**/ |
7115
ec89519dfeea
commit https://github.com/vim/vim/commit/3b59755862f4604ded8155404a1fe4c84c606829
Christian Brabandt <cb@256bit.org>
parents:
7113
diff
changeset
|
2424 869, |
ec89519dfeea
commit https://github.com/vim/vim/commit/3b59755862f4604ded8155404a1fe4c84c606829
Christian Brabandt <cb@256bit.org>
parents:
7113
diff
changeset
|
2425 /**/ |
7113
83b3261352b3
commit https://github.com/vim/vim/commit/54f018cd5994c3ffcd0740526e56db6934edf1f2
Christian Brabandt <cb@256bit.org>
parents:
7111
diff
changeset
|
2426 868, |
83b3261352b3
commit https://github.com/vim/vim/commit/54f018cd5994c3ffcd0740526e56db6934edf1f2
Christian Brabandt <cb@256bit.org>
parents:
7111
diff
changeset
|
2427 /**/ |
7111
57c354f0115c
commit https://github.com/vim/vim/commit/9534680731ea342c2fed01a812559958923480da
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
2428 867, |
57c354f0115c
commit https://github.com/vim/vim/commit/9534680731ea342c2fed01a812559958923480da
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
2429 /**/ |
7109
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7107
diff
changeset
|
2430 866, |
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7107
diff
changeset
|
2431 /**/ |
7107
84efaf06f195
commit https://github.com/vim/vim/commit/ed84b76021df763619cabaedddc44eb5ee849136
Christian Brabandt <cb@256bit.org>
parents:
7105
diff
changeset
|
2432 865, |
84efaf06f195
commit https://github.com/vim/vim/commit/ed84b76021df763619cabaedddc44eb5ee849136
Christian Brabandt <cb@256bit.org>
parents:
7105
diff
changeset
|
2433 /**/ |
7105
f4456e686406
commit https://github.com/vim/vim/commit/e906c502079770ae0e0071c74cefb802689ff193
Christian Brabandt <cb@256bit.org>
parents:
7103
diff
changeset
|
2434 864, |
f4456e686406
commit https://github.com/vim/vim/commit/e906c502079770ae0e0071c74cefb802689ff193
Christian Brabandt <cb@256bit.org>
parents:
7103
diff
changeset
|
2435 /**/ |
7103
84d318257a45
commit https://github.com/vim/vim/commit/43335ea394fe247132b9701c55cccf51e6c36425
Christian Brabandt <cb@256bit.org>
parents:
7101
diff
changeset
|
2436 863, |
84d318257a45
commit https://github.com/vim/vim/commit/43335ea394fe247132b9701c55cccf51e6c36425
Christian Brabandt <cb@256bit.org>
parents:
7101
diff
changeset
|
2437 /**/ |
7101
793ca14b5654
commit https://github.com/vim/vim/commit/5325b9bbae8a717510ef7248f3ce8b50281bd33f
Christian Brabandt <cb@256bit.org>
parents:
7098
diff
changeset
|
2438 862, |
793ca14b5654
commit https://github.com/vim/vim/commit/5325b9bbae8a717510ef7248f3ce8b50281bd33f
Christian Brabandt <cb@256bit.org>
parents:
7098
diff
changeset
|
2439 /**/ |
7098
70b56e5eccb2
commit https://github.com/vim/vim/commit/3cbe0c01ad71875bd662edb629f9e792a734f292
Christian Brabandt <cb@256bit.org>
parents:
7096
diff
changeset
|
2440 861, |
70b56e5eccb2
commit https://github.com/vim/vim/commit/3cbe0c01ad71875bd662edb629f9e792a734f292
Christian Brabandt <cb@256bit.org>
parents:
7096
diff
changeset
|
2441 /**/ |
7096
00b9f0c048db
commit https://github.com/vim/vim/commit/a122b5e98afe18c9cfdab31b77d2a9fbb8e36416
Christian Brabandt <cb@256bit.org>
parents:
7094
diff
changeset
|
2442 860, |
00b9f0c048db
commit https://github.com/vim/vim/commit/a122b5e98afe18c9cfdab31b77d2a9fbb8e36416
Christian Brabandt <cb@256bit.org>
parents:
7094
diff
changeset
|
2443 /**/ |
7094
66137191901a
commit https://github.com/vim/vim/commit/d8986fd91494642b3bab305406aa55268498f49c
Christian Brabandt <cb@256bit.org>
parents:
7092
diff
changeset
|
2444 859, |
66137191901a
commit https://github.com/vim/vim/commit/d8986fd91494642b3bab305406aa55268498f49c
Christian Brabandt <cb@256bit.org>
parents:
7092
diff
changeset
|
2445 /**/ |
7092
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
7090
diff
changeset
|
2446 858, |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
7090
diff
changeset
|
2447 /**/ |
7090
052043fc57ab
commit https://github.com/vim/vim/commit/4a4b821085847651b71d8ad9fab9f180635cb453
Christian Brabandt <cb@256bit.org>
parents:
7088
diff
changeset
|
2448 857, |
052043fc57ab
commit https://github.com/vim/vim/commit/4a4b821085847651b71d8ad9fab9f180635cb453
Christian Brabandt <cb@256bit.org>
parents:
7088
diff
changeset
|
2449 /**/ |
7088
8a58dde655a8
commit https://github.com/vim/vim/commit/a09a2c5857ab854f0870573b5160da1964c905a2
Christian Brabandt <cb@256bit.org>
parents:
7086
diff
changeset
|
2450 856, |
8a58dde655a8
commit https://github.com/vim/vim/commit/a09a2c5857ab854f0870573b5160da1964c905a2
Christian Brabandt <cb@256bit.org>
parents:
7086
diff
changeset
|
2451 /**/ |
7086
3825da022231
commit https://github.com/vim/vim/commit/7e2ec008f5c5152205d0b8a7d88177b374225d8d
Christian Brabandt <cb@256bit.org>
parents:
7084
diff
changeset
|
2452 855, |
3825da022231
commit https://github.com/vim/vim/commit/7e2ec008f5c5152205d0b8a7d88177b374225d8d
Christian Brabandt <cb@256bit.org>
parents:
7084
diff
changeset
|
2453 /**/ |
7084
1c039023af1c
commit https://github.com/vim/vim/commit/b58988b832b69b52dfefeca338ea4802d0c4cdca
Christian Brabandt <cb@256bit.org>
parents:
7082
diff
changeset
|
2454 854, |
1c039023af1c
commit https://github.com/vim/vim/commit/b58988b832b69b52dfefeca338ea4802d0c4cdca
Christian Brabandt <cb@256bit.org>
parents:
7082
diff
changeset
|
2455 /**/ |
7082
ad4c039349f6
commit https://github.com/vim/vim/commit/cf619daa8e0ef9a335f27f65eb74e422a17d4f92
Christian Brabandt <cb@256bit.org>
parents:
7080
diff
changeset
|
2456 853, |
ad4c039349f6
commit https://github.com/vim/vim/commit/cf619daa8e0ef9a335f27f65eb74e422a17d4f92
Christian Brabandt <cb@256bit.org>
parents:
7080
diff
changeset
|
2457 /**/ |
7080
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
2458 852, |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
2459 /**/ |
7078
383d6f39669b
commit https://github.com/vim/vim/commit/615942452eb74eee7d8386fd3d76a1534181fa06
Christian Brabandt <cb@256bit.org>
parents:
7076
diff
changeset
|
2460 851, |
383d6f39669b
commit https://github.com/vim/vim/commit/615942452eb74eee7d8386fd3d76a1534181fa06
Christian Brabandt <cb@256bit.org>
parents:
7076
diff
changeset
|
2461 /**/ |
7076
6ad58a7e995b
commit https://github.com/vim/vim/commit/544780248b5876339b316703fc2f330a9d316c45
Christian Brabandt <cb@256bit.org>
parents:
7074
diff
changeset
|
2462 850, |
6ad58a7e995b
commit https://github.com/vim/vim/commit/544780248b5876339b316703fc2f330a9d316c45
Christian Brabandt <cb@256bit.org>
parents:
7074
diff
changeset
|
2463 /**/ |
7074
c8efa41dd451
commit https://github.com/vim/vim/commit/8b5f65a527c353b9942e362e719687c3a7592309
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
2464 849, |
c8efa41dd451
commit https://github.com/vim/vim/commit/8b5f65a527c353b9942e362e719687c3a7592309
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
2465 /**/ |
7072
05afb5be93bd
commit https://github.com/vim/vim/commit/5adfea1ac63e252556bccce54e92e8e10b58f592
Christian Brabandt <cb@256bit.org>
parents:
7070
diff
changeset
|
2466 848, |
05afb5be93bd
commit https://github.com/vim/vim/commit/5adfea1ac63e252556bccce54e92e8e10b58f592
Christian Brabandt <cb@256bit.org>
parents:
7070
diff
changeset
|
2467 /**/ |
7070
d92910c0c415
commit https://github.com/vim/vim/commit/8667d66ca923d361e00e6369cbff37283db5a432
Christian Brabandt <cb@256bit.org>
parents:
7068
diff
changeset
|
2468 847, |
d92910c0c415
commit https://github.com/vim/vim/commit/8667d66ca923d361e00e6369cbff37283db5a432
Christian Brabandt <cb@256bit.org>
parents:
7068
diff
changeset
|
2469 /**/ |
7068
a55f35ed381b
commit https://github.com/vim/vim/commit/6017f3799dbb744fc34894d968b36729e607203e
Christian Brabandt <cb@256bit.org>
parents:
7066
diff
changeset
|
2470 846, |
a55f35ed381b
commit https://github.com/vim/vim/commit/6017f3799dbb744fc34894d968b36729e607203e
Christian Brabandt <cb@256bit.org>
parents:
7066
diff
changeset
|
2471 /**/ |
7066
094c8ccdc279
commit https://github.com/vim/vim/commit/5df1ed2de3fa9dcace996b9a0a4c9b3cea79cf1e
Christian Brabandt <cb@256bit.org>
parents:
7064
diff
changeset
|
2472 845, |
094c8ccdc279
commit https://github.com/vim/vim/commit/5df1ed2de3fa9dcace996b9a0a4c9b3cea79cf1e
Christian Brabandt <cb@256bit.org>
parents:
7064
diff
changeset
|
2473 /**/ |
7064
5fc5c5bf2233
commit https://github.com/vim/vim/commit/37a8de17d4dfd3d463960c38a204ce399c8e19d4
Christian Brabandt <cb@256bit.org>
parents:
7062
diff
changeset
|
2474 844, |
5fc5c5bf2233
commit https://github.com/vim/vim/commit/37a8de17d4dfd3d463960c38a204ce399c8e19d4
Christian Brabandt <cb@256bit.org>
parents:
7062
diff
changeset
|
2475 /**/ |
7062
6deb9d802fe4
commit https://github.com/vim/vim/commit/d43f0951bca162d4491d57df9277b5dbc462944f
Christian Brabandt <cb@256bit.org>
parents:
7060
diff
changeset
|
2476 843, |
6deb9d802fe4
commit https://github.com/vim/vim/commit/d43f0951bca162d4491d57df9277b5dbc462944f
Christian Brabandt <cb@256bit.org>
parents:
7060
diff
changeset
|
2477 /**/ |
7060
41ccc6f95954
commit https://github.com/vim/vim/commit/cdf0442d009ea97fad06d72231f7de309c75205a
Christian Brabandt <cb@256bit.org>
parents:
7058
diff
changeset
|
2478 842, |
41ccc6f95954
commit https://github.com/vim/vim/commit/cdf0442d009ea97fad06d72231f7de309c75205a
Christian Brabandt <cb@256bit.org>
parents:
7058
diff
changeset
|
2479 /**/ |
7058
64dc5b11ad33
commit https://github.com/vim/vim/commit/5ea87a04964b0ccd017380b8247d04d2a69f6062
Christian Brabandt <cb@256bit.org>
parents:
7056
diff
changeset
|
2480 841, |
64dc5b11ad33
commit https://github.com/vim/vim/commit/5ea87a04964b0ccd017380b8247d04d2a69f6062
Christian Brabandt <cb@256bit.org>
parents:
7056
diff
changeset
|
2481 /**/ |
7056
1ebd7608cfd9
commit https://github.com/vim/vim/commit/8e5f5b47c2198ffa4161c21a4140eaa9bed46f37
Christian Brabandt <cb@256bit.org>
parents:
7054
diff
changeset
|
2482 840, |
1ebd7608cfd9
commit https://github.com/vim/vim/commit/8e5f5b47c2198ffa4161c21a4140eaa9bed46f37
Christian Brabandt <cb@256bit.org>
parents:
7054
diff
changeset
|
2483 /**/ |
7054
3a1a6d6fb9b3
commit https://github.com/vim/vim/commit/6ed535dbc0981d328c02e139d6505207cbef4835
Christian Brabandt <cb@256bit.org>
parents:
7052
diff
changeset
|
2484 839, |
3a1a6d6fb9b3
commit https://github.com/vim/vim/commit/6ed535dbc0981d328c02e139d6505207cbef4835
Christian Brabandt <cb@256bit.org>
parents:
7052
diff
changeset
|
2485 /**/ |
7052
9ec3329823f9
commit https://github.com/vim/vim/commit/8060687905bdadc46abb68ee6d40e5660e352297
Christian Brabandt <cb@256bit.org>
parents:
7049
diff
changeset
|
2486 838, |
9ec3329823f9
commit https://github.com/vim/vim/commit/8060687905bdadc46abb68ee6d40e5660e352297
Christian Brabandt <cb@256bit.org>
parents:
7049
diff
changeset
|
2487 /**/ |
7049
2ebc20378f68
commit https://github.com/vim/vim/commit/80ce282107849ef1a0e9b8a3be26c59c211b0957
Christian Brabandt <cb@256bit.org>
parents:
7046
diff
changeset
|
2488 837, |
2ebc20378f68
commit https://github.com/vim/vim/commit/80ce282107849ef1a0e9b8a3be26c59c211b0957
Christian Brabandt <cb@256bit.org>
parents:
7046
diff
changeset
|
2489 /**/ |
7046
fd409a0800fd
commit https://github.com/vim/vim/commit/0a38dd29d6f65aa601162542a5ab0ba7f308fc8e
Christian Brabandt <cb@256bit.org>
parents:
7044
diff
changeset
|
2490 836, |
fd409a0800fd
commit https://github.com/vim/vim/commit/0a38dd29d6f65aa601162542a5ab0ba7f308fc8e
Christian Brabandt <cb@256bit.org>
parents:
7044
diff
changeset
|
2491 /**/ |
7044
7758d6245c3a
commit https://github.com/vim/vim/commit/f6470c288cb6f8efd60a507baf2c070f9d209ae6
Christian Brabandt <cb@256bit.org>
parents:
7042
diff
changeset
|
2492 835, |
7758d6245c3a
commit https://github.com/vim/vim/commit/f6470c288cb6f8efd60a507baf2c070f9d209ae6
Christian Brabandt <cb@256bit.org>
parents:
7042
diff
changeset
|
2493 /**/ |
7042
e8eccb9621f7
commit https://github.com/vim/vim/commit/7e47d1ac6a9ae0e5a7167aa34ff651a9c39c1641
Christian Brabandt <cb@256bit.org>
parents:
7040
diff
changeset
|
2494 834, |
e8eccb9621f7
commit https://github.com/vim/vim/commit/7e47d1ac6a9ae0e5a7167aa34ff651a9c39c1641
Christian Brabandt <cb@256bit.org>
parents:
7040
diff
changeset
|
2495 /**/ |
7040
17a3fa77e941
commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents:
7038
diff
changeset
|
2496 833, |
17a3fa77e941
commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents:
7038
diff
changeset
|
2497 /**/ |
7038
76042a56ab85
commit https://github.com/vim/vim/commit/be83b73ddb2ee8297037166d243f72e3423a3ce3
Christian Brabandt <cb@256bit.org>
parents:
7036
diff
changeset
|
2498 832, |
76042a56ab85
commit https://github.com/vim/vim/commit/be83b73ddb2ee8297037166d243f72e3423a3ce3
Christian Brabandt <cb@256bit.org>
parents:
7036
diff
changeset
|
2499 /**/ |
7036
5f00b8d7148f
commit https://github.com/vim/vim/commit/3f188935ec4db5117c4a64cc3f71219175624745
Christian Brabandt <cb@256bit.org>
parents:
7034
diff
changeset
|
2500 831, |
5f00b8d7148f
commit https://github.com/vim/vim/commit/3f188935ec4db5117c4a64cc3f71219175624745
Christian Brabandt <cb@256bit.org>
parents:
7034
diff
changeset
|
2501 /**/ |
7034
e668b160ac68
commit https://github.com/vim/vim/commit/b341dda575899458f7075614dcedf0a80ee9d080
Christian Brabandt <cb@256bit.org>
parents:
7032
diff
changeset
|
2502 830, |
e668b160ac68
commit https://github.com/vim/vim/commit/b341dda575899458f7075614dcedf0a80ee9d080
Christian Brabandt <cb@256bit.org>
parents:
7032
diff
changeset
|
2503 /**/ |
7032
320c97a73272
commit https://github.com/vim/vim/commit/7fb7d34caf5f45289212987123baac4ce5a0d38c
Christian Brabandt <cb@256bit.org>
parents:
7030
diff
changeset
|
2504 829, |
320c97a73272
commit https://github.com/vim/vim/commit/7fb7d34caf5f45289212987123baac4ce5a0d38c
Christian Brabandt <cb@256bit.org>
parents:
7030
diff
changeset
|
2505 /**/ |
7030
8d513ddfe3ec
commit https://github.com/vim/vim/commit/670acbc70f371409b46b722bd9a1166e53574f42
Christian Brabandt <cb@256bit.org>
parents:
7021
diff
changeset
|
2506 828, |
8d513ddfe3ec
commit https://github.com/vim/vim/commit/670acbc70f371409b46b722bd9a1166e53574f42
Christian Brabandt <cb@256bit.org>
parents:
7021
diff
changeset
|
2507 /**/ |
7021 | 2508 827, |
2509 /**/ | |
7019 | 2510 826, |
2511 /**/ | |
7017 | 2512 825, |
2513 /**/ | |
7014 | 2514 824, |
2515 /**/ | |
7011 | 2516 823, |
2517 /**/ | |
7009 | 2518 822, |
2519 /**/ | |
7007 | 2520 821, |
2521 /**/ | |
7005 | 2522 820, |
2523 /**/ | |
7003 | 2524 819, |
2525 /**/ | |
7001 | 2526 818, |
2527 /**/ | |
6999 | 2528 817, |
2529 /**/ | |
6997 | 2530 816, |
2531 /**/ | |
6995 | 2532 815, |
2533 /**/ | |
6993 | 2534 814, |
2535 /**/ | |
6991 | 2536 813, |
2537 /**/ | |
6989 | 2538 812, |
2539 /**/ | |
6987 | 2540 811, |
2541 /**/ | |
6985 | 2542 810, |
2543 /**/ | |
6983 | 2544 809, |
2545 /**/ | |
6981 | 2546 808, |
2547 /**/ | |
6979 | 2548 807, |
2549 /**/ | |
6977 | 2550 806, |
2551 /**/ | |
6975 | 2552 805, |
2553 /**/ | |
6973 | 2554 804, |
2555 /**/ | |
6971 | 2556 803, |
2557 /**/ | |
6969 | 2558 802, |
2559 /**/ | |
6967 | 2560 801, |
2561 /**/ | |
6965 | 2562 800, |
2563 /**/ | |
6963 | 2564 799, |
2565 /**/ | |
6961 | 2566 798, |
2567 /**/ | |
6959 | 2568 797, |
2569 /**/ | |
6957 | 2570 796, |
2571 /**/ | |
6954 | 2572 795, |
2573 /**/ | |
6952 | 2574 794, |
2575 /**/ | |
6949 | 2576 793, |
2577 /**/ | |
6947 | 2578 792, |
2579 /**/ | |
6945 | 2580 791, |
2581 /**/ | |
6943 | 2582 790, |
2583 /**/ | |
6941 | 2584 789, |
2585 /**/ | |
6939 | 2586 788, |
2587 /**/ | |
6937 | 2588 787, |
2589 /**/ | |
6935 | 2590 786, |
2591 /**/ | |
6933 | 2592 785, |
2593 /**/ | |
6931 | 2594 784, |
2595 /**/ | |
6929 | 2596 783, |
2597 /**/ | |
6927 | 2598 782, |
2599 /**/ | |
6925 | 2600 781, |
2601 /**/ | |
6923 | 2602 780, |
2603 /**/ | |
6921 | 2604 779, |
2605 /**/ | |
6919 | 2606 778, |
2607 /**/ | |
6916 | 2608 777, |
2609 /**/ | |
6914 | 2610 776, |
2611 /**/ | |
6911 | 2612 775, |
2613 /**/ | |
6909 | 2614 774, |
2615 /**/ | |
6907 | 2616 773, |
2617 /**/ | |
6905 | 2618 772, |
2619 /**/ | |
6903 | 2620 771, |
2621 /**/ | |
6901 | 2622 770, |
2623 /**/ | |
6899 | 2624 769, |
2625 /**/ | |
6897 | 2626 768, |
2627 /**/ | |
6895 | 2628 767, |
2629 /**/ | |
6893 | 2630 766, |
2631 /**/ | |
6891 | 2632 765, |
2633 /**/ | |
6889 | 2634 764, |
2635 /**/ | |
6887 | 2636 763, |
2637 /**/ | |
6885 | 2638 762, |
2639 /**/ | |
6882 | 2640 761, |
2641 /**/ | |
6880 | 2642 760, |
2643 /**/ | |
6878 | 2644 759, |
2645 /**/ | |
6876 | 2646 758, |
2647 /**/ | |
6874 | 2648 757, |
2649 /**/ | |
6872 | 2650 756, |
2651 /**/ | |
6870 | 2652 755, |
2653 /**/ | |
6868 | 2654 754, |
2655 /**/ | |
6866 | 2656 753, |
2657 /**/ | |
6864 | 2658 752, |
2659 /**/ | |
6862 | 2660 751, |
2661 /**/ | |
6860 | 2662 750, |
2663 /**/ | |
6858 | 2664 749, |
2665 /**/ | |
6856 | 2666 748, |
2667 /**/ | |
6853 | 2668 747, |
2669 /**/ | |
6851 | 2670 746, |
2671 /**/ | |
6849 | 2672 745, |
2673 /**/ | |
6847 | 2674 744, |
2675 /**/ | |
6845 | 2676 743, |
2677 /**/ | |
6843 | 2678 742, |
2679 /**/ | |
6841 | 2680 741, |
2681 /**/ | |
6838 | 2682 740, |
2683 /**/ | |
6836 | 2684 739, |
2685 /**/ | |
6834 | 2686 738, |
2687 /**/ | |
6832 | 2688 737, |
2689 /**/ | |
6830 | 2690 736, |
2691 /**/ | |
6828 | 2692 735, |
2693 /**/ | |
6826 | 2694 734, |
2695 /**/ | |
6824 | 2696 733, |
2697 /**/ | |
6821 | 2698 732, |
2699 /**/ | |
6819 | 2700 731, |
2701 /**/ | |
6817 | 2702 730, |
2703 /**/ | |
6815 | 2704 729, |
2705 /**/ | |
6813 | 2706 728, |
2707 /**/ | |
6811 | 2708 727, |
2709 /**/ | |
6809 | 2710 726, |
2711 /**/ | |
6807 | 2712 725, |
2713 /**/ | |
6805 | 2714 724, |
2715 /**/ | |
6803 | 2716 723, |
2717 /**/ | |
6801 | 2718 722, |
2719 /**/ | |
6799 | 2720 721, |
2721 /**/ | |
6797 | 2722 720, |
2723 /**/ | |
6795 | 2724 719, |
2725 /**/ | |
6793 | 2726 718, |
2727 /**/ | |
6791 | 2728 717, |
2729 /**/ | |
6789 | 2730 716, |
2731 /**/ | |
6787 | 2732 715, |
2733 /**/ | |
6785 | 2734 714, |
2735 /**/ | |
6783 | 2736 713, |
2737 /**/ | |
6781 | 2738 712, |
2739 /**/ | |
6779 | 2740 711, |
2741 /**/ | |
6777 | 2742 710, |
2743 /**/ | |
6775 | 2744 709, |
2745 /**/ | |
6773 | 2746 708, |
2747 /**/ | |
6771 | 2748 707, |
2749 /**/ | |
6769 | 2750 706, |
2751 /**/ | |
6767 | 2752 705, |
2753 /**/ | |
6765 | 2754 704, |
2755 /**/ | |
6763 | 2756 703, |
2757 /**/ | |
6761 | 2758 702, |
2759 /**/ | |
6759 | 2760 701, |
2761 /**/ | |
6755 | 2762 700, |
2763 /**/ | |
6753 | 2764 699, |
2765 /**/ | |
6751 | 2766 698, |
2767 /**/ | |
6749 | 2768 697, |
2769 /**/ | |
6747 | 2770 696, |
2771 /**/ | |
6745 | 2772 695, |
2773 /**/ | |
6742 | 2774 694, |
2775 /**/ | |
6739 | 2776 693, |
2777 /**/ | |
6737
9a07975061ed
patch 7.4.692 for Problem: Defining SOLARIS for no good reason. (Danek Duvall)
Bram Moolenaar <bram@vim.org>
parents:
6735
diff
changeset
|
2778 692, |
9a07975061ed
patch 7.4.692 for Problem: Defining SOLARIS for no good reason. (Danek Duvall)
Bram Moolenaar <bram@vim.org>
parents:
6735
diff
changeset
|
2779 /**/ |
6735
f6021786b775
patch 7.4.691 for Problem: Can't build with MzScheme.
Bram Moolenaar <bram@vim.org>
parents:
6733
diff
changeset
|
2780 691, |
f6021786b775
patch 7.4.691 for Problem: Can't build with MzScheme.
Bram Moolenaar <bram@vim.org>
parents:
6733
diff
changeset
|
2781 /**/ |
6733
5f6077b10738
patch 7.4.690 for Problem: Memory access errors when changing indent in Ex mode. Also missing
Bram Moolenaar <bram@vim.org>
parents:
6731
diff
changeset
|
2782 690, |
5f6077b10738
patch 7.4.690 for Problem: Memory access errors when changing indent in Ex mode. Also missing
Bram Moolenaar <bram@vim.org>
parents:
6731
diff
changeset
|
2783 /**/ |
6731 | 2784 689, |
2785 /**/ | |
6729 | 2786 688, |
2787 /**/ | |
6727 | 2788 687, |
2789 /**/ | |
6725 | 2790 686, |
2791 /**/ | |
6723 | 2792 685, |
2793 /**/ | |
6721 | 2794 684, |
2795 /**/ | |
6719 | 2796 683, |
2797 /**/ | |
6717 | 2798 682, |
2799 /**/ | |
6714 | 2800 681, |
2801 /**/ | |
6712 | 2802 680, |
2803 /**/ | |
6710 | 2804 679, |
2805 /**/ | |
6708 | 2806 678, |
2807 /**/ | |
6706 | 2808 677, |
2809 /**/ | |
6704 | 2810 676, |
2811 /**/ | |
6702 | 2812 675, |
2813 /**/ | |
6700 | 2814 674, |
2815 /**/ | |
6698 | 2816 673, |
2817 /**/ | |
6695 | 2818 672, |
2819 /**/ | |
6693 | 2820 671, |
2821 /**/ | |
6691 | 2822 670, |
2823 /**/ | |
6689 | 2824 669, |
2825 /**/ | |
6687 | 2826 668, |
2827 /**/ | |
6685 | 2828 667, |
2829 /**/ | |
6683 | 2830 666, |
2831 /**/ | |
6681 | 2832 665, |
2833 /**/ | |
6679 | 2834 664, |
2835 /**/ | |
6677 | 2836 663, |
2837 /**/ | |
6675 | 2838 662, |
2839 /**/ | |
6673 | 2840 661, |
2841 /**/ | |
6671 | 2842 660, |
2843 /**/ | |
6669 | 2844 659, |
2845 /**/ | |
6667 | 2846 658, |
2847 /**/ | |
6665 | 2848 657, |
2849 /**/ | |
6663 | 2850 656, |
2851 /**/ | |
6661 | 2852 655, |
2853 /**/ | |
6659 | 2854 654, |
2855 /**/ | |
6657 | 2856 653, |
2857 /**/ | |
6655 | 2858 652, |
2859 /**/ | |
6653 | 2860 651, |
2861 /**/ | |
6651 | 2862 650, |
2863 /**/ | |
6649 | 2864 649, |
2865 /**/ | |
6645 | 2866 648, |
2867 /**/ | |
6643 | 2868 647, |
2869 /**/ | |
6641 | 2870 646, |
2871 /**/ | |
6639 | 2872 645, |
2873 /**/ | |
6637 | 2874 644, |
2875 /**/ | |
6635 | 2876 643, |
2877 /**/ | |
6633 | 2878 642, |
2879 /**/ | |
6631 | 2880 641, |
2881 /**/ | |
6629 | 2882 640, |
2883 /**/ | |
6627 | 2884 639, |
2885 /**/ | |
6625 | 2886 638, |
2887 /**/ | |
6623 | 2888 637, |
2889 /**/ | |
6620 | 2890 636, |
2891 /**/ | |
6618 | 2892 635, |
2893 /**/ | |
6616 | 2894 634, |
2895 /**/ | |
6614 | 2896 633, |
2897 /**/ | |
6612 | 2898 632, |
2899 /**/ | |
6610 | 2900 631, |
2901 /**/ | |
6608 | 2902 630, |
2903 /**/ | |
6606 | 2904 629, |
2905 /**/ | |
6604 | 2906 628, |
2907 /**/ | |
6602 | 2908 627, |
2909 /**/ | |
6600 | 2910 626, |
2911 /**/ | |
6598 | 2912 625, |
2913 /**/ | |
6596 | 2914 624, |
2915 /**/ | |
6594 | 2916 623, |
2917 /**/ | |
6592 | 2918 622, |
2919 /**/ | |
6590 | 2920 621, |
2921 /**/ | |
6588 | 2922 620, |
2923 /**/ | |
6586 | 2924 619, |
2925 /**/ | |
6584 | 2926 618, |
2927 /**/ | |
6581 | 2928 617, |
2929 /**/ | |
6579 | 2930 616, |
2931 /**/ | |
6577 | 2932 615, |
2933 /**/ | |
6575 | 2934 614, |
2935 /**/ | |
6573 | 2936 613, |
2937 /**/ | |
6571 | 2938 612, |
2939 /**/ | |
6569 | 2940 611, |
2941 /**/ | |
6567 | 2942 610, |
2943 /**/ | |
6565 | 2944 609, |
2945 /**/ | |
6563 | 2946 608, |
2947 /**/ | |
6561 | 2948 607, |
2949 /**/ | |
6559 | 2950 606, |
2951 /**/ | |
6557 | 2952 605, |
2953 /**/ | |
6555 | 2954 604, |
2955 /**/ | |
6553 | 2956 603, |
2957 /**/ | |
6551 | 2958 602, |
2959 /**/ | |
6549 | 2960 601, |
2961 /**/ | |
6547 | 2962 600, |
2963 /**/ | |
6545 | 2964 599, |
2965 /**/ | |
6543 | 2966 598, |
2967 /**/ | |
6541 | 2968 597, |
2969 /**/ | |
6539 | 2970 596, |
2971 /**/ | |
6537 | 2972 595, |
2973 /**/ | |
6535 | 2974 594, |
2975 /**/ | |
6533 | 2976 593, |
2977 /**/ | |
6531 | 2978 592, |
2979 /**/ | |
6528 | 2980 591, |
2981 /**/ | |
6526 | 2982 590, |
2983 /**/ | |
6524 | 2984 589, |
2985 /**/ | |
6522 | 2986 588, |
2987 /**/ | |
6520 | 2988 587, |
2989 /**/ | |
6518 | 2990 586, |
2991 /**/ | |
6516 | 2992 585, |
2993 /**/ | |
6514 | 2994 584, |
2995 /**/ | |
6512 | 2996 583, |
2997 /**/ | |
6510 | 2998 582, |
2999 /**/ | |
6508 | 3000 581, |
3001 /**/ | |
6506 | 3002 580, |
3003 /**/ | |
6503 | 3004 579, |
3005 /**/ | |
6501 | 3006 578, |
3007 /**/ | |
6499 | 3008 577, |
3009 /**/ | |
6497 | 3010 576, |
3011 /**/ | |
6495 | 3012 575, |
3013 /**/ | |
6493 | 3014 574, |
3015 /**/ | |
6491 | 3016 573, |
3017 /**/ | |
6489 | 3018 572, |
3019 /**/ | |
6487 | 3020 571, |
3021 /**/ | |
6485 | 3022 570, |
3023 /**/ | |
6482 | 3024 569, |
3025 /**/ | |
6480 | 3026 568, |
3027 /**/ | |
6477 | 3028 567, |
3029 /**/ | |
6474 | 3030 566, |
3031 /**/ | |
6472 | 3032 565, |
3033 /**/ | |
6470 | 3034 564, |
3035 /**/ | |
6468 | 3036 563, |
3037 /**/ | |
6466 | 3038 562, |
3039 /**/ | |
6464 | 3040 561, |
3041 /**/ | |
6462 | 3042 560, |
3043 /**/ | |
6460 | 3044 559, |
3045 /**/ | |
6458 | 3046 558, |
3047 /**/ | |
6456 | 3048 557, |
3049 /**/ | |
6454 | 3050 556, |
3051 /**/ | |
6452 | 3052 555, |
3053 /**/ | |
6450 | 3054 554, |
3055 /**/ | |
6448 | 3056 553, |
3057 /**/ | |
6445 | 3058 552, |
3059 /**/ | |
6443 | 3060 551, |
3061 /**/ | |
6441 | 3062 550, |
3063 /**/ | |
6438 | 3064 549, |
3065 /**/ | |
6436 | 3066 548, |
3067 /**/ | |
6434 | 3068 547, |
3069 /**/ | |
6432 | 3070 546, |
3071 /**/ | |
6430 | 3072 545, |
3073 /**/ | |
6428 | 3074 544, |
3075 /**/ | |
6426 | 3076 543, |
3077 /**/ | |
6424 | 3078 542, |
3079 /**/ | |
6422 | 3080 541, |
3081 /**/ | |
6419 | 3082 540, |
3083 /**/ | |
6417 | 3084 539, |
3085 /**/ | |
6415 | 3086 538, |
3087 /**/ | |
6413 | 3088 537, |
3089 /**/ | |
6411 | 3090 536, |
3091 /**/ | |
6409 | 3092 535, |
3093 /**/ | |
6406 | 3094 534, |
3095 /**/ | |
6404 | 3096 533, |
3097 /**/ | |
6402 | 3098 532, |
3099 /**/ | |
6400 | 3100 531, |
3101 /**/ | |
6398 | 3102 530, |
3103 /**/ | |
6396 | 3104 529, |
3105 /**/ | |
6394 | 3106 528, |
3107 /**/ | |
6392 | 3108 527, |
3109 /**/ | |
6390 | 3110 526, |
3111 /**/ | |
6388 | 3112 525, |
3113 /**/ | |
6386 | 3114 524, |
3115 /**/ | |
6383 | 3116 523, |
3117 /**/ | |
6381 | 3118 522, |
3119 /**/ | |
6379 | 3120 521, |
3121 /**/ | |
6377 | 3122 520, |
3123 /**/ | |
6375 | 3124 519, |
3125 /**/ | |
6373 | 3126 518, |
3127 /**/ | |
6371 | 3128 517, |
3129 /**/ | |
6367 | 3130 516, |
3131 /**/ | |
6365 | 3132 515, |
3133 /**/ | |
6363 | 3134 514, |
3135 /**/ | |
6361 | 3136 513, |
3137 /**/ | |
6359 | 3138 512, |
3139 /**/ | |
6357 | 3140 511, |
3141 /**/ | |
6355 | 3142 510, |
3143 /**/ | |
6353 | 3144 509, |
3145 /**/ | |
6351 | 3146 508, |
3147 /**/ | |
6349 | 3148 507, |
3149 /**/ | |
6347 | 3150 506, |
3151 /**/ | |
6345 | 3152 505, |
3153 /**/ | |
6343 | 3154 504, |
3155 /**/ | |
6341 | 3156 503, |
3157 /**/ | |
6339 | 3158 502, |
3159 /**/ | |
6337 | 3160 501, |
3161 /**/ | |
6334 | 3162 500, |
3163 /**/ | |
6332 | 3164 499, |
3165 /**/ | |
6330 | 3166 498, |
3167 /**/ | |
6328 | 3168 497, |
3169 /**/ | |
6326 | 3170 496, |
3171 /**/ | |
6324 | 3172 495, |
3173 /**/ | |
6322 | 3174 494, |
3175 /**/ | |
6320 | 3176 493, |
3177 /**/ | |
6318 | 3178 492, |
3179 /**/ | |
6316 | 3180 491, |
3181 /**/ | |
6314 | 3182 490, |
3183 /**/ | |
6312 | 3184 489, |
3185 /**/ | |
6310 | 3186 488, |
3187 /**/ | |
6307 | 3188 487, |
3189 /**/ | |
6305 | 3190 486, |
3191 /**/ | |
6303 | 3192 485, |
3193 /**/ | |
6301 | 3194 484, |
3195 /**/ | |
6299 | 3196 483, |
3197 /**/ | |
6297 | 3198 482, |
3199 /**/ | |
6295 | 3200 481, |
3201 /**/ | |
6293 | 3202 480, |
3203 /**/ | |
6290 | 3204 479, |
3205 /**/ | |
6288 | 3206 478, |
3207 /**/ | |
6286 | 3208 477, |
3209 /**/ | |
6284 | 3210 476, |
3211 /**/ | |
6282 | 3212 475, |
3213 /**/ | |
6280 | 3214 474, |
3215 /**/ | |
6278 | 3216 473, |
3217 /**/ | |
6276 | 3218 472, |
3219 /**/ | |
6274 | 3220 471, |
3221 /**/ | |
6272 | 3222 470, |
3223 /**/ | |
6270 | 3224 469, |
3225 /**/ | |
6268 | 3226 468, |
3227 /**/ | |
6266 | 3228 467, |
3229 /**/ | |
6264 | 3230 466, |
3231 /**/ | |
6262 | 3232 465, |
3233 /**/ | |
6260 | 3234 464, |
3235 /**/ | |
6257 | 3236 463, |
3237 /**/ | |
6255 | 3238 462, |
3239 /**/ | |
6253 | 3240 461, |
3241 /**/ | |
6251 | 3242 460, |
3243 /**/ | |
6249 | 3244 459, |
3245 /**/ | |
6247 | 3246 458, |
3247 /**/ | |
6245 | 3248 457, |
3249 /**/ | |
6243 | 3250 456, |
3251 /**/ | |
6241 | 3252 455, |
3253 /**/ | |
6239 | 3254 454, |
3255 /**/ | |
6236 | 3256 453, |
3257 /**/ | |
6234 | 3258 452, |
3259 /**/ | |
6232 | 3260 451, |
3261 /**/ | |
6230 | 3262 450, |
3263 /**/ | |
6228 | 3264 449, |
3265 /**/ | |
6226 | 3266 448, |
3267 /**/ | |
6224 | 3268 447, |
3269 /**/ | |
6222 | 3270 446, |
3271 /**/ | |
6220 | 3272 445, |
3273 /**/ | |
6218 | 3274 444, |
3275 /**/ | |
6216 | 3276 443, |
3277 /**/ | |
6214 | 3278 442, |
3279 /**/ | |
6211 | 3280 441, |
3281 /**/ | |
6209 | 3282 440, |
3283 /**/ | |
6207 | 3284 439, |
3285 /**/ | |
6205 | 3286 438, |
3287 /**/ | |
6203 | 3288 437, |
3289 /**/ | |
6201 | 3290 436, |
3291 /**/ | |
6199 | 3292 435, |
3293 /**/ | |
6197 | 3294 434, |
3295 /**/ | |
6195 | 3296 433, |
3297 /**/ | |
6193 | 3298 432, |
3299 /**/ | |
6191 | 3300 431, |
3301 /**/ | |
6189 | 3302 430, |
3303 /**/ | |
6187 | 3304 429, |
3305 /**/ | |
6185 | 3306 428, |
3307 /**/ | |
6183 | 3308 427, |
3309 /**/ | |
6181 | 3310 426, |
3311 /**/ | |
6178 | 3312 425, |
3313 /**/ | |
6176 | 3314 424, |
3315 /**/ | |
6174 | 3316 423, |
3317 /**/ | |
6172 | 3318 422, |
3319 /**/ | |
6170 | 3320 421, |
3321 /**/ | |
6168 | 3322 420, |
3323 /**/ | |
6166 | 3324 419, |
3325 /**/ | |
6164 | 3326 418, |
3327 /**/ | |
6162 | 3328 417, |
3329 /**/ | |
6160 | 3330 416, |
3331 /**/ | |
6158
353442863d85
Update version number to 7.4.415
Bram Moolenaar <bram@vim.org>
parents:
6154
diff
changeset
|
3332 415, |
353442863d85
Update version number to 7.4.415
Bram Moolenaar <bram@vim.org>
parents:
6154
diff
changeset
|
3333 /**/ |
6154 | 3334 414, |
3335 /**/ | |
6151 | 3336 413, |
3337 /**/ | |
6149 | 3338 412, |
3339 /**/ | |
6147 | 3340 411, |
3341 /**/ | |
6145 | 3342 410, |
3343 /**/ | |
6143 | 3344 409, |
3345 /**/ | |
6140 | 3346 408, |
3347 /**/ | |
6138 | 3348 407, |
3349 /**/ | |
6136 | 3350 406, |
3351 /**/ | |
6134 | 3352 405, |
3353 /**/ | |
6132 | 3354 404, |
3355 /**/ | |
6130 | 3356 403, |
3357 /**/ | |
6128 | 3358 402, |
3359 /**/ | |
6126 | 3360 401, |
3361 /**/ | |
6124 | 3362 400, |
3363 /**/ | |
6122 | 3364 399, |
3365 /**/ | |
6120 | 3366 398, |
3367 /**/ | |
6118 | 3368 397, |
3369 /**/ | |
6116 | 3370 396, |
3371 /**/ | |
6114 | 3372 395, |
3373 /**/ | |
6112 | 3374 394, |
3375 /**/ | |
6110 | 3376 393, |
3377 /**/ | |
6108 | 3378 392, |
3379 /**/ | |
6106 | 3380 391, |
3381 /**/ | |
6104 | 3382 390, |
3383 /**/ | |
6102 | 3384 389, |
3385 /**/ | |
6100 | 3386 388, |
3387 /**/ | |
6098 | 3388 387, |
3389 /**/ | |
6096 | 3390 386, |
3391 /**/ | |
6094 | 3392 385, |
3393 /**/ | |
6092 | 3394 384, |
3395 /**/ | |
6089 | 3396 383, |
3397 /**/ | |
6087 | 3398 382, |
3399 /**/ | |
6085 | 3400 381, |
3401 /**/ | |
6083 | 3402 380, |
3403 /**/ | |
6081 | 3404 379, |
3405 /**/ | |
6079 | 3406 378, |
3407 /**/ | |
6077 | 3408 377, |
3409 /**/ | |
6075 | 3410 376, |
3411 /**/ | |
6073 | 3412 375, |
3413 /**/ | |
6071 | 3414 374, |
3415 /**/ | |
6068 | 3416 373, |
3417 /**/ | |
6066 | 3418 372, |
3419 /**/ | |
6064 | 3420 371, |
3421 /**/ | |
6062 | 3422 370, |
3423 /**/ | |
6060 | 3424 369, |
3425 /**/ | |
6058 | 3426 368, |
3427 /**/ | |
6056 | 3428 367, |
3429 /**/ | |
6054 | 3430 366, |
3431 /**/ | |
6052 | 3432 365, |
3433 /**/ | |
6049 | 3434 364, |
3435 /**/ | |
6047 | 3436 363, |
3437 /**/ | |
6045 | 3438 362, |
3439 /**/ | |
6043 | 3440 361, |
3441 /**/ | |
6041 | 3442 360, |
3443 /**/ | |
6039 | 3444 359, |
3445 /**/ | |
6037 | 3446 358, |
3447 /**/ | |
6035 | 3448 357, |
3449 /**/ | |
6033 | 3450 356, |
3451 /**/ | |
6030 | 3452 355, |
3453 /**/ | |
6028 | 3454 354, |
3455 /**/ | |
6026 | 3456 353, |
3457 /**/ | |
6024 | 3458 352, |
3459 /**/ | |
6022 | 3460 351, |
3461 /**/ | |
6020 | 3462 350, |
3463 /**/ | |
6018 | 3464 349, |
3465 /**/ | |
6016 | 3466 348, |
3467 /**/ | |
6014 | 3468 347, |
3469 /**/ | |
6012 | 3470 346, |
3471 /**/ | |
6010 | 3472 345, |
3473 /**/ | |
6007 | 3474 344, |
3475 /**/ | |
6005 | 3476 343, |
3477 /**/ | |
6003 | 3478 342, |
3479 /**/ | |
6001 | 3480 341, |
3481 /**/ | |
5999 | 3482 340, |
3483 /**/ | |
5997 | 3484 339, |
3485 /**/ | |
5995 | 3486 338, |
3487 /**/ | |
5993 | 3488 337, |
3489 /**/ | |
5991 | 3490 336, |
3491 /**/ | |
5989 | 3492 335, |
3493 /**/ | |
5987 | 3494 334, |
3495 /**/ | |
5985 | 3496 333, |
3497 /**/ | |
5983 | 3498 332, |
3499 /**/ | |
5981 | 3500 331, |
3501 /**/ | |
5979 | 3502 330, |
3503 /**/ | |
5977 | 3504 329, |
3505 /**/ | |
5975 | 3506 328, |
3507 /**/ | |
5973 | 3508 327, |
3509 /**/ | |
5971 | 3510 326, |
3511 /**/ | |
5969 | 3512 325, |
3513 /**/ | |
5966 | 3514 324, |
3515 /**/ | |
5964 | 3516 323, |
3517 /**/ | |
5962 | 3518 322, |
3519 /**/ | |
5960 | 3520 321, |
3521 /**/ | |
5958 | 3522 320, |
3523 /**/ | |
5956 | 3524 319, |
3525 /**/ | |
5954 | 3526 318, |
3527 /**/ | |
5952 | 3528 317, |
3529 /**/ | |
5950 | 3530 316, |
3531 /**/ | |
5948 | 3532 315, |
3533 /**/ | |
5946 | 3534 314, |
3535 /**/ | |
5944 | 3536 313, |
3537 /**/ | |
5942 | 3538 312, |
3539 /**/ | |
5940 | 3540 311, |
3541 /**/ | |
5938 | 3542 310, |
3543 /**/ | |
5936 | 3544 309, |
3545 /**/ | |
5934 | 3546 308, |
3547 /**/ | |
5932 | 3548 307, |
3549 /**/ | |
5930 | 3550 306, |
3551 /**/ | |
5927 | 3552 305, |
3553 /**/ | |
5925 | 3554 304, |
3555 /**/ | |
5923 | 3556 303, |
3557 /**/ | |
5921 | 3558 302, |
3559 /**/ | |
5919 | 3560 301, |
3561 /**/ | |
5917 | 3562 300, |
3563 /**/ | |
5915 | 3564 299, |
3565 /**/ | |
5913 | 3566 298, |
3567 /**/ | |
5911 | 3568 297, |
3569 /**/ | |
5909 | 3570 296, |
3571 /**/ | |
5905 | 3572 295, |
3573 /**/ | |
5903 | 3574 294, |
3575 /**/ | |
5901 | 3576 293, |
3577 /**/ | |
5899 | 3578 292, |
3579 /**/ | |
5897 | 3580 291, |
3581 /**/ | |
5895 | 3582 290, |
3583 /**/ | |
5893 | 3584 289, |
3585 /**/ | |
5891 | 3586 288, |
3587 /**/ | |
5889 | 3588 287, |
3589 /**/ | |
5887 | 3590 286, |
3591 /**/ | |
5885 | 3592 285, |
3593 /**/ | |
5883 | 3594 284, |
3595 /**/ | |
5881 | 3596 283, |
3597 /**/ | |
5879 | 3598 282, |
3599 /**/ | |
5877 | 3600 281, |
3601 /**/ | |
5875 | 3602 280, |
3603 /**/ | |
5873 | 3604 279, |
3605 /**/ | |
5871 | 3606 278, |
3607 /**/ | |
5869 | 3608 277, |
3609 /**/ | |
5867 | 3610 276, |
3611 /**/ | |
5865 | 3612 275, |
3613 /**/ | |
5863 | 3614 274, |
3615 /**/ | |
5860 | 3616 273, |
3617 /**/ | |
5858 | 3618 272, |
3619 /**/ | |
5856 | 3620 271, |
3621 /**/ | |
5854 | 3622 270, |
3623 /**/ | |
5852 | 3624 269, |
3625 /**/ | |
5850 | 3626 268, |
3627 /**/ | |
5848 | 3628 267, |
3629 /**/ | |
5846 | 3630 266, |
3631 /**/ | |
5844 | 3632 265, |
3633 /**/ | |
5842 | 3634 264, |
3635 /**/ | |
5840 | 3636 263, |
3637 /**/ | |
5838 | 3638 262, |
3639 /**/ | |
5836 | 3640 261, |
3641 /**/ | |
5834 | 3642 260, |
3643 /**/ | |
5832 | 3644 259, |
3645 /**/ | |
5830 | 3646 258, |
3647 /**/ | |
5828 | 3648 257, |
3649 /**/ | |
5826 | 3650 256, |
3651 /**/ | |
5824 | 3652 255, |
3653 /**/ | |
5822 | 3654 254, |
3655 /**/ | |
5820 | 3656 253, |
3657 /**/ | |
5818 | 3658 252, |
3659 /**/ | |
5816 | 3660 251, |
3661 /**/ | |
5812 | 3662 250, |
3663 /**/ | |
5810 | 3664 249, |
3665 /**/ | |
5808 | 3666 248, |
3667 /**/ | |
5806 | 3668 247, |
3669 /**/ | |
5804 | 3670 246, |
3671 /**/ | |
5802 | 3672 245, |
3673 /**/ | |
5800 | 3674 244, |
3675 /**/ | |
5798 | 3676 243, |
3677 /**/ | |
5796 | 3678 242, |
3679 /**/ | |
5794 | 3680 241, |
3681 /**/ | |
5792 | 3682 240, |
3683 /**/ | |
5790 | 3684 239, |
3685 /**/ | |
5788 | 3686 238, |
3687 /**/ | |
5786 | 3688 237, |
3689 /**/ | |
5784 | 3690 236, |
3691 /**/ | |
5782 | 3692 235, |
3693 /**/ | |
5780 | 3694 234, |
3695 /**/ | |
5778 | 3696 233, |
3697 /**/ | |
5776 | 3698 232, |
3699 /**/ | |
5774 | 3700 231, |
3701 /**/ | |
5772 | 3702 230, |
3703 /**/ | |
5770 | 3704 229, |
3705 /**/ | |
5768 | 3706 228, |
3707 /**/ | |
5766 | 3708 227, |
3709 /**/ | |
5764 | 3710 226, |
3711 /**/ | |
5761 | 3712 225, |
3713 /**/ | |
5759 | 3714 224, |
3715 /**/ | |
5757 | 3716 223, |
3717 /**/ | |
5755 | 3718 222, |
3719 /**/ | |
5753 | 3720 221, |
3721 /**/ | |
5751 | 3722 220, |
3723 /**/ | |
5749 | 3724 219, |
3725 /**/ | |
5747 | 3726 218, |
3727 /**/ | |
5745 | 3728 217, |
3729 /**/ | |
5743 | 3730 216, |
3731 /**/ | |
5741 | 3732 215, |
3733 /**/ | |
5739 | 3734 214, |
3735 /**/ | |
5737 | 3736 213, |
3737 /**/ | |
5735 | 3738 212, |
3739 /**/ | |
5732 | 3740 211, |
3741 /**/ | |
5730 | 3742 210, |
3743 /**/ | |
5728 | 3744 209, |
3745 /**/ | |
5726 | 3746 208, |
3747 /**/ | |
5724 | 3748 207, |
3749 /**/ | |
5722 | 3750 206, |
3751 /**/ | |
5720 | 3752 205, |
3753 /**/ | |
5718 | 3754 204, |
3755 /**/ | |
5716 | 3756 203, |
3757 /**/ | |
5714 | 3758 202, |
3759 /**/ | |
5712 | 3760 201, |
3761 /**/ | |
5710 | 3762 200, |
3763 /**/ | |
5708 | 3764 199, |
3765 /**/ | |
5706 | 3766 198, |
3767 /**/ | |
5704 | 3768 197, |
3769 /**/ | |
5702 | 3770 196, |
3771 /**/ | |
5700 | 3772 195, |
3773 /**/ | |
5698 | 3774 194, |
3775 /**/ | |
5695 | 3776 193, |
3777 /**/ | |
5693 | 3778 192, |
3779 /**/ | |
5690 | 3780 191, |
3781 /**/ | |
5688 | 3782 190, |
3783 /**/ | |
5686 | 3784 189, |
3785 /**/ | |
5684 | 3786 188, |
3787 /**/ | |
5682 | 3788 187, |
3789 /**/ | |
5680 | 3790 186, |
3791 /**/ | |
5678 | 3792 185, |
3793 /**/ | |
5676 | 3794 184, |
3795 /**/ | |
5674 | 3796 183, |
3797 /**/ | |
5672 | 3798 182, |
3799 /**/ | |
5670 | 3800 181, |
3801 /**/ | |
5668 | 3802 180, |
3803 /**/ | |
5666 | 3804 179, |
3805 /**/ | |
5664 | 3806 178, |
3807 /**/ | |
5661 | 3808 177, |
3809 /**/ | |
5659 | 3810 176, |
3811 /**/ | |
5657 | 3812 175, |
3813 /**/ | |
5655 | 3814 174, |
3815 /**/ | |
5653 | 3816 173, |
3817 /**/ | |
5651 | 3818 172, |
3819 /**/ | |
5649 | 3820 171, |
3821 /**/ | |
5647 | 3822 170, |
3823 /**/ | |
5645 | 3824 169, |
3825 /**/ | |
5643 | 3826 168, |
3827 /**/ | |
5641 | 3828 167, |
3829 /**/ | |
5639 | 3830 166, |
3831 /**/ | |
5637 | 3832 165, |
3833 /**/ | |
5635 | 3834 164, |
3835 /**/ | |
5633 | 3836 163, |
3837 /**/ | |
5631 | 3838 162, |
3839 /**/ | |
5629 | 3840 161, |
3841 /**/ | |
5627 | 3842 160, |
3843 /**/ | |
5625 | 3844 159, |
3845 /**/ | |
5623 | 3846 158, |
3847 /**/ | |
5621 | 3848 157, |
3849 /**/ | |
5619 | 3850 156, |
3851 /**/ | |
5616 | 3852 155, |
3853 /**/ | |
5614 | 3854 154, |
3855 /**/ | |
5612 | 3856 153, |
3857 /**/ | |
5610 | 3858 152, |
3859 /**/ | |
5608 | 3860 151, |
3861 /**/ | |
5606 | 3862 150, |
3863 /**/ | |
5604 | 3864 149, |
3865 /**/ | |
5602 | 3866 148, |
3867 /**/ | |
5600 | 3868 147, |
3869 /**/ | |
5598 | 3870 146, |
3871 /**/ | |
5596 | 3872 145, |
3873 /**/ | |
5594 | 3874 144, |
3875 /**/ | |
5592 | 3876 143, |
3877 /**/ | |
5590 | 3878 142, |
3879 /**/ | |
5588 | 3880 141, |
3881 /**/ | |
5586 | 3882 140, |
3883 /**/ | |
5584 | 3884 139, |
3885 /**/ | |
5582 | 3886 138, |
3887 /**/ | |
5580 | 3888 137, |
3889 /**/ | |
5578 | 3890 136, |
3891 /**/ | |
5575 | 3892 135, |
3893 /**/ | |
5573 | 3894 134, |
3895 /**/ | |
5571 | 3896 133, |
3897 /**/ | |
5569 | 3898 132, |
3899 /**/ | |
5566 | 3900 131, |
3901 /**/ | |
5564 | 3902 130, |
3903 /**/ | |
5562 | 3904 129, |
3905 /**/ | |
5560 | 3906 128, |
3907 /**/ | |
5558 | 3908 127, |
3909 /**/ | |
5556 | 3910 126, |
3911 /**/ | |
5553 | 3912 125, |
3913 /**/ | |
5551 | 3914 124, |
3915 /**/ | |
5549 | 3916 123, |
3917 /**/ | |
5547 | 3918 122, |
3919 /**/ | |
5545 | 3920 121, |
3921 /**/ | |
5543 | 3922 120, |
3923 /**/ | |
5541 | 3924 119, |
3925 /**/ | |
5539 | 3926 118, |
3927 /**/ | |
5537 | 3928 117, |
3929 /**/ | |
5535 | 3930 116, |
3931 /**/ | |
5533 | 3932 115, |
3933 /**/ | |
5531 | 3934 114, |
3935 /**/ | |
5529 | 3936 113, |
3937 /**/ | |
5527 | 3938 112, |
3939 /**/ | |
5525 | 3940 111, |
3941 /**/ | |
5523 | 3942 110, |
3943 /**/ | |
5521 | 3944 109, |
3945 /**/ | |
5519 | 3946 108, |
3947 /**/ | |
5517 | 3948 107, |
3949 /**/ | |
5515 | 3950 106, |
3951 /**/ | |
5513 | 3952 105, |
3953 /**/ | |
5511 | 3954 104, |
3955 /**/ | |
5508 | 3956 103, |
3957 /**/ | |
5506 | 3958 102, |
3959 /**/ | |
5504 | 3960 101, |
3961 /**/ | |
5502 | 3962 100, |
3963 /**/ | |
5500 | 3964 99, |
3965 /**/ | |
5498 | 3966 98, |
3967 /**/ | |
5496 | 3968 97, |
3969 /**/ | |
5494 | 3970 96, |
3971 /**/ | |
5492 | 3972 95, |
3973 /**/ | |
5490 | 3974 94, |
3975 /**/ | |
5488 | 3976 93, |
3977 /**/ | |
5485 | 3978 92, |
3979 /**/ | |
5483 | 3980 91, |
3981 /**/ | |
5481 | 3982 90, |
3983 /**/ | |
5479 | 3984 89, |
3985 /**/ | |
5477 | 3986 88, |
3987 /**/ | |
5475 | 3988 87, |
3989 /**/ | |
5473 | 3990 86, |
3991 /**/ | |
5471 | 3992 85, |
3993 /**/ | |
5469 | 3994 84, |
3995 /**/ | |
5467 | 3996 83, |
3997 /**/ | |
5464 | 3998 82, |
3999 /**/ | |
5462 | 4000 81, |
4001 /**/ | |
5460 | 4002 80, |
4003 /**/ | |
5458 | 4004 79, |
4005 /**/ | |
5456 | 4006 78, |
4007 /**/ | |
5454 | 4008 77, |
4009 /**/ | |
5452 | 4010 76, |
4011 /**/ | |
5450 | 4012 75, |
4013 /**/ | |
5448 | 4014 74, |
4015 /**/ | |
5446 | 4016 73, |
4017 /**/ | |
5444 | 4018 72, |
4019 /**/ | |
5442 | 4020 71, |
4021 /**/ | |
5440 | 4022 70, |
4023 /**/ | |
5438 | 4024 69, |
4025 /**/ | |
5436 | 4026 68, |
4027 /**/ | |
5434 | 4028 67, |
4029 /**/ | |
5432 | 4030 66, |
4031 /**/ | |
5430 | 4032 65, |
4033 /**/ | |
5428 | 4034 64, |
4035 /**/ | |
5426 | 4036 63, |
4037 /**/ | |
5423 | 4038 62, |
4039 /**/ | |
5421 | 4040 61, |
4041 /**/ | |
5419 | 4042 60, |
4043 /**/ | |
5417 | 4044 59, |
4045 /**/ | |
5415 | 4046 58, |
4047 /**/ | |
5413 | 4048 57, |
4049 /**/ | |
5411 | 4050 56, |
4051 /**/ | |
5409 | 4052 55, |
4053 /**/ | |
5407 | 4054 54, |
4055 /**/ | |
5405 | 4056 53, |
4057 /**/ | |
5403 | 4058 52, |
4059 /**/ | |
5401 | 4060 51, |
4061 /**/ | |
5398 | 4062 50, |
4063 /**/ | |
5396 | 4064 49, |
4065 /**/ | |
5394 | 4066 48, |
4067 /**/ | |
5392 | 4068 47, |
4069 /**/ | |
5390 | 4070 46, |
4071 /**/ | |
5388 | 4072 45, |
4073 /**/ | |
5386 | 4074 44, |
4075 /**/ | |
5384 | 4076 43, |
4077 /**/ | |
5382 | 4078 42, |
4079 /**/ | |
5380 | 4080 41, |
4081 /**/ | |
5378 | 4082 40, |
4083 /**/ | |
5376 | 4084 39, |
4085 /**/ | |
5374 | 4086 38, |
4087 /**/ | |
5372 | 4088 37, |
4089 /**/ | |
5370 | 4090 36, |
4091 /**/ | |
5367 | 4092 35, |
4093 /**/ | |
5365 | 4094 34, |
4095 /**/ | |
5363 | 4096 33, |
4097 /**/ | |
5360 | 4098 32, |
4099 /**/ | |
5358 | 4100 31, |
4101 /**/ | |
5356 | 4102 30, |
4103 /**/ | |
5353 | 4104 29, |
4105 /**/ | |
5351 | 4106 28, |
4107 /**/ | |
5349 | 4108 27, |
4109 /**/ | |
5347 | 4110 26, |
4111 /**/ | |
5345 | 4112 25, |
4113 /**/ | |
5343 | 4114 24, |
4115 /**/ | |
5341 | 4116 23, |
4117 /**/ | |
5338 | 4118 22, |
4119 /**/ | |
5336 | 4120 21, |
4121 /**/ | |
5334 | 4122 20, |
4123 /**/ | |
5332 | 4124 19, |
4125 /**/ | |
5330 | 4126 18, |
4127 /**/ | |
5328 | 4128 17, |
4129 /**/ | |
5326 | 4130 16, |
4131 /**/ | |
5324 | 4132 15, |
4133 /**/ | |
5322 | 4134 14, |
4135 /**/ | |
5320 | 4136 13, |
4137 /**/ | |
5318 | 4138 12, |
4139 /**/ | |
5316 | 4140 11, |
4141 /**/ | |
5314 | 4142 10, |
4143 /**/ | |
5312 | 4144 9, |
4145 /**/ | |
5310 | 4146 8, |
4147 /**/ | |
5308 | 4148 7, |
4149 /**/ | |
5306 | 4150 6, |
4151 /**/ | |
5304 | 4152 5, |
4153 /**/ | |
5302 | 4154 4, |
4155 /**/ | |
5300 | 4156 3, |
4157 /**/ | |
5298 | 4158 2, |
4159 /**/ | |
5296 | 4160 1, |
4161 /**/ | |
7 | 4162 0 |
4163 }; | |
4164 | |
1760 | 4165 /* |
4166 * Place to put a short description when adding a feature with a patch. | |
4167 * Keep it short, e.g.,: "relative numbers", "persistent undo". | |
4168 * Also add a comment marker to separate the lines. | |
4169 * See the official Vim patches for the diff format: It must use a context of | |
1777 | 4170 * one line only. Create it by hand or use "diff -C2" and edit the patch. |
1760 | 4171 */ |
4172 static char *(extra_patches[]) = | |
4173 { /* Add your patch description below this line */ | |
4174 /**/ | |
4175 NULL | |
4176 }; | |
4177 | |
7 | 4178 int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
4179 highest_patch(void) |
7 | 4180 { |
4181 int i; | |
4182 int h = 0; | |
4183 | |
4184 for (i = 0; included_patches[i] != 0; ++i) | |
4185 if (included_patches[i] > h) | |
4186 h = included_patches[i]; | |
4187 return h; | |
4188 } | |
4189 | |
4190 #if defined(FEAT_EVAL) || defined(PROTO) | |
4191 /* | |
4192 * Return TRUE if patch "n" has been included. | |
4193 */ | |
4194 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
4195 has_patch(int n) |
7 | 4196 { |
4197 int i; | |
4198 | |
4199 for (i = 0; included_patches[i] != 0; ++i) | |
4200 if (included_patches[i] == n) | |
4201 return TRUE; | |
4202 return FALSE; | |
4203 } | |
4204 #endif | |
4205 | |
4206 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
4207 ex_version(exarg_T *eap) |
7 | 4208 { |
4209 /* | |
4210 * Ignore a ":version 9.99" command. | |
4211 */ | |
4212 if (*eap->arg == NUL) | |
4213 { | |
4214 msg_putchar('\n'); | |
4215 list_version(); | |
4216 } | |
4217 } | |
4218 | |
4147 | 4219 /* |
4220 * List all features aligned in columns, dictionary style. | |
4221 */ | |
4222 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
4223 list_features(void) |
4147 | 4224 { |
4225 int i; | |
4226 int ncol; | |
4227 int nrow; | |
4228 int nfeat = 0; | |
4229 int width = 0; | |
4230 | |
4231 /* Find the length of the longest feature name, use that + 1 as the column | |
4232 * width */ | |
4233 for (i = 0; features[i] != NULL; ++i) | |
4234 { | |
4160 | 4235 int l = (int)STRLEN(features[i]); |
4147 | 4236 |
4237 if (l > width) | |
4238 width = l; | |
4239 ++nfeat; | |
4240 } | |
4241 width += 1; | |
4242 | |
4243 if (Columns < width) | |
4244 { | |
4245 /* Not enough screen columns - show one per line */ | |
4246 for (i = 0; features[i] != NULL; ++i) | |
4247 { | |
4248 version_msg(features[i]); | |
4249 if (msg_col > 0) | |
4250 msg_putchar('\n'); | |
4251 } | |
4252 return; | |
4253 } | |
4254 | |
4255 /* The rightmost column doesn't need a separator. | |
4256 * Sacrifice it to fit in one more column if possible. */ | |
4170 | 4257 ncol = (int) (Columns + 1) / width; |
4147 | 4258 nrow = nfeat / ncol + (nfeat % ncol ? 1 : 0); |
4259 | |
4170 | 4260 /* i counts columns then rows. idx counts rows then columns. */ |
4147 | 4261 for (i = 0; !got_int && i < nrow * ncol; ++i) |
4262 { | |
4263 int idx = (i / ncol) + (i % ncol) * nrow; | |
4264 | |
4265 if (idx < nfeat) | |
4266 { | |
4267 int last_col = (i + 1) % ncol == 0; | |
4268 | |
4269 msg_puts((char_u *)features[idx]); | |
4270 if (last_col) | |
4271 { | |
4272 if (msg_col > 0) | |
4273 msg_putchar('\n'); | |
4274 } | |
4275 else | |
4276 { | |
4277 while (msg_col % width) | |
4278 msg_putchar(' '); | |
4279 } | |
4280 } | |
4281 else | |
4170 | 4282 { |
4283 if (msg_col > 0) | |
4284 msg_putchar('\n'); | |
4285 } | |
4147 | 4286 } |
4287 } | |
4160 | 4288 |
7 | 4289 void |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
4290 list_version(void) |
7 | 4291 { |
4292 int i; | |
4293 int first; | |
4294 char *s = ""; | |
4295 | |
4296 /* | |
4297 * When adding features here, don't forget to update the list of | |
4298 * internal variables in eval.c! | |
4299 */ | |
4300 MSG(longVersion); | |
4301 #ifdef WIN3264 | |
4302 # ifdef FEAT_GUI_W32 | |
4303 # if defined(_MSC_VER) && (_MSC_VER <= 1010) | |
4304 /* Only MS VC 4.1 and earlier can do Win32s */ | |
1607 | 4305 MSG_PUTS(_("\nMS-Windows 16/32-bit GUI version")); |
7 | 4306 # else |
990 | 4307 # ifdef _WIN64 |
1607 | 4308 MSG_PUTS(_("\nMS-Windows 64-bit GUI version")); |
990 | 4309 # else |
1607 | 4310 MSG_PUTS(_("\nMS-Windows 32-bit GUI version")); |
990 | 4311 # endif |
7 | 4312 # endif |
4313 if (gui_is_win32s()) | |
4314 MSG_PUTS(_(" in Win32s mode")); | |
4315 # ifdef FEAT_OLE | |
4316 MSG_PUTS(_(" with OLE support")); | |
4317 # endif | |
4318 # else | |
1607 | 4319 # ifdef _WIN64 |
4320 MSG_PUTS(_("\nMS-Windows 64-bit console version")); | |
4321 # else | |
4322 MSG_PUTS(_("\nMS-Windows 32-bit console version")); | |
4323 # endif | |
7 | 4324 # endif |
4325 #endif | |
4326 #ifdef MACOS | |
4327 # ifdef MACOS_X | |
4328 # ifdef MACOS_X_UNIX | |
4329 MSG_PUTS(_("\nMacOS X (unix) version")); | |
4330 # else | |
4331 MSG_PUTS(_("\nMacOS X version")); | |
4332 # endif | |
4333 #else | |
4334 MSG_PUTS(_("\nMacOS version")); | |
4335 # endif | |
4336 #endif | |
4337 | |
4338 #ifdef VMS | |
1705 | 4339 MSG_PUTS(_("\nOpenVMS version")); |
1045 | 4340 # ifdef HAVE_PATHDEF |
4341 if (*compiled_arch != NUL) | |
4342 { | |
4343 MSG_PUTS(" - "); | |
4344 MSG_PUTS(compiled_arch); | |
4345 } | |
4346 # endif | |
4347 | |
7 | 4348 #endif |
4349 | |
4350 /* Print the list of patch numbers if there is at least one. */ | |
4351 /* Print a range when patches are consecutive: "1-10, 12, 15-40, 42-45" */ | |
4352 if (included_patches[0] != 0) | |
4353 { | |
4354 MSG_PUTS(_("\nIncluded patches: ")); | |
4355 first = -1; | |
4356 /* find last one */ | |
4357 for (i = 0; included_patches[i] != 0; ++i) | |
4358 ; | |
4359 while (--i >= 0) | |
4360 { | |
4361 if (first < 0) | |
4362 first = included_patches[i]; | |
4363 if (i == 0 || included_patches[i - 1] != included_patches[i] + 1) | |
4364 { | |
4365 MSG_PUTS(s); | |
4366 s = ", "; | |
4367 msg_outnum((long)first); | |
4368 if (first != included_patches[i]) | |
4369 { | |
4370 MSG_PUTS("-"); | |
4371 msg_outnum((long)included_patches[i]); | |
4372 } | |
4373 first = -1; | |
4374 } | |
4375 } | |
4376 } | |
4377 | |
1760 | 4378 /* Print the list of extra patch descriptions if there is at least one. */ |
4379 if (extra_patches[0] != NULL) | |
4380 { | |
4381 MSG_PUTS(_("\nExtra patches: ")); | |
4382 s = ""; | |
4383 for (i = 0; extra_patches[i] != NULL; ++i) | |
4384 { | |
4385 MSG_PUTS(s); | |
4386 s = ", "; | |
4387 MSG_PUTS(extra_patches[i]); | |
4388 } | |
4389 } | |
4390 | |
7 | 4391 #ifdef MODIFIED_BY |
4392 MSG_PUTS("\n"); | |
4393 MSG_PUTS(_("Modified by ")); | |
4394 MSG_PUTS(MODIFIED_BY); | |
4395 #endif | |
4396 | |
4397 #ifdef HAVE_PATHDEF | |
4398 if (*compiled_user != NUL || *compiled_sys != NUL) | |
4399 { | |
4400 MSG_PUTS(_("\nCompiled ")); | |
4401 if (*compiled_user != NUL) | |
4402 { | |
4403 MSG_PUTS(_("by ")); | |
4404 MSG_PUTS(compiled_user); | |
4405 } | |
4406 if (*compiled_sys != NUL) | |
4407 { | |
4408 MSG_PUTS("@"); | |
4409 MSG_PUTS(compiled_sys); | |
4410 } | |
4411 } | |
4412 #endif | |
4413 | |
4414 #ifdef FEAT_HUGE | |
4415 MSG_PUTS(_("\nHuge version ")); | |
4416 #else | |
4417 # ifdef FEAT_BIG | |
4418 MSG_PUTS(_("\nBig version ")); | |
4419 # else | |
4420 # ifdef FEAT_NORMAL | |
4421 MSG_PUTS(_("\nNormal version ")); | |
4422 # else | |
4423 # ifdef FEAT_SMALL | |
4424 MSG_PUTS(_("\nSmall version ")); | |
4425 # else | |
4426 MSG_PUTS(_("\nTiny version ")); | |
4427 # endif | |
4428 # endif | |
4429 # endif | |
4430 #endif | |
4431 #ifndef FEAT_GUI | |
4432 MSG_PUTS(_("without GUI.")); | |
4433 #else | |
4434 # ifdef FEAT_GUI_GTK | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8216
diff
changeset
|
4435 # ifdef USE_GTK3 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8216
diff
changeset
|
4436 MSG_PUTS(_("with GTK3 GUI.")); |
7 | 4437 # else |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8216
diff
changeset
|
4438 # ifdef FEAT_GUI_GNOME |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8216
diff
changeset
|
4439 MSG_PUTS(_("with GTK2-GNOME GUI.")); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8216
diff
changeset
|
4440 # else |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8216
diff
changeset
|
4441 MSG_PUTS(_("with GTK2 GUI.")); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8216
diff
changeset
|
4442 # endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8216
diff
changeset
|
4443 # endif |
7 | 4444 # else |
4445 # ifdef FEAT_GUI_MOTIF | |
4446 MSG_PUTS(_("with X11-Motif GUI.")); | |
4447 # else | |
4448 # ifdef FEAT_GUI_ATHENA | |
4449 # ifdef FEAT_GUI_NEXTAW | |
4450 MSG_PUTS(_("with X11-neXtaw GUI.")); | |
4451 # else | |
4452 MSG_PUTS(_("with X11-Athena GUI.")); | |
4453 # endif | |
4454 # else | |
4455 # ifdef FEAT_GUI_PHOTON | |
4456 MSG_PUTS(_("with Photon GUI.")); | |
4457 # else | |
4458 # if defined(MSWIN) | |
4459 MSG_PUTS(_("with GUI.")); | |
4460 # else | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
4461 # if defined(TARGET_API_MAC_CARBON) && TARGET_API_MAC_CARBON |
7 | 4462 MSG_PUTS(_("with Carbon GUI.")); |
4463 # else | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
4464 # if defined(TARGET_API_MAC_OSX) && TARGET_API_MAC_OSX |
7 | 4465 MSG_PUTS(_("with Cocoa GUI.")); |
4466 # else | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
4467 # if defined(MACOS) |
7 | 4468 MSG_PUTS(_("with (classic) GUI.")); |
4469 # endif | |
4470 # endif | |
4471 # endif | |
4472 # endif | |
4473 # endif | |
4474 # endif | |
4475 # endif | |
4476 # endif | |
4477 #endif | |
4478 version_msg(_(" Features included (+) or not (-):\n")); | |
4479 | |
4147 | 4480 list_features(); |
7 | 4481 |
4482 #ifdef SYS_VIMRC_FILE | |
4483 version_msg(_(" system vimrc file: \"")); | |
4484 version_msg(SYS_VIMRC_FILE); | |
4485 version_msg("\"\n"); | |
4486 #endif | |
4487 #ifdef USR_VIMRC_FILE | |
4488 version_msg(_(" user vimrc file: \"")); | |
4489 version_msg(USR_VIMRC_FILE); | |
4490 version_msg("\"\n"); | |
4491 #endif | |
4492 #ifdef USR_VIMRC_FILE2 | |
4493 version_msg(_(" 2nd user vimrc file: \"")); | |
4494 version_msg(USR_VIMRC_FILE2); | |
4495 version_msg("\"\n"); | |
4496 #endif | |
4497 #ifdef USR_VIMRC_FILE3 | |
4498 version_msg(_(" 3rd user vimrc file: \"")); | |
4499 version_msg(USR_VIMRC_FILE3); | |
4500 version_msg("\"\n"); | |
4501 #endif | |
4502 #ifdef USR_EXRC_FILE | |
4503 version_msg(_(" user exrc file: \"")); | |
4504 version_msg(USR_EXRC_FILE); | |
4505 version_msg("\"\n"); | |
4506 #endif | |
4507 #ifdef USR_EXRC_FILE2 | |
4508 version_msg(_(" 2nd user exrc file: \"")); | |
4509 version_msg(USR_EXRC_FILE2); | |
4510 version_msg("\"\n"); | |
4511 #endif | |
4512 #ifdef FEAT_GUI | |
4513 # ifdef SYS_GVIMRC_FILE | |
4514 version_msg(_(" system gvimrc file: \"")); | |
4515 version_msg(SYS_GVIMRC_FILE); | |
4516 version_msg("\"\n"); | |
4517 # endif | |
4518 version_msg(_(" user gvimrc file: \"")); | |
4519 version_msg(USR_GVIMRC_FILE); | |
4520 version_msg("\"\n"); | |
4521 # ifdef USR_GVIMRC_FILE2 | |
4522 version_msg(_("2nd user gvimrc file: \"")); | |
4523 version_msg(USR_GVIMRC_FILE2); | |
4524 version_msg("\"\n"); | |
4525 # endif | |
4526 # ifdef USR_GVIMRC_FILE3 | |
4527 version_msg(_("3rd user gvimrc file: \"")); | |
4528 version_msg(USR_GVIMRC_FILE3); | |
4529 version_msg("\"\n"); | |
4530 # endif | |
4531 #endif | |
4532 #ifdef FEAT_GUI | |
4533 # ifdef SYS_MENU_FILE | |
4534 version_msg(_(" system menu file: \"")); | |
4535 version_msg(SYS_MENU_FILE); | |
4536 version_msg("\"\n"); | |
4537 # endif | |
4538 #endif | |
4539 #ifdef HAVE_PATHDEF | |
4540 if (*default_vim_dir != NUL) | |
4541 { | |
4542 version_msg(_(" fall-back for $VIM: \"")); | |
4543 version_msg((char *)default_vim_dir); | |
4544 version_msg("\"\n"); | |
4545 } | |
4546 if (*default_vimruntime_dir != NUL) | |
4547 { | |
4548 version_msg(_(" f-b for $VIMRUNTIME: \"")); | |
4549 version_msg((char *)default_vimruntime_dir); | |
4550 version_msg("\"\n"); | |
4551 } | |
4552 version_msg(_("Compilation: ")); | |
4553 version_msg((char *)all_cflags); | |
4554 version_msg("\n"); | |
4555 #ifdef VMS | |
4556 if (*compiler_version != NUL) | |
4557 { | |
4558 version_msg(_("Compiler: ")); | |
4559 version_msg((char *)compiler_version); | |
4560 version_msg("\n"); | |
4561 } | |
4562 #endif | |
4563 version_msg(_("Linking: ")); | |
4564 version_msg((char *)all_lflags); | |
4565 #endif | |
4566 #ifdef DEBUG | |
4567 version_msg("\n"); | |
4568 version_msg(_(" DEBUG BUILD")); | |
4569 #endif | |
4570 } | |
4571 | |
4572 /* | |
4573 * Output a string for the version message. If it's going to wrap, output a | |
4574 * newline, unless the message is too long to fit on the screen anyway. | |
4575 */ | |
4576 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
4577 version_msg(char *s) |
7 | 4578 { |
4579 int len = (int)STRLEN(s); | |
4580 | |
4581 if (!got_int && len < (int)Columns && msg_col + len >= (int)Columns | |
4582 && *s != '\n') | |
4583 msg_putchar('\n'); | |
4584 if (!got_int) | |
4585 MSG_PUTS(s); | |
4586 } | |
4587 | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4588 static void do_intro_line(int row, char_u *mesg, int add_version, int attr); |
7 | 4589 |
4590 /* | |
5126
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
4591 * Show the intro message when not editing a file. |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
4592 */ |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
4593 void |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
4594 maybe_intro_message(void) |
5126
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
4595 { |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
4596 if (bufempty() |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
4597 && curbuf->b_fname == NULL |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
4598 #ifdef FEAT_WINDOWS |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
4599 && firstwin->w_next == NULL |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
4600 #endif |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
4601 && vim_strchr(p_shm, SHM_INTRO) == NULL) |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
4602 intro_message(FALSE); |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
4603 } |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
4604 |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
4605 /* |
7 | 4606 * Give an introductory message about Vim. |
4607 * Only used when starting Vim on an empty file, without a file name. | |
4608 * Or with the ":intro" command (for Sven :-). | |
4609 */ | |
4610 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
4611 intro_message( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
4612 int colon) /* TRUE for ":intro" */ |
7 | 4613 { |
4614 int i; | |
4615 int row; | |
4616 int blanklines; | |
4617 int sponsor; | |
4618 char *p; | |
4619 static char *(lines[]) = | |
4620 { | |
4621 N_("VIM - Vi IMproved"), | |
4622 "", | |
4623 N_("version "), | |
4624 N_("by Bram Moolenaar et al."), | |
4625 #ifdef MODIFIED_BY | |
4626 " ", | |
4627 #endif | |
4628 N_("Vim is open source and freely distributable"), | |
4629 "", | |
4630 N_("Help poor children in Uganda!"), | |
4631 N_("type :help iccf<Enter> for information "), | |
4632 "", | |
4633 N_("type :q<Enter> to exit "), | |
4634 N_("type :help<Enter> or <F1> for on-line help"), | |
26 | 4635 N_("type :help version7<Enter> for version info"), |
7 | 4636 NULL, |
4637 "", | |
4638 N_("Running in Vi compatible mode"), | |
4639 N_("type :set nocp<Enter> for Vim defaults"), | |
4640 N_("type :help cp-default<Enter> for info on this"), | |
4641 }; | |
4642 #ifdef FEAT_GUI | |
4643 static char *(gui_lines[]) = | |
4644 { | |
4645 NULL, | |
4646 NULL, | |
4647 NULL, | |
4648 NULL, | |
4649 #ifdef MODIFIED_BY | |
4650 NULL, | |
4651 #endif | |
4652 NULL, | |
4653 NULL, | |
4654 NULL, | |
4655 N_("menu Help->Orphans for information "), | |
4656 NULL, | |
4657 N_("Running modeless, typed text is inserted"), | |
4658 N_("menu Edit->Global Settings->Toggle Insert Mode "), | |
4659 N_(" for two modes "), | |
4660 NULL, | |
4661 NULL, | |
4662 NULL, | |
4663 N_("menu Edit->Global Settings->Toggle Vi Compatible"), | |
4664 N_(" for Vim defaults "), | |
4665 }; | |
4666 #endif | |
4667 | |
4668 /* blanklines = screen height - # message lines */ | |
4669 blanklines = (int)Rows - ((sizeof(lines) / sizeof(char *)) - 1); | |
4670 if (!p_cp) | |
4671 blanklines += 4; /* add 4 for not showing "Vi compatible" message */ | |
4672 #if defined(WIN3264) && !defined(FEAT_GUI_W32) | |
4673 if (mch_windows95()) | |
4674 blanklines -= 3; /* subtract 3 for showing "Windows 95" message */ | |
4675 #endif | |
4676 | |
4677 #ifdef FEAT_WINDOWS | |
4678 /* Don't overwrite a statusline. Depends on 'cmdheight'. */ | |
4679 if (p_ls > 1) | |
4680 blanklines -= Rows - topframe->fr_height; | |
4681 #endif | |
4682 if (blanklines < 0) | |
4683 blanklines = 0; | |
4684 | |
4685 /* Show the sponsor and register message one out of four times, the Uganda | |
4686 * message two out of four times. */ | |
615 | 4687 sponsor = (int)time(NULL); |
7 | 4688 sponsor = ((sponsor & 2) == 0) - ((sponsor & 4) == 0); |
4689 | |
4690 /* start displaying the message lines after half of the blank lines */ | |
4691 row = blanklines / 2; | |
4692 if ((row >= 2 && Columns >= 50) || colon) | |
4693 { | |
4694 for (i = 0; i < (int)(sizeof(lines) / sizeof(char *)); ++i) | |
4695 { | |
4696 p = lines[i]; | |
4697 #ifdef FEAT_GUI | |
4698 if (p_im && gui.in_use && gui_lines[i] != NULL) | |
4699 p = gui_lines[i]; | |
4700 #endif | |
4701 if (p == NULL) | |
4702 { | |
4703 if (!p_cp) | |
4704 break; | |
4705 continue; | |
4706 } | |
4707 if (sponsor != 0) | |
4708 { | |
4709 if (strstr(p, "children") != NULL) | |
4710 p = sponsor < 0 | |
4711 ? N_("Sponsor Vim development!") | |
4712 : N_("Become a registered Vim user!"); | |
4713 else if (strstr(p, "iccf") != NULL) | |
4714 p = sponsor < 0 | |
4715 ? N_("type :help sponsor<Enter> for information ") | |
4716 : N_("type :help register<Enter> for information "); | |
4717 else if (strstr(p, "Orphans") != NULL) | |
4718 p = N_("menu Help->Sponsor/Register for information "); | |
4719 } | |
4720 if (*p != NUL) | |
4721 do_intro_line(row, (char_u *)_(p), i == 2, 0); | |
4722 ++row; | |
4723 } | |
4724 #if defined(WIN3264) && !defined(FEAT_GUI_W32) | |
4725 if (mch_windows95()) | |
4726 { | |
4727 do_intro_line(++row, | |
4728 (char_u *)_("WARNING: Windows 95/98/ME detected"), | |
4729 FALSE, hl_attr(HLF_E)); | |
4730 do_intro_line(++row, | |
4731 (char_u *)_("type :help windows95<Enter> for info on this"), | |
4732 FALSE, 0); | |
4733 } | |
4734 #endif | |
4735 } | |
4736 | |
4737 /* Make the wait-return message appear just below the text. */ | |
4738 if (colon) | |
4739 msg_row = row; | |
4740 } | |
4741 | |
4742 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
4743 do_intro_line( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
4744 int row, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
4745 char_u *mesg, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
4746 int add_version, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
4747 int attr) |
7 | 4748 { |
4749 char_u vers[20]; | |
4750 int col; | |
4751 char_u *p; | |
4752 int l; | |
4753 int clen; | |
4754 #ifdef MODIFIED_BY | |
4755 # define MODBY_LEN 150 | |
4756 char_u modby[MODBY_LEN]; | |
4757 | |
4758 if (*mesg == ' ') | |
4759 { | |
1491 | 4760 vim_strncpy(modby, (char_u *)_("Modified by "), MODBY_LEN - 1); |
7 | 4761 l = STRLEN(modby); |
1491 | 4762 vim_strncpy(modby + l, (char_u *)MODIFIED_BY, MODBY_LEN - l - 1); |
7 | 4763 mesg = modby; |
4764 } | |
4765 #endif | |
4766 | |
4767 /* Center the message horizontally. */ | |
4768 col = vim_strsize(mesg); | |
4769 if (add_version) | |
4770 { | |
4771 STRCPY(vers, mediumVersion); | |
4772 if (highest_patch()) | |
4773 { | |
4774 /* Check for 9.9x or 9.9xx, alpha/beta version */ | |
2619 | 4775 if (isalpha((int)vers[3])) |
7 | 4776 { |
3396 | 4777 int len = (isalpha((int)vers[4])) ? 5 : 4; |
4778 sprintf((char *)vers + len, ".%d%s", highest_patch(), | |
4779 mediumVersion + len); | |
7 | 4780 } |
4781 else | |
4782 sprintf((char *)vers + 3, ".%d", highest_patch()); | |
4783 } | |
4784 col += (int)STRLEN(vers); | |
4785 } | |
4786 col = (Columns - col) / 2; | |
4787 if (col < 0) | |
4788 col = 0; | |
4789 | |
4790 /* Split up in parts to highlight <> items differently. */ | |
4791 for (p = mesg; *p != NUL; p += l) | |
4792 { | |
4793 clen = 0; | |
4794 for (l = 0; p[l] != NUL | |
4795 && (l == 0 || (p[l] != '<' && p[l - 1] != '>')); ++l) | |
4796 { | |
4797 #ifdef FEAT_MBYTE | |
4798 if (has_mbyte) | |
4799 { | |
4800 clen += ptr2cells(p + l); | |
474 | 4801 l += (*mb_ptr2len)(p + l) - 1; |
7 | 4802 } |
4803 else | |
4804 #endif | |
4805 clen += byte2cells(p[l]); | |
4806 } | |
4807 screen_puts_len(p, l, row, col, *p == '<' ? hl_attr(HLF_8) : attr); | |
4808 col += clen; | |
4809 } | |
4810 | |
4811 /* Add the version number to the version line. */ | |
4812 if (add_version) | |
4813 screen_puts(vers, row, col, 0); | |
4814 } | |
4815 | |
4816 /* | |
4817 * ":intro": clear screen, display intro screen and wait for return. | |
4818 */ | |
4819 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
4820 ex_intro(exarg_T *eap UNUSED) |
7 | 4821 { |
4822 screenclear(); | |
4823 intro_message(TRUE); | |
4824 wait_return(TRUE); | |
4825 } |