blob: 83ab55dffd566188f4116b835e02d654c9a944b7 [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.
Bram Moolenaar3577c6f2008-06-24 21:16:56 +000038 * +huge all possible features enabled.
Bram Moolenaar071d4272004-06-13 20:20:40 +000039 *
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/*
Bram Moolenaar56be9502010-06-06 14:20:26 +0200130 * Message history is fixed at 200 message, 20 for the tiny version.
Bram Moolenaar4770d092006-01-12 23:22:24 +0000131 */
132#ifdef FEAT_SMALL
Bram Moolenaar6773b2b2010-05-30 16:01:37 +0200133# define MAX_MSG_HIST_LEN 200
Bram Moolenaar4770d092006-01-12 23:22:24 +0000134#else
135# define MAX_MSG_HIST_LEN 20
136#endif
137
138/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000139 * +jumplist Jumplist, CTRL-O and CTRL-I commands.
140 */
141#ifdef FEAT_SMALL
142# define FEAT_JUMPLIST
143#endif
144
145/* the cmdline-window requires FEAT_VERTSPLIT and FEAT_CMDHIST */
146#if defined(FEAT_VERTSPLIT) && defined(FEAT_CMDHIST)
147# define FEAT_CMDWIN
148#endif
149
150/*
151 * +folding Fold lines.
152 */
153#ifdef FEAT_NORMAL
154# define FEAT_FOLDING
155#endif
156
157/*
158 * +digraphs Digraphs.
159 * In insert mode and on the command line you will be
160 * able to use digraphs. The CTRL-K command will work.
161 * Define OLD_DIGRAPHS to get digraphs compatible with
162 * Vim 5.x. The new ones are from RFC 1345.
163 */
164#ifdef FEAT_NORMAL
165# define FEAT_DIGRAPHS
166/* #define OLD_DIGRAPHS */
167#endif
168
169/*
170 * +langmap 'langmap' option. Only useful when you put your
171 * keyboard in a special language mode, e.g. for typing
172 * greek.
173 */
174#ifdef FEAT_BIG
175# define FEAT_LANGMAP
176#endif
177
178/*
179 * +keymap 'keymap' option. Allows you to map typed keys in
180 * Insert mode for a special language.
181 */
182#ifdef FEAT_BIG
183# define FEAT_KEYMAP
184#endif
185
186/*
187 * +localmap Mappings and abbreviations local to a buffer.
188 */
189#ifdef FEAT_NORMAL
190# define FEAT_LOCALMAP
191#endif
192
193/*
194 * +insert_expand CTRL-N/CTRL-P/CTRL-X in insert mode. Takes about
195 * 4Kbyte of code.
196 */
197#ifdef FEAT_NORMAL
198# define FEAT_INS_EXPAND
199#endif
200
201/*
202 * +cmdline_compl completion of mappings/abbreviations in cmdline mode.
203 * Takes a few Kbyte of code.
204 */
205#ifdef FEAT_NORMAL
206# define FEAT_CMDL_COMPL
207#endif
208
209#ifdef FEAT_NORMAL
210# define VIM_BACKTICK /* internal backtick expansion */
211#endif
212
213/*
Bram Moolenaar24ff9e32014-03-12 17:56:48 +0100214 * +visual Visual mode - now always included.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000215 * +visualextra Extra features for Visual mode (mostly block operators).
216 */
Bram Moolenaar24ff9e32014-03-12 17:56:48 +0100217#define FEAT_VISUAL
218#ifdef FEAT_NORMAL
219# define FEAT_VISUALEXTRA
Bram Moolenaar071d4272004-06-13 20:20:40 +0000220#endif
221
222/*
223 * +virtualedit 'virtualedit' option and its implementation
224 */
225#ifdef FEAT_NORMAL
226# define FEAT_VIRTUALEDIT
227#endif
228
229/*
230 * +vreplace "gR" and "gr" commands.
231 */
232#ifdef FEAT_NORMAL
233# define FEAT_VREPLACE
234#endif
235
236/*
237 * +cmdline_info 'showcmd' and 'ruler' options.
238 */
239#ifdef FEAT_NORMAL
240# define FEAT_CMDL_INFO
241#endif
242
243/*
244 * +linebreak 'showbreak', 'breakat' and 'linebreak' options.
Bram Moolenaar592e0a22004-07-03 16:05:59 +0000245 * Also 'numberwidth'.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000246 */
247#ifdef FEAT_NORMAL
248# define FEAT_LINEBREAK
249#endif
250
251/*
252 * +ex_extra ":retab", ":right", ":left", ":center", ":normal".
253 */
254#ifdef FEAT_NORMAL
255# define FEAT_EX_EXTRA
256#endif
257
258/*
259 * +extra_search 'hlsearch' and 'incsearch' options.
260 */
261#ifdef FEAT_NORMAL
262# define FEAT_SEARCH_EXTRA
263#endif
264
265/*
266 * +quickfix Quickfix commands.
267 */
268#ifdef FEAT_NORMAL
269# define FEAT_QUICKFIX
270#endif
271
272/*
273 * +file_in_path "gf" and "<cfile>" commands.
274 */
275#ifdef FEAT_NORMAL
276# define FEAT_SEARCHPATH
277#endif
278
279/*
280 * +find_in_path "[I" ":isearch" "^W^I", ":checkpath", etc.
281 */
282#ifdef FEAT_NORMAL
283# ifdef FEAT_SEARCHPATH /* FEAT_SEARCHPATH is required */
284# define FEAT_FIND_ID
285# endif
286#endif
287
288/*
289 * +path_extra up/downwards searching in 'path' and 'tags'.
290 */
291#ifdef FEAT_NORMAL
292# define FEAT_PATH_EXTRA
293#endif
294
295/*
296 * +rightleft Right-to-left editing/typing support.
Bram Moolenaar2c704a72010-06-03 21:17:25 +0200297 *
298 * Disabled for EBCDIC as it requires multibyte.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000299 */
Bram Moolenaar2c704a72010-06-03 21:17:25 +0200300#if defined(FEAT_BIG) && !defined(EBCDIC)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000301# define FEAT_RIGHTLEFT
302#endif
303
304/*
305 * +farsi Farsi (Persian language) Keymap support.
306 * Requires FEAT_RIGHTLEFT.
Bram Moolenaar2c704a72010-06-03 21:17:25 +0200307 *
308 * Disabled for EBCDIC as it requires multibyte.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000309 */
Bram Moolenaar2c704a72010-06-03 21:17:25 +0200310#if defined(FEAT_BIG) && !defined(EBCDIC)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000311# define FEAT_FKMAP
312#endif
313#ifdef FEAT_FKMAP
314# ifndef FEAT_RIGHTLEFT
315# define FEAT_RIGHTLEFT
316# endif
317#endif
318
319/*
320 * +arabic Arabic keymap and shaping support.
321 * Requires FEAT_RIGHTLEFT and FEAT_MBYTE.
Bram Moolenaar2c704a72010-06-03 21:17:25 +0200322 *
323 * Disabled for EBCDIC as it requires multibyte.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000324 */
Bram Moolenaara2aa31a2014-02-23 22:52:40 +0100325#if defined(FEAT_BIG) && !defined(WIN16) && VIM_SIZEOF_INT >= 4 && !defined(EBCDIC)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000326# define FEAT_ARABIC
327#endif
328#ifdef FEAT_ARABIC
329# ifndef FEAT_RIGHTLEFT
330# define FEAT_RIGHTLEFT
331# endif
332#endif
333
334/*
335 * +emacs_tags When FEAT_EMACS_TAGS defined: Include support for
336 * emacs style TAGS file.
337 */
338#ifdef FEAT_BIG
339# define FEAT_EMACS_TAGS
340#endif
341
342/*
343 * +tag_binary Can use a binary search for the tags file.
344 *
345 * Disabled for EBCDIC:
Bram Moolenaar2c704a72010-06-03 21:17:25 +0200346 * On z/OS Unix we have the problem that /bin/sort sorts ASCII instead of
Bram Moolenaar071d4272004-06-13 20:20:40 +0000347 * EBCDIC. With this binary search doesn't work, as VIM expects a tag file
348 * sorted by character values. I'm not sure how to fix this. Should we really
349 * do a EBCDIC to ASCII conversion for this??
350 */
351#if defined(FEAT_NORMAL) && !defined(EBCDIC)
352# define FEAT_TAG_BINS
353#endif
354
355/*
356 * +tag_old_static Old style static tags: "file:tag file ..". Slows
357 * down tag searching a bit.
358 */
359#ifdef FEAT_NORMAL
360# define FEAT_TAG_OLDSTATIC
361#endif
362
363/*
364 * +tag_any_white Allow any white space to separate the fields in a tags
365 * file. When not defined, only a TAB is allowed.
366 */
367/* #define FEAT_TAG_ANYWHITE */
368
369/*
370 * +cscope Unix only: Cscope support.
371 */
372#if defined(UNIX) && defined(FEAT_BIG) && !defined(FEAT_CSCOPE) && !defined(MACOS_X)
373# define FEAT_CSCOPE
374#endif
375
376/*
377 * +eval Built-in script language and expression evaluation,
378 * ":let", ":if", etc.
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000379 * +float Floating point variables.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000380 */
381#ifdef FEAT_NORMAL
382# define FEAT_EVAL
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000383# if defined(HAVE_FLOAT_FUNCS) || defined(WIN3264) || defined(MACOS)
384# define FEAT_FLOAT
385# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000386#endif
387
388/*
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +0100389 * +python and +python3 require FEAT_EVAL.
390 */
391#if !defined(FEAT_EVAL) && (defined(FEAT_PYTHON3) || defined(FEAT_PYTHON))
392# define FEAT_EVAL
393#endif
394
395/*
Bram Moolenaar05159a02005-02-26 23:04:13 +0000396 * +profile Profiling for functions and scripts.
397 */
Bram Moolenaar8cd06ca2005-02-28 22:44:58 +0000398#if defined(FEAT_HUGE) \
Bram Moolenaar1e015462005-09-25 22:16:38 +0000399 && defined(FEAT_EVAL) \
Bram Moolenaar8cd06ca2005-02-28 22:44:58 +0000400 && ((defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)) \
401 || defined(WIN3264))
Bram Moolenaar05159a02005-02-26 23:04:13 +0000402# define FEAT_PROFILE
403#endif
404
405/*
Bram Moolenaar76916e62006-03-21 21:23:25 +0000406 * +reltime reltime() function
407 */
408#if defined(FEAT_NORMAL) \
409 && defined(FEAT_EVAL) \
410 && ((defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)) \
411 || defined(WIN3264))
412# define FEAT_RELTIME
413#endif
414
415/*
Bram Moolenaar1e015462005-09-25 22:16:38 +0000416 * +textobjects Text objects: "vaw", "das", etc.
417 */
418#if defined(FEAT_NORMAL) && defined(FEAT_EVAL)
419# define FEAT_TEXTOBJ
420#endif
421
422/*
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +0000423 * Insert mode completion with 'completefunc'.
424 */
425#if defined(FEAT_INS_EXPAND) && defined(FEAT_EVAL)
426# define FEAT_COMPL_FUNC
427#endif
428
429/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000430 * +user_commands Allow the user to define his own commands.
431 */
432#ifdef FEAT_NORMAL
433# define FEAT_USR_CMDS
434#endif
435
436/*
437 * +printer ":hardcopy" command
438 * +postscript Printing uses PostScript file output.
439 */
440#if defined(FEAT_NORMAL) && (defined(MSWIN) || defined(FEAT_EVAL)) \
441 && !defined(AMIGA)
442# define FEAT_PRINTER
443#endif
444#if defined(FEAT_PRINTER) && ((defined(MSWIN) && defined(MSWINPS)) \
445 || (!defined(MSWIN) && defined(FEAT_EVAL)))
446# define FEAT_POSTSCRIPT
447#endif
448
449/*
450 * +modify_fname modifiers for file name. E.g., "%:p:h".
451 */
452#ifdef FEAT_NORMAL
453# define FEAT_MODIFY_FNAME
454#endif
455
456/*
457 * +autocmd ":autocmd" command
458 */
459#ifdef FEAT_NORMAL
460# define FEAT_AUTOCMD
461#endif
462
463/*
464 * +diff Displaying diffs in a nice way.
465 * Requires +windows and +autocmd.
466 */
467#if defined(FEAT_NORMAL) && defined(FEAT_WINDOWS) && defined(FEAT_AUTOCMD)
468# define FEAT_DIFF
469#endif
470
471/*
472 * +title 'title' and 'icon' options
473 * +statusline 'statusline', 'rulerformat' and special format of
474 * 'titlestring' and 'iconstring' options.
475 * +byte_offset '%o' in 'statusline' and builtin functions line2byte()
476 * and byte2line().
477 * Note: Required for Macintosh.
478 */
479#if defined(FEAT_NORMAL) && !defined(MSDOS)
480# define FEAT_TITLE
481#endif
482
483#ifdef FEAT_NORMAL
484# define FEAT_STL_OPT
485# ifndef FEAT_CMDL_INFO
486# define FEAT_CMDL_INFO /* 'ruler' is required for 'statusline' */
487# endif
488#endif
489
490#ifdef FEAT_NORMAL
491# define FEAT_BYTEOFF
492#endif
493
494/*
495 * +wildignore 'wildignore' and 'backupskip' options
496 * Needed for Unix to make "crontab -e" work.
497 */
498#if defined(FEAT_NORMAL) || defined(UNIX)
499# define FEAT_WILDIGN
500#endif
501
502/*
503 * +wildmenu 'wildmenu' option
504 */
505#if defined(FEAT_NORMAL) && defined(FEAT_WINDOWS)
506# define FEAT_WILDMENU
507#endif
508
509/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000510 * +viminfo reading/writing the viminfo file. Takes about 8Kbyte
511 * of code.
512 * VIMINFO_FILE Location of user .viminfo file (should start with $).
513 * VIMINFO_FILE2 Location of alternate user .viminfo file.
514 */
515#ifdef FEAT_NORMAL
516# define FEAT_VIMINFO
517/* #define VIMINFO_FILE "$HOME/foo/.viminfo" */
518/* #define VIMINFO_FILE2 "~/bar/.viminfo" */
519#endif
520
521/*
522 * +syntax syntax highlighting. When using this, it's a good
523 * idea to have +autocmd and +eval too.
524 */
525#if defined(FEAT_NORMAL) || defined(PROTO)
526# define FEAT_SYN_HL
527#endif
528
529/*
Bram Moolenaar860cae12010-06-05 23:22:07 +0200530 * +conceal 'conceal' option. Needs syntax highlighting
531 * as this is how the concealed text is defined.
532 */
533#if defined(FEAT_BIG) && defined(FEAT_SYN_HL)
534# define FEAT_CONCEAL
535#endif
536
537/*
Bram Moolenaar2b48ad52006-03-12 21:56:11 +0000538 * +spell spell checking
Bram Moolenaar2c704a72010-06-03 21:17:25 +0200539 *
Bram Moolenaar860cae12010-06-05 23:22:07 +0200540 * Disabled for EBCDIC: * Doesn't work (SIGSEGV).
Bram Moolenaar2b48ad52006-03-12 21:56:11 +0000541 */
Bram Moolenaar2c704a72010-06-03 21:17:25 +0200542#if (defined(FEAT_NORMAL) || defined(PROTO)) && !defined(EBCDIC)
Bram Moolenaar2b48ad52006-03-12 21:56:11 +0000543# define FEAT_SPELL
544#endif
545
546/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000547 * +builtin_terms Choose one out of the following four:
548 *
549 * NO_BUILTIN_TCAPS Do not include any builtin termcap entries (used only
550 * with HAVE_TGETENT defined).
551 *
552 * (nothing) Machine specific termcap entries will be included.
553 * This is default for win16 to save static data.
554 *
555 * SOME_BUILTIN_TCAPS Include most useful builtin termcap entries (used only
556 * with NO_BUILTIN_TCAPS not defined).
557 * This is the default.
558 *
559 * ALL_BUILTIN_TCAPS Include all builtin termcap entries
560 * (used only with NO_BUILTIN_TCAPS not defined).
561 */
562#ifdef HAVE_TGETENT
563/* #define NO_BUILTIN_TCAPS */
564#endif
565
566#if !defined(NO_BUILTIN_TCAPS) && !defined(FEAT_GUI_W16)
567# ifdef FEAT_BIG
568# define ALL_BUILTIN_TCAPS
569# else
570# define SOME_BUILTIN_TCAPS /* default */
571# endif
572#endif
573
574/*
575 * +lispindent lisp indenting (From Eric Fischer).
576 * +cindent C code indenting (From Eric Fischer).
577 * +smartindent smart C code indenting when the 'si' option is set.
578 *
579 * These two need to be defined when making prototypes.
580 */
581#if defined(FEAT_NORMAL) || defined(PROTO)
582# define FEAT_LISP
583#endif
584
585#if defined(FEAT_NORMAL) || defined(PROTO)
586# define FEAT_CINDENT
587#endif
588
589#ifdef FEAT_NORMAL
590# define FEAT_SMARTINDENT
591#endif
592
593/*
594 * +comments 'comments' option.
595 */
596#ifdef FEAT_NORMAL
597# define FEAT_COMMENTS
598#endif
599
600/*
601 * +cryptv Encryption (by Mohsin Ahmed <mosh@sasi.com>).
602 */
Bram Moolenaar40e6a712010-05-16 22:32:54 +0200603#if defined(FEAT_NORMAL) && !defined(FEAT_CRYPT) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000604# define FEAT_CRYPT
605#endif
606
607/*
608 * +mksession ":mksession" command.
609 * Requires +windows and +vertsplit.
610 */
611#if defined(FEAT_NORMAL) && defined(FEAT_WINDOWS) && defined(FEAT_VERTSPLIT)
612# define FEAT_SESSION
613#endif
614
615/*
616 * +multi_lang Multi language support. ":menutrans", ":language", etc.
617 * +gettext Message translations (requires +multi_lang)
618 * (only when "lang" archive unpacked)
619 */
620#ifdef FEAT_NORMAL
621# define FEAT_MULTI_LANG
622#endif
623#if defined(HAVE_GETTEXT) && defined(FEAT_MULTI_LANG) \
624 && (defined(HAVE_LOCALE_H) || defined(X_LOCALE))
625# define FEAT_GETTEXT
626#endif
627
628/*
629 * +multi_byte Generic multi-byte character handling. Doesn't work
630 * with 16 bit ints. Required for GTK+ 2.
631 *
632 * Disabled for EBCDIC:
Bram Moolenaar2c704a72010-06-03 21:17:25 +0200633 * Multibyte support doesn't work on z/OS Unix currently.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000634 */
Bram Moolenaar7533fdd2013-05-18 20:45:59 +0200635#if (defined(FEAT_NORMAL) || defined(FEAT_GUI_GTK) || defined(FEAT_ARABIC)) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000636 && !defined(FEAT_MBYTE) && !defined(WIN16) \
Bram Moolenaara2aa31a2014-02-23 22:52:40 +0100637 && VIM_SIZEOF_INT >= 4 && !defined(EBCDIC)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000638# define FEAT_MBYTE
639#endif
640
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000641/* Define this if you want to use 16 bit Unicode only, reduces memory used for
642 * the screen structures. */
643/* #define UNICODE16 */
644
Bram Moolenaar071d4272004-06-13 20:20:40 +0000645/*
646 * +multi_byte_ime Win32 IME input method. Requires +multi_byte.
647 * Only for far-east Windows, so IME can be used to input
648 * chars. Not tested much!
649 */
650#if defined(FEAT_GUI_W32) && !defined(FEAT_MBYTE_IME)
651/* #define FEAT_MBYTE_IME */
652# endif
653
654#if defined(FEAT_MBYTE_IME) && !defined(FEAT_MBYTE)
655# define FEAT_MBYTE
656#endif
657
Bram Moolenaara2aa31a2014-02-23 22:52:40 +0100658#if defined(FEAT_MBYTE) && VIM_SIZEOF_INT < 4 && !defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000659 Error: Can only handle multi-byte feature with 32 bit int or larger
660#endif
661
662/* Use iconv() when it's available. */
663#if defined(FEAT_MBYTE) && ((defined(HAVE_ICONV_H) && defined(HAVE_ICONV)) \
664 || defined(DYNAMIC_ICONV))
665# define USE_ICONV
666#endif
667
668/*
669 * +xim X Input Method. For entering special languages like
670 * chinese and Japanese.
671 * +hangul_input Internal Hangul input method. Must be included
672 * through configure: "--enable-hangulin"
673 * Both are for Unix and VMS only.
674 */
675#ifndef FEAT_XIM
676/* #define FEAT_XIM */
677#endif
678
679#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
680# define USE_XIM 1 /* needed for GTK include files */
681#endif
682
683#ifdef FEAT_HANGULIN
684# define HANGUL_DEFAULT_KEYBOARD 2 /* 2 or 3 bulsik keyboard */
685# define ESC_CHG_TO_ENG_MODE /* if defined, when ESC pressed,
686 * turn to english mode
687 */
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +0200688# if !defined(FEAT_XFONTSET) && defined(HAVE_X11) && !defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000689# define FEAT_XFONTSET /* Hangul input requires xfontset */
690# endif
691# if defined(FEAT_XIM) && !defined(LINT)
692 Error: You should select only ONE of XIM and HANGUL INPUT
693# endif
694#endif
695#if defined(FEAT_HANGULIN) || defined(FEAT_XIM)
696/* # define X_LOCALE */ /* for OS with incomplete locale
697 support, like old linux versions. */
698/* # define SLOW_XSERVER */ /* for extremely slow X server */
699#endif
700
701/*
702 * +xfontset X fontset support. For outputting wide characters.
703 */
704#ifndef FEAT_XFONTSET
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +0200705# if defined(FEAT_MBYTE) && defined(HAVE_X11) && !defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000706# define FEAT_XFONTSET
707# else
708/* # define FEAT_XFONTSET */
709# endif
710#endif
711
712/*
713 * +libcall libcall() function
714 */
715/* Using dlopen() also requires dlsym() to be available. */
716#if defined(HAVE_DLOPEN) && defined(HAVE_DLSYM)
717# define USE_DLOPEN
718#endif
719#if defined(FEAT_EVAL) && (defined(WIN3264) || ((defined(UNIX) || defined(VMS)) \
720 && (defined(USE_DLOPEN) || defined(HAVE_SHL_LOAD))))
721# define FEAT_LIBCALL
722#endif
723
724/*
725 * +scrollbind synchronization of split windows
726 */
727#if defined(FEAT_NORMAL) && defined(FEAT_WINDOWS)
728# define FEAT_SCROLLBIND
729#endif
730
731/*
Bram Moolenaar860cae12010-06-05 23:22:07 +0200732 * +cursorbind synchronization of split windows
733 */
734#if defined(FEAT_NORMAL) && defined(FEAT_WINDOWS)
735# define FEAT_CURSORBIND
736#endif
737
738/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000739 * +menu ":menu" command
740 */
741#ifdef FEAT_NORMAL
742# define FEAT_MENU
743# ifdef FEAT_GUI_W32
744# define FEAT_TEAROFF
745# endif
746#endif
747
748/* There are two ways to use XPM. */
749#if (defined(HAVE_XM_XPMP_H) && defined(FEAT_GUI_MOTIF)) \
750 || defined(HAVE_X11_XPM_H)
751# define HAVE_XPM 1
752#endif
753
754/*
755 * +toolbar Include code for a toolbar (for the Win32 GUI, GTK
756 * always has it). But only if menus are enabled.
757 */
758#if defined(FEAT_NORMAL) && defined(FEAT_MENU) \
Bram Moolenaar9372a112005-12-06 19:59:18 +0000759 && (defined(FEAT_GUI_GTK) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000760 || defined(FEAT_GUI_MSWIN) \
761 || ((defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_ATHENA)) \
762 && defined(HAVE_XPM)) \
763 || defined(FEAT_GUI_PHOTON))
764# define FEAT_TOOLBAR
765#endif
Bram Moolenaar843ee412004-06-30 16:16:41 +0000766
767
Bram Moolenaar071d4272004-06-13 20:20:40 +0000768#if defined(FEAT_TOOLBAR) && !defined(FEAT_MENU)
769# define FEAT_MENU
770#endif
771
772/*
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000773 * GUI tabline
774 */
Bram Moolenaarf193fff2006-04-27 00:02:13 +0000775#if defined(FEAT_WINDOWS) && defined(FEAT_NORMAL) \
776 && (defined(FEAT_GUI_GTK) \
Bram Moolenaarfc1421e2006-04-20 22:17:20 +0000777 || (defined(FEAT_GUI_MOTIF) && defined(HAVE_XM_NOTEBOOK_H)) \
Bram Moolenaar79ee3152007-04-26 16:20:50 +0000778 || defined(FEAT_GUI_MAC) \
Bram Moolenaar860cae12010-06-05 23:22:07 +0200779 || (defined(FEAT_GUI_MSWIN) && !defined(WIN16) \
780 && (!defined(_MSC_VER) || _MSC_VER > 1020)))
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000781# define FEAT_GUI_TABLINE
782#endif
783
784/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000785 * +browse ":browse" command.
Bram Moolenaard812df62008-11-09 12:46:09 +0000786 * or just the ":browse" command modifier
Bram Moolenaar071d4272004-06-13 20:20:40 +0000787 */
Bram Moolenaard812df62008-11-09 12:46:09 +0000788#if defined(FEAT_NORMAL)
789# define FEAT_BROWSE_CMD
790# if defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_GTK) || defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC)
791# define FEAT_BROWSE
792# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000793#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000794
795/*
Bram Moolenaarf939c4e2013-01-23 13:41:00 +0100796 * On some systems, when we compile with the GUI, we always use it. On Mac
797 * there is no terminal version, and on Windows we can't figure out how to
798 * fork one off with :gui.
799 */
800#if defined(FEAT_GUI_MSWIN) || (defined(FEAT_GUI_MAC) && !defined(MACOS_X_UNIX))
801# define ALWAYS_USE_GUI
802#endif
803
804/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000805 * +dialog_gui Use GUI dialog.
806 * +dialog_con May use Console dialog.
807 * When none of these defined there is no dialog support.
808 */
809#ifdef FEAT_NORMAL
810# if ((defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_MOTIF)) \
811 && defined(HAVE_X11_XPM_H)) \
812 || defined(FEAT_GUI_GTK) \
813 || defined(FEAT_GUI_PHOTON) \
814 || defined(FEAT_GUI_MSWIN) \
Bram Moolenaar9372a112005-12-06 19:59:18 +0000815 || defined(FEAT_GUI_MAC)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000816# define FEAT_CON_DIALOG
817# define FEAT_GUI_DIALOG
818# else
819# define FEAT_CON_DIALOG
820# endif
821#endif
822#if !defined(FEAT_GUI_DIALOG) && (defined(FEAT_GUI_MOTIF) \
Bram Moolenaar8765a4a2010-07-27 22:41:43 +0200823 || defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_GTK) \
824 || defined(FEAT_GUI_W32))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000825/* need a dialog to show error messages when starting from the desktop */
826# define FEAT_GUI_DIALOG
827#endif
828#if defined(FEAT_GUI_DIALOG) && \
829 (defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_ATHENA) \
Bram Moolenaar9372a112005-12-06 19:59:18 +0000830 || defined(FEAT_GUI_GTK) || defined(FEAT_GUI_MSWIN) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000831 || defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC))
832# define FEAT_GUI_TEXTDIALOG
Bram Moolenaarf939c4e2013-01-23 13:41:00 +0100833# ifndef ALWAYS_USE_GUI
834# define FEAT_CON_DIALOG
835# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000836#endif
837
838/* Mac specific thing: Codewarrior interface. */
839#ifdef FEAT_GUI_MAC
840# define FEAT_CW_EDITOR
841#endif
842
843/*
844 * Preferences:
845 * ============
846 */
847
848/*
849 * +writebackup 'writebackup' is default on:
850 * Use a backup file while overwriting a file. But it's
851 * deleted again when 'backup' is not set. Changing this
Bram Moolenaare37d50a2008-08-06 17:06:04 +0000852 * is strongly discouraged: You can lose all your
Bram Moolenaar071d4272004-06-13 20:20:40 +0000853 * changes when the computer crashes while writing the
854 * file.
855 * VMS note: It does work on VMS as well, but because of
856 * version handling it does not have any purpose.
857 * Overwrite will write to the new version.
858 */
859#ifndef VMS
860# define FEAT_WRITEBACKUP
861#endif
862
863/*
864 * +xterm_save The t_ti and t_te entries for the builtin xterm will
865 * be set to save the screen when starting Vim and
866 * restoring it when exiting.
867 */
868/* #define FEAT_XTERM_SAVE */
869
870/*
871 * DEBUG Output a lot of debugging garbage.
872 */
873/* #define DEBUG */
874
875/*
Bram Moolenaar3f269672009-11-03 11:11:11 +0000876 * STARTUPTIME Time the startup process. Writes a file with
877 * timestamps.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000878 */
Bram Moolenaar3f269672009-11-03 11:11:11 +0000879#if defined(FEAT_NORMAL) \
880 && ((defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)) \
881 || defined(WIN3264))
882# define STARTUPTIME 1
883#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000884
885/*
886 * MEM_PROFILE Debugging of memory allocation and freeing.
887 */
888/* #define MEM_PROFILE */
889
890/*
891 * VIMRC_FILE Name of the .vimrc file in current dir.
892 */
893/* #define VIMRC_FILE ".vimrc" */
894
895/*
896 * EXRC_FILE Name of the .exrc file in current dir.
897 */
898/* #define EXRC_FILE ".exrc" */
899
900/*
901 * GVIMRC_FILE Name of the .gvimrc file in current dir.
902 */
903/* #define GVIMRC_FILE ".gvimrc" */
904
905/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000906 * SESSION_FILE Name of the default ":mksession" file.
907 */
908#define SESSION_FILE "Session.vim"
909
910/*
911 * USR_VIMRC_FILE Name of the user .vimrc file.
912 * USR_VIMRC_FILE2 Name of alternate user .vimrc file.
913 * USR_VIMRC_FILE3 Name of alternate user .vimrc file.
914 */
915/* #define USR_VIMRC_FILE "~/foo/.vimrc" */
916/* #define USR_VIMRC_FILE2 "~/bar/.vimrc" */
917/* #define USR_VIMRC_FILE3 "$VIM/.vimrc" */
918
919/*
920 * EVIM_FILE Name of the evim.vim script file
921 */
922/* #define EVIM_FILE "$VIMRUNTIME/evim.vim" */
923
924/*
925 * USR_EXRC_FILE Name of the user .exrc file.
926 * USR_EXRC_FILE2 Name of the alternate user .exrc file.
927 */
928/* #define USR_EXRC_FILE "~/foo/.exrc" */
929/* #define USR_EXRC_FILE2 "~/bar/.exrc" */
930
931/*
932 * USR_GVIMRC_FILE Name of the user .gvimrc file.
933 * USR_GVIMRC_FILE2 Name of the alternate user .gvimrc file.
934 */
935/* #define USR_GVIMRC_FILE "~/foo/.gvimrc" */
936/* #define USR_GVIMRC_FILE2 "~/bar/.gvimrc" */
937/* #define USR_GVIMRC_FILE3 "$VIM/.gvimrc" */
938
939/*
940 * SYS_VIMRC_FILE Name of the system-wide .vimrc file.
941 */
942/* #define SYS_VIMRC_FILE "/etc/vimrc" */
943
944/*
945 * SYS_GVIMRC_FILE Name of the system-wide .gvimrc file.
946 */
947/* #define SYS_GVIMRC_FILE "/etc/gvimrc" */
948
949/*
950 * DFLT_HELPFILE Name of the help file.
951 */
952/* # define DFLT_HELPFILE "$VIMRUNTIME/doc/help.txt.gz" */
953
954/*
955 * File names for:
956 * FILETYPE_FILE switch on file type detection
957 * FTPLUGIN_FILE switch on loading filetype plugin files
958 * INDENT_FILE switch on loading indent files
959 * FTOFF_FILE switch off file type detection
960 * FTPLUGOF_FILE switch off loading settings files
961 * INDOFF_FILE switch off loading indent files
962 */
963/* # define FILETYPE_FILE "filetype.vim" */
964/* # define FTPLUGIN_FILE "ftplugin.vim" */
965/* # define INDENT_FILE "indent.vim" */
966/* # define FTOFF_FILE "ftoff.vim" */
967/* # define FTPLUGOF_FILE "ftplugof.vim" */
968/* # define INDOFF_FILE "indoff.vim" */
969
970/*
971 * SYS_MENU_FILE Name of the default menu.vim file.
972 */
973/* # define SYS_MENU_FILE "$VIMRUNTIME/menu.vim" */
974
975/*
976 * SYS_OPTWIN_FILE Name of the default optwin.vim file.
977 */
978#ifndef SYS_OPTWIN_FILE
979# define SYS_OPTWIN_FILE "$VIMRUNTIME/optwin.vim"
980#endif
981
982/*
983 * SYNTAX_FNAME Name of a syntax file, where %s is the syntax name.
984 */
985/* #define SYNTAX_FNAME "/foo/%s.vim" */
986
987/*
988 * RUNTIME_DIRNAME Generic name for the directory of the runtime files.
989 */
990#ifndef RUNTIME_DIRNAME
991# define RUNTIME_DIRNAME "runtime"
992#endif
993
994/*
995 * RUNTIME_GLOBAL Directory name for global Vim runtime directory.
996 * Don't define this if the preprocessor can't handle
997 * string concatenation.
998 * Also set by "--with-global-runtime" configure argument.
999 */
1000/* #define RUNTIME_GLOBAL "/etc/vim" */
1001
1002/*
1003 * MODIFIED_BY Name of who modified Vim. Required when distributing
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02001004 * a modified version of Vim.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001005 * Also from the "--with-modified-by" configure argument.
1006 */
1007/* #define MODIFIED_BY "John Doe" */
1008
1009/*
1010 * Machine dependent:
1011 * ==================
1012 */
1013
1014/*
1015 * +fork Unix only: fork() support (detected by configure)
1016 * +system Use system() instead of fork/exec for starting a
1017 * shell. Doesn't work for the GUI!
1018 */
1019/* #define USE_SYSTEM */
1020
1021/*
1022 * +X11 Unix only. Include code for xterm title saving and X
1023 * clipboard. Only works if HAVE_X11 is also defined.
1024 */
Bram Moolenaar843ee412004-06-30 16:16:41 +00001025#if (defined(FEAT_NORMAL) || defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_ATHENA))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001026# define WANT_X11
1027#endif
1028
1029/*
1030 * XSMP - X11 Session Management Protocol
1031 * It may be preferred to disable this if the GUI supports it (e.g.,
1032 * GNOME/KDE) and implement save-yourself etc. through that, but it may also
1033 * be cleaner to have all SM-aware vims do the same thing (libSM does not
1034 * depend upon X11).
1035 * If your GUI wants to support SM itself, change this ifdef.
1036 * I'm assuming that any X11 implementation will cope with this for now.
1037 */
1038#if defined(HAVE_X11) && defined(WANT_X11) && defined(HAVE_X11_SM_SMLIB_H)
1039# define USE_XSMP
1040#endif
1041#if defined(USE_XSMP_INTERACT) && !defined(USE_XSMP)
1042# undef USE_XSMP_INTERACT
1043#endif
1044
1045/*
1046 * +mouse_xterm Unix only: Include code for xterm mouse handling.
1047 * +mouse_dec idem, for Dec mouse handling.
1048 * +mouse_jsbterm idem, for Jsbterm mouse handling.
1049 * +mouse_netterm idem, for Netterm mouse handling.
1050 * (none) MS-DOS mouse support.
1051 * +mouse_gpm Unix only: Include code for Linux console mouse
1052 * handling.
1053 * +mouse_pterm PTerm mouse support for QNX
Bram Moolenaarcfb80702012-10-21 02:17:45 +02001054 * +mouse_sgr Unix only: Include code for for SGR-styled mouse.
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00001055 * +mouse_sysmouse Unix only: Include code for FreeBSD and DragonFly
1056 * console mouse handling.
Bram Moolenaarcfb80702012-10-21 02:17:45 +02001057 * +mouse_urxvt Unix only: Include code for for urxvt mosue handling.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001058 * +mouse Any mouse support (any of the above enabled).
1059 */
1060/* OS/2 and Amiga console have no mouse support */
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00001061#if !defined(AMIGA) && !defined(OS2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001062# ifdef FEAT_NORMAL
1063# define FEAT_MOUSE_XTERM
1064# endif
1065# ifdef FEAT_BIG
1066# define FEAT_MOUSE_NET
1067# endif
1068# ifdef FEAT_BIG
1069# define FEAT_MOUSE_DEC
1070# endif
Bram Moolenaarc8427482011-10-20 21:09:35 +02001071# ifdef FEAT_BIG
1072# define FEAT_MOUSE_URXVT
1073# endif
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02001074# ifdef FEAT_BIG
1075# define FEAT_MOUSE_SGR
1076# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001077# if defined(FEAT_NORMAL) && (defined(MSDOS) || defined(WIN3264))
1078# define DOS_MOUSE
1079# endif
1080# if defined(FEAT_NORMAL) && defined(__QNX__)
1081# define FEAT_MOUSE_PTERM
1082# endif
1083#endif
1084
Bram Moolenaarf6dcbb22013-04-15 15:40:33 +02001085/*
1086 * Note: Only one of the following may be defined:
1087 * FEAT_MOUSE_GPM
1088 * FEAT_SYSMOUSE
1089 * FEAT_MOUSE_JSB
1090 * FEAT_MOUSE_PTERM
1091 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001092#if defined(FEAT_NORMAL) && defined(HAVE_GPM)
1093# define FEAT_MOUSE_GPM
1094#endif
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00001095
1096#if defined(FEAT_NORMAL) && defined(HAVE_SYSMOUSE)
1097# define FEAT_SYSMOUSE
1098#endif
Bram Moolenaarc8427482011-10-20 21:09:35 +02001099
1100/* urxvt is a small variation of mouse_xterm, and shares its code */
1101#if defined(FEAT_MOUSE_URXVT) && !defined(FEAT_MOUSE_XTERM)
1102# define FEAT_MOUSE_XTERM
1103#endif
1104
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02001105/* sgr is a small variation of mouse_xterm, and shares its code */
1106#if defined(FEAT_MOUSE_SGR) && !defined(FEAT_MOUSE_XTERM)
1107# define FEAT_MOUSE_XTERM
1108#endif
1109
Bram Moolenaar071d4272004-06-13 20:20:40 +00001110/* Define FEAT_MOUSE when any of the above is defined or FEAT_GUI. */
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00001111#if !defined(FEAT_MOUSE_TTY) \
1112 && (defined(FEAT_MOUSE_XTERM) \
Bram Moolenaarc8427482011-10-20 21:09:35 +02001113 || defined(FEAT_MOUSE_NET) \
1114 || defined(FEAT_MOUSE_DEC) \
1115 || defined(DOS_MOUSE) \
1116 || defined(FEAT_MOUSE_GPM) \
1117 || defined(FEAT_MOUSE_JSB) \
1118 || defined(FEAT_MOUSE_PTERM) \
1119 || defined(FEAT_SYSMOUSE) \
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02001120 || defined(FEAT_MOUSE_URXVT) \
1121 || defined(FEAT_MOUSE_SGR))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001122# define FEAT_MOUSE_TTY /* include non-GUI mouse support */
1123#endif
1124#if !defined(FEAT_MOUSE) && (defined(FEAT_MOUSE_TTY) || defined(FEAT_GUI))
1125# define FEAT_MOUSE /* include generic mouse support */
1126#endif
1127
1128/*
1129 * +clipboard Clipboard support. Always used for the GUI.
1130 * +xterm_clipboard Unix only: Include code for handling the clipboard
1131 * in an xterm like in the GUI.
1132 */
Bram Moolenaar693e40c2013-02-26 14:56:42 +01001133
1134#ifdef FEAT_CYGWIN_WIN32_CLIPBOARD
1135# define FEAT_CLIPBOARD
1136#endif
1137
Bram Moolenaar071d4272004-06-13 20:20:40 +00001138#ifdef FEAT_GUI
1139# ifndef FEAT_CLIPBOARD
1140# define FEAT_CLIPBOARD
1141# ifndef FEAT_VISUAL
1142# define FEAT_VISUAL
1143# endif
1144# endif
1145#endif
1146
1147#if defined(FEAT_NORMAL) && defined(FEAT_VISUAL) \
1148 && (defined(UNIX) || defined(VMS)) \
1149 && defined(WANT_X11) && defined(HAVE_X11)
1150# define FEAT_XCLIPBOARD
1151# ifndef FEAT_CLIPBOARD
1152# define FEAT_CLIPBOARD
1153# endif
1154#endif
1155
1156/*
1157 * +dnd Drag'n'drop support. Always used for the GTK+ GUI.
1158 */
1159#if defined(FEAT_CLIPBOARD) && defined(FEAT_GUI_GTK)
1160# define FEAT_DND
1161#endif
1162
1163#if defined(FEAT_GUI_MSWIN) && defined(FEAT_SMALL)
1164# define MSWIN_FIND_REPLACE /* include code for find/replace dialog */
1165# define MSWIN_FR_BUFSIZE 256
1166#endif
1167
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001168#if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_MOTIF) \
Bram Moolenaar9372a112005-12-06 19:59:18 +00001169 || defined(MSWIN_FIND_REPLACE)
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001170# define FIND_REPLACE_DIALOG 1
1171#endif
1172
Bram Moolenaar071d4272004-06-13 20:20:40 +00001173/*
1174 * +clientserver Remote control via the remote_send() function
1175 * and the --remote argument
1176 */
1177#if (defined(WIN32) || defined(FEAT_XCLIPBOARD)) && defined(FEAT_EVAL)
1178# define FEAT_CLIENTSERVER
1179#endif
1180
1181/*
1182 * +termresponse send t_RV to obtain terminal response. Used for xterm
1183 * to check if mouse dragging can be used and if term
Bram Moolenaar3d27a452007-05-10 17:44:18 +00001184 * codes can be obtained.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001185 */
1186#if (defined(FEAT_NORMAL) || defined(FEAT_MOUSE)) && defined(HAVE_TGETENT)
1187# define FEAT_TERMRESPONSE
1188#endif
1189
1190/*
1191 * cursor shape Adjust the shape of the cursor to the mode.
1192 * mouse shape Adjust the shape of the mouse pointer to the mode.
1193 */
1194#ifdef FEAT_NORMAL
1195/* MS-DOS console and Win32 console can change cursor shape */
1196# if defined(MSDOS) || (defined(WIN3264) && !defined(FEAT_GUI_W32))
1197# define MCH_CURSOR_SHAPE
1198# endif
1199# if defined(FEAT_GUI_W32) || defined(FEAT_GUI_W16) || defined(FEAT_GUI_MOTIF) \
Bram Moolenaar9372a112005-12-06 19:59:18 +00001200 || defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_GTK) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00001201 || defined(FEAT_GUI_PHOTON)
1202# define FEAT_MOUSESHAPE
1203# endif
1204#endif
1205
1206/* GUI and some consoles can change the shape of the cursor. The code is also
Bram Moolenaarf5963f72010-07-23 22:10:27 +02001207 * needed for the 'mouseshape' and 'concealcursor' options. */
1208#if defined(FEAT_GUI) \
1209 || defined(MCH_CURSOR_SHAPE) \
1210 || defined(FEAT_MOUSESHAPE) \
1211 || defined(FEAT_CONCEAL) \
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00001212 || (defined(UNIX) && defined(FEAT_NORMAL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001213# define CURSOR_SHAPE
1214#endif
1215
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001216#if defined(FEAT_MZSCHEME) && (defined(FEAT_GUI_W32) || defined(FEAT_GUI_GTK) \
1217 || defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_ATHENA) \
Bram Moolenaar9372a112005-12-06 19:59:18 +00001218 || defined(FEAT_GUI_MAC))
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001219# define MZSCHEME_GUI_THREADS
1220#endif
1221
Bram Moolenaar071d4272004-06-13 20:20:40 +00001222/*
1223 * +ARP Amiga only. Use arp.library, DOS 2.0 is not required.
1224 */
Bram Moolenaar5a6404c2006-11-01 17:12:57 +00001225#if !defined(NO_ARP) && !defined(__amigaos4__)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001226# define FEAT_ARP
1227#endif
1228
1229/*
1230 * +GUI_Athena To compile Vim with or without the GUI (gvim) you have
Bram Moolenaarbc045ea2005-06-05 22:01:26 +00001231 * +GUI_Motif to edit the Makefile.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001232 */
1233
1234/*
1235 * +ole Win32 OLE automation: Use Makefile.ovc.
1236 */
1237
1238/*
1239 * These features can only be included by using a configure argument. See the
1240 * Makefile for a line to uncomment.
Bram Moolenaar55d5c032010-07-17 23:52:29 +02001241 * +lua Lua interface: "--enable-luainterp"
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001242 * +mzscheme MzScheme interface: "--enable-mzscheme"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001243 * +perl Perl interface: "--enable-perlinterp"
1244 * +python Python interface: "--enable-pythoninterp"
1245 * +tcl TCL interface: "--enable-tclinterp"
1246 * +sniff Sniff interface: "--enable-sniff"
Bram Moolenaar3d27a452007-05-10 17:44:18 +00001247 * +sun_workshop Sun Workshop integration
Bram Moolenaar071d4272004-06-13 20:20:40 +00001248 * +netbeans_intg Netbeans integration
1249 */
1250
1251/*
1252 * These features are automatically detected:
1253 * +terminfo
1254 * +tgetent
1255 */
1256
1257/*
1258 * The Sun Workshop features currently only work with Motif.
1259 */
1260#if !defined(FEAT_GUI_MOTIF) && defined(FEAT_SUN_WORKSHOP)
1261# undef FEAT_SUN_WORKSHOP
1262#endif
1263
1264/*
Bram Moolenaar67c53842010-05-22 18:28:27 +02001265 * The Netbeans feature requires +listcmds and +eval.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001266 */
Bram Moolenaar67c53842010-05-22 18:28:27 +02001267#if (!defined(FEAT_LISTCMDS) || !defined(FEAT_EVAL)) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00001268 && defined(FEAT_NETBEANS_INTG)
1269# undef FEAT_NETBEANS_INTG
1270#endif
1271
1272/*
1273 * +signs Allow signs to be displayed to the left of text lines.
1274 * Adds the ":sign" command.
1275 */
1276#if defined(FEAT_BIG) || defined(FEAT_SUN_WORKSHOP) \
1277 || defined(FEAT_NETBEANS_INTG)
1278# define FEAT_SIGNS
1279# if ((defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_ATHENA)) \
1280 && defined(HAVE_X11_XPM_H)) \
1281 || defined(FEAT_GUI_GTK) \
1282 || (defined(WIN32) && defined(FEAT_GUI))
1283# define FEAT_SIGN_ICONS
1284# endif
1285#endif
1286
1287/*
1288 * +balloon_eval Allow balloon expression evaluation. Used with a
1289 * debugger and for tooltips.
1290 * Only for GUIs where it was implemented.
1291 */
1292#if (defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_ATHENA) \
1293 || defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32)) \
Bram Moolenaarf193fff2006-04-27 00:02:13 +00001294 && ( ((defined(FEAT_TOOLBAR) || defined(FEAT_GUI_TABLINE)) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00001295 && !defined(FEAT_GUI_GTK) && !defined(FEAT_GUI_W32)) \
1296 || defined(FEAT_SUN_WORKSHOP) \
Bram Moolenaar44ecf652005-03-07 23:09:59 +00001297 || defined(FEAT_NETBEANS_INTG) || defined(FEAT_EVAL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001298# define FEAT_BEVAL
1299# if !defined(FEAT_XFONTSET) && !defined(FEAT_GUI_GTK) \
Bram Moolenaar9372a112005-12-06 19:59:18 +00001300 && !defined(FEAT_GUI_W32)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001301# define FEAT_XFONTSET
1302# endif
1303#endif
1304
1305#if defined(FEAT_BEVAL) && (defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_ATHENA))
1306# define FEAT_BEVAL_TIP /* balloon eval used for toolbar tooltip */
1307#endif
1308
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001309/* both Motif and Athena are X11 and share some code */
1310#if defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_ATHENA)
1311# define FEAT_GUI_X11
1312#endif
1313
Bram Moolenaar071d4272004-06-13 20:20:40 +00001314#if defined(FEAT_SUN_WORKSHOP) || defined(FEAT_NETBEANS_INTG)
1315/*
1316 * The following features are (currently) only used by Sun Visual WorkShop 6
1317 * and NetBeans. These features could be used with other integrations with
1318 * debuggers so I've used separate feature defines.
1319 */
1320# if !defined(FEAT_MENU)
1321# define FEAT_MENU
1322# endif
1323#endif
1324
1325#if defined(FEAT_SUN_WORKSHOP)
1326/*
1327 * Use an alternative method of X input for a secondary
1328 * command input.
1329 */
1330# define ALT_X_INPUT
1331
1332/*
1333 * +footer Motif only: Add a message area at the bottom of the
1334 * main window area.
1335 */
1336# define FEAT_FOOTER
1337
1338#endif
Bram Moolenaar8dff8182006-04-06 20:18:50 +00001339
1340/*
1341 * +autochdir 'autochdir' option.
1342 */
1343#if defined(FEAT_SUN_WORKSHOP) || defined(FEAT_NETBEANS_INTG) \
1344 || defined(FEAT_BIG)
1345# define FEAT_AUTOCHDIR
1346#endif
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001347
1348/*
1349 * +persistent_undo 'undofile', 'undodir' options, :wundo and :rundo, and
1350 * implementation.
1351 */
1352#ifdef FEAT_NORMAL
1353# define FEAT_PERSISTENT_UNDO
1354#endif
Bram Moolenaar68a33fc2012-04-25 16:50:48 +02001355
1356/*
1357 * +filterpipe
1358 */
1359#if (defined(UNIX) && !defined(USE_SYSTEM)) \
1360 || (defined(WIN3264) && defined(FEAT_GUI_W32))
1361# define FEAT_FILTERPIPE
1362#endif