Merge branch 'vim'
[MacVim.git] / src / option.c
blob15c8f3dbe75b349cb65c68ddab1dff631f371526
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 #ifdef FEAT_GUI_MACVIM
142 #define PV_MMTA OPT_BUF(BV_MMTA)
143 #endif
144 #define PV_NF OPT_BUF(BV_NF)
145 #ifdef FEAT_OSFILETYPE
146 # define PV_OFT OPT_BUF(BV_OFT)
147 #endif
148 #ifdef FEAT_COMPL_FUNC
149 # define PV_OFU OPT_BUF(BV_OFU)
150 #endif
151 #define PV_PATH OPT_BOTH(OPT_BUF(BV_PATH))
152 #define PV_PI OPT_BUF(BV_PI)
153 #ifdef FEAT_TEXTOBJ
154 # define PV_QE OPT_BUF(BV_QE)
155 #endif
156 #define PV_RO OPT_BUF(BV_RO)
157 #ifdef FEAT_SMARTINDENT
158 # define PV_SI OPT_BUF(BV_SI)
159 #endif
160 #ifndef SHORT_FNAME
161 # define PV_SN OPT_BUF(BV_SN)
162 #endif
163 #ifdef FEAT_SYN_HL
164 # define PV_SMC OPT_BUF(BV_SMC)
165 # define PV_SYN OPT_BUF(BV_SYN)
166 #endif
167 #ifdef FEAT_SPELL
168 # define PV_SPC OPT_BUF(BV_SPC)
169 # define PV_SPF OPT_BUF(BV_SPF)
170 # define PV_SPL OPT_BUF(BV_SPL)
171 #endif
172 #define PV_STS OPT_BUF(BV_STS)
173 #ifdef FEAT_SEARCHPATH
174 # define PV_SUA OPT_BUF(BV_SUA)
175 #endif
176 #define PV_SW OPT_BUF(BV_SW)
177 #define PV_SWF OPT_BUF(BV_SWF)
178 #define PV_TAGS OPT_BOTH(OPT_BUF(BV_TAGS))
179 #define PV_TS OPT_BUF(BV_TS)
180 #define PV_TW OPT_BUF(BV_TW)
181 #define PV_TX OPT_BUF(BV_TX)
182 #define PV_WM OPT_BUF(BV_WM)
185 * Definition of the PV_ values for window-local options.
186 * The WV_ values are defined in option.h.
188 #define PV_LIST OPT_WIN(WV_LIST)
189 #ifdef FEAT_ARABIC
190 # define PV_ARAB OPT_WIN(WV_ARAB)
191 #endif
192 #ifdef FEAT_DIFF
193 # define PV_DIFF OPT_WIN(WV_DIFF)
194 #endif
195 #ifdef FEAT_FOLDING
196 # define PV_FDC OPT_WIN(WV_FDC)
197 # define PV_FEN OPT_WIN(WV_FEN)
198 # define PV_FDI OPT_WIN(WV_FDI)
199 # define PV_FDL OPT_WIN(WV_FDL)
200 # define PV_FDM OPT_WIN(WV_FDM)
201 # define PV_FML OPT_WIN(WV_FML)
202 # define PV_FDN OPT_WIN(WV_FDN)
203 # ifdef FEAT_EVAL
204 # define PV_FDE OPT_WIN(WV_FDE)
205 # define PV_FDT OPT_WIN(WV_FDT)
206 # endif
207 # define PV_FMR OPT_WIN(WV_FMR)
208 #endif
209 #ifdef FEAT_LINEBREAK
210 # define PV_LBR OPT_WIN(WV_LBR)
211 #endif
212 #define PV_NU OPT_WIN(WV_NU)
213 #ifdef FEAT_LINEBREAK
214 # define PV_NUW OPT_WIN(WV_NUW)
215 #endif
216 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
217 # define PV_PVW OPT_WIN(WV_PVW)
218 #endif
219 #ifdef FEAT_RIGHTLEFT
220 # define PV_RL OPT_WIN(WV_RL)
221 # define PV_RLC OPT_WIN(WV_RLC)
222 #endif
223 #ifdef FEAT_SCROLLBIND
224 # define PV_SCBIND OPT_WIN(WV_SCBIND)
225 #endif
226 #define PV_SCROLL OPT_WIN(WV_SCROLL)
227 #ifdef FEAT_SPELL
228 # define PV_SPELL OPT_WIN(WV_SPELL)
229 #endif
230 #ifdef FEAT_SYN_HL
231 # define PV_CUC OPT_WIN(WV_CUC)
232 # define PV_CUL OPT_WIN(WV_CUL)
233 #endif
234 #ifdef FEAT_STL_OPT
235 # define PV_STL OPT_BOTH(OPT_WIN(WV_STL))
236 #endif
237 #ifdef FEAT_WINDOWS
238 # define PV_WFH OPT_WIN(WV_WFH)
239 #endif
240 #ifdef FEAT_VERTSPLIT
241 # define PV_WFW OPT_WIN(WV_WFW)
242 #endif
243 #define PV_WRAP OPT_WIN(WV_WRAP)
246 /* WV_ and BV_ values get typecasted to this for the "indir" field */
247 typedef enum
249 PV_NONE = 0,
250 PV_MAXVAL = 0xffff /* to avoid warnings for value out of range */
251 } idopt_T;
254 * Options local to a window have a value local to a buffer and global to all
255 * buffers. Indicate this by setting "var" to VAR_WIN.
257 #define VAR_WIN ((char_u *)-1)
260 * These are the global values for options which are also local to a buffer.
261 * Only to be used in option.c!
263 static int p_ai;
264 static int p_bin;
265 #ifdef FEAT_MBYTE
266 static int p_bomb;
267 #endif
268 #if defined(FEAT_QUICKFIX)
269 static char_u *p_bh;
270 static char_u *p_bt;
271 #endif
272 static int p_bl;
273 static int p_ci;
274 #ifdef FEAT_CINDENT
275 static int p_cin;
276 static char_u *p_cink;
277 static char_u *p_cino;
278 #endif
279 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
280 static char_u *p_cinw;
281 #endif
282 #ifdef FEAT_COMMENTS
283 static char_u *p_com;
284 #endif
285 #ifdef FEAT_FOLDING
286 static char_u *p_cms;
287 #endif
288 #ifdef FEAT_INS_EXPAND
289 static char_u *p_cpt;
290 #endif
291 #ifdef FEAT_COMPL_FUNC
292 static char_u *p_cfu;
293 static char_u *p_ofu;
294 #endif
295 static int p_eol;
296 static int p_et;
297 #ifdef FEAT_MBYTE
298 static char_u *p_fenc;
299 #endif
300 static char_u *p_ff;
301 static char_u *p_fo;
302 static char_u *p_flp;
303 #ifdef FEAT_AUTOCMD
304 static char_u *p_ft;
305 #endif
306 static long p_iminsert;
307 static long p_imsearch;
308 #if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
309 static char_u *p_inex;
310 #endif
311 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
312 static char_u *p_inde;
313 static char_u *p_indk;
314 #endif
315 #if defined(FEAT_EVAL)
316 static char_u *p_fex;
317 #endif
318 static int p_inf;
319 static char_u *p_isk;
320 #ifdef FEAT_CRYPT
321 static char_u *p_key;
322 #endif
323 #ifdef FEAT_LISP
324 static int p_lisp;
325 #endif
326 static int p_ml;
327 static int p_ma;
328 #ifdef FEAT_GUI_MACVIM
329 static int p_mmta;
330 #endif
331 static int p_mod;
332 static char_u *p_mps;
333 static char_u *p_nf;
334 #ifdef FEAT_OSFILETYPE
335 static char_u *p_oft;
336 #endif
337 static int p_pi;
338 #ifdef FEAT_TEXTOBJ
339 static char_u *p_qe;
340 #endif
341 static int p_ro;
342 #ifdef FEAT_SMARTINDENT
343 static int p_si;
344 #endif
345 #ifndef SHORT_FNAME
346 static int p_sn;
347 #endif
348 static long p_sts;
349 #if defined(FEAT_SEARCHPATH)
350 static char_u *p_sua;
351 #endif
352 static long p_sw;
353 static int p_swf;
354 #ifdef FEAT_SYN_HL
355 static long p_smc;
356 static char_u *p_syn;
357 #endif
358 #ifdef FEAT_SPELL
359 static char_u *p_spc;
360 static char_u *p_spf;
361 static char_u *p_spl;
362 #endif
363 static long p_ts;
364 static long p_tw;
365 static int p_tx;
366 static long p_wm;
367 #ifdef FEAT_KEYMAP
368 static char_u *p_keymap;
369 #endif
371 /* Saved values for when 'bin' is set. */
372 static int p_et_nobin;
373 static int p_ml_nobin;
374 static long p_tw_nobin;
375 static long p_wm_nobin;
377 /* Saved values for when 'paste' is set */
378 static long p_tw_nopaste;
379 static long p_wm_nopaste;
380 static long p_sts_nopaste;
381 static int p_ai_nopaste;
383 struct vimoption
385 char *fullname; /* full option name */
386 char *shortname; /* permissible abbreviation */
387 long_u flags; /* see below */
388 char_u *var; /* global option: pointer to variable;
389 * window-local option: VAR_WIN;
390 * buffer-local option: global value */
391 idopt_T indir; /* global option: PV_NONE;
392 * local option: indirect option index */
393 char_u *def_val[2]; /* default values for variable (vi and vim) */
394 #ifdef FEAT_EVAL
395 scid_T scriptID; /* script in which the option was last set */
396 #endif
399 #define VI_DEFAULT 0 /* def_val[VI_DEFAULT] is Vi default value */
400 #define VIM_DEFAULT 1 /* def_val[VIM_DEFAULT] is Vim default value */
403 * Flags
405 #define P_BOOL 0x01 /* the option is boolean */
406 #define P_NUM 0x02 /* the option is numeric */
407 #define P_STRING 0x04 /* the option is a string */
408 #define P_ALLOCED 0x08 /* the string option is in allocated memory,
409 must use vim_free() when assigning new
410 value. Not set if default is the same. */
411 #define P_EXPAND 0x10 /* environment expansion. NOTE: P_EXPAND can
412 never be used for local or hidden options! */
413 #define P_NODEFAULT 0x40 /* don't set to default value */
414 #define P_DEF_ALLOCED 0x80 /* default value is in allocated memory, must
415 use vim_free() when assigning new value */
416 #define P_WAS_SET 0x100 /* option has been set/reset */
417 #define P_NO_MKRC 0x200 /* don't include in :mkvimrc output */
418 #define P_VI_DEF 0x400 /* Use Vi default for Vim */
419 #define P_VIM 0x800 /* Vim option, reset when 'cp' set */
421 /* when option changed, what to display: */
422 #define P_RSTAT 0x1000 /* redraw status lines */
423 #define P_RWIN 0x2000 /* redraw current window */
424 #define P_RBUF 0x4000 /* redraw current buffer */
425 #define P_RALL 0x6000 /* redraw all windows */
426 #define P_RCLR 0x7000 /* clear and redraw all */
428 #define P_COMMA 0x8000 /* comma separated list */
429 #define P_NODUP 0x10000L/* don't allow duplicate strings */
430 #define P_FLAGLIST 0x20000L/* list of single-char flags */
432 #define P_SECURE 0x40000L/* cannot change in modeline or secure mode */
433 #define P_GETTEXT 0x80000L/* expand default value with _() */
434 #define P_NOGLOB 0x100000L/* do not use local value for global vimrc */
435 #define P_NFNAME 0x200000L/* only normal file name chars allowed */
436 #define P_INSECURE 0x400000L/* option was set from a modeline */
437 #define P_PRI_MKRC 0x800000L/* priority for :mkvimrc (setting option has
438 side effects) */
440 #define ISK_LATIN1 (char_u *)"@,48-57,_,192-255"
442 /* 'isprint' for latin1 is also used for MS-Windows cp1252, where 0x80 is used
443 * for the currency sign. */
444 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
445 # define ISP_LATIN1 (char_u *)"@,~-255"
446 #else
447 # define ISP_LATIN1 (char_u *)"@,161-255"
448 #endif
450 /* The 16 bit MS-DOS version is low on space, make the string as short as
451 * possible when compiling with few features. */
452 #if defined(FEAT_DIFF) || defined(FEAT_FOLDING) || defined(FEAT_SPELL) \
453 || defined(FEAT_VERTSPLIT) || defined(FEAT_CLIPBOARD) \
454 || defined(FEAT_INS_EXPAND) || defined(FEAT_SYN_HL)
455 # 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"
456 #else
457 # 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"
458 #endif
461 * options[] is initialized here.
462 * The order of the options MUST be alphabetic for ":set all" and findoption().
463 * All option names MUST start with a lowercase letter (for findoption()).
464 * Exception: "t_" options are at the end.
465 * The options with a NULL variable are 'hidden': a set command for them is
466 * ignored and they are not printed.
468 static struct vimoption
469 #ifdef FEAT_GUI_W16
470 _far
471 #endif
472 options[] =
474 {"aleph", "al", P_NUM|P_VI_DEF,
475 #ifdef FEAT_RIGHTLEFT
476 (char_u *)&p_aleph, PV_NONE,
477 #else
478 (char_u *)NULL, PV_NONE,
479 #endif
481 #if (defined(MSDOS) || defined(WIN3264) || defined(OS2)) && !defined(FEAT_GUI_W32)
482 (char_u *)128L,
483 #else
484 (char_u *)224L,
485 #endif
486 (char_u *)0L}},
487 {"antialias", "anti", P_BOOL|P_VI_DEF|P_VIM|P_RCLR,
488 #ifdef FEAT_ANTIALIAS
489 (char_u *)&p_antialias, PV_NONE,
490 #else
491 (char_u *)NULL, PV_NONE,
492 #endif
493 #if FEAT_GUI_MACVIM
494 {(char_u *)TRUE, (char_u *)0L}},
495 #else
496 {(char_u *)FALSE, (char_u *)0L}},
497 #endif
498 {"arabic", "arab", P_BOOL|P_VI_DEF|P_VIM,
499 #ifdef FEAT_ARABIC
500 (char_u *)VAR_WIN, PV_ARAB,
501 #else
502 (char_u *)NULL, PV_NONE,
503 #endif
504 {(char_u *)FALSE, (char_u *)0L}},
505 {"arabicshape", "arshape", P_BOOL|P_VI_DEF|P_VIM|P_RCLR,
506 #ifdef FEAT_ARABIC
507 (char_u *)&p_arshape, PV_NONE,
508 #else
509 (char_u *)NULL, PV_NONE,
510 #endif
511 {(char_u *)TRUE, (char_u *)0L}},
512 {"allowrevins", "ari", P_BOOL|P_VI_DEF|P_VIM,
513 #ifdef FEAT_RIGHTLEFT
514 (char_u *)&p_ari, PV_NONE,
515 #else
516 (char_u *)NULL, PV_NONE,
517 #endif
518 {(char_u *)FALSE, (char_u *)0L}},
519 {"altkeymap", "akm", P_BOOL|P_VI_DEF,
520 #ifdef FEAT_FKMAP
521 (char_u *)&p_altkeymap, PV_NONE,
522 #else
523 (char_u *)NULL, PV_NONE,
524 #endif
525 {(char_u *)FALSE, (char_u *)0L}},
526 {"ambiwidth", "ambw", P_STRING|P_VI_DEF|P_RCLR,
527 #if defined(FEAT_MBYTE)
528 (char_u *)&p_ambw, PV_NONE,
529 {(char_u *)"single", (char_u *)0L}
530 #else
531 (char_u *)NULL, PV_NONE,
532 {(char_u *)0L, (char_u *)0L}
533 #endif
535 #ifdef FEAT_AUTOCHDIR
536 {"autochdir", "acd", P_BOOL|P_VI_DEF,
537 (char_u *)&p_acd, PV_NONE,
538 {(char_u *)FALSE, (char_u *)0L}},
539 #endif
540 {"autoindent", "ai", P_BOOL|P_VI_DEF,
541 (char_u *)&p_ai, PV_AI,
542 {(char_u *)FALSE, (char_u *)0L}},
543 {"autoprint", "ap", P_BOOL|P_VI_DEF,
544 (char_u *)NULL, PV_NONE,
545 {(char_u *)FALSE, (char_u *)0L}},
546 {"autoread", "ar", P_BOOL|P_VI_DEF,
547 (char_u *)&p_ar, PV_AR,
548 {(char_u *)FALSE, (char_u *)0L}},
549 {"autowrite", "aw", P_BOOL|P_VI_DEF,
550 (char_u *)&p_aw, PV_NONE,
551 {(char_u *)FALSE, (char_u *)0L}},
552 {"autowriteall","awa", P_BOOL|P_VI_DEF,
553 (char_u *)&p_awa, PV_NONE,
554 {(char_u *)FALSE, (char_u *)0L}},
555 {"background", "bg", P_STRING|P_VI_DEF|P_RCLR,
556 (char_u *)&p_bg, PV_NONE,
558 #if (defined(MSDOS) || defined(OS2) || defined(WIN3264)) && !defined(FEAT_GUI)
559 (char_u *)"dark",
560 #else
561 (char_u *)"light",
562 #endif
563 (char_u *)0L}},
564 {"backspace", "bs", P_STRING|P_VI_DEF|P_VIM|P_COMMA|P_NODUP,
565 (char_u *)&p_bs, PV_NONE,
566 {(char_u *)"", (char_u *)0L}},
567 {"backup", "bk", P_BOOL|P_VI_DEF|P_VIM,
568 (char_u *)&p_bk, PV_NONE,
569 {(char_u *)FALSE, (char_u *)0L}},
570 {"backupcopy", "bkc", P_STRING|P_VIM|P_COMMA|P_NODUP,
571 (char_u *)&p_bkc, PV_NONE,
572 #ifdef UNIX
573 {(char_u *)"yes", (char_u *)"auto"}
574 #else
575 {(char_u *)"auto", (char_u *)"auto"}
576 #endif
578 {"backupdir", "bdir", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP|P_SECURE,
579 (char_u *)&p_bdir, PV_NONE,
580 {(char_u *)DFLT_BDIR, (char_u *)0L}},
581 {"backupext", "bex", P_STRING|P_VI_DEF|P_NFNAME,
582 (char_u *)&p_bex, PV_NONE,
584 #ifdef VMS
585 (char_u *)"_",
586 #else
587 (char_u *)"~",
588 #endif
589 (char_u *)0L}},
590 {"backupskip", "bsk", P_STRING|P_VI_DEF|P_COMMA,
591 #ifdef FEAT_WILDIGN
592 (char_u *)&p_bsk, PV_NONE,
593 {(char_u *)"", (char_u *)0L}
594 #else
595 (char_u *)NULL, PV_NONE,
596 {(char_u *)0L, (char_u *)0L}
597 #endif
599 #ifdef FEAT_BEVAL
600 {"balloondelay","bdlay",P_NUM|P_VI_DEF,
601 (char_u *)&p_bdlay, PV_NONE,
602 {(char_u *)600L, (char_u *)0L}},
603 {"ballooneval", "beval",P_BOOL|P_VI_DEF|P_NO_MKRC,
604 (char_u *)&p_beval, PV_NONE,
605 {(char_u *)FALSE, (char_u *)0L}},
606 # ifdef FEAT_EVAL
607 {"balloonexpr", "bexpr", P_STRING|P_ALLOCED|P_VI_DEF|P_VIM,
608 (char_u *)&p_bexpr, PV_BEXPR,
609 {(char_u *)"", (char_u *)0L}},
610 # endif
611 #endif
612 {"beautify", "bf", P_BOOL|P_VI_DEF,
613 (char_u *)NULL, PV_NONE,
614 {(char_u *)FALSE, (char_u *)0L}},
615 {"binary", "bin", P_BOOL|P_VI_DEF|P_RSTAT,
616 (char_u *)&p_bin, PV_BIN,
617 {(char_u *)FALSE, (char_u *)0L}},
618 {"bioskey", "biosk",P_BOOL|P_VI_DEF,
619 #ifdef MSDOS
620 (char_u *)&p_biosk, PV_NONE,
621 #else
622 (char_u *)NULL, PV_NONE,
623 #endif
624 {(char_u *)TRUE, (char_u *)0L}},
625 {"bomb", NULL, P_BOOL|P_NO_MKRC|P_VI_DEF|P_RSTAT,
626 #ifdef FEAT_MBYTE
627 (char_u *)&p_bomb, PV_BOMB,
628 #else
629 (char_u *)NULL, PV_NONE,
630 #endif
631 {(char_u *)FALSE, (char_u *)0L}},
632 {"breakat", "brk", P_STRING|P_VI_DEF|P_RALL|P_FLAGLIST,
633 #ifdef FEAT_LINEBREAK
634 (char_u *)&p_breakat, PV_NONE,
635 {(char_u *)" \t!@*-+;:,./?", (char_u *)0L}
636 #else
637 (char_u *)NULL, PV_NONE,
638 {(char_u *)0L, (char_u *)0L}
639 #endif
641 {"browsedir", "bsdir",P_STRING|P_VI_DEF,
642 #ifdef FEAT_BROWSE
643 (char_u *)&p_bsdir, PV_NONE,
644 {(char_u *)"last", (char_u *)0L}
645 #else
646 (char_u *)NULL, PV_NONE,
647 {(char_u *)0L, (char_u *)0L}
648 #endif
650 {"bufhidden", "bh", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB,
651 #if defined(FEAT_QUICKFIX)
652 (char_u *)&p_bh, PV_BH,
653 {(char_u *)"", (char_u *)0L}
654 #else
655 (char_u *)NULL, PV_NONE,
656 {(char_u *)0L, (char_u *)0L}
657 #endif
659 {"buflisted", "bl", P_BOOL|P_VI_DEF|P_NOGLOB,
660 (char_u *)&p_bl, PV_BL,
661 {(char_u *)1L, (char_u *)0L}
663 {"buftype", "bt", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB,
664 #if defined(FEAT_QUICKFIX)
665 (char_u *)&p_bt, PV_BT,
666 {(char_u *)"", (char_u *)0L}
667 #else
668 (char_u *)NULL, PV_NONE,
669 {(char_u *)0L, (char_u *)0L}
670 #endif
672 {"casemap", "cmp", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
673 #ifdef FEAT_MBYTE
674 (char_u *)&p_cmp, PV_NONE,
675 {(char_u *)"internal,keepascii", (char_u *)0L}
676 #else
677 (char_u *)NULL, PV_NONE,
678 {(char_u *)0L, (char_u *)0L}
679 #endif
681 {"cdpath", "cd", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
682 #ifdef FEAT_SEARCHPATH
683 (char_u *)&p_cdpath, PV_NONE,
684 {(char_u *)",,", (char_u *)0L}
685 #else
686 (char_u *)NULL, PV_NONE,
687 {(char_u *)0L, (char_u *)0L}
688 #endif
690 {"cedit", NULL, P_STRING,
691 #ifdef FEAT_CMDWIN
692 (char_u *)&p_cedit, PV_NONE,
693 {(char_u *)"", (char_u *)CTRL_F_STR}
694 #else
695 (char_u *)NULL, PV_NONE,
696 {(char_u *)0L, (char_u *)0L}
697 #endif
699 {"charconvert", "ccv", P_STRING|P_VI_DEF|P_SECURE,
700 #if defined(FEAT_MBYTE) && defined(FEAT_EVAL)
701 (char_u *)&p_ccv, PV_NONE,
702 {(char_u *)"", (char_u *)0L}
703 #else
704 (char_u *)NULL, PV_NONE,
705 {(char_u *)0L, (char_u *)0L}
706 #endif
708 {"cindent", "cin", P_BOOL|P_VI_DEF|P_VIM,
709 #ifdef FEAT_CINDENT
710 (char_u *)&p_cin, PV_CIN,
711 #else
712 (char_u *)NULL, PV_NONE,
713 #endif
714 {(char_u *)FALSE, (char_u *)0L}},
715 {"cinkeys", "cink", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
716 #ifdef FEAT_CINDENT
717 (char_u *)&p_cink, PV_CINK,
718 {(char_u *)"0{,0},0),:,0#,!^F,o,O,e", (char_u *)0L}
719 #else
720 (char_u *)NULL, PV_NONE,
721 {(char_u *)0L, (char_u *)0L}
722 #endif
724 {"cinoptions", "cino", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
725 #ifdef FEAT_CINDENT
726 (char_u *)&p_cino, PV_CINO,
727 #else
728 (char_u *)NULL, PV_NONE,
729 #endif
730 {(char_u *)"", (char_u *)0L}},
731 {"cinwords", "cinw", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
732 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
733 (char_u *)&p_cinw, PV_CINW,
734 {(char_u *)"if,else,while,do,for,switch",
735 (char_u *)0L}
736 #else
737 (char_u *)NULL, PV_NONE,
738 {(char_u *)0L, (char_u *)0L}
739 #endif
741 {"clipboard", "cb", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
742 #ifdef FEAT_CLIPBOARD
743 (char_u *)&p_cb, PV_NONE,
744 # ifdef FEAT_XCLIPBOARD
745 {(char_u *)"autoselect,exclude:cons\\|linux",
746 (char_u *)0L}
747 # else
748 {(char_u *)"", (char_u *)0L}
749 # endif
750 #else
751 (char_u *)NULL, PV_NONE,
752 {(char_u *)"", (char_u *)0L}
753 #endif
755 {"cmdheight", "ch", P_NUM|P_VI_DEF|P_RALL,
756 (char_u *)&p_ch, PV_NONE,
757 {(char_u *)1L, (char_u *)0L}},
758 {"cmdwinheight", "cwh", P_NUM|P_VI_DEF,
759 #ifdef FEAT_CMDWIN
760 (char_u *)&p_cwh, PV_NONE,
761 #else
762 (char_u *)NULL, PV_NONE,
763 #endif
764 {(char_u *)7L, (char_u *)0L}},
765 {"columns", "co", P_NUM|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RCLR,
766 (char_u *)&Columns, PV_NONE,
767 {(char_u *)80L, (char_u *)0L}},
768 {"comments", "com", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
769 #ifdef FEAT_COMMENTS
770 (char_u *)&p_com, PV_COM,
771 {(char_u *)"s1:/*,mb:*,ex:*/,://,b:#,:%,:XCOMM,n:>,fb:-",
772 (char_u *)0L}
773 #else
774 (char_u *)NULL, PV_NONE,
775 {(char_u *)0L, (char_u *)0L}
776 #endif
778 {"commentstring", "cms", P_STRING|P_ALLOCED|P_VI_DEF,
779 #ifdef FEAT_FOLDING
780 (char_u *)&p_cms, PV_CMS,
781 {(char_u *)"/*%s*/", (char_u *)0L}
782 #else
783 (char_u *)NULL, PV_NONE,
784 {(char_u *)0L, (char_u *)0L}
785 #endif
787 /* P_PRI_MKRC isn't needed here, optval_default()
788 * always returns TRUE for 'compatible' */
789 {"compatible", "cp", P_BOOL|P_RALL,
790 (char_u *)&p_cp, PV_NONE,
791 {(char_u *)TRUE, (char_u *)FALSE}},
792 {"complete", "cpt", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
793 #ifdef FEAT_INS_EXPAND
794 (char_u *)&p_cpt, PV_CPT,
795 {(char_u *)".,w,b,u,t,i", (char_u *)0L}
796 #else
797 (char_u *)NULL, PV_NONE,
798 {(char_u *)0L, (char_u *)0L}
799 #endif
801 {"completefunc", "cfu", P_STRING|P_ALLOCED|P_VI_DEF|P_SECURE,
802 #ifdef FEAT_COMPL_FUNC
803 (char_u *)&p_cfu, PV_CFU,
804 {(char_u *)"", (char_u *)0L}
805 #else
806 (char_u *)NULL, PV_NONE,
807 {(char_u *)0L, (char_u *)0L}
808 #endif
810 {"completeopt", "cot", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
811 #ifdef FEAT_INS_EXPAND
812 (char_u *)&p_cot, PV_NONE,
813 {(char_u *)"menu,preview", (char_u *)0L}
814 #else
815 (char_u *)NULL, PV_NONE,
816 {(char_u *)0L, (char_u *)0L}
817 #endif
819 {"confirm", "cf", P_BOOL|P_VI_DEF,
820 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
821 (char_u *)&p_confirm, PV_NONE,
822 #else
823 (char_u *)NULL, PV_NONE,
824 #endif
825 {(char_u *)FALSE, (char_u *)0L}},
826 {"conskey", "consk",P_BOOL|P_VI_DEF,
827 #ifdef MSDOS
828 (char_u *)&p_consk, PV_NONE,
829 #else
830 (char_u *)NULL, PV_NONE,
831 #endif
832 {(char_u *)FALSE, (char_u *)0L}},
833 {"copyindent", "ci", P_BOOL|P_VI_DEF|P_VIM,
834 (char_u *)&p_ci, PV_CI,
835 {(char_u *)FALSE, (char_u *)0L}},
836 {"cpoptions", "cpo", P_STRING|P_VIM|P_RALL|P_FLAGLIST,
837 (char_u *)&p_cpo, PV_NONE,
838 {(char_u *)CPO_VI, (char_u *)CPO_VIM}},
839 {"cscopepathcomp", "cspc", P_NUM|P_VI_DEF|P_VIM,
840 #ifdef FEAT_CSCOPE
841 (char_u *)&p_cspc, PV_NONE,
842 #else
843 (char_u *)NULL, PV_NONE,
844 #endif
845 {(char_u *)0L, (char_u *)0L}},
846 {"cscopeprg", "csprg", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
847 #ifdef FEAT_CSCOPE
848 (char_u *)&p_csprg, PV_NONE,
849 {(char_u *)"cscope", (char_u *)0L}
850 #else
851 (char_u *)NULL, PV_NONE,
852 {(char_u *)0L, (char_u *)0L}
853 #endif
855 {"cscopequickfix", "csqf", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
856 #if defined(FEAT_CSCOPE) && defined(FEAT_QUICKFIX)
857 (char_u *)&p_csqf, PV_NONE,
858 {(char_u *)"", (char_u *)0L}
859 #else
860 (char_u *)NULL, PV_NONE,
861 {(char_u *)0L, (char_u *)0L}
862 #endif
864 {"cscopetag", "cst", P_BOOL|P_VI_DEF|P_VIM,
865 #ifdef FEAT_CSCOPE
866 (char_u *)&p_cst, PV_NONE,
867 #else
868 (char_u *)NULL, PV_NONE,
869 #endif
870 {(char_u *)0L, (char_u *)0L}},
871 {"cscopetagorder", "csto", P_NUM|P_VI_DEF|P_VIM,
872 #ifdef FEAT_CSCOPE
873 (char_u *)&p_csto, PV_NONE,
874 #else
875 (char_u *)NULL, PV_NONE,
876 #endif
877 {(char_u *)0L, (char_u *)0L}},
878 {"cscopeverbose", "csverb", P_BOOL|P_VI_DEF|P_VIM,
879 #ifdef FEAT_CSCOPE
880 (char_u *)&p_csverbose, PV_NONE,
881 #else
882 (char_u *)NULL, PV_NONE,
883 #endif
884 {(char_u *)0L, (char_u *)0L}},
885 {"cursorcolumn", "cuc", P_BOOL|P_VI_DEF|P_RWIN,
886 #ifdef FEAT_SYN_HL
887 (char_u *)VAR_WIN, PV_CUC,
888 #else
889 (char_u *)NULL, PV_NONE,
890 #endif
891 {(char_u *)FALSE, (char_u *)0L}},
892 {"cursorline", "cul", P_BOOL|P_VI_DEF|P_RWIN,
893 #ifdef FEAT_SYN_HL
894 (char_u *)VAR_WIN, PV_CUL,
895 #else
896 (char_u *)NULL, PV_NONE,
897 #endif
898 {(char_u *)FALSE, (char_u *)0L}},
899 {"debug", NULL, P_STRING|P_VI_DEF,
900 (char_u *)&p_debug, PV_NONE,
901 {(char_u *)"", (char_u *)0L}},
902 {"define", "def", P_STRING|P_ALLOCED|P_VI_DEF,
903 #ifdef FEAT_FIND_ID
904 (char_u *)&p_def, PV_DEF,
905 {(char_u *)"^\\s*#\\s*define", (char_u *)0L}
906 #else
907 (char_u *)NULL, PV_NONE,
908 {(char_u *)NULL, (char_u *)0L}
909 #endif
911 {"delcombine", "deco", P_BOOL|P_VI_DEF|P_VIM,
912 #ifdef FEAT_MBYTE
913 (char_u *)&p_deco, PV_NONE,
914 #else
915 (char_u *)NULL, PV_NONE,
916 #endif
917 {(char_u *)FALSE, (char_u *)0L}},
918 {"dictionary", "dict", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
919 #ifdef FEAT_INS_EXPAND
920 (char_u *)&p_dict, PV_DICT,
921 #else
922 (char_u *)NULL, PV_NONE,
923 #endif
924 {(char_u *)"", (char_u *)0L}},
925 {"diff", NULL, P_BOOL|P_VI_DEF|P_RWIN|P_NOGLOB,
926 #ifdef FEAT_DIFF
927 (char_u *)VAR_WIN, PV_DIFF,
928 #else
929 (char_u *)NULL, PV_NONE,
930 #endif
931 {(char_u *)FALSE, (char_u *)0L}},
932 {"diffexpr", "dex", P_STRING|P_VI_DEF|P_SECURE,
933 #if defined(FEAT_DIFF) && defined(FEAT_EVAL)
934 (char_u *)&p_dex, PV_NONE,
935 {(char_u *)"", (char_u *)0L}
936 #else
937 (char_u *)NULL, PV_NONE,
938 {(char_u *)0L, (char_u *)0L}
939 #endif
941 {"diffopt", "dip", P_STRING|P_ALLOCED|P_VI_DEF|P_RWIN|P_COMMA|P_NODUP,
942 #ifdef FEAT_DIFF
943 (char_u *)&p_dip, PV_NONE,
944 {(char_u *)"filler", (char_u *)NULL}
945 #else
946 (char_u *)NULL, PV_NONE,
947 {(char_u *)"", (char_u *)NULL}
948 #endif
950 {"digraph", "dg", P_BOOL|P_VI_DEF|P_VIM,
951 #ifdef FEAT_DIGRAPHS
952 (char_u *)&p_dg, PV_NONE,
953 #else
954 (char_u *)NULL, PV_NONE,
955 #endif
956 {(char_u *)FALSE, (char_u *)0L}},
957 {"directory", "dir", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP|P_SECURE,
958 (char_u *)&p_dir, PV_NONE,
959 {(char_u *)DFLT_DIR, (char_u *)0L}},
960 {"display", "dy", P_STRING|P_VI_DEF|P_COMMA|P_RALL|P_NODUP,
961 (char_u *)&p_dy, PV_NONE,
962 {(char_u *)"", (char_u *)0L}},
963 {"eadirection", "ead", P_STRING|P_VI_DEF,
964 #ifdef FEAT_VERTSPLIT
965 (char_u *)&p_ead, PV_NONE,
966 {(char_u *)"both", (char_u *)0L}
967 #else
968 (char_u *)NULL, PV_NONE,
969 {(char_u *)NULL, (char_u *)0L}
970 #endif
972 {"edcompatible","ed", P_BOOL|P_VI_DEF,
973 (char_u *)&p_ed, PV_NONE,
974 {(char_u *)FALSE, (char_u *)0L}},
975 {"encoding", "enc", P_STRING|P_VI_DEF|P_RCLR,
976 #ifdef FEAT_MBYTE
977 (char_u *)&p_enc, PV_NONE,
978 {(char_u *)ENC_DFLT, (char_u *)0L}
979 #else
980 (char_u *)NULL, PV_NONE,
981 {(char_u *)0L, (char_u *)0L}
982 #endif
984 {"endofline", "eol", P_BOOL|P_NO_MKRC|P_VI_DEF|P_RSTAT,
985 (char_u *)&p_eol, PV_EOL,
986 {(char_u *)TRUE, (char_u *)0L}},
987 {"equalalways", "ea", P_BOOL|P_VI_DEF|P_RALL,
988 (char_u *)&p_ea, PV_NONE,
989 {(char_u *)TRUE, (char_u *)0L}},
990 {"equalprg", "ep", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
991 (char_u *)&p_ep, PV_EP,
992 {(char_u *)"", (char_u *)0L}},
993 {"errorbells", "eb", P_BOOL|P_VI_DEF,
994 (char_u *)&p_eb, PV_NONE,
995 {(char_u *)FALSE, (char_u *)0L}},
996 {"errorfile", "ef", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
997 #ifdef FEAT_QUICKFIX
998 (char_u *)&p_ef, PV_NONE,
999 {(char_u *)DFLT_ERRORFILE, (char_u *)0L}
1000 #else
1001 (char_u *)NULL, PV_NONE,
1002 {(char_u *)NULL, (char_u *)0L}
1003 #endif
1005 {"errorformat", "efm", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1006 #ifdef FEAT_QUICKFIX
1007 (char_u *)&p_efm, PV_EFM,
1008 {(char_u *)DFLT_EFM, (char_u *)0L},
1009 #else
1010 (char_u *)NULL, PV_NONE,
1011 {(char_u *)NULL, (char_u *)0L}
1012 #endif
1014 {"esckeys", "ek", P_BOOL|P_VIM,
1015 (char_u *)&p_ek, PV_NONE,
1016 {(char_u *)FALSE, (char_u *)TRUE}},
1017 {"eventignore", "ei", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1018 #ifdef FEAT_AUTOCMD
1019 (char_u *)&p_ei, PV_NONE,
1020 #else
1021 (char_u *)NULL, PV_NONE,
1022 #endif
1023 {(char_u *)"", (char_u *)0L}},
1024 {"expandtab", "et", P_BOOL|P_VI_DEF|P_VIM,
1025 (char_u *)&p_et, PV_ET,
1026 {(char_u *)FALSE, (char_u *)0L}},
1027 {"exrc", "ex", P_BOOL|P_VI_DEF|P_SECURE,
1028 (char_u *)&p_exrc, PV_NONE,
1029 {(char_u *)FALSE, (char_u *)0L}},
1030 {"fileencoding","fenc", P_STRING|P_ALLOCED|P_VI_DEF|P_RSTAT|P_RBUF|P_NO_MKRC,
1031 #ifdef FEAT_MBYTE
1032 (char_u *)&p_fenc, PV_FENC,
1033 {(char_u *)"", (char_u *)0L}
1034 #else
1035 (char_u *)NULL, PV_NONE,
1036 {(char_u *)0L, (char_u *)0L}
1037 #endif
1039 {"fileencodings","fencs", P_STRING|P_VI_DEF|P_COMMA,
1040 #ifdef FEAT_MBYTE
1041 (char_u *)&p_fencs, PV_NONE,
1042 {(char_u *)"ucs-bom", (char_u *)0L}
1043 #else
1044 (char_u *)NULL, PV_NONE,
1045 {(char_u *)0L, (char_u *)0L}
1046 #endif
1048 {"fileformat", "ff", P_STRING|P_ALLOCED|P_VI_DEF|P_RSTAT|P_NO_MKRC,
1049 (char_u *)&p_ff, PV_FF,
1050 {(char_u *)DFLT_FF, (char_u *)0L}},
1051 {"fileformats", "ffs", P_STRING|P_VIM|P_COMMA|P_NODUP,
1052 (char_u *)&p_ffs, PV_NONE,
1053 {(char_u *)DFLT_FFS_VI, (char_u *)DFLT_FFS_VIM}},
1054 {"filetype", "ft", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB|P_NFNAME,
1055 #ifdef FEAT_AUTOCMD
1056 (char_u *)&p_ft, PV_FT,
1057 {(char_u *)"", (char_u *)0L}
1058 #else
1059 (char_u *)NULL, PV_NONE,
1060 {(char_u *)0L, (char_u *)0L}
1061 #endif
1063 {"fillchars", "fcs", P_STRING|P_VI_DEF|P_RALL|P_COMMA|P_NODUP,
1064 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
1065 (char_u *)&p_fcs, PV_NONE,
1066 {(char_u *)"vert:|,fold:-", (char_u *)0L}
1067 #else
1068 (char_u *)NULL, PV_NONE,
1069 {(char_u *)"", (char_u *)0L}
1070 #endif
1072 {"fkmap", "fk", P_BOOL|P_VI_DEF,
1073 #ifdef FEAT_FKMAP
1074 (char_u *)&p_fkmap, PV_NONE,
1075 #else
1076 (char_u *)NULL, PV_NONE,
1077 #endif
1078 {(char_u *)FALSE, (char_u *)0L}},
1079 {"flash", "fl", P_BOOL|P_VI_DEF,
1080 (char_u *)NULL, PV_NONE,
1081 {(char_u *)FALSE, (char_u *)0L}},
1082 #ifdef FEAT_FOLDING
1083 {"foldclose", "fcl", P_STRING|P_VI_DEF|P_COMMA|P_NODUP|P_RWIN,
1084 (char_u *)&p_fcl, PV_NONE,
1085 {(char_u *)"", (char_u *)0L}},
1086 {"foldcolumn", "fdc", P_NUM|P_VI_DEF|P_RWIN,
1087 (char_u *)VAR_WIN, PV_FDC,
1088 {(char_u *)FALSE, (char_u *)0L}},
1089 {"foldenable", "fen", P_BOOL|P_VI_DEF|P_RWIN,
1090 (char_u *)VAR_WIN, PV_FEN,
1091 {(char_u *)TRUE, (char_u *)0L}},
1092 {"foldexpr", "fde", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1093 # ifdef FEAT_EVAL
1094 (char_u *)VAR_WIN, PV_FDE,
1095 {(char_u *)"0", (char_u *)NULL}
1096 # else
1097 (char_u *)NULL, PV_NONE,
1098 {(char_u *)NULL, (char_u *)0L}
1099 # endif
1101 {"foldignore", "fdi", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1102 (char_u *)VAR_WIN, PV_FDI,
1103 {(char_u *)"#", (char_u *)NULL}},
1104 {"foldlevel", "fdl", P_NUM|P_VI_DEF|P_RWIN,
1105 (char_u *)VAR_WIN, PV_FDL,
1106 {(char_u *)0L, (char_u *)0L}},
1107 {"foldlevelstart","fdls", P_NUM|P_VI_DEF,
1108 (char_u *)&p_fdls, PV_NONE,
1109 {(char_u *)-1L, (char_u *)0L}},
1110 {"foldmarker", "fmr", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|
1111 P_RWIN|P_COMMA|P_NODUP,
1112 (char_u *)VAR_WIN, PV_FMR,
1113 {(char_u *)"{{{,}}}", (char_u *)NULL}},
1114 {"foldmethod", "fdm", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1115 (char_u *)VAR_WIN, PV_FDM,
1116 {(char_u *)"manual", (char_u *)NULL}},
1117 {"foldminlines","fml", P_NUM|P_VI_DEF|P_RWIN,
1118 (char_u *)VAR_WIN, PV_FML,
1119 {(char_u *)1L, (char_u *)0L}},
1120 {"foldnestmax", "fdn", P_NUM|P_VI_DEF|P_RWIN,
1121 (char_u *)VAR_WIN, PV_FDN,
1122 {(char_u *)20L, (char_u *)0L}},
1123 {"foldopen", "fdo", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1124 (char_u *)&p_fdo, PV_NONE,
1125 {(char_u *)"block,hor,mark,percent,quickfix,search,tag,undo",
1126 (char_u *)0L}},
1127 {"foldtext", "fdt", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1128 # ifdef FEAT_EVAL
1129 (char_u *)VAR_WIN, PV_FDT,
1130 {(char_u *)"foldtext()", (char_u *)NULL}
1131 # else
1132 (char_u *)NULL, PV_NONE,
1133 {(char_u *)NULL, (char_u *)0L}
1134 # endif
1136 #endif
1137 {"formatexpr", "fex", P_STRING|P_ALLOCED|P_VI_DEF|P_VIM,
1138 #ifdef FEAT_EVAL
1139 (char_u *)&p_fex, PV_FEX,
1140 {(char_u *)"", (char_u *)0L}
1141 #else
1142 (char_u *)NULL, PV_NONE,
1143 {(char_u *)0L, (char_u *)0L}
1144 #endif
1146 {"formatoptions","fo", P_STRING|P_ALLOCED|P_VIM|P_FLAGLIST,
1147 (char_u *)&p_fo, PV_FO,
1148 {(char_u *)DFLT_FO_VI, (char_u *)DFLT_FO_VIM}},
1149 {"formatlistpat","flp", P_STRING|P_ALLOCED|P_VI_DEF,
1150 (char_u *)&p_flp, PV_FLP,
1151 {(char_u *)"^\\s*\\d\\+[\\]:.)}\\t ]\\s*", (char_u *)0L}},
1152 {"formatprg", "fp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1153 (char_u *)&p_fp, PV_NONE,
1154 {(char_u *)"", (char_u *)0L}},
1155 {"fsync", "fs", P_BOOL|P_SECURE|P_VI_DEF,
1156 #ifdef HAVE_FSYNC
1157 (char_u *)&p_fs, PV_NONE,
1158 {(char_u *)TRUE, (char_u *)0L}
1159 #else
1160 (char_u *)NULL, PV_NONE,
1161 {(char_u *)FALSE, (char_u *)0L}
1162 #endif
1164 {"fullscreen", "fu", P_BOOL|P_NO_MKRC,
1165 #ifdef FEAT_FULLSCREEN
1166 (char_u *)&p_fullscreen, PV_NONE,
1167 #else
1168 (char_u *)NULL, PV_NONE,
1169 #endif
1170 {(char_u *)FALSE, (char_u *)0L}},
1171 {"fuoptions", "fuopt", P_STRING|P_COMMA|P_NODUP|P_VI_DEF,
1172 #ifdef FEAT_FULLSCREEN
1173 (char_u *)&p_fuoptions, PV_NONE,
1174 {(char_u *)"maxvert", (char_u *)0L}},
1175 #else
1176 (char_u *)NULL, PV_NONE,
1177 {(char_u *)NULL, (char_u *)0L}},
1178 #endif
1179 {"gdefault", "gd", P_BOOL|P_VI_DEF|P_VIM,
1180 (char_u *)&p_gd, PV_NONE,
1181 {(char_u *)FALSE, (char_u *)0L}},
1182 {"graphic", "gr", P_BOOL|P_VI_DEF,
1183 (char_u *)NULL, PV_NONE,
1184 {(char_u *)FALSE, (char_u *)0L}},
1185 {"grepformat", "gfm", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1186 #ifdef FEAT_QUICKFIX
1187 (char_u *)&p_gefm, PV_NONE,
1188 {(char_u *)DFLT_GREPFORMAT, (char_u *)0L},
1189 #else
1190 (char_u *)NULL, PV_NONE,
1191 {(char_u *)NULL, (char_u *)0L}
1192 #endif
1194 {"grepprg", "gp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1195 #ifdef FEAT_QUICKFIX
1196 (char_u *)&p_gp, PV_GP,
1198 # ifdef WIN3264
1199 /* may be changed to "grep -n" in os_win32.c */
1200 (char_u *)"findstr /n",
1201 # else
1202 # ifdef UNIX
1203 /* Add an extra file name so that grep will always
1204 * insert a file name in the match line. */
1205 (char_u *)"grep -n $* /dev/null",
1206 # else
1207 # ifdef VMS
1208 (char_u *)"SEARCH/NUMBERS ",
1209 # else
1210 (char_u *)"grep -n ",
1211 #endif
1212 #endif
1213 # endif
1214 (char_u *)0L},
1215 #else
1216 (char_u *)NULL, PV_NONE,
1217 {(char_u *)NULL, (char_u *)0L}
1218 #endif
1220 {"guicursor", "gcr", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1221 #ifdef CURSOR_SHAPE
1222 (char_u *)&p_guicursor, PV_NONE,
1224 # ifdef FEAT_GUI
1225 (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",
1226 # else /* MSDOS or Win32 console */
1227 (char_u *)"n-v-c:block,o:hor50,i-ci:hor15,r-cr:hor30,sm:block",
1228 # endif
1229 (char_u *)0L}
1230 #else
1231 (char_u *)NULL, PV_NONE,
1232 {(char_u *)NULL, (char_u *)0L}
1233 #endif
1235 {"guifont", "gfn", P_STRING|P_VI_DEF|P_RCLR|P_COMMA|P_NODUP,
1236 #ifdef FEAT_GUI
1237 (char_u *)&p_guifont, PV_NONE,
1238 {(char_u *)"", (char_u *)0L}
1239 #else
1240 (char_u *)NULL, PV_NONE,
1241 {(char_u *)NULL, (char_u *)0L}
1242 #endif
1244 {"guifontset", "gfs", P_STRING|P_VI_DEF|P_RCLR|P_COMMA,
1245 #if defined(FEAT_GUI) && defined(FEAT_XFONTSET)
1246 (char_u *)&p_guifontset, PV_NONE,
1247 {(char_u *)"", (char_u *)0L}
1248 #else
1249 (char_u *)NULL, PV_NONE,
1250 {(char_u *)NULL, (char_u *)0L}
1251 #endif
1253 {"guifontwide", "gfw", P_STRING|P_VI_DEF|P_RCLR|P_COMMA|P_NODUP,
1254 #if defined(FEAT_GUI) && defined(FEAT_MBYTE)
1255 (char_u *)&p_guifontwide, PV_NONE,
1256 {(char_u *)"", (char_u *)0L}
1257 #else
1258 (char_u *)NULL, PV_NONE,
1259 {(char_u *)NULL, (char_u *)0L}
1260 #endif
1262 {"guiheadroom", "ghr", P_NUM|P_VI_DEF,
1263 #if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11)
1264 (char_u *)&p_ghr, PV_NONE,
1265 #else
1266 (char_u *)NULL, PV_NONE,
1267 #endif
1268 {(char_u *)50L, (char_u *)0L}},
1269 {"guioptions", "go", P_STRING|P_VI_DEF|P_RALL|P_FLAGLIST,
1270 #if defined(FEAT_GUI)
1271 (char_u *)&p_go, PV_NONE,
1272 # if defined(UNIX) && !defined(MACOS)
1273 {(char_u *)"aegimrLtT", (char_u *)0L}
1274 # else
1275 {(char_u *)"egmrLtT", (char_u *)0L}
1276 # endif
1277 #else
1278 (char_u *)NULL, PV_NONE,
1279 {(char_u *)NULL, (char_u *)0L}
1280 #endif
1282 {"guipty", NULL, P_BOOL|P_VI_DEF,
1283 #if defined(FEAT_GUI)
1284 (char_u *)&p_guipty, PV_NONE,
1285 #else
1286 (char_u *)NULL, PV_NONE,
1287 #endif
1288 {(char_u *)TRUE, (char_u *)0L}},
1289 {"guitablabel", "gtl", P_STRING|P_VI_DEF|P_RWIN,
1290 #if defined(FEAT_GUI_TABLINE)
1291 (char_u *)&p_gtl, PV_NONE,
1292 {(char_u *)"", (char_u *)0L}
1293 #else
1294 (char_u *)NULL, PV_NONE,
1295 {(char_u *)NULL, (char_u *)0L}
1296 #endif
1298 {"guitabtooltip", "gtt", P_STRING|P_VI_DEF|P_RWIN,
1299 #if defined(FEAT_GUI_TABLINE)
1300 (char_u *)&p_gtt, PV_NONE,
1301 {(char_u *)"", (char_u *)0L}
1302 #else
1303 (char_u *)NULL, PV_NONE,
1304 {(char_u *)NULL, (char_u *)0L}
1305 #endif
1307 {"hardtabs", "ht", P_NUM|P_VI_DEF,
1308 (char_u *)NULL, PV_NONE,
1309 {(char_u *)0L, (char_u *)0L}},
1310 {"helpfile", "hf", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1311 (char_u *)&p_hf, PV_NONE,
1312 {(char_u *)DFLT_HELPFILE, (char_u *)0L}},
1313 {"helpheight", "hh", P_NUM|P_VI_DEF,
1314 #ifdef FEAT_WINDOWS
1315 (char_u *)&p_hh, PV_NONE,
1316 #else
1317 (char_u *)NULL, PV_NONE,
1318 #endif
1319 {(char_u *)20L, (char_u *)0L}},
1320 {"helplang", "hlg", P_STRING|P_VI_DEF|P_COMMA,
1321 #ifdef FEAT_MULTI_LANG
1322 (char_u *)&p_hlg, PV_NONE,
1323 {(char_u *)"", (char_u *)0L}
1324 #else
1325 (char_u *)NULL, PV_NONE,
1326 {(char_u *)0L, (char_u *)0L}
1327 #endif
1329 {"hidden", "hid", P_BOOL|P_VI_DEF,
1330 (char_u *)&p_hid, PV_NONE,
1331 {(char_u *)FALSE, (char_u *)0L}},
1332 {"highlight", "hl", P_STRING|P_VI_DEF|P_RCLR|P_COMMA|P_NODUP,
1333 (char_u *)&p_hl, PV_NONE,
1334 {(char_u *)HIGHLIGHT_INIT, (char_u *)0L}},
1335 {"history", "hi", P_NUM|P_VIM,
1336 (char_u *)&p_hi, PV_NONE,
1337 {(char_u *)0L, (char_u *)20L}},
1338 {"hkmap", "hk", P_BOOL|P_VI_DEF|P_VIM,
1339 #ifdef FEAT_RIGHTLEFT
1340 (char_u *)&p_hkmap, PV_NONE,
1341 #else
1342 (char_u *)NULL, PV_NONE,
1343 #endif
1344 {(char_u *)FALSE, (char_u *)0L}},
1345 {"hkmapp", "hkp", P_BOOL|P_VI_DEF|P_VIM,
1346 #ifdef FEAT_RIGHTLEFT
1347 (char_u *)&p_hkmapp, PV_NONE,
1348 #else
1349 (char_u *)NULL, PV_NONE,
1350 #endif
1351 {(char_u *)FALSE, (char_u *)0L}},
1352 {"hlsearch", "hls", P_BOOL|P_VI_DEF|P_VIM|P_RALL,
1353 (char_u *)&p_hls, PV_NONE,
1354 {(char_u *)FALSE, (char_u *)0L}},
1355 {"icon", NULL, P_BOOL|P_VI_DEF,
1356 #ifdef FEAT_TITLE
1357 (char_u *)&p_icon, PV_NONE,
1358 #else
1359 (char_u *)NULL, PV_NONE,
1360 #endif
1361 {(char_u *)FALSE, (char_u *)0L}},
1362 {"iconstring", NULL, P_STRING|P_VI_DEF,
1363 #ifdef FEAT_TITLE
1364 (char_u *)&p_iconstring, PV_NONE,
1365 #else
1366 (char_u *)NULL, PV_NONE,
1367 #endif
1368 {(char_u *)"", (char_u *)0L}},
1369 {"ignorecase", "ic", P_BOOL|P_VI_DEF,
1370 (char_u *)&p_ic, PV_NONE,
1371 {(char_u *)FALSE, (char_u *)0L}},
1372 {"imactivatekey","imak",P_STRING|P_VI_DEF,
1373 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
1374 (char_u *)&p_imak, PV_NONE,
1375 #else
1376 (char_u *)NULL, PV_NONE,
1377 #endif
1378 {(char_u *)"", (char_u *)0L}},
1379 {"imcmdline", "imc", P_BOOL|P_VI_DEF,
1380 #ifdef USE_IM_CONTROL
1381 (char_u *)&p_imcmdline, PV_NONE,
1382 #else
1383 (char_u *)NULL, PV_NONE,
1384 #endif
1385 {(char_u *)FALSE, (char_u *)0L}},
1386 {"imdisable", "imd", P_BOOL|P_VI_DEF,
1387 #ifdef USE_IM_CONTROL
1388 (char_u *)&p_imdisable, PV_NONE,
1389 #else
1390 (char_u *)NULL, PV_NONE,
1391 #endif
1392 #ifdef __sgi
1393 {(char_u *)TRUE, (char_u *)0L}
1394 #else
1395 {(char_u *)FALSE, (char_u *)0L}
1396 #endif
1398 {"iminsert", "imi", P_NUM|P_VI_DEF,
1399 (char_u *)&p_iminsert, PV_IMI,
1400 #ifdef B_IMODE_IM
1401 {(char_u *)B_IMODE_IM, (char_u *)0L}
1402 #else
1403 {(char_u *)B_IMODE_NONE, (char_u *)0L}
1404 #endif
1406 {"imsearch", "ims", P_NUM|P_VI_DEF,
1407 (char_u *)&p_imsearch, PV_IMS,
1408 #ifdef B_IMODE_IM
1409 {(char_u *)B_IMODE_IM, (char_u *)0L}
1410 #else
1411 {(char_u *)B_IMODE_NONE, (char_u *)0L}
1412 #endif
1414 {"include", "inc", P_STRING|P_ALLOCED|P_VI_DEF,
1415 #ifdef FEAT_FIND_ID
1416 (char_u *)&p_inc, PV_INC,
1417 {(char_u *)"^\\s*#\\s*include", (char_u *)0L}
1418 #else
1419 (char_u *)NULL, PV_NONE,
1420 {(char_u *)0L, (char_u *)0L}
1421 #endif
1423 {"includeexpr", "inex", P_STRING|P_ALLOCED|P_VI_DEF,
1424 #if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
1425 (char_u *)&p_inex, PV_INEX,
1426 {(char_u *)"", (char_u *)0L}
1427 #else
1428 (char_u *)NULL, PV_NONE,
1429 {(char_u *)0L, (char_u *)0L}
1430 #endif
1432 {"incsearch", "is", P_BOOL|P_VI_DEF|P_VIM,
1433 (char_u *)&p_is, PV_NONE,
1434 {(char_u *)FALSE, (char_u *)0L}},
1435 {"indentexpr", "inde", P_STRING|P_ALLOCED|P_VI_DEF|P_VIM,
1436 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
1437 (char_u *)&p_inde, PV_INDE,
1438 {(char_u *)"", (char_u *)0L}
1439 #else
1440 (char_u *)NULL, PV_NONE,
1441 {(char_u *)0L, (char_u *)0L}
1442 #endif
1444 {"indentkeys", "indk", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
1445 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
1446 (char_u *)&p_indk, PV_INDK,
1447 {(char_u *)"0{,0},:,0#,!^F,o,O,e", (char_u *)0L}
1448 #else
1449 (char_u *)NULL, PV_NONE,
1450 {(char_u *)0L, (char_u *)0L}
1451 #endif
1453 {"infercase", "inf", P_BOOL|P_VI_DEF,
1454 (char_u *)&p_inf, PV_INF,
1455 {(char_u *)FALSE, (char_u *)0L}},
1456 {"insertmode", "im", P_BOOL|P_VI_DEF|P_VIM,
1457 (char_u *)&p_im, PV_NONE,
1458 {(char_u *)FALSE, (char_u *)0L}},
1459 {"isfname", "isf", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1460 (char_u *)&p_isf, PV_NONE,
1462 #ifdef BACKSLASH_IN_FILENAME
1463 /* Excluded are: & and ^ are special in cmd.exe
1464 * ( and ) are used in text separating fnames */
1465 (char_u *)"@,48-57,/,\\,.,-,_,+,,,#,$,%,{,},[,],:,@-@,!,~,=",
1466 #else
1467 # ifdef AMIGA
1468 (char_u *)"@,48-57,/,.,-,_,+,,,$,:",
1469 # else
1470 # ifdef VMS
1471 (char_u *)"@,48-57,/,.,-,_,+,,,#,$,%,<,>,[,],:,;,~",
1472 # else /* UNIX et al. */
1473 # ifdef EBCDIC
1474 (char_u *)"@,240-249,/,.,-,_,+,,,#,$,%,~,=",
1475 # else
1476 (char_u *)"@,48-57,/,.,-,_,+,,,#,$,%,~,=",
1477 # endif
1478 # endif
1479 # endif
1480 #endif
1481 (char_u *)0L}},
1482 {"isident", "isi", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1483 (char_u *)&p_isi, PV_NONE,
1485 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
1486 (char_u *)"@,48-57,_,128-167,224-235",
1487 #else
1488 # ifdef EBCDIC
1489 /* TODO: EBCDIC Check this! @ == isalpha()*/
1490 (char_u *)"@,240-249,_,66-73,81-89,98-105,"
1491 "112-120,128,140-142,156,158,172,"
1492 "174,186,191,203-207,219-225,235-239,"
1493 "251-254",
1494 # else
1495 (char_u *)"@,48-57,_,192-255",
1496 # endif
1497 #endif
1498 (char_u *)0L}},
1499 {"iskeyword", "isk", P_STRING|P_ALLOCED|P_VIM|P_COMMA|P_NODUP,
1500 (char_u *)&p_isk, PV_ISK,
1502 #ifdef EBCDIC
1503 (char_u *)"@,240-249,_",
1504 /* TODO: EBCDIC Check this! @ == isalpha()*/
1505 (char_u *)"@,240-249,_,66-73,81-89,98-105,"
1506 "112-120,128,140-142,156,158,172,"
1507 "174,186,191,203-207,219-225,235-239,"
1508 "251-254",
1509 #else
1510 (char_u *)"@,48-57,_",
1511 # if defined(MSDOS) || defined(MSWIN) || defined(OS2)
1512 (char_u *)"@,48-57,_,128-167,224-235"
1513 # else
1514 ISK_LATIN1
1515 # endif
1516 #endif
1518 {"isprint", "isp", P_STRING|P_VI_DEF|P_RALL|P_COMMA|P_NODUP,
1519 (char_u *)&p_isp, PV_NONE,
1521 #if defined(MSDOS) || defined(MSWIN) || defined(OS2) \
1522 || (defined(MACOS) && !defined(MACOS_X)) \
1523 || defined(VMS)
1524 (char_u *)"@,~-255",
1525 #else
1526 # ifdef EBCDIC
1527 /* all chars above 63 are printable */
1528 (char_u *)"63-255",
1529 # else
1530 ISP_LATIN1,
1531 # endif
1532 #endif
1533 (char_u *)0L}},
1534 {"joinspaces", "js", P_BOOL|P_VI_DEF|P_VIM,
1535 (char_u *)&p_js, PV_NONE,
1536 {(char_u *)TRUE, (char_u *)0L}},
1537 {"key", NULL, P_STRING|P_ALLOCED|P_VI_DEF|P_NO_MKRC,
1538 #ifdef FEAT_CRYPT
1539 (char_u *)&p_key, PV_KEY,
1540 {(char_u *)"", (char_u *)0L}
1541 #else
1542 (char_u *)NULL, PV_NONE,
1543 {(char_u *)0L, (char_u *)0L}
1544 #endif
1546 {"keymap", "kmp", P_STRING|P_ALLOCED|P_VI_DEF|P_RBUF|P_RSTAT|P_NFNAME|P_PRI_MKRC,
1547 #ifdef FEAT_KEYMAP
1548 (char_u *)&p_keymap, PV_KMAP,
1549 {(char_u *)"", (char_u *)0L}
1550 #else
1551 (char_u *)NULL, PV_NONE,
1552 {(char_u *)"", (char_u *)0L}
1553 #endif
1555 {"keymodel", "km", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1556 #ifdef FEAT_VISUAL
1557 (char_u *)&p_km, PV_NONE,
1558 #else
1559 (char_u *)NULL, PV_NONE,
1560 #endif
1561 {(char_u *)"", (char_u *)0L}},
1562 {"keywordprg", "kp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1563 (char_u *)&p_kp, PV_KP,
1565 #if defined(MSDOS) || defined(MSWIN)
1566 (char_u *)":help",
1567 #else
1568 #ifdef VMS
1569 (char_u *)"help",
1570 #else
1571 # if defined(OS2)
1572 (char_u *)"view /",
1573 # else
1574 # ifdef USEMAN_S
1575 (char_u *)"man -s",
1576 # else
1577 (char_u *)"man",
1578 # endif
1579 # endif
1580 #endif
1581 #endif
1582 (char_u *)0L}},
1583 {"langmap", "lmap", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1584 #ifdef FEAT_LANGMAP
1585 (char_u *)&p_langmap, PV_NONE,
1586 {(char_u *)"", /* unmatched } */
1587 #else
1588 (char_u *)NULL, PV_NONE,
1589 {(char_u *)NULL,
1590 #endif
1591 (char_u *)0L}},
1592 {"langmenu", "lm", P_STRING|P_VI_DEF|P_NFNAME,
1593 #if defined(FEAT_MENU) && defined(FEAT_MULTI_LANG)
1594 (char_u *)&p_lm, PV_NONE,
1595 #else
1596 (char_u *)NULL, PV_NONE,
1597 #endif
1598 {(char_u *)"", (char_u *)0L}},
1599 {"laststatus", "ls", P_NUM|P_VI_DEF|P_RALL,
1600 #ifdef FEAT_WINDOWS
1601 (char_u *)&p_ls, PV_NONE,
1602 #else
1603 (char_u *)NULL, PV_NONE,
1604 #endif
1605 {(char_u *)1L, (char_u *)0L}},
1606 {"lazyredraw", "lz", P_BOOL|P_VI_DEF,
1607 (char_u *)&p_lz, PV_NONE,
1608 {(char_u *)FALSE, (char_u *)0L}},
1609 {"linebreak", "lbr", P_BOOL|P_VI_DEF|P_RWIN,
1610 #ifdef FEAT_LINEBREAK
1611 (char_u *)VAR_WIN, PV_LBR,
1612 #else
1613 (char_u *)NULL, PV_NONE,
1614 #endif
1615 {(char_u *)FALSE, (char_u *)0L}},
1616 {"lines", NULL, P_NUM|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RCLR,
1617 (char_u *)&Rows, PV_NONE,
1619 #if defined(MSDOS) || defined(WIN3264) || defined(OS2)
1620 (char_u *)25L,
1621 #else
1622 (char_u *)24L,
1623 #endif
1624 (char_u *)0L}},
1625 {"linespace", "lsp", P_NUM|P_VI_DEF|P_RCLR,
1626 #ifdef FEAT_GUI
1627 (char_u *)&p_linespace, PV_NONE,
1628 #else
1629 (char_u *)NULL, PV_NONE,
1630 #endif
1631 #ifdef FEAT_GUI_W32
1632 {(char_u *)1L, (char_u *)0L}
1633 #else
1634 {(char_u *)0L, (char_u *)0L}
1635 #endif
1637 {"lisp", NULL, P_BOOL|P_VI_DEF,
1638 #ifdef FEAT_LISP
1639 (char_u *)&p_lisp, PV_LISP,
1640 #else
1641 (char_u *)NULL, PV_NONE,
1642 #endif
1643 {(char_u *)FALSE, (char_u *)0L}},
1644 {"lispwords", "lw", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1645 #ifdef FEAT_LISP
1646 (char_u *)&p_lispwords, PV_NONE,
1647 {(char_u *)LISPWORD_VALUE, (char_u *)0L}
1648 #else
1649 (char_u *)NULL, PV_NONE,
1650 {(char_u *)"", (char_u *)0L}
1651 #endif
1653 {"list", NULL, P_BOOL|P_VI_DEF|P_RWIN,
1654 (char_u *)VAR_WIN, PV_LIST,
1655 {(char_u *)FALSE, (char_u *)0L}},
1656 {"listchars", "lcs", P_STRING|P_VI_DEF|P_RALL|P_COMMA|P_NODUP,
1657 (char_u *)&p_lcs, PV_NONE,
1658 {(char_u *)"eol:$", (char_u *)0L}},
1659 {"loadplugins", "lpl", P_BOOL|P_VI_DEF,
1660 (char_u *)&p_lpl, PV_NONE,
1661 {(char_u *)TRUE, (char_u *)0L}},
1662 #ifdef FEAT_GUI_MAC
1663 {"macatsui", NULL, P_BOOL|P_VI_DEF|P_RCLR,
1664 (char_u *)&p_macatsui, PV_NONE,
1665 {(char_u *)TRUE, (char_u *)0L}},
1666 #endif
1667 {"macmeta", "mmta", P_BOOL|P_VI_DEF,
1668 #ifdef FEAT_GUI_MACVIM
1669 (char_u *)&p_mmta, PV_MMTA,
1670 #else
1671 (char_u *)NULL, PV_NONE,
1672 #endif
1673 {(char_u *)FALSE, (char_u *)0L}},
1674 {"magic", NULL, P_BOOL|P_VI_DEF,
1675 (char_u *)&p_magic, PV_NONE,
1676 {(char_u *)TRUE, (char_u *)0L}},
1677 {"makeef", "mef", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1678 #ifdef FEAT_QUICKFIX
1679 (char_u *)&p_mef, PV_NONE,
1680 {(char_u *)"", (char_u *)0L}
1681 #else
1682 (char_u *)NULL, PV_NONE,
1683 {(char_u *)NULL, (char_u *)0L}
1684 #endif
1686 {"makeprg", "mp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1687 #ifdef FEAT_QUICKFIX
1688 (char_u *)&p_mp, PV_MP,
1689 # ifdef VMS
1690 {(char_u *)"MMS", (char_u *)0L}
1691 # else
1692 {(char_u *)"make", (char_u *)0L}
1693 # endif
1694 #else
1695 (char_u *)NULL, PV_NONE,
1696 {(char_u *)NULL, (char_u *)0L}
1697 #endif
1699 {"matchpairs", "mps", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
1700 (char_u *)&p_mps, PV_MPS,
1701 {(char_u *)"(:),{:},[:]", (char_u *)0L}},
1702 {"matchtime", "mat", P_NUM|P_VI_DEF,
1703 (char_u *)&p_mat, PV_NONE,
1704 {(char_u *)5L, (char_u *)0L}},
1705 {"maxcombine", "mco", P_NUM|P_VI_DEF,
1706 #ifdef FEAT_MBYTE
1707 (char_u *)&p_mco, PV_NONE,
1708 #else
1709 (char_u *)NULL, PV_NONE,
1710 #endif
1711 {(char_u *)2, (char_u *)0L}},
1712 {"maxfuncdepth", "mfd", P_NUM|P_VI_DEF,
1713 #ifdef FEAT_EVAL
1714 (char_u *)&p_mfd, PV_NONE,
1715 #else
1716 (char_u *)NULL, PV_NONE,
1717 #endif
1718 {(char_u *)100L, (char_u *)0L}},
1719 {"maxmapdepth", "mmd", P_NUM|P_VI_DEF,
1720 (char_u *)&p_mmd, PV_NONE,
1721 {(char_u *)1000L, (char_u *)0L}},
1722 {"maxmem", "mm", P_NUM|P_VI_DEF,
1723 (char_u *)&p_mm, PV_NONE,
1724 {(char_u *)DFLT_MAXMEM, (char_u *)0L}},
1725 {"maxmempattern","mmp", P_NUM|P_VI_DEF,
1726 (char_u *)&p_mmp, PV_NONE,
1727 {(char_u *)1000L, (char_u *)0L}},
1728 {"maxmemtot", "mmt", P_NUM|P_VI_DEF,
1729 (char_u *)&p_mmt, PV_NONE,
1730 {(char_u *)DFLT_MAXMEMTOT, (char_u *)0L}},
1731 {"menuitems", "mis", P_NUM|P_VI_DEF,
1732 #ifdef FEAT_MENU
1733 (char_u *)&p_mis, PV_NONE,
1734 #else
1735 (char_u *)NULL, PV_NONE,
1736 #endif
1737 {(char_u *)25L, (char_u *)0L}},
1738 {"mesg", NULL, P_BOOL|P_VI_DEF,
1739 (char_u *)NULL, PV_NONE,
1740 {(char_u *)FALSE, (char_u *)0L}},
1741 {"mkspellmem", "msm", P_STRING|P_VI_DEF|P_EXPAND|P_SECURE,
1742 #ifdef FEAT_SPELL
1743 (char_u *)&p_msm, PV_NONE,
1744 {(char_u *)"460000,2000,500", (char_u *)0L}
1745 #else
1746 (char_u *)NULL, PV_NONE,
1747 {(char_u *)0L, (char_u *)0L}
1748 #endif
1750 {"modeline", "ml", P_BOOL|P_VIM,
1751 (char_u *)&p_ml, PV_ML,
1752 {(char_u *)FALSE, (char_u *)TRUE}},
1753 {"modelines", "mls", P_NUM|P_VI_DEF,
1754 (char_u *)&p_mls, PV_NONE,
1755 {(char_u *)5L, (char_u *)0L}},
1756 {"modifiable", "ma", P_BOOL|P_VI_DEF|P_NOGLOB,
1757 (char_u *)&p_ma, PV_MA,
1758 {(char_u *)TRUE, (char_u *)0L}},
1759 {"modified", "mod", P_BOOL|P_NO_MKRC|P_VI_DEF|P_RSTAT,
1760 (char_u *)&p_mod, PV_MOD,
1761 {(char_u *)FALSE, (char_u *)0L}},
1762 {"more", NULL, P_BOOL|P_VIM,
1763 (char_u *)&p_more, PV_NONE,
1764 {(char_u *)FALSE, (char_u *)TRUE}},
1765 {"mouse", NULL, P_STRING|P_VI_DEF|P_FLAGLIST,
1766 (char_u *)&p_mouse, PV_NONE,
1768 #if defined(MSDOS) || defined(WIN3264)
1769 (char_u *)"a",
1770 #else
1771 (char_u *)"",
1772 #endif
1773 (char_u *)0L}},
1774 {"mousefocus", "mousef", P_BOOL|P_VI_DEF,
1775 #ifdef FEAT_GUI
1776 (char_u *)&p_mousef, PV_NONE,
1777 #else
1778 (char_u *)NULL, PV_NONE,
1779 #endif
1780 {(char_u *)FALSE, (char_u *)0L}},
1781 {"mousehide", "mh", P_BOOL|P_VI_DEF,
1782 #ifdef FEAT_GUI
1783 (char_u *)&p_mh, PV_NONE,
1784 #else
1785 (char_u *)NULL, PV_NONE,
1786 #endif
1787 {(char_u *)TRUE, (char_u *)0L}},
1788 {"mousemodel", "mousem", P_STRING|P_VI_DEF,
1789 (char_u *)&p_mousem, PV_NONE,
1791 #if defined(MSDOS) || defined(MSWIN)
1792 (char_u *)"popup",
1793 #else
1794 # if defined(MACOS)
1795 (char_u *)"popup_setpos",
1796 # else
1797 (char_u *)"extend",
1798 # endif
1799 #endif
1800 (char_u *)0L}},
1801 {"mouseshape", "mouses", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1802 #ifdef FEAT_MOUSESHAPE
1803 (char_u *)&p_mouseshape, PV_NONE,
1804 {(char_u *)"i-r:beam,s:updown,sd:udsizing,vs:leftright,vd:lrsizing,m:no,ml:up-arrow,v:rightup-arrow", (char_u *)0L}
1805 #else
1806 (char_u *)NULL, PV_NONE,
1807 {(char_u *)NULL, (char_u *)0L}
1808 #endif
1810 {"mousetime", "mouset", P_NUM|P_VI_DEF,
1811 (char_u *)&p_mouset, PV_NONE,
1812 {(char_u *)500L, (char_u *)0L}},
1813 {"mzquantum", "mzq", P_NUM,
1814 #ifdef FEAT_MZSCHEME
1815 (char_u *)&p_mzq, PV_NONE,
1816 #else
1817 (char_u *)NULL, PV_NONE,
1818 #endif
1819 {(char_u *)100L, (char_u *)100L}},
1820 {"novice", NULL, P_BOOL|P_VI_DEF,
1821 (char_u *)NULL, PV_NONE,
1822 {(char_u *)FALSE, (char_u *)0L}},
1823 {"nrformats", "nf", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
1824 (char_u *)&p_nf, PV_NF,
1825 {(char_u *)"octal,hex", (char_u *)0L}},
1826 {"number", "nu", P_BOOL|P_VI_DEF|P_RWIN,
1827 (char_u *)VAR_WIN, PV_NU,
1828 {(char_u *)FALSE, (char_u *)0L}},
1829 {"numberwidth", "nuw", P_NUM|P_RWIN|P_VIM,
1830 #ifdef FEAT_LINEBREAK
1831 (char_u *)VAR_WIN, PV_NUW,
1832 #else
1833 (char_u *)NULL, PV_NONE,
1834 #endif
1835 {(char_u *)8L, (char_u *)4L}},
1836 {"omnifunc", "ofu", P_STRING|P_ALLOCED|P_VI_DEF|P_SECURE,
1837 #ifdef FEAT_COMPL_FUNC
1838 (char_u *)&p_ofu, PV_OFU,
1839 {(char_u *)"", (char_u *)0L}
1840 #else
1841 (char_u *)NULL, PV_NONE,
1842 {(char_u *)0L, (char_u *)0L}
1843 #endif
1845 {"open", NULL, P_BOOL|P_VI_DEF,
1846 (char_u *)NULL, PV_NONE,
1847 {(char_u *)FALSE, (char_u *)0L}},
1848 {"opendevice", "odev", P_BOOL|P_VI_DEF,
1849 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
1850 (char_u *)&p_odev, PV_NONE,
1851 #else
1852 (char_u *)NULL, PV_NONE,
1853 #endif
1854 {(char_u *)FALSE, (char_u *)FALSE}
1856 {"operatorfunc", "opfunc", P_STRING|P_VI_DEF|P_SECURE,
1857 (char_u *)&p_opfunc, PV_NONE,
1858 {(char_u *)"", (char_u *)0L} },
1859 {"optimize", "opt", P_BOOL|P_VI_DEF,
1860 (char_u *)NULL, PV_NONE,
1861 {(char_u *)FALSE, (char_u *)0L}},
1862 {"osfiletype", "oft", P_STRING|P_ALLOCED|P_VI_DEF,
1863 #ifdef FEAT_OSFILETYPE
1864 (char_u *)&p_oft, PV_OFT,
1865 {(char_u *)DFLT_OFT, (char_u *)0L}
1866 #else
1867 (char_u *)NULL, PV_NONE,
1868 {(char_u *)0L, (char_u *)0L}
1869 #endif
1871 {"paragraphs", "para", P_STRING|P_VI_DEF,
1872 (char_u *)&p_para, PV_NONE,
1873 {(char_u *)"IPLPPPQPP TPHPLIPpLpItpplpipbp",
1874 (char_u *)0L}},
1875 {"paste", NULL, P_BOOL|P_VI_DEF|P_PRI_MKRC,
1876 (char_u *)&p_paste, PV_NONE,
1877 {(char_u *)FALSE, (char_u *)0L}},
1878 {"pastetoggle", "pt", P_STRING|P_VI_DEF,
1879 (char_u *)&p_pt, PV_NONE,
1880 {(char_u *)"", (char_u *)0L}},
1881 {"patchexpr", "pex", P_STRING|P_VI_DEF|P_SECURE,
1882 #if defined(FEAT_DIFF) && defined(FEAT_EVAL)
1883 (char_u *)&p_pex, PV_NONE,
1884 {(char_u *)"", (char_u *)0L}
1885 #else
1886 (char_u *)NULL, PV_NONE,
1887 {(char_u *)0L, (char_u *)0L}
1888 #endif
1890 {"patchmode", "pm", P_STRING|P_VI_DEF|P_NFNAME,
1891 (char_u *)&p_pm, PV_NONE,
1892 {(char_u *)"", (char_u *)0L}},
1893 {"path", "pa", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
1894 (char_u *)&p_path, PV_PATH,
1896 #if defined AMIGA || defined MSDOS || defined MSWIN
1897 (char_u *)".,,",
1898 #else
1899 # if defined(__EMX__)
1900 (char_u *)".,/emx/include,,",
1901 # else /* Unix, probably */
1902 (char_u *)".,/usr/include,,",
1903 # endif
1904 #endif
1905 (char_u *)0L}},
1906 {"preserveindent", "pi", P_BOOL|P_VI_DEF|P_VIM,
1907 (char_u *)&p_pi, PV_PI,
1908 {(char_u *)FALSE, (char_u *)0L}},
1909 {"previewheight", "pvh", P_NUM|P_VI_DEF,
1910 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
1911 (char_u *)&p_pvh, PV_NONE,
1912 #else
1913 (char_u *)NULL, PV_NONE,
1914 #endif
1915 {(char_u *)12L, (char_u *)0L}},
1916 {"previewwindow", "pvw", P_BOOL|P_VI_DEF|P_RSTAT|P_NOGLOB,
1917 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
1918 (char_u *)VAR_WIN, PV_PVW,
1919 #else
1920 (char_u *)NULL, PV_NONE,
1921 #endif
1922 {(char_u *)FALSE, (char_u *)0L}},
1923 {"printdevice", "pdev", P_STRING|P_VI_DEF|P_SECURE,
1924 #ifdef FEAT_PRINTER
1925 (char_u *)&p_pdev, PV_NONE,
1926 {(char_u *)"", (char_u *)0L}
1927 #else
1928 (char_u *)NULL, PV_NONE,
1929 {(char_u *)NULL, (char_u *)0L}
1930 #endif
1932 {"printencoding", "penc", P_STRING|P_VI_DEF,
1933 #ifdef FEAT_POSTSCRIPT
1934 (char_u *)&p_penc, PV_NONE,
1935 {(char_u *)"", (char_u *)0L}
1936 #else
1937 (char_u *)NULL, PV_NONE,
1938 {(char_u *)NULL, (char_u *)0L}
1939 #endif
1941 {"printexpr", "pexpr", P_STRING|P_VI_DEF,
1942 #ifdef FEAT_POSTSCRIPT
1943 (char_u *)&p_pexpr, PV_NONE,
1944 {(char_u *)"", (char_u *)0L}
1945 #else
1946 (char_u *)NULL, PV_NONE,
1947 {(char_u *)NULL, (char_u *)0L}
1948 #endif
1950 {"printfont", "pfn", P_STRING|P_VI_DEF,
1951 #ifdef FEAT_PRINTER
1952 (char_u *)&p_pfn, PV_NONE,
1954 # ifdef MSWIN
1955 (char_u *)"Courier_New:h10",
1956 # else
1957 (char_u *)"courier",
1958 # endif
1959 (char_u *)0L}
1960 #else
1961 (char_u *)NULL, PV_NONE,
1962 {(char_u *)NULL, (char_u *)0L}
1963 #endif
1965 {"printheader", "pheader", P_STRING|P_VI_DEF|P_GETTEXT,
1966 #ifdef FEAT_PRINTER
1967 (char_u *)&p_header, PV_NONE,
1968 {(char_u *)N_("%<%f%h%m%=Page %N"), (char_u *)0L}
1969 #else
1970 (char_u *)NULL, PV_NONE,
1971 {(char_u *)NULL, (char_u *)0L}
1972 #endif
1974 {"printmbcharset", "pmbcs", P_STRING|P_VI_DEF,
1975 #if defined(FEAT_POSTSCRIPT) && defined(FEAT_MBYTE)
1976 (char_u *)&p_pmcs, PV_NONE,
1977 {(char_u *)"", (char_u *)0L}
1978 #else
1979 (char_u *)NULL, PV_NONE,
1980 {(char_u *)NULL, (char_u *)0L}
1981 #endif
1983 {"printmbfont", "pmbfn", P_STRING|P_VI_DEF,
1984 #if defined(FEAT_POSTSCRIPT) && defined(FEAT_MBYTE)
1985 (char_u *)&p_pmfn, PV_NONE,
1986 {(char_u *)"", (char_u *)0L}
1987 #else
1988 (char_u *)NULL, PV_NONE,
1989 {(char_u *)NULL, (char_u *)0L}
1990 #endif
1992 {"printoptions", "popt", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1993 #ifdef FEAT_PRINTER
1994 (char_u *)&p_popt, PV_NONE,
1995 {(char_u *)"", (char_u *)0L}
1996 #else
1997 (char_u *)NULL, PV_NONE,
1998 {(char_u *)NULL, (char_u *)0L}
1999 #endif
2001 {"prompt", NULL, P_BOOL|P_VI_DEF,
2002 (char_u *)&p_prompt, PV_NONE,
2003 {(char_u *)TRUE, (char_u *)0L}},
2004 {"pumheight", "ph", P_NUM|P_VI_DEF,
2005 #ifdef FEAT_INS_EXPAND
2006 (char_u *)&p_ph, PV_NONE,
2007 #else
2008 (char_u *)NULL, PV_NONE,
2009 #endif
2010 {(char_u *)0L, (char_u *)0L}},
2011 {"quoteescape", "qe", P_STRING|P_ALLOCED|P_VI_DEF,
2012 #ifdef FEAT_TEXTOBJ
2013 (char_u *)&p_qe, PV_QE,
2014 {(char_u *)"\\", (char_u *)0L}
2015 #else
2016 (char_u *)NULL, PV_NONE,
2017 {(char_u *)NULL, (char_u *)0L}
2018 #endif
2020 {"readonly", "ro", P_BOOL|P_VI_DEF|P_RSTAT|P_NOGLOB,
2021 (char_u *)&p_ro, PV_RO,
2022 {(char_u *)FALSE, (char_u *)0L}},
2023 {"redraw", NULL, P_BOOL|P_VI_DEF,
2024 (char_u *)NULL, PV_NONE,
2025 {(char_u *)FALSE, (char_u *)0L}},
2026 {"redrawtime", "rdt", P_NUM|P_VI_DEF,
2027 #ifdef FEAT_RELTIME
2028 (char_u *)&p_rdt, PV_NONE,
2029 #else
2030 (char_u *)NULL, PV_NONE,
2031 #endif
2032 {(char_u *)2000L, (char_u *)0L}},
2033 {"remap", NULL, P_BOOL|P_VI_DEF,
2034 (char_u *)&p_remap, PV_NONE,
2035 {(char_u *)TRUE, (char_u *)0L}},
2036 {"report", NULL, P_NUM|P_VI_DEF,
2037 (char_u *)&p_report, PV_NONE,
2038 {(char_u *)2L, (char_u *)0L}},
2039 {"restorescreen", "rs", P_BOOL|P_VI_DEF,
2040 #ifdef WIN3264
2041 (char_u *)&p_rs, PV_NONE,
2042 #else
2043 (char_u *)NULL, PV_NONE,
2044 #endif
2045 {(char_u *)TRUE, (char_u *)0L}},
2046 {"revins", "ri", P_BOOL|P_VI_DEF|P_VIM,
2047 #ifdef FEAT_RIGHTLEFT
2048 (char_u *)&p_ri, PV_NONE,
2049 #else
2050 (char_u *)NULL, PV_NONE,
2051 #endif
2052 {(char_u *)FALSE, (char_u *)0L}},
2053 {"rightleft", "rl", P_BOOL|P_VI_DEF|P_RWIN,
2054 #ifdef FEAT_RIGHTLEFT
2055 (char_u *)VAR_WIN, PV_RL,
2056 #else
2057 (char_u *)NULL, PV_NONE,
2058 #endif
2059 {(char_u *)FALSE, (char_u *)0L}},
2060 {"rightleftcmd", "rlc", P_STRING|P_ALLOCED|P_VI_DEF|P_RWIN,
2061 #ifdef FEAT_RIGHTLEFT
2062 (char_u *)VAR_WIN, PV_RLC,
2063 {(char_u *)"search", (char_u *)NULL}
2064 #else
2065 (char_u *)NULL, PV_NONE,
2066 {(char_u *)NULL, (char_u *)0L}
2067 #endif
2069 {"ruler", "ru", P_BOOL|P_VI_DEF|P_VIM|P_RSTAT,
2070 #ifdef FEAT_CMDL_INFO
2071 (char_u *)&p_ru, PV_NONE,
2072 #else
2073 (char_u *)NULL, PV_NONE,
2074 #endif
2075 {(char_u *)FALSE, (char_u *)0L}},
2076 {"rulerformat", "ruf", P_STRING|P_VI_DEF|P_ALLOCED|P_RSTAT,
2077 #ifdef FEAT_STL_OPT
2078 (char_u *)&p_ruf, PV_NONE,
2079 #else
2080 (char_u *)NULL, PV_NONE,
2081 #endif
2082 {(char_u *)"", (char_u *)0L}},
2083 {"runtimepath", "rtp", P_STRING|P_VI_DEF|P_EXPAND|P_COMMA|P_NODUP|P_SECURE,
2084 (char_u *)&p_rtp, PV_NONE,
2085 {(char_u *)DFLT_RUNTIMEPATH, (char_u *)0L}},
2086 {"scroll", "scr", P_NUM|P_NO_MKRC|P_VI_DEF,
2087 (char_u *)VAR_WIN, PV_SCROLL,
2088 {(char_u *)12L, (char_u *)0L}},
2089 {"scrollbind", "scb", P_BOOL|P_VI_DEF,
2090 #ifdef FEAT_SCROLLBIND
2091 (char_u *)VAR_WIN, PV_SCBIND,
2092 #else
2093 (char_u *)NULL, PV_NONE,
2094 #endif
2095 {(char_u *)FALSE, (char_u *)0L}},
2096 {"scrolljump", "sj", P_NUM|P_VI_DEF|P_VIM,
2097 (char_u *)&p_sj, PV_NONE,
2098 {(char_u *)1L, (char_u *)0L}},
2099 {"scrolloff", "so", P_NUM|P_VI_DEF|P_VIM|P_RALL,
2100 (char_u *)&p_so, PV_NONE,
2101 {(char_u *)0L, (char_u *)0L}},
2102 {"scrollopt", "sbo", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2103 #ifdef FEAT_SCROLLBIND
2104 (char_u *)&p_sbo, PV_NONE,
2105 {(char_u *)"ver,jump", (char_u *)0L}
2106 #else
2107 (char_u *)NULL, PV_NONE,
2108 {(char_u *)0L, (char_u *)0L}
2109 #endif
2111 {"sections", "sect", P_STRING|P_VI_DEF,
2112 (char_u *)&p_sections, PV_NONE,
2113 {(char_u *)"SHNHH HUnhsh", (char_u *)0L}},
2114 {"secure", NULL, P_BOOL|P_VI_DEF|P_SECURE,
2115 (char_u *)&p_secure, PV_NONE,
2116 {(char_u *)FALSE, (char_u *)0L}},
2117 {"selection", "sel", P_STRING|P_VI_DEF,
2118 #ifdef FEAT_VISUAL
2119 (char_u *)&p_sel, PV_NONE,
2120 #else
2121 (char_u *)NULL, PV_NONE,
2122 #endif
2123 {(char_u *)"inclusive", (char_u *)0L}},
2124 {"selectmode", "slm", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2125 #ifdef FEAT_VISUAL
2126 (char_u *)&p_slm, PV_NONE,
2127 #else
2128 (char_u *)NULL, PV_NONE,
2129 #endif
2130 {(char_u *)"", (char_u *)0L}},
2131 {"sessionoptions", "ssop", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2132 #ifdef FEAT_SESSION
2133 (char_u *)&p_ssop, PV_NONE,
2134 {(char_u *)"blank,buffers,curdir,folds,help,options,tabpages,winsize",
2135 (char_u *)0L}
2136 #else
2137 (char_u *)NULL, PV_NONE,
2138 {(char_u *)0L, (char_u *)0L}
2139 #endif
2141 {"shell", "sh", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
2142 (char_u *)&p_sh, PV_NONE,
2144 #ifdef VMS
2145 (char_u *)"-",
2146 #else
2147 # if defined(MSDOS)
2148 (char_u *)"command",
2149 # else
2150 # if defined(WIN16)
2151 (char_u *)"command.com",
2152 # else
2153 # if defined(WIN3264)
2154 (char_u *)"", /* set in set_init_1() */
2155 # else
2156 # if defined(OS2)
2157 (char_u *)"cmd.exe",
2158 # else
2159 # if defined(ARCHIE)
2160 (char_u *)"gos",
2161 # else
2162 (char_u *)"sh",
2163 # endif
2164 # endif
2165 # endif
2166 # endif
2167 # endif
2168 #endif /* VMS */
2169 (char_u *)0L}},
2170 {"shellcmdflag","shcf", P_STRING|P_VI_DEF|P_SECURE,
2171 (char_u *)&p_shcf, PV_NONE,
2173 #if defined(MSDOS) || defined(MSWIN)
2174 (char_u *)"/c",
2175 #else
2176 # if defined(OS2)
2177 (char_u *)"/c",
2178 # else
2179 (char_u *)"-c",
2180 # endif
2181 #endif
2182 (char_u *)0L}},
2183 {"shellpipe", "sp", P_STRING|P_VI_DEF|P_SECURE,
2184 #ifdef FEAT_QUICKFIX
2185 (char_u *)&p_sp, PV_NONE,
2187 #if defined(UNIX) || defined(OS2)
2188 # ifdef ARCHIE
2189 (char_u *)"2>",
2190 # else
2191 (char_u *)"| tee",
2192 # endif
2193 #else
2194 (char_u *)">",
2195 #endif
2196 (char_u *)0L}
2197 #else
2198 (char_u *)NULL, PV_NONE,
2199 {(char_u *)0L, (char_u *)0L}
2200 #endif
2202 {"shellquote", "shq", P_STRING|P_VI_DEF|P_SECURE,
2203 (char_u *)&p_shq, PV_NONE,
2204 {(char_u *)"", (char_u *)0L}},
2205 {"shellredir", "srr", P_STRING|P_VI_DEF|P_SECURE,
2206 (char_u *)&p_srr, PV_NONE,
2207 {(char_u *)">", (char_u *)0L}},
2208 {"shellslash", "ssl", P_BOOL|P_VI_DEF,
2209 #ifdef BACKSLASH_IN_FILENAME
2210 (char_u *)&p_ssl, PV_NONE,
2211 #else
2212 (char_u *)NULL, PV_NONE,
2213 #endif
2214 {(char_u *)FALSE, (char_u *)0L}},
2215 {"shelltemp", "stmp", P_BOOL,
2216 (char_u *)&p_stmp, PV_NONE,
2217 {(char_u *)FALSE, (char_u *)TRUE}},
2218 {"shelltype", "st", P_NUM|P_VI_DEF,
2219 #ifdef AMIGA
2220 (char_u *)&p_st, PV_NONE,
2221 #else
2222 (char_u *)NULL, PV_NONE,
2223 #endif
2224 {(char_u *)0L, (char_u *)0L}},
2225 {"shellxquote", "sxq", P_STRING|P_VI_DEF|P_SECURE,
2226 (char_u *)&p_sxq, PV_NONE,
2228 #if defined(UNIX) && defined(USE_SYSTEM) && !defined(__EMX__)
2229 (char_u *)"\"",
2230 #else
2231 (char_u *)"",
2232 #endif
2233 (char_u *)0L}},
2234 {"shiftround", "sr", P_BOOL|P_VI_DEF|P_VIM,
2235 (char_u *)&p_sr, PV_NONE,
2236 {(char_u *)FALSE, (char_u *)0L}},
2237 {"shiftwidth", "sw", P_NUM|P_VI_DEF,
2238 (char_u *)&p_sw, PV_SW,
2239 {(char_u *)8L, (char_u *)0L}},
2240 {"shortmess", "shm", P_STRING|P_VIM|P_FLAGLIST,
2241 (char_u *)&p_shm, PV_NONE,
2242 {(char_u *)"", (char_u *)"filnxtToO"}},
2243 {"shortname", "sn", P_BOOL|P_VI_DEF,
2244 #ifdef SHORT_FNAME
2245 (char_u *)NULL, PV_NONE,
2246 #else
2247 (char_u *)&p_sn, PV_SN,
2248 #endif
2249 {(char_u *)FALSE, (char_u *)0L}},
2250 {"showbreak", "sbr", P_STRING|P_VI_DEF|P_RALL,
2251 #ifdef FEAT_LINEBREAK
2252 (char_u *)&p_sbr, PV_NONE,
2253 #else
2254 (char_u *)NULL, PV_NONE,
2255 #endif
2256 {(char_u *)"", (char_u *)0L}},
2257 {"showcmd", "sc", P_BOOL|P_VIM,
2258 #ifdef FEAT_CMDL_INFO
2259 (char_u *)&p_sc, PV_NONE,
2260 #else
2261 (char_u *)NULL, PV_NONE,
2262 #endif
2263 {(char_u *)FALSE,
2264 #ifdef UNIX
2265 (char_u *)FALSE
2266 #else
2267 (char_u *)TRUE
2268 #endif
2270 {"showfulltag", "sft", P_BOOL|P_VI_DEF,
2271 (char_u *)&p_sft, PV_NONE,
2272 {(char_u *)FALSE, (char_u *)0L}},
2273 {"showmatch", "sm", P_BOOL|P_VI_DEF,
2274 (char_u *)&p_sm, PV_NONE,
2275 {(char_u *)FALSE, (char_u *)0L}},
2276 {"showmode", "smd", P_BOOL|P_VIM,
2277 (char_u *)&p_smd, PV_NONE,
2278 {(char_u *)FALSE, (char_u *)TRUE}},
2279 {"showtabline", "stal", P_NUM|P_VI_DEF|P_RALL,
2280 #ifdef FEAT_WINDOWS
2281 (char_u *)&p_stal, PV_NONE,
2282 #else
2283 (char_u *)NULL, PV_NONE,
2284 #endif
2285 {(char_u *)1L, (char_u *)0L}},
2286 {"sidescroll", "ss", P_NUM|P_VI_DEF,
2287 (char_u *)&p_ss, PV_NONE,
2288 {(char_u *)0L, (char_u *)0L}},
2289 {"sidescrolloff", "siso", P_NUM|P_VI_DEF|P_VIM|P_RBUF,
2290 (char_u *)&p_siso, PV_NONE,
2291 {(char_u *)0L, (char_u *)0L}},
2292 {"slowopen", "slow", P_BOOL|P_VI_DEF,
2293 (char_u *)NULL, PV_NONE,
2294 {(char_u *)FALSE, (char_u *)0L}},
2295 {"smartcase", "scs", P_BOOL|P_VI_DEF|P_VIM,
2296 (char_u *)&p_scs, PV_NONE,
2297 {(char_u *)FALSE, (char_u *)0L}},
2298 {"smartindent", "si", P_BOOL|P_VI_DEF|P_VIM,
2299 #ifdef FEAT_SMARTINDENT
2300 (char_u *)&p_si, PV_SI,
2301 #else
2302 (char_u *)NULL, PV_NONE,
2303 #endif
2304 {(char_u *)FALSE, (char_u *)0L}},
2305 {"smarttab", "sta", P_BOOL|P_VI_DEF|P_VIM,
2306 (char_u *)&p_sta, PV_NONE,
2307 {(char_u *)FALSE, (char_u *)0L}},
2308 {"softtabstop", "sts", P_NUM|P_VI_DEF|P_VIM,
2309 (char_u *)&p_sts, PV_STS,
2310 {(char_u *)0L, (char_u *)0L}},
2311 {"sourceany", NULL, P_BOOL|P_VI_DEF,
2312 (char_u *)NULL, PV_NONE,
2313 {(char_u *)FALSE, (char_u *)0L}},
2314 {"spell", NULL, P_BOOL|P_VI_DEF|P_RWIN,
2315 #ifdef FEAT_SPELL
2316 (char_u *)VAR_WIN, PV_SPELL,
2317 #else
2318 (char_u *)NULL, PV_NONE,
2319 #endif
2320 {(char_u *)FALSE, (char_u *)0L}},
2321 {"spellcapcheck", "spc", P_STRING|P_ALLOCED|P_VI_DEF|P_RBUF,
2322 #ifdef FEAT_SPELL
2323 (char_u *)&p_spc, PV_SPC,
2324 {(char_u *)"[.?!]\\_[\\])'\" ]\\+", (char_u *)0L}
2325 #else
2326 (char_u *)NULL, PV_NONE,
2327 {(char_u *)0L, (char_u *)0L}
2328 #endif
2330 {"spellfile", "spf", P_STRING|P_EXPAND|P_ALLOCED|P_VI_DEF|P_SECURE|P_COMMA,
2331 #ifdef FEAT_SPELL
2332 (char_u *)&p_spf, PV_SPF,
2333 {(char_u *)"", (char_u *)0L}
2334 #else
2335 (char_u *)NULL, PV_NONE,
2336 {(char_u *)0L, (char_u *)0L}
2337 #endif
2339 {"spelllang", "spl", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_RBUF|P_EXPAND,
2340 #ifdef FEAT_SPELL
2341 (char_u *)&p_spl, PV_SPL,
2342 {(char_u *)"en", (char_u *)0L}
2343 #else
2344 (char_u *)NULL, PV_NONE,
2345 {(char_u *)0L, (char_u *)0L}
2346 #endif
2348 {"spellsuggest", "sps", P_STRING|P_VI_DEF|P_EXPAND|P_SECURE|P_COMMA,
2349 #ifdef FEAT_SPELL
2350 (char_u *)&p_sps, PV_NONE,
2351 {(char_u *)"best", (char_u *)0L}
2352 #else
2353 (char_u *)NULL, PV_NONE,
2354 {(char_u *)0L, (char_u *)0L}
2355 #endif
2357 {"splitbelow", "sb", P_BOOL|P_VI_DEF,
2358 #ifdef FEAT_WINDOWS
2359 (char_u *)&p_sb, PV_NONE,
2360 #else
2361 (char_u *)NULL, PV_NONE,
2362 #endif
2363 {(char_u *)FALSE, (char_u *)0L}},
2364 {"splitright", "spr", P_BOOL|P_VI_DEF,
2365 #ifdef FEAT_VERTSPLIT
2366 (char_u *)&p_spr, PV_NONE,
2367 #else
2368 (char_u *)NULL, PV_NONE,
2369 #endif
2370 {(char_u *)FALSE, (char_u *)0L}},
2371 {"startofline", "sol", P_BOOL|P_VI_DEF|P_VIM,
2372 (char_u *)&p_sol, PV_NONE,
2373 {(char_u *)TRUE, (char_u *)0L}},
2374 {"statusline" ,"stl", P_STRING|P_VI_DEF|P_ALLOCED|P_RSTAT,
2375 #ifdef FEAT_STL_OPT
2376 (char_u *)&p_stl, PV_STL,
2377 #else
2378 (char_u *)NULL, PV_NONE,
2379 #endif
2380 {(char_u *)"", (char_u *)0L}},
2381 {"suffixes", "su", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2382 (char_u *)&p_su, PV_NONE,
2383 {(char_u *)".bak,~,.o,.h,.info,.swp,.obj",
2384 (char_u *)0L}},
2385 {"suffixesadd", "sua", P_STRING|P_VI_DEF|P_ALLOCED|P_COMMA|P_NODUP,
2386 #ifdef FEAT_SEARCHPATH
2387 (char_u *)&p_sua, PV_SUA,
2388 {(char_u *)"", (char_u *)0L}
2389 #else
2390 (char_u *)NULL, PV_NONE,
2391 {(char_u *)0L, (char_u *)0L}
2392 #endif
2394 {"swapfile", "swf", P_BOOL|P_VI_DEF|P_RSTAT,
2395 (char_u *)&p_swf, PV_SWF,
2396 {(char_u *)TRUE, (char_u *)0L}},
2397 {"swapsync", "sws", P_STRING|P_VI_DEF,
2398 (char_u *)&p_sws, PV_NONE,
2399 {(char_u *)"fsync", (char_u *)0L}},
2400 {"switchbuf", "swb", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2401 (char_u *)&p_swb, PV_NONE,
2402 {(char_u *)"", (char_u *)0L}},
2403 {"synmaxcol", "smc", P_NUM|P_VI_DEF|P_RBUF,
2404 #ifdef FEAT_SYN_HL
2405 (char_u *)&p_smc, PV_SMC,
2406 {(char_u *)3000L, (char_u *)0L}
2407 #else
2408 (char_u *)NULL, PV_NONE,
2409 {(char_u *)0L, (char_u *)0L}
2410 #endif
2412 {"syntax", "syn", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB|P_NFNAME,
2413 #ifdef FEAT_SYN_HL
2414 (char_u *)&p_syn, PV_SYN,
2415 {(char_u *)"", (char_u *)0L}
2416 #else
2417 (char_u *)NULL, PV_NONE,
2418 {(char_u *)0L, (char_u *)0L}
2419 #endif
2421 {"tabline", "tal", P_STRING|P_VI_DEF|P_RALL,
2422 #ifdef FEAT_STL_OPT
2423 (char_u *)&p_tal, PV_NONE,
2424 #else
2425 (char_u *)NULL, PV_NONE,
2426 #endif
2427 {(char_u *)"", (char_u *)0L}},
2428 {"tabpagemax", "tpm", P_NUM|P_VI_DEF,
2429 #ifdef FEAT_WINDOWS
2430 (char_u *)&p_tpm, PV_NONE,
2431 #else
2432 (char_u *)NULL, PV_NONE,
2433 #endif
2434 {(char_u *)10L, (char_u *)0L}},
2435 {"tabstop", "ts", P_NUM|P_VI_DEF|P_RBUF,
2436 (char_u *)&p_ts, PV_TS,
2437 {(char_u *)8L, (char_u *)0L}},
2438 {"tagbsearch", "tbs", P_BOOL|P_VI_DEF,
2439 (char_u *)&p_tbs, PV_NONE,
2440 #ifdef VMS /* binary searching doesn't appear to work on VMS */
2441 {(char_u *)0L, (char_u *)0L}
2442 #else
2443 {(char_u *)TRUE, (char_u *)0L}
2444 #endif
2446 {"taglength", "tl", P_NUM|P_VI_DEF,
2447 (char_u *)&p_tl, PV_NONE,
2448 {(char_u *)0L, (char_u *)0L}},
2449 {"tagrelative", "tr", P_BOOL|P_VIM,
2450 (char_u *)&p_tr, PV_NONE,
2451 {(char_u *)FALSE, (char_u *)TRUE}},
2452 {"tags", "tag", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
2453 (char_u *)&p_tags, PV_TAGS,
2455 #if defined(FEAT_EMACS_TAGS) && !defined(CASE_INSENSITIVE_FILENAME)
2456 (char_u *)"./tags,./TAGS,tags,TAGS",
2457 #else
2458 (char_u *)"./tags,tags",
2459 #endif
2460 (char_u *)0L}},
2461 {"tagstack", "tgst", P_BOOL|P_VI_DEF,
2462 (char_u *)&p_tgst, PV_NONE,
2463 {(char_u *)TRUE, (char_u *)0L}},
2464 {"term", NULL, P_STRING|P_EXPAND|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RALL,
2465 (char_u *)&T_NAME, PV_NONE,
2466 {(char_u *)"", (char_u *)0L}},
2467 {"termbidi", "tbidi", P_BOOL|P_VI_DEF,
2468 #ifdef FEAT_ARABIC
2469 (char_u *)&p_tbidi, PV_NONE,
2470 #else
2471 (char_u *)NULL, PV_NONE,
2472 #endif
2473 {(char_u *)FALSE, (char_u *)0L}},
2474 {"termencoding", "tenc", P_STRING|P_VI_DEF|P_RCLR,
2475 #ifdef FEAT_MBYTE
2476 (char_u *)&p_tenc, PV_NONE,
2477 {(char_u *)"", (char_u *)0L}
2478 #else
2479 (char_u *)NULL, PV_NONE,
2480 {(char_u *)0L, (char_u *)0L}
2481 #endif
2483 {"terse", NULL, P_BOOL|P_VI_DEF,
2484 (char_u *)&p_terse, PV_NONE,
2485 {(char_u *)FALSE, (char_u *)0L}},
2486 {"textauto", "ta", P_BOOL|P_VIM,
2487 (char_u *)&p_ta, PV_NONE,
2488 {(char_u *)DFLT_TEXTAUTO, (char_u *)TRUE}},
2489 {"textmode", "tx", P_BOOL|P_VI_DEF|P_NO_MKRC,
2490 (char_u *)&p_tx, PV_TX,
2492 #ifdef USE_CRNL
2493 (char_u *)TRUE,
2494 #else
2495 (char_u *)FALSE,
2496 #endif
2497 (char_u *)0L}},
2498 {"textwidth", "tw", P_NUM|P_VI_DEF|P_VIM,
2499 (char_u *)&p_tw, PV_TW,
2500 {(char_u *)0L, (char_u *)0L}},
2501 {"thesaurus", "tsr", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
2502 #ifdef FEAT_INS_EXPAND
2503 (char_u *)&p_tsr, PV_TSR,
2504 #else
2505 (char_u *)NULL, PV_NONE,
2506 #endif
2507 {(char_u *)"", (char_u *)0L}},
2508 {"tildeop", "top", P_BOOL|P_VI_DEF|P_VIM,
2509 (char_u *)&p_to, PV_NONE,
2510 {(char_u *)FALSE, (char_u *)0L}},
2511 {"timeout", "to", P_BOOL|P_VI_DEF,
2512 (char_u *)&p_timeout, PV_NONE,
2513 {(char_u *)TRUE, (char_u *)0L}},
2514 {"timeoutlen", "tm", P_NUM|P_VI_DEF,
2515 (char_u *)&p_tm, PV_NONE,
2516 {(char_u *)1000L, (char_u *)0L}},
2517 {"title", NULL, P_BOOL|P_VI_DEF,
2518 #ifdef FEAT_TITLE
2519 (char_u *)&p_title, PV_NONE,
2520 #else
2521 (char_u *)NULL, PV_NONE,
2522 #endif
2523 {(char_u *)FALSE, (char_u *)0L}},
2524 {"titlelen", NULL, P_NUM|P_VI_DEF,
2525 #ifdef FEAT_TITLE
2526 (char_u *)&p_titlelen, PV_NONE,
2527 #else
2528 (char_u *)NULL, PV_NONE,
2529 #endif
2530 {(char_u *)85L, (char_u *)0L}},
2531 {"titleold", NULL, P_STRING|P_VI_DEF|P_GETTEXT|P_SECURE|P_NO_MKRC,
2532 #ifdef FEAT_TITLE
2533 (char_u *)&p_titleold, PV_NONE,
2534 {(char_u *)N_("Thanks for flying Vim"),
2535 (char_u *)0L}
2536 #else
2537 (char_u *)NULL, PV_NONE,
2538 {(char_u *)0L, (char_u *)0L}
2539 #endif
2541 {"titlestring", NULL, P_STRING|P_VI_DEF,
2542 #ifdef FEAT_TITLE
2543 (char_u *)&p_titlestring, PV_NONE,
2544 #else
2545 (char_u *)NULL, PV_NONE,
2546 #endif
2547 {(char_u *)"", (char_u *)0L}},
2548 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
2549 {"toolbar", "tb", P_STRING|P_COMMA|P_VI_DEF|P_NODUP,
2550 (char_u *)&p_toolbar, PV_NONE,
2551 {(char_u *)"icons,tooltips", (char_u *)0L}},
2552 #endif
2553 #if defined(FEAT_TOOLBAR) && ((defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)) \
2554 || defined(FEAT_GUI_MACVIM))
2555 {"toolbariconsize", "tbis", P_STRING|P_VI_DEF,
2556 (char_u *)&p_tbis, PV_NONE,
2557 {(char_u *)"small", (char_u *)0L}},
2558 #endif
2559 {"transparency", "transp", P_NUM|P_VIM|P_RCLR,
2560 #ifdef FEAT_TRANSPARENCY
2561 (char_u *)&p_transp, PV_NONE,
2562 #else
2563 (char_u *)NULL, PV_NONE,
2564 #endif
2565 {(char_u *)0L, (char_u *)0L} },
2566 {"ttimeout", NULL, P_BOOL|P_VI_DEF|P_VIM,
2567 (char_u *)&p_ttimeout, PV_NONE,
2568 {(char_u *)FALSE, (char_u *)0L}},
2569 {"ttimeoutlen", "ttm", P_NUM|P_VI_DEF,
2570 (char_u *)&p_ttm, PV_NONE,
2571 {(char_u *)-1L, (char_u *)0L}},
2572 {"ttybuiltin", "tbi", P_BOOL|P_VI_DEF,
2573 (char_u *)&p_tbi, PV_NONE,
2574 {(char_u *)TRUE, (char_u *)0L}},
2575 {"ttyfast", "tf", P_BOOL|P_NO_MKRC|P_VI_DEF,
2576 (char_u *)&p_tf, PV_NONE,
2577 {(char_u *)FALSE, (char_u *)0L}},
2578 {"ttymouse", "ttym", P_STRING|P_NODEFAULT|P_NO_MKRC|P_VI_DEF,
2579 #if defined(FEAT_MOUSE) && (defined(UNIX) || defined(VMS))
2580 (char_u *)&p_ttym, PV_NONE,
2581 #else
2582 (char_u *)NULL, PV_NONE,
2583 #endif
2584 {(char_u *)"", (char_u *)0L}},
2585 {"ttyscroll", "tsl", P_NUM|P_VI_DEF,
2586 (char_u *)&p_ttyscroll, PV_NONE,
2587 {(char_u *)999L, (char_u *)0L}},
2588 {"ttytype", "tty", P_STRING|P_EXPAND|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RALL,
2589 (char_u *)&T_NAME, PV_NONE,
2590 {(char_u *)"", (char_u *)0L}},
2591 {"undolevels", "ul", P_NUM|P_VI_DEF,
2592 (char_u *)&p_ul, PV_NONE,
2594 #if defined(UNIX) || defined(WIN3264) || defined(OS2) || defined(VMS)
2595 (char_u *)1000L,
2596 #else
2597 (char_u *)100L,
2598 #endif
2599 (char_u *)0L}},
2600 {"updatecount", "uc", P_NUM|P_VI_DEF,
2601 (char_u *)&p_uc, PV_NONE,
2602 {(char_u *)200L, (char_u *)0L}},
2603 {"updatetime", "ut", P_NUM|P_VI_DEF,
2604 (char_u *)&p_ut, PV_NONE,
2605 {(char_u *)4000L, (char_u *)0L}},
2606 {"verbose", "vbs", P_NUM|P_VI_DEF,
2607 (char_u *)&p_verbose, PV_NONE,
2608 {(char_u *)0L, (char_u *)0L}},
2609 {"verbosefile", "vfile", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
2610 (char_u *)&p_vfile, PV_NONE,
2611 {(char_u *)"", (char_u *)0L}},
2612 {"viewdir", "vdir", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
2613 #ifdef FEAT_SESSION
2614 (char_u *)&p_vdir, PV_NONE,
2615 {(char_u *)DFLT_VDIR, (char_u *)0L}
2616 #else
2617 (char_u *)NULL, PV_NONE,
2618 {(char_u *)0L, (char_u *)0L}
2619 #endif
2621 {"viewoptions", "vop", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2622 #ifdef FEAT_SESSION
2623 (char_u *)&p_vop, PV_NONE,
2624 {(char_u *)"folds,options,cursor", (char_u *)0L}
2625 #else
2626 (char_u *)NULL, PV_NONE,
2627 {(char_u *)0L, (char_u *)0L}
2628 #endif
2630 {"viminfo", "vi", P_STRING|P_COMMA|P_NODUP|P_SECURE,
2631 #ifdef FEAT_VIMINFO
2632 (char_u *)&p_viminfo, PV_NONE,
2633 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
2634 {(char_u *)"", (char_u *)"'100,<50,s10,h,rA:,rB:"}
2635 #else
2636 # ifdef AMIGA
2637 {(char_u *)"",
2638 (char_u *)"'100,<50,s10,h,rdf0:,rdf1:,rdf2:"}
2639 # else
2640 {(char_u *)"", (char_u *)"'100,<50,s10,h"}
2641 # endif
2642 #endif
2643 #else
2644 (char_u *)NULL, PV_NONE,
2645 {(char_u *)0L, (char_u *)0L}
2646 #endif
2648 {"virtualedit", "ve", P_STRING|P_COMMA|P_NODUP|P_VI_DEF|P_VIM,
2649 #ifdef FEAT_VIRTUALEDIT
2650 (char_u *)&p_ve, PV_NONE,
2651 {(char_u *)"", (char_u *)""}
2652 #else
2653 (char_u *)NULL, PV_NONE,
2654 {(char_u *)0L, (char_u *)0L}
2655 #endif
2657 {"visualbell", "vb", P_BOOL|P_VI_DEF,
2658 (char_u *)&p_vb, PV_NONE,
2659 {(char_u *)FALSE, (char_u *)0L}},
2660 {"w300", NULL, P_NUM|P_VI_DEF,
2661 (char_u *)NULL, PV_NONE,
2662 {(char_u *)0L, (char_u *)0L}},
2663 {"w1200", NULL, P_NUM|P_VI_DEF,
2664 (char_u *)NULL, PV_NONE,
2665 {(char_u *)0L, (char_u *)0L}},
2666 {"w9600", NULL, P_NUM|P_VI_DEF,
2667 (char_u *)NULL, PV_NONE,
2668 {(char_u *)0L, (char_u *)0L}},
2669 {"warn", NULL, P_BOOL|P_VI_DEF,
2670 (char_u *)&p_warn, PV_NONE,
2671 {(char_u *)TRUE, (char_u *)0L}},
2672 {"weirdinvert", "wiv", P_BOOL|P_VI_DEF|P_RCLR,
2673 (char_u *)&p_wiv, PV_NONE,
2674 {(char_u *)FALSE, (char_u *)0L}},
2675 {"whichwrap", "ww", P_STRING|P_VIM|P_COMMA|P_FLAGLIST,
2676 (char_u *)&p_ww, PV_NONE,
2677 {(char_u *)"", (char_u *)"b,s"}},
2678 {"wildchar", "wc", P_NUM|P_VIM,
2679 (char_u *)&p_wc, PV_NONE,
2680 {(char_u *)(long)Ctrl_E, (char_u *)(long)TAB}},
2681 {"wildcharm", "wcm", P_NUM|P_VI_DEF,
2682 (char_u *)&p_wcm, PV_NONE,
2683 {(char_u *)0L, (char_u *)0L}},
2684 {"wildignore", "wig", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2685 #ifdef FEAT_WILDIGN
2686 (char_u *)&p_wig, PV_NONE,
2687 #else
2688 (char_u *)NULL, PV_NONE,
2689 #endif
2690 {(char_u *)"", (char_u *)0L}},
2691 {"wildmenu", "wmnu", P_BOOL|P_VI_DEF,
2692 #ifdef FEAT_WILDMENU
2693 (char_u *)&p_wmnu, PV_NONE,
2694 #else
2695 (char_u *)NULL, PV_NONE,
2696 #endif
2697 {(char_u *)FALSE, (char_u *)0L}},
2698 {"wildmode", "wim", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2699 (char_u *)&p_wim, PV_NONE,
2700 {(char_u *)"full", (char_u *)0L}},
2701 {"wildoptions", "wop", P_STRING|P_VI_DEF,
2702 #ifdef FEAT_CMDL_COMPL
2703 (char_u *)&p_wop, PV_NONE,
2704 {(char_u *)"", (char_u *)0L}
2705 #else
2706 (char_u *)NULL, PV_NONE,
2707 {(char_u *)NULL, (char_u *)0L}
2708 #endif
2710 {"winaltkeys", "wak", P_STRING|P_VI_DEF,
2711 #ifdef FEAT_WAK
2712 (char_u *)&p_wak, PV_NONE,
2713 {(char_u *)"menu", (char_u *)0L}
2714 #else
2715 (char_u *)NULL, PV_NONE,
2716 {(char_u *)NULL, (char_u *)0L}
2717 #endif
2719 {"window", "wi", P_NUM|P_VI_DEF,
2720 (char_u *)&p_window, PV_NONE,
2721 {(char_u *)0L, (char_u *)0L}},
2722 {"winheight", "wh", P_NUM|P_VI_DEF,
2723 #ifdef FEAT_WINDOWS
2724 (char_u *)&p_wh, PV_NONE,
2725 #else
2726 (char_u *)NULL, PV_NONE,
2727 #endif
2728 {(char_u *)1L, (char_u *)0L}},
2729 {"winfixheight", "wfh", P_BOOL|P_VI_DEF|P_RSTAT,
2730 #ifdef FEAT_WINDOWS
2731 (char_u *)VAR_WIN, PV_WFH,
2732 #else
2733 (char_u *)NULL, PV_NONE,
2734 #endif
2735 {(char_u *)FALSE, (char_u *)0L}},
2736 {"winfixwidth", "wfw", P_BOOL|P_VI_DEF|P_RSTAT,
2737 #ifdef FEAT_VERTSPLIT
2738 (char_u *)VAR_WIN, PV_WFW,
2739 #else
2740 (char_u *)NULL, PV_NONE,
2741 #endif
2742 {(char_u *)FALSE, (char_u *)0L}},
2743 {"winminheight", "wmh", P_NUM|P_VI_DEF,
2744 #ifdef FEAT_WINDOWS
2745 (char_u *)&p_wmh, PV_NONE,
2746 #else
2747 (char_u *)NULL, PV_NONE,
2748 #endif
2749 {(char_u *)1L, (char_u *)0L}},
2750 {"winminwidth", "wmw", P_NUM|P_VI_DEF,
2751 #ifdef FEAT_VERTSPLIT
2752 (char_u *)&p_wmw, PV_NONE,
2753 #else
2754 (char_u *)NULL, PV_NONE,
2755 #endif
2756 {(char_u *)1L, (char_u *)0L}},
2757 {"winwidth", "wiw", P_NUM|P_VI_DEF,
2758 #ifdef FEAT_VERTSPLIT
2759 (char_u *)&p_wiw, PV_NONE,
2760 #else
2761 (char_u *)NULL, PV_NONE,
2762 #endif
2763 {(char_u *)20L, (char_u *)0L}},
2764 {"wrap", NULL, P_BOOL|P_VI_DEF|P_RWIN,
2765 (char_u *)VAR_WIN, PV_WRAP,
2766 {(char_u *)TRUE, (char_u *)0L}},
2767 {"wrapmargin", "wm", P_NUM|P_VI_DEF,
2768 (char_u *)&p_wm, PV_WM,
2769 {(char_u *)0L, (char_u *)0L}},
2770 {"wrapscan", "ws", P_BOOL|P_VI_DEF,
2771 (char_u *)&p_ws, PV_NONE,
2772 {(char_u *)TRUE, (char_u *)0L}},
2773 {"write", NULL, P_BOOL|P_VI_DEF,
2774 (char_u *)&p_write, PV_NONE,
2775 {(char_u *)TRUE, (char_u *)0L}},
2776 {"writeany", "wa", P_BOOL|P_VI_DEF,
2777 (char_u *)&p_wa, PV_NONE,
2778 {(char_u *)FALSE, (char_u *)0L}},
2779 {"writebackup", "wb", P_BOOL|P_VI_DEF|P_VIM,
2780 (char_u *)&p_wb, PV_NONE,
2782 #ifdef FEAT_WRITEBACKUP
2783 (char_u *)TRUE,
2784 #else
2785 (char_u *)FALSE,
2786 #endif
2787 (char_u *)0L}},
2788 {"writedelay", "wd", P_NUM|P_VI_DEF,
2789 (char_u *)&p_wd, PV_NONE,
2790 {(char_u *)0L, (char_u *)0L}},
2792 /* terminal output codes */
2793 #define p_term(sss, vvv) {sss, NULL, P_STRING|P_VI_DEF|P_RALL|P_SECURE, \
2794 (char_u *)&vvv, PV_NONE, \
2795 {(char_u *)"", (char_u *)0L}},
2797 p_term("t_AB", T_CAB)
2798 p_term("t_AF", T_CAF)
2799 p_term("t_AL", T_CAL)
2800 p_term("t_al", T_AL)
2801 p_term("t_bc", T_BC)
2802 p_term("t_cd", T_CD)
2803 p_term("t_ce", T_CE)
2804 p_term("t_cl", T_CL)
2805 p_term("t_cm", T_CM)
2806 p_term("t_Co", T_CCO)
2807 p_term("t_CS", T_CCS)
2808 p_term("t_cs", T_CS)
2809 #ifdef FEAT_VERTSPLIT
2810 p_term("t_CV", T_CSV)
2811 #endif
2812 p_term("t_ut", T_UT)
2813 p_term("t_da", T_DA)
2814 p_term("t_db", T_DB)
2815 p_term("t_DL", T_CDL)
2816 p_term("t_dl", T_DL)
2817 p_term("t_fs", T_FS)
2818 p_term("t_IE", T_CIE)
2819 p_term("t_IS", T_CIS)
2820 p_term("t_ke", T_KE)
2821 p_term("t_ks", T_KS)
2822 p_term("t_le", T_LE)
2823 p_term("t_mb", T_MB)
2824 p_term("t_md", T_MD)
2825 p_term("t_me", T_ME)
2826 p_term("t_mr", T_MR)
2827 p_term("t_ms", T_MS)
2828 p_term("t_nd", T_ND)
2829 p_term("t_op", T_OP)
2830 p_term("t_RI", T_CRI)
2831 p_term("t_RV", T_CRV)
2832 p_term("t_Sb", T_CSB)
2833 p_term("t_Sf", T_CSF)
2834 p_term("t_se", T_SE)
2835 p_term("t_so", T_SO)
2836 p_term("t_sr", T_SR)
2837 p_term("t_ts", T_TS)
2838 p_term("t_te", T_TE)
2839 p_term("t_ti", T_TI)
2840 p_term("t_ue", T_UE)
2841 p_term("t_us", T_US)
2842 p_term("t_vb", T_VB)
2843 p_term("t_ve", T_VE)
2844 p_term("t_vi", T_VI)
2845 p_term("t_vs", T_VS)
2846 p_term("t_WP", T_CWP)
2847 p_term("t_WS", T_CWS)
2848 p_term("t_SI", T_CSI)
2849 p_term("t_EI", T_CEI)
2850 p_term("t_xs", T_XS)
2851 p_term("t_ZH", T_CZH)
2852 p_term("t_ZR", T_CZR)
2854 /* terminal key codes are not in here */
2856 {NULL, NULL, 0, NULL, PV_NONE, {NULL, NULL}} /* end marker */
2859 #define PARAM_COUNT (sizeof(options) / sizeof(struct vimoption))
2861 #ifdef FEAT_MBYTE
2862 static char *(p_ambw_values[]) = {"single", "double", NULL};
2863 #endif
2864 static char *(p_bg_values[]) = {"light", "dark", NULL};
2865 static char *(p_nf_values[]) = {"octal", "hex", "alpha", NULL};
2866 static char *(p_ff_values[]) = {FF_UNIX, FF_DOS, FF_MAC, NULL};
2867 #ifdef FEAT_CMDL_COMPL
2868 static char *(p_wop_values[]) = {"tagfile", NULL};
2869 #endif
2870 #ifdef FEAT_WAK
2871 static char *(p_wak_values[]) = {"yes", "menu", "no", NULL};
2872 #endif
2873 static char *(p_mousem_values[]) = {"extend", "popup", "popup_setpos", "mac", NULL};
2874 #ifdef FEAT_VISUAL
2875 static char *(p_sel_values[]) = {"inclusive", "exclusive", "old", NULL};
2876 static char *(p_slm_values[]) = {"mouse", "key", "cmd", NULL};
2877 #endif
2878 #ifdef FEAT_VISUAL
2879 static char *(p_km_values[]) = {"startsel", "stopsel", NULL};
2880 #endif
2881 #ifdef FEAT_BROWSE
2882 static char *(p_bsdir_values[]) = {"current", "last", "buffer", NULL};
2883 #endif
2884 #ifdef FEAT_SCROLLBIND
2885 static char *(p_scbopt_values[]) = {"ver", "hor", "jump", NULL};
2886 #endif
2887 static char *(p_debug_values[]) = {"msg", "throw", "beep", NULL};
2888 #ifdef FEAT_VERTSPLIT
2889 static char *(p_ead_values[]) = {"both", "ver", "hor", NULL};
2890 #endif
2891 #if defined(FEAT_QUICKFIX)
2892 # ifdef FEAT_AUTOCMD
2893 static char *(p_buftype_values[]) = {"nofile", "nowrite", "quickfix", "help", "acwrite", NULL};
2894 # else
2895 static char *(p_buftype_values[]) = {"nofile", "nowrite", "quickfix", "help", NULL};
2896 # endif
2897 static char *(p_bufhidden_values[]) = {"hide", "unload", "delete", "wipe", NULL};
2898 #endif
2899 static char *(p_bs_values[]) = {"indent", "eol", "start", NULL};
2900 #ifdef FEAT_FOLDING
2901 static char *(p_fdm_values[]) = {"manual", "expr", "marker", "indent", "syntax",
2902 # ifdef FEAT_DIFF
2903 "diff",
2904 # endif
2905 NULL};
2906 static char *(p_fcl_values[]) = {"all", NULL};
2907 #endif
2908 #ifdef FEAT_INS_EXPAND
2909 static char *(p_cot_values[]) = {"menu", "menuone", "longest", "preview", NULL};
2910 #endif
2912 static void set_option_default __ARGS((int, int opt_flags, int compatible));
2913 static void set_options_default __ARGS((int opt_flags));
2914 static char_u *term_bg_default __ARGS((void));
2915 static void did_set_option __ARGS((int opt_idx, int opt_flags, int new_value));
2916 static char_u *illegal_char __ARGS((char_u *, int));
2917 static int string_to_key __ARGS((char_u *arg));
2918 #ifdef FEAT_CMDWIN
2919 static char_u *check_cedit __ARGS((void));
2920 #endif
2921 #ifdef FEAT_TITLE
2922 static void did_set_title __ARGS((int icon));
2923 #endif
2924 static char_u *option_expand __ARGS((int opt_idx, char_u *val));
2925 static void didset_options __ARGS((void));
2926 static void check_string_option __ARGS((char_u **pp));
2927 #if defined(FEAT_EVAL) || defined(PROTO)
2928 static long_u *insecure_flag __ARGS((int opt_idx, int opt_flags));
2929 #else
2930 # define insecure_flag(opt_idx, opt_flags) (&options[opt_idx].flags)
2931 #endif
2932 static void set_string_option_global __ARGS((int opt_idx, char_u **varp));
2933 static void set_string_option __ARGS((int opt_idx, char_u *value, int opt_flags));
2934 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));
2935 static char_u *set_chars_option __ARGS((char_u **varp));
2936 #ifdef FEAT_CLIPBOARD
2937 static char_u *check_clipboard_option __ARGS((void));
2938 #endif
2939 #ifdef FEAT_SPELL
2940 static char_u *compile_cap_prog __ARGS((buf_T *buf));
2941 #endif
2942 #ifdef FEAT_EVAL
2943 static void set_option_scriptID_idx __ARGS((int opt_idx, int opt_flags, int id));
2944 #endif
2945 static char_u *set_bool_option __ARGS((int opt_idx, char_u *varp, int value, int opt_flags));
2946 static char_u *set_num_option __ARGS((int opt_idx, char_u *varp, long value, char_u *errbuf, size_t errbuflen, int opt_flags));
2947 static void check_redraw __ARGS((long_u flags));
2948 static int findoption __ARGS((char_u *));
2949 static int find_key_option __ARGS((char_u *));
2950 static void showoptions __ARGS((int all, int opt_flags));
2951 static int optval_default __ARGS((struct vimoption *, char_u *varp));
2952 static void showoneopt __ARGS((struct vimoption *, int opt_flags));
2953 static int put_setstring __ARGS((FILE *fd, char *cmd, char *name, char_u **valuep, int expand));
2954 static int put_setnum __ARGS((FILE *fd, char *cmd, char *name, long *valuep));
2955 static int put_setbool __ARGS((FILE *fd, char *cmd, char *name, int value));
2956 static int istermoption __ARGS((struct vimoption *));
2957 static char_u *get_varp_scope __ARGS((struct vimoption *p, int opt_flags));
2958 static char_u *get_varp __ARGS((struct vimoption *));
2959 static void option_value2string __ARGS((struct vimoption *, int opt_flags));
2960 static int wc_use_keyname __ARGS((char_u *varp, long *wcp));
2961 #ifdef FEAT_LANGMAP
2962 static void langmap_init __ARGS((void));
2963 static void langmap_set __ARGS((void));
2964 #endif
2965 static void paste_option_changed __ARGS((void));
2966 static void compatible_set __ARGS((void));
2967 #ifdef FEAT_LINEBREAK
2968 static void fill_breakat_flags __ARGS((void));
2969 #endif
2970 static int opt_strings_flags __ARGS((char_u *val, char **values, unsigned *flagp, int list));
2971 static int check_opt_strings __ARGS((char_u *val, char **values, int));
2972 static int check_opt_wim __ARGS((void));
2973 #ifdef FEAT_FULLSCREEN
2974 static int check_fuoptions __ARGS((char_u *, unsigned *, int *));
2975 #endif
2978 * Initialize the options, first part.
2980 * Called only once from main(), just after creating the first buffer.
2982 void
2983 set_init_1()
2985 char_u *p;
2986 int opt_idx;
2987 long_u n;
2988 #if defined(FEAT_GUI_MACVIM) && defined(FEAT_MBYTE)
2989 int did_mb_init;
2990 #endif
2992 #ifdef FEAT_LANGMAP
2993 langmap_init();
2994 #endif
2996 /* Be Vi compatible by default */
2997 p_cp = TRUE;
2999 /* Use POSIX compatibility when $VIM_POSIX is set. */
3000 if (mch_getenv((char_u *)"VIM_POSIX") != NULL)
3002 set_string_default("cpo", (char_u *)CPO_ALL);
3003 set_string_default("shm", (char_u *)"A");
3007 * Find default value for 'shell' option.
3008 * Don't use it if it is empty.
3010 if (((p = mch_getenv((char_u *)"SHELL")) != NULL && *p != NUL)
3011 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
3012 # ifdef __EMX__
3013 || ((p = mch_getenv((char_u *)"EMXSHELL")) != NULL && *p != NUL)
3014 # endif
3015 || ((p = mch_getenv((char_u *)"COMSPEC")) != NULL && *p != NUL)
3016 # ifdef WIN3264
3017 || ((p = default_shell()) != NULL && *p != NUL)
3018 # endif
3019 #endif
3021 set_string_default("sh", p);
3023 #ifdef FEAT_WILDIGN
3025 * Set the default for 'backupskip' to include environment variables for
3026 * temp files.
3029 # ifdef UNIX
3030 static char *(names[4]) = {"", "TMPDIR", "TEMP", "TMP"};
3031 # else
3032 static char *(names[3]) = {"TMPDIR", "TEMP", "TMP"};
3033 # endif
3034 int len;
3035 garray_T ga;
3036 int mustfree;
3038 ga_init2(&ga, 1, 100);
3039 for (n = 0; n < (long)(sizeof(names) / sizeof(char *)); ++n)
3041 mustfree = FALSE;
3042 # ifdef UNIX
3043 if (*names[n] == NUL)
3044 p = (char_u *)"/tmp";
3045 else
3046 # endif
3047 p = vim_getenv((char_u *)names[n], &mustfree);
3048 if (p != NULL && *p != NUL)
3050 /* First time count the NUL, otherwise count the ','. */
3051 len = (int)STRLEN(p) + 3;
3052 if (ga_grow(&ga, len) == OK)
3054 if (ga.ga_len > 0)
3055 STRCAT(ga.ga_data, ",");
3056 STRCAT(ga.ga_data, p);
3057 add_pathsep(ga.ga_data);
3058 STRCAT(ga.ga_data, "*");
3059 ga.ga_len += len;
3062 if (mustfree)
3063 vim_free(p);
3065 if (ga.ga_data != NULL)
3067 set_string_default("bsk", ga.ga_data);
3068 vim_free(ga.ga_data);
3071 #endif
3074 * 'maxmemtot' and 'maxmem' may have to be adjusted for available memory
3076 opt_idx = findoption((char_u *)"maxmemtot");
3077 if (opt_idx >= 0)
3079 #if !defined(HAVE_AVAIL_MEM) && !defined(HAVE_TOTAL_MEM)
3080 if (options[opt_idx].def_val[VI_DEFAULT] == (char_u *)0L)
3081 #endif
3083 #ifdef HAVE_AVAIL_MEM
3084 /* Use amount of memory available at this moment. */
3085 n = (mch_avail_mem(FALSE) >> 11);
3086 #else
3087 # ifdef HAVE_TOTAL_MEM
3088 /* Use amount of memory available to Vim. */
3089 n = (mch_total_mem(FALSE) >> 1);
3090 # else
3091 n = (0x7fffffff >> 11);
3092 # endif
3093 #endif
3094 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)n;
3095 opt_idx = findoption((char_u *)"maxmem");
3096 if (opt_idx >= 0)
3098 #if !defined(HAVE_AVAIL_MEM) && !defined(HAVE_TOTAL_MEM)
3099 if ((long)options[opt_idx].def_val[VI_DEFAULT] > n
3100 || (long)options[opt_idx].def_val[VI_DEFAULT] == 0L)
3101 #endif
3102 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)n;
3107 #ifdef FEAT_GUI_W32
3108 /* force 'shortname' for Win32s */
3109 if (gui_is_win32s())
3111 opt_idx = findoption((char_u *)"shortname");
3112 if (opt_idx >= 0)
3113 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)TRUE;
3115 #endif
3117 #ifdef FEAT_SEARCHPATH
3119 char_u *cdpath;
3120 char_u *buf;
3121 int i;
3122 int j;
3123 int mustfree = FALSE;
3125 /* Initialize the 'cdpath' option's default value. */
3126 cdpath = vim_getenv((char_u *)"CDPATH", &mustfree);
3127 if (cdpath != NULL)
3129 buf = alloc((unsigned)((STRLEN(cdpath) << 1) + 2));
3130 if (buf != NULL)
3132 buf[0] = ','; /* start with ",", current dir first */
3133 j = 1;
3134 for (i = 0; cdpath[i] != NUL; ++i)
3136 if (vim_ispathlistsep(cdpath[i]))
3137 buf[j++] = ',';
3138 else
3140 if (cdpath[i] == ' ' || cdpath[i] == ',')
3141 buf[j++] = '\\';
3142 buf[j++] = cdpath[i];
3145 buf[j] = NUL;
3146 opt_idx = findoption((char_u *)"cdpath");
3147 if (opt_idx >= 0)
3149 options[opt_idx].def_val[VI_DEFAULT] = buf;
3150 options[opt_idx].flags |= P_DEF_ALLOCED;
3153 if (mustfree)
3154 vim_free(cdpath);
3157 #endif
3159 #if defined(FEAT_POSTSCRIPT) && (defined(MSWIN) || defined(OS2) || defined(VMS) || defined(EBCDIC) || defined(MAC) || defined(hpux))
3160 /* Set print encoding on platforms that don't default to latin1 */
3161 set_string_default("penc",
3162 # if defined(MSWIN) || defined(OS2)
3163 (char_u *)"cp1252"
3164 # else
3165 # ifdef VMS
3166 (char_u *)"dec-mcs"
3167 # else
3168 # ifdef EBCDIC
3169 (char_u *)"ebcdic-uk"
3170 # else
3171 # ifdef MAC
3172 (char_u *)"mac-roman"
3173 # else /* HPUX */
3174 (char_u *)"hp-roman8"
3175 # endif
3176 # endif
3177 # endif
3178 # endif
3180 #endif
3182 #ifdef FEAT_POSTSCRIPT
3183 /* 'printexpr' must be allocated to be able to evaluate it. */
3184 set_string_default("pexpr",
3185 # if defined(MSWIN) || defined(MSDOS) || defined(OS2)
3186 (char_u *)"system('copy' . ' ' . v:fname_in . (&printdevice == '' ? ' LPT1:' : (' \"' . &printdevice . '\"'))) . delete(v:fname_in)"
3187 # else
3188 # ifdef VMS
3189 (char_u *)"system('print/delete' . (&printdevice == '' ? '' : ' /queue=' . &printdevice) . ' ' . v:fname_in)"
3191 # else
3192 (char_u *)"system('lpr' . (&printdevice == '' ? '' : ' -P' . &printdevice) . ' ' . v:fname_in) . delete(v:fname_in) + v:shell_error"
3193 # endif
3194 # endif
3196 #endif
3199 * Set all the options (except the terminal options) to their default
3200 * value. Also set the global value for local options.
3202 set_options_default(0);
3204 #ifdef FEAT_GUI
3205 if (found_reverse_arg)
3206 set_option_value((char_u *)"bg", 0L, (char_u *)"dark", 0);
3207 #endif
3209 curbuf->b_p_initialized = TRUE;
3210 curbuf->b_p_ar = -1; /* no local 'autoread' value */
3211 check_buf_options(curbuf);
3212 check_win_options(curwin);
3213 check_options();
3215 /* Must be before option_expand(), because that one needs vim_isIDc() */
3216 didset_options();
3218 #ifdef FEAT_SPELL
3219 /* Use the current chartab for the generic chartab. */
3220 init_spell_chartab();
3221 #endif
3223 #ifdef FEAT_LINEBREAK
3225 * initialize the table for 'breakat'.
3227 fill_breakat_flags();
3228 #endif
3231 * Expand environment variables and things like "~" for the defaults.
3232 * If option_expand() returns non-NULL the variable is expanded. This can
3233 * only happen for non-indirect options.
3234 * Also set the default to the expanded value, so ":set" does not list
3235 * them.
3236 * Don't set the P_ALLOCED flag, because we don't want to free the
3237 * default.
3239 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
3241 if ((options[opt_idx].flags & P_GETTEXT)
3242 && options[opt_idx].var != NULL)
3243 p = (char_u *)_(*(char **)options[opt_idx].var);
3244 else
3245 p = option_expand(opt_idx, NULL);
3246 if (p != NULL && (p = vim_strsave(p)) != NULL)
3248 *(char_u **)options[opt_idx].var = p;
3249 /* VIMEXP
3250 * Defaults for all expanded options are currently the same for Vi
3251 * and Vim. When this changes, add some code here! Also need to
3252 * split P_DEF_ALLOCED in two.
3254 if (options[opt_idx].flags & P_DEF_ALLOCED)
3255 vim_free(options[opt_idx].def_val[VI_DEFAULT]);
3256 options[opt_idx].def_val[VI_DEFAULT] = p;
3257 options[opt_idx].flags |= P_DEF_ALLOCED;
3261 /* Initialize the highlight_attr[] table. */
3262 highlight_changed();
3264 save_file_ff(curbuf); /* Buffer is unchanged */
3266 /* Parse default for 'wildmode' */
3267 check_opt_wim();
3269 #if defined(FEAT_ARABIC)
3270 /* Detect use of mlterm.
3271 * Mlterm is a terminal emulator akin to xterm that has some special
3272 * abilities (bidi namely).
3273 * NOTE: mlterm's author is being asked to 'set' a variable
3274 * instead of an environment variable due to inheritance.
3276 if (mch_getenv((char_u *)"MLTERM") != NULL)
3277 set_option_value((char_u *)"tbidi", 1L, NULL, 0);
3278 #endif
3280 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
3281 /* Parse default for 'fillchars'. */
3282 (void)set_chars_option(&p_fcs);
3283 #endif
3285 #ifdef FEAT_CLIPBOARD
3286 /* Parse default for 'clipboard' */
3287 (void)check_clipboard_option();
3288 #endif
3290 #ifdef FEAT_MBYTE
3291 # if defined(WIN3264) && defined(FEAT_GETTEXT)
3293 * If $LANG isn't set, try to get a good value for it. This makes the
3294 * right language be used automatically. Don't do this for English.
3296 if (mch_getenv((char_u *)"LANG") == NULL)
3298 char buf[20];
3300 /* Could use LOCALE_SISO639LANGNAME, but it's not in Win95.
3301 * LOCALE_SABBREVLANGNAME gives us three letters, like "enu", we use
3302 * only the first two. */
3303 n = GetLocaleInfo(LOCALE_USER_DEFAULT, LOCALE_SABBREVLANGNAME,
3304 (LPTSTR)buf, 20);
3305 if (n >= 2 && STRNICMP(buf, "en", 2) != 0)
3307 /* There are a few exceptions (probably more) */
3308 if (STRNICMP(buf, "cht", 3) == 0 || STRNICMP(buf, "zht", 3) == 0)
3309 STRCPY(buf, "zh_TW");
3310 else if (STRNICMP(buf, "chs", 3) == 0
3311 || STRNICMP(buf, "zhc", 3) == 0)
3312 STRCPY(buf, "zh_CN");
3313 else if (STRNICMP(buf, "jp", 2) == 0)
3314 STRCPY(buf, "ja");
3315 else
3316 buf[2] = NUL; /* truncate to two-letter code */
3317 vim_setenv("LANG", buf);
3320 # else
3321 # ifdef MACOS_CONVERT
3322 /* Moved to os_mac_conv.c to avoid dependency problems. */
3323 mac_lang_init();
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 STRMOVE(newval + i + comma, origval);
4650 if (comma)
4651 newval[i] = ',';
4654 /* Remove newval[] from origval[]. (Note: "i" has
4655 * been set above and is used here). */
4656 if (removing)
4658 STRCPY(newval, origval);
4659 if (*s)
4661 /* may need to remove a comma */
4662 if (flags & P_COMMA)
4664 if (s == origval)
4666 /* include comma after string */
4667 if (s[i] == ',')
4668 ++i;
4670 else
4672 /* include comma before string */
4673 --s;
4674 ++i;
4677 STRMOVE(newval + (s - origval), s + i);
4681 if (flags & P_FLAGLIST)
4683 /* Remove flags that appear twice. */
4684 for (s = newval; *s; ++s)
4685 if ((!(flags & P_COMMA) || *s != ',')
4686 && vim_strchr(s + 1, *s) != NULL)
4688 STRMOVE(s, s + 1);
4689 --s;
4693 if (save_arg != NULL) /* number for 'whichwrap' */
4694 arg = save_arg;
4695 new_value_alloced = TRUE;
4698 /* Set the new value. */
4699 *(char_u **)(varp) = newval;
4701 /* Handle side effects, and set the global value for
4702 * ":set" on local options. */
4703 errmsg = did_set_string_option(opt_idx, (char_u **)varp,
4704 new_value_alloced, oldval, errbuf, opt_flags);
4706 /* If error detected, print the error message. */
4707 if (errmsg != NULL)
4708 goto skip;
4710 else /* key code option */
4712 char_u *p;
4714 if (nextchar == '&')
4716 if (add_termcap_entry(key_name, TRUE) == FAIL)
4717 errmsg = (char_u *)N_("E522: Not found in termcap");
4719 else
4721 ++arg; /* jump to after the '=' or ':' */
4722 for (p = arg; *p && !vim_iswhite(*p); ++p)
4723 if (*p == '\\' && p[1] != NUL)
4724 ++p;
4725 nextchar = *p;
4726 *p = NUL;
4727 add_termcode(key_name, arg, FALSE);
4728 *p = nextchar;
4730 if (full_screen)
4731 ttest(FALSE);
4732 redraw_all_later(CLEAR);
4736 if (opt_idx >= 0)
4737 did_set_option(opt_idx, opt_flags,
4738 !prepending && !adding && !removing);
4741 skip:
4743 * Advance to next argument.
4744 * - skip until a blank found, taking care of backslashes
4745 * - skip blanks
4746 * - skip one "=val" argument (for hidden options ":set gfn =xx")
4748 for (i = 0; i < 2 ; ++i)
4750 while (*arg != NUL && !vim_iswhite(*arg))
4751 if (*arg++ == '\\' && *arg != NUL)
4752 ++arg;
4753 arg = skipwhite(arg);
4754 if (*arg != '=')
4755 break;
4759 if (errmsg != NULL)
4761 vim_strncpy(IObuff, (char_u *)_(errmsg), IOSIZE - 1);
4762 i = (int)STRLEN(IObuff) + 2;
4763 if (i + (arg - startarg) < IOSIZE)
4765 /* append the argument with the error */
4766 STRCAT(IObuff, ": ");
4767 mch_memmove(IObuff + i, startarg, (arg - startarg));
4768 IObuff[i + (arg - startarg)] = NUL;
4770 /* make sure all characters are printable */
4771 trans_characters(IObuff, IOSIZE);
4773 ++no_wait_return; /* wait_return done later */
4774 emsg(IObuff); /* show error highlighted */
4775 --no_wait_return;
4777 return FAIL;
4780 arg = skipwhite(arg);
4783 theend:
4784 if (silent_mode && did_show)
4786 /* After displaying option values in silent mode. */
4787 silent_mode = FALSE;
4788 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
4789 msg_putchar('\n');
4790 cursor_on(); /* msg_start() switches it off */
4791 out_flush();
4792 silent_mode = TRUE;
4793 info_message = FALSE; /* use mch_msg(), not mch_errmsg() */
4796 return OK;
4800 * Call this when an option has been given a new value through a user command.
4801 * Sets the P_WAS_SET flag and takes care of the P_INSECURE flag.
4803 static void
4804 did_set_option(opt_idx, opt_flags, new_value)
4805 int opt_idx;
4806 int opt_flags; /* possibly with OPT_MODELINE */
4807 int new_value; /* value was replaced completely */
4809 long_u *p;
4811 options[opt_idx].flags |= P_WAS_SET;
4813 /* When an option is set in the sandbox, from a modeline or in secure mode
4814 * set the P_INSECURE flag. Otherwise, if a new value is stored reset the
4815 * flag. */
4816 p = insecure_flag(opt_idx, opt_flags);
4817 if (secure
4818 #ifdef HAVE_SANDBOX
4819 || sandbox != 0
4820 #endif
4821 || (opt_flags & OPT_MODELINE))
4822 *p = *p | P_INSECURE;
4823 else if (new_value)
4824 *p = *p & ~P_INSECURE;
4827 static char_u *
4828 illegal_char(errbuf, c)
4829 char_u *errbuf;
4830 int c;
4832 if (errbuf == NULL)
4833 return (char_u *)"";
4834 sprintf((char *)errbuf, _("E539: Illegal character <%s>"),
4835 (char *)transchar(c));
4836 return errbuf;
4840 * Convert a key name or string into a key value.
4841 * Used for 'wildchar' and 'cedit' options.
4843 static int
4844 string_to_key(arg)
4845 char_u *arg;
4847 if (*arg == '<')
4848 return find_key_option(arg + 1);
4849 if (*arg == '^')
4850 return Ctrl_chr(arg[1]);
4851 return *arg;
4854 #ifdef FEAT_CMDWIN
4856 * Check value of 'cedit' and set cedit_key.
4857 * Returns NULL if value is OK, error message otherwise.
4859 static char_u *
4860 check_cedit()
4862 int n;
4864 if (*p_cedit == NUL)
4865 cedit_key = -1;
4866 else
4868 n = string_to_key(p_cedit);
4869 if (vim_isprintc(n))
4870 return e_invarg;
4871 cedit_key = n;
4873 return NULL;
4875 #endif
4877 #ifdef FEAT_TITLE
4879 * When changing 'title', 'titlestring', 'icon' or 'iconstring', call
4880 * maketitle() to create and display it.
4881 * When switching the title or icon off, call mch_restore_title() to get
4882 * the old value back.
4884 static void
4885 did_set_title(icon)
4886 int icon; /* Did set icon instead of title */
4888 if (starting != NO_SCREEN
4889 #ifdef FEAT_GUI
4890 && !gui.starting
4891 #endif
4894 maketitle();
4895 if (icon)
4897 if (!p_icon)
4898 mch_restore_title(2);
4900 else
4902 if (!p_title)
4903 mch_restore_title(1);
4907 #endif
4910 * set_options_bin - called when 'bin' changes value.
4912 void
4913 set_options_bin(oldval, newval, opt_flags)
4914 int oldval;
4915 int newval;
4916 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
4919 * The option values that are changed when 'bin' changes are
4920 * copied when 'bin is set and restored when 'bin' is reset.
4922 if (newval)
4924 if (!oldval) /* switched on */
4926 if (!(opt_flags & OPT_GLOBAL))
4928 curbuf->b_p_tw_nobin = curbuf->b_p_tw;
4929 curbuf->b_p_wm_nobin = curbuf->b_p_wm;
4930 curbuf->b_p_ml_nobin = curbuf->b_p_ml;
4931 curbuf->b_p_et_nobin = curbuf->b_p_et;
4933 if (!(opt_flags & OPT_LOCAL))
4935 p_tw_nobin = p_tw;
4936 p_wm_nobin = p_wm;
4937 p_ml_nobin = p_ml;
4938 p_et_nobin = p_et;
4942 if (!(opt_flags & OPT_GLOBAL))
4944 curbuf->b_p_tw = 0; /* no automatic line wrap */
4945 curbuf->b_p_wm = 0; /* no automatic line wrap */
4946 curbuf->b_p_ml = 0; /* no modelines */
4947 curbuf->b_p_et = 0; /* no expandtab */
4949 if (!(opt_flags & OPT_LOCAL))
4951 p_tw = 0;
4952 p_wm = 0;
4953 p_ml = FALSE;
4954 p_et = FALSE;
4955 p_bin = TRUE; /* needed when called for the "-b" argument */
4958 else if (oldval) /* switched off */
4960 if (!(opt_flags & OPT_GLOBAL))
4962 curbuf->b_p_tw = curbuf->b_p_tw_nobin;
4963 curbuf->b_p_wm = curbuf->b_p_wm_nobin;
4964 curbuf->b_p_ml = curbuf->b_p_ml_nobin;
4965 curbuf->b_p_et = curbuf->b_p_et_nobin;
4967 if (!(opt_flags & OPT_LOCAL))
4969 p_tw = p_tw_nobin;
4970 p_wm = p_wm_nobin;
4971 p_ml = p_ml_nobin;
4972 p_et = p_et_nobin;
4977 #ifdef FEAT_VIMINFO
4979 * Find the parameter represented by the given character (eg ', :, ", or /),
4980 * and return its associated value in the 'viminfo' string.
4981 * Only works for number parameters, not for 'r' or 'n'.
4982 * If the parameter is not specified in the string or there is no following
4983 * number, return -1.
4986 get_viminfo_parameter(type)
4987 int type;
4989 char_u *p;
4991 p = find_viminfo_parameter(type);
4992 if (p != NULL && VIM_ISDIGIT(*p))
4993 return atoi((char *)p);
4994 return -1;
4998 * Find the parameter represented by the given character (eg ''', ':', '"', or
4999 * '/') in the 'viminfo' option and return a pointer to the string after it.
5000 * Return NULL if the parameter is not specified in the string.
5002 char_u *
5003 find_viminfo_parameter(type)
5004 int type;
5006 char_u *p;
5008 for (p = p_viminfo; *p; ++p)
5010 if (*p == type)
5011 return p + 1;
5012 if (*p == 'n') /* 'n' is always the last one */
5013 break;
5014 p = vim_strchr(p, ','); /* skip until next ',' */
5015 if (p == NULL) /* hit the end without finding parameter */
5016 break;
5018 return NULL;
5020 #endif
5023 * Expand environment variables for some string options.
5024 * These string options cannot be indirect!
5025 * If "val" is NULL expand the current value of the option.
5026 * Return pointer to NameBuff, or NULL when not expanded.
5028 static char_u *
5029 option_expand(opt_idx, val)
5030 int opt_idx;
5031 char_u *val;
5033 /* if option doesn't need expansion nothing to do */
5034 if (!(options[opt_idx].flags & P_EXPAND) || options[opt_idx].var == NULL)
5035 return NULL;
5037 /* If val is longer than MAXPATHL no meaningful expansion can be done,
5038 * expand_env() would truncate the string. */
5039 if (val != NULL && STRLEN(val) > MAXPATHL)
5040 return NULL;
5042 if (val == NULL)
5043 val = *(char_u **)options[opt_idx].var;
5046 * Expanding this with NameBuff, expand_env() must not be passed IObuff.
5047 * Escape spaces when expanding 'tags', they are used to separate file
5048 * names.
5049 * For 'spellsuggest' expand after "file:".
5051 expand_env_esc(val, NameBuff, MAXPATHL,
5052 (char_u **)options[opt_idx].var == &p_tags, FALSE,
5053 #ifdef FEAT_SPELL
5054 (char_u **)options[opt_idx].var == &p_sps ? (char_u *)"file:" :
5055 #endif
5056 NULL);
5057 if (STRCMP(NameBuff, val) == 0) /* they are the same */
5058 return NULL;
5060 return NameBuff;
5064 * After setting various option values: recompute variables that depend on
5065 * option values.
5067 static void
5068 didset_options()
5070 /* initialize the table for 'iskeyword' et.al. */
5071 (void)init_chartab();
5073 #ifdef FEAT_MBYTE
5074 (void)opt_strings_flags(p_cmp, p_cmp_values, &cmp_flags, TRUE);
5075 #endif
5076 (void)opt_strings_flags(p_bkc, p_bkc_values, &bkc_flags, TRUE);
5077 #ifdef FEAT_SESSION
5078 (void)opt_strings_flags(p_ssop, p_ssop_values, &ssop_flags, TRUE);
5079 (void)opt_strings_flags(p_vop, p_ssop_values, &vop_flags, TRUE);
5080 #endif
5081 #ifdef FEAT_FOLDING
5082 (void)opt_strings_flags(p_fdo, p_fdo_values, &fdo_flags, TRUE);
5083 #endif
5084 #ifdef FEAT_FULLSCREEN
5085 (void)check_fuoptions(p_fuoptions, &fuoptions_flags,
5086 &fuoptions_bgcolor);
5087 #endif
5088 (void)opt_strings_flags(p_dy, p_dy_values, &dy_flags, TRUE);
5089 #ifdef FEAT_VIRTUALEDIT
5090 (void)opt_strings_flags(p_ve, p_ve_values, &ve_flags, TRUE);
5091 #endif
5092 #if defined(FEAT_MOUSE) && (defined(UNIX) || defined(VMS))
5093 (void)opt_strings_flags(p_ttym, p_ttym_values, &ttym_flags, FALSE);
5094 #endif
5095 #ifdef FEAT_SPELL
5096 (void)spell_check_msm();
5097 (void)spell_check_sps();
5098 (void)compile_cap_prog(curbuf);
5099 #endif
5100 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
5101 (void)opt_strings_flags(p_toolbar, p_toolbar_values, &toolbar_flags, TRUE);
5102 #endif
5103 #if defined(FEAT_TOOLBAR) && ((defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)) \
5104 || defined(FEAT_GUI_MACVIM))
5105 (void)opt_strings_flags(p_tbis, p_tbis_values, &tbis_flags, FALSE);
5106 #endif
5107 #ifdef FEAT_CMDWIN
5108 /* set cedit_key */
5109 (void)check_cedit();
5110 #endif
5114 * Check for string options that are NULL (normally only termcap options).
5116 void
5117 check_options()
5119 int opt_idx;
5121 for (opt_idx = 0; options[opt_idx].fullname != NULL; opt_idx++)
5122 if ((options[opt_idx].flags & P_STRING) && options[opt_idx].var != NULL)
5123 check_string_option((char_u **)get_varp(&(options[opt_idx])));
5127 * Check string options in a buffer for NULL value.
5129 void
5130 check_buf_options(buf)
5131 buf_T *buf;
5133 #if defined(FEAT_QUICKFIX)
5134 check_string_option(&buf->b_p_bh);
5135 check_string_option(&buf->b_p_bt);
5136 #endif
5137 #ifdef FEAT_MBYTE
5138 check_string_option(&buf->b_p_fenc);
5139 #endif
5140 check_string_option(&buf->b_p_ff);
5141 #ifdef FEAT_FIND_ID
5142 check_string_option(&buf->b_p_def);
5143 check_string_option(&buf->b_p_inc);
5144 # ifdef FEAT_EVAL
5145 check_string_option(&buf->b_p_inex);
5146 # endif
5147 #endif
5148 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
5149 check_string_option(&buf->b_p_inde);
5150 check_string_option(&buf->b_p_indk);
5151 #endif
5152 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
5153 check_string_option(&buf->b_p_bexpr);
5154 #endif
5155 #if defined(FEAT_EVAL)
5156 check_string_option(&buf->b_p_fex);
5157 #endif
5158 #ifdef FEAT_CRYPT
5159 check_string_option(&buf->b_p_key);
5160 #endif
5161 check_string_option(&buf->b_p_kp);
5162 check_string_option(&buf->b_p_mps);
5163 check_string_option(&buf->b_p_fo);
5164 check_string_option(&buf->b_p_flp);
5165 check_string_option(&buf->b_p_isk);
5166 #ifdef FEAT_COMMENTS
5167 check_string_option(&buf->b_p_com);
5168 #endif
5169 #ifdef FEAT_FOLDING
5170 check_string_option(&buf->b_p_cms);
5171 #endif
5172 check_string_option(&buf->b_p_nf);
5173 #ifdef FEAT_TEXTOBJ
5174 check_string_option(&buf->b_p_qe);
5175 #endif
5176 #ifdef FEAT_SYN_HL
5177 check_string_option(&buf->b_p_syn);
5178 #endif
5179 #ifdef FEAT_SPELL
5180 check_string_option(&buf->b_p_spc);
5181 check_string_option(&buf->b_p_spf);
5182 check_string_option(&buf->b_p_spl);
5183 #endif
5184 #ifdef FEAT_SEARCHPATH
5185 check_string_option(&buf->b_p_sua);
5186 #endif
5187 #ifdef FEAT_CINDENT
5188 check_string_option(&buf->b_p_cink);
5189 check_string_option(&buf->b_p_cino);
5190 #endif
5191 #ifdef FEAT_AUTOCMD
5192 check_string_option(&buf->b_p_ft);
5193 #endif
5194 #ifdef FEAT_OSFILETYPE
5195 check_string_option(&buf->b_p_oft);
5196 #endif
5197 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
5198 check_string_option(&buf->b_p_cinw);
5199 #endif
5200 #ifdef FEAT_INS_EXPAND
5201 check_string_option(&buf->b_p_cpt);
5202 #endif
5203 #ifdef FEAT_COMPL_FUNC
5204 check_string_option(&buf->b_p_cfu);
5205 check_string_option(&buf->b_p_ofu);
5206 #endif
5207 #ifdef FEAT_KEYMAP
5208 check_string_option(&buf->b_p_keymap);
5209 #endif
5210 #ifdef FEAT_QUICKFIX
5211 check_string_option(&buf->b_p_gp);
5212 check_string_option(&buf->b_p_mp);
5213 check_string_option(&buf->b_p_efm);
5214 #endif
5215 check_string_option(&buf->b_p_ep);
5216 check_string_option(&buf->b_p_path);
5217 check_string_option(&buf->b_p_tags);
5218 #ifdef FEAT_INS_EXPAND
5219 check_string_option(&buf->b_p_dict);
5220 check_string_option(&buf->b_p_tsr);
5221 #endif
5225 * Free the string allocated for an option.
5226 * Checks for the string being empty_option. This may happen if we're out of
5227 * memory, vim_strsave() returned NULL, which was replaced by empty_option by
5228 * check_options().
5229 * Does NOT check for P_ALLOCED flag!
5231 void
5232 free_string_option(p)
5233 char_u *p;
5235 if (p != empty_option)
5236 vim_free(p);
5239 void
5240 clear_string_option(pp)
5241 char_u **pp;
5243 if (*pp != empty_option)
5244 vim_free(*pp);
5245 *pp = empty_option;
5248 static void
5249 check_string_option(pp)
5250 char_u **pp;
5252 if (*pp == NULL)
5253 *pp = empty_option;
5257 * Mark a terminal option as allocated, found by a pointer into term_strings[].
5259 void
5260 set_term_option_alloced(p)
5261 char_u **p;
5263 int opt_idx;
5265 for (opt_idx = 1; options[opt_idx].fullname != NULL; opt_idx++)
5266 if (options[opt_idx].var == (char_u *)p)
5268 options[opt_idx].flags |= P_ALLOCED;
5269 return;
5271 return; /* cannot happen: didn't find it! */
5274 #if defined(FEAT_EVAL) || defined(PROTO)
5276 * Return TRUE when option "opt" was set from a modeline or in secure mode.
5277 * Return FALSE when it wasn't.
5278 * Return -1 for an unknown option.
5281 was_set_insecurely(opt, opt_flags)
5282 char_u *opt;
5283 int opt_flags;
5285 int idx = findoption(opt);
5286 long_u *flagp;
5288 if (idx >= 0)
5290 flagp = insecure_flag(idx, opt_flags);
5291 return (*flagp & P_INSECURE) != 0;
5293 EMSG2(_(e_intern2), "was_set_insecurely()");
5294 return -1;
5298 * Get a pointer to the flags used for the P_INSECURE flag of option
5299 * "opt_idx". For some local options a local flags field is used.
5301 static long_u *
5302 insecure_flag(opt_idx, opt_flags)
5303 int opt_idx;
5304 int opt_flags;
5306 if (opt_flags & OPT_LOCAL)
5307 switch ((int)options[opt_idx].indir)
5309 #ifdef FEAT_STL_OPT
5310 case PV_STL: return &curwin->w_p_stl_flags;
5311 #endif
5312 #ifdef FEAT_EVAL
5313 # ifdef FEAT_FOLDING
5314 case PV_FDE: return &curwin->w_p_fde_flags;
5315 case PV_FDT: return &curwin->w_p_fdt_flags;
5316 # endif
5317 # ifdef FEAT_BEVAL
5318 case PV_BEXPR: return &curbuf->b_p_bexpr_flags;
5319 # endif
5320 # if defined(FEAT_CINDENT)
5321 case PV_INDE: return &curbuf->b_p_inde_flags;
5322 # endif
5323 case PV_FEX: return &curbuf->b_p_fex_flags;
5324 # ifdef FEAT_FIND_ID
5325 case PV_INEX: return &curbuf->b_p_inex_flags;
5326 # endif
5327 #endif
5330 /* Nothing special, return global flags field. */
5331 return &options[opt_idx].flags;
5333 #endif
5336 * Set a string option to a new value (without checking the effect).
5337 * The string is copied into allocated memory.
5338 * if ("opt_idx" == -1) "name" is used, otherwise "opt_idx" is used.
5339 * When "set_sid" is zero set the scriptID to current_SID. When "set_sid" is
5340 * SID_NONE don't set the scriptID. Otherwise set the scriptID to "set_sid".
5342 /*ARGSUSED*/
5343 void
5344 set_string_option_direct(name, opt_idx, val, opt_flags, set_sid)
5345 char_u *name;
5346 int opt_idx;
5347 char_u *val;
5348 int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */
5349 int set_sid;
5351 char_u *s;
5352 char_u **varp;
5353 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
5354 int idx = opt_idx;
5356 if (idx == -1) /* use name */
5358 idx = findoption(name);
5359 if (idx < 0) /* not found (should not happen) */
5361 EMSG2(_(e_intern2), "set_string_option_direct()");
5362 return;
5366 if (options[idx].var == NULL) /* can't set hidden option */
5367 return;
5369 s = vim_strsave(val);
5370 if (s != NULL)
5372 varp = (char_u **)get_varp_scope(&(options[idx]),
5373 both ? OPT_LOCAL : opt_flags);
5374 if ((opt_flags & OPT_FREE) && (options[idx].flags & P_ALLOCED))
5375 free_string_option(*varp);
5376 *varp = s;
5378 /* For buffer/window local option may also set the global value. */
5379 if (both)
5380 set_string_option_global(idx, varp);
5382 options[idx].flags |= P_ALLOCED;
5384 /* When setting both values of a global option with a local value,
5385 * make the local value empty, so that the global value is used. */
5386 if (((int)options[idx].indir & PV_BOTH) && both)
5388 free_string_option(*varp);
5389 *varp = empty_option;
5391 # ifdef FEAT_EVAL
5392 if (set_sid != SID_NONE)
5393 set_option_scriptID_idx(idx, opt_flags,
5394 set_sid == 0 ? current_SID : set_sid);
5395 # endif
5400 * Set global value for string option when it's a local option.
5402 static void
5403 set_string_option_global(opt_idx, varp)
5404 int opt_idx; /* option index */
5405 char_u **varp; /* pointer to option variable */
5407 char_u **p, *s;
5409 /* the global value is always allocated */
5410 if (options[opt_idx].var == VAR_WIN)
5411 p = (char_u **)GLOBAL_WO(varp);
5412 else
5413 p = (char_u **)options[opt_idx].var;
5414 if (options[opt_idx].indir != PV_NONE
5415 && p != varp
5416 && (s = vim_strsave(*varp)) != NULL)
5418 free_string_option(*p);
5419 *p = s;
5424 * Set a string option to a new value, and handle the effects.
5426 static void
5427 set_string_option(opt_idx, value, opt_flags)
5428 int opt_idx;
5429 char_u *value;
5430 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
5432 char_u *s;
5433 char_u **varp;
5434 char_u *oldval;
5436 if (options[opt_idx].var == NULL) /* don't set hidden option */
5437 return;
5439 s = vim_strsave(value);
5440 if (s != NULL)
5442 varp = (char_u **)get_varp_scope(&(options[opt_idx]),
5443 (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
5444 ? (((int)options[opt_idx].indir & PV_BOTH)
5445 ? OPT_GLOBAL : OPT_LOCAL)
5446 : opt_flags);
5447 oldval = *varp;
5448 *varp = s;
5449 if (did_set_string_option(opt_idx, varp, TRUE, oldval, NULL,
5450 opt_flags) == NULL)
5451 did_set_option(opt_idx, opt_flags, TRUE);
5456 * Handle string options that need some action to perform when changed.
5457 * Returns NULL for success, or an error message for an error.
5459 static char_u *
5460 did_set_string_option(opt_idx, varp, new_value_alloced, oldval, errbuf,
5461 opt_flags)
5462 int opt_idx; /* index in options[] table */
5463 char_u **varp; /* pointer to the option variable */
5464 int new_value_alloced; /* new value was allocated */
5465 char_u *oldval; /* previous value of the option */
5466 char_u *errbuf; /* buffer for errors, or NULL */
5467 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
5469 char_u *errmsg = NULL;
5470 char_u *s, *p;
5471 int did_chartab = FALSE;
5472 char_u **gvarp;
5473 long_u free_oldval = (options[opt_idx].flags & P_ALLOCED);
5475 /* Get the global option to compare with, otherwise we would have to check
5476 * two values for all local options. */
5477 gvarp = (char_u **)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL);
5479 /* Disallow changing some options from secure mode */
5480 if ((secure
5481 #ifdef HAVE_SANDBOX
5482 || sandbox != 0
5483 #endif
5484 ) && (options[opt_idx].flags & P_SECURE))
5486 errmsg = e_secure;
5489 /* Check for a "normal" file name in some options. Disallow a path
5490 * separator (slash and/or backslash), wildcards and characters that are
5491 * often illegal in a file name. */
5492 else if ((options[opt_idx].flags & P_NFNAME)
5493 && vim_strpbrk(*varp, (char_u *)"/\\*?[|<>") != NULL)
5495 errmsg = e_invarg;
5498 /* 'term' */
5499 else if (varp == &T_NAME)
5501 if (T_NAME[0] == NUL)
5502 errmsg = (char_u *)N_("E529: Cannot set 'term' to empty string");
5503 #ifdef FEAT_GUI
5504 if (gui.in_use)
5505 errmsg = (char_u *)N_("E530: Cannot change term in GUI");
5506 else if (term_is_gui(T_NAME))
5507 errmsg = (char_u *)N_("E531: Use \":gui\" to start the GUI");
5508 #endif
5509 else if (set_termname(T_NAME) == FAIL)
5510 errmsg = (char_u *)N_("E522: Not found in termcap");
5511 else
5512 /* Screen colors may have changed. */
5513 redraw_later_clear();
5516 /* 'backupcopy' */
5517 else if (varp == &p_bkc)
5519 if (opt_strings_flags(p_bkc, p_bkc_values, &bkc_flags, TRUE) != OK)
5520 errmsg = e_invarg;
5521 if (((bkc_flags & BKC_AUTO) != 0)
5522 + ((bkc_flags & BKC_YES) != 0)
5523 + ((bkc_flags & BKC_NO) != 0) != 1)
5525 /* Must have exactly one of "auto", "yes" and "no". */
5526 (void)opt_strings_flags(oldval, p_bkc_values, &bkc_flags, TRUE);
5527 errmsg = e_invarg;
5531 /* 'backupext' and 'patchmode' */
5532 else if (varp == &p_bex || varp == &p_pm)
5534 if (STRCMP(*p_bex == '.' ? p_bex + 1 : p_bex,
5535 *p_pm == '.' ? p_pm + 1 : p_pm) == 0)
5536 errmsg = (char_u *)N_("E589: 'backupext' and 'patchmode' are equal");
5540 * 'isident', 'iskeyword', 'isprint or 'isfname' option: refill chartab[]
5541 * If the new option is invalid, use old value. 'lisp' option: refill
5542 * chartab[] for '-' char
5544 else if ( varp == &p_isi
5545 || varp == &(curbuf->b_p_isk)
5546 || varp == &p_isp
5547 || varp == &p_isf)
5549 if (init_chartab() == FAIL)
5551 did_chartab = TRUE; /* need to restore it below */
5552 errmsg = e_invarg; /* error in value */
5556 /* 'helpfile' */
5557 else if (varp == &p_hf)
5559 /* May compute new values for $VIM and $VIMRUNTIME */
5560 if (didset_vim)
5562 vim_setenv((char_u *)"VIM", (char_u *)"");
5563 didset_vim = FALSE;
5565 if (didset_vimruntime)
5567 vim_setenv((char_u *)"VIMRUNTIME", (char_u *)"");
5568 didset_vimruntime = FALSE;
5572 #ifdef FEAT_MULTI_LANG
5573 /* 'helplang' */
5574 else if (varp == &p_hlg)
5576 /* Check for "", "ab", "ab,cd", etc. */
5577 for (s = p_hlg; *s != NUL; s += 3)
5579 if (s[1] == NUL || ((s[2] != ',' || s[3] == NUL) && s[2] != NUL))
5581 errmsg = e_invarg;
5582 break;
5584 if (s[2] == NUL)
5585 break;
5588 #endif
5590 /* 'highlight' */
5591 else if (varp == &p_hl)
5593 if (highlight_changed() == FAIL)
5594 errmsg = e_invarg; /* invalid flags */
5597 /* 'nrformats' */
5598 else if (gvarp == &p_nf)
5600 if (check_opt_strings(*varp, p_nf_values, TRUE) != OK)
5601 errmsg = e_invarg;
5604 #ifdef FEAT_SESSION
5605 /* 'sessionoptions' */
5606 else if (varp == &p_ssop)
5608 if (opt_strings_flags(p_ssop, p_ssop_values, &ssop_flags, TRUE) != OK)
5609 errmsg = e_invarg;
5610 if ((ssop_flags & SSOP_CURDIR) && (ssop_flags & SSOP_SESDIR))
5612 /* Don't allow both "sesdir" and "curdir". */
5613 (void)opt_strings_flags(oldval, p_ssop_values, &ssop_flags, TRUE);
5614 errmsg = e_invarg;
5617 /* 'viewoptions' */
5618 else if (varp == &p_vop)
5620 if (opt_strings_flags(p_vop, p_ssop_values, &vop_flags, TRUE) != OK)
5621 errmsg = e_invarg;
5623 #endif
5625 /* 'scrollopt' */
5626 #ifdef FEAT_SCROLLBIND
5627 else if (varp == &p_sbo)
5629 if (check_opt_strings(p_sbo, p_scbopt_values, TRUE) != OK)
5630 errmsg = e_invarg;
5632 #endif
5634 /* 'ambiwidth' */
5635 #ifdef FEAT_MBYTE
5636 else if (varp == &p_ambw)
5638 if (check_opt_strings(p_ambw, p_ambw_values, FALSE) != OK)
5639 errmsg = e_invarg;
5641 #endif
5643 /* 'background' */
5644 else if (varp == &p_bg)
5646 if (check_opt_strings(p_bg, p_bg_values, FALSE) == OK)
5648 #ifdef FEAT_EVAL
5649 int dark = (*p_bg == 'd');
5650 #endif
5652 init_highlight(FALSE, FALSE);
5654 #ifdef FEAT_EVAL
5655 if (dark != (*p_bg == 'd')
5656 && get_var_value((char_u *)"g:colors_name") != NULL)
5658 /* The color scheme must have set 'background' back to another
5659 * value, that's not what we want here. Disable the color
5660 * scheme and set the colors again. */
5661 do_unlet((char_u *)"g:colors_name", TRUE);
5662 free_string_option(p_bg);
5663 p_bg = vim_strsave((char_u *)(dark ? "dark" : "light"));
5664 check_string_option(&p_bg);
5665 init_highlight(FALSE, FALSE);
5667 #endif
5669 else
5670 errmsg = e_invarg;
5673 /* 'wildmode' */
5674 else if (varp == &p_wim)
5676 if (check_opt_wim() == FAIL)
5677 errmsg = e_invarg;
5680 #ifdef FEAT_CMDL_COMPL
5681 /* 'wildoptions' */
5682 else if (varp == &p_wop)
5684 if (check_opt_strings(p_wop, p_wop_values, TRUE) != OK)
5685 errmsg = e_invarg;
5687 #endif
5689 #ifdef FEAT_WAK
5690 /* 'winaltkeys' */
5691 else if (varp == &p_wak)
5693 if (*p_wak == NUL
5694 || check_opt_strings(p_wak, p_wak_values, FALSE) != OK)
5695 errmsg = e_invarg;
5696 # ifdef FEAT_MENU
5697 # ifdef FEAT_GUI_MOTIF
5698 else if (gui.in_use)
5699 gui_motif_set_mnemonics(p_wak[0] == 'y' || p_wak[0] == 'm');
5700 # else
5701 # ifdef FEAT_GUI_GTK
5702 else if (gui.in_use)
5703 gui_gtk_set_mnemonics(p_wak[0] == 'y' || p_wak[0] == 'm');
5704 # endif
5705 # endif
5706 # endif
5708 #endif
5710 #ifdef FEAT_AUTOCMD
5711 /* 'eventignore' */
5712 else if (varp == &p_ei)
5714 if (check_ei() == FAIL)
5715 errmsg = e_invarg;
5717 #endif
5719 #ifdef FEAT_MBYTE
5720 /* 'encoding' and 'fileencoding' */
5721 else if (varp == &p_enc || gvarp == &p_fenc || varp == &p_tenc)
5723 if (gvarp == &p_fenc)
5725 if (!curbuf->b_p_ma && opt_flags != OPT_GLOBAL)
5726 errmsg = e_modifiable;
5727 else if (vim_strchr(*varp, ',') != NULL)
5728 /* No comma allowed in 'fileencoding'; catches confusing it
5729 * with 'fileencodings'. */
5730 errmsg = e_invarg;
5731 else
5733 # ifdef FEAT_TITLE
5734 /* May show a "+" in the title now. */
5735 need_maketitle = TRUE;
5736 # endif
5737 /* Add 'fileencoding' to the swap file. */
5738 ml_setflags(curbuf);
5741 if (errmsg == NULL)
5743 /* canonize the value, so that STRCMP() can be used on it */
5744 p = enc_canonize(*varp);
5745 if (p != NULL)
5747 vim_free(*varp);
5748 *varp = p;
5750 if (varp == &p_enc)
5752 errmsg = mb_init();
5753 # ifdef FEAT_TITLE
5754 need_maketitle = TRUE;
5755 # endif
5759 # if (defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)) || defined(FEAT_GUI_MACVIM)
5760 if (errmsg == NULL && varp == &p_tenc && gui.in_use)
5762 /* MacVim and GTK+ 2 GUIs force 'tenc' to UTF-8. */
5763 if (STRCMP(p_tenc, "utf-8") != 0)
5764 # if defined(FEAT_GUI_MACVIM)
5765 errmsg = (char_u *)N_("E617: Cannot be changed in MacVim");
5766 # else
5767 errmsg = (char_u *)N_("E617: Cannot be changed in the GTK+ 2 GUI");
5768 # endif
5770 # endif
5772 if (errmsg == NULL)
5774 # ifdef FEAT_KEYMAP
5775 /* When 'keymap' is used and 'encoding' changes, reload the keymap
5776 * (with another encoding). */
5777 if (varp == &p_enc && *curbuf->b_p_keymap != NUL)
5778 (void)keymap_init();
5779 # endif
5781 /* When 'termencoding' is not empty and 'encoding' changes or when
5782 * 'termencoding' changes, need to setup for keyboard input and
5783 * display output conversion. */
5784 if (((varp == &p_enc && *p_tenc != NUL) || varp == &p_tenc))
5786 convert_setup(&input_conv, p_tenc, p_enc);
5787 convert_setup(&output_conv, p_enc, p_tenc);
5790 # if defined(WIN3264) && defined(FEAT_MBYTE)
5791 /* $HOME may have characters in active code page. */
5792 if (varp == &p_enc)
5793 init_homedir();
5794 # endif
5797 #endif
5799 #if defined(FEAT_POSTSCRIPT)
5800 else if (varp == &p_penc)
5802 /* Canonize printencoding if VIM standard one */
5803 p = enc_canonize(p_penc);
5804 if (p != NULL)
5806 vim_free(p_penc);
5807 p_penc = p;
5809 else
5811 /* Ensure lower case and '-' for '_' */
5812 for (s = p_penc; *s != NUL; s++)
5814 if (*s == '_')
5815 *s = '-';
5816 else
5817 *s = TOLOWER_ASC(*s);
5821 #endif
5823 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
5824 else if (varp == &p_imak)
5826 if (gui.in_use && !im_xim_isvalid_imactivate())
5827 errmsg = e_invarg;
5829 #endif
5831 #ifdef FEAT_KEYMAP
5832 else if (varp == &curbuf->b_p_keymap)
5834 /* load or unload key mapping tables */
5835 errmsg = keymap_init();
5837 /* When successfully installed a new keymap switch on using it. */
5838 if (*curbuf->b_p_keymap != NUL && errmsg == NULL)
5840 curbuf->b_p_iminsert = B_IMODE_LMAP;
5841 if (curbuf->b_p_imsearch != B_IMODE_USE_INSERT)
5842 curbuf->b_p_imsearch = B_IMODE_LMAP;
5843 set_iminsert_global();
5844 set_imsearch_global();
5845 # ifdef FEAT_WINDOWS
5846 status_redraw_curbuf();
5847 # endif
5850 #endif
5852 /* 'fileformat' */
5853 else if (gvarp == &p_ff)
5855 if (!curbuf->b_p_ma && !(opt_flags & OPT_GLOBAL))
5856 errmsg = e_modifiable;
5857 else if (check_opt_strings(*varp, p_ff_values, FALSE) != OK)
5858 errmsg = e_invarg;
5859 else
5861 /* may also change 'textmode' */
5862 if (get_fileformat(curbuf) == EOL_DOS)
5863 curbuf->b_p_tx = TRUE;
5864 else
5865 curbuf->b_p_tx = FALSE;
5866 #ifdef FEAT_TITLE
5867 need_maketitle = TRUE;
5868 #endif
5869 /* update flag in swap file */
5870 ml_setflags(curbuf);
5874 /* 'fileformats' */
5875 else if (varp == &p_ffs)
5877 if (check_opt_strings(p_ffs, p_ff_values, TRUE) != OK)
5878 errmsg = e_invarg;
5879 else
5881 /* also change 'textauto' */
5882 if (*p_ffs == NUL)
5883 p_ta = FALSE;
5884 else
5885 p_ta = TRUE;
5889 #if defined(FEAT_CRYPT) && defined(FEAT_CMDHIST)
5890 /* 'cryptkey' */
5891 else if (gvarp == &p_key)
5893 /* Make sure the ":set" command doesn't show the new value in the
5894 * history. */
5895 remove_key_from_history();
5897 #endif
5899 /* 'matchpairs' */
5900 else if (gvarp == &p_mps)
5902 /* Check for "x:y,x:y" */
5903 for (p = *varp; *p != NUL; p += 4)
5905 if (p[1] != ':' || p[2] == NUL || (p[3] != NUL && p[3] != ','))
5907 errmsg = e_invarg;
5908 break;
5910 if (p[3] == NUL)
5911 break;
5915 #ifdef FEAT_COMMENTS
5916 /* 'comments' */
5917 else if (gvarp == &p_com)
5919 for (s = *varp; *s; )
5921 while (*s && *s != ':')
5923 if (vim_strchr((char_u *)COM_ALL, *s) == NULL
5924 && !VIM_ISDIGIT(*s) && *s != '-')
5926 errmsg = illegal_char(errbuf, *s);
5927 break;
5929 ++s;
5931 if (*s++ == NUL)
5932 errmsg = (char_u *)N_("E524: Missing colon");
5933 else if (*s == ',' || *s == NUL)
5934 errmsg = (char_u *)N_("E525: Zero length string");
5935 if (errmsg != NULL)
5936 break;
5937 while (*s && *s != ',')
5939 if (*s == '\\' && s[1] != NUL)
5940 ++s;
5941 ++s;
5943 s = skip_to_option_part(s);
5946 #endif
5948 /* 'listchars' */
5949 else if (varp == &p_lcs)
5951 errmsg = set_chars_option(varp);
5954 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
5955 /* 'fillchars' */
5956 else if (varp == &p_fcs)
5958 errmsg = set_chars_option(varp);
5960 #endif
5962 #ifdef FEAT_CMDWIN
5963 /* 'cedit' */
5964 else if (varp == &p_cedit)
5966 errmsg = check_cedit();
5968 #endif
5970 /* 'verbosefile' */
5971 else if (varp == &p_vfile)
5973 verbose_stop();
5974 if (*p_vfile != NUL && verbose_open() == FAIL)
5975 errmsg = e_invarg;
5978 #ifdef FEAT_VIMINFO
5979 /* 'viminfo' */
5980 else if (varp == &p_viminfo)
5982 for (s = p_viminfo; *s;)
5984 /* Check it's a valid character */
5985 if (vim_strchr((char_u *)"!\"%'/:<@cfhnrs", *s) == NULL)
5987 errmsg = illegal_char(errbuf, *s);
5988 break;
5990 if (*s == 'n') /* name is always last one */
5992 break;
5994 else if (*s == 'r') /* skip until next ',' */
5996 while (*++s && *s != ',')
5999 else if (*s == '%')
6001 /* optional number */
6002 while (vim_isdigit(*++s))
6005 else if (*s == '!' || *s == 'h' || *s == 'c')
6006 ++s; /* no extra chars */
6007 else /* must have a number */
6009 while (vim_isdigit(*++s))
6012 if (!VIM_ISDIGIT(*(s - 1)))
6014 if (errbuf != NULL)
6016 sprintf((char *)errbuf,
6017 _("E526: Missing number after <%s>"),
6018 transchar_byte(*(s - 1)));
6019 errmsg = errbuf;
6021 else
6022 errmsg = (char_u *)"";
6023 break;
6026 if (*s == ',')
6027 ++s;
6028 else if (*s)
6030 if (errbuf != NULL)
6031 errmsg = (char_u *)N_("E527: Missing comma");
6032 else
6033 errmsg = (char_u *)"";
6034 break;
6037 if (*p_viminfo && errmsg == NULL && get_viminfo_parameter('\'') < 0)
6038 errmsg = (char_u *)N_("E528: Must specify a ' value");
6040 #endif /* FEAT_VIMINFO */
6042 /* terminal options */
6043 else if (istermoption(&options[opt_idx]) && full_screen)
6045 /* ":set t_Co=0" and ":set t_Co=1" do ":set t_Co=" */
6046 if (varp == &T_CCO)
6048 t_colors = atoi((char *)T_CCO);
6049 if (t_colors <= 1)
6051 if (new_value_alloced)
6052 vim_free(T_CCO);
6053 T_CCO = empty_option;
6055 /* We now have a different color setup, initialize it again. */
6056 init_highlight(TRUE, FALSE);
6058 ttest(FALSE);
6059 if (varp == &T_ME)
6061 out_str(T_ME);
6062 redraw_later(CLEAR);
6063 #if defined(MSDOS) || (defined(WIN3264) && !defined(FEAT_GUI_W32))
6064 /* Since t_me has been set, this probably means that the user
6065 * wants to use this as default colors. Need to reset default
6066 * background/foreground colors. */
6067 mch_set_normal_colors();
6068 #endif
6072 #ifdef FEAT_LINEBREAK
6073 /* 'showbreak' */
6074 else if (varp == &p_sbr)
6076 for (s = p_sbr; *s; )
6078 if (ptr2cells(s) != 1)
6079 errmsg = (char_u *)N_("E595: contains unprintable or wide character");
6080 mb_ptr_adv(s);
6083 #endif
6085 #ifdef FEAT_GUI
6086 /* 'guifont' */
6087 else if (varp == &p_guifont)
6089 if (gui.in_use)
6091 p = p_guifont;
6092 # if defined(FEAT_GUI_GTK)
6094 * Put up a font dialog and let the user select a new value.
6095 * If this is cancelled go back to the old value but don't
6096 * give an error message.
6098 if (STRCMP(p, "*") == 0)
6100 p = gui_mch_font_dialog(oldval);
6102 if (new_value_alloced)
6103 free_string_option(p_guifont);
6105 p_guifont = (p != NULL) ? p : vim_strsave(oldval);
6106 new_value_alloced = TRUE;
6108 # endif
6109 if (p != NULL && gui_init_font(p_guifont, FALSE) != OK)
6111 # if defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_PHOTON) \
6112 || defined(FEAT_GUI_MACVIM)
6113 if (STRCMP(p_guifont, "*") == 0)
6115 /* Dialog was cancelled: Keep the old value without giving
6116 * an error message. */
6117 if (new_value_alloced)
6118 free_string_option(p_guifont);
6119 p_guifont = vim_strsave(oldval);
6120 new_value_alloced = TRUE;
6122 else
6123 # endif
6124 errmsg = (char_u *)N_("E596: Invalid font(s)");
6128 # ifdef FEAT_XFONTSET
6129 else if (varp == &p_guifontset)
6131 if (STRCMP(p_guifontset, "*") == 0)
6132 errmsg = (char_u *)N_("E597: can't select fontset");
6133 else if (gui.in_use && gui_init_font(p_guifontset, TRUE) != OK)
6134 errmsg = (char_u *)N_("E598: Invalid fontset");
6136 # endif
6137 # ifdef FEAT_MBYTE
6138 else if (varp == &p_guifontwide)
6140 if (STRCMP(p_guifontwide, "*") == 0)
6141 errmsg = (char_u *)N_("E533: can't select wide font");
6142 else if (gui_get_wide_font() == FAIL)
6143 errmsg = (char_u *)N_("E534: Invalid wide font");
6145 # endif
6146 #endif
6148 #ifdef CURSOR_SHAPE
6149 /* 'guicursor' */
6150 else if (varp == &p_guicursor)
6151 errmsg = parse_shape_opt(SHAPE_CURSOR);
6152 #endif
6154 #ifdef FEAT_MOUSESHAPE
6155 /* 'mouseshape' */
6156 else if (varp == &p_mouseshape)
6158 errmsg = parse_shape_opt(SHAPE_MOUSE);
6159 update_mouseshape(-1);
6161 #endif
6163 #ifdef FEAT_PRINTER
6164 else if (varp == &p_popt)
6165 errmsg = parse_printoptions();
6166 # if defined(FEAT_MBYTE) && defined(FEAT_POSTSCRIPT)
6167 else if (varp == &p_pmfn)
6168 errmsg = parse_printmbfont();
6169 # endif
6170 #endif
6172 #ifdef FEAT_LANGMAP
6173 /* 'langmap' */
6174 else if (varp == &p_langmap)
6175 langmap_set();
6176 #endif
6178 #ifdef FEAT_LINEBREAK
6179 /* 'breakat' */
6180 else if (varp == &p_breakat)
6181 fill_breakat_flags();
6182 #endif
6184 #ifdef FEAT_TITLE
6185 /* 'titlestring' and 'iconstring' */
6186 else if (varp == &p_titlestring || varp == &p_iconstring)
6188 # ifdef FEAT_STL_OPT
6189 int flagval = (varp == &p_titlestring) ? STL_IN_TITLE : STL_IN_ICON;
6191 /* NULL => statusline syntax */
6192 if (vim_strchr(*varp, '%') && check_stl_option(*varp) == NULL)
6193 stl_syntax |= flagval;
6194 else
6195 stl_syntax &= ~flagval;
6196 # endif
6197 did_set_title(varp == &p_iconstring);
6200 #endif
6202 #ifdef FEAT_GUI
6203 /* 'guioptions' */
6204 else if (varp == &p_go)
6205 gui_init_which_components(oldval);
6206 #endif
6208 #if defined(FEAT_GUI_TABLINE)
6209 /* 'guitablabel' */
6210 else if (varp == &p_gtl)
6211 redraw_tabline = TRUE;
6212 #endif
6214 #if defined(FEAT_MOUSE_TTY) && (defined(UNIX) || defined(VMS))
6215 /* 'ttymouse' */
6216 else if (varp == &p_ttym)
6218 /* Switch the mouse off before changing the escape sequences used for
6219 * that. */
6220 mch_setmouse(FALSE);
6221 if (opt_strings_flags(p_ttym, p_ttym_values, &ttym_flags, FALSE) != OK)
6222 errmsg = e_invarg;
6223 else
6224 check_mouse_termcode();
6225 if (termcap_active)
6226 setmouse(); /* may switch it on again */
6228 #endif
6230 #ifdef FEAT_VISUAL
6231 /* 'selection' */
6232 else if (varp == &p_sel)
6234 if (*p_sel == NUL
6235 || check_opt_strings(p_sel, p_sel_values, FALSE) != OK)
6236 errmsg = e_invarg;
6239 /* 'selectmode' */
6240 else if (varp == &p_slm)
6242 if (check_opt_strings(p_slm, p_slm_values, TRUE) != OK)
6243 errmsg = e_invarg;
6245 #endif
6247 #ifdef FEAT_BROWSE
6248 /* 'browsedir' */
6249 else if (varp == &p_bsdir)
6251 if (check_opt_strings(p_bsdir, p_bsdir_values, FALSE) != OK
6252 && !mch_isdir(p_bsdir))
6253 errmsg = e_invarg;
6255 #endif
6257 #ifdef FEAT_VISUAL
6258 /* 'keymodel' */
6259 else if (varp == &p_km)
6261 if (check_opt_strings(p_km, p_km_values, TRUE) != OK)
6262 errmsg = e_invarg;
6263 else
6265 km_stopsel = (vim_strchr(p_km, 'o') != NULL);
6266 km_startsel = (vim_strchr(p_km, 'a') != NULL);
6269 #endif
6271 /* 'mousemodel' */
6272 else if (varp == &p_mousem)
6274 if (check_opt_strings(p_mousem, p_mousem_values, FALSE) != OK)
6275 errmsg = e_invarg;
6276 #if defined(FEAT_GUI_MOTIF) && defined(FEAT_MENU) && (XmVersion <= 1002)
6277 else if (*p_mousem != *oldval)
6278 /* Changed from "extend" to "popup" or "popup_setpos" or vv: need
6279 * to create or delete the popup menus. */
6280 gui_motif_update_mousemodel(root_menu);
6281 #endif
6284 /* 'switchbuf' */
6285 else if (varp == &p_swb)
6287 if (opt_strings_flags(p_swb, p_swb_values, &swb_flags, TRUE) != OK)
6288 errmsg = e_invarg;
6291 /* 'debug' */
6292 else if (varp == &p_debug)
6294 if (check_opt_strings(p_debug, p_debug_values, TRUE) != OK)
6295 errmsg = e_invarg;
6298 /* 'display' */
6299 else if (varp == &p_dy)
6301 if (opt_strings_flags(p_dy, p_dy_values, &dy_flags, TRUE) != OK)
6302 errmsg = e_invarg;
6303 else
6304 (void)init_chartab();
6308 #ifdef FEAT_VERTSPLIT
6309 /* 'eadirection' */
6310 else if (varp == &p_ead)
6312 if (check_opt_strings(p_ead, p_ead_values, FALSE) != OK)
6313 errmsg = e_invarg;
6315 #endif
6317 #ifdef FEAT_CLIPBOARD
6318 /* 'clipboard' */
6319 else if (varp == &p_cb)
6320 errmsg = check_clipboard_option();
6321 #endif
6323 #ifdef FEAT_SPELL
6324 /* When 'spelllang' or 'spellfile' is set and there is a window for this
6325 * buffer in which 'spell' is set load the wordlists. */
6326 else if (varp == &(curbuf->b_p_spl) || varp == &(curbuf->b_p_spf))
6328 win_T *wp;
6329 int l;
6331 if (varp == &(curbuf->b_p_spf))
6333 l = (int)STRLEN(curbuf->b_p_spf);
6334 if (l > 0 && (l < 4 || STRCMP(curbuf->b_p_spf + l - 4,
6335 ".add") != 0))
6336 errmsg = e_invarg;
6339 if (errmsg == NULL)
6341 FOR_ALL_WINDOWS(wp)
6342 if (wp->w_buffer == curbuf && wp->w_p_spell)
6344 errmsg = did_set_spelllang(curbuf);
6345 # ifdef FEAT_WINDOWS
6346 break;
6347 # endif
6351 /* When 'spellcapcheck' is set compile the regexp program. */
6352 else if (varp == &(curbuf->b_p_spc))
6354 errmsg = compile_cap_prog(curbuf);
6356 /* 'spellsuggest' */
6357 else if (varp == &p_sps)
6359 if (spell_check_sps() != OK)
6360 errmsg = e_invarg;
6362 /* 'mkspellmem' */
6363 else if (varp == &p_msm)
6365 if (spell_check_msm() != OK)
6366 errmsg = e_invarg;
6368 #endif
6370 #ifdef FEAT_QUICKFIX
6371 /* When 'bufhidden' is set, check for valid value. */
6372 else if (gvarp == &p_bh)
6374 if (check_opt_strings(curbuf->b_p_bh, p_bufhidden_values, FALSE) != OK)
6375 errmsg = e_invarg;
6378 /* When 'buftype' is set, check for valid value. */
6379 else if (gvarp == &p_bt)
6381 if (check_opt_strings(curbuf->b_p_bt, p_buftype_values, FALSE) != OK)
6382 errmsg = e_invarg;
6383 else
6385 # ifdef FEAT_WINDOWS
6386 if (curwin->w_status_height)
6388 curwin->w_redr_status = TRUE;
6389 redraw_later(VALID);
6391 # endif
6392 curbuf->b_help = (curbuf->b_p_bt[0] == 'h');
6395 #endif
6397 #ifdef FEAT_STL_OPT
6398 /* 'statusline' or 'rulerformat' */
6399 else if (gvarp == &p_stl || varp == &p_ruf)
6401 int wid;
6403 if (varp == &p_ruf) /* reset ru_wid first */
6404 ru_wid = 0;
6405 s = *varp;
6406 if (varp == &p_ruf && *s == '%')
6408 /* set ru_wid if 'ruf' starts with "%99(" */
6409 if (*++s == '-') /* ignore a '-' */
6410 s++;
6411 wid = getdigits(&s);
6412 if (wid && *s == '(' && (errmsg = check_stl_option(p_ruf)) == NULL)
6413 ru_wid = wid;
6414 else
6415 errmsg = check_stl_option(p_ruf);
6417 /* check 'statusline' only if it doesn't start with "%!" */
6418 else if (varp == &p_ruf || s[0] != '%' || s[1] != '!')
6419 errmsg = check_stl_option(s);
6420 if (varp == &p_ruf && errmsg == NULL)
6421 comp_col();
6423 #endif
6425 #ifdef FEAT_INS_EXPAND
6426 /* check if it is a valid value for 'complete' -- Acevedo */
6427 else if (gvarp == &p_cpt)
6429 for (s = *varp; *s;)
6431 while(*s == ',' || *s == ' ')
6432 s++;
6433 if (!*s)
6434 break;
6435 if (vim_strchr((char_u *)".wbuksid]tU", *s) == NULL)
6437 errmsg = illegal_char(errbuf, *s);
6438 break;
6440 if (*++s != NUL && *s != ',' && *s != ' ')
6442 if (s[-1] == 'k' || s[-1] == 's')
6444 /* skip optional filename after 'k' and 's' */
6445 while (*s && *s != ',' && *s != ' ')
6447 if (*s == '\\')
6448 ++s;
6449 ++s;
6452 else
6454 if (errbuf != NULL)
6456 sprintf((char *)errbuf,
6457 _("E535: Illegal character after <%c>"),
6458 *--s);
6459 errmsg = errbuf;
6461 else
6462 errmsg = (char_u *)"";
6463 break;
6469 /* 'completeopt' */
6470 else if (varp == &p_cot)
6472 if (check_opt_strings(p_cot, p_cot_values, TRUE) != OK)
6473 errmsg = e_invarg;
6475 #endif /* FEAT_INS_EXPAND */
6478 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
6479 else if (varp == &p_toolbar)
6481 if (opt_strings_flags(p_toolbar, p_toolbar_values,
6482 &toolbar_flags, TRUE) != OK)
6483 errmsg = e_invarg;
6484 else
6486 out_flush();
6487 gui_mch_show_toolbar((toolbar_flags &
6488 (TOOLBAR_TEXT | TOOLBAR_ICONS)) != 0);
6491 #endif
6493 #if defined(FEAT_TOOLBAR) && ((defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)) \
6494 || defined(FEAT_GUI_MACVIM))
6495 /* 'toolbariconsize': GTK+ 2 and MacVim only */
6496 else if (varp == &p_tbis)
6498 if (opt_strings_flags(p_tbis, p_tbis_values, &tbis_flags, FALSE) != OK)
6499 errmsg = e_invarg;
6500 else
6502 out_flush();
6503 gui_mch_show_toolbar((toolbar_flags &
6504 (TOOLBAR_TEXT | TOOLBAR_ICONS)) != 0);
6507 #endif
6509 /* 'pastetoggle': translate key codes like in a mapping */
6510 else if (varp == &p_pt)
6512 if (*p_pt)
6514 (void)replace_termcodes(p_pt, &p, TRUE, TRUE, FALSE);
6515 if (p != NULL)
6517 if (new_value_alloced)
6518 free_string_option(p_pt);
6519 p_pt = p;
6520 new_value_alloced = TRUE;
6525 /* 'backspace' */
6526 else if (varp == &p_bs)
6528 if (VIM_ISDIGIT(*p_bs))
6530 if (*p_bs >'2' || p_bs[1] != NUL)
6531 errmsg = e_invarg;
6533 else if (check_opt_strings(p_bs, p_bs_values, TRUE) != OK)
6534 errmsg = e_invarg;
6537 #ifdef FEAT_MBYTE
6538 /* 'casemap' */
6539 else if (varp == &p_cmp)
6541 if (opt_strings_flags(p_cmp, p_cmp_values, &cmp_flags, TRUE) != OK)
6542 errmsg = e_invarg;
6544 #endif
6546 #ifdef FEAT_DIFF
6547 /* 'diffopt' */
6548 else if (varp == &p_dip)
6550 if (diffopt_changed() == FAIL)
6551 errmsg = e_invarg;
6553 #endif
6555 #ifdef FEAT_FOLDING
6556 /* 'foldmethod' */
6557 else if (gvarp == &curwin->w_allbuf_opt.wo_fdm)
6559 if (check_opt_strings(*varp, p_fdm_values, FALSE) != OK
6560 || *curwin->w_p_fdm == NUL)
6561 errmsg = e_invarg;
6562 else
6563 foldUpdateAll(curwin);
6565 # ifdef FEAT_EVAL
6566 /* 'foldexpr' */
6567 else if (varp == &curwin->w_p_fde)
6569 if (foldmethodIsExpr(curwin))
6570 foldUpdateAll(curwin);
6572 # endif
6573 /* 'foldmarker' */
6574 else if (gvarp == &curwin->w_allbuf_opt.wo_fmr)
6576 p = vim_strchr(*varp, ',');
6577 if (p == NULL)
6578 errmsg = (char_u *)N_("E536: comma required");
6579 else if (p == *varp || p[1] == NUL)
6580 errmsg = e_invarg;
6581 else if (foldmethodIsMarker(curwin))
6582 foldUpdateAll(curwin);
6584 /* 'commentstring' */
6585 else if (gvarp == &p_cms)
6587 if (**varp != NUL && strstr((char *)*varp, "%s") == NULL)
6588 errmsg = (char_u *)N_("E537: 'commentstring' must be empty or contain %s");
6590 /* 'foldopen' */
6591 else if (varp == &p_fdo)
6593 if (opt_strings_flags(p_fdo, p_fdo_values, &fdo_flags, TRUE) != OK)
6594 errmsg = e_invarg;
6596 /* 'foldclose' */
6597 else if (varp == &p_fcl)
6599 if (check_opt_strings(p_fcl, p_fcl_values, TRUE) != OK)
6600 errmsg = e_invarg;
6602 /* 'foldignore' */
6603 else if (gvarp == &curwin->w_allbuf_opt.wo_fdi)
6605 if (foldmethodIsIndent(curwin))
6606 foldUpdateAll(curwin);
6608 #endif
6610 #ifdef FEAT_FULLSCREEN
6611 /* 'fuoptions' */
6612 else if (varp == &p_fuoptions)
6614 if (check_fuoptions(p_fuoptions, &fuoptions_flags,
6615 &fuoptions_bgcolor) != OK)
6616 errmsg = e_invarg;
6618 #endif
6620 #ifdef FEAT_VIRTUALEDIT
6621 /* 'virtualedit' */
6622 else if (varp == &p_ve)
6624 if (opt_strings_flags(p_ve, p_ve_values, &ve_flags, TRUE) != OK)
6625 errmsg = e_invarg;
6626 else if (STRCMP(p_ve, oldval) != 0)
6628 /* Recompute cursor position in case the new 've' setting
6629 * changes something. */
6630 validate_virtcol();
6631 coladvance(curwin->w_virtcol);
6634 #endif
6636 #if defined(FEAT_CSCOPE) && defined(FEAT_QUICKFIX)
6637 else if (varp == &p_csqf)
6639 if (p_csqf != NULL)
6641 p = p_csqf;
6642 while (*p != NUL)
6644 if (vim_strchr((char_u *)CSQF_CMDS, *p) == NULL
6645 || p[1] == NUL
6646 || vim_strchr((char_u *)CSQF_FLAGS, p[1]) == NULL
6647 || (p[2] != NUL && p[2] != ','))
6649 errmsg = e_invarg;
6650 break;
6652 else if (p[2] == NUL)
6653 break;
6654 else
6655 p += 3;
6659 #endif
6661 /* Options that are a list of flags. */
6662 else
6664 p = NULL;
6665 if (varp == &p_ww)
6666 p = (char_u *)WW_ALL;
6667 if (varp == &p_shm)
6668 p = (char_u *)SHM_ALL;
6669 else if (varp == &(p_cpo))
6670 p = (char_u *)CPO_ALL;
6671 else if (varp == &(curbuf->b_p_fo))
6672 p = (char_u *)FO_ALL;
6673 else if (varp == &p_mouse)
6675 #ifdef FEAT_MOUSE
6676 p = (char_u *)MOUSE_ALL;
6677 #else
6678 if (*p_mouse != NUL)
6679 errmsg = (char_u *)N_("E538: No mouse support");
6680 #endif
6682 #if defined(FEAT_GUI)
6683 else if (varp == &p_go)
6684 p = (char_u *)GO_ALL;
6685 #endif
6686 if (p != NULL)
6688 for (s = *varp; *s; ++s)
6689 if (vim_strchr(p, *s) == NULL)
6691 errmsg = illegal_char(errbuf, *s);
6692 break;
6698 * If error detected, restore the previous value.
6700 if (errmsg != NULL)
6702 if (new_value_alloced)
6703 free_string_option(*varp);
6704 *varp = oldval;
6706 * When resetting some values, need to act on it.
6708 if (did_chartab)
6709 (void)init_chartab();
6710 if (varp == &p_hl)
6711 (void)highlight_changed();
6713 else
6715 #ifdef FEAT_EVAL
6716 /* Remember where the option was set. */
6717 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
6718 #endif
6720 * Free string options that are in allocated memory.
6721 * Use "free_oldval", because recursiveness may change the flags under
6722 * our fingers (esp. init_highlight()).
6724 if (free_oldval)
6725 free_string_option(oldval);
6726 if (new_value_alloced)
6727 options[opt_idx].flags |= P_ALLOCED;
6728 else
6729 options[opt_idx].flags &= ~P_ALLOCED;
6731 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
6732 && ((int)options[opt_idx].indir & PV_BOTH))
6734 /* global option with local value set to use global value; free
6735 * the local value and make it empty */
6736 p = get_varp_scope(&(options[opt_idx]), OPT_LOCAL);
6737 free_string_option(*(char_u **)p);
6738 *(char_u **)p = empty_option;
6741 /* May set global value for local option. */
6742 else if (!(opt_flags & OPT_LOCAL) && opt_flags != OPT_GLOBAL)
6743 set_string_option_global(opt_idx, varp);
6745 #ifdef FEAT_AUTOCMD
6747 * Trigger the autocommand only after setting the flags.
6749 # ifdef FEAT_SYN_HL
6750 /* When 'syntax' is set, load the syntax of that name */
6751 if (varp == &(curbuf->b_p_syn))
6753 apply_autocmds(EVENT_SYNTAX, curbuf->b_p_syn,
6754 curbuf->b_fname, TRUE, curbuf);
6756 # endif
6757 else if (varp == &(curbuf->b_p_ft))
6759 /* 'filetype' is set, trigger the FileType autocommand */
6760 did_filetype = TRUE;
6761 apply_autocmds(EVENT_FILETYPE, curbuf->b_p_ft,
6762 curbuf->b_fname, TRUE, curbuf);
6764 #endif
6765 #ifdef FEAT_SPELL
6766 if (varp == &(curbuf->b_p_spl))
6768 char_u fname[200];
6771 * Source the spell/LANG.vim in 'runtimepath'.
6772 * They could set 'spellcapcheck' depending on the language.
6773 * Use the first name in 'spelllang' up to '_region' or
6774 * '.encoding'.
6776 for (p = curbuf->b_p_spl; *p != NUL; ++p)
6777 if (vim_strchr((char_u *)"_.,", *p) != NULL)
6778 break;
6779 vim_snprintf((char *)fname, 200, "spell/%.*s.vim",
6780 (int)(p - curbuf->b_p_spl), curbuf->b_p_spl);
6781 source_runtime(fname, TRUE);
6783 #endif
6786 #ifdef FEAT_MOUSE
6787 if (varp == &p_mouse)
6789 # ifdef FEAT_MOUSE_TTY
6790 if (*p_mouse == NUL)
6791 mch_setmouse(FALSE); /* switch mouse off */
6792 else
6793 # endif
6794 setmouse(); /* in case 'mouse' changed */
6796 #endif
6798 if (curwin->w_curswant != MAXCOL)
6799 curwin->w_set_curswant = TRUE; /* in case 'showbreak' changed */
6800 check_redraw(options[opt_idx].flags);
6802 return errmsg;
6806 * Handle setting 'listchars' or 'fillchars'.
6807 * Returns error message, NULL if it's OK.
6809 static char_u *
6810 set_chars_option(varp)
6811 char_u **varp;
6813 int round, i, len, entries;
6814 char_u *p, *s;
6815 int c1, c2 = 0;
6816 struct charstab
6818 int *cp;
6819 char *name;
6821 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6822 static struct charstab filltab[] =
6824 {&fill_stl, "stl"},
6825 {&fill_stlnc, "stlnc"},
6826 {&fill_vert, "vert"},
6827 {&fill_fold, "fold"},
6828 {&fill_diff, "diff"},
6830 #endif
6831 static struct charstab lcstab[] =
6833 {&lcs_eol, "eol"},
6834 {&lcs_ext, "extends"},
6835 {&lcs_nbsp, "nbsp"},
6836 {&lcs_prec, "precedes"},
6837 {&lcs_tab2, "tab"},
6838 {&lcs_trail, "trail"},
6840 struct charstab *tab;
6842 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6843 if (varp == &p_lcs)
6844 #endif
6846 tab = lcstab;
6847 entries = sizeof(lcstab) / sizeof(struct charstab);
6849 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6850 else
6852 tab = filltab;
6853 entries = sizeof(filltab) / sizeof(struct charstab);
6855 #endif
6857 /* first round: check for valid value, second round: assign values */
6858 for (round = 0; round <= 1; ++round)
6860 if (round)
6862 /* After checking that the value is valid: set defaults: space for
6863 * 'fillchars', NUL for 'listchars' */
6864 for (i = 0; i < entries; ++i)
6865 *(tab[i].cp) = (varp == &p_lcs ? NUL : ' ');
6866 if (varp == &p_lcs)
6867 lcs_tab1 = NUL;
6868 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6869 else
6870 fill_diff = '-';
6871 #endif
6873 p = *varp;
6874 while (*p)
6876 for (i = 0; i < entries; ++i)
6878 len = (int)STRLEN(tab[i].name);
6879 if (STRNCMP(p, tab[i].name, len) == 0
6880 && p[len] == ':'
6881 && p[len + 1] != NUL)
6883 s = p + len + 1;
6884 #ifdef FEAT_MBYTE
6885 c1 = mb_ptr2char_adv(&s);
6886 if (mb_char2cells(c1) > 1)
6887 continue;
6888 #else
6889 c1 = *s++;
6890 #endif
6891 if (tab[i].cp == &lcs_tab2)
6893 if (*s == NUL)
6894 continue;
6895 #ifdef FEAT_MBYTE
6896 c2 = mb_ptr2char_adv(&s);
6897 if (mb_char2cells(c2) > 1)
6898 continue;
6899 #else
6900 c2 = *s++;
6901 #endif
6903 if (*s == ',' || *s == NUL)
6905 if (round)
6907 if (tab[i].cp == &lcs_tab2)
6909 lcs_tab1 = c1;
6910 lcs_tab2 = c2;
6912 else
6913 *(tab[i].cp) = c1;
6916 p = s;
6917 break;
6922 if (i == entries)
6923 return e_invarg;
6924 if (*p == ',')
6925 ++p;
6929 return NULL; /* no error */
6932 #ifdef FEAT_STL_OPT
6934 * Check validity of options with the 'statusline' format.
6935 * Return error message or NULL.
6937 char_u *
6938 check_stl_option(s)
6939 char_u *s;
6941 int itemcnt = 0;
6942 int groupdepth = 0;
6943 static char_u errbuf[80];
6945 while (*s && itemcnt < STL_MAX_ITEM)
6947 /* Check for valid keys after % sequences */
6948 while (*s && *s != '%')
6949 s++;
6950 if (!*s)
6951 break;
6952 s++;
6953 if (*s != '%' && *s != ')')
6954 ++itemcnt;
6955 if (*s == '%' || *s == STL_TRUNCMARK || *s == STL_MIDDLEMARK)
6957 s++;
6958 continue;
6960 if (*s == ')')
6962 s++;
6963 if (--groupdepth < 0)
6964 break;
6965 continue;
6967 if (*s == '-')
6968 s++;
6969 while (VIM_ISDIGIT(*s))
6970 s++;
6971 if (*s == STL_USER_HL)
6972 continue;
6973 if (*s == '.')
6975 s++;
6976 while (*s && VIM_ISDIGIT(*s))
6977 s++;
6979 if (*s == '(')
6981 groupdepth++;
6982 continue;
6984 if (vim_strchr(STL_ALL, *s) == NULL)
6986 return illegal_char(errbuf, *s);
6988 if (*s == '{')
6990 s++;
6991 while (*s != '}' && *s)
6992 s++;
6993 if (*s != '}')
6994 return (char_u *)N_("E540: Unclosed expression sequence");
6997 if (itemcnt >= STL_MAX_ITEM)
6998 return (char_u *)N_("E541: too many items");
6999 if (groupdepth != 0)
7000 return (char_u *)N_("E542: unbalanced groups");
7001 return NULL;
7003 #endif
7005 #ifdef FEAT_CLIPBOARD
7007 * Extract the items in the 'clipboard' option and set global values.
7009 static char_u *
7010 check_clipboard_option()
7012 int new_unnamed = FALSE;
7013 int new_autoselect = FALSE;
7014 int new_autoselectml = FALSE;
7015 regprog_T *new_exclude_prog = NULL;
7016 char_u *errmsg = NULL;
7017 char_u *p;
7019 for (p = p_cb; *p != NUL; )
7021 if (STRNCMP(p, "unnamed", 7) == 0 && (p[7] == ',' || p[7] == NUL))
7023 new_unnamed = TRUE;
7024 p += 7;
7026 else if (STRNCMP(p, "autoselect", 10) == 0
7027 && (p[10] == ',' || p[10] == NUL))
7029 new_autoselect = TRUE;
7030 p += 10;
7032 else if (STRNCMP(p, "autoselectml", 12) == 0
7033 && (p[12] == ',' || p[12] == NUL))
7035 new_autoselectml = TRUE;
7036 p += 12;
7038 else if (STRNCMP(p, "exclude:", 8) == 0 && new_exclude_prog == NULL)
7040 p += 8;
7041 new_exclude_prog = vim_regcomp(p, RE_MAGIC);
7042 if (new_exclude_prog == NULL)
7043 errmsg = e_invarg;
7044 break;
7046 else
7048 errmsg = e_invarg;
7049 break;
7051 if (*p == ',')
7052 ++p;
7054 if (errmsg == NULL)
7056 clip_unnamed = new_unnamed;
7057 clip_autoselect = new_autoselect;
7058 clip_autoselectml = new_autoselectml;
7059 vim_free(clip_exclude_prog);
7060 clip_exclude_prog = new_exclude_prog;
7062 else
7063 vim_free(new_exclude_prog);
7065 return errmsg;
7067 #endif
7069 #ifdef FEAT_SPELL
7071 * Set curbuf->b_cap_prog to the regexp program for 'spellcapcheck'.
7072 * Return error message when failed, NULL when OK.
7074 static char_u *
7075 compile_cap_prog(buf)
7076 buf_T *buf;
7078 regprog_T *rp = buf->b_cap_prog;
7079 char_u *re;
7081 if (*buf->b_p_spc == NUL)
7082 buf->b_cap_prog = NULL;
7083 else
7085 /* Prepend a ^ so that we only match at one column */
7086 re = concat_str((char_u *)"^", buf->b_p_spc);
7087 if (re != NULL)
7089 buf->b_cap_prog = vim_regcomp(re, RE_MAGIC);
7090 if (buf->b_cap_prog == NULL)
7092 buf->b_cap_prog = rp; /* restore the previous program */
7093 return e_invarg;
7095 vim_free(re);
7099 vim_free(rp);
7100 return NULL;
7102 #endif
7104 #if defined(FEAT_EVAL) || defined(PROTO)
7106 * Set the scriptID for an option, taking care of setting the buffer- or
7107 * window-local value.
7109 static void
7110 set_option_scriptID_idx(opt_idx, opt_flags, id)
7111 int opt_idx;
7112 int opt_flags;
7113 int id;
7115 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
7116 int indir = (int)options[opt_idx].indir;
7118 /* Remember where the option was set. For local options need to do that
7119 * in the buffer or window structure. */
7120 if (both || (opt_flags & OPT_GLOBAL) || (indir & (PV_BUF|PV_WIN)) == 0)
7121 options[opt_idx].scriptID = id;
7122 if (both || (opt_flags & OPT_LOCAL))
7124 if (indir & PV_BUF)
7125 curbuf->b_p_scriptID[indir & PV_MASK] = id;
7126 else if (indir & PV_WIN)
7127 curwin->w_p_scriptID[indir & PV_MASK] = id;
7130 #endif
7133 * Set the value of a boolean option, and take care of side effects.
7134 * Returns NULL for success, or an error message for an error.
7136 static char_u *
7137 set_bool_option(opt_idx, varp, value, opt_flags)
7138 int opt_idx; /* index in options[] table */
7139 char_u *varp; /* pointer to the option variable */
7140 int value; /* new value */
7141 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
7143 int old_value = *(int *)varp;
7145 /* Disallow changing some options from secure mode */
7146 if ((secure
7147 #ifdef HAVE_SANDBOX
7148 || sandbox != 0
7149 #endif
7150 ) && (options[opt_idx].flags & P_SECURE))
7151 return e_secure;
7153 *(int *)varp = value; /* set the new value */
7154 #ifdef FEAT_EVAL
7155 /* Remember where the option was set. */
7156 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
7157 #endif
7159 #ifdef FEAT_GUI
7160 need_mouse_correct = TRUE;
7161 #endif
7163 /* May set global value for local option. */
7164 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0)
7165 *(int *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) = value;
7168 * Handle side effects of changing a bool option.
7171 /* 'compatible' */
7172 if ((int *)varp == &p_cp)
7174 compatible_set();
7177 else if ((int *)varp == &curbuf->b_p_ro)
7179 /* when 'readonly' is reset globally, also reset readonlymode */
7180 if (!curbuf->b_p_ro && (opt_flags & OPT_LOCAL) == 0)
7181 readonlymode = FALSE;
7183 /* when 'readonly' is set may give W10 again */
7184 if (curbuf->b_p_ro)
7185 curbuf->b_did_warn = FALSE;
7187 #ifdef FEAT_TITLE
7188 need_maketitle = TRUE;
7189 #endif
7192 #ifdef FEAT_TITLE
7193 /* when 'modifiable' is changed, redraw the window title */
7194 else if ((int *)varp == &curbuf->b_p_ma)
7195 need_maketitle = TRUE;
7196 /* when 'endofline' is changed, redraw the window title */
7197 else if ((int *)varp == &curbuf->b_p_eol)
7198 need_maketitle = TRUE;
7199 #ifdef FEAT_MBYTE
7200 /* when 'bomb' is changed, redraw the window title */
7201 else if ((int *)varp == &curbuf->b_p_bomb)
7202 need_maketitle = TRUE;
7203 #endif
7204 #endif
7206 /* when 'bin' is set also set some other options */
7207 else if ((int *)varp == &curbuf->b_p_bin)
7209 set_options_bin(old_value, curbuf->b_p_bin, opt_flags);
7210 #ifdef FEAT_TITLE
7211 need_maketitle = TRUE;
7212 #endif
7215 #ifdef FEAT_AUTOCMD
7216 /* when 'buflisted' changes, trigger autocommands */
7217 else if ((int *)varp == &curbuf->b_p_bl && old_value != curbuf->b_p_bl)
7219 apply_autocmds(curbuf->b_p_bl ? EVENT_BUFADD : EVENT_BUFDELETE,
7220 NULL, NULL, TRUE, curbuf);
7222 #endif
7224 /* when 'swf' is set, create swapfile, when reset remove swapfile */
7225 else if ((int *)varp == &curbuf->b_p_swf)
7227 if (curbuf->b_p_swf && p_uc)
7228 ml_open_file(curbuf); /* create the swap file */
7229 else
7230 /* no need to reset curbuf->b_may_swap, ml_open_file() will check
7231 * buf->b_p_swf */
7232 mf_close_file(curbuf, TRUE); /* remove the swap file */
7235 /* when 'terse' is set change 'shortmess' */
7236 else if ((int *)varp == &p_terse)
7238 char_u *p;
7240 p = vim_strchr(p_shm, SHM_SEARCH);
7242 /* insert 's' in p_shm */
7243 if (p_terse && p == NULL)
7245 STRCPY(IObuff, p_shm);
7246 STRCAT(IObuff, "s");
7247 set_string_option_direct((char_u *)"shm", -1, IObuff, OPT_FREE, 0);
7249 /* remove 's' from p_shm */
7250 else if (!p_terse && p != NULL)
7251 STRMOVE(p, p + 1);
7254 /* when 'paste' is set or reset also change other options */
7255 else if ((int *)varp == &p_paste)
7257 paste_option_changed();
7260 /* when 'insertmode' is set from an autocommand need to do work here */
7261 else if ((int *)varp == &p_im)
7263 if (p_im)
7265 if ((State & INSERT) == 0)
7266 need_start_insertmode = TRUE;
7267 stop_insert_mode = FALSE;
7269 else
7271 need_start_insertmode = FALSE;
7272 stop_insert_mode = TRUE;
7273 if (restart_edit != 0 && mode_displayed)
7274 clear_cmdline = TRUE; /* remove "(insert)" */
7275 restart_edit = 0;
7279 /* when 'ignorecase' is set or reset and 'hlsearch' is set, redraw */
7280 else if ((int *)varp == &p_ic && p_hls)
7282 redraw_all_later(SOME_VALID);
7285 #ifdef FEAT_SEARCH_EXTRA
7286 /* when 'hlsearch' is set or reset: reset no_hlsearch */
7287 else if ((int *)varp == &p_hls)
7289 no_hlsearch = FALSE;
7291 #endif
7293 #ifdef FEAT_SCROLLBIND
7294 /* when 'scrollbind' is set: snapshot the current position to avoid a jump
7295 * at the end of normal_cmd() */
7296 else if ((int *)varp == &curwin->w_p_scb)
7298 if (curwin->w_p_scb)
7299 do_check_scrollbind(FALSE);
7301 #endif
7303 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
7304 /* There can be only one window with 'previewwindow' set. */
7305 else if ((int *)varp == &curwin->w_p_pvw)
7307 if (curwin->w_p_pvw)
7309 win_T *win;
7311 for (win = firstwin; win != NULL; win = win->w_next)
7312 if (win->w_p_pvw && win != curwin)
7314 curwin->w_p_pvw = FALSE;
7315 return (char_u *)N_("E590: A preview window already exists");
7319 #endif
7321 /* when 'textmode' is set or reset also change 'fileformat' */
7322 else if ((int *)varp == &curbuf->b_p_tx)
7324 set_fileformat(curbuf->b_p_tx ? EOL_DOS : EOL_UNIX, opt_flags);
7327 #ifdef FEAT_FULLSCREEN
7328 /* when 'fullscreen' changes, forward it to the gui */
7329 else if ((int *)varp == &p_fullscreen && gui.in_use)
7331 if (p_fullscreen && !old_value)
7333 guicolor_T fg, bg;
7334 if (fuoptions_flags & FUOPT_BGCOLOR_HLGROUP)
7336 /* Find out background color from colorscheme
7337 * via highlight group id */
7338 syn_id2colors(fuoptions_bgcolor, &fg, &bg);
7340 else
7342 /* set explicit background color */
7343 bg = fuoptions_bgcolor;
7345 gui_mch_enter_fullscreen(fuoptions_flags, bg);
7347 else if (!p_fullscreen && old_value)
7349 gui_mch_leave_fullscreen();
7352 #endif
7354 #if defined(FEAT_ANTIALIAS) && defined(FEAT_GUI_MACVIM)
7355 else if ((int *)varp == &p_antialias)
7357 gui_macvim_set_antialias(p_antialias);
7359 #endif
7361 /* when 'textauto' is set or reset also change 'fileformats' */
7362 else if ((int *)varp == &p_ta)
7363 set_string_option_direct((char_u *)"ffs", -1,
7364 p_ta ? (char_u *)DFLT_FFS_VIM : (char_u *)"",
7365 OPT_FREE | opt_flags, 0);
7368 * When 'lisp' option changes include/exclude '-' in
7369 * keyword characters.
7371 #ifdef FEAT_LISP
7372 else if (varp == (char_u *)&(curbuf->b_p_lisp))
7374 (void)buf_init_chartab(curbuf, FALSE); /* ignore errors */
7376 #endif
7378 #ifdef FEAT_TITLE
7379 /* when 'title' changed, may need to change the title; same for 'icon' */
7380 else if ((int *)varp == &p_title)
7382 did_set_title(FALSE);
7385 else if ((int *)varp == &p_icon)
7387 did_set_title(TRUE);
7389 #endif
7391 else if ((int *)varp == &curbuf->b_changed)
7393 if (!value)
7394 save_file_ff(curbuf); /* Buffer is unchanged */
7395 #ifdef FEAT_TITLE
7396 need_maketitle = TRUE;
7397 #endif
7398 #ifdef FEAT_AUTOCMD
7399 modified_was_set = value;
7400 #endif
7403 #ifdef BACKSLASH_IN_FILENAME
7404 else if ((int *)varp == &p_ssl)
7406 if (p_ssl)
7408 psepc = '/';
7409 psepcN = '\\';
7410 pseps[0] = '/';
7412 else
7414 psepc = '\\';
7415 psepcN = '/';
7416 pseps[0] = '\\';
7419 /* need to adjust the file name arguments and buffer names. */
7420 buflist_slash_adjust();
7421 alist_slash_adjust();
7422 # ifdef FEAT_EVAL
7423 scriptnames_slash_adjust();
7424 # endif
7426 #endif
7428 /* If 'wrap' is set, set w_leftcol to zero. */
7429 else if ((int *)varp == &curwin->w_p_wrap)
7431 if (curwin->w_p_wrap)
7432 curwin->w_leftcol = 0;
7435 #ifdef FEAT_WINDOWS
7436 else if ((int *)varp == &p_ea)
7438 if (p_ea && !old_value)
7439 win_equal(curwin, FALSE, 0);
7441 #endif
7443 else if ((int *)varp == &p_wiv)
7446 * When 'weirdinvert' changed, set/reset 't_xs'.
7447 * Then set 'weirdinvert' according to value of 't_xs'.
7449 if (p_wiv && !old_value)
7450 T_XS = (char_u *)"y";
7451 else if (!p_wiv && old_value)
7452 T_XS = empty_option;
7453 p_wiv = (*T_XS != NUL);
7456 #ifdef FEAT_BEVAL
7457 else if ((int *)varp == &p_beval)
7459 if (p_beval == TRUE)
7460 gui_mch_enable_beval_area(balloonEval);
7461 else
7462 gui_mch_disable_beval_area(balloonEval);
7464 #endif
7466 #ifdef FEAT_AUTOCHDIR
7467 else if ((int *)varp == &p_acd)
7469 /* Change directories when the 'acd' option is set now. */
7470 DO_AUTOCHDIR
7472 #endif
7474 #ifdef FEAT_DIFF
7475 /* 'diff' */
7476 else if ((int *)varp == &curwin->w_p_diff)
7478 /* May add or remove the buffer from the list of diff buffers. */
7479 diff_buf_adjust(curwin);
7480 # ifdef FEAT_FOLDING
7481 if (foldmethodIsDiff(curwin))
7482 foldUpdateAll(curwin);
7483 # endif
7485 #endif
7487 #ifdef USE_IM_CONTROL
7488 /* 'imdisable' */
7489 else if ((int *)varp == &p_imdisable)
7491 /* Only de-activate it here, it will be enabled when changing mode. */
7492 if (p_imdisable)
7493 im_set_active(FALSE);
7495 #endif
7497 #ifdef FEAT_SPELL
7498 /* 'spell' */
7499 else if ((int *)varp == &curwin->w_p_spell)
7501 if (curwin->w_p_spell)
7503 char_u *errmsg = did_set_spelllang(curbuf);
7505 if (errmsg != NULL)
7506 EMSG(_(errmsg));
7509 #endif
7511 #ifdef FEAT_FKMAP
7512 else if ((int *)varp == &p_altkeymap)
7514 if (old_value != p_altkeymap)
7516 if (!p_altkeymap)
7518 p_hkmap = p_fkmap;
7519 p_fkmap = 0;
7521 else
7523 p_fkmap = p_hkmap;
7524 p_hkmap = 0;
7526 (void)init_chartab();
7531 * In case some second language keymapping options have changed, check
7532 * and correct the setting in a consistent way.
7536 * If hkmap or fkmap are set, reset Arabic keymapping.
7538 if ((p_hkmap || p_fkmap) && p_altkeymap)
7540 p_altkeymap = p_fkmap;
7541 # ifdef FEAT_ARABIC
7542 curwin->w_p_arab = FALSE;
7543 # endif
7544 (void)init_chartab();
7548 * If hkmap set, reset Farsi keymapping.
7550 if (p_hkmap && p_altkeymap)
7552 p_altkeymap = 0;
7553 p_fkmap = 0;
7554 # ifdef FEAT_ARABIC
7555 curwin->w_p_arab = FALSE;
7556 # endif
7557 (void)init_chartab();
7561 * If fkmap set, reset Hebrew keymapping.
7563 if (p_fkmap && !p_altkeymap)
7565 p_altkeymap = 1;
7566 p_hkmap = 0;
7567 # ifdef FEAT_ARABIC
7568 curwin->w_p_arab = FALSE;
7569 # endif
7570 (void)init_chartab();
7572 #endif
7574 #ifdef FEAT_ARABIC
7575 if ((int *)varp == &curwin->w_p_arab)
7577 if (curwin->w_p_arab)
7580 * 'arabic' is set, handle various sub-settings.
7582 if (!p_tbidi)
7584 /* set rightleft mode */
7585 if (!curwin->w_p_rl)
7587 curwin->w_p_rl = TRUE;
7588 changed_window_setting();
7591 /* Enable Arabic shaping (major part of what Arabic requires) */
7592 if (!p_arshape)
7594 p_arshape = TRUE;
7595 redraw_later_clear();
7599 /* Arabic requires a utf-8 encoding, inform the user if its not
7600 * set. */
7601 if (STRCMP(p_enc, "utf-8") != 0)
7603 msg_source(hl_attr(HLF_W));
7604 MSG_ATTR(_("W17: Arabic requires UTF-8, do ':set encoding=utf-8'"),
7605 hl_attr(HLF_W));
7608 # ifdef FEAT_MBYTE
7609 /* set 'delcombine' */
7610 p_deco = TRUE;
7611 # endif
7613 # ifdef FEAT_KEYMAP
7614 /* Force-set the necessary keymap for arabic */
7615 set_option_value((char_u *)"keymap", 0L, (char_u *)"arabic",
7616 OPT_LOCAL);
7617 # endif
7618 # ifdef FEAT_FKMAP
7619 p_altkeymap = 0;
7620 p_hkmap = 0;
7621 p_fkmap = 0;
7622 (void)init_chartab();
7623 # endif
7625 else
7628 * 'arabic' is reset, handle various sub-settings.
7630 if (!p_tbidi)
7632 /* reset rightleft mode */
7633 if (curwin->w_p_rl)
7635 curwin->w_p_rl = FALSE;
7636 changed_window_setting();
7639 /* 'arabicshape' isn't reset, it is a global option and
7640 * another window may still need it "on". */
7643 /* 'delcombine' isn't reset, it is a global option and another
7644 * window may still want it "on". */
7646 # ifdef FEAT_KEYMAP
7647 /* Revert to the default keymap */
7648 curbuf->b_p_iminsert = B_IMODE_NONE;
7649 curbuf->b_p_imsearch = B_IMODE_USE_INSERT;
7650 # endif
7653 #endif
7656 * End of handling side effects for bool options.
7659 options[opt_idx].flags |= P_WAS_SET;
7661 comp_col(); /* in case 'ruler' or 'showcmd' changed */
7662 if (curwin->w_curswant != MAXCOL)
7663 curwin->w_set_curswant = TRUE; /* in case 'list' changed */
7664 check_redraw(options[opt_idx].flags);
7666 return NULL;
7670 * Set the value of a number option, and take care of side effects.
7671 * Returns NULL for success, or an error message for an error.
7673 static char_u *
7674 set_num_option(opt_idx, varp, value, errbuf, errbuflen, opt_flags)
7675 int opt_idx; /* index in options[] table */
7676 char_u *varp; /* pointer to the option variable */
7677 long value; /* new value */
7678 char_u *errbuf; /* buffer for error messages */
7679 size_t errbuflen; /* length of "errbuf" */
7680 int opt_flags; /* OPT_LOCAL, OPT_GLOBAL and
7681 OPT_MODELINE */
7683 char_u *errmsg = NULL;
7684 long old_value = *(long *)varp;
7685 long old_Rows = Rows; /* remember old Rows */
7686 long old_Columns = Columns; /* remember old Columns */
7687 long *pp = (long *)varp;
7689 /* Disallow changing some options from secure mode. */
7690 if ((secure
7691 #ifdef HAVE_SANDBOX
7692 || sandbox != 0
7693 #endif
7694 ) && (options[opt_idx].flags & P_SECURE))
7695 return e_secure;
7697 *pp = value;
7698 #ifdef FEAT_EVAL
7699 /* Remember where the option was set. */
7700 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
7701 #endif
7702 #ifdef FEAT_GUI
7703 need_mouse_correct = TRUE;
7704 #endif
7706 if (curbuf->b_p_sw <= 0)
7708 errmsg = e_positive;
7709 curbuf->b_p_sw = curbuf->b_p_ts;
7713 * Number options that need some action when changed
7715 #ifdef FEAT_WINDOWS
7716 if (pp == &p_wh || pp == &p_hh)
7718 if (p_wh < 1)
7720 errmsg = e_positive;
7721 p_wh = 1;
7723 if (p_wmh > p_wh)
7725 errmsg = e_winheight;
7726 p_wh = p_wmh;
7728 if (p_hh < 0)
7730 errmsg = e_positive;
7731 p_hh = 0;
7734 /* Change window height NOW */
7735 if (lastwin != firstwin)
7737 if (pp == &p_wh && curwin->w_height < p_wh)
7738 win_setheight((int)p_wh);
7739 if (pp == &p_hh && curbuf->b_help && curwin->w_height < p_hh)
7740 win_setheight((int)p_hh);
7744 /* 'winminheight' */
7745 else if (pp == &p_wmh)
7747 if (p_wmh < 0)
7749 errmsg = e_positive;
7750 p_wmh = 0;
7752 if (p_wmh > p_wh)
7754 errmsg = e_winheight;
7755 p_wmh = p_wh;
7757 win_setminheight();
7760 # ifdef FEAT_VERTSPLIT
7761 else if (pp == &p_wiw)
7763 if (p_wiw < 1)
7765 errmsg = e_positive;
7766 p_wiw = 1;
7768 if (p_wmw > p_wiw)
7770 errmsg = e_winwidth;
7771 p_wiw = p_wmw;
7774 /* Change window width NOW */
7775 if (lastwin != firstwin && curwin->w_width < p_wiw)
7776 win_setwidth((int)p_wiw);
7779 /* 'winminwidth' */
7780 else if (pp == &p_wmw)
7782 if (p_wmw < 0)
7784 errmsg = e_positive;
7785 p_wmw = 0;
7787 if (p_wmw > p_wiw)
7789 errmsg = e_winwidth;
7790 p_wmw = p_wiw;
7792 win_setminheight();
7794 # endif
7796 #endif
7798 #ifdef FEAT_WINDOWS
7799 /* (re)set last window status line */
7800 else if (pp == &p_ls)
7802 last_status(FALSE);
7805 /* (re)set tab page line */
7806 else if (pp == &p_stal)
7808 shell_new_rows(); /* recompute window positions and heights */
7810 #endif
7812 #ifdef FEAT_GUI
7813 else if (pp == &p_linespace)
7815 /* Recompute gui.char_height and resize the Vim window to keep the
7816 * same number of lines. */
7817 if (gui.in_use && gui_mch_adjust_charheight() == OK)
7818 gui_set_shellsize(FALSE, FALSE, RESIZE_VERT);
7820 #endif
7822 #ifdef FEAT_FOLDING
7823 /* 'foldlevel' */
7824 else if (pp == &curwin->w_p_fdl)
7826 if (curwin->w_p_fdl < 0)
7827 curwin->w_p_fdl = 0;
7828 newFoldLevel();
7831 /* 'foldminlevel' */
7832 else if (pp == &curwin->w_p_fml)
7834 foldUpdateAll(curwin);
7837 /* 'foldnestmax' */
7838 else if (pp == &curwin->w_p_fdn)
7840 if (foldmethodIsSyntax(curwin) || foldmethodIsIndent(curwin))
7841 foldUpdateAll(curwin);
7844 /* 'foldcolumn' */
7845 else if (pp == &curwin->w_p_fdc)
7847 if (curwin->w_p_fdc < 0)
7849 errmsg = e_positive;
7850 curwin->w_p_fdc = 0;
7852 else if (curwin->w_p_fdc > 12)
7854 errmsg = e_invarg;
7855 curwin->w_p_fdc = 12;
7859 /* 'shiftwidth' or 'tabstop' */
7860 else if (pp == &curbuf->b_p_sw || pp == &curbuf->b_p_ts)
7862 if (foldmethodIsIndent(curwin))
7863 foldUpdateAll(curwin);
7865 #endif /* FEAT_FOLDING */
7867 #ifdef FEAT_MBYTE
7868 /* 'maxcombine' */
7869 else if (pp == &p_mco)
7871 if (p_mco > MAX_MCO)
7872 p_mco = MAX_MCO;
7873 else if (p_mco < 0)
7874 p_mco = 0;
7875 screenclear(); /* will re-allocate the screen */
7877 #endif
7879 else if (pp == &curbuf->b_p_iminsert)
7881 if (curbuf->b_p_iminsert < 0 || curbuf->b_p_iminsert > B_IMODE_LAST)
7883 errmsg = e_invarg;
7884 curbuf->b_p_iminsert = B_IMODE_NONE;
7886 p_iminsert = curbuf->b_p_iminsert;
7887 if (termcap_active) /* don't do this in the alternate screen */
7888 showmode();
7889 #if defined(FEAT_WINDOWS) && defined(FEAT_KEYMAP)
7890 /* Show/unshow value of 'keymap' in status lines. */
7891 status_redraw_curbuf();
7892 #endif
7895 else if (pp == &p_window)
7897 if (p_window < 1)
7898 p_window = 1;
7899 else if (p_window >= Rows)
7900 p_window = Rows - 1;
7903 else if (pp == &curbuf->b_p_imsearch)
7905 if (curbuf->b_p_imsearch < -1 || curbuf->b_p_imsearch > B_IMODE_LAST)
7907 errmsg = e_invarg;
7908 curbuf->b_p_imsearch = B_IMODE_NONE;
7910 p_imsearch = curbuf->b_p_imsearch;
7913 #ifdef FEAT_TITLE
7914 /* if 'titlelen' has changed, redraw the title */
7915 else if (pp == &p_titlelen)
7917 if (p_titlelen < 0)
7919 errmsg = e_positive;
7920 p_titlelen = 85;
7922 if (starting != NO_SCREEN && old_value != p_titlelen)
7923 need_maketitle = TRUE;
7925 #endif
7927 /* if p_ch changed value, change the command line height */
7928 else if (pp == &p_ch)
7930 if (p_ch < 1)
7932 errmsg = e_positive;
7933 p_ch = 1;
7935 if (p_ch > Rows - min_rows() + 1)
7936 p_ch = Rows - min_rows() + 1;
7938 /* Only compute the new window layout when startup has been
7939 * completed. Otherwise the frame sizes may be wrong. */
7940 if (p_ch != old_value && full_screen
7941 #ifdef FEAT_GUI
7942 && !gui.starting
7943 #endif
7945 command_height();
7948 /* when 'updatecount' changes from zero to non-zero, open swap files */
7949 else if (pp == &p_uc)
7951 if (p_uc < 0)
7953 errmsg = e_positive;
7954 p_uc = 100;
7956 if (p_uc && !old_value)
7957 ml_open_files();
7959 #ifdef MZSCHEME_GUI_THREADS
7960 else if (pp == &p_mzq)
7961 mzvim_reset_timer();
7962 #endif
7964 /* sync undo before 'undolevels' changes */
7965 else if (pp == &p_ul)
7967 /* use the old value, otherwise u_sync() may not work properly */
7968 p_ul = old_value;
7969 u_sync(TRUE);
7970 p_ul = value;
7973 #ifdef FEAT_LINEBREAK
7974 /* 'numberwidth' must be positive */
7975 else if (pp == &curwin->w_p_nuw)
7977 if (curwin->w_p_nuw < 1)
7979 errmsg = e_positive;
7980 curwin->w_p_nuw = 1;
7982 if (curwin->w_p_nuw > 10)
7984 errmsg = e_invarg;
7985 curwin->w_p_nuw = 10;
7987 curwin->w_nrwidth_line_count = 0;
7989 #endif
7991 #if defined(FEAT_TRANSPARENCY)
7992 /* 'transparency' is a number between 0 and 100 */
7993 else if (pp == &p_transp)
7995 if (p_transp < 0 || p_transp > 100)
7997 errmsg = e_invarg;
7998 p_transp = old_value;
8000 else if (gui.in_use)
8001 gui_mch_new_colors();
8003 #endif
8006 * Check the bounds for numeric options here
8008 if (Rows < min_rows() && full_screen)
8010 if (errbuf != NULL)
8012 vim_snprintf((char *)errbuf, errbuflen,
8013 _("E593: Need at least %d lines"), min_rows());
8014 errmsg = errbuf;
8016 Rows = min_rows();
8018 if (Columns < MIN_COLUMNS && full_screen)
8020 if (errbuf != NULL)
8022 vim_snprintf((char *)errbuf, errbuflen,
8023 _("E594: Need at least %d columns"), MIN_COLUMNS);
8024 errmsg = errbuf;
8026 Columns = MIN_COLUMNS;
8028 /* Limit the values to avoid an overflow in Rows * Columns. */
8029 if (Columns > 10000)
8030 Columns = 10000;
8031 if (Rows > 1000)
8032 Rows = 1000;
8034 #ifdef DJGPP
8035 /* avoid a crash by checking for a too large value of 'columns' */
8036 if (old_Columns != Columns && full_screen && term_console)
8037 mch_check_columns();
8038 #endif
8041 * If the screen (shell) height has been changed, assume it is the
8042 * physical screenheight.
8044 if (old_Rows != Rows || old_Columns != Columns)
8046 /* Changing the screen size is not allowed while updating the screen. */
8047 if (updating_screen)
8048 *pp = old_value;
8049 else if (full_screen
8050 #ifdef FEAT_GUI
8051 && !gui.starting
8052 #endif
8054 set_shellsize((int)Columns, (int)Rows, TRUE);
8055 else
8057 /* Postpone the resizing; check the size and cmdline position for
8058 * messages. */
8059 check_shellsize();
8060 if (cmdline_row > Rows - p_ch && Rows > p_ch)
8061 cmdline_row = Rows - p_ch;
8063 if (p_window >= Rows || !option_was_set((char_u *)"window"))
8064 p_window = Rows - 1;
8067 if (curbuf->b_p_sts < 0)
8069 errmsg = e_positive;
8070 curbuf->b_p_sts = 0;
8072 if (curbuf->b_p_ts <= 0)
8074 errmsg = e_positive;
8075 curbuf->b_p_ts = 8;
8077 if (curbuf->b_p_tw < 0)
8079 errmsg = e_positive;
8080 curbuf->b_p_tw = 0;
8082 if (p_tm < 0)
8084 errmsg = e_positive;
8085 p_tm = 0;
8087 if ((curwin->w_p_scr <= 0
8088 || (curwin->w_p_scr > curwin->w_height
8089 && curwin->w_height > 0))
8090 && full_screen)
8092 if (pp == &(curwin->w_p_scr))
8094 if (curwin->w_p_scr != 0)
8095 errmsg = e_scroll;
8096 win_comp_scroll(curwin);
8098 /* If 'scroll' became invalid because of a side effect silently adjust
8099 * it. */
8100 else if (curwin->w_p_scr <= 0)
8101 curwin->w_p_scr = 1;
8102 else /* curwin->w_p_scr > curwin->w_height */
8103 curwin->w_p_scr = curwin->w_height;
8105 if (p_hi < 0)
8107 errmsg = e_positive;
8108 p_hi = 0;
8110 if (p_report < 0)
8112 errmsg = e_positive;
8113 p_report = 1;
8115 if ((p_sj < -100 || p_sj >= Rows) && full_screen)
8117 if (Rows != old_Rows) /* Rows changed, just adjust p_sj */
8118 p_sj = Rows / 2;
8119 else
8121 errmsg = e_scroll;
8122 p_sj = 1;
8125 if (p_so < 0 && full_screen)
8127 errmsg = e_scroll;
8128 p_so = 0;
8130 if (p_siso < 0 && full_screen)
8132 errmsg = e_positive;
8133 p_siso = 0;
8135 #ifdef FEAT_CMDWIN
8136 if (p_cwh < 1)
8138 errmsg = e_positive;
8139 p_cwh = 1;
8141 #endif
8142 if (p_ut < 0)
8144 errmsg = e_positive;
8145 p_ut = 2000;
8147 if (p_ss < 0)
8149 errmsg = e_positive;
8150 p_ss = 0;
8153 /* May set global value for local option. */
8154 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0)
8155 *(long *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) = *pp;
8157 options[opt_idx].flags |= P_WAS_SET;
8159 comp_col(); /* in case 'columns' or 'ls' changed */
8160 if (curwin->w_curswant != MAXCOL)
8161 curwin->w_set_curswant = TRUE; /* in case 'tabstop' changed */
8162 check_redraw(options[opt_idx].flags);
8164 return errmsg;
8168 * Called after an option changed: check if something needs to be redrawn.
8170 static void
8171 check_redraw(flags)
8172 long_u flags;
8174 /* Careful: P_RCLR and P_RALL are a combination of other P_ flags */
8175 int clear = (flags & P_RCLR) == P_RCLR;
8176 int all = ((flags & P_RALL) == P_RALL || clear);
8178 #ifdef FEAT_WINDOWS
8179 if ((flags & P_RSTAT) || all) /* mark all status lines dirty */
8180 status_redraw_all();
8181 #endif
8183 if ((flags & P_RBUF) || (flags & P_RWIN) || all)
8184 changed_window_setting();
8185 if (flags & P_RBUF)
8186 redraw_curbuf_later(NOT_VALID);
8187 if (clear)
8188 redraw_all_later(CLEAR);
8189 else if (all)
8190 redraw_all_later(NOT_VALID);
8194 * Find index for option 'arg'.
8195 * Return -1 if not found.
8197 static int
8198 findoption(arg)
8199 char_u *arg;
8201 int opt_idx;
8202 char *s, *p;
8203 static short quick_tab[27] = {0, 0}; /* quick access table */
8204 int is_term_opt;
8207 * For first call: Initialize the quick-access table.
8208 * It contains the index for the first option that starts with a certain
8209 * letter. There are 26 letters, plus the first "t_" option.
8211 if (quick_tab[1] == 0)
8213 p = options[0].fullname;
8214 for (opt_idx = 1; (s = options[opt_idx].fullname) != NULL; opt_idx++)
8216 if (s[0] != p[0])
8218 if (s[0] == 't' && s[1] == '_')
8219 quick_tab[26] = opt_idx;
8220 else
8221 quick_tab[CharOrdLow(s[0])] = opt_idx;
8223 p = s;
8228 * Check for name starting with an illegal character.
8230 #ifdef EBCDIC
8231 if (!islower(arg[0]))
8232 #else
8233 if (arg[0] < 'a' || arg[0] > 'z')
8234 #endif
8235 return -1;
8237 is_term_opt = (arg[0] == 't' && arg[1] == '_');
8238 if (is_term_opt)
8239 opt_idx = quick_tab[26];
8240 else
8241 opt_idx = quick_tab[CharOrdLow(arg[0])];
8242 for ( ; (s = options[opt_idx].fullname) != NULL; opt_idx++)
8244 if (STRCMP(arg, s) == 0) /* match full name */
8245 break;
8247 if (s == NULL && !is_term_opt)
8249 opt_idx = quick_tab[CharOrdLow(arg[0])];
8250 for ( ; options[opt_idx].fullname != NULL; opt_idx++)
8252 s = options[opt_idx].shortname;
8253 if (s != NULL && STRCMP(arg, s) == 0) /* match short name */
8254 break;
8255 s = NULL;
8258 if (s == NULL)
8259 opt_idx = -1;
8260 return opt_idx;
8263 #if defined(FEAT_EVAL) || defined(FEAT_TCL) || defined(FEAT_MZSCHEME)
8265 * Get the value for an option.
8267 * Returns:
8268 * Number or Toggle option: 1, *numval gets value.
8269 * String option: 0, *stringval gets allocated string.
8270 * Hidden Number or Toggle option: -1.
8271 * hidden String option: -2.
8272 * unknown option: -3.
8275 get_option_value(name, numval, stringval, opt_flags)
8276 char_u *name;
8277 long *numval;
8278 char_u **stringval; /* NULL when only checking existance */
8279 int opt_flags;
8281 int opt_idx;
8282 char_u *varp;
8284 opt_idx = findoption(name);
8285 if (opt_idx < 0) /* unknown option */
8286 return -3;
8288 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
8290 if (options[opt_idx].flags & P_STRING)
8292 if (varp == NULL) /* hidden option */
8293 return -2;
8294 if (stringval != NULL)
8296 #ifdef FEAT_CRYPT
8297 /* never return the value of the crypt key */
8298 if ((char_u **)varp == &curbuf->b_p_key
8299 && **(char_u **)(varp) != NUL)
8300 *stringval = vim_strsave((char_u *)"*****");
8301 else
8302 #endif
8303 *stringval = vim_strsave(*(char_u **)(varp));
8305 return 0;
8308 if (varp == NULL) /* hidden option */
8309 return -1;
8310 if (options[opt_idx].flags & P_NUM)
8311 *numval = *(long *)varp;
8312 else
8314 /* Special case: 'modified' is b_changed, but we also want to consider
8315 * it set when 'ff' or 'fenc' changed. */
8316 if ((int *)varp == &curbuf->b_changed)
8317 *numval = curbufIsChanged();
8318 else
8319 *numval = *(int *)varp;
8321 return 1;
8323 #endif
8326 * Set the value of option "name".
8327 * Use "string" for string options, use "number" for other options.
8329 void
8330 set_option_value(name, number, string, opt_flags)
8331 char_u *name;
8332 long number;
8333 char_u *string;
8334 int opt_flags; /* OPT_LOCAL or 0 (both) */
8336 int opt_idx;
8337 char_u *varp;
8338 long_u flags;
8340 opt_idx = findoption(name);
8341 if (opt_idx < 0)
8342 EMSG2(_("E355: Unknown option: %s"), name);
8343 else
8345 flags = options[opt_idx].flags;
8346 #ifdef HAVE_SANDBOX
8347 /* Disallow changing some options in the sandbox */
8348 if (sandbox > 0 && (flags & P_SECURE))
8350 EMSG(_(e_sandbox));
8351 return;
8353 #endif
8354 if (flags & P_STRING)
8355 set_string_option(opt_idx, string, opt_flags);
8356 else
8358 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
8359 if (varp != NULL) /* hidden option is not changed */
8361 if (number == 0 && string != NULL)
8363 int index;
8365 /* Either we are given a string or we are setting option
8366 * to zero. */
8367 for (index = 0; string[index] == '0'; ++index)
8369 if (string[index] != NUL || index == 0)
8371 /* There's another character after zeros or the string
8372 * is empty. In both cases, we are trying to set a
8373 * num option using a string. */
8374 EMSG3(_("E521: Number required: &%s = '%s'"),
8375 name, string);
8376 return; /* do nothing as we hit an error */
8380 if (flags & P_NUM)
8381 (void)set_num_option(opt_idx, varp, number,
8382 NULL, 0, opt_flags);
8383 else
8384 (void)set_bool_option(opt_idx, varp, (int)number,
8385 opt_flags);
8392 * Get the terminal code for a terminal option.
8393 * Returns NULL when not found.
8395 char_u *
8396 get_term_code(tname)
8397 char_u *tname;
8399 int opt_idx;
8400 char_u *varp;
8402 if (tname[0] != 't' || tname[1] != '_' ||
8403 tname[2] == NUL || tname[3] == NUL)
8404 return NULL;
8405 if ((opt_idx = findoption(tname)) >= 0)
8407 varp = get_varp(&(options[opt_idx]));
8408 if (varp != NULL)
8409 varp = *(char_u **)(varp);
8410 return varp;
8412 return find_termcode(tname + 2);
8415 char_u *
8416 get_highlight_default()
8418 int i;
8420 i = findoption((char_u *)"hl");
8421 if (i >= 0)
8422 return options[i].def_val[VI_DEFAULT];
8423 return (char_u *)NULL;
8426 #if defined(FEAT_MBYTE) || defined(PROTO)
8427 char_u *
8428 get_encoding_default()
8430 int i;
8432 i = findoption((char_u *)"enc");
8433 if (i >= 0)
8434 return options[i].def_val[VI_DEFAULT];
8435 return (char_u *)NULL;
8437 #endif
8440 * Translate a string like "t_xx", "<t_xx>" or "<S-Tab>" to a key number.
8442 static int
8443 find_key_option(arg)
8444 char_u *arg;
8446 int key;
8447 int modifiers;
8450 * Don't use get_special_key_code() for t_xx, we don't want it to call
8451 * add_termcap_entry().
8453 if (arg[0] == 't' && arg[1] == '_' && arg[2] && arg[3])
8454 key = TERMCAP2KEY(arg[2], arg[3]);
8455 else
8457 --arg; /* put arg at the '<' */
8458 modifiers = 0;
8459 key = find_special_key(&arg, &modifiers, TRUE);
8460 if (modifiers) /* can't handle modifiers here */
8461 key = 0;
8463 return key;
8467 * if 'all' == 0: show changed options
8468 * if 'all' == 1: show all normal options
8469 * if 'all' == 2: show all terminal options
8471 static void
8472 showoptions(all, opt_flags)
8473 int all;
8474 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
8476 struct vimoption *p;
8477 int col;
8478 int isterm;
8479 char_u *varp;
8480 struct vimoption **items;
8481 int item_count;
8482 int run;
8483 int row, rows;
8484 int cols;
8485 int i;
8486 int len;
8488 #define INC 20
8489 #define GAP 3
8491 items = (struct vimoption **)alloc((unsigned)(sizeof(struct vimoption *) *
8492 PARAM_COUNT));
8493 if (items == NULL)
8494 return;
8496 /* Highlight title */
8497 if (all == 2)
8498 MSG_PUTS_TITLE(_("\n--- Terminal codes ---"));
8499 else if (opt_flags & OPT_GLOBAL)
8500 MSG_PUTS_TITLE(_("\n--- Global option values ---"));
8501 else if (opt_flags & OPT_LOCAL)
8502 MSG_PUTS_TITLE(_("\n--- Local option values ---"));
8503 else
8504 MSG_PUTS_TITLE(_("\n--- Options ---"));
8507 * do the loop two times:
8508 * 1. display the short items
8509 * 2. display the long items (only strings and numbers)
8511 for (run = 1; run <= 2 && !got_int; ++run)
8514 * collect the items in items[]
8516 item_count = 0;
8517 for (p = &options[0]; p->fullname != NULL; p++)
8519 varp = NULL;
8520 isterm = istermoption(p);
8521 if (opt_flags != 0)
8523 if (p->indir != PV_NONE && !isterm)
8524 varp = get_varp_scope(p, opt_flags);
8526 else
8527 varp = get_varp(p);
8528 if (varp != NULL
8529 && ((all == 2 && isterm)
8530 || (all == 1 && !isterm)
8531 || (all == 0 && !optval_default(p, varp))))
8533 if (p->flags & P_BOOL)
8534 len = 1; /* a toggle option fits always */
8535 else
8537 option_value2string(p, opt_flags);
8538 len = (int)STRLEN(p->fullname) + vim_strsize(NameBuff) + 1;
8540 if ((len <= INC - GAP && run == 1) ||
8541 (len > INC - GAP && run == 2))
8542 items[item_count++] = p;
8547 * display the items
8549 if (run == 1)
8551 cols = (Columns + GAP - 3) / INC;
8552 if (cols == 0)
8553 cols = 1;
8554 rows = (item_count + cols - 1) / cols;
8556 else /* run == 2 */
8557 rows = item_count;
8558 for (row = 0; row < rows && !got_int; ++row)
8560 msg_putchar('\n'); /* go to next line */
8561 if (got_int) /* 'q' typed in more */
8562 break;
8563 col = 0;
8564 for (i = row; i < item_count; i += rows)
8566 msg_col = col; /* make columns */
8567 showoneopt(items[i], opt_flags);
8568 col += INC;
8570 out_flush();
8571 ui_breakcheck();
8574 vim_free(items);
8578 * Return TRUE if option "p" has its default value.
8580 static int
8581 optval_default(p, varp)
8582 struct vimoption *p;
8583 char_u *varp;
8585 int dvi;
8587 if (varp == NULL)
8588 return TRUE; /* hidden option is always at default */
8589 dvi = ((p->flags & P_VI_DEF) || p_cp) ? VI_DEFAULT : VIM_DEFAULT;
8590 if (p->flags & P_NUM)
8591 return (*(long *)varp == (long)(long_i)p->def_val[dvi]);
8592 if (p->flags & P_BOOL)
8593 /* the cast to long is required for Manx C, long_i is
8594 * needed for MSVC */
8595 return (*(int *)varp == (int)(long)(long_i)p->def_val[dvi]);
8596 /* P_STRING */
8597 return (STRCMP(*(char_u **)varp, p->def_val[dvi]) == 0);
8601 * showoneopt: show the value of one option
8602 * must not be called with a hidden option!
8604 static void
8605 showoneopt(p, opt_flags)
8606 struct vimoption *p;
8607 int opt_flags; /* OPT_LOCAL or OPT_GLOBAL */
8609 char_u *varp;
8610 int save_silent = silent_mode;
8612 silent_mode = FALSE;
8613 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
8615 varp = get_varp_scope(p, opt_flags);
8617 /* for 'modified' we also need to check if 'ff' or 'fenc' changed. */
8618 if ((p->flags & P_BOOL) && ((int *)varp == &curbuf->b_changed
8619 ? !curbufIsChanged() : !*(int *)varp))
8620 MSG_PUTS("no");
8621 else if ((p->flags & P_BOOL) && *(int *)varp < 0)
8622 MSG_PUTS("--");
8623 else
8624 MSG_PUTS(" ");
8625 MSG_PUTS(p->fullname);
8626 if (!(p->flags & P_BOOL))
8628 msg_putchar('=');
8629 /* put value string in NameBuff */
8630 option_value2string(p, opt_flags);
8631 msg_outtrans(NameBuff);
8634 silent_mode = save_silent;
8635 info_message = FALSE;
8639 * Write modified options as ":set" commands to a file.
8641 * There are three values for "opt_flags":
8642 * OPT_GLOBAL: Write global option values and fresh values of
8643 * buffer-local options (used for start of a session
8644 * file).
8645 * OPT_GLOBAL + OPT_LOCAL: Idem, add fresh values of window-local options for
8646 * curwin (used for a vimrc file).
8647 * OPT_LOCAL: Write buffer-local option values for curbuf, fresh
8648 * and local values for window-local options of
8649 * curwin. Local values are also written when at the
8650 * default value, because a modeline or autocommand
8651 * may have set them when doing ":edit file" and the
8652 * user has set them back at the default or fresh
8653 * value.
8654 * When "local_only" is TRUE, don't write fresh
8655 * values, only local values (for ":mkview").
8656 * (fresh value = value used for a new buffer or window for a local option).
8658 * Return FAIL on error, OK otherwise.
8661 makeset(fd, opt_flags, local_only)
8662 FILE *fd;
8663 int opt_flags;
8664 int local_only;
8666 struct vimoption *p;
8667 char_u *varp; /* currently used value */
8668 char_u *varp_fresh; /* local value */
8669 char_u *varp_local = NULL; /* fresh value */
8670 char *cmd;
8671 int round;
8672 int pri;
8675 * The options that don't have a default (terminal name, columns, lines)
8676 * are never written. Terminal options are also not written.
8677 * Do the loop over "options[]" twice: once for options with the
8678 * P_PRI_MKRC flag and once without.
8680 for (pri = 1; pri >= 0; --pri)
8682 for (p = &options[0]; !istermoption(p); p++)
8683 if (!(p->flags & P_NO_MKRC)
8684 && !istermoption(p)
8685 && ((pri == 1) == ((p->flags & P_PRI_MKRC) != 0)))
8687 /* skip global option when only doing locals */
8688 if (p->indir == PV_NONE && !(opt_flags & OPT_GLOBAL))
8689 continue;
8691 /* Do not store options like 'bufhidden' and 'syntax' in a vimrc
8692 * file, they are always buffer-specific. */
8693 if ((opt_flags & OPT_GLOBAL) && (p->flags & P_NOGLOB))
8694 continue;
8696 /* Global values are only written when not at the default value. */
8697 varp = get_varp_scope(p, opt_flags);
8698 if ((opt_flags & OPT_GLOBAL) && optval_default(p, varp))
8699 continue;
8701 round = 2;
8702 if (p->indir != PV_NONE)
8704 if (p->var == VAR_WIN)
8706 /* skip window-local option when only doing globals */
8707 if (!(opt_flags & OPT_LOCAL))
8708 continue;
8709 /* When fresh value of window-local option is not at the
8710 * default, need to write it too. */
8711 if (!(opt_flags & OPT_GLOBAL) && !local_only)
8713 varp_fresh = get_varp_scope(p, OPT_GLOBAL);
8714 if (!optval_default(p, varp_fresh))
8716 round = 1;
8717 varp_local = varp;
8718 varp = varp_fresh;
8724 /* Round 1: fresh value for window-local options.
8725 * Round 2: other values */
8726 for ( ; round <= 2; varp = varp_local, ++round)
8728 if (round == 1 || (opt_flags & OPT_GLOBAL))
8729 cmd = "set";
8730 else
8731 cmd = "setlocal";
8733 if (p->flags & P_BOOL)
8735 if (put_setbool(fd, cmd, p->fullname, *(int *)varp) == FAIL)
8736 return FAIL;
8738 else if (p->flags & P_NUM)
8740 if (put_setnum(fd, cmd, p->fullname, (long *)varp) == FAIL)
8741 return FAIL;
8743 else /* P_STRING */
8745 #if defined(FEAT_SYN_HL) || defined(FEAT_AUTOCMD)
8746 int do_endif = FALSE;
8748 /* Don't set 'syntax' and 'filetype' again if the value is
8749 * already right, avoids reloading the syntax file. */
8750 if (
8751 # if defined(FEAT_SYN_HL)
8752 p->indir == PV_SYN
8753 # if defined(FEAT_AUTOCMD)
8755 # endif
8756 # endif
8757 # if defined(FEAT_AUTOCMD)
8758 p->indir == PV_FT
8759 # endif
8762 if (fprintf(fd, "if &%s != '%s'", p->fullname,
8763 *(char_u **)(varp)) < 0
8764 || put_eol(fd) < 0)
8765 return FAIL;
8766 do_endif = TRUE;
8768 #endif
8769 if (put_setstring(fd, cmd, p->fullname, (char_u **)varp,
8770 (p->flags & P_EXPAND) != 0) == FAIL)
8771 return FAIL;
8772 #if defined(FEAT_SYN_HL) || defined(FEAT_AUTOCMD)
8773 if (do_endif)
8775 if (put_line(fd, "endif") == FAIL)
8776 return FAIL;
8778 #endif
8783 return OK;
8786 #if defined(FEAT_FOLDING) || defined(PROTO)
8788 * Generate set commands for the local fold options only. Used when
8789 * 'sessionoptions' or 'viewoptions' contains "folds" but not "options".
8792 makefoldset(fd)
8793 FILE *fd;
8795 if (put_setstring(fd, "setlocal", "fdm", &curwin->w_p_fdm, FALSE) == FAIL
8796 # ifdef FEAT_EVAL
8797 || put_setstring(fd, "setlocal", "fde", &curwin->w_p_fde, FALSE)
8798 == FAIL
8799 # endif
8800 || put_setstring(fd, "setlocal", "fmr", &curwin->w_p_fmr, FALSE)
8801 == FAIL
8802 || put_setstring(fd, "setlocal", "fdi", &curwin->w_p_fdi, FALSE)
8803 == FAIL
8804 || put_setnum(fd, "setlocal", "fdl", &curwin->w_p_fdl) == FAIL
8805 || put_setnum(fd, "setlocal", "fml", &curwin->w_p_fml) == FAIL
8806 || put_setnum(fd, "setlocal", "fdn", &curwin->w_p_fdn) == FAIL
8807 || put_setbool(fd, "setlocal", "fen", curwin->w_p_fen) == FAIL
8809 return FAIL;
8811 return OK;
8813 #endif
8815 static int
8816 put_setstring(fd, cmd, name, valuep, expand)
8817 FILE *fd;
8818 char *cmd;
8819 char *name;
8820 char_u **valuep;
8821 int expand;
8823 char_u *s;
8824 char_u buf[MAXPATHL];
8826 if (fprintf(fd, "%s %s=", cmd, name) < 0)
8827 return FAIL;
8828 if (*valuep != NULL)
8830 /* Output 'pastetoggle' as key names. For other
8831 * options some characters have to be escaped with
8832 * CTRL-V or backslash */
8833 if (valuep == &p_pt)
8835 s = *valuep;
8836 while (*s != NUL)
8837 if (put_escstr(fd, str2special(&s, FALSE), 2) == FAIL)
8838 return FAIL;
8840 else if (expand)
8842 home_replace(NULL, *valuep, buf, MAXPATHL, FALSE);
8843 if (put_escstr(fd, buf, 2) == FAIL)
8844 return FAIL;
8846 else if (put_escstr(fd, *valuep, 2) == FAIL)
8847 return FAIL;
8849 if (put_eol(fd) < 0)
8850 return FAIL;
8851 return OK;
8854 static int
8855 put_setnum(fd, cmd, name, valuep)
8856 FILE *fd;
8857 char *cmd;
8858 char *name;
8859 long *valuep;
8861 long wc;
8863 if (fprintf(fd, "%s %s=", cmd, name) < 0)
8864 return FAIL;
8865 if (wc_use_keyname((char_u *)valuep, &wc))
8867 /* print 'wildchar' and 'wildcharm' as a key name */
8868 if (fputs((char *)get_special_key_name((int)wc, 0), fd) < 0)
8869 return FAIL;
8871 else if (fprintf(fd, "%ld", *valuep) < 0)
8872 return FAIL;
8873 if (put_eol(fd) < 0)
8874 return FAIL;
8875 return OK;
8878 static int
8879 put_setbool(fd, cmd, name, value)
8880 FILE *fd;
8881 char *cmd;
8882 char *name;
8883 int value;
8885 if (value < 0) /* global/local option using global value */
8886 return OK;
8887 if (fprintf(fd, "%s %s%s", cmd, value ? "" : "no", name) < 0
8888 || put_eol(fd) < 0)
8889 return FAIL;
8890 return OK;
8894 * Clear all the terminal options.
8895 * If the option has been allocated, free the memory.
8896 * Terminal options are never hidden or indirect.
8898 void
8899 clear_termoptions()
8902 * Reset a few things before clearing the old options. This may cause
8903 * outputting a few things that the terminal doesn't understand, but the
8904 * screen will be cleared later, so this is OK.
8906 #ifdef FEAT_MOUSE_TTY
8907 mch_setmouse(FALSE); /* switch mouse off */
8908 #endif
8909 #ifdef FEAT_TITLE
8910 mch_restore_title(3); /* restore window titles */
8911 #endif
8912 #if defined(FEAT_XCLIPBOARD) && defined(FEAT_GUI)
8913 /* When starting the GUI close the display opened for the clipboard.
8914 * After restoring the title, because that will need the display. */
8915 if (gui.starting)
8916 clear_xterm_clip();
8917 #endif
8918 #ifdef WIN3264
8920 * Check if this is allowed now.
8922 if (can_end_termcap_mode(FALSE) == TRUE)
8923 #endif
8924 stoptermcap(); /* stop termcap mode */
8926 free_termoptions();
8929 void
8930 free_termoptions()
8932 struct vimoption *p;
8934 for (p = &options[0]; p->fullname != NULL; p++)
8935 if (istermoption(p))
8937 if (p->flags & P_ALLOCED)
8938 free_string_option(*(char_u **)(p->var));
8939 if (p->flags & P_DEF_ALLOCED)
8940 free_string_option(p->def_val[VI_DEFAULT]);
8941 *(char_u **)(p->var) = empty_option;
8942 p->def_val[VI_DEFAULT] = empty_option;
8943 p->flags &= ~(P_ALLOCED|P_DEF_ALLOCED);
8945 clear_termcodes();
8949 * Set the terminal option defaults to the current value.
8950 * Used after setting the terminal name.
8952 void
8953 set_term_defaults()
8955 struct vimoption *p;
8957 for (p = &options[0]; p->fullname != NULL; p++)
8959 if (istermoption(p) && p->def_val[VI_DEFAULT] != *(char_u **)(p->var))
8961 if (p->flags & P_DEF_ALLOCED)
8963 free_string_option(p->def_val[VI_DEFAULT]);
8964 p->flags &= ~P_DEF_ALLOCED;
8966 p->def_val[VI_DEFAULT] = *(char_u **)(p->var);
8967 if (p->flags & P_ALLOCED)
8969 p->flags |= P_DEF_ALLOCED;
8970 p->flags &= ~P_ALLOCED; /* don't free the value now */
8977 * return TRUE if 'p' starts with 't_'
8979 static int
8980 istermoption(p)
8981 struct vimoption *p;
8983 return (p->fullname[0] == 't' && p->fullname[1] == '_');
8987 * Compute columns for ruler and shown command. 'sc_col' is also used to
8988 * decide what the maximum length of a message on the status line can be.
8989 * If there is a status line for the last window, 'sc_col' is independent
8990 * of 'ru_col'.
8993 #define COL_RULER 17 /* columns needed by standard ruler */
8995 void
8996 comp_col()
8998 #if defined(FEAT_CMDL_INFO) && defined(FEAT_WINDOWS)
8999 int last_has_status = (p_ls == 2 || (p_ls == 1 && firstwin != lastwin));
9001 sc_col = 0;
9002 ru_col = 0;
9003 if (p_ru)
9005 #ifdef FEAT_STL_OPT
9006 ru_col = (ru_wid ? ru_wid : COL_RULER) + 1;
9007 #else
9008 ru_col = COL_RULER + 1;
9009 #endif
9010 /* no last status line, adjust sc_col */
9011 if (!last_has_status)
9012 sc_col = ru_col;
9014 if (p_sc)
9016 sc_col += SHOWCMD_COLS;
9017 if (!p_ru || last_has_status) /* no need for separating space */
9018 ++sc_col;
9020 sc_col = Columns - sc_col;
9021 ru_col = Columns - ru_col;
9022 if (sc_col <= 0) /* screen too narrow, will become a mess */
9023 sc_col = 1;
9024 if (ru_col <= 0)
9025 ru_col = 1;
9026 #else
9027 sc_col = Columns;
9028 ru_col = Columns;
9029 #endif
9033 * Get pointer to option variable, depending on local or global scope.
9035 static char_u *
9036 get_varp_scope(p, opt_flags)
9037 struct vimoption *p;
9038 int opt_flags;
9040 if ((opt_flags & OPT_GLOBAL) && p->indir != PV_NONE)
9042 if (p->var == VAR_WIN)
9043 return (char_u *)GLOBAL_WO(get_varp(p));
9044 return p->var;
9046 if ((opt_flags & OPT_LOCAL) && ((int)p->indir & PV_BOTH))
9048 switch ((int)p->indir)
9050 #ifdef FEAT_QUICKFIX
9051 case PV_EFM: return (char_u *)&(curbuf->b_p_efm);
9052 case PV_GP: return (char_u *)&(curbuf->b_p_gp);
9053 case PV_MP: return (char_u *)&(curbuf->b_p_mp);
9054 #endif
9055 case PV_EP: return (char_u *)&(curbuf->b_p_ep);
9056 case PV_KP: return (char_u *)&(curbuf->b_p_kp);
9057 case PV_PATH: return (char_u *)&(curbuf->b_p_path);
9058 case PV_AR: return (char_u *)&(curbuf->b_p_ar);
9059 case PV_TAGS: return (char_u *)&(curbuf->b_p_tags);
9060 #ifdef FEAT_FIND_ID
9061 case PV_DEF: return (char_u *)&(curbuf->b_p_def);
9062 case PV_INC: return (char_u *)&(curbuf->b_p_inc);
9063 #endif
9064 #ifdef FEAT_INS_EXPAND
9065 case PV_DICT: return (char_u *)&(curbuf->b_p_dict);
9066 case PV_TSR: return (char_u *)&(curbuf->b_p_tsr);
9067 #endif
9068 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9069 case PV_BEXPR: return (char_u *)&(curbuf->b_p_bexpr);
9070 #endif
9071 #ifdef FEAT_STL_OPT
9072 case PV_STL: return (char_u *)&(curwin->w_p_stl);
9073 #endif
9075 return NULL; /* "cannot happen" */
9077 return get_varp(p);
9081 * Get pointer to option variable.
9083 static char_u *
9084 get_varp(p)
9085 struct vimoption *p;
9087 /* hidden option, always return NULL */
9088 if (p->var == NULL)
9089 return NULL;
9091 switch ((int)p->indir)
9093 case PV_NONE: return p->var;
9095 /* global option with local value: use local value if it's been set */
9096 case PV_EP: return *curbuf->b_p_ep != NUL
9097 ? (char_u *)&curbuf->b_p_ep : p->var;
9098 case PV_KP: return *curbuf->b_p_kp != NUL
9099 ? (char_u *)&curbuf->b_p_kp : p->var;
9100 case PV_PATH: return *curbuf->b_p_path != NUL
9101 ? (char_u *)&(curbuf->b_p_path) : p->var;
9102 case PV_AR: return curbuf->b_p_ar >= 0
9103 ? (char_u *)&(curbuf->b_p_ar) : p->var;
9104 case PV_TAGS: return *curbuf->b_p_tags != NUL
9105 ? (char_u *)&(curbuf->b_p_tags) : p->var;
9106 #ifdef FEAT_FIND_ID
9107 case PV_DEF: return *curbuf->b_p_def != NUL
9108 ? (char_u *)&(curbuf->b_p_def) : p->var;
9109 case PV_INC: return *curbuf->b_p_inc != NUL
9110 ? (char_u *)&(curbuf->b_p_inc) : p->var;
9111 #endif
9112 #ifdef FEAT_INS_EXPAND
9113 case PV_DICT: return *curbuf->b_p_dict != NUL
9114 ? (char_u *)&(curbuf->b_p_dict) : p->var;
9115 case PV_TSR: return *curbuf->b_p_tsr != NUL
9116 ? (char_u *)&(curbuf->b_p_tsr) : p->var;
9117 #endif
9118 #ifdef FEAT_QUICKFIX
9119 case PV_EFM: return *curbuf->b_p_efm != NUL
9120 ? (char_u *)&(curbuf->b_p_efm) : p->var;
9121 case PV_GP: return *curbuf->b_p_gp != NUL
9122 ? (char_u *)&(curbuf->b_p_gp) : p->var;
9123 case PV_MP: return *curbuf->b_p_mp != NUL
9124 ? (char_u *)&(curbuf->b_p_mp) : p->var;
9125 #endif
9126 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9127 case PV_BEXPR: return *curbuf->b_p_bexpr != NUL
9128 ? (char_u *)&(curbuf->b_p_bexpr) : p->var;
9129 #endif
9130 #ifdef FEAT_STL_OPT
9131 case PV_STL: return *curwin->w_p_stl != NUL
9132 ? (char_u *)&(curwin->w_p_stl) : p->var;
9133 #endif
9135 #ifdef FEAT_ARABIC
9136 case PV_ARAB: return (char_u *)&(curwin->w_p_arab);
9137 #endif
9138 case PV_LIST: return (char_u *)&(curwin->w_p_list);
9139 #ifdef FEAT_SPELL
9140 case PV_SPELL: return (char_u *)&(curwin->w_p_spell);
9141 #endif
9142 #ifdef FEAT_SYN_HL
9143 case PV_CUC: return (char_u *)&(curwin->w_p_cuc);
9144 case PV_CUL: return (char_u *)&(curwin->w_p_cul);
9145 #endif
9146 #ifdef FEAT_DIFF
9147 case PV_DIFF: return (char_u *)&(curwin->w_p_diff);
9148 #endif
9149 #ifdef FEAT_FOLDING
9150 case PV_FDC: return (char_u *)&(curwin->w_p_fdc);
9151 case PV_FEN: return (char_u *)&(curwin->w_p_fen);
9152 case PV_FDI: return (char_u *)&(curwin->w_p_fdi);
9153 case PV_FDL: return (char_u *)&(curwin->w_p_fdl);
9154 case PV_FDM: return (char_u *)&(curwin->w_p_fdm);
9155 case PV_FML: return (char_u *)&(curwin->w_p_fml);
9156 case PV_FDN: return (char_u *)&(curwin->w_p_fdn);
9157 # ifdef FEAT_EVAL
9158 case PV_FDE: return (char_u *)&(curwin->w_p_fde);
9159 case PV_FDT: return (char_u *)&(curwin->w_p_fdt);
9160 # endif
9161 case PV_FMR: return (char_u *)&(curwin->w_p_fmr);
9162 #endif
9163 case PV_NU: return (char_u *)&(curwin->w_p_nu);
9164 #ifdef FEAT_LINEBREAK
9165 case PV_NUW: return (char_u *)&(curwin->w_p_nuw);
9166 #endif
9167 #ifdef FEAT_WINDOWS
9168 case PV_WFH: return (char_u *)&(curwin->w_p_wfh);
9169 #endif
9170 #ifdef FEAT_VERTSPLIT
9171 case PV_WFW: return (char_u *)&(curwin->w_p_wfw);
9172 #endif
9173 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
9174 case PV_PVW: return (char_u *)&(curwin->w_p_pvw);
9175 #endif
9176 #ifdef FEAT_RIGHTLEFT
9177 case PV_RL: return (char_u *)&(curwin->w_p_rl);
9178 case PV_RLC: return (char_u *)&(curwin->w_p_rlc);
9179 #endif
9180 case PV_SCROLL: return (char_u *)&(curwin->w_p_scr);
9181 case PV_WRAP: return (char_u *)&(curwin->w_p_wrap);
9182 #ifdef FEAT_LINEBREAK
9183 case PV_LBR: return (char_u *)&(curwin->w_p_lbr);
9184 #endif
9185 #ifdef FEAT_SCROLLBIND
9186 case PV_SCBIND: return (char_u *)&(curwin->w_p_scb);
9187 #endif
9189 case PV_AI: return (char_u *)&(curbuf->b_p_ai);
9190 case PV_BIN: return (char_u *)&(curbuf->b_p_bin);
9191 #ifdef FEAT_MBYTE
9192 case PV_BOMB: return (char_u *)&(curbuf->b_p_bomb);
9193 #endif
9194 #if defined(FEAT_QUICKFIX)
9195 case PV_BH: return (char_u *)&(curbuf->b_p_bh);
9196 case PV_BT: return (char_u *)&(curbuf->b_p_bt);
9197 #endif
9198 case PV_BL: return (char_u *)&(curbuf->b_p_bl);
9199 case PV_CI: return (char_u *)&(curbuf->b_p_ci);
9200 #ifdef FEAT_CINDENT
9201 case PV_CIN: return (char_u *)&(curbuf->b_p_cin);
9202 case PV_CINK: return (char_u *)&(curbuf->b_p_cink);
9203 case PV_CINO: return (char_u *)&(curbuf->b_p_cino);
9204 #endif
9205 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
9206 case PV_CINW: return (char_u *)&(curbuf->b_p_cinw);
9207 #endif
9208 #ifdef FEAT_COMMENTS
9209 case PV_COM: return (char_u *)&(curbuf->b_p_com);
9210 #endif
9211 #ifdef FEAT_FOLDING
9212 case PV_CMS: return (char_u *)&(curbuf->b_p_cms);
9213 #endif
9214 #ifdef FEAT_INS_EXPAND
9215 case PV_CPT: return (char_u *)&(curbuf->b_p_cpt);
9216 #endif
9217 #ifdef FEAT_COMPL_FUNC
9218 case PV_CFU: return (char_u *)&(curbuf->b_p_cfu);
9219 case PV_OFU: return (char_u *)&(curbuf->b_p_ofu);
9220 #endif
9221 case PV_EOL: return (char_u *)&(curbuf->b_p_eol);
9222 case PV_ET: return (char_u *)&(curbuf->b_p_et);
9223 #ifdef FEAT_MBYTE
9224 case PV_FENC: return (char_u *)&(curbuf->b_p_fenc);
9225 #endif
9226 case PV_FF: return (char_u *)&(curbuf->b_p_ff);
9227 #ifdef FEAT_AUTOCMD
9228 case PV_FT: return (char_u *)&(curbuf->b_p_ft);
9229 #endif
9230 case PV_FO: return (char_u *)&(curbuf->b_p_fo);
9231 case PV_FLP: return (char_u *)&(curbuf->b_p_flp);
9232 case PV_IMI: return (char_u *)&(curbuf->b_p_iminsert);
9233 case PV_IMS: return (char_u *)&(curbuf->b_p_imsearch);
9234 case PV_INF: return (char_u *)&(curbuf->b_p_inf);
9235 case PV_ISK: return (char_u *)&(curbuf->b_p_isk);
9236 #ifdef FEAT_FIND_ID
9237 # ifdef FEAT_EVAL
9238 case PV_INEX: return (char_u *)&(curbuf->b_p_inex);
9239 # endif
9240 #endif
9241 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
9242 case PV_INDE: return (char_u *)&(curbuf->b_p_inde);
9243 case PV_INDK: return (char_u *)&(curbuf->b_p_indk);
9244 #endif
9245 #ifdef FEAT_EVAL
9246 case PV_FEX: return (char_u *)&(curbuf->b_p_fex);
9247 #endif
9248 #ifdef FEAT_CRYPT
9249 case PV_KEY: return (char_u *)&(curbuf->b_p_key);
9250 #endif
9251 #ifdef FEAT_LISP
9252 case PV_LISP: return (char_u *)&(curbuf->b_p_lisp);
9253 #endif
9254 case PV_ML: return (char_u *)&(curbuf->b_p_ml);
9255 case PV_MPS: return (char_u *)&(curbuf->b_p_mps);
9256 #ifdef FEAT_GUI_MACVIM
9257 case PV_MMTA: return (char_u *)&(curbuf->b_p_mmta);
9258 #endif
9259 case PV_MA: return (char_u *)&(curbuf->b_p_ma);
9260 case PV_MOD: return (char_u *)&(curbuf->b_changed);
9261 case PV_NF: return (char_u *)&(curbuf->b_p_nf);
9262 #ifdef FEAT_OSFILETYPE
9263 case PV_OFT: return (char_u *)&(curbuf->b_p_oft);
9264 #endif
9265 case PV_PI: return (char_u *)&(curbuf->b_p_pi);
9266 #ifdef FEAT_TEXTOBJ
9267 case PV_QE: return (char_u *)&(curbuf->b_p_qe);
9268 #endif
9269 case PV_RO: return (char_u *)&(curbuf->b_p_ro);
9270 #ifdef FEAT_SMARTINDENT
9271 case PV_SI: return (char_u *)&(curbuf->b_p_si);
9272 #endif
9273 #ifndef SHORT_FNAME
9274 case PV_SN: return (char_u *)&(curbuf->b_p_sn);
9275 #endif
9276 case PV_STS: return (char_u *)&(curbuf->b_p_sts);
9277 #ifdef FEAT_SEARCHPATH
9278 case PV_SUA: return (char_u *)&(curbuf->b_p_sua);
9279 #endif
9280 case PV_SWF: return (char_u *)&(curbuf->b_p_swf);
9281 #ifdef FEAT_SYN_HL
9282 case PV_SMC: return (char_u *)&(curbuf->b_p_smc);
9283 case PV_SYN: return (char_u *)&(curbuf->b_p_syn);
9284 #endif
9285 #ifdef FEAT_SPELL
9286 case PV_SPC: return (char_u *)&(curbuf->b_p_spc);
9287 case PV_SPF: return (char_u *)&(curbuf->b_p_spf);
9288 case PV_SPL: return (char_u *)&(curbuf->b_p_spl);
9289 #endif
9290 case PV_SW: return (char_u *)&(curbuf->b_p_sw);
9291 case PV_TS: return (char_u *)&(curbuf->b_p_ts);
9292 case PV_TW: return (char_u *)&(curbuf->b_p_tw);
9293 case PV_TX: return (char_u *)&(curbuf->b_p_tx);
9294 case PV_WM: return (char_u *)&(curbuf->b_p_wm);
9295 #ifdef FEAT_KEYMAP
9296 case PV_KMAP: return (char_u *)&(curbuf->b_p_keymap);
9297 #endif
9298 default: EMSG(_("E356: get_varp ERROR"));
9300 /* always return a valid pointer to avoid a crash! */
9301 return (char_u *)&(curbuf->b_p_wm);
9305 * Get the value of 'equalprg', either the buffer-local one or the global one.
9307 char_u *
9308 get_equalprg()
9310 if (*curbuf->b_p_ep == NUL)
9311 return p_ep;
9312 return curbuf->b_p_ep;
9315 #if defined(FEAT_WINDOWS) || defined(PROTO)
9317 * Copy options from one window to another.
9318 * Used when splitting a window.
9320 void
9321 win_copy_options(wp_from, wp_to)
9322 win_T *wp_from;
9323 win_T *wp_to;
9325 copy_winopt(&wp_from->w_onebuf_opt, &wp_to->w_onebuf_opt);
9326 copy_winopt(&wp_from->w_allbuf_opt, &wp_to->w_allbuf_opt);
9327 # ifdef FEAT_RIGHTLEFT
9328 # ifdef FEAT_FKMAP
9329 /* Is this right? */
9330 wp_to->w_farsi = wp_from->w_farsi;
9331 # endif
9332 # endif
9334 #endif
9337 * Copy the options from one winopt_T to another.
9338 * Doesn't free the old option values in "to", use clear_winopt() for that.
9339 * The 'scroll' option is not copied, because it depends on the window height.
9340 * The 'previewwindow' option is reset, there can be only one preview window.
9342 void
9343 copy_winopt(from, to)
9344 winopt_T *from;
9345 winopt_T *to;
9347 #ifdef FEAT_ARABIC
9348 to->wo_arab = from->wo_arab;
9349 #endif
9350 to->wo_list = from->wo_list;
9351 to->wo_nu = from->wo_nu;
9352 #ifdef FEAT_LINEBREAK
9353 to->wo_nuw = from->wo_nuw;
9354 #endif
9355 #ifdef FEAT_RIGHTLEFT
9356 to->wo_rl = from->wo_rl;
9357 to->wo_rlc = vim_strsave(from->wo_rlc);
9358 #endif
9359 #ifdef FEAT_STL_OPT
9360 to->wo_stl = vim_strsave(from->wo_stl);
9361 #endif
9362 to->wo_wrap = from->wo_wrap;
9363 #ifdef FEAT_LINEBREAK
9364 to->wo_lbr = from->wo_lbr;
9365 #endif
9366 #ifdef FEAT_SCROLLBIND
9367 to->wo_scb = from->wo_scb;
9368 #endif
9369 #ifdef FEAT_SPELL
9370 to->wo_spell = from->wo_spell;
9371 #endif
9372 #ifdef FEAT_SYN_HL
9373 to->wo_cuc = from->wo_cuc;
9374 to->wo_cul = from->wo_cul;
9375 #endif
9376 #ifdef FEAT_DIFF
9377 to->wo_diff = from->wo_diff;
9378 #endif
9379 #ifdef FEAT_FOLDING
9380 to->wo_fdc = from->wo_fdc;
9381 to->wo_fen = from->wo_fen;
9382 to->wo_fdi = vim_strsave(from->wo_fdi);
9383 to->wo_fml = from->wo_fml;
9384 to->wo_fdl = from->wo_fdl;
9385 to->wo_fdm = vim_strsave(from->wo_fdm);
9386 to->wo_fdn = from->wo_fdn;
9387 # ifdef FEAT_EVAL
9388 to->wo_fde = vim_strsave(from->wo_fde);
9389 to->wo_fdt = vim_strsave(from->wo_fdt);
9390 # endif
9391 to->wo_fmr = vim_strsave(from->wo_fmr);
9392 #endif
9393 check_winopt(to); /* don't want NULL pointers */
9397 * Check string options in a window for a NULL value.
9399 void
9400 check_win_options(win)
9401 win_T *win;
9403 check_winopt(&win->w_onebuf_opt);
9404 check_winopt(&win->w_allbuf_opt);
9408 * Check for NULL pointers in a winopt_T and replace them with empty_option.
9410 /*ARGSUSED*/
9411 void
9412 check_winopt(wop)
9413 winopt_T *wop;
9415 #ifdef FEAT_FOLDING
9416 check_string_option(&wop->wo_fdi);
9417 check_string_option(&wop->wo_fdm);
9418 # ifdef FEAT_EVAL
9419 check_string_option(&wop->wo_fde);
9420 check_string_option(&wop->wo_fdt);
9421 # endif
9422 check_string_option(&wop->wo_fmr);
9423 #endif
9424 #ifdef FEAT_RIGHTLEFT
9425 check_string_option(&wop->wo_rlc);
9426 #endif
9427 #ifdef FEAT_STL_OPT
9428 check_string_option(&wop->wo_stl);
9429 #endif
9433 * Free the allocated memory inside a winopt_T.
9435 /*ARGSUSED*/
9436 void
9437 clear_winopt(wop)
9438 winopt_T *wop;
9440 #ifdef FEAT_FOLDING
9441 clear_string_option(&wop->wo_fdi);
9442 clear_string_option(&wop->wo_fdm);
9443 # ifdef FEAT_EVAL
9444 clear_string_option(&wop->wo_fde);
9445 clear_string_option(&wop->wo_fdt);
9446 # endif
9447 clear_string_option(&wop->wo_fmr);
9448 #endif
9449 #ifdef FEAT_RIGHTLEFT
9450 clear_string_option(&wop->wo_rlc);
9451 #endif
9452 #ifdef FEAT_STL_OPT
9453 clear_string_option(&wop->wo_stl);
9454 #endif
9458 * Copy global option values to local options for one buffer.
9459 * Used when creating a new buffer and sometimes when entering a buffer.
9460 * flags:
9461 * BCO_ENTER We will enter the buf buffer.
9462 * BCO_ALWAYS Always copy the options, but only set b_p_initialized when
9463 * appropriate.
9464 * BCO_NOHELP Don't copy the values to a help buffer.
9466 void
9467 buf_copy_options(buf, flags)
9468 buf_T *buf;
9469 int flags;
9471 int should_copy = TRUE;
9472 char_u *save_p_isk = NULL; /* init for GCC */
9473 int dont_do_help;
9474 int did_isk = FALSE;
9477 * Don't do anything of the buffer is invalid.
9479 if (buf == NULL || !buf_valid(buf))
9480 return;
9483 * Skip this when the option defaults have not been set yet. Happens when
9484 * main() allocates the first buffer.
9486 if (p_cpo != NULL)
9489 * Always copy when entering and 'cpo' contains 'S'.
9490 * Don't copy when already initialized.
9491 * Don't copy when 'cpo' contains 's' and not entering.
9492 * 'S' BCO_ENTER initialized 's' should_copy
9493 * yes yes X X TRUE
9494 * yes no yes X FALSE
9495 * no X yes X FALSE
9496 * X no no yes FALSE
9497 * X no no no TRUE
9498 * no yes no X TRUE
9500 if ((vim_strchr(p_cpo, CPO_BUFOPTGLOB) == NULL || !(flags & BCO_ENTER))
9501 && (buf->b_p_initialized
9502 || (!(flags & BCO_ENTER)
9503 && vim_strchr(p_cpo, CPO_BUFOPT) != NULL)))
9504 should_copy = FALSE;
9506 if (should_copy || (flags & BCO_ALWAYS))
9508 /* Don't copy the options specific to a help buffer when
9509 * BCO_NOHELP is given or the options were initialized already
9510 * (jumping back to a help file with CTRL-T or CTRL-O) */
9511 dont_do_help = ((flags & BCO_NOHELP) && buf->b_help)
9512 || buf->b_p_initialized;
9513 if (dont_do_help) /* don't free b_p_isk */
9515 save_p_isk = buf->b_p_isk;
9516 buf->b_p_isk = NULL;
9519 * Always free the allocated strings.
9520 * If not already initialized, set 'readonly' and copy 'fileformat'.
9522 if (!buf->b_p_initialized)
9524 free_buf_options(buf, TRUE);
9525 buf->b_p_ro = FALSE; /* don't copy readonly */
9526 buf->b_p_tx = p_tx;
9527 #ifdef FEAT_MBYTE
9528 buf->b_p_fenc = vim_strsave(p_fenc);
9529 #endif
9530 buf->b_p_ff = vim_strsave(p_ff);
9531 #if defined(FEAT_QUICKFIX)
9532 buf->b_p_bh = empty_option;
9533 buf->b_p_bt = empty_option;
9534 #endif
9536 else
9537 free_buf_options(buf, FALSE);
9539 buf->b_p_ai = p_ai;
9540 buf->b_p_ai_nopaste = p_ai_nopaste;
9541 buf->b_p_sw = p_sw;
9542 buf->b_p_tw = p_tw;
9543 buf->b_p_tw_nopaste = p_tw_nopaste;
9544 buf->b_p_tw_nobin = p_tw_nobin;
9545 buf->b_p_wm = p_wm;
9546 buf->b_p_wm_nopaste = p_wm_nopaste;
9547 buf->b_p_wm_nobin = p_wm_nobin;
9548 buf->b_p_bin = p_bin;
9549 #ifdef FEAT_MBYTE
9550 buf->b_p_bomb = p_bomb;
9551 #endif
9552 buf->b_p_et = p_et;
9553 buf->b_p_et_nobin = p_et_nobin;
9554 buf->b_p_ml = p_ml;
9555 buf->b_p_ml_nobin = p_ml_nobin;
9556 buf->b_p_inf = p_inf;
9557 buf->b_p_swf = p_swf;
9558 #ifdef FEAT_INS_EXPAND
9559 buf->b_p_cpt = vim_strsave(p_cpt);
9560 #endif
9561 #ifdef FEAT_COMPL_FUNC
9562 buf->b_p_cfu = vim_strsave(p_cfu);
9563 buf->b_p_ofu = vim_strsave(p_ofu);
9564 #endif
9565 buf->b_p_sts = p_sts;
9566 buf->b_p_sts_nopaste = p_sts_nopaste;
9567 #ifndef SHORT_FNAME
9568 buf->b_p_sn = p_sn;
9569 #endif
9570 #ifdef FEAT_COMMENTS
9571 buf->b_p_com = vim_strsave(p_com);
9572 #endif
9573 #ifdef FEAT_FOLDING
9574 buf->b_p_cms = vim_strsave(p_cms);
9575 #endif
9576 buf->b_p_fo = vim_strsave(p_fo);
9577 buf->b_p_flp = vim_strsave(p_flp);
9578 buf->b_p_nf = vim_strsave(p_nf);
9579 buf->b_p_mps = vim_strsave(p_mps);
9580 #ifdef FEAT_SMARTINDENT
9581 buf->b_p_si = p_si;
9582 #endif
9583 buf->b_p_ci = p_ci;
9584 #ifdef FEAT_CINDENT
9585 buf->b_p_cin = p_cin;
9586 buf->b_p_cink = vim_strsave(p_cink);
9587 buf->b_p_cino = vim_strsave(p_cino);
9588 #endif
9589 #ifdef FEAT_AUTOCMD
9590 /* Don't copy 'filetype', it must be detected */
9591 buf->b_p_ft = empty_option;
9592 #endif
9593 #ifdef FEAT_OSFILETYPE
9594 buf->b_p_oft = vim_strsave(p_oft);
9595 #endif
9596 buf->b_p_pi = p_pi;
9597 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
9598 buf->b_p_cinw = vim_strsave(p_cinw);
9599 #endif
9600 #ifdef FEAT_LISP
9601 buf->b_p_lisp = p_lisp;
9602 #endif
9603 #ifdef FEAT_SYN_HL
9604 /* Don't copy 'syntax', it must be set */
9605 buf->b_p_syn = empty_option;
9606 buf->b_p_smc = p_smc;
9607 #endif
9608 #ifdef FEAT_SPELL
9609 buf->b_p_spc = vim_strsave(p_spc);
9610 (void)compile_cap_prog(buf);
9611 buf->b_p_spf = vim_strsave(p_spf);
9612 buf->b_p_spl = vim_strsave(p_spl);
9613 #endif
9614 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
9615 buf->b_p_inde = vim_strsave(p_inde);
9616 buf->b_p_indk = vim_strsave(p_indk);
9617 #endif
9618 #if defined(FEAT_EVAL)
9619 buf->b_p_fex = vim_strsave(p_fex);
9620 #endif
9621 #ifdef FEAT_CRYPT
9622 buf->b_p_key = vim_strsave(p_key);
9623 #endif
9624 #ifdef FEAT_SEARCHPATH
9625 buf->b_p_sua = vim_strsave(p_sua);
9626 #endif
9627 #ifdef FEAT_KEYMAP
9628 buf->b_p_keymap = vim_strsave(p_keymap);
9629 buf->b_kmap_state |= KEYMAP_INIT;
9630 #endif
9631 #ifdef FEAT_GUI_MACVIM
9632 buf->b_p_mmta = p_mmta;
9633 #endif
9634 /* This isn't really an option, but copying the langmap and IME
9635 * state from the current buffer is better than resetting it. */
9636 buf->b_p_iminsert = p_iminsert;
9637 buf->b_p_imsearch = p_imsearch;
9639 /* options that are normally global but also have a local value
9640 * are not copied, start using the global value */
9641 buf->b_p_ar = -1;
9642 #ifdef FEAT_QUICKFIX
9643 buf->b_p_gp = empty_option;
9644 buf->b_p_mp = empty_option;
9645 buf->b_p_efm = empty_option;
9646 #endif
9647 buf->b_p_ep = empty_option;
9648 buf->b_p_kp = empty_option;
9649 buf->b_p_path = empty_option;
9650 buf->b_p_tags = empty_option;
9651 #ifdef FEAT_FIND_ID
9652 buf->b_p_def = empty_option;
9653 buf->b_p_inc = empty_option;
9654 # ifdef FEAT_EVAL
9655 buf->b_p_inex = vim_strsave(p_inex);
9656 # endif
9657 #endif
9658 #ifdef FEAT_INS_EXPAND
9659 buf->b_p_dict = empty_option;
9660 buf->b_p_tsr = empty_option;
9661 #endif
9662 #ifdef FEAT_TEXTOBJ
9663 buf->b_p_qe = vim_strsave(p_qe);
9664 #endif
9665 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9666 buf->b_p_bexpr = empty_option;
9667 #endif
9670 * Don't copy the options set by ex_help(), use the saved values,
9671 * when going from a help buffer to a non-help buffer.
9672 * Don't touch these at all when BCO_NOHELP is used and going from
9673 * or to a help buffer.
9675 if (dont_do_help)
9676 buf->b_p_isk = save_p_isk;
9677 else
9679 buf->b_p_isk = vim_strsave(p_isk);
9680 did_isk = TRUE;
9681 buf->b_p_ts = p_ts;
9682 buf->b_help = FALSE;
9683 #ifdef FEAT_QUICKFIX
9684 if (buf->b_p_bt[0] == 'h')
9685 clear_string_option(&buf->b_p_bt);
9686 #endif
9687 buf->b_p_ma = p_ma;
9692 * When the options should be copied (ignoring BCO_ALWAYS), set the
9693 * flag that indicates that the options have been initialized.
9695 if (should_copy)
9696 buf->b_p_initialized = TRUE;
9699 check_buf_options(buf); /* make sure we don't have NULLs */
9700 if (did_isk)
9701 (void)buf_init_chartab(buf, FALSE);
9705 * Reset the 'modifiable' option and its default value.
9707 void
9708 reset_modifiable()
9710 int opt_idx;
9712 curbuf->b_p_ma = FALSE;
9713 p_ma = FALSE;
9714 opt_idx = findoption((char_u *)"ma");
9715 if (opt_idx >= 0)
9716 options[opt_idx].def_val[VI_DEFAULT] = FALSE;
9720 * Set the global value for 'iminsert' to the local value.
9722 void
9723 set_iminsert_global()
9725 p_iminsert = curbuf->b_p_iminsert;
9729 * Set the global value for 'imsearch' to the local value.
9731 void
9732 set_imsearch_global()
9734 p_imsearch = curbuf->b_p_imsearch;
9737 #if defined(FEAT_CMDL_COMPL) || defined(PROTO)
9738 static int expand_option_idx = -1;
9739 static char_u expand_option_name[5] = {'t', '_', NUL, NUL, NUL};
9740 static int expand_option_flags = 0;
9742 void
9743 set_context_in_set_cmd(xp, arg, opt_flags)
9744 expand_T *xp;
9745 char_u *arg;
9746 int opt_flags; /* OPT_GLOBAL and/or OPT_LOCAL */
9748 int nextchar;
9749 long_u flags = 0; /* init for GCC */
9750 int opt_idx = 0; /* init for GCC */
9751 char_u *p;
9752 char_u *s;
9753 int is_term_option = FALSE;
9754 int key;
9756 expand_option_flags = opt_flags;
9758 xp->xp_context = EXPAND_SETTINGS;
9759 if (*arg == NUL)
9761 xp->xp_pattern = arg;
9762 return;
9764 p = arg + STRLEN(arg) - 1;
9765 if (*p == ' ' && *(p - 1) != '\\')
9767 xp->xp_pattern = p + 1;
9768 return;
9770 while (p > arg)
9772 s = p;
9773 /* count number of backslashes before ' ' or ',' */
9774 if (*p == ' ' || *p == ',')
9776 while (s > arg && *(s - 1) == '\\')
9777 --s;
9779 /* break at a space with an even number of backslashes */
9780 if (*p == ' ' && ((p - s) & 1) == 0)
9782 ++p;
9783 break;
9785 --p;
9787 if (STRNCMP(p, "no", 2) == 0)
9789 xp->xp_context = EXPAND_BOOL_SETTINGS;
9790 p += 2;
9792 if (STRNCMP(p, "inv", 3) == 0)
9794 xp->xp_context = EXPAND_BOOL_SETTINGS;
9795 p += 3;
9797 xp->xp_pattern = arg = p;
9798 if (*arg == '<')
9800 while (*p != '>')
9801 if (*p++ == NUL) /* expand terminal option name */
9802 return;
9803 key = get_special_key_code(arg + 1);
9804 if (key == 0) /* unknown name */
9806 xp->xp_context = EXPAND_NOTHING;
9807 return;
9809 nextchar = *++p;
9810 is_term_option = TRUE;
9811 expand_option_name[2] = KEY2TERMCAP0(key);
9812 expand_option_name[3] = KEY2TERMCAP1(key);
9814 else
9816 if (p[0] == 't' && p[1] == '_')
9818 p += 2;
9819 if (*p != NUL)
9820 ++p;
9821 if (*p == NUL)
9822 return; /* expand option name */
9823 nextchar = *++p;
9824 is_term_option = TRUE;
9825 expand_option_name[2] = p[-2];
9826 expand_option_name[3] = p[-1];
9828 else
9830 /* Allow * wildcard */
9831 while (ASCII_ISALNUM(*p) || *p == '_' || *p == '*')
9832 p++;
9833 if (*p == NUL)
9834 return;
9835 nextchar = *p;
9836 *p = NUL;
9837 opt_idx = findoption(arg);
9838 *p = nextchar;
9839 if (opt_idx == -1 || options[opt_idx].var == NULL)
9841 xp->xp_context = EXPAND_NOTHING;
9842 return;
9844 flags = options[opt_idx].flags;
9845 if (flags & P_BOOL)
9847 xp->xp_context = EXPAND_NOTHING;
9848 return;
9852 /* handle "-=" and "+=" */
9853 if ((nextchar == '-' || nextchar == '+' || nextchar == '^') && p[1] == '=')
9855 ++p;
9856 nextchar = '=';
9858 if ((nextchar != '=' && nextchar != ':')
9859 || xp->xp_context == EXPAND_BOOL_SETTINGS)
9861 xp->xp_context = EXPAND_UNSUCCESSFUL;
9862 return;
9864 if (xp->xp_context != EXPAND_BOOL_SETTINGS && p[1] == NUL)
9866 xp->xp_context = EXPAND_OLD_SETTING;
9867 if (is_term_option)
9868 expand_option_idx = -1;
9869 else
9870 expand_option_idx = opt_idx;
9871 xp->xp_pattern = p + 1;
9872 return;
9874 xp->xp_context = EXPAND_NOTHING;
9875 if (is_term_option || (flags & P_NUM))
9876 return;
9878 xp->xp_pattern = p + 1;
9880 if (flags & P_EXPAND)
9882 p = options[opt_idx].var;
9883 if (p == (char_u *)&p_bdir
9884 || p == (char_u *)&p_dir
9885 || p == (char_u *)&p_path
9886 || p == (char_u *)&p_rtp
9887 #ifdef FEAT_SEARCHPATH
9888 || p == (char_u *)&p_cdpath
9889 #endif
9890 #ifdef FEAT_SESSION
9891 || p == (char_u *)&p_vdir
9892 #endif
9895 xp->xp_context = EXPAND_DIRECTORIES;
9896 if (p == (char_u *)&p_path
9897 #ifdef FEAT_SEARCHPATH
9898 || p == (char_u *)&p_cdpath
9899 #endif
9901 xp->xp_backslash = XP_BS_THREE;
9902 else
9903 xp->xp_backslash = XP_BS_ONE;
9905 else
9907 xp->xp_context = EXPAND_FILES;
9908 /* for 'tags' need three backslashes for a space */
9909 if (p == (char_u *)&p_tags)
9910 xp->xp_backslash = XP_BS_THREE;
9911 else
9912 xp->xp_backslash = XP_BS_ONE;
9916 /* For an option that is a list of file names, find the start of the
9917 * last file name. */
9918 for (p = arg + STRLEN(arg) - 1; p > xp->xp_pattern; --p)
9920 /* count number of backslashes before ' ' or ',' */
9921 if (*p == ' ' || *p == ',')
9923 s = p;
9924 while (s > xp->xp_pattern && *(s - 1) == '\\')
9925 --s;
9926 if ((*p == ' ' && (xp->xp_backslash == XP_BS_THREE && (p - s) < 3))
9927 || (*p == ',' && (flags & P_COMMA) && ((p - s) & 1) == 0))
9929 xp->xp_pattern = p + 1;
9930 break;
9934 #ifdef FEAT_SPELL
9935 /* for 'spellsuggest' start at "file:" */
9936 if (options[opt_idx].var == (char_u *)&p_sps
9937 && STRNCMP(p, "file:", 5) == 0)
9939 xp->xp_pattern = p + 5;
9940 break;
9942 #endif
9945 return;
9949 ExpandSettings(xp, regmatch, num_file, file)
9950 expand_T *xp;
9951 regmatch_T *regmatch;
9952 int *num_file;
9953 char_u ***file;
9955 int num_normal = 0; /* Nr of matching non-term-code settings */
9956 int num_term = 0; /* Nr of matching terminal code settings */
9957 int opt_idx;
9958 int match;
9959 int count = 0;
9960 char_u *str;
9961 int loop;
9962 int is_term_opt;
9963 char_u name_buf[MAX_KEY_NAME_LEN];
9964 static char *(names[]) = {"all", "termcap"};
9965 int ic = regmatch->rm_ic; /* remember the ignore-case flag */
9967 /* do this loop twice:
9968 * loop == 0: count the number of matching options
9969 * loop == 1: copy the matching options into allocated memory
9971 for (loop = 0; loop <= 1; ++loop)
9973 regmatch->rm_ic = ic;
9974 if (xp->xp_context != EXPAND_BOOL_SETTINGS)
9976 for (match = 0; match < sizeof(names) / sizeof(char *); ++match)
9977 if (vim_regexec(regmatch, (char_u *)names[match], (colnr_T)0))
9979 if (loop == 0)
9980 num_normal++;
9981 else
9982 (*file)[count++] = vim_strsave((char_u *)names[match]);
9985 for (opt_idx = 0; (str = (char_u *)options[opt_idx].fullname) != NULL;
9986 opt_idx++)
9988 if (options[opt_idx].var == NULL)
9989 continue;
9990 if (xp->xp_context == EXPAND_BOOL_SETTINGS
9991 && !(options[opt_idx].flags & P_BOOL))
9992 continue;
9993 is_term_opt = istermoption(&options[opt_idx]);
9994 if (is_term_opt && num_normal > 0)
9995 continue;
9996 match = FALSE;
9997 if (vim_regexec(regmatch, str, (colnr_T)0)
9998 || (options[opt_idx].shortname != NULL
9999 && vim_regexec(regmatch,
10000 (char_u *)options[opt_idx].shortname, (colnr_T)0)))
10001 match = TRUE;
10002 else if (is_term_opt)
10004 name_buf[0] = '<';
10005 name_buf[1] = 't';
10006 name_buf[2] = '_';
10007 name_buf[3] = str[2];
10008 name_buf[4] = str[3];
10009 name_buf[5] = '>';
10010 name_buf[6] = NUL;
10011 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10013 match = TRUE;
10014 str = name_buf;
10017 if (match)
10019 if (loop == 0)
10021 if (is_term_opt)
10022 num_term++;
10023 else
10024 num_normal++;
10026 else
10027 (*file)[count++] = vim_strsave(str);
10031 * Check terminal key codes, these are not in the option table
10033 if (xp->xp_context != EXPAND_BOOL_SETTINGS && num_normal == 0)
10035 for (opt_idx = 0; (str = get_termcode(opt_idx)) != NULL; opt_idx++)
10037 if (!isprint(str[0]) || !isprint(str[1]))
10038 continue;
10040 name_buf[0] = 't';
10041 name_buf[1] = '_';
10042 name_buf[2] = str[0];
10043 name_buf[3] = str[1];
10044 name_buf[4] = NUL;
10046 match = FALSE;
10047 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10048 match = TRUE;
10049 else
10051 name_buf[0] = '<';
10052 name_buf[1] = 't';
10053 name_buf[2] = '_';
10054 name_buf[3] = str[0];
10055 name_buf[4] = str[1];
10056 name_buf[5] = '>';
10057 name_buf[6] = NUL;
10059 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10060 match = TRUE;
10062 if (match)
10064 if (loop == 0)
10065 num_term++;
10066 else
10067 (*file)[count++] = vim_strsave(name_buf);
10072 * Check special key names.
10074 regmatch->rm_ic = TRUE; /* ignore case here */
10075 for (opt_idx = 0; (str = get_key_name(opt_idx)) != NULL; opt_idx++)
10077 name_buf[0] = '<';
10078 STRCPY(name_buf + 1, str);
10079 STRCAT(name_buf, ">");
10081 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10083 if (loop == 0)
10084 num_term++;
10085 else
10086 (*file)[count++] = vim_strsave(name_buf);
10090 if (loop == 0)
10092 if (num_normal > 0)
10093 *num_file = num_normal;
10094 else if (num_term > 0)
10095 *num_file = num_term;
10096 else
10097 return OK;
10098 *file = (char_u **)alloc((unsigned)(*num_file * sizeof(char_u *)));
10099 if (*file == NULL)
10101 *file = (char_u **)"";
10102 return FAIL;
10106 return OK;
10110 ExpandOldSetting(num_file, file)
10111 int *num_file;
10112 char_u ***file;
10114 char_u *var = NULL; /* init for GCC */
10115 char_u *buf;
10117 *num_file = 0;
10118 *file = (char_u **)alloc((unsigned)sizeof(char_u *));
10119 if (*file == NULL)
10120 return FAIL;
10123 * For a terminal key code expand_option_idx is < 0.
10125 if (expand_option_idx < 0)
10127 var = find_termcode(expand_option_name + 2);
10128 if (var == NULL)
10129 expand_option_idx = findoption(expand_option_name);
10132 if (expand_option_idx >= 0)
10134 /* put string of option value in NameBuff */
10135 option_value2string(&options[expand_option_idx], expand_option_flags);
10136 var = NameBuff;
10138 else if (var == NULL)
10139 var = (char_u *)"";
10141 /* A backslash is required before some characters. This is the reverse of
10142 * what happens in do_set(). */
10143 buf = vim_strsave_escaped(var, escape_chars);
10145 if (buf == NULL)
10147 vim_free(*file);
10148 *file = NULL;
10149 return FAIL;
10152 #ifdef BACKSLASH_IN_FILENAME
10153 /* For MS-Windows et al. we don't double backslashes at the start and
10154 * before a file name character. */
10155 for (var = buf; *var != NUL; mb_ptr_adv(var))
10156 if (var[0] == '\\' && var[1] == '\\'
10157 && expand_option_idx >= 0
10158 && (options[expand_option_idx].flags & P_EXPAND)
10159 && vim_isfilec(var[2])
10160 && (var[2] != '\\' || (var == buf && var[4] != '\\')))
10161 STRMOVE(var, var + 1);
10162 #endif
10164 *file[0] = buf;
10165 *num_file = 1;
10166 return OK;
10168 #endif
10171 * Get the value for the numeric or string option *opp in a nice format into
10172 * NameBuff[]. Must not be called with a hidden option!
10174 static void
10175 option_value2string(opp, opt_flags)
10176 struct vimoption *opp;
10177 int opt_flags; /* OPT_GLOBAL and/or OPT_LOCAL */
10179 char_u *varp;
10181 varp = get_varp_scope(opp, opt_flags);
10183 if (opp->flags & P_NUM)
10185 long wc = 0;
10187 if (wc_use_keyname(varp, &wc))
10188 STRCPY(NameBuff, get_special_key_name((int)wc, 0));
10189 else if (wc != 0)
10190 STRCPY(NameBuff, transchar((int)wc));
10191 else
10192 sprintf((char *)NameBuff, "%ld", *(long *)varp);
10194 else /* P_STRING */
10196 varp = *(char_u **)(varp);
10197 if (varp == NULL) /* just in case */
10198 NameBuff[0] = NUL;
10199 #ifdef FEAT_CRYPT
10200 /* don't show the actual value of 'key', only that it's set */
10201 else if (opp->var == (char_u *)&p_key && *varp)
10202 STRCPY(NameBuff, "*****");
10203 #endif
10204 else if (opp->flags & P_EXPAND)
10205 home_replace(NULL, varp, NameBuff, MAXPATHL, FALSE);
10206 /* Translate 'pastetoggle' into special key names */
10207 else if ((char_u **)opp->var == &p_pt)
10208 str2specialbuf(p_pt, NameBuff, MAXPATHL);
10209 else
10210 vim_strncpy(NameBuff, varp, MAXPATHL - 1);
10215 * Return TRUE if "varp" points to 'wildchar' or 'wildcharm' and it can be
10216 * printed as a keyname.
10217 * "*wcp" is set to the value of the option if it's 'wildchar' or 'wildcharm'.
10219 static int
10220 wc_use_keyname(varp, wcp)
10221 char_u *varp;
10222 long *wcp;
10224 if (((long *)varp == &p_wc) || ((long *)varp == &p_wcm))
10226 *wcp = *(long *)varp;
10227 if (IS_SPECIAL(*wcp) || find_special_key_in_table((int)*wcp) >= 0)
10228 return TRUE;
10230 return FALSE;
10233 #ifdef FEAT_LANGMAP
10235 * Any character has an equivalent character. This is used for keyboards that
10236 * have a special language mode that sends characters above 128 (although
10237 * other characters can be translated too).
10241 * char_u langmap_mapchar[256];
10242 * Normally maps each of the 128 upper chars to an <128 ascii char; used to
10243 * "translate" native lang chars in normal mode or some cases of
10244 * insert mode without having to tediously switch lang mode back&forth.
10247 static void
10248 langmap_init()
10250 int i;
10252 for (i = 0; i < 256; i++) /* we init with a-one-to one map */
10253 langmap_mapchar[i] = i;
10257 * Called when langmap option is set; the language map can be
10258 * changed at any time!
10260 static void
10261 langmap_set()
10263 char_u *p;
10264 char_u *p2;
10265 int from, to;
10267 langmap_init(); /* back to one-to-one map first */
10269 for (p = p_langmap; p[0] != NUL; )
10271 for (p2 = p; p2[0] != NUL && p2[0] != ',' && p2[0] != ';';
10272 mb_ptr_adv(p2))
10274 if (p2[0] == '\\' && p2[1] != NUL)
10275 ++p2;
10277 if (p2[0] == ';')
10278 ++p2; /* abcd;ABCD form, p2 points to A */
10279 else
10280 p2 = NULL; /* aAbBcCdD form, p2 is NULL */
10281 while (p[0])
10283 if (p[0] == '\\' && p[1] != NUL)
10284 ++p;
10285 #ifdef FEAT_MBYTE
10286 from = (*mb_ptr2char)(p);
10287 #else
10288 from = p[0];
10289 #endif
10290 if (p2 == NULL)
10292 mb_ptr_adv(p);
10293 if (p[0] == '\\')
10294 ++p;
10295 #ifdef FEAT_MBYTE
10296 to = (*mb_ptr2char)(p);
10297 #else
10298 to = p[0];
10299 #endif
10301 else
10303 if (p2[0] == '\\')
10304 ++p2;
10305 #ifdef FEAT_MBYTE
10306 to = (*mb_ptr2char)(p2);
10307 #else
10308 to = p2[0];
10309 #endif
10311 if (to == NUL)
10313 EMSG2(_("E357: 'langmap': Matching character missing for %s"),
10314 transchar(from));
10315 return;
10317 langmap_mapchar[from & 255] = to;
10319 /* Advance to next pair */
10320 mb_ptr_adv(p);
10321 if (p2 == NULL)
10323 if (p[0] == ',')
10325 ++p;
10326 break;
10329 else
10331 mb_ptr_adv(p2);
10332 if (*p == ';')
10334 p = p2;
10335 if (p[0] != NUL)
10337 if (p[0] != ',')
10339 EMSG2(_("E358: 'langmap': Extra characters after semicolon: %s"), p);
10340 return;
10342 ++p;
10344 break;
10350 #endif
10353 * Return TRUE if format option 'x' is in effect.
10354 * Take care of no formatting when 'paste' is set.
10357 has_format_option(x)
10358 int x;
10360 if (p_paste)
10361 return FALSE;
10362 return (vim_strchr(curbuf->b_p_fo, x) != NULL);
10366 * Return TRUE if "x" is present in 'shortmess' option, or
10367 * 'shortmess' contains 'a' and "x" is present in SHM_A.
10370 shortmess(x)
10371 int x;
10373 return ( vim_strchr(p_shm, x) != NULL
10374 || (vim_strchr(p_shm, 'a') != NULL
10375 && vim_strchr((char_u *)SHM_A, x) != NULL));
10379 * paste_option_changed() - Called after p_paste was set or reset.
10381 static void
10382 paste_option_changed()
10384 static int old_p_paste = FALSE;
10385 static int save_sm = 0;
10386 #ifdef FEAT_CMDL_INFO
10387 static int save_ru = 0;
10388 #endif
10389 #ifdef FEAT_RIGHTLEFT
10390 static int save_ri = 0;
10391 static int save_hkmap = 0;
10392 #endif
10393 buf_T *buf;
10395 if (p_paste)
10398 * Paste switched from off to on.
10399 * Save the current values, so they can be restored later.
10401 if (!old_p_paste)
10403 /* save options for each buffer */
10404 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10406 buf->b_p_tw_nopaste = buf->b_p_tw;
10407 buf->b_p_wm_nopaste = buf->b_p_wm;
10408 buf->b_p_sts_nopaste = buf->b_p_sts;
10409 buf->b_p_ai_nopaste = buf->b_p_ai;
10412 /* save global options */
10413 save_sm = p_sm;
10414 #ifdef FEAT_CMDL_INFO
10415 save_ru = p_ru;
10416 #endif
10417 #ifdef FEAT_RIGHTLEFT
10418 save_ri = p_ri;
10419 save_hkmap = p_hkmap;
10420 #endif
10421 /* save global values for local buffer options */
10422 p_tw_nopaste = p_tw;
10423 p_wm_nopaste = p_wm;
10424 p_sts_nopaste = p_sts;
10425 p_ai_nopaste = p_ai;
10429 * Always set the option values, also when 'paste' is set when it is
10430 * already on.
10432 /* set options for each buffer */
10433 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10435 buf->b_p_tw = 0; /* textwidth is 0 */
10436 buf->b_p_wm = 0; /* wrapmargin is 0 */
10437 buf->b_p_sts = 0; /* softtabstop is 0 */
10438 buf->b_p_ai = 0; /* no auto-indent */
10441 /* set global options */
10442 p_sm = 0; /* no showmatch */
10443 #ifdef FEAT_CMDL_INFO
10444 # ifdef FEAT_WINDOWS
10445 if (p_ru)
10446 status_redraw_all(); /* redraw to remove the ruler */
10447 # endif
10448 p_ru = 0; /* no ruler */
10449 #endif
10450 #ifdef FEAT_RIGHTLEFT
10451 p_ri = 0; /* no reverse insert */
10452 p_hkmap = 0; /* no Hebrew keyboard */
10453 #endif
10454 /* set global values for local buffer options */
10455 p_tw = 0;
10456 p_wm = 0;
10457 p_sts = 0;
10458 p_ai = 0;
10462 * Paste switched from on to off: Restore saved values.
10464 else if (old_p_paste)
10466 /* restore options for each buffer */
10467 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10469 buf->b_p_tw = buf->b_p_tw_nopaste;
10470 buf->b_p_wm = buf->b_p_wm_nopaste;
10471 buf->b_p_sts = buf->b_p_sts_nopaste;
10472 buf->b_p_ai = buf->b_p_ai_nopaste;
10475 /* restore global options */
10476 p_sm = save_sm;
10477 #ifdef FEAT_CMDL_INFO
10478 # ifdef FEAT_WINDOWS
10479 if (p_ru != save_ru)
10480 status_redraw_all(); /* redraw to draw the ruler */
10481 # endif
10482 p_ru = save_ru;
10483 #endif
10484 #ifdef FEAT_RIGHTLEFT
10485 p_ri = save_ri;
10486 p_hkmap = save_hkmap;
10487 #endif
10488 /* set global values for local buffer options */
10489 p_tw = p_tw_nopaste;
10490 p_wm = p_wm_nopaste;
10491 p_sts = p_sts_nopaste;
10492 p_ai = p_ai_nopaste;
10495 old_p_paste = p_paste;
10499 * vimrc_found() - Called when a ".vimrc" or "VIMINIT" has been found.
10501 * Reset 'compatible' and set the values for options that didn't get set yet
10502 * to the Vim defaults.
10503 * Don't do this if the 'compatible' option has been set or reset before.
10504 * When "fname" is not NULL, use it to set $"envname" when it wasn't set yet.
10506 void
10507 vimrc_found(fname, envname)
10508 char_u *fname;
10509 char_u *envname;
10511 int opt_idx;
10512 int dofree = FALSE;
10513 char_u *p;
10515 if (!option_was_set((char_u *)"cp"))
10517 p_cp = FALSE;
10518 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
10519 if (!(options[opt_idx].flags & (P_WAS_SET|P_VI_DEF)))
10520 set_option_default(opt_idx, OPT_FREE, FALSE);
10521 didset_options();
10524 if (fname != NULL)
10526 p = vim_getenv(envname, &dofree);
10527 if (p == NULL)
10529 /* Set $MYVIMRC to the first vimrc file found. */
10530 p = FullName_save(fname, FALSE);
10531 if (p != NULL)
10533 vim_setenv(envname, p);
10534 vim_free(p);
10537 else if (dofree)
10538 vim_free(p);
10543 * Set 'compatible' on or off. Called for "-C" and "-N" command line arg.
10545 void
10546 change_compatible(on)
10547 int on;
10549 int opt_idx;
10551 if (p_cp != on)
10553 p_cp = on;
10554 compatible_set();
10556 opt_idx = findoption((char_u *)"cp");
10557 if (opt_idx >= 0)
10558 options[opt_idx].flags |= P_WAS_SET;
10562 * Return TRUE when option "name" has been set.
10565 option_was_set(name)
10566 char_u *name;
10568 int idx;
10570 idx = findoption(name);
10571 if (idx < 0) /* unknown option */
10572 return FALSE;
10573 if (options[idx].flags & P_WAS_SET)
10574 return TRUE;
10575 return FALSE;
10579 * compatible_set() - Called when 'compatible' has been set or unset.
10581 * When 'compatible' set: Set all relevant options (those that have the P_VIM)
10582 * flag) to a Vi compatible value.
10583 * When 'compatible' is unset: Set all options that have a different default
10584 * for Vim (without the P_VI_DEF flag) to that default.
10586 static void
10587 compatible_set()
10589 int opt_idx;
10591 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
10592 if ( ((options[opt_idx].flags & P_VIM) && p_cp)
10593 || (!(options[opt_idx].flags & P_VI_DEF) && !p_cp))
10594 set_option_default(opt_idx, OPT_FREE, p_cp);
10595 didset_options();
10598 #ifdef FEAT_LINEBREAK
10600 # if defined(__BORLANDC__) && (__BORLANDC__ < 0x500)
10601 /* Borland C++ screws up loop optimisation here (negri) */
10602 #pragma option -O-l
10603 # endif
10606 * fill_breakat_flags() -- called when 'breakat' changes value.
10608 static void
10609 fill_breakat_flags()
10611 char_u *p;
10612 int i;
10614 for (i = 0; i < 256; i++)
10615 breakat_flags[i] = FALSE;
10617 if (p_breakat != NULL)
10618 for (p = p_breakat; *p; p++)
10619 breakat_flags[*p] = TRUE;
10622 # if defined(__BORLANDC__) && (__BORLANDC__ < 0x500)
10623 #pragma option -O.l
10624 # endif
10626 #endif
10629 * Check an option that can be a range of string values.
10631 * Return OK for correct value, FAIL otherwise.
10632 * Empty is always OK.
10634 static int
10635 check_opt_strings(val, values, list)
10636 char_u *val;
10637 char **values;
10638 int list; /* when TRUE: accept a list of values */
10640 return opt_strings_flags(val, values, NULL, list);
10644 * Handle an option that can be a range of string values.
10645 * Set a flag in "*flagp" for each string present.
10647 * Return OK for correct value, FAIL otherwise.
10648 * Empty is always OK.
10650 static int
10651 opt_strings_flags(val, values, flagp, list)
10652 char_u *val; /* new value */
10653 char **values; /* array of valid string values */
10654 unsigned *flagp;
10655 int list; /* when TRUE: accept a list of values */
10657 int i;
10658 int len;
10659 unsigned new_flags = 0;
10661 while (*val)
10663 for (i = 0; ; ++i)
10665 if (values[i] == NULL) /* val not found in values[] */
10666 return FAIL;
10668 len = (int)STRLEN(values[i]);
10669 if (STRNCMP(values[i], val, len) == 0
10670 && ((list && val[len] == ',') || val[len] == NUL))
10672 val += len + (val[len] == ',');
10673 new_flags |= (1 << i);
10674 break; /* check next item in val list */
10678 if (flagp != NULL)
10679 *flagp = new_flags;
10681 return OK;
10685 * Read the 'wildmode' option, fill wim_flags[].
10687 static int
10688 check_opt_wim()
10690 char_u new_wim_flags[4];
10691 char_u *p;
10692 int i;
10693 int idx = 0;
10695 for (i = 0; i < 4; ++i)
10696 new_wim_flags[i] = 0;
10698 for (p = p_wim; *p; ++p)
10700 for (i = 0; ASCII_ISALPHA(p[i]); ++i)
10702 if (p[i] != NUL && p[i] != ',' && p[i] != ':')
10703 return FAIL;
10704 if (i == 7 && STRNCMP(p, "longest", 7) == 0)
10705 new_wim_flags[idx] |= WIM_LONGEST;
10706 else if (i == 4 && STRNCMP(p, "full", 4) == 0)
10707 new_wim_flags[idx] |= WIM_FULL;
10708 else if (i == 4 && STRNCMP(p, "list", 4) == 0)
10709 new_wim_flags[idx] |= WIM_LIST;
10710 else
10711 return FAIL;
10712 p += i;
10713 if (*p == NUL)
10714 break;
10715 if (*p == ',')
10717 if (idx == 3)
10718 return FAIL;
10719 ++idx;
10723 /* fill remaining entries with last flag */
10724 while (idx < 3)
10726 new_wim_flags[idx + 1] = new_wim_flags[idx];
10727 ++idx;
10730 /* only when there are no errors, wim_flags[] is changed */
10731 for (i = 0; i < 4; ++i)
10732 wim_flags[i] = new_wim_flags[i];
10733 return OK;
10737 * Check if backspacing over something is allowed.
10740 can_bs(what)
10741 int what; /* BS_INDENT, BS_EOL or BS_START */
10743 switch (*p_bs)
10745 case '2': return TRUE;
10746 case '1': return (what != BS_START);
10747 case '0': return FALSE;
10749 return vim_strchr(p_bs, what) != NULL;
10753 * Save the current values of 'fileformat' and 'fileencoding', so that we know
10754 * the file must be considered changed when the value is different.
10756 void
10757 save_file_ff(buf)
10758 buf_T *buf;
10760 buf->b_start_ffc = *buf->b_p_ff;
10761 buf->b_start_eol = buf->b_p_eol;
10762 #ifdef FEAT_MBYTE
10763 buf->b_start_bomb = buf->b_p_bomb;
10765 /* Only use free/alloc when necessary, they take time. */
10766 if (buf->b_start_fenc == NULL
10767 || STRCMP(buf->b_start_fenc, buf->b_p_fenc) != 0)
10769 vim_free(buf->b_start_fenc);
10770 buf->b_start_fenc = vim_strsave(buf->b_p_fenc);
10772 #endif
10776 * Return TRUE if 'fileformat' and/or 'fileencoding' has a different value
10777 * from when editing started (save_file_ff() called).
10778 * Also when 'endofline' was changed and 'binary' is set, or when 'bomb' was
10779 * changed and 'binary' is not set.
10780 * Don't consider a new, empty buffer to be changed.
10783 file_ff_differs(buf)
10784 buf_T *buf;
10786 /* In a buffer that was never loaded the options are not valid. */
10787 if (buf->b_flags & BF_NEVERLOADED)
10788 return FALSE;
10789 if ((buf->b_flags & BF_NEW)
10790 && buf->b_ml.ml_line_count == 1
10791 && *ml_get_buf(buf, (linenr_T)1, FALSE) == NUL)
10792 return FALSE;
10793 if (buf->b_start_ffc != *buf->b_p_ff)
10794 return TRUE;
10795 if (buf->b_p_bin && buf->b_start_eol != buf->b_p_eol)
10796 return TRUE;
10797 #ifdef FEAT_MBYTE
10798 if (!buf->b_p_bin && buf->b_start_bomb != buf->b_p_bomb)
10799 return TRUE;
10800 if (buf->b_start_fenc == NULL)
10801 return (*buf->b_p_fenc != NUL);
10802 return (STRCMP(buf->b_start_fenc, buf->b_p_fenc) != 0);
10803 #else
10804 return FALSE;
10805 #endif
10809 * return OK if "p" is a valid fileformat name, FAIL otherwise.
10812 check_ff_value(p)
10813 char_u *p;
10815 return check_opt_strings(p, p_ff_values, FALSE);
10818 #ifdef FEAT_FULLSCREEN
10820 * Read the 'fuoptions' option, set fuoptions_flags and
10821 * fuoptions_bgcolor.
10823 static int
10824 check_fuoptions(p_fuoptions, flags, bgcolor)
10825 char_u *p_fuoptions; /* fuoptions string */
10826 unsigned *flags; /* fuoptions flags */
10827 int *bgcolor; /* background highlight group id */
10829 unsigned new_fuoptions_flags;
10830 int new_fuoptions_bgcolor;
10831 char_u *p;
10832 char_u hg_term; /* character terminating
10833 highlight group string in
10834 'background' option' */
10835 int i,j,k;
10837 new_fuoptions_flags = 0;
10838 new_fuoptions_bgcolor = 0xFF000000;
10840 for (p = p_fuoptions; *p; ++p)
10842 for (i = 0; ASCII_ISALPHA(p[i]); ++i)
10844 if (p[i] != NUL && p[i] != ',' && p[i] != ':')
10845 return FAIL;
10846 if (i == 10 && STRNCMP(p, "background", 10) == 0)
10848 if (p[i] != ':') return FAIL;
10849 i++;
10850 if (p[i] == NUL) return FAIL;
10851 if (p[i] == '#')
10853 /* explicit color (#aarrggbb) */
10854 i++;
10855 for (j = i; j < i+8 && vim_isxdigit(p[j]); ++j)
10857 if (j < i+8)
10858 return FAIL; /* less than 8 digits */
10859 if (p[j] != NUL && p[j] != ',')
10860 return FAIL;
10861 new_fuoptions_bgcolor = 0;
10862 for (k = 0; k < 8; k++)
10863 new_fuoptions_bgcolor = new_fuoptions_bgcolor * 16 +
10864 hex2nr(p[i+k]);
10865 i = j;
10866 /* mark bgcolor as an explicit argb color */
10867 new_fuoptions_flags &= ~FUOPT_BGCOLOR_HLGROUP;
10869 else
10871 /* highlight group name */
10872 for (j = i; ASCII_ISALPHA(p[j]); ++j)
10874 if (p[j] != NUL && p[j] != ',')
10875 return FAIL;
10876 hg_term = p[j];
10877 p[j] = NUL; /* temporarily terminate string */
10878 new_fuoptions_bgcolor = syn_name2id((char_u*)(p+i));
10879 p[j] = hg_term; /* restore string */
10880 if (! new_fuoptions_bgcolor)
10881 return FAIL;
10882 i = j;
10883 /* mark bgcolor as highlight group id */
10884 new_fuoptions_flags |= FUOPT_BGCOLOR_HLGROUP;
10887 else if (i == 7 && STRNCMP(p, "maxhorz", 7) == 0)
10888 new_fuoptions_flags |= FUOPT_MAXHORZ;
10889 else if (i == 7 && STRNCMP(p, "maxvert", 7) == 0)
10890 new_fuoptions_flags |= FUOPT_MAXVERT;
10891 else
10892 return FAIL;
10893 p += i;
10894 if (*p == NUL)
10895 break;
10896 if (*p == ':')
10897 return FAIL;
10900 *flags = new_fuoptions_flags;
10901 *bgcolor = new_fuoptions_bgcolor;
10903 /* Let the GUI know, in case the background color has changed. */
10904 gui_mch_fuopt_update();
10906 return OK;
10908 #endif