blob: 744a6d50c66929c2605c54fecac050e2bc1d114d [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10#include "vim.h"
11
12#ifdef AMIGA
13# include <time.h> /* for time() */
14#endif
15
16/*
17 * Vim originated from Stevie version 3.6 (Fish disk 217) by GRWalter (Fred)
18 * It has been changed beyond recognition since then.
19 *
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000020 * Differences between version 6.x and 7.x can be found with ":help version7".
Bram Moolenaar071d4272004-06-13 20:20:40 +000021 * Differences between version 5.x and 6.x can be found with ":help version6".
22 * Differences between version 4.x and 5.x can be found with ":help version5".
23 * Differences between version 3.0 and 4.x can be found with ":help version4".
24 * All the remarks about older versions have been removed, they are not very
25 * interesting.
26 */
27
28#include "version.h"
29
Bram Moolenaard042c562005-06-30 22:04:15 +000030char *Version = VIM_VERSION_SHORT;
31static char *mediumVersion = VIM_VERSION_MEDIUM;
Bram Moolenaar071d4272004-06-13 20:20:40 +000032
33#if defined(HAVE_DATE_TIME) || defined(PROTO)
34# if (defined(VMS) && defined(VAXC)) || defined(PROTO)
35char longVersion[sizeof(VIM_VERSION_LONG_DATE) + sizeof(__DATE__)
36 + sizeof(__TIME__) + 3];
37 void
38make_version()
39{
40 /*
41 * Construct the long version string. Necessary because
42 * VAX C can't catenate strings in the preprocessor.
43 */
44 strcpy(longVersion, VIM_VERSION_LONG_DATE);
45 strcat(longVersion, __DATE__);
46 strcat(longVersion, " ");
47 strcat(longVersion, __TIME__);
48 strcat(longVersion, ")");
49}
50# else
51char *longVersion = VIM_VERSION_LONG_DATE __DATE__ " " __TIME__ ")";
52# endif
53#else
54char *longVersion = VIM_VERSION_LONG;
55#endif
56
57static void version_msg __ARGS((char *s));
58
59static char *(features[]) =
60{
61#ifdef AMIGA /* only for Amiga systems */
62# ifdef FEAT_ARP
63 "+ARP",
64# else
65 "-ARP",
66# endif
67#endif
68#ifdef FEAT_ARABIC
69 "+arabic",
70#else
71 "-arabic",
72#endif
73#ifdef FEAT_AUTOCMD
74 "+autocmd",
75#else
76 "-autocmd",
77#endif
78#ifdef FEAT_BEVAL
79 "+balloon_eval",
80#else
81 "-balloon_eval",
82#endif
83#ifdef FEAT_BROWSE
84 "+browse",
85#else
86 "-browse",
87#endif
88#ifdef NO_BUILTIN_TCAPS
89 "-builtin_terms",
90#endif
91#ifdef SOME_BUILTIN_TCAPS
92 "+builtin_terms",
93#endif
94#ifdef ALL_BUILTIN_TCAPS
95 "++builtin_terms",
96#endif
97#ifdef FEAT_BYTEOFF
98 "+byte_offset",
99#else
100 "-byte_offset",
101#endif
102#ifdef FEAT_CINDENT
103 "+cindent",
104#else
105 "-cindent",
106#endif
107#ifdef FEAT_CLIENTSERVER
108 "+clientserver",
109#else
110 "-clientserver",
111#endif
112#ifdef FEAT_CLIPBOARD
113 "+clipboard",
114#else
115 "-clipboard",
116#endif
117#ifdef FEAT_CMDL_COMPL
118 "+cmdline_compl",
119#else
120 "-cmdline_compl",
121#endif
122#ifdef FEAT_CMDHIST
123 "+cmdline_hist",
124#else
125 "-cmdline_hist",
126#endif
127#ifdef FEAT_CMDL_INFO
128 "+cmdline_info",
129#else
130 "-cmdline_info",
131#endif
132#ifdef FEAT_COMMENTS
133 "+comments",
134#else
135 "-comments",
136#endif
Bram Moolenaar860cae12010-06-05 23:22:07 +0200137#ifdef FEAT_CONCEAL
138 "+conceal",
139#else
140 "-conceal",
141#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000142#ifdef FEAT_CRYPT
143 "+cryptv",
144#else
145 "-cryptv",
146#endif
147#ifdef FEAT_CSCOPE
148 "+cscope",
149#else
150 "-cscope",
151#endif
Bram Moolenaar860cae12010-06-05 23:22:07 +0200152#ifdef FEAT_CURSORBIND
153 "+cursorbind",
154#else
155 "-cursorbind",
156#endif
Bram Moolenaar17c7c012006-01-26 22:25:15 +0000157#ifdef CURSOR_SHAPE
158 "+cursorshape",
159#else
160 "-cursorshape",
161#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000162#if defined(FEAT_CON_DIALOG) && defined(FEAT_GUI_DIALOG)
163 "+dialog_con_gui",
164#else
165# if defined(FEAT_CON_DIALOG)
166 "+dialog_con",
167# else
168# if defined(FEAT_GUI_DIALOG)
169 "+dialog_gui",
170# else
171 "-dialog",
172# endif
173# endif
174#endif
175#ifdef FEAT_DIFF
176 "+diff",
177#else
178 "-diff",
179#endif
180#ifdef FEAT_DIGRAPHS
181 "+digraphs",
182#else
183 "-digraphs",
184#endif
185#ifdef FEAT_DND
186 "+dnd",
187#else
188 "-dnd",
189#endif
190#ifdef EBCDIC
191 "+ebcdic",
192#else
193 "-ebcdic",
194#endif
195#ifdef FEAT_EMACS_TAGS
196 "+emacs_tags",
197#else
198 "-emacs_tags",
199#endif
200#ifdef FEAT_EVAL
201 "+eval",
202#else
203 "-eval",
204#endif
205#ifdef FEAT_EX_EXTRA
206 "+ex_extra",
207#else
208 "-ex_extra",
209#endif
210#ifdef FEAT_SEARCH_EXTRA
211 "+extra_search",
212#else
213 "-extra_search",
214#endif
215#ifdef FEAT_FKMAP
216 "+farsi",
217#else
218 "-farsi",
219#endif
220#ifdef FEAT_SEARCHPATH
221 "+file_in_path",
222#else
223 "-file_in_path",
224#endif
225#ifdef FEAT_FIND_ID
226 "+find_in_path",
227#else
228 "-find_in_path",
229#endif
Bram Moolenaar446cb832008-06-24 21:56:24 +0000230#ifdef FEAT_FLOAT
231 "+float",
232#else
233 "-float",
234#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000235#ifdef FEAT_FOLDING
236 "+folding",
237#else
238 "-folding",
239#endif
240#ifdef FEAT_FOOTER
241 "+footer",
242#else
243 "-footer",
244#endif
245 /* only interesting on Unix systems */
246#if !defined(USE_SYSTEM) && defined(UNIX)
247 "+fork()",
248#endif
249#ifdef FEAT_GETTEXT
250# ifdef DYNAMIC_GETTEXT
251 "+gettext/dyn",
252# else
253 "+gettext",
254# endif
255#else
256 "-gettext",
257#endif
258#ifdef FEAT_HANGULIN
259 "+hangul_input",
260#else
261 "-hangul_input",
262#endif
263#if (defined(HAVE_ICONV_H) && defined(USE_ICONV)) || defined(DYNAMIC_ICONV)
264# ifdef DYNAMIC_ICONV
265 "+iconv/dyn",
266# else
267 "+iconv",
268# endif
269#else
270 "-iconv",
271#endif
272#ifdef FEAT_INS_EXPAND
273 "+insert_expand",
274#else
275 "-insert_expand",
276#endif
277#ifdef FEAT_JUMPLIST
278 "+jumplist",
279#else
280 "-jumplist",
281#endif
282#ifdef FEAT_KEYMAP
283 "+keymap",
284#else
285 "-keymap",
286#endif
287#ifdef FEAT_LANGMAP
288 "+langmap",
289#else
290 "-langmap",
291#endif
292#ifdef FEAT_LIBCALL
293 "+libcall",
294#else
295 "-libcall",
296#endif
297#ifdef FEAT_LINEBREAK
298 "+linebreak",
299#else
300 "-linebreak",
301#endif
302#ifdef FEAT_LISP
303 "+lispindent",
304#else
305 "-lispindent",
306#endif
307#ifdef FEAT_LISTCMDS
308 "+listcmds",
309#else
310 "-listcmds",
311#endif
312#ifdef FEAT_LOCALMAP
313 "+localmap",
314#else
315 "-localmap",
316#endif
317#ifdef FEAT_MENU
318 "+menu",
319#else
320 "-menu",
321#endif
322#ifdef FEAT_SESSION
323 "+mksession",
324#else
325 "-mksession",
326#endif
327#ifdef FEAT_MODIFY_FNAME
328 "+modify_fname",
329#else
330 "-modify_fname",
331#endif
332#ifdef FEAT_MOUSE
333 "+mouse",
334# ifdef FEAT_MOUSESHAPE
335 "+mouseshape",
336# else
337 "-mouseshape",
338# endif
339# else
340 "-mouse",
341#endif
342#if defined(UNIX) || defined(VMS)
343# ifdef FEAT_MOUSE_DEC
344 "+mouse_dec",
345# else
346 "-mouse_dec",
347# endif
348# ifdef FEAT_MOUSE_GPM
349 "+mouse_gpm",
350# else
351 "-mouse_gpm",
352# endif
353# ifdef FEAT_MOUSE_JSB
354 "+mouse_jsbterm",
355# else
356 "-mouse_jsbterm",
357# endif
358# ifdef FEAT_MOUSE_NET
359 "+mouse_netterm",
360# else
361 "-mouse_netterm",
362# endif
Bram Moolenaar446cb832008-06-24 21:56:24 +0000363# ifdef FEAT_SYSMOUSE
364 "+mouse_sysmouse",
365# else
366 "-mouse_sysmouse",
367# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000368# ifdef FEAT_MOUSE_XTERM
369 "+mouse_xterm",
370# else
371 "-mouse_xterm",
372# endif
373#endif
374#ifdef __QNX__
375# ifdef FEAT_MOUSE_PTERM
376 "+mouse_pterm",
377# else
378 "-mouse_pterm",
379# endif
380#endif
381#ifdef FEAT_MBYTE_IME
382# ifdef DYNAMIC_IME
383 "+multi_byte_ime/dyn",
384# else
385 "+multi_byte_ime",
386# endif
387#else
388# ifdef FEAT_MBYTE
389 "+multi_byte",
390# else
391 "-multi_byte",
392# endif
393#endif
394#ifdef FEAT_MULTI_LANG
395 "+multi_lang",
396#else
397 "-multi_lang",
398#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000399#ifdef FEAT_MZSCHEME
Bram Moolenaardf3267e2005-01-25 22:07:05 +0000400# ifdef DYNAMIC_MZSCHEME
401 "+mzscheme/dyn",
402# else
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000403 "+mzscheme",
Bram Moolenaardf3267e2005-01-25 22:07:05 +0000404# endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000405#else
406 "-mzscheme",
407#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000408#ifdef FEAT_NETBEANS_INTG
409 "+netbeans_intg",
410#else
411 "-netbeans_intg",
412#endif
413#ifdef FEAT_GUI_W32
414# ifdef FEAT_OLE
415 "+ole",
416# else
417 "-ole",
418# endif
419#endif
420#ifdef FEAT_OSFILETYPE
421 "+osfiletype",
422#else
423 "-osfiletype",
424#endif
425#ifdef FEAT_PATH_EXTRA
426 "+path_extra",
427#else
428 "-path_extra",
429#endif
430#ifdef FEAT_PERL
431# ifdef DYNAMIC_PERL
432 "+perl/dyn",
433# else
434 "+perl",
435# endif
436#else
437 "-perl",
438#endif
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200439#ifdef FEAT_PERSISTENT_UNDO
440 "+persistent_undo",
441#else
442 "-persistent_undo",
443#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000444#ifdef FEAT_PRINTER
445# ifdef FEAT_POSTSCRIPT
446 "+postscript",
447# else
448 "-postscript",
449# endif
450 "+printer",
451#else
452 "-printer",
453#endif
Bram Moolenaar05159a02005-02-26 23:04:13 +0000454#ifdef FEAT_PROFILE
455 "+profile",
456#else
457 "-profile",
458#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000459#ifdef FEAT_PYTHON
460# ifdef DYNAMIC_PYTHON
461 "+python/dyn",
462# else
463 "+python",
464# endif
465#else
466 "-python",
467#endif
468#ifdef FEAT_QUICKFIX
469 "+quickfix",
470#else
471 "-quickfix",
472#endif
Bram Moolenaard68071d2006-05-02 22:08:30 +0000473#ifdef FEAT_RELTIME
474 "+reltime",
475#else
476 "-reltime",
477#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000478#ifdef FEAT_RIGHTLEFT
479 "+rightleft",
480#else
481 "-rightleft",
482#endif
483#ifdef FEAT_RUBY
484# ifdef DYNAMIC_RUBY
485 "+ruby/dyn",
486# else
487 "+ruby",
488# endif
489#else
490 "-ruby",
491#endif
492#ifdef FEAT_SCROLLBIND
493 "+scrollbind",
494#else
495 "-scrollbind",
496#endif
497#ifdef FEAT_SIGNS
498 "+signs",
499#else
500 "-signs",
501#endif
502#ifdef FEAT_SMARTINDENT
503 "+smartindent",
504#else
505 "-smartindent",
506#endif
507#ifdef FEAT_SNIFF
508 "+sniff",
509#else
510 "-sniff",
511#endif
Bram Moolenaaref94eec2009-11-11 13:22:11 +0000512#ifdef STARTUPTIME
513 "+startuptime",
514#else
515 "-startuptime",
516#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000517#ifdef FEAT_STL_OPT
518 "+statusline",
519#else
520 "-statusline",
521#endif
522#ifdef FEAT_SUN_WORKSHOP
523 "+sun_workshop",
524#else
525 "-sun_workshop",
526#endif
527#ifdef FEAT_SYN_HL
528 "+syntax",
529#else
530 "-syntax",
531#endif
532 /* only interesting on Unix systems */
533#if defined(USE_SYSTEM) && (defined(UNIX) || defined(__EMX__))
534 "+system()",
535#endif
536#ifdef FEAT_TAG_BINS
537 "+tag_binary",
538#else
539 "-tag_binary",
540#endif
541#ifdef FEAT_TAG_OLDSTATIC
542 "+tag_old_static",
543#else
544 "-tag_old_static",
545#endif
546#ifdef FEAT_TAG_ANYWHITE
547 "+tag_any_white",
548#else
549 "-tag_any_white",
550#endif
551#ifdef FEAT_TCL
552# ifdef DYNAMIC_TCL
553 "+tcl/dyn",
554# else
555 "+tcl",
556# endif
557#else
558 "-tcl",
559#endif
560#if defined(UNIX) || defined(__EMX__)
561/* only Unix (or OS/2 with EMX!) can have terminfo instead of termcap */
562# ifdef TERMINFO
563 "+terminfo",
564# else
565 "-terminfo",
566# endif
567#else /* unix always includes termcap support */
568# ifdef HAVE_TGETENT
569 "+tgetent",
570# else
571 "-tgetent",
572# endif
573#endif
574#ifdef FEAT_TERMRESPONSE
575 "+termresponse",
576#else
577 "-termresponse",
578#endif
579#ifdef FEAT_TEXTOBJ
580 "+textobjects",
581#else
582 "-textobjects",
583#endif
584#ifdef FEAT_TITLE
585 "+title",
586#else
587 "-title",
588#endif
589#ifdef FEAT_TOOLBAR
590 "+toolbar",
591#else
592 "-toolbar",
593#endif
594#ifdef FEAT_USR_CMDS
595 "+user_commands",
596#else
597 "-user_commands",
598#endif
599#ifdef FEAT_VERTSPLIT
600 "+vertsplit",
601#else
602 "-vertsplit",
603#endif
604#ifdef FEAT_VIRTUALEDIT
605 "+virtualedit",
606#else
607 "-virtualedit",
608#endif
609#ifdef FEAT_VISUAL
610 "+visual",
611# ifdef FEAT_VISUALEXTRA
612 "+visualextra",
613# else
614 "-visualextra",
615# endif
616#else
617 "-visual",
618#endif
619#ifdef FEAT_VIMINFO
620 "+viminfo",
621#else
622 "-viminfo",
623#endif
624#ifdef FEAT_VREPLACE
625 "+vreplace",
626#else
627 "-vreplace",
628#endif
629#ifdef FEAT_WILDIGN
630 "+wildignore",
631#else
632 "-wildignore",
633#endif
634#ifdef FEAT_WILDMENU
635 "+wildmenu",
636#else
637 "-wildmenu",
638#endif
639#ifdef FEAT_WINDOWS
640 "+windows",
641#else
642 "-windows",
643#endif
644#ifdef FEAT_WRITEBACKUP
645 "+writebackup",
646#else
647 "-writebackup",
648#endif
649#if defined(UNIX) || defined(VMS)
650# ifdef FEAT_X11
651 "+X11",
652# else
653 "-X11",
654# endif
655#endif
656#ifdef FEAT_XFONTSET
657 "+xfontset",
658#else
659 "-xfontset",
660#endif
661#ifdef FEAT_XIM
662 "+xim",
663#else
664 "-xim",
665#endif
666#if defined(UNIX) || defined(VMS)
667# ifdef USE_XSMP_INTERACT
668 "+xsmp_interact",
669# else
670# ifdef USE_XSMP
671 "+xsmp",
672# else
673 "-xsmp",
674# endif
675# endif
676# ifdef FEAT_XCLIPBOARD
677 "+xterm_clipboard",
678# else
679 "-xterm_clipboard",
680# endif
681#endif
682#ifdef FEAT_XTERM_SAVE
683 "+xterm_save",
684#else
685 "-xterm_save",
686#endif
687#ifdef WIN3264
688# ifdef FEAT_XPM_W32
689 "+xpm_w32",
690# else
691 "-xpm_w32",
692# endif
693#endif
694 NULL
695};
696
697static int included_patches[] =
698{ /* Add new patch number below this line */
699/**/
700 0
701};
702
Bram Moolenaar10d4cec2008-11-30 11:15:09 +0000703/*
704 * Place to put a short description when adding a feature with a patch.
705 * Keep it short, e.g.,: "relative numbers", "persistent undo".
706 * Also add a comment marker to separate the lines.
707 * See the official Vim patches for the diff format: It must use a context of
Bram Moolenaarcbb8eb32008-12-24 13:25:14 +0000708 * one line only. Create it by hand or use "diff -C2" and edit the patch.
Bram Moolenaar10d4cec2008-11-30 11:15:09 +0000709 */
710static char *(extra_patches[]) =
711{ /* Add your patch description below this line */
712/**/
713 NULL
714};
715
Bram Moolenaar071d4272004-06-13 20:20:40 +0000716 int
717highest_patch()
718{
719 int i;
720 int h = 0;
721
722 for (i = 0; included_patches[i] != 0; ++i)
723 if (included_patches[i] > h)
724 h = included_patches[i];
725 return h;
726}
727
728#if defined(FEAT_EVAL) || defined(PROTO)
729/*
730 * Return TRUE if patch "n" has been included.
731 */
732 int
733has_patch(n)
734 int n;
735{
736 int i;
737
738 for (i = 0; included_patches[i] != 0; ++i)
739 if (included_patches[i] == n)
740 return TRUE;
741 return FALSE;
742}
743#endif
744
745 void
746ex_version(eap)
747 exarg_T *eap;
748{
749 /*
750 * Ignore a ":version 9.99" command.
751 */
752 if (*eap->arg == NUL)
753 {
754 msg_putchar('\n');
755 list_version();
756 }
757}
758
759 void
760list_version()
761{
762 int i;
763 int first;
764 char *s = "";
765
766 /*
767 * When adding features here, don't forget to update the list of
768 * internal variables in eval.c!
769 */
770 MSG(longVersion);
771#ifdef WIN3264
772# ifdef FEAT_GUI_W32
773# if defined(_MSC_VER) && (_MSC_VER <= 1010)
774 /* Only MS VC 4.1 and earlier can do Win32s */
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +0000775 MSG_PUTS(_("\nMS-Windows 16/32-bit GUI version"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000776# else
Bram Moolenaard9b87332006-10-03 14:30:41 +0000777# ifdef _WIN64
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +0000778 MSG_PUTS(_("\nMS-Windows 64-bit GUI version"));
Bram Moolenaard9b87332006-10-03 14:30:41 +0000779# else
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +0000780 MSG_PUTS(_("\nMS-Windows 32-bit GUI version"));
Bram Moolenaard9b87332006-10-03 14:30:41 +0000781# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000782# endif
783 if (gui_is_win32s())
784 MSG_PUTS(_(" in Win32s mode"));
785# ifdef FEAT_OLE
786 MSG_PUTS(_(" with OLE support"));
787# endif
788# else
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +0000789# ifdef _WIN64
790 MSG_PUTS(_("\nMS-Windows 64-bit console version"));
791# else
792 MSG_PUTS(_("\nMS-Windows 32-bit console version"));
793# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000794# endif
795#endif
796#ifdef WIN16
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +0000797 MSG_PUTS(_("\nMS-Windows 16-bit version"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000798#endif
799#ifdef MSDOS
800# ifdef DJGPP
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +0000801 MSG_PUTS(_("\n32-bit MS-DOS version"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000802# else
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +0000803 MSG_PUTS(_("\n16-bit MS-DOS version"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000804# endif
805#endif
806#ifdef MACOS
807# ifdef MACOS_X
808# ifdef MACOS_X_UNIX
809 MSG_PUTS(_("\nMacOS X (unix) version"));
810# else
811 MSG_PUTS(_("\nMacOS X version"));
812# endif
813#else
814 MSG_PUTS(_("\nMacOS version"));
815# endif
816#endif
817
818#ifdef RISCOS
819 MSG_PUTS(_("\nRISC OS version"));
820#endif
821#ifdef VMS
Bram Moolenaar6949d1d2008-08-25 02:14:05 +0000822 MSG_PUTS(_("\nOpenVMS version"));
Bram Moolenaar3d20ca12006-11-28 16:43:58 +0000823# ifdef HAVE_PATHDEF
824 if (*compiled_arch != NUL)
825 {
826 MSG_PUTS(" - ");
827 MSG_PUTS(compiled_arch);
828 }
829# endif
830
Bram Moolenaar071d4272004-06-13 20:20:40 +0000831#endif
832
833 /* Print the list of patch numbers if there is at least one. */
834 /* Print a range when patches are consecutive: "1-10, 12, 15-40, 42-45" */
835 if (included_patches[0] != 0)
836 {
837 MSG_PUTS(_("\nIncluded patches: "));
838 first = -1;
839 /* find last one */
840 for (i = 0; included_patches[i] != 0; ++i)
841 ;
842 while (--i >= 0)
843 {
844 if (first < 0)
845 first = included_patches[i];
846 if (i == 0 || included_patches[i - 1] != included_patches[i] + 1)
847 {
848 MSG_PUTS(s);
849 s = ", ";
850 msg_outnum((long)first);
851 if (first != included_patches[i])
852 {
853 MSG_PUTS("-");
854 msg_outnum((long)included_patches[i]);
855 }
856 first = -1;
857 }
858 }
859 }
860
Bram Moolenaar10d4cec2008-11-30 11:15:09 +0000861 /* Print the list of extra patch descriptions if there is at least one. */
862 if (extra_patches[0] != NULL)
863 {
864 MSG_PUTS(_("\nExtra patches: "));
865 s = "";
866 for (i = 0; extra_patches[i] != NULL; ++i)
867 {
868 MSG_PUTS(s);
869 s = ", ";
870 MSG_PUTS(extra_patches[i]);
871 }
872 }
873
Bram Moolenaar071d4272004-06-13 20:20:40 +0000874#ifdef MODIFIED_BY
875 MSG_PUTS("\n");
876 MSG_PUTS(_("Modified by "));
877 MSG_PUTS(MODIFIED_BY);
878#endif
879
880#ifdef HAVE_PATHDEF
881 if (*compiled_user != NUL || *compiled_sys != NUL)
882 {
883 MSG_PUTS(_("\nCompiled "));
884 if (*compiled_user != NUL)
885 {
886 MSG_PUTS(_("by "));
887 MSG_PUTS(compiled_user);
888 }
889 if (*compiled_sys != NUL)
890 {
891 MSG_PUTS("@");
892 MSG_PUTS(compiled_sys);
893 }
894 }
895#endif
896
897#ifdef FEAT_HUGE
898 MSG_PUTS(_("\nHuge version "));
899#else
900# ifdef FEAT_BIG
901 MSG_PUTS(_("\nBig version "));
902# else
903# ifdef FEAT_NORMAL
904 MSG_PUTS(_("\nNormal version "));
905# else
906# ifdef FEAT_SMALL
907 MSG_PUTS(_("\nSmall version "));
908# else
909 MSG_PUTS(_("\nTiny version "));
910# endif
911# endif
912# endif
913#endif
914#ifndef FEAT_GUI
915 MSG_PUTS(_("without GUI."));
916#else
917# ifdef FEAT_GUI_GTK
918# ifdef FEAT_GUI_GNOME
Bram Moolenaar071d4272004-06-13 20:20:40 +0000919 MSG_PUTS(_("with GTK2-GNOME GUI."));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000920# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000921 MSG_PUTS(_("with GTK2 GUI."));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000922# endif
923# else
924# ifdef FEAT_GUI_MOTIF
925 MSG_PUTS(_("with X11-Motif GUI."));
926# else
927# ifdef FEAT_GUI_ATHENA
928# ifdef FEAT_GUI_NEXTAW
929 MSG_PUTS(_("with X11-neXtaw GUI."));
930# else
931 MSG_PUTS(_("with X11-Athena GUI."));
932# endif
933# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000934# ifdef FEAT_GUI_PHOTON
935 MSG_PUTS(_("with Photon GUI."));
936# else
937# if defined(MSWIN)
938 MSG_PUTS(_("with GUI."));
939# else
Bram Moolenaar860cae12010-06-05 23:22:07 +0200940# if defined(TARGET_API_MAC_CARBON) && TARGET_API_MAC_CARBON
Bram Moolenaar071d4272004-06-13 20:20:40 +0000941 MSG_PUTS(_("with Carbon GUI."));
942# else
Bram Moolenaar860cae12010-06-05 23:22:07 +0200943# if defined(TARGET_API_MAC_OSX) && TARGET_API_MAC_OSX
Bram Moolenaar071d4272004-06-13 20:20:40 +0000944 MSG_PUTS(_("with Cocoa GUI."));
945# else
Bram Moolenaar860cae12010-06-05 23:22:07 +0200946# if defined(MACOS)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000947 MSG_PUTS(_("with (classic) GUI."));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000948# endif
949# endif
950# endif
951# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000952# endif
953# endif
954# endif
955# endif
956#endif
957 version_msg(_(" Features included (+) or not (-):\n"));
958
959 /* print all the features */
960 for (i = 0; features[i] != NULL; ++i)
961 {
962 version_msg(features[i]);
963 if (msg_col > 0)
964 version_msg(" ");
965 }
966
967 version_msg("\n");
968#ifdef SYS_VIMRC_FILE
969 version_msg(_(" system vimrc file: \""));
970 version_msg(SYS_VIMRC_FILE);
971 version_msg("\"\n");
972#endif
973#ifdef USR_VIMRC_FILE
974 version_msg(_(" user vimrc file: \""));
975 version_msg(USR_VIMRC_FILE);
976 version_msg("\"\n");
977#endif
978#ifdef USR_VIMRC_FILE2
979 version_msg(_(" 2nd user vimrc file: \""));
980 version_msg(USR_VIMRC_FILE2);
981 version_msg("\"\n");
982#endif
983#ifdef USR_VIMRC_FILE3
984 version_msg(_(" 3rd user vimrc file: \""));
985 version_msg(USR_VIMRC_FILE3);
986 version_msg("\"\n");
987#endif
988#ifdef USR_EXRC_FILE
989 version_msg(_(" user exrc file: \""));
990 version_msg(USR_EXRC_FILE);
991 version_msg("\"\n");
992#endif
993#ifdef USR_EXRC_FILE2
994 version_msg(_(" 2nd user exrc file: \""));
995 version_msg(USR_EXRC_FILE2);
996 version_msg("\"\n");
997#endif
998#ifdef FEAT_GUI
999# ifdef SYS_GVIMRC_FILE
1000 version_msg(_(" system gvimrc file: \""));
1001 version_msg(SYS_GVIMRC_FILE);
1002 version_msg("\"\n");
1003# endif
1004 version_msg(_(" user gvimrc file: \""));
1005 version_msg(USR_GVIMRC_FILE);
1006 version_msg("\"\n");
1007# ifdef USR_GVIMRC_FILE2
1008 version_msg(_("2nd user gvimrc file: \""));
1009 version_msg(USR_GVIMRC_FILE2);
1010 version_msg("\"\n");
1011# endif
1012# ifdef USR_GVIMRC_FILE3
1013 version_msg(_("3rd user gvimrc file: \""));
1014 version_msg(USR_GVIMRC_FILE3);
1015 version_msg("\"\n");
1016# endif
1017#endif
1018#ifdef FEAT_GUI
1019# ifdef SYS_MENU_FILE
1020 version_msg(_(" system menu file: \""));
1021 version_msg(SYS_MENU_FILE);
1022 version_msg("\"\n");
1023# endif
1024#endif
1025#ifdef HAVE_PATHDEF
1026 if (*default_vim_dir != NUL)
1027 {
1028 version_msg(_(" fall-back for $VIM: \""));
1029 version_msg((char *)default_vim_dir);
1030 version_msg("\"\n");
1031 }
1032 if (*default_vimruntime_dir != NUL)
1033 {
1034 version_msg(_(" f-b for $VIMRUNTIME: \""));
1035 version_msg((char *)default_vimruntime_dir);
1036 version_msg("\"\n");
1037 }
1038 version_msg(_("Compilation: "));
1039 version_msg((char *)all_cflags);
1040 version_msg("\n");
1041#ifdef VMS
1042 if (*compiler_version != NUL)
1043 {
1044 version_msg(_("Compiler: "));
1045 version_msg((char *)compiler_version);
1046 version_msg("\n");
1047 }
1048#endif
1049 version_msg(_("Linking: "));
1050 version_msg((char *)all_lflags);
1051#endif
1052#ifdef DEBUG
1053 version_msg("\n");
1054 version_msg(_(" DEBUG BUILD"));
1055#endif
1056}
1057
1058/*
1059 * Output a string for the version message. If it's going to wrap, output a
1060 * newline, unless the message is too long to fit on the screen anyway.
1061 */
1062 static void
1063version_msg(s)
1064 char *s;
1065{
1066 int len = (int)STRLEN(s);
1067
1068 if (!got_int && len < (int)Columns && msg_col + len >= (int)Columns
1069 && *s != '\n')
1070 msg_putchar('\n');
1071 if (!got_int)
1072 MSG_PUTS(s);
1073}
1074
1075static void do_intro_line __ARGS((int row, char_u *mesg, int add_version, int attr));
1076
1077/*
1078 * Give an introductory message about Vim.
1079 * Only used when starting Vim on an empty file, without a file name.
1080 * Or with the ":intro" command (for Sven :-).
1081 */
1082 void
1083intro_message(colon)
1084 int colon; /* TRUE for ":intro" */
1085{
1086 int i;
1087 int row;
1088 int blanklines;
1089 int sponsor;
1090 char *p;
1091 static char *(lines[]) =
1092 {
1093 N_("VIM - Vi IMproved"),
1094 "",
1095 N_("version "),
1096 N_("by Bram Moolenaar et al."),
1097#ifdef MODIFIED_BY
1098 " ",
1099#endif
1100 N_("Vim is open source and freely distributable"),
1101 "",
1102 N_("Help poor children in Uganda!"),
1103 N_("type :help iccf<Enter> for information "),
1104 "",
1105 N_("type :q<Enter> to exit "),
1106 N_("type :help<Enter> or <F1> for on-line help"),
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00001107 N_("type :help version7<Enter> for version info"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001108 NULL,
1109 "",
1110 N_("Running in Vi compatible mode"),
1111 N_("type :set nocp<Enter> for Vim defaults"),
1112 N_("type :help cp-default<Enter> for info on this"),
1113 };
1114#ifdef FEAT_GUI
1115 static char *(gui_lines[]) =
1116 {
1117 NULL,
1118 NULL,
1119 NULL,
1120 NULL,
1121#ifdef MODIFIED_BY
1122 NULL,
1123#endif
1124 NULL,
1125 NULL,
1126 NULL,
1127 N_("menu Help->Orphans for information "),
1128 NULL,
1129 N_("Running modeless, typed text is inserted"),
1130 N_("menu Edit->Global Settings->Toggle Insert Mode "),
1131 N_(" for two modes "),
1132 NULL,
1133 NULL,
1134 NULL,
1135 N_("menu Edit->Global Settings->Toggle Vi Compatible"),
1136 N_(" for Vim defaults "),
1137 };
1138#endif
1139
1140 /* blanklines = screen height - # message lines */
1141 blanklines = (int)Rows - ((sizeof(lines) / sizeof(char *)) - 1);
1142 if (!p_cp)
1143 blanklines += 4; /* add 4 for not showing "Vi compatible" message */
1144#if defined(WIN3264) && !defined(FEAT_GUI_W32)
1145 if (mch_windows95())
1146 blanklines -= 3; /* subtract 3 for showing "Windows 95" message */
1147#endif
1148
1149#ifdef FEAT_WINDOWS
1150 /* Don't overwrite a statusline. Depends on 'cmdheight'. */
1151 if (p_ls > 1)
1152 blanklines -= Rows - topframe->fr_height;
1153#endif
1154 if (blanklines < 0)
1155 blanklines = 0;
1156
1157 /* Show the sponsor and register message one out of four times, the Uganda
1158 * message two out of four times. */
Bram Moolenaarf4cd3e82005-12-22 22:47:02 +00001159 sponsor = (int)time(NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001160 sponsor = ((sponsor & 2) == 0) - ((sponsor & 4) == 0);
1161
1162 /* start displaying the message lines after half of the blank lines */
1163 row = blanklines / 2;
1164 if ((row >= 2 && Columns >= 50) || colon)
1165 {
1166 for (i = 0; i < (int)(sizeof(lines) / sizeof(char *)); ++i)
1167 {
1168 p = lines[i];
1169#ifdef FEAT_GUI
1170 if (p_im && gui.in_use && gui_lines[i] != NULL)
1171 p = gui_lines[i];
1172#endif
1173 if (p == NULL)
1174 {
1175 if (!p_cp)
1176 break;
1177 continue;
1178 }
1179 if (sponsor != 0)
1180 {
1181 if (strstr(p, "children") != NULL)
1182 p = sponsor < 0
1183 ? N_("Sponsor Vim development!")
1184 : N_("Become a registered Vim user!");
1185 else if (strstr(p, "iccf") != NULL)
1186 p = sponsor < 0
1187 ? N_("type :help sponsor<Enter> for information ")
1188 : N_("type :help register<Enter> for information ");
1189 else if (strstr(p, "Orphans") != NULL)
1190 p = N_("menu Help->Sponsor/Register for information ");
1191 }
1192 if (*p != NUL)
1193 do_intro_line(row, (char_u *)_(p), i == 2, 0);
1194 ++row;
1195 }
1196#if defined(WIN3264) && !defined(FEAT_GUI_W32)
1197 if (mch_windows95())
1198 {
1199 do_intro_line(++row,
1200 (char_u *)_("WARNING: Windows 95/98/ME detected"),
1201 FALSE, hl_attr(HLF_E));
1202 do_intro_line(++row,
1203 (char_u *)_("type :help windows95<Enter> for info on this"),
1204 FALSE, 0);
1205 }
1206#endif
1207 }
1208
1209 /* Make the wait-return message appear just below the text. */
1210 if (colon)
1211 msg_row = row;
1212}
1213
1214 static void
1215do_intro_line(row, mesg, add_version, attr)
1216 int row;
1217 char_u *mesg;
1218 int add_version;
1219 int attr;
1220{
1221 char_u vers[20];
1222 int col;
1223 char_u *p;
1224 int l;
1225 int clen;
1226#ifdef MODIFIED_BY
1227# define MODBY_LEN 150
1228 char_u modby[MODBY_LEN];
1229
1230 if (*mesg == ' ')
1231 {
Bram Moolenaar589e43a2008-01-05 12:59:22 +00001232 vim_strncpy(modby, (char_u *)_("Modified by "), MODBY_LEN - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001233 l = STRLEN(modby);
Bram Moolenaar589e43a2008-01-05 12:59:22 +00001234 vim_strncpy(modby + l, (char_u *)MODIFIED_BY, MODBY_LEN - l - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001235 mesg = modby;
1236 }
1237#endif
1238
1239 /* Center the message horizontally. */
1240 col = vim_strsize(mesg);
1241 if (add_version)
1242 {
1243 STRCPY(vers, mediumVersion);
1244 if (highest_patch())
1245 {
1246 /* Check for 9.9x or 9.9xx, alpha/beta version */
1247 if (isalpha((int)mediumVersion[3]))
1248 {
1249 if (isalpha((int)mediumVersion[4]))
1250 sprintf((char *)vers + 5, ".%d%s", highest_patch(),
1251 mediumVersion + 5);
1252 else
1253 sprintf((char *)vers + 4, ".%d%s", highest_patch(),
1254 mediumVersion + 4);
1255 }
1256 else
1257 sprintf((char *)vers + 3, ".%d", highest_patch());
1258 }
1259 col += (int)STRLEN(vers);
1260 }
1261 col = (Columns - col) / 2;
1262 if (col < 0)
1263 col = 0;
1264
1265 /* Split up in parts to highlight <> items differently. */
1266 for (p = mesg; *p != NUL; p += l)
1267 {
1268 clen = 0;
1269 for (l = 0; p[l] != NUL
1270 && (l == 0 || (p[l] != '<' && p[l - 1] != '>')); ++l)
1271 {
1272#ifdef FEAT_MBYTE
1273 if (has_mbyte)
1274 {
1275 clen += ptr2cells(p + l);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001276 l += (*mb_ptr2len)(p + l) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001277 }
1278 else
1279#endif
1280 clen += byte2cells(p[l]);
1281 }
1282 screen_puts_len(p, l, row, col, *p == '<' ? hl_attr(HLF_8) : attr);
1283 col += clen;
1284 }
1285
1286 /* Add the version number to the version line. */
1287 if (add_version)
1288 screen_puts(vers, row, col, 0);
1289}
1290
1291/*
1292 * ":intro": clear screen, display intro screen and wait for return.
1293 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001294 void
1295ex_intro(eap)
Bram Moolenaar0c094b92009-05-14 20:20:33 +00001296 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001297{
1298 screenclear();
1299 intro_message(TRUE);
1300 wait_return(TRUE);
1301}