Fix problems with 'fullscreen' and :mksession
[MacVim.git] / src / option.c
blobb629cda1f53be29b50df63fcc836194958910db6
1 /* vi:set ts=8 sts=4 sw=4:
3 * VIM - Vi IMproved by Bram Moolenaar
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
11 * Code to handle user-settable options. This is all pretty much table-
12 * driven. Checklist for adding a new option:
13 * - Put it in the options array below (copy an existing entry).
14 * - For a global option: Add a variable for it in option.h.
15 * - For a buffer or window local option:
16 * - Add a PV_XX entry to the enum below.
17 * - Add a variable to the window or buffer struct in structs.h.
18 * - For a window option, add some code to copy_winopt().
19 * - For a buffer option, add some code to buf_copy_options().
20 * - For a buffer string option, add code to check_buf_options().
21 * - If it's a numeric option, add any necessary bounds checks to do_set().
22 * - If it's a list of flags, add some code in do_set(), search for WW_ALL.
23 * - When adding an option with expansion (P_EXPAND), but with a different
24 * default for Vi and Vim (no P_VI_DEF), add some code at VIMEXP.
25 * - Add documentation! One line in doc/help.txt, full description in
26 * options.txt, and any other related places.
27 * - Add an entry in runtime/optwin.vim.
28 * When making changes:
29 * - Adjust the help for the option in doc/option.txt.
30 * - When an entry has the P_VIM flag, or is lacking the P_VI_DEF flag, add a
31 * comment at the help for the 'compatible' option.
34 #define IN_OPTION_C
35 #include "vim.h"
38 * The options that are local to a window or buffer have "indir" set to one of
39 * these values. Special values:
40 * PV_NONE: global option.
41 * PV_WIN is added: window-local option
42 * PV_BUF is added: buffer-local option
43 * PV_BOTH is added: global option which also has a local value.
45 #define PV_BOTH 0x1000
46 #define PV_WIN 0x2000
47 #define PV_BUF 0x4000
48 #define PV_MASK 0x0fff
49 #define OPT_WIN(x) (idopt_T)(PV_WIN + (int)(x))
50 #define OPT_BUF(x) (idopt_T)(PV_BUF + (int)(x))
51 #define OPT_BOTH(x) (idopt_T)(PV_BOTH + (int)(x))
54 * Definition of the PV_ values for buffer-local options.
55 * The BV_ values are defined in option.h.
57 #define PV_AI OPT_BUF(BV_AI)
58 #define PV_AR OPT_BOTH(OPT_BUF(BV_AR))
59 #ifdef FEAT_QUICKFIX
60 # define PV_BH OPT_BUF(BV_BH)
61 # define PV_BT OPT_BUF(BV_BT)
62 # define PV_EFM OPT_BOTH(OPT_BUF(BV_EFM))
63 # define PV_GP OPT_BOTH(OPT_BUF(BV_GP))
64 # define PV_MP OPT_BOTH(OPT_BUF(BV_MP))
65 #endif
66 #define PV_BIN OPT_BUF(BV_BIN)
67 #define PV_BL OPT_BUF(BV_BL)
68 #ifdef FEAT_MBYTE
69 # define PV_BOMB OPT_BUF(BV_BOMB)
70 #endif
71 #define PV_CI OPT_BUF(BV_CI)
72 #ifdef FEAT_CINDENT
73 # define PV_CIN OPT_BUF(BV_CIN)
74 # define PV_CINK OPT_BUF(BV_CINK)
75 # define PV_CINO OPT_BUF(BV_CINO)
76 #endif
77 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
78 # define PV_CINW OPT_BUF(BV_CINW)
79 #endif
80 #ifdef FEAT_FOLDING
81 # define PV_CMS OPT_BUF(BV_CMS)
82 #endif
83 #ifdef FEAT_COMMENTS
84 # define PV_COM OPT_BUF(BV_COM)
85 #endif
86 #ifdef FEAT_INS_EXPAND
87 # define PV_CPT OPT_BUF(BV_CPT)
88 # define PV_DICT OPT_BOTH(OPT_BUF(BV_DICT))
89 # define PV_TSR OPT_BOTH(OPT_BUF(BV_TSR))
90 #endif
91 #ifdef FEAT_COMPL_FUNC
92 # define PV_CFU OPT_BUF(BV_CFU)
93 #endif
94 #ifdef FEAT_FIND_ID
95 # define PV_DEF OPT_BOTH(OPT_BUF(BV_DEF))
96 # define PV_INC OPT_BOTH(OPT_BUF(BV_INC))
97 #endif
98 #define PV_EOL OPT_BUF(BV_EOL)
99 #define PV_EP OPT_BOTH(OPT_BUF(BV_EP))
100 #define PV_ET OPT_BUF(BV_ET)
101 #ifdef FEAT_MBYTE
102 # define PV_FENC OPT_BUF(BV_FENC)
103 #endif
104 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
105 # define PV_BEXPR OPT_BOTH(OPT_BUF(BV_BEXPR))
106 #endif
107 #ifdef FEAT_EVAL
108 # define PV_FEX OPT_BUF(BV_FEX)
109 #endif
110 #define PV_FF OPT_BUF(BV_FF)
111 #define PV_FLP OPT_BUF(BV_FLP)
112 #define PV_FO OPT_BUF(BV_FO)
113 #ifdef FEAT_AUTOCMD
114 # define PV_FT OPT_BUF(BV_FT)
115 #endif
116 #define PV_IMI OPT_BUF(BV_IMI)
117 #define PV_IMS OPT_BUF(BV_IMS)
118 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
119 # define PV_INDE OPT_BUF(BV_INDE)
120 # define PV_INDK OPT_BUF(BV_INDK)
121 #endif
122 #if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
123 # define PV_INEX OPT_BUF(BV_INEX)
124 #endif
125 #define PV_INF OPT_BUF(BV_INF)
126 #define PV_ISK OPT_BUF(BV_ISK)
127 #ifdef FEAT_CRYPT
128 # define PV_KEY OPT_BUF(BV_KEY)
129 #endif
130 #ifdef FEAT_KEYMAP
131 # define PV_KMAP OPT_BUF(BV_KMAP)
132 #endif
133 #define PV_KP OPT_BOTH(OPT_BUF(BV_KP))
134 #ifdef FEAT_LISP
135 # define PV_LISP OPT_BUF(BV_LISP)
136 #endif
137 #define PV_MA OPT_BUF(BV_MA)
138 #define PV_ML OPT_BUF(BV_ML)
139 #define PV_MOD OPT_BUF(BV_MOD)
140 #define PV_MPS OPT_BUF(BV_MPS)
141 #define PV_NF OPT_BUF(BV_NF)
142 #ifdef FEAT_OSFILETYPE
143 # define PV_OFT OPT_BUF(BV_OFT)
144 #endif
145 #ifdef FEAT_COMPL_FUNC
146 # define PV_OFU OPT_BUF(BV_OFU)
147 #endif
148 #define PV_PATH OPT_BOTH(OPT_BUF(BV_PATH))
149 #define PV_PI OPT_BUF(BV_PI)
150 #ifdef FEAT_TEXTOBJ
151 # define PV_QE OPT_BUF(BV_QE)
152 #endif
153 #define PV_RO OPT_BUF(BV_RO)
154 #ifdef FEAT_SMARTINDENT
155 # define PV_SI OPT_BUF(BV_SI)
156 #endif
157 #ifndef SHORT_FNAME
158 # define PV_SN OPT_BUF(BV_SN)
159 #endif
160 #ifdef FEAT_SYN_HL
161 # define PV_SMC OPT_BUF(BV_SMC)
162 # define PV_SYN OPT_BUF(BV_SYN)
163 #endif
164 #ifdef FEAT_SPELL
165 # define PV_SPC OPT_BUF(BV_SPC)
166 # define PV_SPF OPT_BUF(BV_SPF)
167 # define PV_SPL OPT_BUF(BV_SPL)
168 #endif
169 #define PV_STS OPT_BUF(BV_STS)
170 #ifdef FEAT_SEARCHPATH
171 # define PV_SUA OPT_BUF(BV_SUA)
172 #endif
173 #define PV_SW OPT_BUF(BV_SW)
174 #define PV_SWF OPT_BUF(BV_SWF)
175 #define PV_TAGS OPT_BOTH(OPT_BUF(BV_TAGS))
176 #define PV_TS OPT_BUF(BV_TS)
177 #define PV_TW OPT_BUF(BV_TW)
178 #define PV_TX OPT_BUF(BV_TX)
179 #define PV_WM OPT_BUF(BV_WM)
182 * Definition of the PV_ values for window-local options.
183 * The WV_ values are defined in option.h.
185 #define PV_LIST OPT_WIN(WV_LIST)
186 #ifdef FEAT_ARABIC
187 # define PV_ARAB OPT_WIN(WV_ARAB)
188 #endif
189 #ifdef FEAT_DIFF
190 # define PV_DIFF OPT_WIN(WV_DIFF)
191 #endif
192 #ifdef FEAT_FOLDING
193 # define PV_FDC OPT_WIN(WV_FDC)
194 # define PV_FEN OPT_WIN(WV_FEN)
195 # define PV_FDI OPT_WIN(WV_FDI)
196 # define PV_FDL OPT_WIN(WV_FDL)
197 # define PV_FDM OPT_WIN(WV_FDM)
198 # define PV_FML OPT_WIN(WV_FML)
199 # define PV_FDN OPT_WIN(WV_FDN)
200 # ifdef FEAT_EVAL
201 # define PV_FDE OPT_WIN(WV_FDE)
202 # define PV_FDT OPT_WIN(WV_FDT)
203 # endif
204 # define PV_FMR OPT_WIN(WV_FMR)
205 #endif
206 #ifdef FEAT_LINEBREAK
207 # define PV_LBR OPT_WIN(WV_LBR)
208 #endif
209 #define PV_NU OPT_WIN(WV_NU)
210 #ifdef FEAT_LINEBREAK
211 # define PV_NUW OPT_WIN(WV_NUW)
212 #endif
213 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
214 # define PV_PVW OPT_WIN(WV_PVW)
215 #endif
216 #ifdef FEAT_RIGHTLEFT
217 # define PV_RL OPT_WIN(WV_RL)
218 # define PV_RLC OPT_WIN(WV_RLC)
219 #endif
220 #ifdef FEAT_SCROLLBIND
221 # define PV_SCBIND OPT_WIN(WV_SCBIND)
222 #endif
223 #define PV_SCROLL OPT_WIN(WV_SCROLL)
224 #ifdef FEAT_SPELL
225 # define PV_SPELL OPT_WIN(WV_SPELL)
226 #endif
227 #ifdef FEAT_SYN_HL
228 # define PV_CUC OPT_WIN(WV_CUC)
229 # define PV_CUL OPT_WIN(WV_CUL)
230 #endif
231 #ifdef FEAT_STL_OPT
232 # define PV_STL OPT_BOTH(OPT_WIN(WV_STL))
233 #endif
234 #ifdef FEAT_WINDOWS
235 # define PV_WFH OPT_WIN(WV_WFH)
236 #endif
237 #ifdef FEAT_VERTSPLIT
238 # define PV_WFW OPT_WIN(WV_WFW)
239 #endif
240 #define PV_WRAP OPT_WIN(WV_WRAP)
243 /* WV_ and BV_ values get typecasted to this for the "indir" field */
244 typedef enum
246 PV_NONE = 0,
247 PV_MAXVAL = 0xffff /* to avoid warnings for value out of range */
248 } idopt_T;
251 * Options local to a window have a value local to a buffer and global to all
252 * buffers. Indicate this by setting "var" to VAR_WIN.
254 #define VAR_WIN ((char_u *)-1)
257 * These are the global values for options which are also local to a buffer.
258 * Only to be used in option.c!
260 static int p_ai;
261 static int p_bin;
262 #ifdef FEAT_MBYTE
263 static int p_bomb;
264 #endif
265 #if defined(FEAT_QUICKFIX)
266 static char_u *p_bh;
267 static char_u *p_bt;
268 #endif
269 static int p_bl;
270 static int p_ci;
271 #ifdef FEAT_CINDENT
272 static int p_cin;
273 static char_u *p_cink;
274 static char_u *p_cino;
275 #endif
276 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
277 static char_u *p_cinw;
278 #endif
279 #ifdef FEAT_COMMENTS
280 static char_u *p_com;
281 #endif
282 #ifdef FEAT_FOLDING
283 static char_u *p_cms;
284 #endif
285 #ifdef FEAT_INS_EXPAND
286 static char_u *p_cpt;
287 #endif
288 #ifdef FEAT_COMPL_FUNC
289 static char_u *p_cfu;
290 static char_u *p_ofu;
291 #endif
292 static int p_eol;
293 static int p_et;
294 #ifdef FEAT_MBYTE
295 static char_u *p_fenc;
296 #endif
297 static char_u *p_ff;
298 static char_u *p_fo;
299 static char_u *p_flp;
300 #ifdef FEAT_AUTOCMD
301 static char_u *p_ft;
302 #endif
303 static long p_iminsert;
304 static long p_imsearch;
305 #if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
306 static char_u *p_inex;
307 #endif
308 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
309 static char_u *p_inde;
310 static char_u *p_indk;
311 #endif
312 #if defined(FEAT_EVAL)
313 static char_u *p_fex;
314 #endif
315 static int p_inf;
316 static char_u *p_isk;
317 #ifdef FEAT_CRYPT
318 static char_u *p_key;
319 #endif
320 #ifdef FEAT_LISP
321 static int p_lisp;
322 #endif
323 static int p_ml;
324 static int p_ma;
325 static int p_mod;
326 static char_u *p_mps;
327 static char_u *p_nf;
328 #ifdef FEAT_OSFILETYPE
329 static char_u *p_oft;
330 #endif
331 static int p_pi;
332 #ifdef FEAT_TEXTOBJ
333 static char_u *p_qe;
334 #endif
335 static int p_ro;
336 #ifdef FEAT_SMARTINDENT
337 static int p_si;
338 #endif
339 #ifndef SHORT_FNAME
340 static int p_sn;
341 #endif
342 static long p_sts;
343 #if defined(FEAT_SEARCHPATH)
344 static char_u *p_sua;
345 #endif
346 static long p_sw;
347 static int p_swf;
348 #ifdef FEAT_SYN_HL
349 static long p_smc;
350 static char_u *p_syn;
351 #endif
352 #ifdef FEAT_SPELL
353 static char_u *p_spc;
354 static char_u *p_spf;
355 static char_u *p_spl;
356 #endif
357 static long p_ts;
358 static long p_tw;
359 static int p_tx;
360 static long p_wm;
361 #ifdef FEAT_KEYMAP
362 static char_u *p_keymap;
363 #endif
365 /* Saved values for when 'bin' is set. */
366 static int p_et_nobin;
367 static int p_ml_nobin;
368 static long p_tw_nobin;
369 static long p_wm_nobin;
371 /* Saved values for when 'paste' is set */
372 static long p_tw_nopaste;
373 static long p_wm_nopaste;
374 static long p_sts_nopaste;
375 static int p_ai_nopaste;
377 struct vimoption
379 char *fullname; /* full option name */
380 char *shortname; /* permissible abbreviation */
381 long_u flags; /* see below */
382 char_u *var; /* global option: pointer to variable;
383 * window-local option: VAR_WIN;
384 * buffer-local option: global value */
385 idopt_T indir; /* global option: PV_NONE;
386 * local option: indirect option index */
387 char_u *def_val[2]; /* default values for variable (vi and vim) */
388 #ifdef FEAT_EVAL
389 scid_T scriptID; /* script in which the option was last set */
390 #endif
393 #define VI_DEFAULT 0 /* def_val[VI_DEFAULT] is Vi default value */
394 #define VIM_DEFAULT 1 /* def_val[VIM_DEFAULT] is Vim default value */
397 * Flags
399 #define P_BOOL 0x01 /* the option is boolean */
400 #define P_NUM 0x02 /* the option is numeric */
401 #define P_STRING 0x04 /* the option is a string */
402 #define P_ALLOCED 0x08 /* the string option is in allocated memory,
403 must use vim_free() when assigning new
404 value. Not set if default is the same. */
405 #define P_EXPAND 0x10 /* environment expansion. NOTE: P_EXPAND can
406 never be used for local or hidden options! */
407 #define P_NODEFAULT 0x40 /* don't set to default value */
408 #define P_DEF_ALLOCED 0x80 /* default value is in allocated memory, must
409 use vim_free() when assigning new value */
410 #define P_WAS_SET 0x100 /* option has been set/reset */
411 #define P_NO_MKRC 0x200 /* don't include in :mkvimrc output */
412 #define P_VI_DEF 0x400 /* Use Vi default for Vim */
413 #define P_VIM 0x800 /* Vim option, reset when 'cp' set */
415 /* when option changed, what to display: */
416 #define P_RSTAT 0x1000 /* redraw status lines */
417 #define P_RWIN 0x2000 /* redraw current window */
418 #define P_RBUF 0x4000 /* redraw current buffer */
419 #define P_RALL 0x6000 /* redraw all windows */
420 #define P_RCLR 0x7000 /* clear and redraw all */
422 #define P_COMMA 0x8000 /* comma separated list */
423 #define P_NODUP 0x10000L/* don't allow duplicate strings */
424 #define P_FLAGLIST 0x20000L/* list of single-char flags */
426 #define P_SECURE 0x40000L/* cannot change in modeline or secure mode */
427 #define P_GETTEXT 0x80000L/* expand default value with _() */
428 #define P_NOGLOB 0x100000L/* do not use local value for global vimrc */
429 #define P_NFNAME 0x200000L/* only normal file name chars allowed */
430 #define P_INSECURE 0x400000L/* option was set from a modeline */
431 #define P_PRI_MKRC 0x800000L/* priority for :mkvimrc (setting option has
432 side effects) */
434 #define ISK_LATIN1 (char_u *)"@,48-57,_,192-255"
436 /* 'isprint' for latin1 is also used for MS-Windows cp1252, where 0x80 is used
437 * for the currency sign. */
438 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
439 # define ISP_LATIN1 (char_u *)"@,~-255"
440 #else
441 # define ISP_LATIN1 (char_u *)"@,161-255"
442 #endif
444 /* The 16 bit MS-DOS version is low on space, make the string as short as
445 * possible when compiling with few features. */
446 #if defined(FEAT_DIFF) || defined(FEAT_FOLDING) || defined(FEAT_SPELL) \
447 || defined(FEAT_VERTSPLIT) || defined(FEAT_CLIPBOARD) \
448 || defined(FEAT_INS_EXPAND) || defined(FEAT_SYN_HL)
449 # define HIGHLIGHT_INIT "8:SpecialKey,@:NonText,d:Directory,e:ErrorMsg,i:IncSearch,l:Search,m:MoreMsg,M:ModeMsg,n:LineNr,r:Question,s:StatusLine,S:StatusLineNC,c:VertSplit,t:Title,v:Visual,V:VisualNOS,w:WarningMsg,W:WildMenu,f:Folded,F:FoldColumn,A:DiffAdd,C:DiffChange,D:DiffDelete,T:DiffText,>:SignColumn,B:SpellBad,P:SpellCap,R:SpellRare,L:SpellLocal,+:Pmenu,=:PmenuSel,x:PmenuSbar,X:PmenuThumb,*:TabLine,#:TabLineSel,_:TabLineFill,!:CursorColumn,.:CursorLine"
450 #else
451 # define HIGHLIGHT_INIT "8:SpecialKey,@:NonText,d:Directory,e:ErrorMsg,i:IncSearch,l:Search,m:MoreMsg,M:ModeMsg,n:LineNr,r:Question,s:StatusLine,S:StatusLineNC,t:Title,v:Visual,w:WarningMsg,W:WildMenu,>:SignColumn,*:TabLine,#:TabLineSel,_:TabLineFill"
452 #endif
455 * options[] is initialized here.
456 * The order of the options MUST be alphabetic for ":set all" and findoption().
457 * All option names MUST start with a lowercase letter (for findoption()).
458 * Exception: "t_" options are at the end.
459 * The options with a NULL variable are 'hidden': a set command for them is
460 * ignored and they are not printed.
462 static struct vimoption
463 #ifdef FEAT_GUI_W16
464 _far
465 #endif
466 options[] =
468 {"aleph", "al", P_NUM|P_VI_DEF,
469 #ifdef FEAT_RIGHTLEFT
470 (char_u *)&p_aleph, PV_NONE,
471 #else
472 (char_u *)NULL, PV_NONE,
473 #endif
475 #if (defined(MSDOS) || defined(WIN3264) || defined(OS2)) && !defined(FEAT_GUI_W32)
476 (char_u *)128L,
477 #else
478 (char_u *)224L,
479 #endif
480 (char_u *)0L}},
481 {"antialias", "anti", P_BOOL|P_VI_DEF|P_VIM|P_RCLR,
482 #ifdef FEAT_ANTIALIAS
483 (char_u *)&p_antialias, PV_NONE,
484 #else
485 (char_u *)NULL, PV_NONE,
486 #endif
487 #if FEAT_GUI_MACVIM
488 {(char_u *)TRUE, (char_u *)0L}},
489 #else
490 {(char_u *)FALSE, (char_u *)0L}},
491 #endif
492 {"arabic", "arab", P_BOOL|P_VI_DEF|P_VIM,
493 #ifdef FEAT_ARABIC
494 (char_u *)VAR_WIN, PV_ARAB,
495 #else
496 (char_u *)NULL, PV_NONE,
497 #endif
498 {(char_u *)FALSE, (char_u *)0L}},
499 {"arabicshape", "arshape", P_BOOL|P_VI_DEF|P_VIM|P_RCLR,
500 #ifdef FEAT_ARABIC
501 (char_u *)&p_arshape, PV_NONE,
502 #else
503 (char_u *)NULL, PV_NONE,
504 #endif
505 {(char_u *)TRUE, (char_u *)0L}},
506 {"allowrevins", "ari", P_BOOL|P_VI_DEF|P_VIM,
507 #ifdef FEAT_RIGHTLEFT
508 (char_u *)&p_ari, PV_NONE,
509 #else
510 (char_u *)NULL, PV_NONE,
511 #endif
512 {(char_u *)FALSE, (char_u *)0L}},
513 {"altkeymap", "akm", P_BOOL|P_VI_DEF,
514 #ifdef FEAT_FKMAP
515 (char_u *)&p_altkeymap, PV_NONE,
516 #else
517 (char_u *)NULL, PV_NONE,
518 #endif
519 {(char_u *)FALSE, (char_u *)0L}},
520 {"ambiwidth", "ambw", P_STRING|P_VI_DEF|P_RCLR,
521 #if defined(FEAT_MBYTE)
522 (char_u *)&p_ambw, PV_NONE,
523 {(char_u *)"single", (char_u *)0L}
524 #else
525 (char_u *)NULL, PV_NONE,
526 {(char_u *)0L, (char_u *)0L}
527 #endif
529 #ifdef FEAT_AUTOCHDIR
530 {"autochdir", "acd", P_BOOL|P_VI_DEF,
531 (char_u *)&p_acd, PV_NONE,
532 {(char_u *)FALSE, (char_u *)0L}},
533 #endif
534 {"autoindent", "ai", P_BOOL|P_VI_DEF,
535 (char_u *)&p_ai, PV_AI,
536 {(char_u *)FALSE, (char_u *)0L}},
537 {"autoprint", "ap", P_BOOL|P_VI_DEF,
538 (char_u *)NULL, PV_NONE,
539 {(char_u *)FALSE, (char_u *)0L}},
540 {"autoread", "ar", P_BOOL|P_VI_DEF,
541 (char_u *)&p_ar, PV_AR,
542 {(char_u *)FALSE, (char_u *)0L}},
543 {"autowrite", "aw", P_BOOL|P_VI_DEF,
544 (char_u *)&p_aw, PV_NONE,
545 {(char_u *)FALSE, (char_u *)0L}},
546 {"autowriteall","awa", P_BOOL|P_VI_DEF,
547 (char_u *)&p_awa, PV_NONE,
548 {(char_u *)FALSE, (char_u *)0L}},
549 {"background", "bg", P_STRING|P_VI_DEF|P_RCLR,
550 (char_u *)&p_bg, PV_NONE,
552 #if (defined(MSDOS) || defined(OS2) || defined(WIN3264)) && !defined(FEAT_GUI)
553 (char_u *)"dark",
554 #else
555 (char_u *)"light",
556 #endif
557 (char_u *)0L}},
558 {"backspace", "bs", P_STRING|P_VI_DEF|P_VIM|P_COMMA|P_NODUP,
559 (char_u *)&p_bs, PV_NONE,
560 {(char_u *)"", (char_u *)0L}},
561 {"backup", "bk", P_BOOL|P_VI_DEF|P_VIM,
562 (char_u *)&p_bk, PV_NONE,
563 {(char_u *)FALSE, (char_u *)0L}},
564 {"backupcopy", "bkc", P_STRING|P_VIM|P_COMMA|P_NODUP,
565 (char_u *)&p_bkc, PV_NONE,
566 #ifdef UNIX
567 {(char_u *)"yes", (char_u *)"auto"}
568 #else
569 {(char_u *)"auto", (char_u *)"auto"}
570 #endif
572 {"backupdir", "bdir", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP|P_SECURE,
573 (char_u *)&p_bdir, PV_NONE,
574 {(char_u *)DFLT_BDIR, (char_u *)0L}},
575 {"backupext", "bex", P_STRING|P_VI_DEF|P_NFNAME,
576 (char_u *)&p_bex, PV_NONE,
578 #ifdef VMS
579 (char_u *)"_",
580 #else
581 (char_u *)"~",
582 #endif
583 (char_u *)0L}},
584 {"backupskip", "bsk", P_STRING|P_VI_DEF|P_COMMA,
585 #ifdef FEAT_WILDIGN
586 (char_u *)&p_bsk, PV_NONE,
587 {(char_u *)"", (char_u *)0L}
588 #else
589 (char_u *)NULL, PV_NONE,
590 {(char_u *)0L, (char_u *)0L}
591 #endif
593 #ifdef FEAT_BEVAL
594 {"balloondelay","bdlay",P_NUM|P_VI_DEF,
595 (char_u *)&p_bdlay, PV_NONE,
596 {(char_u *)600L, (char_u *)0L}},
597 {"ballooneval", "beval",P_BOOL|P_VI_DEF|P_NO_MKRC,
598 (char_u *)&p_beval, PV_NONE,
599 {(char_u *)FALSE, (char_u *)0L}},
600 # ifdef FEAT_EVAL
601 {"balloonexpr", "bexpr", P_STRING|P_ALLOCED|P_VI_DEF|P_VIM,
602 (char_u *)&p_bexpr, PV_BEXPR,
603 {(char_u *)"", (char_u *)0L}},
604 # endif
605 #endif
606 {"beautify", "bf", P_BOOL|P_VI_DEF,
607 (char_u *)NULL, PV_NONE,
608 {(char_u *)FALSE, (char_u *)0L}},
609 {"binary", "bin", P_BOOL|P_VI_DEF|P_RSTAT,
610 (char_u *)&p_bin, PV_BIN,
611 {(char_u *)FALSE, (char_u *)0L}},
612 {"bioskey", "biosk",P_BOOL|P_VI_DEF,
613 #ifdef MSDOS
614 (char_u *)&p_biosk, PV_NONE,
615 #else
616 (char_u *)NULL, PV_NONE,
617 #endif
618 {(char_u *)TRUE, (char_u *)0L}},
619 {"bomb", NULL, P_BOOL|P_NO_MKRC|P_VI_DEF|P_RSTAT,
620 #ifdef FEAT_MBYTE
621 (char_u *)&p_bomb, PV_BOMB,
622 #else
623 (char_u *)NULL, PV_NONE,
624 #endif
625 {(char_u *)FALSE, (char_u *)0L}},
626 {"breakat", "brk", P_STRING|P_VI_DEF|P_RALL|P_FLAGLIST,
627 #ifdef FEAT_LINEBREAK
628 (char_u *)&p_breakat, PV_NONE,
629 {(char_u *)" \t!@*-+;:,./?", (char_u *)0L}
630 #else
631 (char_u *)NULL, PV_NONE,
632 {(char_u *)0L, (char_u *)0L}
633 #endif
635 {"browsedir", "bsdir",P_STRING|P_VI_DEF,
636 #ifdef FEAT_BROWSE
637 (char_u *)&p_bsdir, PV_NONE,
638 {(char_u *)"last", (char_u *)0L}
639 #else
640 (char_u *)NULL, PV_NONE,
641 {(char_u *)0L, (char_u *)0L}
642 #endif
644 {"bufhidden", "bh", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB,
645 #if defined(FEAT_QUICKFIX)
646 (char_u *)&p_bh, PV_BH,
647 {(char_u *)"", (char_u *)0L}
648 #else
649 (char_u *)NULL, PV_NONE,
650 {(char_u *)0L, (char_u *)0L}
651 #endif
653 {"buflisted", "bl", P_BOOL|P_VI_DEF|P_NOGLOB,
654 (char_u *)&p_bl, PV_BL,
655 {(char_u *)1L, (char_u *)0L}
657 {"buftype", "bt", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB,
658 #if defined(FEAT_QUICKFIX)
659 (char_u *)&p_bt, PV_BT,
660 {(char_u *)"", (char_u *)0L}
661 #else
662 (char_u *)NULL, PV_NONE,
663 {(char_u *)0L, (char_u *)0L}
664 #endif
666 {"casemap", "cmp", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
667 #ifdef FEAT_MBYTE
668 (char_u *)&p_cmp, PV_NONE,
669 {(char_u *)"internal,keepascii", (char_u *)0L}
670 #else
671 (char_u *)NULL, PV_NONE,
672 {(char_u *)0L, (char_u *)0L}
673 #endif
675 {"cdpath", "cd", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
676 #ifdef FEAT_SEARCHPATH
677 (char_u *)&p_cdpath, PV_NONE,
678 {(char_u *)",,", (char_u *)0L}
679 #else
680 (char_u *)NULL, PV_NONE,
681 {(char_u *)0L, (char_u *)0L}
682 #endif
684 {"cedit", NULL, P_STRING,
685 #ifdef FEAT_CMDWIN
686 (char_u *)&p_cedit, PV_NONE,
687 {(char_u *)"", (char_u *)CTRL_F_STR}
688 #else
689 (char_u *)NULL, PV_NONE,
690 {(char_u *)0L, (char_u *)0L}
691 #endif
693 {"charconvert", "ccv", P_STRING|P_VI_DEF|P_SECURE,
694 #if defined(FEAT_MBYTE) && defined(FEAT_EVAL)
695 (char_u *)&p_ccv, PV_NONE,
696 {(char_u *)"", (char_u *)0L}
697 #else
698 (char_u *)NULL, PV_NONE,
699 {(char_u *)0L, (char_u *)0L}
700 #endif
702 {"cindent", "cin", P_BOOL|P_VI_DEF|P_VIM,
703 #ifdef FEAT_CINDENT
704 (char_u *)&p_cin, PV_CIN,
705 #else
706 (char_u *)NULL, PV_NONE,
707 #endif
708 {(char_u *)FALSE, (char_u *)0L}},
709 {"cinkeys", "cink", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
710 #ifdef FEAT_CINDENT
711 (char_u *)&p_cink, PV_CINK,
712 {(char_u *)"0{,0},0),:,0#,!^F,o,O,e", (char_u *)0L}
713 #else
714 (char_u *)NULL, PV_NONE,
715 {(char_u *)0L, (char_u *)0L}
716 #endif
718 {"cinoptions", "cino", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
719 #ifdef FEAT_CINDENT
720 (char_u *)&p_cino, PV_CINO,
721 #else
722 (char_u *)NULL, PV_NONE,
723 #endif
724 {(char_u *)"", (char_u *)0L}},
725 {"cinwords", "cinw", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
726 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
727 (char_u *)&p_cinw, PV_CINW,
728 {(char_u *)"if,else,while,do,for,switch",
729 (char_u *)0L}
730 #else
731 (char_u *)NULL, PV_NONE,
732 {(char_u *)0L, (char_u *)0L}
733 #endif
735 {"clipboard", "cb", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
736 #ifdef FEAT_CLIPBOARD
737 (char_u *)&p_cb, PV_NONE,
738 # ifdef FEAT_XCLIPBOARD
739 {(char_u *)"autoselect,exclude:cons\\|linux",
740 (char_u *)0L}
741 # else
742 {(char_u *)"", (char_u *)0L}
743 # endif
744 #else
745 (char_u *)NULL, PV_NONE,
746 {(char_u *)"", (char_u *)0L}
747 #endif
749 {"cmdheight", "ch", P_NUM|P_VI_DEF|P_RALL,
750 (char_u *)&p_ch, PV_NONE,
751 {(char_u *)1L, (char_u *)0L}},
752 {"cmdwinheight", "cwh", P_NUM|P_VI_DEF,
753 #ifdef FEAT_CMDWIN
754 (char_u *)&p_cwh, PV_NONE,
755 #else
756 (char_u *)NULL, PV_NONE,
757 #endif
758 {(char_u *)7L, (char_u *)0L}},
759 {"columns", "co", P_NUM|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RCLR,
760 (char_u *)&Columns, PV_NONE,
761 {(char_u *)80L, (char_u *)0L}},
762 {"comments", "com", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
763 #ifdef FEAT_COMMENTS
764 (char_u *)&p_com, PV_COM,
765 {(char_u *)"s1:/*,mb:*,ex:*/,://,b:#,:%,:XCOMM,n:>,fb:-",
766 (char_u *)0L}
767 #else
768 (char_u *)NULL, PV_NONE,
769 {(char_u *)0L, (char_u *)0L}
770 #endif
772 {"commentstring", "cms", P_STRING|P_ALLOCED|P_VI_DEF,
773 #ifdef FEAT_FOLDING
774 (char_u *)&p_cms, PV_CMS,
775 {(char_u *)"/*%s*/", (char_u *)0L}
776 #else
777 (char_u *)NULL, PV_NONE,
778 {(char_u *)0L, (char_u *)0L}
779 #endif
781 /* P_PRI_MKRC isn't needed here, optval_default()
782 * always returns TRUE for 'compatible' */
783 {"compatible", "cp", P_BOOL|P_RALL,
784 (char_u *)&p_cp, PV_NONE,
785 {(char_u *)TRUE, (char_u *)FALSE}},
786 {"complete", "cpt", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
787 #ifdef FEAT_INS_EXPAND
788 (char_u *)&p_cpt, PV_CPT,
789 {(char_u *)".,w,b,u,t,i", (char_u *)0L}
790 #else
791 (char_u *)NULL, PV_NONE,
792 {(char_u *)0L, (char_u *)0L}
793 #endif
795 {"completefunc", "cfu", P_STRING|P_ALLOCED|P_VI_DEF|P_SECURE,
796 #ifdef FEAT_COMPL_FUNC
797 (char_u *)&p_cfu, PV_CFU,
798 {(char_u *)"", (char_u *)0L}
799 #else
800 (char_u *)NULL, PV_NONE,
801 {(char_u *)0L, (char_u *)0L}
802 #endif
804 {"completeopt", "cot", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
805 #ifdef FEAT_INS_EXPAND
806 (char_u *)&p_cot, PV_NONE,
807 {(char_u *)"menu,preview", (char_u *)0L}
808 #else
809 (char_u *)NULL, PV_NONE,
810 {(char_u *)0L, (char_u *)0L}
811 #endif
813 {"confirm", "cf", P_BOOL|P_VI_DEF,
814 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
815 (char_u *)&p_confirm, PV_NONE,
816 #else
817 (char_u *)NULL, PV_NONE,
818 #endif
819 {(char_u *)FALSE, (char_u *)0L}},
820 {"conskey", "consk",P_BOOL|P_VI_DEF,
821 #ifdef MSDOS
822 (char_u *)&p_consk, PV_NONE,
823 #else
824 (char_u *)NULL, PV_NONE,
825 #endif
826 {(char_u *)FALSE, (char_u *)0L}},
827 {"copyindent", "ci", P_BOOL|P_VI_DEF|P_VIM,
828 (char_u *)&p_ci, PV_CI,
829 {(char_u *)FALSE, (char_u *)0L}},
830 {"cpoptions", "cpo", P_STRING|P_VIM|P_RALL|P_FLAGLIST,
831 (char_u *)&p_cpo, PV_NONE,
832 {(char_u *)CPO_VI, (char_u *)CPO_VIM}},
833 {"cscopepathcomp", "cspc", P_NUM|P_VI_DEF|P_VIM,
834 #ifdef FEAT_CSCOPE
835 (char_u *)&p_cspc, PV_NONE,
836 #else
837 (char_u *)NULL, PV_NONE,
838 #endif
839 {(char_u *)0L, (char_u *)0L}},
840 {"cscopeprg", "csprg", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
841 #ifdef FEAT_CSCOPE
842 (char_u *)&p_csprg, PV_NONE,
843 {(char_u *)"cscope", (char_u *)0L}
844 #else
845 (char_u *)NULL, PV_NONE,
846 {(char_u *)0L, (char_u *)0L}
847 #endif
849 {"cscopequickfix", "csqf", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
850 #if defined(FEAT_CSCOPE) && defined(FEAT_QUICKFIX)
851 (char_u *)&p_csqf, PV_NONE,
852 {(char_u *)"", (char_u *)0L}
853 #else
854 (char_u *)NULL, PV_NONE,
855 {(char_u *)0L, (char_u *)0L}
856 #endif
858 {"cscopetag", "cst", P_BOOL|P_VI_DEF|P_VIM,
859 #ifdef FEAT_CSCOPE
860 (char_u *)&p_cst, PV_NONE,
861 #else
862 (char_u *)NULL, PV_NONE,
863 #endif
864 {(char_u *)0L, (char_u *)0L}},
865 {"cscopetagorder", "csto", P_NUM|P_VI_DEF|P_VIM,
866 #ifdef FEAT_CSCOPE
867 (char_u *)&p_csto, PV_NONE,
868 #else
869 (char_u *)NULL, PV_NONE,
870 #endif
871 {(char_u *)0L, (char_u *)0L}},
872 {"cscopeverbose", "csverb", P_BOOL|P_VI_DEF|P_VIM,
873 #ifdef FEAT_CSCOPE
874 (char_u *)&p_csverbose, PV_NONE,
875 #else
876 (char_u *)NULL, PV_NONE,
877 #endif
878 {(char_u *)0L, (char_u *)0L}},
879 {"cursorcolumn", "cuc", P_BOOL|P_VI_DEF|P_RWIN,
880 #ifdef FEAT_SYN_HL
881 (char_u *)VAR_WIN, PV_CUC,
882 #else
883 (char_u *)NULL, PV_NONE,
884 #endif
885 {(char_u *)FALSE, (char_u *)0L}},
886 {"cursorline", "cul", P_BOOL|P_VI_DEF|P_RWIN,
887 #ifdef FEAT_SYN_HL
888 (char_u *)VAR_WIN, PV_CUL,
889 #else
890 (char_u *)NULL, PV_NONE,
891 #endif
892 {(char_u *)FALSE, (char_u *)0L}},
893 {"debug", NULL, P_STRING|P_VI_DEF,
894 (char_u *)&p_debug, PV_NONE,
895 {(char_u *)"", (char_u *)0L}},
896 {"define", "def", P_STRING|P_ALLOCED|P_VI_DEF,
897 #ifdef FEAT_FIND_ID
898 (char_u *)&p_def, PV_DEF,
899 {(char_u *)"^\\s*#\\s*define", (char_u *)0L}
900 #else
901 (char_u *)NULL, PV_NONE,
902 {(char_u *)NULL, (char_u *)0L}
903 #endif
905 {"delcombine", "deco", P_BOOL|P_VI_DEF|P_VIM,
906 #ifdef FEAT_MBYTE
907 (char_u *)&p_deco, PV_NONE,
908 #else
909 (char_u *)NULL, PV_NONE,
910 #endif
911 {(char_u *)FALSE, (char_u *)0L}},
912 {"dictionary", "dict", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
913 #ifdef FEAT_INS_EXPAND
914 (char_u *)&p_dict, PV_DICT,
915 #else
916 (char_u *)NULL, PV_NONE,
917 #endif
918 {(char_u *)"", (char_u *)0L}},
919 {"diff", NULL, P_BOOL|P_VI_DEF|P_RWIN|P_NOGLOB,
920 #ifdef FEAT_DIFF
921 (char_u *)VAR_WIN, PV_DIFF,
922 #else
923 (char_u *)NULL, PV_NONE,
924 #endif
925 {(char_u *)FALSE, (char_u *)0L}},
926 {"diffexpr", "dex", P_STRING|P_VI_DEF|P_SECURE,
927 #if defined(FEAT_DIFF) && defined(FEAT_EVAL)
928 (char_u *)&p_dex, PV_NONE,
929 {(char_u *)"", (char_u *)0L}
930 #else
931 (char_u *)NULL, PV_NONE,
932 {(char_u *)0L, (char_u *)0L}
933 #endif
935 {"diffopt", "dip", P_STRING|P_ALLOCED|P_VI_DEF|P_RWIN|P_COMMA|P_NODUP,
936 #ifdef FEAT_DIFF
937 (char_u *)&p_dip, PV_NONE,
938 {(char_u *)"filler", (char_u *)NULL}
939 #else
940 (char_u *)NULL, PV_NONE,
941 {(char_u *)"", (char_u *)NULL}
942 #endif
944 {"digraph", "dg", P_BOOL|P_VI_DEF|P_VIM,
945 #ifdef FEAT_DIGRAPHS
946 (char_u *)&p_dg, PV_NONE,
947 #else
948 (char_u *)NULL, PV_NONE,
949 #endif
950 {(char_u *)FALSE, (char_u *)0L}},
951 {"directory", "dir", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP|P_SECURE,
952 (char_u *)&p_dir, PV_NONE,
953 {(char_u *)DFLT_DIR, (char_u *)0L}},
954 {"display", "dy", P_STRING|P_VI_DEF|P_COMMA|P_RALL|P_NODUP,
955 (char_u *)&p_dy, PV_NONE,
956 {(char_u *)"", (char_u *)0L}},
957 {"eadirection", "ead", P_STRING|P_VI_DEF,
958 #ifdef FEAT_VERTSPLIT
959 (char_u *)&p_ead, PV_NONE,
960 {(char_u *)"both", (char_u *)0L}
961 #else
962 (char_u *)NULL, PV_NONE,
963 {(char_u *)NULL, (char_u *)0L}
964 #endif
966 {"edcompatible","ed", P_BOOL|P_VI_DEF,
967 (char_u *)&p_ed, PV_NONE,
968 {(char_u *)FALSE, (char_u *)0L}},
969 {"encoding", "enc", P_STRING|P_VI_DEF|P_RCLR,
970 #ifdef FEAT_MBYTE
971 (char_u *)&p_enc, PV_NONE,
972 {(char_u *)ENC_DFLT, (char_u *)0L}
973 #else
974 (char_u *)NULL, PV_NONE,
975 {(char_u *)0L, (char_u *)0L}
976 #endif
978 {"endofline", "eol", P_BOOL|P_NO_MKRC|P_VI_DEF|P_RSTAT,
979 (char_u *)&p_eol, PV_EOL,
980 {(char_u *)TRUE, (char_u *)0L}},
981 {"equalalways", "ea", P_BOOL|P_VI_DEF|P_RALL,
982 (char_u *)&p_ea, PV_NONE,
983 {(char_u *)TRUE, (char_u *)0L}},
984 {"equalprg", "ep", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
985 (char_u *)&p_ep, PV_EP,
986 {(char_u *)"", (char_u *)0L}},
987 {"errorbells", "eb", P_BOOL|P_VI_DEF,
988 (char_u *)&p_eb, PV_NONE,
989 {(char_u *)FALSE, (char_u *)0L}},
990 {"errorfile", "ef", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
991 #ifdef FEAT_QUICKFIX
992 (char_u *)&p_ef, PV_NONE,
993 {(char_u *)DFLT_ERRORFILE, (char_u *)0L}
994 #else
995 (char_u *)NULL, PV_NONE,
996 {(char_u *)NULL, (char_u *)0L}
997 #endif
999 {"errorformat", "efm", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1000 #ifdef FEAT_QUICKFIX
1001 (char_u *)&p_efm, PV_EFM,
1002 {(char_u *)DFLT_EFM, (char_u *)0L},
1003 #else
1004 (char_u *)NULL, PV_NONE,
1005 {(char_u *)NULL, (char_u *)0L}
1006 #endif
1008 {"esckeys", "ek", P_BOOL|P_VIM,
1009 (char_u *)&p_ek, PV_NONE,
1010 {(char_u *)FALSE, (char_u *)TRUE}},
1011 {"eventignore", "ei", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1012 #ifdef FEAT_AUTOCMD
1013 (char_u *)&p_ei, PV_NONE,
1014 #else
1015 (char_u *)NULL, PV_NONE,
1016 #endif
1017 {(char_u *)"", (char_u *)0L}},
1018 {"expandtab", "et", P_BOOL|P_VI_DEF|P_VIM,
1019 (char_u *)&p_et, PV_ET,
1020 {(char_u *)FALSE, (char_u *)0L}},
1021 {"exrc", "ex", P_BOOL|P_VI_DEF|P_SECURE,
1022 (char_u *)&p_exrc, PV_NONE,
1023 {(char_u *)FALSE, (char_u *)0L}},
1024 {"fileencoding","fenc", P_STRING|P_ALLOCED|P_VI_DEF|P_RSTAT|P_RBUF|P_NO_MKRC,
1025 #ifdef FEAT_MBYTE
1026 (char_u *)&p_fenc, PV_FENC,
1027 {(char_u *)"", (char_u *)0L}
1028 #else
1029 (char_u *)NULL, PV_NONE,
1030 {(char_u *)0L, (char_u *)0L}
1031 #endif
1033 {"fileencodings","fencs", P_STRING|P_VI_DEF|P_COMMA,
1034 #ifdef FEAT_MBYTE
1035 (char_u *)&p_fencs, PV_NONE,
1036 {(char_u *)"ucs-bom", (char_u *)0L}
1037 #else
1038 (char_u *)NULL, PV_NONE,
1039 {(char_u *)0L, (char_u *)0L}
1040 #endif
1042 {"fileformat", "ff", P_STRING|P_ALLOCED|P_VI_DEF|P_RSTAT|P_NO_MKRC,
1043 (char_u *)&p_ff, PV_FF,
1044 {(char_u *)DFLT_FF, (char_u *)0L}},
1045 {"fileformats", "ffs", P_STRING|P_VIM|P_COMMA|P_NODUP,
1046 (char_u *)&p_ffs, PV_NONE,
1047 {(char_u *)DFLT_FFS_VI, (char_u *)DFLT_FFS_VIM}},
1048 {"filetype", "ft", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB|P_NFNAME,
1049 #ifdef FEAT_AUTOCMD
1050 (char_u *)&p_ft, PV_FT,
1051 {(char_u *)"", (char_u *)0L}
1052 #else
1053 (char_u *)NULL, PV_NONE,
1054 {(char_u *)0L, (char_u *)0L}
1055 #endif
1057 {"fillchars", "fcs", P_STRING|P_VI_DEF|P_RALL|P_COMMA|P_NODUP,
1058 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
1059 (char_u *)&p_fcs, PV_NONE,
1060 {(char_u *)"vert:|,fold:-", (char_u *)0L}
1061 #else
1062 (char_u *)NULL, PV_NONE,
1063 {(char_u *)"", (char_u *)0L}
1064 #endif
1066 {"fkmap", "fk", P_BOOL|P_VI_DEF,
1067 #ifdef FEAT_FKMAP
1068 (char_u *)&p_fkmap, PV_NONE,
1069 #else
1070 (char_u *)NULL, PV_NONE,
1071 #endif
1072 {(char_u *)FALSE, (char_u *)0L}},
1073 {"flash", "fl", P_BOOL|P_VI_DEF,
1074 (char_u *)NULL, PV_NONE,
1075 {(char_u *)FALSE, (char_u *)0L}},
1076 #ifdef FEAT_FOLDING
1077 {"foldclose", "fcl", P_STRING|P_VI_DEF|P_COMMA|P_NODUP|P_RWIN,
1078 (char_u *)&p_fcl, PV_NONE,
1079 {(char_u *)"", (char_u *)0L}},
1080 {"foldcolumn", "fdc", P_NUM|P_VI_DEF|P_RWIN,
1081 (char_u *)VAR_WIN, PV_FDC,
1082 {(char_u *)FALSE, (char_u *)0L}},
1083 {"foldenable", "fen", P_BOOL|P_VI_DEF|P_RWIN,
1084 (char_u *)VAR_WIN, PV_FEN,
1085 {(char_u *)TRUE, (char_u *)0L}},
1086 {"foldexpr", "fde", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1087 # ifdef FEAT_EVAL
1088 (char_u *)VAR_WIN, PV_FDE,
1089 {(char_u *)"0", (char_u *)NULL}
1090 # else
1091 (char_u *)NULL, PV_NONE,
1092 {(char_u *)NULL, (char_u *)0L}
1093 # endif
1095 {"foldignore", "fdi", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1096 (char_u *)VAR_WIN, PV_FDI,
1097 {(char_u *)"#", (char_u *)NULL}},
1098 {"foldlevel", "fdl", P_NUM|P_VI_DEF|P_RWIN,
1099 (char_u *)VAR_WIN, PV_FDL,
1100 {(char_u *)0L, (char_u *)0L}},
1101 {"foldlevelstart","fdls", P_NUM|P_VI_DEF,
1102 (char_u *)&p_fdls, PV_NONE,
1103 {(char_u *)-1L, (char_u *)0L}},
1104 {"foldmarker", "fmr", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|
1105 P_RWIN|P_COMMA|P_NODUP,
1106 (char_u *)VAR_WIN, PV_FMR,
1107 {(char_u *)"{{{,}}}", (char_u *)NULL}},
1108 {"foldmethod", "fdm", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1109 (char_u *)VAR_WIN, PV_FDM,
1110 {(char_u *)"manual", (char_u *)NULL}},
1111 {"foldminlines","fml", P_NUM|P_VI_DEF|P_RWIN,
1112 (char_u *)VAR_WIN, PV_FML,
1113 {(char_u *)1L, (char_u *)0L}},
1114 {"foldnestmax", "fdn", P_NUM|P_VI_DEF|P_RWIN,
1115 (char_u *)VAR_WIN, PV_FDN,
1116 {(char_u *)20L, (char_u *)0L}},
1117 {"foldopen", "fdo", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1118 (char_u *)&p_fdo, PV_NONE,
1119 {(char_u *)"block,hor,mark,percent,quickfix,search,tag,undo",
1120 (char_u *)0L}},
1121 {"foldtext", "fdt", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1122 # ifdef FEAT_EVAL
1123 (char_u *)VAR_WIN, PV_FDT,
1124 {(char_u *)"foldtext()", (char_u *)NULL}
1125 # else
1126 (char_u *)NULL, PV_NONE,
1127 {(char_u *)NULL, (char_u *)0L}
1128 # endif
1130 #endif
1131 {"formatexpr", "fex", P_STRING|P_ALLOCED|P_VI_DEF|P_VIM,
1132 #ifdef FEAT_EVAL
1133 (char_u *)&p_fex, PV_FEX,
1134 {(char_u *)"", (char_u *)0L}
1135 #else
1136 (char_u *)NULL, PV_NONE,
1137 {(char_u *)0L, (char_u *)0L}
1138 #endif
1140 {"formatoptions","fo", P_STRING|P_ALLOCED|P_VIM|P_FLAGLIST,
1141 (char_u *)&p_fo, PV_FO,
1142 {(char_u *)DFLT_FO_VI, (char_u *)DFLT_FO_VIM}},
1143 {"formatlistpat","flp", P_STRING|P_ALLOCED|P_VI_DEF,
1144 (char_u *)&p_flp, PV_FLP,
1145 {(char_u *)"^\\s*\\d\\+[\\]:.)}\\t ]\\s*", (char_u *)0L}},
1146 {"formatprg", "fp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1147 (char_u *)&p_fp, PV_NONE,
1148 {(char_u *)"", (char_u *)0L}},
1149 {"fsync", "fs", P_BOOL|P_SECURE|P_VI_DEF,
1150 #ifdef HAVE_FSYNC
1151 (char_u *)&p_fs, PV_NONE,
1152 {(char_u *)TRUE, (char_u *)0L}
1153 #else
1154 (char_u *)NULL, PV_NONE,
1155 {(char_u *)FALSE, (char_u *)0L}
1156 #endif
1158 {"fullscreen", "fu", P_BOOL|P_NO_MKRC,
1159 #ifdef FEAT_FULLSCREEN
1160 (char_u *)&p_fullscreen, PV_NONE,
1161 #else
1162 (char_u *)NULL, PV_NONE,
1163 #endif
1164 {(char_u *)FALSE, (char_u *)0L}},
1165 {"fuoptions", "fuopt", P_STRING|P_COMMA|P_NODUP|P_VI_DEF,
1166 #ifdef FEAT_FULLSCREEN
1167 (char_u *)&p_fuoptions, PV_NONE,
1168 {(char_u *)"maxvert", (char_u *)0L}},
1169 #else
1170 (char_u *)NULL, PV_NONE,
1171 {(char_u *)NULL, (char_u *)0L}},
1172 #endif
1173 {"gdefault", "gd", P_BOOL|P_VI_DEF|P_VIM,
1174 (char_u *)&p_gd, PV_NONE,
1175 {(char_u *)FALSE, (char_u *)0L}},
1176 {"graphic", "gr", P_BOOL|P_VI_DEF,
1177 (char_u *)NULL, PV_NONE,
1178 {(char_u *)FALSE, (char_u *)0L}},
1179 {"grepformat", "gfm", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1180 #ifdef FEAT_QUICKFIX
1181 (char_u *)&p_gefm, PV_NONE,
1182 {(char_u *)DFLT_GREPFORMAT, (char_u *)0L},
1183 #else
1184 (char_u *)NULL, PV_NONE,
1185 {(char_u *)NULL, (char_u *)0L}
1186 #endif
1188 {"grepprg", "gp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1189 #ifdef FEAT_QUICKFIX
1190 (char_u *)&p_gp, PV_GP,
1192 # ifdef WIN3264
1193 /* may be changed to "grep -n" in os_win32.c */
1194 (char_u *)"findstr /n",
1195 # else
1196 # ifdef UNIX
1197 /* Add an extra file name so that grep will always
1198 * insert a file name in the match line. */
1199 (char_u *)"grep -n $* /dev/null",
1200 # else
1201 # ifdef VMS
1202 (char_u *)"SEARCH/NUMBERS ",
1203 # else
1204 (char_u *)"grep -n ",
1205 #endif
1206 #endif
1207 # endif
1208 (char_u *)0L},
1209 #else
1210 (char_u *)NULL, PV_NONE,
1211 {(char_u *)NULL, (char_u *)0L}
1212 #endif
1214 {"guicursor", "gcr", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1215 #ifdef CURSOR_SHAPE
1216 (char_u *)&p_guicursor, PV_NONE,
1218 # ifdef FEAT_GUI
1219 (char_u *)"n-v-c:block-Cursor/lCursor,ve:ver35-Cursor,o:hor50-Cursor,i-ci:ver25-Cursor/lCursor,r-cr:hor20-Cursor/lCursor,sm:block-Cursor-blinkwait175-blinkoff150-blinkon175",
1220 # else /* MSDOS or Win32 console */
1221 (char_u *)"n-v-c:block,o:hor50,i-ci:hor15,r-cr:hor30,sm:block",
1222 # endif
1223 (char_u *)0L}
1224 #else
1225 (char_u *)NULL, PV_NONE,
1226 {(char_u *)NULL, (char_u *)0L}
1227 #endif
1229 {"guifont", "gfn", P_STRING|P_VI_DEF|P_RCLR|P_COMMA|P_NODUP,
1230 #ifdef FEAT_GUI
1231 (char_u *)&p_guifont, PV_NONE,
1232 {(char_u *)"", (char_u *)0L}
1233 #else
1234 (char_u *)NULL, PV_NONE,
1235 {(char_u *)NULL, (char_u *)0L}
1236 #endif
1238 {"guifontset", "gfs", P_STRING|P_VI_DEF|P_RCLR|P_COMMA,
1239 #if defined(FEAT_GUI) && defined(FEAT_XFONTSET)
1240 (char_u *)&p_guifontset, PV_NONE,
1241 {(char_u *)"", (char_u *)0L}
1242 #else
1243 (char_u *)NULL, PV_NONE,
1244 {(char_u *)NULL, (char_u *)0L}
1245 #endif
1247 {"guifontwide", "gfw", P_STRING|P_VI_DEF|P_RCLR|P_COMMA|P_NODUP,
1248 #if defined(FEAT_GUI) && defined(FEAT_MBYTE)
1249 (char_u *)&p_guifontwide, PV_NONE,
1250 {(char_u *)"", (char_u *)0L}
1251 #else
1252 (char_u *)NULL, PV_NONE,
1253 {(char_u *)NULL, (char_u *)0L}
1254 #endif
1256 {"guiheadroom", "ghr", P_NUM|P_VI_DEF,
1257 #if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11)
1258 (char_u *)&p_ghr, PV_NONE,
1259 #else
1260 (char_u *)NULL, PV_NONE,
1261 #endif
1262 {(char_u *)50L, (char_u *)0L}},
1263 {"guioptions", "go", P_STRING|P_VI_DEF|P_RALL|P_FLAGLIST,
1264 #if defined(FEAT_GUI)
1265 (char_u *)&p_go, PV_NONE,
1266 # if defined(UNIX) && !defined(MACOS)
1267 {(char_u *)"aegimrLtT", (char_u *)0L}
1268 # else
1269 {(char_u *)"egmrLtT", (char_u *)0L}
1270 # endif
1271 #else
1272 (char_u *)NULL, PV_NONE,
1273 {(char_u *)NULL, (char_u *)0L}
1274 #endif
1276 {"guipty", NULL, P_BOOL|P_VI_DEF,
1277 #if defined(FEAT_GUI)
1278 (char_u *)&p_guipty, PV_NONE,
1279 #else
1280 (char_u *)NULL, PV_NONE,
1281 #endif
1282 {(char_u *)TRUE, (char_u *)0L}},
1283 {"guitablabel", "gtl", P_STRING|P_VI_DEF|P_RWIN,
1284 #if defined(FEAT_GUI_TABLINE)
1285 (char_u *)&p_gtl, PV_NONE,
1286 {(char_u *)"", (char_u *)0L}
1287 #else
1288 (char_u *)NULL, PV_NONE,
1289 {(char_u *)NULL, (char_u *)0L}
1290 #endif
1292 {"guitabtooltip", "gtt", P_STRING|P_VI_DEF|P_RWIN,
1293 #if defined(FEAT_GUI_TABLINE)
1294 (char_u *)&p_gtt, PV_NONE,
1295 {(char_u *)"", (char_u *)0L}
1296 #else
1297 (char_u *)NULL, PV_NONE,
1298 {(char_u *)NULL, (char_u *)0L}
1299 #endif
1301 {"hardtabs", "ht", P_NUM|P_VI_DEF,
1302 (char_u *)NULL, PV_NONE,
1303 {(char_u *)0L, (char_u *)0L}},
1304 {"helpfile", "hf", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1305 (char_u *)&p_hf, PV_NONE,
1306 {(char_u *)DFLT_HELPFILE, (char_u *)0L}},
1307 {"helpheight", "hh", P_NUM|P_VI_DEF,
1308 #ifdef FEAT_WINDOWS
1309 (char_u *)&p_hh, PV_NONE,
1310 #else
1311 (char_u *)NULL, PV_NONE,
1312 #endif
1313 {(char_u *)20L, (char_u *)0L}},
1314 {"helplang", "hlg", P_STRING|P_VI_DEF|P_COMMA,
1315 #ifdef FEAT_MULTI_LANG
1316 (char_u *)&p_hlg, PV_NONE,
1317 {(char_u *)"", (char_u *)0L}
1318 #else
1319 (char_u *)NULL, PV_NONE,
1320 {(char_u *)0L, (char_u *)0L}
1321 #endif
1323 {"hidden", "hid", P_BOOL|P_VI_DEF,
1324 (char_u *)&p_hid, PV_NONE,
1325 {(char_u *)FALSE, (char_u *)0L}},
1326 {"highlight", "hl", P_STRING|P_VI_DEF|P_RCLR|P_COMMA|P_NODUP,
1327 (char_u *)&p_hl, PV_NONE,
1328 {(char_u *)HIGHLIGHT_INIT, (char_u *)0L}},
1329 {"history", "hi", P_NUM|P_VIM,
1330 (char_u *)&p_hi, PV_NONE,
1331 {(char_u *)0L, (char_u *)20L}},
1332 {"hkmap", "hk", P_BOOL|P_VI_DEF|P_VIM,
1333 #ifdef FEAT_RIGHTLEFT
1334 (char_u *)&p_hkmap, PV_NONE,
1335 #else
1336 (char_u *)NULL, PV_NONE,
1337 #endif
1338 {(char_u *)FALSE, (char_u *)0L}},
1339 {"hkmapp", "hkp", P_BOOL|P_VI_DEF|P_VIM,
1340 #ifdef FEAT_RIGHTLEFT
1341 (char_u *)&p_hkmapp, PV_NONE,
1342 #else
1343 (char_u *)NULL, PV_NONE,
1344 #endif
1345 {(char_u *)FALSE, (char_u *)0L}},
1346 {"hlsearch", "hls", P_BOOL|P_VI_DEF|P_VIM|P_RALL,
1347 (char_u *)&p_hls, PV_NONE,
1348 {(char_u *)FALSE, (char_u *)0L}},
1349 {"icon", NULL, P_BOOL|P_VI_DEF,
1350 #ifdef FEAT_TITLE
1351 (char_u *)&p_icon, PV_NONE,
1352 #else
1353 (char_u *)NULL, PV_NONE,
1354 #endif
1355 {(char_u *)FALSE, (char_u *)0L}},
1356 {"iconstring", NULL, P_STRING|P_VI_DEF,
1357 #ifdef FEAT_TITLE
1358 (char_u *)&p_iconstring, PV_NONE,
1359 #else
1360 (char_u *)NULL, PV_NONE,
1361 #endif
1362 {(char_u *)"", (char_u *)0L}},
1363 {"ignorecase", "ic", P_BOOL|P_VI_DEF,
1364 (char_u *)&p_ic, PV_NONE,
1365 {(char_u *)FALSE, (char_u *)0L}},
1366 {"imactivatekey","imak",P_STRING|P_VI_DEF,
1367 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
1368 (char_u *)&p_imak, PV_NONE,
1369 #else
1370 (char_u *)NULL, PV_NONE,
1371 #endif
1372 {(char_u *)"", (char_u *)0L}},
1373 {"imcmdline", "imc", P_BOOL|P_VI_DEF,
1374 #ifdef USE_IM_CONTROL
1375 (char_u *)&p_imcmdline, PV_NONE,
1376 #else
1377 (char_u *)NULL, PV_NONE,
1378 #endif
1379 {(char_u *)FALSE, (char_u *)0L}},
1380 {"imdisable", "imd", P_BOOL|P_VI_DEF,
1381 #ifdef USE_IM_CONTROL
1382 (char_u *)&p_imdisable, PV_NONE,
1383 #else
1384 (char_u *)NULL, PV_NONE,
1385 #endif
1386 #ifdef __sgi
1387 {(char_u *)TRUE, (char_u *)0L}
1388 #else
1389 {(char_u *)FALSE, (char_u *)0L}
1390 #endif
1392 {"iminsert", "imi", P_NUM|P_VI_DEF,
1393 (char_u *)&p_iminsert, PV_IMI,
1394 #ifdef B_IMODE_IM
1395 {(char_u *)B_IMODE_IM, (char_u *)0L}
1396 #else
1397 {(char_u *)B_IMODE_NONE, (char_u *)0L}
1398 #endif
1400 {"imsearch", "ims", P_NUM|P_VI_DEF,
1401 (char_u *)&p_imsearch, PV_IMS,
1402 #ifdef B_IMODE_IM
1403 {(char_u *)B_IMODE_IM, (char_u *)0L}
1404 #else
1405 {(char_u *)B_IMODE_NONE, (char_u *)0L}
1406 #endif
1408 {"include", "inc", P_STRING|P_ALLOCED|P_VI_DEF,
1409 #ifdef FEAT_FIND_ID
1410 (char_u *)&p_inc, PV_INC,
1411 {(char_u *)"^\\s*#\\s*include", (char_u *)0L}
1412 #else
1413 (char_u *)NULL, PV_NONE,
1414 {(char_u *)0L, (char_u *)0L}
1415 #endif
1417 {"includeexpr", "inex", P_STRING|P_ALLOCED|P_VI_DEF,
1418 #if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
1419 (char_u *)&p_inex, PV_INEX,
1420 {(char_u *)"", (char_u *)0L}
1421 #else
1422 (char_u *)NULL, PV_NONE,
1423 {(char_u *)0L, (char_u *)0L}
1424 #endif
1426 {"incsearch", "is", P_BOOL|P_VI_DEF|P_VIM,
1427 (char_u *)&p_is, PV_NONE,
1428 {(char_u *)FALSE, (char_u *)0L}},
1429 {"indentexpr", "inde", P_STRING|P_ALLOCED|P_VI_DEF|P_VIM,
1430 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
1431 (char_u *)&p_inde, PV_INDE,
1432 {(char_u *)"", (char_u *)0L}
1433 #else
1434 (char_u *)NULL, PV_NONE,
1435 {(char_u *)0L, (char_u *)0L}
1436 #endif
1438 {"indentkeys", "indk", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
1439 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
1440 (char_u *)&p_indk, PV_INDK,
1441 {(char_u *)"0{,0},:,0#,!^F,o,O,e", (char_u *)0L}
1442 #else
1443 (char_u *)NULL, PV_NONE,
1444 {(char_u *)0L, (char_u *)0L}
1445 #endif
1447 {"infercase", "inf", P_BOOL|P_VI_DEF,
1448 (char_u *)&p_inf, PV_INF,
1449 {(char_u *)FALSE, (char_u *)0L}},
1450 {"insertmode", "im", P_BOOL|P_VI_DEF|P_VIM,
1451 (char_u *)&p_im, PV_NONE,
1452 {(char_u *)FALSE, (char_u *)0L}},
1453 {"isfname", "isf", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1454 (char_u *)&p_isf, PV_NONE,
1456 #ifdef BACKSLASH_IN_FILENAME
1457 /* Excluded are: & and ^ are special in cmd.exe
1458 * ( and ) are used in text separating fnames */
1459 (char_u *)"@,48-57,/,\\,.,-,_,+,,,#,$,%,{,},[,],:,@-@,!,~,=",
1460 #else
1461 # ifdef AMIGA
1462 (char_u *)"@,48-57,/,.,-,_,+,,,$,:",
1463 # else
1464 # ifdef VMS
1465 (char_u *)"@,48-57,/,.,-,_,+,,,#,$,%,<,>,[,],:,;,~",
1466 # else /* UNIX et al. */
1467 # ifdef EBCDIC
1468 (char_u *)"@,240-249,/,.,-,_,+,,,#,$,%,~,=",
1469 # else
1470 (char_u *)"@,48-57,/,.,-,_,+,,,#,$,%,~,=",
1471 # endif
1472 # endif
1473 # endif
1474 #endif
1475 (char_u *)0L}},
1476 {"isident", "isi", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1477 (char_u *)&p_isi, PV_NONE,
1479 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
1480 (char_u *)"@,48-57,_,128-167,224-235",
1481 #else
1482 # ifdef EBCDIC
1483 /* TODO: EBCDIC Check this! @ == isalpha()*/
1484 (char_u *)"@,240-249,_,66-73,81-89,98-105,"
1485 "112-120,128,140-142,156,158,172,"
1486 "174,186,191,203-207,219-225,235-239,"
1487 "251-254",
1488 # else
1489 (char_u *)"@,48-57,_,192-255",
1490 # endif
1491 #endif
1492 (char_u *)0L}},
1493 {"iskeyword", "isk", P_STRING|P_ALLOCED|P_VIM|P_COMMA|P_NODUP,
1494 (char_u *)&p_isk, PV_ISK,
1496 #ifdef EBCDIC
1497 (char_u *)"@,240-249,_",
1498 /* TODO: EBCDIC Check this! @ == isalpha()*/
1499 (char_u *)"@,240-249,_,66-73,81-89,98-105,"
1500 "112-120,128,140-142,156,158,172,"
1501 "174,186,191,203-207,219-225,235-239,"
1502 "251-254",
1503 #else
1504 (char_u *)"@,48-57,_",
1505 # if defined(MSDOS) || defined(MSWIN) || defined(OS2)
1506 (char_u *)"@,48-57,_,128-167,224-235"
1507 # else
1508 ISK_LATIN1
1509 # endif
1510 #endif
1512 {"isprint", "isp", P_STRING|P_VI_DEF|P_RALL|P_COMMA|P_NODUP,
1513 (char_u *)&p_isp, PV_NONE,
1515 #if defined(MSDOS) || defined(MSWIN) || defined(OS2) \
1516 || (defined(MACOS) && !defined(MACOS_X)) \
1517 || defined(VMS)
1518 (char_u *)"@,~-255",
1519 #else
1520 # ifdef EBCDIC
1521 /* all chars above 63 are printable */
1522 (char_u *)"63-255",
1523 # else
1524 ISP_LATIN1,
1525 # endif
1526 #endif
1527 (char_u *)0L}},
1528 {"joinspaces", "js", P_BOOL|P_VI_DEF|P_VIM,
1529 (char_u *)&p_js, PV_NONE,
1530 {(char_u *)TRUE, (char_u *)0L}},
1531 {"key", NULL, P_STRING|P_ALLOCED|P_VI_DEF|P_NO_MKRC,
1532 #ifdef FEAT_CRYPT
1533 (char_u *)&p_key, PV_KEY,
1534 {(char_u *)"", (char_u *)0L}
1535 #else
1536 (char_u *)NULL, PV_NONE,
1537 {(char_u *)0L, (char_u *)0L}
1538 #endif
1540 {"keymap", "kmp", P_STRING|P_ALLOCED|P_VI_DEF|P_RBUF|P_RSTAT|P_NFNAME|P_PRI_MKRC,
1541 #ifdef FEAT_KEYMAP
1542 (char_u *)&p_keymap, PV_KMAP,
1543 {(char_u *)"", (char_u *)0L}
1544 #else
1545 (char_u *)NULL, PV_NONE,
1546 {(char_u *)"", (char_u *)0L}
1547 #endif
1549 {"keymodel", "km", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1550 #ifdef FEAT_VISUAL
1551 (char_u *)&p_km, PV_NONE,
1552 #else
1553 (char_u *)NULL, PV_NONE,
1554 #endif
1555 {(char_u *)"", (char_u *)0L}},
1556 {"keywordprg", "kp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1557 (char_u *)&p_kp, PV_KP,
1559 #if defined(MSDOS) || defined(MSWIN)
1560 (char_u *)":help",
1561 #else
1562 #ifdef VMS
1563 (char_u *)"help",
1564 #else
1565 # if defined(OS2)
1566 (char_u *)"view /",
1567 # else
1568 # ifdef USEMAN_S
1569 (char_u *)"man -s",
1570 # else
1571 (char_u *)"man",
1572 # endif
1573 # endif
1574 #endif
1575 #endif
1576 (char_u *)0L}},
1577 {"langmap", "lmap", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1578 #ifdef FEAT_LANGMAP
1579 (char_u *)&p_langmap, PV_NONE,
1580 {(char_u *)"", /* unmatched } */
1581 #else
1582 (char_u *)NULL, PV_NONE,
1583 {(char_u *)NULL,
1584 #endif
1585 (char_u *)0L}},
1586 {"langmenu", "lm", P_STRING|P_VI_DEF|P_NFNAME,
1587 #if defined(FEAT_MENU) && defined(FEAT_MULTI_LANG)
1588 (char_u *)&p_lm, PV_NONE,
1589 #else
1590 (char_u *)NULL, PV_NONE,
1591 #endif
1592 {(char_u *)"", (char_u *)0L}},
1593 {"laststatus", "ls", P_NUM|P_VI_DEF|P_RALL,
1594 #ifdef FEAT_WINDOWS
1595 (char_u *)&p_ls, PV_NONE,
1596 #else
1597 (char_u *)NULL, PV_NONE,
1598 #endif
1599 {(char_u *)1L, (char_u *)0L}},
1600 {"lazyredraw", "lz", P_BOOL|P_VI_DEF,
1601 (char_u *)&p_lz, PV_NONE,
1602 {(char_u *)FALSE, (char_u *)0L}},
1603 {"linebreak", "lbr", P_BOOL|P_VI_DEF|P_RWIN,
1604 #ifdef FEAT_LINEBREAK
1605 (char_u *)VAR_WIN, PV_LBR,
1606 #else
1607 (char_u *)NULL, PV_NONE,
1608 #endif
1609 {(char_u *)FALSE, (char_u *)0L}},
1610 {"lines", NULL, P_NUM|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RCLR,
1611 (char_u *)&Rows, PV_NONE,
1613 #if defined(MSDOS) || defined(WIN3264) || defined(OS2)
1614 (char_u *)25L,
1615 #else
1616 (char_u *)24L,
1617 #endif
1618 (char_u *)0L}},
1619 {"linespace", "lsp", P_NUM|P_VI_DEF|P_RCLR,
1620 #ifdef FEAT_GUI
1621 (char_u *)&p_linespace, PV_NONE,
1622 #else
1623 (char_u *)NULL, PV_NONE,
1624 #endif
1625 #ifdef FEAT_GUI_W32
1626 {(char_u *)1L, (char_u *)0L}
1627 #else
1628 {(char_u *)0L, (char_u *)0L}
1629 #endif
1631 {"lisp", NULL, P_BOOL|P_VI_DEF,
1632 #ifdef FEAT_LISP
1633 (char_u *)&p_lisp, PV_LISP,
1634 #else
1635 (char_u *)NULL, PV_NONE,
1636 #endif
1637 {(char_u *)FALSE, (char_u *)0L}},
1638 {"lispwords", "lw", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1639 #ifdef FEAT_LISP
1640 (char_u *)&p_lispwords, PV_NONE,
1641 {(char_u *)LISPWORD_VALUE, (char_u *)0L}
1642 #else
1643 (char_u *)NULL, PV_NONE,
1644 {(char_u *)"", (char_u *)0L}
1645 #endif
1647 {"list", NULL, P_BOOL|P_VI_DEF|P_RWIN,
1648 (char_u *)VAR_WIN, PV_LIST,
1649 {(char_u *)FALSE, (char_u *)0L}},
1650 {"listchars", "lcs", P_STRING|P_VI_DEF|P_RALL|P_COMMA|P_NODUP,
1651 (char_u *)&p_lcs, PV_NONE,
1652 {(char_u *)"eol:$", (char_u *)0L}},
1653 {"loadplugins", "lpl", P_BOOL|P_VI_DEF,
1654 (char_u *)&p_lpl, PV_NONE,
1655 {(char_u *)TRUE, (char_u *)0L}},
1656 #ifdef FEAT_GUI_MAC
1657 {"macatsui", NULL, P_BOOL|P_VI_DEF|P_RCLR,
1658 (char_u *)&p_macatsui, PV_NONE,
1659 {(char_u *)TRUE, (char_u *)0L}},
1660 #endif
1661 {"magic", NULL, P_BOOL|P_VI_DEF,
1662 (char_u *)&p_magic, PV_NONE,
1663 {(char_u *)TRUE, (char_u *)0L}},
1664 {"makeef", "mef", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1665 #ifdef FEAT_QUICKFIX
1666 (char_u *)&p_mef, PV_NONE,
1667 {(char_u *)"", (char_u *)0L}
1668 #else
1669 (char_u *)NULL, PV_NONE,
1670 {(char_u *)NULL, (char_u *)0L}
1671 #endif
1673 {"makeprg", "mp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1674 #ifdef FEAT_QUICKFIX
1675 (char_u *)&p_mp, PV_MP,
1676 # ifdef VMS
1677 {(char_u *)"MMS", (char_u *)0L}
1678 # else
1679 {(char_u *)"make", (char_u *)0L}
1680 # endif
1681 #else
1682 (char_u *)NULL, PV_NONE,
1683 {(char_u *)NULL, (char_u *)0L}
1684 #endif
1686 {"matchpairs", "mps", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
1687 (char_u *)&p_mps, PV_MPS,
1688 {(char_u *)"(:),{:},[:]", (char_u *)0L}},
1689 {"matchtime", "mat", P_NUM|P_VI_DEF,
1690 (char_u *)&p_mat, PV_NONE,
1691 {(char_u *)5L, (char_u *)0L}},
1692 {"maxcombine", "mco", P_NUM|P_VI_DEF,
1693 #ifdef FEAT_MBYTE
1694 (char_u *)&p_mco, PV_NONE,
1695 #else
1696 (char_u *)NULL, PV_NONE,
1697 #endif
1698 {(char_u *)2, (char_u *)0L}},
1699 {"maxfuncdepth", "mfd", P_NUM|P_VI_DEF,
1700 #ifdef FEAT_EVAL
1701 (char_u *)&p_mfd, PV_NONE,
1702 #else
1703 (char_u *)NULL, PV_NONE,
1704 #endif
1705 {(char_u *)100L, (char_u *)0L}},
1706 {"maxmapdepth", "mmd", P_NUM|P_VI_DEF,
1707 (char_u *)&p_mmd, PV_NONE,
1708 {(char_u *)1000L, (char_u *)0L}},
1709 {"maxmem", "mm", P_NUM|P_VI_DEF,
1710 (char_u *)&p_mm, PV_NONE,
1711 {(char_u *)DFLT_MAXMEM, (char_u *)0L}},
1712 {"maxmempattern","mmp", P_NUM|P_VI_DEF,
1713 (char_u *)&p_mmp, PV_NONE,
1714 {(char_u *)1000L, (char_u *)0L}},
1715 {"maxmemtot", "mmt", P_NUM|P_VI_DEF,
1716 (char_u *)&p_mmt, PV_NONE,
1717 {(char_u *)DFLT_MAXMEMTOT, (char_u *)0L}},
1718 {"menuitems", "mis", P_NUM|P_VI_DEF,
1719 #ifdef FEAT_MENU
1720 (char_u *)&p_mis, PV_NONE,
1721 #else
1722 (char_u *)NULL, PV_NONE,
1723 #endif
1724 {(char_u *)25L, (char_u *)0L}},
1725 {"mesg", NULL, P_BOOL|P_VI_DEF,
1726 (char_u *)NULL, PV_NONE,
1727 {(char_u *)FALSE, (char_u *)0L}},
1728 {"mkspellmem", "msm", P_STRING|P_VI_DEF|P_EXPAND|P_SECURE,
1729 #ifdef FEAT_SPELL
1730 (char_u *)&p_msm, PV_NONE,
1731 {(char_u *)"460000,2000,500", (char_u *)0L}
1732 #else
1733 (char_u *)NULL, PV_NONE,
1734 {(char_u *)0L, (char_u *)0L}
1735 #endif
1737 {"modeline", "ml", P_BOOL|P_VIM,
1738 (char_u *)&p_ml, PV_ML,
1739 {(char_u *)FALSE, (char_u *)TRUE}},
1740 {"modelines", "mls", P_NUM|P_VI_DEF,
1741 (char_u *)&p_mls, PV_NONE,
1742 {(char_u *)5L, (char_u *)0L}},
1743 {"modifiable", "ma", P_BOOL|P_VI_DEF|P_NOGLOB,
1744 (char_u *)&p_ma, PV_MA,
1745 {(char_u *)TRUE, (char_u *)0L}},
1746 {"modified", "mod", P_BOOL|P_NO_MKRC|P_VI_DEF|P_RSTAT,
1747 (char_u *)&p_mod, PV_MOD,
1748 {(char_u *)FALSE, (char_u *)0L}},
1749 {"more", NULL, P_BOOL|P_VIM,
1750 (char_u *)&p_more, PV_NONE,
1751 {(char_u *)FALSE, (char_u *)TRUE}},
1752 {"mouse", NULL, P_STRING|P_VI_DEF|P_FLAGLIST,
1753 (char_u *)&p_mouse, PV_NONE,
1755 #if defined(MSDOS) || defined(WIN3264)
1756 (char_u *)"a",
1757 #else
1758 (char_u *)"",
1759 #endif
1760 (char_u *)0L}},
1761 {"mousefocus", "mousef", P_BOOL|P_VI_DEF,
1762 #ifdef FEAT_GUI
1763 (char_u *)&p_mousef, PV_NONE,
1764 #else
1765 (char_u *)NULL, PV_NONE,
1766 #endif
1767 {(char_u *)FALSE, (char_u *)0L}},
1768 {"mousehide", "mh", P_BOOL|P_VI_DEF,
1769 #ifdef FEAT_GUI
1770 (char_u *)&p_mh, PV_NONE,
1771 #else
1772 (char_u *)NULL, PV_NONE,
1773 #endif
1774 {(char_u *)TRUE, (char_u *)0L}},
1775 {"mousemodel", "mousem", P_STRING|P_VI_DEF,
1776 (char_u *)&p_mousem, PV_NONE,
1778 #if defined(MSDOS) || defined(MSWIN)
1779 (char_u *)"popup",
1780 #else
1781 # if defined(MACOS)
1782 (char_u *)"popup_setpos",
1783 # else
1784 (char_u *)"extend",
1785 # endif
1786 #endif
1787 (char_u *)0L}},
1788 {"mouseshape", "mouses", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1789 #ifdef FEAT_MOUSESHAPE
1790 (char_u *)&p_mouseshape, PV_NONE,
1791 {(char_u *)"i-r:beam,s:updown,sd:udsizing,vs:leftright,vd:lrsizing,m:no,ml:up-arrow,v:rightup-arrow", (char_u *)0L}
1792 #else
1793 (char_u *)NULL, PV_NONE,
1794 {(char_u *)NULL, (char_u *)0L}
1795 #endif
1797 {"mousetime", "mouset", P_NUM|P_VI_DEF,
1798 (char_u *)&p_mouset, PV_NONE,
1799 {(char_u *)500L, (char_u *)0L}},
1800 {"mzquantum", "mzq", P_NUM,
1801 #ifdef FEAT_MZSCHEME
1802 (char_u *)&p_mzq, PV_NONE,
1803 #else
1804 (char_u *)NULL, PV_NONE,
1805 #endif
1806 {(char_u *)100L, (char_u *)100L}},
1807 {"novice", NULL, P_BOOL|P_VI_DEF,
1808 (char_u *)NULL, PV_NONE,
1809 {(char_u *)FALSE, (char_u *)0L}},
1810 {"nrformats", "nf", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
1811 (char_u *)&p_nf, PV_NF,
1812 {(char_u *)"octal,hex", (char_u *)0L}},
1813 {"number", "nu", P_BOOL|P_VI_DEF|P_RWIN,
1814 (char_u *)VAR_WIN, PV_NU,
1815 {(char_u *)FALSE, (char_u *)0L}},
1816 {"numberwidth", "nuw", P_NUM|P_RWIN|P_VIM,
1817 #ifdef FEAT_LINEBREAK
1818 (char_u *)VAR_WIN, PV_NUW,
1819 #else
1820 (char_u *)NULL, PV_NONE,
1821 #endif
1822 {(char_u *)8L, (char_u *)4L}},
1823 {"omnifunc", "ofu", P_STRING|P_ALLOCED|P_VI_DEF|P_SECURE,
1824 #ifdef FEAT_COMPL_FUNC
1825 (char_u *)&p_ofu, PV_OFU,
1826 {(char_u *)"", (char_u *)0L}
1827 #else
1828 (char_u *)NULL, PV_NONE,
1829 {(char_u *)0L, (char_u *)0L}
1830 #endif
1832 {"open", NULL, P_BOOL|P_VI_DEF,
1833 (char_u *)NULL, PV_NONE,
1834 {(char_u *)FALSE, (char_u *)0L}},
1835 {"opendevice", "odev", P_BOOL|P_VI_DEF,
1836 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
1837 (char_u *)&p_odev, PV_NONE,
1838 #else
1839 (char_u *)NULL, PV_NONE,
1840 #endif
1841 {(char_u *)FALSE, (char_u *)FALSE}
1843 {"operatorfunc", "opfunc", P_STRING|P_VI_DEF|P_SECURE,
1844 (char_u *)&p_opfunc, PV_NONE,
1845 {(char_u *)"", (char_u *)0L} },
1846 {"optimize", "opt", P_BOOL|P_VI_DEF,
1847 (char_u *)NULL, PV_NONE,
1848 {(char_u *)FALSE, (char_u *)0L}},
1849 {"osfiletype", "oft", P_STRING|P_ALLOCED|P_VI_DEF,
1850 #ifdef FEAT_OSFILETYPE
1851 (char_u *)&p_oft, PV_OFT,
1852 {(char_u *)DFLT_OFT, (char_u *)0L}
1853 #else
1854 (char_u *)NULL, PV_NONE,
1855 {(char_u *)0L, (char_u *)0L}
1856 #endif
1858 {"paragraphs", "para", P_STRING|P_VI_DEF,
1859 (char_u *)&p_para, PV_NONE,
1860 {(char_u *)"IPLPPPQPP TPHPLIPpLpItpplpipbp",
1861 (char_u *)0L}},
1862 {"paste", NULL, P_BOOL|P_VI_DEF|P_PRI_MKRC,
1863 (char_u *)&p_paste, PV_NONE,
1864 {(char_u *)FALSE, (char_u *)0L}},
1865 {"pastetoggle", "pt", P_STRING|P_VI_DEF,
1866 (char_u *)&p_pt, PV_NONE,
1867 {(char_u *)"", (char_u *)0L}},
1868 {"patchexpr", "pex", P_STRING|P_VI_DEF|P_SECURE,
1869 #if defined(FEAT_DIFF) && defined(FEAT_EVAL)
1870 (char_u *)&p_pex, PV_NONE,
1871 {(char_u *)"", (char_u *)0L}
1872 #else
1873 (char_u *)NULL, PV_NONE,
1874 {(char_u *)0L, (char_u *)0L}
1875 #endif
1877 {"patchmode", "pm", P_STRING|P_VI_DEF|P_NFNAME,
1878 (char_u *)&p_pm, PV_NONE,
1879 {(char_u *)"", (char_u *)0L}},
1880 {"path", "pa", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
1881 (char_u *)&p_path, PV_PATH,
1883 #if defined AMIGA || defined MSDOS || defined MSWIN
1884 (char_u *)".,,",
1885 #else
1886 # if defined(__EMX__)
1887 (char_u *)".,/emx/include,,",
1888 # else /* Unix, probably */
1889 (char_u *)".,/usr/include,,",
1890 # endif
1891 #endif
1892 (char_u *)0L}},
1893 {"preserveindent", "pi", P_BOOL|P_VI_DEF|P_VIM,
1894 (char_u *)&p_pi, PV_PI,
1895 {(char_u *)FALSE, (char_u *)0L}},
1896 {"previewheight", "pvh", P_NUM|P_VI_DEF,
1897 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
1898 (char_u *)&p_pvh, PV_NONE,
1899 #else
1900 (char_u *)NULL, PV_NONE,
1901 #endif
1902 {(char_u *)12L, (char_u *)0L}},
1903 {"previewwindow", "pvw", P_BOOL|P_VI_DEF|P_RSTAT|P_NOGLOB,
1904 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
1905 (char_u *)VAR_WIN, PV_PVW,
1906 #else
1907 (char_u *)NULL, PV_NONE,
1908 #endif
1909 {(char_u *)FALSE, (char_u *)0L}},
1910 {"printdevice", "pdev", P_STRING|P_VI_DEF|P_SECURE,
1911 #ifdef FEAT_PRINTER
1912 (char_u *)&p_pdev, PV_NONE,
1913 {(char_u *)"", (char_u *)0L}
1914 #else
1915 (char_u *)NULL, PV_NONE,
1916 {(char_u *)NULL, (char_u *)0L}
1917 #endif
1919 {"printencoding", "penc", P_STRING|P_VI_DEF,
1920 #ifdef FEAT_POSTSCRIPT
1921 (char_u *)&p_penc, PV_NONE,
1922 {(char_u *)"", (char_u *)0L}
1923 #else
1924 (char_u *)NULL, PV_NONE,
1925 {(char_u *)NULL, (char_u *)0L}
1926 #endif
1928 {"printexpr", "pexpr", P_STRING|P_VI_DEF,
1929 #ifdef FEAT_POSTSCRIPT
1930 (char_u *)&p_pexpr, PV_NONE,
1931 {(char_u *)"", (char_u *)0L}
1932 #else
1933 (char_u *)NULL, PV_NONE,
1934 {(char_u *)NULL, (char_u *)0L}
1935 #endif
1937 {"printfont", "pfn", P_STRING|P_VI_DEF,
1938 #ifdef FEAT_PRINTER
1939 (char_u *)&p_pfn, PV_NONE,
1941 # ifdef MSWIN
1942 (char_u *)"Courier_New:h10",
1943 # else
1944 (char_u *)"courier",
1945 # endif
1946 (char_u *)0L}
1947 #else
1948 (char_u *)NULL, PV_NONE,
1949 {(char_u *)NULL, (char_u *)0L}
1950 #endif
1952 {"printheader", "pheader", P_STRING|P_VI_DEF|P_GETTEXT,
1953 #ifdef FEAT_PRINTER
1954 (char_u *)&p_header, PV_NONE,
1955 {(char_u *)N_("%<%f%h%m%=Page %N"), (char_u *)0L}
1956 #else
1957 (char_u *)NULL, PV_NONE,
1958 {(char_u *)NULL, (char_u *)0L}
1959 #endif
1961 {"printmbcharset", "pmbcs", P_STRING|P_VI_DEF,
1962 #if defined(FEAT_POSTSCRIPT) && defined(FEAT_MBYTE)
1963 (char_u *)&p_pmcs, PV_NONE,
1964 {(char_u *)"", (char_u *)0L}
1965 #else
1966 (char_u *)NULL, PV_NONE,
1967 {(char_u *)NULL, (char_u *)0L}
1968 #endif
1970 {"printmbfont", "pmbfn", P_STRING|P_VI_DEF,
1971 #if defined(FEAT_POSTSCRIPT) && defined(FEAT_MBYTE)
1972 (char_u *)&p_pmfn, PV_NONE,
1973 {(char_u *)"", (char_u *)0L}
1974 #else
1975 (char_u *)NULL, PV_NONE,
1976 {(char_u *)NULL, (char_u *)0L}
1977 #endif
1979 {"printoptions", "popt", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1980 #ifdef FEAT_PRINTER
1981 (char_u *)&p_popt, PV_NONE,
1982 {(char_u *)"", (char_u *)0L}
1983 #else
1984 (char_u *)NULL, PV_NONE,
1985 {(char_u *)NULL, (char_u *)0L}
1986 #endif
1988 {"prompt", NULL, P_BOOL|P_VI_DEF,
1989 (char_u *)&p_prompt, PV_NONE,
1990 {(char_u *)TRUE, (char_u *)0L}},
1991 {"pumheight", "ph", P_NUM|P_VI_DEF,
1992 #ifdef FEAT_INS_EXPAND
1993 (char_u *)&p_ph, PV_NONE,
1994 #else
1995 (char_u *)NULL, PV_NONE,
1996 #endif
1997 {(char_u *)0L, (char_u *)0L}},
1998 {"quoteescape", "qe", P_STRING|P_ALLOCED|P_VI_DEF,
1999 #ifdef FEAT_TEXTOBJ
2000 (char_u *)&p_qe, PV_QE,
2001 {(char_u *)"\\", (char_u *)0L}
2002 #else
2003 (char_u *)NULL, PV_NONE,
2004 {(char_u *)NULL, (char_u *)0L}
2005 #endif
2007 {"readonly", "ro", P_BOOL|P_VI_DEF|P_RSTAT|P_NOGLOB,
2008 (char_u *)&p_ro, PV_RO,
2009 {(char_u *)FALSE, (char_u *)0L}},
2010 {"redraw", NULL, P_BOOL|P_VI_DEF,
2011 (char_u *)NULL, PV_NONE,
2012 {(char_u *)FALSE, (char_u *)0L}},
2013 {"redrawtime", "rdt", P_NUM|P_VI_DEF,
2014 #ifdef FEAT_RELTIME
2015 (char_u *)&p_rdt, PV_NONE,
2016 #else
2017 (char_u *)NULL, PV_NONE,
2018 #endif
2019 {(char_u *)2000L, (char_u *)0L}},
2020 {"remap", NULL, P_BOOL|P_VI_DEF,
2021 (char_u *)&p_remap, PV_NONE,
2022 {(char_u *)TRUE, (char_u *)0L}},
2023 {"report", NULL, P_NUM|P_VI_DEF,
2024 (char_u *)&p_report, PV_NONE,
2025 {(char_u *)2L, (char_u *)0L}},
2026 {"restorescreen", "rs", P_BOOL|P_VI_DEF,
2027 #ifdef WIN3264
2028 (char_u *)&p_rs, PV_NONE,
2029 #else
2030 (char_u *)NULL, PV_NONE,
2031 #endif
2032 {(char_u *)TRUE, (char_u *)0L}},
2033 {"revins", "ri", P_BOOL|P_VI_DEF|P_VIM,
2034 #ifdef FEAT_RIGHTLEFT
2035 (char_u *)&p_ri, PV_NONE,
2036 #else
2037 (char_u *)NULL, PV_NONE,
2038 #endif
2039 {(char_u *)FALSE, (char_u *)0L}},
2040 {"rightleft", "rl", P_BOOL|P_VI_DEF|P_RWIN,
2041 #ifdef FEAT_RIGHTLEFT
2042 (char_u *)VAR_WIN, PV_RL,
2043 #else
2044 (char_u *)NULL, PV_NONE,
2045 #endif
2046 {(char_u *)FALSE, (char_u *)0L}},
2047 {"rightleftcmd", "rlc", P_STRING|P_ALLOCED|P_VI_DEF|P_RWIN,
2048 #ifdef FEAT_RIGHTLEFT
2049 (char_u *)VAR_WIN, PV_RLC,
2050 {(char_u *)"search", (char_u *)NULL}
2051 #else
2052 (char_u *)NULL, PV_NONE,
2053 {(char_u *)NULL, (char_u *)0L}
2054 #endif
2056 {"ruler", "ru", P_BOOL|P_VI_DEF|P_VIM|P_RSTAT,
2057 #ifdef FEAT_CMDL_INFO
2058 (char_u *)&p_ru, PV_NONE,
2059 #else
2060 (char_u *)NULL, PV_NONE,
2061 #endif
2062 {(char_u *)FALSE, (char_u *)0L}},
2063 {"rulerformat", "ruf", P_STRING|P_VI_DEF|P_ALLOCED|P_RSTAT,
2064 #ifdef FEAT_STL_OPT
2065 (char_u *)&p_ruf, PV_NONE,
2066 #else
2067 (char_u *)NULL, PV_NONE,
2068 #endif
2069 {(char_u *)"", (char_u *)0L}},
2070 {"runtimepath", "rtp", P_STRING|P_VI_DEF|P_EXPAND|P_COMMA|P_NODUP|P_SECURE,
2071 (char_u *)&p_rtp, PV_NONE,
2072 {(char_u *)DFLT_RUNTIMEPATH, (char_u *)0L}},
2073 {"scroll", "scr", P_NUM|P_NO_MKRC|P_VI_DEF,
2074 (char_u *)VAR_WIN, PV_SCROLL,
2075 {(char_u *)12L, (char_u *)0L}},
2076 {"scrollbind", "scb", P_BOOL|P_VI_DEF,
2077 #ifdef FEAT_SCROLLBIND
2078 (char_u *)VAR_WIN, PV_SCBIND,
2079 #else
2080 (char_u *)NULL, PV_NONE,
2081 #endif
2082 {(char_u *)FALSE, (char_u *)0L}},
2083 {"scrolljump", "sj", P_NUM|P_VI_DEF|P_VIM,
2084 (char_u *)&p_sj, PV_NONE,
2085 {(char_u *)1L, (char_u *)0L}},
2086 {"scrolloff", "so", P_NUM|P_VI_DEF|P_VIM|P_RALL,
2087 (char_u *)&p_so, PV_NONE,
2088 {(char_u *)0L, (char_u *)0L}},
2089 {"scrollopt", "sbo", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2090 #ifdef FEAT_SCROLLBIND
2091 (char_u *)&p_sbo, PV_NONE,
2092 {(char_u *)"ver,jump", (char_u *)0L}
2093 #else
2094 (char_u *)NULL, PV_NONE,
2095 {(char_u *)0L, (char_u *)0L}
2096 #endif
2098 {"sections", "sect", P_STRING|P_VI_DEF,
2099 (char_u *)&p_sections, PV_NONE,
2100 {(char_u *)"SHNHH HUnhsh", (char_u *)0L}},
2101 {"secure", NULL, P_BOOL|P_VI_DEF|P_SECURE,
2102 (char_u *)&p_secure, PV_NONE,
2103 {(char_u *)FALSE, (char_u *)0L}},
2104 {"selection", "sel", P_STRING|P_VI_DEF,
2105 #ifdef FEAT_VISUAL
2106 (char_u *)&p_sel, PV_NONE,
2107 #else
2108 (char_u *)NULL, PV_NONE,
2109 #endif
2110 {(char_u *)"inclusive", (char_u *)0L}},
2111 {"selectmode", "slm", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2112 #ifdef FEAT_VISUAL
2113 (char_u *)&p_slm, PV_NONE,
2114 #else
2115 (char_u *)NULL, PV_NONE,
2116 #endif
2117 {(char_u *)"", (char_u *)0L}},
2118 {"sessionoptions", "ssop", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2119 #ifdef FEAT_SESSION
2120 (char_u *)&p_ssop, PV_NONE,
2121 {(char_u *)"blank,buffers,curdir,folds,help,options,tabpages,winsize",
2122 (char_u *)0L}
2123 #else
2124 (char_u *)NULL, PV_NONE,
2125 {(char_u *)0L, (char_u *)0L}
2126 #endif
2128 {"shell", "sh", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
2129 (char_u *)&p_sh, PV_NONE,
2131 #ifdef VMS
2132 (char_u *)"-",
2133 #else
2134 # if defined(MSDOS)
2135 (char_u *)"command",
2136 # else
2137 # if defined(WIN16)
2138 (char_u *)"command.com",
2139 # else
2140 # if defined(WIN3264)
2141 (char_u *)"", /* set in set_init_1() */
2142 # else
2143 # if defined(OS2)
2144 (char_u *)"cmd.exe",
2145 # else
2146 # if defined(ARCHIE)
2147 (char_u *)"gos",
2148 # else
2149 (char_u *)"sh",
2150 # endif
2151 # endif
2152 # endif
2153 # endif
2154 # endif
2155 #endif /* VMS */
2156 (char_u *)0L}},
2157 {"shellcmdflag","shcf", P_STRING|P_VI_DEF|P_SECURE,
2158 (char_u *)&p_shcf, PV_NONE,
2160 #if defined(MSDOS) || defined(MSWIN)
2161 (char_u *)"/c",
2162 #else
2163 # if defined(OS2)
2164 (char_u *)"/c",
2165 # else
2166 (char_u *)"-c",
2167 # endif
2168 #endif
2169 (char_u *)0L}},
2170 {"shellpipe", "sp", P_STRING|P_VI_DEF|P_SECURE,
2171 #ifdef FEAT_QUICKFIX
2172 (char_u *)&p_sp, PV_NONE,
2174 #if defined(UNIX) || defined(OS2)
2175 # ifdef ARCHIE
2176 (char_u *)"2>",
2177 # else
2178 (char_u *)"| tee",
2179 # endif
2180 #else
2181 (char_u *)">",
2182 #endif
2183 (char_u *)0L}
2184 #else
2185 (char_u *)NULL, PV_NONE,
2186 {(char_u *)0L, (char_u *)0L}
2187 #endif
2189 {"shellquote", "shq", P_STRING|P_VI_DEF|P_SECURE,
2190 (char_u *)&p_shq, PV_NONE,
2191 {(char_u *)"", (char_u *)0L}},
2192 {"shellredir", "srr", P_STRING|P_VI_DEF|P_SECURE,
2193 (char_u *)&p_srr, PV_NONE,
2194 {(char_u *)">", (char_u *)0L}},
2195 {"shellslash", "ssl", P_BOOL|P_VI_DEF,
2196 #ifdef BACKSLASH_IN_FILENAME
2197 (char_u *)&p_ssl, PV_NONE,
2198 #else
2199 (char_u *)NULL, PV_NONE,
2200 #endif
2201 {(char_u *)FALSE, (char_u *)0L}},
2202 {"shelltemp", "stmp", P_BOOL,
2203 (char_u *)&p_stmp, PV_NONE,
2204 {(char_u *)FALSE, (char_u *)TRUE}},
2205 {"shelltype", "st", P_NUM|P_VI_DEF,
2206 #ifdef AMIGA
2207 (char_u *)&p_st, PV_NONE,
2208 #else
2209 (char_u *)NULL, PV_NONE,
2210 #endif
2211 {(char_u *)0L, (char_u *)0L}},
2212 {"shellxquote", "sxq", P_STRING|P_VI_DEF|P_SECURE,
2213 (char_u *)&p_sxq, PV_NONE,
2215 #if defined(UNIX) && defined(USE_SYSTEM) && !defined(__EMX__)
2216 (char_u *)"\"",
2217 #else
2218 (char_u *)"",
2219 #endif
2220 (char_u *)0L}},
2221 {"shiftround", "sr", P_BOOL|P_VI_DEF|P_VIM,
2222 (char_u *)&p_sr, PV_NONE,
2223 {(char_u *)FALSE, (char_u *)0L}},
2224 {"shiftwidth", "sw", P_NUM|P_VI_DEF,
2225 (char_u *)&p_sw, PV_SW,
2226 {(char_u *)8L, (char_u *)0L}},
2227 {"shortmess", "shm", P_STRING|P_VIM|P_FLAGLIST,
2228 (char_u *)&p_shm, PV_NONE,
2229 {(char_u *)"", (char_u *)"filnxtToO"}},
2230 {"shortname", "sn", P_BOOL|P_VI_DEF,
2231 #ifdef SHORT_FNAME
2232 (char_u *)NULL, PV_NONE,
2233 #else
2234 (char_u *)&p_sn, PV_SN,
2235 #endif
2236 {(char_u *)FALSE, (char_u *)0L}},
2237 {"showbreak", "sbr", P_STRING|P_VI_DEF|P_RALL,
2238 #ifdef FEAT_LINEBREAK
2239 (char_u *)&p_sbr, PV_NONE,
2240 #else
2241 (char_u *)NULL, PV_NONE,
2242 #endif
2243 {(char_u *)"", (char_u *)0L}},
2244 {"showcmd", "sc", P_BOOL|P_VIM,
2245 #ifdef FEAT_CMDL_INFO
2246 (char_u *)&p_sc, PV_NONE,
2247 #else
2248 (char_u *)NULL, PV_NONE,
2249 #endif
2250 {(char_u *)FALSE,
2251 #ifdef UNIX
2252 (char_u *)FALSE
2253 #else
2254 (char_u *)TRUE
2255 #endif
2257 {"showfulltag", "sft", P_BOOL|P_VI_DEF,
2258 (char_u *)&p_sft, PV_NONE,
2259 {(char_u *)FALSE, (char_u *)0L}},
2260 {"showmatch", "sm", P_BOOL|P_VI_DEF,
2261 (char_u *)&p_sm, PV_NONE,
2262 {(char_u *)FALSE, (char_u *)0L}},
2263 {"showmode", "smd", P_BOOL|P_VIM,
2264 (char_u *)&p_smd, PV_NONE,
2265 {(char_u *)FALSE, (char_u *)TRUE}},
2266 {"showtabline", "stal", P_NUM|P_VI_DEF|P_RALL,
2267 #ifdef FEAT_WINDOWS
2268 (char_u *)&p_stal, PV_NONE,
2269 #else
2270 (char_u *)NULL, PV_NONE,
2271 #endif
2272 {(char_u *)1L, (char_u *)0L}},
2273 {"sidescroll", "ss", P_NUM|P_VI_DEF,
2274 (char_u *)&p_ss, PV_NONE,
2275 {(char_u *)0L, (char_u *)0L}},
2276 {"sidescrolloff", "siso", P_NUM|P_VI_DEF|P_VIM|P_RBUF,
2277 (char_u *)&p_siso, PV_NONE,
2278 {(char_u *)0L, (char_u *)0L}},
2279 {"slowopen", "slow", P_BOOL|P_VI_DEF,
2280 (char_u *)NULL, PV_NONE,
2281 {(char_u *)FALSE, (char_u *)0L}},
2282 {"smartcase", "scs", P_BOOL|P_VI_DEF|P_VIM,
2283 (char_u *)&p_scs, PV_NONE,
2284 {(char_u *)FALSE, (char_u *)0L}},
2285 {"smartindent", "si", P_BOOL|P_VI_DEF|P_VIM,
2286 #ifdef FEAT_SMARTINDENT
2287 (char_u *)&p_si, PV_SI,
2288 #else
2289 (char_u *)NULL, PV_NONE,
2290 #endif
2291 {(char_u *)FALSE, (char_u *)0L}},
2292 {"smarttab", "sta", P_BOOL|P_VI_DEF|P_VIM,
2293 (char_u *)&p_sta, PV_NONE,
2294 {(char_u *)FALSE, (char_u *)0L}},
2295 {"softtabstop", "sts", P_NUM|P_VI_DEF|P_VIM,
2296 (char_u *)&p_sts, PV_STS,
2297 {(char_u *)0L, (char_u *)0L}},
2298 {"sourceany", NULL, P_BOOL|P_VI_DEF,
2299 (char_u *)NULL, PV_NONE,
2300 {(char_u *)FALSE, (char_u *)0L}},
2301 {"spell", NULL, P_BOOL|P_VI_DEF|P_RWIN,
2302 #ifdef FEAT_SPELL
2303 (char_u *)VAR_WIN, PV_SPELL,
2304 #else
2305 (char_u *)NULL, PV_NONE,
2306 #endif
2307 {(char_u *)FALSE, (char_u *)0L}},
2308 {"spellcapcheck", "spc", P_STRING|P_ALLOCED|P_VI_DEF|P_RBUF,
2309 #ifdef FEAT_SPELL
2310 (char_u *)&p_spc, PV_SPC,
2311 {(char_u *)"[.?!]\\_[\\])'\" ]\\+", (char_u *)0L}
2312 #else
2313 (char_u *)NULL, PV_NONE,
2314 {(char_u *)0L, (char_u *)0L}
2315 #endif
2317 {"spellfile", "spf", P_STRING|P_EXPAND|P_ALLOCED|P_VI_DEF|P_SECURE|P_COMMA,
2318 #ifdef FEAT_SPELL
2319 (char_u *)&p_spf, PV_SPF,
2320 {(char_u *)"", (char_u *)0L}
2321 #else
2322 (char_u *)NULL, PV_NONE,
2323 {(char_u *)0L, (char_u *)0L}
2324 #endif
2326 {"spelllang", "spl", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_RBUF|P_EXPAND,
2327 #ifdef FEAT_SPELL
2328 (char_u *)&p_spl, PV_SPL,
2329 {(char_u *)"en", (char_u *)0L}
2330 #else
2331 (char_u *)NULL, PV_NONE,
2332 {(char_u *)0L, (char_u *)0L}
2333 #endif
2335 {"spellsuggest", "sps", P_STRING|P_VI_DEF|P_EXPAND|P_SECURE|P_COMMA,
2336 #ifdef FEAT_SPELL
2337 (char_u *)&p_sps, PV_NONE,
2338 {(char_u *)"best", (char_u *)0L}
2339 #else
2340 (char_u *)NULL, PV_NONE,
2341 {(char_u *)0L, (char_u *)0L}
2342 #endif
2344 {"splitbelow", "sb", P_BOOL|P_VI_DEF,
2345 #ifdef FEAT_WINDOWS
2346 (char_u *)&p_sb, PV_NONE,
2347 #else
2348 (char_u *)NULL, PV_NONE,
2349 #endif
2350 {(char_u *)FALSE, (char_u *)0L}},
2351 {"splitright", "spr", P_BOOL|P_VI_DEF,
2352 #ifdef FEAT_VERTSPLIT
2353 (char_u *)&p_spr, PV_NONE,
2354 #else
2355 (char_u *)NULL, PV_NONE,
2356 #endif
2357 {(char_u *)FALSE, (char_u *)0L}},
2358 {"startofline", "sol", P_BOOL|P_VI_DEF|P_VIM,
2359 (char_u *)&p_sol, PV_NONE,
2360 {(char_u *)TRUE, (char_u *)0L}},
2361 {"statusline" ,"stl", P_STRING|P_VI_DEF|P_ALLOCED|P_RSTAT,
2362 #ifdef FEAT_STL_OPT
2363 (char_u *)&p_stl, PV_STL,
2364 #else
2365 (char_u *)NULL, PV_NONE,
2366 #endif
2367 {(char_u *)"", (char_u *)0L}},
2368 {"suffixes", "su", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2369 (char_u *)&p_su, PV_NONE,
2370 {(char_u *)".bak,~,.o,.h,.info,.swp,.obj",
2371 (char_u *)0L}},
2372 {"suffixesadd", "sua", P_STRING|P_VI_DEF|P_ALLOCED|P_COMMA|P_NODUP,
2373 #ifdef FEAT_SEARCHPATH
2374 (char_u *)&p_sua, PV_SUA,
2375 {(char_u *)"", (char_u *)0L}
2376 #else
2377 (char_u *)NULL, PV_NONE,
2378 {(char_u *)0L, (char_u *)0L}
2379 #endif
2381 {"swapfile", "swf", P_BOOL|P_VI_DEF|P_RSTAT,
2382 (char_u *)&p_swf, PV_SWF,
2383 {(char_u *)TRUE, (char_u *)0L}},
2384 {"swapsync", "sws", P_STRING|P_VI_DEF,
2385 (char_u *)&p_sws, PV_NONE,
2386 {(char_u *)"fsync", (char_u *)0L}},
2387 {"switchbuf", "swb", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2388 (char_u *)&p_swb, PV_NONE,
2389 {(char_u *)"", (char_u *)0L}},
2390 {"synmaxcol", "smc", P_NUM|P_VI_DEF|P_RBUF,
2391 #ifdef FEAT_SYN_HL
2392 (char_u *)&p_smc, PV_SMC,
2393 {(char_u *)3000L, (char_u *)0L}
2394 #else
2395 (char_u *)NULL, PV_NONE,
2396 {(char_u *)0L, (char_u *)0L}
2397 #endif
2399 {"syntax", "syn", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB|P_NFNAME,
2400 #ifdef FEAT_SYN_HL
2401 (char_u *)&p_syn, PV_SYN,
2402 {(char_u *)"", (char_u *)0L}
2403 #else
2404 (char_u *)NULL, PV_NONE,
2405 {(char_u *)0L, (char_u *)0L}
2406 #endif
2408 {"tabline", "tal", P_STRING|P_VI_DEF|P_RALL,
2409 #ifdef FEAT_STL_OPT
2410 (char_u *)&p_tal, PV_NONE,
2411 #else
2412 (char_u *)NULL, PV_NONE,
2413 #endif
2414 {(char_u *)"", (char_u *)0L}},
2415 {"tabpagemax", "tpm", P_NUM|P_VI_DEF,
2416 #ifdef FEAT_WINDOWS
2417 (char_u *)&p_tpm, PV_NONE,
2418 #else
2419 (char_u *)NULL, PV_NONE,
2420 #endif
2421 {(char_u *)10L, (char_u *)0L}},
2422 {"tabstop", "ts", P_NUM|P_VI_DEF|P_RBUF,
2423 (char_u *)&p_ts, PV_TS,
2424 {(char_u *)8L, (char_u *)0L}},
2425 {"tagbsearch", "tbs", P_BOOL|P_VI_DEF,
2426 (char_u *)&p_tbs, PV_NONE,
2427 #ifdef VMS /* binary searching doesn't appear to work on VMS */
2428 {(char_u *)0L, (char_u *)0L}
2429 #else
2430 {(char_u *)TRUE, (char_u *)0L}
2431 #endif
2433 {"taglength", "tl", P_NUM|P_VI_DEF,
2434 (char_u *)&p_tl, PV_NONE,
2435 {(char_u *)0L, (char_u *)0L}},
2436 {"tagrelative", "tr", P_BOOL|P_VIM,
2437 (char_u *)&p_tr, PV_NONE,
2438 {(char_u *)FALSE, (char_u *)TRUE}},
2439 {"tags", "tag", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
2440 (char_u *)&p_tags, PV_TAGS,
2442 #if defined(FEAT_EMACS_TAGS) && !defined(CASE_INSENSITIVE_FILENAME)
2443 (char_u *)"./tags,./TAGS,tags,TAGS",
2444 #else
2445 (char_u *)"./tags,tags",
2446 #endif
2447 (char_u *)0L}},
2448 {"tagstack", "tgst", P_BOOL|P_VI_DEF,
2449 (char_u *)&p_tgst, PV_NONE,
2450 {(char_u *)TRUE, (char_u *)0L}},
2451 {"term", NULL, P_STRING|P_EXPAND|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RALL,
2452 (char_u *)&T_NAME, PV_NONE,
2453 {(char_u *)"", (char_u *)0L}},
2454 {"termbidi", "tbidi", P_BOOL|P_VI_DEF,
2455 #ifdef FEAT_ARABIC
2456 (char_u *)&p_tbidi, PV_NONE,
2457 #else
2458 (char_u *)NULL, PV_NONE,
2459 #endif
2460 {(char_u *)FALSE, (char_u *)0L}},
2461 {"termencoding", "tenc", P_STRING|P_VI_DEF|P_RCLR,
2462 #ifdef FEAT_MBYTE
2463 (char_u *)&p_tenc, PV_NONE,
2464 {(char_u *)"", (char_u *)0L}
2465 #else
2466 (char_u *)NULL, PV_NONE,
2467 {(char_u *)0L, (char_u *)0L}
2468 #endif
2470 {"terse", NULL, P_BOOL|P_VI_DEF,
2471 (char_u *)&p_terse, PV_NONE,
2472 {(char_u *)FALSE, (char_u *)0L}},
2473 {"textauto", "ta", P_BOOL|P_VIM,
2474 (char_u *)&p_ta, PV_NONE,
2475 {(char_u *)DFLT_TEXTAUTO, (char_u *)TRUE}},
2476 {"textmode", "tx", P_BOOL|P_VI_DEF|P_NO_MKRC,
2477 (char_u *)&p_tx, PV_TX,
2479 #ifdef USE_CRNL
2480 (char_u *)TRUE,
2481 #else
2482 (char_u *)FALSE,
2483 #endif
2484 (char_u *)0L}},
2485 {"textwidth", "tw", P_NUM|P_VI_DEF|P_VIM,
2486 (char_u *)&p_tw, PV_TW,
2487 {(char_u *)0L, (char_u *)0L}},
2488 {"thesaurus", "tsr", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
2489 #ifdef FEAT_INS_EXPAND
2490 (char_u *)&p_tsr, PV_TSR,
2491 #else
2492 (char_u *)NULL, PV_NONE,
2493 #endif
2494 {(char_u *)"", (char_u *)0L}},
2495 {"tildeop", "top", P_BOOL|P_VI_DEF|P_VIM,
2496 (char_u *)&p_to, PV_NONE,
2497 {(char_u *)FALSE, (char_u *)0L}},
2498 {"timeout", "to", P_BOOL|P_VI_DEF,
2499 (char_u *)&p_timeout, PV_NONE,
2500 {(char_u *)TRUE, (char_u *)0L}},
2501 {"timeoutlen", "tm", P_NUM|P_VI_DEF,
2502 (char_u *)&p_tm, PV_NONE,
2503 {(char_u *)1000L, (char_u *)0L}},
2504 {"title", NULL, P_BOOL|P_VI_DEF,
2505 #ifdef FEAT_TITLE
2506 (char_u *)&p_title, PV_NONE,
2507 #else
2508 (char_u *)NULL, PV_NONE,
2509 #endif
2510 {(char_u *)FALSE, (char_u *)0L}},
2511 {"titlelen", NULL, P_NUM|P_VI_DEF,
2512 #ifdef FEAT_TITLE
2513 (char_u *)&p_titlelen, PV_NONE,
2514 #else
2515 (char_u *)NULL, PV_NONE,
2516 #endif
2517 {(char_u *)85L, (char_u *)0L}},
2518 {"titleold", NULL, P_STRING|P_VI_DEF|P_GETTEXT|P_SECURE|P_NO_MKRC,
2519 #ifdef FEAT_TITLE
2520 (char_u *)&p_titleold, PV_NONE,
2521 {(char_u *)N_("Thanks for flying Vim"),
2522 (char_u *)0L}
2523 #else
2524 (char_u *)NULL, PV_NONE,
2525 {(char_u *)0L, (char_u *)0L}
2526 #endif
2528 {"titlestring", NULL, P_STRING|P_VI_DEF,
2529 #ifdef FEAT_TITLE
2530 (char_u *)&p_titlestring, PV_NONE,
2531 #else
2532 (char_u *)NULL, PV_NONE,
2533 #endif
2534 {(char_u *)"", (char_u *)0L}},
2535 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
2536 {"toolbar", "tb", P_STRING|P_COMMA|P_VI_DEF|P_NODUP,
2537 (char_u *)&p_toolbar, PV_NONE,
2538 {(char_u *)"icons,tooltips", (char_u *)0L}},
2539 #endif
2540 #if defined(FEAT_TOOLBAR) && ((defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)) \
2541 || defined(FEAT_GUI_MACVIM))
2542 {"toolbariconsize", "tbis", P_STRING|P_VI_DEF,
2543 (char_u *)&p_tbis, PV_NONE,
2544 {(char_u *)"small", (char_u *)0L}},
2545 #endif
2546 {"transparency", "transp", P_NUM|P_VIM|P_RCLR,
2547 #ifdef FEAT_TRANSPARENCY
2548 (char_u *)&p_transp, PV_NONE,
2549 #else
2550 (char_u *)NULL, PV_NONE,
2551 #endif
2552 {(char_u *)0L, (char_u *)0L} },
2553 {"ttimeout", NULL, P_BOOL|P_VI_DEF|P_VIM,
2554 (char_u *)&p_ttimeout, PV_NONE,
2555 {(char_u *)FALSE, (char_u *)0L}},
2556 {"ttimeoutlen", "ttm", P_NUM|P_VI_DEF,
2557 (char_u *)&p_ttm, PV_NONE,
2558 {(char_u *)-1L, (char_u *)0L}},
2559 {"ttybuiltin", "tbi", P_BOOL|P_VI_DEF,
2560 (char_u *)&p_tbi, PV_NONE,
2561 {(char_u *)TRUE, (char_u *)0L}},
2562 {"ttyfast", "tf", P_BOOL|P_NO_MKRC|P_VI_DEF,
2563 (char_u *)&p_tf, PV_NONE,
2564 {(char_u *)FALSE, (char_u *)0L}},
2565 {"ttymouse", "ttym", P_STRING|P_NODEFAULT|P_NO_MKRC|P_VI_DEF,
2566 #if defined(FEAT_MOUSE) && (defined(UNIX) || defined(VMS))
2567 (char_u *)&p_ttym, PV_NONE,
2568 #else
2569 (char_u *)NULL, PV_NONE,
2570 #endif
2571 {(char_u *)"", (char_u *)0L}},
2572 {"ttyscroll", "tsl", P_NUM|P_VI_DEF,
2573 (char_u *)&p_ttyscroll, PV_NONE,
2574 {(char_u *)999L, (char_u *)0L}},
2575 {"ttytype", "tty", P_STRING|P_EXPAND|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RALL,
2576 (char_u *)&T_NAME, PV_NONE,
2577 {(char_u *)"", (char_u *)0L}},
2578 {"undolevels", "ul", P_NUM|P_VI_DEF,
2579 (char_u *)&p_ul, PV_NONE,
2581 #if defined(UNIX) || defined(WIN3264) || defined(OS2) || defined(VMS)
2582 (char_u *)1000L,
2583 #else
2584 (char_u *)100L,
2585 #endif
2586 (char_u *)0L}},
2587 {"updatecount", "uc", P_NUM|P_VI_DEF,
2588 (char_u *)&p_uc, PV_NONE,
2589 {(char_u *)200L, (char_u *)0L}},
2590 {"updatetime", "ut", P_NUM|P_VI_DEF,
2591 (char_u *)&p_ut, PV_NONE,
2592 {(char_u *)4000L, (char_u *)0L}},
2593 {"verbose", "vbs", P_NUM|P_VI_DEF,
2594 (char_u *)&p_verbose, PV_NONE,
2595 {(char_u *)0L, (char_u *)0L}},
2596 {"verbosefile", "vfile", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
2597 (char_u *)&p_vfile, PV_NONE,
2598 {(char_u *)"", (char_u *)0L}},
2599 {"viewdir", "vdir", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
2600 #ifdef FEAT_SESSION
2601 (char_u *)&p_vdir, PV_NONE,
2602 {(char_u *)DFLT_VDIR, (char_u *)0L}
2603 #else
2604 (char_u *)NULL, PV_NONE,
2605 {(char_u *)0L, (char_u *)0L}
2606 #endif
2608 {"viewoptions", "vop", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2609 #ifdef FEAT_SESSION
2610 (char_u *)&p_vop, PV_NONE,
2611 {(char_u *)"folds,options,cursor", (char_u *)0L}
2612 #else
2613 (char_u *)NULL, PV_NONE,
2614 {(char_u *)0L, (char_u *)0L}
2615 #endif
2617 {"viminfo", "vi", P_STRING|P_COMMA|P_NODUP|P_SECURE,
2618 #ifdef FEAT_VIMINFO
2619 (char_u *)&p_viminfo, PV_NONE,
2620 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
2621 {(char_u *)"", (char_u *)"'20,<50,s10,h,rA:,rB:"}
2622 #else
2623 # ifdef AMIGA
2624 {(char_u *)"",
2625 (char_u *)"'20,<50,s10,h,rdf0:,rdf1:,rdf2:"}
2626 # else
2627 {(char_u *)"", (char_u *)"'20,<50,s10,h"}
2628 # endif
2629 #endif
2630 #else
2631 (char_u *)NULL, PV_NONE,
2632 {(char_u *)0L, (char_u *)0L}
2633 #endif
2635 {"virtualedit", "ve", P_STRING|P_COMMA|P_NODUP|P_VI_DEF|P_VIM,
2636 #ifdef FEAT_VIRTUALEDIT
2637 (char_u *)&p_ve, PV_NONE,
2638 {(char_u *)"", (char_u *)""}
2639 #else
2640 (char_u *)NULL, PV_NONE,
2641 {(char_u *)0L, (char_u *)0L}
2642 #endif
2644 {"visualbell", "vb", P_BOOL|P_VI_DEF,
2645 (char_u *)&p_vb, PV_NONE,
2646 {(char_u *)FALSE, (char_u *)0L}},
2647 {"w300", NULL, P_NUM|P_VI_DEF,
2648 (char_u *)NULL, PV_NONE,
2649 {(char_u *)0L, (char_u *)0L}},
2650 {"w1200", NULL, P_NUM|P_VI_DEF,
2651 (char_u *)NULL, PV_NONE,
2652 {(char_u *)0L, (char_u *)0L}},
2653 {"w9600", NULL, P_NUM|P_VI_DEF,
2654 (char_u *)NULL, PV_NONE,
2655 {(char_u *)0L, (char_u *)0L}},
2656 {"warn", NULL, P_BOOL|P_VI_DEF,
2657 (char_u *)&p_warn, PV_NONE,
2658 {(char_u *)TRUE, (char_u *)0L}},
2659 {"weirdinvert", "wiv", P_BOOL|P_VI_DEF|P_RCLR,
2660 (char_u *)&p_wiv, PV_NONE,
2661 {(char_u *)FALSE, (char_u *)0L}},
2662 {"whichwrap", "ww", P_STRING|P_VIM|P_COMMA|P_FLAGLIST,
2663 (char_u *)&p_ww, PV_NONE,
2664 {(char_u *)"", (char_u *)"b,s"}},
2665 {"wildchar", "wc", P_NUM|P_VIM,
2666 (char_u *)&p_wc, PV_NONE,
2667 {(char_u *)(long)Ctrl_E, (char_u *)(long)TAB}},
2668 {"wildcharm", "wcm", P_NUM|P_VI_DEF,
2669 (char_u *)&p_wcm, PV_NONE,
2670 {(char_u *)0L, (char_u *)0L}},
2671 {"wildignore", "wig", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2672 #ifdef FEAT_WILDIGN
2673 (char_u *)&p_wig, PV_NONE,
2674 #else
2675 (char_u *)NULL, PV_NONE,
2676 #endif
2677 {(char_u *)"", (char_u *)0L}},
2678 {"wildmenu", "wmnu", P_BOOL|P_VI_DEF,
2679 #ifdef FEAT_WILDMENU
2680 (char_u *)&p_wmnu, PV_NONE,
2681 #else
2682 (char_u *)NULL, PV_NONE,
2683 #endif
2684 {(char_u *)FALSE, (char_u *)0L}},
2685 {"wildmode", "wim", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2686 (char_u *)&p_wim, PV_NONE,
2687 {(char_u *)"full", (char_u *)0L}},
2688 {"wildoptions", "wop", P_STRING|P_VI_DEF,
2689 #ifdef FEAT_CMDL_COMPL
2690 (char_u *)&p_wop, PV_NONE,
2691 {(char_u *)"", (char_u *)0L}
2692 #else
2693 (char_u *)NULL, PV_NONE,
2694 {(char_u *)NULL, (char_u *)0L}
2695 #endif
2697 {"winaltkeys", "wak", P_STRING|P_VI_DEF,
2698 #ifdef FEAT_WAK
2699 (char_u *)&p_wak, PV_NONE,
2700 {(char_u *)"menu", (char_u *)0L}
2701 #else
2702 (char_u *)NULL, PV_NONE,
2703 {(char_u *)NULL, (char_u *)0L}
2704 #endif
2706 {"window", "wi", P_NUM|P_VI_DEF,
2707 (char_u *)&p_window, PV_NONE,
2708 {(char_u *)0L, (char_u *)0L}},
2709 {"winheight", "wh", P_NUM|P_VI_DEF,
2710 #ifdef FEAT_WINDOWS
2711 (char_u *)&p_wh, PV_NONE,
2712 #else
2713 (char_u *)NULL, PV_NONE,
2714 #endif
2715 {(char_u *)1L, (char_u *)0L}},
2716 {"winfixheight", "wfh", P_BOOL|P_VI_DEF|P_RSTAT,
2717 #ifdef FEAT_WINDOWS
2718 (char_u *)VAR_WIN, PV_WFH,
2719 #else
2720 (char_u *)NULL, PV_NONE,
2721 #endif
2722 {(char_u *)FALSE, (char_u *)0L}},
2723 {"winfixwidth", "wfw", P_BOOL|P_VI_DEF|P_RSTAT,
2724 #ifdef FEAT_VERTSPLIT
2725 (char_u *)VAR_WIN, PV_WFW,
2726 #else
2727 (char_u *)NULL, PV_NONE,
2728 #endif
2729 {(char_u *)FALSE, (char_u *)0L}},
2730 {"winminheight", "wmh", P_NUM|P_VI_DEF,
2731 #ifdef FEAT_WINDOWS
2732 (char_u *)&p_wmh, PV_NONE,
2733 #else
2734 (char_u *)NULL, PV_NONE,
2735 #endif
2736 {(char_u *)1L, (char_u *)0L}},
2737 {"winminwidth", "wmw", P_NUM|P_VI_DEF,
2738 #ifdef FEAT_VERTSPLIT
2739 (char_u *)&p_wmw, PV_NONE,
2740 #else
2741 (char_u *)NULL, PV_NONE,
2742 #endif
2743 {(char_u *)1L, (char_u *)0L}},
2744 {"winwidth", "wiw", P_NUM|P_VI_DEF,
2745 #ifdef FEAT_VERTSPLIT
2746 (char_u *)&p_wiw, PV_NONE,
2747 #else
2748 (char_u *)NULL, PV_NONE,
2749 #endif
2750 {(char_u *)20L, (char_u *)0L}},
2751 {"wrap", NULL, P_BOOL|P_VI_DEF|P_RWIN,
2752 (char_u *)VAR_WIN, PV_WRAP,
2753 {(char_u *)TRUE, (char_u *)0L}},
2754 {"wrapmargin", "wm", P_NUM|P_VI_DEF,
2755 (char_u *)&p_wm, PV_WM,
2756 {(char_u *)0L, (char_u *)0L}},
2757 {"wrapscan", "ws", P_BOOL|P_VI_DEF,
2758 (char_u *)&p_ws, PV_NONE,
2759 {(char_u *)TRUE, (char_u *)0L}},
2760 {"write", NULL, P_BOOL|P_VI_DEF,
2761 (char_u *)&p_write, PV_NONE,
2762 {(char_u *)TRUE, (char_u *)0L}},
2763 {"writeany", "wa", P_BOOL|P_VI_DEF,
2764 (char_u *)&p_wa, PV_NONE,
2765 {(char_u *)FALSE, (char_u *)0L}},
2766 {"writebackup", "wb", P_BOOL|P_VI_DEF|P_VIM,
2767 (char_u *)&p_wb, PV_NONE,
2769 #ifdef FEAT_WRITEBACKUP
2770 (char_u *)TRUE,
2771 #else
2772 (char_u *)FALSE,
2773 #endif
2774 (char_u *)0L}},
2775 {"writedelay", "wd", P_NUM|P_VI_DEF,
2776 (char_u *)&p_wd, PV_NONE,
2777 {(char_u *)0L, (char_u *)0L}},
2779 /* terminal output codes */
2780 #define p_term(sss, vvv) {sss, NULL, P_STRING|P_VI_DEF|P_RALL|P_SECURE, \
2781 (char_u *)&vvv, PV_NONE, \
2782 {(char_u *)"", (char_u *)0L}},
2784 p_term("t_AB", T_CAB)
2785 p_term("t_AF", T_CAF)
2786 p_term("t_AL", T_CAL)
2787 p_term("t_al", T_AL)
2788 p_term("t_bc", T_BC)
2789 p_term("t_cd", T_CD)
2790 p_term("t_ce", T_CE)
2791 p_term("t_cl", T_CL)
2792 p_term("t_cm", T_CM)
2793 p_term("t_Co", T_CCO)
2794 p_term("t_CS", T_CCS)
2795 p_term("t_cs", T_CS)
2796 #ifdef FEAT_VERTSPLIT
2797 p_term("t_CV", T_CSV)
2798 #endif
2799 p_term("t_ut", T_UT)
2800 p_term("t_da", T_DA)
2801 p_term("t_db", T_DB)
2802 p_term("t_DL", T_CDL)
2803 p_term("t_dl", T_DL)
2804 p_term("t_fs", T_FS)
2805 p_term("t_IE", T_CIE)
2806 p_term("t_IS", T_CIS)
2807 p_term("t_ke", T_KE)
2808 p_term("t_ks", T_KS)
2809 p_term("t_le", T_LE)
2810 p_term("t_mb", T_MB)
2811 p_term("t_md", T_MD)
2812 p_term("t_me", T_ME)
2813 p_term("t_mr", T_MR)
2814 p_term("t_ms", T_MS)
2815 p_term("t_nd", T_ND)
2816 p_term("t_op", T_OP)
2817 p_term("t_RI", T_CRI)
2818 p_term("t_RV", T_CRV)
2819 p_term("t_Sb", T_CSB)
2820 p_term("t_Sf", T_CSF)
2821 p_term("t_se", T_SE)
2822 p_term("t_so", T_SO)
2823 p_term("t_sr", T_SR)
2824 p_term("t_ts", T_TS)
2825 p_term("t_te", T_TE)
2826 p_term("t_ti", T_TI)
2827 p_term("t_ue", T_UE)
2828 p_term("t_us", T_US)
2829 p_term("t_vb", T_VB)
2830 p_term("t_ve", T_VE)
2831 p_term("t_vi", T_VI)
2832 p_term("t_vs", T_VS)
2833 p_term("t_WP", T_CWP)
2834 p_term("t_WS", T_CWS)
2835 p_term("t_SI", T_CSI)
2836 p_term("t_EI", T_CEI)
2837 p_term("t_xs", T_XS)
2838 p_term("t_ZH", T_CZH)
2839 p_term("t_ZR", T_CZR)
2841 /* terminal key codes are not in here */
2843 {NULL, NULL, 0, NULL, PV_NONE, {NULL, NULL}} /* end marker */
2846 #define PARAM_COUNT (sizeof(options) / sizeof(struct vimoption))
2848 #ifdef FEAT_MBYTE
2849 static char *(p_ambw_values[]) = {"single", "double", NULL};
2850 #endif
2851 static char *(p_bg_values[]) = {"light", "dark", NULL};
2852 static char *(p_nf_values[]) = {"octal", "hex", "alpha", NULL};
2853 static char *(p_ff_values[]) = {FF_UNIX, FF_DOS, FF_MAC, NULL};
2854 #ifdef FEAT_CMDL_COMPL
2855 static char *(p_wop_values[]) = {"tagfile", NULL};
2856 #endif
2857 #ifdef FEAT_WAK
2858 static char *(p_wak_values[]) = {"yes", "menu", "no", NULL};
2859 #endif
2860 static char *(p_mousem_values[]) = {"extend", "popup", "popup_setpos", "mac", NULL};
2861 #ifdef FEAT_VISUAL
2862 static char *(p_sel_values[]) = {"inclusive", "exclusive", "old", NULL};
2863 static char *(p_slm_values[]) = {"mouse", "key", "cmd", NULL};
2864 #endif
2865 #ifdef FEAT_VISUAL
2866 static char *(p_km_values[]) = {"startsel", "stopsel", NULL};
2867 #endif
2868 #ifdef FEAT_BROWSE
2869 static char *(p_bsdir_values[]) = {"current", "last", "buffer", NULL};
2870 #endif
2871 #ifdef FEAT_SCROLLBIND
2872 static char *(p_scbopt_values[]) = {"ver", "hor", "jump", NULL};
2873 #endif
2874 static char *(p_debug_values[]) = {"msg", "throw", "beep", NULL};
2875 #ifdef FEAT_VERTSPLIT
2876 static char *(p_ead_values[]) = {"both", "ver", "hor", NULL};
2877 #endif
2878 #if defined(FEAT_QUICKFIX)
2879 # ifdef FEAT_AUTOCMD
2880 static char *(p_buftype_values[]) = {"nofile", "nowrite", "quickfix", "help", "acwrite", NULL};
2881 # else
2882 static char *(p_buftype_values[]) = {"nofile", "nowrite", "quickfix", "help", NULL};
2883 # endif
2884 static char *(p_bufhidden_values[]) = {"hide", "unload", "delete", "wipe", NULL};
2885 #endif
2886 static char *(p_bs_values[]) = {"indent", "eol", "start", NULL};
2887 #ifdef FEAT_FOLDING
2888 static char *(p_fdm_values[]) = {"manual", "expr", "marker", "indent", "syntax",
2889 # ifdef FEAT_DIFF
2890 "diff",
2891 # endif
2892 NULL};
2893 static char *(p_fcl_values[]) = {"all", NULL};
2894 #endif
2895 #ifdef FEAT_INS_EXPAND
2896 static char *(p_cot_values[]) = {"menu", "menuone", "longest", "preview", NULL};
2897 #endif
2899 static void set_option_default __ARGS((int, int opt_flags, int compatible));
2900 static void set_options_default __ARGS((int opt_flags));
2901 static char_u *term_bg_default __ARGS((void));
2902 static void did_set_option __ARGS((int opt_idx, int opt_flags, int new_value));
2903 static char_u *illegal_char __ARGS((char_u *, int));
2904 static int string_to_key __ARGS((char_u *arg));
2905 #ifdef FEAT_CMDWIN
2906 static char_u *check_cedit __ARGS((void));
2907 #endif
2908 #ifdef FEAT_TITLE
2909 static void did_set_title __ARGS((int icon));
2910 #endif
2911 static char_u *option_expand __ARGS((int opt_idx, char_u *val));
2912 static void didset_options __ARGS((void));
2913 static void check_string_option __ARGS((char_u **pp));
2914 #if defined(FEAT_EVAL) || defined(PROTO)
2915 static long_u *insecure_flag __ARGS((int opt_idx, int opt_flags));
2916 #else
2917 # define insecure_flag(opt_idx, opt_flags) (&options[opt_idx].flags)
2918 #endif
2919 static void set_string_option_global __ARGS((int opt_idx, char_u **varp));
2920 static void set_string_option __ARGS((int opt_idx, char_u *value, int opt_flags));
2921 static char_u *did_set_string_option __ARGS((int opt_idx, char_u **varp, int new_value_alloced, char_u *oldval, char_u *errbuf, int opt_flags));
2922 static char_u *set_chars_option __ARGS((char_u **varp));
2923 #ifdef FEAT_CLIPBOARD
2924 static char_u *check_clipboard_option __ARGS((void));
2925 #endif
2926 #ifdef FEAT_SPELL
2927 static char_u *compile_cap_prog __ARGS((buf_T *buf));
2928 #endif
2929 #ifdef FEAT_EVAL
2930 static void set_option_scriptID_idx __ARGS((int opt_idx, int opt_flags, int id));
2931 #endif
2932 static char_u *set_bool_option __ARGS((int opt_idx, char_u *varp, int value, int opt_flags));
2933 static char_u *set_num_option __ARGS((int opt_idx, char_u *varp, long value, char_u *errbuf, size_t errbuflen, int opt_flags));
2934 static void check_redraw __ARGS((long_u flags));
2935 static int findoption __ARGS((char_u *));
2936 static int find_key_option __ARGS((char_u *));
2937 static void showoptions __ARGS((int all, int opt_flags));
2938 static int optval_default __ARGS((struct vimoption *, char_u *varp));
2939 static void showoneopt __ARGS((struct vimoption *, int opt_flags));
2940 static int put_setstring __ARGS((FILE *fd, char *cmd, char *name, char_u **valuep, int expand));
2941 static int put_setnum __ARGS((FILE *fd, char *cmd, char *name, long *valuep));
2942 static int put_setbool __ARGS((FILE *fd, char *cmd, char *name, int value));
2943 static int istermoption __ARGS((struct vimoption *));
2944 static char_u *get_varp_scope __ARGS((struct vimoption *p, int opt_flags));
2945 static char_u *get_varp __ARGS((struct vimoption *));
2946 static void option_value2string __ARGS((struct vimoption *, int opt_flags));
2947 static int wc_use_keyname __ARGS((char_u *varp, long *wcp));
2948 #ifdef FEAT_LANGMAP
2949 static void langmap_init __ARGS((void));
2950 static void langmap_set __ARGS((void));
2951 #endif
2952 static void paste_option_changed __ARGS((void));
2953 static void compatible_set __ARGS((void));
2954 #ifdef FEAT_LINEBREAK
2955 static void fill_breakat_flags __ARGS((void));
2956 #endif
2957 static int opt_strings_flags __ARGS((char_u *val, char **values, unsigned *flagp, int list));
2958 static int check_opt_strings __ARGS((char_u *val, char **values, int));
2959 static int check_opt_wim __ARGS((void));
2960 #ifdef FEAT_FULLSCREEN
2961 static int check_fuoptions __ARGS((char_u *, unsigned *, int *));
2962 #endif
2965 * Initialize the options, first part.
2967 * Called only once from main(), just after creating the first buffer.
2969 void
2970 set_init_1()
2972 char_u *p;
2973 int opt_idx;
2974 long_u n;
2975 #if defined(FEAT_GUI_MACVIM) && defined(FEAT_MBYTE)
2976 int did_mb_init;
2977 #endif
2979 #ifdef FEAT_LANGMAP
2980 langmap_init();
2981 #endif
2983 /* Be Vi compatible by default */
2984 p_cp = TRUE;
2986 /* Use POSIX compatibility when $VIM_POSIX is set. */
2987 if (mch_getenv((char_u *)"VIM_POSIX") != NULL)
2989 set_string_default("cpo", (char_u *)CPO_ALL);
2990 set_string_default("shm", (char_u *)"A");
2994 * Find default value for 'shell' option.
2995 * Don't use it if it is empty.
2997 if (((p = mch_getenv((char_u *)"SHELL")) != NULL && *p != NUL)
2998 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
2999 # ifdef __EMX__
3000 || ((p = mch_getenv((char_u *)"EMXSHELL")) != NULL && *p != NUL)
3001 # endif
3002 || ((p = mch_getenv((char_u *)"COMSPEC")) != NULL && *p != NUL)
3003 # ifdef WIN3264
3004 || ((p = default_shell()) != NULL && *p != NUL)
3005 # endif
3006 #endif
3008 set_string_default("sh", p);
3010 #ifdef FEAT_WILDIGN
3012 * Set the default for 'backupskip' to include environment variables for
3013 * temp files.
3016 # ifdef UNIX
3017 static char *(names[4]) = {"", "TMPDIR", "TEMP", "TMP"};
3018 # else
3019 static char *(names[3]) = {"TMPDIR", "TEMP", "TMP"};
3020 # endif
3021 int len;
3022 garray_T ga;
3023 int mustfree;
3025 ga_init2(&ga, 1, 100);
3026 for (n = 0; n < (long)(sizeof(names) / sizeof(char *)); ++n)
3028 mustfree = FALSE;
3029 # ifdef UNIX
3030 if (*names[n] == NUL)
3031 p = (char_u *)"/tmp";
3032 else
3033 # endif
3034 p = vim_getenv((char_u *)names[n], &mustfree);
3035 if (p != NULL && *p != NUL)
3037 /* First time count the NUL, otherwise count the ','. */
3038 len = (int)STRLEN(p) + 3;
3039 if (ga_grow(&ga, len) == OK)
3041 if (ga.ga_len > 0)
3042 STRCAT(ga.ga_data, ",");
3043 STRCAT(ga.ga_data, p);
3044 add_pathsep(ga.ga_data);
3045 STRCAT(ga.ga_data, "*");
3046 ga.ga_len += len;
3049 if (mustfree)
3050 vim_free(p);
3052 if (ga.ga_data != NULL)
3054 set_string_default("bsk", ga.ga_data);
3055 vim_free(ga.ga_data);
3058 #endif
3061 * 'maxmemtot' and 'maxmem' may have to be adjusted for available memory
3063 opt_idx = findoption((char_u *)"maxmemtot");
3064 if (opt_idx >= 0)
3066 #if !defined(HAVE_AVAIL_MEM) && !defined(HAVE_TOTAL_MEM)
3067 if (options[opt_idx].def_val[VI_DEFAULT] == (char_u *)0L)
3068 #endif
3070 #ifdef HAVE_AVAIL_MEM
3071 /* Use amount of memory available at this moment. */
3072 n = (mch_avail_mem(FALSE) >> 11);
3073 #else
3074 # ifdef HAVE_TOTAL_MEM
3075 /* Use amount of memory available to Vim. */
3076 n = (mch_total_mem(FALSE) >> 1);
3077 # else
3078 n = (0x7fffffff >> 11);
3079 # endif
3080 #endif
3081 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)n;
3082 opt_idx = findoption((char_u *)"maxmem");
3083 if (opt_idx >= 0)
3085 #if !defined(HAVE_AVAIL_MEM) && !defined(HAVE_TOTAL_MEM)
3086 if ((long)options[opt_idx].def_val[VI_DEFAULT] > n
3087 || (long)options[opt_idx].def_val[VI_DEFAULT] == 0L)
3088 #endif
3089 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)n;
3094 #ifdef FEAT_GUI_W32
3095 /* force 'shortname' for Win32s */
3096 if (gui_is_win32s())
3098 opt_idx = findoption((char_u *)"shortname");
3099 if (opt_idx >= 0)
3100 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)TRUE;
3102 #endif
3104 #ifdef FEAT_SEARCHPATH
3106 char_u *cdpath;
3107 char_u *buf;
3108 int i;
3109 int j;
3110 int mustfree = FALSE;
3112 /* Initialize the 'cdpath' option's default value. */
3113 cdpath = vim_getenv((char_u *)"CDPATH", &mustfree);
3114 if (cdpath != NULL)
3116 buf = alloc((unsigned)((STRLEN(cdpath) << 1) + 2));
3117 if (buf != NULL)
3119 buf[0] = ','; /* start with ",", current dir first */
3120 j = 1;
3121 for (i = 0; cdpath[i] != NUL; ++i)
3123 if (vim_ispathlistsep(cdpath[i]))
3124 buf[j++] = ',';
3125 else
3127 if (cdpath[i] == ' ' || cdpath[i] == ',')
3128 buf[j++] = '\\';
3129 buf[j++] = cdpath[i];
3132 buf[j] = NUL;
3133 opt_idx = findoption((char_u *)"cdpath");
3134 if (opt_idx >= 0)
3136 options[opt_idx].def_val[VI_DEFAULT] = buf;
3137 options[opt_idx].flags |= P_DEF_ALLOCED;
3140 if (mustfree)
3141 vim_free(cdpath);
3144 #endif
3146 #if defined(FEAT_POSTSCRIPT) && (defined(MSWIN) || defined(OS2) || defined(VMS) || defined(EBCDIC) || defined(MAC) || defined(hpux))
3147 /* Set print encoding on platforms that don't default to latin1 */
3148 set_string_default("penc",
3149 # if defined(MSWIN) || defined(OS2)
3150 (char_u *)"cp1252"
3151 # else
3152 # ifdef VMS
3153 (char_u *)"dec-mcs"
3154 # else
3155 # ifdef EBCDIC
3156 (char_u *)"ebcdic-uk"
3157 # else
3158 # ifdef MAC
3159 (char_u *)"mac-roman"
3160 # else /* HPUX */
3161 (char_u *)"hp-roman8"
3162 # endif
3163 # endif
3164 # endif
3165 # endif
3167 #endif
3169 #ifdef FEAT_POSTSCRIPT
3170 /* 'printexpr' must be allocated to be able to evaluate it. */
3171 set_string_default("pexpr",
3172 # if defined(MSWIN) || defined(MSDOS) || defined(OS2)
3173 (char_u *)"system('copy' . ' ' . v:fname_in . (&printdevice == '' ? ' LPT1:' : (' \"' . &printdevice . '\"'))) . delete(v:fname_in)"
3174 # else
3175 # ifdef VMS
3176 (char_u *)"system('print/delete' . (&printdevice == '' ? '' : ' /queue=' . &printdevice) . ' ' . v:fname_in)"
3178 # else
3179 (char_u *)"system('lpr' . (&printdevice == '' ? '' : ' -P' . &printdevice) . ' ' . v:fname_in) . delete(v:fname_in) + v:shell_error"
3180 # endif
3181 # endif
3183 #endif
3186 * Set all the options (except the terminal options) to their default
3187 * value. Also set the global value for local options.
3189 set_options_default(0);
3191 #ifdef FEAT_GUI
3192 if (found_reverse_arg)
3193 set_option_value((char_u *)"bg", 0L, (char_u *)"dark", 0);
3194 #endif
3196 curbuf->b_p_initialized = TRUE;
3197 curbuf->b_p_ar = -1; /* no local 'autoread' value */
3198 check_buf_options(curbuf);
3199 check_win_options(curwin);
3200 check_options();
3202 /* Must be before option_expand(), because that one needs vim_isIDc() */
3203 didset_options();
3205 #ifdef FEAT_SPELL
3206 /* Use the current chartab for the generic chartab. */
3207 init_spell_chartab();
3208 #endif
3210 #ifdef FEAT_LINEBREAK
3212 * initialize the table for 'breakat'.
3214 fill_breakat_flags();
3215 #endif
3218 * Expand environment variables and things like "~" for the defaults.
3219 * If option_expand() returns non-NULL the variable is expanded. This can
3220 * only happen for non-indirect options.
3221 * Also set the default to the expanded value, so ":set" does not list
3222 * them.
3223 * Don't set the P_ALLOCED flag, because we don't want to free the
3224 * default.
3226 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
3228 if ((options[opt_idx].flags & P_GETTEXT)
3229 && options[opt_idx].var != NULL)
3230 p = (char_u *)_(*(char **)options[opt_idx].var);
3231 else
3232 p = option_expand(opt_idx, NULL);
3233 if (p != NULL && (p = vim_strsave(p)) != NULL)
3235 *(char_u **)options[opt_idx].var = p;
3236 /* VIMEXP
3237 * Defaults for all expanded options are currently the same for Vi
3238 * and Vim. When this changes, add some code here! Also need to
3239 * split P_DEF_ALLOCED in two.
3241 if (options[opt_idx].flags & P_DEF_ALLOCED)
3242 vim_free(options[opt_idx].def_val[VI_DEFAULT]);
3243 options[opt_idx].def_val[VI_DEFAULT] = p;
3244 options[opt_idx].flags |= P_DEF_ALLOCED;
3248 /* Initialize the highlight_attr[] table. */
3249 highlight_changed();
3251 save_file_ff(curbuf); /* Buffer is unchanged */
3253 /* Parse default for 'wildmode' */
3254 check_opt_wim();
3256 #if defined(FEAT_ARABIC)
3257 /* Detect use of mlterm.
3258 * Mlterm is a terminal emulator akin to xterm that has some special
3259 * abilities (bidi namely).
3260 * NOTE: mlterm's author is being asked to 'set' a variable
3261 * instead of an environment variable due to inheritance.
3263 if (mch_getenv((char_u *)"MLTERM") != NULL)
3264 set_option_value((char_u *)"tbidi", 1L, NULL, 0);
3265 #endif
3267 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
3268 /* Parse default for 'fillchars'. */
3269 (void)set_chars_option(&p_fcs);
3270 #endif
3272 #ifdef FEAT_CLIPBOARD
3273 /* Parse default for 'clipboard' */
3274 (void)check_clipboard_option();
3275 #endif
3277 #ifdef FEAT_MBYTE
3278 # if defined(WIN3264) && defined(FEAT_GETTEXT)
3280 * If $LANG isn't set, try to get a good value for it. This makes the
3281 * right language be used automatically. Don't do this for English.
3283 if (mch_getenv((char_u *)"LANG") == NULL)
3285 char buf[20];
3287 /* Could use LOCALE_SISO639LANGNAME, but it's not in Win95.
3288 * LOCALE_SABBREVLANGNAME gives us three letters, like "enu", we use
3289 * only the first two. */
3290 n = GetLocaleInfo(LOCALE_USER_DEFAULT, LOCALE_SABBREVLANGNAME,
3291 (LPTSTR)buf, 20);
3292 if (n >= 2 && STRNICMP(buf, "en", 2) != 0)
3294 /* There are a few exceptions (probably more) */
3295 if (STRNICMP(buf, "cht", 3) == 0 || STRNICMP(buf, "zht", 3) == 0)
3296 STRCPY(buf, "zh_TW");
3297 else if (STRNICMP(buf, "chs", 3) == 0
3298 || STRNICMP(buf, "zhc", 3) == 0)
3299 STRCPY(buf, "zh_CN");
3300 else if (STRNICMP(buf, "jp", 2) == 0)
3301 STRCPY(buf, "ja");
3302 else
3303 buf[2] = NUL; /* truncate to two-letter code */
3304 vim_setenv("LANG", buf);
3307 # else
3308 # ifdef MACOS_CONVERT
3309 /* Moved to os_mac_conv.c to avoid dependency problems. */
3310 mac_lang_init();
3311 # endif
3312 # endif
3314 /* enc_locale() will try to find the encoding of the current locale. */
3315 p = enc_locale();
3316 if (p != NULL)
3318 char_u *save_enc;
3320 /* Try setting 'encoding' and check if the value is valid.
3321 * If not, go back to the default "latin1". */
3322 save_enc = p_enc;
3323 p_enc = p;
3324 if (STRCMP(p_enc, "gb18030") == 0)
3326 /* We don't support "gb18030", but "cp936" is a good substitute
3327 * for practical purposes, thus use that. It's not an alias to
3328 * still support conversion between gb18030 and utf-8. */
3329 p_enc = vim_strsave((char_u *)"cp936");
3330 vim_free(p);
3332 #if defined(FEAT_GUI_MACVIM)
3333 did_mb_init = (mb_init() == NULL);
3334 if (!did_mb_init)
3336 /* The encoding returned by enc_locale() was invalid, so fall back
3337 * on using utf-8 as the default encoding in MacVim. */
3338 vim_free(p_enc);
3339 p_enc = vim_strsave((char_u *)"utf-8");
3340 did_mb_init = (mb_init() == NULL);
3343 /* did_mb_init should always be TRUE, but check just in case. */
3344 if (did_mb_init)
3345 #else
3346 if (mb_init() == NULL)
3347 #endif
3349 opt_idx = findoption((char_u *)"encoding");
3350 if (opt_idx >= 0)
3352 options[opt_idx].def_val[VI_DEFAULT] = p_enc;
3353 options[opt_idx].flags |= P_DEF_ALLOCED;
3356 #if defined(MSDOS) || defined(MSWIN) || defined(OS2) || defined(MACOS) \
3357 || defined(VMS)
3358 if (STRCMP(p_enc, "latin1") == 0
3359 # ifdef FEAT_MBYTE
3360 || enc_utf8
3361 # endif
3364 /* Adjust the default for 'isprint' and 'iskeyword' to match
3365 * latin1. Also set the defaults for when 'nocompatible' is
3366 * set. */
3367 set_string_option_direct((char_u *)"isp", -1,
3368 ISP_LATIN1, OPT_FREE, SID_NONE);
3369 set_string_option_direct((char_u *)"isk", -1,
3370 ISK_LATIN1, OPT_FREE, SID_NONE);
3371 opt_idx = findoption((char_u *)"isp");
3372 if (opt_idx >= 0)
3373 options[opt_idx].def_val[VIM_DEFAULT] = ISP_LATIN1;
3374 opt_idx = findoption((char_u *)"isk");
3375 if (opt_idx >= 0)
3376 options[opt_idx].def_val[VIM_DEFAULT] = ISK_LATIN1;
3377 (void)init_chartab();
3379 #endif
3381 # if defined(WIN3264) && !defined(FEAT_GUI)
3382 /* Win32 console: When GetACP() returns a different value from
3383 * GetConsoleCP() set 'termencoding'. */
3384 if (GetACP() != GetConsoleCP())
3386 char buf[50];
3388 sprintf(buf, "cp%ld", (long)GetConsoleCP());
3389 p_tenc = vim_strsave((char_u *)buf);
3390 if (p_tenc != NULL)
3392 opt_idx = findoption((char_u *)"termencoding");
3393 if (opt_idx >= 0)
3395 options[opt_idx].def_val[VI_DEFAULT] = p_tenc;
3396 options[opt_idx].flags |= P_DEF_ALLOCED;
3398 convert_setup(&input_conv, p_tenc, p_enc);
3399 convert_setup(&output_conv, p_enc, p_tenc);
3401 else
3402 p_tenc = empty_option;
3404 # endif
3405 # if defined(WIN3264) && defined(FEAT_MBYTE)
3406 /* $HOME may have characters in active code page. */
3407 init_homedir();
3408 # endif
3410 else
3412 vim_free(p_enc);
3413 p_enc = save_enc;
3416 #endif
3418 #ifdef FEAT_MULTI_LANG
3419 /* Set the default for 'helplang'. */
3420 set_helplang_default(get_mess_lang());
3421 #endif
3425 * Set an option to its default value.
3426 * This does not take care of side effects!
3428 static void
3429 set_option_default(opt_idx, opt_flags, compatible)
3430 int opt_idx;
3431 int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */
3432 int compatible; /* use Vi default value */
3434 char_u *varp; /* pointer to variable for current option */
3435 int dvi; /* index in def_val[] */
3436 long_u flags;
3437 long_u *flagsp;
3438 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
3440 varp = get_varp_scope(&(options[opt_idx]), both ? OPT_LOCAL : opt_flags);
3441 flags = options[opt_idx].flags;
3442 if (varp != NULL) /* skip hidden option, nothing to do for it */
3444 dvi = ((flags & P_VI_DEF) || compatible) ? VI_DEFAULT : VIM_DEFAULT;
3445 if (flags & P_STRING)
3447 /* Use set_string_option_direct() for local options to handle
3448 * freeing and allocating the value. */
3449 if (options[opt_idx].indir != PV_NONE)
3450 set_string_option_direct(NULL, opt_idx,
3451 options[opt_idx].def_val[dvi], opt_flags, 0);
3452 else
3454 if ((opt_flags & OPT_FREE) && (flags & P_ALLOCED))
3455 free_string_option(*(char_u **)(varp));
3456 *(char_u **)varp = options[opt_idx].def_val[dvi];
3457 options[opt_idx].flags &= ~P_ALLOCED;
3460 else if (flags & P_NUM)
3462 if (options[opt_idx].indir == PV_SCROLL)
3463 win_comp_scroll(curwin);
3464 else
3466 *(long *)varp = (long)(long_i)options[opt_idx].def_val[dvi];
3467 /* May also set global value for local option. */
3468 if (both)
3469 *(long *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) =
3470 *(long *)varp;
3473 else /* P_BOOL */
3475 /* the cast to long is required for Manx C, long_i is needed for
3476 * MSVC */
3477 *(int *)varp = (int)(long)(long_i)options[opt_idx].def_val[dvi];
3478 #ifdef UNIX
3479 /* 'modeline' defaults to off for root */
3480 if (options[opt_idx].indir == PV_ML && getuid() == ROOT_UID)
3481 *(int *)varp = FALSE;
3482 #endif
3483 /* May also set global value for local option. */
3484 if (both)
3485 *(int *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) =
3486 *(int *)varp;
3489 /* The default value is not insecure. */
3490 flagsp = insecure_flag(opt_idx, opt_flags);
3491 *flagsp = *flagsp & ~P_INSECURE;
3494 #ifdef FEAT_EVAL
3495 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
3496 #endif
3500 * Set all options (except terminal options) to their default value.
3502 static void
3503 set_options_default(opt_flags)
3504 int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */
3506 int i;
3507 #ifdef FEAT_WINDOWS
3508 win_T *wp;
3509 tabpage_T *tp;
3510 #endif
3512 for (i = 0; !istermoption(&options[i]); i++)
3513 if (!(options[i].flags & P_NODEFAULT))
3514 set_option_default(i, opt_flags, p_cp);
3516 #ifdef FEAT_WINDOWS
3517 /* The 'scroll' option must be computed for all windows. */
3518 FOR_ALL_TAB_WINDOWS(tp, wp)
3519 win_comp_scroll(wp);
3520 #else
3521 win_comp_scroll(curwin);
3522 #endif
3526 * Set the Vi-default value of a string option.
3527 * Used for 'sh', 'backupskip' and 'term'.
3529 void
3530 set_string_default(name, val)
3531 char *name;
3532 char_u *val;
3534 char_u *p;
3535 int opt_idx;
3537 p = vim_strsave(val);
3538 if (p != NULL) /* we don't want a NULL */
3540 opt_idx = findoption((char_u *)name);
3541 if (opt_idx >= 0)
3543 if (options[opt_idx].flags & P_DEF_ALLOCED)
3544 vim_free(options[opt_idx].def_val[VI_DEFAULT]);
3545 options[opt_idx].def_val[VI_DEFAULT] = p;
3546 options[opt_idx].flags |= P_DEF_ALLOCED;
3552 * Set the Vi-default value of a number option.
3553 * Used for 'lines' and 'columns'.
3555 void
3556 set_number_default(name, val)
3557 char *name;
3558 long val;
3560 int opt_idx;
3562 opt_idx = findoption((char_u *)name);
3563 if (opt_idx >= 0)
3564 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
3567 #if defined(EXITFREE) || defined(PROTO)
3569 * Free all options.
3571 void
3572 free_all_options()
3574 int i;
3576 for (i = 0; !istermoption(&options[i]); i++)
3578 if (options[i].indir == PV_NONE)
3580 /* global option: free value and default value. */
3581 if (options[i].flags & P_ALLOCED && options[i].var != NULL)
3582 free_string_option(*(char_u **)options[i].var);
3583 if (options[i].flags & P_DEF_ALLOCED)
3584 free_string_option(options[i].def_val[VI_DEFAULT]);
3586 else if (options[i].var != VAR_WIN
3587 && (options[i].flags & P_STRING))
3588 /* buffer-local option: free global value */
3589 free_string_option(*(char_u **)options[i].var);
3592 #endif
3596 * Initialize the options, part two: After getting Rows and Columns and
3597 * setting 'term'.
3599 void
3600 set_init_2()
3602 int idx;
3605 * 'scroll' defaults to half the window height. Note that this default is
3606 * wrong when the window height changes.
3608 set_number_default("scroll", (long)((long_u)Rows >> 1));
3609 idx = findoption((char_u *)"scroll");
3610 if (idx >= 0 && !(options[idx].flags & P_WAS_SET))
3611 set_option_default(idx, OPT_LOCAL, p_cp);
3612 comp_col();
3615 * 'window' is only for backwards compatibility with Vi.
3616 * Default is Rows - 1.
3618 if (!option_was_set((char_u *)"window"))
3619 p_window = Rows - 1;
3620 set_number_default("window", Rows - 1);
3622 /* For DOS console the default is always black. */
3623 #if !((defined(MSDOS) || defined(OS2) || defined(WIN3264)) && !defined(FEAT_GUI))
3625 * If 'background' wasn't set by the user, try guessing the value,
3626 * depending on the terminal name. Only need to check for terminals
3627 * with a dark background, that can handle color.
3629 idx = findoption((char_u *)"bg");
3630 if (idx >= 0 && !(options[idx].flags & P_WAS_SET)
3631 && *term_bg_default() == 'd')
3633 set_string_option_direct(NULL, idx, (char_u *)"dark", OPT_FREE, 0);
3634 /* don't mark it as set, when starting the GUI it may be
3635 * changed again */
3636 options[idx].flags &= ~P_WAS_SET;
3638 #endif
3640 #ifdef CURSOR_SHAPE
3641 parse_shape_opt(SHAPE_CURSOR); /* set cursor shapes from 'guicursor' */
3642 #endif
3643 #ifdef FEAT_MOUSESHAPE
3644 parse_shape_opt(SHAPE_MOUSE); /* set mouse shapes from 'mouseshape' */
3645 #endif
3646 #ifdef FEAT_PRINTER
3647 (void)parse_printoptions(); /* parse 'printoptions' default value */
3648 #endif
3652 * Return "dark" or "light" depending on the kind of terminal.
3653 * This is just guessing! Recognized are:
3654 * "linux" Linux console
3655 * "screen.linux" Linux console with screen
3656 * "cygwin" Cygwin shell
3657 * "putty" Putty program
3658 * We also check the COLORFGBG environment variable, which is set by
3659 * rxvt and derivatives. This variable contains either two or three
3660 * values separated by semicolons; we want the last value in either
3661 * case. If this value is 0-6 or 8, our background is dark.
3663 static char_u *
3664 term_bg_default()
3666 #if defined(MSDOS) || defined(OS2) || defined(WIN3264)
3667 /* DOS console nearly always black */
3668 return (char_u *)"dark";
3669 #else
3670 char_u *p;
3672 if (STRCMP(T_NAME, "linux") == 0
3673 || STRCMP(T_NAME, "screen.linux") == 0
3674 || STRCMP(T_NAME, "cygwin") == 0
3675 || STRCMP(T_NAME, "putty") == 0
3676 || ((p = mch_getenv((char_u *)"COLORFGBG")) != NULL
3677 && (p = vim_strrchr(p, ';')) != NULL
3678 && ((p[1] >= '0' && p[1] <= '6') || p[1] == '8')
3679 && p[2] == NUL))
3680 return (char_u *)"dark";
3681 return (char_u *)"light";
3682 #endif
3686 * Initialize the options, part three: After reading the .vimrc
3688 void
3689 set_init_3()
3691 #if defined(UNIX) || defined(OS2) || defined(WIN3264)
3693 * Set 'shellpipe' and 'shellredir', depending on the 'shell' option.
3694 * This is done after other initializations, where 'shell' might have been
3695 * set, but only if they have not been set before.
3697 char_u *p;
3698 int idx_srr;
3699 int do_srr;
3700 #ifdef FEAT_QUICKFIX
3701 int idx_sp;
3702 int do_sp;
3703 #endif
3705 idx_srr = findoption((char_u *)"srr");
3706 if (idx_srr < 0)
3707 do_srr = FALSE;
3708 else
3709 do_srr = !(options[idx_srr].flags & P_WAS_SET);
3710 #ifdef FEAT_QUICKFIX
3711 idx_sp = findoption((char_u *)"sp");
3712 if (idx_sp < 0)
3713 do_sp = FALSE;
3714 else
3715 do_sp = !(options[idx_sp].flags & P_WAS_SET);
3716 #endif
3719 * Isolate the name of the shell:
3720 * - Skip beyond any path. E.g., "/usr/bin/csh -f" -> "csh -f".
3721 * - Remove any argument. E.g., "csh -f" -> "csh".
3723 p = gettail(p_sh);
3724 p = vim_strnsave(p, (int)(skiptowhite(p) - p));
3725 if (p != NULL)
3728 * Default for p_sp is "| tee", for p_srr is ">".
3729 * For known shells it is changed here to include stderr.
3731 if ( fnamecmp(p, "csh") == 0
3732 || fnamecmp(p, "tcsh") == 0
3733 # if defined(OS2) || defined(WIN3264) /* also check with .exe extension */
3734 || fnamecmp(p, "csh.exe") == 0
3735 || fnamecmp(p, "tcsh.exe") == 0
3736 # endif
3739 #if defined(FEAT_QUICKFIX)
3740 if (do_sp)
3742 # ifdef WIN3264
3743 p_sp = (char_u *)">&";
3744 # else
3745 p_sp = (char_u *)"|& tee";
3746 # endif
3747 options[idx_sp].def_val[VI_DEFAULT] = p_sp;
3749 #endif
3750 if (do_srr)
3752 p_srr = (char_u *)">&";
3753 options[idx_srr].def_val[VI_DEFAULT] = p_srr;
3756 else
3757 # ifndef OS2 /* Always use bourne shell style redirection if we reach this */
3758 if ( fnamecmp(p, "sh") == 0
3759 || fnamecmp(p, "ksh") == 0
3760 || fnamecmp(p, "zsh") == 0
3761 || fnamecmp(p, "zsh-beta") == 0
3762 || fnamecmp(p, "bash") == 0
3763 # ifdef WIN3264
3764 || fnamecmp(p, "cmd") == 0
3765 || fnamecmp(p, "sh.exe") == 0
3766 || fnamecmp(p, "ksh.exe") == 0
3767 || fnamecmp(p, "zsh.exe") == 0
3768 || fnamecmp(p, "zsh-beta.exe") == 0
3769 || fnamecmp(p, "bash.exe") == 0
3770 || fnamecmp(p, "cmd.exe") == 0
3771 # endif
3773 # endif
3775 #if defined(FEAT_QUICKFIX)
3776 if (do_sp)
3778 # ifdef WIN3264
3779 p_sp = (char_u *)">%s 2>&1";
3780 # else
3781 p_sp = (char_u *)"2>&1| tee";
3782 # endif
3783 options[idx_sp].def_val[VI_DEFAULT] = p_sp;
3785 #endif
3786 if (do_srr)
3788 p_srr = (char_u *)">%s 2>&1";
3789 options[idx_srr].def_val[VI_DEFAULT] = p_srr;
3792 vim_free(p);
3794 #endif
3796 #if defined(MSDOS) || defined(WIN3264) || defined(OS2)
3798 * Set 'shellcmdflag and 'shellquote' depending on the 'shell' option.
3799 * This is done after other initializations, where 'shell' might have been
3800 * set, but only if they have not been set before. Default for p_shcf is
3801 * "/c", for p_shq is "". For "sh" like shells it is changed here to
3802 * "-c" and "\"", but not for DJGPP, because it starts the shell without
3803 * command.com. And for Win32 we need to set p_sxq instead.
3805 if (strstr((char *)gettail(p_sh), "sh") != NULL)
3807 int idx3;
3809 idx3 = findoption((char_u *)"shcf");
3810 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
3812 p_shcf = (char_u *)"-c";
3813 options[idx3].def_val[VI_DEFAULT] = p_shcf;
3816 # ifndef DJGPP
3817 # ifdef WIN3264
3818 /* Somehow Win32 requires the quotes around the redirection too */
3819 idx3 = findoption((char_u *)"sxq");
3820 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
3822 p_sxq = (char_u *)"\"";
3823 options[idx3].def_val[VI_DEFAULT] = p_sxq;
3825 # else
3826 idx3 = findoption((char_u *)"shq");
3827 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
3829 p_shq = (char_u *)"\"";
3830 options[idx3].def_val[VI_DEFAULT] = p_shq;
3832 # endif
3833 # endif
3835 #endif
3837 #ifdef FEAT_TITLE
3838 set_title_defaults();
3839 #endif
3842 #if defined(FEAT_MULTI_LANG) || defined(PROTO)
3844 * When 'helplang' is still at its default value, set it to "lang".
3845 * Only the first two characters of "lang" are used.
3847 void
3848 set_helplang_default(lang)
3849 char_u *lang;
3851 int idx;
3853 if (lang == NULL || STRLEN(lang) < 2) /* safety check */
3854 return;
3855 idx = findoption((char_u *)"hlg");
3856 if (idx >= 0 && !(options[idx].flags & P_WAS_SET))
3858 if (options[idx].flags & P_ALLOCED)
3859 free_string_option(p_hlg);
3860 p_hlg = vim_strsave(lang);
3861 if (p_hlg == NULL)
3862 p_hlg = empty_option;
3863 else
3865 /* zh_CN becomes "cn", zh_TW becomes "tw". */
3866 if (STRNICMP(p_hlg, "zh_", 3) == 0 && STRLEN(p_hlg) >= 5)
3868 p_hlg[0] = TOLOWER_ASC(p_hlg[3]);
3869 p_hlg[1] = TOLOWER_ASC(p_hlg[4]);
3871 p_hlg[2] = NUL;
3873 options[idx].flags |= P_ALLOCED;
3876 #endif
3878 #ifdef FEAT_GUI
3879 static char_u *gui_bg_default __ARGS((void));
3881 static char_u *
3882 gui_bg_default()
3884 if (gui_get_lightness(gui.back_pixel) < 127)
3885 return (char_u *)"dark";
3886 return (char_u *)"light";
3890 * Option initializations that can only be done after opening the GUI window.
3892 void
3893 init_gui_options()
3895 /* Set the 'background' option according to the lightness of the
3896 * background color, unless the user has set it already. */
3897 if (!option_was_set((char_u *)"bg") && STRCMP(p_bg, gui_bg_default()) != 0)
3899 set_option_value((char_u *)"bg", 0L, gui_bg_default(), 0);
3900 highlight_changed();
3903 #endif
3905 #ifdef FEAT_TITLE
3907 * 'title' and 'icon' only default to true if they have not been set or reset
3908 * in .vimrc and we can read the old value.
3909 * When 'title' and 'icon' have been reset in .vimrc, we won't even check if
3910 * they can be reset. This reduces startup time when using X on a remote
3911 * machine.
3913 void
3914 set_title_defaults()
3916 int idx1;
3917 long val;
3920 * If GUI is (going to be) used, we can always set the window title and
3921 * icon name. Saves a bit of time, because the X11 display server does
3922 * not need to be contacted.
3924 idx1 = findoption((char_u *)"title");
3925 if (idx1 >= 0 && !(options[idx1].flags & P_WAS_SET))
3927 #ifdef FEAT_GUI
3928 if (gui.starting || gui.in_use)
3929 val = TRUE;
3930 else
3931 #endif
3932 val = mch_can_restore_title();
3933 options[idx1].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
3934 p_title = val;
3936 idx1 = findoption((char_u *)"icon");
3937 if (idx1 >= 0 && !(options[idx1].flags & P_WAS_SET))
3939 #ifdef FEAT_GUI
3940 if (gui.starting || gui.in_use)
3941 val = TRUE;
3942 else
3943 #endif
3944 val = mch_can_restore_icon();
3945 options[idx1].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
3946 p_icon = val;
3949 #endif
3952 * Parse 'arg' for option settings.
3954 * 'arg' may be IObuff, but only when no errors can be present and option
3955 * does not need to be expanded with option_expand().
3956 * "opt_flags":
3957 * 0 for ":set"
3958 * OPT_GLOBAL for ":setglobal"
3959 * OPT_LOCAL for ":setlocal" and a modeline
3960 * OPT_MODELINE for a modeline
3961 * OPT_WINONLY to only set window-local options
3962 * OPT_NOWIN to skip setting window-local options
3964 * returns FAIL if an error is detected, OK otherwise
3967 do_set(arg, opt_flags)
3968 char_u *arg; /* option string (may be written to!) */
3969 int opt_flags;
3971 int opt_idx;
3972 char_u *errmsg;
3973 char_u errbuf[80];
3974 char_u *startarg;
3975 int prefix; /* 1: nothing, 0: "no", 2: "inv" in front of name */
3976 int nextchar; /* next non-white char after option name */
3977 int afterchar; /* character just after option name */
3978 int len;
3979 int i;
3980 long value;
3981 int key;
3982 long_u flags; /* flags for current option */
3983 char_u *varp = NULL; /* pointer to variable for current option */
3984 int did_show = FALSE; /* already showed one value */
3985 int adding; /* "opt+=arg" */
3986 int prepending; /* "opt^=arg" */
3987 int removing; /* "opt-=arg" */
3988 int cp_val = 0;
3989 char_u key_name[2];
3991 if (*arg == NUL)
3993 showoptions(0, opt_flags);
3994 did_show = TRUE;
3995 goto theend;
3998 while (*arg != NUL) /* loop to process all options */
4000 errmsg = NULL;
4001 startarg = arg; /* remember for error message */
4003 if (STRNCMP(arg, "all", 3) == 0 && !isalpha(arg[3])
4004 && !(opt_flags & OPT_MODELINE))
4007 * ":set all" show all options.
4008 * ":set all&" set all options to their default value.
4010 arg += 3;
4011 if (*arg == '&')
4013 ++arg;
4014 /* Only for :set command set global value of local options. */
4015 set_options_default(OPT_FREE | opt_flags);
4017 else
4019 showoptions(1, opt_flags);
4020 did_show = TRUE;
4023 else if (STRNCMP(arg, "termcap", 7) == 0 && !(opt_flags & OPT_MODELINE))
4025 showoptions(2, opt_flags);
4026 show_termcodes();
4027 did_show = TRUE;
4028 arg += 7;
4030 else
4032 prefix = 1;
4033 if (STRNCMP(arg, "no", 2) == 0)
4035 prefix = 0;
4036 arg += 2;
4038 else if (STRNCMP(arg, "inv", 3) == 0)
4040 prefix = 2;
4041 arg += 3;
4044 /* find end of name */
4045 key = 0;
4046 if (*arg == '<')
4048 nextchar = 0;
4049 opt_idx = -1;
4050 /* look out for <t_>;> */
4051 if (arg[1] == 't' && arg[2] == '_' && arg[3] && arg[4])
4052 len = 5;
4053 else
4055 len = 1;
4056 while (arg[len] != NUL && arg[len] != '>')
4057 ++len;
4059 if (arg[len] != '>')
4061 errmsg = e_invarg;
4062 goto skip;
4064 arg[len] = NUL; /* put NUL after name */
4065 if (arg[1] == 't' && arg[2] == '_') /* could be term code */
4066 opt_idx = findoption(arg + 1);
4067 arg[len++] = '>'; /* restore '>' */
4068 if (opt_idx == -1)
4069 key = find_key_option(arg + 1);
4071 else
4073 len = 0;
4075 * The two characters after "t_" may not be alphanumeric.
4077 if (arg[0] == 't' && arg[1] == '_' && arg[2] && arg[3])
4078 len = 4;
4079 else
4080 while (ASCII_ISALNUM(arg[len]) || arg[len] == '_')
4081 ++len;
4082 nextchar = arg[len];
4083 arg[len] = NUL; /* put NUL after name */
4084 opt_idx = findoption(arg);
4085 arg[len] = nextchar; /* restore nextchar */
4086 if (opt_idx == -1)
4087 key = find_key_option(arg);
4090 /* remember character after option name */
4091 afterchar = arg[len];
4093 /* skip white space, allow ":set ai ?" */
4094 while (vim_iswhite(arg[len]))
4095 ++len;
4097 adding = FALSE;
4098 prepending = FALSE;
4099 removing = FALSE;
4100 if (arg[len] != NUL && arg[len + 1] == '=')
4102 if (arg[len] == '+')
4104 adding = TRUE; /* "+=" */
4105 ++len;
4107 else if (arg[len] == '^')
4109 prepending = TRUE; /* "^=" */
4110 ++len;
4112 else if (arg[len] == '-')
4114 removing = TRUE; /* "-=" */
4115 ++len;
4118 nextchar = arg[len];
4120 if (opt_idx == -1 && key == 0) /* found a mismatch: skip */
4122 errmsg = (char_u *)N_("E518: Unknown option");
4123 goto skip;
4126 if (opt_idx >= 0)
4128 if (options[opt_idx].var == NULL) /* hidden option: skip */
4130 /* Only give an error message when requesting the value of
4131 * a hidden option, ignore setting it. */
4132 if (vim_strchr((char_u *)"=:!&<", nextchar) == NULL
4133 && (!(options[opt_idx].flags & P_BOOL)
4134 || nextchar == '?'))
4135 errmsg = (char_u *)N_("E519: Option not supported");
4136 goto skip;
4139 flags = options[opt_idx].flags;
4140 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
4142 else
4144 flags = P_STRING;
4145 if (key < 0)
4147 key_name[0] = KEY2TERMCAP0(key);
4148 key_name[1] = KEY2TERMCAP1(key);
4150 else
4152 key_name[0] = KS_KEY;
4153 key_name[1] = (key & 0xff);
4157 /* Skip all options that are not window-local (used when showing
4158 * an already loaded buffer in a window). */
4159 if ((opt_flags & OPT_WINONLY)
4160 && (opt_idx < 0 || options[opt_idx].var != VAR_WIN))
4161 goto skip;
4163 /* Skip all options that are window-local (used for :vimgrep). */
4164 if ((opt_flags & OPT_NOWIN) && opt_idx >= 0
4165 && options[opt_idx].var == VAR_WIN)
4166 goto skip;
4168 /* Disallow changing some options from modelines */
4169 if ((opt_flags & OPT_MODELINE) && (flags & P_SECURE))
4171 errmsg = (char_u *)_("E520: Not allowed in a modeline");
4172 goto skip;
4175 #ifdef HAVE_SANDBOX
4176 /* Disallow changing some options in the sandbox */
4177 if (sandbox != 0 && (flags & P_SECURE))
4179 errmsg = (char_u *)_(e_sandbox);
4180 goto skip;
4182 #endif
4184 if (vim_strchr((char_u *)"?=:!&<", nextchar) != NULL)
4186 arg += len;
4187 cp_val = p_cp;
4188 if (nextchar == '&' && arg[1] == 'v' && arg[2] == 'i')
4190 if (arg[3] == 'm') /* "opt&vim": set to Vim default */
4192 cp_val = FALSE;
4193 arg += 3;
4195 else /* "opt&vi": set to Vi default */
4197 cp_val = TRUE;
4198 arg += 2;
4201 if (vim_strchr((char_u *)"?!&<", nextchar) != NULL
4202 && arg[1] != NUL && !vim_iswhite(arg[1]))
4204 errmsg = e_trailing;
4205 goto skip;
4210 * allow '=' and ':' as MSDOS command.com allows only one
4211 * '=' character per "set" command line. grrr. (jw)
4213 if (nextchar == '?'
4214 || (prefix == 1
4215 && vim_strchr((char_u *)"=:&<", nextchar) == NULL
4216 && !(flags & P_BOOL)))
4219 * print value
4221 if (did_show)
4222 msg_putchar('\n'); /* cursor below last one */
4223 else
4225 gotocmdline(TRUE); /* cursor at status line */
4226 did_show = TRUE; /* remember that we did a line */
4228 if (opt_idx >= 0)
4230 showoneopt(&options[opt_idx], opt_flags);
4231 #ifdef FEAT_EVAL
4232 if (p_verbose > 0)
4234 /* Mention where the option was last set. */
4235 if (varp == options[opt_idx].var)
4236 last_set_msg(options[opt_idx].scriptID);
4237 else if ((int)options[opt_idx].indir & PV_WIN)
4238 last_set_msg(curwin->w_p_scriptID[
4239 (int)options[opt_idx].indir & PV_MASK]);
4240 else if ((int)options[opt_idx].indir & PV_BUF)
4241 last_set_msg(curbuf->b_p_scriptID[
4242 (int)options[opt_idx].indir & PV_MASK]);
4244 #endif
4246 else
4248 char_u *p;
4250 p = find_termcode(key_name);
4251 if (p == NULL)
4253 errmsg = (char_u *)N_("E518: Unknown option");
4254 goto skip;
4256 else
4257 (void)show_one_termcode(key_name, p, TRUE);
4259 if (nextchar != '?'
4260 && nextchar != NUL && !vim_iswhite(afterchar))
4261 errmsg = e_trailing;
4263 else
4265 if (flags & P_BOOL) /* boolean */
4267 if (nextchar == '=' || nextchar == ':')
4269 errmsg = e_invarg;
4270 goto skip;
4274 * ":set opt!": invert
4275 * ":set opt&": reset to default value
4276 * ":set opt<": reset to global value
4278 if (nextchar == '!')
4279 value = *(int *)(varp) ^ 1;
4280 else if (nextchar == '&')
4281 value = (int)(long)(long_i)options[opt_idx].def_val[
4282 ((flags & P_VI_DEF) || cp_val)
4283 ? VI_DEFAULT : VIM_DEFAULT];
4284 else if (nextchar == '<')
4286 /* For 'autoread' -1 means to use global value. */
4287 if ((int *)varp == &curbuf->b_p_ar
4288 && opt_flags == OPT_LOCAL)
4289 value = -1;
4290 else
4291 value = *(int *)get_varp_scope(&(options[opt_idx]),
4292 OPT_GLOBAL);
4294 else
4297 * ":set invopt": invert
4298 * ":set opt" or ":set noopt": set or reset
4300 if (nextchar != NUL && !vim_iswhite(afterchar))
4302 errmsg = e_trailing;
4303 goto skip;
4305 if (prefix == 2) /* inv */
4306 value = *(int *)(varp) ^ 1;
4307 else
4308 value = prefix;
4311 errmsg = set_bool_option(opt_idx, varp, (int)value,
4312 opt_flags);
4314 else /* numeric or string */
4316 if (vim_strchr((char_u *)"=:&<", nextchar) == NULL
4317 || prefix != 1)
4319 errmsg = e_invarg;
4320 goto skip;
4323 if (flags & P_NUM) /* numeric */
4326 * Different ways to set a number option:
4327 * & set to default value
4328 * < set to global value
4329 * <xx> accept special key codes for 'wildchar'
4330 * c accept any non-digit for 'wildchar'
4331 * [-]0-9 set number
4332 * other error
4334 ++arg;
4335 if (nextchar == '&')
4336 value = (long)(long_i)options[opt_idx].def_val[
4337 ((flags & P_VI_DEF) || cp_val)
4338 ? VI_DEFAULT : VIM_DEFAULT];
4339 else if (nextchar == '<')
4340 value = *(long *)get_varp_scope(&(options[opt_idx]),
4341 OPT_GLOBAL);
4342 else if (((long *)varp == &p_wc
4343 || (long *)varp == &p_wcm)
4344 && (*arg == '<'
4345 || *arg == '^'
4346 || ((!arg[1] || vim_iswhite(arg[1]))
4347 && !VIM_ISDIGIT(*arg))))
4349 value = string_to_key(arg);
4350 if (value == 0 && (long *)varp != &p_wcm)
4352 errmsg = e_invarg;
4353 goto skip;
4356 /* allow negative numbers (for 'undolevels') */
4357 else if (*arg == '-' || VIM_ISDIGIT(*arg))
4359 i = 0;
4360 if (*arg == '-')
4361 i = 1;
4362 #ifdef HAVE_STRTOL
4363 value = strtol((char *)arg, NULL, 0);
4364 if (arg[i] == '0' && TOLOWER_ASC(arg[i + 1]) == 'x')
4365 i += 2;
4366 #else
4367 value = atol((char *)arg);
4368 #endif
4369 while (VIM_ISDIGIT(arg[i]))
4370 ++i;
4371 if (arg[i] != NUL && !vim_iswhite(arg[i]))
4373 errmsg = e_invarg;
4374 goto skip;
4377 else
4379 errmsg = (char_u *)N_("E521: Number required after =");
4380 goto skip;
4383 if (adding)
4384 value = *(long *)varp + value;
4385 if (prepending)
4386 value = *(long *)varp * value;
4387 if (removing)
4388 value = *(long *)varp - value;
4389 errmsg = set_num_option(opt_idx, varp, value,
4390 errbuf, sizeof(errbuf), opt_flags);
4392 else if (opt_idx >= 0) /* string */
4394 char_u *save_arg = NULL;
4395 char_u *s = NULL;
4396 char_u *oldval; /* previous value if *varp */
4397 char_u *newval;
4398 char_u *origval;
4399 unsigned newlen;
4400 int comma;
4401 int bs;
4402 int new_value_alloced; /* new string option
4403 was allocated */
4405 /* When using ":set opt=val" for a global option
4406 * with a local value the local value will be
4407 * reset, use the global value here. */
4408 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
4409 && ((int)options[opt_idx].indir & PV_BOTH))
4410 varp = options[opt_idx].var;
4412 /* The old value is kept until we are sure that the
4413 * new value is valid. */
4414 oldval = *(char_u **)varp;
4415 if (nextchar == '&') /* set to default val */
4417 newval = options[opt_idx].def_val[
4418 ((flags & P_VI_DEF) || cp_val)
4419 ? VI_DEFAULT : VIM_DEFAULT];
4420 if ((char_u **)varp == &p_bg)
4422 /* guess the value of 'background' */
4423 #ifdef FEAT_GUI
4424 if (gui.in_use)
4425 newval = gui_bg_default();
4426 else
4427 #endif
4428 newval = term_bg_default();
4431 /* expand environment variables and ~ (since the
4432 * default value was already expanded, only
4433 * required when an environment variable was set
4434 * later */
4435 if (newval == NULL)
4436 newval = empty_option;
4437 else
4439 s = option_expand(opt_idx, newval);
4440 if (s == NULL)
4441 s = newval;
4442 newval = vim_strsave(s);
4444 new_value_alloced = TRUE;
4446 else if (nextchar == '<') /* set to global val */
4448 newval = vim_strsave(*(char_u **)get_varp_scope(
4449 &(options[opt_idx]), OPT_GLOBAL));
4450 new_value_alloced = TRUE;
4452 else
4454 ++arg; /* jump to after the '=' or ':' */
4457 * Set 'keywordprg' to ":help" if an empty
4458 * value was passed to :set by the user.
4459 * Misuse errbuf[] for the resulting string.
4461 if (varp == (char_u *)&p_kp
4462 && (*arg == NUL || *arg == ' '))
4464 STRCPY(errbuf, ":help");
4465 save_arg = arg;
4466 arg = errbuf;
4469 * Convert 'whichwrap' number to string, for
4470 * backwards compatibility with Vim 3.0.
4471 * Misuse errbuf[] for the resulting string.
4473 else if (varp == (char_u *)&p_ww
4474 && VIM_ISDIGIT(*arg))
4476 *errbuf = NUL;
4477 i = getdigits(&arg);
4478 if (i & 1)
4479 STRCAT(errbuf, "b,");
4480 if (i & 2)
4481 STRCAT(errbuf, "s,");
4482 if (i & 4)
4483 STRCAT(errbuf, "h,l,");
4484 if (i & 8)
4485 STRCAT(errbuf, "<,>,");
4486 if (i & 16)
4487 STRCAT(errbuf, "[,],");
4488 if (*errbuf != NUL) /* remove trailing , */
4489 errbuf[STRLEN(errbuf) - 1] = NUL;
4490 save_arg = arg;
4491 arg = errbuf;
4494 * Remove '>' before 'dir' and 'bdir', for
4495 * backwards compatibility with version 3.0
4497 else if ( *arg == '>'
4498 && (varp == (char_u *)&p_dir
4499 || varp == (char_u *)&p_bdir))
4501 ++arg;
4504 /* When setting the local value of a global
4505 * option, the old value may be the global value. */
4506 if (((int)options[opt_idx].indir & PV_BOTH)
4507 && (opt_flags & OPT_LOCAL))
4508 origval = *(char_u **)get_varp(
4509 &options[opt_idx]);
4510 else
4511 origval = oldval;
4514 * Copy the new string into allocated memory.
4515 * Can't use set_string_option_direct(), because
4516 * we need to remove the backslashes.
4518 /* get a bit too much */
4519 newlen = (unsigned)STRLEN(arg) + 1;
4520 if (adding || prepending || removing)
4521 newlen += (unsigned)STRLEN(origval) + 1;
4522 newval = alloc(newlen);
4523 if (newval == NULL) /* out of mem, don't change */
4524 break;
4525 s = newval;
4528 * Copy the string, skip over escaped chars.
4529 * For MS-DOS and WIN32 backslashes before normal
4530 * file name characters are not removed, and keep
4531 * backslash at start, for "\\machine\path", but
4532 * do remove it for "\\\\machine\\path".
4533 * The reverse is found in ExpandOldSetting().
4535 while (*arg && !vim_iswhite(*arg))
4537 if (*arg == '\\' && arg[1] != NUL
4538 #ifdef BACKSLASH_IN_FILENAME
4539 && !((flags & P_EXPAND)
4540 && vim_isfilec(arg[1])
4541 && (arg[1] != '\\'
4542 || (s == newval
4543 && arg[2] != '\\')))
4544 #endif
4546 ++arg; /* remove backslash */
4547 #ifdef FEAT_MBYTE
4548 if (has_mbyte
4549 && (i = (*mb_ptr2len)(arg)) > 1)
4551 /* copy multibyte char */
4552 mch_memmove(s, arg, (size_t)i);
4553 arg += i;
4554 s += i;
4556 else
4557 #endif
4558 *s++ = *arg++;
4560 *s = NUL;
4563 * Expand environment variables and ~.
4564 * Don't do it when adding without inserting a
4565 * comma.
4567 if (!(adding || prepending || removing)
4568 || (flags & P_COMMA))
4570 s = option_expand(opt_idx, newval);
4571 if (s != NULL)
4573 vim_free(newval);
4574 newlen = (unsigned)STRLEN(s) + 1;
4575 if (adding || prepending || removing)
4576 newlen += (unsigned)STRLEN(origval) + 1;
4577 newval = alloc(newlen);
4578 if (newval == NULL)
4579 break;
4580 STRCPY(newval, s);
4584 /* locate newval[] in origval[] when removing it
4585 * and when adding to avoid duplicates */
4586 i = 0; /* init for GCC */
4587 if (removing || (flags & P_NODUP))
4589 i = (int)STRLEN(newval);
4590 bs = 0;
4591 for (s = origval; *s; ++s)
4593 if ((!(flags & P_COMMA)
4594 || s == origval
4595 || (s[-1] == ',' && !(bs & 1)))
4596 && STRNCMP(s, newval, i) == 0
4597 && (!(flags & P_COMMA)
4598 || s[i] == ','
4599 || s[i] == NUL))
4600 break;
4601 /* Count backspaces. Only a comma with an
4602 * even number of backspaces before it is
4603 * recognized as a separator */
4604 if (s > origval && s[-1] == '\\')
4605 ++bs;
4606 else
4607 bs = 0;
4610 /* do not add if already there */
4611 if ((adding || prepending) && *s)
4613 prepending = FALSE;
4614 adding = FALSE;
4615 STRCPY(newval, origval);
4619 /* concatenate the two strings; add a ',' if
4620 * needed */
4621 if (adding || prepending)
4623 comma = ((flags & P_COMMA) && *origval != NUL
4624 && *newval != NUL);
4625 if (adding)
4627 i = (int)STRLEN(origval);
4628 mch_memmove(newval + i + comma, newval,
4629 STRLEN(newval) + 1);
4630 mch_memmove(newval, origval, (size_t)i);
4632 else
4634 i = (int)STRLEN(newval);
4635 STRMOVE(newval + i + comma, origval);
4637 if (comma)
4638 newval[i] = ',';
4641 /* Remove newval[] from origval[]. (Note: "i" has
4642 * been set above and is used here). */
4643 if (removing)
4645 STRCPY(newval, origval);
4646 if (*s)
4648 /* may need to remove a comma */
4649 if (flags & P_COMMA)
4651 if (s == origval)
4653 /* include comma after string */
4654 if (s[i] == ',')
4655 ++i;
4657 else
4659 /* include comma before string */
4660 --s;
4661 ++i;
4664 STRMOVE(newval + (s - origval), s + i);
4668 if (flags & P_FLAGLIST)
4670 /* Remove flags that appear twice. */
4671 for (s = newval; *s; ++s)
4672 if ((!(flags & P_COMMA) || *s != ',')
4673 && vim_strchr(s + 1, *s) != NULL)
4675 STRMOVE(s, s + 1);
4676 --s;
4680 if (save_arg != NULL) /* number for 'whichwrap' */
4681 arg = save_arg;
4682 new_value_alloced = TRUE;
4685 /* Set the new value. */
4686 *(char_u **)(varp) = newval;
4688 /* Handle side effects, and set the global value for
4689 * ":set" on local options. */
4690 errmsg = did_set_string_option(opt_idx, (char_u **)varp,
4691 new_value_alloced, oldval, errbuf, opt_flags);
4693 /* If error detected, print the error message. */
4694 if (errmsg != NULL)
4695 goto skip;
4697 else /* key code option */
4699 char_u *p;
4701 if (nextchar == '&')
4703 if (add_termcap_entry(key_name, TRUE) == FAIL)
4704 errmsg = (char_u *)N_("E522: Not found in termcap");
4706 else
4708 ++arg; /* jump to after the '=' or ':' */
4709 for (p = arg; *p && !vim_iswhite(*p); ++p)
4710 if (*p == '\\' && p[1] != NUL)
4711 ++p;
4712 nextchar = *p;
4713 *p = NUL;
4714 add_termcode(key_name, arg, FALSE);
4715 *p = nextchar;
4717 if (full_screen)
4718 ttest(FALSE);
4719 redraw_all_later(CLEAR);
4723 if (opt_idx >= 0)
4724 did_set_option(opt_idx, opt_flags,
4725 !prepending && !adding && !removing);
4728 skip:
4730 * Advance to next argument.
4731 * - skip until a blank found, taking care of backslashes
4732 * - skip blanks
4733 * - skip one "=val" argument (for hidden options ":set gfn =xx")
4735 for (i = 0; i < 2 ; ++i)
4737 while (*arg != NUL && !vim_iswhite(*arg))
4738 if (*arg++ == '\\' && *arg != NUL)
4739 ++arg;
4740 arg = skipwhite(arg);
4741 if (*arg != '=')
4742 break;
4746 if (errmsg != NULL)
4748 vim_strncpy(IObuff, (char_u *)_(errmsg), IOSIZE - 1);
4749 i = (int)STRLEN(IObuff) + 2;
4750 if (i + (arg - startarg) < IOSIZE)
4752 /* append the argument with the error */
4753 STRCAT(IObuff, ": ");
4754 mch_memmove(IObuff + i, startarg, (arg - startarg));
4755 IObuff[i + (arg - startarg)] = NUL;
4757 /* make sure all characters are printable */
4758 trans_characters(IObuff, IOSIZE);
4760 ++no_wait_return; /* wait_return done later */
4761 emsg(IObuff); /* show error highlighted */
4762 --no_wait_return;
4764 return FAIL;
4767 arg = skipwhite(arg);
4770 theend:
4771 if (silent_mode && did_show)
4773 /* After displaying option values in silent mode. */
4774 silent_mode = FALSE;
4775 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
4776 msg_putchar('\n');
4777 cursor_on(); /* msg_start() switches it off */
4778 out_flush();
4779 silent_mode = TRUE;
4780 info_message = FALSE; /* use mch_msg(), not mch_errmsg() */
4783 return OK;
4787 * Call this when an option has been given a new value through a user command.
4788 * Sets the P_WAS_SET flag and takes care of the P_INSECURE flag.
4790 static void
4791 did_set_option(opt_idx, opt_flags, new_value)
4792 int opt_idx;
4793 int opt_flags; /* possibly with OPT_MODELINE */
4794 int new_value; /* value was replaced completely */
4796 long_u *p;
4798 options[opt_idx].flags |= P_WAS_SET;
4800 /* When an option is set in the sandbox, from a modeline or in secure mode
4801 * set the P_INSECURE flag. Otherwise, if a new value is stored reset the
4802 * flag. */
4803 p = insecure_flag(opt_idx, opt_flags);
4804 if (secure
4805 #ifdef HAVE_SANDBOX
4806 || sandbox != 0
4807 #endif
4808 || (opt_flags & OPT_MODELINE))
4809 *p = *p | P_INSECURE;
4810 else if (new_value)
4811 *p = *p & ~P_INSECURE;
4814 static char_u *
4815 illegal_char(errbuf, c)
4816 char_u *errbuf;
4817 int c;
4819 if (errbuf == NULL)
4820 return (char_u *)"";
4821 sprintf((char *)errbuf, _("E539: Illegal character <%s>"),
4822 (char *)transchar(c));
4823 return errbuf;
4827 * Convert a key name or string into a key value.
4828 * Used for 'wildchar' and 'cedit' options.
4830 static int
4831 string_to_key(arg)
4832 char_u *arg;
4834 if (*arg == '<')
4835 return find_key_option(arg + 1);
4836 if (*arg == '^')
4837 return Ctrl_chr(arg[1]);
4838 return *arg;
4841 #ifdef FEAT_CMDWIN
4843 * Check value of 'cedit' and set cedit_key.
4844 * Returns NULL if value is OK, error message otherwise.
4846 static char_u *
4847 check_cedit()
4849 int n;
4851 if (*p_cedit == NUL)
4852 cedit_key = -1;
4853 else
4855 n = string_to_key(p_cedit);
4856 if (vim_isprintc(n))
4857 return e_invarg;
4858 cedit_key = n;
4860 return NULL;
4862 #endif
4864 #ifdef FEAT_TITLE
4866 * When changing 'title', 'titlestring', 'icon' or 'iconstring', call
4867 * maketitle() to create and display it.
4868 * When switching the title or icon off, call mch_restore_title() to get
4869 * the old value back.
4871 static void
4872 did_set_title(icon)
4873 int icon; /* Did set icon instead of title */
4875 if (starting != NO_SCREEN
4876 #ifdef FEAT_GUI
4877 && !gui.starting
4878 #endif
4881 maketitle();
4882 if (icon)
4884 if (!p_icon)
4885 mch_restore_title(2);
4887 else
4889 if (!p_title)
4890 mch_restore_title(1);
4894 #endif
4897 * set_options_bin - called when 'bin' changes value.
4899 void
4900 set_options_bin(oldval, newval, opt_flags)
4901 int oldval;
4902 int newval;
4903 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
4906 * The option values that are changed when 'bin' changes are
4907 * copied when 'bin is set and restored when 'bin' is reset.
4909 if (newval)
4911 if (!oldval) /* switched on */
4913 if (!(opt_flags & OPT_GLOBAL))
4915 curbuf->b_p_tw_nobin = curbuf->b_p_tw;
4916 curbuf->b_p_wm_nobin = curbuf->b_p_wm;
4917 curbuf->b_p_ml_nobin = curbuf->b_p_ml;
4918 curbuf->b_p_et_nobin = curbuf->b_p_et;
4920 if (!(opt_flags & OPT_LOCAL))
4922 p_tw_nobin = p_tw;
4923 p_wm_nobin = p_wm;
4924 p_ml_nobin = p_ml;
4925 p_et_nobin = p_et;
4929 if (!(opt_flags & OPT_GLOBAL))
4931 curbuf->b_p_tw = 0; /* no automatic line wrap */
4932 curbuf->b_p_wm = 0; /* no automatic line wrap */
4933 curbuf->b_p_ml = 0; /* no modelines */
4934 curbuf->b_p_et = 0; /* no expandtab */
4936 if (!(opt_flags & OPT_LOCAL))
4938 p_tw = 0;
4939 p_wm = 0;
4940 p_ml = FALSE;
4941 p_et = FALSE;
4942 p_bin = TRUE; /* needed when called for the "-b" argument */
4945 else if (oldval) /* switched off */
4947 if (!(opt_flags & OPT_GLOBAL))
4949 curbuf->b_p_tw = curbuf->b_p_tw_nobin;
4950 curbuf->b_p_wm = curbuf->b_p_wm_nobin;
4951 curbuf->b_p_ml = curbuf->b_p_ml_nobin;
4952 curbuf->b_p_et = curbuf->b_p_et_nobin;
4954 if (!(opt_flags & OPT_LOCAL))
4956 p_tw = p_tw_nobin;
4957 p_wm = p_wm_nobin;
4958 p_ml = p_ml_nobin;
4959 p_et = p_et_nobin;
4964 #ifdef FEAT_VIMINFO
4966 * Find the parameter represented by the given character (eg ', :, ", or /),
4967 * and return its associated value in the 'viminfo' string.
4968 * Only works for number parameters, not for 'r' or 'n'.
4969 * If the parameter is not specified in the string or there is no following
4970 * number, return -1.
4973 get_viminfo_parameter(type)
4974 int type;
4976 char_u *p;
4978 p = find_viminfo_parameter(type);
4979 if (p != NULL && VIM_ISDIGIT(*p))
4980 return atoi((char *)p);
4981 return -1;
4985 * Find the parameter represented by the given character (eg ''', ':', '"', or
4986 * '/') in the 'viminfo' option and return a pointer to the string after it.
4987 * Return NULL if the parameter is not specified in the string.
4989 char_u *
4990 find_viminfo_parameter(type)
4991 int type;
4993 char_u *p;
4995 for (p = p_viminfo; *p; ++p)
4997 if (*p == type)
4998 return p + 1;
4999 if (*p == 'n') /* 'n' is always the last one */
5000 break;
5001 p = vim_strchr(p, ','); /* skip until next ',' */
5002 if (p == NULL) /* hit the end without finding parameter */
5003 break;
5005 return NULL;
5007 #endif
5010 * Expand environment variables for some string options.
5011 * These string options cannot be indirect!
5012 * If "val" is NULL expand the current value of the option.
5013 * Return pointer to NameBuff, or NULL when not expanded.
5015 static char_u *
5016 option_expand(opt_idx, val)
5017 int opt_idx;
5018 char_u *val;
5020 /* if option doesn't need expansion nothing to do */
5021 if (!(options[opt_idx].flags & P_EXPAND) || options[opt_idx].var == NULL)
5022 return NULL;
5024 /* If val is longer than MAXPATHL no meaningful expansion can be done,
5025 * expand_env() would truncate the string. */
5026 if (val != NULL && STRLEN(val) > MAXPATHL)
5027 return NULL;
5029 if (val == NULL)
5030 val = *(char_u **)options[opt_idx].var;
5033 * Expanding this with NameBuff, expand_env() must not be passed IObuff.
5034 * Escape spaces when expanding 'tags', they are used to separate file
5035 * names.
5036 * For 'spellsuggest' expand after "file:".
5038 expand_env_esc(val, NameBuff, MAXPATHL,
5039 (char_u **)options[opt_idx].var == &p_tags, FALSE,
5040 #ifdef FEAT_SPELL
5041 (char_u **)options[opt_idx].var == &p_sps ? (char_u *)"file:" :
5042 #endif
5043 NULL);
5044 if (STRCMP(NameBuff, val) == 0) /* they are the same */
5045 return NULL;
5047 return NameBuff;
5051 * After setting various option values: recompute variables that depend on
5052 * option values.
5054 static void
5055 didset_options()
5057 /* initialize the table for 'iskeyword' et.al. */
5058 (void)init_chartab();
5060 #ifdef FEAT_MBYTE
5061 (void)opt_strings_flags(p_cmp, p_cmp_values, &cmp_flags, TRUE);
5062 #endif
5063 (void)opt_strings_flags(p_bkc, p_bkc_values, &bkc_flags, TRUE);
5064 #ifdef FEAT_SESSION
5065 (void)opt_strings_flags(p_ssop, p_ssop_values, &ssop_flags, TRUE);
5066 (void)opt_strings_flags(p_vop, p_ssop_values, &vop_flags, TRUE);
5067 #endif
5068 #ifdef FEAT_FOLDING
5069 (void)opt_strings_flags(p_fdo, p_fdo_values, &fdo_flags, TRUE);
5070 #endif
5071 #ifdef FEAT_FULLSCREEN
5072 (void)check_fuoptions(p_fuoptions, &fuoptions_flags,
5073 &fuoptions_bgcolor);
5074 #endif
5075 (void)opt_strings_flags(p_dy, p_dy_values, &dy_flags, TRUE);
5076 #ifdef FEAT_VIRTUALEDIT
5077 (void)opt_strings_flags(p_ve, p_ve_values, &ve_flags, TRUE);
5078 #endif
5079 #if defined(FEAT_MOUSE) && (defined(UNIX) || defined(VMS))
5080 (void)opt_strings_flags(p_ttym, p_ttym_values, &ttym_flags, FALSE);
5081 #endif
5082 #ifdef FEAT_SPELL
5083 (void)spell_check_msm();
5084 (void)spell_check_sps();
5085 (void)compile_cap_prog(curbuf);
5086 #endif
5087 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
5088 (void)opt_strings_flags(p_toolbar, p_toolbar_values, &toolbar_flags, TRUE);
5089 #endif
5090 #if defined(FEAT_TOOLBAR) && ((defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)) \
5091 || defined(FEAT_GUI_MACVIM))
5092 (void)opt_strings_flags(p_tbis, p_tbis_values, &tbis_flags, FALSE);
5093 #endif
5094 #ifdef FEAT_CMDWIN
5095 /* set cedit_key */
5096 (void)check_cedit();
5097 #endif
5101 * Check for string options that are NULL (normally only termcap options).
5103 void
5104 check_options()
5106 int opt_idx;
5108 for (opt_idx = 0; options[opt_idx].fullname != NULL; opt_idx++)
5109 if ((options[opt_idx].flags & P_STRING) && options[opt_idx].var != NULL)
5110 check_string_option((char_u **)get_varp(&(options[opt_idx])));
5114 * Check string options in a buffer for NULL value.
5116 void
5117 check_buf_options(buf)
5118 buf_T *buf;
5120 #if defined(FEAT_QUICKFIX)
5121 check_string_option(&buf->b_p_bh);
5122 check_string_option(&buf->b_p_bt);
5123 #endif
5124 #ifdef FEAT_MBYTE
5125 check_string_option(&buf->b_p_fenc);
5126 #endif
5127 check_string_option(&buf->b_p_ff);
5128 #ifdef FEAT_FIND_ID
5129 check_string_option(&buf->b_p_def);
5130 check_string_option(&buf->b_p_inc);
5131 # ifdef FEAT_EVAL
5132 check_string_option(&buf->b_p_inex);
5133 # endif
5134 #endif
5135 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
5136 check_string_option(&buf->b_p_inde);
5137 check_string_option(&buf->b_p_indk);
5138 #endif
5139 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
5140 check_string_option(&buf->b_p_bexpr);
5141 #endif
5142 #if defined(FEAT_EVAL)
5143 check_string_option(&buf->b_p_fex);
5144 #endif
5145 #ifdef FEAT_CRYPT
5146 check_string_option(&buf->b_p_key);
5147 #endif
5148 check_string_option(&buf->b_p_kp);
5149 check_string_option(&buf->b_p_mps);
5150 check_string_option(&buf->b_p_fo);
5151 check_string_option(&buf->b_p_flp);
5152 check_string_option(&buf->b_p_isk);
5153 #ifdef FEAT_COMMENTS
5154 check_string_option(&buf->b_p_com);
5155 #endif
5156 #ifdef FEAT_FOLDING
5157 check_string_option(&buf->b_p_cms);
5158 #endif
5159 check_string_option(&buf->b_p_nf);
5160 #ifdef FEAT_TEXTOBJ
5161 check_string_option(&buf->b_p_qe);
5162 #endif
5163 #ifdef FEAT_SYN_HL
5164 check_string_option(&buf->b_p_syn);
5165 #endif
5166 #ifdef FEAT_SPELL
5167 check_string_option(&buf->b_p_spc);
5168 check_string_option(&buf->b_p_spf);
5169 check_string_option(&buf->b_p_spl);
5170 #endif
5171 #ifdef FEAT_SEARCHPATH
5172 check_string_option(&buf->b_p_sua);
5173 #endif
5174 #ifdef FEAT_CINDENT
5175 check_string_option(&buf->b_p_cink);
5176 check_string_option(&buf->b_p_cino);
5177 #endif
5178 #ifdef FEAT_AUTOCMD
5179 check_string_option(&buf->b_p_ft);
5180 #endif
5181 #ifdef FEAT_OSFILETYPE
5182 check_string_option(&buf->b_p_oft);
5183 #endif
5184 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
5185 check_string_option(&buf->b_p_cinw);
5186 #endif
5187 #ifdef FEAT_INS_EXPAND
5188 check_string_option(&buf->b_p_cpt);
5189 #endif
5190 #ifdef FEAT_COMPL_FUNC
5191 check_string_option(&buf->b_p_cfu);
5192 check_string_option(&buf->b_p_ofu);
5193 #endif
5194 #ifdef FEAT_KEYMAP
5195 check_string_option(&buf->b_p_keymap);
5196 #endif
5197 #ifdef FEAT_QUICKFIX
5198 check_string_option(&buf->b_p_gp);
5199 check_string_option(&buf->b_p_mp);
5200 check_string_option(&buf->b_p_efm);
5201 #endif
5202 check_string_option(&buf->b_p_ep);
5203 check_string_option(&buf->b_p_path);
5204 check_string_option(&buf->b_p_tags);
5205 #ifdef FEAT_INS_EXPAND
5206 check_string_option(&buf->b_p_dict);
5207 check_string_option(&buf->b_p_tsr);
5208 #endif
5212 * Free the string allocated for an option.
5213 * Checks for the string being empty_option. This may happen if we're out of
5214 * memory, vim_strsave() returned NULL, which was replaced by empty_option by
5215 * check_options().
5216 * Does NOT check for P_ALLOCED flag!
5218 void
5219 free_string_option(p)
5220 char_u *p;
5222 if (p != empty_option)
5223 vim_free(p);
5226 void
5227 clear_string_option(pp)
5228 char_u **pp;
5230 if (*pp != empty_option)
5231 vim_free(*pp);
5232 *pp = empty_option;
5235 static void
5236 check_string_option(pp)
5237 char_u **pp;
5239 if (*pp == NULL)
5240 *pp = empty_option;
5244 * Mark a terminal option as allocated, found by a pointer into term_strings[].
5246 void
5247 set_term_option_alloced(p)
5248 char_u **p;
5250 int opt_idx;
5252 for (opt_idx = 1; options[opt_idx].fullname != NULL; opt_idx++)
5253 if (options[opt_idx].var == (char_u *)p)
5255 options[opt_idx].flags |= P_ALLOCED;
5256 return;
5258 return; /* cannot happen: didn't find it! */
5261 #if defined(FEAT_EVAL) || defined(PROTO)
5263 * Return TRUE when option "opt" was set from a modeline or in secure mode.
5264 * Return FALSE when it wasn't.
5265 * Return -1 for an unknown option.
5268 was_set_insecurely(opt, opt_flags)
5269 char_u *opt;
5270 int opt_flags;
5272 int idx = findoption(opt);
5273 long_u *flagp;
5275 if (idx >= 0)
5277 flagp = insecure_flag(idx, opt_flags);
5278 return (*flagp & P_INSECURE) != 0;
5280 EMSG2(_(e_intern2), "was_set_insecurely()");
5281 return -1;
5285 * Get a pointer to the flags used for the P_INSECURE flag of option
5286 * "opt_idx". For some local options a local flags field is used.
5288 static long_u *
5289 insecure_flag(opt_idx, opt_flags)
5290 int opt_idx;
5291 int opt_flags;
5293 if (opt_flags & OPT_LOCAL)
5294 switch ((int)options[opt_idx].indir)
5296 #ifdef FEAT_STL_OPT
5297 case PV_STL: return &curwin->w_p_stl_flags;
5298 #endif
5299 #ifdef FEAT_EVAL
5300 # ifdef FEAT_FOLDING
5301 case PV_FDE: return &curwin->w_p_fde_flags;
5302 case PV_FDT: return &curwin->w_p_fdt_flags;
5303 # endif
5304 # ifdef FEAT_BEVAL
5305 case PV_BEXPR: return &curbuf->b_p_bexpr_flags;
5306 # endif
5307 # if defined(FEAT_CINDENT)
5308 case PV_INDE: return &curbuf->b_p_inde_flags;
5309 # endif
5310 case PV_FEX: return &curbuf->b_p_fex_flags;
5311 # ifdef FEAT_FIND_ID
5312 case PV_INEX: return &curbuf->b_p_inex_flags;
5313 # endif
5314 #endif
5317 /* Nothing special, return global flags field. */
5318 return &options[opt_idx].flags;
5320 #endif
5323 * Set a string option to a new value (without checking the effect).
5324 * The string is copied into allocated memory.
5325 * if ("opt_idx" == -1) "name" is used, otherwise "opt_idx" is used.
5326 * When "set_sid" is zero set the scriptID to current_SID. When "set_sid" is
5327 * SID_NONE don't set the scriptID. Otherwise set the scriptID to "set_sid".
5329 /*ARGSUSED*/
5330 void
5331 set_string_option_direct(name, opt_idx, val, opt_flags, set_sid)
5332 char_u *name;
5333 int opt_idx;
5334 char_u *val;
5335 int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */
5336 int set_sid;
5338 char_u *s;
5339 char_u **varp;
5340 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
5341 int idx = opt_idx;
5343 if (idx == -1) /* use name */
5345 idx = findoption(name);
5346 if (idx < 0) /* not found (should not happen) */
5348 EMSG2(_(e_intern2), "set_string_option_direct()");
5349 return;
5353 if (options[idx].var == NULL) /* can't set hidden option */
5354 return;
5356 s = vim_strsave(val);
5357 if (s != NULL)
5359 varp = (char_u **)get_varp_scope(&(options[idx]),
5360 both ? OPT_LOCAL : opt_flags);
5361 if ((opt_flags & OPT_FREE) && (options[idx].flags & P_ALLOCED))
5362 free_string_option(*varp);
5363 *varp = s;
5365 /* For buffer/window local option may also set the global value. */
5366 if (both)
5367 set_string_option_global(idx, varp);
5369 options[idx].flags |= P_ALLOCED;
5371 /* When setting both values of a global option with a local value,
5372 * make the local value empty, so that the global value is used. */
5373 if (((int)options[idx].indir & PV_BOTH) && both)
5375 free_string_option(*varp);
5376 *varp = empty_option;
5378 # ifdef FEAT_EVAL
5379 if (set_sid != SID_NONE)
5380 set_option_scriptID_idx(idx, opt_flags,
5381 set_sid == 0 ? current_SID : set_sid);
5382 # endif
5387 * Set global value for string option when it's a local option.
5389 static void
5390 set_string_option_global(opt_idx, varp)
5391 int opt_idx; /* option index */
5392 char_u **varp; /* pointer to option variable */
5394 char_u **p, *s;
5396 /* the global value is always allocated */
5397 if (options[opt_idx].var == VAR_WIN)
5398 p = (char_u **)GLOBAL_WO(varp);
5399 else
5400 p = (char_u **)options[opt_idx].var;
5401 if (options[opt_idx].indir != PV_NONE
5402 && p != varp
5403 && (s = vim_strsave(*varp)) != NULL)
5405 free_string_option(*p);
5406 *p = s;
5411 * Set a string option to a new value, and handle the effects.
5413 static void
5414 set_string_option(opt_idx, value, opt_flags)
5415 int opt_idx;
5416 char_u *value;
5417 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
5419 char_u *s;
5420 char_u **varp;
5421 char_u *oldval;
5423 if (options[opt_idx].var == NULL) /* don't set hidden option */
5424 return;
5426 s = vim_strsave(value);
5427 if (s != NULL)
5429 varp = (char_u **)get_varp_scope(&(options[opt_idx]),
5430 (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
5431 ? (((int)options[opt_idx].indir & PV_BOTH)
5432 ? OPT_GLOBAL : OPT_LOCAL)
5433 : opt_flags);
5434 oldval = *varp;
5435 *varp = s;
5436 if (did_set_string_option(opt_idx, varp, TRUE, oldval, NULL,
5437 opt_flags) == NULL)
5438 did_set_option(opt_idx, opt_flags, TRUE);
5443 * Handle string options that need some action to perform when changed.
5444 * Returns NULL for success, or an error message for an error.
5446 static char_u *
5447 did_set_string_option(opt_idx, varp, new_value_alloced, oldval, errbuf,
5448 opt_flags)
5449 int opt_idx; /* index in options[] table */
5450 char_u **varp; /* pointer to the option variable */
5451 int new_value_alloced; /* new value was allocated */
5452 char_u *oldval; /* previous value of the option */
5453 char_u *errbuf; /* buffer for errors, or NULL */
5454 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
5456 char_u *errmsg = NULL;
5457 char_u *s, *p;
5458 int did_chartab = FALSE;
5459 char_u **gvarp;
5460 long_u free_oldval = (options[opt_idx].flags & P_ALLOCED);
5462 /* Get the global option to compare with, otherwise we would have to check
5463 * two values for all local options. */
5464 gvarp = (char_u **)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL);
5466 /* Disallow changing some options from secure mode */
5467 if ((secure
5468 #ifdef HAVE_SANDBOX
5469 || sandbox != 0
5470 #endif
5471 ) && (options[opt_idx].flags & P_SECURE))
5473 errmsg = e_secure;
5476 /* Check for a "normal" file name in some options. Disallow a path
5477 * separator (slash and/or backslash), wildcards and characters that are
5478 * often illegal in a file name. */
5479 else if ((options[opt_idx].flags & P_NFNAME)
5480 && vim_strpbrk(*varp, (char_u *)"/\\*?[|<>") != NULL)
5482 errmsg = e_invarg;
5485 /* 'term' */
5486 else if (varp == &T_NAME)
5488 if (T_NAME[0] == NUL)
5489 errmsg = (char_u *)N_("E529: Cannot set 'term' to empty string");
5490 #ifdef FEAT_GUI
5491 if (gui.in_use)
5492 errmsg = (char_u *)N_("E530: Cannot change term in GUI");
5493 else if (term_is_gui(T_NAME))
5494 errmsg = (char_u *)N_("E531: Use \":gui\" to start the GUI");
5495 #endif
5496 else if (set_termname(T_NAME) == FAIL)
5497 errmsg = (char_u *)N_("E522: Not found in termcap");
5498 else
5499 /* Screen colors may have changed. */
5500 redraw_later_clear();
5503 /* 'backupcopy' */
5504 else if (varp == &p_bkc)
5506 if (opt_strings_flags(p_bkc, p_bkc_values, &bkc_flags, TRUE) != OK)
5507 errmsg = e_invarg;
5508 if (((bkc_flags & BKC_AUTO) != 0)
5509 + ((bkc_flags & BKC_YES) != 0)
5510 + ((bkc_flags & BKC_NO) != 0) != 1)
5512 /* Must have exactly one of "auto", "yes" and "no". */
5513 (void)opt_strings_flags(oldval, p_bkc_values, &bkc_flags, TRUE);
5514 errmsg = e_invarg;
5518 /* 'backupext' and 'patchmode' */
5519 else if (varp == &p_bex || varp == &p_pm)
5521 if (STRCMP(*p_bex == '.' ? p_bex + 1 : p_bex,
5522 *p_pm == '.' ? p_pm + 1 : p_pm) == 0)
5523 errmsg = (char_u *)N_("E589: 'backupext' and 'patchmode' are equal");
5527 * 'isident', 'iskeyword', 'isprint or 'isfname' option: refill chartab[]
5528 * If the new option is invalid, use old value. 'lisp' option: refill
5529 * chartab[] for '-' char
5531 else if ( varp == &p_isi
5532 || varp == &(curbuf->b_p_isk)
5533 || varp == &p_isp
5534 || varp == &p_isf)
5536 if (init_chartab() == FAIL)
5538 did_chartab = TRUE; /* need to restore it below */
5539 errmsg = e_invarg; /* error in value */
5543 /* 'helpfile' */
5544 else if (varp == &p_hf)
5546 /* May compute new values for $VIM and $VIMRUNTIME */
5547 if (didset_vim)
5549 vim_setenv((char_u *)"VIM", (char_u *)"");
5550 didset_vim = FALSE;
5552 if (didset_vimruntime)
5554 vim_setenv((char_u *)"VIMRUNTIME", (char_u *)"");
5555 didset_vimruntime = FALSE;
5559 #ifdef FEAT_MULTI_LANG
5560 /* 'helplang' */
5561 else if (varp == &p_hlg)
5563 /* Check for "", "ab", "ab,cd", etc. */
5564 for (s = p_hlg; *s != NUL; s += 3)
5566 if (s[1] == NUL || ((s[2] != ',' || s[3] == NUL) && s[2] != NUL))
5568 errmsg = e_invarg;
5569 break;
5571 if (s[2] == NUL)
5572 break;
5575 #endif
5577 /* 'highlight' */
5578 else if (varp == &p_hl)
5580 if (highlight_changed() == FAIL)
5581 errmsg = e_invarg; /* invalid flags */
5584 /* 'nrformats' */
5585 else if (gvarp == &p_nf)
5587 if (check_opt_strings(*varp, p_nf_values, TRUE) != OK)
5588 errmsg = e_invarg;
5591 #ifdef FEAT_SESSION
5592 /* 'sessionoptions' */
5593 else if (varp == &p_ssop)
5595 if (opt_strings_flags(p_ssop, p_ssop_values, &ssop_flags, TRUE) != OK)
5596 errmsg = e_invarg;
5597 if ((ssop_flags & SSOP_CURDIR) && (ssop_flags & SSOP_SESDIR))
5599 /* Don't allow both "sesdir" and "curdir". */
5600 (void)opt_strings_flags(oldval, p_ssop_values, &ssop_flags, TRUE);
5601 errmsg = e_invarg;
5604 /* 'viewoptions' */
5605 else if (varp == &p_vop)
5607 if (opt_strings_flags(p_vop, p_ssop_values, &vop_flags, TRUE) != OK)
5608 errmsg = e_invarg;
5610 #endif
5612 /* 'scrollopt' */
5613 #ifdef FEAT_SCROLLBIND
5614 else if (varp == &p_sbo)
5616 if (check_opt_strings(p_sbo, p_scbopt_values, TRUE) != OK)
5617 errmsg = e_invarg;
5619 #endif
5621 /* 'ambiwidth' */
5622 #ifdef FEAT_MBYTE
5623 else if (varp == &p_ambw)
5625 if (check_opt_strings(p_ambw, p_ambw_values, FALSE) != OK)
5626 errmsg = e_invarg;
5628 #endif
5630 /* 'background' */
5631 else if (varp == &p_bg)
5633 if (check_opt_strings(p_bg, p_bg_values, FALSE) == OK)
5635 #ifdef FEAT_EVAL
5636 int dark = (*p_bg == 'd');
5637 #endif
5639 init_highlight(FALSE, FALSE);
5641 #ifdef FEAT_EVAL
5642 if (dark != (*p_bg == 'd')
5643 && get_var_value((char_u *)"g:colors_name") != NULL)
5645 /* The color scheme must have set 'background' back to another
5646 * value, that's not what we want here. Disable the color
5647 * scheme and set the colors again. */
5648 do_unlet((char_u *)"g:colors_name", TRUE);
5649 free_string_option(p_bg);
5650 p_bg = vim_strsave((char_u *)(dark ? "dark" : "light"));
5651 check_string_option(&p_bg);
5652 init_highlight(FALSE, FALSE);
5654 #endif
5656 else
5657 errmsg = e_invarg;
5660 /* 'wildmode' */
5661 else if (varp == &p_wim)
5663 if (check_opt_wim() == FAIL)
5664 errmsg = e_invarg;
5667 #ifdef FEAT_CMDL_COMPL
5668 /* 'wildoptions' */
5669 else if (varp == &p_wop)
5671 if (check_opt_strings(p_wop, p_wop_values, TRUE) != OK)
5672 errmsg = e_invarg;
5674 #endif
5676 #ifdef FEAT_WAK
5677 /* 'winaltkeys' */
5678 else if (varp == &p_wak)
5680 if (*p_wak == NUL
5681 || check_opt_strings(p_wak, p_wak_values, FALSE) != OK)
5682 errmsg = e_invarg;
5683 # ifdef FEAT_MENU
5684 # ifdef FEAT_GUI_MOTIF
5685 else if (gui.in_use)
5686 gui_motif_set_mnemonics(p_wak[0] == 'y' || p_wak[0] == 'm');
5687 # else
5688 # ifdef FEAT_GUI_GTK
5689 else if (gui.in_use)
5690 gui_gtk_set_mnemonics(p_wak[0] == 'y' || p_wak[0] == 'm');
5691 # endif
5692 # endif
5693 # endif
5695 #endif
5697 #ifdef FEAT_AUTOCMD
5698 /* 'eventignore' */
5699 else if (varp == &p_ei)
5701 if (check_ei() == FAIL)
5702 errmsg = e_invarg;
5704 #endif
5706 #ifdef FEAT_MBYTE
5707 /* 'encoding' and 'fileencoding' */
5708 else if (varp == &p_enc || gvarp == &p_fenc || varp == &p_tenc)
5710 if (gvarp == &p_fenc)
5712 if (!curbuf->b_p_ma && opt_flags != OPT_GLOBAL)
5713 errmsg = e_modifiable;
5714 else if (vim_strchr(*varp, ',') != NULL)
5715 /* No comma allowed in 'fileencoding'; catches confusing it
5716 * with 'fileencodings'. */
5717 errmsg = e_invarg;
5718 else
5720 # ifdef FEAT_TITLE
5721 /* May show a "+" in the title now. */
5722 need_maketitle = TRUE;
5723 # endif
5724 /* Add 'fileencoding' to the swap file. */
5725 ml_setflags(curbuf);
5728 if (errmsg == NULL)
5730 /* canonize the value, so that STRCMP() can be used on it */
5731 p = enc_canonize(*varp);
5732 if (p != NULL)
5734 vim_free(*varp);
5735 *varp = p;
5737 if (varp == &p_enc)
5739 errmsg = mb_init();
5740 # ifdef FEAT_TITLE
5741 need_maketitle = TRUE;
5742 # endif
5746 # if (defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)) || defined(FEAT_GUI_MACVIM)
5747 if (errmsg == NULL && varp == &p_tenc && gui.in_use)
5749 /* MacVim and GTK+ 2 GUIs force 'tenc' to UTF-8. */
5750 if (STRCMP(p_tenc, "utf-8") != 0)
5751 # if defined(FEAT_GUI_MACVIM)
5752 errmsg = (char_u *)N_("E617: Cannot be changed in MacVim");
5753 # else
5754 errmsg = (char_u *)N_("E617: Cannot be changed in the GTK+ 2 GUI");
5755 # endif
5757 # endif
5759 if (errmsg == NULL)
5761 # ifdef FEAT_KEYMAP
5762 /* When 'keymap' is used and 'encoding' changes, reload the keymap
5763 * (with another encoding). */
5764 if (varp == &p_enc && *curbuf->b_p_keymap != NUL)
5765 (void)keymap_init();
5766 # endif
5768 /* When 'termencoding' is not empty and 'encoding' changes or when
5769 * 'termencoding' changes, need to setup for keyboard input and
5770 * display output conversion. */
5771 if (((varp == &p_enc && *p_tenc != NUL) || varp == &p_tenc))
5773 convert_setup(&input_conv, p_tenc, p_enc);
5774 convert_setup(&output_conv, p_enc, p_tenc);
5777 # if defined(WIN3264) && defined(FEAT_MBYTE)
5778 /* $HOME may have characters in active code page. */
5779 if (varp == &p_enc)
5780 init_homedir();
5781 # endif
5784 #endif
5786 #if defined(FEAT_POSTSCRIPT)
5787 else if (varp == &p_penc)
5789 /* Canonize printencoding if VIM standard one */
5790 p = enc_canonize(p_penc);
5791 if (p != NULL)
5793 vim_free(p_penc);
5794 p_penc = p;
5796 else
5798 /* Ensure lower case and '-' for '_' */
5799 for (s = p_penc; *s != NUL; s++)
5801 if (*s == '_')
5802 *s = '-';
5803 else
5804 *s = TOLOWER_ASC(*s);
5808 #endif
5810 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
5811 else if (varp == &p_imak)
5813 if (gui.in_use && !im_xim_isvalid_imactivate())
5814 errmsg = e_invarg;
5816 #endif
5818 #ifdef FEAT_KEYMAP
5819 else if (varp == &curbuf->b_p_keymap)
5821 /* load or unload key mapping tables */
5822 errmsg = keymap_init();
5824 /* When successfully installed a new keymap switch on using it. */
5825 if (*curbuf->b_p_keymap != NUL && errmsg == NULL)
5827 curbuf->b_p_iminsert = B_IMODE_LMAP;
5828 if (curbuf->b_p_imsearch != B_IMODE_USE_INSERT)
5829 curbuf->b_p_imsearch = B_IMODE_LMAP;
5830 set_iminsert_global();
5831 set_imsearch_global();
5832 # ifdef FEAT_WINDOWS
5833 status_redraw_curbuf();
5834 # endif
5837 #endif
5839 /* 'fileformat' */
5840 else if (gvarp == &p_ff)
5842 if (!curbuf->b_p_ma && !(opt_flags & OPT_GLOBAL))
5843 errmsg = e_modifiable;
5844 else if (check_opt_strings(*varp, p_ff_values, FALSE) != OK)
5845 errmsg = e_invarg;
5846 else
5848 /* may also change 'textmode' */
5849 if (get_fileformat(curbuf) == EOL_DOS)
5850 curbuf->b_p_tx = TRUE;
5851 else
5852 curbuf->b_p_tx = FALSE;
5853 #ifdef FEAT_TITLE
5854 need_maketitle = TRUE;
5855 #endif
5856 /* update flag in swap file */
5857 ml_setflags(curbuf);
5861 /* 'fileformats' */
5862 else if (varp == &p_ffs)
5864 if (check_opt_strings(p_ffs, p_ff_values, TRUE) != OK)
5865 errmsg = e_invarg;
5866 else
5868 /* also change 'textauto' */
5869 if (*p_ffs == NUL)
5870 p_ta = FALSE;
5871 else
5872 p_ta = TRUE;
5876 #if defined(FEAT_CRYPT) && defined(FEAT_CMDHIST)
5877 /* 'cryptkey' */
5878 else if (gvarp == &p_key)
5880 /* Make sure the ":set" command doesn't show the new value in the
5881 * history. */
5882 remove_key_from_history();
5884 #endif
5886 /* 'matchpairs' */
5887 else if (gvarp == &p_mps)
5889 /* Check for "x:y,x:y" */
5890 for (p = *varp; *p != NUL; p += 4)
5892 if (p[1] != ':' || p[2] == NUL || (p[3] != NUL && p[3] != ','))
5894 errmsg = e_invarg;
5895 break;
5897 if (p[3] == NUL)
5898 break;
5902 #ifdef FEAT_COMMENTS
5903 /* 'comments' */
5904 else if (gvarp == &p_com)
5906 for (s = *varp; *s; )
5908 while (*s && *s != ':')
5910 if (vim_strchr((char_u *)COM_ALL, *s) == NULL
5911 && !VIM_ISDIGIT(*s) && *s != '-')
5913 errmsg = illegal_char(errbuf, *s);
5914 break;
5916 ++s;
5918 if (*s++ == NUL)
5919 errmsg = (char_u *)N_("E524: Missing colon");
5920 else if (*s == ',' || *s == NUL)
5921 errmsg = (char_u *)N_("E525: Zero length string");
5922 if (errmsg != NULL)
5923 break;
5924 while (*s && *s != ',')
5926 if (*s == '\\' && s[1] != NUL)
5927 ++s;
5928 ++s;
5930 s = skip_to_option_part(s);
5933 #endif
5935 /* 'listchars' */
5936 else if (varp == &p_lcs)
5938 errmsg = set_chars_option(varp);
5941 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
5942 /* 'fillchars' */
5943 else if (varp == &p_fcs)
5945 errmsg = set_chars_option(varp);
5947 #endif
5949 #ifdef FEAT_CMDWIN
5950 /* 'cedit' */
5951 else if (varp == &p_cedit)
5953 errmsg = check_cedit();
5955 #endif
5957 /* 'verbosefile' */
5958 else if (varp == &p_vfile)
5960 verbose_stop();
5961 if (*p_vfile != NUL && verbose_open() == FAIL)
5962 errmsg = e_invarg;
5965 #ifdef FEAT_VIMINFO
5966 /* 'viminfo' */
5967 else if (varp == &p_viminfo)
5969 for (s = p_viminfo; *s;)
5971 /* Check it's a valid character */
5972 if (vim_strchr((char_u *)"!\"%'/:<@cfhnrs", *s) == NULL)
5974 errmsg = illegal_char(errbuf, *s);
5975 break;
5977 if (*s == 'n') /* name is always last one */
5979 break;
5981 else if (*s == 'r') /* skip until next ',' */
5983 while (*++s && *s != ',')
5986 else if (*s == '%')
5988 /* optional number */
5989 while (vim_isdigit(*++s))
5992 else if (*s == '!' || *s == 'h' || *s == 'c')
5993 ++s; /* no extra chars */
5994 else /* must have a number */
5996 while (vim_isdigit(*++s))
5999 if (!VIM_ISDIGIT(*(s - 1)))
6001 if (errbuf != NULL)
6003 sprintf((char *)errbuf,
6004 _("E526: Missing number after <%s>"),
6005 transchar_byte(*(s - 1)));
6006 errmsg = errbuf;
6008 else
6009 errmsg = (char_u *)"";
6010 break;
6013 if (*s == ',')
6014 ++s;
6015 else if (*s)
6017 if (errbuf != NULL)
6018 errmsg = (char_u *)N_("E527: Missing comma");
6019 else
6020 errmsg = (char_u *)"";
6021 break;
6024 if (*p_viminfo && errmsg == NULL && get_viminfo_parameter('\'') < 0)
6025 errmsg = (char_u *)N_("E528: Must specify a ' value");
6027 #endif /* FEAT_VIMINFO */
6029 /* terminal options */
6030 else if (istermoption(&options[opt_idx]) && full_screen)
6032 /* ":set t_Co=0" and ":set t_Co=1" do ":set t_Co=" */
6033 if (varp == &T_CCO)
6035 t_colors = atoi((char *)T_CCO);
6036 if (t_colors <= 1)
6038 if (new_value_alloced)
6039 vim_free(T_CCO);
6040 T_CCO = empty_option;
6042 /* We now have a different color setup, initialize it again. */
6043 init_highlight(TRUE, FALSE);
6045 ttest(FALSE);
6046 if (varp == &T_ME)
6048 out_str(T_ME);
6049 redraw_later(CLEAR);
6050 #if defined(MSDOS) || (defined(WIN3264) && !defined(FEAT_GUI_W32))
6051 /* Since t_me has been set, this probably means that the user
6052 * wants to use this as default colors. Need to reset default
6053 * background/foreground colors. */
6054 mch_set_normal_colors();
6055 #endif
6059 #ifdef FEAT_LINEBREAK
6060 /* 'showbreak' */
6061 else if (varp == &p_sbr)
6063 for (s = p_sbr; *s; )
6065 if (ptr2cells(s) != 1)
6066 errmsg = (char_u *)N_("E595: contains unprintable or wide character");
6067 mb_ptr_adv(s);
6070 #endif
6072 #ifdef FEAT_GUI
6073 /* 'guifont' */
6074 else if (varp == &p_guifont)
6076 if (gui.in_use)
6078 p = p_guifont;
6079 # if defined(FEAT_GUI_GTK)
6081 * Put up a font dialog and let the user select a new value.
6082 * If this is cancelled go back to the old value but don't
6083 * give an error message.
6085 if (STRCMP(p, "*") == 0)
6087 p = gui_mch_font_dialog(oldval);
6089 if (new_value_alloced)
6090 free_string_option(p_guifont);
6092 p_guifont = (p != NULL) ? p : vim_strsave(oldval);
6093 new_value_alloced = TRUE;
6095 # endif
6096 if (p != NULL && gui_init_font(p_guifont, FALSE) != OK)
6098 # if defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_PHOTON) \
6099 || defined(FEAT_GUI_MACVIM)
6100 if (STRCMP(p_guifont, "*") == 0)
6102 /* Dialog was cancelled: Keep the old value without giving
6103 * an error message. */
6104 if (new_value_alloced)
6105 free_string_option(p_guifont);
6106 p_guifont = vim_strsave(oldval);
6107 new_value_alloced = TRUE;
6109 else
6110 # endif
6111 errmsg = (char_u *)N_("E596: Invalid font(s)");
6115 # ifdef FEAT_XFONTSET
6116 else if (varp == &p_guifontset)
6118 if (STRCMP(p_guifontset, "*") == 0)
6119 errmsg = (char_u *)N_("E597: can't select fontset");
6120 else if (gui.in_use && gui_init_font(p_guifontset, TRUE) != OK)
6121 errmsg = (char_u *)N_("E598: Invalid fontset");
6123 # endif
6124 # ifdef FEAT_MBYTE
6125 else if (varp == &p_guifontwide)
6127 if (STRCMP(p_guifontwide, "*") == 0)
6128 errmsg = (char_u *)N_("E533: can't select wide font");
6129 else if (gui_get_wide_font() == FAIL)
6130 errmsg = (char_u *)N_("E534: Invalid wide font");
6132 # endif
6133 #endif
6135 #ifdef CURSOR_SHAPE
6136 /* 'guicursor' */
6137 else if (varp == &p_guicursor)
6138 errmsg = parse_shape_opt(SHAPE_CURSOR);
6139 #endif
6141 #ifdef FEAT_MOUSESHAPE
6142 /* 'mouseshape' */
6143 else if (varp == &p_mouseshape)
6145 errmsg = parse_shape_opt(SHAPE_MOUSE);
6146 update_mouseshape(-1);
6148 #endif
6150 #ifdef FEAT_PRINTER
6151 else if (varp == &p_popt)
6152 errmsg = parse_printoptions();
6153 # if defined(FEAT_MBYTE) && defined(FEAT_POSTSCRIPT)
6154 else if (varp == &p_pmfn)
6155 errmsg = parse_printmbfont();
6156 # endif
6157 #endif
6159 #ifdef FEAT_LANGMAP
6160 /* 'langmap' */
6161 else if (varp == &p_langmap)
6162 langmap_set();
6163 #endif
6165 #ifdef FEAT_LINEBREAK
6166 /* 'breakat' */
6167 else if (varp == &p_breakat)
6168 fill_breakat_flags();
6169 #endif
6171 #ifdef FEAT_TITLE
6172 /* 'titlestring' and 'iconstring' */
6173 else if (varp == &p_titlestring || varp == &p_iconstring)
6175 # ifdef FEAT_STL_OPT
6176 int flagval = (varp == &p_titlestring) ? STL_IN_TITLE : STL_IN_ICON;
6178 /* NULL => statusline syntax */
6179 if (vim_strchr(*varp, '%') && check_stl_option(*varp) == NULL)
6180 stl_syntax |= flagval;
6181 else
6182 stl_syntax &= ~flagval;
6183 # endif
6184 did_set_title(varp == &p_iconstring);
6187 #endif
6189 #ifdef FEAT_GUI
6190 /* 'guioptions' */
6191 else if (varp == &p_go)
6192 gui_init_which_components(oldval);
6193 #endif
6195 #if defined(FEAT_GUI_TABLINE)
6196 /* 'guitablabel' */
6197 else if (varp == &p_gtl)
6198 redraw_tabline = TRUE;
6199 #endif
6201 #if defined(FEAT_MOUSE_TTY) && (defined(UNIX) || defined(VMS))
6202 /* 'ttymouse' */
6203 else if (varp == &p_ttym)
6205 /* Switch the mouse off before changing the escape sequences used for
6206 * that. */
6207 mch_setmouse(FALSE);
6208 if (opt_strings_flags(p_ttym, p_ttym_values, &ttym_flags, FALSE) != OK)
6209 errmsg = e_invarg;
6210 else
6211 check_mouse_termcode();
6212 if (termcap_active)
6213 setmouse(); /* may switch it on again */
6215 #endif
6217 #ifdef FEAT_VISUAL
6218 /* 'selection' */
6219 else if (varp == &p_sel)
6221 if (*p_sel == NUL
6222 || check_opt_strings(p_sel, p_sel_values, FALSE) != OK)
6223 errmsg = e_invarg;
6226 /* 'selectmode' */
6227 else if (varp == &p_slm)
6229 if (check_opt_strings(p_slm, p_slm_values, TRUE) != OK)
6230 errmsg = e_invarg;
6232 #endif
6234 #ifdef FEAT_BROWSE
6235 /* 'browsedir' */
6236 else if (varp == &p_bsdir)
6238 if (check_opt_strings(p_bsdir, p_bsdir_values, FALSE) != OK
6239 && !mch_isdir(p_bsdir))
6240 errmsg = e_invarg;
6242 #endif
6244 #ifdef FEAT_VISUAL
6245 /* 'keymodel' */
6246 else if (varp == &p_km)
6248 if (check_opt_strings(p_km, p_km_values, TRUE) != OK)
6249 errmsg = e_invarg;
6250 else
6252 km_stopsel = (vim_strchr(p_km, 'o') != NULL);
6253 km_startsel = (vim_strchr(p_km, 'a') != NULL);
6256 #endif
6258 /* 'mousemodel' */
6259 else if (varp == &p_mousem)
6261 if (check_opt_strings(p_mousem, p_mousem_values, FALSE) != OK)
6262 errmsg = e_invarg;
6263 #if defined(FEAT_GUI_MOTIF) && defined(FEAT_MENU) && (XmVersion <= 1002)
6264 else if (*p_mousem != *oldval)
6265 /* Changed from "extend" to "popup" or "popup_setpos" or vv: need
6266 * to create or delete the popup menus. */
6267 gui_motif_update_mousemodel(root_menu);
6268 #endif
6271 /* 'switchbuf' */
6272 else if (varp == &p_swb)
6274 if (opt_strings_flags(p_swb, p_swb_values, &swb_flags, TRUE) != OK)
6275 errmsg = e_invarg;
6278 /* 'debug' */
6279 else if (varp == &p_debug)
6281 if (check_opt_strings(p_debug, p_debug_values, TRUE) != OK)
6282 errmsg = e_invarg;
6285 /* 'display' */
6286 else if (varp == &p_dy)
6288 if (opt_strings_flags(p_dy, p_dy_values, &dy_flags, TRUE) != OK)
6289 errmsg = e_invarg;
6290 else
6291 (void)init_chartab();
6295 #ifdef FEAT_VERTSPLIT
6296 /* 'eadirection' */
6297 else if (varp == &p_ead)
6299 if (check_opt_strings(p_ead, p_ead_values, FALSE) != OK)
6300 errmsg = e_invarg;
6302 #endif
6304 #ifdef FEAT_CLIPBOARD
6305 /* 'clipboard' */
6306 else if (varp == &p_cb)
6307 errmsg = check_clipboard_option();
6308 #endif
6310 #ifdef FEAT_SPELL
6311 /* When 'spelllang' or 'spellfile' is set and there is a window for this
6312 * buffer in which 'spell' is set load the wordlists. */
6313 else if (varp == &(curbuf->b_p_spl) || varp == &(curbuf->b_p_spf))
6315 win_T *wp;
6316 int l;
6318 if (varp == &(curbuf->b_p_spf))
6320 l = (int)STRLEN(curbuf->b_p_spf);
6321 if (l > 0 && (l < 4 || STRCMP(curbuf->b_p_spf + l - 4,
6322 ".add") != 0))
6323 errmsg = e_invarg;
6326 if (errmsg == NULL)
6328 FOR_ALL_WINDOWS(wp)
6329 if (wp->w_buffer == curbuf && wp->w_p_spell)
6331 errmsg = did_set_spelllang(curbuf);
6332 # ifdef FEAT_WINDOWS
6333 break;
6334 # endif
6338 /* When 'spellcapcheck' is set compile the regexp program. */
6339 else if (varp == &(curbuf->b_p_spc))
6341 errmsg = compile_cap_prog(curbuf);
6343 /* 'spellsuggest' */
6344 else if (varp == &p_sps)
6346 if (spell_check_sps() != OK)
6347 errmsg = e_invarg;
6349 /* 'mkspellmem' */
6350 else if (varp == &p_msm)
6352 if (spell_check_msm() != OK)
6353 errmsg = e_invarg;
6355 #endif
6357 #ifdef FEAT_QUICKFIX
6358 /* When 'bufhidden' is set, check for valid value. */
6359 else if (gvarp == &p_bh)
6361 if (check_opt_strings(curbuf->b_p_bh, p_bufhidden_values, FALSE) != OK)
6362 errmsg = e_invarg;
6365 /* When 'buftype' is set, check for valid value. */
6366 else if (gvarp == &p_bt)
6368 if (check_opt_strings(curbuf->b_p_bt, p_buftype_values, FALSE) != OK)
6369 errmsg = e_invarg;
6370 else
6372 # ifdef FEAT_WINDOWS
6373 if (curwin->w_status_height)
6375 curwin->w_redr_status = TRUE;
6376 redraw_later(VALID);
6378 # endif
6379 curbuf->b_help = (curbuf->b_p_bt[0] == 'h');
6382 #endif
6384 #ifdef FEAT_STL_OPT
6385 /* 'statusline' or 'rulerformat' */
6386 else if (gvarp == &p_stl || varp == &p_ruf)
6388 int wid;
6390 if (varp == &p_ruf) /* reset ru_wid first */
6391 ru_wid = 0;
6392 s = *varp;
6393 if (varp == &p_ruf && *s == '%')
6395 /* set ru_wid if 'ruf' starts with "%99(" */
6396 if (*++s == '-') /* ignore a '-' */
6397 s++;
6398 wid = getdigits(&s);
6399 if (wid && *s == '(' && (errmsg = check_stl_option(p_ruf)) == NULL)
6400 ru_wid = wid;
6401 else
6402 errmsg = check_stl_option(p_ruf);
6404 /* check 'statusline' only if it doesn't start with "%!" */
6405 else if (varp == &p_ruf || s[0] != '%' || s[1] != '!')
6406 errmsg = check_stl_option(s);
6407 if (varp == &p_ruf && errmsg == NULL)
6408 comp_col();
6410 #endif
6412 #ifdef FEAT_INS_EXPAND
6413 /* check if it is a valid value for 'complete' -- Acevedo */
6414 else if (gvarp == &p_cpt)
6416 for (s = *varp; *s;)
6418 while(*s == ',' || *s == ' ')
6419 s++;
6420 if (!*s)
6421 break;
6422 if (vim_strchr((char_u *)".wbuksid]tU", *s) == NULL)
6424 errmsg = illegal_char(errbuf, *s);
6425 break;
6427 if (*++s != NUL && *s != ',' && *s != ' ')
6429 if (s[-1] == 'k' || s[-1] == 's')
6431 /* skip optional filename after 'k' and 's' */
6432 while (*s && *s != ',' && *s != ' ')
6434 if (*s == '\\')
6435 ++s;
6436 ++s;
6439 else
6441 if (errbuf != NULL)
6443 sprintf((char *)errbuf,
6444 _("E535: Illegal character after <%c>"),
6445 *--s);
6446 errmsg = errbuf;
6448 else
6449 errmsg = (char_u *)"";
6450 break;
6456 /* 'completeopt' */
6457 else if (varp == &p_cot)
6459 if (check_opt_strings(p_cot, p_cot_values, TRUE) != OK)
6460 errmsg = e_invarg;
6462 #endif /* FEAT_INS_EXPAND */
6465 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
6466 else if (varp == &p_toolbar)
6468 if (opt_strings_flags(p_toolbar, p_toolbar_values,
6469 &toolbar_flags, TRUE) != OK)
6470 errmsg = e_invarg;
6471 else
6473 out_flush();
6474 gui_mch_show_toolbar((toolbar_flags &
6475 (TOOLBAR_TEXT | TOOLBAR_ICONS)) != 0);
6478 #endif
6480 #if defined(FEAT_TOOLBAR) && ((defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)) \
6481 || defined(FEAT_GUI_MACVIM))
6482 /* 'toolbariconsize': GTK+ 2 and MacVim only */
6483 else if (varp == &p_tbis)
6485 if (opt_strings_flags(p_tbis, p_tbis_values, &tbis_flags, FALSE) != OK)
6486 errmsg = e_invarg;
6487 else
6489 out_flush();
6490 gui_mch_show_toolbar((toolbar_flags &
6491 (TOOLBAR_TEXT | TOOLBAR_ICONS)) != 0);
6494 #endif
6496 /* 'pastetoggle': translate key codes like in a mapping */
6497 else if (varp == &p_pt)
6499 if (*p_pt)
6501 (void)replace_termcodes(p_pt, &p, TRUE, TRUE, FALSE);
6502 if (p != NULL)
6504 if (new_value_alloced)
6505 free_string_option(p_pt);
6506 p_pt = p;
6507 new_value_alloced = TRUE;
6512 /* 'backspace' */
6513 else if (varp == &p_bs)
6515 if (VIM_ISDIGIT(*p_bs))
6517 if (*p_bs >'2' || p_bs[1] != NUL)
6518 errmsg = e_invarg;
6520 else if (check_opt_strings(p_bs, p_bs_values, TRUE) != OK)
6521 errmsg = e_invarg;
6524 #ifdef FEAT_MBYTE
6525 /* 'casemap' */
6526 else if (varp == &p_cmp)
6528 if (opt_strings_flags(p_cmp, p_cmp_values, &cmp_flags, TRUE) != OK)
6529 errmsg = e_invarg;
6531 #endif
6533 #ifdef FEAT_DIFF
6534 /* 'diffopt' */
6535 else if (varp == &p_dip)
6537 if (diffopt_changed() == FAIL)
6538 errmsg = e_invarg;
6540 #endif
6542 #ifdef FEAT_FOLDING
6543 /* 'foldmethod' */
6544 else if (gvarp == &curwin->w_allbuf_opt.wo_fdm)
6546 if (check_opt_strings(*varp, p_fdm_values, FALSE) != OK
6547 || *curwin->w_p_fdm == NUL)
6548 errmsg = e_invarg;
6549 else
6550 foldUpdateAll(curwin);
6552 # ifdef FEAT_EVAL
6553 /* 'foldexpr' */
6554 else if (varp == &curwin->w_p_fde)
6556 if (foldmethodIsExpr(curwin))
6557 foldUpdateAll(curwin);
6559 # endif
6560 /* 'foldmarker' */
6561 else if (gvarp == &curwin->w_allbuf_opt.wo_fmr)
6563 p = vim_strchr(*varp, ',');
6564 if (p == NULL)
6565 errmsg = (char_u *)N_("E536: comma required");
6566 else if (p == *varp || p[1] == NUL)
6567 errmsg = e_invarg;
6568 else if (foldmethodIsMarker(curwin))
6569 foldUpdateAll(curwin);
6571 /* 'commentstring' */
6572 else if (gvarp == &p_cms)
6574 if (**varp != NUL && strstr((char *)*varp, "%s") == NULL)
6575 errmsg = (char_u *)N_("E537: 'commentstring' must be empty or contain %s");
6577 /* 'foldopen' */
6578 else if (varp == &p_fdo)
6580 if (opt_strings_flags(p_fdo, p_fdo_values, &fdo_flags, TRUE) != OK)
6581 errmsg = e_invarg;
6583 /* 'foldclose' */
6584 else if (varp == &p_fcl)
6586 if (check_opt_strings(p_fcl, p_fcl_values, TRUE) != OK)
6587 errmsg = e_invarg;
6589 /* 'foldignore' */
6590 else if (gvarp == &curwin->w_allbuf_opt.wo_fdi)
6592 if (foldmethodIsIndent(curwin))
6593 foldUpdateAll(curwin);
6595 #endif
6597 #ifdef FEAT_FULLSCREEN
6598 /* 'fuoptions' */
6599 else if (varp == &p_fuoptions)
6601 if (check_fuoptions(p_fuoptions, &fuoptions_flags,
6602 &fuoptions_bgcolor) != OK)
6603 errmsg = e_invarg;
6605 #endif
6607 #ifdef FEAT_VIRTUALEDIT
6608 /* 'virtualedit' */
6609 else if (varp == &p_ve)
6611 if (opt_strings_flags(p_ve, p_ve_values, &ve_flags, TRUE) != OK)
6612 errmsg = e_invarg;
6613 else if (STRCMP(p_ve, oldval) != 0)
6615 /* Recompute cursor position in case the new 've' setting
6616 * changes something. */
6617 validate_virtcol();
6618 coladvance(curwin->w_virtcol);
6621 #endif
6623 #if defined(FEAT_CSCOPE) && defined(FEAT_QUICKFIX)
6624 else if (varp == &p_csqf)
6626 if (p_csqf != NULL)
6628 p = p_csqf;
6629 while (*p != NUL)
6631 if (vim_strchr((char_u *)CSQF_CMDS, *p) == NULL
6632 || p[1] == NUL
6633 || vim_strchr((char_u *)CSQF_FLAGS, p[1]) == NULL
6634 || (p[2] != NUL && p[2] != ','))
6636 errmsg = e_invarg;
6637 break;
6639 else if (p[2] == NUL)
6640 break;
6641 else
6642 p += 3;
6646 #endif
6648 /* Options that are a list of flags. */
6649 else
6651 p = NULL;
6652 if (varp == &p_ww)
6653 p = (char_u *)WW_ALL;
6654 if (varp == &p_shm)
6655 p = (char_u *)SHM_ALL;
6656 else if (varp == &(p_cpo))
6657 p = (char_u *)CPO_ALL;
6658 else if (varp == &(curbuf->b_p_fo))
6659 p = (char_u *)FO_ALL;
6660 else if (varp == &p_mouse)
6662 #ifdef FEAT_MOUSE
6663 p = (char_u *)MOUSE_ALL;
6664 #else
6665 if (*p_mouse != NUL)
6666 errmsg = (char_u *)N_("E538: No mouse support");
6667 #endif
6669 #if defined(FEAT_GUI)
6670 else if (varp == &p_go)
6671 p = (char_u *)GO_ALL;
6672 #endif
6673 if (p != NULL)
6675 for (s = *varp; *s; ++s)
6676 if (vim_strchr(p, *s) == NULL)
6678 errmsg = illegal_char(errbuf, *s);
6679 break;
6685 * If error detected, restore the previous value.
6687 if (errmsg != NULL)
6689 if (new_value_alloced)
6690 free_string_option(*varp);
6691 *varp = oldval;
6693 * When resetting some values, need to act on it.
6695 if (did_chartab)
6696 (void)init_chartab();
6697 if (varp == &p_hl)
6698 (void)highlight_changed();
6700 else
6702 #ifdef FEAT_EVAL
6703 /* Remember where the option was set. */
6704 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
6705 #endif
6707 * Free string options that are in allocated memory.
6708 * Use "free_oldval", because recursiveness may change the flags under
6709 * our fingers (esp. init_highlight()).
6711 if (free_oldval)
6712 free_string_option(oldval);
6713 if (new_value_alloced)
6714 options[opt_idx].flags |= P_ALLOCED;
6715 else
6716 options[opt_idx].flags &= ~P_ALLOCED;
6718 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
6719 && ((int)options[opt_idx].indir & PV_BOTH))
6721 /* global option with local value set to use global value; free
6722 * the local value and make it empty */
6723 p = get_varp_scope(&(options[opt_idx]), OPT_LOCAL);
6724 free_string_option(*(char_u **)p);
6725 *(char_u **)p = empty_option;
6728 /* May set global value for local option. */
6729 else if (!(opt_flags & OPT_LOCAL) && opt_flags != OPT_GLOBAL)
6730 set_string_option_global(opt_idx, varp);
6732 #ifdef FEAT_AUTOCMD
6734 * Trigger the autocommand only after setting the flags.
6736 # ifdef FEAT_SYN_HL
6737 /* When 'syntax' is set, load the syntax of that name */
6738 if (varp == &(curbuf->b_p_syn))
6740 apply_autocmds(EVENT_SYNTAX, curbuf->b_p_syn,
6741 curbuf->b_fname, TRUE, curbuf);
6743 # endif
6744 else if (varp == &(curbuf->b_p_ft))
6746 /* 'filetype' is set, trigger the FileType autocommand */
6747 did_filetype = TRUE;
6748 apply_autocmds(EVENT_FILETYPE, curbuf->b_p_ft,
6749 curbuf->b_fname, TRUE, curbuf);
6751 #endif
6752 #ifdef FEAT_SPELL
6753 if (varp == &(curbuf->b_p_spl))
6755 char_u fname[200];
6758 * Source the spell/LANG.vim in 'runtimepath'.
6759 * They could set 'spellcapcheck' depending on the language.
6760 * Use the first name in 'spelllang' up to '_region' or
6761 * '.encoding'.
6763 for (p = curbuf->b_p_spl; *p != NUL; ++p)
6764 if (vim_strchr((char_u *)"_.,", *p) != NULL)
6765 break;
6766 vim_snprintf((char *)fname, 200, "spell/%.*s.vim",
6767 (int)(p - curbuf->b_p_spl), curbuf->b_p_spl);
6768 source_runtime(fname, TRUE);
6770 #endif
6773 #ifdef FEAT_MOUSE
6774 if (varp == &p_mouse)
6776 # ifdef FEAT_MOUSE_TTY
6777 if (*p_mouse == NUL)
6778 mch_setmouse(FALSE); /* switch mouse off */
6779 else
6780 # endif
6781 setmouse(); /* in case 'mouse' changed */
6783 #endif
6785 if (curwin->w_curswant != MAXCOL)
6786 curwin->w_set_curswant = TRUE; /* in case 'showbreak' changed */
6787 check_redraw(options[opt_idx].flags);
6789 return errmsg;
6793 * Handle setting 'listchars' or 'fillchars'.
6794 * Returns error message, NULL if it's OK.
6796 static char_u *
6797 set_chars_option(varp)
6798 char_u **varp;
6800 int round, i, len, entries;
6801 char_u *p, *s;
6802 int c1, c2 = 0;
6803 struct charstab
6805 int *cp;
6806 char *name;
6808 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6809 static struct charstab filltab[] =
6811 {&fill_stl, "stl"},
6812 {&fill_stlnc, "stlnc"},
6813 {&fill_vert, "vert"},
6814 {&fill_fold, "fold"},
6815 {&fill_diff, "diff"},
6817 #endif
6818 static struct charstab lcstab[] =
6820 {&lcs_eol, "eol"},
6821 {&lcs_ext, "extends"},
6822 {&lcs_nbsp, "nbsp"},
6823 {&lcs_prec, "precedes"},
6824 {&lcs_tab2, "tab"},
6825 {&lcs_trail, "trail"},
6827 struct charstab *tab;
6829 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6830 if (varp == &p_lcs)
6831 #endif
6833 tab = lcstab;
6834 entries = sizeof(lcstab) / sizeof(struct charstab);
6836 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6837 else
6839 tab = filltab;
6840 entries = sizeof(filltab) / sizeof(struct charstab);
6842 #endif
6844 /* first round: check for valid value, second round: assign values */
6845 for (round = 0; round <= 1; ++round)
6847 if (round)
6849 /* After checking that the value is valid: set defaults: space for
6850 * 'fillchars', NUL for 'listchars' */
6851 for (i = 0; i < entries; ++i)
6852 *(tab[i].cp) = (varp == &p_lcs ? NUL : ' ');
6853 if (varp == &p_lcs)
6854 lcs_tab1 = NUL;
6855 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6856 else
6857 fill_diff = '-';
6858 #endif
6860 p = *varp;
6861 while (*p)
6863 for (i = 0; i < entries; ++i)
6865 len = (int)STRLEN(tab[i].name);
6866 if (STRNCMP(p, tab[i].name, len) == 0
6867 && p[len] == ':'
6868 && p[len + 1] != NUL)
6870 s = p + len + 1;
6871 #ifdef FEAT_MBYTE
6872 c1 = mb_ptr2char_adv(&s);
6873 if (mb_char2cells(c1) > 1)
6874 continue;
6875 #else
6876 c1 = *s++;
6877 #endif
6878 if (tab[i].cp == &lcs_tab2)
6880 if (*s == NUL)
6881 continue;
6882 #ifdef FEAT_MBYTE
6883 c2 = mb_ptr2char_adv(&s);
6884 if (mb_char2cells(c2) > 1)
6885 continue;
6886 #else
6887 c2 = *s++;
6888 #endif
6890 if (*s == ',' || *s == NUL)
6892 if (round)
6894 if (tab[i].cp == &lcs_tab2)
6896 lcs_tab1 = c1;
6897 lcs_tab2 = c2;
6899 else
6900 *(tab[i].cp) = c1;
6903 p = s;
6904 break;
6909 if (i == entries)
6910 return e_invarg;
6911 if (*p == ',')
6912 ++p;
6916 return NULL; /* no error */
6919 #ifdef FEAT_STL_OPT
6921 * Check validity of options with the 'statusline' format.
6922 * Return error message or NULL.
6924 char_u *
6925 check_stl_option(s)
6926 char_u *s;
6928 int itemcnt = 0;
6929 int groupdepth = 0;
6930 static char_u errbuf[80];
6932 while (*s && itemcnt < STL_MAX_ITEM)
6934 /* Check for valid keys after % sequences */
6935 while (*s && *s != '%')
6936 s++;
6937 if (!*s)
6938 break;
6939 s++;
6940 if (*s != '%' && *s != ')')
6941 ++itemcnt;
6942 if (*s == '%' || *s == STL_TRUNCMARK || *s == STL_MIDDLEMARK)
6944 s++;
6945 continue;
6947 if (*s == ')')
6949 s++;
6950 if (--groupdepth < 0)
6951 break;
6952 continue;
6954 if (*s == '-')
6955 s++;
6956 while (VIM_ISDIGIT(*s))
6957 s++;
6958 if (*s == STL_USER_HL)
6959 continue;
6960 if (*s == '.')
6962 s++;
6963 while (*s && VIM_ISDIGIT(*s))
6964 s++;
6966 if (*s == '(')
6968 groupdepth++;
6969 continue;
6971 if (vim_strchr(STL_ALL, *s) == NULL)
6973 return illegal_char(errbuf, *s);
6975 if (*s == '{')
6977 s++;
6978 while (*s != '}' && *s)
6979 s++;
6980 if (*s != '}')
6981 return (char_u *)N_("E540: Unclosed expression sequence");
6984 if (itemcnt >= STL_MAX_ITEM)
6985 return (char_u *)N_("E541: too many items");
6986 if (groupdepth != 0)
6987 return (char_u *)N_("E542: unbalanced groups");
6988 return NULL;
6990 #endif
6992 #ifdef FEAT_CLIPBOARD
6994 * Extract the items in the 'clipboard' option and set global values.
6996 static char_u *
6997 check_clipboard_option()
6999 int new_unnamed = FALSE;
7000 int new_autoselect = FALSE;
7001 int new_autoselectml = FALSE;
7002 regprog_T *new_exclude_prog = NULL;
7003 char_u *errmsg = NULL;
7004 char_u *p;
7006 for (p = p_cb; *p != NUL; )
7008 if (STRNCMP(p, "unnamed", 7) == 0 && (p[7] == ',' || p[7] == NUL))
7010 new_unnamed = TRUE;
7011 p += 7;
7013 else if (STRNCMP(p, "autoselect", 10) == 0
7014 && (p[10] == ',' || p[10] == NUL))
7016 new_autoselect = TRUE;
7017 p += 10;
7019 else if (STRNCMP(p, "autoselectml", 12) == 0
7020 && (p[12] == ',' || p[12] == NUL))
7022 new_autoselectml = TRUE;
7023 p += 12;
7025 else if (STRNCMP(p, "exclude:", 8) == 0 && new_exclude_prog == NULL)
7027 p += 8;
7028 new_exclude_prog = vim_regcomp(p, RE_MAGIC);
7029 if (new_exclude_prog == NULL)
7030 errmsg = e_invarg;
7031 break;
7033 else
7035 errmsg = e_invarg;
7036 break;
7038 if (*p == ',')
7039 ++p;
7041 if (errmsg == NULL)
7043 clip_unnamed = new_unnamed;
7044 clip_autoselect = new_autoselect;
7045 clip_autoselectml = new_autoselectml;
7046 vim_free(clip_exclude_prog);
7047 clip_exclude_prog = new_exclude_prog;
7049 else
7050 vim_free(new_exclude_prog);
7052 return errmsg;
7054 #endif
7056 #ifdef FEAT_SPELL
7058 * Set curbuf->b_cap_prog to the regexp program for 'spellcapcheck'.
7059 * Return error message when failed, NULL when OK.
7061 static char_u *
7062 compile_cap_prog(buf)
7063 buf_T *buf;
7065 regprog_T *rp = buf->b_cap_prog;
7066 char_u *re;
7068 if (*buf->b_p_spc == NUL)
7069 buf->b_cap_prog = NULL;
7070 else
7072 /* Prepend a ^ so that we only match at one column */
7073 re = concat_str((char_u *)"^", buf->b_p_spc);
7074 if (re != NULL)
7076 buf->b_cap_prog = vim_regcomp(re, RE_MAGIC);
7077 if (buf->b_cap_prog == NULL)
7079 buf->b_cap_prog = rp; /* restore the previous program */
7080 return e_invarg;
7082 vim_free(re);
7086 vim_free(rp);
7087 return NULL;
7089 #endif
7091 #if defined(FEAT_EVAL) || defined(PROTO)
7093 * Set the scriptID for an option, taking care of setting the buffer- or
7094 * window-local value.
7096 static void
7097 set_option_scriptID_idx(opt_idx, opt_flags, id)
7098 int opt_idx;
7099 int opt_flags;
7100 int id;
7102 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
7103 int indir = (int)options[opt_idx].indir;
7105 /* Remember where the option was set. For local options need to do that
7106 * in the buffer or window structure. */
7107 if (both || (opt_flags & OPT_GLOBAL) || (indir & (PV_BUF|PV_WIN)) == 0)
7108 options[opt_idx].scriptID = id;
7109 if (both || (opt_flags & OPT_LOCAL))
7111 if (indir & PV_BUF)
7112 curbuf->b_p_scriptID[indir & PV_MASK] = id;
7113 else if (indir & PV_WIN)
7114 curwin->w_p_scriptID[indir & PV_MASK] = id;
7117 #endif
7120 * Set the value of a boolean option, and take care of side effects.
7121 * Returns NULL for success, or an error message for an error.
7123 static char_u *
7124 set_bool_option(opt_idx, varp, value, opt_flags)
7125 int opt_idx; /* index in options[] table */
7126 char_u *varp; /* pointer to the option variable */
7127 int value; /* new value */
7128 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
7130 int old_value = *(int *)varp;
7132 /* Disallow changing some options from secure mode */
7133 if ((secure
7134 #ifdef HAVE_SANDBOX
7135 || sandbox != 0
7136 #endif
7137 ) && (options[opt_idx].flags & P_SECURE))
7138 return e_secure;
7140 *(int *)varp = value; /* set the new value */
7141 #ifdef FEAT_EVAL
7142 /* Remember where the option was set. */
7143 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
7144 #endif
7146 #ifdef FEAT_GUI
7147 need_mouse_correct = TRUE;
7148 #endif
7150 /* May set global value for local option. */
7151 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0)
7152 *(int *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) = value;
7155 * Handle side effects of changing a bool option.
7158 /* 'compatible' */
7159 if ((int *)varp == &p_cp)
7161 compatible_set();
7164 else if ((int *)varp == &curbuf->b_p_ro)
7166 /* when 'readonly' is reset globally, also reset readonlymode */
7167 if (!curbuf->b_p_ro && (opt_flags & OPT_LOCAL) == 0)
7168 readonlymode = FALSE;
7170 /* when 'readonly' is set may give W10 again */
7171 if (curbuf->b_p_ro)
7172 curbuf->b_did_warn = FALSE;
7174 #ifdef FEAT_TITLE
7175 need_maketitle = TRUE;
7176 #endif
7179 #ifdef FEAT_TITLE
7180 /* when 'modifiable' is changed, redraw the window title */
7181 else if ((int *)varp == &curbuf->b_p_ma)
7182 need_maketitle = TRUE;
7183 /* when 'endofline' is changed, redraw the window title */
7184 else if ((int *)varp == &curbuf->b_p_eol)
7185 need_maketitle = TRUE;
7186 #ifdef FEAT_MBYTE
7187 /* when 'bomb' is changed, redraw the window title */
7188 else if ((int *)varp == &curbuf->b_p_bomb)
7189 need_maketitle = TRUE;
7190 #endif
7191 #endif
7193 /* when 'bin' is set also set some other options */
7194 else if ((int *)varp == &curbuf->b_p_bin)
7196 set_options_bin(old_value, curbuf->b_p_bin, opt_flags);
7197 #ifdef FEAT_TITLE
7198 need_maketitle = TRUE;
7199 #endif
7202 #ifdef FEAT_AUTOCMD
7203 /* when 'buflisted' changes, trigger autocommands */
7204 else if ((int *)varp == &curbuf->b_p_bl && old_value != curbuf->b_p_bl)
7206 apply_autocmds(curbuf->b_p_bl ? EVENT_BUFADD : EVENT_BUFDELETE,
7207 NULL, NULL, TRUE, curbuf);
7209 #endif
7211 /* when 'swf' is set, create swapfile, when reset remove swapfile */
7212 else if ((int *)varp == &curbuf->b_p_swf)
7214 if (curbuf->b_p_swf && p_uc)
7215 ml_open_file(curbuf); /* create the swap file */
7216 else
7217 /* no need to reset curbuf->b_may_swap, ml_open_file() will check
7218 * buf->b_p_swf */
7219 mf_close_file(curbuf, TRUE); /* remove the swap file */
7222 /* when 'terse' is set change 'shortmess' */
7223 else if ((int *)varp == &p_terse)
7225 char_u *p;
7227 p = vim_strchr(p_shm, SHM_SEARCH);
7229 /* insert 's' in p_shm */
7230 if (p_terse && p == NULL)
7232 STRCPY(IObuff, p_shm);
7233 STRCAT(IObuff, "s");
7234 set_string_option_direct((char_u *)"shm", -1, IObuff, OPT_FREE, 0);
7236 /* remove 's' from p_shm */
7237 else if (!p_terse && p != NULL)
7238 STRMOVE(p, p + 1);
7241 /* when 'paste' is set or reset also change other options */
7242 else if ((int *)varp == &p_paste)
7244 paste_option_changed();
7247 /* when 'insertmode' is set from an autocommand need to do work here */
7248 else if ((int *)varp == &p_im)
7250 if (p_im)
7252 if ((State & INSERT) == 0)
7253 need_start_insertmode = TRUE;
7254 stop_insert_mode = FALSE;
7256 else
7258 need_start_insertmode = FALSE;
7259 stop_insert_mode = TRUE;
7260 if (restart_edit != 0 && mode_displayed)
7261 clear_cmdline = TRUE; /* remove "(insert)" */
7262 restart_edit = 0;
7266 /* when 'ignorecase' is set or reset and 'hlsearch' is set, redraw */
7267 else if ((int *)varp == &p_ic && p_hls)
7269 redraw_all_later(SOME_VALID);
7272 #ifdef FEAT_SEARCH_EXTRA
7273 /* when 'hlsearch' is set or reset: reset no_hlsearch */
7274 else if ((int *)varp == &p_hls)
7276 no_hlsearch = FALSE;
7278 #endif
7280 #ifdef FEAT_SCROLLBIND
7281 /* when 'scrollbind' is set: snapshot the current position to avoid a jump
7282 * at the end of normal_cmd() */
7283 else if ((int *)varp == &curwin->w_p_scb)
7285 if (curwin->w_p_scb)
7286 do_check_scrollbind(FALSE);
7288 #endif
7290 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
7291 /* There can be only one window with 'previewwindow' set. */
7292 else if ((int *)varp == &curwin->w_p_pvw)
7294 if (curwin->w_p_pvw)
7296 win_T *win;
7298 for (win = firstwin; win != NULL; win = win->w_next)
7299 if (win->w_p_pvw && win != curwin)
7301 curwin->w_p_pvw = FALSE;
7302 return (char_u *)N_("E590: A preview window already exists");
7306 #endif
7308 /* when 'textmode' is set or reset also change 'fileformat' */
7309 else if ((int *)varp == &curbuf->b_p_tx)
7311 set_fileformat(curbuf->b_p_tx ? EOL_DOS : EOL_UNIX, opt_flags);
7314 #ifdef FEAT_FULLSCREEN
7315 /* when 'fullscreen' changes, forward it to the gui */
7316 else if ((int *)varp == &p_fullscreen && gui.in_use)
7318 if (p_fullscreen && !old_value)
7320 guicolor_T fg, bg;
7321 if (fuoptions_flags & FUOPT_BGCOLOR_HLGROUP)
7323 /* Find out background color from colorscheme
7324 * via highlight group id */
7325 syn_id2colors(fuoptions_bgcolor, &fg, &bg);
7327 else
7329 /* set explicit background color */
7330 bg = fuoptions_bgcolor;
7332 gui_mch_enter_fullscreen(fuoptions_flags, bg);
7334 else if (!p_fullscreen && old_value)
7336 gui_mch_leave_fullscreen();
7339 #endif
7341 #if defined(FEAT_ANTIALIAS) && defined(FEAT_GUI_MACVIM)
7342 else if ((int *)varp == &p_antialias)
7344 gui_macvim_set_antialias(p_antialias);
7346 #endif
7348 /* when 'textauto' is set or reset also change 'fileformats' */
7349 else if ((int *)varp == &p_ta)
7350 set_string_option_direct((char_u *)"ffs", -1,
7351 p_ta ? (char_u *)DFLT_FFS_VIM : (char_u *)"",
7352 OPT_FREE | opt_flags, 0);
7355 * When 'lisp' option changes include/exclude '-' in
7356 * keyword characters.
7358 #ifdef FEAT_LISP
7359 else if (varp == (char_u *)&(curbuf->b_p_lisp))
7361 (void)buf_init_chartab(curbuf, FALSE); /* ignore errors */
7363 #endif
7365 #ifdef FEAT_TITLE
7366 /* when 'title' changed, may need to change the title; same for 'icon' */
7367 else if ((int *)varp == &p_title)
7369 did_set_title(FALSE);
7372 else if ((int *)varp == &p_icon)
7374 did_set_title(TRUE);
7376 #endif
7378 else if ((int *)varp == &curbuf->b_changed)
7380 if (!value)
7381 save_file_ff(curbuf); /* Buffer is unchanged */
7382 #ifdef FEAT_TITLE
7383 need_maketitle = TRUE;
7384 #endif
7385 #ifdef FEAT_AUTOCMD
7386 modified_was_set = value;
7387 #endif
7390 #ifdef BACKSLASH_IN_FILENAME
7391 else if ((int *)varp == &p_ssl)
7393 if (p_ssl)
7395 psepc = '/';
7396 psepcN = '\\';
7397 pseps[0] = '/';
7399 else
7401 psepc = '\\';
7402 psepcN = '/';
7403 pseps[0] = '\\';
7406 /* need to adjust the file name arguments and buffer names. */
7407 buflist_slash_adjust();
7408 alist_slash_adjust();
7409 # ifdef FEAT_EVAL
7410 scriptnames_slash_adjust();
7411 # endif
7413 #endif
7415 /* If 'wrap' is set, set w_leftcol to zero. */
7416 else if ((int *)varp == &curwin->w_p_wrap)
7418 if (curwin->w_p_wrap)
7419 curwin->w_leftcol = 0;
7422 #ifdef FEAT_WINDOWS
7423 else if ((int *)varp == &p_ea)
7425 if (p_ea && !old_value)
7426 win_equal(curwin, FALSE, 0);
7428 #endif
7430 else if ((int *)varp == &p_wiv)
7433 * When 'weirdinvert' changed, set/reset 't_xs'.
7434 * Then set 'weirdinvert' according to value of 't_xs'.
7436 if (p_wiv && !old_value)
7437 T_XS = (char_u *)"y";
7438 else if (!p_wiv && old_value)
7439 T_XS = empty_option;
7440 p_wiv = (*T_XS != NUL);
7443 #ifdef FEAT_BEVAL
7444 else if ((int *)varp == &p_beval)
7446 if (p_beval == TRUE)
7447 gui_mch_enable_beval_area(balloonEval);
7448 else
7449 gui_mch_disable_beval_area(balloonEval);
7451 #endif
7453 #ifdef FEAT_AUTOCHDIR
7454 else if ((int *)varp == &p_acd)
7456 /* Change directories when the 'acd' option is set now. */
7457 DO_AUTOCHDIR
7459 #endif
7461 #ifdef FEAT_DIFF
7462 /* 'diff' */
7463 else if ((int *)varp == &curwin->w_p_diff)
7465 /* May add or remove the buffer from the list of diff buffers. */
7466 diff_buf_adjust(curwin);
7467 # ifdef FEAT_FOLDING
7468 if (foldmethodIsDiff(curwin))
7469 foldUpdateAll(curwin);
7470 # endif
7472 #endif
7474 #ifdef USE_IM_CONTROL
7475 /* 'imdisable' */
7476 else if ((int *)varp == &p_imdisable)
7478 /* Only de-activate it here, it will be enabled when changing mode. */
7479 if (p_imdisable)
7480 im_set_active(FALSE);
7482 #endif
7484 #ifdef FEAT_SPELL
7485 /* 'spell' */
7486 else if ((int *)varp == &curwin->w_p_spell)
7488 if (curwin->w_p_spell)
7490 char_u *errmsg = did_set_spelllang(curbuf);
7492 if (errmsg != NULL)
7493 EMSG(_(errmsg));
7496 #endif
7498 #ifdef FEAT_FKMAP
7499 else if ((int *)varp == &p_altkeymap)
7501 if (old_value != p_altkeymap)
7503 if (!p_altkeymap)
7505 p_hkmap = p_fkmap;
7506 p_fkmap = 0;
7508 else
7510 p_fkmap = p_hkmap;
7511 p_hkmap = 0;
7513 (void)init_chartab();
7518 * In case some second language keymapping options have changed, check
7519 * and correct the setting in a consistent way.
7523 * If hkmap or fkmap are set, reset Arabic keymapping.
7525 if ((p_hkmap || p_fkmap) && p_altkeymap)
7527 p_altkeymap = p_fkmap;
7528 # ifdef FEAT_ARABIC
7529 curwin->w_p_arab = FALSE;
7530 # endif
7531 (void)init_chartab();
7535 * If hkmap set, reset Farsi keymapping.
7537 if (p_hkmap && p_altkeymap)
7539 p_altkeymap = 0;
7540 p_fkmap = 0;
7541 # ifdef FEAT_ARABIC
7542 curwin->w_p_arab = FALSE;
7543 # endif
7544 (void)init_chartab();
7548 * If fkmap set, reset Hebrew keymapping.
7550 if (p_fkmap && !p_altkeymap)
7552 p_altkeymap = 1;
7553 p_hkmap = 0;
7554 # ifdef FEAT_ARABIC
7555 curwin->w_p_arab = FALSE;
7556 # endif
7557 (void)init_chartab();
7559 #endif
7561 #ifdef FEAT_ARABIC
7562 if ((int *)varp == &curwin->w_p_arab)
7564 if (curwin->w_p_arab)
7567 * 'arabic' is set, handle various sub-settings.
7569 if (!p_tbidi)
7571 /* set rightleft mode */
7572 if (!curwin->w_p_rl)
7574 curwin->w_p_rl = TRUE;
7575 changed_window_setting();
7578 /* Enable Arabic shaping (major part of what Arabic requires) */
7579 if (!p_arshape)
7581 p_arshape = TRUE;
7582 redraw_later_clear();
7586 /* Arabic requires a utf-8 encoding, inform the user if its not
7587 * set. */
7588 if (STRCMP(p_enc, "utf-8") != 0)
7590 msg_source(hl_attr(HLF_W));
7591 MSG_ATTR(_("W17: Arabic requires UTF-8, do ':set encoding=utf-8'"),
7592 hl_attr(HLF_W));
7595 # ifdef FEAT_MBYTE
7596 /* set 'delcombine' */
7597 p_deco = TRUE;
7598 # endif
7600 # ifdef FEAT_KEYMAP
7601 /* Force-set the necessary keymap for arabic */
7602 set_option_value((char_u *)"keymap", 0L, (char_u *)"arabic",
7603 OPT_LOCAL);
7604 # endif
7605 # ifdef FEAT_FKMAP
7606 p_altkeymap = 0;
7607 p_hkmap = 0;
7608 p_fkmap = 0;
7609 (void)init_chartab();
7610 # endif
7612 else
7615 * 'arabic' is reset, handle various sub-settings.
7617 if (!p_tbidi)
7619 /* reset rightleft mode */
7620 if (curwin->w_p_rl)
7622 curwin->w_p_rl = FALSE;
7623 changed_window_setting();
7626 /* 'arabicshape' isn't reset, it is a global option and
7627 * another window may still need it "on". */
7630 /* 'delcombine' isn't reset, it is a global option and another
7631 * window may still want it "on". */
7633 # ifdef FEAT_KEYMAP
7634 /* Revert to the default keymap */
7635 curbuf->b_p_iminsert = B_IMODE_NONE;
7636 curbuf->b_p_imsearch = B_IMODE_USE_INSERT;
7637 # endif
7640 #endif
7643 * End of handling side effects for bool options.
7646 options[opt_idx].flags |= P_WAS_SET;
7648 comp_col(); /* in case 'ruler' or 'showcmd' changed */
7649 if (curwin->w_curswant != MAXCOL)
7650 curwin->w_set_curswant = TRUE; /* in case 'list' changed */
7651 check_redraw(options[opt_idx].flags);
7653 return NULL;
7657 * Set the value of a number option, and take care of side effects.
7658 * Returns NULL for success, or an error message for an error.
7660 static char_u *
7661 set_num_option(opt_idx, varp, value, errbuf, errbuflen, opt_flags)
7662 int opt_idx; /* index in options[] table */
7663 char_u *varp; /* pointer to the option variable */
7664 long value; /* new value */
7665 char_u *errbuf; /* buffer for error messages */
7666 size_t errbuflen; /* length of "errbuf" */
7667 int opt_flags; /* OPT_LOCAL, OPT_GLOBAL and
7668 OPT_MODELINE */
7670 char_u *errmsg = NULL;
7671 long old_value = *(long *)varp;
7672 long old_Rows = Rows; /* remember old Rows */
7673 long old_Columns = Columns; /* remember old Columns */
7674 long *pp = (long *)varp;
7676 /* Disallow changing some options from secure mode. */
7677 if ((secure
7678 #ifdef HAVE_SANDBOX
7679 || sandbox != 0
7680 #endif
7681 ) && (options[opt_idx].flags & P_SECURE))
7682 return e_secure;
7684 *pp = value;
7685 #ifdef FEAT_EVAL
7686 /* Remember where the option was set. */
7687 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
7688 #endif
7689 #ifdef FEAT_GUI
7690 need_mouse_correct = TRUE;
7691 #endif
7693 if (curbuf->b_p_sw <= 0)
7695 errmsg = e_positive;
7696 curbuf->b_p_sw = curbuf->b_p_ts;
7700 * Number options that need some action when changed
7702 #ifdef FEAT_WINDOWS
7703 if (pp == &p_wh || pp == &p_hh)
7705 if (p_wh < 1)
7707 errmsg = e_positive;
7708 p_wh = 1;
7710 if (p_wmh > p_wh)
7712 errmsg = e_winheight;
7713 p_wh = p_wmh;
7715 if (p_hh < 0)
7717 errmsg = e_positive;
7718 p_hh = 0;
7721 /* Change window height NOW */
7722 if (lastwin != firstwin)
7724 if (pp == &p_wh && curwin->w_height < p_wh)
7725 win_setheight((int)p_wh);
7726 if (pp == &p_hh && curbuf->b_help && curwin->w_height < p_hh)
7727 win_setheight((int)p_hh);
7731 /* 'winminheight' */
7732 else if (pp == &p_wmh)
7734 if (p_wmh < 0)
7736 errmsg = e_positive;
7737 p_wmh = 0;
7739 if (p_wmh > p_wh)
7741 errmsg = e_winheight;
7742 p_wmh = p_wh;
7744 win_setminheight();
7747 # ifdef FEAT_VERTSPLIT
7748 else if (pp == &p_wiw)
7750 if (p_wiw < 1)
7752 errmsg = e_positive;
7753 p_wiw = 1;
7755 if (p_wmw > p_wiw)
7757 errmsg = e_winwidth;
7758 p_wiw = p_wmw;
7761 /* Change window width NOW */
7762 if (lastwin != firstwin && curwin->w_width < p_wiw)
7763 win_setwidth((int)p_wiw);
7766 /* 'winminwidth' */
7767 else if (pp == &p_wmw)
7769 if (p_wmw < 0)
7771 errmsg = e_positive;
7772 p_wmw = 0;
7774 if (p_wmw > p_wiw)
7776 errmsg = e_winwidth;
7777 p_wmw = p_wiw;
7779 win_setminheight();
7781 # endif
7783 #endif
7785 #ifdef FEAT_WINDOWS
7786 /* (re)set last window status line */
7787 else if (pp == &p_ls)
7789 last_status(FALSE);
7792 /* (re)set tab page line */
7793 else if (pp == &p_stal)
7795 shell_new_rows(); /* recompute window positions and heights */
7797 #endif
7799 #ifdef FEAT_GUI
7800 else if (pp == &p_linespace)
7802 /* Recompute gui.char_height and resize the Vim window to keep the
7803 * same number of lines. */
7804 if (gui.in_use && gui_mch_adjust_charheight() == OK)
7805 gui_set_shellsize(FALSE, FALSE, RESIZE_VERT);
7807 #endif
7809 #ifdef FEAT_FOLDING
7810 /* 'foldlevel' */
7811 else if (pp == &curwin->w_p_fdl)
7813 if (curwin->w_p_fdl < 0)
7814 curwin->w_p_fdl = 0;
7815 newFoldLevel();
7818 /* 'foldminlevel' */
7819 else if (pp == &curwin->w_p_fml)
7821 foldUpdateAll(curwin);
7824 /* 'foldnestmax' */
7825 else if (pp == &curwin->w_p_fdn)
7827 if (foldmethodIsSyntax(curwin) || foldmethodIsIndent(curwin))
7828 foldUpdateAll(curwin);
7831 /* 'foldcolumn' */
7832 else if (pp == &curwin->w_p_fdc)
7834 if (curwin->w_p_fdc < 0)
7836 errmsg = e_positive;
7837 curwin->w_p_fdc = 0;
7839 else if (curwin->w_p_fdc > 12)
7841 errmsg = e_invarg;
7842 curwin->w_p_fdc = 12;
7846 /* 'shiftwidth' or 'tabstop' */
7847 else if (pp == &curbuf->b_p_sw || pp == &curbuf->b_p_ts)
7849 if (foldmethodIsIndent(curwin))
7850 foldUpdateAll(curwin);
7852 #endif /* FEAT_FOLDING */
7854 #ifdef FEAT_MBYTE
7855 /* 'maxcombine' */
7856 else if (pp == &p_mco)
7858 if (p_mco > MAX_MCO)
7859 p_mco = MAX_MCO;
7860 else if (p_mco < 0)
7861 p_mco = 0;
7862 screenclear(); /* will re-allocate the screen */
7864 #endif
7866 else if (pp == &curbuf->b_p_iminsert)
7868 if (curbuf->b_p_iminsert < 0 || curbuf->b_p_iminsert > B_IMODE_LAST)
7870 errmsg = e_invarg;
7871 curbuf->b_p_iminsert = B_IMODE_NONE;
7873 p_iminsert = curbuf->b_p_iminsert;
7874 if (termcap_active) /* don't do this in the alternate screen */
7875 showmode();
7876 #if defined(FEAT_WINDOWS) && defined(FEAT_KEYMAP)
7877 /* Show/unshow value of 'keymap' in status lines. */
7878 status_redraw_curbuf();
7879 #endif
7882 else if (pp == &p_window)
7884 if (p_window < 1)
7885 p_window = 1;
7886 else if (p_window >= Rows)
7887 p_window = Rows - 1;
7890 else if (pp == &curbuf->b_p_imsearch)
7892 if (curbuf->b_p_imsearch < -1 || curbuf->b_p_imsearch > B_IMODE_LAST)
7894 errmsg = e_invarg;
7895 curbuf->b_p_imsearch = B_IMODE_NONE;
7897 p_imsearch = curbuf->b_p_imsearch;
7900 #ifdef FEAT_TITLE
7901 /* if 'titlelen' has changed, redraw the title */
7902 else if (pp == &p_titlelen)
7904 if (p_titlelen < 0)
7906 errmsg = e_positive;
7907 p_titlelen = 85;
7909 if (starting != NO_SCREEN && old_value != p_titlelen)
7910 need_maketitle = TRUE;
7912 #endif
7914 /* if p_ch changed value, change the command line height */
7915 else if (pp == &p_ch)
7917 if (p_ch < 1)
7919 errmsg = e_positive;
7920 p_ch = 1;
7922 if (p_ch > Rows - min_rows() + 1)
7923 p_ch = Rows - min_rows() + 1;
7925 /* Only compute the new window layout when startup has been
7926 * completed. Otherwise the frame sizes may be wrong. */
7927 if (p_ch != old_value && full_screen
7928 #ifdef FEAT_GUI
7929 && !gui.starting
7930 #endif
7932 command_height();
7935 /* when 'updatecount' changes from zero to non-zero, open swap files */
7936 else if (pp == &p_uc)
7938 if (p_uc < 0)
7940 errmsg = e_positive;
7941 p_uc = 100;
7943 if (p_uc && !old_value)
7944 ml_open_files();
7946 #ifdef MZSCHEME_GUI_THREADS
7947 else if (pp == &p_mzq)
7948 mzvim_reset_timer();
7949 #endif
7951 /* sync undo before 'undolevels' changes */
7952 else if (pp == &p_ul)
7954 /* use the old value, otherwise u_sync() may not work properly */
7955 p_ul = old_value;
7956 u_sync(TRUE);
7957 p_ul = value;
7960 #ifdef FEAT_LINEBREAK
7961 /* 'numberwidth' must be positive */
7962 else if (pp == &curwin->w_p_nuw)
7964 if (curwin->w_p_nuw < 1)
7966 errmsg = e_positive;
7967 curwin->w_p_nuw = 1;
7969 if (curwin->w_p_nuw > 10)
7971 errmsg = e_invarg;
7972 curwin->w_p_nuw = 10;
7974 curwin->w_nrwidth_line_count = 0;
7976 #endif
7978 #if defined(FEAT_TRANSPARENCY)
7979 /* 'transparency' is a number between 0 and 100 */
7980 else if (pp == &p_transp)
7982 if (p_transp < 0 || p_transp > 100)
7984 errmsg = e_invarg;
7985 p_transp = old_value;
7987 else if (gui.in_use)
7988 gui_mch_new_colors();
7990 #endif
7993 * Check the bounds for numeric options here
7995 if (Rows < min_rows() && full_screen)
7997 if (errbuf != NULL)
7999 vim_snprintf((char *)errbuf, errbuflen,
8000 _("E593: Need at least %d lines"), min_rows());
8001 errmsg = errbuf;
8003 Rows = min_rows();
8005 if (Columns < MIN_COLUMNS && full_screen)
8007 if (errbuf != NULL)
8009 vim_snprintf((char *)errbuf, errbuflen,
8010 _("E594: Need at least %d columns"), MIN_COLUMNS);
8011 errmsg = errbuf;
8013 Columns = MIN_COLUMNS;
8015 /* Limit the values to avoid an overflow in Rows * Columns. */
8016 if (Columns > 10000)
8017 Columns = 10000;
8018 if (Rows > 1000)
8019 Rows = 1000;
8021 #ifdef DJGPP
8022 /* avoid a crash by checking for a too large value of 'columns' */
8023 if (old_Columns != Columns && full_screen && term_console)
8024 mch_check_columns();
8025 #endif
8028 * If the screen (shell) height has been changed, assume it is the
8029 * physical screenheight.
8031 if (old_Rows != Rows || old_Columns != Columns)
8033 /* Changing the screen size is not allowed while updating the screen. */
8034 if (updating_screen)
8035 *pp = old_value;
8036 else if (full_screen
8037 #ifdef FEAT_GUI
8038 && !gui.starting
8039 #endif
8041 set_shellsize((int)Columns, (int)Rows, TRUE);
8042 else
8044 /* Postpone the resizing; check the size and cmdline position for
8045 * messages. */
8046 check_shellsize();
8047 if (cmdline_row > Rows - p_ch && Rows > p_ch)
8048 cmdline_row = Rows - p_ch;
8050 if (p_window >= Rows || !option_was_set((char_u *)"window"))
8051 p_window = Rows - 1;
8054 if (curbuf->b_p_sts < 0)
8056 errmsg = e_positive;
8057 curbuf->b_p_sts = 0;
8059 if (curbuf->b_p_ts <= 0)
8061 errmsg = e_positive;
8062 curbuf->b_p_ts = 8;
8064 if (curbuf->b_p_tw < 0)
8066 errmsg = e_positive;
8067 curbuf->b_p_tw = 0;
8069 if (p_tm < 0)
8071 errmsg = e_positive;
8072 p_tm = 0;
8074 if ((curwin->w_p_scr <= 0
8075 || (curwin->w_p_scr > curwin->w_height
8076 && curwin->w_height > 0))
8077 && full_screen)
8079 if (pp == &(curwin->w_p_scr))
8081 if (curwin->w_p_scr != 0)
8082 errmsg = e_scroll;
8083 win_comp_scroll(curwin);
8085 /* If 'scroll' became invalid because of a side effect silently adjust
8086 * it. */
8087 else if (curwin->w_p_scr <= 0)
8088 curwin->w_p_scr = 1;
8089 else /* curwin->w_p_scr > curwin->w_height */
8090 curwin->w_p_scr = curwin->w_height;
8092 if (p_report < 0)
8094 errmsg = e_positive;
8095 p_report = 1;
8097 if ((p_sj < -100 || p_sj >= Rows) && full_screen)
8099 if (Rows != old_Rows) /* Rows changed, just adjust p_sj */
8100 p_sj = Rows / 2;
8101 else
8103 errmsg = e_scroll;
8104 p_sj = 1;
8107 if (p_so < 0 && full_screen)
8109 errmsg = e_scroll;
8110 p_so = 0;
8112 if (p_siso < 0 && full_screen)
8114 errmsg = e_positive;
8115 p_siso = 0;
8117 #ifdef FEAT_CMDWIN
8118 if (p_cwh < 1)
8120 errmsg = e_positive;
8121 p_cwh = 1;
8123 #endif
8124 if (p_ut < 0)
8126 errmsg = e_positive;
8127 p_ut = 2000;
8129 if (p_ss < 0)
8131 errmsg = e_positive;
8132 p_ss = 0;
8135 /* May set global value for local option. */
8136 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0)
8137 *(long *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) = *pp;
8139 options[opt_idx].flags |= P_WAS_SET;
8141 comp_col(); /* in case 'columns' or 'ls' changed */
8142 if (curwin->w_curswant != MAXCOL)
8143 curwin->w_set_curswant = TRUE; /* in case 'tabstop' changed */
8144 check_redraw(options[opt_idx].flags);
8146 return errmsg;
8150 * Called after an option changed: check if something needs to be redrawn.
8152 static void
8153 check_redraw(flags)
8154 long_u flags;
8156 /* Careful: P_RCLR and P_RALL are a combination of other P_ flags */
8157 int clear = (flags & P_RCLR) == P_RCLR;
8158 int all = ((flags & P_RALL) == P_RALL || clear);
8160 #ifdef FEAT_WINDOWS
8161 if ((flags & P_RSTAT) || all) /* mark all status lines dirty */
8162 status_redraw_all();
8163 #endif
8165 if ((flags & P_RBUF) || (flags & P_RWIN) || all)
8166 changed_window_setting();
8167 if (flags & P_RBUF)
8168 redraw_curbuf_later(NOT_VALID);
8169 if (clear)
8170 redraw_all_later(CLEAR);
8171 else if (all)
8172 redraw_all_later(NOT_VALID);
8176 * Find index for option 'arg'.
8177 * Return -1 if not found.
8179 static int
8180 findoption(arg)
8181 char_u *arg;
8183 int opt_idx;
8184 char *s, *p;
8185 static short quick_tab[27] = {0, 0}; /* quick access table */
8186 int is_term_opt;
8189 * For first call: Initialize the quick-access table.
8190 * It contains the index for the first option that starts with a certain
8191 * letter. There are 26 letters, plus the first "t_" option.
8193 if (quick_tab[1] == 0)
8195 p = options[0].fullname;
8196 for (opt_idx = 1; (s = options[opt_idx].fullname) != NULL; opt_idx++)
8198 if (s[0] != p[0])
8200 if (s[0] == 't' && s[1] == '_')
8201 quick_tab[26] = opt_idx;
8202 else
8203 quick_tab[CharOrdLow(s[0])] = opt_idx;
8205 p = s;
8210 * Check for name starting with an illegal character.
8212 #ifdef EBCDIC
8213 if (!islower(arg[0]))
8214 #else
8215 if (arg[0] < 'a' || arg[0] > 'z')
8216 #endif
8217 return -1;
8219 is_term_opt = (arg[0] == 't' && arg[1] == '_');
8220 if (is_term_opt)
8221 opt_idx = quick_tab[26];
8222 else
8223 opt_idx = quick_tab[CharOrdLow(arg[0])];
8224 for ( ; (s = options[opt_idx].fullname) != NULL; opt_idx++)
8226 if (STRCMP(arg, s) == 0) /* match full name */
8227 break;
8229 if (s == NULL && !is_term_opt)
8231 opt_idx = quick_tab[CharOrdLow(arg[0])];
8232 for ( ; options[opt_idx].fullname != NULL; opt_idx++)
8234 s = options[opt_idx].shortname;
8235 if (s != NULL && STRCMP(arg, s) == 0) /* match short name */
8236 break;
8237 s = NULL;
8240 if (s == NULL)
8241 opt_idx = -1;
8242 return opt_idx;
8245 #if defined(FEAT_EVAL) || defined(FEAT_TCL) || defined(FEAT_MZSCHEME)
8247 * Get the value for an option.
8249 * Returns:
8250 * Number or Toggle option: 1, *numval gets value.
8251 * String option: 0, *stringval gets allocated string.
8252 * Hidden Number or Toggle option: -1.
8253 * hidden String option: -2.
8254 * unknown option: -3.
8257 get_option_value(name, numval, stringval, opt_flags)
8258 char_u *name;
8259 long *numval;
8260 char_u **stringval; /* NULL when only checking existance */
8261 int opt_flags;
8263 int opt_idx;
8264 char_u *varp;
8266 opt_idx = findoption(name);
8267 if (opt_idx < 0) /* unknown option */
8268 return -3;
8270 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
8272 if (options[opt_idx].flags & P_STRING)
8274 if (varp == NULL) /* hidden option */
8275 return -2;
8276 if (stringval != NULL)
8278 #ifdef FEAT_CRYPT
8279 /* never return the value of the crypt key */
8280 if ((char_u **)varp == &curbuf->b_p_key
8281 && **(char_u **)(varp) != NUL)
8282 *stringval = vim_strsave((char_u *)"*****");
8283 else
8284 #endif
8285 *stringval = vim_strsave(*(char_u **)(varp));
8287 return 0;
8290 if (varp == NULL) /* hidden option */
8291 return -1;
8292 if (options[opt_idx].flags & P_NUM)
8293 *numval = *(long *)varp;
8294 else
8296 /* Special case: 'modified' is b_changed, but we also want to consider
8297 * it set when 'ff' or 'fenc' changed. */
8298 if ((int *)varp == &curbuf->b_changed)
8299 *numval = curbufIsChanged();
8300 else
8301 *numval = *(int *)varp;
8303 return 1;
8305 #endif
8308 * Set the value of option "name".
8309 * Use "string" for string options, use "number" for other options.
8311 void
8312 set_option_value(name, number, string, opt_flags)
8313 char_u *name;
8314 long number;
8315 char_u *string;
8316 int opt_flags; /* OPT_LOCAL or 0 (both) */
8318 int opt_idx;
8319 char_u *varp;
8320 long_u flags;
8322 opt_idx = findoption(name);
8323 if (opt_idx < 0)
8324 EMSG2(_("E355: Unknown option: %s"), name);
8325 else
8327 flags = options[opt_idx].flags;
8328 #ifdef HAVE_SANDBOX
8329 /* Disallow changing some options in the sandbox */
8330 if (sandbox > 0 && (flags & P_SECURE))
8332 EMSG(_(e_sandbox));
8333 return;
8335 #endif
8336 if (flags & P_STRING)
8337 set_string_option(opt_idx, string, opt_flags);
8338 else
8340 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
8341 if (varp != NULL) /* hidden option is not changed */
8343 if (number == 0 && string != NULL)
8345 int index;
8347 /* Either we are given a string or we are setting option
8348 * to zero. */
8349 for (index = 0; string[index] == '0'; ++index)
8351 if (string[index] != NUL || index == 0)
8353 /* There's another character after zeros or the string
8354 * is empty. In both cases, we are trying to set a
8355 * num option using a string. */
8356 EMSG3(_("E521: Number required: &%s = '%s'"),
8357 name, string);
8358 return; /* do nothing as we hit an error */
8362 if (flags & P_NUM)
8363 (void)set_num_option(opt_idx, varp, number,
8364 NULL, 0, opt_flags);
8365 else
8366 (void)set_bool_option(opt_idx, varp, (int)number,
8367 opt_flags);
8374 * Get the terminal code for a terminal option.
8375 * Returns NULL when not found.
8377 char_u *
8378 get_term_code(tname)
8379 char_u *tname;
8381 int opt_idx;
8382 char_u *varp;
8384 if (tname[0] != 't' || tname[1] != '_' ||
8385 tname[2] == NUL || tname[3] == NUL)
8386 return NULL;
8387 if ((opt_idx = findoption(tname)) >= 0)
8389 varp = get_varp(&(options[opt_idx]));
8390 if (varp != NULL)
8391 varp = *(char_u **)(varp);
8392 return varp;
8394 return find_termcode(tname + 2);
8397 char_u *
8398 get_highlight_default()
8400 int i;
8402 i = findoption((char_u *)"hl");
8403 if (i >= 0)
8404 return options[i].def_val[VI_DEFAULT];
8405 return (char_u *)NULL;
8408 #if defined(FEAT_MBYTE) || defined(PROTO)
8409 char_u *
8410 get_encoding_default()
8412 int i;
8414 i = findoption((char_u *)"enc");
8415 if (i >= 0)
8416 return options[i].def_val[VI_DEFAULT];
8417 return (char_u *)NULL;
8419 #endif
8422 * Translate a string like "t_xx", "<t_xx>" or "<S-Tab>" to a key number.
8424 static int
8425 find_key_option(arg)
8426 char_u *arg;
8428 int key;
8429 int modifiers;
8432 * Don't use get_special_key_code() for t_xx, we don't want it to call
8433 * add_termcap_entry().
8435 if (arg[0] == 't' && arg[1] == '_' && arg[2] && arg[3])
8436 key = TERMCAP2KEY(arg[2], arg[3]);
8437 else
8439 --arg; /* put arg at the '<' */
8440 modifiers = 0;
8441 key = find_special_key(&arg, &modifiers, TRUE);
8442 if (modifiers) /* can't handle modifiers here */
8443 key = 0;
8445 return key;
8449 * if 'all' == 0: show changed options
8450 * if 'all' == 1: show all normal options
8451 * if 'all' == 2: show all terminal options
8453 static void
8454 showoptions(all, opt_flags)
8455 int all;
8456 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
8458 struct vimoption *p;
8459 int col;
8460 int isterm;
8461 char_u *varp;
8462 struct vimoption **items;
8463 int item_count;
8464 int run;
8465 int row, rows;
8466 int cols;
8467 int i;
8468 int len;
8470 #define INC 20
8471 #define GAP 3
8473 items = (struct vimoption **)alloc((unsigned)(sizeof(struct vimoption *) *
8474 PARAM_COUNT));
8475 if (items == NULL)
8476 return;
8478 /* Highlight title */
8479 if (all == 2)
8480 MSG_PUTS_TITLE(_("\n--- Terminal codes ---"));
8481 else if (opt_flags & OPT_GLOBAL)
8482 MSG_PUTS_TITLE(_("\n--- Global option values ---"));
8483 else if (opt_flags & OPT_LOCAL)
8484 MSG_PUTS_TITLE(_("\n--- Local option values ---"));
8485 else
8486 MSG_PUTS_TITLE(_("\n--- Options ---"));
8489 * do the loop two times:
8490 * 1. display the short items
8491 * 2. display the long items (only strings and numbers)
8493 for (run = 1; run <= 2 && !got_int; ++run)
8496 * collect the items in items[]
8498 item_count = 0;
8499 for (p = &options[0]; p->fullname != NULL; p++)
8501 varp = NULL;
8502 isterm = istermoption(p);
8503 if (opt_flags != 0)
8505 if (p->indir != PV_NONE && !isterm)
8506 varp = get_varp_scope(p, opt_flags);
8508 else
8509 varp = get_varp(p);
8510 if (varp != NULL
8511 && ((all == 2 && isterm)
8512 || (all == 1 && !isterm)
8513 || (all == 0 && !optval_default(p, varp))))
8515 if (p->flags & P_BOOL)
8516 len = 1; /* a toggle option fits always */
8517 else
8519 option_value2string(p, opt_flags);
8520 len = (int)STRLEN(p->fullname) + vim_strsize(NameBuff) + 1;
8522 if ((len <= INC - GAP && run == 1) ||
8523 (len > INC - GAP && run == 2))
8524 items[item_count++] = p;
8529 * display the items
8531 if (run == 1)
8533 cols = (Columns + GAP - 3) / INC;
8534 if (cols == 0)
8535 cols = 1;
8536 rows = (item_count + cols - 1) / cols;
8538 else /* run == 2 */
8539 rows = item_count;
8540 for (row = 0; row < rows && !got_int; ++row)
8542 msg_putchar('\n'); /* go to next line */
8543 if (got_int) /* 'q' typed in more */
8544 break;
8545 col = 0;
8546 for (i = row; i < item_count; i += rows)
8548 msg_col = col; /* make columns */
8549 showoneopt(items[i], opt_flags);
8550 col += INC;
8552 out_flush();
8553 ui_breakcheck();
8556 vim_free(items);
8560 * Return TRUE if option "p" has its default value.
8562 static int
8563 optval_default(p, varp)
8564 struct vimoption *p;
8565 char_u *varp;
8567 int dvi;
8569 if (varp == NULL)
8570 return TRUE; /* hidden option is always at default */
8571 dvi = ((p->flags & P_VI_DEF) || p_cp) ? VI_DEFAULT : VIM_DEFAULT;
8572 if (p->flags & P_NUM)
8573 return (*(long *)varp == (long)(long_i)p->def_val[dvi]);
8574 if (p->flags & P_BOOL)
8575 /* the cast to long is required for Manx C, long_i is
8576 * needed for MSVC */
8577 return (*(int *)varp == (int)(long)(long_i)p->def_val[dvi]);
8578 /* P_STRING */
8579 return (STRCMP(*(char_u **)varp, p->def_val[dvi]) == 0);
8583 * showoneopt: show the value of one option
8584 * must not be called with a hidden option!
8586 static void
8587 showoneopt(p, opt_flags)
8588 struct vimoption *p;
8589 int opt_flags; /* OPT_LOCAL or OPT_GLOBAL */
8591 char_u *varp;
8592 int save_silent = silent_mode;
8594 silent_mode = FALSE;
8595 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
8597 varp = get_varp_scope(p, opt_flags);
8599 /* for 'modified' we also need to check if 'ff' or 'fenc' changed. */
8600 if ((p->flags & P_BOOL) && ((int *)varp == &curbuf->b_changed
8601 ? !curbufIsChanged() : !*(int *)varp))
8602 MSG_PUTS("no");
8603 else if ((p->flags & P_BOOL) && *(int *)varp < 0)
8604 MSG_PUTS("--");
8605 else
8606 MSG_PUTS(" ");
8607 MSG_PUTS(p->fullname);
8608 if (!(p->flags & P_BOOL))
8610 msg_putchar('=');
8611 /* put value string in NameBuff */
8612 option_value2string(p, opt_flags);
8613 msg_outtrans(NameBuff);
8616 silent_mode = save_silent;
8617 info_message = FALSE;
8621 * Write modified options as ":set" commands to a file.
8623 * There are three values for "opt_flags":
8624 * OPT_GLOBAL: Write global option values and fresh values of
8625 * buffer-local options (used for start of a session
8626 * file).
8627 * OPT_GLOBAL + OPT_LOCAL: Idem, add fresh values of window-local options for
8628 * curwin (used for a vimrc file).
8629 * OPT_LOCAL: Write buffer-local option values for curbuf, fresh
8630 * and local values for window-local options of
8631 * curwin. Local values are also written when at the
8632 * default value, because a modeline or autocommand
8633 * may have set them when doing ":edit file" and the
8634 * user has set them back at the default or fresh
8635 * value.
8636 * When "local_only" is TRUE, don't write fresh
8637 * values, only local values (for ":mkview").
8638 * (fresh value = value used for a new buffer or window for a local option).
8640 * Return FAIL on error, OK otherwise.
8643 makeset(fd, opt_flags, local_only)
8644 FILE *fd;
8645 int opt_flags;
8646 int local_only;
8648 struct vimoption *p;
8649 char_u *varp; /* currently used value */
8650 char_u *varp_fresh; /* local value */
8651 char_u *varp_local = NULL; /* fresh value */
8652 char *cmd;
8653 int round;
8654 int pri;
8657 * The options that don't have a default (terminal name, columns, lines)
8658 * are never written. Terminal options are also not written.
8659 * Do the loop over "options[]" twice: once for options with the
8660 * P_PRI_MKRC flag and once without.
8662 for (pri = 1; pri >= 0; --pri)
8664 for (p = &options[0]; !istermoption(p); p++)
8665 if (!(p->flags & P_NO_MKRC)
8666 && !istermoption(p)
8667 && ((pri == 1) == ((p->flags & P_PRI_MKRC) != 0)))
8669 /* skip global option when only doing locals */
8670 if (p->indir == PV_NONE && !(opt_flags & OPT_GLOBAL))
8671 continue;
8673 /* Do not store options like 'bufhidden' and 'syntax' in a vimrc
8674 * file, they are always buffer-specific. */
8675 if ((opt_flags & OPT_GLOBAL) && (p->flags & P_NOGLOB))
8676 continue;
8678 /* Global values are only written when not at the default value. */
8679 varp = get_varp_scope(p, opt_flags);
8680 if ((opt_flags & OPT_GLOBAL) && optval_default(p, varp))
8681 continue;
8683 round = 2;
8684 if (p->indir != PV_NONE)
8686 if (p->var == VAR_WIN)
8688 /* skip window-local option when only doing globals */
8689 if (!(opt_flags & OPT_LOCAL))
8690 continue;
8691 /* When fresh value of window-local option is not at the
8692 * default, need to write it too. */
8693 if (!(opt_flags & OPT_GLOBAL) && !local_only)
8695 varp_fresh = get_varp_scope(p, OPT_GLOBAL);
8696 if (!optval_default(p, varp_fresh))
8698 round = 1;
8699 varp_local = varp;
8700 varp = varp_fresh;
8706 /* Round 1: fresh value for window-local options.
8707 * Round 2: other values */
8708 for ( ; round <= 2; varp = varp_local, ++round)
8710 if (round == 1 || (opt_flags & OPT_GLOBAL))
8711 cmd = "set";
8712 else
8713 cmd = "setlocal";
8715 if (p->flags & P_BOOL)
8717 if (put_setbool(fd, cmd, p->fullname, *(int *)varp) == FAIL)
8718 return FAIL;
8720 else if (p->flags & P_NUM)
8722 if (put_setnum(fd, cmd, p->fullname, (long *)varp) == FAIL)
8723 return FAIL;
8725 else /* P_STRING */
8727 #if defined(FEAT_SYN_HL) || defined(FEAT_AUTOCMD)
8728 int do_endif = FALSE;
8730 /* Don't set 'syntax' and 'filetype' again if the value is
8731 * already right, avoids reloading the syntax file. */
8732 if (
8733 # if defined(FEAT_SYN_HL)
8734 p->indir == PV_SYN
8735 # if defined(FEAT_AUTOCMD)
8737 # endif
8738 # endif
8739 # if defined(FEAT_AUTOCMD)
8740 p->indir == PV_FT
8741 # endif
8744 if (fprintf(fd, "if &%s != '%s'", p->fullname,
8745 *(char_u **)(varp)) < 0
8746 || put_eol(fd) < 0)
8747 return FAIL;
8748 do_endif = TRUE;
8750 #endif
8751 if (put_setstring(fd, cmd, p->fullname, (char_u **)varp,
8752 (p->flags & P_EXPAND) != 0) == FAIL)
8753 return FAIL;
8754 #if defined(FEAT_SYN_HL) || defined(FEAT_AUTOCMD)
8755 if (do_endif)
8757 if (put_line(fd, "endif") == FAIL)
8758 return FAIL;
8760 #endif
8765 return OK;
8768 #if defined(FEAT_FOLDING) || defined(PROTO)
8770 * Generate set commands for the local fold options only. Used when
8771 * 'sessionoptions' or 'viewoptions' contains "folds" but not "options".
8774 makefoldset(fd)
8775 FILE *fd;
8777 if (put_setstring(fd, "setlocal", "fdm", &curwin->w_p_fdm, FALSE) == FAIL
8778 # ifdef FEAT_EVAL
8779 || put_setstring(fd, "setlocal", "fde", &curwin->w_p_fde, FALSE)
8780 == FAIL
8781 # endif
8782 || put_setstring(fd, "setlocal", "fmr", &curwin->w_p_fmr, FALSE)
8783 == FAIL
8784 || put_setstring(fd, "setlocal", "fdi", &curwin->w_p_fdi, FALSE)
8785 == FAIL
8786 || put_setnum(fd, "setlocal", "fdl", &curwin->w_p_fdl) == FAIL
8787 || put_setnum(fd, "setlocal", "fml", &curwin->w_p_fml) == FAIL
8788 || put_setnum(fd, "setlocal", "fdn", &curwin->w_p_fdn) == FAIL
8789 || put_setbool(fd, "setlocal", "fen", curwin->w_p_fen) == FAIL
8791 return FAIL;
8793 return OK;
8795 #endif
8797 static int
8798 put_setstring(fd, cmd, name, valuep, expand)
8799 FILE *fd;
8800 char *cmd;
8801 char *name;
8802 char_u **valuep;
8803 int expand;
8805 char_u *s;
8806 char_u buf[MAXPATHL];
8808 if (fprintf(fd, "%s %s=", cmd, name) < 0)
8809 return FAIL;
8810 if (*valuep != NULL)
8812 /* Output 'pastetoggle' as key names. For other
8813 * options some characters have to be escaped with
8814 * CTRL-V or backslash */
8815 if (valuep == &p_pt)
8817 s = *valuep;
8818 while (*s != NUL)
8819 if (put_escstr(fd, str2special(&s, FALSE), 2) == FAIL)
8820 return FAIL;
8822 else if (expand)
8824 home_replace(NULL, *valuep, buf, MAXPATHL, FALSE);
8825 if (put_escstr(fd, buf, 2) == FAIL)
8826 return FAIL;
8828 else if (put_escstr(fd, *valuep, 2) == FAIL)
8829 return FAIL;
8831 if (put_eol(fd) < 0)
8832 return FAIL;
8833 return OK;
8836 static int
8837 put_setnum(fd, cmd, name, valuep)
8838 FILE *fd;
8839 char *cmd;
8840 char *name;
8841 long *valuep;
8843 long wc;
8845 if (fprintf(fd, "%s %s=", cmd, name) < 0)
8846 return FAIL;
8847 if (wc_use_keyname((char_u *)valuep, &wc))
8849 /* print 'wildchar' and 'wildcharm' as a key name */
8850 if (fputs((char *)get_special_key_name((int)wc, 0), fd) < 0)
8851 return FAIL;
8853 else if (fprintf(fd, "%ld", *valuep) < 0)
8854 return FAIL;
8855 if (put_eol(fd) < 0)
8856 return FAIL;
8857 return OK;
8860 static int
8861 put_setbool(fd, cmd, name, value)
8862 FILE *fd;
8863 char *cmd;
8864 char *name;
8865 int value;
8867 if (value < 0) /* global/local option using global value */
8868 return OK;
8869 if (fprintf(fd, "%s %s%s", cmd, value ? "" : "no", name) < 0
8870 || put_eol(fd) < 0)
8871 return FAIL;
8872 return OK;
8876 * Clear all the terminal options.
8877 * If the option has been allocated, free the memory.
8878 * Terminal options are never hidden or indirect.
8880 void
8881 clear_termoptions()
8884 * Reset a few things before clearing the old options. This may cause
8885 * outputting a few things that the terminal doesn't understand, but the
8886 * screen will be cleared later, so this is OK.
8888 #ifdef FEAT_MOUSE_TTY
8889 mch_setmouse(FALSE); /* switch mouse off */
8890 #endif
8891 #ifdef FEAT_TITLE
8892 mch_restore_title(3); /* restore window titles */
8893 #endif
8894 #if defined(FEAT_XCLIPBOARD) && defined(FEAT_GUI)
8895 /* When starting the GUI close the display opened for the clipboard.
8896 * After restoring the title, because that will need the display. */
8897 if (gui.starting)
8898 clear_xterm_clip();
8899 #endif
8900 #ifdef WIN3264
8902 * Check if this is allowed now.
8904 if (can_end_termcap_mode(FALSE) == TRUE)
8905 #endif
8906 stoptermcap(); /* stop termcap mode */
8908 free_termoptions();
8911 void
8912 free_termoptions()
8914 struct vimoption *p;
8916 for (p = &options[0]; p->fullname != NULL; p++)
8917 if (istermoption(p))
8919 if (p->flags & P_ALLOCED)
8920 free_string_option(*(char_u **)(p->var));
8921 if (p->flags & P_DEF_ALLOCED)
8922 free_string_option(p->def_val[VI_DEFAULT]);
8923 *(char_u **)(p->var) = empty_option;
8924 p->def_val[VI_DEFAULT] = empty_option;
8925 p->flags &= ~(P_ALLOCED|P_DEF_ALLOCED);
8927 clear_termcodes();
8931 * Set the terminal option defaults to the current value.
8932 * Used after setting the terminal name.
8934 void
8935 set_term_defaults()
8937 struct vimoption *p;
8939 for (p = &options[0]; p->fullname != NULL; p++)
8941 if (istermoption(p) && p->def_val[VI_DEFAULT] != *(char_u **)(p->var))
8943 if (p->flags & P_DEF_ALLOCED)
8945 free_string_option(p->def_val[VI_DEFAULT]);
8946 p->flags &= ~P_DEF_ALLOCED;
8948 p->def_val[VI_DEFAULT] = *(char_u **)(p->var);
8949 if (p->flags & P_ALLOCED)
8951 p->flags |= P_DEF_ALLOCED;
8952 p->flags &= ~P_ALLOCED; /* don't free the value now */
8959 * return TRUE if 'p' starts with 't_'
8961 static int
8962 istermoption(p)
8963 struct vimoption *p;
8965 return (p->fullname[0] == 't' && p->fullname[1] == '_');
8969 * Compute columns for ruler and shown command. 'sc_col' is also used to
8970 * decide what the maximum length of a message on the status line can be.
8971 * If there is a status line for the last window, 'sc_col' is independent
8972 * of 'ru_col'.
8975 #define COL_RULER 17 /* columns needed by standard ruler */
8977 void
8978 comp_col()
8980 #if defined(FEAT_CMDL_INFO) && defined(FEAT_WINDOWS)
8981 int last_has_status = (p_ls == 2 || (p_ls == 1 && firstwin != lastwin));
8983 sc_col = 0;
8984 ru_col = 0;
8985 if (p_ru)
8987 #ifdef FEAT_STL_OPT
8988 ru_col = (ru_wid ? ru_wid : COL_RULER) + 1;
8989 #else
8990 ru_col = COL_RULER + 1;
8991 #endif
8992 /* no last status line, adjust sc_col */
8993 if (!last_has_status)
8994 sc_col = ru_col;
8996 if (p_sc)
8998 sc_col += SHOWCMD_COLS;
8999 if (!p_ru || last_has_status) /* no need for separating space */
9000 ++sc_col;
9002 sc_col = Columns - sc_col;
9003 ru_col = Columns - ru_col;
9004 if (sc_col <= 0) /* screen too narrow, will become a mess */
9005 sc_col = 1;
9006 if (ru_col <= 0)
9007 ru_col = 1;
9008 #else
9009 sc_col = Columns;
9010 ru_col = Columns;
9011 #endif
9015 * Get pointer to option variable, depending on local or global scope.
9017 static char_u *
9018 get_varp_scope(p, opt_flags)
9019 struct vimoption *p;
9020 int opt_flags;
9022 if ((opt_flags & OPT_GLOBAL) && p->indir != PV_NONE)
9024 if (p->var == VAR_WIN)
9025 return (char_u *)GLOBAL_WO(get_varp(p));
9026 return p->var;
9028 if ((opt_flags & OPT_LOCAL) && ((int)p->indir & PV_BOTH))
9030 switch ((int)p->indir)
9032 #ifdef FEAT_QUICKFIX
9033 case PV_EFM: return (char_u *)&(curbuf->b_p_efm);
9034 case PV_GP: return (char_u *)&(curbuf->b_p_gp);
9035 case PV_MP: return (char_u *)&(curbuf->b_p_mp);
9036 #endif
9037 case PV_EP: return (char_u *)&(curbuf->b_p_ep);
9038 case PV_KP: return (char_u *)&(curbuf->b_p_kp);
9039 case PV_PATH: return (char_u *)&(curbuf->b_p_path);
9040 case PV_AR: return (char_u *)&(curbuf->b_p_ar);
9041 case PV_TAGS: return (char_u *)&(curbuf->b_p_tags);
9042 #ifdef FEAT_FIND_ID
9043 case PV_DEF: return (char_u *)&(curbuf->b_p_def);
9044 case PV_INC: return (char_u *)&(curbuf->b_p_inc);
9045 #endif
9046 #ifdef FEAT_INS_EXPAND
9047 case PV_DICT: return (char_u *)&(curbuf->b_p_dict);
9048 case PV_TSR: return (char_u *)&(curbuf->b_p_tsr);
9049 #endif
9050 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9051 case PV_BEXPR: return (char_u *)&(curbuf->b_p_bexpr);
9052 #endif
9053 #ifdef FEAT_STL_OPT
9054 case PV_STL: return (char_u *)&(curwin->w_p_stl);
9055 #endif
9057 return NULL; /* "cannot happen" */
9059 return get_varp(p);
9063 * Get pointer to option variable.
9065 static char_u *
9066 get_varp(p)
9067 struct vimoption *p;
9069 /* hidden option, always return NULL */
9070 if (p->var == NULL)
9071 return NULL;
9073 switch ((int)p->indir)
9075 case PV_NONE: return p->var;
9077 /* global option with local value: use local value if it's been set */
9078 case PV_EP: return *curbuf->b_p_ep != NUL
9079 ? (char_u *)&curbuf->b_p_ep : p->var;
9080 case PV_KP: return *curbuf->b_p_kp != NUL
9081 ? (char_u *)&curbuf->b_p_kp : p->var;
9082 case PV_PATH: return *curbuf->b_p_path != NUL
9083 ? (char_u *)&(curbuf->b_p_path) : p->var;
9084 case PV_AR: return curbuf->b_p_ar >= 0
9085 ? (char_u *)&(curbuf->b_p_ar) : p->var;
9086 case PV_TAGS: return *curbuf->b_p_tags != NUL
9087 ? (char_u *)&(curbuf->b_p_tags) : p->var;
9088 #ifdef FEAT_FIND_ID
9089 case PV_DEF: return *curbuf->b_p_def != NUL
9090 ? (char_u *)&(curbuf->b_p_def) : p->var;
9091 case PV_INC: return *curbuf->b_p_inc != NUL
9092 ? (char_u *)&(curbuf->b_p_inc) : p->var;
9093 #endif
9094 #ifdef FEAT_INS_EXPAND
9095 case PV_DICT: return *curbuf->b_p_dict != NUL
9096 ? (char_u *)&(curbuf->b_p_dict) : p->var;
9097 case PV_TSR: return *curbuf->b_p_tsr != NUL
9098 ? (char_u *)&(curbuf->b_p_tsr) : p->var;
9099 #endif
9100 #ifdef FEAT_QUICKFIX
9101 case PV_EFM: return *curbuf->b_p_efm != NUL
9102 ? (char_u *)&(curbuf->b_p_efm) : p->var;
9103 case PV_GP: return *curbuf->b_p_gp != NUL
9104 ? (char_u *)&(curbuf->b_p_gp) : p->var;
9105 case PV_MP: return *curbuf->b_p_mp != NUL
9106 ? (char_u *)&(curbuf->b_p_mp) : p->var;
9107 #endif
9108 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9109 case PV_BEXPR: return *curbuf->b_p_bexpr != NUL
9110 ? (char_u *)&(curbuf->b_p_bexpr) : p->var;
9111 #endif
9112 #ifdef FEAT_STL_OPT
9113 case PV_STL: return *curwin->w_p_stl != NUL
9114 ? (char_u *)&(curwin->w_p_stl) : p->var;
9115 #endif
9117 #ifdef FEAT_ARABIC
9118 case PV_ARAB: return (char_u *)&(curwin->w_p_arab);
9119 #endif
9120 case PV_LIST: return (char_u *)&(curwin->w_p_list);
9121 #ifdef FEAT_SPELL
9122 case PV_SPELL: return (char_u *)&(curwin->w_p_spell);
9123 #endif
9124 #ifdef FEAT_SYN_HL
9125 case PV_CUC: return (char_u *)&(curwin->w_p_cuc);
9126 case PV_CUL: return (char_u *)&(curwin->w_p_cul);
9127 #endif
9128 #ifdef FEAT_DIFF
9129 case PV_DIFF: return (char_u *)&(curwin->w_p_diff);
9130 #endif
9131 #ifdef FEAT_FOLDING
9132 case PV_FDC: return (char_u *)&(curwin->w_p_fdc);
9133 case PV_FEN: return (char_u *)&(curwin->w_p_fen);
9134 case PV_FDI: return (char_u *)&(curwin->w_p_fdi);
9135 case PV_FDL: return (char_u *)&(curwin->w_p_fdl);
9136 case PV_FDM: return (char_u *)&(curwin->w_p_fdm);
9137 case PV_FML: return (char_u *)&(curwin->w_p_fml);
9138 case PV_FDN: return (char_u *)&(curwin->w_p_fdn);
9139 # ifdef FEAT_EVAL
9140 case PV_FDE: return (char_u *)&(curwin->w_p_fde);
9141 case PV_FDT: return (char_u *)&(curwin->w_p_fdt);
9142 # endif
9143 case PV_FMR: return (char_u *)&(curwin->w_p_fmr);
9144 #endif
9145 case PV_NU: return (char_u *)&(curwin->w_p_nu);
9146 #ifdef FEAT_LINEBREAK
9147 case PV_NUW: return (char_u *)&(curwin->w_p_nuw);
9148 #endif
9149 #ifdef FEAT_WINDOWS
9150 case PV_WFH: return (char_u *)&(curwin->w_p_wfh);
9151 #endif
9152 #ifdef FEAT_VERTSPLIT
9153 case PV_WFW: return (char_u *)&(curwin->w_p_wfw);
9154 #endif
9155 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
9156 case PV_PVW: return (char_u *)&(curwin->w_p_pvw);
9157 #endif
9158 #ifdef FEAT_RIGHTLEFT
9159 case PV_RL: return (char_u *)&(curwin->w_p_rl);
9160 case PV_RLC: return (char_u *)&(curwin->w_p_rlc);
9161 #endif
9162 case PV_SCROLL: return (char_u *)&(curwin->w_p_scr);
9163 case PV_WRAP: return (char_u *)&(curwin->w_p_wrap);
9164 #ifdef FEAT_LINEBREAK
9165 case PV_LBR: return (char_u *)&(curwin->w_p_lbr);
9166 #endif
9167 #ifdef FEAT_SCROLLBIND
9168 case PV_SCBIND: return (char_u *)&(curwin->w_p_scb);
9169 #endif
9171 case PV_AI: return (char_u *)&(curbuf->b_p_ai);
9172 case PV_BIN: return (char_u *)&(curbuf->b_p_bin);
9173 #ifdef FEAT_MBYTE
9174 case PV_BOMB: return (char_u *)&(curbuf->b_p_bomb);
9175 #endif
9176 #if defined(FEAT_QUICKFIX)
9177 case PV_BH: return (char_u *)&(curbuf->b_p_bh);
9178 case PV_BT: return (char_u *)&(curbuf->b_p_bt);
9179 #endif
9180 case PV_BL: return (char_u *)&(curbuf->b_p_bl);
9181 case PV_CI: return (char_u *)&(curbuf->b_p_ci);
9182 #ifdef FEAT_CINDENT
9183 case PV_CIN: return (char_u *)&(curbuf->b_p_cin);
9184 case PV_CINK: return (char_u *)&(curbuf->b_p_cink);
9185 case PV_CINO: return (char_u *)&(curbuf->b_p_cino);
9186 #endif
9187 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
9188 case PV_CINW: return (char_u *)&(curbuf->b_p_cinw);
9189 #endif
9190 #ifdef FEAT_COMMENTS
9191 case PV_COM: return (char_u *)&(curbuf->b_p_com);
9192 #endif
9193 #ifdef FEAT_FOLDING
9194 case PV_CMS: return (char_u *)&(curbuf->b_p_cms);
9195 #endif
9196 #ifdef FEAT_INS_EXPAND
9197 case PV_CPT: return (char_u *)&(curbuf->b_p_cpt);
9198 #endif
9199 #ifdef FEAT_COMPL_FUNC
9200 case PV_CFU: return (char_u *)&(curbuf->b_p_cfu);
9201 case PV_OFU: return (char_u *)&(curbuf->b_p_ofu);
9202 #endif
9203 case PV_EOL: return (char_u *)&(curbuf->b_p_eol);
9204 case PV_ET: return (char_u *)&(curbuf->b_p_et);
9205 #ifdef FEAT_MBYTE
9206 case PV_FENC: return (char_u *)&(curbuf->b_p_fenc);
9207 #endif
9208 case PV_FF: return (char_u *)&(curbuf->b_p_ff);
9209 #ifdef FEAT_AUTOCMD
9210 case PV_FT: return (char_u *)&(curbuf->b_p_ft);
9211 #endif
9212 case PV_FO: return (char_u *)&(curbuf->b_p_fo);
9213 case PV_FLP: return (char_u *)&(curbuf->b_p_flp);
9214 case PV_IMI: return (char_u *)&(curbuf->b_p_iminsert);
9215 case PV_IMS: return (char_u *)&(curbuf->b_p_imsearch);
9216 case PV_INF: return (char_u *)&(curbuf->b_p_inf);
9217 case PV_ISK: return (char_u *)&(curbuf->b_p_isk);
9218 #ifdef FEAT_FIND_ID
9219 # ifdef FEAT_EVAL
9220 case PV_INEX: return (char_u *)&(curbuf->b_p_inex);
9221 # endif
9222 #endif
9223 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
9224 case PV_INDE: return (char_u *)&(curbuf->b_p_inde);
9225 case PV_INDK: return (char_u *)&(curbuf->b_p_indk);
9226 #endif
9227 #ifdef FEAT_EVAL
9228 case PV_FEX: return (char_u *)&(curbuf->b_p_fex);
9229 #endif
9230 #ifdef FEAT_CRYPT
9231 case PV_KEY: return (char_u *)&(curbuf->b_p_key);
9232 #endif
9233 #ifdef FEAT_LISP
9234 case PV_LISP: return (char_u *)&(curbuf->b_p_lisp);
9235 #endif
9236 case PV_ML: return (char_u *)&(curbuf->b_p_ml);
9237 case PV_MPS: return (char_u *)&(curbuf->b_p_mps);
9238 case PV_MA: return (char_u *)&(curbuf->b_p_ma);
9239 case PV_MOD: return (char_u *)&(curbuf->b_changed);
9240 case PV_NF: return (char_u *)&(curbuf->b_p_nf);
9241 #ifdef FEAT_OSFILETYPE
9242 case PV_OFT: return (char_u *)&(curbuf->b_p_oft);
9243 #endif
9244 case PV_PI: return (char_u *)&(curbuf->b_p_pi);
9245 #ifdef FEAT_TEXTOBJ
9246 case PV_QE: return (char_u *)&(curbuf->b_p_qe);
9247 #endif
9248 case PV_RO: return (char_u *)&(curbuf->b_p_ro);
9249 #ifdef FEAT_SMARTINDENT
9250 case PV_SI: return (char_u *)&(curbuf->b_p_si);
9251 #endif
9252 #ifndef SHORT_FNAME
9253 case PV_SN: return (char_u *)&(curbuf->b_p_sn);
9254 #endif
9255 case PV_STS: return (char_u *)&(curbuf->b_p_sts);
9256 #ifdef FEAT_SEARCHPATH
9257 case PV_SUA: return (char_u *)&(curbuf->b_p_sua);
9258 #endif
9259 case PV_SWF: return (char_u *)&(curbuf->b_p_swf);
9260 #ifdef FEAT_SYN_HL
9261 case PV_SMC: return (char_u *)&(curbuf->b_p_smc);
9262 case PV_SYN: return (char_u *)&(curbuf->b_p_syn);
9263 #endif
9264 #ifdef FEAT_SPELL
9265 case PV_SPC: return (char_u *)&(curbuf->b_p_spc);
9266 case PV_SPF: return (char_u *)&(curbuf->b_p_spf);
9267 case PV_SPL: return (char_u *)&(curbuf->b_p_spl);
9268 #endif
9269 case PV_SW: return (char_u *)&(curbuf->b_p_sw);
9270 case PV_TS: return (char_u *)&(curbuf->b_p_ts);
9271 case PV_TW: return (char_u *)&(curbuf->b_p_tw);
9272 case PV_TX: return (char_u *)&(curbuf->b_p_tx);
9273 case PV_WM: return (char_u *)&(curbuf->b_p_wm);
9274 #ifdef FEAT_KEYMAP
9275 case PV_KMAP: return (char_u *)&(curbuf->b_p_keymap);
9276 #endif
9277 default: EMSG(_("E356: get_varp ERROR"));
9279 /* always return a valid pointer to avoid a crash! */
9280 return (char_u *)&(curbuf->b_p_wm);
9284 * Get the value of 'equalprg', either the buffer-local one or the global one.
9286 char_u *
9287 get_equalprg()
9289 if (*curbuf->b_p_ep == NUL)
9290 return p_ep;
9291 return curbuf->b_p_ep;
9294 #if defined(FEAT_WINDOWS) || defined(PROTO)
9296 * Copy options from one window to another.
9297 * Used when splitting a window.
9299 void
9300 win_copy_options(wp_from, wp_to)
9301 win_T *wp_from;
9302 win_T *wp_to;
9304 copy_winopt(&wp_from->w_onebuf_opt, &wp_to->w_onebuf_opt);
9305 copy_winopt(&wp_from->w_allbuf_opt, &wp_to->w_allbuf_opt);
9306 # ifdef FEAT_RIGHTLEFT
9307 # ifdef FEAT_FKMAP
9308 /* Is this right? */
9309 wp_to->w_farsi = wp_from->w_farsi;
9310 # endif
9311 # endif
9313 #endif
9316 * Copy the options from one winopt_T to another.
9317 * Doesn't free the old option values in "to", use clear_winopt() for that.
9318 * The 'scroll' option is not copied, because it depends on the window height.
9319 * The 'previewwindow' option is reset, there can be only one preview window.
9321 void
9322 copy_winopt(from, to)
9323 winopt_T *from;
9324 winopt_T *to;
9326 #ifdef FEAT_ARABIC
9327 to->wo_arab = from->wo_arab;
9328 #endif
9329 to->wo_list = from->wo_list;
9330 to->wo_nu = from->wo_nu;
9331 #ifdef FEAT_LINEBREAK
9332 to->wo_nuw = from->wo_nuw;
9333 #endif
9334 #ifdef FEAT_RIGHTLEFT
9335 to->wo_rl = from->wo_rl;
9336 to->wo_rlc = vim_strsave(from->wo_rlc);
9337 #endif
9338 #ifdef FEAT_STL_OPT
9339 to->wo_stl = vim_strsave(from->wo_stl);
9340 #endif
9341 to->wo_wrap = from->wo_wrap;
9342 #ifdef FEAT_LINEBREAK
9343 to->wo_lbr = from->wo_lbr;
9344 #endif
9345 #ifdef FEAT_SCROLLBIND
9346 to->wo_scb = from->wo_scb;
9347 #endif
9348 #ifdef FEAT_SPELL
9349 to->wo_spell = from->wo_spell;
9350 #endif
9351 #ifdef FEAT_SYN_HL
9352 to->wo_cuc = from->wo_cuc;
9353 to->wo_cul = from->wo_cul;
9354 #endif
9355 #ifdef FEAT_DIFF
9356 to->wo_diff = from->wo_diff;
9357 #endif
9358 #ifdef FEAT_FOLDING
9359 to->wo_fdc = from->wo_fdc;
9360 to->wo_fen = from->wo_fen;
9361 to->wo_fdi = vim_strsave(from->wo_fdi);
9362 to->wo_fml = from->wo_fml;
9363 to->wo_fdl = from->wo_fdl;
9364 to->wo_fdm = vim_strsave(from->wo_fdm);
9365 to->wo_fdn = from->wo_fdn;
9366 # ifdef FEAT_EVAL
9367 to->wo_fde = vim_strsave(from->wo_fde);
9368 to->wo_fdt = vim_strsave(from->wo_fdt);
9369 # endif
9370 to->wo_fmr = vim_strsave(from->wo_fmr);
9371 #endif
9372 check_winopt(to); /* don't want NULL pointers */
9376 * Check string options in a window for a NULL value.
9378 void
9379 check_win_options(win)
9380 win_T *win;
9382 check_winopt(&win->w_onebuf_opt);
9383 check_winopt(&win->w_allbuf_opt);
9387 * Check for NULL pointers in a winopt_T and replace them with empty_option.
9389 /*ARGSUSED*/
9390 void
9391 check_winopt(wop)
9392 winopt_T *wop;
9394 #ifdef FEAT_FOLDING
9395 check_string_option(&wop->wo_fdi);
9396 check_string_option(&wop->wo_fdm);
9397 # ifdef FEAT_EVAL
9398 check_string_option(&wop->wo_fde);
9399 check_string_option(&wop->wo_fdt);
9400 # endif
9401 check_string_option(&wop->wo_fmr);
9402 #endif
9403 #ifdef FEAT_RIGHTLEFT
9404 check_string_option(&wop->wo_rlc);
9405 #endif
9406 #ifdef FEAT_STL_OPT
9407 check_string_option(&wop->wo_stl);
9408 #endif
9412 * Free the allocated memory inside a winopt_T.
9414 /*ARGSUSED*/
9415 void
9416 clear_winopt(wop)
9417 winopt_T *wop;
9419 #ifdef FEAT_FOLDING
9420 clear_string_option(&wop->wo_fdi);
9421 clear_string_option(&wop->wo_fdm);
9422 # ifdef FEAT_EVAL
9423 clear_string_option(&wop->wo_fde);
9424 clear_string_option(&wop->wo_fdt);
9425 # endif
9426 clear_string_option(&wop->wo_fmr);
9427 #endif
9428 #ifdef FEAT_RIGHTLEFT
9429 clear_string_option(&wop->wo_rlc);
9430 #endif
9431 #ifdef FEAT_STL_OPT
9432 clear_string_option(&wop->wo_stl);
9433 #endif
9437 * Copy global option values to local options for one buffer.
9438 * Used when creating a new buffer and sometimes when entering a buffer.
9439 * flags:
9440 * BCO_ENTER We will enter the buf buffer.
9441 * BCO_ALWAYS Always copy the options, but only set b_p_initialized when
9442 * appropriate.
9443 * BCO_NOHELP Don't copy the values to a help buffer.
9445 void
9446 buf_copy_options(buf, flags)
9447 buf_T *buf;
9448 int flags;
9450 int should_copy = TRUE;
9451 char_u *save_p_isk = NULL; /* init for GCC */
9452 int dont_do_help;
9453 int did_isk = FALSE;
9456 * Don't do anything of the buffer is invalid.
9458 if (buf == NULL || !buf_valid(buf))
9459 return;
9462 * Skip this when the option defaults have not been set yet. Happens when
9463 * main() allocates the first buffer.
9465 if (p_cpo != NULL)
9468 * Always copy when entering and 'cpo' contains 'S'.
9469 * Don't copy when already initialized.
9470 * Don't copy when 'cpo' contains 's' and not entering.
9471 * 'S' BCO_ENTER initialized 's' should_copy
9472 * yes yes X X TRUE
9473 * yes no yes X FALSE
9474 * no X yes X FALSE
9475 * X no no yes FALSE
9476 * X no no no TRUE
9477 * no yes no X TRUE
9479 if ((vim_strchr(p_cpo, CPO_BUFOPTGLOB) == NULL || !(flags & BCO_ENTER))
9480 && (buf->b_p_initialized
9481 || (!(flags & BCO_ENTER)
9482 && vim_strchr(p_cpo, CPO_BUFOPT) != NULL)))
9483 should_copy = FALSE;
9485 if (should_copy || (flags & BCO_ALWAYS))
9487 /* Don't copy the options specific to a help buffer when
9488 * BCO_NOHELP is given or the options were initialized already
9489 * (jumping back to a help file with CTRL-T or CTRL-O) */
9490 dont_do_help = ((flags & BCO_NOHELP) && buf->b_help)
9491 || buf->b_p_initialized;
9492 if (dont_do_help) /* don't free b_p_isk */
9494 save_p_isk = buf->b_p_isk;
9495 buf->b_p_isk = NULL;
9498 * Always free the allocated strings.
9499 * If not already initialized, set 'readonly' and copy 'fileformat'.
9501 if (!buf->b_p_initialized)
9503 free_buf_options(buf, TRUE);
9504 buf->b_p_ro = FALSE; /* don't copy readonly */
9505 buf->b_p_tx = p_tx;
9506 #ifdef FEAT_MBYTE
9507 buf->b_p_fenc = vim_strsave(p_fenc);
9508 #endif
9509 buf->b_p_ff = vim_strsave(p_ff);
9510 #if defined(FEAT_QUICKFIX)
9511 buf->b_p_bh = empty_option;
9512 buf->b_p_bt = empty_option;
9513 #endif
9515 else
9516 free_buf_options(buf, FALSE);
9518 buf->b_p_ai = p_ai;
9519 buf->b_p_ai_nopaste = p_ai_nopaste;
9520 buf->b_p_sw = p_sw;
9521 buf->b_p_tw = p_tw;
9522 buf->b_p_tw_nopaste = p_tw_nopaste;
9523 buf->b_p_tw_nobin = p_tw_nobin;
9524 buf->b_p_wm = p_wm;
9525 buf->b_p_wm_nopaste = p_wm_nopaste;
9526 buf->b_p_wm_nobin = p_wm_nobin;
9527 buf->b_p_bin = p_bin;
9528 #ifdef FEAT_MBYTE
9529 buf->b_p_bomb = p_bomb;
9530 #endif
9531 buf->b_p_et = p_et;
9532 buf->b_p_et_nobin = p_et_nobin;
9533 buf->b_p_ml = p_ml;
9534 buf->b_p_ml_nobin = p_ml_nobin;
9535 buf->b_p_inf = p_inf;
9536 buf->b_p_swf = p_swf;
9537 #ifdef FEAT_INS_EXPAND
9538 buf->b_p_cpt = vim_strsave(p_cpt);
9539 #endif
9540 #ifdef FEAT_COMPL_FUNC
9541 buf->b_p_cfu = vim_strsave(p_cfu);
9542 buf->b_p_ofu = vim_strsave(p_ofu);
9543 #endif
9544 buf->b_p_sts = p_sts;
9545 buf->b_p_sts_nopaste = p_sts_nopaste;
9546 #ifndef SHORT_FNAME
9547 buf->b_p_sn = p_sn;
9548 #endif
9549 #ifdef FEAT_COMMENTS
9550 buf->b_p_com = vim_strsave(p_com);
9551 #endif
9552 #ifdef FEAT_FOLDING
9553 buf->b_p_cms = vim_strsave(p_cms);
9554 #endif
9555 buf->b_p_fo = vim_strsave(p_fo);
9556 buf->b_p_flp = vim_strsave(p_flp);
9557 buf->b_p_nf = vim_strsave(p_nf);
9558 buf->b_p_mps = vim_strsave(p_mps);
9559 #ifdef FEAT_SMARTINDENT
9560 buf->b_p_si = p_si;
9561 #endif
9562 buf->b_p_ci = p_ci;
9563 #ifdef FEAT_CINDENT
9564 buf->b_p_cin = p_cin;
9565 buf->b_p_cink = vim_strsave(p_cink);
9566 buf->b_p_cino = vim_strsave(p_cino);
9567 #endif
9568 #ifdef FEAT_AUTOCMD
9569 /* Don't copy 'filetype', it must be detected */
9570 buf->b_p_ft = empty_option;
9571 #endif
9572 #ifdef FEAT_OSFILETYPE
9573 buf->b_p_oft = vim_strsave(p_oft);
9574 #endif
9575 buf->b_p_pi = p_pi;
9576 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
9577 buf->b_p_cinw = vim_strsave(p_cinw);
9578 #endif
9579 #ifdef FEAT_LISP
9580 buf->b_p_lisp = p_lisp;
9581 #endif
9582 #ifdef FEAT_SYN_HL
9583 /* Don't copy 'syntax', it must be set */
9584 buf->b_p_syn = empty_option;
9585 buf->b_p_smc = p_smc;
9586 #endif
9587 #ifdef FEAT_SPELL
9588 buf->b_p_spc = vim_strsave(p_spc);
9589 (void)compile_cap_prog(buf);
9590 buf->b_p_spf = vim_strsave(p_spf);
9591 buf->b_p_spl = vim_strsave(p_spl);
9592 #endif
9593 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
9594 buf->b_p_inde = vim_strsave(p_inde);
9595 buf->b_p_indk = vim_strsave(p_indk);
9596 #endif
9597 #if defined(FEAT_EVAL)
9598 buf->b_p_fex = vim_strsave(p_fex);
9599 #endif
9600 #ifdef FEAT_CRYPT
9601 buf->b_p_key = vim_strsave(p_key);
9602 #endif
9603 #ifdef FEAT_SEARCHPATH
9604 buf->b_p_sua = vim_strsave(p_sua);
9605 #endif
9606 #ifdef FEAT_KEYMAP
9607 buf->b_p_keymap = vim_strsave(p_keymap);
9608 buf->b_kmap_state |= KEYMAP_INIT;
9609 #endif
9610 /* This isn't really an option, but copying the langmap and IME
9611 * state from the current buffer is better than resetting it. */
9612 buf->b_p_iminsert = p_iminsert;
9613 buf->b_p_imsearch = p_imsearch;
9615 /* options that are normally global but also have a local value
9616 * are not copied, start using the global value */
9617 buf->b_p_ar = -1;
9618 #ifdef FEAT_QUICKFIX
9619 buf->b_p_gp = empty_option;
9620 buf->b_p_mp = empty_option;
9621 buf->b_p_efm = empty_option;
9622 #endif
9623 buf->b_p_ep = empty_option;
9624 buf->b_p_kp = empty_option;
9625 buf->b_p_path = empty_option;
9626 buf->b_p_tags = empty_option;
9627 #ifdef FEAT_FIND_ID
9628 buf->b_p_def = empty_option;
9629 buf->b_p_inc = empty_option;
9630 # ifdef FEAT_EVAL
9631 buf->b_p_inex = vim_strsave(p_inex);
9632 # endif
9633 #endif
9634 #ifdef FEAT_INS_EXPAND
9635 buf->b_p_dict = empty_option;
9636 buf->b_p_tsr = empty_option;
9637 #endif
9638 #ifdef FEAT_TEXTOBJ
9639 buf->b_p_qe = vim_strsave(p_qe);
9640 #endif
9641 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9642 buf->b_p_bexpr = empty_option;
9643 #endif
9646 * Don't copy the options set by ex_help(), use the saved values,
9647 * when going from a help buffer to a non-help buffer.
9648 * Don't touch these at all when BCO_NOHELP is used and going from
9649 * or to a help buffer.
9651 if (dont_do_help)
9652 buf->b_p_isk = save_p_isk;
9653 else
9655 buf->b_p_isk = vim_strsave(p_isk);
9656 did_isk = TRUE;
9657 buf->b_p_ts = p_ts;
9658 buf->b_help = FALSE;
9659 #ifdef FEAT_QUICKFIX
9660 if (buf->b_p_bt[0] == 'h')
9661 clear_string_option(&buf->b_p_bt);
9662 #endif
9663 buf->b_p_ma = p_ma;
9668 * When the options should be copied (ignoring BCO_ALWAYS), set the
9669 * flag that indicates that the options have been initialized.
9671 if (should_copy)
9672 buf->b_p_initialized = TRUE;
9675 check_buf_options(buf); /* make sure we don't have NULLs */
9676 if (did_isk)
9677 (void)buf_init_chartab(buf, FALSE);
9681 * Reset the 'modifiable' option and its default value.
9683 void
9684 reset_modifiable()
9686 int opt_idx;
9688 curbuf->b_p_ma = FALSE;
9689 p_ma = FALSE;
9690 opt_idx = findoption((char_u *)"ma");
9691 if (opt_idx >= 0)
9692 options[opt_idx].def_val[VI_DEFAULT] = FALSE;
9696 * Set the global value for 'iminsert' to the local value.
9698 void
9699 set_iminsert_global()
9701 p_iminsert = curbuf->b_p_iminsert;
9705 * Set the global value for 'imsearch' to the local value.
9707 void
9708 set_imsearch_global()
9710 p_imsearch = curbuf->b_p_imsearch;
9713 #if defined(FEAT_CMDL_COMPL) || defined(PROTO)
9714 static int expand_option_idx = -1;
9715 static char_u expand_option_name[5] = {'t', '_', NUL, NUL, NUL};
9716 static int expand_option_flags = 0;
9718 void
9719 set_context_in_set_cmd(xp, arg, opt_flags)
9720 expand_T *xp;
9721 char_u *arg;
9722 int opt_flags; /* OPT_GLOBAL and/or OPT_LOCAL */
9724 int nextchar;
9725 long_u flags = 0; /* init for GCC */
9726 int opt_idx = 0; /* init for GCC */
9727 char_u *p;
9728 char_u *s;
9729 int is_term_option = FALSE;
9730 int key;
9732 expand_option_flags = opt_flags;
9734 xp->xp_context = EXPAND_SETTINGS;
9735 if (*arg == NUL)
9737 xp->xp_pattern = arg;
9738 return;
9740 p = arg + STRLEN(arg) - 1;
9741 if (*p == ' ' && *(p - 1) != '\\')
9743 xp->xp_pattern = p + 1;
9744 return;
9746 while (p > arg)
9748 s = p;
9749 /* count number of backslashes before ' ' or ',' */
9750 if (*p == ' ' || *p == ',')
9752 while (s > arg && *(s - 1) == '\\')
9753 --s;
9755 /* break at a space with an even number of backslashes */
9756 if (*p == ' ' && ((p - s) & 1) == 0)
9758 ++p;
9759 break;
9761 --p;
9763 if (STRNCMP(p, "no", 2) == 0)
9765 xp->xp_context = EXPAND_BOOL_SETTINGS;
9766 p += 2;
9768 if (STRNCMP(p, "inv", 3) == 0)
9770 xp->xp_context = EXPAND_BOOL_SETTINGS;
9771 p += 3;
9773 xp->xp_pattern = arg = p;
9774 if (*arg == '<')
9776 while (*p != '>')
9777 if (*p++ == NUL) /* expand terminal option name */
9778 return;
9779 key = get_special_key_code(arg + 1);
9780 if (key == 0) /* unknown name */
9782 xp->xp_context = EXPAND_NOTHING;
9783 return;
9785 nextchar = *++p;
9786 is_term_option = TRUE;
9787 expand_option_name[2] = KEY2TERMCAP0(key);
9788 expand_option_name[3] = KEY2TERMCAP1(key);
9790 else
9792 if (p[0] == 't' && p[1] == '_')
9794 p += 2;
9795 if (*p != NUL)
9796 ++p;
9797 if (*p == NUL)
9798 return; /* expand option name */
9799 nextchar = *++p;
9800 is_term_option = TRUE;
9801 expand_option_name[2] = p[-2];
9802 expand_option_name[3] = p[-1];
9804 else
9806 /* Allow * wildcard */
9807 while (ASCII_ISALNUM(*p) || *p == '_' || *p == '*')
9808 p++;
9809 if (*p == NUL)
9810 return;
9811 nextchar = *p;
9812 *p = NUL;
9813 opt_idx = findoption(arg);
9814 *p = nextchar;
9815 if (opt_idx == -1 || options[opt_idx].var == NULL)
9817 xp->xp_context = EXPAND_NOTHING;
9818 return;
9820 flags = options[opt_idx].flags;
9821 if (flags & P_BOOL)
9823 xp->xp_context = EXPAND_NOTHING;
9824 return;
9828 /* handle "-=" and "+=" */
9829 if ((nextchar == '-' || nextchar == '+' || nextchar == '^') && p[1] == '=')
9831 ++p;
9832 nextchar = '=';
9834 if ((nextchar != '=' && nextchar != ':')
9835 || xp->xp_context == EXPAND_BOOL_SETTINGS)
9837 xp->xp_context = EXPAND_UNSUCCESSFUL;
9838 return;
9840 if (xp->xp_context != EXPAND_BOOL_SETTINGS && p[1] == NUL)
9842 xp->xp_context = EXPAND_OLD_SETTING;
9843 if (is_term_option)
9844 expand_option_idx = -1;
9845 else
9846 expand_option_idx = opt_idx;
9847 xp->xp_pattern = p + 1;
9848 return;
9850 xp->xp_context = EXPAND_NOTHING;
9851 if (is_term_option || (flags & P_NUM))
9852 return;
9854 xp->xp_pattern = p + 1;
9856 if (flags & P_EXPAND)
9858 p = options[opt_idx].var;
9859 if (p == (char_u *)&p_bdir
9860 || p == (char_u *)&p_dir
9861 || p == (char_u *)&p_path
9862 || p == (char_u *)&p_rtp
9863 #ifdef FEAT_SEARCHPATH
9864 || p == (char_u *)&p_cdpath
9865 #endif
9866 #ifdef FEAT_SESSION
9867 || p == (char_u *)&p_vdir
9868 #endif
9871 xp->xp_context = EXPAND_DIRECTORIES;
9872 if (p == (char_u *)&p_path
9873 #ifdef FEAT_SEARCHPATH
9874 || p == (char_u *)&p_cdpath
9875 #endif
9877 xp->xp_backslash = XP_BS_THREE;
9878 else
9879 xp->xp_backslash = XP_BS_ONE;
9881 else
9883 xp->xp_context = EXPAND_FILES;
9884 /* for 'tags' need three backslashes for a space */
9885 if (p == (char_u *)&p_tags)
9886 xp->xp_backslash = XP_BS_THREE;
9887 else
9888 xp->xp_backslash = XP_BS_ONE;
9892 /* For an option that is a list of file names, find the start of the
9893 * last file name. */
9894 for (p = arg + STRLEN(arg) - 1; p > xp->xp_pattern; --p)
9896 /* count number of backslashes before ' ' or ',' */
9897 if (*p == ' ' || *p == ',')
9899 s = p;
9900 while (s > xp->xp_pattern && *(s - 1) == '\\')
9901 --s;
9902 if ((*p == ' ' && (xp->xp_backslash == XP_BS_THREE && (p - s) < 3))
9903 || (*p == ',' && (flags & P_COMMA) && ((p - s) & 1) == 0))
9905 xp->xp_pattern = p + 1;
9906 break;
9910 #ifdef FEAT_SPELL
9911 /* for 'spellsuggest' start at "file:" */
9912 if (options[opt_idx].var == (char_u *)&p_sps
9913 && STRNCMP(p, "file:", 5) == 0)
9915 xp->xp_pattern = p + 5;
9916 break;
9918 #endif
9921 return;
9925 ExpandSettings(xp, regmatch, num_file, file)
9926 expand_T *xp;
9927 regmatch_T *regmatch;
9928 int *num_file;
9929 char_u ***file;
9931 int num_normal = 0; /* Nr of matching non-term-code settings */
9932 int num_term = 0; /* Nr of matching terminal code settings */
9933 int opt_idx;
9934 int match;
9935 int count = 0;
9936 char_u *str;
9937 int loop;
9938 int is_term_opt;
9939 char_u name_buf[MAX_KEY_NAME_LEN];
9940 static char *(names[]) = {"all", "termcap"};
9941 int ic = regmatch->rm_ic; /* remember the ignore-case flag */
9943 /* do this loop twice:
9944 * loop == 0: count the number of matching options
9945 * loop == 1: copy the matching options into allocated memory
9947 for (loop = 0; loop <= 1; ++loop)
9949 regmatch->rm_ic = ic;
9950 if (xp->xp_context != EXPAND_BOOL_SETTINGS)
9952 for (match = 0; match < sizeof(names) / sizeof(char *); ++match)
9953 if (vim_regexec(regmatch, (char_u *)names[match], (colnr_T)0))
9955 if (loop == 0)
9956 num_normal++;
9957 else
9958 (*file)[count++] = vim_strsave((char_u *)names[match]);
9961 for (opt_idx = 0; (str = (char_u *)options[opt_idx].fullname) != NULL;
9962 opt_idx++)
9964 if (options[opt_idx].var == NULL)
9965 continue;
9966 if (xp->xp_context == EXPAND_BOOL_SETTINGS
9967 && !(options[opt_idx].flags & P_BOOL))
9968 continue;
9969 is_term_opt = istermoption(&options[opt_idx]);
9970 if (is_term_opt && num_normal > 0)
9971 continue;
9972 match = FALSE;
9973 if (vim_regexec(regmatch, str, (colnr_T)0)
9974 || (options[opt_idx].shortname != NULL
9975 && vim_regexec(regmatch,
9976 (char_u *)options[opt_idx].shortname, (colnr_T)0)))
9977 match = TRUE;
9978 else if (is_term_opt)
9980 name_buf[0] = '<';
9981 name_buf[1] = 't';
9982 name_buf[2] = '_';
9983 name_buf[3] = str[2];
9984 name_buf[4] = str[3];
9985 name_buf[5] = '>';
9986 name_buf[6] = NUL;
9987 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
9989 match = TRUE;
9990 str = name_buf;
9993 if (match)
9995 if (loop == 0)
9997 if (is_term_opt)
9998 num_term++;
9999 else
10000 num_normal++;
10002 else
10003 (*file)[count++] = vim_strsave(str);
10007 * Check terminal key codes, these are not in the option table
10009 if (xp->xp_context != EXPAND_BOOL_SETTINGS && num_normal == 0)
10011 for (opt_idx = 0; (str = get_termcode(opt_idx)) != NULL; opt_idx++)
10013 if (!isprint(str[0]) || !isprint(str[1]))
10014 continue;
10016 name_buf[0] = 't';
10017 name_buf[1] = '_';
10018 name_buf[2] = str[0];
10019 name_buf[3] = str[1];
10020 name_buf[4] = NUL;
10022 match = FALSE;
10023 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10024 match = TRUE;
10025 else
10027 name_buf[0] = '<';
10028 name_buf[1] = 't';
10029 name_buf[2] = '_';
10030 name_buf[3] = str[0];
10031 name_buf[4] = str[1];
10032 name_buf[5] = '>';
10033 name_buf[6] = NUL;
10035 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10036 match = TRUE;
10038 if (match)
10040 if (loop == 0)
10041 num_term++;
10042 else
10043 (*file)[count++] = vim_strsave(name_buf);
10048 * Check special key names.
10050 regmatch->rm_ic = TRUE; /* ignore case here */
10051 for (opt_idx = 0; (str = get_key_name(opt_idx)) != NULL; opt_idx++)
10053 name_buf[0] = '<';
10054 STRCPY(name_buf + 1, str);
10055 STRCAT(name_buf, ">");
10057 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10059 if (loop == 0)
10060 num_term++;
10061 else
10062 (*file)[count++] = vim_strsave(name_buf);
10066 if (loop == 0)
10068 if (num_normal > 0)
10069 *num_file = num_normal;
10070 else if (num_term > 0)
10071 *num_file = num_term;
10072 else
10073 return OK;
10074 *file = (char_u **)alloc((unsigned)(*num_file * sizeof(char_u *)));
10075 if (*file == NULL)
10077 *file = (char_u **)"";
10078 return FAIL;
10082 return OK;
10086 ExpandOldSetting(num_file, file)
10087 int *num_file;
10088 char_u ***file;
10090 char_u *var = NULL; /* init for GCC */
10091 char_u *buf;
10093 *num_file = 0;
10094 *file = (char_u **)alloc((unsigned)sizeof(char_u *));
10095 if (*file == NULL)
10096 return FAIL;
10099 * For a terminal key code expand_option_idx is < 0.
10101 if (expand_option_idx < 0)
10103 var = find_termcode(expand_option_name + 2);
10104 if (var == NULL)
10105 expand_option_idx = findoption(expand_option_name);
10108 if (expand_option_idx >= 0)
10110 /* put string of option value in NameBuff */
10111 option_value2string(&options[expand_option_idx], expand_option_flags);
10112 var = NameBuff;
10114 else if (var == NULL)
10115 var = (char_u *)"";
10117 /* A backslash is required before some characters. This is the reverse of
10118 * what happens in do_set(). */
10119 buf = vim_strsave_escaped(var, escape_chars);
10121 if (buf == NULL)
10123 vim_free(*file);
10124 *file = NULL;
10125 return FAIL;
10128 #ifdef BACKSLASH_IN_FILENAME
10129 /* For MS-Windows et al. we don't double backslashes at the start and
10130 * before a file name character. */
10131 for (var = buf; *var != NUL; mb_ptr_adv(var))
10132 if (var[0] == '\\' && var[1] == '\\'
10133 && expand_option_idx >= 0
10134 && (options[expand_option_idx].flags & P_EXPAND)
10135 && vim_isfilec(var[2])
10136 && (var[2] != '\\' || (var == buf && var[4] != '\\')))
10137 STRMOVE(var, var + 1);
10138 #endif
10140 *file[0] = buf;
10141 *num_file = 1;
10142 return OK;
10144 #endif
10147 * Get the value for the numeric or string option *opp in a nice format into
10148 * NameBuff[]. Must not be called with a hidden option!
10150 static void
10151 option_value2string(opp, opt_flags)
10152 struct vimoption *opp;
10153 int opt_flags; /* OPT_GLOBAL and/or OPT_LOCAL */
10155 char_u *varp;
10157 varp = get_varp_scope(opp, opt_flags);
10159 if (opp->flags & P_NUM)
10161 long wc = 0;
10163 if (wc_use_keyname(varp, &wc))
10164 STRCPY(NameBuff, get_special_key_name((int)wc, 0));
10165 else if (wc != 0)
10166 STRCPY(NameBuff, transchar((int)wc));
10167 else
10168 sprintf((char *)NameBuff, "%ld", *(long *)varp);
10170 else /* P_STRING */
10172 varp = *(char_u **)(varp);
10173 if (varp == NULL) /* just in case */
10174 NameBuff[0] = NUL;
10175 #ifdef FEAT_CRYPT
10176 /* don't show the actual value of 'key', only that it's set */
10177 else if (opp->var == (char_u *)&p_key && *varp)
10178 STRCPY(NameBuff, "*****");
10179 #endif
10180 else if (opp->flags & P_EXPAND)
10181 home_replace(NULL, varp, NameBuff, MAXPATHL, FALSE);
10182 /* Translate 'pastetoggle' into special key names */
10183 else if ((char_u **)opp->var == &p_pt)
10184 str2specialbuf(p_pt, NameBuff, MAXPATHL);
10185 else
10186 vim_strncpy(NameBuff, varp, MAXPATHL - 1);
10191 * Return TRUE if "varp" points to 'wildchar' or 'wildcharm' and it can be
10192 * printed as a keyname.
10193 * "*wcp" is set to the value of the option if it's 'wildchar' or 'wildcharm'.
10195 static int
10196 wc_use_keyname(varp, wcp)
10197 char_u *varp;
10198 long *wcp;
10200 if (((long *)varp == &p_wc) || ((long *)varp == &p_wcm))
10202 *wcp = *(long *)varp;
10203 if (IS_SPECIAL(*wcp) || find_special_key_in_table((int)*wcp) >= 0)
10204 return TRUE;
10206 return FALSE;
10209 #ifdef FEAT_LANGMAP
10211 * Any character has an equivalent character. This is used for keyboards that
10212 * have a special language mode that sends characters above 128 (although
10213 * other characters can be translated too).
10217 * char_u langmap_mapchar[256];
10218 * Normally maps each of the 128 upper chars to an <128 ascii char; used to
10219 * "translate" native lang chars in normal mode or some cases of
10220 * insert mode without having to tediously switch lang mode back&forth.
10223 static void
10224 langmap_init()
10226 int i;
10228 for (i = 0; i < 256; i++) /* we init with a-one-to one map */
10229 langmap_mapchar[i] = i;
10233 * Called when langmap option is set; the language map can be
10234 * changed at any time!
10236 static void
10237 langmap_set()
10239 char_u *p;
10240 char_u *p2;
10241 int from, to;
10243 langmap_init(); /* back to one-to-one map first */
10245 for (p = p_langmap; p[0] != NUL; )
10247 for (p2 = p; p2[0] != NUL && p2[0] != ',' && p2[0] != ';';
10248 mb_ptr_adv(p2))
10250 if (p2[0] == '\\' && p2[1] != NUL)
10251 ++p2;
10253 if (p2[0] == ';')
10254 ++p2; /* abcd;ABCD form, p2 points to A */
10255 else
10256 p2 = NULL; /* aAbBcCdD form, p2 is NULL */
10257 while (p[0])
10259 if (p[0] == '\\' && p[1] != NUL)
10260 ++p;
10261 #ifdef FEAT_MBYTE
10262 from = (*mb_ptr2char)(p);
10263 #else
10264 from = p[0];
10265 #endif
10266 if (p2 == NULL)
10268 mb_ptr_adv(p);
10269 if (p[0] == '\\')
10270 ++p;
10271 #ifdef FEAT_MBYTE
10272 to = (*mb_ptr2char)(p);
10273 #else
10274 to = p[0];
10275 #endif
10277 else
10279 if (p2[0] == '\\')
10280 ++p2;
10281 #ifdef FEAT_MBYTE
10282 to = (*mb_ptr2char)(p2);
10283 #else
10284 to = p2[0];
10285 #endif
10287 if (to == NUL)
10289 EMSG2(_("E357: 'langmap': Matching character missing for %s"),
10290 transchar(from));
10291 return;
10293 langmap_mapchar[from & 255] = to;
10295 /* Advance to next pair */
10296 mb_ptr_adv(p);
10297 if (p2 == NULL)
10299 if (p[0] == ',')
10301 ++p;
10302 break;
10305 else
10307 mb_ptr_adv(p2);
10308 if (*p == ';')
10310 p = p2;
10311 if (p[0] != NUL)
10313 if (p[0] != ',')
10315 EMSG2(_("E358: 'langmap': Extra characters after semicolon: %s"), p);
10316 return;
10318 ++p;
10320 break;
10326 #endif
10329 * Return TRUE if format option 'x' is in effect.
10330 * Take care of no formatting when 'paste' is set.
10333 has_format_option(x)
10334 int x;
10336 if (p_paste)
10337 return FALSE;
10338 return (vim_strchr(curbuf->b_p_fo, x) != NULL);
10342 * Return TRUE if "x" is present in 'shortmess' option, or
10343 * 'shortmess' contains 'a' and "x" is present in SHM_A.
10346 shortmess(x)
10347 int x;
10349 return ( vim_strchr(p_shm, x) != NULL
10350 || (vim_strchr(p_shm, 'a') != NULL
10351 && vim_strchr((char_u *)SHM_A, x) != NULL));
10355 * paste_option_changed() - Called after p_paste was set or reset.
10357 static void
10358 paste_option_changed()
10360 static int old_p_paste = FALSE;
10361 static int save_sm = 0;
10362 #ifdef FEAT_CMDL_INFO
10363 static int save_ru = 0;
10364 #endif
10365 #ifdef FEAT_RIGHTLEFT
10366 static int save_ri = 0;
10367 static int save_hkmap = 0;
10368 #endif
10369 buf_T *buf;
10371 if (p_paste)
10374 * Paste switched from off to on.
10375 * Save the current values, so they can be restored later.
10377 if (!old_p_paste)
10379 /* save options for each buffer */
10380 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10382 buf->b_p_tw_nopaste = buf->b_p_tw;
10383 buf->b_p_wm_nopaste = buf->b_p_wm;
10384 buf->b_p_sts_nopaste = buf->b_p_sts;
10385 buf->b_p_ai_nopaste = buf->b_p_ai;
10388 /* save global options */
10389 save_sm = p_sm;
10390 #ifdef FEAT_CMDL_INFO
10391 save_ru = p_ru;
10392 #endif
10393 #ifdef FEAT_RIGHTLEFT
10394 save_ri = p_ri;
10395 save_hkmap = p_hkmap;
10396 #endif
10397 /* save global values for local buffer options */
10398 p_tw_nopaste = p_tw;
10399 p_wm_nopaste = p_wm;
10400 p_sts_nopaste = p_sts;
10401 p_ai_nopaste = p_ai;
10405 * Always set the option values, also when 'paste' is set when it is
10406 * already on.
10408 /* set options for each buffer */
10409 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10411 buf->b_p_tw = 0; /* textwidth is 0 */
10412 buf->b_p_wm = 0; /* wrapmargin is 0 */
10413 buf->b_p_sts = 0; /* softtabstop is 0 */
10414 buf->b_p_ai = 0; /* no auto-indent */
10417 /* set global options */
10418 p_sm = 0; /* no showmatch */
10419 #ifdef FEAT_CMDL_INFO
10420 # ifdef FEAT_WINDOWS
10421 if (p_ru)
10422 status_redraw_all(); /* redraw to remove the ruler */
10423 # endif
10424 p_ru = 0; /* no ruler */
10425 #endif
10426 #ifdef FEAT_RIGHTLEFT
10427 p_ri = 0; /* no reverse insert */
10428 p_hkmap = 0; /* no Hebrew keyboard */
10429 #endif
10430 /* set global values for local buffer options */
10431 p_tw = 0;
10432 p_wm = 0;
10433 p_sts = 0;
10434 p_ai = 0;
10438 * Paste switched from on to off: Restore saved values.
10440 else if (old_p_paste)
10442 /* restore options for each buffer */
10443 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10445 buf->b_p_tw = buf->b_p_tw_nopaste;
10446 buf->b_p_wm = buf->b_p_wm_nopaste;
10447 buf->b_p_sts = buf->b_p_sts_nopaste;
10448 buf->b_p_ai = buf->b_p_ai_nopaste;
10451 /* restore global options */
10452 p_sm = save_sm;
10453 #ifdef FEAT_CMDL_INFO
10454 # ifdef FEAT_WINDOWS
10455 if (p_ru != save_ru)
10456 status_redraw_all(); /* redraw to draw the ruler */
10457 # endif
10458 p_ru = save_ru;
10459 #endif
10460 #ifdef FEAT_RIGHTLEFT
10461 p_ri = save_ri;
10462 p_hkmap = save_hkmap;
10463 #endif
10464 /* set global values for local buffer options */
10465 p_tw = p_tw_nopaste;
10466 p_wm = p_wm_nopaste;
10467 p_sts = p_sts_nopaste;
10468 p_ai = p_ai_nopaste;
10471 old_p_paste = p_paste;
10475 * vimrc_found() - Called when a ".vimrc" or "VIMINIT" has been found.
10477 * Reset 'compatible' and set the values for options that didn't get set yet
10478 * to the Vim defaults.
10479 * Don't do this if the 'compatible' option has been set or reset before.
10480 * When "fname" is not NULL, use it to set $"envname" when it wasn't set yet.
10482 void
10483 vimrc_found(fname, envname)
10484 char_u *fname;
10485 char_u *envname;
10487 int opt_idx;
10488 int dofree = FALSE;
10489 char_u *p;
10491 if (!option_was_set((char_u *)"cp"))
10493 p_cp = FALSE;
10494 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
10495 if (!(options[opt_idx].flags & (P_WAS_SET|P_VI_DEF)))
10496 set_option_default(opt_idx, OPT_FREE, FALSE);
10497 didset_options();
10500 if (fname != NULL)
10502 p = vim_getenv(envname, &dofree);
10503 if (p == NULL)
10505 /* Set $MYVIMRC to the first vimrc file found. */
10506 p = FullName_save(fname, FALSE);
10507 if (p != NULL)
10509 vim_setenv(envname, p);
10510 vim_free(p);
10513 else if (dofree)
10514 vim_free(p);
10519 * Set 'compatible' on or off. Called for "-C" and "-N" command line arg.
10521 void
10522 change_compatible(on)
10523 int on;
10525 int opt_idx;
10527 if (p_cp != on)
10529 p_cp = on;
10530 compatible_set();
10532 opt_idx = findoption((char_u *)"cp");
10533 if (opt_idx >= 0)
10534 options[opt_idx].flags |= P_WAS_SET;
10538 * Return TRUE when option "name" has been set.
10541 option_was_set(name)
10542 char_u *name;
10544 int idx;
10546 idx = findoption(name);
10547 if (idx < 0) /* unknown option */
10548 return FALSE;
10549 if (options[idx].flags & P_WAS_SET)
10550 return TRUE;
10551 return FALSE;
10555 * compatible_set() - Called when 'compatible' has been set or unset.
10557 * When 'compatible' set: Set all relevant options (those that have the P_VIM)
10558 * flag) to a Vi compatible value.
10559 * When 'compatible' is unset: Set all options that have a different default
10560 * for Vim (without the P_VI_DEF flag) to that default.
10562 static void
10563 compatible_set()
10565 int opt_idx;
10567 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
10568 if ( ((options[opt_idx].flags & P_VIM) && p_cp)
10569 || (!(options[opt_idx].flags & P_VI_DEF) && !p_cp))
10570 set_option_default(opt_idx, OPT_FREE, p_cp);
10571 didset_options();
10574 #ifdef FEAT_LINEBREAK
10576 # if defined(__BORLANDC__) && (__BORLANDC__ < 0x500)
10577 /* Borland C++ screws up loop optimisation here (negri) */
10578 #pragma option -O-l
10579 # endif
10582 * fill_breakat_flags() -- called when 'breakat' changes value.
10584 static void
10585 fill_breakat_flags()
10587 char_u *p;
10588 int i;
10590 for (i = 0; i < 256; i++)
10591 breakat_flags[i] = FALSE;
10593 if (p_breakat != NULL)
10594 for (p = p_breakat; *p; p++)
10595 breakat_flags[*p] = TRUE;
10598 # if defined(__BORLANDC__) && (__BORLANDC__ < 0x500)
10599 #pragma option -O.l
10600 # endif
10602 #endif
10605 * Check an option that can be a range of string values.
10607 * Return OK for correct value, FAIL otherwise.
10608 * Empty is always OK.
10610 static int
10611 check_opt_strings(val, values, list)
10612 char_u *val;
10613 char **values;
10614 int list; /* when TRUE: accept a list of values */
10616 return opt_strings_flags(val, values, NULL, list);
10620 * Handle an option that can be a range of string values.
10621 * Set a flag in "*flagp" for each string present.
10623 * Return OK for correct value, FAIL otherwise.
10624 * Empty is always OK.
10626 static int
10627 opt_strings_flags(val, values, flagp, list)
10628 char_u *val; /* new value */
10629 char **values; /* array of valid string values */
10630 unsigned *flagp;
10631 int list; /* when TRUE: accept a list of values */
10633 int i;
10634 int len;
10635 unsigned new_flags = 0;
10637 while (*val)
10639 for (i = 0; ; ++i)
10641 if (values[i] == NULL) /* val not found in values[] */
10642 return FAIL;
10644 len = (int)STRLEN(values[i]);
10645 if (STRNCMP(values[i], val, len) == 0
10646 && ((list && val[len] == ',') || val[len] == NUL))
10648 val += len + (val[len] == ',');
10649 new_flags |= (1 << i);
10650 break; /* check next item in val list */
10654 if (flagp != NULL)
10655 *flagp = new_flags;
10657 return OK;
10661 * Read the 'wildmode' option, fill wim_flags[].
10663 static int
10664 check_opt_wim()
10666 char_u new_wim_flags[4];
10667 char_u *p;
10668 int i;
10669 int idx = 0;
10671 for (i = 0; i < 4; ++i)
10672 new_wim_flags[i] = 0;
10674 for (p = p_wim; *p; ++p)
10676 for (i = 0; ASCII_ISALPHA(p[i]); ++i)
10678 if (p[i] != NUL && p[i] != ',' && p[i] != ':')
10679 return FAIL;
10680 if (i == 7 && STRNCMP(p, "longest", 7) == 0)
10681 new_wim_flags[idx] |= WIM_LONGEST;
10682 else if (i == 4 && STRNCMP(p, "full", 4) == 0)
10683 new_wim_flags[idx] |= WIM_FULL;
10684 else if (i == 4 && STRNCMP(p, "list", 4) == 0)
10685 new_wim_flags[idx] |= WIM_LIST;
10686 else
10687 return FAIL;
10688 p += i;
10689 if (*p == NUL)
10690 break;
10691 if (*p == ',')
10693 if (idx == 3)
10694 return FAIL;
10695 ++idx;
10699 /* fill remaining entries with last flag */
10700 while (idx < 3)
10702 new_wim_flags[idx + 1] = new_wim_flags[idx];
10703 ++idx;
10706 /* only when there are no errors, wim_flags[] is changed */
10707 for (i = 0; i < 4; ++i)
10708 wim_flags[i] = new_wim_flags[i];
10709 return OK;
10713 * Check if backspacing over something is allowed.
10716 can_bs(what)
10717 int what; /* BS_INDENT, BS_EOL or BS_START */
10719 switch (*p_bs)
10721 case '2': return TRUE;
10722 case '1': return (what != BS_START);
10723 case '0': return FALSE;
10725 return vim_strchr(p_bs, what) != NULL;
10729 * Save the current values of 'fileformat' and 'fileencoding', so that we know
10730 * the file must be considered changed when the value is different.
10732 void
10733 save_file_ff(buf)
10734 buf_T *buf;
10736 buf->b_start_ffc = *buf->b_p_ff;
10737 buf->b_start_eol = buf->b_p_eol;
10738 #ifdef FEAT_MBYTE
10739 buf->b_start_bomb = buf->b_p_bomb;
10741 /* Only use free/alloc when necessary, they take time. */
10742 if (buf->b_start_fenc == NULL
10743 || STRCMP(buf->b_start_fenc, buf->b_p_fenc) != 0)
10745 vim_free(buf->b_start_fenc);
10746 buf->b_start_fenc = vim_strsave(buf->b_p_fenc);
10748 #endif
10752 * Return TRUE if 'fileformat' and/or 'fileencoding' has a different value
10753 * from when editing started (save_file_ff() called).
10754 * Also when 'endofline' was changed and 'binary' is set, or when 'bomb' was
10755 * changed and 'binary' is not set.
10756 * Don't consider a new, empty buffer to be changed.
10759 file_ff_differs(buf)
10760 buf_T *buf;
10762 /* In a buffer that was never loaded the options are not valid. */
10763 if (buf->b_flags & BF_NEVERLOADED)
10764 return FALSE;
10765 if ((buf->b_flags & BF_NEW)
10766 && buf->b_ml.ml_line_count == 1
10767 && *ml_get_buf(buf, (linenr_T)1, FALSE) == NUL)
10768 return FALSE;
10769 if (buf->b_start_ffc != *buf->b_p_ff)
10770 return TRUE;
10771 if (buf->b_p_bin && buf->b_start_eol != buf->b_p_eol)
10772 return TRUE;
10773 #ifdef FEAT_MBYTE
10774 if (!buf->b_p_bin && buf->b_start_bomb != buf->b_p_bomb)
10775 return TRUE;
10776 if (buf->b_start_fenc == NULL)
10777 return (*buf->b_p_fenc != NUL);
10778 return (STRCMP(buf->b_start_fenc, buf->b_p_fenc) != 0);
10779 #else
10780 return FALSE;
10781 #endif
10785 * return OK if "p" is a valid fileformat name, FAIL otherwise.
10788 check_ff_value(p)
10789 char_u *p;
10791 return check_opt_strings(p, p_ff_values, FALSE);
10794 #ifdef FEAT_FULLSCREEN
10796 * Read the 'fuoptions' option, set fuoptions_flags and
10797 * fuoptions_bgcolor.
10799 static int
10800 check_fuoptions(p_fuoptions, flags, bgcolor)
10801 char_u *p_fuoptions; /* fuoptions string */
10802 unsigned *flags; /* fuoptions flags */
10803 int *bgcolor; /* background highlight group id */
10805 unsigned new_fuoptions_flags;
10806 int new_fuoptions_bgcolor;
10807 char_u *p;
10808 char_u hg_term; /* character terminating
10809 highlight group string in
10810 'background' option' */
10811 int i,j,k;
10813 new_fuoptions_flags = 0;
10814 new_fuoptions_bgcolor = 0xFF000000;
10816 for (p = p_fuoptions; *p; ++p)
10818 for (i = 0; ASCII_ISALPHA(p[i]); ++i)
10820 if (p[i] != NUL && p[i] != ',' && p[i] != ':')
10821 return FAIL;
10822 if (i == 10 && STRNCMP(p, "background", 10) == 0)
10824 if (p[i] != ':') return FAIL;
10825 i++;
10826 if (p[i] == NUL) return FAIL;
10827 if (p[i] == '#')
10829 /* explicit color (#aarrggbb) */
10830 i++;
10831 for (j = i; j < i+8 && vim_isxdigit(p[j]); ++j)
10833 if (j < i+8)
10834 return FAIL; /* less than 8 digits */
10835 if (p[j] != NUL && p[j] != ',')
10836 return FAIL;
10837 new_fuoptions_bgcolor = 0;
10838 for (k = 0; k < 8; k++)
10839 new_fuoptions_bgcolor = new_fuoptions_bgcolor * 16 +
10840 hex2nr(p[i+k]);
10841 i = j;
10842 /* mark bgcolor as an explicit argb color */
10843 new_fuoptions_flags &= ~FUOPT_BGCOLOR_HLGROUP;
10845 else
10847 /* highlight group name */
10848 for (j = i; ASCII_ISALPHA(p[j]); ++j)
10850 if (p[j] != NUL && p[j] != ',')
10851 return FAIL;
10852 hg_term = p[j];
10853 p[j] = NUL; /* temporarily terminate string */
10854 new_fuoptions_bgcolor = syn_name2id((char_u*)(p+i));
10855 p[j] = hg_term; /* restore string */
10856 if (! new_fuoptions_bgcolor)
10857 return FAIL;
10858 i = j;
10859 /* mark bgcolor as highlight group id */
10860 new_fuoptions_flags |= FUOPT_BGCOLOR_HLGROUP;
10863 else if (i == 7 && STRNCMP(p, "maxhorz", 7) == 0)
10864 new_fuoptions_flags |= FUOPT_MAXHORZ;
10865 else if (i == 7 && STRNCMP(p, "maxvert", 7) == 0)
10866 new_fuoptions_flags |= FUOPT_MAXVERT;
10867 else
10868 return FAIL;
10869 p += i;
10870 if (*p == NUL)
10871 break;
10872 if (*p == ':')
10873 return FAIL;
10876 *flags = new_fuoptions_flags;
10877 *bgcolor = new_fuoptions_bgcolor;
10878 return OK;
10880 #endif