blob: abfcf3f5683cafc6f9b9d9639bfb34e65afb97d5 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
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
Bram Moolenaar071d4272004-06-13 20:20:40 +000012/*
13 * Vim originated from Stevie version 3.6 (Fish disk 217) by GRWalter (Fred)
14 * It has been changed beyond recognition since then.
15 *
Bram Moolenaarabd56da2022-06-23 20:46:27 +010016 * Differences between version 8.2 and 9.0 can be found with ":help version9".
Bram Moolenaar640102482016-09-12 16:23:34 +020017 * Differences between version 7.4 and 8.x can be found with ":help version8".
18 * Differences between version 6.4 and 7.x can be found with ":help version7".
19 * Differences between version 5.8 and 6.x can be found with ":help version6".
Bram Moolenaar071d4272004-06-13 20:20:40 +000020 * Differences between version 4.x and 5.x can be found with ":help version5".
21 * Differences between version 3.0 and 4.x can be found with ":help version4".
22 * All the remarks about older versions have been removed, they are not very
23 * interesting.
24 */
25
26#include "version.h"
27
Bram Moolenaard042c562005-06-30 22:04:15 +000028char *Version = VIM_VERSION_SHORT;
29static char *mediumVersion = VIM_VERSION_MEDIUM;
Bram Moolenaar071d4272004-06-13 20:20:40 +000030
31#if defined(HAVE_DATE_TIME) || defined(PROTO)
32# if (defined(VMS) && defined(VAXC)) || defined(PROTO)
33char longVersion[sizeof(VIM_VERSION_LONG_DATE) + sizeof(__DATE__)
34 + sizeof(__TIME__) + 3];
Bram Moolenaar445f3032013-02-20 16:47:36 +010035
Bram Moolenaar071d4272004-06-13 20:20:40 +000036 void
Bram Moolenaar35fb6fb2018-06-23 16:12:21 +020037init_longVersion(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +000038{
39 /*
40 * Construct the long version string. Necessary because
Bram Moolenaarbdace832019-03-02 10:13:42 +010041 * VAX C can't concatenate strings in the preprocessor.
Bram Moolenaar071d4272004-06-13 20:20:40 +000042 */
43 strcpy(longVersion, VIM_VERSION_LONG_DATE);
Bram Moolenaar8f1dde52020-06-05 23:16:29 +020044#ifdef BUILD_DATE
45 strcat(longVersion, BUILD_DATE);
46#else
Bram Moolenaar071d4272004-06-13 20:20:40 +000047 strcat(longVersion, __DATE__);
48 strcat(longVersion, " ");
49 strcat(longVersion, __TIME__);
Bram Moolenaar8f1dde52020-06-05 23:16:29 +020050#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000051 strcat(longVersion, ")");
52}
Bram Moolenaar35fb6fb2018-06-23 16:12:21 +020053
Bram Moolenaar071d4272004-06-13 20:20:40 +000054# else
Bram Moolenaar542ffe12021-09-17 20:45:30 +020055char *longVersion = NULL;
56
Bram Moolenaar35fb6fb2018-06-23 16:12:21 +020057 void
58init_longVersion(void)
59{
Yegappan Lakshmanan142ed772023-01-26 12:00:00 +000060 if (longVersion != NULL)
61 return;
Bram Moolenaar278e8382020-04-13 18:25:33 +020062
Yegappan Lakshmanan142ed772023-01-26 12:00:00 +000063#ifdef BUILD_DATE
64 char *date_time = BUILD_DATE;
65#else
66 char *date_time = __DATE__ " " __TIME__;
67#endif
68 char *msg = _("%s (%s, compiled %s)");
69 size_t len = strlen(msg)
70 + strlen(VIM_VERSION_LONG_ONLY)
71 + strlen(VIM_VERSION_DATE_ONLY)
72 + strlen(date_time);
73
74 longVersion = alloc(len);
75 if (longVersion == NULL)
76 longVersion = VIM_VERSION_LONG;
77 else
78 vim_snprintf(longVersion, len, msg,
79 VIM_VERSION_LONG_ONLY, VIM_VERSION_DATE_ONLY, date_time);
Bram Moolenaar35fb6fb2018-06-23 16:12:21 +020080}
Bram Moolenaar071d4272004-06-13 20:20:40 +000081# endif
82#else
83char *longVersion = VIM_VERSION_LONG;
Bram Moolenaareee3e942018-06-24 14:44:46 +020084
85 void
86init_longVersion(void)
87{
88 // nothing to do
89}
Bram Moolenaar071d4272004-06-13 20:20:40 +000090#endif
91
Bram Moolenaar071d4272004-06-13 20:20:40 +000092static char *(features[]) =
93{
Bram Moolenaarb5ef5e12013-08-30 16:35:44 +020094#ifdef HAVE_ACL
95 "+acl",
96#else
97 "-acl",
98#endif
Bram Moolenaaraa2f0ee2019-12-21 18:47:26 +010099#ifdef AMIGA // only for Amiga systems
Bram Moolenaar071d4272004-06-13 20:20:40 +0000100# ifdef FEAT_ARP
101 "+ARP",
102# else
103 "-ARP",
104# endif
105#endif
106#ifdef FEAT_ARABIC
107 "+arabic",
108#else
109 "-arabic",
110#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000111 "+autocmd",
Bram Moolenaar83ec2a72018-07-27 22:08:59 +0200112#ifdef FEAT_AUTOCHDIR
113 "+autochdir",
114#else
115 "-autochdir",
116#endif
Bram Moolenaare42a6d22017-11-12 19:21:51 +0100117#ifdef FEAT_AUTOSERVERNAME
118 "+autoservername",
119#else
120 "-autoservername",
121#endif
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100122#ifdef FEAT_BEVAL_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +0000123 "+balloon_eval",
124#else
125 "-balloon_eval",
126#endif
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100127#ifdef FEAT_BEVAL_TERM
Bram Moolenaar51b0f372017-11-18 18:52:04 +0100128 "+balloon_eval_term",
129#else
130 "-balloon_eval_term",
131#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000132#ifdef FEAT_BROWSE
133 "+browse",
134#else
135 "-browse",
136#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000137 "++builtin_terms",
Bram Moolenaar071d4272004-06-13 20:20:40 +0000138#ifdef FEAT_BYTEOFF
139 "+byte_offset",
140#else
141 "-byte_offset",
142#endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +0100143#ifdef FEAT_JOB_CHANNEL
Bram Moolenaar5aec4812016-01-25 20:15:45 +0100144 "+channel",
145#else
146 "-channel",
147#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000148 "+cindent",
Bram Moolenaar071d4272004-06-13 20:20:40 +0000149#ifdef FEAT_CLIENTSERVER
150 "+clientserver",
151#else
152 "-clientserver",
153#endif
154#ifdef FEAT_CLIPBOARD
155 "+clipboard",
156#else
157 "-clipboard",
158#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000159 "+cmdline_compl",
Bram Moolenaar071d4272004-06-13 20:20:40 +0000160 "+cmdline_hist",
Bram Moolenaar071d4272004-06-13 20:20:40 +0000161 "+cmdline_info",
Bram Moolenaar071d4272004-06-13 20:20:40 +0000162 "+comments",
Bram Moolenaar860cae12010-06-05 23:22:07 +0200163#ifdef FEAT_CONCEAL
164 "+conceal",
165#else
166 "-conceal",
167#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000168#ifdef FEAT_CRYPT
169 "+cryptv",
170#else
171 "-cryptv",
172#endif
173#ifdef FEAT_CSCOPE
174 "+cscope",
175#else
176 "-cscope",
177#endif
Bram Moolenaar860cae12010-06-05 23:22:07 +0200178 "+cursorbind",
Bram Moolenaar17c7c012006-01-26 22:25:15 +0000179#ifdef CURSOR_SHAPE
180 "+cursorshape",
181#else
182 "-cursorshape",
183#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000184#if defined(FEAT_CON_DIALOG) && defined(FEAT_GUI_DIALOG)
185 "+dialog_con_gui",
186#else
187# if defined(FEAT_CON_DIALOG)
188 "+dialog_con",
189# else
190# if defined(FEAT_GUI_DIALOG)
191 "+dialog_gui",
192# else
193 "-dialog",
194# endif
195# endif
196#endif
197#ifdef FEAT_DIFF
198 "+diff",
199#else
200 "-diff",
201#endif
202#ifdef FEAT_DIGRAPHS
203 "+digraphs",
204#else
205 "-digraphs",
206#endif
Bram Moolenaar4f974752019-02-17 17:44:42 +0100207#ifdef FEAT_GUI_MSWIN
Bram Moolenaarb5a7a8b2014-08-06 14:52:30 +0200208# ifdef FEAT_DIRECTX
209 "+directx",
210# else
211 "-directx",
212# endif
213#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000214#ifdef FEAT_DND
215 "+dnd",
216#else
217 "-dnd",
218#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000219 "-ebcdic",
Bram Moolenaar071d4272004-06-13 20:20:40 +0000220#ifdef FEAT_EMACS_TAGS
221 "+emacs_tags",
222#else
223 "-emacs_tags",
224#endif
225#ifdef FEAT_EVAL
226 "+eval",
227#else
228 "-eval",
229#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000230 "+ex_extra",
Bram Moolenaar071d4272004-06-13 20:20:40 +0000231#ifdef FEAT_SEARCH_EXTRA
232 "+extra_search",
233#else
234 "-extra_search",
235#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000236 "-farsi",
Bram Moolenaar071d4272004-06-13 20:20:40 +0000237 "+file_in_path",
Bram Moolenaar071d4272004-06-13 20:20:40 +0000238#ifdef FEAT_FIND_ID
239 "+find_in_path",
240#else
241 "-find_in_path",
242#endif
Bram Moolenaar446cb832008-06-24 21:56:24 +0000243 "+float",
Bram Moolenaar071d4272004-06-13 20:20:40 +0000244#ifdef FEAT_FOLDING
245 "+folding",
246#else
247 "-folding",
248#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000249 "-footer",
Bram Moolenaarc8ac3a02022-09-04 12:29:28 +0100250 // only interesting on Unix systems
Bram Moolenaar071d4272004-06-13 20:20:40 +0000251#if !defined(USE_SYSTEM) && defined(UNIX)
252 "+fork()",
253#endif
254#ifdef FEAT_GETTEXT
255# ifdef DYNAMIC_GETTEXT
256 "+gettext/dyn",
257# else
258 "+gettext",
259# endif
260#else
261 "-gettext",
262#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000263 "-hangul_input",
Bram Moolenaar071d4272004-06-13 20:20:40 +0000264#if (defined(HAVE_ICONV_H) && defined(USE_ICONV)) || defined(DYNAMIC_ICONV)
265# ifdef DYNAMIC_ICONV
266 "+iconv/dyn",
267# else
268 "+iconv",
269# endif
270#else
271 "-iconv",
272#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000273 "+insert_expand",
Bram Moolenaar352f5542020-04-13 19:04:21 +0200274#ifdef FEAT_IPV6
275 "+ipv6",
276#else
277 "-ipv6",
278#endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +0100279#ifdef FEAT_JOB_CHANNEL
Bram Moolenaar835dc632016-02-07 14:27:38 +0100280 "+job",
281#else
282 "-job",
283#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000284 "+jumplist",
Bram Moolenaar071d4272004-06-13 20:20:40 +0000285#ifdef FEAT_KEYMAP
286 "+keymap",
287#else
288 "-keymap",
289#endif
Bram Moolenaar9532fe72016-07-29 22:50:35 +0200290#ifdef FEAT_EVAL
291 "+lambda",
292#else
293 "-lambda",
294#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000295#ifdef FEAT_LANGMAP
296 "+langmap",
297#else
298 "-langmap",
299#endif
300#ifdef FEAT_LIBCALL
301 "+libcall",
302#else
303 "-libcall",
304#endif
305#ifdef FEAT_LINEBREAK
306 "+linebreak",
307#else
308 "-linebreak",
309#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000310 "+lispindent",
Bram Moolenaar071d4272004-06-13 20:20:40 +0000311 "+listcmds",
Bram Moolenaar071d4272004-06-13 20:20:40 +0000312 "+localmap",
Bram Moolenaar0ba04292010-07-14 23:23:17 +0200313#ifdef FEAT_LUA
314# ifdef DYNAMIC_LUA
315 "+lua/dyn",
316# else
317 "+lua",
318# endif
319#else
320 "-lua",
321#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000322#ifdef FEAT_MENU
323 "+menu",
324#else
325 "-menu",
326#endif
327#ifdef FEAT_SESSION
328 "+mksession",
329#else
330 "-mksession",
331#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000332 "+modify_fname",
Bram Moolenaar071d4272004-06-13 20:20:40 +0000333 "+mouse",
Bram Moolenaara1cb1d12019-10-17 23:00:07 +0200334#ifdef FEAT_MOUSESHAPE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000335 "+mouseshape",
Bram Moolenaara1cb1d12019-10-17 23:00:07 +0200336#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000337 "-mouseshape",
Bram Moolenaar071d4272004-06-13 20:20:40 +0000338#endif
Bram Moolenaar707cfb82012-10-21 04:00:07 +0200339
Bram Moolenaar071d4272004-06-13 20:20:40 +0000340#if defined(UNIX) || defined(VMS)
341# ifdef FEAT_MOUSE_DEC
342 "+mouse_dec",
343# else
344 "-mouse_dec",
345# endif
346# ifdef FEAT_MOUSE_GPM
Bram Moolenaar33fc4a62022-02-23 18:07:38 +0000347# ifdef DYNAMIC_GPM
348 "+mouse_gpm/dyn",
349# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000350 "+mouse_gpm",
Bram Moolenaar33fc4a62022-02-23 18:07:38 +0000351# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000352# else
353 "-mouse_gpm",
354# endif
355# ifdef FEAT_MOUSE_JSB
356 "+mouse_jsbterm",
357# else
358 "-mouse_jsbterm",
359# endif
360# ifdef FEAT_MOUSE_NET
361 "+mouse_netterm",
362# else
363 "-mouse_netterm",
364# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000365#endif
Bram Moolenaar707cfb82012-10-21 04:00:07 +0200366
Bram Moolenaar071d4272004-06-13 20:20:40 +0000367#ifdef __QNX__
368# ifdef FEAT_MOUSE_PTERM
369 "+mouse_pterm",
370# else
371 "-mouse_pterm",
372# endif
373#endif
Bram Moolenaar707cfb82012-10-21 04:00:07 +0200374
375#if defined(UNIX) || defined(VMS)
Bram Moolenaar707cfb82012-10-21 04:00:07 +0200376 "+mouse_sgr",
Bram Moolenaar707cfb82012-10-21 04:00:07 +0200377# ifdef FEAT_SYSMOUSE
378 "+mouse_sysmouse",
379# else
380 "-mouse_sysmouse",
381# endif
382# ifdef FEAT_MOUSE_URXVT
383 "+mouse_urxvt",
384# else
385 "-mouse_urxvt",
386# endif
Bram Moolenaar707cfb82012-10-21 04:00:07 +0200387 "+mouse_xterm",
Bram Moolenaar707cfb82012-10-21 04:00:07 +0200388#endif
389
Bram Moolenaar071d4272004-06-13 20:20:40 +0000390#ifdef FEAT_MBYTE_IME
391# ifdef DYNAMIC_IME
392 "+multi_byte_ime/dyn",
393# else
394 "+multi_byte_ime",
395# endif
396#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000397 "+multi_byte",
Bram Moolenaar071d4272004-06-13 20:20:40 +0000398#endif
399#ifdef FEAT_MULTI_LANG
400 "+multi_lang",
401#else
402 "-multi_lang",
403#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000404#ifdef FEAT_MZSCHEME
Bram Moolenaardf3267e2005-01-25 22:07:05 +0000405# ifdef DYNAMIC_MZSCHEME
406 "+mzscheme/dyn",
407# else
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000408 "+mzscheme",
Bram Moolenaardf3267e2005-01-25 22:07:05 +0000409# endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000410#else
411 "-mzscheme",
412#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000413#ifdef FEAT_NETBEANS_INTG
414 "+netbeans_intg",
415#else
416 "-netbeans_intg",
417#endif
Bram Moolenaar22fcfad2016-07-01 18:17:26 +0200418 "+num64",
Bram Moolenaar4f974752019-02-17 17:44:42 +0100419#ifdef FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000420# ifdef FEAT_OLE
421 "+ole",
422# else
423 "-ole",
424# endif
425#endif
Bram Moolenaar6183ccb2018-07-22 05:08:11 +0200426#ifdef FEAT_EVAL
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100427 "+packages",
Bram Moolenaar6183ccb2018-07-22 05:08:11 +0200428#else
429 "-packages",
430#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000431 "+path_extra",
Bram Moolenaar071d4272004-06-13 20:20:40 +0000432#ifdef FEAT_PERL
433# ifdef DYNAMIC_PERL
434 "+perl/dyn",
435# else
436 "+perl",
437# endif
438#else
439 "-perl",
440#endif
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200441#ifdef FEAT_PERSISTENT_UNDO
442 "+persistent_undo",
443#else
444 "-persistent_undo",
445#endif
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +0100446#ifdef FEAT_PROP_POPUP
447 "+popupwin",
448#else
449 "-popupwin",
450#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000451#ifdef FEAT_PRINTER
452# ifdef FEAT_POSTSCRIPT
453 "+postscript",
454# else
455 "-postscript",
456# endif
457 "+printer",
458#else
459 "-printer",
460#endif
Bram Moolenaar05159a02005-02-26 23:04:13 +0000461#ifdef FEAT_PROFILE
462 "+profile",
463#else
464 "-profile",
465#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000466#ifdef FEAT_PYTHON
467# ifdef DYNAMIC_PYTHON
468 "+python/dyn",
469# else
470 "+python",
471# endif
472#else
473 "-python",
474#endif
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200475#ifdef FEAT_PYTHON3
476# ifdef DYNAMIC_PYTHON3
Yee Cheng Chinc13b3d12023-08-20 21:18:38 +0200477# ifdef DYNAMIC_PYTHON3_STABLE_ABI
478 "+python3/dyn-stable",
479# else
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200480 "+python3/dyn",
Yee Cheng Chinc13b3d12023-08-20 21:18:38 +0200481# endif
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200482# else
483 "+python3",
484# endif
485#else
486 "-python3",
487#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000488#ifdef FEAT_QUICKFIX
489 "+quickfix",
490#else
491 "-quickfix",
492#endif
Bram Moolenaard68071d2006-05-02 22:08:30 +0000493#ifdef FEAT_RELTIME
494 "+reltime",
495#else
496 "-reltime",
497#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000498#ifdef FEAT_RIGHTLEFT
499 "+rightleft",
500#else
501 "-rightleft",
502#endif
503#ifdef FEAT_RUBY
504# ifdef DYNAMIC_RUBY
505 "+ruby/dyn",
506# else
507 "+ruby",
508# endif
509#else
510 "-ruby",
511#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000512 "+scrollbind",
Bram Moolenaar071d4272004-06-13 20:20:40 +0000513#ifdef FEAT_SIGNS
514 "+signs",
515#else
516 "-signs",
517#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000518 "+smartindent",
Christian Brabandtf573c6e2021-06-20 14:02:16 +0200519#ifdef FEAT_SODIUM
K.Takatad68b2fc2022-02-12 11:18:37 +0000520# ifdef DYNAMIC_SODIUM
521 "+sodium/dyn",
522# else
Christian Brabandtf573c6e2021-06-20 14:02:16 +0200523 "+sodium",
K.Takatad68b2fc2022-02-12 11:18:37 +0000524# endif
Christian Brabandtf573c6e2021-06-20 14:02:16 +0200525#else
526 "-sodium",
527#endif
Bram Moolenaar427f5b62019-06-09 13:43:51 +0200528#ifdef FEAT_SOUND
529 "+sound",
530#else
531 "-sound",
532#endif
533#ifdef FEAT_SPELL
534 "+spell",
535#else
536 "-spell",
537#endif
Bram Moolenaaref94eec2009-11-11 13:22:11 +0000538#ifdef STARTUPTIME
539 "+startuptime",
540#else
541 "-startuptime",
542#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000543#ifdef FEAT_STL_OPT
544 "+statusline",
545#else
546 "-statusline",
547#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000548 "-sun_workshop",
Bram Moolenaar071d4272004-06-13 20:20:40 +0000549#ifdef FEAT_SYN_HL
550 "+syntax",
551#else
552 "-syntax",
553#endif
Bram Moolenaaraa2f0ee2019-12-21 18:47:26 +0100554 // only interesting on Unix systems
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200555#if defined(USE_SYSTEM) && defined(UNIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000556 "+system()",
557#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000558 "+tag_binary",
Bram Moolenaar071d4272004-06-13 20:20:40 +0000559 "-tag_old_static",
Bram Moolenaar071d4272004-06-13 20:20:40 +0000560 "-tag_any_white",
Bram Moolenaar071d4272004-06-13 20:20:40 +0000561#ifdef FEAT_TCL
562# ifdef DYNAMIC_TCL
563 "+tcl/dyn",
564# else
565 "+tcl",
566# endif
567#else
568 "-tcl",
569#endif
Bram Moolenaar61be73b2016-04-29 22:59:22 +0200570#ifdef FEAT_TERMGUICOLORS
571 "+termguicolors",
572#else
573 "-termguicolors",
574#endif
Bram Moolenaar26e85582017-07-15 20:05:54 +0200575#ifdef FEAT_TERMINAL
576 "+terminal",
577#else
578 "-terminal",
579#endif
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200580#if defined(UNIX)
Bram Moolenaaraa2f0ee2019-12-21 18:47:26 +0100581// only Unix can have terminfo instead of termcap
Bram Moolenaar071d4272004-06-13 20:20:40 +0000582# ifdef TERMINFO
583 "+terminfo",
584# else
585 "-terminfo",
586# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000587#endif
588#ifdef FEAT_TERMRESPONSE
589 "+termresponse",
590#else
591 "-termresponse",
592#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000593 "+textobjects",
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +0100594#ifdef FEAT_PROP_POPUP
Bram Moolenaar98aefe72018-12-13 22:20:09 +0100595 "+textprop",
596#else
597 "-textprop",
598#endif
599#if !defined(UNIX)
Bram Moolenaaraa2f0ee2019-12-21 18:47:26 +0100600// unix always includes termcap support
Bram Moolenaar98aefe72018-12-13 22:20:09 +0100601# ifdef HAVE_TGETENT
602 "+tgetent",
603# else
604 "-tgetent",
605# endif
606#endif
Bram Moolenaar975b5272016-03-15 23:10:59 +0100607#ifdef FEAT_TIMERS
608 "+timers",
609#else
610 "-timers",
611#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000612 "+title",
Bram Moolenaar071d4272004-06-13 20:20:40 +0000613#ifdef FEAT_TOOLBAR
614 "+toolbar",
615#else
616 "-toolbar",
617#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000618 "+user_commands",
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200619#ifdef FEAT_VARTABS
620 "+vartabs",
621#else
622 "-vartabs",
623#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000624 "+vertsplit",
Bram Moolenaara6feb162022-01-02 12:06:33 +0000625 "+vim9script",
Bram Moolenaar071d4272004-06-13 20:20:40 +0000626#ifdef FEAT_VIMINFO
627 "+viminfo",
628#else
629 "-viminfo",
630#endif
Bram Moolenaara6feb162022-01-02 12:06:33 +0000631 "+virtualedit",
632 "+visual",
633 "+visualextra",
Bram Moolenaar071d4272004-06-13 20:20:40 +0000634 "+vreplace",
Bram Moolenaar4f974752019-02-17 17:44:42 +0100635#ifdef MSWIN
Bram Moolenaarcafafb32018-02-22 21:07:09 +0100636# ifdef FEAT_VTP
637 "+vtp",
638# else
639 "-vtp",
640# endif
641#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000642 "+wildignore",
Bram Moolenaar071d4272004-06-13 20:20:40 +0000643 "+wildmenu",
Bram Moolenaar071d4272004-06-13 20:20:40 +0000644 "+windows",
Bram Moolenaar071d4272004-06-13 20:20:40 +0000645#ifdef FEAT_WRITEBACKUP
646 "+writebackup",
647#else
648 "-writebackup",
649#endif
650#if defined(UNIX) || defined(VMS)
651# ifdef FEAT_X11
652 "+X11",
653# else
654 "-X11",
655# endif
656#endif
Christian Brabandte085dfd2023-09-30 12:49:18 +0200657# ifdef FEAT_XATTR
658 "+xattr",
659# else
660 "-xattr",
661# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000662#ifdef FEAT_XFONTSET
663 "+xfontset",
664#else
665 "-xfontset",
666#endif
667#ifdef FEAT_XIM
668 "+xim",
669#else
670 "-xim",
671#endif
ichizok02560422022-04-05 14:18:44 +0100672#if defined(MSWIN)
Bram Moolenaard58b0f92016-08-13 16:39:56 +0200673# ifdef FEAT_XPM_W32
674 "+xpm_w32",
675# else
676 "-xpm_w32",
677# endif
ichizok02560422022-04-05 14:18:44 +0100678#elif defined(HAVE_XPM)
Bram Moolenaard58b0f92016-08-13 16:39:56 +0200679 "+xpm",
ichizok02560422022-04-05 14:18:44 +0100680#else
Bram Moolenaard58b0f92016-08-13 16:39:56 +0200681 "-xpm",
Bram Moolenaard58b0f92016-08-13 16:39:56 +0200682#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000683#if defined(UNIX) || defined(VMS)
ichizok02560422022-04-05 14:18:44 +0100684# if defined(USE_XSMP_INTERACT)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000685 "+xsmp_interact",
ichizok02560422022-04-05 14:18:44 +0100686# elif defined(USE_XSMP)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000687 "+xsmp",
ichizok02560422022-04-05 14:18:44 +0100688# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000689 "-xsmp",
Bram Moolenaar071d4272004-06-13 20:20:40 +0000690# endif
691# ifdef FEAT_XCLIPBOARD
692 "+xterm_clipboard",
693# else
694 "-xterm_clipboard",
695# endif
696#endif
697#ifdef FEAT_XTERM_SAVE
698 "+xterm_save",
699#else
700 "-xterm_save",
701#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000702 NULL
703};
704
705static int included_patches[] =
706{ /* Add new patch number below this line */
707/**/
Doug Kearns0d4d23d2024-06-16 08:32:15 +0200708 492,
709/**/
zeertzjq883018f2024-06-15 15:37:11 +0200710 491,
711/**/
glepnir105f7412024-06-15 15:32:22 +0200712 490,
713/**/
glepniraced8c22024-06-15 15:13:05 +0200714 489,
715/**/
zeertzjqa2324372024-06-15 15:08:27 +0200716 488,
717/**/
glepnirf94c9c42024-06-14 21:11:56 +0200718 487,
719/**/
Riley Bruins82a579e2024-06-14 20:47:05 +0200720 486,
721/**/
zeertzjqafbe5352024-06-14 20:24:22 +0200722 485,
723/**/
zeertzjq8e567472024-06-14 20:04:42 +0200724 484,
725/**/
Christian Brabandt8b34aea2024-06-13 21:20:20 +0200726 483,
727/**/
Ubaldo Tiberief8eab82024-06-13 19:23:07 +0200728 482,
729/**/
Ernie Raela78eb252024-06-13 17:24:54 +0200730 481,
731/**/
glepnir1c296022024-06-13 17:21:24 +0200732 480,
733/**/
zeertzjq2f95ca92024-06-13 17:14:27 +0200734 479,
735/**/
glepnir7c579402024-06-12 20:31:13 +0200736 478,
737/**/
Christian Brabandt1fb9eae2024-06-11 20:30:14 +0200738 477,
739/**/
glepnir40c1c332024-06-11 19:37:04 +0200740 476,
741/**/
Yegappan Lakshmanan4877cb42024-06-11 19:18:12 +0200742 475,
743/**/
Christian Brabandtd03882b2024-06-10 21:06:55 +0200744 474,
745/**/
Yegappan Lakshmanand603e952024-06-10 18:16:34 +0200746 473,
747/**/
zeertzjqaa925ee2024-06-09 18:24:05 +0200748 472,
749/**/
zeertzjq2d1d5c62024-06-09 16:44:33 +0200750 471,
751/**/
Christian Brabandt7cbed352024-06-05 20:34:55 +0200752 470,
753/**/
zeertzjq529b9ad2024-06-05 20:27:06 +0200754 469,
755/**/
David Wagner84d96112024-06-05 20:01:19 +0200756 468,
757/**/
zeertzjq551d8c32024-06-05 19:53:32 +0200758 467,
759/**/
glepnirdca57fb2024-06-04 22:01:21 +0200760 466,
761/**/
Shougo Matsushita60c87432024-06-03 22:59:27 +0200762 465,
763/**/
Riley Bruins0a083062024-06-03 20:40:45 +0200764 464,
765/**/
glepnira218cc62024-06-03 19:32:39 +0200766 463,
767/**/
Yegappan Lakshmanan734286e2024-06-03 18:52:22 +0200768 462,
769/**/
John Marriottf51ff962024-06-02 19:44:11 +0200770 461,
771/**/
İlyas Akın7577afd2024-06-02 16:57:00 +0200772 460,
773/**/
nwounkn36b66762024-06-02 16:10:07 +0200774 459,
775/**/
Christian Brabandt7737ce52024-06-02 16:04:43 +0200776 458,
777/**/
Christian Brabandte5bc2e42024-06-01 20:55:09 +0200778 457,
779/**/
Gary Johnson88d4f252024-06-01 20:51:33 +0200780 456,
781/**/
Mike Williams16b63bd2024-06-01 11:33:40 +0200782 455,
783/**/
Christian Brabandtf3dd6f62024-05-31 12:26:12 +0200784 454,
785/**/
Pierrick Guillaume280e5b12024-05-31 12:00:49 +0200786 453,
787/**/
youcai1acc67a2024-05-30 19:31:36 +0200788 452,
789/**/
zeertzjq88c8c542024-05-30 19:27:25 +0200790 451,
791/**/
Yegappan Lakshmanan51c45e82024-05-30 07:50:08 +0200792 450,
793/**/
Mike Williams51024bb2024-05-30 07:46:30 +0200794 449,
795/**/
Yegappan Lakshmanan8904d672024-05-29 07:51:50 +0200796 448,
797/**/
glepnir53387c52024-05-27 15:11:01 +0200798 447,
799/**/
zeertzjqef733742024-05-26 18:42:18 +0200800 446,
801/**/
Yegappan Lakshmanandbac0da2024-05-25 20:23:54 +0200802 445,
803/**/
zeertzjqdff55a32024-05-25 10:25:36 +0200804 444,
805/**/
zeertzjqafc22952024-05-24 19:07:12 +0200806 443,
807/**/
Amelia Clarke35dfe582024-05-24 08:05:00 +0200808 442,
809/**/
zeertzjq2b09de92024-05-24 07:48:51 +0200810 441,
811/**/
Yegappan Lakshmanan44cadaa2024-05-24 07:44:10 +0200812 440,
813/**/
Christian Brabandt42a5b5a2024-05-24 07:39:34 +0200814 439,
815/**/
zeertzjq30741372024-05-24 07:37:36 +0200816 438,
817/**/
Drew Vogel742062f2024-05-23 17:49:39 +0200818 437,
819/**/
zeertzjq789679c2024-05-23 17:41:26 +0200820 436,
821/**/
K.Takatacd79f8f2024-05-23 17:31:26 +0200822 435,
823/**/
Derek Schrock3554d9b2024-05-23 17:26:51 +0200824 434,
825/**/
zeertzjq701ad502024-05-23 07:47:55 +0200826 433,
827/**/
Drew Vogel5090f832024-05-22 16:51:53 +0200828 432,
829/**/
Yegappan Lakshmanan25536f42024-05-22 16:45:04 +0200830 431,
831/**/
zeertzjq52a6f342024-05-22 16:42:44 +0200832 430,
833/**/
Christian Brabandtb335a932024-05-21 18:39:10 +0200834 429,
835/**/
zeertzjq42cd1922024-05-21 17:19:58 +0200836 428,
837/**/
Ken Takataffed1542024-05-21 17:14:56 +0200838 427,
839/**/
John Marriott8c85a2a2024-05-20 19:18:26 +0200840 426,
841/**/
Riley Bruins155583a2024-05-20 14:21:53 +0200842 425,
843/**/
Riley Bruinsaa3104b2024-05-20 14:20:09 +0200844 424,
845/**/
zeertzjqc95e64f2024-05-20 14:00:31 +0200846 423,
847/**/
Yegappan Lakshmanan22029ed2024-05-20 13:57:11 +0200848 422,
849/**/
Riley Bruins5f1b1152024-05-19 11:26:44 +0200850 421,
851/**/
Christian Brabandt0b0f7d62024-05-19 09:11:09 +0200852 420,
853/**/
Yegappan Lakshmanan4776e642024-05-19 09:06:50 +0200854 419,
855/**/
Christ van Willegen - van Noort8e4c4c72024-05-17 18:49:27 +0200856 418,
857/**/
Christian Brabandtf0905a82024-05-17 18:30:01 +0200858 417,
859/**/
Luuk van Baal2e642732024-05-17 18:25:13 +0200860 416,
861/**/
Yegappan Lakshmananfe424d12024-05-17 18:20:43 +0200862 415,
863/**/
Luuk van Baalb32055e2024-05-16 20:44:09 +0200864 414,
865/**/
Christian Brabandteff20eb2024-05-15 21:35:36 +0200866 413,
867/**/
Christian Brabandt60430242024-05-14 11:19:47 +0200868 412,
869/**/
Yegappan Lakshmanan4ceb4dc2024-05-12 09:24:35 +0200870 411,
871/**/
John Marriottd01e6992024-05-12 09:01:38 +0200872 410,
873/**/
John Marriott82792db2024-05-12 00:07:17 +0200874 409,
875/**/
Christian Brabandt9c0ff472024-05-11 20:18:21 +0200876 408,
877/**/
Luuk van Baal58448e02024-05-11 11:27:52 +0200878 407,
879/**/
zeertzjq031a7452024-05-11 11:23:37 +0200880 406,
881/**/
Christian Brabandtb7deb1b2024-05-10 20:00:33 +0200882 405,
883/**/
Lennard Hofmann67797192024-05-10 14:17:26 +0200884 404,
885/**/
Yegappan Lakshmanan8c35c262024-05-10 13:10:54 +0200886 403,
887/**/
Wu, Zhenyu63f2a5b2024-05-10 12:11:56 +0200888 402,
889/**/
Wu, Zhenyu887a38c2024-05-09 20:35:13 +0200890 401,
891/**/
Yegappan Lakshmanan1b531722024-05-09 09:12:31 +0200892 400,
893/**/
Christian Brabandtd5c8c092024-05-08 22:17:19 +0200894 399,
895/**/
Yegappan Lakshmanan9937d8b2024-05-08 20:24:33 +0200896 398,
897/**/
zeertzjqc7a8eb52024-05-08 20:22:40 +0200898 397,
899/**/
Gregory Anders6a4ea472024-05-08 20:17:43 +0200900 396,
901/**/
Christian Brabandtb8ecedc2024-05-08 19:50:26 +0200902 395,
903/**/
Shougo Matsushitab4757e62024-05-07 20:49:24 +0200904 394,
905/**/
Christian Brabandtc3e6e392024-05-04 09:48:15 +0200906 393,
907/**/
Christian Brabandt7edde3f2024-05-04 09:38:59 +0200908 392,
909/**/
Yegappan Lakshmanan5715a722024-05-03 18:24:07 +0200910 391,
911/**/
Yorick Petersea0196842024-05-02 13:11:44 +0200912 390,
913/**/
tris20354e79152024-05-02 13:08:25 +0200914 389,
915/**/
zeertzjq2ffdae72024-05-02 13:06:24 +0200916 388,
917/**/
Yegappan Lakshmananda9d3452024-05-02 13:02:36 +0200918 387,
919/**/
Philip H2d919d22024-05-01 18:42:11 +0200920 386,
921/**/
Yegappan Lakshmananb2e42b92024-05-01 11:44:17 +0200922 385,
923/**/
Christian Brabandt83d3b3b2024-04-30 20:45:09 +0200924 384,
925/**/
shane.xb.qiane35478b2024-04-30 20:35:53 +0200926 383,
927/**/
Bruno BELANYI5cbc9a62024-04-30 20:16:01 +0200928 382,
929/**/
Christian Brabandt652c8212024-04-29 20:36:49 +0200930 381,
931/**/
Luuk van Baal32d701f2024-04-28 16:24:02 +0200932 380,
933/**/
zeertzjq75a73552024-04-28 16:20:55 +0200934 379,
935/**/
Yegappan Lakshmananfe55c312024-04-28 09:54:09 +0200936 378,
937/**/
Christian Brabandt86ef8152024-04-27 11:55:08 +0200938 377,
939/**/
Yegappan Lakshmananac773182024-04-27 11:36:12 +0200940 376,
941/**/
zeertzjq340643e2024-04-27 11:33:24 +0200942 375,
943/**/
Jaehwang Jungeb80b832024-04-26 18:48:48 +0200944 374,
945/**/
John Marriott38b9f452024-04-25 21:39:18 +0200946 373,
947/**/
zeertzjqf68517c2024-04-25 21:34:10 +0200948 372,
949/**/
Yegappan Lakshmananf6c1fb22024-04-25 21:30:56 +0200950 371,
951/**/
RestorerZec67ee02024-04-25 21:25:19 +0200952 370,
953/**/
Ernie Rael3f821d62024-04-24 20:07:50 +0200954 369,
955/**/
RestorerZdc5cd1c2024-04-23 20:33:38 +0200956 368,
957/**/
Yegappan Lakshmanana16f2512024-04-23 20:14:46 +0200958 367,
959/**/
Jon Pariseea999032024-04-22 21:07:41 +0200960 366,
961/**/
zeertzjq6b13e3d2024-04-22 21:04:29 +0200962 365,
963/**/
Yegappan Lakshmanan22697b62024-04-22 20:58:24 +0200964 364,
965/**/
Yegappan Lakshmanan4baf9082024-04-21 19:50:21 +0200966 363,
967/**/
Christian Brabandtb09fa352024-04-21 14:52:20 +0200968 362,
969/**/
Yegappan Lakshmanan5eaa4d92024-04-21 14:48:57 +0200970 361,
971/**/
Ernie Rael84f6dc72024-04-21 14:45:48 +0200972 360,
973/**/
Yegappan Lakshmananf135fa22024-04-20 18:31:21 +0200974 359,
975/**/
h-east8927c9b2024-04-20 17:57:19 +0200976 358,
977/**/
Luuk van Baal4b6b0c42024-04-20 17:38:20 +0200978 357,
979/**/
Christian Brabandt349f5cd2024-04-19 15:22:33 +0200980 356,
981/**/
Riley Bruinsce736032024-04-19 15:13:38 +0200982 355,
983/**/
Colin Caine4b3fab12024-04-18 23:53:02 +0200984 354,
985/**/
Ernie Rael6f1d05b2024-04-18 22:53:33 +0200986 353,
987/**/
John Marriotted908f72024-04-18 22:46:56 +0200988 352,
989/**/
zeertzjq094c4392024-04-18 22:09:37 +0200990 351,
991/**/
Julio B1fa22e32024-04-18 22:05:12 +0200992 350,
993/**/
Yegappan Lakshmanan76ba2522024-04-18 21:33:27 +0200994 349,
995/**/
lilydjwgbaedc992024-04-18 21:22:57 +0200996 348,
997/**/
Diego Viola133ed2a2024-04-18 20:54:06 +0200998 347,
999/**/
Ernie Rael1433ac92024-04-17 22:36:32 +02001000 346,
1001/**/
Maxim Kima34ba822024-04-17 22:29:06 +02001002 345,
1003/**/
mikoto2000e20fa592024-04-17 22:06:54 +02001004 344,
1005/**/
zeertzjqacdfb8a2024-04-17 21:28:54 +02001006 343,
1007/**/
Julio Bae7e61c2024-04-16 22:55:04 +02001008 342,
1009/**/
Christian Brabandt29269a72024-04-16 22:44:31 +02001010 341,
1011/**/
Christian Brabandtf7d31ad2024-04-16 22:23:17 +02001012 340,
1013/**/
Yegappan Lakshmanan8560e6c2024-04-16 22:18:15 +02001014 339,
1015/**/
Ernie Rael9a901792024-04-16 22:11:56 +02001016 338,
1017/**/
Diego Violad1068a22024-04-16 20:58:45 +02001018 337,
1019/**/
Diego Viola2da68c82024-04-15 20:08:38 +02001020 336,
1021/**/
Yegappan Lakshmananbce51d92024-04-15 19:19:52 +02001022 335,
1023/**/
zeertzjqa59e0312024-04-15 19:14:38 +02001024 334,
1025/**/
Christian Brabandt29358d22024-04-15 19:11:15 +02001026 333,
1027/**/
zeertzjq757f3212024-04-15 19:01:04 +02001028 332,
1029/**/
Matt Hammerlyfc1dabd2024-04-15 18:54:38 +02001030 331,
1031/**/
Christian Brabandtf2319342024-04-14 23:45:02 +02001032 330,
1033/**/
Yegappan Lakshmananf01493c2024-04-14 23:21:02 +02001034 329,
1035/**/
Christian Brabandt0d87e3c2024-04-14 23:14:50 +02001036 328,
1037/**/
Luca Saccarolac9df1fb2024-04-14 22:53:22 +02001038 327,
1039/**/
Wu, Zhenyuf9f54242024-04-14 20:38:24 +02001040 326,
1041/**/
Wu, Zhenyu62c09e02024-04-14 20:34:22 +02001042 325,
1043/**/
Wu, Zhenyuc59a8642024-04-14 20:29:43 +02001044 324,
1045/**/
Wu, Zhenyu799dede2024-04-14 20:22:19 +02001046 323,
1047/**/
shane.xb.qiana7a9a472024-04-14 20:14:33 +02001048 322,
1049/**/
Anton Sharonov49528da2024-04-14 20:02:24 +02001050 321,
1051/**/
zeertzjq05aacec2024-04-14 18:52:49 +02001052 320,
1053/**/
zeertzjq3d936302024-04-14 18:49:56 +02001054 319,
1055/**/
Wu, Zhenyu4b5cd722024-04-13 18:28:28 +02001056 318,
1057/**/
Wu, Zhenyu55d4f3c2024-04-13 18:25:38 +02001058 317,
1059/**/
Wu, Zhenyu5a9f7e62024-04-13 18:19:20 +02001060 316,
1061/**/
Wu, Zhenyu08813292024-04-13 18:13:42 +02001062 315,
1063/**/
Yegappan Lakshmananc51578f2024-04-13 17:58:09 +02001064 314,
1065/**/
zeertzjq1f5175d2024-04-13 17:52:26 +02001066 313,
1067/**/
Yegappan Lakshmanane74cad32024-04-12 18:48:35 +02001068 312,
1069/**/
Wu, Zhenyua1dcd762024-04-12 18:46:05 +02001070 311,
1071/**/
zeertzjq92325542024-04-12 18:38:38 +02001072 310,
1073/**/
Christian Brabandtbba79802024-04-11 22:54:44 +02001074 309,
1075/**/
Vladimír Marek87319172024-04-11 21:54:34 +02001076 308,
1077/**/
Wu, Zhenyu7fdbd1b2024-04-11 20:53:33 +02001078 307,
1079/**/
Wu, Zhenyu58ce78a2024-04-11 20:47:45 +02001080 306,
1081/**/
Wu, Zhenyuda70fea2024-04-11 20:43:00 +02001082 305,
1083/**/
Wu, Zhenyu1492fe62024-04-10 22:52:40 +02001084 304,
1085/**/
Bruno BELANYIe54a8e72024-04-10 22:34:42 +02001086 303,
1087/**/
Bruno BELANYI6be7ef52024-04-10 22:28:28 +02001088 302,
1089/**/
zeertzjq1817ccd2024-04-10 17:37:47 +02001090 301,
1091/**/
Luuk van Baalaa8e22b2024-04-10 17:33:43 +02001092 300,
1093/**/
Yegappan Lakshmanan7f520212024-04-10 17:18:19 +02001094 299,
1095/**/
Cthulhux2f27c652024-04-10 16:34:49 +02001096 298,
1097/**/
Christian Brabandtc97f4d62024-04-10 16:18:15 +02001098 297,
1099/**/
Christian Brabandt7a27c102024-04-09 22:53:19 +02001100 296,
1101/**/
Wu, Zhenyud2b95b82024-04-09 22:49:19 +02001102 295,
1103/**/
Luuk van Baal08b0f632024-04-09 22:43:49 +02001104 294,
1105/**/
Wu, Zhenyu41208882024-04-09 22:39:53 +02001106 293,
1107/**/
Wu, Zhenyuefd752e2024-04-09 22:25:41 +02001108 292,
1109/**/
Wu, Zhenyu73c89bc2024-04-09 22:20:55 +02001110 291,
1111/**/
Wu, Zhenyu614691c2024-04-09 22:14:37 +02001112 290,
1113/**/
Wu, Zhenyu61ee8332024-04-09 22:09:30 +02001114 289,
1115/**/
Mike Williams72a156b2024-04-09 22:04:54 +02001116 288,
1117/**/
zeertzjq9a91d2b2024-04-09 21:47:10 +02001118 287,
1119/**/
Yegappan Lakshmanan1af0fbf2024-04-09 21:39:27 +02001120 286,
1121/**/
Luuk van Baal78c51502024-04-09 21:30:19 +02001122 285,
1123/**/
Julio Be20c7d72024-04-09 21:22:41 +02001124 284,
1125/**/
Christian Brabandta0400192024-04-09 08:06:52 +02001126 283,
1127/**/
John Marriott34f00dd2024-04-08 23:28:12 +02001128 282,
1129/**/
Christian Brabandtd33cb3f2024-04-08 22:54:16 +02001130 281,
1131/**/
Luuk van Baal9148ba82024-04-08 22:27:41 +02001132 280,
1133/**/
nat-418196b6672024-04-08 22:23:22 +02001134 279,
1135/**/
Wu, Zhenyu72d81a62024-04-08 22:19:06 +02001136 278,
1137/**/
Shougo Matsushitabe2b03c2024-04-08 22:11:50 +02001138 277,
1139/**/
Wu, Zhenyu7005b7e2024-04-08 20:53:19 +02001140 276,
1141/**/
Wu, Zhenyufc21b642024-04-08 20:26:29 +02001142 275,
1143/**/
Mike Williamsaca8f552024-04-07 18:26:22 +02001144 274,
1145/**/
0xadkb78753d2024-04-07 18:22:41 +02001146 273,
1147/**/
zeertzjq9d956ee2024-04-07 18:16:10 +02001148 272,
1149/**/
Christian Brabandt3c4d2e72024-04-05 20:15:48 +02001150 271,
1151/**/
Christian Brabandt915f3bf2024-04-05 20:12:19 +02001152 270,
1153/**/
zeertzjqe9ff79a2024-04-05 20:07:39 +02001154 269,
1155/**/
zeertzjq83cd2c72024-04-05 20:05:11 +02001156 268,
1157/**/
zeertzjqc20bdf12024-04-05 20:02:55 +02001158 267,
1159/**/
Gaëtan Lehmann28e5e7c2024-04-05 19:52:38 +02001160 266,
1161/**/
glepnirdf461152024-04-04 22:23:29 +02001162 265,
1163/**/
Julio Bcc59d622024-04-04 21:55:10 +02001164 264,
1165/**/
Yegappan Lakshmanan3fa8f772024-04-04 21:42:07 +02001166 263,
1167/**/
zeertzjq4a653912024-04-04 21:33:36 +02001168 262,
1169/**/
Yegappan Lakshmanan3e336502024-04-04 19:35:59 +02001170 261,
1171/**/
Luuk van Baalbd28cae2024-04-03 22:50:40 +02001172 260,
1173/**/
zeertzjqc4226622024-04-03 22:38:07 +02001174 259,
1175/**/
Luuk van Baalcb204e62024-04-02 20:49:45 +02001176 258,
1177/**/
Yegappan Lakshmananf1750ca2024-04-02 20:41:04 +02001178 257,
1179/**/
John Marriott78d742a2024-04-02 20:26:01 +02001180 256,
1181/**/
Ernie Rael16cdfa62024-04-02 19:05:39 +02001182 255,
1183/**/
zeertzjq0a419e02024-04-02 19:01:14 +02001184 254,
1185/**/
Hilmar Wiegand6c9f4f92024-04-02 18:54:54 +02001186 253,
1187/**/
Yegappan Lakshmanan2ed5a112024-04-01 14:50:41 +02001188 252,
1189/**/
zeertzjq8eb75232024-04-01 14:46:20 +02001190 251,
1191/**/
Wu, Zhenyu4c7098b2024-03-31 19:57:16 +02001192 250,
1193/**/
Wu, Zhenyua917bd52024-03-31 19:54:12 +02001194 249,
1195/**/
Wu, Zhenyu3b497aa2024-03-31 19:51:19 +02001196 248,
1197/**/
Wu, Zhenyu3f6fa932024-03-31 19:48:35 +02001198 247,
1199/**/
Wu, Zhenyua2c27b02024-03-31 19:45:11 +02001200 246,
1201/**/
Wu, Zhenyua55a22a2024-03-31 19:42:39 +02001202 245,
1203/**/
Wu, Zhenyu84ce5502024-03-31 19:22:51 +02001204 244,
1205/**/
Wu, Zhenyuabbb4a42024-03-31 19:20:14 +02001206 243,
1207/**/
Wu, Zhenyube71ac62024-03-31 19:18:10 +02001208 242,
1209/**/
Wu, Zhenyu6b285c82024-03-31 19:15:49 +02001210 241,
1211/**/
Wu, Zhenyu665220a2024-03-31 19:12:36 +02001212 240,
1213/**/
Wu, Zhenyu8e47eb32024-03-31 19:10:18 +02001214 239,
1215/**/
Wu, Zhenyu75c607d2024-03-31 19:08:07 +02001216 238,
1217/**/
Wu, Zhenyu0fd560d2024-03-31 19:05:44 +02001218 237,
1219/**/
Wu, Zhenyua75f4792024-03-31 19:02:26 +02001220 236,
1221/**/
Wu, Zhenyu4ff83b92024-03-31 18:58:34 +02001222 235,
1223/**/
Wu, Zhenyue523dd92024-03-31 18:54:55 +02001224 234,
1225/**/
Yegappan Lakshmanan3cf121e2024-03-31 18:45:35 +02001226 233,
1227/**/
Julio B5df961a2024-03-31 18:43:51 +02001228 232,
1229/**/
zeertzjq5bf6c212024-03-31 18:41:27 +02001230 231,
1231/**/
Christian Brabandt86032702024-03-31 18:38:09 +02001232 230,
1233/**/
Christian Brabandtb64cec22024-03-31 17:52:56 +02001234 229,
1235/**/
zeertzjqad493ef2024-03-29 10:23:19 +01001236 228,
1237/**/
zeertzjqea95f1a2024-03-29 10:11:42 +01001238 227,
1239/**/
Yegappan Lakshmananabedca92024-03-29 10:08:23 +01001240 226,
1241/**/
Christian Brabandt059aeac2024-03-28 17:10:44 +01001242 225,
1243/**/
Dylan Thacker-Smith515f7342024-03-28 12:01:14 +01001244 224,
1245/**/
Dylan Thacker-Smith1134fdd2024-03-28 11:49:46 +01001246 223,
1247/**/
Dylan Thacker-Smithfe0a76b2024-03-28 11:47:32 +01001248 222,
1249/**/
Dylan Thacker-Smithb6fac4d2024-03-28 11:40:41 +01001250 221,
1251/**/
zeertzjqc029c132024-03-28 11:37:26 +01001252 220,
1253/**/
Yegappan Lakshmanan3164cf82024-03-28 10:36:42 +01001254 219,
1255/**/
zeertzjq8ede7a02024-03-28 10:30:08 +01001256 218,
1257/**/
1258 217,
1259/**/
zeertzjq620e8522024-03-28 10:11:57 +01001260 216,
1261/**/
Luuk van Baal5a2e3ec2024-03-28 10:07:29 +01001262 215,
1263/**/
zeertzjq5532d3b2024-03-28 10:04:25 +01001264 214,
1265/**/
Sean Dewaraed65542024-03-28 09:48:34 +01001266 213,
1267/**/
Christian Brabandt79b28672024-03-27 10:44:14 +01001268 212,
1269/**/
Luuk van Baalb9f5b952024-03-26 18:46:45 +01001270 211,
1271/**/
Christian Brabandt9ccc2972024-03-26 18:44:48 +01001272 210,
1273/**/
Christian Brabandt86eddce2024-03-26 18:42:52 +01001274 209,
1275/**/
Colin Kennedy65e580b2024-03-26 18:29:30 +01001276 208,
1277/**/
Colin Kennedye5f22802024-03-26 18:20:16 +01001278 207,
1279/**/
Dylan Thacker-Smithc8b47f22024-03-26 18:05:01 +01001280 206,
1281/**/
zeertzjq076faac2024-03-25 16:41:06 +01001282 205,
1283/**/
zeertzjq0185c772024-03-25 16:34:51 +01001284 204,
1285/**/
James McCoy4a953772024-03-25 16:22:23 +01001286 203,
1287/**/
Christian Brabandt7a2f2172024-03-24 09:50:03 +01001288 202,
1289/**/
Dylan Thacker-Smith366c81a2024-03-24 09:46:56 +01001290 201,
1291/**/
Dylan Thacker-Smithb2d124c2024-03-24 09:43:25 +01001292 200,
1293/**/
zeertzjqad387692024-03-23 08:23:48 +01001294 199,
1295/**/
Yegappan Lakshmanand990bf02024-03-22 19:56:17 +01001296 198,
1297/**/
Yegappan Lakshmanan5d773642024-03-22 19:37:29 +01001298 197,
1299/**/
RobbiZ983a6bd0c2024-03-21 20:24:51 +01001300 196,
1301/**/
Christian Brabandt85a769d2024-03-21 20:19:00 +01001302 195,
1303/**/
Christian Brabandt9eb236f2024-03-21 20:12:59 +01001304 194,
1305/**/
zeertzjq70e566b2024-03-21 07:11:58 +01001306 193,
1307/**/
Christian Brabandt97817882024-03-20 20:19:47 +01001308 192,
1309/**/
RestorerZ2680a072024-03-20 20:15:51 +01001310 191,
1311/**/
Girish Palya8950bf72024-03-20 20:07:29 +01001312 190,
1313/**/
zeertzjq918b92b2024-03-20 19:49:20 +01001314 189,
1315/**/
wrapperup9f26e5a2024-03-19 18:06:22 +01001316 188,
1317/**/
zeertzjq4e334d02024-03-18 19:21:48 +01001318 187,
1319/**/
zeertzjqdeb22042024-03-17 19:44:30 +01001320 186,
1321/**/
zeertzjqf6272552024-03-17 10:01:47 +01001322 185,
1323/**/
zeertzjqd0c1b772024-03-16 15:03:33 +01001324 184,
1325/**/
zeertzjq9e7f1fc2024-03-16 09:40:22 +01001326 183,
1327/**/
zeertzjq6a04bf52024-03-16 09:39:06 +01001328 182,
1329/**/
Christ van Willegenc35fc032024-03-14 18:30:41 +01001330 181,
1331/**/
zeertzjq010e1532024-03-14 18:22:17 +01001332 180,
1333/**/
zeertzjq9352c282024-03-14 18:16:56 +01001334 179,
1335/**/
Christian Brabandt0a32b882024-03-13 20:59:27 +01001336 178,
1337/**/
zeertzjq8c55d602024-03-13 20:42:26 +01001338 177,
1339/**/
zeertzjq253ff4d2024-03-13 20:38:26 +01001340 176,
1341/**/
Sean Dewar5866bc32024-03-13 20:17:24 +01001342 175,
1343/**/
zeertzjq21b0a3d2024-03-13 20:06:34 +01001344 174,
1345/**/
RestorerZe498caf2024-03-12 22:11:36 +01001346 173,
1347/**/
zeertzjq94b7c322024-03-12 21:50:32 +01001348 172,
1349/**/
Sean Dewar5cac1a92024-03-12 21:11:39 +01001350 171,
1351/**/
Sean Deward64801e2024-03-12 20:46:12 +01001352 170,
1353/**/
Sean Deware1010282024-03-12 20:42:25 +01001354 169,
1355/**/
John Marriottbfcc8952024-03-11 22:04:45 +01001356 168,
1357/**/
zeertzjq49ffb6b2024-03-11 21:38:58 +01001358 167,
1359/**/
zeertzjq5406eb82024-03-11 21:36:42 +01001360 166,
1361/**/
Yegappan Lakshmananfa630082024-03-10 19:22:38 +01001362 165,
1363/**/
zeertzjq26dd09a2024-03-10 15:46:58 +01001364 164,
1365/**/
zeertzjq82e079d2024-03-10 08:55:42 +01001366 163,
1367/**/
Paul R. Tagliamonte14759de2024-03-10 08:35:10 +01001368 162,
1369/**/
zeertzjq13a01442024-03-09 17:44:46 +01001370 161,
1371/**/
Yegappan Lakshmanan35b867b2024-03-09 15:44:19 +01001372 160,
1373/**/
zeertzjqb2ec0da2024-03-09 15:39:27 +01001374 159,
1375/**/
zeertzjq8a017442024-03-07 21:48:33 +01001376 158,
1377/**/
zeertzjq0df8f932024-03-07 21:40:53 +01001378 157,
1379/**/
Sean Dewar769eb2d2024-03-07 21:37:50 +01001380 156,
1381/**/
Shougo Matsushita84bf6e62024-03-06 21:10:18 +01001382 155,
1383/**/
Shougo Matsushita9db39b02024-03-06 20:58:41 +01001384 154,
1385/**/
zeertzjq7ac11452024-03-06 20:54:22 +01001386 153,
1387/**/
Christian Brabandtaf7ae812024-03-06 19:31:39 +01001388 152,
1389/**/
Christian Brabandta72d1be2024-03-05 20:43:25 +01001390 151,
1391/**/
Sean Dewar4bb505e2024-03-05 20:39:07 +01001392 150,
1393/**/
Sean Dewar5131f222024-03-04 19:09:26 +01001394 149,
1395/**/
Yegappan Lakshmanand3eae7b2024-03-03 16:26:58 +01001396 148,
1397/**/
Colin Kennedy21570352024-03-03 16:16:47 +01001398 147,
1399/**/
zeertzjqc27fcf42024-03-01 23:01:43 +01001400 146,
1401/**/
Sam-programs062141b2024-02-29 17:40:29 +01001402 145,
1403/**/
Yegappan Lakshmanan4d55c542024-02-29 17:30:43 +01001404 144,
1405/**/
Christian Brabandt55f8bba2024-02-28 23:32:00 +01001406 143,
1407/**/
Shougo Matsushita19b71882024-02-28 22:48:12 +01001408 142,
1409/**/
zeertzjq4e141c62024-02-28 21:49:51 +01001410 141,
1411/**/
Dylan Thacker-Smithda0c9132024-02-27 20:25:10 +01001412 140,
1413/**/
Erik S. V. Jansson2f026382024-02-26 22:23:05 +01001414 139,
1415/**/
John Marriott02d7a6c2024-02-26 21:21:17 +01001416 138,
1417/**/
zeertzjqff2b79d2024-02-26 20:38:36 +01001418 137,
1419/**/
Yegappan Lakshmanana2ebb6e2024-02-25 08:40:10 +01001420 136,
1421/**/
zeertzjqcd3a13e2024-02-24 16:51:32 +01001422 135,
1423/**/
Christian Brabandt6a46c192024-02-24 15:56:34 +01001424 134,
1425/**/
Erik S. V. Jansson8b1e7492024-02-24 14:26:52 +01001426 133,
1427/**/
zeertzjq048761b2024-02-24 14:21:39 +01001428 132,
1429/**/
Christian Brabandt0dc0bff2024-02-24 14:12:13 +01001430 131,
1431/**/
Sean Dewarabf70302024-02-24 10:20:24 +01001432 130,
1433/**/
Dylan Thacker-Smithf548ae72024-02-24 10:17:11 +01001434 129,
1435/**/
Sean Dewar2a65e732024-02-22 19:53:33 +01001436 128,
1437/**/
zeertzjq5e3674b2024-02-22 19:51:34 +01001438 127,
1439/**/
zeertzjq421b5972024-02-22 19:48:06 +01001440 126,
1441/**/
Dylan Thacker-Smith83925be2024-02-21 21:03:10 +01001442 125,
1443/**/
Dylan Thacker-Smith80557212024-02-21 21:00:59 +01001444 124,
1445/**/
GuyBrush52ecc762024-02-21 20:16:38 +01001446 123,
1447/**/
Maxim Kim9ca335a2024-02-21 19:48:37 +01001448 122,
1449/**/
Sean Dewar02fcae02024-02-21 19:40:44 +01001450 121,
1451/**/
Shougo Matsushita3f905ab2024-02-21 00:02:45 +01001452 120,
1453/**/
Sean Dewarf8658952024-02-20 22:05:10 +01001454 119,
1455/**/
Sean Dewar704966c2024-02-20 22:00:33 +01001456 118,
1457/**/
Sean Dewar96cc4ae2024-02-20 21:52:31 +01001458 117,
1459/**/
Sean Dewar0fd44a52024-02-20 20:28:15 +01001460 116,
1461/**/
zeertzjqc86bff12024-02-18 18:53:08 +01001462 115,
1463/**/
zeertzjqfcaed6a2024-02-18 09:33:54 +01001464 114,
1465/**/
Christian Brabandt9071ed82024-02-15 20:17:37 +01001466 113,
1467/**/
Christian Brabandtf0d3d4a2024-02-15 20:15:04 +01001468 112,
1469/**/
Brandon Maierd00fb4b2024-02-15 00:16:02 +01001470 111,
1471/**/
Brandon Maier5f20f052024-02-14 22:30:06 +01001472 110,
1473/**/
Brandon Maiercf1d65e2024-02-14 21:31:47 +01001474 109,
1475/**/
Markus Schneider-Pargmannb1700fb2024-02-14 20:44:28 +01001476 108,
1477/**/
Yee Cheng Chin49f2ba62024-02-14 20:34:58 +01001478 107,
1479/**/
Maxim Kim34e4a052024-02-14 20:28:17 +01001480 106,
1481/**/
zeertzjqe7102202024-02-13 20:32:04 +01001482 105,
1483/**/
Christian Brabandt2f9aef42024-02-12 23:12:26 +01001484 104,
1485/**/
zeertzjqf0a9d652024-02-12 22:53:20 +01001486 103,
1487/**/
zeertzjqb47fbb42024-02-12 22:50:26 +01001488 102,
1489/**/
glepnirbd1232a2024-02-12 22:14:53 +01001490 101,
1491/**/
zeertzjqf2d90a32024-02-12 20:28:01 +01001492 100,
1493/**/
Yegappan Lakshmanana0010a12024-02-12 20:21:26 +01001494 99,
1495/**/
glepnir0d3c0a62024-02-11 17:52:40 +01001496 98,
1497/**/
zeertzjqefabd7c2024-02-11 17:16:19 +01001498 97,
1499/**/
Yegappan Lakshmananbe156a32024-02-11 17:08:29 +01001500 96,
1501/**/
Christian Brabandt52eb0b82024-02-10 13:50:54 +01001502 95,
1503/**/
Goffredo Baroncelli00221482024-02-10 13:31:06 +01001504 94,
1505/**/
zeertzjq77078272024-02-10 13:24:03 +01001506 93,
1507/**/
Christian Brabandtc9083712024-02-10 13:17:16 +01001508 92,
1509/**/
Christian Brabandt627c9502024-02-10 13:02:17 +01001510 91,
1511/**/
Maxim Kim45932c52024-02-09 23:11:54 +01001512 90,
1513/**/
Christian Brabandte06e4372024-02-09 19:39:14 +01001514 89,
1515/**/
Christian Brabandtc9e79e52024-02-09 19:34:36 +01001516 88,
1517/**/
glepnir2975a542024-02-09 19:30:26 +01001518 87,
1519/**/
lilydjwg725c7c32024-02-09 19:24:23 +01001520 86,
1521/**/
lilydjwgc4d4a1e2024-02-09 19:13:12 +01001522 85,
1523/**/
zeertzjqdf23d7f2024-02-09 18:14:12 +01001524 84,
1525/**/
zeertzjqae07ebc2024-02-08 11:37:40 +01001526 83,
1527/**/
zeertzjq7ce34c92024-02-08 11:34:55 +01001528 82,
1529/**/
lilydjwg1efb1b02024-02-08 11:04:21 +01001530 81,
1531/**/
Yegappan Lakshmanan1af35632024-02-06 11:03:36 +01001532 80,
1533/**/
zeertzjqebfd8562024-02-06 10:59:03 +01001534 79,
1535/**/
lilydjwgb1457d42024-02-06 10:49:14 +01001536 78,
1537/**/
zeertzjq3f1b5312024-02-06 10:43:36 +01001538 77,
1539/**/
lopyde7f5bd2024-02-04 10:27:33 +01001540 76,
1541/**/
glepnircbb46b42024-02-03 18:11:13 +01001542 75,
1543/**/
zeertzjqeac3fdc2024-02-03 18:08:09 +01001544 74,
1545/**/
zeertzjq0c989e42024-02-03 18:04:05 +01001546 73,
1547/**/
Yegappan Lakshmanan60937032024-02-03 17:41:54 +01001548 72,
1549/**/
Yegappan Lakshmananfa378352024-02-01 22:05:27 +01001550 71,
1551/**/
rhysde93d5ca2024-02-01 21:22:14 +01001552 70,
1553/**/
Olaf Seibertfd472652024-02-01 21:11:16 +01001554 69,
1555/**/
Maxim Kim59bafc82024-02-01 21:07:51 +01001556 68,
1557/**/
Christian Brabandte1cd1fd2024-01-31 22:10:50 +01001558 67,
1559/**/
Christian Brabandtf2fb7dd2024-01-31 20:29:07 +01001560 66,
1561/**/
Christian Brabandtfef66302024-01-29 21:46:58 +01001562 65,
1563/**/
lilydjwg6e0a18f2024-01-29 20:54:28 +01001564 64,
1565/**/
lilydjwg94ff09a2024-01-29 20:14:01 +01001566 63,
1567/**/
zeertzjqe99f0682024-01-29 19:32:39 +01001568 62,
1569/**/
Christian Brabandte6d8b462024-01-28 23:33:29 +01001570 61,
1571/**/
zeertzjqbf321802024-01-28 19:03:00 +01001572 60,
1573/**/
Sergey Vlasov1f47db72024-01-25 23:07:00 +01001574 59,
1575/**/
Casey Tucker92e90a12024-01-25 22:44:00 +01001576 58,
1577/**/
Christian Brabandt6a02eb02024-01-25 22:28:37 +01001578 57,
1579/**/
VanaIgr6638ec82024-01-25 21:50:41 +01001580 56,
1581/**/
kawaii-Code78019df2024-01-25 21:40:05 +01001582 55,
1583/**/
zeertzjq703f9bc2024-01-25 21:27:13 +01001584 54,
1585/**/
Christian Brabandt12b92772024-01-25 21:23:22 +01001586 53,
1587/**/
Christian Brabandtfa8c9712024-01-25 20:50:49 +01001588 52,
1589/**/
Christian Brabandtf6ebaa72024-01-25 20:44:49 +01001590 51,
1591/**/
Anton Sharonov68d94722024-01-23 23:19:02 +01001592 50,
1593/**/
Sean Dewar1fb41032023-08-16 17:15:05 +01001594 49,
1595/**/
Sean Dewar43b395e2023-08-16 16:17:31 +01001596 48,
1597/**/
Sean Dewar988f7432023-08-16 14:17:36 +01001598 47,
1599/**/
Rocco Maof96dc8d2024-01-23 21:27:19 +01001600 46,
1601/**/
Christian Brabandtcc979b42024-01-23 21:13:58 +01001602 45,
1603/**/
RestorerZ76ba7242024-01-22 20:28:12 +01001604 44,
1605/**/
Christian Brabandt7c71db32024-01-22 20:12:34 +01001606 43,
1607/**/
Christian Brabandtc1884c92024-01-21 09:40:22 +01001608 42,
1609/**/
Kuratius7062be12024-01-17 18:37:32 +01001610 41,
1611/**/
zeertzjqf2678472024-01-17 21:22:59 +01001612 40,
1613/**/
zeertzjq6a8d2e12024-01-17 20:54:49 +01001614 39,
1615/**/
zeertzjq4ea37f82024-01-17 20:52:13 +01001616 38,
1617/**/
zeertzjq5b0722b2024-01-17 20:42:53 +01001618 37,
1619/**/
John Marriott73e16c72024-01-17 20:16:05 +01001620 36,
1621/**/
altermo7d711fe2024-01-16 17:25:17 +01001622 35,
1623/**/
Christian Brabandtac4cffc2024-01-16 17:22:38 +01001624 34,
1625/**/
zeertzjq96958362024-01-16 17:19:59 +01001626 33,
1627/**/
Ken Takata1a9aba82024-01-16 17:14:29 +01001628 32,
1629/**/
Christian Brabandt4afda332024-01-15 22:51:22 +01001630 31,
1631/**/
PMuncha606f3a2023-11-15 15:35:49 +01001632 30,
1633/**/
Danek Duvalld7d56032024-01-14 20:19:59 +01001634 29,
1635/**/
GuyBrush1f13fcc2024-01-14 20:08:40 +01001636 28,
1637/**/
Ernie Raele79e2072024-01-13 11:47:33 +01001638 27,
1639/**/
Ken Takatad8cb1dd2024-01-12 18:09:43 +01001640 26,
1641/**/
dundargocdc4c37b2024-01-12 18:02:10 +01001642 25,
1643/**/
Igor Todorovski497e5282024-01-12 17:59:18 +01001644 24,
1645/**/
Igor Todorovski48a75f32024-01-09 21:05:48 +00001646 23,
1647/**/
Christian Brabandt49471962024-01-12 17:48:08 +01001648 22,
1649/**/
zeertzjq424ec1f2024-01-12 17:43:05 +01001650 21,
1651/**/
Yegappan Lakshmanan4f32c832024-01-12 17:36:40 +01001652 20,
1653/**/
Christian Brabandt8610f742024-01-12 17:34:40 +01001654 19,
1655/**/
Ken Takatab52600d2024-01-12 17:31:07 +01001656 18,
1657/**/
Yegappan Lakshmanan28d71b52024-01-12 17:21:55 +01001658 17,
1659/**/
Romain Lafourcade124371c2024-01-07 15:08:31 +01001660 16,
1661/**/
Christian Brabandt5d5cbb22024-01-05 18:19:52 +01001662 15,
1663/**/
zeertzjqb1ed7ec2024-01-05 18:11:43 +01001664 14,
1665/**/
Doug Kearns68a89472024-01-05 17:59:04 +01001666 13,
1667/**/
Maxim Kim37795162024-01-05 17:52:49 +01001668 12,
1669/**/
Christian Brabandtd2cc51f2024-01-04 22:54:08 +01001670 11,
1671/**/
Doug Kearns81642d92024-01-04 22:37:44 +01001672 10,
1673/**/
Yegappan Lakshmananf93b1c82024-01-04 22:28:46 +01001674 9,
1675/**/
Christian Brabandt30994d62024-01-04 22:14:28 +01001676 8,
1677/**/
Christian Brabandtad4d7f42024-01-04 21:43:36 +01001678 7,
1679/**/
Keith Thompson184f71c2024-01-04 21:19:04 +01001680 6,
1681/**/
Zoltan Arpadffy4d8cb682024-01-04 21:01:13 +01001682 5,
1683/**/
Gregory Anders83ad2722024-01-03 19:48:51 +01001684 4,
1685/**/
Isao Sato443657b2024-01-03 19:31:05 +01001686 3,
1687/**/
Shota Nozaki0689b872024-01-03 19:18:43 +01001688 2,
1689/**/
Sean Dewarbf44b692024-01-03 18:52:52 +01001690 1,
1691/**/
Bram Moolenaar071d4272004-06-13 20:20:40 +00001692 0
1693};
1694
Bram Moolenaar10d4cec2008-11-30 11:15:09 +00001695/*
1696 * Place to put a short description when adding a feature with a patch.
1697 * Keep it short, e.g.,: "relative numbers", "persistent undo".
1698 * Also add a comment marker to separate the lines.
1699 * See the official Vim patches for the diff format: It must use a context of
Bram Moolenaarcbb8eb32008-12-24 13:25:14 +00001700 * one line only. Create it by hand or use "diff -C2" and edit the patch.
Bram Moolenaar10d4cec2008-11-30 11:15:09 +00001701 */
1702static char *(extra_patches[]) =
1703{ /* Add your patch description below this line */
1704/**/
1705 NULL
1706};
1707
Bram Moolenaar071d4272004-06-13 20:20:40 +00001708 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001709highest_patch(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001710{
Bram Moolenaar37df9a42019-06-14 14:39:51 +02001711 // this relies on the highest patch number to be the first entry
1712 return included_patches[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001713}
1714
1715#if defined(FEAT_EVAL) || defined(PROTO)
1716/*
1717 * Return TRUE if patch "n" has been included.
1718 */
1719 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001720has_patch(int n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001721{
Bram Moolenaar232f4612020-11-10 20:54:29 +01001722 int h, m, l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001723
Bram Moolenaar232f4612020-11-10 20:54:29 +01001724 // Perform a binary search.
1725 l = 0;
K.Takataeeec2542021-06-02 13:28:16 +02001726 h = (int)ARRAY_LENGTH(included_patches) - 1;
Bram Moolenaarb0375d42022-06-30 11:03:39 +01001727 for (;;)
Bram Moolenaar232f4612020-11-10 20:54:29 +01001728 {
1729 m = (l + h) / 2;
1730 if (included_patches[m] == n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001731 return TRUE;
Bram Moolenaarb0375d42022-06-30 11:03:39 +01001732 if (l == h)
1733 break;
Bram Moolenaar232f4612020-11-10 20:54:29 +01001734 if (included_patches[m] < n)
1735 h = m;
1736 else
1737 l = m + 1;
1738 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001739 return FALSE;
1740}
1741#endif
1742
1743 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001744ex_version(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001745{
1746 /*
1747 * Ignore a ":version 9.99" command.
1748 */
1749 if (*eap->arg == NUL)
1750 {
1751 msg_putchar('\n');
1752 list_version();
1753 }
1754}
1755
Bram Moolenaar445f3032013-02-20 16:47:36 +01001756/*
Bram Moolenaar5d69da42018-04-20 22:01:41 +02001757 * Output a string for the version message. If it's going to wrap, output a
1758 * newline, unless the message is too long to fit on the screen anyway.
1759 * When "wrap" is TRUE wrap the string in [].
1760 */
1761 static void
1762version_msg_wrap(char_u *s, int wrap)
1763{
=?UTF-8?q?Dundar=20G=C3=B6c?=dfa5e462021-10-02 11:26:51 +01001764 int len = vim_strsize(s) + (wrap ? 2 : 0);
Bram Moolenaar5d69da42018-04-20 22:01:41 +02001765
1766 if (!got_int && len < (int)Columns && msg_col + len >= (int)Columns
1767 && *s != '\n')
1768 msg_putchar('\n');
1769 if (!got_int)
1770 {
1771 if (wrap)
Bram Moolenaar32526b32019-01-19 17:43:09 +01001772 msg_puts("[");
1773 msg_puts((char *)s);
Bram Moolenaar5d69da42018-04-20 22:01:41 +02001774 if (wrap)
Bram Moolenaar32526b32019-01-19 17:43:09 +01001775 msg_puts("]");
Bram Moolenaar5d69da42018-04-20 22:01:41 +02001776 }
1777}
1778
1779 static void
1780version_msg(char *s)
1781{
1782 version_msg_wrap((char_u *)s, FALSE);
1783}
1784
1785/*
Bram Moolenaar445f3032013-02-20 16:47:36 +01001786 * List all features aligned in columns, dictionary style.
1787 */
1788 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001789list_features(void)
Bram Moolenaar445f3032013-02-20 16:47:36 +01001790{
Bram Moolenaar5d69da42018-04-20 22:01:41 +02001791 list_in_columns((char_u **)features, -1, -1);
1792}
1793
1794/*
1795 * List string items nicely aligned in columns.
1796 * When "size" is < 0 then the last entry is marked with NULL.
1797 * The entry with index "current" is inclosed in [].
1798 */
1799 void
1800list_in_columns(char_u **items, int size, int current)
1801{
Bram Moolenaar445f3032013-02-20 16:47:36 +01001802 int i;
1803 int ncol;
1804 int nrow;
Bram Moolenaar949f1982019-07-23 23:00:08 +02001805 int cur_row = 1;
Bram Moolenaar5d69da42018-04-20 22:01:41 +02001806 int item_count = 0;
Bram Moolenaar445f3032013-02-20 16:47:36 +01001807 int width = 0;
Bram Moolenaarc85ffc92019-01-02 17:26:35 +01001808#ifdef FEAT_SYN_HL
1809 int use_highlight = (items == (char_u **)features);
1810#endif
Bram Moolenaar445f3032013-02-20 16:47:36 +01001811
Bram Moolenaaraa2f0ee2019-12-21 18:47:26 +01001812 // Find the length of the longest item, use that + 1 as the column
1813 // width.
Bram Moolenaar5d69da42018-04-20 22:01:41 +02001814 for (i = 0; size < 0 ? items[i] != NULL : i < size; ++i)
Bram Moolenaar445f3032013-02-20 16:47:36 +01001815 {
=?UTF-8?q?Dundar=20G=C3=B6c?=dfa5e462021-10-02 11:26:51 +01001816 int l = vim_strsize(items[i]) + (i == current ? 2 : 0);
Bram Moolenaar445f3032013-02-20 16:47:36 +01001817
1818 if (l > width)
1819 width = l;
Bram Moolenaar5d69da42018-04-20 22:01:41 +02001820 ++item_count;
Bram Moolenaar445f3032013-02-20 16:47:36 +01001821 }
1822 width += 1;
1823
1824 if (Columns < width)
1825 {
Bram Moolenaar9800bfe2019-07-27 21:23:45 +02001826 // Not enough screen columns - show one per line
Bram Moolenaare961cba2018-09-18 21:51:47 +02001827 for (i = 0; i < item_count; ++i)
Bram Moolenaar445f3032013-02-20 16:47:36 +01001828 {
Bram Moolenaar5d69da42018-04-20 22:01:41 +02001829 version_msg_wrap(items[i], i == current);
Bram Moolenaar9800bfe2019-07-27 21:23:45 +02001830 if (msg_col > 0 && i < item_count - 1)
Bram Moolenaar445f3032013-02-20 16:47:36 +01001831 msg_putchar('\n');
1832 }
1833 return;
1834 }
1835
Bram Moolenaar949f1982019-07-23 23:00:08 +02001836 // The rightmost column doesn't need a separator.
1837 // Sacrifice it to fit in one more column if possible.
Bram Moolenaarf13f45d2013-02-26 15:27:23 +01001838 ncol = (int) (Columns + 1) / width;
K.Takata54119102022-02-03 13:33:03 +00001839 nrow = item_count / ncol + ((item_count % ncol) ? 1 : 0);
Bram Moolenaar445f3032013-02-20 16:47:36 +01001840
Bram Moolenaar9800bfe2019-07-27 21:23:45 +02001841 // "i" counts columns then rows. "idx" counts rows then columns.
Bram Moolenaar445f3032013-02-20 16:47:36 +01001842 for (i = 0; !got_int && i < nrow * ncol; ++i)
1843 {
1844 int idx = (i / ncol) + (i % ncol) * nrow;
1845
Bram Moolenaar5d69da42018-04-20 22:01:41 +02001846 if (idx < item_count)
Bram Moolenaar445f3032013-02-20 16:47:36 +01001847 {
1848 int last_col = (i + 1) % ncol == 0;
1849
Bram Moolenaar5d69da42018-04-20 22:01:41 +02001850 if (idx == current)
1851 msg_putchar('[');
Bram Moolenaarc85ffc92019-01-02 17:26:35 +01001852#ifdef FEAT_SYN_HL
1853 if (use_highlight && items[idx][0] == '-')
Bram Moolenaar32526b32019-01-19 17:43:09 +01001854 msg_puts_attr((char *)items[idx], HL_ATTR(HLF_W));
Bram Moolenaarc85ffc92019-01-02 17:26:35 +01001855 else
1856#endif
Bram Moolenaar32526b32019-01-19 17:43:09 +01001857 msg_puts((char *)items[idx]);
Bram Moolenaar5d69da42018-04-20 22:01:41 +02001858 if (idx == current)
1859 msg_putchar(']');
Bram Moolenaar445f3032013-02-20 16:47:36 +01001860 if (last_col)
1861 {
Bram Moolenaar949f1982019-07-23 23:00:08 +02001862 if (msg_col > 0 && cur_row < nrow)
Bram Moolenaar445f3032013-02-20 16:47:36 +01001863 msg_putchar('\n');
Bram Moolenaar949f1982019-07-23 23:00:08 +02001864 ++cur_row;
Bram Moolenaar445f3032013-02-20 16:47:36 +01001865 }
1866 else
1867 {
1868 while (msg_col % width)
1869 msg_putchar(' ');
1870 }
1871 }
Bram Moolenaar74da3932019-07-25 21:52:39 +02001872 else
1873 {
1874 // this row is out of items, thus at the end of the row
Bram Moolenaar9800bfe2019-07-27 21:23:45 +02001875 if (msg_col > 0)
1876 {
1877 if (cur_row < nrow)
1878 msg_putchar('\n');
1879 ++cur_row;
1880 }
Bram Moolenaar74da3932019-07-25 21:52:39 +02001881 }
Bram Moolenaar445f3032013-02-20 16:47:36 +01001882 }
1883}
Bram Moolenaar5c962632013-02-26 11:25:33 +01001884
Bram Moolenaar071d4272004-06-13 20:20:40 +00001885 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001886list_version(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001887{
1888 int i;
1889 int first;
1890 char *s = "";
1891
1892 /*
1893 * When adding features here, don't forget to update the list of
1894 * internal variables in eval.c!
1895 */
Bram Moolenaar35fb6fb2018-06-23 16:12:21 +02001896 init_longVersion();
Bram Moolenaar32526b32019-01-19 17:43:09 +01001897 msg(longVersion);
Bram Moolenaar4f974752019-02-17 17:44:42 +01001898#ifdef MSWIN
1899# ifdef FEAT_GUI_MSWIN
Bram Moolenaarafde13b2019-04-28 19:46:49 +02001900# ifdef VIMDLL
1901# ifdef _WIN64
1902 msg_puts(_("\nMS-Windows 64-bit GUI/console version"));
1903# else
1904 msg_puts(_("\nMS-Windows 32-bit GUI/console version"));
1905# endif
Bram Moolenaarcea912a2016-10-12 14:20:24 +02001906# else
Bram Moolenaarafde13b2019-04-28 19:46:49 +02001907# ifdef _WIN64
1908 msg_puts(_("\nMS-Windows 64-bit GUI version"));
1909# else
Bram Moolenaar32526b32019-01-19 17:43:09 +01001910 msg_puts(_("\nMS-Windows 32-bit GUI version"));
Bram Moolenaarafde13b2019-04-28 19:46:49 +02001911# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001912# endif
Bram Moolenaar4f974752019-02-17 17:44:42 +01001913# ifdef FEAT_OLE
Bram Moolenaar32526b32019-01-19 17:43:09 +01001914 msg_puts(_(" with OLE support"));
Bram Moolenaar4f974752019-02-17 17:44:42 +01001915# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001916# else
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +00001917# ifdef _WIN64
Bram Moolenaar32526b32019-01-19 17:43:09 +01001918 msg_puts(_("\nMS-Windows 64-bit console version"));
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +00001919# else
Bram Moolenaar32526b32019-01-19 17:43:09 +01001920 msg_puts(_("\nMS-Windows 32-bit console version"));
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +00001921# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001922# endif
1923#endif
Bram Moolenaard0573012017-10-28 21:11:06 +02001924#if defined(MACOS_X)
1925# if defined(MACOS_X_DARWIN)
Bram Moolenaar32526b32019-01-19 17:43:09 +01001926 msg_puts(_("\nmacOS version"));
Bram Moolenaard0573012017-10-28 21:11:06 +02001927# else
Bram Moolenaar32526b32019-01-19 17:43:09 +01001928 msg_puts(_("\nmacOS version w/o darwin feat."));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001929# endif
Bram Moolenaar8c9d98a2020-12-21 13:05:57 +01001930# if defined(__arm64__)
1931 msg_puts(" - arm64");
1932# elif defined(__x86_64__)
1933 msg_puts(" - x86_64");
1934# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001935#endif
1936
Bram Moolenaar071d4272004-06-13 20:20:40 +00001937#ifdef VMS
Bram Moolenaar32526b32019-01-19 17:43:09 +01001938 msg_puts(_("\nOpenVMS version"));
Bram Moolenaar3d20ca12006-11-28 16:43:58 +00001939# ifdef HAVE_PATHDEF
1940 if (*compiled_arch != NUL)
1941 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01001942 msg_puts(" - ");
1943 msg_puts((char *)compiled_arch);
Bram Moolenaar3d20ca12006-11-28 16:43:58 +00001944 }
1945# endif
1946
Bram Moolenaar071d4272004-06-13 20:20:40 +00001947#endif
1948
Bram Moolenaaraa2f0ee2019-12-21 18:47:26 +01001949 // Print the list of patch numbers if there is at least one.
1950 // Print a range when patches are consecutive: "1-10, 12, 15-40, 42-45"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001951 if (included_patches[0] != 0)
1952 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01001953 msg_puts(_("\nIncluded patches: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001954 first = -1;
K.Takataeeec2542021-06-02 13:28:16 +02001955 i = (int)ARRAY_LENGTH(included_patches) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001956 while (--i >= 0)
1957 {
1958 if (first < 0)
1959 first = included_patches[i];
1960 if (i == 0 || included_patches[i - 1] != included_patches[i] + 1)
1961 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01001962 msg_puts(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001963 s = ", ";
1964 msg_outnum((long)first);
1965 if (first != included_patches[i])
1966 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01001967 msg_puts("-");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001968 msg_outnum((long)included_patches[i]);
1969 }
1970 first = -1;
1971 }
1972 }
1973 }
1974
Bram Moolenaaraa2f0ee2019-12-21 18:47:26 +01001975 // Print the list of extra patch descriptions if there is at least one.
Bram Moolenaar10d4cec2008-11-30 11:15:09 +00001976 if (extra_patches[0] != NULL)
1977 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01001978 msg_puts(_("\nExtra patches: "));
Bram Moolenaar10d4cec2008-11-30 11:15:09 +00001979 s = "";
1980 for (i = 0; extra_patches[i] != NULL; ++i)
1981 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01001982 msg_puts(s);
Bram Moolenaar10d4cec2008-11-30 11:15:09 +00001983 s = ", ";
Bram Moolenaar32526b32019-01-19 17:43:09 +01001984 msg_puts(extra_patches[i]);
Bram Moolenaar10d4cec2008-11-30 11:15:09 +00001985 }
1986 }
1987
Bram Moolenaar071d4272004-06-13 20:20:40 +00001988#ifdef MODIFIED_BY
Bram Moolenaar32526b32019-01-19 17:43:09 +01001989 msg_puts("\n");
1990 msg_puts(_("Modified by "));
1991 msg_puts(MODIFIED_BY);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001992#endif
1993
1994#ifdef HAVE_PATHDEF
1995 if (*compiled_user != NUL || *compiled_sys != NUL)
1996 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01001997 msg_puts(_("\nCompiled "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001998 if (*compiled_user != NUL)
1999 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002000 msg_puts(_("by "));
2001 msg_puts((char *)compiled_user);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002002 }
2003 if (*compiled_sys != NUL)
2004 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002005 msg_puts("@");
2006 msg_puts((char *)compiled_sys);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002007 }
2008 }
2009#endif
2010
ichizok02560422022-04-05 14:18:44 +01002011#if defined(FEAT_HUGE)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002012 msg_puts(_("\nHuge version "));
ichizok02560422022-04-05 14:18:44 +01002013#elif defined(FEAT_NORMAL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002014 msg_puts(_("\nNormal version "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002015#else
ichizok02560422022-04-05 14:18:44 +01002016 msg_puts(_("\nTiny version "));
2017#endif
2018#if !defined(FEAT_GUI)
2019 msg_puts(_("without GUI."));
2020#elif defined(FEAT_GUI_GTK)
2021# if defined(USE_GTK3)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002022 msg_puts(_("with GTK3 GUI."));
ichizok02560422022-04-05 14:18:44 +01002023# elif defined(FEAT_GUI_GNOME)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002024 msg_puts(_("with GTK2-GNOME GUI."));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002025# else
ichizok02560422022-04-05 14:18:44 +01002026 msg_puts(_("with GTK2 GUI."));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002027# endif
ichizok02560422022-04-05 14:18:44 +01002028#elif defined(FEAT_GUI_MOTIF)
2029 msg_puts(_("with X11-Motif GUI."));
2030#elif defined(FEAT_GUI_HAIKU)
2031 msg_puts(_("with Haiku GUI."));
2032#elif defined(FEAT_GUI_PHOTON)
2033 msg_puts(_("with Photon GUI."));
2034#elif defined(MSWIN)
2035 msg_puts(_("with GUI."));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002036#endif
2037 version_msg(_(" Features included (+) or not (-):\n"));
2038
Bram Moolenaar445f3032013-02-20 16:47:36 +01002039 list_features();
Bram Moolenaar8a5c29a2019-07-26 19:48:19 +02002040 if (msg_col > 0)
2041 msg_putchar('\n');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002042
Bram Moolenaar071d4272004-06-13 20:20:40 +00002043#ifdef SYS_VIMRC_FILE
2044 version_msg(_(" system vimrc file: \""));
2045 version_msg(SYS_VIMRC_FILE);
2046 version_msg("\"\n");
2047#endif
2048#ifdef USR_VIMRC_FILE
2049 version_msg(_(" user vimrc file: \""));
2050 version_msg(USR_VIMRC_FILE);
2051 version_msg("\"\n");
2052#endif
2053#ifdef USR_VIMRC_FILE2
2054 version_msg(_(" 2nd user vimrc file: \""));
2055 version_msg(USR_VIMRC_FILE2);
2056 version_msg("\"\n");
2057#endif
Diego Violad1068a22024-04-16 20:58:45 +02002058#if defined(USR_VIMRC_FILE3) && defined(XDG_VIMRC_FILE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002059 version_msg(_(" 3rd user vimrc file: \""));
2060 version_msg(USR_VIMRC_FILE3);
2061 version_msg("\"\n");
Diego Violad1068a22024-04-16 20:58:45 +02002062 version_msg(_(" 4th user vimrc file: \""));
2063 version_msg((char *)(XDG_VIMRC_FILE));
2064 version_msg("\"\n");
2065#elif defined(USR_VIMRC_FILE3)
2066 version_msg(_(" 3rd user vimrc file: \""));
2067 version_msg(USR_VIMRC_FILE3);
2068 version_msg("\"\n");
2069#elif defined(XDG_VIMRC_FILE)
2070 version_msg(_(" 3rd user vimrc file: \""));
2071 version_msg((char *)(XDG_VIMRC_FILE));
2072 version_msg("\"\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002073#endif
2074#ifdef USR_EXRC_FILE
2075 version_msg(_(" user exrc file: \""));
2076 version_msg(USR_EXRC_FILE);
2077 version_msg("\"\n");
2078#endif
2079#ifdef USR_EXRC_FILE2
2080 version_msg(_(" 2nd user exrc file: \""));
2081 version_msg(USR_EXRC_FILE2);
2082 version_msg("\"\n");
2083#endif
2084#ifdef FEAT_GUI
2085# ifdef SYS_GVIMRC_FILE
2086 version_msg(_(" system gvimrc file: \""));
2087 version_msg(SYS_GVIMRC_FILE);
2088 version_msg("\"\n");
2089# endif
2090 version_msg(_(" user gvimrc file: \""));
2091 version_msg(USR_GVIMRC_FILE);
2092 version_msg("\"\n");
2093# ifdef USR_GVIMRC_FILE2
2094 version_msg(_("2nd user gvimrc file: \""));
2095 version_msg(USR_GVIMRC_FILE2);
2096 version_msg("\"\n");
2097# endif
2098# ifdef USR_GVIMRC_FILE3
2099 version_msg(_("3rd user gvimrc file: \""));
2100 version_msg(USR_GVIMRC_FILE3);
2101 version_msg("\"\n");
2102# endif
2103#endif
Bram Moolenaar8c08b5b2016-07-28 22:24:15 +02002104 version_msg(_(" defaults file: \""));
2105 version_msg(VIM_DEFAULTS_FILE);
2106 version_msg("\"\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002107#ifdef FEAT_GUI
2108# ifdef SYS_MENU_FILE
2109 version_msg(_(" system menu file: \""));
2110 version_msg(SYS_MENU_FILE);
2111 version_msg("\"\n");
2112# endif
2113#endif
2114#ifdef HAVE_PATHDEF
2115 if (*default_vim_dir != NUL)
2116 {
2117 version_msg(_(" fall-back for $VIM: \""));
2118 version_msg((char *)default_vim_dir);
2119 version_msg("\"\n");
2120 }
2121 if (*default_vimruntime_dir != NUL)
2122 {
2123 version_msg(_(" f-b for $VIMRUNTIME: \""));
2124 version_msg((char *)default_vimruntime_dir);
2125 version_msg("\"\n");
2126 }
2127 version_msg(_("Compilation: "));
2128 version_msg((char *)all_cflags);
2129 version_msg("\n");
2130#ifdef VMS
2131 if (*compiler_version != NUL)
2132 {
2133 version_msg(_("Compiler: "));
2134 version_msg((char *)compiler_version);
2135 version_msg("\n");
2136 }
2137#endif
2138 version_msg(_("Linking: "));
2139 version_msg((char *)all_lflags);
2140#endif
2141#ifdef DEBUG
2142 version_msg("\n");
2143 version_msg(_(" DEBUG BUILD"));
2144#endif
2145}
2146
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01002147static void do_intro_line(int row, char_u *mesg, int add_version, int attr);
Bram Moolenaarbdff0122020-04-05 18:56:05 +02002148static void intro_message(int colon);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002149
2150/*
Bram Moolenaar249f0dd2013-07-04 22:31:03 +02002151 * Show the intro message when not editing a file.
2152 */
2153 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002154maybe_intro_message(void)
Bram Moolenaar249f0dd2013-07-04 22:31:03 +02002155{
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002156 if (BUFEMPTY()
Bram Moolenaar249f0dd2013-07-04 22:31:03 +02002157 && curbuf->b_fname == NULL
Bram Moolenaar249f0dd2013-07-04 22:31:03 +02002158 && firstwin->w_next == NULL
Bram Moolenaar249f0dd2013-07-04 22:31:03 +02002159 && vim_strchr(p_shm, SHM_INTRO) == NULL)
2160 intro_message(FALSE);
2161}
2162
2163/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002164 * Give an introductory message about Vim.
2165 * Only used when starting Vim on an empty file, without a file name.
2166 * Or with the ":intro" command (for Sven :-).
2167 */
Bram Moolenaarbdff0122020-04-05 18:56:05 +02002168 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002169intro_message(
Bram Moolenaaraa2f0ee2019-12-21 18:47:26 +01002170 int colon) // TRUE for ":intro"
Bram Moolenaar071d4272004-06-13 20:20:40 +00002171{
2172 int i;
2173 int row;
2174 int blanklines;
2175 int sponsor;
2176 char *p;
2177 static char *(lines[]) =
2178 {
2179 N_("VIM - Vi IMproved"),
2180 "",
2181 N_("version "),
2182 N_("by Bram Moolenaar et al."),
2183#ifdef MODIFIED_BY
2184 " ",
2185#endif
2186 N_("Vim is open source and freely distributable"),
2187 "",
2188 N_("Help poor children in Uganda!"),
2189 N_("type :help iccf<Enter> for information "),
2190 "",
2191 N_("type :q<Enter> to exit "),
2192 N_("type :help<Enter> or <F1> for on-line help"),
Bram Moolenaarabd56da2022-06-23 20:46:27 +01002193 N_("type :help version9<Enter> for version info"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00002194 NULL,
2195 "",
2196 N_("Running in Vi compatible mode"),
2197 N_("type :set nocp<Enter> for Vim defaults"),
2198 N_("type :help cp-default<Enter> for info on this"),
2199 };
2200#ifdef FEAT_GUI
2201 static char *(gui_lines[]) =
2202 {
2203 NULL,
2204 NULL,
2205 NULL,
2206 NULL,
2207#ifdef MODIFIED_BY
2208 NULL,
2209#endif
2210 NULL,
2211 NULL,
2212 NULL,
2213 N_("menu Help->Orphans for information "),
2214 NULL,
2215 N_("Running modeless, typed text is inserted"),
2216 N_("menu Edit->Global Settings->Toggle Insert Mode "),
2217 N_(" for two modes "),
2218 NULL,
2219 NULL,
2220 NULL,
2221 N_("menu Edit->Global Settings->Toggle Vi Compatible"),
2222 N_(" for Vim defaults "),
2223 };
2224#endif
2225
Bram Moolenaaraa2f0ee2019-12-21 18:47:26 +01002226 // blanklines = screen height - # message lines
K.Takataeeec2542021-06-02 13:28:16 +02002227 blanklines = (int)Rows - (ARRAY_LENGTH(lines) - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002228 if (!p_cp)
Bram Moolenaaraa2f0ee2019-12-21 18:47:26 +01002229 blanklines += 4; // add 4 for not showing "Vi compatible" message
Bram Moolenaar071d4272004-06-13 20:20:40 +00002230
Bram Moolenaaraa2f0ee2019-12-21 18:47:26 +01002231 // Don't overwrite a statusline. Depends on 'cmdheight'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002232 if (p_ls > 1)
2233 blanklines -= Rows - topframe->fr_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002234 if (blanklines < 0)
2235 blanklines = 0;
2236
Bram Moolenaaraa2f0ee2019-12-21 18:47:26 +01002237 // Show the sponsor and register message one out of four times, the Uganda
2238 // message two out of four times.
Bram Moolenaarf4cd3e82005-12-22 22:47:02 +00002239 sponsor = (int)time(NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002240 sponsor = ((sponsor & 2) == 0) - ((sponsor & 4) == 0);
2241
Bram Moolenaaraa2f0ee2019-12-21 18:47:26 +01002242 // start displaying the message lines after half of the blank lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00002243 row = blanklines / 2;
2244 if ((row >= 2 && Columns >= 50) || colon)
2245 {
K.Takataeeec2542021-06-02 13:28:16 +02002246 for (i = 0; i < (int)ARRAY_LENGTH(lines); ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002247 {
2248 p = lines[i];
2249#ifdef FEAT_GUI
2250 if (p_im && gui.in_use && gui_lines[i] != NULL)
2251 p = gui_lines[i];
2252#endif
2253 if (p == NULL)
2254 {
2255 if (!p_cp)
2256 break;
2257 continue;
2258 }
2259 if (sponsor != 0)
2260 {
2261 if (strstr(p, "children") != NULL)
2262 p = sponsor < 0
2263 ? N_("Sponsor Vim development!")
2264 : N_("Become a registered Vim user!");
2265 else if (strstr(p, "iccf") != NULL)
2266 p = sponsor < 0
2267 ? N_("type :help sponsor<Enter> for information ")
2268 : N_("type :help register<Enter> for information ");
2269 else if (strstr(p, "Orphans") != NULL)
2270 p = N_("menu Help->Sponsor/Register for information ");
2271 }
2272 if (*p != NUL)
2273 do_intro_line(row, (char_u *)_(p), i == 2, 0);
2274 ++row;
2275 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002276 }
2277
Bram Moolenaaraa2f0ee2019-12-21 18:47:26 +01002278 // Make the wait-return message appear just below the text.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002279 if (colon)
2280 msg_row = row;
2281}
2282
2283 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002284do_intro_line(
2285 int row,
2286 char_u *mesg,
2287 int add_version,
2288 int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002289{
2290 char_u vers[20];
2291 int col;
2292 char_u *p;
2293 int l;
2294 int clen;
2295#ifdef MODIFIED_BY
2296# define MODBY_LEN 150
2297 char_u modby[MODBY_LEN];
2298
2299 if (*mesg == ' ')
2300 {
Bram Moolenaar589e43a2008-01-05 12:59:22 +00002301 vim_strncpy(modby, (char_u *)_("Modified by "), MODBY_LEN - 1);
Bram Moolenaar9b0ac222016-06-01 20:31:43 +02002302 l = (int)STRLEN(modby);
Bram Moolenaar589e43a2008-01-05 12:59:22 +00002303 vim_strncpy(modby + l, (char_u *)MODIFIED_BY, MODBY_LEN - l - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002304 mesg = modby;
2305 }
2306#endif
2307
Bram Moolenaaraa2f0ee2019-12-21 18:47:26 +01002308 // Center the message horizontally.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002309 col = vim_strsize(mesg);
2310 if (add_version)
2311 {
2312 STRCPY(vers, mediumVersion);
2313 if (highest_patch())
2314 {
Bram Moolenaaraa2f0ee2019-12-21 18:47:26 +01002315 // Check for 9.9x or 9.9xx, alpha/beta version
Keith Thompson184f71c2024-01-04 21:19:04 +01002316 if (SAFE_isalpha((int)vers[3]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002317 {
Keith Thompson184f71c2024-01-04 21:19:04 +01002318 int len = (SAFE_isalpha((int)vers[4])) ? 5 : 4;
Bram Moolenaar552ac132012-03-07 18:03:10 +01002319 sprintf((char *)vers + len, ".%d%s", highest_patch(),
2320 mediumVersion + len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002321 }
2322 else
2323 sprintf((char *)vers + 3, ".%d", highest_patch());
2324 }
2325 col += (int)STRLEN(vers);
2326 }
2327 col = (Columns - col) / 2;
2328 if (col < 0)
2329 col = 0;
2330
Bram Moolenaaraa2f0ee2019-12-21 18:47:26 +01002331 // Split up in parts to highlight <> items differently.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002332 for (p = mesg; *p != NUL; p += l)
2333 {
2334 clen = 0;
2335 for (l = 0; p[l] != NUL
2336 && (l == 0 || (p[l] != '<' && p[l - 1] != '>')); ++l)
2337 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002338 if (has_mbyte)
2339 {
2340 clen += ptr2cells(p + l);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002341 l += (*mb_ptr2len)(p + l) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002342 }
2343 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002344 clen += byte2cells(p[l]);
2345 }
Bram Moolenaar8820b482017-03-16 17:23:31 +01002346 screen_puts_len(p, l, row, col, *p == '<' ? HL_ATTR(HLF_8) : attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002347 col += clen;
2348 }
2349
Bram Moolenaaraa2f0ee2019-12-21 18:47:26 +01002350 // Add the version number to the version line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002351 if (add_version)
2352 screen_puts(vers, row, col, 0);
2353}
2354
2355/*
2356 * ":intro": clear screen, display intro screen and wait for return.
2357 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002358 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002359ex_intro(exarg_T *eap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002360{
2361 screenclear();
2362 intro_message(TRUE);
2363 wait_return(TRUE);
2364}