blob: 5ee09c7628a584b87aae19ee3d0a4af47fb9f6a4 [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
137#ifdef FEAT_CRYPT
138 "+cryptv",
139#else
140 "-cryptv",
141#endif
142#ifdef FEAT_CSCOPE
143 "+cscope",
144#else
145 "-cscope",
146#endif
Bram Moolenaar17c7c012006-01-26 22:25:15 +0000147#ifdef CURSOR_SHAPE
148 "+cursorshape",
149#else
150 "-cursorshape",
151#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000152#if defined(FEAT_CON_DIALOG) && defined(FEAT_GUI_DIALOG)
153 "+dialog_con_gui",
154#else
155# if defined(FEAT_CON_DIALOG)
156 "+dialog_con",
157# else
158# if defined(FEAT_GUI_DIALOG)
159 "+dialog_gui",
160# else
161 "-dialog",
162# endif
163# endif
164#endif
165#ifdef FEAT_DIFF
166 "+diff",
167#else
168 "-diff",
169#endif
170#ifdef FEAT_DIGRAPHS
171 "+digraphs",
172#else
173 "-digraphs",
174#endif
175#ifdef FEAT_DND
176 "+dnd",
177#else
178 "-dnd",
179#endif
180#ifdef EBCDIC
181 "+ebcdic",
182#else
183 "-ebcdic",
184#endif
185#ifdef FEAT_EMACS_TAGS
186 "+emacs_tags",
187#else
188 "-emacs_tags",
189#endif
190#ifdef FEAT_EVAL
191 "+eval",
192#else
193 "-eval",
194#endif
195#ifdef FEAT_EX_EXTRA
196 "+ex_extra",
197#else
198 "-ex_extra",
199#endif
200#ifdef FEAT_SEARCH_EXTRA
201 "+extra_search",
202#else
203 "-extra_search",
204#endif
205#ifdef FEAT_FKMAP
206 "+farsi",
207#else
208 "-farsi",
209#endif
210#ifdef FEAT_SEARCHPATH
211 "+file_in_path",
212#else
213 "-file_in_path",
214#endif
215#ifdef FEAT_FIND_ID
216 "+find_in_path",
217#else
218 "-find_in_path",
219#endif
Bram Moolenaar446cb832008-06-24 21:56:24 +0000220#ifdef FEAT_FLOAT
221 "+float",
222#else
223 "-float",
224#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000225#ifdef FEAT_FOLDING
226 "+folding",
227#else
228 "-folding",
229#endif
230#ifdef FEAT_FOOTER
231 "+footer",
232#else
233 "-footer",
234#endif
235 /* only interesting on Unix systems */
236#if !defined(USE_SYSTEM) && defined(UNIX)
237 "+fork()",
238#endif
239#ifdef FEAT_GETTEXT
240# ifdef DYNAMIC_GETTEXT
241 "+gettext/dyn",
242# else
243 "+gettext",
244# endif
245#else
246 "-gettext",
247#endif
248#ifdef FEAT_HANGULIN
249 "+hangul_input",
250#else
251 "-hangul_input",
252#endif
253#if (defined(HAVE_ICONV_H) && defined(USE_ICONV)) || defined(DYNAMIC_ICONV)
254# ifdef DYNAMIC_ICONV
255 "+iconv/dyn",
256# else
257 "+iconv",
258# endif
259#else
260 "-iconv",
261#endif
262#ifdef FEAT_INS_EXPAND
263 "+insert_expand",
264#else
265 "-insert_expand",
266#endif
267#ifdef FEAT_JUMPLIST
268 "+jumplist",
269#else
270 "-jumplist",
271#endif
272#ifdef FEAT_KEYMAP
273 "+keymap",
274#else
275 "-keymap",
276#endif
277#ifdef FEAT_LANGMAP
278 "+langmap",
279#else
280 "-langmap",
281#endif
282#ifdef FEAT_LIBCALL
283 "+libcall",
284#else
285 "-libcall",
286#endif
287#ifdef FEAT_LINEBREAK
288 "+linebreak",
289#else
290 "-linebreak",
291#endif
292#ifdef FEAT_LISP
293 "+lispindent",
294#else
295 "-lispindent",
296#endif
297#ifdef FEAT_LISTCMDS
298 "+listcmds",
299#else
300 "-listcmds",
301#endif
302#ifdef FEAT_LOCALMAP
303 "+localmap",
304#else
305 "-localmap",
306#endif
307#ifdef FEAT_MENU
308 "+menu",
309#else
310 "-menu",
311#endif
312#ifdef FEAT_SESSION
313 "+mksession",
314#else
315 "-mksession",
316#endif
317#ifdef FEAT_MODIFY_FNAME
318 "+modify_fname",
319#else
320 "-modify_fname",
321#endif
322#ifdef FEAT_MOUSE
323 "+mouse",
324# ifdef FEAT_MOUSESHAPE
325 "+mouseshape",
326# else
327 "-mouseshape",
328# endif
329# else
330 "-mouse",
331#endif
332#if defined(UNIX) || defined(VMS)
333# ifdef FEAT_MOUSE_DEC
334 "+mouse_dec",
335# else
336 "-mouse_dec",
337# endif
338# ifdef FEAT_MOUSE_GPM
339 "+mouse_gpm",
340# else
341 "-mouse_gpm",
342# endif
343# ifdef FEAT_MOUSE_JSB
344 "+mouse_jsbterm",
345# else
346 "-mouse_jsbterm",
347# endif
348# ifdef FEAT_MOUSE_NET
349 "+mouse_netterm",
350# else
351 "-mouse_netterm",
352# endif
Bram Moolenaar446cb832008-06-24 21:56:24 +0000353# ifdef FEAT_SYSMOUSE
354 "+mouse_sysmouse",
355# else
356 "-mouse_sysmouse",
357# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000358# ifdef FEAT_MOUSE_XTERM
359 "+mouse_xterm",
360# else
361 "-mouse_xterm",
362# endif
363#endif
364#ifdef __QNX__
365# ifdef FEAT_MOUSE_PTERM
366 "+mouse_pterm",
367# else
368 "-mouse_pterm",
369# endif
370#endif
371#ifdef FEAT_MBYTE_IME
372# ifdef DYNAMIC_IME
373 "+multi_byte_ime/dyn",
374# else
375 "+multi_byte_ime",
376# endif
377#else
378# ifdef FEAT_MBYTE
379 "+multi_byte",
380# else
381 "-multi_byte",
382# endif
383#endif
384#ifdef FEAT_MULTI_LANG
385 "+multi_lang",
386#else
387 "-multi_lang",
388#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000389#ifdef FEAT_MZSCHEME
Bram Moolenaardf3267e2005-01-25 22:07:05 +0000390# ifdef DYNAMIC_MZSCHEME
391 "+mzscheme/dyn",
392# else
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000393 "+mzscheme",
Bram Moolenaardf3267e2005-01-25 22:07:05 +0000394# endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000395#else
396 "-mzscheme",
397#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000398#ifdef FEAT_NETBEANS_INTG
399 "+netbeans_intg",
400#else
401 "-netbeans_intg",
402#endif
403#ifdef FEAT_GUI_W32
404# ifdef FEAT_OLE
405 "+ole",
406# else
407 "-ole",
408# endif
409#endif
410#ifdef FEAT_OSFILETYPE
411 "+osfiletype",
412#else
413 "-osfiletype",
414#endif
415#ifdef FEAT_PATH_EXTRA
416 "+path_extra",
417#else
418 "-path_extra",
419#endif
420#ifdef FEAT_PERL
421# ifdef DYNAMIC_PERL
422 "+perl/dyn",
423# else
424 "+perl",
425# endif
426#else
427 "-perl",
428#endif
429#ifdef FEAT_PRINTER
430# ifdef FEAT_POSTSCRIPT
431 "+postscript",
432# else
433 "-postscript",
434# endif
435 "+printer",
436#else
437 "-printer",
438#endif
Bram Moolenaar05159a02005-02-26 23:04:13 +0000439#ifdef FEAT_PROFILE
440 "+profile",
441#else
442 "-profile",
443#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000444#ifdef FEAT_PYTHON
445# ifdef DYNAMIC_PYTHON
446 "+python/dyn",
447# else
448 "+python",
449# endif
450#else
451 "-python",
452#endif
453#ifdef FEAT_QUICKFIX
454 "+quickfix",
455#else
456 "-quickfix",
457#endif
Bram Moolenaard68071d2006-05-02 22:08:30 +0000458#ifdef FEAT_RELTIME
459 "+reltime",
460#else
461 "-reltime",
462#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000463#ifdef FEAT_RIGHTLEFT
464 "+rightleft",
465#else
466 "-rightleft",
467#endif
468#ifdef FEAT_RUBY
469# ifdef DYNAMIC_RUBY
470 "+ruby/dyn",
471# else
472 "+ruby",
473# endif
474#else
475 "-ruby",
476#endif
477#ifdef FEAT_SCROLLBIND
478 "+scrollbind",
479#else
480 "-scrollbind",
481#endif
482#ifdef FEAT_SIGNS
483 "+signs",
484#else
485 "-signs",
486#endif
487#ifdef FEAT_SMARTINDENT
488 "+smartindent",
489#else
490 "-smartindent",
491#endif
492#ifdef FEAT_SNIFF
493 "+sniff",
494#else
495 "-sniff",
496#endif
497#ifdef FEAT_STL_OPT
498 "+statusline",
499#else
500 "-statusline",
501#endif
502#ifdef FEAT_SUN_WORKSHOP
503 "+sun_workshop",
504#else
505 "-sun_workshop",
506#endif
507#ifdef FEAT_SYN_HL
508 "+syntax",
509#else
510 "-syntax",
511#endif
512 /* only interesting on Unix systems */
513#if defined(USE_SYSTEM) && (defined(UNIX) || defined(__EMX__))
514 "+system()",
515#endif
516#ifdef FEAT_TAG_BINS
517 "+tag_binary",
518#else
519 "-tag_binary",
520#endif
521#ifdef FEAT_TAG_OLDSTATIC
522 "+tag_old_static",
523#else
524 "-tag_old_static",
525#endif
526#ifdef FEAT_TAG_ANYWHITE
527 "+tag_any_white",
528#else
529 "-tag_any_white",
530#endif
531#ifdef FEAT_TCL
532# ifdef DYNAMIC_TCL
533 "+tcl/dyn",
534# else
535 "+tcl",
536# endif
537#else
538 "-tcl",
539#endif
540#if defined(UNIX) || defined(__EMX__)
541/* only Unix (or OS/2 with EMX!) can have terminfo instead of termcap */
542# ifdef TERMINFO
543 "+terminfo",
544# else
545 "-terminfo",
546# endif
547#else /* unix always includes termcap support */
548# ifdef HAVE_TGETENT
549 "+tgetent",
550# else
551 "-tgetent",
552# endif
553#endif
554#ifdef FEAT_TERMRESPONSE
555 "+termresponse",
556#else
557 "-termresponse",
558#endif
559#ifdef FEAT_TEXTOBJ
560 "+textobjects",
561#else
562 "-textobjects",
563#endif
564#ifdef FEAT_TITLE
565 "+title",
566#else
567 "-title",
568#endif
569#ifdef FEAT_TOOLBAR
570 "+toolbar",
571#else
572 "-toolbar",
573#endif
574#ifdef FEAT_USR_CMDS
575 "+user_commands",
576#else
577 "-user_commands",
578#endif
579#ifdef FEAT_VERTSPLIT
580 "+vertsplit",
581#else
582 "-vertsplit",
583#endif
584#ifdef FEAT_VIRTUALEDIT
585 "+virtualedit",
586#else
587 "-virtualedit",
588#endif
589#ifdef FEAT_VISUAL
590 "+visual",
591# ifdef FEAT_VISUALEXTRA
592 "+visualextra",
593# else
594 "-visualextra",
595# endif
596#else
597 "-visual",
598#endif
599#ifdef FEAT_VIMINFO
600 "+viminfo",
601#else
602 "-viminfo",
603#endif
604#ifdef FEAT_VREPLACE
605 "+vreplace",
606#else
607 "-vreplace",
608#endif
609#ifdef FEAT_WILDIGN
610 "+wildignore",
611#else
612 "-wildignore",
613#endif
614#ifdef FEAT_WILDMENU
615 "+wildmenu",
616#else
617 "-wildmenu",
618#endif
619#ifdef FEAT_WINDOWS
620 "+windows",
621#else
622 "-windows",
623#endif
624#ifdef FEAT_WRITEBACKUP
625 "+writebackup",
626#else
627 "-writebackup",
628#endif
629#if defined(UNIX) || defined(VMS)
630# ifdef FEAT_X11
631 "+X11",
632# else
633 "-X11",
634# endif
635#endif
636#ifdef FEAT_XFONTSET
637 "+xfontset",
638#else
639 "-xfontset",
640#endif
641#ifdef FEAT_XIM
642 "+xim",
643#else
644 "-xim",
645#endif
646#if defined(UNIX) || defined(VMS)
647# ifdef USE_XSMP_INTERACT
648 "+xsmp_interact",
649# else
650# ifdef USE_XSMP
651 "+xsmp",
652# else
653 "-xsmp",
654# endif
655# endif
656# ifdef FEAT_XCLIPBOARD
657 "+xterm_clipboard",
658# else
659 "-xterm_clipboard",
660# endif
661#endif
662#ifdef FEAT_XTERM_SAVE
663 "+xterm_save",
664#else
665 "-xterm_save",
666#endif
667#ifdef WIN3264
668# ifdef FEAT_XPM_W32
669 "+xpm_w32",
670# else
671 "-xpm_w32",
672# endif
673#endif
674 NULL
675};
676
677static int included_patches[] =
678{ /* Add new patch number below this line */
679/**/
Bram Moolenaar627943d2008-08-25 02:35:59 +0000680 4,
681/**/
Bram Moolenaar6949d1d2008-08-25 02:14:05 +0000682 3,
683/**/
Bram Moolenaaracbd4422008-08-17 21:44:45 +0000684 2,
685/**/
Bram Moolenaar95dd9c12008-08-17 21:03:18 +0000686 1,
687/**/
Bram Moolenaar071d4272004-06-13 20:20:40 +0000688 0
689};
690
691 int
692highest_patch()
693{
694 int i;
695 int h = 0;
696
697 for (i = 0; included_patches[i] != 0; ++i)
698 if (included_patches[i] > h)
699 h = included_patches[i];
700 return h;
701}
702
703#if defined(FEAT_EVAL) || defined(PROTO)
704/*
705 * Return TRUE if patch "n" has been included.
706 */
707 int
708has_patch(n)
709 int n;
710{
711 int i;
712
713 for (i = 0; included_patches[i] != 0; ++i)
714 if (included_patches[i] == n)
715 return TRUE;
716 return FALSE;
717}
718#endif
719
720 void
721ex_version(eap)
722 exarg_T *eap;
723{
724 /*
725 * Ignore a ":version 9.99" command.
726 */
727 if (*eap->arg == NUL)
728 {
729 msg_putchar('\n');
730 list_version();
731 }
732}
733
734 void
735list_version()
736{
737 int i;
738 int first;
739 char *s = "";
740
741 /*
742 * When adding features here, don't forget to update the list of
743 * internal variables in eval.c!
744 */
745 MSG(longVersion);
746#ifdef WIN3264
747# ifdef FEAT_GUI_W32
748# if defined(_MSC_VER) && (_MSC_VER <= 1010)
749 /* Only MS VC 4.1 and earlier can do Win32s */
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +0000750 MSG_PUTS(_("\nMS-Windows 16/32-bit GUI version"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000751# else
Bram Moolenaard9b87332006-10-03 14:30:41 +0000752# ifdef _WIN64
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +0000753 MSG_PUTS(_("\nMS-Windows 64-bit GUI version"));
Bram Moolenaard9b87332006-10-03 14:30:41 +0000754# else
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +0000755 MSG_PUTS(_("\nMS-Windows 32-bit GUI version"));
Bram Moolenaard9b87332006-10-03 14:30:41 +0000756# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000757# endif
758 if (gui_is_win32s())
759 MSG_PUTS(_(" in Win32s mode"));
760# ifdef FEAT_OLE
761 MSG_PUTS(_(" with OLE support"));
762# endif
763# else
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +0000764# ifdef _WIN64
765 MSG_PUTS(_("\nMS-Windows 64-bit console version"));
766# else
767 MSG_PUTS(_("\nMS-Windows 32-bit console version"));
768# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000769# endif
770#endif
771#ifdef WIN16
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +0000772 MSG_PUTS(_("\nMS-Windows 16-bit version"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000773#endif
774#ifdef MSDOS
775# ifdef DJGPP
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +0000776 MSG_PUTS(_("\n32-bit MS-DOS version"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000777# else
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +0000778 MSG_PUTS(_("\n16-bit MS-DOS version"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000779# endif
780#endif
781#ifdef MACOS
782# ifdef MACOS_X
783# ifdef MACOS_X_UNIX
784 MSG_PUTS(_("\nMacOS X (unix) version"));
785# else
786 MSG_PUTS(_("\nMacOS X version"));
787# endif
788#else
789 MSG_PUTS(_("\nMacOS version"));
790# endif
791#endif
792
793#ifdef RISCOS
794 MSG_PUTS(_("\nRISC OS version"));
795#endif
796#ifdef VMS
Bram Moolenaar6949d1d2008-08-25 02:14:05 +0000797 MSG_PUTS(_("\nOpenVMS version"));
Bram Moolenaar3d20ca12006-11-28 16:43:58 +0000798# ifdef HAVE_PATHDEF
799 if (*compiled_arch != NUL)
800 {
801 MSG_PUTS(" - ");
802 MSG_PUTS(compiled_arch);
803 }
804# endif
805
Bram Moolenaar071d4272004-06-13 20:20:40 +0000806#endif
807
808 /* Print the list of patch numbers if there is at least one. */
809 /* Print a range when patches are consecutive: "1-10, 12, 15-40, 42-45" */
810 if (included_patches[0] != 0)
811 {
812 MSG_PUTS(_("\nIncluded patches: "));
813 first = -1;
814 /* find last one */
815 for (i = 0; included_patches[i] != 0; ++i)
816 ;
817 while (--i >= 0)
818 {
819 if (first < 0)
820 first = included_patches[i];
821 if (i == 0 || included_patches[i - 1] != included_patches[i] + 1)
822 {
823 MSG_PUTS(s);
824 s = ", ";
825 msg_outnum((long)first);
826 if (first != included_patches[i])
827 {
828 MSG_PUTS("-");
829 msg_outnum((long)included_patches[i]);
830 }
831 first = -1;
832 }
833 }
834 }
835
836#ifdef MODIFIED_BY
837 MSG_PUTS("\n");
838 MSG_PUTS(_("Modified by "));
839 MSG_PUTS(MODIFIED_BY);
840#endif
841
842#ifdef HAVE_PATHDEF
843 if (*compiled_user != NUL || *compiled_sys != NUL)
844 {
845 MSG_PUTS(_("\nCompiled "));
846 if (*compiled_user != NUL)
847 {
848 MSG_PUTS(_("by "));
849 MSG_PUTS(compiled_user);
850 }
851 if (*compiled_sys != NUL)
852 {
853 MSG_PUTS("@");
854 MSG_PUTS(compiled_sys);
855 }
856 }
857#endif
858
859#ifdef FEAT_HUGE
860 MSG_PUTS(_("\nHuge version "));
861#else
862# ifdef FEAT_BIG
863 MSG_PUTS(_("\nBig version "));
864# else
865# ifdef FEAT_NORMAL
866 MSG_PUTS(_("\nNormal version "));
867# else
868# ifdef FEAT_SMALL
869 MSG_PUTS(_("\nSmall version "));
870# else
871 MSG_PUTS(_("\nTiny version "));
872# endif
873# endif
874# endif
875#endif
876#ifndef FEAT_GUI
877 MSG_PUTS(_("without GUI."));
878#else
879# ifdef FEAT_GUI_GTK
880# ifdef FEAT_GUI_GNOME
881# ifdef HAVE_GTK2
882 MSG_PUTS(_("with GTK2-GNOME GUI."));
883# else
884 MSG_PUTS(_("with GTK-GNOME GUI."));
885# endif
886# else
887# ifdef HAVE_GTK2
888 MSG_PUTS(_("with GTK2 GUI."));
889# else
890 MSG_PUTS(_("with GTK GUI."));
891# endif
892# endif
893# else
894# ifdef FEAT_GUI_MOTIF
895 MSG_PUTS(_("with X11-Motif GUI."));
896# else
897# ifdef FEAT_GUI_ATHENA
898# ifdef FEAT_GUI_NEXTAW
899 MSG_PUTS(_("with X11-neXtaw GUI."));
900# else
901 MSG_PUTS(_("with X11-Athena GUI."));
902# endif
903# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000904# ifdef FEAT_GUI_PHOTON
905 MSG_PUTS(_("with Photon GUI."));
906# else
907# if defined(MSWIN)
908 MSG_PUTS(_("with GUI."));
909# else
910# if defined (TARGET_API_MAC_CARBON) && TARGET_API_MAC_CARBON
911 MSG_PUTS(_("with Carbon GUI."));
912# else
913# if defined (TARGET_API_MAC_OSX) && TARGET_API_MAC_OSX
914 MSG_PUTS(_("with Cocoa GUI."));
915# else
916# if defined (MACOS)
917 MSG_PUTS(_("with (classic) GUI."));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000918# endif
919# endif
920# endif
921# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000922# endif
923# endif
924# endif
925# endif
926#endif
927 version_msg(_(" Features included (+) or not (-):\n"));
928
929 /* print all the features */
930 for (i = 0; features[i] != NULL; ++i)
931 {
932 version_msg(features[i]);
933 if (msg_col > 0)
934 version_msg(" ");
935 }
936
937 version_msg("\n");
938#ifdef SYS_VIMRC_FILE
939 version_msg(_(" system vimrc file: \""));
940 version_msg(SYS_VIMRC_FILE);
941 version_msg("\"\n");
942#endif
943#ifdef USR_VIMRC_FILE
944 version_msg(_(" user vimrc file: \""));
945 version_msg(USR_VIMRC_FILE);
946 version_msg("\"\n");
947#endif
948#ifdef USR_VIMRC_FILE2
949 version_msg(_(" 2nd user vimrc file: \""));
950 version_msg(USR_VIMRC_FILE2);
951 version_msg("\"\n");
952#endif
953#ifdef USR_VIMRC_FILE3
954 version_msg(_(" 3rd user vimrc file: \""));
955 version_msg(USR_VIMRC_FILE3);
956 version_msg("\"\n");
957#endif
958#ifdef USR_EXRC_FILE
959 version_msg(_(" user exrc file: \""));
960 version_msg(USR_EXRC_FILE);
961 version_msg("\"\n");
962#endif
963#ifdef USR_EXRC_FILE2
964 version_msg(_(" 2nd user exrc file: \""));
965 version_msg(USR_EXRC_FILE2);
966 version_msg("\"\n");
967#endif
968#ifdef FEAT_GUI
969# ifdef SYS_GVIMRC_FILE
970 version_msg(_(" system gvimrc file: \""));
971 version_msg(SYS_GVIMRC_FILE);
972 version_msg("\"\n");
973# endif
974 version_msg(_(" user gvimrc file: \""));
975 version_msg(USR_GVIMRC_FILE);
976 version_msg("\"\n");
977# ifdef USR_GVIMRC_FILE2
978 version_msg(_("2nd user gvimrc file: \""));
979 version_msg(USR_GVIMRC_FILE2);
980 version_msg("\"\n");
981# endif
982# ifdef USR_GVIMRC_FILE3
983 version_msg(_("3rd user gvimrc file: \""));
984 version_msg(USR_GVIMRC_FILE3);
985 version_msg("\"\n");
986# endif
987#endif
988#ifdef FEAT_GUI
989# ifdef SYS_MENU_FILE
990 version_msg(_(" system menu file: \""));
991 version_msg(SYS_MENU_FILE);
992 version_msg("\"\n");
993# endif
994#endif
995#ifdef HAVE_PATHDEF
996 if (*default_vim_dir != NUL)
997 {
998 version_msg(_(" fall-back for $VIM: \""));
999 version_msg((char *)default_vim_dir);
1000 version_msg("\"\n");
1001 }
1002 if (*default_vimruntime_dir != NUL)
1003 {
1004 version_msg(_(" f-b for $VIMRUNTIME: \""));
1005 version_msg((char *)default_vimruntime_dir);
1006 version_msg("\"\n");
1007 }
1008 version_msg(_("Compilation: "));
1009 version_msg((char *)all_cflags);
1010 version_msg("\n");
1011#ifdef VMS
1012 if (*compiler_version != NUL)
1013 {
1014 version_msg(_("Compiler: "));
1015 version_msg((char *)compiler_version);
1016 version_msg("\n");
1017 }
1018#endif
1019 version_msg(_("Linking: "));
1020 version_msg((char *)all_lflags);
1021#endif
1022#ifdef DEBUG
1023 version_msg("\n");
1024 version_msg(_(" DEBUG BUILD"));
1025#endif
1026}
1027
1028/*
1029 * Output a string for the version message. If it's going to wrap, output a
1030 * newline, unless the message is too long to fit on the screen anyway.
1031 */
1032 static void
1033version_msg(s)
1034 char *s;
1035{
1036 int len = (int)STRLEN(s);
1037
1038 if (!got_int && len < (int)Columns && msg_col + len >= (int)Columns
1039 && *s != '\n')
1040 msg_putchar('\n');
1041 if (!got_int)
1042 MSG_PUTS(s);
1043}
1044
1045static void do_intro_line __ARGS((int row, char_u *mesg, int add_version, int attr));
1046
1047/*
1048 * Give an introductory message about Vim.
1049 * Only used when starting Vim on an empty file, without a file name.
1050 * Or with the ":intro" command (for Sven :-).
1051 */
1052 void
1053intro_message(colon)
1054 int colon; /* TRUE for ":intro" */
1055{
1056 int i;
1057 int row;
1058 int blanklines;
1059 int sponsor;
1060 char *p;
1061 static char *(lines[]) =
1062 {
1063 N_("VIM - Vi IMproved"),
1064 "",
1065 N_("version "),
1066 N_("by Bram Moolenaar et al."),
1067#ifdef MODIFIED_BY
1068 " ",
1069#endif
1070 N_("Vim is open source and freely distributable"),
1071 "",
1072 N_("Help poor children in Uganda!"),
1073 N_("type :help iccf<Enter> for information "),
1074 "",
1075 N_("type :q<Enter> to exit "),
1076 N_("type :help<Enter> or <F1> for on-line help"),
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00001077 N_("type :help version7<Enter> for version info"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001078 NULL,
1079 "",
1080 N_("Running in Vi compatible mode"),
1081 N_("type :set nocp<Enter> for Vim defaults"),
1082 N_("type :help cp-default<Enter> for info on this"),
1083 };
1084#ifdef FEAT_GUI
1085 static char *(gui_lines[]) =
1086 {
1087 NULL,
1088 NULL,
1089 NULL,
1090 NULL,
1091#ifdef MODIFIED_BY
1092 NULL,
1093#endif
1094 NULL,
1095 NULL,
1096 NULL,
1097 N_("menu Help->Orphans for information "),
1098 NULL,
1099 N_("Running modeless, typed text is inserted"),
1100 N_("menu Edit->Global Settings->Toggle Insert Mode "),
1101 N_(" for two modes "),
1102 NULL,
1103 NULL,
1104 NULL,
1105 N_("menu Edit->Global Settings->Toggle Vi Compatible"),
1106 N_(" for Vim defaults "),
1107 };
1108#endif
1109
1110 /* blanklines = screen height - # message lines */
1111 blanklines = (int)Rows - ((sizeof(lines) / sizeof(char *)) - 1);
1112 if (!p_cp)
1113 blanklines += 4; /* add 4 for not showing "Vi compatible" message */
1114#if defined(WIN3264) && !defined(FEAT_GUI_W32)
1115 if (mch_windows95())
1116 blanklines -= 3; /* subtract 3 for showing "Windows 95" message */
1117#endif
1118
1119#ifdef FEAT_WINDOWS
1120 /* Don't overwrite a statusline. Depends on 'cmdheight'. */
1121 if (p_ls > 1)
1122 blanklines -= Rows - topframe->fr_height;
1123#endif
1124 if (blanklines < 0)
1125 blanklines = 0;
1126
1127 /* Show the sponsor and register message one out of four times, the Uganda
1128 * message two out of four times. */
Bram Moolenaarf4cd3e82005-12-22 22:47:02 +00001129 sponsor = (int)time(NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001130 sponsor = ((sponsor & 2) == 0) - ((sponsor & 4) == 0);
1131
1132 /* start displaying the message lines after half of the blank lines */
1133 row = blanklines / 2;
1134 if ((row >= 2 && Columns >= 50) || colon)
1135 {
1136 for (i = 0; i < (int)(sizeof(lines) / sizeof(char *)); ++i)
1137 {
1138 p = lines[i];
1139#ifdef FEAT_GUI
1140 if (p_im && gui.in_use && gui_lines[i] != NULL)
1141 p = gui_lines[i];
1142#endif
1143 if (p == NULL)
1144 {
1145 if (!p_cp)
1146 break;
1147 continue;
1148 }
1149 if (sponsor != 0)
1150 {
1151 if (strstr(p, "children") != NULL)
1152 p = sponsor < 0
1153 ? N_("Sponsor Vim development!")
1154 : N_("Become a registered Vim user!");
1155 else if (strstr(p, "iccf") != NULL)
1156 p = sponsor < 0
1157 ? N_("type :help sponsor<Enter> for information ")
1158 : N_("type :help register<Enter> for information ");
1159 else if (strstr(p, "Orphans") != NULL)
1160 p = N_("menu Help->Sponsor/Register for information ");
1161 }
1162 if (*p != NUL)
1163 do_intro_line(row, (char_u *)_(p), i == 2, 0);
1164 ++row;
1165 }
1166#if defined(WIN3264) && !defined(FEAT_GUI_W32)
1167 if (mch_windows95())
1168 {
1169 do_intro_line(++row,
1170 (char_u *)_("WARNING: Windows 95/98/ME detected"),
1171 FALSE, hl_attr(HLF_E));
1172 do_intro_line(++row,
1173 (char_u *)_("type :help windows95<Enter> for info on this"),
1174 FALSE, 0);
1175 }
1176#endif
1177 }
1178
1179 /* Make the wait-return message appear just below the text. */
1180 if (colon)
1181 msg_row = row;
1182}
1183
1184 static void
1185do_intro_line(row, mesg, add_version, attr)
1186 int row;
1187 char_u *mesg;
1188 int add_version;
1189 int attr;
1190{
1191 char_u vers[20];
1192 int col;
1193 char_u *p;
1194 int l;
1195 int clen;
1196#ifdef MODIFIED_BY
1197# define MODBY_LEN 150
1198 char_u modby[MODBY_LEN];
1199
1200 if (*mesg == ' ')
1201 {
Bram Moolenaar589e43a2008-01-05 12:59:22 +00001202 vim_strncpy(modby, (char_u *)_("Modified by "), MODBY_LEN - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001203 l = STRLEN(modby);
Bram Moolenaar589e43a2008-01-05 12:59:22 +00001204 vim_strncpy(modby + l, (char_u *)MODIFIED_BY, MODBY_LEN - l - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001205 mesg = modby;
1206 }
1207#endif
1208
1209 /* Center the message horizontally. */
1210 col = vim_strsize(mesg);
1211 if (add_version)
1212 {
1213 STRCPY(vers, mediumVersion);
1214 if (highest_patch())
1215 {
1216 /* Check for 9.9x or 9.9xx, alpha/beta version */
1217 if (isalpha((int)mediumVersion[3]))
1218 {
1219 if (isalpha((int)mediumVersion[4]))
1220 sprintf((char *)vers + 5, ".%d%s", highest_patch(),
1221 mediumVersion + 5);
1222 else
1223 sprintf((char *)vers + 4, ".%d%s", highest_patch(),
1224 mediumVersion + 4);
1225 }
1226 else
1227 sprintf((char *)vers + 3, ".%d", highest_patch());
1228 }
1229 col += (int)STRLEN(vers);
1230 }
1231 col = (Columns - col) / 2;
1232 if (col < 0)
1233 col = 0;
1234
1235 /* Split up in parts to highlight <> items differently. */
1236 for (p = mesg; *p != NUL; p += l)
1237 {
1238 clen = 0;
1239 for (l = 0; p[l] != NUL
1240 && (l == 0 || (p[l] != '<' && p[l - 1] != '>')); ++l)
1241 {
1242#ifdef FEAT_MBYTE
1243 if (has_mbyte)
1244 {
1245 clen += ptr2cells(p + l);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001246 l += (*mb_ptr2len)(p + l) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001247 }
1248 else
1249#endif
1250 clen += byte2cells(p[l]);
1251 }
1252 screen_puts_len(p, l, row, col, *p == '<' ? hl_attr(HLF_8) : attr);
1253 col += clen;
1254 }
1255
1256 /* Add the version number to the version line. */
1257 if (add_version)
1258 screen_puts(vers, row, col, 0);
1259}
1260
1261/*
1262 * ":intro": clear screen, display intro screen and wait for return.
1263 */
1264/*ARGSUSED*/
1265 void
1266ex_intro(eap)
1267 exarg_T *eap;
1268{
1269 screenclear();
1270 intro_message(TRUE);
1271 wait_return(TRUE);
1272}