Don't respond to SetWindowTitleMsgID message in live resize
[MacVim.git] / src / option.c
blobcd74e21321449e24d2c1f5e9d7472a18a46312fc
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,
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_swb_values[]) = {"useopen", "usetab", "split", NULL};
2875 static char *(p_debug_values[]) = {"msg", "throw", "beep", NULL};
2876 #ifdef FEAT_VERTSPLIT
2877 static char *(p_ead_values[]) = {"both", "ver", "hor", NULL};
2878 #endif
2879 #if defined(FEAT_QUICKFIX)
2880 # ifdef FEAT_AUTOCMD
2881 static char *(p_buftype_values[]) = {"nofile", "nowrite", "quickfix", "help", "acwrite", NULL};
2882 # else
2883 static char *(p_buftype_values[]) = {"nofile", "nowrite", "quickfix", "help", NULL};
2884 # endif
2885 static char *(p_bufhidden_values[]) = {"hide", "unload", "delete", "wipe", NULL};
2886 #endif
2887 static char *(p_bs_values[]) = {"indent", "eol", "start", NULL};
2888 #ifdef FEAT_FOLDING
2889 static char *(p_fdm_values[]) = {"manual", "expr", "marker", "indent", "syntax",
2890 # ifdef FEAT_DIFF
2891 "diff",
2892 # endif
2893 NULL};
2894 static char *(p_fcl_values[]) = {"all", NULL};
2895 #endif
2896 #ifdef FEAT_INS_EXPAND
2897 static char *(p_cot_values[]) = {"menu", "menuone", "longest", "preview", NULL};
2898 #endif
2900 static void set_option_default __ARGS((int, int opt_flags, int compatible));
2901 static void set_options_default __ARGS((int opt_flags));
2902 static char_u *term_bg_default __ARGS((void));
2903 static void did_set_option __ARGS((int opt_idx, int opt_flags, int new_value));
2904 static char_u *illegal_char __ARGS((char_u *, int));
2905 static int string_to_key __ARGS((char_u *arg));
2906 #ifdef FEAT_CMDWIN
2907 static char_u *check_cedit __ARGS((void));
2908 #endif
2909 #ifdef FEAT_TITLE
2910 static void did_set_title __ARGS((int icon));
2911 #endif
2912 static char_u *option_expand __ARGS((int opt_idx, char_u *val));
2913 static void didset_options __ARGS((void));
2914 static void check_string_option __ARGS((char_u **pp));
2915 #if defined(FEAT_EVAL) || defined(PROTO)
2916 static long_u *insecure_flag __ARGS((int opt_idx, int opt_flags));
2917 #else
2918 # define insecure_flag(opt_idx, opt_flags) (&options[opt_idx].flags)
2919 #endif
2920 static void set_string_option_global __ARGS((int opt_idx, char_u **varp));
2921 static void set_string_option __ARGS((int opt_idx, char_u *value, int opt_flags));
2922 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));
2923 static char_u *set_chars_option __ARGS((char_u **varp));
2924 #ifdef FEAT_CLIPBOARD
2925 static char_u *check_clipboard_option __ARGS((void));
2926 #endif
2927 #ifdef FEAT_SPELL
2928 static char_u *compile_cap_prog __ARGS((buf_T *buf));
2929 #endif
2930 #ifdef FEAT_EVAL
2931 static void set_option_scriptID_idx __ARGS((int opt_idx, int opt_flags, int id));
2932 #endif
2933 static char_u *set_bool_option __ARGS((int opt_idx, char_u *varp, int value, int opt_flags));
2934 static char_u *set_num_option __ARGS((int opt_idx, char_u *varp, long value, char_u *errbuf, size_t errbuflen, int opt_flags));
2935 static void check_redraw __ARGS((long_u flags));
2936 static int findoption __ARGS((char_u *));
2937 static int find_key_option __ARGS((char_u *));
2938 static void showoptions __ARGS((int all, int opt_flags));
2939 static int optval_default __ARGS((struct vimoption *, char_u *varp));
2940 static void showoneopt __ARGS((struct vimoption *, int opt_flags));
2941 static int put_setstring __ARGS((FILE *fd, char *cmd, char *name, char_u **valuep, int expand));
2942 static int put_setnum __ARGS((FILE *fd, char *cmd, char *name, long *valuep));
2943 static int put_setbool __ARGS((FILE *fd, char *cmd, char *name, int value));
2944 static int istermoption __ARGS((struct vimoption *));
2945 static char_u *get_varp_scope __ARGS((struct vimoption *p, int opt_flags));
2946 static char_u *get_varp __ARGS((struct vimoption *));
2947 static void option_value2string __ARGS((struct vimoption *, int opt_flags));
2948 static int wc_use_keyname __ARGS((char_u *varp, long *wcp));
2949 #ifdef FEAT_LANGMAP
2950 static void langmap_init __ARGS((void));
2951 static void langmap_set __ARGS((void));
2952 #endif
2953 static void paste_option_changed __ARGS((void));
2954 static void compatible_set __ARGS((void));
2955 #ifdef FEAT_LINEBREAK
2956 static void fill_breakat_flags __ARGS((void));
2957 #endif
2958 static int opt_strings_flags __ARGS((char_u *val, char **values, unsigned *flagp, int list));
2959 static int check_opt_strings __ARGS((char_u *val, char **values, int));
2960 static int check_opt_wim __ARGS((void));
2961 #ifdef FEAT_FULLSCREEN
2962 static int check_fuoptions __ARGS((char_u *, unsigned *, int *));
2963 #endif
2966 * Initialize the options, first part.
2968 * Called only once from main(), just after creating the first buffer.
2970 void
2971 set_init_1()
2973 char_u *p;
2974 int opt_idx;
2975 long_u n;
2976 #if defined(FEAT_GUI_MACVIM) && defined(FEAT_MBYTE)
2977 int did_mb_init;
2978 #endif
2980 #ifdef FEAT_LANGMAP
2981 langmap_init();
2982 #endif
2984 /* Be Vi compatible by default */
2985 p_cp = TRUE;
2987 /* Use POSIX compatibility when $VIM_POSIX is set. */
2988 if (mch_getenv((char_u *)"VIM_POSIX") != NULL)
2990 set_string_default("cpo", (char_u *)CPO_ALL);
2991 set_string_default("shm", (char_u *)"A");
2995 * Find default value for 'shell' option.
2996 * Don't use it if it is empty.
2998 if (((p = mch_getenv((char_u *)"SHELL")) != NULL && *p != NUL)
2999 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
3000 # ifdef __EMX__
3001 || ((p = mch_getenv((char_u *)"EMXSHELL")) != NULL && *p != NUL)
3002 # endif
3003 || ((p = mch_getenv((char_u *)"COMSPEC")) != NULL && *p != NUL)
3004 # ifdef WIN3264
3005 || ((p = default_shell()) != NULL && *p != NUL)
3006 # endif
3007 #endif
3009 set_string_default("sh", p);
3011 #ifdef FEAT_WILDIGN
3013 * Set the default for 'backupskip' to include environment variables for
3014 * temp files.
3017 # ifdef UNIX
3018 static char *(names[4]) = {"", "TMPDIR", "TEMP", "TMP"};
3019 # else
3020 static char *(names[3]) = {"TMPDIR", "TEMP", "TMP"};
3021 # endif
3022 int len;
3023 garray_T ga;
3024 int mustfree;
3026 ga_init2(&ga, 1, 100);
3027 for (n = 0; n < (long)(sizeof(names) / sizeof(char *)); ++n)
3029 mustfree = FALSE;
3030 # ifdef UNIX
3031 if (*names[n] == NUL)
3032 p = (char_u *)"/tmp";
3033 else
3034 # endif
3035 p = vim_getenv((char_u *)names[n], &mustfree);
3036 if (p != NULL && *p != NUL)
3038 /* First time count the NUL, otherwise count the ','. */
3039 len = (int)STRLEN(p) + 3;
3040 if (ga_grow(&ga, len) == OK)
3042 if (ga.ga_len > 0)
3043 STRCAT(ga.ga_data, ",");
3044 STRCAT(ga.ga_data, p);
3045 add_pathsep(ga.ga_data);
3046 STRCAT(ga.ga_data, "*");
3047 ga.ga_len += len;
3050 if (mustfree)
3051 vim_free(p);
3053 if (ga.ga_data != NULL)
3055 set_string_default("bsk", ga.ga_data);
3056 vim_free(ga.ga_data);
3059 #endif
3062 * 'maxmemtot' and 'maxmem' may have to be adjusted for available memory
3064 opt_idx = findoption((char_u *)"maxmemtot");
3065 if (opt_idx >= 0)
3067 #if !defined(HAVE_AVAIL_MEM) && !defined(HAVE_TOTAL_MEM)
3068 if (options[opt_idx].def_val[VI_DEFAULT] == (char_u *)0L)
3069 #endif
3071 #ifdef HAVE_AVAIL_MEM
3072 /* Use amount of memory available at this moment. */
3073 n = (mch_avail_mem(FALSE) >> 11);
3074 #else
3075 # ifdef HAVE_TOTAL_MEM
3076 /* Use amount of memory available to Vim. */
3077 n = (mch_total_mem(FALSE) >> 1);
3078 # else
3079 n = (0x7fffffff >> 11);
3080 # endif
3081 #endif
3082 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)n;
3083 opt_idx = findoption((char_u *)"maxmem");
3084 if (opt_idx >= 0)
3086 #if !defined(HAVE_AVAIL_MEM) && !defined(HAVE_TOTAL_MEM)
3087 if ((long)options[opt_idx].def_val[VI_DEFAULT] > n
3088 || (long)options[opt_idx].def_val[VI_DEFAULT] == 0L)
3089 #endif
3090 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)n;
3095 #ifdef FEAT_GUI_W32
3096 /* force 'shortname' for Win32s */
3097 if (gui_is_win32s())
3099 opt_idx = findoption((char_u *)"shortname");
3100 if (opt_idx >= 0)
3101 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)TRUE;
3103 #endif
3105 #ifdef FEAT_SEARCHPATH
3107 char_u *cdpath;
3108 char_u *buf;
3109 int i;
3110 int j;
3111 int mustfree = FALSE;
3113 /* Initialize the 'cdpath' option's default value. */
3114 cdpath = vim_getenv((char_u *)"CDPATH", &mustfree);
3115 if (cdpath != NULL)
3117 buf = alloc((unsigned)((STRLEN(cdpath) << 1) + 2));
3118 if (buf != NULL)
3120 buf[0] = ','; /* start with ",", current dir first */
3121 j = 1;
3122 for (i = 0; cdpath[i] != NUL; ++i)
3124 if (vim_ispathlistsep(cdpath[i]))
3125 buf[j++] = ',';
3126 else
3128 if (cdpath[i] == ' ' || cdpath[i] == ',')
3129 buf[j++] = '\\';
3130 buf[j++] = cdpath[i];
3133 buf[j] = NUL;
3134 opt_idx = findoption((char_u *)"cdpath");
3135 if (opt_idx >= 0)
3137 options[opt_idx].def_val[VI_DEFAULT] = buf;
3138 options[opt_idx].flags |= P_DEF_ALLOCED;
3141 if (mustfree)
3142 vim_free(cdpath);
3145 #endif
3147 #if defined(FEAT_POSTSCRIPT) && (defined(MSWIN) || defined(OS2) || defined(VMS) || defined(EBCDIC) || defined(MAC) || defined(hpux))
3148 /* Set print encoding on platforms that don't default to latin1 */
3149 set_string_default("penc",
3150 # if defined(MSWIN) || defined(OS2)
3151 (char_u *)"cp1252"
3152 # else
3153 # ifdef VMS
3154 (char_u *)"dec-mcs"
3155 # else
3156 # ifdef EBCDIC
3157 (char_u *)"ebcdic-uk"
3158 # else
3159 # ifdef MAC
3160 (char_u *)"mac-roman"
3161 # else /* HPUX */
3162 (char_u *)"hp-roman8"
3163 # endif
3164 # endif
3165 # endif
3166 # endif
3168 #endif
3170 #ifdef FEAT_POSTSCRIPT
3171 /* 'printexpr' must be allocated to be able to evaluate it. */
3172 set_string_default("pexpr",
3173 # if defined(MSWIN) || defined(MSDOS) || defined(OS2)
3174 (char_u *)"system('copy' . ' ' . v:fname_in . (&printdevice == '' ? ' LPT1:' : (' \"' . &printdevice . '\"'))) . delete(v:fname_in)"
3175 # else
3176 # ifdef VMS
3177 (char_u *)"system('print/delete' . (&printdevice == '' ? '' : ' /queue=' . &printdevice) . ' ' . v:fname_in)"
3179 # else
3180 (char_u *)"system('lpr' . (&printdevice == '' ? '' : ' -P' . &printdevice) . ' ' . v:fname_in) . delete(v:fname_in) + v:shell_error"
3181 # endif
3182 # endif
3184 #endif
3187 * Set all the options (except the terminal options) to their default
3188 * value. Also set the global value for local options.
3190 set_options_default(0);
3192 #ifdef FEAT_GUI
3193 if (found_reverse_arg)
3194 set_option_value((char_u *)"bg", 0L, (char_u *)"dark", 0);
3195 #endif
3197 curbuf->b_p_initialized = TRUE;
3198 curbuf->b_p_ar = -1; /* no local 'autoread' value */
3199 check_buf_options(curbuf);
3200 check_win_options(curwin);
3201 check_options();
3203 /* Must be before option_expand(), because that one needs vim_isIDc() */
3204 didset_options();
3206 #ifdef FEAT_SPELL
3207 /* Use the current chartab for the generic chartab. */
3208 init_spell_chartab();
3209 #endif
3211 #ifdef FEAT_LINEBREAK
3213 * initialize the table for 'breakat'.
3215 fill_breakat_flags();
3216 #endif
3219 * Expand environment variables and things like "~" for the defaults.
3220 * If option_expand() returns non-NULL the variable is expanded. This can
3221 * only happen for non-indirect options.
3222 * Also set the default to the expanded value, so ":set" does not list
3223 * them.
3224 * Don't set the P_ALLOCED flag, because we don't want to free the
3225 * default.
3227 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
3229 if ((options[opt_idx].flags & P_GETTEXT)
3230 && options[opt_idx].var != NULL)
3231 p = (char_u *)_(*(char **)options[opt_idx].var);
3232 else
3233 p = option_expand(opt_idx, NULL);
3234 if (p != NULL && (p = vim_strsave(p)) != NULL)
3236 *(char_u **)options[opt_idx].var = p;
3237 /* VIMEXP
3238 * Defaults for all expanded options are currently the same for Vi
3239 * and Vim. When this changes, add some code here! Also need to
3240 * split P_DEF_ALLOCED in two.
3242 if (options[opt_idx].flags & P_DEF_ALLOCED)
3243 vim_free(options[opt_idx].def_val[VI_DEFAULT]);
3244 options[opt_idx].def_val[VI_DEFAULT] = p;
3245 options[opt_idx].flags |= P_DEF_ALLOCED;
3249 /* Initialize the highlight_attr[] table. */
3250 highlight_changed();
3252 save_file_ff(curbuf); /* Buffer is unchanged */
3254 /* Parse default for 'wildmode' */
3255 check_opt_wim();
3257 #if defined(FEAT_ARABIC)
3258 /* Detect use of mlterm.
3259 * Mlterm is a terminal emulator akin to xterm that has some special
3260 * abilities (bidi namely).
3261 * NOTE: mlterm's author is being asked to 'set' a variable
3262 * instead of an environment variable due to inheritance.
3264 if (mch_getenv((char_u *)"MLTERM") != NULL)
3265 set_option_value((char_u *)"tbidi", 1L, NULL, 0);
3266 #endif
3268 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
3269 /* Parse default for 'fillchars'. */
3270 (void)set_chars_option(&p_fcs);
3271 #endif
3273 #ifdef FEAT_CLIPBOARD
3274 /* Parse default for 'clipboard' */
3275 (void)check_clipboard_option();
3276 #endif
3278 #ifdef FEAT_MBYTE
3279 # if defined(WIN3264) && defined(FEAT_GETTEXT)
3281 * If $LANG isn't set, try to get a good value for it. This makes the
3282 * right language be used automatically. Don't do this for English.
3284 if (mch_getenv((char_u *)"LANG") == NULL)
3286 char buf[20];
3288 /* Could use LOCALE_SISO639LANGNAME, but it's not in Win95.
3289 * LOCALE_SABBREVLANGNAME gives us three letters, like "enu", we use
3290 * only the first two. */
3291 n = GetLocaleInfo(LOCALE_USER_DEFAULT, LOCALE_SABBREVLANGNAME,
3292 (LPTSTR)buf, 20);
3293 if (n >= 2 && STRNICMP(buf, "en", 2) != 0)
3295 /* There are a few exceptions (probably more) */
3296 if (STRNICMP(buf, "cht", 3) == 0 || STRNICMP(buf, "zht", 3) == 0)
3297 STRCPY(buf, "zh_TW");
3298 else if (STRNICMP(buf, "chs", 3) == 0
3299 || STRNICMP(buf, "zhc", 3) == 0)
3300 STRCPY(buf, "zh_CN");
3301 else if (STRNICMP(buf, "jp", 2) == 0)
3302 STRCPY(buf, "ja");
3303 else
3304 buf[2] = NUL; /* truncate to two-letter code */
3305 vim_setenv("LANG", buf);
3308 # else
3309 # ifdef MACOS_CONVERT
3310 if (mch_getenv((char_u *)"LANG") == NULL)
3312 char buf[20];
3313 if (LocaleRefGetPartString(NULL,
3314 kLocaleLanguageMask | kLocaleLanguageVariantMask |
3315 kLocaleRegionMask | kLocaleRegionVariantMask,
3316 sizeof buf, buf) == noErr && *buf)
3318 vim_setenv((char_u *)"LANG", (char_u *)buf);
3319 # ifdef HAVE_LOCALE_H
3320 setlocale(LC_ALL, "");
3321 # endif
3324 # endif
3325 # endif
3327 /* enc_locale() will try to find the encoding of the current locale. */
3328 p = enc_locale();
3329 if (p != NULL)
3331 char_u *save_enc;
3333 /* Try setting 'encoding' and check if the value is valid.
3334 * If not, go back to the default "latin1". */
3335 save_enc = p_enc;
3336 p_enc = p;
3337 if (STRCMP(p_enc, "gb18030") == 0)
3339 /* We don't support "gb18030", but "cp936" is a good substitute
3340 * for practical purposes, thus use that. It's not an alias to
3341 * still support conversion between gb18030 and utf-8. */
3342 p_enc = vim_strsave((char_u *)"cp936");
3343 vim_free(p);
3345 #if defined(FEAT_GUI_MACVIM)
3346 did_mb_init = (mb_init() == NULL);
3347 if (!did_mb_init)
3349 /* The encoding returned by enc_locale() was invalid, so fall back
3350 * on using utf-8 as the default encoding in MacVim. */
3351 vim_free(p_enc);
3352 p_enc = vim_strsave((char_u *)"utf-8");
3353 did_mb_init = (mb_init() == NULL);
3356 /* did_mb_init should always be TRUE, but check just in case. */
3357 if (did_mb_init)
3358 #else
3359 if (mb_init() == NULL)
3360 #endif
3362 opt_idx = findoption((char_u *)"encoding");
3363 if (opt_idx >= 0)
3365 options[opt_idx].def_val[VI_DEFAULT] = p_enc;
3366 options[opt_idx].flags |= P_DEF_ALLOCED;
3369 #if defined(MSDOS) || defined(MSWIN) || defined(OS2) || defined(MACOS) \
3370 || defined(VMS)
3371 if (STRCMP(p_enc, "latin1") == 0
3372 # ifdef FEAT_MBYTE
3373 || enc_utf8
3374 # endif
3377 /* Adjust the default for 'isprint' and 'iskeyword' to match
3378 * latin1. Also set the defaults for when 'nocompatible' is
3379 * set. */
3380 set_string_option_direct((char_u *)"isp", -1,
3381 ISP_LATIN1, OPT_FREE, SID_NONE);
3382 set_string_option_direct((char_u *)"isk", -1,
3383 ISK_LATIN1, OPT_FREE, SID_NONE);
3384 opt_idx = findoption((char_u *)"isp");
3385 if (opt_idx >= 0)
3386 options[opt_idx].def_val[VIM_DEFAULT] = ISP_LATIN1;
3387 opt_idx = findoption((char_u *)"isk");
3388 if (opt_idx >= 0)
3389 options[opt_idx].def_val[VIM_DEFAULT] = ISK_LATIN1;
3390 (void)init_chartab();
3392 #endif
3394 # if defined(WIN3264) && !defined(FEAT_GUI)
3395 /* Win32 console: When GetACP() returns a different value from
3396 * GetConsoleCP() set 'termencoding'. */
3397 if (GetACP() != GetConsoleCP())
3399 char buf[50];
3401 sprintf(buf, "cp%ld", (long)GetConsoleCP());
3402 p_tenc = vim_strsave((char_u *)buf);
3403 if (p_tenc != NULL)
3405 opt_idx = findoption((char_u *)"termencoding");
3406 if (opt_idx >= 0)
3408 options[opt_idx].def_val[VI_DEFAULT] = p_tenc;
3409 options[opt_idx].flags |= P_DEF_ALLOCED;
3411 convert_setup(&input_conv, p_tenc, p_enc);
3412 convert_setup(&output_conv, p_enc, p_tenc);
3414 else
3415 p_tenc = empty_option;
3417 # endif
3418 # if defined(WIN3264) && defined(FEAT_MBYTE)
3419 /* $HOME may have characters in active code page. */
3420 init_homedir();
3421 # endif
3423 else
3425 vim_free(p_enc);
3426 p_enc = save_enc;
3429 #endif
3431 #ifdef FEAT_MULTI_LANG
3432 /* Set the default for 'helplang'. */
3433 set_helplang_default(get_mess_lang());
3434 #endif
3438 * Set an option to its default value.
3439 * This does not take care of side effects!
3441 static void
3442 set_option_default(opt_idx, opt_flags, compatible)
3443 int opt_idx;
3444 int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */
3445 int compatible; /* use Vi default value */
3447 char_u *varp; /* pointer to variable for current option */
3448 int dvi; /* index in def_val[] */
3449 long_u flags;
3450 long_u *flagsp;
3451 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
3453 varp = get_varp_scope(&(options[opt_idx]), both ? OPT_LOCAL : opt_flags);
3454 flags = options[opt_idx].flags;
3455 if (varp != NULL) /* skip hidden option, nothing to do for it */
3457 dvi = ((flags & P_VI_DEF) || compatible) ? VI_DEFAULT : VIM_DEFAULT;
3458 if (flags & P_STRING)
3460 /* Use set_string_option_direct() for local options to handle
3461 * freeing and allocating the value. */
3462 if (options[opt_idx].indir != PV_NONE)
3463 set_string_option_direct(NULL, opt_idx,
3464 options[opt_idx].def_val[dvi], opt_flags, 0);
3465 else
3467 if ((opt_flags & OPT_FREE) && (flags & P_ALLOCED))
3468 free_string_option(*(char_u **)(varp));
3469 *(char_u **)varp = options[opt_idx].def_val[dvi];
3470 options[opt_idx].flags &= ~P_ALLOCED;
3473 else if (flags & P_NUM)
3475 if (options[opt_idx].indir == PV_SCROLL)
3476 win_comp_scroll(curwin);
3477 else
3479 *(long *)varp = (long)(long_i)options[opt_idx].def_val[dvi];
3480 /* May also set global value for local option. */
3481 if (both)
3482 *(long *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) =
3483 *(long *)varp;
3486 else /* P_BOOL */
3488 /* the cast to long is required for Manx C, long_i is needed for
3489 * MSVC */
3490 *(int *)varp = (int)(long)(long_i)options[opt_idx].def_val[dvi];
3491 #ifdef UNIX
3492 /* 'modeline' defaults to off for root */
3493 if (options[opt_idx].indir == PV_ML && getuid() == ROOT_UID)
3494 *(int *)varp = FALSE;
3495 #endif
3496 /* May also set global value for local option. */
3497 if (both)
3498 *(int *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) =
3499 *(int *)varp;
3502 /* The default value is not insecure. */
3503 flagsp = insecure_flag(opt_idx, opt_flags);
3504 *flagsp = *flagsp & ~P_INSECURE;
3507 #ifdef FEAT_EVAL
3508 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
3509 #endif
3513 * Set all options (except terminal options) to their default value.
3515 static void
3516 set_options_default(opt_flags)
3517 int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */
3519 int i;
3520 #ifdef FEAT_WINDOWS
3521 win_T *wp;
3522 tabpage_T *tp;
3523 #endif
3525 for (i = 0; !istermoption(&options[i]); i++)
3526 if (!(options[i].flags & P_NODEFAULT))
3527 set_option_default(i, opt_flags, p_cp);
3529 #ifdef FEAT_WINDOWS
3530 /* The 'scroll' option must be computed for all windows. */
3531 FOR_ALL_TAB_WINDOWS(tp, wp)
3532 win_comp_scroll(wp);
3533 #else
3534 win_comp_scroll(curwin);
3535 #endif
3539 * Set the Vi-default value of a string option.
3540 * Used for 'sh', 'backupskip' and 'term'.
3542 void
3543 set_string_default(name, val)
3544 char *name;
3545 char_u *val;
3547 char_u *p;
3548 int opt_idx;
3550 p = vim_strsave(val);
3551 if (p != NULL) /* we don't want a NULL */
3553 opt_idx = findoption((char_u *)name);
3554 if (opt_idx >= 0)
3556 if (options[opt_idx].flags & P_DEF_ALLOCED)
3557 vim_free(options[opt_idx].def_val[VI_DEFAULT]);
3558 options[opt_idx].def_val[VI_DEFAULT] = p;
3559 options[opt_idx].flags |= P_DEF_ALLOCED;
3565 * Set the Vi-default value of a number option.
3566 * Used for 'lines' and 'columns'.
3568 void
3569 set_number_default(name, val)
3570 char *name;
3571 long val;
3573 int opt_idx;
3575 opt_idx = findoption((char_u *)name);
3576 if (opt_idx >= 0)
3577 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
3580 #if defined(EXITFREE) || defined(PROTO)
3582 * Free all options.
3584 void
3585 free_all_options()
3587 int i;
3589 for (i = 0; !istermoption(&options[i]); i++)
3591 if (options[i].indir == PV_NONE)
3593 /* global option: free value and default value. */
3594 if (options[i].flags & P_ALLOCED && options[i].var != NULL)
3595 free_string_option(*(char_u **)options[i].var);
3596 if (options[i].flags & P_DEF_ALLOCED)
3597 free_string_option(options[i].def_val[VI_DEFAULT]);
3599 else if (options[i].var != VAR_WIN
3600 && (options[i].flags & P_STRING))
3601 /* buffer-local option: free global value */
3602 free_string_option(*(char_u **)options[i].var);
3605 #endif
3609 * Initialize the options, part two: After getting Rows and Columns and
3610 * setting 'term'.
3612 void
3613 set_init_2()
3615 int idx;
3618 * 'scroll' defaults to half the window height. Note that this default is
3619 * wrong when the window height changes.
3621 set_number_default("scroll", (long)((long_u)Rows >> 1));
3622 idx = findoption((char_u *)"scroll");
3623 if (idx >= 0 && !(options[idx].flags & P_WAS_SET))
3624 set_option_default(idx, OPT_LOCAL, p_cp);
3625 comp_col();
3628 * 'window' is only for backwards compatibility with Vi.
3629 * Default is Rows - 1.
3631 if (!option_was_set((char_u *)"window"))
3632 p_window = Rows - 1;
3633 set_number_default("window", Rows - 1);
3635 /* For DOS console the default is always black. */
3636 #if !((defined(MSDOS) || defined(OS2) || defined(WIN3264)) && !defined(FEAT_GUI))
3638 * If 'background' wasn't set by the user, try guessing the value,
3639 * depending on the terminal name. Only need to check for terminals
3640 * with a dark background, that can handle color.
3642 idx = findoption((char_u *)"bg");
3643 if (idx >= 0 && !(options[idx].flags & P_WAS_SET)
3644 && *term_bg_default() == 'd')
3646 set_string_option_direct(NULL, idx, (char_u *)"dark", OPT_FREE, 0);
3647 /* don't mark it as set, when starting the GUI it may be
3648 * changed again */
3649 options[idx].flags &= ~P_WAS_SET;
3651 #endif
3653 #ifdef CURSOR_SHAPE
3654 parse_shape_opt(SHAPE_CURSOR); /* set cursor shapes from 'guicursor' */
3655 #endif
3656 #ifdef FEAT_MOUSESHAPE
3657 parse_shape_opt(SHAPE_MOUSE); /* set mouse shapes from 'mouseshape' */
3658 #endif
3659 #ifdef FEAT_PRINTER
3660 (void)parse_printoptions(); /* parse 'printoptions' default value */
3661 #endif
3665 * Return "dark" or "light" depending on the kind of terminal.
3666 * This is just guessing! Recognized are:
3667 * "linux" Linux console
3668 * "screen.linux" Linux console with screen
3669 * "cygwin" Cygwin shell
3670 * "putty" Putty program
3671 * We also check the COLORFGBG environment variable, which is set by
3672 * rxvt and derivatives. This variable contains either two or three
3673 * values separated by semicolons; we want the last value in either
3674 * case. If this value is 0-6 or 8, our background is dark.
3676 static char_u *
3677 term_bg_default()
3679 #if defined(MSDOS) || defined(OS2) || defined(WIN3264)
3680 /* DOS console nearly always black */
3681 return (char_u *)"dark";
3682 #else
3683 char_u *p;
3685 if (STRCMP(T_NAME, "linux") == 0
3686 || STRCMP(T_NAME, "screen.linux") == 0
3687 || STRCMP(T_NAME, "cygwin") == 0
3688 || STRCMP(T_NAME, "putty") == 0
3689 || ((p = mch_getenv((char_u *)"COLORFGBG")) != NULL
3690 && (p = vim_strrchr(p, ';')) != NULL
3691 && ((p[1] >= '0' && p[1] <= '6') || p[1] == '8')
3692 && p[2] == NUL))
3693 return (char_u *)"dark";
3694 return (char_u *)"light";
3695 #endif
3699 * Initialize the options, part three: After reading the .vimrc
3701 void
3702 set_init_3()
3704 #if defined(UNIX) || defined(OS2) || defined(WIN3264)
3706 * Set 'shellpipe' and 'shellredir', depending on the 'shell' option.
3707 * This is done after other initializations, where 'shell' might have been
3708 * set, but only if they have not been set before.
3710 char_u *p;
3711 int idx_srr;
3712 int do_srr;
3713 #ifdef FEAT_QUICKFIX
3714 int idx_sp;
3715 int do_sp;
3716 #endif
3718 idx_srr = findoption((char_u *)"srr");
3719 if (idx_srr < 0)
3720 do_srr = FALSE;
3721 else
3722 do_srr = !(options[idx_srr].flags & P_WAS_SET);
3723 #ifdef FEAT_QUICKFIX
3724 idx_sp = findoption((char_u *)"sp");
3725 if (idx_sp < 0)
3726 do_sp = FALSE;
3727 else
3728 do_sp = !(options[idx_sp].flags & P_WAS_SET);
3729 #endif
3732 * Isolate the name of the shell:
3733 * - Skip beyond any path. E.g., "/usr/bin/csh -f" -> "csh -f".
3734 * - Remove any argument. E.g., "csh -f" -> "csh".
3736 p = gettail(p_sh);
3737 p = vim_strnsave(p, (int)(skiptowhite(p) - p));
3738 if (p != NULL)
3741 * Default for p_sp is "| tee", for p_srr is ">".
3742 * For known shells it is changed here to include stderr.
3744 if ( fnamecmp(p, "csh") == 0
3745 || fnamecmp(p, "tcsh") == 0
3746 # if defined(OS2) || defined(WIN3264) /* also check with .exe extension */
3747 || fnamecmp(p, "csh.exe") == 0
3748 || fnamecmp(p, "tcsh.exe") == 0
3749 # endif
3752 #if defined(FEAT_QUICKFIX)
3753 if (do_sp)
3755 # ifdef WIN3264
3756 p_sp = (char_u *)">&";
3757 # else
3758 p_sp = (char_u *)"|& tee";
3759 # endif
3760 options[idx_sp].def_val[VI_DEFAULT] = p_sp;
3762 #endif
3763 if (do_srr)
3765 p_srr = (char_u *)">&";
3766 options[idx_srr].def_val[VI_DEFAULT] = p_srr;
3769 else
3770 # ifndef OS2 /* Always use bourne shell style redirection if we reach this */
3771 if ( fnamecmp(p, "sh") == 0
3772 || fnamecmp(p, "ksh") == 0
3773 || fnamecmp(p, "zsh") == 0
3774 || fnamecmp(p, "zsh-beta") == 0
3775 || fnamecmp(p, "bash") == 0
3776 # ifdef WIN3264
3777 || fnamecmp(p, "cmd") == 0
3778 || fnamecmp(p, "sh.exe") == 0
3779 || fnamecmp(p, "ksh.exe") == 0
3780 || fnamecmp(p, "zsh.exe") == 0
3781 || fnamecmp(p, "zsh-beta.exe") == 0
3782 || fnamecmp(p, "bash.exe") == 0
3783 || fnamecmp(p, "cmd.exe") == 0
3784 # endif
3786 # endif
3788 #if defined(FEAT_QUICKFIX)
3789 if (do_sp)
3791 # ifdef WIN3264
3792 p_sp = (char_u *)">%s 2>&1";
3793 # else
3794 p_sp = (char_u *)"2>&1| tee";
3795 # endif
3796 options[idx_sp].def_val[VI_DEFAULT] = p_sp;
3798 #endif
3799 if (do_srr)
3801 p_srr = (char_u *)">%s 2>&1";
3802 options[idx_srr].def_val[VI_DEFAULT] = p_srr;
3805 vim_free(p);
3807 #endif
3809 #if defined(MSDOS) || defined(WIN3264) || defined(OS2)
3811 * Set 'shellcmdflag and 'shellquote' depending on the 'shell' option.
3812 * This is done after other initializations, where 'shell' might have been
3813 * set, but only if they have not been set before. Default for p_shcf is
3814 * "/c", for p_shq is "". For "sh" like shells it is changed here to
3815 * "-c" and "\"", but not for DJGPP, because it starts the shell without
3816 * command.com. And for Win32 we need to set p_sxq instead.
3818 if (strstr((char *)gettail(p_sh), "sh") != NULL)
3820 int idx3;
3822 idx3 = findoption((char_u *)"shcf");
3823 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
3825 p_shcf = (char_u *)"-c";
3826 options[idx3].def_val[VI_DEFAULT] = p_shcf;
3829 # ifndef DJGPP
3830 # ifdef WIN3264
3831 /* Somehow Win32 requires the quotes around the redirection too */
3832 idx3 = findoption((char_u *)"sxq");
3833 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
3835 p_sxq = (char_u *)"\"";
3836 options[idx3].def_val[VI_DEFAULT] = p_sxq;
3838 # else
3839 idx3 = findoption((char_u *)"shq");
3840 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
3842 p_shq = (char_u *)"\"";
3843 options[idx3].def_val[VI_DEFAULT] = p_shq;
3845 # endif
3846 # endif
3848 #endif
3850 #ifdef FEAT_TITLE
3851 set_title_defaults();
3852 #endif
3855 #if defined(FEAT_MULTI_LANG) || defined(PROTO)
3857 * When 'helplang' is still at its default value, set it to "lang".
3858 * Only the first two characters of "lang" are used.
3860 void
3861 set_helplang_default(lang)
3862 char_u *lang;
3864 int idx;
3866 if (lang == NULL || STRLEN(lang) < 2) /* safety check */
3867 return;
3868 idx = findoption((char_u *)"hlg");
3869 if (idx >= 0 && !(options[idx].flags & P_WAS_SET))
3871 if (options[idx].flags & P_ALLOCED)
3872 free_string_option(p_hlg);
3873 p_hlg = vim_strsave(lang);
3874 if (p_hlg == NULL)
3875 p_hlg = empty_option;
3876 else
3878 /* zh_CN becomes "cn", zh_TW becomes "tw". */
3879 if (STRNICMP(p_hlg, "zh_", 3) == 0 && STRLEN(p_hlg) >= 5)
3881 p_hlg[0] = TOLOWER_ASC(p_hlg[3]);
3882 p_hlg[1] = TOLOWER_ASC(p_hlg[4]);
3884 p_hlg[2] = NUL;
3886 options[idx].flags |= P_ALLOCED;
3889 #endif
3891 #ifdef FEAT_GUI
3892 static char_u *gui_bg_default __ARGS((void));
3894 static char_u *
3895 gui_bg_default()
3897 if (gui_get_lightness(gui.back_pixel) < 127)
3898 return (char_u *)"dark";
3899 return (char_u *)"light";
3903 * Option initializations that can only be done after opening the GUI window.
3905 void
3906 init_gui_options()
3908 /* Set the 'background' option according to the lightness of the
3909 * background color, unless the user has set it already. */
3910 if (!option_was_set((char_u *)"bg") && STRCMP(p_bg, gui_bg_default()) != 0)
3912 set_option_value((char_u *)"bg", 0L, gui_bg_default(), 0);
3913 highlight_changed();
3916 #endif
3918 #ifdef FEAT_TITLE
3920 * 'title' and 'icon' only default to true if they have not been set or reset
3921 * in .vimrc and we can read the old value.
3922 * When 'title' and 'icon' have been reset in .vimrc, we won't even check if
3923 * they can be reset. This reduces startup time when using X on a remote
3924 * machine.
3926 void
3927 set_title_defaults()
3929 int idx1;
3930 long val;
3933 * If GUI is (going to be) used, we can always set the window title and
3934 * icon name. Saves a bit of time, because the X11 display server does
3935 * not need to be contacted.
3937 idx1 = findoption((char_u *)"title");
3938 if (idx1 >= 0 && !(options[idx1].flags & P_WAS_SET))
3940 #ifdef FEAT_GUI
3941 if (gui.starting || gui.in_use)
3942 val = TRUE;
3943 else
3944 #endif
3945 val = mch_can_restore_title();
3946 options[idx1].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
3947 p_title = val;
3949 idx1 = findoption((char_u *)"icon");
3950 if (idx1 >= 0 && !(options[idx1].flags & P_WAS_SET))
3952 #ifdef FEAT_GUI
3953 if (gui.starting || gui.in_use)
3954 val = TRUE;
3955 else
3956 #endif
3957 val = mch_can_restore_icon();
3958 options[idx1].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
3959 p_icon = val;
3962 #endif
3965 * Parse 'arg' for option settings.
3967 * 'arg' may be IObuff, but only when no errors can be present and option
3968 * does not need to be expanded with option_expand().
3969 * "opt_flags":
3970 * 0 for ":set"
3971 * OPT_GLOBAL for ":setglobal"
3972 * OPT_LOCAL for ":setlocal" and a modeline
3973 * OPT_MODELINE for a modeline
3974 * OPT_WINONLY to only set window-local options
3975 * OPT_NOWIN to skip setting window-local options
3977 * returns FAIL if an error is detected, OK otherwise
3980 do_set(arg, opt_flags)
3981 char_u *arg; /* option string (may be written to!) */
3982 int opt_flags;
3984 int opt_idx;
3985 char_u *errmsg;
3986 char_u errbuf[80];
3987 char_u *startarg;
3988 int prefix; /* 1: nothing, 0: "no", 2: "inv" in front of name */
3989 int nextchar; /* next non-white char after option name */
3990 int afterchar; /* character just after option name */
3991 int len;
3992 int i;
3993 long value;
3994 int key;
3995 long_u flags; /* flags for current option */
3996 char_u *varp = NULL; /* pointer to variable for current option */
3997 int did_show = FALSE; /* already showed one value */
3998 int adding; /* "opt+=arg" */
3999 int prepending; /* "opt^=arg" */
4000 int removing; /* "opt-=arg" */
4001 int cp_val = 0;
4002 char_u key_name[2];
4004 if (*arg == NUL)
4006 showoptions(0, opt_flags);
4007 did_show = TRUE;
4008 goto theend;
4011 while (*arg != NUL) /* loop to process all options */
4013 errmsg = NULL;
4014 startarg = arg; /* remember for error message */
4016 if (STRNCMP(arg, "all", 3) == 0 && !isalpha(arg[3])
4017 && !(opt_flags & OPT_MODELINE))
4020 * ":set all" show all options.
4021 * ":set all&" set all options to their default value.
4023 arg += 3;
4024 if (*arg == '&')
4026 ++arg;
4027 /* Only for :set command set global value of local options. */
4028 set_options_default(OPT_FREE | opt_flags);
4030 else
4032 showoptions(1, opt_flags);
4033 did_show = TRUE;
4036 else if (STRNCMP(arg, "termcap", 7) == 0 && !(opt_flags & OPT_MODELINE))
4038 showoptions(2, opt_flags);
4039 show_termcodes();
4040 did_show = TRUE;
4041 arg += 7;
4043 else
4045 prefix = 1;
4046 if (STRNCMP(arg, "no", 2) == 0)
4048 prefix = 0;
4049 arg += 2;
4051 else if (STRNCMP(arg, "inv", 3) == 0)
4053 prefix = 2;
4054 arg += 3;
4057 /* find end of name */
4058 key = 0;
4059 if (*arg == '<')
4061 nextchar = 0;
4062 opt_idx = -1;
4063 /* look out for <t_>;> */
4064 if (arg[1] == 't' && arg[2] == '_' && arg[3] && arg[4])
4065 len = 5;
4066 else
4068 len = 1;
4069 while (arg[len] != NUL && arg[len] != '>')
4070 ++len;
4072 if (arg[len] != '>')
4074 errmsg = e_invarg;
4075 goto skip;
4077 arg[len] = NUL; /* put NUL after name */
4078 if (arg[1] == 't' && arg[2] == '_') /* could be term code */
4079 opt_idx = findoption(arg + 1);
4080 arg[len++] = '>'; /* restore '>' */
4081 if (opt_idx == -1)
4082 key = find_key_option(arg + 1);
4084 else
4086 len = 0;
4088 * The two characters after "t_" may not be alphanumeric.
4090 if (arg[0] == 't' && arg[1] == '_' && arg[2] && arg[3])
4091 len = 4;
4092 else
4093 while (ASCII_ISALNUM(arg[len]) || arg[len] == '_')
4094 ++len;
4095 nextchar = arg[len];
4096 arg[len] = NUL; /* put NUL after name */
4097 opt_idx = findoption(arg);
4098 arg[len] = nextchar; /* restore nextchar */
4099 if (opt_idx == -1)
4100 key = find_key_option(arg);
4103 /* remember character after option name */
4104 afterchar = arg[len];
4106 /* skip white space, allow ":set ai ?" */
4107 while (vim_iswhite(arg[len]))
4108 ++len;
4110 adding = FALSE;
4111 prepending = FALSE;
4112 removing = FALSE;
4113 if (arg[len] != NUL && arg[len + 1] == '=')
4115 if (arg[len] == '+')
4117 adding = TRUE; /* "+=" */
4118 ++len;
4120 else if (arg[len] == '^')
4122 prepending = TRUE; /* "^=" */
4123 ++len;
4125 else if (arg[len] == '-')
4127 removing = TRUE; /* "-=" */
4128 ++len;
4131 nextchar = arg[len];
4133 if (opt_idx == -1 && key == 0) /* found a mismatch: skip */
4135 errmsg = (char_u *)N_("E518: Unknown option");
4136 goto skip;
4139 if (opt_idx >= 0)
4141 if (options[opt_idx].var == NULL) /* hidden option: skip */
4143 /* Only give an error message when requesting the value of
4144 * a hidden option, ignore setting it. */
4145 if (vim_strchr((char_u *)"=:!&<", nextchar) == NULL
4146 && (!(options[opt_idx].flags & P_BOOL)
4147 || nextchar == '?'))
4148 errmsg = (char_u *)N_("E519: Option not supported");
4149 goto skip;
4152 flags = options[opt_idx].flags;
4153 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
4155 else
4157 flags = P_STRING;
4158 if (key < 0)
4160 key_name[0] = KEY2TERMCAP0(key);
4161 key_name[1] = KEY2TERMCAP1(key);
4163 else
4165 key_name[0] = KS_KEY;
4166 key_name[1] = (key & 0xff);
4170 /* Skip all options that are not window-local (used when showing
4171 * an already loaded buffer in a window). */
4172 if ((opt_flags & OPT_WINONLY)
4173 && (opt_idx < 0 || options[opt_idx].var != VAR_WIN))
4174 goto skip;
4176 /* Skip all options that are window-local (used for :vimgrep). */
4177 if ((opt_flags & OPT_NOWIN) && opt_idx >= 0
4178 && options[opt_idx].var == VAR_WIN)
4179 goto skip;
4181 /* Disallow changing some options from modelines */
4182 if ((opt_flags & OPT_MODELINE) && (flags & P_SECURE))
4184 errmsg = (char_u *)_("E520: Not allowed in a modeline");
4185 goto skip;
4188 #ifdef HAVE_SANDBOX
4189 /* Disallow changing some options in the sandbox */
4190 if (sandbox != 0 && (flags & P_SECURE))
4192 errmsg = (char_u *)_(e_sandbox);
4193 goto skip;
4195 #endif
4197 if (vim_strchr((char_u *)"?=:!&<", nextchar) != NULL)
4199 arg += len;
4200 cp_val = p_cp;
4201 if (nextchar == '&' && arg[1] == 'v' && arg[2] == 'i')
4203 if (arg[3] == 'm') /* "opt&vim": set to Vim default */
4205 cp_val = FALSE;
4206 arg += 3;
4208 else /* "opt&vi": set to Vi default */
4210 cp_val = TRUE;
4211 arg += 2;
4214 if (vim_strchr((char_u *)"?!&<", nextchar) != NULL
4215 && arg[1] != NUL && !vim_iswhite(arg[1]))
4217 errmsg = e_trailing;
4218 goto skip;
4223 * allow '=' and ':' as MSDOS command.com allows only one
4224 * '=' character per "set" command line. grrr. (jw)
4226 if (nextchar == '?'
4227 || (prefix == 1
4228 && vim_strchr((char_u *)"=:&<", nextchar) == NULL
4229 && !(flags & P_BOOL)))
4232 * print value
4234 if (did_show)
4235 msg_putchar('\n'); /* cursor below last one */
4236 else
4238 gotocmdline(TRUE); /* cursor at status line */
4239 did_show = TRUE; /* remember that we did a line */
4241 if (opt_idx >= 0)
4243 showoneopt(&options[opt_idx], opt_flags);
4244 #ifdef FEAT_EVAL
4245 if (p_verbose > 0)
4247 /* Mention where the option was last set. */
4248 if (varp == options[opt_idx].var)
4249 last_set_msg(options[opt_idx].scriptID);
4250 else if ((int)options[opt_idx].indir & PV_WIN)
4251 last_set_msg(curwin->w_p_scriptID[
4252 (int)options[opt_idx].indir & PV_MASK]);
4253 else if ((int)options[opt_idx].indir & PV_BUF)
4254 last_set_msg(curbuf->b_p_scriptID[
4255 (int)options[opt_idx].indir & PV_MASK]);
4257 #endif
4259 else
4261 char_u *p;
4263 p = find_termcode(key_name);
4264 if (p == NULL)
4266 errmsg = (char_u *)N_("E518: Unknown option");
4267 goto skip;
4269 else
4270 (void)show_one_termcode(key_name, p, TRUE);
4272 if (nextchar != '?'
4273 && nextchar != NUL && !vim_iswhite(afterchar))
4274 errmsg = e_trailing;
4276 else
4278 if (flags & P_BOOL) /* boolean */
4280 if (nextchar == '=' || nextchar == ':')
4282 errmsg = e_invarg;
4283 goto skip;
4287 * ":set opt!": invert
4288 * ":set opt&": reset to default value
4289 * ":set opt<": reset to global value
4291 if (nextchar == '!')
4292 value = *(int *)(varp) ^ 1;
4293 else if (nextchar == '&')
4294 value = (int)(long)(long_i)options[opt_idx].def_val[
4295 ((flags & P_VI_DEF) || cp_val)
4296 ? VI_DEFAULT : VIM_DEFAULT];
4297 else if (nextchar == '<')
4299 /* For 'autoread' -1 means to use global value. */
4300 if ((int *)varp == &curbuf->b_p_ar
4301 && opt_flags == OPT_LOCAL)
4302 value = -1;
4303 else
4304 value = *(int *)get_varp_scope(&(options[opt_idx]),
4305 OPT_GLOBAL);
4307 else
4310 * ":set invopt": invert
4311 * ":set opt" or ":set noopt": set or reset
4313 if (nextchar != NUL && !vim_iswhite(afterchar))
4315 errmsg = e_trailing;
4316 goto skip;
4318 if (prefix == 2) /* inv */
4319 value = *(int *)(varp) ^ 1;
4320 else
4321 value = prefix;
4324 errmsg = set_bool_option(opt_idx, varp, (int)value,
4325 opt_flags);
4327 else /* numeric or string */
4329 if (vim_strchr((char_u *)"=:&<", nextchar) == NULL
4330 || prefix != 1)
4332 errmsg = e_invarg;
4333 goto skip;
4336 if (flags & P_NUM) /* numeric */
4339 * Different ways to set a number option:
4340 * & set to default value
4341 * < set to global value
4342 * <xx> accept special key codes for 'wildchar'
4343 * c accept any non-digit for 'wildchar'
4344 * [-]0-9 set number
4345 * other error
4347 ++arg;
4348 if (nextchar == '&')
4349 value = (long)(long_i)options[opt_idx].def_val[
4350 ((flags & P_VI_DEF) || cp_val)
4351 ? VI_DEFAULT : VIM_DEFAULT];
4352 else if (nextchar == '<')
4353 value = *(long *)get_varp_scope(&(options[opt_idx]),
4354 OPT_GLOBAL);
4355 else if (((long *)varp == &p_wc
4356 || (long *)varp == &p_wcm)
4357 && (*arg == '<'
4358 || *arg == '^'
4359 || ((!arg[1] || vim_iswhite(arg[1]))
4360 && !VIM_ISDIGIT(*arg))))
4362 value = string_to_key(arg);
4363 if (value == 0 && (long *)varp != &p_wcm)
4365 errmsg = e_invarg;
4366 goto skip;
4369 /* allow negative numbers (for 'undolevels') */
4370 else if (*arg == '-' || VIM_ISDIGIT(*arg))
4372 i = 0;
4373 if (*arg == '-')
4374 i = 1;
4375 #ifdef HAVE_STRTOL
4376 value = strtol((char *)arg, NULL, 0);
4377 if (arg[i] == '0' && TOLOWER_ASC(arg[i + 1]) == 'x')
4378 i += 2;
4379 #else
4380 value = atol((char *)arg);
4381 #endif
4382 while (VIM_ISDIGIT(arg[i]))
4383 ++i;
4384 if (arg[i] != NUL && !vim_iswhite(arg[i]))
4386 errmsg = e_invarg;
4387 goto skip;
4390 else
4392 errmsg = (char_u *)N_("E521: Number required after =");
4393 goto skip;
4396 if (adding)
4397 value = *(long *)varp + value;
4398 if (prepending)
4399 value = *(long *)varp * value;
4400 if (removing)
4401 value = *(long *)varp - value;
4402 errmsg = set_num_option(opt_idx, varp, value,
4403 errbuf, sizeof(errbuf), opt_flags);
4405 else if (opt_idx >= 0) /* string */
4407 char_u *save_arg = NULL;
4408 char_u *s = NULL;
4409 char_u *oldval; /* previous value if *varp */
4410 char_u *newval;
4411 char_u *origval;
4412 unsigned newlen;
4413 int comma;
4414 int bs;
4415 int new_value_alloced; /* new string option
4416 was allocated */
4418 /* When using ":set opt=val" for a global option
4419 * with a local value the local value will be
4420 * reset, use the global value here. */
4421 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
4422 && ((int)options[opt_idx].indir & PV_BOTH))
4423 varp = options[opt_idx].var;
4425 /* The old value is kept until we are sure that the
4426 * new value is valid. */
4427 oldval = *(char_u **)varp;
4428 if (nextchar == '&') /* set to default val */
4430 newval = options[opt_idx].def_val[
4431 ((flags & P_VI_DEF) || cp_val)
4432 ? VI_DEFAULT : VIM_DEFAULT];
4433 if ((char_u **)varp == &p_bg)
4435 /* guess the value of 'background' */
4436 #ifdef FEAT_GUI
4437 if (gui.in_use)
4438 newval = gui_bg_default();
4439 else
4440 #endif
4441 newval = term_bg_default();
4444 /* expand environment variables and ~ (since the
4445 * default value was already expanded, only
4446 * required when an environment variable was set
4447 * later */
4448 if (newval == NULL)
4449 newval = empty_option;
4450 else
4452 s = option_expand(opt_idx, newval);
4453 if (s == NULL)
4454 s = newval;
4455 newval = vim_strsave(s);
4457 new_value_alloced = TRUE;
4459 else if (nextchar == '<') /* set to global val */
4461 newval = vim_strsave(*(char_u **)get_varp_scope(
4462 &(options[opt_idx]), OPT_GLOBAL));
4463 new_value_alloced = TRUE;
4465 else
4467 ++arg; /* jump to after the '=' or ':' */
4470 * Set 'keywordprg' to ":help" if an empty
4471 * value was passed to :set by the user.
4472 * Misuse errbuf[] for the resulting string.
4474 if (varp == (char_u *)&p_kp
4475 && (*arg == NUL || *arg == ' '))
4477 STRCPY(errbuf, ":help");
4478 save_arg = arg;
4479 arg = errbuf;
4482 * Convert 'whichwrap' number to string, for
4483 * backwards compatibility with Vim 3.0.
4484 * Misuse errbuf[] for the resulting string.
4486 else if (varp == (char_u *)&p_ww
4487 && VIM_ISDIGIT(*arg))
4489 *errbuf = NUL;
4490 i = getdigits(&arg);
4491 if (i & 1)
4492 STRCAT(errbuf, "b,");
4493 if (i & 2)
4494 STRCAT(errbuf, "s,");
4495 if (i & 4)
4496 STRCAT(errbuf, "h,l,");
4497 if (i & 8)
4498 STRCAT(errbuf, "<,>,");
4499 if (i & 16)
4500 STRCAT(errbuf, "[,],");
4501 if (*errbuf != NUL) /* remove trailing , */
4502 errbuf[STRLEN(errbuf) - 1] = NUL;
4503 save_arg = arg;
4504 arg = errbuf;
4507 * Remove '>' before 'dir' and 'bdir', for
4508 * backwards compatibility with version 3.0
4510 else if ( *arg == '>'
4511 && (varp == (char_u *)&p_dir
4512 || varp == (char_u *)&p_bdir))
4514 ++arg;
4517 /* When setting the local value of a global
4518 * option, the old value may be the global value. */
4519 if (((int)options[opt_idx].indir & PV_BOTH)
4520 && (opt_flags & OPT_LOCAL))
4521 origval = *(char_u **)get_varp(
4522 &options[opt_idx]);
4523 else
4524 origval = oldval;
4527 * Copy the new string into allocated memory.
4528 * Can't use set_string_option_direct(), because
4529 * we need to remove the backslashes.
4531 /* get a bit too much */
4532 newlen = (unsigned)STRLEN(arg) + 1;
4533 if (adding || prepending || removing)
4534 newlen += (unsigned)STRLEN(origval) + 1;
4535 newval = alloc(newlen);
4536 if (newval == NULL) /* out of mem, don't change */
4537 break;
4538 s = newval;
4541 * Copy the string, skip over escaped chars.
4542 * For MS-DOS and WIN32 backslashes before normal
4543 * file name characters are not removed, and keep
4544 * backslash at start, for "\\machine\path", but
4545 * do remove it for "\\\\machine\\path".
4546 * The reverse is found in ExpandOldSetting().
4548 while (*arg && !vim_iswhite(*arg))
4550 if (*arg == '\\' && arg[1] != NUL
4551 #ifdef BACKSLASH_IN_FILENAME
4552 && !((flags & P_EXPAND)
4553 && vim_isfilec(arg[1])
4554 && (arg[1] != '\\'
4555 || (s == newval
4556 && arg[2] != '\\')))
4557 #endif
4559 ++arg; /* remove backslash */
4560 #ifdef FEAT_MBYTE
4561 if (has_mbyte
4562 && (i = (*mb_ptr2len)(arg)) > 1)
4564 /* copy multibyte char */
4565 mch_memmove(s, arg, (size_t)i);
4566 arg += i;
4567 s += i;
4569 else
4570 #endif
4571 *s++ = *arg++;
4573 *s = NUL;
4576 * Expand environment variables and ~.
4577 * Don't do it when adding without inserting a
4578 * comma.
4580 if (!(adding || prepending || removing)
4581 || (flags & P_COMMA))
4583 s = option_expand(opt_idx, newval);
4584 if (s != NULL)
4586 vim_free(newval);
4587 newlen = (unsigned)STRLEN(s) + 1;
4588 if (adding || prepending || removing)
4589 newlen += (unsigned)STRLEN(origval) + 1;
4590 newval = alloc(newlen);
4591 if (newval == NULL)
4592 break;
4593 STRCPY(newval, s);
4597 /* locate newval[] in origval[] when removing it
4598 * and when adding to avoid duplicates */
4599 i = 0; /* init for GCC */
4600 if (removing || (flags & P_NODUP))
4602 i = (int)STRLEN(newval);
4603 bs = 0;
4604 for (s = origval; *s; ++s)
4606 if ((!(flags & P_COMMA)
4607 || s == origval
4608 || (s[-1] == ',' && !(bs & 1)))
4609 && STRNCMP(s, newval, i) == 0
4610 && (!(flags & P_COMMA)
4611 || s[i] == ','
4612 || s[i] == NUL))
4613 break;
4614 /* Count backspaces. Only a comma with an
4615 * even number of backspaces before it is
4616 * recognized as a separator */
4617 if (s > origval && s[-1] == '\\')
4618 ++bs;
4619 else
4620 bs = 0;
4623 /* do not add if already there */
4624 if ((adding || prepending) && *s)
4626 prepending = FALSE;
4627 adding = FALSE;
4628 STRCPY(newval, origval);
4632 /* concatenate the two strings; add a ',' if
4633 * needed */
4634 if (adding || prepending)
4636 comma = ((flags & P_COMMA) && *origval != NUL
4637 && *newval != NUL);
4638 if (adding)
4640 i = (int)STRLEN(origval);
4641 mch_memmove(newval + i + comma, newval,
4642 STRLEN(newval) + 1);
4643 mch_memmove(newval, origval, (size_t)i);
4645 else
4647 i = (int)STRLEN(newval);
4648 mch_memmove(newval + i + comma, origval,
4649 STRLEN(origval) + 1);
4651 if (comma)
4652 newval[i] = ',';
4655 /* Remove newval[] from origval[]. (Note: "i" has
4656 * been set above and is used here). */
4657 if (removing)
4659 STRCPY(newval, origval);
4660 if (*s)
4662 /* may need to remove a comma */
4663 if (flags & P_COMMA)
4665 if (s == origval)
4667 /* include comma after string */
4668 if (s[i] == ',')
4669 ++i;
4671 else
4673 /* include comma before string */
4674 --s;
4675 ++i;
4678 mch_memmove(newval + (s - origval), s + i,
4679 STRLEN(s + i) + 1);
4683 if (flags & P_FLAGLIST)
4685 /* Remove flags that appear twice. */
4686 for (s = newval; *s; ++s)
4687 if ((!(flags & P_COMMA) || *s != ',')
4688 && vim_strchr(s + 1, *s) != NULL)
4690 mch_memmove(s, s + 1, STRLEN(s));
4691 --s;
4695 if (save_arg != NULL) /* number for 'whichwrap' */
4696 arg = save_arg;
4697 new_value_alloced = TRUE;
4700 /* Set the new value. */
4701 *(char_u **)(varp) = newval;
4703 /* Handle side effects, and set the global value for
4704 * ":set" on local options. */
4705 errmsg = did_set_string_option(opt_idx, (char_u **)varp,
4706 new_value_alloced, oldval, errbuf, opt_flags);
4708 /* If error detected, print the error message. */
4709 if (errmsg != NULL)
4710 goto skip;
4712 else /* key code option */
4714 char_u *p;
4716 if (nextchar == '&')
4718 if (add_termcap_entry(key_name, TRUE) == FAIL)
4719 errmsg = (char_u *)N_("E522: Not found in termcap");
4721 else
4723 ++arg; /* jump to after the '=' or ':' */
4724 for (p = arg; *p && !vim_iswhite(*p); ++p)
4725 if (*p == '\\' && p[1] != NUL)
4726 ++p;
4727 nextchar = *p;
4728 *p = NUL;
4729 add_termcode(key_name, arg, FALSE);
4730 *p = nextchar;
4732 if (full_screen)
4733 ttest(FALSE);
4734 redraw_all_later(CLEAR);
4738 if (opt_idx >= 0)
4739 did_set_option(opt_idx, opt_flags,
4740 !prepending && !adding && !removing);
4743 skip:
4745 * Advance to next argument.
4746 * - skip until a blank found, taking care of backslashes
4747 * - skip blanks
4748 * - skip one "=val" argument (for hidden options ":set gfn =xx")
4750 for (i = 0; i < 2 ; ++i)
4752 while (*arg != NUL && !vim_iswhite(*arg))
4753 if (*arg++ == '\\' && *arg != NUL)
4754 ++arg;
4755 arg = skipwhite(arg);
4756 if (*arg != '=')
4757 break;
4761 if (errmsg != NULL)
4763 vim_strncpy(IObuff, (char_u *)_(errmsg), IOSIZE - 1);
4764 i = (int)STRLEN(IObuff) + 2;
4765 if (i + (arg - startarg) < IOSIZE)
4767 /* append the argument with the error */
4768 STRCAT(IObuff, ": ");
4769 mch_memmove(IObuff + i, startarg, (arg - startarg));
4770 IObuff[i + (arg - startarg)] = NUL;
4772 /* make sure all characters are printable */
4773 trans_characters(IObuff, IOSIZE);
4775 ++no_wait_return; /* wait_return done later */
4776 emsg(IObuff); /* show error highlighted */
4777 --no_wait_return;
4779 return FAIL;
4782 arg = skipwhite(arg);
4785 theend:
4786 if (silent_mode && did_show)
4788 /* After displaying option values in silent mode. */
4789 silent_mode = FALSE;
4790 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
4791 msg_putchar('\n');
4792 cursor_on(); /* msg_start() switches it off */
4793 out_flush();
4794 silent_mode = TRUE;
4795 info_message = FALSE; /* use mch_msg(), not mch_errmsg() */
4798 return OK;
4802 * Call this when an option has been given a new value through a user command.
4803 * Sets the P_WAS_SET flag and takes care of the P_INSECURE flag.
4805 static void
4806 did_set_option(opt_idx, opt_flags, new_value)
4807 int opt_idx;
4808 int opt_flags; /* possibly with OPT_MODELINE */
4809 int new_value; /* value was replaced completely */
4811 long_u *p;
4813 options[opt_idx].flags |= P_WAS_SET;
4815 /* When an option is set in the sandbox, from a modeline or in secure mode
4816 * set the P_INSECURE flag. Otherwise, if a new value is stored reset the
4817 * flag. */
4818 p = insecure_flag(opt_idx, opt_flags);
4819 if (secure
4820 #ifdef HAVE_SANDBOX
4821 || sandbox != 0
4822 #endif
4823 || (opt_flags & OPT_MODELINE))
4824 *p = *p | P_INSECURE;
4825 else if (new_value)
4826 *p = *p & ~P_INSECURE;
4829 static char_u *
4830 illegal_char(errbuf, c)
4831 char_u *errbuf;
4832 int c;
4834 if (errbuf == NULL)
4835 return (char_u *)"";
4836 sprintf((char *)errbuf, _("E539: Illegal character <%s>"),
4837 (char *)transchar(c));
4838 return errbuf;
4842 * Convert a key name or string into a key value.
4843 * Used for 'wildchar' and 'cedit' options.
4845 static int
4846 string_to_key(arg)
4847 char_u *arg;
4849 if (*arg == '<')
4850 return find_key_option(arg + 1);
4851 if (*arg == '^')
4852 return Ctrl_chr(arg[1]);
4853 return *arg;
4856 #ifdef FEAT_CMDWIN
4858 * Check value of 'cedit' and set cedit_key.
4859 * Returns NULL if value is OK, error message otherwise.
4861 static char_u *
4862 check_cedit()
4864 int n;
4866 if (*p_cedit == NUL)
4867 cedit_key = -1;
4868 else
4870 n = string_to_key(p_cedit);
4871 if (vim_isprintc(n))
4872 return e_invarg;
4873 cedit_key = n;
4875 return NULL;
4877 #endif
4879 #ifdef FEAT_TITLE
4881 * When changing 'title', 'titlestring', 'icon' or 'iconstring', call
4882 * maketitle() to create and display it.
4883 * When switching the title or icon off, call mch_restore_title() to get
4884 * the old value back.
4886 static void
4887 did_set_title(icon)
4888 int icon; /* Did set icon instead of title */
4890 if (starting != NO_SCREEN
4891 #ifdef FEAT_GUI
4892 && !gui.starting
4893 #endif
4896 maketitle();
4897 if (icon)
4899 if (!p_icon)
4900 mch_restore_title(2);
4902 else
4904 if (!p_title)
4905 mch_restore_title(1);
4909 #endif
4912 * set_options_bin - called when 'bin' changes value.
4914 void
4915 set_options_bin(oldval, newval, opt_flags)
4916 int oldval;
4917 int newval;
4918 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
4921 * The option values that are changed when 'bin' changes are
4922 * copied when 'bin is set and restored when 'bin' is reset.
4924 if (newval)
4926 if (!oldval) /* switched on */
4928 if (!(opt_flags & OPT_GLOBAL))
4930 curbuf->b_p_tw_nobin = curbuf->b_p_tw;
4931 curbuf->b_p_wm_nobin = curbuf->b_p_wm;
4932 curbuf->b_p_ml_nobin = curbuf->b_p_ml;
4933 curbuf->b_p_et_nobin = curbuf->b_p_et;
4935 if (!(opt_flags & OPT_LOCAL))
4937 p_tw_nobin = p_tw;
4938 p_wm_nobin = p_wm;
4939 p_ml_nobin = p_ml;
4940 p_et_nobin = p_et;
4944 if (!(opt_flags & OPT_GLOBAL))
4946 curbuf->b_p_tw = 0; /* no automatic line wrap */
4947 curbuf->b_p_wm = 0; /* no automatic line wrap */
4948 curbuf->b_p_ml = 0; /* no modelines */
4949 curbuf->b_p_et = 0; /* no expandtab */
4951 if (!(opt_flags & OPT_LOCAL))
4953 p_tw = 0;
4954 p_wm = 0;
4955 p_ml = FALSE;
4956 p_et = FALSE;
4957 p_bin = TRUE; /* needed when called for the "-b" argument */
4960 else if (oldval) /* switched off */
4962 if (!(opt_flags & OPT_GLOBAL))
4964 curbuf->b_p_tw = curbuf->b_p_tw_nobin;
4965 curbuf->b_p_wm = curbuf->b_p_wm_nobin;
4966 curbuf->b_p_ml = curbuf->b_p_ml_nobin;
4967 curbuf->b_p_et = curbuf->b_p_et_nobin;
4969 if (!(opt_flags & OPT_LOCAL))
4971 p_tw = p_tw_nobin;
4972 p_wm = p_wm_nobin;
4973 p_ml = p_ml_nobin;
4974 p_et = p_et_nobin;
4979 #ifdef FEAT_VIMINFO
4981 * Find the parameter represented by the given character (eg ', :, ", or /),
4982 * and return its associated value in the 'viminfo' string.
4983 * Only works for number parameters, not for 'r' or 'n'.
4984 * If the parameter is not specified in the string or there is no following
4985 * number, return -1.
4988 get_viminfo_parameter(type)
4989 int type;
4991 char_u *p;
4993 p = find_viminfo_parameter(type);
4994 if (p != NULL && VIM_ISDIGIT(*p))
4995 return atoi((char *)p);
4996 return -1;
5000 * Find the parameter represented by the given character (eg ''', ':', '"', or
5001 * '/') in the 'viminfo' option and return a pointer to the string after it.
5002 * Return NULL if the parameter is not specified in the string.
5004 char_u *
5005 find_viminfo_parameter(type)
5006 int type;
5008 char_u *p;
5010 for (p = p_viminfo; *p; ++p)
5012 if (*p == type)
5013 return p + 1;
5014 if (*p == 'n') /* 'n' is always the last one */
5015 break;
5016 p = vim_strchr(p, ','); /* skip until next ',' */
5017 if (p == NULL) /* hit the end without finding parameter */
5018 break;
5020 return NULL;
5022 #endif
5025 * Expand environment variables for some string options.
5026 * These string options cannot be indirect!
5027 * If "val" is NULL expand the current value of the option.
5028 * Return pointer to NameBuff, or NULL when not expanded.
5030 static char_u *
5031 option_expand(opt_idx, val)
5032 int opt_idx;
5033 char_u *val;
5035 /* if option doesn't need expansion nothing to do */
5036 if (!(options[opt_idx].flags & P_EXPAND) || options[opt_idx].var == NULL)
5037 return NULL;
5039 /* If val is longer than MAXPATHL no meaningful expansion can be done,
5040 * expand_env() would truncate the string. */
5041 if (val != NULL && STRLEN(val) > MAXPATHL)
5042 return NULL;
5044 if (val == NULL)
5045 val = *(char_u **)options[opt_idx].var;
5048 * Expanding this with NameBuff, expand_env() must not be passed IObuff.
5049 * Escape spaces when expanding 'tags', they are used to separate file
5050 * names.
5051 * For 'spellsuggest' expand after "file:".
5053 expand_env_esc(val, NameBuff, MAXPATHL,
5054 (char_u **)options[opt_idx].var == &p_tags, FALSE,
5055 #ifdef FEAT_SPELL
5056 (char_u **)options[opt_idx].var == &p_sps ? (char_u *)"file:" :
5057 #endif
5058 NULL);
5059 if (STRCMP(NameBuff, val) == 0) /* they are the same */
5060 return NULL;
5062 return NameBuff;
5066 * After setting various option values: recompute variables that depend on
5067 * option values.
5069 static void
5070 didset_options()
5072 /* initialize the table for 'iskeyword' et.al. */
5073 (void)init_chartab();
5075 #ifdef FEAT_MBYTE
5076 (void)opt_strings_flags(p_cmp, p_cmp_values, &cmp_flags, TRUE);
5077 #endif
5078 (void)opt_strings_flags(p_bkc, p_bkc_values, &bkc_flags, TRUE);
5079 #ifdef FEAT_SESSION
5080 (void)opt_strings_flags(p_ssop, p_ssop_values, &ssop_flags, TRUE);
5081 (void)opt_strings_flags(p_vop, p_ssop_values, &vop_flags, TRUE);
5082 #endif
5083 #ifdef FEAT_FOLDING
5084 (void)opt_strings_flags(p_fdo, p_fdo_values, &fdo_flags, TRUE);
5085 #endif
5086 #ifdef FEAT_FULLSCREEN
5087 (void)check_fuoptions(p_fuoptions, &fuoptions_flags,
5088 &fuoptions_bgcolor);
5089 #endif
5090 (void)opt_strings_flags(p_dy, p_dy_values, &dy_flags, TRUE);
5091 #ifdef FEAT_VIRTUALEDIT
5092 (void)opt_strings_flags(p_ve, p_ve_values, &ve_flags, TRUE);
5093 #endif
5094 #if defined(FEAT_MOUSE) && (defined(UNIX) || defined(VMS))
5095 (void)opt_strings_flags(p_ttym, p_ttym_values, &ttym_flags, FALSE);
5096 #endif
5097 #ifdef FEAT_SPELL
5098 (void)spell_check_msm();
5099 (void)spell_check_sps();
5100 (void)compile_cap_prog(curbuf);
5101 #endif
5102 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
5103 (void)opt_strings_flags(p_toolbar, p_toolbar_values, &toolbar_flags, TRUE);
5104 #endif
5105 #if defined(FEAT_TOOLBAR) && ((defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)) \
5106 || defined(FEAT_GUI_MACVIM))
5107 (void)opt_strings_flags(p_tbis, p_tbis_values, &tbis_flags, FALSE);
5108 #endif
5109 #ifdef FEAT_CMDWIN
5110 /* set cedit_key */
5111 (void)check_cedit();
5112 #endif
5116 * Check for string options that are NULL (normally only termcap options).
5118 void
5119 check_options()
5121 int opt_idx;
5123 for (opt_idx = 0; options[opt_idx].fullname != NULL; opt_idx++)
5124 if ((options[opt_idx].flags & P_STRING) && options[opt_idx].var != NULL)
5125 check_string_option((char_u **)get_varp(&(options[opt_idx])));
5129 * Check string options in a buffer for NULL value.
5131 void
5132 check_buf_options(buf)
5133 buf_T *buf;
5135 #if defined(FEAT_QUICKFIX)
5136 check_string_option(&buf->b_p_bh);
5137 check_string_option(&buf->b_p_bt);
5138 #endif
5139 #ifdef FEAT_MBYTE
5140 check_string_option(&buf->b_p_fenc);
5141 #endif
5142 check_string_option(&buf->b_p_ff);
5143 #ifdef FEAT_FIND_ID
5144 check_string_option(&buf->b_p_def);
5145 check_string_option(&buf->b_p_inc);
5146 # ifdef FEAT_EVAL
5147 check_string_option(&buf->b_p_inex);
5148 # endif
5149 #endif
5150 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
5151 check_string_option(&buf->b_p_inde);
5152 check_string_option(&buf->b_p_indk);
5153 #endif
5154 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
5155 check_string_option(&buf->b_p_bexpr);
5156 #endif
5157 #if defined(FEAT_EVAL)
5158 check_string_option(&buf->b_p_fex);
5159 #endif
5160 #ifdef FEAT_CRYPT
5161 check_string_option(&buf->b_p_key);
5162 #endif
5163 check_string_option(&buf->b_p_kp);
5164 check_string_option(&buf->b_p_mps);
5165 check_string_option(&buf->b_p_fo);
5166 check_string_option(&buf->b_p_flp);
5167 check_string_option(&buf->b_p_isk);
5168 #ifdef FEAT_COMMENTS
5169 check_string_option(&buf->b_p_com);
5170 #endif
5171 #ifdef FEAT_FOLDING
5172 check_string_option(&buf->b_p_cms);
5173 #endif
5174 check_string_option(&buf->b_p_nf);
5175 #ifdef FEAT_TEXTOBJ
5176 check_string_option(&buf->b_p_qe);
5177 #endif
5178 #ifdef FEAT_SYN_HL
5179 check_string_option(&buf->b_p_syn);
5180 #endif
5181 #ifdef FEAT_SPELL
5182 check_string_option(&buf->b_p_spc);
5183 check_string_option(&buf->b_p_spf);
5184 check_string_option(&buf->b_p_spl);
5185 #endif
5186 #ifdef FEAT_SEARCHPATH
5187 check_string_option(&buf->b_p_sua);
5188 #endif
5189 #ifdef FEAT_CINDENT
5190 check_string_option(&buf->b_p_cink);
5191 check_string_option(&buf->b_p_cino);
5192 #endif
5193 #ifdef FEAT_AUTOCMD
5194 check_string_option(&buf->b_p_ft);
5195 #endif
5196 #ifdef FEAT_OSFILETYPE
5197 check_string_option(&buf->b_p_oft);
5198 #endif
5199 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
5200 check_string_option(&buf->b_p_cinw);
5201 #endif
5202 #ifdef FEAT_INS_EXPAND
5203 check_string_option(&buf->b_p_cpt);
5204 #endif
5205 #ifdef FEAT_COMPL_FUNC
5206 check_string_option(&buf->b_p_cfu);
5207 check_string_option(&buf->b_p_ofu);
5208 #endif
5209 #ifdef FEAT_KEYMAP
5210 check_string_option(&buf->b_p_keymap);
5211 #endif
5212 #ifdef FEAT_QUICKFIX
5213 check_string_option(&buf->b_p_gp);
5214 check_string_option(&buf->b_p_mp);
5215 check_string_option(&buf->b_p_efm);
5216 #endif
5217 check_string_option(&buf->b_p_ep);
5218 check_string_option(&buf->b_p_path);
5219 check_string_option(&buf->b_p_tags);
5220 #ifdef FEAT_INS_EXPAND
5221 check_string_option(&buf->b_p_dict);
5222 check_string_option(&buf->b_p_tsr);
5223 #endif
5227 * Free the string allocated for an option.
5228 * Checks for the string being empty_option. This may happen if we're out of
5229 * memory, vim_strsave() returned NULL, which was replaced by empty_option by
5230 * check_options().
5231 * Does NOT check for P_ALLOCED flag!
5233 void
5234 free_string_option(p)
5235 char_u *p;
5237 if (p != empty_option)
5238 vim_free(p);
5241 void
5242 clear_string_option(pp)
5243 char_u **pp;
5245 if (*pp != empty_option)
5246 vim_free(*pp);
5247 *pp = empty_option;
5250 static void
5251 check_string_option(pp)
5252 char_u **pp;
5254 if (*pp == NULL)
5255 *pp = empty_option;
5259 * Mark a terminal option as allocated, found by a pointer into term_strings[].
5261 void
5262 set_term_option_alloced(p)
5263 char_u **p;
5265 int opt_idx;
5267 for (opt_idx = 1; options[opt_idx].fullname != NULL; opt_idx++)
5268 if (options[opt_idx].var == (char_u *)p)
5270 options[opt_idx].flags |= P_ALLOCED;
5271 return;
5273 return; /* cannot happen: didn't find it! */
5276 #if defined(FEAT_EVAL) || defined(PROTO)
5278 * Return TRUE when option "opt" was set from a modeline or in secure mode.
5279 * Return FALSE when it wasn't.
5280 * Return -1 for an unknown option.
5283 was_set_insecurely(opt, opt_flags)
5284 char_u *opt;
5285 int opt_flags;
5287 int idx = findoption(opt);
5288 long_u *flagp;
5290 if (idx >= 0)
5292 flagp = insecure_flag(idx, opt_flags);
5293 return (*flagp & P_INSECURE) != 0;
5295 EMSG2(_(e_intern2), "was_set_insecurely()");
5296 return -1;
5300 * Get a pointer to the flags used for the P_INSECURE flag of option
5301 * "opt_idx". For some local options a local flags field is used.
5303 static long_u *
5304 insecure_flag(opt_idx, opt_flags)
5305 int opt_idx;
5306 int opt_flags;
5308 if (opt_flags & OPT_LOCAL)
5309 switch ((int)options[opt_idx].indir)
5311 #ifdef FEAT_STL_OPT
5312 case PV_STL: return &curwin->w_p_stl_flags;
5313 #endif
5314 #ifdef FEAT_EVAL
5315 # ifdef FEAT_FOLDING
5316 case PV_FDE: return &curwin->w_p_fde_flags;
5317 case PV_FDT: return &curwin->w_p_fdt_flags;
5318 # endif
5319 # ifdef FEAT_BEVAL
5320 case PV_BEXPR: return &curbuf->b_p_bexpr_flags;
5321 # endif
5322 # if defined(FEAT_CINDENT)
5323 case PV_INDE: return &curbuf->b_p_inde_flags;
5324 # endif
5325 case PV_FEX: return &curbuf->b_p_fex_flags;
5326 # ifdef FEAT_FIND_ID
5327 case PV_INEX: return &curbuf->b_p_inex_flags;
5328 # endif
5329 #endif
5332 /* Nothing special, return global flags field. */
5333 return &options[opt_idx].flags;
5335 #endif
5338 * Set a string option to a new value (without checking the effect).
5339 * The string is copied into allocated memory.
5340 * if ("opt_idx" == -1) "name" is used, otherwise "opt_idx" is used.
5341 * When "set_sid" is zero set the scriptID to current_SID. When "set_sid" is
5342 * SID_NONE don't set the scriptID. Otherwise set the scriptID to "set_sid".
5344 /*ARGSUSED*/
5345 void
5346 set_string_option_direct(name, opt_idx, val, opt_flags, set_sid)
5347 char_u *name;
5348 int opt_idx;
5349 char_u *val;
5350 int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */
5351 int set_sid;
5353 char_u *s;
5354 char_u **varp;
5355 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
5356 int idx = opt_idx;
5358 if (idx == -1) /* use name */
5360 idx = findoption(name);
5361 if (idx < 0) /* not found (should not happen) */
5363 EMSG2(_(e_intern2), "set_string_option_direct()");
5364 return;
5368 if (options[idx].var == NULL) /* can't set hidden option */
5369 return;
5371 s = vim_strsave(val);
5372 if (s != NULL)
5374 varp = (char_u **)get_varp_scope(&(options[idx]),
5375 both ? OPT_LOCAL : opt_flags);
5376 if ((opt_flags & OPT_FREE) && (options[idx].flags & P_ALLOCED))
5377 free_string_option(*varp);
5378 *varp = s;
5380 /* For buffer/window local option may also set the global value. */
5381 if (both)
5382 set_string_option_global(idx, varp);
5384 options[idx].flags |= P_ALLOCED;
5386 /* When setting both values of a global option with a local value,
5387 * make the local value empty, so that the global value is used. */
5388 if (((int)options[idx].indir & PV_BOTH) && both)
5390 free_string_option(*varp);
5391 *varp = empty_option;
5393 # ifdef FEAT_EVAL
5394 if (set_sid != SID_NONE)
5395 set_option_scriptID_idx(idx, opt_flags,
5396 set_sid == 0 ? current_SID : set_sid);
5397 # endif
5402 * Set global value for string option when it's a local option.
5404 static void
5405 set_string_option_global(opt_idx, varp)
5406 int opt_idx; /* option index */
5407 char_u **varp; /* pointer to option variable */
5409 char_u **p, *s;
5411 /* the global value is always allocated */
5412 if (options[opt_idx].var == VAR_WIN)
5413 p = (char_u **)GLOBAL_WO(varp);
5414 else
5415 p = (char_u **)options[opt_idx].var;
5416 if (options[opt_idx].indir != PV_NONE
5417 && p != varp
5418 && (s = vim_strsave(*varp)) != NULL)
5420 free_string_option(*p);
5421 *p = s;
5426 * Set a string option to a new value, and handle the effects.
5428 static void
5429 set_string_option(opt_idx, value, opt_flags)
5430 int opt_idx;
5431 char_u *value;
5432 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
5434 char_u *s;
5435 char_u **varp;
5436 char_u *oldval;
5438 if (options[opt_idx].var == NULL) /* don't set hidden option */
5439 return;
5441 s = vim_strsave(value);
5442 if (s != NULL)
5444 varp = (char_u **)get_varp_scope(&(options[opt_idx]),
5445 (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
5446 ? (((int)options[opt_idx].indir & PV_BOTH)
5447 ? OPT_GLOBAL : OPT_LOCAL)
5448 : opt_flags);
5449 oldval = *varp;
5450 *varp = s;
5451 if (did_set_string_option(opt_idx, varp, TRUE, oldval, NULL,
5452 opt_flags) == NULL)
5453 did_set_option(opt_idx, opt_flags, TRUE);
5458 * Handle string options that need some action to perform when changed.
5459 * Returns NULL for success, or an error message for an error.
5461 static char_u *
5462 did_set_string_option(opt_idx, varp, new_value_alloced, oldval, errbuf,
5463 opt_flags)
5464 int opt_idx; /* index in options[] table */
5465 char_u **varp; /* pointer to the option variable */
5466 int new_value_alloced; /* new value was allocated */
5467 char_u *oldval; /* previous value of the option */
5468 char_u *errbuf; /* buffer for errors, or NULL */
5469 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
5471 char_u *errmsg = NULL;
5472 char_u *s, *p;
5473 int did_chartab = FALSE;
5474 char_u **gvarp;
5475 long_u free_oldval = (options[opt_idx].flags & P_ALLOCED);
5477 /* Get the global option to compare with, otherwise we would have to check
5478 * two values for all local options. */
5479 gvarp = (char_u **)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL);
5481 /* Disallow changing some options from secure mode */
5482 if ((secure
5483 #ifdef HAVE_SANDBOX
5484 || sandbox != 0
5485 #endif
5486 ) && (options[opt_idx].flags & P_SECURE))
5488 errmsg = e_secure;
5491 /* Check for a "normal" file name in some options. Disallow a path
5492 * separator (slash and/or backslash), wildcards and characters that are
5493 * often illegal in a file name. */
5494 else if ((options[opt_idx].flags & P_NFNAME)
5495 && vim_strpbrk(*varp, (char_u *)"/\\*?[|<>") != NULL)
5497 errmsg = e_invarg;
5500 /* 'term' */
5501 else if (varp == &T_NAME)
5503 if (T_NAME[0] == NUL)
5504 errmsg = (char_u *)N_("E529: Cannot set 'term' to empty string");
5505 #ifdef FEAT_GUI
5506 if (gui.in_use)
5507 errmsg = (char_u *)N_("E530: Cannot change term in GUI");
5508 else if (term_is_gui(T_NAME))
5509 errmsg = (char_u *)N_("E531: Use \":gui\" to start the GUI");
5510 #endif
5511 else if (set_termname(T_NAME) == FAIL)
5512 errmsg = (char_u *)N_("E522: Not found in termcap");
5513 else
5514 /* Screen colors may have changed. */
5515 redraw_later_clear();
5518 /* 'backupcopy' */
5519 else if (varp == &p_bkc)
5521 if (opt_strings_flags(p_bkc, p_bkc_values, &bkc_flags, TRUE) != OK)
5522 errmsg = e_invarg;
5523 if (((bkc_flags & BKC_AUTO) != 0)
5524 + ((bkc_flags & BKC_YES) != 0)
5525 + ((bkc_flags & BKC_NO) != 0) != 1)
5527 /* Must have exactly one of "auto", "yes" and "no". */
5528 (void)opt_strings_flags(oldval, p_bkc_values, &bkc_flags, TRUE);
5529 errmsg = e_invarg;
5533 /* 'backupext' and 'patchmode' */
5534 else if (varp == &p_bex || varp == &p_pm)
5536 if (STRCMP(*p_bex == '.' ? p_bex + 1 : p_bex,
5537 *p_pm == '.' ? p_pm + 1 : p_pm) == 0)
5538 errmsg = (char_u *)N_("E589: 'backupext' and 'patchmode' are equal");
5542 * 'isident', 'iskeyword', 'isprint or 'isfname' option: refill chartab[]
5543 * If the new option is invalid, use old value. 'lisp' option: refill
5544 * chartab[] for '-' char
5546 else if ( varp == &p_isi
5547 || varp == &(curbuf->b_p_isk)
5548 || varp == &p_isp
5549 || varp == &p_isf)
5551 if (init_chartab() == FAIL)
5553 did_chartab = TRUE; /* need to restore it below */
5554 errmsg = e_invarg; /* error in value */
5558 /* 'helpfile' */
5559 else if (varp == &p_hf)
5561 /* May compute new values for $VIM and $VIMRUNTIME */
5562 if (didset_vim)
5564 vim_setenv((char_u *)"VIM", (char_u *)"");
5565 didset_vim = FALSE;
5567 if (didset_vimruntime)
5569 vim_setenv((char_u *)"VIMRUNTIME", (char_u *)"");
5570 didset_vimruntime = FALSE;
5574 #ifdef FEAT_MULTI_LANG
5575 /* 'helplang' */
5576 else if (varp == &p_hlg)
5578 /* Check for "", "ab", "ab,cd", etc. */
5579 for (s = p_hlg; *s != NUL; s += 3)
5581 if (s[1] == NUL || ((s[2] != ',' || s[3] == NUL) && s[2] != NUL))
5583 errmsg = e_invarg;
5584 break;
5586 if (s[2] == NUL)
5587 break;
5590 #endif
5592 /* 'highlight' */
5593 else if (varp == &p_hl)
5595 if (highlight_changed() == FAIL)
5596 errmsg = e_invarg; /* invalid flags */
5599 /* 'nrformats' */
5600 else if (gvarp == &p_nf)
5602 if (check_opt_strings(*varp, p_nf_values, TRUE) != OK)
5603 errmsg = e_invarg;
5606 #ifdef FEAT_SESSION
5607 /* 'sessionoptions' */
5608 else if (varp == &p_ssop)
5610 if (opt_strings_flags(p_ssop, p_ssop_values, &ssop_flags, TRUE) != OK)
5611 errmsg = e_invarg;
5612 if ((ssop_flags & SSOP_CURDIR) && (ssop_flags & SSOP_SESDIR))
5614 /* Don't allow both "sesdir" and "curdir". */
5615 (void)opt_strings_flags(oldval, p_ssop_values, &ssop_flags, TRUE);
5616 errmsg = e_invarg;
5619 /* 'viewoptions' */
5620 else if (varp == &p_vop)
5622 if (opt_strings_flags(p_vop, p_ssop_values, &vop_flags, TRUE) != OK)
5623 errmsg = e_invarg;
5625 #endif
5627 /* 'scrollopt' */
5628 #ifdef FEAT_SCROLLBIND
5629 else if (varp == &p_sbo)
5631 if (check_opt_strings(p_sbo, p_scbopt_values, TRUE) != OK)
5632 errmsg = e_invarg;
5634 #endif
5636 /* 'ambiwidth' */
5637 #ifdef FEAT_MBYTE
5638 else if (varp == &p_ambw)
5640 if (check_opt_strings(p_ambw, p_ambw_values, FALSE) != OK)
5641 errmsg = e_invarg;
5643 #endif
5645 /* 'background' */
5646 else if (varp == &p_bg)
5648 if (check_opt_strings(p_bg, p_bg_values, FALSE) == OK)
5650 #ifdef FEAT_EVAL
5651 int dark = (*p_bg == 'd');
5652 #endif
5654 init_highlight(FALSE, FALSE);
5656 #ifdef FEAT_EVAL
5657 if (dark != (*p_bg == 'd')
5658 && get_var_value((char_u *)"g:colors_name") != NULL)
5660 /* The color scheme must have set 'background' back to another
5661 * value, that's not what we want here. Disable the color
5662 * scheme and set the colors again. */
5663 do_unlet((char_u *)"g:colors_name", TRUE);
5664 free_string_option(p_bg);
5665 p_bg = vim_strsave((char_u *)(dark ? "dark" : "light"));
5666 check_string_option(&p_bg);
5667 init_highlight(FALSE, FALSE);
5669 #endif
5671 else
5672 errmsg = e_invarg;
5675 /* 'wildmode' */
5676 else if (varp == &p_wim)
5678 if (check_opt_wim() == FAIL)
5679 errmsg = e_invarg;
5682 #ifdef FEAT_CMDL_COMPL
5683 /* 'wildoptions' */
5684 else if (varp == &p_wop)
5686 if (check_opt_strings(p_wop, p_wop_values, TRUE) != OK)
5687 errmsg = e_invarg;
5689 #endif
5691 #ifdef FEAT_WAK
5692 /* 'winaltkeys' */
5693 else if (varp == &p_wak)
5695 if (*p_wak == NUL
5696 || check_opt_strings(p_wak, p_wak_values, FALSE) != OK)
5697 errmsg = e_invarg;
5698 # ifdef FEAT_MENU
5699 # ifdef FEAT_GUI_MOTIF
5700 else if (gui.in_use)
5701 gui_motif_set_mnemonics(p_wak[0] == 'y' || p_wak[0] == 'm');
5702 # else
5703 # ifdef FEAT_GUI_GTK
5704 else if (gui.in_use)
5705 gui_gtk_set_mnemonics(p_wak[0] == 'y' || p_wak[0] == 'm');
5706 # endif
5707 # endif
5708 # endif
5710 #endif
5712 #ifdef FEAT_AUTOCMD
5713 /* 'eventignore' */
5714 else if (varp == &p_ei)
5716 if (check_ei() == FAIL)
5717 errmsg = e_invarg;
5719 #endif
5721 #ifdef FEAT_MBYTE
5722 /* 'encoding' and 'fileencoding' */
5723 else if (varp == &p_enc || gvarp == &p_fenc || varp == &p_tenc)
5725 if (gvarp == &p_fenc)
5727 if (!curbuf->b_p_ma && opt_flags != OPT_GLOBAL)
5728 errmsg = e_modifiable;
5729 else if (vim_strchr(*varp, ',') != NULL)
5730 /* No comma allowed in 'fileencoding'; catches confusing it
5731 * with 'fileencodings'. */
5732 errmsg = e_invarg;
5733 else
5735 # ifdef FEAT_TITLE
5736 /* May show a "+" in the title now. */
5737 need_maketitle = TRUE;
5738 # endif
5739 /* Add 'fileencoding' to the swap file. */
5740 ml_setflags(curbuf);
5743 if (errmsg == NULL)
5745 /* canonize the value, so that STRCMP() can be used on it */
5746 p = enc_canonize(*varp);
5747 if (p != NULL)
5749 vim_free(*varp);
5750 *varp = p;
5752 if (varp == &p_enc)
5754 errmsg = mb_init();
5755 # ifdef FEAT_TITLE
5756 need_maketitle = TRUE;
5757 # endif
5761 # if (defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)) || defined(FEAT_GUI_MACVIM)
5762 if (errmsg == NULL && varp == &p_tenc && gui.in_use)
5764 /* MacVim and GTK+ 2 GUIs force 'tenc' to UTF-8. */
5765 if (STRCMP(p_tenc, "utf-8") != 0)
5766 # if defined(FEAT_GUI_MACVIM)
5767 errmsg = (char_u *)N_("E617: Cannot be changed in MacVim");
5768 # else
5769 errmsg = (char_u *)N_("E617: Cannot be changed in the GTK+ 2 GUI");
5770 # endif
5772 # endif
5774 if (errmsg == NULL)
5776 # ifdef FEAT_KEYMAP
5777 /* When 'keymap' is used and 'encoding' changes, reload the keymap
5778 * (with another encoding). */
5779 if (varp == &p_enc && *curbuf->b_p_keymap != NUL)
5780 (void)keymap_init();
5781 # endif
5783 /* When 'termencoding' is not empty and 'encoding' changes or when
5784 * 'termencoding' changes, need to setup for keyboard input and
5785 * display output conversion. */
5786 if (((varp == &p_enc && *p_tenc != NUL) || varp == &p_tenc))
5788 convert_setup(&input_conv, p_tenc, p_enc);
5789 convert_setup(&output_conv, p_enc, p_tenc);
5792 # if defined(WIN3264) && defined(FEAT_MBYTE)
5793 /* $HOME may have characters in active code page. */
5794 if (varp == &p_enc)
5795 init_homedir();
5796 # endif
5799 #endif
5801 #if defined(FEAT_POSTSCRIPT)
5802 else if (varp == &p_penc)
5804 /* Canonize printencoding if VIM standard one */
5805 p = enc_canonize(p_penc);
5806 if (p != NULL)
5808 vim_free(p_penc);
5809 p_penc = p;
5811 else
5813 /* Ensure lower case and '-' for '_' */
5814 for (s = p_penc; *s != NUL; s++)
5816 if (*s == '_')
5817 *s = '-';
5818 else
5819 *s = TOLOWER_ASC(*s);
5823 #endif
5825 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
5826 else if (varp == &p_imak)
5828 if (gui.in_use && !im_xim_isvalid_imactivate())
5829 errmsg = e_invarg;
5831 #endif
5833 #ifdef FEAT_KEYMAP
5834 else if (varp == &curbuf->b_p_keymap)
5836 /* load or unload key mapping tables */
5837 errmsg = keymap_init();
5839 /* When successfully installed a new keymap switch on using it. */
5840 if (*curbuf->b_p_keymap != NUL && errmsg == NULL)
5842 curbuf->b_p_iminsert = B_IMODE_LMAP;
5843 if (curbuf->b_p_imsearch != B_IMODE_USE_INSERT)
5844 curbuf->b_p_imsearch = B_IMODE_LMAP;
5845 set_iminsert_global();
5846 set_imsearch_global();
5847 # ifdef FEAT_WINDOWS
5848 status_redraw_curbuf();
5849 # endif
5852 #endif
5854 /* 'fileformat' */
5855 else if (gvarp == &p_ff)
5857 if (!curbuf->b_p_ma && !(opt_flags & OPT_GLOBAL))
5858 errmsg = e_modifiable;
5859 else if (check_opt_strings(*varp, p_ff_values, FALSE) != OK)
5860 errmsg = e_invarg;
5861 else
5863 /* may also change 'textmode' */
5864 if (get_fileformat(curbuf) == EOL_DOS)
5865 curbuf->b_p_tx = TRUE;
5866 else
5867 curbuf->b_p_tx = FALSE;
5868 #ifdef FEAT_TITLE
5869 need_maketitle = TRUE;
5870 #endif
5871 /* update flag in swap file */
5872 ml_setflags(curbuf);
5876 /* 'fileformats' */
5877 else if (varp == &p_ffs)
5879 if (check_opt_strings(p_ffs, p_ff_values, TRUE) != OK)
5880 errmsg = e_invarg;
5881 else
5883 /* also change 'textauto' */
5884 if (*p_ffs == NUL)
5885 p_ta = FALSE;
5886 else
5887 p_ta = TRUE;
5891 #if defined(FEAT_CRYPT) && defined(FEAT_CMDHIST)
5892 /* 'cryptkey' */
5893 else if (gvarp == &p_key)
5895 /* Make sure the ":set" command doesn't show the new value in the
5896 * history. */
5897 remove_key_from_history();
5899 #endif
5901 /* 'matchpairs' */
5902 else if (gvarp == &p_mps)
5904 /* Check for "x:y,x:y" */
5905 for (p = *varp; *p != NUL; p += 4)
5907 if (p[1] != ':' || p[2] == NUL || (p[3] != NUL && p[3] != ','))
5909 errmsg = e_invarg;
5910 break;
5912 if (p[3] == NUL)
5913 break;
5917 #ifdef FEAT_COMMENTS
5918 /* 'comments' */
5919 else if (gvarp == &p_com)
5921 for (s = *varp; *s; )
5923 while (*s && *s != ':')
5925 if (vim_strchr((char_u *)COM_ALL, *s) == NULL
5926 && !VIM_ISDIGIT(*s) && *s != '-')
5928 errmsg = illegal_char(errbuf, *s);
5929 break;
5931 ++s;
5933 if (*s++ == NUL)
5934 errmsg = (char_u *)N_("E524: Missing colon");
5935 else if (*s == ',' || *s == NUL)
5936 errmsg = (char_u *)N_("E525: Zero length string");
5937 if (errmsg != NULL)
5938 break;
5939 while (*s && *s != ',')
5941 if (*s == '\\' && s[1] != NUL)
5942 ++s;
5943 ++s;
5945 s = skip_to_option_part(s);
5948 #endif
5950 /* 'listchars' */
5951 else if (varp == &p_lcs)
5953 errmsg = set_chars_option(varp);
5956 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
5957 /* 'fillchars' */
5958 else if (varp == &p_fcs)
5960 errmsg = set_chars_option(varp);
5962 #endif
5964 #ifdef FEAT_CMDWIN
5965 /* 'cedit' */
5966 else if (varp == &p_cedit)
5968 errmsg = check_cedit();
5970 #endif
5972 /* 'verbosefile' */
5973 else if (varp == &p_vfile)
5975 verbose_stop();
5976 if (*p_vfile != NUL && verbose_open() == FAIL)
5977 errmsg = e_invarg;
5980 #ifdef FEAT_VIMINFO
5981 /* 'viminfo' */
5982 else if (varp == &p_viminfo)
5984 for (s = p_viminfo; *s;)
5986 /* Check it's a valid character */
5987 if (vim_strchr((char_u *)"!\"%'/:<@cfhnrs", *s) == NULL)
5989 errmsg = illegal_char(errbuf, *s);
5990 break;
5992 if (*s == 'n') /* name is always last one */
5994 break;
5996 else if (*s == 'r') /* skip until next ',' */
5998 while (*++s && *s != ',')
6001 else if (*s == '%')
6003 /* optional number */
6004 while (vim_isdigit(*++s))
6007 else if (*s == '!' || *s == 'h' || *s == 'c')
6008 ++s; /* no extra chars */
6009 else /* must have a number */
6011 while (vim_isdigit(*++s))
6014 if (!VIM_ISDIGIT(*(s - 1)))
6016 if (errbuf != NULL)
6018 sprintf((char *)errbuf,
6019 _("E526: Missing number after <%s>"),
6020 transchar_byte(*(s - 1)));
6021 errmsg = errbuf;
6023 else
6024 errmsg = (char_u *)"";
6025 break;
6028 if (*s == ',')
6029 ++s;
6030 else if (*s)
6032 if (errbuf != NULL)
6033 errmsg = (char_u *)N_("E527: Missing comma");
6034 else
6035 errmsg = (char_u *)"";
6036 break;
6039 if (*p_viminfo && errmsg == NULL && get_viminfo_parameter('\'') < 0)
6040 errmsg = (char_u *)N_("E528: Must specify a ' value");
6042 #endif /* FEAT_VIMINFO */
6044 /* terminal options */
6045 else if (istermoption(&options[opt_idx]) && full_screen)
6047 /* ":set t_Co=0" and ":set t_Co=1" do ":set t_Co=" */
6048 if (varp == &T_CCO)
6050 t_colors = atoi((char *)T_CCO);
6051 if (t_colors <= 1)
6053 if (new_value_alloced)
6054 vim_free(T_CCO);
6055 T_CCO = empty_option;
6057 /* We now have a different color setup, initialize it again. */
6058 init_highlight(TRUE, FALSE);
6060 ttest(FALSE);
6061 if (varp == &T_ME)
6063 out_str(T_ME);
6064 redraw_later(CLEAR);
6065 #if defined(MSDOS) || (defined(WIN3264) && !defined(FEAT_GUI_W32))
6066 /* Since t_me has been set, this probably means that the user
6067 * wants to use this as default colors. Need to reset default
6068 * background/foreground colors. */
6069 mch_set_normal_colors();
6070 #endif
6074 #ifdef FEAT_LINEBREAK
6075 /* 'showbreak' */
6076 else if (varp == &p_sbr)
6078 for (s = p_sbr; *s; )
6080 if (ptr2cells(s) != 1)
6081 errmsg = (char_u *)N_("E595: contains unprintable or wide character");
6082 mb_ptr_adv(s);
6085 #endif
6087 #ifdef FEAT_GUI
6088 /* 'guifont' */
6089 else if (varp == &p_guifont)
6091 if (gui.in_use)
6093 p = p_guifont;
6094 # if defined(FEAT_GUI_GTK)
6096 * Put up a font dialog and let the user select a new value.
6097 * If this is cancelled go back to the old value but don't
6098 * give an error message.
6100 if (STRCMP(p, "*") == 0)
6102 p = gui_mch_font_dialog(oldval);
6104 if (new_value_alloced)
6105 free_string_option(p_guifont);
6107 p_guifont = (p != NULL) ? p : vim_strsave(oldval);
6108 new_value_alloced = TRUE;
6110 # endif
6111 if (p != NULL && gui_init_font(p_guifont, FALSE) != OK)
6113 # if defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_PHOTON) \
6114 || defined(FEAT_GUI_MACVIM)
6115 if (STRCMP(p_guifont, "*") == 0)
6117 /* Dialog was cancelled: Keep the old value without giving
6118 * an error message. */
6119 if (new_value_alloced)
6120 free_string_option(p_guifont);
6121 p_guifont = vim_strsave(oldval);
6122 new_value_alloced = TRUE;
6124 else
6125 # endif
6126 errmsg = (char_u *)N_("E596: Invalid font(s)");
6130 # ifdef FEAT_XFONTSET
6131 else if (varp == &p_guifontset)
6133 if (STRCMP(p_guifontset, "*") == 0)
6134 errmsg = (char_u *)N_("E597: can't select fontset");
6135 else if (gui.in_use && gui_init_font(p_guifontset, TRUE) != OK)
6136 errmsg = (char_u *)N_("E598: Invalid fontset");
6138 # endif
6139 # ifdef FEAT_MBYTE
6140 else if (varp == &p_guifontwide)
6142 if (STRCMP(p_guifontwide, "*") == 0)
6143 errmsg = (char_u *)N_("E533: can't select wide font");
6144 else if (gui_get_wide_font() == FAIL)
6145 errmsg = (char_u *)N_("E534: Invalid wide font");
6147 # endif
6148 #endif
6150 #ifdef CURSOR_SHAPE
6151 /* 'guicursor' */
6152 else if (varp == &p_guicursor)
6153 errmsg = parse_shape_opt(SHAPE_CURSOR);
6154 #endif
6156 #ifdef FEAT_MOUSESHAPE
6157 /* 'mouseshape' */
6158 else if (varp == &p_mouseshape)
6160 errmsg = parse_shape_opt(SHAPE_MOUSE);
6161 update_mouseshape(-1);
6163 #endif
6165 #ifdef FEAT_PRINTER
6166 else if (varp == &p_popt)
6167 errmsg = parse_printoptions();
6168 # if defined(FEAT_MBYTE) && defined(FEAT_POSTSCRIPT)
6169 else if (varp == &p_pmfn)
6170 errmsg = parse_printmbfont();
6171 # endif
6172 #endif
6174 #ifdef FEAT_LANGMAP
6175 /* 'langmap' */
6176 else if (varp == &p_langmap)
6177 langmap_set();
6178 #endif
6180 #ifdef FEAT_LINEBREAK
6181 /* 'breakat' */
6182 else if (varp == &p_breakat)
6183 fill_breakat_flags();
6184 #endif
6186 #ifdef FEAT_TITLE
6187 /* 'titlestring' and 'iconstring' */
6188 else if (varp == &p_titlestring || varp == &p_iconstring)
6190 # ifdef FEAT_STL_OPT
6191 int flagval = (varp == &p_titlestring) ? STL_IN_TITLE : STL_IN_ICON;
6193 /* NULL => statusline syntax */
6194 if (vim_strchr(*varp, '%') && check_stl_option(*varp) == NULL)
6195 stl_syntax |= flagval;
6196 else
6197 stl_syntax &= ~flagval;
6198 # endif
6199 did_set_title(varp == &p_iconstring);
6202 #endif
6204 #ifdef FEAT_GUI
6205 /* 'guioptions' */
6206 else if (varp == &p_go)
6207 gui_init_which_components(oldval);
6208 #endif
6210 #if defined(FEAT_GUI_TABLINE)
6211 /* 'guitablabel' */
6212 else if (varp == &p_gtl)
6213 redraw_tabline = TRUE;
6214 #endif
6216 #if defined(FEAT_MOUSE_TTY) && (defined(UNIX) || defined(VMS))
6217 /* 'ttymouse' */
6218 else if (varp == &p_ttym)
6220 /* Switch the mouse off before changing the escape sequences used for
6221 * that. */
6222 mch_setmouse(FALSE);
6223 if (opt_strings_flags(p_ttym, p_ttym_values, &ttym_flags, FALSE) != OK)
6224 errmsg = e_invarg;
6225 else
6226 check_mouse_termcode();
6227 if (termcap_active)
6228 setmouse(); /* may switch it on again */
6230 #endif
6232 #ifdef FEAT_VISUAL
6233 /* 'selection' */
6234 else if (varp == &p_sel)
6236 if (*p_sel == NUL
6237 || check_opt_strings(p_sel, p_sel_values, FALSE) != OK)
6238 errmsg = e_invarg;
6241 /* 'selectmode' */
6242 else if (varp == &p_slm)
6244 if (check_opt_strings(p_slm, p_slm_values, TRUE) != OK)
6245 errmsg = e_invarg;
6247 #endif
6249 #ifdef FEAT_BROWSE
6250 /* 'browsedir' */
6251 else if (varp == &p_bsdir)
6253 if (check_opt_strings(p_bsdir, p_bsdir_values, FALSE) != OK
6254 && !mch_isdir(p_bsdir))
6255 errmsg = e_invarg;
6257 #endif
6259 #ifdef FEAT_VISUAL
6260 /* 'keymodel' */
6261 else if (varp == &p_km)
6263 if (check_opt_strings(p_km, p_km_values, TRUE) != OK)
6264 errmsg = e_invarg;
6265 else
6267 km_stopsel = (vim_strchr(p_km, 'o') != NULL);
6268 km_startsel = (vim_strchr(p_km, 'a') != NULL);
6271 #endif
6273 /* 'mousemodel' */
6274 else if (varp == &p_mousem)
6276 if (check_opt_strings(p_mousem, p_mousem_values, FALSE) != OK)
6277 errmsg = e_invarg;
6278 #if defined(FEAT_GUI_MOTIF) && defined(FEAT_MENU) && (XmVersion <= 1002)
6279 else if (*p_mousem != *oldval)
6280 /* Changed from "extend" to "popup" or "popup_setpos" or vv: need
6281 * to create or delete the popup menus. */
6282 gui_motif_update_mousemodel(root_menu);
6283 #endif
6286 /* 'switchbuf' */
6287 else if (varp == &p_swb)
6289 if (check_opt_strings(p_swb, p_swb_values, TRUE) != OK)
6290 errmsg = e_invarg;
6293 /* 'debug' */
6294 else if (varp == &p_debug)
6296 if (check_opt_strings(p_debug, p_debug_values, TRUE) != OK)
6297 errmsg = e_invarg;
6300 /* 'display' */
6301 else if (varp == &p_dy)
6303 if (opt_strings_flags(p_dy, p_dy_values, &dy_flags, TRUE) != OK)
6304 errmsg = e_invarg;
6305 else
6306 (void)init_chartab();
6310 #ifdef FEAT_VERTSPLIT
6311 /* 'eadirection' */
6312 else if (varp == &p_ead)
6314 if (check_opt_strings(p_ead, p_ead_values, FALSE) != OK)
6315 errmsg = e_invarg;
6317 #endif
6319 #ifdef FEAT_CLIPBOARD
6320 /* 'clipboard' */
6321 else if (varp == &p_cb)
6322 errmsg = check_clipboard_option();
6323 #endif
6325 #ifdef FEAT_SPELL
6326 /* When 'spelllang' or 'spellfile' is set and there is a window for this
6327 * buffer in which 'spell' is set load the wordlists. */
6328 else if (varp == &(curbuf->b_p_spl) || varp == &(curbuf->b_p_spf))
6330 win_T *wp;
6331 int l;
6333 if (varp == &(curbuf->b_p_spf))
6335 l = (int)STRLEN(curbuf->b_p_spf);
6336 if (l > 0 && (l < 4 || STRCMP(curbuf->b_p_spf + l - 4,
6337 ".add") != 0))
6338 errmsg = e_invarg;
6341 if (errmsg == NULL)
6343 FOR_ALL_WINDOWS(wp)
6344 if (wp->w_buffer == curbuf && wp->w_p_spell)
6346 errmsg = did_set_spelllang(curbuf);
6347 # ifdef FEAT_WINDOWS
6348 break;
6349 # endif
6353 /* When 'spellcapcheck' is set compile the regexp program. */
6354 else if (varp == &(curbuf->b_p_spc))
6356 errmsg = compile_cap_prog(curbuf);
6358 /* 'spellsuggest' */
6359 else if (varp == &p_sps)
6361 if (spell_check_sps() != OK)
6362 errmsg = e_invarg;
6364 /* 'mkspellmem' */
6365 else if (varp == &p_msm)
6367 if (spell_check_msm() != OK)
6368 errmsg = e_invarg;
6370 #endif
6372 #ifdef FEAT_QUICKFIX
6373 /* When 'bufhidden' is set, check for valid value. */
6374 else if (gvarp == &p_bh)
6376 if (check_opt_strings(curbuf->b_p_bh, p_bufhidden_values, FALSE) != OK)
6377 errmsg = e_invarg;
6380 /* When 'buftype' is set, check for valid value. */
6381 else if (gvarp == &p_bt)
6383 if (check_opt_strings(curbuf->b_p_bt, p_buftype_values, FALSE) != OK)
6384 errmsg = e_invarg;
6385 else
6387 # ifdef FEAT_WINDOWS
6388 if (curwin->w_status_height)
6390 curwin->w_redr_status = TRUE;
6391 redraw_later(VALID);
6393 # endif
6394 curbuf->b_help = (curbuf->b_p_bt[0] == 'h');
6397 #endif
6399 #ifdef FEAT_STL_OPT
6400 /* 'statusline' or 'rulerformat' */
6401 else if (gvarp == &p_stl || varp == &p_ruf)
6403 int wid;
6405 if (varp == &p_ruf) /* reset ru_wid first */
6406 ru_wid = 0;
6407 s = *varp;
6408 if (varp == &p_ruf && *s == '%')
6410 /* set ru_wid if 'ruf' starts with "%99(" */
6411 if (*++s == '-') /* ignore a '-' */
6412 s++;
6413 wid = getdigits(&s);
6414 if (wid && *s == '(' && (errmsg = check_stl_option(p_ruf)) == NULL)
6415 ru_wid = wid;
6416 else
6417 errmsg = check_stl_option(p_ruf);
6419 /* check 'statusline' only if it doesn't start with "%!" */
6420 else if (varp == &p_ruf || s[0] != '%' || s[1] != '!')
6421 errmsg = check_stl_option(s);
6422 if (varp == &p_ruf && errmsg == NULL)
6423 comp_col();
6425 #endif
6427 #ifdef FEAT_INS_EXPAND
6428 /* check if it is a valid value for 'complete' -- Acevedo */
6429 else if (gvarp == &p_cpt)
6431 for (s = *varp; *s;)
6433 while(*s == ',' || *s == ' ')
6434 s++;
6435 if (!*s)
6436 break;
6437 if (vim_strchr((char_u *)".wbuksid]tU", *s) == NULL)
6439 errmsg = illegal_char(errbuf, *s);
6440 break;
6442 if (*++s != NUL && *s != ',' && *s != ' ')
6444 if (s[-1] == 'k' || s[-1] == 's')
6446 /* skip optional filename after 'k' and 's' */
6447 while (*s && *s != ',' && *s != ' ')
6449 if (*s == '\\')
6450 ++s;
6451 ++s;
6454 else
6456 if (errbuf != NULL)
6458 sprintf((char *)errbuf,
6459 _("E535: Illegal character after <%c>"),
6460 *--s);
6461 errmsg = errbuf;
6463 else
6464 errmsg = (char_u *)"";
6465 break;
6471 /* 'completeopt' */
6472 else if (varp == &p_cot)
6474 if (check_opt_strings(p_cot, p_cot_values, TRUE) != OK)
6475 errmsg = e_invarg;
6477 #endif /* FEAT_INS_EXPAND */
6480 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
6481 else if (varp == &p_toolbar)
6483 if (opt_strings_flags(p_toolbar, p_toolbar_values,
6484 &toolbar_flags, TRUE) != OK)
6485 errmsg = e_invarg;
6486 else
6488 out_flush();
6489 gui_mch_show_toolbar((toolbar_flags &
6490 (TOOLBAR_TEXT | TOOLBAR_ICONS)) != 0);
6493 #endif
6495 #if defined(FEAT_TOOLBAR) && ((defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)) \
6496 || defined(FEAT_GUI_MACVIM))
6497 /* 'toolbariconsize': GTK+ 2 and MacVim only */
6498 else if (varp == &p_tbis)
6500 if (opt_strings_flags(p_tbis, p_tbis_values, &tbis_flags, FALSE) != OK)
6501 errmsg = e_invarg;
6502 else
6504 out_flush();
6505 gui_mch_show_toolbar((toolbar_flags &
6506 (TOOLBAR_TEXT | TOOLBAR_ICONS)) != 0);
6509 #endif
6511 /* 'pastetoggle': translate key codes like in a mapping */
6512 else if (varp == &p_pt)
6514 if (*p_pt)
6516 (void)replace_termcodes(p_pt, &p, TRUE, TRUE, FALSE);
6517 if (p != NULL)
6519 if (new_value_alloced)
6520 free_string_option(p_pt);
6521 p_pt = p;
6522 new_value_alloced = TRUE;
6527 /* 'backspace' */
6528 else if (varp == &p_bs)
6530 if (VIM_ISDIGIT(*p_bs))
6532 if (*p_bs >'2' || p_bs[1] != NUL)
6533 errmsg = e_invarg;
6535 else if (check_opt_strings(p_bs, p_bs_values, TRUE) != OK)
6536 errmsg = e_invarg;
6539 #ifdef FEAT_MBYTE
6540 /* 'casemap' */
6541 else if (varp == &p_cmp)
6543 if (opt_strings_flags(p_cmp, p_cmp_values, &cmp_flags, TRUE) != OK)
6544 errmsg = e_invarg;
6546 #endif
6548 #ifdef FEAT_DIFF
6549 /* 'diffopt' */
6550 else if (varp == &p_dip)
6552 if (diffopt_changed() == FAIL)
6553 errmsg = e_invarg;
6555 #endif
6557 #ifdef FEAT_FOLDING
6558 /* 'foldmethod' */
6559 else if (gvarp == &curwin->w_allbuf_opt.wo_fdm)
6561 if (check_opt_strings(*varp, p_fdm_values, FALSE) != OK
6562 || *curwin->w_p_fdm == NUL)
6563 errmsg = e_invarg;
6564 else
6565 foldUpdateAll(curwin);
6567 # ifdef FEAT_EVAL
6568 /* 'foldexpr' */
6569 else if (varp == &curwin->w_p_fde)
6571 if (foldmethodIsExpr(curwin))
6572 foldUpdateAll(curwin);
6574 # endif
6575 /* 'foldmarker' */
6576 else if (gvarp == &curwin->w_allbuf_opt.wo_fmr)
6578 p = vim_strchr(*varp, ',');
6579 if (p == NULL)
6580 errmsg = (char_u *)N_("E536: comma required");
6581 else if (p == *varp || p[1] == NUL)
6582 errmsg = e_invarg;
6583 else if (foldmethodIsMarker(curwin))
6584 foldUpdateAll(curwin);
6586 /* 'commentstring' */
6587 else if (gvarp == &p_cms)
6589 if (**varp != NUL && strstr((char *)*varp, "%s") == NULL)
6590 errmsg = (char_u *)N_("E537: 'commentstring' must be empty or contain %s");
6592 /* 'foldopen' */
6593 else if (varp == &p_fdo)
6595 if (opt_strings_flags(p_fdo, p_fdo_values, &fdo_flags, TRUE) != OK)
6596 errmsg = e_invarg;
6598 /* 'foldclose' */
6599 else if (varp == &p_fcl)
6601 if (check_opt_strings(p_fcl, p_fcl_values, TRUE) != OK)
6602 errmsg = e_invarg;
6604 /* 'foldignore' */
6605 else if (gvarp == &curwin->w_allbuf_opt.wo_fdi)
6607 if (foldmethodIsIndent(curwin))
6608 foldUpdateAll(curwin);
6610 #endif
6612 #ifdef FEAT_FULLSCREEN
6613 /* 'fuoptions' */
6614 else if (varp == &p_fuoptions)
6616 if (check_fuoptions(p_fuoptions, &fuoptions_flags,
6617 &fuoptions_bgcolor) != OK)
6618 errmsg = e_invarg;
6620 #endif
6622 #ifdef FEAT_VIRTUALEDIT
6623 /* 'virtualedit' */
6624 else if (varp == &p_ve)
6626 if (opt_strings_flags(p_ve, p_ve_values, &ve_flags, TRUE) != OK)
6627 errmsg = e_invarg;
6628 else if (STRCMP(p_ve, oldval) != 0)
6630 /* Recompute cursor position in case the new 've' setting
6631 * changes something. */
6632 validate_virtcol();
6633 coladvance(curwin->w_virtcol);
6636 #endif
6638 #if defined(FEAT_CSCOPE) && defined(FEAT_QUICKFIX)
6639 else if (varp == &p_csqf)
6641 if (p_csqf != NULL)
6643 p = p_csqf;
6644 while (*p != NUL)
6646 if (vim_strchr((char_u *)CSQF_CMDS, *p) == NULL
6647 || p[1] == NUL
6648 || vim_strchr((char_u *)CSQF_FLAGS, p[1]) == NULL
6649 || (p[2] != NUL && p[2] != ','))
6651 errmsg = e_invarg;
6652 break;
6654 else if (p[2] == NUL)
6655 break;
6656 else
6657 p += 3;
6661 #endif
6663 /* Options that are a list of flags. */
6664 else
6666 p = NULL;
6667 if (varp == &p_ww)
6668 p = (char_u *)WW_ALL;
6669 if (varp == &p_shm)
6670 p = (char_u *)SHM_ALL;
6671 else if (varp == &(p_cpo))
6672 p = (char_u *)CPO_ALL;
6673 else if (varp == &(curbuf->b_p_fo))
6674 p = (char_u *)FO_ALL;
6675 else if (varp == &p_mouse)
6677 #ifdef FEAT_MOUSE
6678 p = (char_u *)MOUSE_ALL;
6679 #else
6680 if (*p_mouse != NUL)
6681 errmsg = (char_u *)N_("E538: No mouse support");
6682 #endif
6684 #if defined(FEAT_GUI)
6685 else if (varp == &p_go)
6686 p = (char_u *)GO_ALL;
6687 #endif
6688 if (p != NULL)
6690 for (s = *varp; *s; ++s)
6691 if (vim_strchr(p, *s) == NULL)
6693 errmsg = illegal_char(errbuf, *s);
6694 break;
6700 * If error detected, restore the previous value.
6702 if (errmsg != NULL)
6704 if (new_value_alloced)
6705 free_string_option(*varp);
6706 *varp = oldval;
6708 * When resetting some values, need to act on it.
6710 if (did_chartab)
6711 (void)init_chartab();
6712 if (varp == &p_hl)
6713 (void)highlight_changed();
6715 else
6717 #ifdef FEAT_EVAL
6718 /* Remember where the option was set. */
6719 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
6720 #endif
6722 * Free string options that are in allocated memory.
6723 * Use "free_oldval", because recursiveness may change the flags under
6724 * our fingers (esp. init_highlight()).
6726 if (free_oldval)
6727 free_string_option(oldval);
6728 if (new_value_alloced)
6729 options[opt_idx].flags |= P_ALLOCED;
6730 else
6731 options[opt_idx].flags &= ~P_ALLOCED;
6733 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
6734 && ((int)options[opt_idx].indir & PV_BOTH))
6736 /* global option with local value set to use global value; free
6737 * the local value and make it empty */
6738 p = get_varp_scope(&(options[opt_idx]), OPT_LOCAL);
6739 free_string_option(*(char_u **)p);
6740 *(char_u **)p = empty_option;
6743 /* May set global value for local option. */
6744 else if (!(opt_flags & OPT_LOCAL) && opt_flags != OPT_GLOBAL)
6745 set_string_option_global(opt_idx, varp);
6747 #ifdef FEAT_AUTOCMD
6749 * Trigger the autocommand only after setting the flags.
6751 # ifdef FEAT_SYN_HL
6752 /* When 'syntax' is set, load the syntax of that name */
6753 if (varp == &(curbuf->b_p_syn))
6755 apply_autocmds(EVENT_SYNTAX, curbuf->b_p_syn,
6756 curbuf->b_fname, TRUE, curbuf);
6758 # endif
6759 else if (varp == &(curbuf->b_p_ft))
6761 /* 'filetype' is set, trigger the FileType autocommand */
6762 did_filetype = TRUE;
6763 apply_autocmds(EVENT_FILETYPE, curbuf->b_p_ft,
6764 curbuf->b_fname, TRUE, curbuf);
6766 #endif
6767 #ifdef FEAT_SPELL
6768 if (varp == &(curbuf->b_p_spl))
6770 char_u fname[200];
6773 * Source the spell/LANG.vim in 'runtimepath'.
6774 * They could set 'spellcapcheck' depending on the language.
6775 * Use the first name in 'spelllang' up to '_region' or
6776 * '.encoding'.
6778 for (p = curbuf->b_p_spl; *p != NUL; ++p)
6779 if (vim_strchr((char_u *)"_.,", *p) != NULL)
6780 break;
6781 vim_snprintf((char *)fname, 200, "spell/%.*s.vim",
6782 (int)(p - curbuf->b_p_spl), curbuf->b_p_spl);
6783 source_runtime(fname, TRUE);
6785 #endif
6788 #ifdef FEAT_MOUSE
6789 if (varp == &p_mouse)
6791 # ifdef FEAT_MOUSE_TTY
6792 if (*p_mouse == NUL)
6793 mch_setmouse(FALSE); /* switch mouse off */
6794 else
6795 # endif
6796 setmouse(); /* in case 'mouse' changed */
6798 #endif
6800 if (curwin->w_curswant != MAXCOL)
6801 curwin->w_set_curswant = TRUE; /* in case 'showbreak' changed */
6802 check_redraw(options[opt_idx].flags);
6804 return errmsg;
6808 * Handle setting 'listchars' or 'fillchars'.
6809 * Returns error message, NULL if it's OK.
6811 static char_u *
6812 set_chars_option(varp)
6813 char_u **varp;
6815 int round, i, len, entries;
6816 char_u *p, *s;
6817 int c1, c2 = 0;
6818 struct charstab
6820 int *cp;
6821 char *name;
6823 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6824 static struct charstab filltab[] =
6826 {&fill_stl, "stl"},
6827 {&fill_stlnc, "stlnc"},
6828 {&fill_vert, "vert"},
6829 {&fill_fold, "fold"},
6830 {&fill_diff, "diff"},
6832 #endif
6833 static struct charstab lcstab[] =
6835 {&lcs_eol, "eol"},
6836 {&lcs_ext, "extends"},
6837 {&lcs_nbsp, "nbsp"},
6838 {&lcs_prec, "precedes"},
6839 {&lcs_tab2, "tab"},
6840 {&lcs_trail, "trail"},
6842 struct charstab *tab;
6844 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6845 if (varp == &p_lcs)
6846 #endif
6848 tab = lcstab;
6849 entries = sizeof(lcstab) / sizeof(struct charstab);
6851 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6852 else
6854 tab = filltab;
6855 entries = sizeof(filltab) / sizeof(struct charstab);
6857 #endif
6859 /* first round: check for valid value, second round: assign values */
6860 for (round = 0; round <= 1; ++round)
6862 if (round)
6864 /* After checking that the value is valid: set defaults: space for
6865 * 'fillchars', NUL for 'listchars' */
6866 for (i = 0; i < entries; ++i)
6867 *(tab[i].cp) = (varp == &p_lcs ? NUL : ' ');
6868 if (varp == &p_lcs)
6869 lcs_tab1 = NUL;
6870 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6871 else
6872 fill_diff = '-';
6873 #endif
6875 p = *varp;
6876 while (*p)
6878 for (i = 0; i < entries; ++i)
6880 len = (int)STRLEN(tab[i].name);
6881 if (STRNCMP(p, tab[i].name, len) == 0
6882 && p[len] == ':'
6883 && p[len + 1] != NUL)
6885 s = p + len + 1;
6886 #ifdef FEAT_MBYTE
6887 c1 = mb_ptr2char_adv(&s);
6888 if (mb_char2cells(c1) > 1)
6889 continue;
6890 #else
6891 c1 = *s++;
6892 #endif
6893 if (tab[i].cp == &lcs_tab2)
6895 if (*s == NUL)
6896 continue;
6897 #ifdef FEAT_MBYTE
6898 c2 = mb_ptr2char_adv(&s);
6899 if (mb_char2cells(c2) > 1)
6900 continue;
6901 #else
6902 c2 = *s++;
6903 #endif
6905 if (*s == ',' || *s == NUL)
6907 if (round)
6909 if (tab[i].cp == &lcs_tab2)
6911 lcs_tab1 = c1;
6912 lcs_tab2 = c2;
6914 else
6915 *(tab[i].cp) = c1;
6918 p = s;
6919 break;
6924 if (i == entries)
6925 return e_invarg;
6926 if (*p == ',')
6927 ++p;
6931 return NULL; /* no error */
6934 #ifdef FEAT_STL_OPT
6936 * Check validity of options with the 'statusline' format.
6937 * Return error message or NULL.
6939 char_u *
6940 check_stl_option(s)
6941 char_u *s;
6943 int itemcnt = 0;
6944 int groupdepth = 0;
6945 static char_u errbuf[80];
6947 while (*s && itemcnt < STL_MAX_ITEM)
6949 /* Check for valid keys after % sequences */
6950 while (*s && *s != '%')
6951 s++;
6952 if (!*s)
6953 break;
6954 s++;
6955 if (*s != '%' && *s != ')')
6956 ++itemcnt;
6957 if (*s == '%' || *s == STL_TRUNCMARK || *s == STL_MIDDLEMARK)
6959 s++;
6960 continue;
6962 if (*s == ')')
6964 s++;
6965 if (--groupdepth < 0)
6966 break;
6967 continue;
6969 if (*s == '-')
6970 s++;
6971 while (VIM_ISDIGIT(*s))
6972 s++;
6973 if (*s == STL_USER_HL)
6974 continue;
6975 if (*s == '.')
6977 s++;
6978 while (*s && VIM_ISDIGIT(*s))
6979 s++;
6981 if (*s == '(')
6983 groupdepth++;
6984 continue;
6986 if (vim_strchr(STL_ALL, *s) == NULL)
6988 return illegal_char(errbuf, *s);
6990 if (*s == '{')
6992 s++;
6993 while (*s != '}' && *s)
6994 s++;
6995 if (*s != '}')
6996 return (char_u *)N_("E540: Unclosed expression sequence");
6999 if (itemcnt >= STL_MAX_ITEM)
7000 return (char_u *)N_("E541: too many items");
7001 if (groupdepth != 0)
7002 return (char_u *)N_("E542: unbalanced groups");
7003 return NULL;
7005 #endif
7007 #ifdef FEAT_CLIPBOARD
7009 * Extract the items in the 'clipboard' option and set global values.
7011 static char_u *
7012 check_clipboard_option()
7014 int new_unnamed = FALSE;
7015 int new_autoselect = FALSE;
7016 int new_autoselectml = FALSE;
7017 regprog_T *new_exclude_prog = NULL;
7018 char_u *errmsg = NULL;
7019 char_u *p;
7021 for (p = p_cb; *p != NUL; )
7023 if (STRNCMP(p, "unnamed", 7) == 0 && (p[7] == ',' || p[7] == NUL))
7025 new_unnamed = TRUE;
7026 p += 7;
7028 else if (STRNCMP(p, "autoselect", 10) == 0
7029 && (p[10] == ',' || p[10] == NUL))
7031 new_autoselect = TRUE;
7032 p += 10;
7034 else if (STRNCMP(p, "autoselectml", 12) == 0
7035 && (p[12] == ',' || p[12] == NUL))
7037 new_autoselectml = TRUE;
7038 p += 12;
7040 else if (STRNCMP(p, "exclude:", 8) == 0 && new_exclude_prog == NULL)
7042 p += 8;
7043 new_exclude_prog = vim_regcomp(p, RE_MAGIC);
7044 if (new_exclude_prog == NULL)
7045 errmsg = e_invarg;
7046 break;
7048 else
7050 errmsg = e_invarg;
7051 break;
7053 if (*p == ',')
7054 ++p;
7056 if (errmsg == NULL)
7058 clip_unnamed = new_unnamed;
7059 clip_autoselect = new_autoselect;
7060 clip_autoselectml = new_autoselectml;
7061 vim_free(clip_exclude_prog);
7062 clip_exclude_prog = new_exclude_prog;
7064 else
7065 vim_free(new_exclude_prog);
7067 return errmsg;
7069 #endif
7071 #ifdef FEAT_SPELL
7073 * Set curbuf->b_cap_prog to the regexp program for 'spellcapcheck'.
7074 * Return error message when failed, NULL when OK.
7076 static char_u *
7077 compile_cap_prog(buf)
7078 buf_T *buf;
7080 regprog_T *rp = buf->b_cap_prog;
7081 char_u *re;
7083 if (*buf->b_p_spc == NUL)
7084 buf->b_cap_prog = NULL;
7085 else
7087 /* Prepend a ^ so that we only match at one column */
7088 re = concat_str((char_u *)"^", buf->b_p_spc);
7089 if (re != NULL)
7091 buf->b_cap_prog = vim_regcomp(re, RE_MAGIC);
7092 if (buf->b_cap_prog == NULL)
7094 buf->b_cap_prog = rp; /* restore the previous program */
7095 return e_invarg;
7097 vim_free(re);
7101 vim_free(rp);
7102 return NULL;
7104 #endif
7106 #if defined(FEAT_EVAL) || defined(PROTO)
7108 * Set the scriptID for an option, taking care of setting the buffer- or
7109 * window-local value.
7111 static void
7112 set_option_scriptID_idx(opt_idx, opt_flags, id)
7113 int opt_idx;
7114 int opt_flags;
7115 int id;
7117 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
7118 int indir = (int)options[opt_idx].indir;
7120 /* Remember where the option was set. For local options need to do that
7121 * in the buffer or window structure. */
7122 if (both || (opt_flags & OPT_GLOBAL) || (indir & (PV_BUF|PV_WIN)) == 0)
7123 options[opt_idx].scriptID = id;
7124 if (both || (opt_flags & OPT_LOCAL))
7126 if (indir & PV_BUF)
7127 curbuf->b_p_scriptID[indir & PV_MASK] = id;
7128 else if (indir & PV_WIN)
7129 curwin->w_p_scriptID[indir & PV_MASK] = id;
7132 #endif
7135 * Set the value of a boolean option, and take care of side effects.
7136 * Returns NULL for success, or an error message for an error.
7138 static char_u *
7139 set_bool_option(opt_idx, varp, value, opt_flags)
7140 int opt_idx; /* index in options[] table */
7141 char_u *varp; /* pointer to the option variable */
7142 int value; /* new value */
7143 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
7145 int old_value = *(int *)varp;
7147 /* Disallow changing some options from secure mode */
7148 if ((secure
7149 #ifdef HAVE_SANDBOX
7150 || sandbox != 0
7151 #endif
7152 ) && (options[opt_idx].flags & P_SECURE))
7153 return e_secure;
7155 *(int *)varp = value; /* set the new value */
7156 #ifdef FEAT_EVAL
7157 /* Remember where the option was set. */
7158 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
7159 #endif
7161 #ifdef FEAT_GUI
7162 need_mouse_correct = TRUE;
7163 #endif
7165 /* May set global value for local option. */
7166 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0)
7167 *(int *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) = value;
7170 * Handle side effects of changing a bool option.
7173 /* 'compatible' */
7174 if ((int *)varp == &p_cp)
7176 compatible_set();
7179 else if ((int *)varp == &curbuf->b_p_ro)
7181 /* when 'readonly' is reset globally, also reset readonlymode */
7182 if (!curbuf->b_p_ro && (opt_flags & OPT_LOCAL) == 0)
7183 readonlymode = FALSE;
7185 /* when 'readonly' is set may give W10 again */
7186 if (curbuf->b_p_ro)
7187 curbuf->b_did_warn = FALSE;
7189 #ifdef FEAT_TITLE
7190 need_maketitle = TRUE;
7191 #endif
7194 #ifdef FEAT_TITLE
7195 /* when 'modifiable' is changed, redraw the window title */
7196 else if ((int *)varp == &curbuf->b_p_ma)
7197 need_maketitle = TRUE;
7198 /* when 'endofline' is changed, redraw the window title */
7199 else if ((int *)varp == &curbuf->b_p_eol)
7200 need_maketitle = TRUE;
7201 #ifdef FEAT_MBYTE
7202 /* when 'bomb' is changed, redraw the window title */
7203 else if ((int *)varp == &curbuf->b_p_bomb)
7204 need_maketitle = TRUE;
7205 #endif
7206 #endif
7208 /* when 'bin' is set also set some other options */
7209 else if ((int *)varp == &curbuf->b_p_bin)
7211 set_options_bin(old_value, curbuf->b_p_bin, opt_flags);
7212 #ifdef FEAT_TITLE
7213 need_maketitle = TRUE;
7214 #endif
7217 #ifdef FEAT_AUTOCMD
7218 /* when 'buflisted' changes, trigger autocommands */
7219 else if ((int *)varp == &curbuf->b_p_bl && old_value != curbuf->b_p_bl)
7221 apply_autocmds(curbuf->b_p_bl ? EVENT_BUFADD : EVENT_BUFDELETE,
7222 NULL, NULL, TRUE, curbuf);
7224 #endif
7226 /* when 'swf' is set, create swapfile, when reset remove swapfile */
7227 else if ((int *)varp == &curbuf->b_p_swf)
7229 if (curbuf->b_p_swf && p_uc)
7230 ml_open_file(curbuf); /* create the swap file */
7231 else
7232 /* no need to reset curbuf->b_may_swap, ml_open_file() will check
7233 * buf->b_p_swf */
7234 mf_close_file(curbuf, TRUE); /* remove the swap file */
7237 /* when 'terse' is set change 'shortmess' */
7238 else if ((int *)varp == &p_terse)
7240 char_u *p;
7242 p = vim_strchr(p_shm, SHM_SEARCH);
7244 /* insert 's' in p_shm */
7245 if (p_terse && p == NULL)
7247 STRCPY(IObuff, p_shm);
7248 STRCAT(IObuff, "s");
7249 set_string_option_direct((char_u *)"shm", -1, IObuff, OPT_FREE, 0);
7251 /* remove 's' from p_shm */
7252 else if (!p_terse && p != NULL)
7253 mch_memmove(p, p + 1, STRLEN(p));
7256 /* when 'paste' is set or reset also change other options */
7257 else if ((int *)varp == &p_paste)
7259 paste_option_changed();
7262 /* when 'insertmode' is set from an autocommand need to do work here */
7263 else if ((int *)varp == &p_im)
7265 if (p_im)
7267 if ((State & INSERT) == 0)
7268 need_start_insertmode = TRUE;
7269 stop_insert_mode = FALSE;
7271 else
7273 need_start_insertmode = FALSE;
7274 stop_insert_mode = TRUE;
7275 if (restart_edit != 0 && mode_displayed)
7276 clear_cmdline = TRUE; /* remove "(insert)" */
7277 restart_edit = 0;
7281 /* when 'ignorecase' is set or reset and 'hlsearch' is set, redraw */
7282 else if ((int *)varp == &p_ic && p_hls)
7284 redraw_all_later(SOME_VALID);
7287 #ifdef FEAT_SEARCH_EXTRA
7288 /* when 'hlsearch' is set or reset: reset no_hlsearch */
7289 else if ((int *)varp == &p_hls)
7291 no_hlsearch = FALSE;
7293 #endif
7295 #ifdef FEAT_SCROLLBIND
7296 /* when 'scrollbind' is set: snapshot the current position to avoid a jump
7297 * at the end of normal_cmd() */
7298 else if ((int *)varp == &curwin->w_p_scb)
7300 if (curwin->w_p_scb)
7301 do_check_scrollbind(FALSE);
7303 #endif
7305 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
7306 /* There can be only one window with 'previewwindow' set. */
7307 else if ((int *)varp == &curwin->w_p_pvw)
7309 if (curwin->w_p_pvw)
7311 win_T *win;
7313 for (win = firstwin; win != NULL; win = win->w_next)
7314 if (win->w_p_pvw && win != curwin)
7316 curwin->w_p_pvw = FALSE;
7317 return (char_u *)N_("E590: A preview window already exists");
7321 #endif
7323 /* when 'textmode' is set or reset also change 'fileformat' */
7324 else if ((int *)varp == &curbuf->b_p_tx)
7326 set_fileformat(curbuf->b_p_tx ? EOL_DOS : EOL_UNIX, opt_flags);
7329 #ifdef FEAT_FULLSCREEN
7330 /* when 'fullscreen' changes, forward it to the gui */
7331 else if ((int *)varp == &p_fullscreen && gui.in_use)
7333 if (p_fullscreen && !old_value)
7335 guicolor_T fg, bg;
7336 if (fuoptions_flags & FUOPT_BGCOLOR_HLGROUP)
7338 /* Find out background color from colorscheme
7339 * via highlight group id */
7340 syn_id2colors(fuoptions_bgcolor, &fg, &bg);
7342 else
7344 /* set explicit background color */
7345 bg = fuoptions_bgcolor;
7347 gui_mch_enter_fullscreen(fuoptions_flags, bg);
7349 else if (!p_fullscreen && old_value)
7351 gui_mch_leave_fullscreen();
7354 #endif
7356 #if defined(FEAT_ANTIALIAS) && defined(FEAT_GUI_MACVIM)
7357 else if ((int *)varp == &p_antialias)
7359 gui_macvim_set_antialias(p_antialias);
7361 #endif
7363 /* when 'textauto' is set or reset also change 'fileformats' */
7364 else if ((int *)varp == &p_ta)
7365 set_string_option_direct((char_u *)"ffs", -1,
7366 p_ta ? (char_u *)DFLT_FFS_VIM : (char_u *)"",
7367 OPT_FREE | opt_flags, 0);
7370 * When 'lisp' option changes include/exclude '-' in
7371 * keyword characters.
7373 #ifdef FEAT_LISP
7374 else if (varp == (char_u *)&(curbuf->b_p_lisp))
7376 (void)buf_init_chartab(curbuf, FALSE); /* ignore errors */
7378 #endif
7380 #ifdef FEAT_TITLE
7381 /* when 'title' changed, may need to change the title; same for 'icon' */
7382 else if ((int *)varp == &p_title)
7384 did_set_title(FALSE);
7387 else if ((int *)varp == &p_icon)
7389 did_set_title(TRUE);
7391 #endif
7393 else if ((int *)varp == &curbuf->b_changed)
7395 if (!value)
7396 save_file_ff(curbuf); /* Buffer is unchanged */
7397 #ifdef FEAT_TITLE
7398 need_maketitle = TRUE;
7399 #endif
7400 #ifdef FEAT_AUTOCMD
7401 modified_was_set = value;
7402 #endif
7405 #ifdef BACKSLASH_IN_FILENAME
7406 else if ((int *)varp == &p_ssl)
7408 if (p_ssl)
7410 psepc = '/';
7411 psepcN = '\\';
7412 pseps[0] = '/';
7414 else
7416 psepc = '\\';
7417 psepcN = '/';
7418 pseps[0] = '\\';
7421 /* need to adjust the file name arguments and buffer names. */
7422 buflist_slash_adjust();
7423 alist_slash_adjust();
7424 # ifdef FEAT_EVAL
7425 scriptnames_slash_adjust();
7426 # endif
7428 #endif
7430 /* If 'wrap' is set, set w_leftcol to zero. */
7431 else if ((int *)varp == &curwin->w_p_wrap)
7433 if (curwin->w_p_wrap)
7434 curwin->w_leftcol = 0;
7437 #ifdef FEAT_WINDOWS
7438 else if ((int *)varp == &p_ea)
7440 if (p_ea && !old_value)
7441 win_equal(curwin, FALSE, 0);
7443 #endif
7445 else if ((int *)varp == &p_wiv)
7448 * When 'weirdinvert' changed, set/reset 't_xs'.
7449 * Then set 'weirdinvert' according to value of 't_xs'.
7451 if (p_wiv && !old_value)
7452 T_XS = (char_u *)"y";
7453 else if (!p_wiv && old_value)
7454 T_XS = empty_option;
7455 p_wiv = (*T_XS != NUL);
7458 #ifdef FEAT_BEVAL
7459 else if ((int *)varp == &p_beval)
7461 if (p_beval == TRUE)
7462 gui_mch_enable_beval_area(balloonEval);
7463 else
7464 gui_mch_disable_beval_area(balloonEval);
7466 #endif
7468 #ifdef FEAT_AUTOCHDIR
7469 else if ((int *)varp == &p_acd)
7471 /* Change directories when the 'acd' option is set now. */
7472 DO_AUTOCHDIR
7474 #endif
7476 #ifdef FEAT_DIFF
7477 /* 'diff' */
7478 else if ((int *)varp == &curwin->w_p_diff)
7480 /* May add or remove the buffer from the list of diff buffers. */
7481 diff_buf_adjust(curwin);
7482 # ifdef FEAT_FOLDING
7483 if (foldmethodIsDiff(curwin))
7484 foldUpdateAll(curwin);
7485 # endif
7487 #endif
7489 #ifdef USE_IM_CONTROL
7490 /* 'imdisable' */
7491 else if ((int *)varp == &p_imdisable)
7493 /* Only de-activate it here, it will be enabled when changing mode. */
7494 if (p_imdisable)
7495 im_set_active(FALSE);
7497 #endif
7499 #ifdef FEAT_SPELL
7500 /* 'spell' */
7501 else if ((int *)varp == &curwin->w_p_spell)
7503 if (curwin->w_p_spell)
7505 char_u *errmsg = did_set_spelllang(curbuf);
7507 if (errmsg != NULL)
7508 EMSG(_(errmsg));
7511 #endif
7513 #ifdef FEAT_FKMAP
7514 else if ((int *)varp == &p_altkeymap)
7516 if (old_value != p_altkeymap)
7518 if (!p_altkeymap)
7520 p_hkmap = p_fkmap;
7521 p_fkmap = 0;
7523 else
7525 p_fkmap = p_hkmap;
7526 p_hkmap = 0;
7528 (void)init_chartab();
7533 * In case some second language keymapping options have changed, check
7534 * and correct the setting in a consistent way.
7538 * If hkmap or fkmap are set, reset Arabic keymapping.
7540 if ((p_hkmap || p_fkmap) && p_altkeymap)
7542 p_altkeymap = p_fkmap;
7543 # ifdef FEAT_ARABIC
7544 curwin->w_p_arab = FALSE;
7545 # endif
7546 (void)init_chartab();
7550 * If hkmap set, reset Farsi keymapping.
7552 if (p_hkmap && p_altkeymap)
7554 p_altkeymap = 0;
7555 p_fkmap = 0;
7556 # ifdef FEAT_ARABIC
7557 curwin->w_p_arab = FALSE;
7558 # endif
7559 (void)init_chartab();
7563 * If fkmap set, reset Hebrew keymapping.
7565 if (p_fkmap && !p_altkeymap)
7567 p_altkeymap = 1;
7568 p_hkmap = 0;
7569 # ifdef FEAT_ARABIC
7570 curwin->w_p_arab = FALSE;
7571 # endif
7572 (void)init_chartab();
7574 #endif
7576 #ifdef FEAT_ARABIC
7577 if ((int *)varp == &curwin->w_p_arab)
7579 if (curwin->w_p_arab)
7582 * 'arabic' is set, handle various sub-settings.
7584 if (!p_tbidi)
7586 /* set rightleft mode */
7587 if (!curwin->w_p_rl)
7589 curwin->w_p_rl = TRUE;
7590 changed_window_setting();
7593 /* Enable Arabic shaping (major part of what Arabic requires) */
7594 if (!p_arshape)
7596 p_arshape = TRUE;
7597 redraw_later_clear();
7601 /* Arabic requires a utf-8 encoding, inform the user if its not
7602 * set. */
7603 if (STRCMP(p_enc, "utf-8") != 0)
7605 msg_source(hl_attr(HLF_W));
7606 MSG_ATTR(_("W17: Arabic requires UTF-8, do ':set encoding=utf-8'"),
7607 hl_attr(HLF_W));
7610 # ifdef FEAT_MBYTE
7611 /* set 'delcombine' */
7612 p_deco = TRUE;
7613 # endif
7615 # ifdef FEAT_KEYMAP
7616 /* Force-set the necessary keymap for arabic */
7617 set_option_value((char_u *)"keymap", 0L, (char_u *)"arabic",
7618 OPT_LOCAL);
7619 # endif
7620 # ifdef FEAT_FKMAP
7621 p_altkeymap = 0;
7622 p_hkmap = 0;
7623 p_fkmap = 0;
7624 (void)init_chartab();
7625 # endif
7627 else
7630 * 'arabic' is reset, handle various sub-settings.
7632 if (!p_tbidi)
7634 /* reset rightleft mode */
7635 if (curwin->w_p_rl)
7637 curwin->w_p_rl = FALSE;
7638 changed_window_setting();
7641 /* 'arabicshape' isn't reset, it is a global option and
7642 * another window may still need it "on". */
7645 /* 'delcombine' isn't reset, it is a global option and another
7646 * window may still want it "on". */
7648 # ifdef FEAT_KEYMAP
7649 /* Revert to the default keymap */
7650 curbuf->b_p_iminsert = B_IMODE_NONE;
7651 curbuf->b_p_imsearch = B_IMODE_USE_INSERT;
7652 # endif
7655 #endif
7658 * End of handling side effects for bool options.
7661 options[opt_idx].flags |= P_WAS_SET;
7663 comp_col(); /* in case 'ruler' or 'showcmd' changed */
7664 if (curwin->w_curswant != MAXCOL)
7665 curwin->w_set_curswant = TRUE; /* in case 'list' changed */
7666 check_redraw(options[opt_idx].flags);
7668 return NULL;
7672 * Set the value of a number option, and take care of side effects.
7673 * Returns NULL for success, or an error message for an error.
7675 static char_u *
7676 set_num_option(opt_idx, varp, value, errbuf, errbuflen, opt_flags)
7677 int opt_idx; /* index in options[] table */
7678 char_u *varp; /* pointer to the option variable */
7679 long value; /* new value */
7680 char_u *errbuf; /* buffer for error messages */
7681 size_t errbuflen; /* length of "errbuf" */
7682 int opt_flags; /* OPT_LOCAL, OPT_GLOBAL and
7683 OPT_MODELINE */
7685 char_u *errmsg = NULL;
7686 long old_value = *(long *)varp;
7687 long old_Rows = Rows; /* remember old Rows */
7688 long old_Columns = Columns; /* remember old Columns */
7689 long *pp = (long *)varp;
7691 /* Disallow changing some options from secure mode. */
7692 if ((secure
7693 #ifdef HAVE_SANDBOX
7694 || sandbox != 0
7695 #endif
7696 ) && (options[opt_idx].flags & P_SECURE))
7697 return e_secure;
7699 *pp = value;
7700 #ifdef FEAT_EVAL
7701 /* Remember where the option was set. */
7702 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
7703 #endif
7704 #ifdef FEAT_GUI
7705 need_mouse_correct = TRUE;
7706 #endif
7708 if (curbuf->b_p_sw <= 0)
7710 errmsg = e_positive;
7711 curbuf->b_p_sw = curbuf->b_p_ts;
7715 * Number options that need some action when changed
7717 #ifdef FEAT_WINDOWS
7718 if (pp == &p_wh || pp == &p_hh)
7720 if (p_wh < 1)
7722 errmsg = e_positive;
7723 p_wh = 1;
7725 if (p_wmh > p_wh)
7727 errmsg = e_winheight;
7728 p_wh = p_wmh;
7730 if (p_hh < 0)
7732 errmsg = e_positive;
7733 p_hh = 0;
7736 /* Change window height NOW */
7737 if (lastwin != firstwin)
7739 if (pp == &p_wh && curwin->w_height < p_wh)
7740 win_setheight((int)p_wh);
7741 if (pp == &p_hh && curbuf->b_help && curwin->w_height < p_hh)
7742 win_setheight((int)p_hh);
7746 /* 'winminheight' */
7747 else if (pp == &p_wmh)
7749 if (p_wmh < 0)
7751 errmsg = e_positive;
7752 p_wmh = 0;
7754 if (p_wmh > p_wh)
7756 errmsg = e_winheight;
7757 p_wmh = p_wh;
7759 win_setminheight();
7762 # ifdef FEAT_VERTSPLIT
7763 else if (pp == &p_wiw)
7765 if (p_wiw < 1)
7767 errmsg = e_positive;
7768 p_wiw = 1;
7770 if (p_wmw > p_wiw)
7772 errmsg = e_winwidth;
7773 p_wiw = p_wmw;
7776 /* Change window width NOW */
7777 if (lastwin != firstwin && curwin->w_width < p_wiw)
7778 win_setwidth((int)p_wiw);
7781 /* 'winminwidth' */
7782 else if (pp == &p_wmw)
7784 if (p_wmw < 0)
7786 errmsg = e_positive;
7787 p_wmw = 0;
7789 if (p_wmw > p_wiw)
7791 errmsg = e_winwidth;
7792 p_wmw = p_wiw;
7794 win_setminheight();
7796 # endif
7798 #endif
7800 #ifdef FEAT_WINDOWS
7801 /* (re)set last window status line */
7802 else if (pp == &p_ls)
7804 last_status(FALSE);
7807 /* (re)set tab page line */
7808 else if (pp == &p_stal)
7810 shell_new_rows(); /* recompute window positions and heights */
7812 #endif
7814 #ifdef FEAT_GUI
7815 else if (pp == &p_linespace)
7817 /* Recompute gui.char_height and resize the Vim window to keep the
7818 * same number of lines. */
7819 if (gui.in_use && gui_mch_adjust_charheight() == OK)
7820 gui_set_shellsize(FALSE, FALSE, RESIZE_VERT);
7822 #endif
7824 #ifdef FEAT_FOLDING
7825 /* 'foldlevel' */
7826 else if (pp == &curwin->w_p_fdl)
7828 if (curwin->w_p_fdl < 0)
7829 curwin->w_p_fdl = 0;
7830 newFoldLevel();
7833 /* 'foldminlevel' */
7834 else if (pp == &curwin->w_p_fml)
7836 foldUpdateAll(curwin);
7839 /* 'foldnestmax' */
7840 else if (pp == &curwin->w_p_fdn)
7842 if (foldmethodIsSyntax(curwin) || foldmethodIsIndent(curwin))
7843 foldUpdateAll(curwin);
7846 /* 'foldcolumn' */
7847 else if (pp == &curwin->w_p_fdc)
7849 if (curwin->w_p_fdc < 0)
7851 errmsg = e_positive;
7852 curwin->w_p_fdc = 0;
7854 else if (curwin->w_p_fdc > 12)
7856 errmsg = e_invarg;
7857 curwin->w_p_fdc = 12;
7861 /* 'shiftwidth' or 'tabstop' */
7862 else if (pp == &curbuf->b_p_sw || pp == &curbuf->b_p_ts)
7864 if (foldmethodIsIndent(curwin))
7865 foldUpdateAll(curwin);
7867 #endif /* FEAT_FOLDING */
7869 #ifdef FEAT_MBYTE
7870 /* 'maxcombine' */
7871 else if (pp == &p_mco)
7873 if (p_mco > MAX_MCO)
7874 p_mco = MAX_MCO;
7875 else if (p_mco < 0)
7876 p_mco = 0;
7877 screenclear(); /* will re-allocate the screen */
7879 #endif
7881 else if (pp == &curbuf->b_p_iminsert)
7883 if (curbuf->b_p_iminsert < 0 || curbuf->b_p_iminsert > B_IMODE_LAST)
7885 errmsg = e_invarg;
7886 curbuf->b_p_iminsert = B_IMODE_NONE;
7888 p_iminsert = curbuf->b_p_iminsert;
7889 if (termcap_active) /* don't do this in the alternate screen */
7890 showmode();
7891 #if defined(FEAT_WINDOWS) && defined(FEAT_KEYMAP)
7892 /* Show/unshow value of 'keymap' in status lines. */
7893 status_redraw_curbuf();
7894 #endif
7897 else if (pp == &p_window)
7899 if (p_window < 1)
7900 p_window = 1;
7901 else if (p_window >= Rows)
7902 p_window = Rows - 1;
7905 else if (pp == &curbuf->b_p_imsearch)
7907 if (curbuf->b_p_imsearch < -1 || curbuf->b_p_imsearch > B_IMODE_LAST)
7909 errmsg = e_invarg;
7910 curbuf->b_p_imsearch = B_IMODE_NONE;
7912 p_imsearch = curbuf->b_p_imsearch;
7915 #ifdef FEAT_TITLE
7916 /* if 'titlelen' has changed, redraw the title */
7917 else if (pp == &p_titlelen)
7919 if (p_titlelen < 0)
7921 errmsg = e_positive;
7922 p_titlelen = 85;
7924 if (starting != NO_SCREEN && old_value != p_titlelen)
7925 need_maketitle = TRUE;
7927 #endif
7929 /* if p_ch changed value, change the command line height */
7930 else if (pp == &p_ch)
7932 if (p_ch < 1)
7934 errmsg = e_positive;
7935 p_ch = 1;
7937 if (p_ch > Rows - min_rows() + 1)
7938 p_ch = Rows - min_rows() + 1;
7940 /* Only compute the new window layout when startup has been
7941 * completed. Otherwise the frame sizes may be wrong. */
7942 if (p_ch != old_value && full_screen
7943 #ifdef FEAT_GUI
7944 && !gui.starting
7945 #endif
7947 command_height();
7950 /* when 'updatecount' changes from zero to non-zero, open swap files */
7951 else if (pp == &p_uc)
7953 if (p_uc < 0)
7955 errmsg = e_positive;
7956 p_uc = 100;
7958 if (p_uc && !old_value)
7959 ml_open_files();
7961 #ifdef MZSCHEME_GUI_THREADS
7962 else if (pp == &p_mzq)
7963 mzvim_reset_timer();
7964 #endif
7966 /* sync undo before 'undolevels' changes */
7967 else if (pp == &p_ul)
7969 /* use the old value, otherwise u_sync() may not work properly */
7970 p_ul = old_value;
7971 u_sync(TRUE);
7972 p_ul = value;
7975 #ifdef FEAT_LINEBREAK
7976 /* 'numberwidth' must be positive */
7977 else if (pp == &curwin->w_p_nuw)
7979 if (curwin->w_p_nuw < 1)
7981 errmsg = e_positive;
7982 curwin->w_p_nuw = 1;
7984 if (curwin->w_p_nuw > 10)
7986 errmsg = e_invarg;
7987 curwin->w_p_nuw = 10;
7989 curwin->w_nrwidth_line_count = 0;
7991 #endif
7993 #if defined(FEAT_TRANSPARENCY)
7994 /* 'transparency' is a number between 0 and 100 */
7995 else if (pp == &p_transp)
7997 if (p_transp < 0 || p_transp > 100)
7999 errmsg = e_invarg;
8000 p_transp = old_value;
8002 else if (gui.in_use)
8003 gui_mch_new_colors();
8005 #endif
8008 * Check the bounds for numeric options here
8010 if (Rows < min_rows() && full_screen)
8012 if (errbuf != NULL)
8014 vim_snprintf((char *)errbuf, errbuflen,
8015 _("E593: Need at least %d lines"), min_rows());
8016 errmsg = errbuf;
8018 Rows = min_rows();
8020 if (Columns < MIN_COLUMNS && full_screen)
8022 if (errbuf != NULL)
8024 vim_snprintf((char *)errbuf, errbuflen,
8025 _("E594: Need at least %d columns"), MIN_COLUMNS);
8026 errmsg = errbuf;
8028 Columns = MIN_COLUMNS;
8030 /* Limit the values to avoid an overflow in Rows * Columns. */
8031 if (Columns > 10000)
8032 Columns = 10000;
8033 if (Rows > 1000)
8034 Rows = 1000;
8036 #ifdef DJGPP
8037 /* avoid a crash by checking for a too large value of 'columns' */
8038 if (old_Columns != Columns && full_screen && term_console)
8039 mch_check_columns();
8040 #endif
8043 * If the screen (shell) height has been changed, assume it is the
8044 * physical screenheight.
8046 if (old_Rows != Rows || old_Columns != Columns)
8048 /* Changing the screen size is not allowed while updating the screen. */
8049 if (updating_screen)
8050 *pp = old_value;
8051 else if (full_screen
8052 #ifdef FEAT_GUI
8053 && !gui.starting
8054 #endif
8056 set_shellsize((int)Columns, (int)Rows, TRUE);
8057 else
8059 /* Postpone the resizing; check the size and cmdline position for
8060 * messages. */
8061 check_shellsize();
8062 if (cmdline_row > Rows - p_ch && Rows > p_ch)
8063 cmdline_row = Rows - p_ch;
8065 if (p_window >= Rows || !option_was_set((char_u *)"window"))
8066 p_window = Rows - 1;
8069 if (curbuf->b_p_sts < 0)
8071 errmsg = e_positive;
8072 curbuf->b_p_sts = 0;
8074 if (curbuf->b_p_ts <= 0)
8076 errmsg = e_positive;
8077 curbuf->b_p_ts = 8;
8079 if (curbuf->b_p_tw < 0)
8081 errmsg = e_positive;
8082 curbuf->b_p_tw = 0;
8084 if (p_tm < 0)
8086 errmsg = e_positive;
8087 p_tm = 0;
8089 if ((curwin->w_p_scr <= 0
8090 || (curwin->w_p_scr > curwin->w_height
8091 && curwin->w_height > 0))
8092 && full_screen)
8094 if (pp == &(curwin->w_p_scr))
8096 if (curwin->w_p_scr != 0)
8097 errmsg = e_scroll;
8098 win_comp_scroll(curwin);
8100 /* If 'scroll' became invalid because of a side effect silently adjust
8101 * it. */
8102 else if (curwin->w_p_scr <= 0)
8103 curwin->w_p_scr = 1;
8104 else /* curwin->w_p_scr > curwin->w_height */
8105 curwin->w_p_scr = curwin->w_height;
8107 if (p_report < 0)
8109 errmsg = e_positive;
8110 p_report = 1;
8112 if ((p_sj < -100 || p_sj >= Rows) && full_screen)
8114 if (Rows != old_Rows) /* Rows changed, just adjust p_sj */
8115 p_sj = Rows / 2;
8116 else
8118 errmsg = e_scroll;
8119 p_sj = 1;
8122 if (p_so < 0 && full_screen)
8124 errmsg = e_scroll;
8125 p_so = 0;
8127 if (p_siso < 0 && full_screen)
8129 errmsg = e_positive;
8130 p_siso = 0;
8132 #ifdef FEAT_CMDWIN
8133 if (p_cwh < 1)
8135 errmsg = e_positive;
8136 p_cwh = 1;
8138 #endif
8139 if (p_ut < 0)
8141 errmsg = e_positive;
8142 p_ut = 2000;
8144 if (p_ss < 0)
8146 errmsg = e_positive;
8147 p_ss = 0;
8150 /* May set global value for local option. */
8151 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0)
8152 *(long *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) = *pp;
8154 options[opt_idx].flags |= P_WAS_SET;
8156 comp_col(); /* in case 'columns' or 'ls' changed */
8157 if (curwin->w_curswant != MAXCOL)
8158 curwin->w_set_curswant = TRUE; /* in case 'tabstop' changed */
8159 check_redraw(options[opt_idx].flags);
8161 return errmsg;
8165 * Called after an option changed: check if something needs to be redrawn.
8167 static void
8168 check_redraw(flags)
8169 long_u flags;
8171 /* Careful: P_RCLR and P_RALL are a combination of other P_ flags */
8172 int clear = (flags & P_RCLR) == P_RCLR;
8173 int all = ((flags & P_RALL) == P_RALL || clear);
8175 #ifdef FEAT_WINDOWS
8176 if ((flags & P_RSTAT) || all) /* mark all status lines dirty */
8177 status_redraw_all();
8178 #endif
8180 if ((flags & P_RBUF) || (flags & P_RWIN) || all)
8181 changed_window_setting();
8182 if (flags & P_RBUF)
8183 redraw_curbuf_later(NOT_VALID);
8184 if (clear)
8185 redraw_all_later(CLEAR);
8186 else if (all)
8187 redraw_all_later(NOT_VALID);
8191 * Find index for option 'arg'.
8192 * Return -1 if not found.
8194 static int
8195 findoption(arg)
8196 char_u *arg;
8198 int opt_idx;
8199 char *s, *p;
8200 static short quick_tab[27] = {0, 0}; /* quick access table */
8201 int is_term_opt;
8204 * For first call: Initialize the quick-access table.
8205 * It contains the index for the first option that starts with a certain
8206 * letter. There are 26 letters, plus the first "t_" option.
8208 if (quick_tab[1] == 0)
8210 p = options[0].fullname;
8211 for (opt_idx = 1; (s = options[opt_idx].fullname) != NULL; opt_idx++)
8213 if (s[0] != p[0])
8215 if (s[0] == 't' && s[1] == '_')
8216 quick_tab[26] = opt_idx;
8217 else
8218 quick_tab[CharOrdLow(s[0])] = opt_idx;
8220 p = s;
8225 * Check for name starting with an illegal character.
8227 #ifdef EBCDIC
8228 if (!islower(arg[0]))
8229 #else
8230 if (arg[0] < 'a' || arg[0] > 'z')
8231 #endif
8232 return -1;
8234 is_term_opt = (arg[0] == 't' && arg[1] == '_');
8235 if (is_term_opt)
8236 opt_idx = quick_tab[26];
8237 else
8238 opt_idx = quick_tab[CharOrdLow(arg[0])];
8239 for ( ; (s = options[opt_idx].fullname) != NULL; opt_idx++)
8241 if (STRCMP(arg, s) == 0) /* match full name */
8242 break;
8244 if (s == NULL && !is_term_opt)
8246 opt_idx = quick_tab[CharOrdLow(arg[0])];
8247 for ( ; options[opt_idx].fullname != NULL; opt_idx++)
8249 s = options[opt_idx].shortname;
8250 if (s != NULL && STRCMP(arg, s) == 0) /* match short name */
8251 break;
8252 s = NULL;
8255 if (s == NULL)
8256 opt_idx = -1;
8257 return opt_idx;
8260 #if defined(FEAT_EVAL) || defined(FEAT_TCL) || defined(FEAT_MZSCHEME)
8262 * Get the value for an option.
8264 * Returns:
8265 * Number or Toggle option: 1, *numval gets value.
8266 * String option: 0, *stringval gets allocated string.
8267 * Hidden Number or Toggle option: -1.
8268 * hidden String option: -2.
8269 * unknown option: -3.
8272 get_option_value(name, numval, stringval, opt_flags)
8273 char_u *name;
8274 long *numval;
8275 char_u **stringval; /* NULL when only checking existance */
8276 int opt_flags;
8278 int opt_idx;
8279 char_u *varp;
8281 opt_idx = findoption(name);
8282 if (opt_idx < 0) /* unknown option */
8283 return -3;
8285 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
8287 if (options[opt_idx].flags & P_STRING)
8289 if (varp == NULL) /* hidden option */
8290 return -2;
8291 if (stringval != NULL)
8293 #ifdef FEAT_CRYPT
8294 /* never return the value of the crypt key */
8295 if ((char_u **)varp == &curbuf->b_p_key)
8296 *stringval = vim_strsave((char_u *)"*****");
8297 else
8298 #endif
8299 *stringval = vim_strsave(*(char_u **)(varp));
8301 return 0;
8304 if (varp == NULL) /* hidden option */
8305 return -1;
8306 if (options[opt_idx].flags & P_NUM)
8307 *numval = *(long *)varp;
8308 else
8310 /* Special case: 'modified' is b_changed, but we also want to consider
8311 * it set when 'ff' or 'fenc' changed. */
8312 if ((int *)varp == &curbuf->b_changed)
8313 *numval = curbufIsChanged();
8314 else
8315 *numval = *(int *)varp;
8317 return 1;
8319 #endif
8322 * Set the value of option "name".
8323 * Use "string" for string options, use "number" for other options.
8325 void
8326 set_option_value(name, number, string, opt_flags)
8327 char_u *name;
8328 long number;
8329 char_u *string;
8330 int opt_flags; /* OPT_LOCAL or 0 (both) */
8332 int opt_idx;
8333 char_u *varp;
8334 long_u flags;
8336 opt_idx = findoption(name);
8337 if (opt_idx < 0)
8338 EMSG2(_("E355: Unknown option: %s"), name);
8339 else
8341 flags = options[opt_idx].flags;
8342 #ifdef HAVE_SANDBOX
8343 /* Disallow changing some options in the sandbox */
8344 if (sandbox > 0 && (flags & P_SECURE))
8346 EMSG(_(e_sandbox));
8347 return;
8349 #endif
8350 if (flags & P_STRING)
8351 set_string_option(opt_idx, string, opt_flags);
8352 else
8354 varp = get_varp(&options[opt_idx]);
8355 if (varp != NULL) /* hidden option is not changed */
8357 if (number == 0 && string != NULL)
8359 int index;
8361 /* Either we are given a string or we are setting option
8362 * to zero. */
8363 for (index = 0; string[index] == '0'; ++index)
8365 if (string[index] != NUL || index == 0)
8367 /* There's another character after zeros or the string
8368 * is empty. In both cases, we are trying to set a
8369 * num option using a string. */
8370 EMSG3(_("E521: Number required: &%s = '%s'"),
8371 name, string);
8372 return; /* do nothing as we hit an error */
8376 if (flags & P_NUM)
8377 (void)set_num_option(opt_idx, varp, number,
8378 NULL, 0, opt_flags);
8379 else
8380 (void)set_bool_option(opt_idx, varp, (int)number,
8381 opt_flags);
8388 * Get the terminal code for a terminal option.
8389 * Returns NULL when not found.
8391 char_u *
8392 get_term_code(tname)
8393 char_u *tname;
8395 int opt_idx;
8396 char_u *varp;
8398 if (tname[0] != 't' || tname[1] != '_' ||
8399 tname[2] == NUL || tname[3] == NUL)
8400 return NULL;
8401 if ((opt_idx = findoption(tname)) >= 0)
8403 varp = get_varp(&(options[opt_idx]));
8404 if (varp != NULL)
8405 varp = *(char_u **)(varp);
8406 return varp;
8408 return find_termcode(tname + 2);
8411 char_u *
8412 get_highlight_default()
8414 int i;
8416 i = findoption((char_u *)"hl");
8417 if (i >= 0)
8418 return options[i].def_val[VI_DEFAULT];
8419 return (char_u *)NULL;
8422 #if defined(FEAT_MBYTE) || defined(PROTO)
8423 char_u *
8424 get_encoding_default()
8426 int i;
8428 i = findoption((char_u *)"enc");
8429 if (i >= 0)
8430 return options[i].def_val[VI_DEFAULT];
8431 return (char_u *)NULL;
8433 #endif
8436 * Translate a string like "t_xx", "<t_xx>" or "<S-Tab>" to a key number.
8438 static int
8439 find_key_option(arg)
8440 char_u *arg;
8442 int key;
8443 int modifiers;
8446 * Don't use get_special_key_code() for t_xx, we don't want it to call
8447 * add_termcap_entry().
8449 if (arg[0] == 't' && arg[1] == '_' && arg[2] && arg[3])
8450 key = TERMCAP2KEY(arg[2], arg[3]);
8451 else
8453 --arg; /* put arg at the '<' */
8454 modifiers = 0;
8455 key = find_special_key(&arg, &modifiers, TRUE);
8456 if (modifiers) /* can't handle modifiers here */
8457 key = 0;
8459 return key;
8463 * if 'all' == 0: show changed options
8464 * if 'all' == 1: show all normal options
8465 * if 'all' == 2: show all terminal options
8467 static void
8468 showoptions(all, opt_flags)
8469 int all;
8470 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
8472 struct vimoption *p;
8473 int col;
8474 int isterm;
8475 char_u *varp;
8476 struct vimoption **items;
8477 int item_count;
8478 int run;
8479 int row, rows;
8480 int cols;
8481 int i;
8482 int len;
8484 #define INC 20
8485 #define GAP 3
8487 items = (struct vimoption **)alloc((unsigned)(sizeof(struct vimoption *) *
8488 PARAM_COUNT));
8489 if (items == NULL)
8490 return;
8492 /* Highlight title */
8493 if (all == 2)
8494 MSG_PUTS_TITLE(_("\n--- Terminal codes ---"));
8495 else if (opt_flags & OPT_GLOBAL)
8496 MSG_PUTS_TITLE(_("\n--- Global option values ---"));
8497 else if (opt_flags & OPT_LOCAL)
8498 MSG_PUTS_TITLE(_("\n--- Local option values ---"));
8499 else
8500 MSG_PUTS_TITLE(_("\n--- Options ---"));
8503 * do the loop two times:
8504 * 1. display the short items
8505 * 2. display the long items (only strings and numbers)
8507 for (run = 1; run <= 2 && !got_int; ++run)
8510 * collect the items in items[]
8512 item_count = 0;
8513 for (p = &options[0]; p->fullname != NULL; p++)
8515 varp = NULL;
8516 isterm = istermoption(p);
8517 if (opt_flags != 0)
8519 if (p->indir != PV_NONE && !isterm)
8520 varp = get_varp_scope(p, opt_flags);
8522 else
8523 varp = get_varp(p);
8524 if (varp != NULL
8525 && ((all == 2 && isterm)
8526 || (all == 1 && !isterm)
8527 || (all == 0 && !optval_default(p, varp))))
8529 if (p->flags & P_BOOL)
8530 len = 1; /* a toggle option fits always */
8531 else
8533 option_value2string(p, opt_flags);
8534 len = (int)STRLEN(p->fullname) + vim_strsize(NameBuff) + 1;
8536 if ((len <= INC - GAP && run == 1) ||
8537 (len > INC - GAP && run == 2))
8538 items[item_count++] = p;
8543 * display the items
8545 if (run == 1)
8547 cols = (Columns + GAP - 3) / INC;
8548 if (cols == 0)
8549 cols = 1;
8550 rows = (item_count + cols - 1) / cols;
8552 else /* run == 2 */
8553 rows = item_count;
8554 for (row = 0; row < rows && !got_int; ++row)
8556 msg_putchar('\n'); /* go to next line */
8557 if (got_int) /* 'q' typed in more */
8558 break;
8559 col = 0;
8560 for (i = row; i < item_count; i += rows)
8562 msg_col = col; /* make columns */
8563 showoneopt(items[i], opt_flags);
8564 col += INC;
8566 out_flush();
8567 ui_breakcheck();
8570 vim_free(items);
8574 * Return TRUE if option "p" has its default value.
8576 static int
8577 optval_default(p, varp)
8578 struct vimoption *p;
8579 char_u *varp;
8581 int dvi;
8583 if (varp == NULL)
8584 return TRUE; /* hidden option is always at default */
8585 dvi = ((p->flags & P_VI_DEF) || p_cp) ? VI_DEFAULT : VIM_DEFAULT;
8586 if (p->flags & P_NUM)
8587 return (*(long *)varp == (long)(long_i)p->def_val[dvi]);
8588 if (p->flags & P_BOOL)
8589 /* the cast to long is required for Manx C, long_i is
8590 * needed for MSVC */
8591 return (*(int *)varp == (int)(long)(long_i)p->def_val[dvi]);
8592 /* P_STRING */
8593 return (STRCMP(*(char_u **)varp, p->def_val[dvi]) == 0);
8597 * showoneopt: show the value of one option
8598 * must not be called with a hidden option!
8600 static void
8601 showoneopt(p, opt_flags)
8602 struct vimoption *p;
8603 int opt_flags; /* OPT_LOCAL or OPT_GLOBAL */
8605 char_u *varp;
8606 int save_silent = silent_mode;
8608 silent_mode = FALSE;
8609 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
8611 varp = get_varp_scope(p, opt_flags);
8613 /* for 'modified' we also need to check if 'ff' or 'fenc' changed. */
8614 if ((p->flags & P_BOOL) && ((int *)varp == &curbuf->b_changed
8615 ? !curbufIsChanged() : !*(int *)varp))
8616 MSG_PUTS("no");
8617 else if ((p->flags & P_BOOL) && *(int *)varp < 0)
8618 MSG_PUTS("--");
8619 else
8620 MSG_PUTS(" ");
8621 MSG_PUTS(p->fullname);
8622 if (!(p->flags & P_BOOL))
8624 msg_putchar('=');
8625 /* put value string in NameBuff */
8626 option_value2string(p, opt_flags);
8627 msg_outtrans(NameBuff);
8630 silent_mode = save_silent;
8631 info_message = FALSE;
8635 * Write modified options as ":set" commands to a file.
8637 * There are three values for "opt_flags":
8638 * OPT_GLOBAL: Write global option values and fresh values of
8639 * buffer-local options (used for start of a session
8640 * file).
8641 * OPT_GLOBAL + OPT_LOCAL: Idem, add fresh values of window-local options for
8642 * curwin (used for a vimrc file).
8643 * OPT_LOCAL: Write buffer-local option values for curbuf, fresh
8644 * and local values for window-local options of
8645 * curwin. Local values are also written when at the
8646 * default value, because a modeline or autocommand
8647 * may have set them when doing ":edit file" and the
8648 * user has set them back at the default or fresh
8649 * value.
8650 * When "local_only" is TRUE, don't write fresh
8651 * values, only local values (for ":mkview").
8652 * (fresh value = value used for a new buffer or window for a local option).
8654 * Return FAIL on error, OK otherwise.
8657 makeset(fd, opt_flags, local_only)
8658 FILE *fd;
8659 int opt_flags;
8660 int local_only;
8662 struct vimoption *p;
8663 char_u *varp; /* currently used value */
8664 char_u *varp_fresh; /* local value */
8665 char_u *varp_local = NULL; /* fresh value */
8666 char *cmd;
8667 int round;
8668 int pri;
8671 * The options that don't have a default (terminal name, columns, lines)
8672 * are never written. Terminal options are also not written.
8673 * Do the loop over "options[]" twice: once for options with the
8674 * P_PRI_MKRC flag and once without.
8676 for (pri = 1; pri >= 0; --pri)
8678 for (p = &options[0]; !istermoption(p); p++)
8679 if (!(p->flags & P_NO_MKRC)
8680 && !istermoption(p)
8681 && ((pri == 1) == ((p->flags & P_PRI_MKRC) != 0)))
8683 /* skip global option when only doing locals */
8684 if (p->indir == PV_NONE && !(opt_flags & OPT_GLOBAL))
8685 continue;
8687 /* Do not store options like 'bufhidden' and 'syntax' in a vimrc
8688 * file, they are always buffer-specific. */
8689 if ((opt_flags & OPT_GLOBAL) && (p->flags & P_NOGLOB))
8690 continue;
8692 /* Global values are only written when not at the default value. */
8693 varp = get_varp_scope(p, opt_flags);
8694 if ((opt_flags & OPT_GLOBAL) && optval_default(p, varp))
8695 continue;
8697 round = 2;
8698 if (p->indir != PV_NONE)
8700 if (p->var == VAR_WIN)
8702 /* skip window-local option when only doing globals */
8703 if (!(opt_flags & OPT_LOCAL))
8704 continue;
8705 /* When fresh value of window-local option is not at the
8706 * default, need to write it too. */
8707 if (!(opt_flags & OPT_GLOBAL) && !local_only)
8709 varp_fresh = get_varp_scope(p, OPT_GLOBAL);
8710 if (!optval_default(p, varp_fresh))
8712 round = 1;
8713 varp_local = varp;
8714 varp = varp_fresh;
8720 /* Round 1: fresh value for window-local options.
8721 * Round 2: other values */
8722 for ( ; round <= 2; varp = varp_local, ++round)
8724 if (round == 1 || (opt_flags & OPT_GLOBAL))
8725 cmd = "set";
8726 else
8727 cmd = "setlocal";
8729 if (p->flags & P_BOOL)
8731 if (put_setbool(fd, cmd, p->fullname, *(int *)varp) == FAIL)
8732 return FAIL;
8734 else if (p->flags & P_NUM)
8736 if (put_setnum(fd, cmd, p->fullname, (long *)varp) == FAIL)
8737 return FAIL;
8739 else /* P_STRING */
8741 #if defined(FEAT_SYN_HL) || defined(FEAT_AUTOCMD)
8742 int do_endif = FALSE;
8744 /* Don't set 'syntax' and 'filetype' again if the value is
8745 * already right, avoids reloading the syntax file. */
8746 if (
8747 # if defined(FEAT_SYN_HL)
8748 p->indir == PV_SYN
8749 # if defined(FEAT_AUTOCMD)
8751 # endif
8752 # endif
8753 # if defined(FEAT_AUTOCMD)
8754 p->indir == PV_FT)
8755 # endif
8757 if (fprintf(fd, "if &%s != '%s'", p->fullname,
8758 *(char_u **)(varp)) < 0
8759 || put_eol(fd) < 0)
8760 return FAIL;
8761 do_endif = TRUE;
8763 #endif
8764 if (put_setstring(fd, cmd, p->fullname, (char_u **)varp,
8765 (p->flags & P_EXPAND) != 0) == FAIL)
8766 return FAIL;
8767 #if defined(FEAT_SYN_HL) || defined(FEAT_AUTOCMD)
8768 if (do_endif)
8770 if (put_line(fd, "endif") == FAIL)
8771 return FAIL;
8773 #endif
8778 return OK;
8781 #if defined(FEAT_FOLDING) || defined(PROTO)
8783 * Generate set commands for the local fold options only. Used when
8784 * 'sessionoptions' or 'viewoptions' contains "folds" but not "options".
8787 makefoldset(fd)
8788 FILE *fd;
8790 if (put_setstring(fd, "setlocal", "fdm", &curwin->w_p_fdm, FALSE) == FAIL
8791 # ifdef FEAT_EVAL
8792 || put_setstring(fd, "setlocal", "fde", &curwin->w_p_fde, FALSE)
8793 == FAIL
8794 # endif
8795 || put_setstring(fd, "setlocal", "fmr", &curwin->w_p_fmr, FALSE)
8796 == FAIL
8797 || put_setstring(fd, "setlocal", "fdi", &curwin->w_p_fdi, FALSE)
8798 == FAIL
8799 || put_setnum(fd, "setlocal", "fdl", &curwin->w_p_fdl) == FAIL
8800 || put_setnum(fd, "setlocal", "fml", &curwin->w_p_fml) == FAIL
8801 || put_setnum(fd, "setlocal", "fdn", &curwin->w_p_fdn) == FAIL
8802 || put_setbool(fd, "setlocal", "fen", curwin->w_p_fen) == FAIL
8804 return FAIL;
8806 return OK;
8808 #endif
8810 static int
8811 put_setstring(fd, cmd, name, valuep, expand)
8812 FILE *fd;
8813 char *cmd;
8814 char *name;
8815 char_u **valuep;
8816 int expand;
8818 char_u *s;
8819 char_u buf[MAXPATHL];
8821 if (fprintf(fd, "%s %s=", cmd, name) < 0)
8822 return FAIL;
8823 if (*valuep != NULL)
8825 /* Output 'pastetoggle' as key names. For other
8826 * options some characters have to be escaped with
8827 * CTRL-V or backslash */
8828 if (valuep == &p_pt)
8830 s = *valuep;
8831 while (*s != NUL)
8832 if (put_escstr(fd, str2special(&s, FALSE), 2) == FAIL)
8833 return FAIL;
8835 else if (expand)
8837 home_replace(NULL, *valuep, buf, MAXPATHL, FALSE);
8838 if (put_escstr(fd, buf, 2) == FAIL)
8839 return FAIL;
8841 else if (put_escstr(fd, *valuep, 2) == FAIL)
8842 return FAIL;
8844 if (put_eol(fd) < 0)
8845 return FAIL;
8846 return OK;
8849 static int
8850 put_setnum(fd, cmd, name, valuep)
8851 FILE *fd;
8852 char *cmd;
8853 char *name;
8854 long *valuep;
8856 long wc;
8858 if (fprintf(fd, "%s %s=", cmd, name) < 0)
8859 return FAIL;
8860 if (wc_use_keyname((char_u *)valuep, &wc))
8862 /* print 'wildchar' and 'wildcharm' as a key name */
8863 if (fputs((char *)get_special_key_name((int)wc, 0), fd) < 0)
8864 return FAIL;
8866 else if (fprintf(fd, "%ld", *valuep) < 0)
8867 return FAIL;
8868 if (put_eol(fd) < 0)
8869 return FAIL;
8870 return OK;
8873 static int
8874 put_setbool(fd, cmd, name, value)
8875 FILE *fd;
8876 char *cmd;
8877 char *name;
8878 int value;
8880 if (value < 0) /* global/local option using global value */
8881 return OK;
8882 if (fprintf(fd, "%s %s%s", cmd, value ? "" : "no", name) < 0
8883 || put_eol(fd) < 0)
8884 return FAIL;
8885 return OK;
8889 * Clear all the terminal options.
8890 * If the option has been allocated, free the memory.
8891 * Terminal options are never hidden or indirect.
8893 void
8894 clear_termoptions()
8897 * Reset a few things before clearing the old options. This may cause
8898 * outputting a few things that the terminal doesn't understand, but the
8899 * screen will be cleared later, so this is OK.
8901 #ifdef FEAT_MOUSE_TTY
8902 mch_setmouse(FALSE); /* switch mouse off */
8903 #endif
8904 #ifdef FEAT_TITLE
8905 mch_restore_title(3); /* restore window titles */
8906 #endif
8907 #if defined(FEAT_XCLIPBOARD) && defined(FEAT_GUI)
8908 /* When starting the GUI close the display opened for the clipboard.
8909 * After restoring the title, because that will need the display. */
8910 if (gui.starting)
8911 clear_xterm_clip();
8912 #endif
8913 #ifdef WIN3264
8915 * Check if this is allowed now.
8917 if (can_end_termcap_mode(FALSE) == TRUE)
8918 #endif
8919 stoptermcap(); /* stop termcap mode */
8921 free_termoptions();
8924 void
8925 free_termoptions()
8927 struct vimoption *p;
8929 for (p = &options[0]; p->fullname != NULL; p++)
8930 if (istermoption(p))
8932 if (p->flags & P_ALLOCED)
8933 free_string_option(*(char_u **)(p->var));
8934 if (p->flags & P_DEF_ALLOCED)
8935 free_string_option(p->def_val[VI_DEFAULT]);
8936 *(char_u **)(p->var) = empty_option;
8937 p->def_val[VI_DEFAULT] = empty_option;
8938 p->flags &= ~(P_ALLOCED|P_DEF_ALLOCED);
8940 clear_termcodes();
8944 * Set the terminal option defaults to the current value.
8945 * Used after setting the terminal name.
8947 void
8948 set_term_defaults()
8950 struct vimoption *p;
8952 for (p = &options[0]; p->fullname != NULL; p++)
8954 if (istermoption(p) && p->def_val[VI_DEFAULT] != *(char_u **)(p->var))
8956 if (p->flags & P_DEF_ALLOCED)
8958 free_string_option(p->def_val[VI_DEFAULT]);
8959 p->flags &= ~P_DEF_ALLOCED;
8961 p->def_val[VI_DEFAULT] = *(char_u **)(p->var);
8962 if (p->flags & P_ALLOCED)
8964 p->flags |= P_DEF_ALLOCED;
8965 p->flags &= ~P_ALLOCED; /* don't free the value now */
8972 * return TRUE if 'p' starts with 't_'
8974 static int
8975 istermoption(p)
8976 struct vimoption *p;
8978 return (p->fullname[0] == 't' && p->fullname[1] == '_');
8982 * Compute columns for ruler and shown command. 'sc_col' is also used to
8983 * decide what the maximum length of a message on the status line can be.
8984 * If there is a status line for the last window, 'sc_col' is independent
8985 * of 'ru_col'.
8988 #define COL_RULER 17 /* columns needed by standard ruler */
8990 void
8991 comp_col()
8993 #if defined(FEAT_CMDL_INFO) && defined(FEAT_WINDOWS)
8994 int last_has_status = (p_ls == 2 || (p_ls == 1 && firstwin != lastwin));
8996 sc_col = 0;
8997 ru_col = 0;
8998 if (p_ru)
9000 #ifdef FEAT_STL_OPT
9001 ru_col = (ru_wid ? ru_wid : COL_RULER) + 1;
9002 #else
9003 ru_col = COL_RULER + 1;
9004 #endif
9005 /* no last status line, adjust sc_col */
9006 if (!last_has_status)
9007 sc_col = ru_col;
9009 if (p_sc)
9011 sc_col += SHOWCMD_COLS;
9012 if (!p_ru || last_has_status) /* no need for separating space */
9013 ++sc_col;
9015 sc_col = Columns - sc_col;
9016 ru_col = Columns - ru_col;
9017 if (sc_col <= 0) /* screen too narrow, will become a mess */
9018 sc_col = 1;
9019 if (ru_col <= 0)
9020 ru_col = 1;
9021 #else
9022 sc_col = Columns;
9023 ru_col = Columns;
9024 #endif
9028 * Get pointer to option variable, depending on local or global scope.
9030 static char_u *
9031 get_varp_scope(p, opt_flags)
9032 struct vimoption *p;
9033 int opt_flags;
9035 if ((opt_flags & OPT_GLOBAL) && p->indir != PV_NONE)
9037 if (p->var == VAR_WIN)
9038 return (char_u *)GLOBAL_WO(get_varp(p));
9039 return p->var;
9041 if ((opt_flags & OPT_LOCAL) && ((int)p->indir & PV_BOTH))
9043 switch ((int)p->indir)
9045 #ifdef FEAT_QUICKFIX
9046 case PV_EFM: return (char_u *)&(curbuf->b_p_efm);
9047 case PV_GP: return (char_u *)&(curbuf->b_p_gp);
9048 case PV_MP: return (char_u *)&(curbuf->b_p_mp);
9049 #endif
9050 case PV_EP: return (char_u *)&(curbuf->b_p_ep);
9051 case PV_KP: return (char_u *)&(curbuf->b_p_kp);
9052 case PV_PATH: return (char_u *)&(curbuf->b_p_path);
9053 case PV_AR: return (char_u *)&(curbuf->b_p_ar);
9054 case PV_TAGS: return (char_u *)&(curbuf->b_p_tags);
9055 #ifdef FEAT_FIND_ID
9056 case PV_DEF: return (char_u *)&(curbuf->b_p_def);
9057 case PV_INC: return (char_u *)&(curbuf->b_p_inc);
9058 #endif
9059 #ifdef FEAT_INS_EXPAND
9060 case PV_DICT: return (char_u *)&(curbuf->b_p_dict);
9061 case PV_TSR: return (char_u *)&(curbuf->b_p_tsr);
9062 #endif
9063 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9064 case PV_BEXPR: return (char_u *)&(curbuf->b_p_bexpr);
9065 #endif
9066 #ifdef FEAT_STL_OPT
9067 case PV_STL: return (char_u *)&(curwin->w_p_stl);
9068 #endif
9070 return NULL; /* "cannot happen" */
9072 return get_varp(p);
9076 * Get pointer to option variable.
9078 static char_u *
9079 get_varp(p)
9080 struct vimoption *p;
9082 /* hidden option, always return NULL */
9083 if (p->var == NULL)
9084 return NULL;
9086 switch ((int)p->indir)
9088 case PV_NONE: return p->var;
9090 /* global option with local value: use local value if it's been set */
9091 case PV_EP: return *curbuf->b_p_ep != NUL
9092 ? (char_u *)&curbuf->b_p_ep : p->var;
9093 case PV_KP: return *curbuf->b_p_kp != NUL
9094 ? (char_u *)&curbuf->b_p_kp : p->var;
9095 case PV_PATH: return *curbuf->b_p_path != NUL
9096 ? (char_u *)&(curbuf->b_p_path) : p->var;
9097 case PV_AR: return curbuf->b_p_ar >= 0
9098 ? (char_u *)&(curbuf->b_p_ar) : p->var;
9099 case PV_TAGS: return *curbuf->b_p_tags != NUL
9100 ? (char_u *)&(curbuf->b_p_tags) : p->var;
9101 #ifdef FEAT_FIND_ID
9102 case PV_DEF: return *curbuf->b_p_def != NUL
9103 ? (char_u *)&(curbuf->b_p_def) : p->var;
9104 case PV_INC: return *curbuf->b_p_inc != NUL
9105 ? (char_u *)&(curbuf->b_p_inc) : p->var;
9106 #endif
9107 #ifdef FEAT_INS_EXPAND
9108 case PV_DICT: return *curbuf->b_p_dict != NUL
9109 ? (char_u *)&(curbuf->b_p_dict) : p->var;
9110 case PV_TSR: return *curbuf->b_p_tsr != NUL
9111 ? (char_u *)&(curbuf->b_p_tsr) : p->var;
9112 #endif
9113 #ifdef FEAT_QUICKFIX
9114 case PV_EFM: return *curbuf->b_p_efm != NUL
9115 ? (char_u *)&(curbuf->b_p_efm) : p->var;
9116 case PV_GP: return *curbuf->b_p_gp != NUL
9117 ? (char_u *)&(curbuf->b_p_gp) : p->var;
9118 case PV_MP: return *curbuf->b_p_mp != NUL
9119 ? (char_u *)&(curbuf->b_p_mp) : p->var;
9120 #endif
9121 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9122 case PV_BEXPR: return *curbuf->b_p_bexpr != NUL
9123 ? (char_u *)&(curbuf->b_p_bexpr) : p->var;
9124 #endif
9125 #ifdef FEAT_STL_OPT
9126 case PV_STL: return *curwin->w_p_stl != NUL
9127 ? (char_u *)&(curwin->w_p_stl) : p->var;
9128 #endif
9130 #ifdef FEAT_ARABIC
9131 case PV_ARAB: return (char_u *)&(curwin->w_p_arab);
9132 #endif
9133 case PV_LIST: return (char_u *)&(curwin->w_p_list);
9134 #ifdef FEAT_SPELL
9135 case PV_SPELL: return (char_u *)&(curwin->w_p_spell);
9136 #endif
9137 #ifdef FEAT_SYN_HL
9138 case PV_CUC: return (char_u *)&(curwin->w_p_cuc);
9139 case PV_CUL: return (char_u *)&(curwin->w_p_cul);
9140 #endif
9141 #ifdef FEAT_DIFF
9142 case PV_DIFF: return (char_u *)&(curwin->w_p_diff);
9143 #endif
9144 #ifdef FEAT_FOLDING
9145 case PV_FDC: return (char_u *)&(curwin->w_p_fdc);
9146 case PV_FEN: return (char_u *)&(curwin->w_p_fen);
9147 case PV_FDI: return (char_u *)&(curwin->w_p_fdi);
9148 case PV_FDL: return (char_u *)&(curwin->w_p_fdl);
9149 case PV_FDM: return (char_u *)&(curwin->w_p_fdm);
9150 case PV_FML: return (char_u *)&(curwin->w_p_fml);
9151 case PV_FDN: return (char_u *)&(curwin->w_p_fdn);
9152 # ifdef FEAT_EVAL
9153 case PV_FDE: return (char_u *)&(curwin->w_p_fde);
9154 case PV_FDT: return (char_u *)&(curwin->w_p_fdt);
9155 # endif
9156 case PV_FMR: return (char_u *)&(curwin->w_p_fmr);
9157 #endif
9158 case PV_NU: return (char_u *)&(curwin->w_p_nu);
9159 #ifdef FEAT_LINEBREAK
9160 case PV_NUW: return (char_u *)&(curwin->w_p_nuw);
9161 #endif
9162 #ifdef FEAT_WINDOWS
9163 case PV_WFH: return (char_u *)&(curwin->w_p_wfh);
9164 #endif
9165 #ifdef FEAT_VERTSPLIT
9166 case PV_WFW: return (char_u *)&(curwin->w_p_wfw);
9167 #endif
9168 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
9169 case PV_PVW: return (char_u *)&(curwin->w_p_pvw);
9170 #endif
9171 #ifdef FEAT_RIGHTLEFT
9172 case PV_RL: return (char_u *)&(curwin->w_p_rl);
9173 case PV_RLC: return (char_u *)&(curwin->w_p_rlc);
9174 #endif
9175 case PV_SCROLL: return (char_u *)&(curwin->w_p_scr);
9176 case PV_WRAP: return (char_u *)&(curwin->w_p_wrap);
9177 #ifdef FEAT_LINEBREAK
9178 case PV_LBR: return (char_u *)&(curwin->w_p_lbr);
9179 #endif
9180 #ifdef FEAT_SCROLLBIND
9181 case PV_SCBIND: return (char_u *)&(curwin->w_p_scb);
9182 #endif
9184 case PV_AI: return (char_u *)&(curbuf->b_p_ai);
9185 case PV_BIN: return (char_u *)&(curbuf->b_p_bin);
9186 #ifdef FEAT_MBYTE
9187 case PV_BOMB: return (char_u *)&(curbuf->b_p_bomb);
9188 #endif
9189 #if defined(FEAT_QUICKFIX)
9190 case PV_BH: return (char_u *)&(curbuf->b_p_bh);
9191 case PV_BT: return (char_u *)&(curbuf->b_p_bt);
9192 #endif
9193 case PV_BL: return (char_u *)&(curbuf->b_p_bl);
9194 case PV_CI: return (char_u *)&(curbuf->b_p_ci);
9195 #ifdef FEAT_CINDENT
9196 case PV_CIN: return (char_u *)&(curbuf->b_p_cin);
9197 case PV_CINK: return (char_u *)&(curbuf->b_p_cink);
9198 case PV_CINO: return (char_u *)&(curbuf->b_p_cino);
9199 #endif
9200 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
9201 case PV_CINW: return (char_u *)&(curbuf->b_p_cinw);
9202 #endif
9203 #ifdef FEAT_COMMENTS
9204 case PV_COM: return (char_u *)&(curbuf->b_p_com);
9205 #endif
9206 #ifdef FEAT_FOLDING
9207 case PV_CMS: return (char_u *)&(curbuf->b_p_cms);
9208 #endif
9209 #ifdef FEAT_INS_EXPAND
9210 case PV_CPT: return (char_u *)&(curbuf->b_p_cpt);
9211 #endif
9212 #ifdef FEAT_COMPL_FUNC
9213 case PV_CFU: return (char_u *)&(curbuf->b_p_cfu);
9214 case PV_OFU: return (char_u *)&(curbuf->b_p_ofu);
9215 #endif
9216 case PV_EOL: return (char_u *)&(curbuf->b_p_eol);
9217 case PV_ET: return (char_u *)&(curbuf->b_p_et);
9218 #ifdef FEAT_MBYTE
9219 case PV_FENC: return (char_u *)&(curbuf->b_p_fenc);
9220 #endif
9221 case PV_FF: return (char_u *)&(curbuf->b_p_ff);
9222 #ifdef FEAT_AUTOCMD
9223 case PV_FT: return (char_u *)&(curbuf->b_p_ft);
9224 #endif
9225 case PV_FO: return (char_u *)&(curbuf->b_p_fo);
9226 case PV_FLP: return (char_u *)&(curbuf->b_p_flp);
9227 case PV_IMI: return (char_u *)&(curbuf->b_p_iminsert);
9228 case PV_IMS: return (char_u *)&(curbuf->b_p_imsearch);
9229 case PV_INF: return (char_u *)&(curbuf->b_p_inf);
9230 case PV_ISK: return (char_u *)&(curbuf->b_p_isk);
9231 #ifdef FEAT_FIND_ID
9232 # ifdef FEAT_EVAL
9233 case PV_INEX: return (char_u *)&(curbuf->b_p_inex);
9234 # endif
9235 #endif
9236 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
9237 case PV_INDE: return (char_u *)&(curbuf->b_p_inde);
9238 case PV_INDK: return (char_u *)&(curbuf->b_p_indk);
9239 #endif
9240 #ifdef FEAT_EVAL
9241 case PV_FEX: return (char_u *)&(curbuf->b_p_fex);
9242 #endif
9243 #ifdef FEAT_CRYPT
9244 case PV_KEY: return (char_u *)&(curbuf->b_p_key);
9245 #endif
9246 #ifdef FEAT_LISP
9247 case PV_LISP: return (char_u *)&(curbuf->b_p_lisp);
9248 #endif
9249 case PV_ML: return (char_u *)&(curbuf->b_p_ml);
9250 case PV_MPS: return (char_u *)&(curbuf->b_p_mps);
9251 case PV_MA: return (char_u *)&(curbuf->b_p_ma);
9252 case PV_MOD: return (char_u *)&(curbuf->b_changed);
9253 case PV_NF: return (char_u *)&(curbuf->b_p_nf);
9254 #ifdef FEAT_OSFILETYPE
9255 case PV_OFT: return (char_u *)&(curbuf->b_p_oft);
9256 #endif
9257 case PV_PI: return (char_u *)&(curbuf->b_p_pi);
9258 #ifdef FEAT_TEXTOBJ
9259 case PV_QE: return (char_u *)&(curbuf->b_p_qe);
9260 #endif
9261 case PV_RO: return (char_u *)&(curbuf->b_p_ro);
9262 #ifdef FEAT_SMARTINDENT
9263 case PV_SI: return (char_u *)&(curbuf->b_p_si);
9264 #endif
9265 #ifndef SHORT_FNAME
9266 case PV_SN: return (char_u *)&(curbuf->b_p_sn);
9267 #endif
9268 case PV_STS: return (char_u *)&(curbuf->b_p_sts);
9269 #ifdef FEAT_SEARCHPATH
9270 case PV_SUA: return (char_u *)&(curbuf->b_p_sua);
9271 #endif
9272 case PV_SWF: return (char_u *)&(curbuf->b_p_swf);
9273 #ifdef FEAT_SYN_HL
9274 case PV_SMC: return (char_u *)&(curbuf->b_p_smc);
9275 case PV_SYN: return (char_u *)&(curbuf->b_p_syn);
9276 #endif
9277 #ifdef FEAT_SPELL
9278 case PV_SPC: return (char_u *)&(curbuf->b_p_spc);
9279 case PV_SPF: return (char_u *)&(curbuf->b_p_spf);
9280 case PV_SPL: return (char_u *)&(curbuf->b_p_spl);
9281 #endif
9282 case PV_SW: return (char_u *)&(curbuf->b_p_sw);
9283 case PV_TS: return (char_u *)&(curbuf->b_p_ts);
9284 case PV_TW: return (char_u *)&(curbuf->b_p_tw);
9285 case PV_TX: return (char_u *)&(curbuf->b_p_tx);
9286 case PV_WM: return (char_u *)&(curbuf->b_p_wm);
9287 #ifdef FEAT_KEYMAP
9288 case PV_KMAP: return (char_u *)&(curbuf->b_p_keymap);
9289 #endif
9290 default: EMSG(_("E356: get_varp ERROR"));
9292 /* always return a valid pointer to avoid a crash! */
9293 return (char_u *)&(curbuf->b_p_wm);
9297 * Get the value of 'equalprg', either the buffer-local one or the global one.
9299 char_u *
9300 get_equalprg()
9302 if (*curbuf->b_p_ep == NUL)
9303 return p_ep;
9304 return curbuf->b_p_ep;
9307 #if defined(FEAT_WINDOWS) || defined(PROTO)
9309 * Copy options from one window to another.
9310 * Used when splitting a window.
9312 void
9313 win_copy_options(wp_from, wp_to)
9314 win_T *wp_from;
9315 win_T *wp_to;
9317 copy_winopt(&wp_from->w_onebuf_opt, &wp_to->w_onebuf_opt);
9318 copy_winopt(&wp_from->w_allbuf_opt, &wp_to->w_allbuf_opt);
9319 # ifdef FEAT_RIGHTLEFT
9320 # ifdef FEAT_FKMAP
9321 /* Is this right? */
9322 wp_to->w_farsi = wp_from->w_farsi;
9323 # endif
9324 # endif
9326 #endif
9329 * Copy the options from one winopt_T to another.
9330 * Doesn't free the old option values in "to", use clear_winopt() for that.
9331 * The 'scroll' option is not copied, because it depends on the window height.
9332 * The 'previewwindow' option is reset, there can be only one preview window.
9334 void
9335 copy_winopt(from, to)
9336 winopt_T *from;
9337 winopt_T *to;
9339 #ifdef FEAT_ARABIC
9340 to->wo_arab = from->wo_arab;
9341 #endif
9342 to->wo_list = from->wo_list;
9343 to->wo_nu = from->wo_nu;
9344 #ifdef FEAT_LINEBREAK
9345 to->wo_nuw = from->wo_nuw;
9346 #endif
9347 #ifdef FEAT_RIGHTLEFT
9348 to->wo_rl = from->wo_rl;
9349 to->wo_rlc = vim_strsave(from->wo_rlc);
9350 #endif
9351 #ifdef FEAT_STL_OPT
9352 to->wo_stl = vim_strsave(from->wo_stl);
9353 #endif
9354 to->wo_wrap = from->wo_wrap;
9355 #ifdef FEAT_LINEBREAK
9356 to->wo_lbr = from->wo_lbr;
9357 #endif
9358 #ifdef FEAT_SCROLLBIND
9359 to->wo_scb = from->wo_scb;
9360 #endif
9361 #ifdef FEAT_SPELL
9362 to->wo_spell = from->wo_spell;
9363 #endif
9364 #ifdef FEAT_SYN_HL
9365 to->wo_cuc = from->wo_cuc;
9366 to->wo_cul = from->wo_cul;
9367 #endif
9368 #ifdef FEAT_DIFF
9369 to->wo_diff = from->wo_diff;
9370 #endif
9371 #ifdef FEAT_FOLDING
9372 to->wo_fdc = from->wo_fdc;
9373 to->wo_fen = from->wo_fen;
9374 to->wo_fdi = vim_strsave(from->wo_fdi);
9375 to->wo_fml = from->wo_fml;
9376 to->wo_fdl = from->wo_fdl;
9377 to->wo_fdm = vim_strsave(from->wo_fdm);
9378 to->wo_fdn = from->wo_fdn;
9379 # ifdef FEAT_EVAL
9380 to->wo_fde = vim_strsave(from->wo_fde);
9381 to->wo_fdt = vim_strsave(from->wo_fdt);
9382 # endif
9383 to->wo_fmr = vim_strsave(from->wo_fmr);
9384 #endif
9385 check_winopt(to); /* don't want NULL pointers */
9389 * Check string options in a window for a NULL value.
9391 void
9392 check_win_options(win)
9393 win_T *win;
9395 check_winopt(&win->w_onebuf_opt);
9396 check_winopt(&win->w_allbuf_opt);
9400 * Check for NULL pointers in a winopt_T and replace them with empty_option.
9402 /*ARGSUSED*/
9403 void
9404 check_winopt(wop)
9405 winopt_T *wop;
9407 #ifdef FEAT_FOLDING
9408 check_string_option(&wop->wo_fdi);
9409 check_string_option(&wop->wo_fdm);
9410 # ifdef FEAT_EVAL
9411 check_string_option(&wop->wo_fde);
9412 check_string_option(&wop->wo_fdt);
9413 # endif
9414 check_string_option(&wop->wo_fmr);
9415 #endif
9416 #ifdef FEAT_RIGHTLEFT
9417 check_string_option(&wop->wo_rlc);
9418 #endif
9419 #ifdef FEAT_STL_OPT
9420 check_string_option(&wop->wo_stl);
9421 #endif
9425 * Free the allocated memory inside a winopt_T.
9427 /*ARGSUSED*/
9428 void
9429 clear_winopt(wop)
9430 winopt_T *wop;
9432 #ifdef FEAT_FOLDING
9433 clear_string_option(&wop->wo_fdi);
9434 clear_string_option(&wop->wo_fdm);
9435 # ifdef FEAT_EVAL
9436 clear_string_option(&wop->wo_fde);
9437 clear_string_option(&wop->wo_fdt);
9438 # endif
9439 clear_string_option(&wop->wo_fmr);
9440 #endif
9441 #ifdef FEAT_RIGHTLEFT
9442 clear_string_option(&wop->wo_rlc);
9443 #endif
9444 #ifdef FEAT_STL_OPT
9445 clear_string_option(&wop->wo_stl);
9446 #endif
9450 * Copy global option values to local options for one buffer.
9451 * Used when creating a new buffer and sometimes when entering a buffer.
9452 * flags:
9453 * BCO_ENTER We will enter the buf buffer.
9454 * BCO_ALWAYS Always copy the options, but only set b_p_initialized when
9455 * appropriate.
9456 * BCO_NOHELP Don't copy the values to a help buffer.
9458 void
9459 buf_copy_options(buf, flags)
9460 buf_T *buf;
9461 int flags;
9463 int should_copy = TRUE;
9464 char_u *save_p_isk = NULL; /* init for GCC */
9465 int dont_do_help;
9466 int did_isk = FALSE;
9469 * Don't do anything of the buffer is invalid.
9471 if (buf == NULL || !buf_valid(buf))
9472 return;
9475 * Skip this when the option defaults have not been set yet. Happens when
9476 * main() allocates the first buffer.
9478 if (p_cpo != NULL)
9481 * Always copy when entering and 'cpo' contains 'S'.
9482 * Don't copy when already initialized.
9483 * Don't copy when 'cpo' contains 's' and not entering.
9484 * 'S' BCO_ENTER initialized 's' should_copy
9485 * yes yes X X TRUE
9486 * yes no yes X FALSE
9487 * no X yes X FALSE
9488 * X no no yes FALSE
9489 * X no no no TRUE
9490 * no yes no X TRUE
9492 if ((vim_strchr(p_cpo, CPO_BUFOPTGLOB) == NULL || !(flags & BCO_ENTER))
9493 && (buf->b_p_initialized
9494 || (!(flags & BCO_ENTER)
9495 && vim_strchr(p_cpo, CPO_BUFOPT) != NULL)))
9496 should_copy = FALSE;
9498 if (should_copy || (flags & BCO_ALWAYS))
9500 /* Don't copy the options specific to a help buffer when
9501 * BCO_NOHELP is given or the options were initialized already
9502 * (jumping back to a help file with CTRL-T or CTRL-O) */
9503 dont_do_help = ((flags & BCO_NOHELP) && buf->b_help)
9504 || buf->b_p_initialized;
9505 if (dont_do_help) /* don't free b_p_isk */
9507 save_p_isk = buf->b_p_isk;
9508 buf->b_p_isk = NULL;
9511 * Always free the allocated strings.
9512 * If not already initialized, set 'readonly' and copy 'fileformat'.
9514 if (!buf->b_p_initialized)
9516 free_buf_options(buf, TRUE);
9517 buf->b_p_ro = FALSE; /* don't copy readonly */
9518 buf->b_p_tx = p_tx;
9519 #ifdef FEAT_MBYTE
9520 buf->b_p_fenc = vim_strsave(p_fenc);
9521 #endif
9522 buf->b_p_ff = vim_strsave(p_ff);
9523 #if defined(FEAT_QUICKFIX)
9524 buf->b_p_bh = empty_option;
9525 buf->b_p_bt = empty_option;
9526 #endif
9528 else
9529 free_buf_options(buf, FALSE);
9531 buf->b_p_ai = p_ai;
9532 buf->b_p_ai_nopaste = p_ai_nopaste;
9533 buf->b_p_sw = p_sw;
9534 buf->b_p_tw = p_tw;
9535 buf->b_p_tw_nopaste = p_tw_nopaste;
9536 buf->b_p_tw_nobin = p_tw_nobin;
9537 buf->b_p_wm = p_wm;
9538 buf->b_p_wm_nopaste = p_wm_nopaste;
9539 buf->b_p_wm_nobin = p_wm_nobin;
9540 buf->b_p_bin = p_bin;
9541 #ifdef FEAT_MBYTE
9542 buf->b_p_bomb = p_bomb;
9543 #endif
9544 buf->b_p_et = p_et;
9545 buf->b_p_et_nobin = p_et_nobin;
9546 buf->b_p_ml = p_ml;
9547 buf->b_p_ml_nobin = p_ml_nobin;
9548 buf->b_p_inf = p_inf;
9549 buf->b_p_swf = p_swf;
9550 #ifdef FEAT_INS_EXPAND
9551 buf->b_p_cpt = vim_strsave(p_cpt);
9552 #endif
9553 #ifdef FEAT_COMPL_FUNC
9554 buf->b_p_cfu = vim_strsave(p_cfu);
9555 buf->b_p_ofu = vim_strsave(p_ofu);
9556 #endif
9557 buf->b_p_sts = p_sts;
9558 buf->b_p_sts_nopaste = p_sts_nopaste;
9559 #ifndef SHORT_FNAME
9560 buf->b_p_sn = p_sn;
9561 #endif
9562 #ifdef FEAT_COMMENTS
9563 buf->b_p_com = vim_strsave(p_com);
9564 #endif
9565 #ifdef FEAT_FOLDING
9566 buf->b_p_cms = vim_strsave(p_cms);
9567 #endif
9568 buf->b_p_fo = vim_strsave(p_fo);
9569 buf->b_p_flp = vim_strsave(p_flp);
9570 buf->b_p_nf = vim_strsave(p_nf);
9571 buf->b_p_mps = vim_strsave(p_mps);
9572 #ifdef FEAT_SMARTINDENT
9573 buf->b_p_si = p_si;
9574 #endif
9575 buf->b_p_ci = p_ci;
9576 #ifdef FEAT_CINDENT
9577 buf->b_p_cin = p_cin;
9578 buf->b_p_cink = vim_strsave(p_cink);
9579 buf->b_p_cino = vim_strsave(p_cino);
9580 #endif
9581 #ifdef FEAT_AUTOCMD
9582 /* Don't copy 'filetype', it must be detected */
9583 buf->b_p_ft = empty_option;
9584 #endif
9585 #ifdef FEAT_OSFILETYPE
9586 buf->b_p_oft = vim_strsave(p_oft);
9587 #endif
9588 buf->b_p_pi = p_pi;
9589 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
9590 buf->b_p_cinw = vim_strsave(p_cinw);
9591 #endif
9592 #ifdef FEAT_LISP
9593 buf->b_p_lisp = p_lisp;
9594 #endif
9595 #ifdef FEAT_SYN_HL
9596 /* Don't copy 'syntax', it must be set */
9597 buf->b_p_syn = empty_option;
9598 buf->b_p_smc = p_smc;
9599 #endif
9600 #ifdef FEAT_SPELL
9601 buf->b_p_spc = vim_strsave(p_spc);
9602 (void)compile_cap_prog(buf);
9603 buf->b_p_spf = vim_strsave(p_spf);
9604 buf->b_p_spl = vim_strsave(p_spl);
9605 #endif
9606 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
9607 buf->b_p_inde = vim_strsave(p_inde);
9608 buf->b_p_indk = vim_strsave(p_indk);
9609 #endif
9610 #if defined(FEAT_EVAL)
9611 buf->b_p_fex = vim_strsave(p_fex);
9612 #endif
9613 #ifdef FEAT_CRYPT
9614 buf->b_p_key = vim_strsave(p_key);
9615 #endif
9616 #ifdef FEAT_SEARCHPATH
9617 buf->b_p_sua = vim_strsave(p_sua);
9618 #endif
9619 #ifdef FEAT_KEYMAP
9620 buf->b_p_keymap = vim_strsave(p_keymap);
9621 buf->b_kmap_state |= KEYMAP_INIT;
9622 #endif
9623 /* This isn't really an option, but copying the langmap and IME
9624 * state from the current buffer is better than resetting it. */
9625 buf->b_p_iminsert = p_iminsert;
9626 buf->b_p_imsearch = p_imsearch;
9628 /* options that are normally global but also have a local value
9629 * are not copied, start using the global value */
9630 buf->b_p_ar = -1;
9631 #ifdef FEAT_QUICKFIX
9632 buf->b_p_gp = empty_option;
9633 buf->b_p_mp = empty_option;
9634 buf->b_p_efm = empty_option;
9635 #endif
9636 buf->b_p_ep = empty_option;
9637 buf->b_p_kp = empty_option;
9638 buf->b_p_path = empty_option;
9639 buf->b_p_tags = empty_option;
9640 #ifdef FEAT_FIND_ID
9641 buf->b_p_def = empty_option;
9642 buf->b_p_inc = empty_option;
9643 # ifdef FEAT_EVAL
9644 buf->b_p_inex = vim_strsave(p_inex);
9645 # endif
9646 #endif
9647 #ifdef FEAT_INS_EXPAND
9648 buf->b_p_dict = empty_option;
9649 buf->b_p_tsr = empty_option;
9650 #endif
9651 #ifdef FEAT_TEXTOBJ
9652 buf->b_p_qe = vim_strsave(p_qe);
9653 #endif
9654 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9655 buf->b_p_bexpr = empty_option;
9656 #endif
9659 * Don't copy the options set by ex_help(), use the saved values,
9660 * when going from a help buffer to a non-help buffer.
9661 * Don't touch these at all when BCO_NOHELP is used and going from
9662 * or to a help buffer.
9664 if (dont_do_help)
9665 buf->b_p_isk = save_p_isk;
9666 else
9668 buf->b_p_isk = vim_strsave(p_isk);
9669 did_isk = TRUE;
9670 buf->b_p_ts = p_ts;
9671 buf->b_help = FALSE;
9672 #ifdef FEAT_QUICKFIX
9673 if (buf->b_p_bt[0] == 'h')
9674 clear_string_option(&buf->b_p_bt);
9675 #endif
9676 buf->b_p_ma = p_ma;
9681 * When the options should be copied (ignoring BCO_ALWAYS), set the
9682 * flag that indicates that the options have been initialized.
9684 if (should_copy)
9685 buf->b_p_initialized = TRUE;
9688 check_buf_options(buf); /* make sure we don't have NULLs */
9689 if (did_isk)
9690 (void)buf_init_chartab(buf, FALSE);
9694 * Reset the 'modifiable' option and its default value.
9696 void
9697 reset_modifiable()
9699 int opt_idx;
9701 curbuf->b_p_ma = FALSE;
9702 p_ma = FALSE;
9703 opt_idx = findoption((char_u *)"ma");
9704 if (opt_idx >= 0)
9705 options[opt_idx].def_val[VI_DEFAULT] = FALSE;
9709 * Set the global value for 'iminsert' to the local value.
9711 void
9712 set_iminsert_global()
9714 p_iminsert = curbuf->b_p_iminsert;
9718 * Set the global value for 'imsearch' to the local value.
9720 void
9721 set_imsearch_global()
9723 p_imsearch = curbuf->b_p_imsearch;
9726 #if defined(FEAT_CMDL_COMPL) || defined(PROTO)
9727 static int expand_option_idx = -1;
9728 static char_u expand_option_name[5] = {'t', '_', NUL, NUL, NUL};
9729 static int expand_option_flags = 0;
9731 void
9732 set_context_in_set_cmd(xp, arg, opt_flags)
9733 expand_T *xp;
9734 char_u *arg;
9735 int opt_flags; /* OPT_GLOBAL and/or OPT_LOCAL */
9737 int nextchar;
9738 long_u flags = 0; /* init for GCC */
9739 int opt_idx = 0; /* init for GCC */
9740 char_u *p;
9741 char_u *s;
9742 int is_term_option = FALSE;
9743 int key;
9745 expand_option_flags = opt_flags;
9747 xp->xp_context = EXPAND_SETTINGS;
9748 if (*arg == NUL)
9750 xp->xp_pattern = arg;
9751 return;
9753 p = arg + STRLEN(arg) - 1;
9754 if (*p == ' ' && *(p - 1) != '\\')
9756 xp->xp_pattern = p + 1;
9757 return;
9759 while (p > arg)
9761 s = p;
9762 /* count number of backslashes before ' ' or ',' */
9763 if (*p == ' ' || *p == ',')
9765 while (s > arg && *(s - 1) == '\\')
9766 --s;
9768 /* break at a space with an even number of backslashes */
9769 if (*p == ' ' && ((p - s) & 1) == 0)
9771 ++p;
9772 break;
9774 --p;
9776 if (STRNCMP(p, "no", 2) == 0)
9778 xp->xp_context = EXPAND_BOOL_SETTINGS;
9779 p += 2;
9781 if (STRNCMP(p, "inv", 3) == 0)
9783 xp->xp_context = EXPAND_BOOL_SETTINGS;
9784 p += 3;
9786 xp->xp_pattern = arg = p;
9787 if (*arg == '<')
9789 while (*p != '>')
9790 if (*p++ == NUL) /* expand terminal option name */
9791 return;
9792 key = get_special_key_code(arg + 1);
9793 if (key == 0) /* unknown name */
9795 xp->xp_context = EXPAND_NOTHING;
9796 return;
9798 nextchar = *++p;
9799 is_term_option = TRUE;
9800 expand_option_name[2] = KEY2TERMCAP0(key);
9801 expand_option_name[3] = KEY2TERMCAP1(key);
9803 else
9805 if (p[0] == 't' && p[1] == '_')
9807 p += 2;
9808 if (*p != NUL)
9809 ++p;
9810 if (*p == NUL)
9811 return; /* expand option name */
9812 nextchar = *++p;
9813 is_term_option = TRUE;
9814 expand_option_name[2] = p[-2];
9815 expand_option_name[3] = p[-1];
9817 else
9819 /* Allow * wildcard */
9820 while (ASCII_ISALNUM(*p) || *p == '_' || *p == '*')
9821 p++;
9822 if (*p == NUL)
9823 return;
9824 nextchar = *p;
9825 *p = NUL;
9826 opt_idx = findoption(arg);
9827 *p = nextchar;
9828 if (opt_idx == -1 || options[opt_idx].var == NULL)
9830 xp->xp_context = EXPAND_NOTHING;
9831 return;
9833 flags = options[opt_idx].flags;
9834 if (flags & P_BOOL)
9836 xp->xp_context = EXPAND_NOTHING;
9837 return;
9841 /* handle "-=" and "+=" */
9842 if ((nextchar == '-' || nextchar == '+' || nextchar == '^') && p[1] == '=')
9844 ++p;
9845 nextchar = '=';
9847 if ((nextchar != '=' && nextchar != ':')
9848 || xp->xp_context == EXPAND_BOOL_SETTINGS)
9850 xp->xp_context = EXPAND_UNSUCCESSFUL;
9851 return;
9853 if (xp->xp_context != EXPAND_BOOL_SETTINGS && p[1] == NUL)
9855 xp->xp_context = EXPAND_OLD_SETTING;
9856 if (is_term_option)
9857 expand_option_idx = -1;
9858 else
9859 expand_option_idx = opt_idx;
9860 xp->xp_pattern = p + 1;
9861 return;
9863 xp->xp_context = EXPAND_NOTHING;
9864 if (is_term_option || (flags & P_NUM))
9865 return;
9867 xp->xp_pattern = p + 1;
9869 if (flags & P_EXPAND)
9871 p = options[opt_idx].var;
9872 if (p == (char_u *)&p_bdir
9873 || p == (char_u *)&p_dir
9874 || p == (char_u *)&p_path
9875 || p == (char_u *)&p_rtp
9876 #ifdef FEAT_SEARCHPATH
9877 || p == (char_u *)&p_cdpath
9878 #endif
9879 #ifdef FEAT_SESSION
9880 || p == (char_u *)&p_vdir
9881 #endif
9884 xp->xp_context = EXPAND_DIRECTORIES;
9885 if (p == (char_u *)&p_path
9886 #ifdef FEAT_SEARCHPATH
9887 || p == (char_u *)&p_cdpath
9888 #endif
9890 xp->xp_backslash = XP_BS_THREE;
9891 else
9892 xp->xp_backslash = XP_BS_ONE;
9894 else
9896 xp->xp_context = EXPAND_FILES;
9897 /* for 'tags' need three backslashes for a space */
9898 if (p == (char_u *)&p_tags)
9899 xp->xp_backslash = XP_BS_THREE;
9900 else
9901 xp->xp_backslash = XP_BS_ONE;
9905 /* For an option that is a list of file names, find the start of the
9906 * last file name. */
9907 for (p = arg + STRLEN(arg) - 1; p > xp->xp_pattern; --p)
9909 /* count number of backslashes before ' ' or ',' */
9910 if (*p == ' ' || *p == ',')
9912 s = p;
9913 while (s > xp->xp_pattern && *(s - 1) == '\\')
9914 --s;
9915 if ((*p == ' ' && (xp->xp_backslash == XP_BS_THREE && (p - s) < 3))
9916 || (*p == ',' && (flags & P_COMMA) && ((p - s) & 1) == 0))
9918 xp->xp_pattern = p + 1;
9919 break;
9923 #ifdef FEAT_SPELL
9924 /* for 'spellsuggest' start at "file:" */
9925 if (options[opt_idx].var == (char_u *)&p_sps
9926 && STRNCMP(p, "file:", 5) == 0)
9928 xp->xp_pattern = p + 5;
9929 break;
9931 #endif
9934 return;
9938 ExpandSettings(xp, regmatch, num_file, file)
9939 expand_T *xp;
9940 regmatch_T *regmatch;
9941 int *num_file;
9942 char_u ***file;
9944 int num_normal = 0; /* Nr of matching non-term-code settings */
9945 int num_term = 0; /* Nr of matching terminal code settings */
9946 int opt_idx;
9947 int match;
9948 int count = 0;
9949 char_u *str;
9950 int loop;
9951 int is_term_opt;
9952 char_u name_buf[MAX_KEY_NAME_LEN];
9953 static char *(names[]) = {"all", "termcap"};
9954 int ic = regmatch->rm_ic; /* remember the ignore-case flag */
9956 /* do this loop twice:
9957 * loop == 0: count the number of matching options
9958 * loop == 1: copy the matching options into allocated memory
9960 for (loop = 0; loop <= 1; ++loop)
9962 regmatch->rm_ic = ic;
9963 if (xp->xp_context != EXPAND_BOOL_SETTINGS)
9965 for (match = 0; match < sizeof(names) / sizeof(char *); ++match)
9966 if (vim_regexec(regmatch, (char_u *)names[match], (colnr_T)0))
9968 if (loop == 0)
9969 num_normal++;
9970 else
9971 (*file)[count++] = vim_strsave((char_u *)names[match]);
9974 for (opt_idx = 0; (str = (char_u *)options[opt_idx].fullname) != NULL;
9975 opt_idx++)
9977 if (options[opt_idx].var == NULL)
9978 continue;
9979 if (xp->xp_context == EXPAND_BOOL_SETTINGS
9980 && !(options[opt_idx].flags & P_BOOL))
9981 continue;
9982 is_term_opt = istermoption(&options[opt_idx]);
9983 if (is_term_opt && num_normal > 0)
9984 continue;
9985 match = FALSE;
9986 if (vim_regexec(regmatch, str, (colnr_T)0)
9987 || (options[opt_idx].shortname != NULL
9988 && vim_regexec(regmatch,
9989 (char_u *)options[opt_idx].shortname, (colnr_T)0)))
9990 match = TRUE;
9991 else if (is_term_opt)
9993 name_buf[0] = '<';
9994 name_buf[1] = 't';
9995 name_buf[2] = '_';
9996 name_buf[3] = str[2];
9997 name_buf[4] = str[3];
9998 name_buf[5] = '>';
9999 name_buf[6] = NUL;
10000 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10002 match = TRUE;
10003 str = name_buf;
10006 if (match)
10008 if (loop == 0)
10010 if (is_term_opt)
10011 num_term++;
10012 else
10013 num_normal++;
10015 else
10016 (*file)[count++] = vim_strsave(str);
10020 * Check terminal key codes, these are not in the option table
10022 if (xp->xp_context != EXPAND_BOOL_SETTINGS && num_normal == 0)
10024 for (opt_idx = 0; (str = get_termcode(opt_idx)) != NULL; opt_idx++)
10026 if (!isprint(str[0]) || !isprint(str[1]))
10027 continue;
10029 name_buf[0] = 't';
10030 name_buf[1] = '_';
10031 name_buf[2] = str[0];
10032 name_buf[3] = str[1];
10033 name_buf[4] = NUL;
10035 match = FALSE;
10036 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10037 match = TRUE;
10038 else
10040 name_buf[0] = '<';
10041 name_buf[1] = 't';
10042 name_buf[2] = '_';
10043 name_buf[3] = str[0];
10044 name_buf[4] = str[1];
10045 name_buf[5] = '>';
10046 name_buf[6] = NUL;
10048 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10049 match = TRUE;
10051 if (match)
10053 if (loop == 0)
10054 num_term++;
10055 else
10056 (*file)[count++] = vim_strsave(name_buf);
10061 * Check special key names.
10063 regmatch->rm_ic = TRUE; /* ignore case here */
10064 for (opt_idx = 0; (str = get_key_name(opt_idx)) != NULL; opt_idx++)
10066 name_buf[0] = '<';
10067 STRCPY(name_buf + 1, str);
10068 STRCAT(name_buf, ">");
10070 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10072 if (loop == 0)
10073 num_term++;
10074 else
10075 (*file)[count++] = vim_strsave(name_buf);
10079 if (loop == 0)
10081 if (num_normal > 0)
10082 *num_file = num_normal;
10083 else if (num_term > 0)
10084 *num_file = num_term;
10085 else
10086 return OK;
10087 *file = (char_u **)alloc((unsigned)(*num_file * sizeof(char_u *)));
10088 if (*file == NULL)
10090 *file = (char_u **)"";
10091 return FAIL;
10095 return OK;
10099 ExpandOldSetting(num_file, file)
10100 int *num_file;
10101 char_u ***file;
10103 char_u *var = NULL; /* init for GCC */
10104 char_u *buf;
10106 *num_file = 0;
10107 *file = (char_u **)alloc((unsigned)sizeof(char_u *));
10108 if (*file == NULL)
10109 return FAIL;
10112 * For a terminal key code expand_option_idx is < 0.
10114 if (expand_option_idx < 0)
10116 var = find_termcode(expand_option_name + 2);
10117 if (var == NULL)
10118 expand_option_idx = findoption(expand_option_name);
10121 if (expand_option_idx >= 0)
10123 /* put string of option value in NameBuff */
10124 option_value2string(&options[expand_option_idx], expand_option_flags);
10125 var = NameBuff;
10127 else if (var == NULL)
10128 var = (char_u *)"";
10130 /* A backslash is required before some characters. This is the reverse of
10131 * what happens in do_set(). */
10132 buf = vim_strsave_escaped(var, escape_chars);
10134 if (buf == NULL)
10136 vim_free(*file);
10137 *file = NULL;
10138 return FAIL;
10141 #ifdef BACKSLASH_IN_FILENAME
10142 /* For MS-Windows et al. we don't double backslashes at the start and
10143 * before a file name character. */
10144 for (var = buf; *var != NUL; mb_ptr_adv(var))
10145 if (var[0] == '\\' && var[1] == '\\'
10146 && expand_option_idx >= 0
10147 && (options[expand_option_idx].flags & P_EXPAND)
10148 && vim_isfilec(var[2])
10149 && (var[2] != '\\' || (var == buf && var[4] != '\\')))
10150 mch_memmove(var, var + 1, STRLEN(var));
10151 #endif
10153 *file[0] = buf;
10154 *num_file = 1;
10155 return OK;
10157 #endif
10160 * Get the value for the numeric or string option *opp in a nice format into
10161 * NameBuff[]. Must not be called with a hidden option!
10163 static void
10164 option_value2string(opp, opt_flags)
10165 struct vimoption *opp;
10166 int opt_flags; /* OPT_GLOBAL and/or OPT_LOCAL */
10168 char_u *varp;
10170 varp = get_varp_scope(opp, opt_flags);
10172 if (opp->flags & P_NUM)
10174 long wc = 0;
10176 if (wc_use_keyname(varp, &wc))
10177 STRCPY(NameBuff, get_special_key_name((int)wc, 0));
10178 else if (wc != 0)
10179 STRCPY(NameBuff, transchar((int)wc));
10180 else
10181 sprintf((char *)NameBuff, "%ld", *(long *)varp);
10183 else /* P_STRING */
10185 varp = *(char_u **)(varp);
10186 if (varp == NULL) /* just in case */
10187 NameBuff[0] = NUL;
10188 #ifdef FEAT_CRYPT
10189 /* don't show the actual value of 'key', only that it's set */
10190 else if (opp->var == (char_u *)&p_key && *varp)
10191 STRCPY(NameBuff, "*****");
10192 #endif
10193 else if (opp->flags & P_EXPAND)
10194 home_replace(NULL, varp, NameBuff, MAXPATHL, FALSE);
10195 /* Translate 'pastetoggle' into special key names */
10196 else if ((char_u **)opp->var == &p_pt)
10197 str2specialbuf(p_pt, NameBuff, MAXPATHL);
10198 else
10199 vim_strncpy(NameBuff, varp, MAXPATHL - 1);
10204 * Return TRUE if "varp" points to 'wildchar' or 'wildcharm' and it can be
10205 * printed as a keyname.
10206 * "*wcp" is set to the value of the option if it's 'wildchar' or 'wildcharm'.
10208 static int
10209 wc_use_keyname(varp, wcp)
10210 char_u *varp;
10211 long *wcp;
10213 if (((long *)varp == &p_wc) || ((long *)varp == &p_wcm))
10215 *wcp = *(long *)varp;
10216 if (IS_SPECIAL(*wcp) || find_special_key_in_table((int)*wcp) >= 0)
10217 return TRUE;
10219 return FALSE;
10222 #ifdef FEAT_LANGMAP
10224 * Any character has an equivalent character. This is used for keyboards that
10225 * have a special language mode that sends characters above 128 (although
10226 * other characters can be translated too).
10230 * char_u langmap_mapchar[256];
10231 * Normally maps each of the 128 upper chars to an <128 ascii char; used to
10232 * "translate" native lang chars in normal mode or some cases of
10233 * insert mode without having to tediously switch lang mode back&forth.
10236 static void
10237 langmap_init()
10239 int i;
10241 for (i = 0; i < 256; i++) /* we init with a-one-to one map */
10242 langmap_mapchar[i] = i;
10246 * Called when langmap option is set; the language map can be
10247 * changed at any time!
10249 static void
10250 langmap_set()
10252 char_u *p;
10253 char_u *p2;
10254 int from, to;
10256 langmap_init(); /* back to one-to-one map first */
10258 for (p = p_langmap; p[0] != NUL; )
10260 for (p2 = p; p2[0] != NUL && p2[0] != ',' && p2[0] != ';';
10261 mb_ptr_adv(p2))
10263 if (p2[0] == '\\' && p2[1] != NUL)
10264 ++p2;
10266 if (p2[0] == ';')
10267 ++p2; /* abcd;ABCD form, p2 points to A */
10268 else
10269 p2 = NULL; /* aAbBcCdD form, p2 is NULL */
10270 while (p[0])
10272 if (p[0] == '\\' && p[1] != NUL)
10273 ++p;
10274 #ifdef FEAT_MBYTE
10275 from = (*mb_ptr2char)(p);
10276 #else
10277 from = p[0];
10278 #endif
10279 if (p2 == NULL)
10281 mb_ptr_adv(p);
10282 if (p[0] == '\\')
10283 ++p;
10284 #ifdef FEAT_MBYTE
10285 to = (*mb_ptr2char)(p);
10286 #else
10287 to = p[0];
10288 #endif
10290 else
10292 if (p2[0] == '\\')
10293 ++p2;
10294 #ifdef FEAT_MBYTE
10295 to = (*mb_ptr2char)(p2);
10296 #else
10297 to = p2[0];
10298 #endif
10300 if (to == NUL)
10302 EMSG2(_("E357: 'langmap': Matching character missing for %s"),
10303 transchar(from));
10304 return;
10306 langmap_mapchar[from & 255] = to;
10308 /* Advance to next pair */
10309 mb_ptr_adv(p);
10310 if (p2 == NULL)
10312 if (p[0] == ',')
10314 ++p;
10315 break;
10318 else
10320 mb_ptr_adv(p2);
10321 if (*p == ';')
10323 p = p2;
10324 if (p[0] != NUL)
10326 if (p[0] != ',')
10328 EMSG2(_("E358: 'langmap': Extra characters after semicolon: %s"), p);
10329 return;
10331 ++p;
10333 break;
10339 #endif
10342 * Return TRUE if format option 'x' is in effect.
10343 * Take care of no formatting when 'paste' is set.
10346 has_format_option(x)
10347 int x;
10349 if (p_paste)
10350 return FALSE;
10351 return (vim_strchr(curbuf->b_p_fo, x) != NULL);
10355 * Return TRUE if "x" is present in 'shortmess' option, or
10356 * 'shortmess' contains 'a' and "x" is present in SHM_A.
10359 shortmess(x)
10360 int x;
10362 return ( vim_strchr(p_shm, x) != NULL
10363 || (vim_strchr(p_shm, 'a') != NULL
10364 && vim_strchr((char_u *)SHM_A, x) != NULL));
10368 * paste_option_changed() - Called after p_paste was set or reset.
10370 static void
10371 paste_option_changed()
10373 static int old_p_paste = FALSE;
10374 static int save_sm = 0;
10375 #ifdef FEAT_CMDL_INFO
10376 static int save_ru = 0;
10377 #endif
10378 #ifdef FEAT_RIGHTLEFT
10379 static int save_ri = 0;
10380 static int save_hkmap = 0;
10381 #endif
10382 buf_T *buf;
10384 if (p_paste)
10387 * Paste switched from off to on.
10388 * Save the current values, so they can be restored later.
10390 if (!old_p_paste)
10392 /* save options for each buffer */
10393 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10395 buf->b_p_tw_nopaste = buf->b_p_tw;
10396 buf->b_p_wm_nopaste = buf->b_p_wm;
10397 buf->b_p_sts_nopaste = buf->b_p_sts;
10398 buf->b_p_ai_nopaste = buf->b_p_ai;
10401 /* save global options */
10402 save_sm = p_sm;
10403 #ifdef FEAT_CMDL_INFO
10404 save_ru = p_ru;
10405 #endif
10406 #ifdef FEAT_RIGHTLEFT
10407 save_ri = p_ri;
10408 save_hkmap = p_hkmap;
10409 #endif
10410 /* save global values for local buffer options */
10411 p_tw_nopaste = p_tw;
10412 p_wm_nopaste = p_wm;
10413 p_sts_nopaste = p_sts;
10414 p_ai_nopaste = p_ai;
10418 * Always set the option values, also when 'paste' is set when it is
10419 * already on.
10421 /* set options for each buffer */
10422 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10424 buf->b_p_tw = 0; /* textwidth is 0 */
10425 buf->b_p_wm = 0; /* wrapmargin is 0 */
10426 buf->b_p_sts = 0; /* softtabstop is 0 */
10427 buf->b_p_ai = 0; /* no auto-indent */
10430 /* set global options */
10431 p_sm = 0; /* no showmatch */
10432 #ifdef FEAT_CMDL_INFO
10433 # ifdef FEAT_WINDOWS
10434 if (p_ru)
10435 status_redraw_all(); /* redraw to remove the ruler */
10436 # endif
10437 p_ru = 0; /* no ruler */
10438 #endif
10439 #ifdef FEAT_RIGHTLEFT
10440 p_ri = 0; /* no reverse insert */
10441 p_hkmap = 0; /* no Hebrew keyboard */
10442 #endif
10443 /* set global values for local buffer options */
10444 p_tw = 0;
10445 p_wm = 0;
10446 p_sts = 0;
10447 p_ai = 0;
10451 * Paste switched from on to off: Restore saved values.
10453 else if (old_p_paste)
10455 /* restore options for each buffer */
10456 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10458 buf->b_p_tw = buf->b_p_tw_nopaste;
10459 buf->b_p_wm = buf->b_p_wm_nopaste;
10460 buf->b_p_sts = buf->b_p_sts_nopaste;
10461 buf->b_p_ai = buf->b_p_ai_nopaste;
10464 /* restore global options */
10465 p_sm = save_sm;
10466 #ifdef FEAT_CMDL_INFO
10467 # ifdef FEAT_WINDOWS
10468 if (p_ru != save_ru)
10469 status_redraw_all(); /* redraw to draw the ruler */
10470 # endif
10471 p_ru = save_ru;
10472 #endif
10473 #ifdef FEAT_RIGHTLEFT
10474 p_ri = save_ri;
10475 p_hkmap = save_hkmap;
10476 #endif
10477 /* set global values for local buffer options */
10478 p_tw = p_tw_nopaste;
10479 p_wm = p_wm_nopaste;
10480 p_sts = p_sts_nopaste;
10481 p_ai = p_ai_nopaste;
10484 old_p_paste = p_paste;
10488 * vimrc_found() - Called when a ".vimrc" or "VIMINIT" has been found.
10490 * Reset 'compatible' and set the values for options that didn't get set yet
10491 * to the Vim defaults.
10492 * Don't do this if the 'compatible' option has been set or reset before.
10493 * When "fname" is not NULL, use it to set $"envname" when it wasn't set yet.
10495 void
10496 vimrc_found(fname, envname)
10497 char_u *fname;
10498 char_u *envname;
10500 int opt_idx;
10501 int dofree = FALSE;
10502 char_u *p;
10504 if (!option_was_set((char_u *)"cp"))
10506 p_cp = FALSE;
10507 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
10508 if (!(options[opt_idx].flags & (P_WAS_SET|P_VI_DEF)))
10509 set_option_default(opt_idx, OPT_FREE, FALSE);
10510 didset_options();
10513 if (fname != NULL)
10515 p = vim_getenv(envname, &dofree);
10516 if (p == NULL)
10518 /* Set $MYVIMRC to the first vimrc file found. */
10519 p = FullName_save(fname, FALSE);
10520 if (p != NULL)
10522 vim_setenv(envname, p);
10523 vim_free(p);
10526 else if (dofree)
10527 vim_free(p);
10532 * Set 'compatible' on or off. Called for "-C" and "-N" command line arg.
10534 void
10535 change_compatible(on)
10536 int on;
10538 int opt_idx;
10540 if (p_cp != on)
10542 p_cp = on;
10543 compatible_set();
10545 opt_idx = findoption((char_u *)"cp");
10546 if (opt_idx >= 0)
10547 options[opt_idx].flags |= P_WAS_SET;
10551 * Return TRUE when option "name" has been set.
10554 option_was_set(name)
10555 char_u *name;
10557 int idx;
10559 idx = findoption(name);
10560 if (idx < 0) /* unknown option */
10561 return FALSE;
10562 if (options[idx].flags & P_WAS_SET)
10563 return TRUE;
10564 return FALSE;
10568 * compatible_set() - Called when 'compatible' has been set or unset.
10570 * When 'compatible' set: Set all relevant options (those that have the P_VIM)
10571 * flag) to a Vi compatible value.
10572 * When 'compatible' is unset: Set all options that have a different default
10573 * for Vim (without the P_VI_DEF flag) to that default.
10575 static void
10576 compatible_set()
10578 int opt_idx;
10580 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
10581 if ( ((options[opt_idx].flags & P_VIM) && p_cp)
10582 || (!(options[opt_idx].flags & P_VI_DEF) && !p_cp))
10583 set_option_default(opt_idx, OPT_FREE, p_cp);
10584 didset_options();
10587 #ifdef FEAT_LINEBREAK
10589 # if defined(__BORLANDC__) && (__BORLANDC__ < 0x500)
10590 /* Borland C++ screws up loop optimisation here (negri) */
10591 #pragma option -O-l
10592 # endif
10595 * fill_breakat_flags() -- called when 'breakat' changes value.
10597 static void
10598 fill_breakat_flags()
10600 char_u *p;
10601 int i;
10603 for (i = 0; i < 256; i++)
10604 breakat_flags[i] = FALSE;
10606 if (p_breakat != NULL)
10607 for (p = p_breakat; *p; p++)
10608 breakat_flags[*p] = TRUE;
10611 # if defined(__BORLANDC__) && (__BORLANDC__ < 0x500)
10612 #pragma option -O.l
10613 # endif
10615 #endif
10618 * Check an option that can be a range of string values.
10620 * Return OK for correct value, FAIL otherwise.
10621 * Empty is always OK.
10623 static int
10624 check_opt_strings(val, values, list)
10625 char_u *val;
10626 char **values;
10627 int list; /* when TRUE: accept a list of values */
10629 return opt_strings_flags(val, values, NULL, list);
10633 * Handle an option that can be a range of string values.
10634 * Set a flag in "*flagp" for each string present.
10636 * Return OK for correct value, FAIL otherwise.
10637 * Empty is always OK.
10639 static int
10640 opt_strings_flags(val, values, flagp, list)
10641 char_u *val; /* new value */
10642 char **values; /* array of valid string values */
10643 unsigned *flagp;
10644 int list; /* when TRUE: accept a list of values */
10646 int i;
10647 int len;
10648 unsigned new_flags = 0;
10650 while (*val)
10652 for (i = 0; ; ++i)
10654 if (values[i] == NULL) /* val not found in values[] */
10655 return FAIL;
10657 len = (int)STRLEN(values[i]);
10658 if (STRNCMP(values[i], val, len) == 0
10659 && ((list && val[len] == ',') || val[len] == NUL))
10661 val += len + (val[len] == ',');
10662 new_flags |= (1 << i);
10663 break; /* check next item in val list */
10667 if (flagp != NULL)
10668 *flagp = new_flags;
10670 return OK;
10674 * Read the 'wildmode' option, fill wim_flags[].
10676 static int
10677 check_opt_wim()
10679 char_u new_wim_flags[4];
10680 char_u *p;
10681 int i;
10682 int idx = 0;
10684 for (i = 0; i < 4; ++i)
10685 new_wim_flags[i] = 0;
10687 for (p = p_wim; *p; ++p)
10689 for (i = 0; ASCII_ISALPHA(p[i]); ++i)
10691 if (p[i] != NUL && p[i] != ',' && p[i] != ':')
10692 return FAIL;
10693 if (i == 7 && STRNCMP(p, "longest", 7) == 0)
10694 new_wim_flags[idx] |= WIM_LONGEST;
10695 else if (i == 4 && STRNCMP(p, "full", 4) == 0)
10696 new_wim_flags[idx] |= WIM_FULL;
10697 else if (i == 4 && STRNCMP(p, "list", 4) == 0)
10698 new_wim_flags[idx] |= WIM_LIST;
10699 else
10700 return FAIL;
10701 p += i;
10702 if (*p == NUL)
10703 break;
10704 if (*p == ',')
10706 if (idx == 3)
10707 return FAIL;
10708 ++idx;
10712 /* fill remaining entries with last flag */
10713 while (idx < 3)
10715 new_wim_flags[idx + 1] = new_wim_flags[idx];
10716 ++idx;
10719 /* only when there are no errors, wim_flags[] is changed */
10720 for (i = 0; i < 4; ++i)
10721 wim_flags[i] = new_wim_flags[i];
10722 return OK;
10726 * Check if backspacing over something is allowed.
10729 can_bs(what)
10730 int what; /* BS_INDENT, BS_EOL or BS_START */
10732 switch (*p_bs)
10734 case '2': return TRUE;
10735 case '1': return (what != BS_START);
10736 case '0': return FALSE;
10738 return vim_strchr(p_bs, what) != NULL;
10742 * Save the current values of 'fileformat' and 'fileencoding', so that we know
10743 * the file must be considered changed when the value is different.
10745 void
10746 save_file_ff(buf)
10747 buf_T *buf;
10749 buf->b_start_ffc = *buf->b_p_ff;
10750 buf->b_start_eol = buf->b_p_eol;
10751 #ifdef FEAT_MBYTE
10752 buf->b_start_bomb = buf->b_p_bomb;
10754 /* Only use free/alloc when necessary, they take time. */
10755 if (buf->b_start_fenc == NULL
10756 || STRCMP(buf->b_start_fenc, buf->b_p_fenc) != 0)
10758 vim_free(buf->b_start_fenc);
10759 buf->b_start_fenc = vim_strsave(buf->b_p_fenc);
10761 #endif
10765 * Return TRUE if 'fileformat' and/or 'fileencoding' has a different value
10766 * from when editing started (save_file_ff() called).
10767 * Also when 'endofline' was changed and 'binary' is set, or when 'bomb' was
10768 * changed and 'binary' is not set.
10769 * Don't consider a new, empty buffer to be changed.
10772 file_ff_differs(buf)
10773 buf_T *buf;
10775 /* In a buffer that was never loaded the options are not valid. */
10776 if (buf->b_flags & BF_NEVERLOADED)
10777 return FALSE;
10778 if ((buf->b_flags & BF_NEW)
10779 && buf->b_ml.ml_line_count == 1
10780 && *ml_get_buf(buf, (linenr_T)1, FALSE) == NUL)
10781 return FALSE;
10782 if (buf->b_start_ffc != *buf->b_p_ff)
10783 return TRUE;
10784 if (buf->b_p_bin && buf->b_start_eol != buf->b_p_eol)
10785 return TRUE;
10786 #ifdef FEAT_MBYTE
10787 if (!buf->b_p_bin && buf->b_start_bomb != buf->b_p_bomb)
10788 return TRUE;
10789 if (buf->b_start_fenc == NULL)
10790 return (*buf->b_p_fenc != NUL);
10791 return (STRCMP(buf->b_start_fenc, buf->b_p_fenc) != 0);
10792 #else
10793 return FALSE;
10794 #endif
10798 * return OK if "p" is a valid fileformat name, FAIL otherwise.
10801 check_ff_value(p)
10802 char_u *p;
10804 return check_opt_strings(p, p_ff_values, FALSE);
10807 #ifdef FEAT_FULLSCREEN
10809 * Read the 'fuoptions' option, set fuoptions_flags and
10810 * fuoptions_bgcolor.
10812 static int
10813 check_fuoptions(p_fuoptions, flags, bgcolor)
10814 char_u *p_fuoptions; /* fuoptions string */
10815 unsigned *flags; /* fuoptions flags */
10816 int *bgcolor; /* background highlight group id */
10818 unsigned new_fuoptions_flags;
10819 int new_fuoptions_bgcolor;
10820 char_u *p;
10821 char_u hg_term; /* character terminating
10822 highlight group string in
10823 'background' option' */
10824 int i,j,k;
10826 new_fuoptions_flags = 0;
10827 new_fuoptions_bgcolor = 0xFF000000;
10829 for (p = p_fuoptions; *p; ++p)
10831 for (i = 0; ASCII_ISALPHA(p[i]); ++i)
10833 if (p[i] != NUL && p[i] != ',' && p[i] != ':')
10834 return FAIL;
10835 if (i == 10 && STRNCMP(p, "background", 10) == 0)
10837 if (p[i] != ':') return FAIL;
10838 i++;
10839 if (p[i] == NUL) return FAIL;
10840 if (p[i] == '#')
10842 /* explicit color (#aarrggbb) */
10843 i++;
10844 for (j = i; j < i+8 && vim_isxdigit(p[j]); ++j)
10846 if (j < i+8)
10847 return FAIL; /* less than 8 digits */
10848 if (p[j] != NUL && p[j] != ',')
10849 return FAIL;
10850 new_fuoptions_bgcolor = 0;
10851 for (k = 0; k < 8; k++)
10852 new_fuoptions_bgcolor = new_fuoptions_bgcolor * 16 +
10853 hex2nr(p[i+k]);
10854 i = j;
10855 /* mark bgcolor as an explicit argb color */
10856 new_fuoptions_flags &= ~FUOPT_BGCOLOR_HLGROUP;
10858 else
10860 /* highlight group name */
10861 for (j = i; ASCII_ISALPHA(p[j]); ++j)
10863 if (p[j] != NUL && p[j] != ',')
10864 return FAIL;
10865 hg_term = p[j];
10866 p[j] = NUL; /* temporarily terminate string */
10867 new_fuoptions_bgcolor = syn_name2id((char_u*)(p+i));
10868 p[j] = hg_term; /* restore string */
10869 if (! new_fuoptions_bgcolor)
10870 return FAIL;
10871 i = j;
10872 /* mark bgcolor as highlight group id */
10873 new_fuoptions_flags |= FUOPT_BGCOLOR_HLGROUP;
10876 else if (i == 7 && STRNCMP(p, "maxhorz", 7) == 0)
10877 new_fuoptions_flags |= FUOPT_MAXHORZ;
10878 else if (i == 7 && STRNCMP(p, "maxvert", 7) == 0)
10879 new_fuoptions_flags |= FUOPT_MAXVERT;
10880 else
10881 return FAIL;
10882 p += i;
10883 if (*p == NUL)
10884 break;
10885 if (*p == ':')
10886 return FAIL;
10889 *flags = new_fuoptions_flags;
10890 *bgcolor = new_fuoptions_bgcolor;
10891 return OK;
10893 #endif