blob: fb145933106d30577f5a267b1849d997c39f3415 [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];
Bram Moolenaar445f3032013-02-20 16:47:36 +010037
Bram Moolenaar071d4272004-06-13 20:20:40 +000038 void
39make_version()
40{
41 /*
42 * Construct the long version string. Necessary because
43 * VAX C can't catenate strings in the preprocessor.
44 */
45 strcpy(longVersion, VIM_VERSION_LONG_DATE);
46 strcat(longVersion, __DATE__);
47 strcat(longVersion, " ");
48 strcat(longVersion, __TIME__);
49 strcat(longVersion, ")");
50}
51# else
52char *longVersion = VIM_VERSION_LONG_DATE __DATE__ " " __TIME__ ")";
53# endif
54#else
55char *longVersion = VIM_VERSION_LONG;
56#endif
57
Bram Moolenaarfb97f282013-07-09 17:42:46 +020058static void list_features __ARGS((void));
Bram Moolenaar071d4272004-06-13 20:20:40 +000059static void version_msg __ARGS((char *s));
60
61static char *(features[]) =
62{
Bram Moolenaarb5ef5e12013-08-30 16:35:44 +020063#ifdef HAVE_ACL
64 "+acl",
65#else
66 "-acl",
67#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000068#ifdef AMIGA /* only for Amiga systems */
69# ifdef FEAT_ARP
70 "+ARP",
71# else
72 "-ARP",
73# endif
74#endif
75#ifdef FEAT_ARABIC
76 "+arabic",
77#else
78 "-arabic",
79#endif
80#ifdef FEAT_AUTOCMD
81 "+autocmd",
82#else
83 "-autocmd",
84#endif
85#ifdef FEAT_BEVAL
86 "+balloon_eval",
87#else
88 "-balloon_eval",
89#endif
90#ifdef FEAT_BROWSE
91 "+browse",
92#else
93 "-browse",
94#endif
95#ifdef NO_BUILTIN_TCAPS
96 "-builtin_terms",
97#endif
98#ifdef SOME_BUILTIN_TCAPS
99 "+builtin_terms",
100#endif
101#ifdef ALL_BUILTIN_TCAPS
102 "++builtin_terms",
103#endif
104#ifdef FEAT_BYTEOFF
105 "+byte_offset",
106#else
107 "-byte_offset",
108#endif
109#ifdef FEAT_CINDENT
110 "+cindent",
111#else
112 "-cindent",
113#endif
114#ifdef FEAT_CLIENTSERVER
115 "+clientserver",
116#else
117 "-clientserver",
118#endif
119#ifdef FEAT_CLIPBOARD
120 "+clipboard",
121#else
122 "-clipboard",
123#endif
124#ifdef FEAT_CMDL_COMPL
125 "+cmdline_compl",
126#else
127 "-cmdline_compl",
128#endif
129#ifdef FEAT_CMDHIST
130 "+cmdline_hist",
131#else
132 "-cmdline_hist",
133#endif
134#ifdef FEAT_CMDL_INFO
135 "+cmdline_info",
136#else
137 "-cmdline_info",
138#endif
139#ifdef FEAT_COMMENTS
140 "+comments",
141#else
142 "-comments",
143#endif
Bram Moolenaar860cae12010-06-05 23:22:07 +0200144#ifdef FEAT_CONCEAL
145 "+conceal",
146#else
147 "-conceal",
148#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000149#ifdef FEAT_CRYPT
150 "+cryptv",
151#else
152 "-cryptv",
153#endif
154#ifdef FEAT_CSCOPE
155 "+cscope",
156#else
157 "-cscope",
158#endif
Bram Moolenaar860cae12010-06-05 23:22:07 +0200159#ifdef FEAT_CURSORBIND
160 "+cursorbind",
161#else
162 "-cursorbind",
163#endif
Bram Moolenaar17c7c012006-01-26 22:25:15 +0000164#ifdef CURSOR_SHAPE
165 "+cursorshape",
166#else
167 "-cursorshape",
168#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000169#if defined(FEAT_CON_DIALOG) && defined(FEAT_GUI_DIALOG)
170 "+dialog_con_gui",
171#else
172# if defined(FEAT_CON_DIALOG)
173 "+dialog_con",
174# else
175# if defined(FEAT_GUI_DIALOG)
176 "+dialog_gui",
177# else
178 "-dialog",
179# endif
180# endif
181#endif
182#ifdef FEAT_DIFF
183 "+diff",
184#else
185 "-diff",
186#endif
187#ifdef FEAT_DIGRAPHS
188 "+digraphs",
189#else
190 "-digraphs",
191#endif
192#ifdef FEAT_DND
193 "+dnd",
194#else
195 "-dnd",
196#endif
197#ifdef EBCDIC
198 "+ebcdic",
199#else
200 "-ebcdic",
201#endif
202#ifdef FEAT_EMACS_TAGS
203 "+emacs_tags",
204#else
205 "-emacs_tags",
206#endif
207#ifdef FEAT_EVAL
208 "+eval",
209#else
210 "-eval",
211#endif
212#ifdef FEAT_EX_EXTRA
213 "+ex_extra",
214#else
215 "-ex_extra",
216#endif
217#ifdef FEAT_SEARCH_EXTRA
218 "+extra_search",
219#else
220 "-extra_search",
221#endif
222#ifdef FEAT_FKMAP
223 "+farsi",
224#else
225 "-farsi",
226#endif
227#ifdef FEAT_SEARCHPATH
228 "+file_in_path",
229#else
230 "-file_in_path",
231#endif
232#ifdef FEAT_FIND_ID
233 "+find_in_path",
234#else
235 "-find_in_path",
236#endif
Bram Moolenaar446cb832008-06-24 21:56:24 +0000237#ifdef FEAT_FLOAT
238 "+float",
239#else
240 "-float",
241#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000242#ifdef FEAT_FOLDING
243 "+folding",
244#else
245 "-folding",
246#endif
247#ifdef FEAT_FOOTER
248 "+footer",
249#else
250 "-footer",
251#endif
252 /* only interesting on Unix systems */
253#if !defined(USE_SYSTEM) && defined(UNIX)
254 "+fork()",
255#endif
256#ifdef FEAT_GETTEXT
257# ifdef DYNAMIC_GETTEXT
258 "+gettext/dyn",
259# else
260 "+gettext",
261# endif
262#else
263 "-gettext",
264#endif
265#ifdef FEAT_HANGULIN
266 "+hangul_input",
267#else
268 "-hangul_input",
269#endif
270#if (defined(HAVE_ICONV_H) && defined(USE_ICONV)) || defined(DYNAMIC_ICONV)
271# ifdef DYNAMIC_ICONV
272 "+iconv/dyn",
273# else
274 "+iconv",
275# endif
276#else
277 "-iconv",
278#endif
279#ifdef FEAT_INS_EXPAND
280 "+insert_expand",
281#else
282 "-insert_expand",
283#endif
284#ifdef FEAT_JUMPLIST
285 "+jumplist",
286#else
287 "-jumplist",
288#endif
289#ifdef FEAT_KEYMAP
290 "+keymap",
291#else
292 "-keymap",
293#endif
294#ifdef FEAT_LANGMAP
295 "+langmap",
296#else
297 "-langmap",
298#endif
299#ifdef FEAT_LIBCALL
300 "+libcall",
301#else
302 "-libcall",
303#endif
304#ifdef FEAT_LINEBREAK
305 "+linebreak",
306#else
307 "-linebreak",
308#endif
309#ifdef FEAT_LISP
310 "+lispindent",
311#else
312 "-lispindent",
313#endif
314#ifdef FEAT_LISTCMDS
315 "+listcmds",
316#else
317 "-listcmds",
318#endif
319#ifdef FEAT_LOCALMAP
320 "+localmap",
321#else
322 "-localmap",
323#endif
Bram Moolenaar0ba04292010-07-14 23:23:17 +0200324#ifdef FEAT_LUA
325# ifdef DYNAMIC_LUA
326 "+lua/dyn",
327# else
328 "+lua",
329# endif
330#else
331 "-lua",
332#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000333#ifdef FEAT_MENU
334 "+menu",
335#else
336 "-menu",
337#endif
338#ifdef FEAT_SESSION
339 "+mksession",
340#else
341 "-mksession",
342#endif
343#ifdef FEAT_MODIFY_FNAME
344 "+modify_fname",
345#else
346 "-modify_fname",
347#endif
348#ifdef FEAT_MOUSE
349 "+mouse",
350# ifdef FEAT_MOUSESHAPE
351 "+mouseshape",
352# else
353 "-mouseshape",
354# endif
355# else
356 "-mouse",
357#endif
Bram Moolenaar707cfb82012-10-21 04:00:07 +0200358
Bram Moolenaar071d4272004-06-13 20:20:40 +0000359#if defined(UNIX) || defined(VMS)
360# ifdef FEAT_MOUSE_DEC
361 "+mouse_dec",
362# else
363 "-mouse_dec",
364# endif
365# ifdef FEAT_MOUSE_GPM
366 "+mouse_gpm",
367# else
368 "-mouse_gpm",
369# endif
370# ifdef FEAT_MOUSE_JSB
371 "+mouse_jsbterm",
372# else
373 "-mouse_jsbterm",
374# endif
375# ifdef FEAT_MOUSE_NET
376 "+mouse_netterm",
377# else
378 "-mouse_netterm",
379# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000380#endif
Bram Moolenaar707cfb82012-10-21 04:00:07 +0200381
Bram Moolenaar071d4272004-06-13 20:20:40 +0000382#ifdef __QNX__
383# ifdef FEAT_MOUSE_PTERM
384 "+mouse_pterm",
385# else
386 "-mouse_pterm",
387# endif
388#endif
Bram Moolenaar707cfb82012-10-21 04:00:07 +0200389
390#if defined(UNIX) || defined(VMS)
391# ifdef FEAT_MOUSE_SGR
392 "+mouse_sgr",
393# else
394 "-mouse_sgr",
395# endif
396# ifdef FEAT_SYSMOUSE
397 "+mouse_sysmouse",
398# else
399 "-mouse_sysmouse",
400# endif
401# ifdef FEAT_MOUSE_URXVT
402 "+mouse_urxvt",
403# else
404 "-mouse_urxvt",
405# endif
406# ifdef FEAT_MOUSE_XTERM
407 "+mouse_xterm",
408# else
409 "-mouse_xterm",
410# endif
411#endif
412
Bram Moolenaar071d4272004-06-13 20:20:40 +0000413#ifdef FEAT_MBYTE_IME
414# ifdef DYNAMIC_IME
415 "+multi_byte_ime/dyn",
416# else
417 "+multi_byte_ime",
418# endif
419#else
420# ifdef FEAT_MBYTE
421 "+multi_byte",
422# else
423 "-multi_byte",
424# endif
425#endif
426#ifdef FEAT_MULTI_LANG
427 "+multi_lang",
428#else
429 "-multi_lang",
430#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000431#ifdef FEAT_MZSCHEME
Bram Moolenaardf3267e2005-01-25 22:07:05 +0000432# ifdef DYNAMIC_MZSCHEME
433 "+mzscheme/dyn",
434# else
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000435 "+mzscheme",
Bram Moolenaardf3267e2005-01-25 22:07:05 +0000436# endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000437#else
438 "-mzscheme",
439#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000440#ifdef FEAT_NETBEANS_INTG
441 "+netbeans_intg",
442#else
443 "-netbeans_intg",
444#endif
445#ifdef FEAT_GUI_W32
446# ifdef FEAT_OLE
447 "+ole",
448# else
449 "-ole",
450# endif
451#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000452#ifdef FEAT_PATH_EXTRA
453 "+path_extra",
454#else
455 "-path_extra",
456#endif
457#ifdef FEAT_PERL
458# ifdef DYNAMIC_PERL
459 "+perl/dyn",
460# else
461 "+perl",
462# endif
463#else
464 "-perl",
465#endif
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200466#ifdef FEAT_PERSISTENT_UNDO
467 "+persistent_undo",
468#else
469 "-persistent_undo",
470#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000471#ifdef FEAT_PRINTER
472# ifdef FEAT_POSTSCRIPT
473 "+postscript",
474# else
475 "-postscript",
476# endif
477 "+printer",
478#else
479 "-printer",
480#endif
Bram Moolenaar05159a02005-02-26 23:04:13 +0000481#ifdef FEAT_PROFILE
482 "+profile",
483#else
484 "-profile",
485#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000486#ifdef FEAT_PYTHON
487# ifdef DYNAMIC_PYTHON
488 "+python/dyn",
489# else
490 "+python",
491# endif
492#else
493 "-python",
494#endif
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200495#ifdef FEAT_PYTHON3
496# ifdef DYNAMIC_PYTHON3
497 "+python3/dyn",
498# else
499 "+python3",
500# endif
501#else
502 "-python3",
503#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000504#ifdef FEAT_QUICKFIX
505 "+quickfix",
506#else
507 "-quickfix",
508#endif
Bram Moolenaard68071d2006-05-02 22:08:30 +0000509#ifdef FEAT_RELTIME
510 "+reltime",
511#else
512 "-reltime",
513#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000514#ifdef FEAT_RIGHTLEFT
515 "+rightleft",
516#else
517 "-rightleft",
518#endif
519#ifdef FEAT_RUBY
520# ifdef DYNAMIC_RUBY
521 "+ruby/dyn",
522# else
523 "+ruby",
524# endif
525#else
526 "-ruby",
527#endif
528#ifdef FEAT_SCROLLBIND
529 "+scrollbind",
530#else
531 "-scrollbind",
532#endif
533#ifdef FEAT_SIGNS
534 "+signs",
535#else
536 "-signs",
537#endif
538#ifdef FEAT_SMARTINDENT
539 "+smartindent",
540#else
541 "-smartindent",
542#endif
543#ifdef FEAT_SNIFF
544 "+sniff",
545#else
546 "-sniff",
547#endif
Bram Moolenaaref94eec2009-11-11 13:22:11 +0000548#ifdef STARTUPTIME
549 "+startuptime",
550#else
551 "-startuptime",
552#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000553#ifdef FEAT_STL_OPT
554 "+statusline",
555#else
556 "-statusline",
557#endif
558#ifdef FEAT_SUN_WORKSHOP
559 "+sun_workshop",
560#else
561 "-sun_workshop",
562#endif
563#ifdef FEAT_SYN_HL
564 "+syntax",
565#else
566 "-syntax",
567#endif
568 /* only interesting on Unix systems */
569#if defined(USE_SYSTEM) && (defined(UNIX) || defined(__EMX__))
570 "+system()",
571#endif
572#ifdef FEAT_TAG_BINS
573 "+tag_binary",
574#else
575 "-tag_binary",
576#endif
577#ifdef FEAT_TAG_OLDSTATIC
578 "+tag_old_static",
579#else
580 "-tag_old_static",
581#endif
582#ifdef FEAT_TAG_ANYWHITE
583 "+tag_any_white",
584#else
585 "-tag_any_white",
586#endif
587#ifdef FEAT_TCL
588# ifdef DYNAMIC_TCL
589 "+tcl/dyn",
590# else
591 "+tcl",
592# endif
593#else
594 "-tcl",
595#endif
596#if defined(UNIX) || defined(__EMX__)
597/* only Unix (or OS/2 with EMX!) can have terminfo instead of termcap */
598# ifdef TERMINFO
599 "+terminfo",
600# else
601 "-terminfo",
602# endif
603#else /* unix always includes termcap support */
604# ifdef HAVE_TGETENT
605 "+tgetent",
606# else
607 "-tgetent",
608# endif
609#endif
610#ifdef FEAT_TERMRESPONSE
611 "+termresponse",
612#else
613 "-termresponse",
614#endif
615#ifdef FEAT_TEXTOBJ
616 "+textobjects",
617#else
618 "-textobjects",
619#endif
620#ifdef FEAT_TITLE
621 "+title",
622#else
623 "-title",
624#endif
625#ifdef FEAT_TOOLBAR
626 "+toolbar",
627#else
628 "-toolbar",
629#endif
630#ifdef FEAT_USR_CMDS
631 "+user_commands",
632#else
633 "-user_commands",
634#endif
635#ifdef FEAT_VERTSPLIT
636 "+vertsplit",
637#else
638 "-vertsplit",
639#endif
640#ifdef FEAT_VIRTUALEDIT
641 "+virtualedit",
642#else
643 "-virtualedit",
644#endif
645#ifdef FEAT_VISUAL
646 "+visual",
647# ifdef FEAT_VISUALEXTRA
648 "+visualextra",
649# else
650 "-visualextra",
651# endif
652#else
653 "-visual",
654#endif
655#ifdef FEAT_VIMINFO
656 "+viminfo",
657#else
658 "-viminfo",
659#endif
660#ifdef FEAT_VREPLACE
661 "+vreplace",
662#else
663 "-vreplace",
664#endif
665#ifdef FEAT_WILDIGN
666 "+wildignore",
667#else
668 "-wildignore",
669#endif
670#ifdef FEAT_WILDMENU
671 "+wildmenu",
672#else
673 "-wildmenu",
674#endif
675#ifdef FEAT_WINDOWS
676 "+windows",
677#else
678 "-windows",
679#endif
680#ifdef FEAT_WRITEBACKUP
681 "+writebackup",
682#else
683 "-writebackup",
684#endif
685#if defined(UNIX) || defined(VMS)
686# ifdef FEAT_X11
687 "+X11",
688# else
689 "-X11",
690# endif
691#endif
692#ifdef FEAT_XFONTSET
693 "+xfontset",
694#else
695 "-xfontset",
696#endif
697#ifdef FEAT_XIM
698 "+xim",
699#else
700 "-xim",
701#endif
702#if defined(UNIX) || defined(VMS)
703# ifdef USE_XSMP_INTERACT
704 "+xsmp_interact",
705# else
706# ifdef USE_XSMP
707 "+xsmp",
708# else
709 "-xsmp",
710# endif
711# endif
712# ifdef FEAT_XCLIPBOARD
713 "+xterm_clipboard",
714# else
715 "-xterm_clipboard",
716# endif
717#endif
718#ifdef FEAT_XTERM_SAVE
719 "+xterm_save",
720#else
721 "-xterm_save",
722#endif
723#ifdef WIN3264
724# ifdef FEAT_XPM_W32
725 "+xpm_w32",
726# else
727 "-xpm_w32",
728# endif
Bram Moolenaarb5ef5e12013-08-30 16:35:44 +0200729#else
730# ifdef HAVE_XPM
731 "+xpm",
732# else
733 "-xpm",
734# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000735#endif
736 NULL
737};
738
739static int included_patches[] =
740{ /* Add new patch number below this line */
741/**/
Bram Moolenaar4dee1bb2013-08-30 17:11:33 +0200742 15,
743/**/
Bram Moolenaar4e4f5292013-08-30 17:07:01 +0200744 14,
745/**/
Bram Moolenaard2a203b2013-08-30 16:51:18 +0200746 13,
747/**/
Bram Moolenaar604729e2013-08-30 16:44:19 +0200748 12,
749/**/
Bram Moolenaarb5ef5e12013-08-30 16:35:44 +0200750 11,
751/**/
Bram Moolenaar195ef0c2013-08-30 16:00:08 +0200752 10,
753/**/
Bram Moolenaarcf81aef2013-08-25 17:46:08 +0200754 9,
755/**/
Bram Moolenaar41f12052013-08-25 17:01:42 +0200756 8,
757/**/
Bram Moolenaar74cd6242013-08-22 14:14:27 +0200758 7,
759/**/
Bram Moolenaar67652c22013-08-22 12:06:55 +0200760 6,
761/**/
Bram Moolenaarc56c4592013-08-14 17:45:29 +0200762 5,
763/**/
Bram Moolenaarc93df6b2013-08-14 17:11:20 +0200764 4,
765/**/
Bram Moolenaarebefd992013-08-14 14:18:40 +0200766 3,
767/**/
Bram Moolenaar3f0df062013-08-14 13:34:25 +0200768 2,
769/**/
Bram Moolenaar1cfad522013-08-14 12:06:49 +0200770 1,
771/**/
Bram Moolenaar071d4272004-06-13 20:20:40 +0000772 0
773};
774
Bram Moolenaar10d4cec2008-11-30 11:15:09 +0000775/*
776 * Place to put a short description when adding a feature with a patch.
777 * Keep it short, e.g.,: "relative numbers", "persistent undo".
778 * Also add a comment marker to separate the lines.
779 * See the official Vim patches for the diff format: It must use a context of
Bram Moolenaarcbb8eb32008-12-24 13:25:14 +0000780 * one line only. Create it by hand or use "diff -C2" and edit the patch.
Bram Moolenaar10d4cec2008-11-30 11:15:09 +0000781 */
782static char *(extra_patches[]) =
783{ /* Add your patch description below this line */
784/**/
785 NULL
786};
787
Bram Moolenaar071d4272004-06-13 20:20:40 +0000788 int
789highest_patch()
790{
791 int i;
792 int h = 0;
793
794 for (i = 0; included_patches[i] != 0; ++i)
795 if (included_patches[i] > h)
796 h = included_patches[i];
797 return h;
798}
799
800#if defined(FEAT_EVAL) || defined(PROTO)
801/*
802 * Return TRUE if patch "n" has been included.
803 */
804 int
805has_patch(n)
806 int n;
807{
808 int i;
809
810 for (i = 0; included_patches[i] != 0; ++i)
811 if (included_patches[i] == n)
812 return TRUE;
813 return FALSE;
814}
815#endif
816
817 void
818ex_version(eap)
819 exarg_T *eap;
820{
821 /*
822 * Ignore a ":version 9.99" command.
823 */
824 if (*eap->arg == NUL)
825 {
826 msg_putchar('\n');
827 list_version();
828 }
829}
830
Bram Moolenaar445f3032013-02-20 16:47:36 +0100831/*
832 * List all features aligned in columns, dictionary style.
833 */
834 static void
835list_features()
836{
837 int i;
838 int ncol;
839 int nrow;
840 int nfeat = 0;
841 int width = 0;
842
843 /* Find the length of the longest feature name, use that + 1 as the column
844 * width */
845 for (i = 0; features[i] != NULL; ++i)
846 {
Bram Moolenaar5c962632013-02-26 11:25:33 +0100847 int l = (int)STRLEN(features[i]);
Bram Moolenaar445f3032013-02-20 16:47:36 +0100848
849 if (l > width)
850 width = l;
851 ++nfeat;
852 }
853 width += 1;
854
855 if (Columns < width)
856 {
857 /* Not enough screen columns - show one per line */
858 for (i = 0; features[i] != NULL; ++i)
859 {
860 version_msg(features[i]);
861 if (msg_col > 0)
862 msg_putchar('\n');
863 }
864 return;
865 }
866
Bram Moolenaar445f3032013-02-20 16:47:36 +0100867 /* The rightmost column doesn't need a separator.
868 * Sacrifice it to fit in one more column if possible. */
Bram Moolenaarf13f45d2013-02-26 15:27:23 +0100869 ncol = (int) (Columns + 1) / width;
Bram Moolenaar445f3032013-02-20 16:47:36 +0100870 nrow = nfeat / ncol + (nfeat % ncol ? 1 : 0);
871
Bram Moolenaarf13f45d2013-02-26 15:27:23 +0100872 /* i counts columns then rows. idx counts rows then columns. */
Bram Moolenaar445f3032013-02-20 16:47:36 +0100873 for (i = 0; !got_int && i < nrow * ncol; ++i)
874 {
875 int idx = (i / ncol) + (i % ncol) * nrow;
876
877 if (idx < nfeat)
878 {
879 int last_col = (i + 1) % ncol == 0;
880
881 msg_puts((char_u *)features[idx]);
882 if (last_col)
883 {
884 if (msg_col > 0)
885 msg_putchar('\n');
886 }
887 else
888 {
889 while (msg_col % width)
890 msg_putchar(' ');
891 }
892 }
893 else
Bram Moolenaarf13f45d2013-02-26 15:27:23 +0100894 {
895 if (msg_col > 0)
896 msg_putchar('\n');
897 }
Bram Moolenaar445f3032013-02-20 16:47:36 +0100898 }
899}
Bram Moolenaar5c962632013-02-26 11:25:33 +0100900
Bram Moolenaar071d4272004-06-13 20:20:40 +0000901 void
902list_version()
903{
904 int i;
905 int first;
906 char *s = "";
907
908 /*
909 * When adding features here, don't forget to update the list of
910 * internal variables in eval.c!
911 */
912 MSG(longVersion);
913#ifdef WIN3264
914# ifdef FEAT_GUI_W32
915# if defined(_MSC_VER) && (_MSC_VER <= 1010)
916 /* Only MS VC 4.1 and earlier can do Win32s */
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +0000917 MSG_PUTS(_("\nMS-Windows 16/32-bit GUI version"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000918# else
Bram Moolenaard9b87332006-10-03 14:30:41 +0000919# ifdef _WIN64
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +0000920 MSG_PUTS(_("\nMS-Windows 64-bit GUI version"));
Bram Moolenaard9b87332006-10-03 14:30:41 +0000921# else
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +0000922 MSG_PUTS(_("\nMS-Windows 32-bit GUI version"));
Bram Moolenaard9b87332006-10-03 14:30:41 +0000923# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000924# endif
925 if (gui_is_win32s())
926 MSG_PUTS(_(" in Win32s mode"));
927# ifdef FEAT_OLE
928 MSG_PUTS(_(" with OLE support"));
929# endif
930# else
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +0000931# ifdef _WIN64
932 MSG_PUTS(_("\nMS-Windows 64-bit console version"));
933# else
934 MSG_PUTS(_("\nMS-Windows 32-bit console version"));
935# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000936# endif
937#endif
938#ifdef WIN16
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +0000939 MSG_PUTS(_("\nMS-Windows 16-bit version"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000940#endif
941#ifdef MSDOS
942# ifdef DJGPP
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +0000943 MSG_PUTS(_("\n32-bit MS-DOS version"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000944# else
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +0000945 MSG_PUTS(_("\n16-bit MS-DOS version"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000946# endif
947#endif
948#ifdef MACOS
949# ifdef MACOS_X
950# ifdef MACOS_X_UNIX
951 MSG_PUTS(_("\nMacOS X (unix) version"));
952# else
953 MSG_PUTS(_("\nMacOS X version"));
954# endif
955#else
956 MSG_PUTS(_("\nMacOS version"));
957# endif
958#endif
959
Bram Moolenaar071d4272004-06-13 20:20:40 +0000960#ifdef VMS
Bram Moolenaar6949d1d2008-08-25 02:14:05 +0000961 MSG_PUTS(_("\nOpenVMS version"));
Bram Moolenaar3d20ca12006-11-28 16:43:58 +0000962# ifdef HAVE_PATHDEF
963 if (*compiled_arch != NUL)
964 {
965 MSG_PUTS(" - ");
966 MSG_PUTS(compiled_arch);
967 }
968# endif
969
Bram Moolenaar071d4272004-06-13 20:20:40 +0000970#endif
971
972 /* Print the list of patch numbers if there is at least one. */
973 /* Print a range when patches are consecutive: "1-10, 12, 15-40, 42-45" */
974 if (included_patches[0] != 0)
975 {
976 MSG_PUTS(_("\nIncluded patches: "));
977 first = -1;
978 /* find last one */
979 for (i = 0; included_patches[i] != 0; ++i)
980 ;
981 while (--i >= 0)
982 {
983 if (first < 0)
984 first = included_patches[i];
985 if (i == 0 || included_patches[i - 1] != included_patches[i] + 1)
986 {
987 MSG_PUTS(s);
988 s = ", ";
989 msg_outnum((long)first);
990 if (first != included_patches[i])
991 {
992 MSG_PUTS("-");
993 msg_outnum((long)included_patches[i]);
994 }
995 first = -1;
996 }
997 }
998 }
999
Bram Moolenaar10d4cec2008-11-30 11:15:09 +00001000 /* Print the list of extra patch descriptions if there is at least one. */
1001 if (extra_patches[0] != NULL)
1002 {
1003 MSG_PUTS(_("\nExtra patches: "));
1004 s = "";
1005 for (i = 0; extra_patches[i] != NULL; ++i)
1006 {
1007 MSG_PUTS(s);
1008 s = ", ";
1009 MSG_PUTS(extra_patches[i]);
1010 }
1011 }
1012
Bram Moolenaar071d4272004-06-13 20:20:40 +00001013#ifdef MODIFIED_BY
1014 MSG_PUTS("\n");
1015 MSG_PUTS(_("Modified by "));
1016 MSG_PUTS(MODIFIED_BY);
1017#endif
1018
1019#ifdef HAVE_PATHDEF
1020 if (*compiled_user != NUL || *compiled_sys != NUL)
1021 {
1022 MSG_PUTS(_("\nCompiled "));
1023 if (*compiled_user != NUL)
1024 {
1025 MSG_PUTS(_("by "));
1026 MSG_PUTS(compiled_user);
1027 }
1028 if (*compiled_sys != NUL)
1029 {
1030 MSG_PUTS("@");
1031 MSG_PUTS(compiled_sys);
1032 }
1033 }
1034#endif
1035
1036#ifdef FEAT_HUGE
1037 MSG_PUTS(_("\nHuge version "));
1038#else
1039# ifdef FEAT_BIG
1040 MSG_PUTS(_("\nBig version "));
1041# else
1042# ifdef FEAT_NORMAL
1043 MSG_PUTS(_("\nNormal version "));
1044# else
1045# ifdef FEAT_SMALL
1046 MSG_PUTS(_("\nSmall version "));
1047# else
1048 MSG_PUTS(_("\nTiny version "));
1049# endif
1050# endif
1051# endif
1052#endif
1053#ifndef FEAT_GUI
1054 MSG_PUTS(_("without GUI."));
1055#else
1056# ifdef FEAT_GUI_GTK
1057# ifdef FEAT_GUI_GNOME
Bram Moolenaar071d4272004-06-13 20:20:40 +00001058 MSG_PUTS(_("with GTK2-GNOME GUI."));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001059# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001060 MSG_PUTS(_("with GTK2 GUI."));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001061# endif
1062# else
1063# ifdef FEAT_GUI_MOTIF
1064 MSG_PUTS(_("with X11-Motif GUI."));
1065# else
1066# ifdef FEAT_GUI_ATHENA
1067# ifdef FEAT_GUI_NEXTAW
1068 MSG_PUTS(_("with X11-neXtaw GUI."));
1069# else
1070 MSG_PUTS(_("with X11-Athena GUI."));
1071# endif
1072# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001073# ifdef FEAT_GUI_PHOTON
1074 MSG_PUTS(_("with Photon GUI."));
1075# else
1076# if defined(MSWIN)
1077 MSG_PUTS(_("with GUI."));
1078# else
Bram Moolenaar860cae12010-06-05 23:22:07 +02001079# if defined(TARGET_API_MAC_CARBON) && TARGET_API_MAC_CARBON
Bram Moolenaar071d4272004-06-13 20:20:40 +00001080 MSG_PUTS(_("with Carbon GUI."));
1081# else
Bram Moolenaar860cae12010-06-05 23:22:07 +02001082# if defined(TARGET_API_MAC_OSX) && TARGET_API_MAC_OSX
Bram Moolenaar071d4272004-06-13 20:20:40 +00001083 MSG_PUTS(_("with Cocoa GUI."));
1084# else
Bram Moolenaar860cae12010-06-05 23:22:07 +02001085# if defined(MACOS)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001086 MSG_PUTS(_("with (classic) GUI."));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001087# endif
1088# endif
1089# endif
1090# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001091# endif
1092# endif
1093# endif
1094# endif
1095#endif
1096 version_msg(_(" Features included (+) or not (-):\n"));
1097
Bram Moolenaar445f3032013-02-20 16:47:36 +01001098 list_features();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001099
Bram Moolenaar071d4272004-06-13 20:20:40 +00001100#ifdef SYS_VIMRC_FILE
1101 version_msg(_(" system vimrc file: \""));
1102 version_msg(SYS_VIMRC_FILE);
1103 version_msg("\"\n");
1104#endif
1105#ifdef USR_VIMRC_FILE
1106 version_msg(_(" user vimrc file: \""));
1107 version_msg(USR_VIMRC_FILE);
1108 version_msg("\"\n");
1109#endif
1110#ifdef USR_VIMRC_FILE2
1111 version_msg(_(" 2nd user vimrc file: \""));
1112 version_msg(USR_VIMRC_FILE2);
1113 version_msg("\"\n");
1114#endif
1115#ifdef USR_VIMRC_FILE3
1116 version_msg(_(" 3rd user vimrc file: \""));
1117 version_msg(USR_VIMRC_FILE3);
1118 version_msg("\"\n");
1119#endif
1120#ifdef USR_EXRC_FILE
1121 version_msg(_(" user exrc file: \""));
1122 version_msg(USR_EXRC_FILE);
1123 version_msg("\"\n");
1124#endif
1125#ifdef USR_EXRC_FILE2
1126 version_msg(_(" 2nd user exrc file: \""));
1127 version_msg(USR_EXRC_FILE2);
1128 version_msg("\"\n");
1129#endif
1130#ifdef FEAT_GUI
1131# ifdef SYS_GVIMRC_FILE
1132 version_msg(_(" system gvimrc file: \""));
1133 version_msg(SYS_GVIMRC_FILE);
1134 version_msg("\"\n");
1135# endif
1136 version_msg(_(" user gvimrc file: \""));
1137 version_msg(USR_GVIMRC_FILE);
1138 version_msg("\"\n");
1139# ifdef USR_GVIMRC_FILE2
1140 version_msg(_("2nd user gvimrc file: \""));
1141 version_msg(USR_GVIMRC_FILE2);
1142 version_msg("\"\n");
1143# endif
1144# ifdef USR_GVIMRC_FILE3
1145 version_msg(_("3rd user gvimrc file: \""));
1146 version_msg(USR_GVIMRC_FILE3);
1147 version_msg("\"\n");
1148# endif
1149#endif
1150#ifdef FEAT_GUI
1151# ifdef SYS_MENU_FILE
1152 version_msg(_(" system menu file: \""));
1153 version_msg(SYS_MENU_FILE);
1154 version_msg("\"\n");
1155# endif
1156#endif
1157#ifdef HAVE_PATHDEF
1158 if (*default_vim_dir != NUL)
1159 {
1160 version_msg(_(" fall-back for $VIM: \""));
1161 version_msg((char *)default_vim_dir);
1162 version_msg("\"\n");
1163 }
1164 if (*default_vimruntime_dir != NUL)
1165 {
1166 version_msg(_(" f-b for $VIMRUNTIME: \""));
1167 version_msg((char *)default_vimruntime_dir);
1168 version_msg("\"\n");
1169 }
1170 version_msg(_("Compilation: "));
1171 version_msg((char *)all_cflags);
1172 version_msg("\n");
1173#ifdef VMS
1174 if (*compiler_version != NUL)
1175 {
1176 version_msg(_("Compiler: "));
1177 version_msg((char *)compiler_version);
1178 version_msg("\n");
1179 }
1180#endif
1181 version_msg(_("Linking: "));
1182 version_msg((char *)all_lflags);
1183#endif
1184#ifdef DEBUG
1185 version_msg("\n");
1186 version_msg(_(" DEBUG BUILD"));
1187#endif
1188}
1189
1190/*
1191 * Output a string for the version message. If it's going to wrap, output a
1192 * newline, unless the message is too long to fit on the screen anyway.
1193 */
1194 static void
1195version_msg(s)
1196 char *s;
1197{
1198 int len = (int)STRLEN(s);
1199
1200 if (!got_int && len < (int)Columns && msg_col + len >= (int)Columns
1201 && *s != '\n')
1202 msg_putchar('\n');
1203 if (!got_int)
1204 MSG_PUTS(s);
1205}
1206
1207static void do_intro_line __ARGS((int row, char_u *mesg, int add_version, int attr));
1208
1209/*
Bram Moolenaar249f0dd2013-07-04 22:31:03 +02001210 * Show the intro message when not editing a file.
1211 */
1212 void
1213maybe_intro_message()
1214{
1215 if (bufempty()
1216 && curbuf->b_fname == NULL
1217#ifdef FEAT_WINDOWS
1218 && firstwin->w_next == NULL
1219#endif
1220 && vim_strchr(p_shm, SHM_INTRO) == NULL)
1221 intro_message(FALSE);
1222}
1223
1224/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001225 * Give an introductory message about Vim.
1226 * Only used when starting Vim on an empty file, without a file name.
1227 * Or with the ":intro" command (for Sven :-).
1228 */
1229 void
1230intro_message(colon)
1231 int colon; /* TRUE for ":intro" */
1232{
1233 int i;
1234 int row;
1235 int blanklines;
1236 int sponsor;
1237 char *p;
1238 static char *(lines[]) =
1239 {
1240 N_("VIM - Vi IMproved"),
1241 "",
1242 N_("version "),
1243 N_("by Bram Moolenaar et al."),
1244#ifdef MODIFIED_BY
1245 " ",
1246#endif
1247 N_("Vim is open source and freely distributable"),
1248 "",
1249 N_("Help poor children in Uganda!"),
1250 N_("type :help iccf<Enter> for information "),
1251 "",
1252 N_("type :q<Enter> to exit "),
1253 N_("type :help<Enter> or <F1> for on-line help"),
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00001254 N_("type :help version7<Enter> for version info"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001255 NULL,
1256 "",
1257 N_("Running in Vi compatible mode"),
1258 N_("type :set nocp<Enter> for Vim defaults"),
1259 N_("type :help cp-default<Enter> for info on this"),
1260 };
1261#ifdef FEAT_GUI
1262 static char *(gui_lines[]) =
1263 {
1264 NULL,
1265 NULL,
1266 NULL,
1267 NULL,
1268#ifdef MODIFIED_BY
1269 NULL,
1270#endif
1271 NULL,
1272 NULL,
1273 NULL,
1274 N_("menu Help->Orphans for information "),
1275 NULL,
1276 N_("Running modeless, typed text is inserted"),
1277 N_("menu Edit->Global Settings->Toggle Insert Mode "),
1278 N_(" for two modes "),
1279 NULL,
1280 NULL,
1281 NULL,
1282 N_("menu Edit->Global Settings->Toggle Vi Compatible"),
1283 N_(" for Vim defaults "),
1284 };
1285#endif
1286
1287 /* blanklines = screen height - # message lines */
1288 blanklines = (int)Rows - ((sizeof(lines) / sizeof(char *)) - 1);
1289 if (!p_cp)
1290 blanklines += 4; /* add 4 for not showing "Vi compatible" message */
1291#if defined(WIN3264) && !defined(FEAT_GUI_W32)
1292 if (mch_windows95())
1293 blanklines -= 3; /* subtract 3 for showing "Windows 95" message */
1294#endif
1295
1296#ifdef FEAT_WINDOWS
1297 /* Don't overwrite a statusline. Depends on 'cmdheight'. */
1298 if (p_ls > 1)
1299 blanklines -= Rows - topframe->fr_height;
1300#endif
1301 if (blanklines < 0)
1302 blanklines = 0;
1303
1304 /* Show the sponsor and register message one out of four times, the Uganda
1305 * message two out of four times. */
Bram Moolenaarf4cd3e82005-12-22 22:47:02 +00001306 sponsor = (int)time(NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001307 sponsor = ((sponsor & 2) == 0) - ((sponsor & 4) == 0);
1308
1309 /* start displaying the message lines after half of the blank lines */
1310 row = blanklines / 2;
1311 if ((row >= 2 && Columns >= 50) || colon)
1312 {
1313 for (i = 0; i < (int)(sizeof(lines) / sizeof(char *)); ++i)
1314 {
1315 p = lines[i];
1316#ifdef FEAT_GUI
1317 if (p_im && gui.in_use && gui_lines[i] != NULL)
1318 p = gui_lines[i];
1319#endif
1320 if (p == NULL)
1321 {
1322 if (!p_cp)
1323 break;
1324 continue;
1325 }
1326 if (sponsor != 0)
1327 {
1328 if (strstr(p, "children") != NULL)
1329 p = sponsor < 0
1330 ? N_("Sponsor Vim development!")
1331 : N_("Become a registered Vim user!");
1332 else if (strstr(p, "iccf") != NULL)
1333 p = sponsor < 0
1334 ? N_("type :help sponsor<Enter> for information ")
1335 : N_("type :help register<Enter> for information ");
1336 else if (strstr(p, "Orphans") != NULL)
1337 p = N_("menu Help->Sponsor/Register for information ");
1338 }
1339 if (*p != NUL)
1340 do_intro_line(row, (char_u *)_(p), i == 2, 0);
1341 ++row;
1342 }
1343#if defined(WIN3264) && !defined(FEAT_GUI_W32)
1344 if (mch_windows95())
1345 {
1346 do_intro_line(++row,
1347 (char_u *)_("WARNING: Windows 95/98/ME detected"),
1348 FALSE, hl_attr(HLF_E));
1349 do_intro_line(++row,
1350 (char_u *)_("type :help windows95<Enter> for info on this"),
1351 FALSE, 0);
1352 }
1353#endif
1354 }
1355
1356 /* Make the wait-return message appear just below the text. */
1357 if (colon)
1358 msg_row = row;
1359}
1360
1361 static void
1362do_intro_line(row, mesg, add_version, attr)
1363 int row;
1364 char_u *mesg;
1365 int add_version;
1366 int attr;
1367{
1368 char_u vers[20];
1369 int col;
1370 char_u *p;
1371 int l;
1372 int clen;
1373#ifdef MODIFIED_BY
1374# define MODBY_LEN 150
1375 char_u modby[MODBY_LEN];
1376
1377 if (*mesg == ' ')
1378 {
Bram Moolenaar589e43a2008-01-05 12:59:22 +00001379 vim_strncpy(modby, (char_u *)_("Modified by "), MODBY_LEN - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001380 l = STRLEN(modby);
Bram Moolenaar589e43a2008-01-05 12:59:22 +00001381 vim_strncpy(modby + l, (char_u *)MODIFIED_BY, MODBY_LEN - l - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001382 mesg = modby;
1383 }
1384#endif
1385
1386 /* Center the message horizontally. */
1387 col = vim_strsize(mesg);
1388 if (add_version)
1389 {
1390 STRCPY(vers, mediumVersion);
1391 if (highest_patch())
1392 {
1393 /* Check for 9.9x or 9.9xx, alpha/beta version */
Bram Moolenaar22df3f92010-10-27 16:01:27 +02001394 if (isalpha((int)vers[3]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001395 {
Bram Moolenaar552ac132012-03-07 18:03:10 +01001396 int len = (isalpha((int)vers[4])) ? 5 : 4;
1397 sprintf((char *)vers + len, ".%d%s", highest_patch(),
1398 mediumVersion + len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001399 }
1400 else
1401 sprintf((char *)vers + 3, ".%d", highest_patch());
1402 }
1403 col += (int)STRLEN(vers);
1404 }
1405 col = (Columns - col) / 2;
1406 if (col < 0)
1407 col = 0;
1408
1409 /* Split up in parts to highlight <> items differently. */
1410 for (p = mesg; *p != NUL; p += l)
1411 {
1412 clen = 0;
1413 for (l = 0; p[l] != NUL
1414 && (l == 0 || (p[l] != '<' && p[l - 1] != '>')); ++l)
1415 {
1416#ifdef FEAT_MBYTE
1417 if (has_mbyte)
1418 {
1419 clen += ptr2cells(p + l);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001420 l += (*mb_ptr2len)(p + l) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001421 }
1422 else
1423#endif
1424 clen += byte2cells(p[l]);
1425 }
1426 screen_puts_len(p, l, row, col, *p == '<' ? hl_attr(HLF_8) : attr);
1427 col += clen;
1428 }
1429
1430 /* Add the version number to the version line. */
1431 if (add_version)
1432 screen_puts(vers, row, col, 0);
1433}
1434
1435/*
1436 * ":intro": clear screen, display intro screen and wait for return.
1437 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001438 void
1439ex_intro(eap)
Bram Moolenaar0c094b92009-05-14 20:20:33 +00001440 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001441{
1442 screenclear();
1443 intro_message(TRUE);
1444 wait_return(TRUE);
1445}