blob: 69a784e442f0c0490368fd9013297921843b659f [file] [log] [blame]
Bram Moolenaar8cd06ca2005-02-28 22:44:58 +00001/* vi:set ts=8 sts=4 sw=4:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 */
8/*
9 * feature.h: Defines for optional code and preferences
10 *
11 * Edit this file to include/exclude parts of Vim, before compiling.
12 * The only other file that may be edited is Makefile, it contains machine
13 * specific options.
14 *
15 * To include specific options, change the "#if*" and "#endif" into comments,
16 * or uncomment the "#define".
17 * To exclude specific options, change the "#define" into a comment.
18 */
19
20/*
21 * When adding a new feature:
22 * - Add a #define below.
23 * - Add a message in the table above ex_version().
24 * - Add a string to f_has().
25 * - Add a feature to ":help feature-list" in doc/eval.txt.
26 * - Add feature to ":help +feature-list" in doc/various.txt.
27 * - Add comment for the documentation of commands that use the feature.
28 */
29
30/*
31 * Basic choices:
32 * ==============
33 *
34 * +tiny almost no features enabled, not even multiple windows
35 * +small few features enabled, as basic as possible
36 * +normal A default selection of features enabled
37 * +big many features enabled, as rich as possible.
38 * +huge all possible featues enabled.
39 *
40 * When +small is used, +tiny is also included. +normal implies +small, etc.
41 */
42
43/*
44 * Uncomment one of these to override the default. For unix use a configure
45 * argument, see Makefile.
46 */
47#if !defined(FEAT_TINY) && !defined(FEAT_SMALL) && !defined(FEAT_NORMAL) \
48 && !defined(FEAT_BIG) && !defined(FEAT_HUGE)
49/* #define FEAT_TINY */
50/* #define FEAT_SMALL */
51/* #define FEAT_NORMAL */
52/* #define FEAT_BIG */
53/* #define FEAT_HUGE */
54#endif
55
56/*
57 * These executables are made available with the +big feature, because they
58 * are supposed to have enough RAM: Win32 (console & GUI), dos32, OS/2 and VMS.
59 * The dos16 version has very little RAM available, use +small.
60 */
61#if !defined(FEAT_TINY) && !defined(FEAT_SMALL) && !defined(FEAT_NORMAL) \
62 && !defined(FEAT_BIG) && !defined(FEAT_HUGE)
63# if defined(MSWIN) || defined(DJGPP) || defined(OS2) || defined(VMS) || defined(MACOS) || defined(AMIGA)
64# define FEAT_BIG
65# else
66# ifdef MSDOS
67# define FEAT_SMALL
68# else
69# define FEAT_NORMAL
70# endif
71# endif
72#endif
73
74/*
75 * Each feature implies including the "smaller" ones.
76 */
77#ifdef FEAT_HUGE
78# define FEAT_BIG
79#endif
80#ifdef FEAT_BIG
81# define FEAT_NORMAL
82#endif
83#ifdef FEAT_NORMAL
84# define FEAT_SMALL
85#endif
86#ifdef FEAT_SMALL
87# define FEAT_TINY
88#endif
89
90/*
91 * Optional code (see ":help +feature-list")
92 * =============
93 */
94
95/*
96 * +windows Multiple windows. Without this there is no help
97 * window and no status lines.
98 */
99#ifdef FEAT_SMALL
100# define FEAT_WINDOWS
101#endif
102
103/*
104 * +listcmds Vim commands for the buffer list and the argument
105 * list. Without this there is no ":buffer" ":bnext",
106 * ":bdel", ":argdelete", etc.
107 */
108#ifdef FEAT_NORMAL
109# define FEAT_LISTCMDS
110#endif
111
112/*
113 * +vertsplit Vertically split windows.
114 */
115#ifdef FEAT_NORMAL
116# define FEAT_VERTSPLIT
117#endif
118#if defined(FEAT_VERTSPLIT) && !defined(FEAT_WINDOWS)
119# define FEAT_WINDOWS
120#endif
121
122/*
123 * +cmdhist Command line history.
124 */
125#ifdef FEAT_SMALL
126# define FEAT_CMDHIST
127#endif
128
129/*
130 * +jumplist Jumplist, CTRL-O and CTRL-I commands.
131 */
132#ifdef FEAT_SMALL
133# define FEAT_JUMPLIST
134#endif
135
136/* the cmdline-window requires FEAT_VERTSPLIT and FEAT_CMDHIST */
137#if defined(FEAT_VERTSPLIT) && defined(FEAT_CMDHIST)
138# define FEAT_CMDWIN
139#endif
140
141/*
142 * +folding Fold lines.
143 */
144#ifdef FEAT_NORMAL
145# define FEAT_FOLDING
146#endif
147
148/*
149 * +digraphs Digraphs.
150 * In insert mode and on the command line you will be
151 * able to use digraphs. The CTRL-K command will work.
152 * Define OLD_DIGRAPHS to get digraphs compatible with
153 * Vim 5.x. The new ones are from RFC 1345.
154 */
155#ifdef FEAT_NORMAL
156# define FEAT_DIGRAPHS
157/* #define OLD_DIGRAPHS */
158#endif
159
160/*
161 * +langmap 'langmap' option. Only useful when you put your
162 * keyboard in a special language mode, e.g. for typing
163 * greek.
164 */
165#ifdef FEAT_BIG
166# define FEAT_LANGMAP
167#endif
168
169/*
170 * +keymap 'keymap' option. Allows you to map typed keys in
171 * Insert mode for a special language.
172 */
173#ifdef FEAT_BIG
174# define FEAT_KEYMAP
175#endif
176
177/*
178 * +localmap Mappings and abbreviations local to a buffer.
179 */
180#ifdef FEAT_NORMAL
181# define FEAT_LOCALMAP
182#endif
183
184/*
185 * +insert_expand CTRL-N/CTRL-P/CTRL-X in insert mode. Takes about
186 * 4Kbyte of code.
187 */
188#ifdef FEAT_NORMAL
189# define FEAT_INS_EXPAND
190#endif
191
192/*
193 * +cmdline_compl completion of mappings/abbreviations in cmdline mode.
194 * Takes a few Kbyte of code.
195 */
196#ifdef FEAT_NORMAL
197# define FEAT_CMDL_COMPL
198#endif
199
200#ifdef FEAT_NORMAL
201# define VIM_BACKTICK /* internal backtick expansion */
202#endif
203
204/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000205 * +visual Visual mode.
206 * +visualextra Extra features for Visual mode (mostly block operators).
207 */
208#ifdef FEAT_SMALL
209# define FEAT_VISUAL
210# ifdef FEAT_NORMAL
211# define FEAT_VISUALEXTRA
212# endif
213#else
214# ifdef FEAT_CLIPBOARD
215# undef FEAT_CLIPBOARD /* can't use clipboard without Visual mode */
216# endif
217#endif
218
219/*
220 * +virtualedit 'virtualedit' option and its implementation
221 */
222#ifdef FEAT_NORMAL
223# define FEAT_VIRTUALEDIT
224#endif
225
226/*
227 * +vreplace "gR" and "gr" commands.
228 */
229#ifdef FEAT_NORMAL
230# define FEAT_VREPLACE
231#endif
232
233/*
234 * +cmdline_info 'showcmd' and 'ruler' options.
235 */
236#ifdef FEAT_NORMAL
237# define FEAT_CMDL_INFO
238#endif
239
240/*
241 * +linebreak 'showbreak', 'breakat' and 'linebreak' options.
Bram Moolenaar592e0a22004-07-03 16:05:59 +0000242 * Also 'numberwidth'.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000243 */
244#ifdef FEAT_NORMAL
245# define FEAT_LINEBREAK
246#endif
247
248/*
249 * +ex_extra ":retab", ":right", ":left", ":center", ":normal".
250 */
251#ifdef FEAT_NORMAL
252# define FEAT_EX_EXTRA
253#endif
254
255/*
256 * +extra_search 'hlsearch' and 'incsearch' options.
257 */
258#ifdef FEAT_NORMAL
259# define FEAT_SEARCH_EXTRA
260#endif
261
262/*
263 * +quickfix Quickfix commands.
264 */
265#ifdef FEAT_NORMAL
266# define FEAT_QUICKFIX
267#endif
268
269/*
270 * +file_in_path "gf" and "<cfile>" commands.
271 */
272#ifdef FEAT_NORMAL
273# define FEAT_SEARCHPATH
274#endif
275
276/*
277 * +find_in_path "[I" ":isearch" "^W^I", ":checkpath", etc.
278 */
279#ifdef FEAT_NORMAL
280# ifdef FEAT_SEARCHPATH /* FEAT_SEARCHPATH is required */
281# define FEAT_FIND_ID
282# endif
283#endif
284
285/*
286 * +path_extra up/downwards searching in 'path' and 'tags'.
287 */
288#ifdef FEAT_NORMAL
289# define FEAT_PATH_EXTRA
290#endif
291
292/*
293 * +rightleft Right-to-left editing/typing support.
294 */
295#ifdef FEAT_BIG
296# define FEAT_RIGHTLEFT
297#endif
298
299/*
300 * +farsi Farsi (Persian language) Keymap support.
301 * Requires FEAT_RIGHTLEFT.
302 */
303#ifdef FEAT_BIG
304# define FEAT_FKMAP
305#endif
306#ifdef FEAT_FKMAP
307# ifndef FEAT_RIGHTLEFT
308# define FEAT_RIGHTLEFT
309# endif
310#endif
311
312/*
313 * +arabic Arabic keymap and shaping support.
314 * Requires FEAT_RIGHTLEFT and FEAT_MBYTE.
315 */
316#if defined(FEAT_BIG) && !defined(WIN16) && SIZEOF_INT >= 4 && !defined(EBCDIC)
317# define FEAT_ARABIC
318#endif
319#ifdef FEAT_ARABIC
320# ifndef FEAT_RIGHTLEFT
321# define FEAT_RIGHTLEFT
322# endif
323#endif
324
325/*
326 * +emacs_tags When FEAT_EMACS_TAGS defined: Include support for
327 * emacs style TAGS file.
328 */
329#ifdef FEAT_BIG
330# define FEAT_EMACS_TAGS
331#endif
332
333/*
334 * +tag_binary Can use a binary search for the tags file.
335 *
336 * Disabled for EBCDIC:
337 * On OS/390 Unix we have the problem that /bin/sort sorts ASCII instead of
338 * EBCDIC. With this binary search doesn't work, as VIM expects a tag file
339 * sorted by character values. I'm not sure how to fix this. Should we really
340 * do a EBCDIC to ASCII conversion for this??
341 */
342#if defined(FEAT_NORMAL) && !defined(EBCDIC)
343# define FEAT_TAG_BINS
344#endif
345
346/*
347 * +tag_old_static Old style static tags: "file:tag file ..". Slows
348 * down tag searching a bit.
349 */
350#ifdef FEAT_NORMAL
351# define FEAT_TAG_OLDSTATIC
352#endif
353
354/*
355 * +tag_any_white Allow any white space to separate the fields in a tags
356 * file. When not defined, only a TAB is allowed.
357 */
358/* #define FEAT_TAG_ANYWHITE */
359
360/*
361 * +cscope Unix only: Cscope support.
362 */
363#if defined(UNIX) && defined(FEAT_BIG) && !defined(FEAT_CSCOPE) && !defined(MACOS_X)
364# define FEAT_CSCOPE
365#endif
366
367/*
368 * +eval Built-in script language and expression evaluation,
369 * ":let", ":if", etc.
370 */
371#ifdef FEAT_NORMAL
372# define FEAT_EVAL
373#endif
374
375/*
Bram Moolenaar05159a02005-02-26 23:04:13 +0000376 * +profile Profiling for functions and scripts.
377 */
Bram Moolenaar8cd06ca2005-02-28 22:44:58 +0000378#if defined(FEAT_HUGE) \
Bram Moolenaar1e015462005-09-25 22:16:38 +0000379 && defined(FEAT_EVAL) \
Bram Moolenaar8cd06ca2005-02-28 22:44:58 +0000380 && ((defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)) \
381 || defined(WIN3264))
Bram Moolenaar05159a02005-02-26 23:04:13 +0000382# define FEAT_PROFILE
383#endif
384
385/*
Bram Moolenaar1e015462005-09-25 22:16:38 +0000386 * +textobjects Text objects: "vaw", "das", etc.
387 */
388#if defined(FEAT_NORMAL) && defined(FEAT_EVAL)
389# define FEAT_TEXTOBJ
390#endif
391
392/*
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +0000393 * Insert mode completion with 'completefunc'.
394 */
395#if defined(FEAT_INS_EXPAND) && defined(FEAT_EVAL)
396# define FEAT_COMPL_FUNC
397#endif
398
399/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000400 * +user_commands Allow the user to define his own commands.
401 */
402#ifdef FEAT_NORMAL
403# define FEAT_USR_CMDS
404#endif
405
406/*
407 * +printer ":hardcopy" command
408 * +postscript Printing uses PostScript file output.
409 */
410#if defined(FEAT_NORMAL) && (defined(MSWIN) || defined(FEAT_EVAL)) \
411 && !defined(AMIGA)
412# define FEAT_PRINTER
413#endif
414#if defined(FEAT_PRINTER) && ((defined(MSWIN) && defined(MSWINPS)) \
415 || (!defined(MSWIN) && defined(FEAT_EVAL)))
416# define FEAT_POSTSCRIPT
417#endif
418
419/*
420 * +modify_fname modifiers for file name. E.g., "%:p:h".
421 */
422#ifdef FEAT_NORMAL
423# define FEAT_MODIFY_FNAME
424#endif
425
426/*
427 * +autocmd ":autocmd" command
428 */
429#ifdef FEAT_NORMAL
430# define FEAT_AUTOCMD
431#endif
432
433/*
434 * +diff Displaying diffs in a nice way.
435 * Requires +windows and +autocmd.
436 */
437#if defined(FEAT_NORMAL) && defined(FEAT_WINDOWS) && defined(FEAT_AUTOCMD)
438# define FEAT_DIFF
439#endif
440
441/*
442 * +title 'title' and 'icon' options
443 * +statusline 'statusline', 'rulerformat' and special format of
444 * 'titlestring' and 'iconstring' options.
445 * +byte_offset '%o' in 'statusline' and builtin functions line2byte()
446 * and byte2line().
447 * Note: Required for Macintosh.
448 */
449#if defined(FEAT_NORMAL) && !defined(MSDOS)
450# define FEAT_TITLE
451#endif
452
453#ifdef FEAT_NORMAL
454# define FEAT_STL_OPT
455# ifndef FEAT_CMDL_INFO
456# define FEAT_CMDL_INFO /* 'ruler' is required for 'statusline' */
457# endif
458#endif
459
460#ifdef FEAT_NORMAL
461# define FEAT_BYTEOFF
462#endif
463
464/*
465 * +wildignore 'wildignore' and 'backupskip' options
466 * Needed for Unix to make "crontab -e" work.
467 */
468#if defined(FEAT_NORMAL) || defined(UNIX)
469# define FEAT_WILDIGN
470#endif
471
472/*
473 * +wildmenu 'wildmenu' option
474 */
475#if defined(FEAT_NORMAL) && defined(FEAT_WINDOWS)
476# define FEAT_WILDMENU
477#endif
478
479/*
480 * +osfiletype filetype checking in autocommand patterns.
481 * Only on systems that support filetypes (RISC OS).
482 */
483#if 0
484# define FEAT_OSFILETYPE
485# define DFLT_OFT "Text"
486#endif
487
488/*
489 * +viminfo reading/writing the viminfo file. Takes about 8Kbyte
490 * of code.
491 * VIMINFO_FILE Location of user .viminfo file (should start with $).
492 * VIMINFO_FILE2 Location of alternate user .viminfo file.
493 */
494#ifdef FEAT_NORMAL
495# define FEAT_VIMINFO
496/* #define VIMINFO_FILE "$HOME/foo/.viminfo" */
497/* #define VIMINFO_FILE2 "~/bar/.viminfo" */
498#endif
499
500/*
501 * +syntax syntax highlighting. When using this, it's a good
502 * idea to have +autocmd and +eval too.
503 */
504#if defined(FEAT_NORMAL) || defined(PROTO)
505# define FEAT_SYN_HL
506#endif
507
508/*
509 * +builtin_terms Choose one out of the following four:
510 *
511 * NO_BUILTIN_TCAPS Do not include any builtin termcap entries (used only
512 * with HAVE_TGETENT defined).
513 *
514 * (nothing) Machine specific termcap entries will be included.
515 * This is default for win16 to save static data.
516 *
517 * SOME_BUILTIN_TCAPS Include most useful builtin termcap entries (used only
518 * with NO_BUILTIN_TCAPS not defined).
519 * This is the default.
520 *
521 * ALL_BUILTIN_TCAPS Include all builtin termcap entries
522 * (used only with NO_BUILTIN_TCAPS not defined).
523 */
524#ifdef HAVE_TGETENT
525/* #define NO_BUILTIN_TCAPS */
526#endif
527
528#if !defined(NO_BUILTIN_TCAPS) && !defined(FEAT_GUI_W16)
529# ifdef FEAT_BIG
530# define ALL_BUILTIN_TCAPS
531# else
532# define SOME_BUILTIN_TCAPS /* default */
533# endif
534#endif
535
536/*
537 * +lispindent lisp indenting (From Eric Fischer).
538 * +cindent C code indenting (From Eric Fischer).
539 * +smartindent smart C code indenting when the 'si' option is set.
540 *
541 * These two need to be defined when making prototypes.
542 */
543#if defined(FEAT_NORMAL) || defined(PROTO)
544# define FEAT_LISP
545#endif
546
547#if defined(FEAT_NORMAL) || defined(PROTO)
548# define FEAT_CINDENT
549#endif
550
551#ifdef FEAT_NORMAL
552# define FEAT_SMARTINDENT
553#endif
554
555/*
556 * +comments 'comments' option.
557 */
558#ifdef FEAT_NORMAL
559# define FEAT_COMMENTS
560#endif
561
562/*
563 * +cryptv Encryption (by Mohsin Ahmed <mosh@sasi.com>).
564 */
565#if defined(FEAT_NORMAL) || defined(PROTO)
566# define FEAT_CRYPT
567#endif
568
569/*
570 * +mksession ":mksession" command.
571 * Requires +windows and +vertsplit.
572 */
573#if defined(FEAT_NORMAL) && defined(FEAT_WINDOWS) && defined(FEAT_VERTSPLIT)
574# define FEAT_SESSION
575#endif
576
577/*
578 * +multi_lang Multi language support. ":menutrans", ":language", etc.
579 * +gettext Message translations (requires +multi_lang)
580 * (only when "lang" archive unpacked)
581 */
582#ifdef FEAT_NORMAL
583# define FEAT_MULTI_LANG
584#endif
585#if defined(HAVE_GETTEXT) && defined(FEAT_MULTI_LANG) \
586 && (defined(HAVE_LOCALE_H) || defined(X_LOCALE))
587# define FEAT_GETTEXT
588#endif
589
590/*
591 * +multi_byte Generic multi-byte character handling. Doesn't work
592 * with 16 bit ints. Required for GTK+ 2.
593 *
594 * Disabled for EBCDIC:
595 * Multibyte support doesn't work on OS390 Unix currently.
596 */
597#if (defined(FEAT_BIG) || defined(HAVE_GTK2) || defined(FEAT_ARABIC)) \
598 && !defined(FEAT_MBYTE) && !defined(WIN16) \
599 && SIZEOF_INT >= 4 && !defined(EBCDIC)
600# define FEAT_MBYTE
601#endif
602
603/*
604 * +multi_byte_ime Win32 IME input method. Requires +multi_byte.
605 * Only for far-east Windows, so IME can be used to input
606 * chars. Not tested much!
607 */
608#if defined(FEAT_GUI_W32) && !defined(FEAT_MBYTE_IME)
609/* #define FEAT_MBYTE_IME */
610# endif
611
612#if defined(FEAT_MBYTE_IME) && !defined(FEAT_MBYTE)
613# define FEAT_MBYTE
614#endif
615
616#if defined(FEAT_MBYTE) && SIZEOF_INT < 4 && !defined(PROTO)
617 Error: Can only handle multi-byte feature with 32 bit int or larger
618#endif
619
620/* Use iconv() when it's available. */
621#if defined(FEAT_MBYTE) && ((defined(HAVE_ICONV_H) && defined(HAVE_ICONV)) \
622 || defined(DYNAMIC_ICONV))
623# define USE_ICONV
624#endif
625
626/*
627 * +xim X Input Method. For entering special languages like
628 * chinese and Japanese.
629 * +hangul_input Internal Hangul input method. Must be included
630 * through configure: "--enable-hangulin"
631 * Both are for Unix and VMS only.
632 */
633#ifndef FEAT_XIM
634/* #define FEAT_XIM */
635#endif
636
637#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
638# define USE_XIM 1 /* needed for GTK include files */
639#endif
640
641#ifdef FEAT_HANGULIN
642# define HANGUL_DEFAULT_KEYBOARD 2 /* 2 or 3 bulsik keyboard */
643# define ESC_CHG_TO_ENG_MODE /* if defined, when ESC pressed,
644 * turn to english mode
645 */
646# if !defined(FEAT_XFONTSET) && defined(HAVE_X11)
647# define FEAT_XFONTSET /* Hangul input requires xfontset */
648# endif
649# if defined(FEAT_XIM) && !defined(LINT)
650 Error: You should select only ONE of XIM and HANGUL INPUT
651# endif
652#endif
653#if defined(FEAT_HANGULIN) || defined(FEAT_XIM)
654/* # define X_LOCALE */ /* for OS with incomplete locale
655 support, like old linux versions. */
656/* # define SLOW_XSERVER */ /* for extremely slow X server */
657#endif
658
659/*
660 * +xfontset X fontset support. For outputting wide characters.
661 */
662#ifndef FEAT_XFONTSET
Bram Moolenaar9372a112005-12-06 19:59:18 +0000663# if defined(FEAT_MBYTE) && defined(HAVE_X11) && !defined(HAVE_GTK2)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000664# define FEAT_XFONTSET
665# else
666/* # define FEAT_XFONTSET */
667# endif
668#endif
669
670/*
671 * +libcall libcall() function
672 */
673/* Using dlopen() also requires dlsym() to be available. */
674#if defined(HAVE_DLOPEN) && defined(HAVE_DLSYM)
675# define USE_DLOPEN
676#endif
677#if defined(FEAT_EVAL) && (defined(WIN3264) || ((defined(UNIX) || defined(VMS)) \
678 && (defined(USE_DLOPEN) || defined(HAVE_SHL_LOAD))))
679# define FEAT_LIBCALL
680#endif
681
682/*
683 * +scrollbind synchronization of split windows
684 */
685#if defined(FEAT_NORMAL) && defined(FEAT_WINDOWS)
686# define FEAT_SCROLLBIND
687#endif
688
689/*
690 * +menu ":menu" command
691 */
692#ifdef FEAT_NORMAL
693# define FEAT_MENU
694# ifdef FEAT_GUI_W32
695# define FEAT_TEAROFF
696# endif
697#endif
698
699/* There are two ways to use XPM. */
700#if (defined(HAVE_XM_XPMP_H) && defined(FEAT_GUI_MOTIF)) \
701 || defined(HAVE_X11_XPM_H)
702# define HAVE_XPM 1
703#endif
704
705/*
706 * +toolbar Include code for a toolbar (for the Win32 GUI, GTK
707 * always has it). But only if menus are enabled.
708 */
709#if defined(FEAT_NORMAL) && defined(FEAT_MENU) \
Bram Moolenaar9372a112005-12-06 19:59:18 +0000710 && (defined(FEAT_GUI_GTK) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000711 || defined(FEAT_GUI_MSWIN) \
712 || ((defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_ATHENA)) \
713 && defined(HAVE_XPM)) \
714 || defined(FEAT_GUI_PHOTON))
715# define FEAT_TOOLBAR
716#endif
Bram Moolenaar843ee412004-06-30 16:16:41 +0000717
718
Bram Moolenaar071d4272004-06-13 20:20:40 +0000719#if defined(FEAT_TOOLBAR) && !defined(FEAT_MENU)
720# define FEAT_MENU
721#endif
722
723/*
724 * +browse ":browse" command.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000725 */
Bram Moolenaar9372a112005-12-06 19:59:18 +0000726#if defined(FEAT_NORMAL) && (defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_GTK) || defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000727# define FEAT_BROWSE
728#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000729
730/*
731 * +dialog_gui Use GUI dialog.
732 * +dialog_con May use Console dialog.
733 * When none of these defined there is no dialog support.
734 */
735#ifdef FEAT_NORMAL
736# if ((defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_MOTIF)) \
737 && defined(HAVE_X11_XPM_H)) \
738 || defined(FEAT_GUI_GTK) \
739 || defined(FEAT_GUI_PHOTON) \
740 || defined(FEAT_GUI_MSWIN) \
Bram Moolenaar9372a112005-12-06 19:59:18 +0000741 || defined(FEAT_GUI_MAC)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000742# define FEAT_CON_DIALOG
743# define FEAT_GUI_DIALOG
744# else
745# define FEAT_CON_DIALOG
746# endif
747#endif
748#if !defined(FEAT_GUI_DIALOG) && (defined(FEAT_GUI_MOTIF) \
Bram Moolenaar9372a112005-12-06 19:59:18 +0000749 || defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_GTK))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000750/* need a dialog to show error messages when starting from the desktop */
751# define FEAT_GUI_DIALOG
752#endif
753#if defined(FEAT_GUI_DIALOG) && \
754 (defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_ATHENA) \
Bram Moolenaar9372a112005-12-06 19:59:18 +0000755 || defined(FEAT_GUI_GTK) || defined(FEAT_GUI_MSWIN) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000756 || defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC))
757# define FEAT_GUI_TEXTDIALOG
758#endif
759
760/* Mac specific thing: Codewarrior interface. */
761#ifdef FEAT_GUI_MAC
762# define FEAT_CW_EDITOR
763#endif
764
765/*
766 * Preferences:
767 * ============
768 */
769
770/*
771 * +writebackup 'writebackup' is default on:
772 * Use a backup file while overwriting a file. But it's
773 * deleted again when 'backup' is not set. Changing this
774 * is strongly discouraged: You can loose all your
775 * changes when the computer crashes while writing the
776 * file.
777 * VMS note: It does work on VMS as well, but because of
778 * version handling it does not have any purpose.
779 * Overwrite will write to the new version.
780 */
781#ifndef VMS
782# define FEAT_WRITEBACKUP
783#endif
784
785/*
786 * +xterm_save The t_ti and t_te entries for the builtin xterm will
787 * be set to save the screen when starting Vim and
788 * restoring it when exiting.
789 */
790/* #define FEAT_XTERM_SAVE */
791
792/*
793 * DEBUG Output a lot of debugging garbage.
794 */
795/* #define DEBUG */
796
797/*
798 * STARTUPTIME Time the startup process. Writes a "vimstartup" file
799 * with timestamps.
800 */
801/* #define STARTUPTIME "vimstartup" */
802
803/*
804 * MEM_PROFILE Debugging of memory allocation and freeing.
805 */
806/* #define MEM_PROFILE */
807
808/*
809 * VIMRC_FILE Name of the .vimrc file in current dir.
810 */
811/* #define VIMRC_FILE ".vimrc" */
812
813/*
814 * EXRC_FILE Name of the .exrc file in current dir.
815 */
816/* #define EXRC_FILE ".exrc" */
817
818/*
819 * GVIMRC_FILE Name of the .gvimrc file in current dir.
820 */
821/* #define GVIMRC_FILE ".gvimrc" */
822
823/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000824 * SESSION_FILE Name of the default ":mksession" file.
825 */
826#define SESSION_FILE "Session.vim"
827
828/*
829 * USR_VIMRC_FILE Name of the user .vimrc file.
830 * USR_VIMRC_FILE2 Name of alternate user .vimrc file.
831 * USR_VIMRC_FILE3 Name of alternate user .vimrc file.
832 */
833/* #define USR_VIMRC_FILE "~/foo/.vimrc" */
834/* #define USR_VIMRC_FILE2 "~/bar/.vimrc" */
835/* #define USR_VIMRC_FILE3 "$VIM/.vimrc" */
836
837/*
838 * EVIM_FILE Name of the evim.vim script file
839 */
840/* #define EVIM_FILE "$VIMRUNTIME/evim.vim" */
841
842/*
843 * USR_EXRC_FILE Name of the user .exrc file.
844 * USR_EXRC_FILE2 Name of the alternate user .exrc file.
845 */
846/* #define USR_EXRC_FILE "~/foo/.exrc" */
847/* #define USR_EXRC_FILE2 "~/bar/.exrc" */
848
849/*
850 * USR_GVIMRC_FILE Name of the user .gvimrc file.
851 * USR_GVIMRC_FILE2 Name of the alternate user .gvimrc file.
852 */
853/* #define USR_GVIMRC_FILE "~/foo/.gvimrc" */
854/* #define USR_GVIMRC_FILE2 "~/bar/.gvimrc" */
855/* #define USR_GVIMRC_FILE3 "$VIM/.gvimrc" */
856
857/*
858 * SYS_VIMRC_FILE Name of the system-wide .vimrc file.
859 */
860/* #define SYS_VIMRC_FILE "/etc/vimrc" */
861
862/*
863 * SYS_GVIMRC_FILE Name of the system-wide .gvimrc file.
864 */
865/* #define SYS_GVIMRC_FILE "/etc/gvimrc" */
866
867/*
868 * DFLT_HELPFILE Name of the help file.
869 */
870/* # define DFLT_HELPFILE "$VIMRUNTIME/doc/help.txt.gz" */
871
872/*
873 * File names for:
874 * FILETYPE_FILE switch on file type detection
875 * FTPLUGIN_FILE switch on loading filetype plugin files
876 * INDENT_FILE switch on loading indent files
877 * FTOFF_FILE switch off file type detection
878 * FTPLUGOF_FILE switch off loading settings files
879 * INDOFF_FILE switch off loading indent files
880 */
881/* # define FILETYPE_FILE "filetype.vim" */
882/* # define FTPLUGIN_FILE "ftplugin.vim" */
883/* # define INDENT_FILE "indent.vim" */
884/* # define FTOFF_FILE "ftoff.vim" */
885/* # define FTPLUGOF_FILE "ftplugof.vim" */
886/* # define INDOFF_FILE "indoff.vim" */
887
888/*
889 * SYS_MENU_FILE Name of the default menu.vim file.
890 */
891/* # define SYS_MENU_FILE "$VIMRUNTIME/menu.vim" */
892
893/*
894 * SYS_OPTWIN_FILE Name of the default optwin.vim file.
895 */
896#ifndef SYS_OPTWIN_FILE
897# define SYS_OPTWIN_FILE "$VIMRUNTIME/optwin.vim"
898#endif
899
900/*
901 * SYNTAX_FNAME Name of a syntax file, where %s is the syntax name.
902 */
903/* #define SYNTAX_FNAME "/foo/%s.vim" */
904
905/*
906 * RUNTIME_DIRNAME Generic name for the directory of the runtime files.
907 */
908#ifndef RUNTIME_DIRNAME
909# define RUNTIME_DIRNAME "runtime"
910#endif
911
912/*
913 * RUNTIME_GLOBAL Directory name for global Vim runtime directory.
914 * Don't define this if the preprocessor can't handle
915 * string concatenation.
916 * Also set by "--with-global-runtime" configure argument.
917 */
918/* #define RUNTIME_GLOBAL "/etc/vim" */
919
920/*
921 * MODIFIED_BY Name of who modified Vim. Required when distributing
922 * a modifed version of Vim.
923 * Also from the "--with-modified-by" configure argument.
924 */
925/* #define MODIFIED_BY "John Doe" */
926
927/*
928 * Machine dependent:
929 * ==================
930 */
931
932/*
933 * +fork Unix only: fork() support (detected by configure)
934 * +system Use system() instead of fork/exec for starting a
935 * shell. Doesn't work for the GUI!
936 */
937/* #define USE_SYSTEM */
938
939/*
940 * +X11 Unix only. Include code for xterm title saving and X
941 * clipboard. Only works if HAVE_X11 is also defined.
942 */
Bram Moolenaar843ee412004-06-30 16:16:41 +0000943#if (defined(FEAT_NORMAL) || defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_ATHENA))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000944# define WANT_X11
945#endif
946
947/*
948 * XSMP - X11 Session Management Protocol
949 * It may be preferred to disable this if the GUI supports it (e.g.,
950 * GNOME/KDE) and implement save-yourself etc. through that, but it may also
951 * be cleaner to have all SM-aware vims do the same thing (libSM does not
952 * depend upon X11).
953 * If your GUI wants to support SM itself, change this ifdef.
954 * I'm assuming that any X11 implementation will cope with this for now.
955 */
956#if defined(HAVE_X11) && defined(WANT_X11) && defined(HAVE_X11_SM_SMLIB_H)
957# define USE_XSMP
958#endif
959#if defined(USE_XSMP_INTERACT) && !defined(USE_XSMP)
960# undef USE_XSMP_INTERACT
961#endif
962
963/*
964 * +mouse_xterm Unix only: Include code for xterm mouse handling.
965 * +mouse_dec idem, for Dec mouse handling.
966 * +mouse_jsbterm idem, for Jsbterm mouse handling.
967 * +mouse_netterm idem, for Netterm mouse handling.
968 * (none) MS-DOS mouse support.
969 * +mouse_gpm Unix only: Include code for Linux console mouse
970 * handling.
971 * +mouse_pterm PTerm mouse support for QNX
972 * +mouse Any mouse support (any of the above enabled).
973 */
974/* OS/2 and Amiga console have no mouse support */
Bram Moolenaar5b962cf2005-12-12 21:58:40 +0000975#if !defined(AMIGA) && !defined(OS2)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000976# ifdef FEAT_NORMAL
977# define FEAT_MOUSE_XTERM
978# endif
979# ifdef FEAT_BIG
980# define FEAT_MOUSE_NET
981# endif
982# ifdef FEAT_BIG
983# define FEAT_MOUSE_DEC
984# endif
985# if defined(FEAT_NORMAL) && (defined(MSDOS) || defined(WIN3264))
986# define DOS_MOUSE
987# endif
988# if defined(FEAT_NORMAL) && defined(__QNX__)
989# define FEAT_MOUSE_PTERM
990# endif
991#endif
992
993#if defined(FEAT_NORMAL) && defined(HAVE_GPM)
994# define FEAT_MOUSE_GPM
995#endif
996/* Define FEAT_MOUSE when any of the above is defined or FEAT_GUI. */
997#if !defined(FEAT_MOUSE_TTY) && (defined(FEAT_MOUSE_XTERM) \
998 || defined(FEAT_MOUSE_NET) || defined(FEAT_MOUSE_DEC) \
999 || defined(DOS_MOUSE) || defined(FEAT_MOUSE_GPM) \
1000 || defined(FEAT_MOUSE_JSB) || defined(FEAT_MOUSE_PTERM))
1001# define FEAT_MOUSE_TTY /* include non-GUI mouse support */
1002#endif
1003#if !defined(FEAT_MOUSE) && (defined(FEAT_MOUSE_TTY) || defined(FEAT_GUI))
1004# define FEAT_MOUSE /* include generic mouse support */
1005#endif
1006
1007/*
1008 * +clipboard Clipboard support. Always used for the GUI.
1009 * +xterm_clipboard Unix only: Include code for handling the clipboard
1010 * in an xterm like in the GUI.
1011 */
1012#ifdef FEAT_GUI
1013# ifndef FEAT_CLIPBOARD
1014# define FEAT_CLIPBOARD
1015# ifndef FEAT_VISUAL
1016# define FEAT_VISUAL
1017# endif
1018# endif
1019#endif
1020
1021#if defined(FEAT_NORMAL) && defined(FEAT_VISUAL) \
1022 && (defined(UNIX) || defined(VMS)) \
1023 && defined(WANT_X11) && defined(HAVE_X11)
1024# define FEAT_XCLIPBOARD
1025# ifndef FEAT_CLIPBOARD
1026# define FEAT_CLIPBOARD
1027# endif
1028#endif
1029
1030/*
1031 * +dnd Drag'n'drop support. Always used for the GTK+ GUI.
1032 */
1033#if defined(FEAT_CLIPBOARD) && defined(FEAT_GUI_GTK)
1034# define FEAT_DND
1035#endif
1036
1037#if defined(FEAT_GUI_MSWIN) && defined(FEAT_SMALL)
1038# define MSWIN_FIND_REPLACE /* include code for find/replace dialog */
1039# define MSWIN_FR_BUFSIZE 256
1040#endif
1041
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001042#if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_MOTIF) \
Bram Moolenaar9372a112005-12-06 19:59:18 +00001043 || defined(MSWIN_FIND_REPLACE)
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001044# define FIND_REPLACE_DIALOG 1
1045#endif
1046
Bram Moolenaar071d4272004-06-13 20:20:40 +00001047/*
1048 * +clientserver Remote control via the remote_send() function
1049 * and the --remote argument
1050 */
1051#if (defined(WIN32) || defined(FEAT_XCLIPBOARD)) && defined(FEAT_EVAL)
1052# define FEAT_CLIENTSERVER
1053#endif
1054
1055/*
1056 * +termresponse send t_RV to obtain terminal response. Used for xterm
1057 * to check if mouse dragging can be used and if term
1058 * codes can be obtaind.
1059 */
1060#if (defined(FEAT_NORMAL) || defined(FEAT_MOUSE)) && defined(HAVE_TGETENT)
1061# define FEAT_TERMRESPONSE
1062#endif
1063
1064/*
1065 * cursor shape Adjust the shape of the cursor to the mode.
1066 * mouse shape Adjust the shape of the mouse pointer to the mode.
1067 */
1068#ifdef FEAT_NORMAL
1069/* MS-DOS console and Win32 console can change cursor shape */
1070# if defined(MSDOS) || (defined(WIN3264) && !defined(FEAT_GUI_W32))
1071# define MCH_CURSOR_SHAPE
1072# endif
1073# if defined(FEAT_GUI_W32) || defined(FEAT_GUI_W16) || defined(FEAT_GUI_MOTIF) \
Bram Moolenaar9372a112005-12-06 19:59:18 +00001074 || defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_GTK) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00001075 || defined(FEAT_GUI_PHOTON)
1076# define FEAT_MOUSESHAPE
1077# endif
1078#endif
1079
1080/* GUI and some consoles can change the shape of the cursor. The code is also
1081 * needed for the 'mouseshape' option. */
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00001082#if defined(FEAT_GUI) || defined(MCH_CURSOR_SHAPE) || defined(FEAT_MOUSESHAPE) \
1083 || (defined(UNIX) && defined(FEAT_NORMAL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001084# define CURSOR_SHAPE
1085#endif
1086
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001087#if defined(FEAT_MZSCHEME) && (defined(FEAT_GUI_W32) || defined(FEAT_GUI_GTK) \
1088 || defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_ATHENA) \
Bram Moolenaar9372a112005-12-06 19:59:18 +00001089 || defined(FEAT_GUI_MAC))
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001090# define MZSCHEME_GUI_THREADS
1091#endif
1092
Bram Moolenaar071d4272004-06-13 20:20:40 +00001093/*
1094 * +ARP Amiga only. Use arp.library, DOS 2.0 is not required.
1095 */
1096#ifndef NO_ARP
1097# define FEAT_ARP
1098#endif
1099
1100/*
1101 * +GUI_Athena To compile Vim with or without the GUI (gvim) you have
Bram Moolenaarbc045ea2005-06-05 22:01:26 +00001102 * +GUI_Motif to edit the Makefile.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001103 */
1104
1105/*
1106 * +ole Win32 OLE automation: Use Makefile.ovc.
1107 */
1108
1109/*
1110 * These features can only be included by using a configure argument. See the
1111 * Makefile for a line to uncomment.
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001112 * +mzscheme MzScheme interface: "--enable-mzscheme"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001113 * +perl Perl interface: "--enable-perlinterp"
1114 * +python Python interface: "--enable-pythoninterp"
1115 * +tcl TCL interface: "--enable-tclinterp"
1116 * +sniff Sniff interface: "--enable-sniff"
1117 * +sun_workshop Sun Workshop integegration
1118 * +netbeans_intg Netbeans integration
1119 */
1120
1121/*
1122 * These features are automatically detected:
1123 * +terminfo
1124 * +tgetent
1125 */
1126
1127/*
1128 * The Sun Workshop features currently only work with Motif.
1129 */
1130#if !defined(FEAT_GUI_MOTIF) && defined(FEAT_SUN_WORKSHOP)
1131# undef FEAT_SUN_WORKSHOP
1132#endif
1133
1134/*
1135 * The Netbeans features currently only work with Motif and GTK and Win32.
1136 * It also requires +listcmds and +eval.
1137 */
1138#if ((!defined(FEAT_GUI_MOTIF) && !defined(FEAT_GUI_GTK) && !defined(FEAT_GUI_W32)) \
1139 || !defined(FEAT_LISTCMDS) || !defined(FEAT_EVAL)) \
1140 && defined(FEAT_NETBEANS_INTG)
1141# undef FEAT_NETBEANS_INTG
1142#endif
1143
1144/*
1145 * +signs Allow signs to be displayed to the left of text lines.
1146 * Adds the ":sign" command.
1147 */
1148#if defined(FEAT_BIG) || defined(FEAT_SUN_WORKSHOP) \
1149 || defined(FEAT_NETBEANS_INTG)
1150# define FEAT_SIGNS
1151# if ((defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_ATHENA)) \
1152 && defined(HAVE_X11_XPM_H)) \
1153 || defined(FEAT_GUI_GTK) \
1154 || (defined(WIN32) && defined(FEAT_GUI))
1155# define FEAT_SIGN_ICONS
1156# endif
1157#endif
1158
1159/*
1160 * +balloon_eval Allow balloon expression evaluation. Used with a
1161 * debugger and for tooltips.
1162 * Only for GUIs where it was implemented.
1163 */
1164#if (defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_ATHENA) \
1165 || defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32)) \
1166 && ( (defined(FEAT_TOOLBAR) \
1167 && !defined(FEAT_GUI_GTK) && !defined(FEAT_GUI_W32)) \
1168 || defined(FEAT_SUN_WORKSHOP) \
Bram Moolenaar44ecf652005-03-07 23:09:59 +00001169 || defined(FEAT_NETBEANS_INTG) || defined(FEAT_EVAL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001170# define FEAT_BEVAL
1171# if !defined(FEAT_XFONTSET) && !defined(FEAT_GUI_GTK) \
Bram Moolenaar9372a112005-12-06 19:59:18 +00001172 && !defined(FEAT_GUI_W32)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001173# define FEAT_XFONTSET
1174# endif
1175#endif
1176
1177#if defined(FEAT_BEVAL) && (defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_ATHENA))
1178# define FEAT_BEVAL_TIP /* balloon eval used for toolbar tooltip */
1179#endif
1180
1181#if defined(FEAT_SUN_WORKSHOP) || defined(FEAT_NETBEANS_INTG)
1182/*
1183 * The following features are (currently) only used by Sun Visual WorkShop 6
1184 * and NetBeans. These features could be used with other integrations with
1185 * debuggers so I've used separate feature defines.
1186 */
1187# if !defined(FEAT_MENU)
1188# define FEAT_MENU
1189# endif
1190#endif
1191
1192#if defined(FEAT_SUN_WORKSHOP)
1193/*
1194 * Use an alternative method of X input for a secondary
1195 * command input.
1196 */
1197# define ALT_X_INPUT
1198
1199/*
1200 * +footer Motif only: Add a message area at the bottom of the
1201 * main window area.
1202 */
1203# define FEAT_FOOTER
1204
1205#endif