7
|
1 /* 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 */
|
|
8
|
|
9 /*
|
|
10 * option.h: definition of global variables for settable options
|
|
11 */
|
|
12
|
|
13 #ifndef EXTERN
|
|
14 # define EXTERN extern
|
|
15 # define INIT(x)
|
|
16 #else
|
|
17 # ifndef INIT
|
|
18 # define INIT(x) x
|
|
19 # endif
|
|
20 #endif
|
|
21
|
36
|
22 /*
|
|
23 * Default values for 'errorformat'.
|
|
24 * The "%f|%l| %m" one is used for when the contents of the quickfix window is
|
|
25 * written to a file.
|
|
26 */
|
7
|
27 #ifdef AMIGA
|
36
|
28 # define DFLT_EFM "%f>%l:%c:%t:%n:%m,%f:%l: %t%*\\D%n: %m,%f %l %t%*\\D%n: %m,%*[^\"]\"%f\"%*\\D%l: %m,%f:%l:%m,%f|%l| %m"
|
7
|
29 #else
|
|
30 # if defined(MSDOS) || defined(WIN3264)
|
36
|
31 # define DFLT_EFM "%f(%l) : %t%*\\D%n: %m,%*[^\"]\"%f\"%*\\D%l: %m,%f(%l) : %m,%*[^ ] %f %l: %m,%f:%l:%m,%f|%l| %m"
|
7
|
32 # else
|
|
33 # if defined(__EMX__) /* put most common here (i.e. gcc format) at front */
|
36
|
34 # define DFLT_EFM "%f:%l:%m,%*[^\"]\"%f\"%*\\D%l: %m,\"%f\"%*\\D%l: %m,%f(%l:%c) : %m,%f|%l| %m"
|
7
|
35 # else
|
|
36 # if defined(__QNX__)
|
36
|
37 # define DFLT_EFM "%f(%l):%*[^WE]%t%*\\D%n:%m,%f|%l| %m"
|
7
|
38 # else
|
|
39 # ifdef VMS
|
36
|
40 # define DFLT_EFM "%A%p^,%C%%CC-%t-%m,%Cat line number %l in file %f,%f|%l| %m"
|
7
|
41 # else /* Unix, probably */
|
|
42 # ifdef EBCDIC
|
36
|
43 #define DFLT_EFM "%*[^ ] %*[^ ] %f:%l%*[ ]%m,%*[^\"]\"%f\"%*\\D%l: %m,\"%f\"%*\\D%l: %m,%f:%l:%m,\"%f\"\\, line %l%*\\D%c%*[^ ] %m,%D%*\\a[%*\\d]: Entering directory `%f',%X%*\\a[%*\\d]: Leaving directory `%f',%DMaking %*\\a in %f,%f|%l| %m"
|
7
|
44 # else
|
36
|
45 #define DFLT_EFM "%*[^\"]\"%f\"%*\\D%l: %m,\"%f\"%*\\D%l: %m,%-G%f:%l: (Each undeclared identifier is reported only once,%-G%f:%l: for each function it appears in.),%f:%l:%m,\"%f\"\\, line %l%*\\D%c%*[^ ] %m,%D%*\\a[%*\\d]: Entering directory `%f',%X%*\\a[%*\\d]: Leaving directory `%f',%DMaking %*\\a in %f,%f|%l| %m"
|
7
|
46 # endif
|
|
47 # endif
|
|
48 # endif
|
|
49 # endif
|
|
50 # endif
|
|
51 #endif
|
|
52
|
|
53 #define DFLT_GREPFORMAT "%f:%l:%m,%f:%l%m,%f %l%m"
|
|
54
|
|
55 /* default values for b_p_ff 'fileformat' and p_ffs 'fileformats' */
|
|
56 #define FF_DOS "dos"
|
|
57 #define FF_MAC "mac"
|
|
58 #define FF_UNIX "unix"
|
|
59
|
|
60 #ifdef USE_CRNL
|
|
61 # define DFLT_FF "dos"
|
|
62 # define DFLT_FFS_VIM "dos,unix"
|
|
63 # define DFLT_FFS_VI "dos,unix" /* also autodetect in compatible mode */
|
|
64 # define DFLT_TEXTAUTO TRUE
|
|
65 #else
|
|
66 # ifdef USE_CR
|
|
67 # define DFLT_FF "mac"
|
|
68 # define DFLT_FFS_VIM "mac,unix,dos"
|
|
69 # define DFLT_FFS_VI "mac,unix,dos"
|
|
70 # define DFLT_TEXTAUTO TRUE
|
|
71 # else
|
|
72 # define DFLT_FF "unix"
|
|
73 # define DFLT_FFS_VIM "unix,dos"
|
|
74 # ifdef __CYGWIN__
|
|
75 # define DFLT_FFS_VI "unix,dos" /* Cygwin always needs file detection */
|
|
76 # define DFLT_TEXTAUTO TRUE
|
|
77 # else
|
|
78 # define DFLT_FFS_VI ""
|
|
79 # define DFLT_TEXTAUTO FALSE
|
|
80 # endif
|
|
81 # endif
|
|
82 #endif
|
|
83
|
|
84
|
|
85 #ifdef FEAT_MBYTE
|
|
86 /* Possible values for 'encoding' */
|
|
87 # define ENC_UCSBOM "ucs-bom" /* check for BOM at start of file */
|
|
88
|
|
89 /* default value for 'encoding' */
|
|
90 # define ENC_DFLT "latin1"
|
|
91 #endif
|
|
92
|
|
93 /* end-of-line style */
|
|
94 #define EOL_UNKNOWN -1 /* not defined yet */
|
|
95 #define EOL_UNIX 0 /* NL */
|
|
96 #define EOL_DOS 1 /* CR NL */
|
|
97 #define EOL_MAC 2 /* CR */
|
|
98
|
|
99 /* Formatting options for p_fo 'formatoptions' */
|
|
100 #define FO_WRAP 't'
|
|
101 #define FO_WRAP_COMS 'c'
|
|
102 #define FO_RET_COMS 'r'
|
|
103 #define FO_OPEN_COMS 'o'
|
|
104 #define FO_Q_COMS 'q'
|
|
105 #define FO_Q_NUMBER 'n'
|
|
106 #define FO_Q_SECOND '2'
|
|
107 #define FO_INS_VI 'v'
|
|
108 #define FO_INS_LONG 'l'
|
|
109 #define FO_INS_BLANK 'b'
|
|
110 #define FO_MBYTE_BREAK 'm' /* break before/after multi-byte char */
|
|
111 #define FO_MBYTE_JOIN 'M' /* no space before/after multi-byte char */
|
|
112 #define FO_MBYTE_JOIN2 'B' /* no space between multi-byte chars */
|
|
113 #define FO_ONE_LETTER '1'
|
|
114 #define FO_WHITE_PAR 'w' /* trailing white space continues paragr. */
|
|
115 #define FO_AUTO 'a' /* automatic formatting */
|
|
116
|
|
117 #define DFLT_FO_VI "vt"
|
|
118 #define DFLT_FO_VIM "tcq"
|
|
119 #define FO_ALL "tcroq2vlb1mMBn,aw" /* for do_set() */
|
|
120
|
|
121 /* characters for the p_cpo option: */
|
|
122 #define CPO_ALTREAD 'a' /* ":read" sets alternate file name */
|
|
123 #define CPO_ALTWRITE 'A' /* ":write" sets alternate file name */
|
|
124 #define CPO_BAR 'b' /* "\|" ends a mapping */
|
|
125 #define CPO_BSLASH 'B' /* backslash in mapping is not special */
|
|
126 #define CPO_SEARCH 'c'
|
|
127 #define CPO_CONCAT 'C' /* Don't concatenate sourced lines */
|
|
128 #define CPO_DOTTAG 'd' /* "./tags" in 'tags' is in current dir */
|
|
129 #define CPO_DIGRAPH 'D' /* No digraph after "r", "f", etc. */
|
|
130 #define CPO_EXECBUF 'e'
|
|
131 #define CPO_EMPTYREGION 'E' /* operating on empty region is an error */
|
|
132 #define CPO_FNAMER 'f' /* set file name for ":r file" */
|
|
133 #define CPO_FNAMEW 'F' /* set file name for ":w file" */
|
|
134 #define CPO_GOTO1 'g' /* goto line 1 for ":edit" */
|
|
135 #define CPO_INTMOD 'i' /* interrupt a read makes buffer modified */
|
10
|
136 #define CPO_INDENT 'I' /* remove auto-indent more often */
|
7
|
137 #define CPO_JOINSP 'j' /* only use two spaces for join after '.' */
|
|
138 #define CPO_ENDOFSENT 'J' /* need two spaces to detect end of sentence */
|
|
139 #define CPO_KEYCODE 'k' /* don't recognize raw key code in mappings */
|
|
140 #define CPO_KOFFSET 'K' /* don't wait for key code in mappings */
|
|
141 #define CPO_LITERAL 'l' /* take char after backslash in [] literal */
|
|
142 #define CPO_LISTWM 'L' /* 'list' changes wrapmargin */
|
|
143 #define CPO_SHOWMATCH 'm'
|
|
144 #define CPO_MATCHBSL 'M' /* "%" ignores use of backslashes */
|
|
145 #define CPO_NUMCOL 'n' /* 'number' column also used for text */
|
|
146 #define CPO_LINEOFF 'o'
|
|
147 #define CPO_OVERNEW 'O' /* silently overwrite new file */
|
|
148 #define CPO_LISP 'p' /* 'lisp' indenting */
|
|
149 #define CPO_REDO 'r'
|
|
150 #define CPO_REMMARK 'R' /* remove marks when filtering */
|
|
151 #define CPO_BUFOPT 's'
|
|
152 #define CPO_BUFOPTGLOB 'S'
|
|
153 #define CPO_TAGPAT 't'
|
|
154 #define CPO_UNDO 'u' /* "u" undoes itself */
|
|
155 #define CPO_BACKSPACE 'v' /* "v" keep deleted text */
|
|
156 #define CPO_CW 'w' /* "cw" only changes one blank */
|
|
157 #define CPO_FWRITE 'W' /* "w!" doesn't overwrite readonly files */
|
|
158 #define CPO_ESC 'x'
|
|
159 #define CPO_YANK 'y'
|
|
160 #define CPO_DOLLAR '$'
|
|
161 #define CPO_FILTER '!'
|
|
162 #define CPO_MATCH '%'
|
|
163 #define CPO_STAR '*' /* ":*" means ":@" */
|
39
|
164 #define CPO_PLUS '+' /* ":write file" resets 'modified' */
|
7
|
165 #define CPO_SPECI '<' /* don't recognize <> in mappings */
|
|
166 #define CPO_DEFAULT "aABceFs"
|
39
|
167 #define CPO_ALL "aAbBcCdDeEfFgiIjJkKlLmMnoOprRsStuvwWxy$!%*+<"
|
7
|
168
|
|
169 /* characters for p_ww option: */
|
|
170 #define WW_ALL "bshl<>[],~"
|
|
171
|
|
172 /* characters for p_mouse option: */
|
|
173 #define MOUSE_NORMAL 'n' /* use mouse in Normal mode */
|
|
174 #define MOUSE_VISUAL 'v' /* use mouse in Visual/Select mode */
|
|
175 #define MOUSE_INSERT 'i' /* use mouse in Insert mode */
|
|
176 #define MOUSE_COMMAND 'c' /* use mouse in Command-line mode */
|
|
177 #define MOUSE_HELP 'h' /* use mouse in help buffers */
|
|
178 #define MOUSE_RETURN 'r' /* use mouse for hit-return message */
|
|
179 #define MOUSE_A "nvich" /* used for 'a' flag */
|
|
180 #define MOUSE_ALL "anvichr" /* all possible characters */
|
|
181 #define MOUSE_NONE ' ' /* don't use Visual selection */
|
|
182 #define MOUSE_NONEF 'x' /* forced modeless selection */
|
|
183
|
|
184 /* characters for p_shm option: */
|
|
185 #define SHM_RO 'r' /* readonly */
|
|
186 #define SHM_MOD 'm' /* modified */
|
|
187 #define SHM_FILE 'f' /* (file 1 of 2) */
|
|
188 #define SHM_LAST 'i' /* last line incomplete */
|
|
189 #define SHM_TEXT 'x' /* tx instead of textmode */
|
|
190 #define SHM_LINES 'l' /* "L" instead of "lines" */
|
|
191 #define SHM_NEW 'n' /* "[New]" instead of "[New file]" */
|
|
192 #define SHM_WRI 'w' /* "[w]" instead of "written" */
|
|
193 #define SHM_A "rmfixlnw" /* represented by 'a' flag */
|
|
194 #define SHM_WRITE 'W' /* don't use "written" at all */
|
|
195 #define SHM_TRUNC 't' /* trunctate file messages */
|
|
196 #define SHM_TRUNCALL 'T' /* trunctate all messages */
|
|
197 #define SHM_OVER 'o' /* overwrite file messages */
|
|
198 #define SHM_OVERALL 'O' /* overwrite more messages */
|
|
199 #define SHM_SEARCH 's' /* no search hit bottom messages */
|
|
200 #define SHM_ATTENTION 'A' /* no ATTENTION messages */
|
|
201 #define SHM_INTRO 'I' /* intro messages */
|
|
202 #define SHM_ALL "rmfixlnwaWtToOsAI" /* all possible flags for 'shm' */
|
|
203
|
|
204 /* characters for p_go: */
|
|
205 #define GO_ASEL 'a' /* autoselect */
|
|
206 #define GO_ASELML 'A' /* autoselect modeless selection */
|
|
207 #define GO_BOT 'b' /* use bottom scrollbar */
|
|
208 #define GO_CONDIALOG 'c' /* use console dialog */
|
|
209 #define GO_FORG 'f' /* start GUI in foreground */
|
|
210 #define GO_GREY 'g' /* use grey menu items */
|
|
211 #define GO_HORSCROLL 'h' /* flexible horizontal scrolling */
|
|
212 #define GO_ICON 'i' /* use Vim icon */
|
|
213 #define GO_LEFT 'l' /* use left scrollbar */
|
|
214 #define GO_VLEFT 'L' /* left scrollbar with vert split */
|
|
215 #define GO_MENUS 'm' /* use menu bar */
|
|
216 #define GO_NOSYSMENU 'M' /* don't source system menu */
|
|
217 #define GO_POINTER 'p' /* pointer enter/leave callbacks */
|
|
218 #define GO_RIGHT 'r' /* use right scrollbar */
|
|
219 #define GO_VRIGHT 'R' /* right scrollbar with vert split */
|
|
220 #define GO_TEAROFF 't' /* add tear-off menu items */
|
|
221 #define GO_TOOLBAR 'T' /* add toolbar */
|
|
222 #define GO_FOOTER 'F' /* add footer */
|
|
223 #define GO_VERTICAL 'v' /* arrange dialog buttons vertically */
|
|
224 #define GO_ALL "aAbcfFghilmMprtTv" /* all possible flags for 'go' */
|
|
225
|
|
226 /* flags for 'comments' option */
|
|
227 #define COM_NEST 'n' /* comments strings nest */
|
|
228 #define COM_BLANK 'b' /* needs blank after string */
|
|
229 #define COM_START 's' /* start of comment */
|
|
230 #define COM_MIDDLE 'm' /* middle of comment */
|
|
231 #define COM_END 'e' /* end of comment */
|
|
232 #define COM_AUTO_END 'x' /* last char of end closes comment */
|
|
233 #define COM_FIRST 'f' /* first line comment only */
|
|
234 #define COM_LEFT 'l' /* left adjusted */
|
|
235 #define COM_RIGHT 'r' /* right adjusted */
|
|
236 #define COM_NOBACK 'O' /* don't use for "O" command */
|
|
237 #define COM_ALL "nbsmexflrO" /* all flags for 'comments' option */
|
|
238 #define COM_MAX_LEN 50 /* maximum length of a part */
|
|
239
|
|
240 /* flags for 'statusline' option */
|
|
241 #define STL_FILEPATH 'f' /* path of file in buffer */
|
|
242 #define STL_FULLPATH 'F' /* full path of file in buffer */
|
|
243 #define STL_FILENAME 't' /* last part (tail) of file path */
|
|
244 #define STL_COLUMN 'c' /* column og cursor*/
|
|
245 #define STL_VIRTCOL 'v' /* virtual column */
|
|
246 #define STL_VIRTCOL_ALT 'V' /* - with 'if different' display */
|
|
247 #define STL_LINE 'l' /* line number of cursor */
|
|
248 #define STL_NUMLINES 'L' /* number of lines in buffer */
|
|
249 #define STL_BUFNO 'n' /* current buffer number */
|
|
250 #define STL_KEYMAP 'k' /* 'keymap' when active */
|
|
251 #define STL_OFFSET 'o' /* offset of character under cursor*/
|
|
252 #define STL_OFFSET_X 'O' /* - in hexadecimal */
|
|
253 #define STL_BYTEVAL 'b' /* byte value of character */
|
|
254 #define STL_BYTEVAL_X 'B' /* - in hexadecimal */
|
|
255 #define STL_ROFLAG 'r' /* readonly flag */
|
|
256 #define STL_ROFLAG_ALT 'R' /* - other display */
|
|
257 #define STL_HELPFLAG 'h' /* window is showing a help file */
|
|
258 #define STL_HELPFLAG_ALT 'H' /* - other display */
|
|
259 #define STL_FILETYPE 'y' /* 'filetype' */
|
|
260 #define STL_FILETYPE_ALT 'Y' /* - other display */
|
|
261 #define STL_PREVIEWFLAG 'w' /* window is showing the preview buf */
|
|
262 #define STL_PREVIEWFLAG_ALT 'W' /* - other display */
|
|
263 #define STL_MODIFIED 'm' /* modified flag */
|
|
264 #define STL_MODIFIED_ALT 'M' /* - other display */
|
|
265 #define STL_PERCENTAGE 'p' /* percentage through file */
|
|
266 #define STL_ALTPERCENT 'P' /* percentage as TOP BOT ALL or NN% */
|
|
267 #define STL_ARGLISTSTAT 'a' /* argument list status as (x of y) */
|
|
268 #define STL_PAGENUM 'N' /* page number (when printing)*/
|
|
269 #define STL_VIM_EXPR '{' /* start of expression to substitute */
|
|
270 #define STL_MIDDLEMARK '=' /* separation between left and right */
|
|
271 #define STL_TRUNCMARK '<' /* truncation mark if line is too long*/
|
|
272 #define STL_HIGHLIGHT '*' /* highlight from (User)1..9 or 0 */
|
|
273 #define STL_ALL ((char_u *) "fFtcvVlLknoObBrRhHmYyWwMpPaN{")
|
|
274
|
|
275 /* flags used for parsed 'wildmode' */
|
|
276 #define WIM_FULL 1
|
|
277 #define WIM_LONGEST 2
|
|
278 #define WIM_LIST 4
|
|
279
|
|
280 /* arguments for can_bs() */
|
|
281 #define BS_INDENT 'i' /* "Indent" */
|
|
282 #define BS_EOL 'o' /* "eOl" */
|
|
283 #define BS_START 's' /* "Start" */
|
|
284
|
|
285 #define LISPWORD_VALUE "defun,define,defmacro,set!,lambda,if,case,let,flet,let*,letrec,do,do*,define-syntax,let-syntax,letrec-syntax,destructuring-bind,defpackage,defparameter,defstruct,deftype,defvar,do-all-symbols,do-external-symbols,do-symbols,dolist,dotimes,ecase,etypecase,eval-when,labels,macrolet,multiple-value-bind,multiple-value-call,multiple-value-prog1,multiple-value-setq,prog1,progv,typecase,unless,unwind-protect,when,with-input-from-string,with-open-file,with-open-stream,with-output-to-string,with-package-iterator,define-condition,handler-bind,handler-case,restart-bind,restart-case,with-simple-restart,store-value,use-value,muffle-warning,abort,continue,with-slots,with-slots*,with-accessors,with-accessors*,defclass,defmethod,print-unreadable-object"
|
|
286
|
|
287 /*
|
|
288 * The following are actual variabables for the options
|
|
289 */
|
|
290
|
|
291 #ifdef FEAT_RIGHTLEFT
|
|
292 EXTERN long p_aleph; /* 'aleph' */
|
|
293 #endif
|
|
294 #if defined(FEAT_NETBEANS_INTG) || defined(FEAT_SUN_WORKSHOP)
|
|
295 EXTERN int p_acd; /* 'autochdir' */
|
|
296 #endif
|
|
297 #ifdef FEAT_MBYTE
|
|
298 EXTERN char_u *p_ambw; /* 'ambiwidth' */
|
|
299 #endif
|
|
300 #if defined(FEAT_GUI) && defined(MACOS_X)
|
|
301 EXTERN int *p_antialias; /* 'antialias' */
|
|
302 #endif
|
|
303 EXTERN int p_ar; /* 'autoread' */
|
|
304 EXTERN int p_aw; /* 'autowrite' */
|
|
305 EXTERN int p_awa; /* 'autowriteall' */
|
|
306 EXTERN char_u *p_bs; /* 'backspace' */
|
|
307 EXTERN char_u *p_bg; /* 'background' */
|
|
308 EXTERN int p_bk; /* 'backup' */
|
|
309 EXTERN char_u *p_bkc; /* 'backupcopy' */
|
|
310 EXTERN unsigned bkc_flags;
|
|
311 #ifdef IN_OPTION_C
|
|
312 static char *(p_bkc_values[]) = {"yes", "auto", "no", "breaksymlink", "breakhardlink", NULL};
|
|
313 #endif
|
|
314 # define BKC_YES 0x001
|
|
315 # define BKC_AUTO 0x002
|
|
316 # define BKC_NO 0x004
|
|
317 # define BKC_BREAKSYMLINK 0x008
|
|
318 # define BKC_BREAKHARDLINK 0x010
|
|
319 EXTERN char_u *p_bdir; /* 'backupdir' */
|
|
320 EXTERN char_u *p_bex; /* 'backupext' */
|
|
321 #ifdef FEAT_WILDIGN
|
|
322 EXTERN char_u *p_bsk; /* 'backupskip' */
|
|
323 #endif
|
|
324 #ifdef FEAT_BEVAL
|
|
325 EXTERN long p_bdlay; /* 'balloondelay' */
|
|
326 # if defined(FEAT_SUN_WORKSHOP) || defined(FEAT_NETBEANS_INTG)
|
|
327 EXTERN int p_beval; /* 'ballooneval' */
|
|
328 # endif
|
|
329 #endif
|
|
330 #ifdef FEAT_BROWSE
|
|
331 EXTERN char_u *p_bsdir; /* 'browsedir' */
|
|
332 #endif
|
|
333 #ifdef MSDOS
|
|
334 EXTERN int p_biosk; /* 'bioskey' */
|
|
335 EXTERN int p_consk; /* 'conskey' */
|
|
336 #endif
|
|
337 #ifdef FEAT_LINEBREAK
|
|
338 EXTERN char_u *p_breakat; /* 'breakat' */
|
|
339 #endif
|
|
340 EXTERN char_u *p_cmp; /* 'casemap' */
|
|
341 EXTERN unsigned cmp_flags;
|
|
342 #ifdef IN_OPTION_C
|
|
343 static char *(p_cmp_values[]) = {"internal", "keepascii", NULL};
|
|
344 #endif
|
|
345 #define CMP_INTERNAL 0x001
|
|
346 #define CMP_KEEPASCII 0x002
|
|
347 #ifdef FEAT_MBYTE
|
|
348 EXTERN char_u *p_enc; /* 'encoding' */
|
|
349 EXTERN int p_deco; /* 'delcombine' */
|
|
350 # ifdef FEAT_EVAL
|
|
351 EXTERN char_u *p_ccv; /* 'charconvert' */
|
|
352 # endif
|
|
353 #endif
|
|
354 #ifdef FEAT_CMDWIN
|
|
355 EXTERN char_u *p_cedit; /* 'cedit' */
|
|
356 EXTERN long p_cwh; /* 'cmdwinheight' */
|
|
357 #endif
|
|
358 #ifdef FEAT_CLIPBOARD
|
|
359 EXTERN char_u *p_cb; /* 'clipboard' */
|
|
360 EXTERN int clip_unnamed INIT(= FALSE);
|
|
361 EXTERN int clip_autoselect INIT(= FALSE);
|
|
362 EXTERN int clip_autoselectml INIT(= FALSE);
|
|
363 EXTERN regprog_T *clip_exclude_prog INIT(= NULL);
|
|
364 #endif
|
|
365 EXTERN long p_ch; /* 'cmdheight' */
|
|
366 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
|
|
367 EXTERN int p_confirm; /* 'confirm' */
|
|
368 #endif
|
|
369 EXTERN int p_cp; /* 'compatible' */
|
|
370 EXTERN char_u *p_cpo; /* 'cpoptions' */
|
|
371 #ifdef FEAT_CSCOPE
|
|
372 EXTERN char_u *p_csprg; /* 'cscopeprg' */
|
|
373 # ifdef FEAT_QUICKFIX
|
|
374 EXTERN char_u *p_csqf; /* 'cscopequickfix' */
|
|
375 # define CSQF_CMDS "sgdctefi"
|
|
376 # define CSQF_FLAGS "+-0"
|
|
377 # endif
|
|
378 EXTERN int p_cst; /* 'cscopetag' */
|
|
379 EXTERN long p_csto; /* 'cscopetagorder' */
|
|
380 EXTERN long p_cspc; /* 'cscopepathcomp' */
|
|
381 EXTERN int p_csverbose; /* 'cscopeverbose' */
|
|
382 #endif
|
|
383 EXTERN char_u *p_debug; /* 'debug' */
|
|
384 #ifdef FEAT_FIND_ID
|
|
385 EXTERN char_u *p_def; /* 'define' */
|
|
386 EXTERN char_u *p_inc;
|
|
387 #endif
|
|
388 #ifdef FEAT_DIFF
|
|
389 EXTERN char_u *p_dip; /* 'diffopt' */
|
|
390 # ifdef FEAT_EVAL
|
|
391 EXTERN char_u *p_dex; /* 'diffexpr' */
|
|
392 # endif
|
|
393 #endif
|
|
394 #ifdef FEAT_INS_EXPAND
|
|
395 EXTERN char_u *p_dict; /* 'dictionary' */
|
|
396 #endif
|
|
397 #ifdef FEAT_DIGRAPHS
|
|
398 EXTERN int p_dg; /* 'digraph' */
|
|
399 #endif
|
|
400 EXTERN char_u *p_dir; /* 'directory' */
|
|
401 EXTERN char_u *p_dy; /* 'display' */
|
|
402 EXTERN unsigned dy_flags;
|
|
403 #ifdef IN_OPTION_C
|
|
404 static char *(p_dy_values[]) = {"lastline", "uhex", NULL};
|
|
405 #endif
|
|
406 #define DY_LASTLINE 0x001
|
|
407 #define DY_UHEX 0x002
|
|
408 EXTERN int p_ed; /* 'edcompatible' */
|
|
409 #ifdef FEAT_VERTSPLIT
|
|
410 EXTERN char_u *p_ead; /* 'eadirection' */
|
|
411 #endif
|
|
412 EXTERN int p_ea; /* 'equalalways' */
|
|
413 EXTERN char_u *p_ep; /* 'equalprg' */
|
|
414 EXTERN int p_eb; /* 'errorbells' */
|
|
415 #ifdef FEAT_QUICKFIX
|
|
416 EXTERN char_u *p_ef; /* 'errorfile' */
|
|
417 EXTERN char_u *p_efm; /* 'errorformat' */
|
|
418 EXTERN char_u *p_gefm; /* 'grepformat' */
|
|
419 EXTERN char_u *p_gp; /* 'grepprg' */
|
|
420 #endif
|
|
421 #ifdef FEAT_AUTOCMD
|
|
422 EXTERN char_u *p_ei; /* 'eventignore' */
|
|
423 #endif
|
|
424 EXTERN int p_ek; /* 'esckeys' */
|
|
425 EXTERN int p_exrc; /* 'exrc' */
|
|
426 #ifdef FEAT_MBYTE
|
|
427 EXTERN char_u *p_fencs; /* 'fileencodings' */
|
|
428 #endif
|
|
429 EXTERN char_u *p_ffs; /* 'fileformats' */
|
|
430 #ifdef FEAT_FOLDING
|
|
431 EXTERN char_u *p_fcl; /* 'foldclose' */
|
|
432 EXTERN long p_fdls; /* 'foldlevelstart' */
|
|
433 EXTERN char_u *p_fdo; /* 'foldopen' */
|
|
434 EXTERN unsigned fdo_flags;
|
|
435 # ifdef IN_OPTION_C
|
|
436 static char *(p_fdo_values[]) = {"all", "block", "hor", "mark", "percent",
|
|
437 "quickfix", "search", "tag", "insert",
|
|
438 "undo", "jump", NULL};
|
|
439 # endif
|
|
440 # define FDO_ALL 0x001
|
|
441 # define FDO_BLOCK 0x002
|
|
442 # define FDO_HOR 0x004
|
|
443 # define FDO_MARK 0x008
|
|
444 # define FDO_PERCENT 0x010
|
|
445 # define FDO_QUICKFIX 0x020
|
|
446 # define FDO_SEARCH 0x040
|
|
447 # define FDO_TAG 0x080
|
|
448 # define FDO_INSERT 0x100
|
|
449 # define FDO_UNDO 0x200
|
|
450 # define FDO_JUMP 0x400
|
|
451 #endif
|
|
452 EXTERN char_u *p_fp; /* 'formatprg' */
|
36
|
453 EXTERN int p_fs; /* 'fsync' */
|
7
|
454 EXTERN int p_gd; /* 'gdefault' */
|
|
455 #ifdef FEAT_PRINTER
|
|
456 EXTERN char_u *p_pdev; /* 'printdevice' */
|
|
457 # ifdef FEAT_POSTSCRIPT
|
|
458 EXTERN char_u *p_penc; /* 'printencoding' */
|
|
459 EXTERN char_u *p_pexpr; /* 'printexpr' */
|
15
|
460 # ifdef FEAT_MBYTE
|
|
461 EXTERN char_u *p_pmfn; /* 'printmbfont' */
|
|
462 EXTERN char_u *p_pmcs; /* 'printmbcharset' */
|
|
463 # endif
|
7
|
464 # endif
|
|
465 EXTERN char_u *p_pfn; /* 'printfont' */
|
|
466 EXTERN char_u *p_popt; /* 'printoptions' */
|
|
467 EXTERN char_u *p_header; /* 'printheader' */
|
|
468 #endif
|
|
469 #ifdef FEAT_GUI
|
|
470 EXTERN char_u *p_guifont; /* 'guifont' */
|
|
471 # ifdef FEAT_XFONTSET
|
|
472 EXTERN char_u *p_guifontset; /* 'guifontset' */
|
|
473 # endif
|
|
474 # ifdef FEAT_MBYTE
|
|
475 EXTERN char_u *p_guifontwide; /* 'guifontwide' */
|
|
476 # endif
|
|
477 EXTERN int p_guipty; /* 'guipty' */
|
|
478 #endif
|
11
|
479 #if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11) || defined(FEAT_GUI_KDE)
|
7
|
480 EXTERN long p_ghr; /* 'guiheadroom' */
|
|
481 #endif
|
|
482 #ifdef CURSOR_SHAPE
|
|
483 EXTERN char_u *p_guicursor; /* 'guicursor' */
|
|
484 #endif
|
|
485 #ifdef FEAT_MOUSESHAPE
|
|
486 EXTERN char_u *p_mouseshape; /* 'mouseshape' */
|
|
487 #endif
|
|
488 #if defined(FEAT_GUI)
|
|
489 EXTERN char_u *p_go; /* 'guioptions' */
|
|
490 #endif
|
|
491 EXTERN char_u *p_hf; /* 'helpfile' */
|
|
492 #ifdef FEAT_WINDOWS
|
|
493 EXTERN long p_hh; /* 'helpheight' */
|
|
494 #endif
|
|
495 #ifdef FEAT_MULTI_LANG
|
|
496 EXTERN char_u *p_hlg; /* 'helplang' */
|
|
497 #endif
|
|
498 EXTERN int p_hid; /* 'hidden' */
|
|
499 /* Use P_HID to check if a buffer is to be hidden when it is no longer
|
|
500 * visible in a window. */
|
|
501 #ifndef FEAT_QUICKFIX
|
|
502 # define P_HID(dummy) (p_hid || cmdmod.hide)
|
|
503 #else
|
|
504 # define P_HID(buf) (buf_hide(buf))
|
|
505 #endif
|
|
506 EXTERN char_u *p_hl; /* 'highlight' */
|
|
507 EXTERN int p_hls; /* 'hlsearch' */
|
|
508 EXTERN long p_hi; /* 'history' */
|
|
509 #ifdef FEAT_RIGHTLEFT
|
|
510 EXTERN int p_hkmap; /* 'hkmap' */
|
|
511 EXTERN int p_hkmapp; /* 'hkmapp' */
|
|
512 # ifdef FEAT_FKMAP
|
|
513 EXTERN int p_fkmap; /* 'fkmap' */
|
|
514 EXTERN int p_altkeymap; /* 'altkeymap' */
|
|
515 # endif
|
|
516 # ifdef FEAT_ARABIC
|
|
517 EXTERN int p_arshape; /* 'arabicshape' */
|
|
518 # endif
|
|
519 #endif
|
|
520 #ifdef FEAT_TITLE
|
|
521 EXTERN int p_icon; /* 'icon' */
|
|
522 EXTERN char_u *p_iconstring; /* 'iconstring' */
|
|
523 #endif
|
|
524 EXTERN int p_ic; /* 'ignorecase' */
|
11
|
525 #if defined(FEAT_XIM) && (defined(FEAT_GUI_GTK) || defined(FEAT_GUI_KDE))
|
7
|
526 EXTERN char_u *p_imak; /* 'imactivatekey' */
|
|
527 #endif
|
|
528 #ifdef USE_IM_CONTROL
|
|
529 EXTERN int p_imcmdline; /* 'imcmdline' */
|
|
530 EXTERN int p_imdisable; /* 'imdisable' */
|
|
531 #endif
|
|
532 EXTERN int p_is; /* 'incsearch' */
|
|
533 EXTERN int p_im; /* 'insertmode' */
|
|
534 EXTERN char_u *p_isf; /* 'isfname' */
|
|
535 EXTERN char_u *p_isi; /* 'isident' */
|
|
536 EXTERN char_u *p_isp; /* 'isprint' */
|
|
537 EXTERN int p_js; /* 'joinspaces' */
|
|
538 EXTERN char_u *p_kp; /* 'keywordprg' */
|
|
539 #ifdef FEAT_VISUAL
|
|
540 EXTERN char_u *p_km; /* 'keymodel' */
|
|
541 #endif
|
|
542 #ifdef FEAT_LANGMAP
|
|
543 EXTERN char_u *p_langmap; /* 'langmap'*/
|
|
544 #endif
|
|
545 #if defined(FEAT_MENU) && defined(FEAT_MULTI_LANG)
|
|
546 EXTERN char_u *p_lm; /* 'langmenu' */
|
|
547 #endif
|
|
548 #ifdef FEAT_GUI
|
|
549 EXTERN long p_linespace; /* 'linespace' */
|
|
550 #endif
|
|
551 #ifdef FEAT_LISP
|
|
552 EXTERN char_u *p_lispwords; /* 'lispwords' */
|
|
553 #endif
|
|
554 #ifdef FEAT_WINDOWS
|
|
555 EXTERN long p_ls; /* 'laststatus' */
|
|
556 #endif
|
|
557 EXTERN char_u *p_lcs; /* 'listchars' */
|
|
558
|
|
559 EXTERN int p_lz; /* 'lazyredraw' */
|
|
560 EXTERN int p_lpl; /* 'loadplugins' */
|
|
561 EXTERN int p_magic; /* 'magic' */
|
|
562 #ifdef FEAT_QUICKFIX
|
|
563 EXTERN char_u *p_mef; /* 'makeef' */
|
|
564 EXTERN char_u *p_mp; /* 'makeprg' */
|
|
565 #endif
|
|
566 EXTERN long p_mat; /* 'matchtime' */
|
|
567 #ifdef FEAT_EVAL
|
|
568 EXTERN long p_mfd; /* 'maxfuncdepth' */
|
|
569 #endif
|
|
570 EXTERN long p_mmd; /* 'maxmapdepth' */
|
|
571 EXTERN long p_mm; /* 'maxmem' */
|
|
572 EXTERN long p_mmt; /* 'maxmemtot' */
|
|
573 #ifdef FEAT_MENU
|
|
574 EXTERN long p_mis; /* 'menuitems' */
|
|
575 #endif
|
|
576 EXTERN long p_mls; /* 'modelines' */
|
|
577 EXTERN char_u *p_mouse; /* 'mouse' */
|
|
578 #ifdef FEAT_GUI
|
|
579 EXTERN int p_mousef; /* 'mousefocus' */
|
|
580 EXTERN int p_mh; /* 'mousehide' */
|
|
581 #endif
|
|
582 EXTERN char_u *p_mousem; /* 'mousemodel' */
|
|
583 EXTERN long p_mouset; /* 'mousetime' */
|
|
584 EXTERN int p_more; /* 'more' */
|
14
|
585 #ifdef FEAT_MZSCHEME
|
|
586 EXTERN long p_mzq; /* 'mzquantum */
|
|
587 #endif
|
7
|
588 EXTERN char_u *p_para; /* 'paragraphs' */
|
|
589 EXTERN int p_paste; /* 'paste' */
|
|
590 EXTERN char_u *p_pt; /* 'pastetoggle' */
|
|
591 #if defined(FEAT_EVAL) && defined(FEAT_DIFF)
|
|
592 EXTERN char_u *p_pex; /* 'patchexpr' */
|
|
593 #endif
|
|
594 EXTERN char_u *p_pm; /* 'patchmode' */
|
|
595 EXTERN char_u *p_path; /* 'path' */
|
|
596 #ifdef FEAT_SEARCHPATH
|
|
597 EXTERN char_u *p_cdpath; /* 'cdpath' */
|
|
598 #endif
|
|
599 EXTERN int p_remap; /* 'remap' */
|
|
600 EXTERN long p_report; /* 'report' */
|
|
601 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
|
|
602 EXTERN long p_pvh; /* 'previewheight' */
|
|
603 #endif
|
|
604 #ifdef WIN3264
|
|
605 EXTERN int p_rs; /* 'restorescreen' */
|
|
606 #endif
|
|
607 #ifdef FEAT_RIGHTLEFT
|
|
608 EXTERN int p_ari; /* 'allowrevins' */
|
|
609 EXTERN int p_ri; /* 'revins' */
|
|
610 #endif
|
|
611 #ifdef FEAT_CMDL_INFO
|
|
612 EXTERN int p_ru; /* 'ruler' */
|
|
613 #endif
|
|
614 #ifdef FEAT_STL_OPT
|
|
615 EXTERN char_u *p_ruf; /* 'rulerformat' */
|
|
616 #endif
|
|
617 EXTERN char_u *p_rtp; /* 'runtimepath' */
|
|
618 EXTERN long p_sj; /* 'scrolljump' */
|
|
619 EXTERN long p_so; /* 'scrolloff' */
|
|
620 #ifdef FEAT_SCROLLBIND
|
|
621 EXTERN char_u *p_sbo; /* 'scrollopt' */
|
|
622 #endif
|
|
623 EXTERN char_u *p_sections; /* 'sections' */
|
|
624 EXTERN int p_secure; /* 'secure' */
|
|
625 #ifdef FEAT_VISUAL
|
|
626 EXTERN char_u *p_sel; /* 'selection' */
|
|
627 EXTERN char_u *p_slm; /* 'selectmode' */
|
|
628 #endif
|
|
629 #ifdef FEAT_SESSION
|
|
630 EXTERN char_u *p_ssop; /* 'sessionoptions' */
|
|
631 EXTERN unsigned ssop_flags;
|
|
632 # ifdef IN_OPTION_C
|
|
633 /* Also used for 'viewoptions'! */
|
|
634 static char *(p_ssop_values[]) = {"buffers", "winpos", "resize", "winsize",
|
|
635 "localoptions", "options", "help", "blank", "globals", "slash", "unix",
|
|
636 "sesdir", "curdir", "folds", "cursor", NULL};
|
|
637 # endif
|
|
638 # define SSOP_BUFFERS 0x001
|
|
639 # define SSOP_WINPOS 0x002
|
|
640 # define SSOP_RESIZE 0x004
|
|
641 # define SSOP_WINSIZE 0x008
|
|
642 # define SSOP_LOCALOPTIONS 0x010
|
|
643 # define SSOP_OPTIONS 0x020
|
|
644 # define SSOP_HELP 0x040
|
|
645 # define SSOP_BLANK 0x080
|
|
646 # define SSOP_GLOBALS 0x100
|
|
647 # define SSOP_SLASH 0x200
|
|
648 # define SSOP_UNIX 0x400
|
|
649 # define SSOP_SESDIR 0x800
|
|
650 # define SSOP_CURDIR 0x1000
|
|
651 # define SSOP_FOLDS 0x2000
|
|
652 # define SSOP_CURSOR 0x4000
|
|
653 #endif
|
|
654 EXTERN char_u *p_sh; /* 'shell' */
|
|
655 EXTERN char_u *p_shcf; /* 'shellcmdflag' */
|
|
656 #ifdef FEAT_QUICKFIX
|
|
657 EXTERN char_u *p_sp; /* 'shellpipe' */
|
|
658 #endif
|
|
659 EXTERN char_u *p_shq; /* 'shellquote' */
|
|
660 EXTERN char_u *p_sxq; /* 'shellxquote' */
|
|
661 EXTERN char_u *p_srr; /* 'shellredir' */
|
|
662 #ifdef AMIGA
|
|
663 EXTERN long p_st; /* 'shelltype' */
|
|
664 #endif
|
|
665 #ifdef BACKSLASH_IN_FILENAME
|
|
666 EXTERN int p_ssl; /* 'shellslash' */
|
|
667 #endif
|
|
668 #ifdef FEAT_STL_OPT
|
|
669 EXTERN char_u *p_stl; /* 'statusline' */
|
|
670 #endif
|
|
671 EXTERN int p_sr; /* 'shiftround' */
|
|
672 EXTERN char_u *p_shm; /* 'shortmess' */
|
|
673 #ifdef FEAT_LINEBREAK
|
|
674 EXTERN char_u *p_sbr; /* 'showbreak' */
|
|
675 #endif
|
|
676 #ifdef FEAT_CMDL_INFO
|
|
677 EXTERN int p_sc; /* 'showcmd' */
|
|
678 #endif
|
|
679 EXTERN int p_sft; /* 'showfulltag' */
|
|
680 EXTERN int p_sm; /* 'showmatch' */
|
|
681 EXTERN int p_smd; /* 'showmode' */
|
|
682 EXTERN long p_ss; /* 'sidescroll' */
|
|
683 EXTERN long p_siso; /* 'sidescrolloff' */
|
|
684 EXTERN int p_scs; /* 'smartcase' */
|
|
685 EXTERN int p_sta; /* 'smarttab' */
|
|
686 #ifdef FEAT_WINDOWS
|
|
687 EXTERN int p_sb; /* 'splitbelow' */
|
|
688 #endif
|
|
689 #ifdef FEAT_VERTSPLIT
|
|
690 EXTERN int p_spr; /* 'splitright' */
|
|
691 #endif
|
|
692 EXTERN int p_sol; /* 'startofline' */
|
|
693 EXTERN char_u *p_su; /* 'suffixes' */
|
|
694 EXTERN char_u *p_sws; /* 'swapsync' */
|
|
695 EXTERN char_u *p_swb; /* 'switchbuf' */
|
|
696 EXTERN int p_tbs; /* 'tagbsearch' */
|
|
697 EXTERN long p_tl; /* 'taglength' */
|
|
698 EXTERN int p_tr; /* 'tagrelative' */
|
|
699 EXTERN char_u *p_tags; /* 'tags' */
|
|
700 EXTERN int p_tgst; /* 'tagstack' */
|
|
701 #ifdef FEAT_ARABIC
|
|
702 EXTERN int p_tbidi; /* 'termbidi' */
|
|
703 #endif
|
|
704 #ifdef FEAT_MBYTE
|
|
705 EXTERN char_u *p_tenc; /* 'termencoding' */
|
|
706 #endif
|
|
707 EXTERN int p_terse; /* 'terse' */
|
|
708 EXTERN int p_ta; /* 'textauto' */
|
|
709 EXTERN int p_to; /* 'tildeop' */
|
|
710 EXTERN int p_timeout; /* 'timeout' */
|
|
711 EXTERN long p_tm; /* 'timeoutlen' */
|
|
712 #ifdef FEAT_TITLE
|
|
713 EXTERN int p_title; /* 'title' */
|
|
714 EXTERN long p_titlelen; /* 'titlelen' */
|
|
715 EXTERN char_u *p_titleold; /* 'titleold' */
|
|
716 EXTERN char_u *p_titlestring; /* 'titlestring' */
|
|
717 #endif
|
|
718 #ifdef FEAT_INS_EXPAND
|
|
719 EXTERN char_u *p_tsr; /* 'thesaurus' */
|
|
720 #endif
|
|
721 EXTERN int p_ttimeout; /* 'ttimeout' */
|
|
722 EXTERN long p_ttm; /* 'ttimeoutlen' */
|
|
723 EXTERN int p_tbi; /* 'ttybuiltin' */
|
|
724 EXTERN int p_tf; /* 'ttyfast' */
|
|
725 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
|
|
726 EXTERN char_u *p_toolbar; /* 'toolbar' */
|
|
727 EXTERN unsigned toolbar_flags;
|
|
728 # ifdef IN_OPTION_C
|
|
729 static char *(p_toolbar_values[]) = {"text", "icons", "tooltips", "horiz", NULL};
|
|
730 # endif
|
|
731 # define TOOLBAR_TEXT 0x01
|
|
732 # define TOOLBAR_ICONS 0x02
|
|
733 # define TOOLBAR_TOOLTIPS 0x04
|
|
734 # define TOOLBAR_HORIZ 0x08
|
|
735 #endif
|
|
736 #if defined(FEAT_TOOLBAR) && defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)
|
|
737 EXTERN char_u *p_tbis; /* 'toolbariconsize' */
|
|
738 EXTERN unsigned tbis_flags;
|
|
739 # ifdef IN_OPTION_C
|
|
740 static char *(p_tbis_values[]) = {"tiny", "small", "medium", "large", NULL};
|
|
741 # endif
|
|
742 # define TBIS_TINY 0x01
|
|
743 # define TBIS_SMALL 0x02
|
|
744 # define TBIS_MEDIUM 0x04
|
|
745 # define TBIS_LARGE 0x08
|
|
746 #endif
|
|
747 EXTERN long p_ttyscroll; /* 'ttyscroll' */
|
|
748 #if defined(FEAT_MOUSE) && (defined(UNIX) || defined(VMS))
|
|
749 EXTERN char_u *p_ttym; /* 'ttymouse' */
|
|
750 EXTERN unsigned ttym_flags;
|
|
751 # ifdef IN_OPTION_C
|
|
752 static char *(p_ttym_values[]) = {"xterm", "xterm2", "dec", "netterm", "jsbterm", "pterm", NULL};
|
|
753 # endif
|
|
754 # define TTYM_XTERM 0x01
|
|
755 # define TTYM_XTERM2 0x02
|
|
756 # define TTYM_DEC 0x04
|
|
757 # define TTYM_NETTERM 0x08
|
|
758 # define TTYM_JSBTERM 0x10
|
|
759 # define TTYM_PTERM 0x20
|
|
760 #endif
|
|
761 EXTERN long p_ul; /* 'undolevels' */
|
|
762 EXTERN long p_uc; /* 'updatecount' */
|
|
763 EXTERN long p_ut; /* 'updatetime' */
|
|
764 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
|
|
765 EXTERN char_u *p_fcs; /* 'fillchar' */
|
|
766 #endif
|
|
767 #ifdef FEAT_VIMINFO
|
|
768 EXTERN char_u *p_viminfo; /* 'viminfo' */
|
|
769 #endif
|
|
770 #ifdef FEAT_SESSION
|
|
771 EXTERN char_u *p_vdir; /* 'viewdir' */
|
|
772 EXTERN char_u *p_vop; /* 'viewoptions' */
|
|
773 EXTERN unsigned vop_flags; /* uses SSOP_ flags */
|
|
774 #endif
|
|
775 EXTERN int p_vb; /* 'visualbell' */
|
|
776 #ifdef FEAT_VIRTUALEDIT
|
|
777 EXTERN char_u *p_ve; /* 'virtualedit' */
|
|
778 EXTERN unsigned ve_flags;
|
|
779 # ifdef IN_OPTION_C
|
|
780 static char *(p_ve_values[]) = {"block", "insert", "all", NULL};
|
|
781 # endif
|
|
782 # define VE_BLOCK 5 /* includes "all" */
|
|
783 # define VE_INSERT 6 /* includes "all" */
|
|
784 # define VE_ALL 4
|
|
785 #endif
|
|
786 EXTERN long p_verbose; /* 'verbose' */
|
|
787 EXTERN int p_warn; /* 'warn' */
|
40
|
788 #ifdef FEAT_CMDL_COMPL
|
|
789 EXTERN char_u *p_wop; /* 'wildoptions' */
|
|
790 #endif
|
7
|
791 #if defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_MOTIF) || defined(LINT) \
|
11
|
792 || defined (FEAT_GUI_GTK) || defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_KDE)
|
7
|
793 #define FEAT_WAK
|
|
794 EXTERN char_u *p_wak; /* 'winaltkeys' */
|
|
795 #endif
|
|
796 #ifdef FEAT_WILDIGN
|
|
797 EXTERN char_u *p_wig; /* 'wildignore' */
|
|
798 #endif
|
|
799 EXTERN int p_wiv; /* 'weirdinvert' */
|
|
800 EXTERN char_u *p_ww; /* 'whichwrap' */
|
|
801 EXTERN long p_wc; /* 'wildchar' */
|
|
802 EXTERN long p_wcm; /* 'wildcharm' */
|
|
803 EXTERN char_u *p_wim; /* 'wildmode' */
|
|
804 #ifdef FEAT_WILDMENU
|
|
805 EXTERN int p_wmnu; /* 'wildmenu' */
|
|
806 #endif
|
|
807 #ifdef FEAT_WINDOWS
|
|
808 EXTERN long p_wh; /* 'winheight' */
|
|
809 EXTERN long p_wmh; /* 'winminheight' */
|
|
810 #endif
|
|
811 #ifdef FEAT_VERTSPLIT
|
|
812 EXTERN long p_wmw; /* 'winminwidth' */
|
|
813 EXTERN long p_wiw; /* 'winwidth' */
|
|
814 #endif
|
|
815 EXTERN int p_ws; /* 'wrapscan' */
|
|
816 EXTERN int p_write; /* 'write' */
|
|
817 EXTERN int p_wa; /* 'writeany' */
|
|
818 EXTERN int p_wb; /* 'writebackup' */
|
|
819 EXTERN long p_wd; /* 'writedelay' */
|