Merge branch 'vim'
[MacVim.git] / src / version.c
blob3108d34b56bafb107e836b3ad6ab9106861c29ef
1 /* vi:set ts=8 sts=4 sw=4:
3 * VIM - Vi IMproved by Bram Moolenaar
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 */
10 #include "vim.h"
12 #ifdef AMIGA
13 # include <time.h> /* for time() */
14 #endif
17 * Vim originated from Stevie version 3.6 (Fish disk 217) by GRWalter (Fred)
18 * It has been changed beyond recognition since then.
20 * Differences between version 6.x and 7.x can be found with ":help version7".
21 * Differences between version 5.x and 6.x can be found with ":help version6".
22 * Differences between version 4.x and 5.x can be found with ":help version5".
23 * Differences between version 3.0 and 4.x can be found with ":help version4".
24 * All the remarks about older versions have been removed, they are not very
25 * interesting.
28 #include "version.h"
30 char *Version = VIM_VERSION_SHORT;
31 static char *mediumVersion = VIM_VERSION_MEDIUM;
33 #if defined(HAVE_DATE_TIME) || defined(PROTO)
34 # if (defined(VMS) && defined(VAXC)) || defined(PROTO)
35 char longVersion[sizeof(VIM_VERSION_LONG_DATE) + sizeof(__DATE__)
36 + sizeof(__TIME__) + 3];
37 void
38 make_version()
41 * Construct the long version string. Necessary because
42 * VAX C can't catenate strings in the preprocessor.
44 strcpy(longVersion, VIM_VERSION_LONG_DATE);
45 strcat(longVersion, __DATE__);
46 strcat(longVersion, " ");
47 strcat(longVersion, __TIME__);
48 strcat(longVersion, ")");
50 # else
51 char *longVersion = VIM_VERSION_LONG_DATE __DATE__ " " __TIME__ ")";
52 # endif
53 #else
54 char *longVersion = VIM_VERSION_LONG;
55 #endif
57 static void version_msg __ARGS((char *s));
59 static char *(features[]) =
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
147 #ifdef CURSOR_SHAPE
148 "+cursorshape",
149 #else
150 "-cursorshape",
151 #endif
152 #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
220 #ifdef FEAT_FLOAT
221 "+float",
222 #else
223 "-float",
224 #endif
225 #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_FULLSCREEN
240 "+fullscreen",
241 #else
242 "-fullscreen",
243 #endif
244 #ifdef FEAT_GETTEXT
245 # ifdef DYNAMIC_GETTEXT
246 "+gettext/dyn",
247 # else
248 "+gettext",
249 # endif
250 #else
251 "-gettext",
252 #endif
253 #ifdef FEAT_HANGULIN
254 "+hangul_input",
255 #else
256 "-hangul_input",
257 #endif
258 #if (defined(HAVE_ICONV_H) && defined(USE_ICONV)) || defined(DYNAMIC_ICONV)
259 # ifdef DYNAMIC_ICONV
260 "+iconv/dyn",
261 # else
262 "+iconv",
263 # endif
264 #else
265 "-iconv",
266 #endif
267 #ifdef FEAT_INS_EXPAND
268 "+insert_expand",
269 #else
270 "-insert_expand",
271 #endif
272 #ifdef FEAT_JUMPLIST
273 "+jumplist",
274 #else
275 "-jumplist",
276 #endif
277 #ifdef FEAT_KEYMAP
278 "+keymap",
279 #else
280 "-keymap",
281 #endif
282 #ifdef FEAT_LANGMAP
283 "+langmap",
284 #else
285 "-langmap",
286 #endif
287 #ifdef FEAT_LIBCALL
288 "+libcall",
289 #else
290 "-libcall",
291 #endif
292 #ifdef FEAT_LINEBREAK
293 "+linebreak",
294 #else
295 "-linebreak",
296 #endif
297 #ifdef FEAT_LISP
298 "+lispindent",
299 #else
300 "-lispindent",
301 #endif
302 #ifdef FEAT_LISTCMDS
303 "+listcmds",
304 #else
305 "-listcmds",
306 #endif
307 #ifdef FEAT_LOCALMAP
308 "+localmap",
309 #else
310 "-localmap",
311 #endif
312 #ifdef FEAT_MENU
313 "+menu",
314 #else
315 "-menu",
316 #endif
317 #ifdef FEAT_SESSION
318 "+mksession",
319 #else
320 "-mksession",
321 #endif
322 #ifdef FEAT_MODIFY_FNAME
323 "+modify_fname",
324 #else
325 "-modify_fname",
326 #endif
327 #ifdef FEAT_MOUSE
328 "+mouse",
329 # ifdef FEAT_MOUSESHAPE
330 "+mouseshape",
331 # else
332 "-mouseshape",
333 # endif
334 # else
335 "-mouse",
336 #endif
337 #if defined(UNIX) || defined(VMS)
338 # ifdef FEAT_MOUSE_DEC
339 "+mouse_dec",
340 # else
341 "-mouse_dec",
342 # endif
343 # ifdef FEAT_MOUSE_GPM
344 "+mouse_gpm",
345 # else
346 "-mouse_gpm",
347 # endif
348 # ifdef FEAT_MOUSE_JSB
349 "+mouse_jsbterm",
350 # else
351 "-mouse_jsbterm",
352 # endif
353 # ifdef FEAT_MOUSE_NET
354 "+mouse_netterm",
355 # else
356 "-mouse_netterm",
357 # endif
358 # ifdef FEAT_SYSMOUSE
359 "+mouse_sysmouse",
360 # else
361 "-mouse_sysmouse",
362 # endif
363 # ifdef FEAT_MOUSE_XTERM
364 "+mouse_xterm",
365 # else
366 "-mouse_xterm",
367 # endif
368 #endif
369 #ifdef __QNX__
370 # ifdef FEAT_MOUSE_PTERM
371 "+mouse_pterm",
372 # else
373 "-mouse_pterm",
374 # endif
375 #endif
376 #ifdef FEAT_MBYTE_IME
377 # ifdef DYNAMIC_IME
378 "+multi_byte_ime/dyn",
379 # else
380 "+multi_byte_ime",
381 # endif
382 #else
383 # ifdef FEAT_MBYTE
384 "+multi_byte",
385 # else
386 "-multi_byte",
387 # endif
388 #endif
389 #ifdef FEAT_MULTI_LANG
390 "+multi_lang",
391 #else
392 "-multi_lang",
393 #endif
394 #ifdef FEAT_MZSCHEME
395 # ifdef DYNAMIC_MZSCHEME
396 "+mzscheme/dyn",
397 # else
398 "+mzscheme",
399 # endif
400 #else
401 "-mzscheme",
402 #endif
403 #ifdef FEAT_NETBEANS_INTG
404 "+netbeans_intg",
405 #else
406 "-netbeans_intg",
407 #endif
408 #ifdef FEAT_ODB_EDITOR
409 "+odbeditor",
410 #else
411 "-odbeditor",
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
439 #ifdef FEAT_PRINTER
440 # ifdef FEAT_POSTSCRIPT
441 "+postscript",
442 # else
443 "-postscript",
444 # endif
445 "+printer",
446 #else
447 "-printer",
448 #endif
449 #ifdef FEAT_PROFILE
450 "+profile",
451 #else
452 "-profile",
453 #endif
454 #ifdef FEAT_PYTHON
455 # ifdef DYNAMIC_PYTHON
456 "+python/dyn",
457 # else
458 "+python",
459 # endif
460 #else
461 "-python",
462 #endif
463 #ifdef FEAT_QUICKFIX
464 "+quickfix",
465 #else
466 "-quickfix",
467 #endif
468 #ifdef FEAT_RELTIME
469 "+reltime",
470 #else
471 "-reltime",
472 #endif
473 #ifdef FEAT_RIGHTLEFT
474 "+rightleft",
475 #else
476 "-rightleft",
477 #endif
478 #ifdef FEAT_RUBY
479 # ifdef DYNAMIC_RUBY
480 "+ruby/dyn",
481 # else
482 "+ruby",
483 # endif
484 #else
485 "-ruby",
486 #endif
487 #ifdef FEAT_SCROLLBIND
488 "+scrollbind",
489 #else
490 "-scrollbind",
491 #endif
492 #ifdef FEAT_SIGNS
493 "+signs",
494 #else
495 "-signs",
496 #endif
497 #ifdef FEAT_SMARTINDENT
498 "+smartindent",
499 #else
500 "-smartindent",
501 #endif
502 #ifdef FEAT_SNIFF
503 "+sniff",
504 #else
505 "-sniff",
506 #endif
507 #ifdef FEAT_STL_OPT
508 "+statusline",
509 #else
510 "-statusline",
511 #endif
512 #ifdef FEAT_SUN_WORKSHOP
513 "+sun_workshop",
514 #else
515 "-sun_workshop",
516 #endif
517 #ifdef FEAT_SYN_HL
518 "+syntax",
519 #else
520 "-syntax",
521 #endif
522 /* only interesting on Unix systems */
523 #if defined(USE_SYSTEM) && (defined(UNIX) || defined(__EMX__))
524 "+system()",
525 #endif
526 #ifdef FEAT_TAG_BINS
527 "+tag_binary",
528 #else
529 "-tag_binary",
530 #endif
531 #ifdef FEAT_TAG_OLDSTATIC
532 "+tag_old_static",
533 #else
534 "-tag_old_static",
535 #endif
536 #ifdef FEAT_TAG_ANYWHITE
537 "+tag_any_white",
538 #else
539 "-tag_any_white",
540 #endif
541 #ifdef FEAT_TCL
542 # ifdef DYNAMIC_TCL
543 "+tcl/dyn",
544 # else
545 "+tcl",
546 # endif
547 #else
548 "-tcl",
549 #endif
550 #if defined(UNIX) || defined(__EMX__)
551 /* only Unix (or OS/2 with EMX!) can have terminfo instead of termcap */
552 # ifdef TERMINFO
553 "+terminfo",
554 # else
555 "-terminfo",
556 # endif
557 #else /* unix always includes termcap support */
558 # ifdef HAVE_TGETENT
559 "+tgetent",
560 # else
561 "-tgetent",
562 # endif
563 #endif
564 #ifdef FEAT_TERMRESPONSE
565 "+termresponse",
566 #else
567 "-termresponse",
568 #endif
569 #ifdef FEAT_TEXTOBJ
570 "+textobjects",
571 #else
572 "-textobjects",
573 #endif
574 #ifdef FEAT_TITLE
575 "+title",
576 #else
577 "-title",
578 #endif
579 #ifdef FEAT_TOOLBAR
580 "+toolbar",
581 #else
582 "-toolbar",
583 #endif
584 #ifdef FEAT_TRANSPARENCY
585 "+transparency",
586 #else
587 "-transparency",
588 #endif
589 #ifdef FEAT_USR_CMDS
590 "+user_commands",
591 #else
592 "-user_commands",
593 #endif
594 #ifdef FEAT_VERTSPLIT
595 "+vertsplit",
596 #else
597 "-vertsplit",
598 #endif
599 #ifdef FEAT_VIRTUALEDIT
600 "+virtualedit",
601 #else
602 "-virtualedit",
603 #endif
604 #ifdef FEAT_VISUAL
605 "+visual",
606 # ifdef FEAT_VISUALEXTRA
607 "+visualextra",
608 # else
609 "-visualextra",
610 # endif
611 #else
612 "-visual",
613 #endif
614 #ifdef FEAT_VIMINFO
615 "+viminfo",
616 #else
617 "-viminfo",
618 #endif
619 #ifdef FEAT_VREPLACE
620 "+vreplace",
621 #else
622 "-vreplace",
623 #endif
624 #ifdef FEAT_WILDIGN
625 "+wildignore",
626 #else
627 "-wildignore",
628 #endif
629 #ifdef FEAT_WILDMENU
630 "+wildmenu",
631 #else
632 "-wildmenu",
633 #endif
634 #ifdef FEAT_WINDOWS
635 "+windows",
636 #else
637 "-windows",
638 #endif
639 #ifdef FEAT_WRITEBACKUP
640 "+writebackup",
641 #else
642 "-writebackup",
643 #endif
644 #if defined(UNIX) || defined(VMS)
645 # ifdef FEAT_X11
646 "+X11",
647 # else
648 "-X11",
649 # endif
650 #endif
651 #ifdef FEAT_XFONTSET
652 "+xfontset",
653 #else
654 "-xfontset",
655 #endif
656 #ifdef FEAT_XIM
657 "+xim",
658 #else
659 "-xim",
660 #endif
661 #if defined(UNIX) || defined(VMS)
662 # ifdef USE_XSMP_INTERACT
663 "+xsmp_interact",
664 # else
665 # ifdef USE_XSMP
666 "+xsmp",
667 # else
668 "-xsmp",
669 # endif
670 # endif
671 # ifdef FEAT_XCLIPBOARD
672 "+xterm_clipboard",
673 # else
674 "-xterm_clipboard",
675 # endif
676 #endif
677 #ifdef FEAT_XTERM_SAVE
678 "+xterm_save",
679 #else
680 "-xterm_save",
681 #endif
682 #ifdef WIN3264
683 # ifdef FEAT_XPM_W32
684 "+xpm_w32",
685 # else
686 "-xpm_w32",
687 # endif
688 #endif
689 NULL
692 static int included_patches[] =
693 { /* Add new patch number below this line */
694 /**/
695 234,
696 /**/
697 233,
698 /**/
699 232,
700 /**/
701 231,
702 /**/
703 230,
704 /**/
705 229,
706 /**/
707 228,
708 /**/
709 227,
710 /**/
711 226,
712 /**/
713 225,
714 /**/
715 224,
716 /**/
717 223,
718 /**/
719 222,
720 /**/
721 221,
722 /**/
723 220,
724 /**/
725 219,
726 /**/
727 218,
728 /**/
729 217,
730 /**/
731 216,
732 /**/
733 215,
734 /**/
735 214,
736 /**/
737 213,
738 /**/
739 212,
740 /**/
741 211,
742 /**/
743 210,
744 /**/
745 209,
746 /**/
747 208,
748 /**/
749 207,
750 /**/
751 206,
752 /**/
753 205,
754 /**/
755 204,
756 /**/
757 203,
758 /**/
759 202,
760 /**/
761 201,
762 /**/
763 200,
764 /**/
765 199,
766 /**/
767 198,
768 /**/
769 197,
770 /**/
771 196,
772 /**/
773 195,
774 /**/
775 194,
776 /**/
777 193,
778 /**/
779 192,
780 /**/
781 191,
782 /**/
783 190,
784 /**/
785 189,
786 /**/
787 188,
788 /**/
789 187,
790 /**/
791 186,
792 /**/
793 185,
794 /**/
795 184,
796 /**/
797 183,
798 /**/
799 182,
800 /**/
801 181,
802 /**/
803 180,
804 /**/
805 179,
806 /**/
807 178,
808 /**/
809 177,
810 /**/
811 176,
812 /**/
813 175,
814 /**/
815 174,
816 /**/
817 173,
818 /**/
819 172,
820 /**/
821 171,
822 /**/
823 170,
824 /**/
825 169,
826 /**/
827 168,
828 /**/
829 167,
830 /**/
831 166,
832 /**/
833 165,
834 /**/
835 164,
836 /**/
837 163,
838 /**/
839 162,
840 /**/
841 161,
842 /**/
843 160,
844 /**/
845 159,
846 /**/
847 158,
848 /**/
849 157,
850 /**/
851 156,
852 /**/
853 155,
854 /**/
855 154,
856 /**/
857 153,
858 /**/
859 152,
860 /**/
861 151,
862 /**/
863 150,
864 /**/
865 149,
866 /**/
867 148,
868 /**/
869 147,
870 /**/
871 146,
872 /**/
873 145,
874 /**/
875 144,
876 /**/
877 143,
878 /**/
879 142,
880 /**/
881 141,
882 /**/
883 140,
884 /**/
885 139,
886 /**/
887 138,
888 /**/
889 137,
890 /**/
891 136,
892 /**/
893 135,
894 /**/
895 134,
896 /**/
897 133,
898 /**/
899 132,
900 /**/
901 131,
902 /**/
903 130,
904 /**/
905 129,
906 /**/
907 128,
908 /**/
909 127,
910 /**/
911 126,
912 /**/
913 125,
914 /**/
915 124,
916 /**/
917 123,
918 /**/
919 122,
920 /**/
921 121,
922 /**/
923 120,
924 /**/
925 119,
926 /**/
927 118,
928 /**/
929 117,
930 /**/
931 116,
932 /**/
933 115,
934 /**/
935 114,
936 /**/
937 113,
938 /**/
939 112,
940 /**/
941 111,
942 /**/
943 110,
944 /**/
945 109,
946 /**/
947 108,
948 /**/
949 107,
950 /**/
951 106,
952 /**/
953 105,
954 /**/
955 104,
956 /**/
957 103,
958 /**/
959 102,
960 /**/
961 101,
962 /**/
963 100,
964 /**/
966 /**/
968 /**/
970 /**/
972 /**/
974 /**/
976 /**/
978 /**/
980 /**/
982 /**/
984 /**/
986 /**/
988 /**/
990 /**/
992 /**/
994 /**/
996 /**/
998 /**/
1000 /**/
1002 /**/
1004 /**/
1006 /**/
1008 /**/
1010 /**/
1012 /**/
1014 /**/
1016 /**/
1018 /**/
1020 /**/
1022 /**/
1024 /**/
1026 /**/
1028 /**/
1030 /**/
1032 /**/
1034 /**/
1036 /**/
1038 /**/
1040 /**/
1042 /**/
1044 /**/
1046 /**/
1048 /**/
1050 /**/
1052 /**/
1054 /**/
1056 /**/
1058 /**/
1060 /**/
1062 /**/
1064 /**/
1066 /**/
1068 /**/
1070 /**/
1072 /**/
1074 /**/
1076 /**/
1078 /**/
1080 /**/
1082 /**/
1084 /**/
1086 /**/
1088 /**/
1090 /**/
1092 /**/
1094 /**/
1096 /**/
1098 /**/
1100 /**/
1102 /**/
1104 /**/
1106 /**/
1108 /**/
1110 /**/
1112 /**/
1114 /**/
1116 /**/
1118 /**/
1120 /**/
1122 /**/
1124 /**/
1126 /**/
1128 /**/
1130 /**/
1132 /**/
1134 /**/
1136 /**/
1138 /**/
1140 /**/
1142 /**/
1144 /**/
1146 /**/
1148 /**/
1150 /**/
1152 /**/
1154 /**/
1156 /**/
1158 /**/
1160 /**/
1162 /**/
1167 * Place to put a short description when adding a feature with a patch.
1168 * Keep it short, e.g.,: "relative numbers", "persistent undo".
1169 * Also add a comment marker to separate the lines.
1170 * See the official Vim patches for the diff format: It must use a context of
1171 * one line only. Create it by hand or use "diff -C2" and edit the patch.
1173 static char *(extra_patches[]) =
1174 { /* Add your patch description below this line */
1175 /**/
1176 NULL
1180 highest_patch()
1182 int i;
1183 int h = 0;
1185 for (i = 0; included_patches[i] != 0; ++i)
1186 if (included_patches[i] > h)
1187 h = included_patches[i];
1188 return h;
1191 #if defined(FEAT_EVAL) || defined(PROTO)
1193 * Return TRUE if patch "n" has been included.
1196 has_patch(n)
1197 int n;
1199 int i;
1201 for (i = 0; included_patches[i] != 0; ++i)
1202 if (included_patches[i] == n)
1203 return TRUE;
1204 return FALSE;
1206 #endif
1208 void
1209 ex_version(eap)
1210 exarg_T *eap;
1213 * Ignore a ":version 9.99" command.
1215 if (*eap->arg == NUL)
1217 msg_putchar('\n');
1218 list_version();
1222 void
1223 list_version()
1225 int i;
1226 int first;
1227 char *s = "";
1230 * When adding features here, don't forget to update the list of
1231 * internal variables in eval.c!
1233 MSG(longVersion);
1234 #ifdef WIN3264
1235 # ifdef FEAT_GUI_W32
1236 # if defined(_MSC_VER) && (_MSC_VER <= 1010)
1237 /* Only MS VC 4.1 and earlier can do Win32s */
1238 MSG_PUTS(_("\nMS-Windows 16/32-bit GUI version"));
1239 # else
1240 # ifdef _WIN64
1241 MSG_PUTS(_("\nMS-Windows 64-bit GUI version"));
1242 # else
1243 MSG_PUTS(_("\nMS-Windows 32-bit GUI version"));
1244 # endif
1245 # endif
1246 if (gui_is_win32s())
1247 MSG_PUTS(_(" in Win32s mode"));
1248 # ifdef FEAT_OLE
1249 MSG_PUTS(_(" with OLE support"));
1250 # endif
1251 # else
1252 # ifdef _WIN64
1253 MSG_PUTS(_("\nMS-Windows 64-bit console version"));
1254 # else
1255 MSG_PUTS(_("\nMS-Windows 32-bit console version"));
1256 # endif
1257 # endif
1258 #endif
1259 #ifdef WIN16
1260 MSG_PUTS(_("\nMS-Windows 16-bit version"));
1261 #endif
1262 #ifdef MSDOS
1263 # ifdef DJGPP
1264 MSG_PUTS(_("\n32-bit MS-DOS version"));
1265 # else
1266 MSG_PUTS(_("\n16-bit MS-DOS version"));
1267 # endif
1268 #endif
1269 #ifdef MACOS
1270 # ifdef MACOS_X
1271 # ifdef MACOS_X_UNIX
1272 MSG_PUTS(_("\nMacOS X (unix) version"));
1273 # else
1274 MSG_PUTS(_("\nMacOS X version"));
1275 # endif
1276 #else
1277 MSG_PUTS(_("\nMacOS version"));
1278 # endif
1279 #endif
1281 #ifdef RISCOS
1282 MSG_PUTS(_("\nRISC OS version"));
1283 #endif
1284 #ifdef VMS
1285 MSG_PUTS(_("\nOpenVMS version"));
1286 # ifdef HAVE_PATHDEF
1287 if (*compiled_arch != NUL)
1289 MSG_PUTS(" - ");
1290 MSG_PUTS(compiled_arch);
1292 # endif
1294 #endif
1296 /* Print the list of patch numbers if there is at least one. */
1297 /* Print a range when patches are consecutive: "1-10, 12, 15-40, 42-45" */
1298 if (included_patches[0] != 0)
1300 MSG_PUTS(_("\nIncluded patches: "));
1301 first = -1;
1302 /* find last one */
1303 for (i = 0; included_patches[i] != 0; ++i)
1305 while (--i >= 0)
1307 if (first < 0)
1308 first = included_patches[i];
1309 if (i == 0 || included_patches[i - 1] != included_patches[i] + 1)
1311 MSG_PUTS(s);
1312 s = ", ";
1313 msg_outnum((long)first);
1314 if (first != included_patches[i])
1316 MSG_PUTS("-");
1317 msg_outnum((long)included_patches[i]);
1319 first = -1;
1324 /* Print the list of extra patch descriptions if there is at least one. */
1325 if (extra_patches[0] != NULL)
1327 MSG_PUTS(_("\nExtra patches: "));
1328 s = "";
1329 for (i = 0; extra_patches[i] != NULL; ++i)
1331 MSG_PUTS(s);
1332 s = ", ";
1333 MSG_PUTS(extra_patches[i]);
1337 #ifdef MODIFIED_BY
1338 MSG_PUTS("\n");
1339 MSG_PUTS(_("Modified by "));
1340 MSG_PUTS(MODIFIED_BY);
1341 #endif
1343 #ifdef HAVE_PATHDEF
1344 if (*compiled_user != NUL || *compiled_sys != NUL)
1346 MSG_PUTS(_("\nCompiled "));
1347 if (*compiled_user != NUL)
1349 MSG_PUTS(_("by "));
1350 MSG_PUTS(compiled_user);
1352 if (*compiled_sys != NUL)
1354 MSG_PUTS("@");
1355 MSG_PUTS(compiled_sys);
1358 #endif
1360 #ifdef FEAT_HUGE
1361 MSG_PUTS(_("\nHuge version "));
1362 #else
1363 # ifdef FEAT_BIG
1364 MSG_PUTS(_("\nBig version "));
1365 # else
1366 # ifdef FEAT_NORMAL
1367 MSG_PUTS(_("\nNormal version "));
1368 # else
1369 # ifdef FEAT_SMALL
1370 MSG_PUTS(_("\nSmall version "));
1371 # else
1372 MSG_PUTS(_("\nTiny version "));
1373 # endif
1374 # endif
1375 # endif
1376 #endif
1377 #ifndef FEAT_GUI
1378 MSG_PUTS(_("without GUI."));
1379 #else
1380 # ifdef FEAT_GUI_GTK
1381 # ifdef FEAT_GUI_GNOME
1382 # ifdef HAVE_GTK2
1383 MSG_PUTS(_("with GTK2-GNOME GUI."));
1384 # else
1385 MSG_PUTS(_("with GTK-GNOME GUI."));
1386 # endif
1387 # else
1388 # ifdef HAVE_GTK2
1389 MSG_PUTS(_("with GTK2 GUI."));
1390 # else
1391 MSG_PUTS(_("with GTK GUI."));
1392 # endif
1393 # endif
1394 # else
1395 # ifdef FEAT_GUI_MOTIF
1396 MSG_PUTS(_("with X11-Motif GUI."));
1397 # else
1398 # ifdef FEAT_GUI_ATHENA
1399 # ifdef FEAT_GUI_NEXTAW
1400 MSG_PUTS(_("with X11-neXtaw GUI."));
1401 # else
1402 MSG_PUTS(_("with X11-Athena GUI."));
1403 # endif
1404 # else
1405 # ifdef FEAT_GUI_PHOTON
1406 MSG_PUTS(_("with Photon GUI."));
1407 # else
1408 # if defined(MSWIN)
1409 MSG_PUTS(_("with GUI."));
1410 # else
1411 # if defined FEAT_GUI_MACVIM
1412 MSG_PUTS(_("with MacVim GUI."));
1413 # else
1414 # if defined (TARGET_API_MAC_CARBON) && TARGET_API_MAC_CARBON
1415 MSG_PUTS(_("with Carbon GUI."));
1416 # else
1417 # if defined (TARGET_API_MAC_OSX) && TARGET_API_MAC_OSX
1418 MSG_PUTS(_("with Cocoa GUI."));
1419 # else
1420 # if defined (MACOS)
1421 MSG_PUTS(_("with (classic) GUI."));
1422 # endif
1423 # endif
1424 # endif
1425 # endif
1426 # endif
1427 # endif
1428 # endif
1429 # endif
1430 # endif
1431 #endif
1432 version_msg(_(" Features included (+) or not (-):\n"));
1434 /* print all the features */
1435 for (i = 0; features[i] != NULL; ++i)
1437 version_msg(features[i]);
1438 if (msg_col > 0)
1439 version_msg(" ");
1442 version_msg("\n");
1443 #ifdef SYS_VIMRC_FILE
1444 version_msg(_(" system vimrc file: \""));
1445 version_msg(SYS_VIMRC_FILE);
1446 version_msg("\"\n");
1447 #endif
1448 #ifdef USR_VIMRC_FILE
1449 version_msg(_(" user vimrc file: \""));
1450 version_msg(USR_VIMRC_FILE);
1451 version_msg("\"\n");
1452 #endif
1453 #ifdef USR_VIMRC_FILE2
1454 version_msg(_(" 2nd user vimrc file: \""));
1455 version_msg(USR_VIMRC_FILE2);
1456 version_msg("\"\n");
1457 #endif
1458 #ifdef USR_VIMRC_FILE3
1459 version_msg(_(" 3rd user vimrc file: \""));
1460 version_msg(USR_VIMRC_FILE3);
1461 version_msg("\"\n");
1462 #endif
1463 #ifdef USR_EXRC_FILE
1464 version_msg(_(" user exrc file: \""));
1465 version_msg(USR_EXRC_FILE);
1466 version_msg("\"\n");
1467 #endif
1468 #ifdef USR_EXRC_FILE2
1469 version_msg(_(" 2nd user exrc file: \""));
1470 version_msg(USR_EXRC_FILE2);
1471 version_msg("\"\n");
1472 #endif
1473 #ifdef FEAT_GUI
1474 # ifdef SYS_GVIMRC_FILE
1475 version_msg(_(" system gvimrc file: \""));
1476 version_msg(SYS_GVIMRC_FILE);
1477 version_msg("\"\n");
1478 # endif
1479 version_msg(_(" user gvimrc file: \""));
1480 version_msg(USR_GVIMRC_FILE);
1481 version_msg("\"\n");
1482 # ifdef USR_GVIMRC_FILE2
1483 version_msg(_("2nd user gvimrc file: \""));
1484 version_msg(USR_GVIMRC_FILE2);
1485 version_msg("\"\n");
1486 # endif
1487 # ifdef USR_GVIMRC_FILE3
1488 version_msg(_("3rd user gvimrc file: \""));
1489 version_msg(USR_GVIMRC_FILE3);
1490 version_msg("\"\n");
1491 # endif
1492 #endif
1493 #ifdef FEAT_GUI
1494 # ifdef SYS_MENU_FILE
1495 version_msg(_(" system menu file: \""));
1496 version_msg(SYS_MENU_FILE);
1497 version_msg("\"\n");
1498 # endif
1499 #endif
1500 #ifdef HAVE_PATHDEF
1501 if (*default_vim_dir != NUL)
1503 version_msg(_(" fall-back for $VIM: \""));
1504 version_msg((char *)default_vim_dir);
1505 version_msg("\"\n");
1507 if (*default_vimruntime_dir != NUL)
1509 version_msg(_(" f-b for $VIMRUNTIME: \""));
1510 version_msg((char *)default_vimruntime_dir);
1511 version_msg("\"\n");
1513 version_msg(_("Compilation: "));
1514 version_msg((char *)all_cflags);
1515 version_msg("\n");
1516 #ifdef VMS
1517 if (*compiler_version != NUL)
1519 version_msg(_("Compiler: "));
1520 version_msg((char *)compiler_version);
1521 version_msg("\n");
1523 #endif
1524 version_msg(_("Linking: "));
1525 version_msg((char *)all_lflags);
1526 #endif
1527 #ifdef DEBUG
1528 version_msg("\n");
1529 version_msg(_(" DEBUG BUILD"));
1530 #endif
1534 * Output a string for the version message. If it's going to wrap, output a
1535 * newline, unless the message is too long to fit on the screen anyway.
1537 static void
1538 version_msg(s)
1539 char *s;
1541 int len = (int)STRLEN(s);
1543 if (!got_int && len < (int)Columns && msg_col + len >= (int)Columns
1544 && *s != '\n')
1545 msg_putchar('\n');
1546 if (!got_int)
1547 MSG_PUTS(s);
1550 static void do_intro_line __ARGS((int row, char_u *mesg, int add_version, int attr));
1553 * Give an introductory message about Vim.
1554 * Only used when starting Vim on an empty file, without a file name.
1555 * Or with the ":intro" command (for Sven :-).
1557 void
1558 intro_message(colon)
1559 int colon; /* TRUE for ":intro" */
1561 int i;
1562 int row;
1563 int blanklines;
1564 int sponsor;
1565 char *p;
1566 static char *(lines[]) =
1568 N_("VIM - Vi IMproved"),
1570 N_("version "),
1571 N_("by Bram Moolenaar et al."),
1572 #ifdef MODIFIED_BY
1573 " ",
1574 #endif
1575 N_("Vim is open source and freely distributable"),
1577 N_("Help poor children in Uganda!"),
1578 N_("type :help iccf<Enter> for information "),
1580 N_("type :q<Enter> to exit "),
1581 N_("type :help<Enter> or <F1> for on-line help"),
1582 #ifdef FEAT_GUI_MACVIM
1583 // TODO: Don't steal the show from version7 help?
1584 N_("type :help macvim<Enter> for MacVim help "),
1585 #else
1586 N_("type :help version7<Enter> for version info"),
1587 #endif
1588 NULL,
1590 N_("Running in Vi compatible mode"),
1591 N_("type :set nocp<Enter> for Vim defaults"),
1592 N_("type :help cp-default<Enter> for info on this"),
1594 #ifdef FEAT_GUI
1595 static char *(gui_lines[]) =
1597 NULL,
1598 NULL,
1599 NULL,
1600 NULL,
1601 #ifdef MODIFIED_BY
1602 NULL,
1603 #endif
1604 NULL,
1605 NULL,
1606 NULL,
1607 N_("menu Help->Orphans for information "),
1608 NULL,
1609 N_("Running modeless, typed text is inserted"),
1610 N_("menu Edit->Global Settings->Toggle Insert Mode "),
1611 N_(" for two modes "),
1612 NULL,
1613 NULL,
1614 NULL,
1615 N_("menu Edit->Global Settings->Toggle Vi Compatible"),
1616 N_(" for Vim defaults "),
1618 #endif
1620 /* blanklines = screen height - # message lines */
1621 blanklines = (int)Rows - ((sizeof(lines) / sizeof(char *)) - 1);
1622 if (!p_cp)
1623 blanklines += 4; /* add 4 for not showing "Vi compatible" message */
1624 #if defined(WIN3264) && !defined(FEAT_GUI_W32)
1625 if (mch_windows95())
1626 blanklines -= 3; /* subtract 3 for showing "Windows 95" message */
1627 #endif
1629 #ifdef FEAT_WINDOWS
1630 /* Don't overwrite a statusline. Depends on 'cmdheight'. */
1631 if (p_ls > 1)
1632 blanklines -= Rows - topframe->fr_height;
1633 #endif
1634 if (blanklines < 0)
1635 blanklines = 0;
1637 /* Show the sponsor and register message one out of four times, the Uganda
1638 * message two out of four times. */
1639 sponsor = (int)time(NULL);
1640 sponsor = ((sponsor & 2) == 0) - ((sponsor & 4) == 0);
1642 /* start displaying the message lines after half of the blank lines */
1643 row = blanklines / 2;
1644 if ((row >= 2 && Columns >= 50) || colon)
1646 for (i = 0; i < (int)(sizeof(lines) / sizeof(char *)); ++i)
1648 p = lines[i];
1649 #ifdef FEAT_GUI
1650 if (p_im && gui.in_use && gui_lines[i] != NULL)
1651 p = gui_lines[i];
1652 #endif
1653 if (p == NULL)
1655 if (!p_cp)
1656 break;
1657 continue;
1659 if (sponsor != 0)
1661 if (strstr(p, "children") != NULL)
1662 p = sponsor < 0
1663 ? N_("Sponsor Vim development!")
1664 : N_("Become a registered Vim user!");
1665 else if (strstr(p, "iccf") != NULL)
1666 p = sponsor < 0
1667 ? N_("type :help sponsor<Enter> for information ")
1668 : N_("type :help register<Enter> for information ");
1669 else if (strstr(p, "Orphans") != NULL)
1670 p = N_("menu Help->Sponsor/Register for information ");
1672 if (*p != NUL)
1673 do_intro_line(row, (char_u *)_(p), i == 2, 0);
1674 ++row;
1676 #if defined(WIN3264) && !defined(FEAT_GUI_W32)
1677 if (mch_windows95())
1679 do_intro_line(++row,
1680 (char_u *)_("WARNING: Windows 95/98/ME detected"),
1681 FALSE, hl_attr(HLF_E));
1682 do_intro_line(++row,
1683 (char_u *)_("type :help windows95<Enter> for info on this"),
1684 FALSE, 0);
1686 #endif
1689 /* Make the wait-return message appear just below the text. */
1690 if (colon)
1691 msg_row = row;
1694 static void
1695 do_intro_line(row, mesg, add_version, attr)
1696 int row;
1697 char_u *mesg;
1698 int add_version;
1699 int attr;
1701 char_u vers[20];
1702 int col;
1703 char_u *p;
1704 int l;
1705 int clen;
1706 #ifdef MODIFIED_BY
1707 # define MODBY_LEN 150
1708 char_u modby[MODBY_LEN];
1710 if (*mesg == ' ')
1712 vim_strncpy(modby, (char_u *)_("Modified by "), MODBY_LEN - 1);
1713 l = STRLEN(modby);
1714 vim_strncpy(modby + l, (char_u *)MODIFIED_BY, MODBY_LEN - l - 1);
1715 mesg = modby;
1717 #endif
1719 /* Center the message horizontally. */
1720 col = vim_strsize(mesg);
1721 if (add_version)
1723 STRCPY(vers, mediumVersion);
1724 if (highest_patch())
1726 /* Check for 9.9x or 9.9xx, alpha/beta version */
1727 if (isalpha((int)mediumVersion[3]))
1729 if (isalpha((int)mediumVersion[4]))
1730 sprintf((char *)vers + 5, ".%d%s", highest_patch(),
1731 mediumVersion + 5);
1732 else
1733 sprintf((char *)vers + 4, ".%d%s", highest_patch(),
1734 mediumVersion + 4);
1736 else
1737 sprintf((char *)vers + 3, ".%d", highest_patch());
1739 col += (int)STRLEN(vers);
1741 col = (Columns - col) / 2;
1742 if (col < 0)
1743 col = 0;
1745 /* Split up in parts to highlight <> items differently. */
1746 for (p = mesg; *p != NUL; p += l)
1748 clen = 0;
1749 for (l = 0; p[l] != NUL
1750 && (l == 0 || (p[l] != '<' && p[l - 1] != '>')); ++l)
1752 #ifdef FEAT_MBYTE
1753 if (has_mbyte)
1755 clen += ptr2cells(p + l);
1756 l += (*mb_ptr2len)(p + l) - 1;
1758 else
1759 #endif
1760 clen += byte2cells(p[l]);
1762 screen_puts_len(p, l, row, col, *p == '<' ? hl_attr(HLF_8) : attr);
1763 col += clen;
1766 /* Add the version number to the version line. */
1767 if (add_version)
1768 screen_puts(vers, row, col, 0);
1772 * ":intro": clear screen, display intro screen and wait for return.
1774 void
1775 ex_intro(eap)
1776 exarg_T *eap UNUSED;
1778 screenclear();
1779 intro_message(TRUE);
1780 wait_return(TRUE);