blob: dc3cb58f535045fec1c45965d5c3874483a94942 [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
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 *
Bram Moolenaar640102482016-09-12 16:23:34 +020020 * Differences between version 7.4 and 8.x can be found with ":help version8".
21 * Differences between version 6.4 and 7.x can be found with ":help version7".
22 * Differences between version 5.8 and 6.x can be found with ":help version6".
Bram Moolenaar071d4272004-06-13 20:20:40 +000023 * Differences between version 4.x and 5.x can be found with ":help version5".
24 * Differences between version 3.0 and 4.x can be found with ":help version4".
25 * All the remarks about older versions have been removed, they are not very
26 * interesting.
27 */
28
29#include "version.h"
30
Bram Moolenaard042c562005-06-30 22:04:15 +000031char *Version = VIM_VERSION_SHORT;
32static char *mediumVersion = VIM_VERSION_MEDIUM;
Bram Moolenaar071d4272004-06-13 20:20:40 +000033
34#if defined(HAVE_DATE_TIME) || defined(PROTO)
35# if (defined(VMS) && defined(VAXC)) || defined(PROTO)
36char longVersion[sizeof(VIM_VERSION_LONG_DATE) + sizeof(__DATE__)
37 + sizeof(__TIME__) + 3];
Bram Moolenaar445f3032013-02-20 16:47:36 +010038
Bram Moolenaar071d4272004-06-13 20:20:40 +000039 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +010040make_version(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +000041{
42 /*
43 * Construct the long version string. Necessary because
44 * VAX C can't catenate strings in the preprocessor.
45 */
46 strcpy(longVersion, VIM_VERSION_LONG_DATE);
47 strcat(longVersion, __DATE__);
48 strcat(longVersion, " ");
49 strcat(longVersion, __TIME__);
50 strcat(longVersion, ")");
51}
52# else
53char *longVersion = VIM_VERSION_LONG_DATE __DATE__ " " __TIME__ ")";
54# endif
55#else
56char *longVersion = VIM_VERSION_LONG;
57#endif
58
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010059static void list_features(void);
60static void version_msg(char *s);
Bram Moolenaar071d4272004-06-13 20:20:40 +000061
62static char *(features[]) =
63{
Bram Moolenaarb5ef5e12013-08-30 16:35:44 +020064#ifdef HAVE_ACL
65 "+acl",
66#else
67 "-acl",
68#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000069#ifdef AMIGA /* only for Amiga systems */
70# ifdef FEAT_ARP
71 "+ARP",
72# else
73 "-ARP",
74# endif
75#endif
76#ifdef FEAT_ARABIC
77 "+arabic",
78#else
79 "-arabic",
80#endif
81#ifdef FEAT_AUTOCMD
82 "+autocmd",
83#else
84 "-autocmd",
85#endif
86#ifdef FEAT_BEVAL
87 "+balloon_eval",
88#else
89 "-balloon_eval",
90#endif
91#ifdef FEAT_BROWSE
92 "+browse",
93#else
94 "-browse",
95#endif
96#ifdef NO_BUILTIN_TCAPS
97 "-builtin_terms",
98#endif
99#ifdef SOME_BUILTIN_TCAPS
100 "+builtin_terms",
101#endif
102#ifdef ALL_BUILTIN_TCAPS
103 "++builtin_terms",
104#endif
105#ifdef FEAT_BYTEOFF
106 "+byte_offset",
107#else
108 "-byte_offset",
109#endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +0100110#ifdef FEAT_JOB_CHANNEL
Bram Moolenaar5aec4812016-01-25 20:15:45 +0100111 "+channel",
112#else
113 "-channel",
114#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000115#ifdef FEAT_CINDENT
116 "+cindent",
117#else
118 "-cindent",
119#endif
120#ifdef FEAT_CLIENTSERVER
121 "+clientserver",
122#else
123 "-clientserver",
124#endif
125#ifdef FEAT_CLIPBOARD
126 "+clipboard",
127#else
128 "-clipboard",
129#endif
130#ifdef FEAT_CMDL_COMPL
131 "+cmdline_compl",
132#else
133 "-cmdline_compl",
134#endif
135#ifdef FEAT_CMDHIST
136 "+cmdline_hist",
137#else
138 "-cmdline_hist",
139#endif
140#ifdef FEAT_CMDL_INFO
141 "+cmdline_info",
142#else
143 "-cmdline_info",
144#endif
145#ifdef FEAT_COMMENTS
146 "+comments",
147#else
148 "-comments",
149#endif
Bram Moolenaar860cae12010-06-05 23:22:07 +0200150#ifdef FEAT_CONCEAL
151 "+conceal",
152#else
153 "-conceal",
154#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000155#ifdef FEAT_CRYPT
156 "+cryptv",
157#else
158 "-cryptv",
159#endif
160#ifdef FEAT_CSCOPE
161 "+cscope",
162#else
163 "-cscope",
164#endif
Bram Moolenaar860cae12010-06-05 23:22:07 +0200165#ifdef FEAT_CURSORBIND
166 "+cursorbind",
167#else
168 "-cursorbind",
169#endif
Bram Moolenaar17c7c012006-01-26 22:25:15 +0000170#ifdef CURSOR_SHAPE
171 "+cursorshape",
172#else
173 "-cursorshape",
174#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000175#if defined(FEAT_CON_DIALOG) && defined(FEAT_GUI_DIALOG)
176 "+dialog_con_gui",
177#else
178# if defined(FEAT_CON_DIALOG)
179 "+dialog_con",
180# else
181# if defined(FEAT_GUI_DIALOG)
182 "+dialog_gui",
183# else
184 "-dialog",
185# endif
186# endif
187#endif
188#ifdef FEAT_DIFF
189 "+diff",
190#else
191 "-diff",
192#endif
193#ifdef FEAT_DIGRAPHS
194 "+digraphs",
195#else
196 "-digraphs",
197#endif
Bram Moolenaarb5a7a8b2014-08-06 14:52:30 +0200198#ifdef FEAT_GUI_W32
199# ifdef FEAT_DIRECTX
200 "+directx",
201# else
202 "-directx",
203# endif
204#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000205#ifdef FEAT_DND
206 "+dnd",
207#else
208 "-dnd",
209#endif
210#ifdef EBCDIC
211 "+ebcdic",
212#else
213 "-ebcdic",
214#endif
215#ifdef FEAT_EMACS_TAGS
216 "+emacs_tags",
217#else
218 "-emacs_tags",
219#endif
220#ifdef FEAT_EVAL
221 "+eval",
222#else
223 "-eval",
224#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000225 "+ex_extra",
Bram Moolenaar071d4272004-06-13 20:20:40 +0000226#ifdef FEAT_SEARCH_EXTRA
227 "+extra_search",
228#else
229 "-extra_search",
230#endif
231#ifdef FEAT_FKMAP
232 "+farsi",
233#else
234 "-farsi",
235#endif
236#ifdef FEAT_SEARCHPATH
237 "+file_in_path",
238#else
239 "-file_in_path",
240#endif
241#ifdef FEAT_FIND_ID
242 "+find_in_path",
243#else
244 "-find_in_path",
245#endif
Bram Moolenaar446cb832008-06-24 21:56:24 +0000246#ifdef FEAT_FLOAT
247 "+float",
248#else
249 "-float",
250#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000251#ifdef FEAT_FOLDING
252 "+folding",
253#else
254 "-folding",
255#endif
256#ifdef FEAT_FOOTER
257 "+footer",
258#else
259 "-footer",
260#endif
261 /* only interesting on Unix systems */
262#if !defined(USE_SYSTEM) && defined(UNIX)
263 "+fork()",
264#endif
265#ifdef FEAT_GETTEXT
266# ifdef DYNAMIC_GETTEXT
267 "+gettext/dyn",
268# else
269 "+gettext",
270# endif
271#else
272 "-gettext",
273#endif
274#ifdef FEAT_HANGULIN
275 "+hangul_input",
276#else
277 "-hangul_input",
278#endif
279#if (defined(HAVE_ICONV_H) && defined(USE_ICONV)) || defined(DYNAMIC_ICONV)
280# ifdef DYNAMIC_ICONV
281 "+iconv/dyn",
282# else
283 "+iconv",
284# endif
285#else
286 "-iconv",
287#endif
288#ifdef FEAT_INS_EXPAND
289 "+insert_expand",
290#else
291 "-insert_expand",
292#endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +0100293#ifdef FEAT_JOB_CHANNEL
Bram Moolenaar835dc632016-02-07 14:27:38 +0100294 "+job",
295#else
296 "-job",
297#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000298#ifdef FEAT_JUMPLIST
299 "+jumplist",
300#else
301 "-jumplist",
302#endif
303#ifdef FEAT_KEYMAP
304 "+keymap",
305#else
306 "-keymap",
307#endif
Bram Moolenaar9532fe72016-07-29 22:50:35 +0200308#ifdef FEAT_EVAL
309 "+lambda",
310#else
311 "-lambda",
312#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000313#ifdef FEAT_LANGMAP
314 "+langmap",
315#else
316 "-langmap",
317#endif
318#ifdef FEAT_LIBCALL
319 "+libcall",
320#else
321 "-libcall",
322#endif
323#ifdef FEAT_LINEBREAK
324 "+linebreak",
325#else
326 "-linebreak",
327#endif
328#ifdef FEAT_LISP
329 "+lispindent",
330#else
331 "-lispindent",
332#endif
333#ifdef FEAT_LISTCMDS
334 "+listcmds",
335#else
336 "-listcmds",
337#endif
338#ifdef FEAT_LOCALMAP
339 "+localmap",
340#else
341 "-localmap",
342#endif
Bram Moolenaar0ba04292010-07-14 23:23:17 +0200343#ifdef FEAT_LUA
344# ifdef DYNAMIC_LUA
345 "+lua/dyn",
346# else
347 "+lua",
348# endif
349#else
350 "-lua",
351#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000352#ifdef FEAT_MENU
353 "+menu",
354#else
355 "-menu",
356#endif
357#ifdef FEAT_SESSION
358 "+mksession",
359#else
360 "-mksession",
361#endif
362#ifdef FEAT_MODIFY_FNAME
363 "+modify_fname",
364#else
365 "-modify_fname",
366#endif
367#ifdef FEAT_MOUSE
368 "+mouse",
369# ifdef FEAT_MOUSESHAPE
370 "+mouseshape",
371# else
372 "-mouseshape",
373# endif
374# else
375 "-mouse",
376#endif
Bram Moolenaar707cfb82012-10-21 04:00:07 +0200377
Bram Moolenaar071d4272004-06-13 20:20:40 +0000378#if defined(UNIX) || defined(VMS)
379# ifdef FEAT_MOUSE_DEC
380 "+mouse_dec",
381# else
382 "-mouse_dec",
383# endif
384# ifdef FEAT_MOUSE_GPM
385 "+mouse_gpm",
386# else
387 "-mouse_gpm",
388# endif
389# ifdef FEAT_MOUSE_JSB
390 "+mouse_jsbterm",
391# else
392 "-mouse_jsbterm",
393# endif
394# ifdef FEAT_MOUSE_NET
395 "+mouse_netterm",
396# else
397 "-mouse_netterm",
398# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000399#endif
Bram Moolenaar707cfb82012-10-21 04:00:07 +0200400
Bram Moolenaar071d4272004-06-13 20:20:40 +0000401#ifdef __QNX__
402# ifdef FEAT_MOUSE_PTERM
403 "+mouse_pterm",
404# else
405 "-mouse_pterm",
406# endif
407#endif
Bram Moolenaar707cfb82012-10-21 04:00:07 +0200408
409#if defined(UNIX) || defined(VMS)
410# ifdef FEAT_MOUSE_SGR
411 "+mouse_sgr",
412# else
413 "-mouse_sgr",
414# endif
415# ifdef FEAT_SYSMOUSE
416 "+mouse_sysmouse",
417# else
418 "-mouse_sysmouse",
419# endif
420# ifdef FEAT_MOUSE_URXVT
421 "+mouse_urxvt",
422# else
423 "-mouse_urxvt",
424# endif
425# ifdef FEAT_MOUSE_XTERM
426 "+mouse_xterm",
427# else
428 "-mouse_xterm",
429# endif
430#endif
431
Bram Moolenaar071d4272004-06-13 20:20:40 +0000432#ifdef FEAT_MBYTE_IME
433# ifdef DYNAMIC_IME
434 "+multi_byte_ime/dyn",
435# else
436 "+multi_byte_ime",
437# endif
438#else
439# ifdef FEAT_MBYTE
440 "+multi_byte",
441# else
442 "-multi_byte",
443# endif
444#endif
445#ifdef FEAT_MULTI_LANG
446 "+multi_lang",
447#else
448 "-multi_lang",
449#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000450#ifdef FEAT_MZSCHEME
Bram Moolenaardf3267e2005-01-25 22:07:05 +0000451# ifdef DYNAMIC_MZSCHEME
452 "+mzscheme/dyn",
453# else
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000454 "+mzscheme",
Bram Moolenaardf3267e2005-01-25 22:07:05 +0000455# endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000456#else
457 "-mzscheme",
458#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000459#ifdef FEAT_NETBEANS_INTG
460 "+netbeans_intg",
461#else
462 "-netbeans_intg",
463#endif
Bram Moolenaar22fcfad2016-07-01 18:17:26 +0200464#ifdef FEAT_NUM64
465 "+num64",
466#else
467 "-num64",
468#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000469#ifdef FEAT_GUI_W32
470# ifdef FEAT_OLE
471 "+ole",
472# else
473 "-ole",
474# endif
475#endif
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100476 "+packages",
Bram Moolenaar071d4272004-06-13 20:20:40 +0000477#ifdef FEAT_PATH_EXTRA
478 "+path_extra",
479#else
480 "-path_extra",
481#endif
482#ifdef FEAT_PERL
483# ifdef DYNAMIC_PERL
484 "+perl/dyn",
485# else
486 "+perl",
487# endif
488#else
489 "-perl",
490#endif
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200491#ifdef FEAT_PERSISTENT_UNDO
492 "+persistent_undo",
493#else
494 "-persistent_undo",
495#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000496#ifdef FEAT_PRINTER
497# ifdef FEAT_POSTSCRIPT
498 "+postscript",
499# else
500 "-postscript",
501# endif
502 "+printer",
503#else
504 "-printer",
505#endif
Bram Moolenaar05159a02005-02-26 23:04:13 +0000506#ifdef FEAT_PROFILE
507 "+profile",
508#else
509 "-profile",
510#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000511#ifdef FEAT_PYTHON
512# ifdef DYNAMIC_PYTHON
513 "+python/dyn",
514# else
515 "+python",
516# endif
517#else
518 "-python",
519#endif
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200520#ifdef FEAT_PYTHON3
521# ifdef DYNAMIC_PYTHON3
522 "+python3/dyn",
523# else
524 "+python3",
525# endif
526#else
527 "-python3",
528#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000529#ifdef FEAT_QUICKFIX
530 "+quickfix",
531#else
532 "-quickfix",
533#endif
Bram Moolenaard68071d2006-05-02 22:08:30 +0000534#ifdef FEAT_RELTIME
535 "+reltime",
536#else
537 "-reltime",
538#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000539#ifdef FEAT_RIGHTLEFT
540 "+rightleft",
541#else
542 "-rightleft",
543#endif
544#ifdef FEAT_RUBY
545# ifdef DYNAMIC_RUBY
546 "+ruby/dyn",
547# else
548 "+ruby",
549# endif
550#else
551 "-ruby",
552#endif
553#ifdef FEAT_SCROLLBIND
554 "+scrollbind",
555#else
556 "-scrollbind",
557#endif
558#ifdef FEAT_SIGNS
559 "+signs",
560#else
561 "-signs",
562#endif
563#ifdef FEAT_SMARTINDENT
564 "+smartindent",
565#else
566 "-smartindent",
567#endif
Bram Moolenaaref94eec2009-11-11 13:22:11 +0000568#ifdef STARTUPTIME
569 "+startuptime",
570#else
571 "-startuptime",
572#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000573#ifdef FEAT_STL_OPT
574 "+statusline",
575#else
576 "-statusline",
577#endif
578#ifdef FEAT_SUN_WORKSHOP
579 "+sun_workshop",
580#else
581 "-sun_workshop",
582#endif
583#ifdef FEAT_SYN_HL
584 "+syntax",
585#else
586 "-syntax",
587#endif
588 /* only interesting on Unix systems */
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200589#if defined(USE_SYSTEM) && defined(UNIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000590 "+system()",
591#endif
592#ifdef FEAT_TAG_BINS
593 "+tag_binary",
594#else
595 "-tag_binary",
596#endif
597#ifdef FEAT_TAG_OLDSTATIC
598 "+tag_old_static",
599#else
600 "-tag_old_static",
601#endif
602#ifdef FEAT_TAG_ANYWHITE
603 "+tag_any_white",
604#else
605 "-tag_any_white",
606#endif
607#ifdef FEAT_TCL
608# ifdef DYNAMIC_TCL
609 "+tcl/dyn",
610# else
611 "+tcl",
612# endif
613#else
614 "-tcl",
615#endif
Bram Moolenaar61be73b2016-04-29 22:59:22 +0200616#ifdef FEAT_TERMGUICOLORS
617 "+termguicolors",
618#else
619 "-termguicolors",
620#endif
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200621#if defined(UNIX)
622/* only Unix can have terminfo instead of termcap */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000623# ifdef TERMINFO
624 "+terminfo",
625# else
626 "-terminfo",
627# endif
628#else /* unix always includes termcap support */
629# ifdef HAVE_TGETENT
630 "+tgetent",
631# else
632 "-tgetent",
633# endif
634#endif
635#ifdef FEAT_TERMRESPONSE
636 "+termresponse",
637#else
638 "-termresponse",
639#endif
640#ifdef FEAT_TEXTOBJ
641 "+textobjects",
642#else
643 "-textobjects",
644#endif
Bram Moolenaar975b5272016-03-15 23:10:59 +0100645#ifdef FEAT_TIMERS
646 "+timers",
647#else
648 "-timers",
649#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000650#ifdef FEAT_TITLE
651 "+title",
652#else
653 "-title",
654#endif
655#ifdef FEAT_TOOLBAR
656 "+toolbar",
657#else
658 "-toolbar",
659#endif
660#ifdef FEAT_USR_CMDS
661 "+user_commands",
662#else
663 "-user_commands",
664#endif
Bram Moolenaar44a2f922016-03-19 22:11:51 +0100665#ifdef FEAT_WINDOWS
Bram Moolenaar071d4272004-06-13 20:20:40 +0000666 "+vertsplit",
667#else
668 "-vertsplit",
669#endif
670#ifdef FEAT_VIRTUALEDIT
671 "+virtualedit",
672#else
673 "-virtualedit",
674#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000675 "+visual",
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +0100676#ifdef FEAT_VISUALEXTRA
Bram Moolenaar071d4272004-06-13 20:20:40 +0000677 "+visualextra",
Bram Moolenaar071d4272004-06-13 20:20:40 +0000678#else
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +0100679 "-visualextra",
Bram Moolenaar071d4272004-06-13 20:20:40 +0000680#endif
681#ifdef FEAT_VIMINFO
682 "+viminfo",
683#else
684 "-viminfo",
685#endif
686#ifdef FEAT_VREPLACE
687 "+vreplace",
688#else
689 "-vreplace",
690#endif
691#ifdef FEAT_WILDIGN
692 "+wildignore",
693#else
694 "-wildignore",
695#endif
696#ifdef FEAT_WILDMENU
697 "+wildmenu",
698#else
699 "-wildmenu",
700#endif
701#ifdef FEAT_WINDOWS
702 "+windows",
703#else
704 "-windows",
705#endif
706#ifdef FEAT_WRITEBACKUP
707 "+writebackup",
708#else
709 "-writebackup",
710#endif
711#if defined(UNIX) || defined(VMS)
712# ifdef FEAT_X11
713 "+X11",
714# else
715 "-X11",
716# endif
717#endif
718#ifdef FEAT_XFONTSET
719 "+xfontset",
720#else
721 "-xfontset",
722#endif
723#ifdef FEAT_XIM
724 "+xim",
725#else
726 "-xim",
727#endif
Bram Moolenaard58b0f92016-08-13 16:39:56 +0200728#ifdef WIN3264
729# ifdef FEAT_XPM_W32
730 "+xpm_w32",
731# else
732 "-xpm_w32",
733# endif
734#else
735# ifdef HAVE_XPM
736 "+xpm",
737# else
738 "-xpm",
739# endif
740#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000741#if defined(UNIX) || defined(VMS)
742# ifdef USE_XSMP_INTERACT
743 "+xsmp_interact",
744# else
745# ifdef USE_XSMP
746 "+xsmp",
747# else
748 "-xsmp",
749# endif
750# endif
751# ifdef FEAT_XCLIPBOARD
752 "+xterm_clipboard",
753# else
754 "-xterm_clipboard",
755# endif
756#endif
757#ifdef FEAT_XTERM_SAVE
758 "+xterm_save",
759#else
760 "-xterm_save",
761#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000762 NULL
763};
764
765static int included_patches[] =
766{ /* Add new patch number below this line */
767/**/
Bram Moolenaar91e44a32016-11-04 20:08:52 +0100768 58,
769/**/
Bram Moolenaar9376f5f2016-11-04 16:41:20 +0100770 57,
771/**/
Bram Moolenaard0b51382016-11-04 15:23:45 +0100772 56,
773/**/
Bram Moolenaar3a117e12016-10-30 21:57:52 +0100774 55,
775/**/
Bram Moolenaarfb630902016-10-29 14:55:00 +0200776 54,
777/**/
Bram Moolenaar60ef3e82016-10-29 14:37:56 +0200778 53,
779/**/
Bram Moolenaar35a1f592016-10-28 22:10:27 +0200780 52,
781/**/
Bram Moolenaar14207f42016-10-27 21:13:10 +0200782 51,
783/**/
Bram Moolenaar01688ad2016-10-27 20:00:07 +0200784 50,
785/**/
Bram Moolenaar2f979122016-10-27 17:27:44 +0200786 49,
787/**/
Bram Moolenaara350bab2016-10-27 16:46:53 +0200788 48,
789/**/
Bram Moolenaar50e53762016-10-27 14:49:15 +0200790 47,
791/**/
Bram Moolenaar7756e742016-10-21 20:35:37 +0200792 46,
793/**/
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +0200794 45,
795/**/
Bram Moolenaar025e3e02016-10-18 14:50:18 +0200796 44,
797/**/
Bram Moolenaar9ec7fa82016-10-18 13:06:41 +0200798 43,
799/**/
Bram Moolenaarcbd3bd62016-10-17 20:47:02 +0200800 42,
801/**/
Bram Moolenaar869e3522016-10-16 15:35:47 +0200802 41,
803/**/
Bram Moolenaar85077472016-10-16 14:35:48 +0200804 40,
805/**/
Bram Moolenaar156919f2016-10-15 20:46:20 +0200806 39,
807/**/
Bram Moolenaarca291ae2016-10-15 19:33:50 +0200808 38,
809/**/
Bram Moolenaar0a9046f2016-10-15 19:28:13 +0200810 37,
811/**/
Bram Moolenaar97792de2016-10-15 18:36:49 +0200812 36,
813/**/
Bram Moolenaar472e8592016-10-15 17:06:47 +0200814 35,
815/**/
Bram Moolenaar9e507ca2016-10-15 15:39:39 +0200816 34,
817/**/
Bram Moolenaara6c27ee2016-10-15 14:56:30 +0200818 33,
819/**/
Bram Moolenaar3e8474d2016-10-12 17:52:42 +0200820 32,
821/**/
Bram Moolenaare8ef3a02016-10-12 17:45:29 +0200822 31,
823/**/
Bram Moolenaar0ba40702016-10-12 14:50:54 +0200824 30,
825/**/
Bram Moolenaarcea912a2016-10-12 14:20:24 +0200826 29,
827/**/
Bram Moolenaara7c023e2016-10-12 12:13:35 +0200828 28,
829/**/
Bram Moolenaardc0ccae2016-10-09 17:28:01 +0200830 27,
831/**/
Bram Moolenaar9b457942016-10-09 16:10:05 +0200832 26,
833/**/
Bram Moolenaar936c48f2016-10-09 15:50:48 +0200834 25,
835/**/
Bram Moolenaar8ddef482016-10-09 15:43:25 +0200836 24,
837/**/
Bram Moolenaar226630a2016-10-08 19:21:31 +0200838 23,
839/**/
Bram Moolenaarec68a992016-10-03 21:37:41 +0200840 22,
841/**/
Bram Moolenaar84dbd492016-10-02 23:09:31 +0200842 21,
843/**/
Bram Moolenaar6100d022016-10-02 16:51:57 +0200844 20,
845/**/
Bram Moolenaarb3435b02016-09-29 20:54:59 +0200846 19,
847/**/
Bram Moolenaarb9c31e72016-09-29 15:18:57 +0200848 18,
849/**/
Bram Moolenaar890680c2016-09-27 21:28:56 +0200850 17,
851/**/
Bram Moolenaar0e77b762016-09-26 22:58:58 +0200852 16,
853/**/
Bram Moolenaar7ef38102016-09-26 22:36:58 +0200854 15,
855/**/
Bram Moolenaar1eceada2016-09-26 20:14:56 +0200856 14,
857/**/
Bram Moolenaarc79d6aa2016-09-25 22:27:37 +0200858 13,
859/**/
Bram Moolenaar9af41842016-09-25 21:45:05 +0200860 12,
861/**/
Bram Moolenaar947000d2016-09-25 21:03:02 +0200862 11,
863/**/
Bram Moolenaar680e0152016-09-25 20:54:11 +0200864 10,
865/**/
Bram Moolenaar3f1c15b2016-09-25 20:22:02 +0200866 9,
867/**/
Bram Moolenaar9e02cfa2016-09-22 21:27:11 +0200868 8,
869/**/
Bram Moolenaarbbe917d2016-09-21 22:41:24 +0200870 7,
871/**/
Bram Moolenaarebdd90a2016-09-20 21:39:14 +0200872 6,
873/**/
Bram Moolenaar3c4ebeb2016-09-15 11:44:27 +0200874 5,
875/**/
Bram Moolenaar5582ef12016-09-14 22:16:13 +0200876 4,
877/**/
Bram Moolenaar789a5c02016-09-12 19:51:11 +0200878 3,
879/**/
Bram Moolenaar9e1e7af2016-09-12 16:31:10 +0200880 2,
881/**/
Bram Moolenaar640102482016-09-12 16:23:34 +0200882 1,
883/**/
Bram Moolenaar071d4272004-06-13 20:20:40 +0000884 0
885};
886
Bram Moolenaar10d4cec2008-11-30 11:15:09 +0000887/*
888 * Place to put a short description when adding a feature with a patch.
889 * Keep it short, e.g.,: "relative numbers", "persistent undo".
890 * Also add a comment marker to separate the lines.
891 * See the official Vim patches for the diff format: It must use a context of
Bram Moolenaarcbb8eb32008-12-24 13:25:14 +0000892 * one line only. Create it by hand or use "diff -C2" and edit the patch.
Bram Moolenaar10d4cec2008-11-30 11:15:09 +0000893 */
894static char *(extra_patches[]) =
895{ /* Add your patch description below this line */
896/**/
897 NULL
898};
899
Bram Moolenaar071d4272004-06-13 20:20:40 +0000900 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +0100901highest_patch(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000902{
903 int i;
904 int h = 0;
905
906 for (i = 0; included_patches[i] != 0; ++i)
907 if (included_patches[i] > h)
908 h = included_patches[i];
909 return h;
910}
911
912#if defined(FEAT_EVAL) || defined(PROTO)
913/*
914 * Return TRUE if patch "n" has been included.
915 */
916 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +0100917has_patch(int n)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000918{
919 int i;
920
921 for (i = 0; included_patches[i] != 0; ++i)
922 if (included_patches[i] == n)
923 return TRUE;
924 return FALSE;
925}
926#endif
927
928 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +0100929ex_version(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000930{
931 /*
932 * Ignore a ":version 9.99" command.
933 */
934 if (*eap->arg == NUL)
935 {
936 msg_putchar('\n');
937 list_version();
938 }
939}
940
Bram Moolenaar445f3032013-02-20 16:47:36 +0100941/*
942 * List all features aligned in columns, dictionary style.
943 */
944 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +0100945list_features(void)
Bram Moolenaar445f3032013-02-20 16:47:36 +0100946{
947 int i;
948 int ncol;
949 int nrow;
950 int nfeat = 0;
951 int width = 0;
952
953 /* Find the length of the longest feature name, use that + 1 as the column
954 * width */
955 for (i = 0; features[i] != NULL; ++i)
956 {
Bram Moolenaar5c962632013-02-26 11:25:33 +0100957 int l = (int)STRLEN(features[i]);
Bram Moolenaar445f3032013-02-20 16:47:36 +0100958
959 if (l > width)
960 width = l;
961 ++nfeat;
962 }
963 width += 1;
964
965 if (Columns < width)
966 {
967 /* Not enough screen columns - show one per line */
968 for (i = 0; features[i] != NULL; ++i)
969 {
970 version_msg(features[i]);
971 if (msg_col > 0)
972 msg_putchar('\n');
973 }
974 return;
975 }
976
Bram Moolenaar445f3032013-02-20 16:47:36 +0100977 /* The rightmost column doesn't need a separator.
978 * Sacrifice it to fit in one more column if possible. */
Bram Moolenaarf13f45d2013-02-26 15:27:23 +0100979 ncol = (int) (Columns + 1) / width;
Bram Moolenaar445f3032013-02-20 16:47:36 +0100980 nrow = nfeat / ncol + (nfeat % ncol ? 1 : 0);
981
Bram Moolenaarf13f45d2013-02-26 15:27:23 +0100982 /* i counts columns then rows. idx counts rows then columns. */
Bram Moolenaar445f3032013-02-20 16:47:36 +0100983 for (i = 0; !got_int && i < nrow * ncol; ++i)
984 {
985 int idx = (i / ncol) + (i % ncol) * nrow;
986
987 if (idx < nfeat)
988 {
989 int last_col = (i + 1) % ncol == 0;
990
991 msg_puts((char_u *)features[idx]);
992 if (last_col)
993 {
994 if (msg_col > 0)
995 msg_putchar('\n');
996 }
997 else
998 {
999 while (msg_col % width)
1000 msg_putchar(' ');
1001 }
1002 }
1003 else
Bram Moolenaarf13f45d2013-02-26 15:27:23 +01001004 {
1005 if (msg_col > 0)
1006 msg_putchar('\n');
1007 }
Bram Moolenaar445f3032013-02-20 16:47:36 +01001008 }
1009}
Bram Moolenaar5c962632013-02-26 11:25:33 +01001010
Bram Moolenaar071d4272004-06-13 20:20:40 +00001011 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001012list_version(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001013{
1014 int i;
1015 int first;
1016 char *s = "";
1017
1018 /*
1019 * When adding features here, don't forget to update the list of
1020 * internal variables in eval.c!
1021 */
1022 MSG(longVersion);
1023#ifdef WIN3264
1024# ifdef FEAT_GUI_W32
Bram Moolenaarcea912a2016-10-12 14:20:24 +02001025# ifdef _WIN64
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +00001026 MSG_PUTS(_("\nMS-Windows 64-bit GUI version"));
Bram Moolenaarcea912a2016-10-12 14:20:24 +02001027# else
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +00001028 MSG_PUTS(_("\nMS-Windows 32-bit GUI version"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001029# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001030# ifdef FEAT_OLE
1031 MSG_PUTS(_(" with OLE support"));
1032# endif
1033# else
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +00001034# ifdef _WIN64
1035 MSG_PUTS(_("\nMS-Windows 64-bit console version"));
1036# else
1037 MSG_PUTS(_("\nMS-Windows 32-bit console version"));
1038# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001039# endif
1040#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001041#ifdef MACOS
1042# ifdef MACOS_X
1043# ifdef MACOS_X_UNIX
1044 MSG_PUTS(_("\nMacOS X (unix) version"));
1045# else
1046 MSG_PUTS(_("\nMacOS X version"));
1047# endif
1048#else
1049 MSG_PUTS(_("\nMacOS version"));
1050# endif
1051#endif
1052
Bram Moolenaar071d4272004-06-13 20:20:40 +00001053#ifdef VMS
Bram Moolenaar6949d1d2008-08-25 02:14:05 +00001054 MSG_PUTS(_("\nOpenVMS version"));
Bram Moolenaar3d20ca12006-11-28 16:43:58 +00001055# ifdef HAVE_PATHDEF
1056 if (*compiled_arch != NUL)
1057 {
1058 MSG_PUTS(" - ");
1059 MSG_PUTS(compiled_arch);
1060 }
1061# endif
1062
Bram Moolenaar071d4272004-06-13 20:20:40 +00001063#endif
1064
1065 /* Print the list of patch numbers if there is at least one. */
1066 /* Print a range when patches are consecutive: "1-10, 12, 15-40, 42-45" */
1067 if (included_patches[0] != 0)
1068 {
1069 MSG_PUTS(_("\nIncluded patches: "));
1070 first = -1;
1071 /* find last one */
1072 for (i = 0; included_patches[i] != 0; ++i)
1073 ;
1074 while (--i >= 0)
1075 {
1076 if (first < 0)
1077 first = included_patches[i];
1078 if (i == 0 || included_patches[i - 1] != included_patches[i] + 1)
1079 {
1080 MSG_PUTS(s);
1081 s = ", ";
1082 msg_outnum((long)first);
1083 if (first != included_patches[i])
1084 {
1085 MSG_PUTS("-");
1086 msg_outnum((long)included_patches[i]);
1087 }
1088 first = -1;
1089 }
1090 }
1091 }
1092
Bram Moolenaar10d4cec2008-11-30 11:15:09 +00001093 /* Print the list of extra patch descriptions if there is at least one. */
1094 if (extra_patches[0] != NULL)
1095 {
1096 MSG_PUTS(_("\nExtra patches: "));
1097 s = "";
1098 for (i = 0; extra_patches[i] != NULL; ++i)
1099 {
1100 MSG_PUTS(s);
1101 s = ", ";
1102 MSG_PUTS(extra_patches[i]);
1103 }
1104 }
1105
Bram Moolenaar071d4272004-06-13 20:20:40 +00001106#ifdef MODIFIED_BY
1107 MSG_PUTS("\n");
1108 MSG_PUTS(_("Modified by "));
1109 MSG_PUTS(MODIFIED_BY);
1110#endif
1111
1112#ifdef HAVE_PATHDEF
1113 if (*compiled_user != NUL || *compiled_sys != NUL)
1114 {
1115 MSG_PUTS(_("\nCompiled "));
1116 if (*compiled_user != NUL)
1117 {
1118 MSG_PUTS(_("by "));
1119 MSG_PUTS(compiled_user);
1120 }
1121 if (*compiled_sys != NUL)
1122 {
1123 MSG_PUTS("@");
1124 MSG_PUTS(compiled_sys);
1125 }
1126 }
1127#endif
1128
1129#ifdef FEAT_HUGE
1130 MSG_PUTS(_("\nHuge version "));
1131#else
1132# ifdef FEAT_BIG
1133 MSG_PUTS(_("\nBig version "));
1134# else
1135# ifdef FEAT_NORMAL
1136 MSG_PUTS(_("\nNormal version "));
1137# else
1138# ifdef FEAT_SMALL
1139 MSG_PUTS(_("\nSmall version "));
1140# else
1141 MSG_PUTS(_("\nTiny version "));
1142# endif
1143# endif
1144# endif
1145#endif
1146#ifndef FEAT_GUI
1147 MSG_PUTS(_("without GUI."));
1148#else
1149# ifdef FEAT_GUI_GTK
Bram Moolenaar98921892016-02-23 17:14:37 +01001150# ifdef USE_GTK3
1151 MSG_PUTS(_("with GTK3 GUI."));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001152# else
Bram Moolenaar98921892016-02-23 17:14:37 +01001153# ifdef FEAT_GUI_GNOME
1154 MSG_PUTS(_("with GTK2-GNOME GUI."));
1155# else
1156 MSG_PUTS(_("with GTK2 GUI."));
1157# endif
1158# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001159# else
1160# ifdef FEAT_GUI_MOTIF
1161 MSG_PUTS(_("with X11-Motif GUI."));
1162# else
1163# ifdef FEAT_GUI_ATHENA
1164# ifdef FEAT_GUI_NEXTAW
1165 MSG_PUTS(_("with X11-neXtaw GUI."));
1166# else
1167 MSG_PUTS(_("with X11-Athena GUI."));
1168# endif
1169# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001170# ifdef FEAT_GUI_PHOTON
1171 MSG_PUTS(_("with Photon GUI."));
1172# else
1173# if defined(MSWIN)
1174 MSG_PUTS(_("with GUI."));
1175# else
Bram Moolenaar860cae12010-06-05 23:22:07 +02001176# if defined(TARGET_API_MAC_CARBON) && TARGET_API_MAC_CARBON
Bram Moolenaar071d4272004-06-13 20:20:40 +00001177 MSG_PUTS(_("with Carbon GUI."));
1178# else
Bram Moolenaar860cae12010-06-05 23:22:07 +02001179# if defined(TARGET_API_MAC_OSX) && TARGET_API_MAC_OSX
Bram Moolenaar071d4272004-06-13 20:20:40 +00001180 MSG_PUTS(_("with Cocoa GUI."));
1181# else
Bram Moolenaar860cae12010-06-05 23:22:07 +02001182# if defined(MACOS)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001183 MSG_PUTS(_("with (classic) GUI."));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001184# endif
1185# endif
1186# endif
1187# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001188# endif
1189# endif
1190# endif
1191# endif
1192#endif
1193 version_msg(_(" Features included (+) or not (-):\n"));
1194
Bram Moolenaar445f3032013-02-20 16:47:36 +01001195 list_features();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001196
Bram Moolenaar071d4272004-06-13 20:20:40 +00001197#ifdef SYS_VIMRC_FILE
1198 version_msg(_(" system vimrc file: \""));
1199 version_msg(SYS_VIMRC_FILE);
1200 version_msg("\"\n");
1201#endif
1202#ifdef USR_VIMRC_FILE
1203 version_msg(_(" user vimrc file: \""));
1204 version_msg(USR_VIMRC_FILE);
1205 version_msg("\"\n");
1206#endif
1207#ifdef USR_VIMRC_FILE2
1208 version_msg(_(" 2nd user vimrc file: \""));
1209 version_msg(USR_VIMRC_FILE2);
1210 version_msg("\"\n");
1211#endif
1212#ifdef USR_VIMRC_FILE3
1213 version_msg(_(" 3rd user vimrc file: \""));
1214 version_msg(USR_VIMRC_FILE3);
1215 version_msg("\"\n");
1216#endif
1217#ifdef USR_EXRC_FILE
1218 version_msg(_(" user exrc file: \""));
1219 version_msg(USR_EXRC_FILE);
1220 version_msg("\"\n");
1221#endif
1222#ifdef USR_EXRC_FILE2
1223 version_msg(_(" 2nd user exrc file: \""));
1224 version_msg(USR_EXRC_FILE2);
1225 version_msg("\"\n");
1226#endif
1227#ifdef FEAT_GUI
1228# ifdef SYS_GVIMRC_FILE
1229 version_msg(_(" system gvimrc file: \""));
1230 version_msg(SYS_GVIMRC_FILE);
1231 version_msg("\"\n");
1232# endif
1233 version_msg(_(" user gvimrc file: \""));
1234 version_msg(USR_GVIMRC_FILE);
1235 version_msg("\"\n");
1236# ifdef USR_GVIMRC_FILE2
1237 version_msg(_("2nd user gvimrc file: \""));
1238 version_msg(USR_GVIMRC_FILE2);
1239 version_msg("\"\n");
1240# endif
1241# ifdef USR_GVIMRC_FILE3
1242 version_msg(_("3rd user gvimrc file: \""));
1243 version_msg(USR_GVIMRC_FILE3);
1244 version_msg("\"\n");
1245# endif
1246#endif
Bram Moolenaar8c08b5b2016-07-28 22:24:15 +02001247 version_msg(_(" defaults file: \""));
1248 version_msg(VIM_DEFAULTS_FILE);
1249 version_msg("\"\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001250#ifdef FEAT_GUI
1251# ifdef SYS_MENU_FILE
1252 version_msg(_(" system menu file: \""));
1253 version_msg(SYS_MENU_FILE);
1254 version_msg("\"\n");
1255# endif
1256#endif
1257#ifdef HAVE_PATHDEF
1258 if (*default_vim_dir != NUL)
1259 {
1260 version_msg(_(" fall-back for $VIM: \""));
1261 version_msg((char *)default_vim_dir);
1262 version_msg("\"\n");
1263 }
1264 if (*default_vimruntime_dir != NUL)
1265 {
1266 version_msg(_(" f-b for $VIMRUNTIME: \""));
1267 version_msg((char *)default_vimruntime_dir);
1268 version_msg("\"\n");
1269 }
1270 version_msg(_("Compilation: "));
1271 version_msg((char *)all_cflags);
1272 version_msg("\n");
1273#ifdef VMS
1274 if (*compiler_version != NUL)
1275 {
1276 version_msg(_("Compiler: "));
1277 version_msg((char *)compiler_version);
1278 version_msg("\n");
1279 }
1280#endif
1281 version_msg(_("Linking: "));
1282 version_msg((char *)all_lflags);
1283#endif
1284#ifdef DEBUG
1285 version_msg("\n");
1286 version_msg(_(" DEBUG BUILD"));
1287#endif
1288}
1289
1290/*
1291 * Output a string for the version message. If it's going to wrap, output a
1292 * newline, unless the message is too long to fit on the screen anyway.
1293 */
1294 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001295version_msg(char *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001296{
1297 int len = (int)STRLEN(s);
1298
1299 if (!got_int && len < (int)Columns && msg_col + len >= (int)Columns
1300 && *s != '\n')
1301 msg_putchar('\n');
1302 if (!got_int)
1303 MSG_PUTS(s);
1304}
1305
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01001306static void do_intro_line(int row, char_u *mesg, int add_version, int attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001307
1308/*
Bram Moolenaar249f0dd2013-07-04 22:31:03 +02001309 * Show the intro message when not editing a file.
1310 */
1311 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001312maybe_intro_message(void)
Bram Moolenaar249f0dd2013-07-04 22:31:03 +02001313{
1314 if (bufempty()
1315 && curbuf->b_fname == NULL
1316#ifdef FEAT_WINDOWS
1317 && firstwin->w_next == NULL
1318#endif
1319 && vim_strchr(p_shm, SHM_INTRO) == NULL)
1320 intro_message(FALSE);
1321}
1322
1323/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001324 * Give an introductory message about Vim.
1325 * Only used when starting Vim on an empty file, without a file name.
1326 * Or with the ":intro" command (for Sven :-).
1327 */
1328 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001329intro_message(
1330 int colon) /* TRUE for ":intro" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001331{
1332 int i;
1333 int row;
1334 int blanklines;
1335 int sponsor;
1336 char *p;
1337 static char *(lines[]) =
1338 {
1339 N_("VIM - Vi IMproved"),
1340 "",
1341 N_("version "),
1342 N_("by Bram Moolenaar et al."),
1343#ifdef MODIFIED_BY
1344 " ",
1345#endif
1346 N_("Vim is open source and freely distributable"),
1347 "",
1348 N_("Help poor children in Uganda!"),
1349 N_("type :help iccf<Enter> for information "),
1350 "",
1351 N_("type :q<Enter> to exit "),
1352 N_("type :help<Enter> or <F1> for on-line help"),
Bram Moolenaar640102482016-09-12 16:23:34 +02001353 N_("type :help version8<Enter> for version info"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001354 NULL,
1355 "",
1356 N_("Running in Vi compatible mode"),
1357 N_("type :set nocp<Enter> for Vim defaults"),
1358 N_("type :help cp-default<Enter> for info on this"),
1359 };
1360#ifdef FEAT_GUI
1361 static char *(gui_lines[]) =
1362 {
1363 NULL,
1364 NULL,
1365 NULL,
1366 NULL,
1367#ifdef MODIFIED_BY
1368 NULL,
1369#endif
1370 NULL,
1371 NULL,
1372 NULL,
1373 N_("menu Help->Orphans for information "),
1374 NULL,
1375 N_("Running modeless, typed text is inserted"),
1376 N_("menu Edit->Global Settings->Toggle Insert Mode "),
1377 N_(" for two modes "),
1378 NULL,
1379 NULL,
1380 NULL,
1381 N_("menu Edit->Global Settings->Toggle Vi Compatible"),
1382 N_(" for Vim defaults "),
1383 };
1384#endif
1385
1386 /* blanklines = screen height - # message lines */
1387 blanklines = (int)Rows - ((sizeof(lines) / sizeof(char *)) - 1);
1388 if (!p_cp)
1389 blanklines += 4; /* add 4 for not showing "Vi compatible" message */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001390
1391#ifdef FEAT_WINDOWS
1392 /* Don't overwrite a statusline. Depends on 'cmdheight'. */
1393 if (p_ls > 1)
1394 blanklines -= Rows - topframe->fr_height;
1395#endif
1396 if (blanklines < 0)
1397 blanklines = 0;
1398
1399 /* Show the sponsor and register message one out of four times, the Uganda
1400 * message two out of four times. */
Bram Moolenaarf4cd3e82005-12-22 22:47:02 +00001401 sponsor = (int)time(NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001402 sponsor = ((sponsor & 2) == 0) - ((sponsor & 4) == 0);
1403
1404 /* start displaying the message lines after half of the blank lines */
1405 row = blanklines / 2;
1406 if ((row >= 2 && Columns >= 50) || colon)
1407 {
1408 for (i = 0; i < (int)(sizeof(lines) / sizeof(char *)); ++i)
1409 {
1410 p = lines[i];
1411#ifdef FEAT_GUI
1412 if (p_im && gui.in_use && gui_lines[i] != NULL)
1413 p = gui_lines[i];
1414#endif
1415 if (p == NULL)
1416 {
1417 if (!p_cp)
1418 break;
1419 continue;
1420 }
1421 if (sponsor != 0)
1422 {
1423 if (strstr(p, "children") != NULL)
1424 p = sponsor < 0
1425 ? N_("Sponsor Vim development!")
1426 : N_("Become a registered Vim user!");
1427 else if (strstr(p, "iccf") != NULL)
1428 p = sponsor < 0
1429 ? N_("type :help sponsor<Enter> for information ")
1430 : N_("type :help register<Enter> for information ");
1431 else if (strstr(p, "Orphans") != NULL)
1432 p = N_("menu Help->Sponsor/Register for information ");
1433 }
1434 if (*p != NUL)
1435 do_intro_line(row, (char_u *)_(p), i == 2, 0);
1436 ++row;
1437 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001438 }
1439
1440 /* Make the wait-return message appear just below the text. */
1441 if (colon)
1442 msg_row = row;
1443}
1444
1445 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001446do_intro_line(
1447 int row,
1448 char_u *mesg,
1449 int add_version,
1450 int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001451{
1452 char_u vers[20];
1453 int col;
1454 char_u *p;
1455 int l;
1456 int clen;
1457#ifdef MODIFIED_BY
1458# define MODBY_LEN 150
1459 char_u modby[MODBY_LEN];
1460
1461 if (*mesg == ' ')
1462 {
Bram Moolenaar589e43a2008-01-05 12:59:22 +00001463 vim_strncpy(modby, (char_u *)_("Modified by "), MODBY_LEN - 1);
Bram Moolenaar9b0ac222016-06-01 20:31:43 +02001464 l = (int)STRLEN(modby);
Bram Moolenaar589e43a2008-01-05 12:59:22 +00001465 vim_strncpy(modby + l, (char_u *)MODIFIED_BY, MODBY_LEN - l - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001466 mesg = modby;
1467 }
1468#endif
1469
1470 /* Center the message horizontally. */
1471 col = vim_strsize(mesg);
1472 if (add_version)
1473 {
1474 STRCPY(vers, mediumVersion);
1475 if (highest_patch())
1476 {
1477 /* Check for 9.9x or 9.9xx, alpha/beta version */
Bram Moolenaar22df3f92010-10-27 16:01:27 +02001478 if (isalpha((int)vers[3]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001479 {
Bram Moolenaar552ac132012-03-07 18:03:10 +01001480 int len = (isalpha((int)vers[4])) ? 5 : 4;
1481 sprintf((char *)vers + len, ".%d%s", highest_patch(),
1482 mediumVersion + len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001483 }
1484 else
1485 sprintf((char *)vers + 3, ".%d", highest_patch());
1486 }
1487 col += (int)STRLEN(vers);
1488 }
1489 col = (Columns - col) / 2;
1490 if (col < 0)
1491 col = 0;
1492
1493 /* Split up in parts to highlight <> items differently. */
1494 for (p = mesg; *p != NUL; p += l)
1495 {
1496 clen = 0;
1497 for (l = 0; p[l] != NUL
1498 && (l == 0 || (p[l] != '<' && p[l - 1] != '>')); ++l)
1499 {
1500#ifdef FEAT_MBYTE
1501 if (has_mbyte)
1502 {
1503 clen += ptr2cells(p + l);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001504 l += (*mb_ptr2len)(p + l) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001505 }
1506 else
1507#endif
1508 clen += byte2cells(p[l]);
1509 }
1510 screen_puts_len(p, l, row, col, *p == '<' ? hl_attr(HLF_8) : attr);
1511 col += clen;
1512 }
1513
1514 /* Add the version number to the version line. */
1515 if (add_version)
1516 screen_puts(vers, row, col, 0);
1517}
1518
1519/*
1520 * ":intro": clear screen, display intro screen and wait for return.
1521 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001522 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001523ex_intro(exarg_T *eap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001524{
1525 screenclear();
1526 intro_message(TRUE);
1527 wait_return(TRUE);
1528}