Merge branch 'vim'
[MacVim/KaoriYa.git] / src / option.c
blob88ccf85b94af92727d1dbccb1abf0753f9477cbb
1 /* vi:set ts=8 sts=4 sw=4:
3 * VIM - Vi IMproved by Bram Moolenaar
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
11 * Code to handle user-settable options. This is all pretty much table-
12 * driven. Checklist for adding a new option:
13 * - Put it in the options array below (copy an existing entry).
14 * - For a global option: Add a variable for it in option.h.
15 * - For a buffer or window local option:
16 * - Add a PV_XX entry to the enum below.
17 * - Add a variable to the window or buffer struct in structs.h.
18 * - For a window option, add some code to copy_winopt().
19 * - For a buffer option, add some code to buf_copy_options().
20 * - For a buffer string option, add code to check_buf_options().
21 * - If it's a numeric option, add any necessary bounds checks to do_set().
22 * - If it's a list of flags, add some code in do_set(), search for WW_ALL.
23 * - When adding an option with expansion (P_EXPAND), but with a different
24 * default for Vi and Vim (no P_VI_DEF), add some code at VIMEXP.
25 * - Add documentation! One line in doc/help.txt, full description in
26 * options.txt, and any other related places.
27 * - Add an entry in runtime/optwin.vim.
28 * When making changes:
29 * - Adjust the help for the option in doc/option.txt.
30 * - When an entry has the P_VIM flag, or is lacking the P_VI_DEF flag, add a
31 * comment at the help for the 'compatible' option.
34 #define IN_OPTION_C
35 #include "vim.h"
38 * The options that are local to a window or buffer have "indir" set to one of
39 * these values. Special values:
40 * PV_NONE: global option.
41 * PV_WIN is added: window-local option
42 * PV_BUF is added: buffer-local option
43 * PV_BOTH is added: global option which also has a local value.
45 #define PV_BOTH 0x1000
46 #define PV_WIN 0x2000
47 #define PV_BUF 0x4000
48 #define PV_MASK 0x0fff
49 #define OPT_WIN(x) (idopt_T)(PV_WIN + (int)(x))
50 #define OPT_BUF(x) (idopt_T)(PV_BUF + (int)(x))
51 #define OPT_BOTH(x) (idopt_T)(PV_BOTH + (int)(x))
54 * Definition of the PV_ values for buffer-local options.
55 * The BV_ values are defined in option.h.
57 #define PV_AI OPT_BUF(BV_AI)
58 #define PV_AR OPT_BOTH(OPT_BUF(BV_AR))
59 #ifdef FEAT_QUICKFIX
60 # define PV_BH OPT_BUF(BV_BH)
61 # define PV_BT OPT_BUF(BV_BT)
62 # define PV_EFM OPT_BOTH(OPT_BUF(BV_EFM))
63 # define PV_GP OPT_BOTH(OPT_BUF(BV_GP))
64 # define PV_MP OPT_BOTH(OPT_BUF(BV_MP))
65 #endif
66 #define PV_BIN OPT_BUF(BV_BIN)
67 #define PV_BL OPT_BUF(BV_BL)
68 #ifdef FEAT_MBYTE
69 # define PV_BOMB OPT_BUF(BV_BOMB)
70 #endif
71 #define PV_CI OPT_BUF(BV_CI)
72 #ifdef FEAT_CINDENT
73 # define PV_CIN OPT_BUF(BV_CIN)
74 # define PV_CINK OPT_BUF(BV_CINK)
75 # define PV_CINO OPT_BUF(BV_CINO)
76 #endif
77 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
78 # define PV_CINW OPT_BUF(BV_CINW)
79 #endif
80 #ifdef FEAT_FOLDING
81 # define PV_CMS OPT_BUF(BV_CMS)
82 #endif
83 #ifdef FEAT_COMMENTS
84 # define PV_COM OPT_BUF(BV_COM)
85 #endif
86 #ifdef FEAT_INS_EXPAND
87 # define PV_CPT OPT_BUF(BV_CPT)
88 # define PV_DICT OPT_BOTH(OPT_BUF(BV_DICT))
89 # define PV_TSR OPT_BOTH(OPT_BUF(BV_TSR))
90 #endif
91 #ifdef FEAT_COMPL_FUNC
92 # define PV_CFU OPT_BUF(BV_CFU)
93 #endif
94 #ifdef FEAT_FIND_ID
95 # define PV_DEF OPT_BOTH(OPT_BUF(BV_DEF))
96 # define PV_INC OPT_BOTH(OPT_BUF(BV_INC))
97 #endif
98 #define PV_EOL OPT_BUF(BV_EOL)
99 #define PV_EP OPT_BOTH(OPT_BUF(BV_EP))
100 #define PV_ET OPT_BUF(BV_ET)
101 #ifdef FEAT_MBYTE
102 # define PV_FENC OPT_BUF(BV_FENC)
103 #endif
104 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
105 # define PV_BEXPR OPT_BOTH(OPT_BUF(BV_BEXPR))
106 #endif
107 #ifdef FEAT_EVAL
108 # define PV_FEX OPT_BUF(BV_FEX)
109 #endif
110 #define PV_FF OPT_BUF(BV_FF)
111 #define PV_FLP OPT_BUF(BV_FLP)
112 #define PV_FO OPT_BUF(BV_FO)
113 #ifdef FEAT_AUTOCMD
114 # define PV_FT OPT_BUF(BV_FT)
115 #endif
116 #define PV_IMI OPT_BUF(BV_IMI)
117 #define PV_IMS OPT_BUF(BV_IMS)
118 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
119 # define PV_INDE OPT_BUF(BV_INDE)
120 # define PV_INDK OPT_BUF(BV_INDK)
121 #endif
122 #if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
123 # define PV_INEX OPT_BUF(BV_INEX)
124 #endif
125 #define PV_INF OPT_BUF(BV_INF)
126 #define PV_ISK OPT_BUF(BV_ISK)
127 #ifdef FEAT_CRYPT
128 # define PV_KEY OPT_BUF(BV_KEY)
129 #endif
130 #ifdef FEAT_KEYMAP
131 # define PV_KMAP OPT_BUF(BV_KMAP)
132 #endif
133 #define PV_KP OPT_BOTH(OPT_BUF(BV_KP))
134 #ifdef FEAT_LISP
135 # define PV_LISP OPT_BUF(BV_LISP)
136 #endif
137 #define PV_MA OPT_BUF(BV_MA)
138 #define PV_ML OPT_BUF(BV_ML)
139 #define PV_MOD OPT_BUF(BV_MOD)
140 #define PV_MPS OPT_BUF(BV_MPS)
141 #define PV_NF OPT_BUF(BV_NF)
142 #ifdef FEAT_OSFILETYPE
143 # define PV_OFT OPT_BUF(BV_OFT)
144 #endif
145 #ifdef FEAT_COMPL_FUNC
146 # define PV_OFU OPT_BUF(BV_OFU)
147 #endif
148 #define PV_PATH OPT_BOTH(OPT_BUF(BV_PATH))
149 #define PV_PI OPT_BUF(BV_PI)
150 #ifdef FEAT_TEXTOBJ
151 # define PV_QE OPT_BUF(BV_QE)
152 #endif
153 #define PV_RO OPT_BUF(BV_RO)
154 #ifdef FEAT_SMARTINDENT
155 # define PV_SI OPT_BUF(BV_SI)
156 #endif
157 #ifndef SHORT_FNAME
158 # define PV_SN OPT_BUF(BV_SN)
159 #endif
160 #ifdef FEAT_SYN_HL
161 # define PV_SMC OPT_BUF(BV_SMC)
162 # define PV_SYN OPT_BUF(BV_SYN)
163 #endif
164 #ifdef FEAT_SPELL
165 # define PV_SPC OPT_BUF(BV_SPC)
166 # define PV_SPF OPT_BUF(BV_SPF)
167 # define PV_SPL OPT_BUF(BV_SPL)
168 #endif
169 #define PV_STS OPT_BUF(BV_STS)
170 #ifdef FEAT_SEARCHPATH
171 # define PV_SUA OPT_BUF(BV_SUA)
172 #endif
173 #define PV_SW OPT_BUF(BV_SW)
174 #define PV_SWF OPT_BUF(BV_SWF)
175 #define PV_TAGS OPT_BOTH(OPT_BUF(BV_TAGS))
176 #define PV_TS OPT_BUF(BV_TS)
177 #define PV_TW OPT_BUF(BV_TW)
178 #define PV_TX OPT_BUF(BV_TX)
179 #define PV_WM OPT_BUF(BV_WM)
182 * Definition of the PV_ values for window-local options.
183 * The WV_ values are defined in option.h.
185 #define PV_LIST OPT_WIN(WV_LIST)
186 #ifdef FEAT_ARABIC
187 # define PV_ARAB OPT_WIN(WV_ARAB)
188 #endif
189 #ifdef FEAT_DIFF
190 # define PV_DIFF OPT_WIN(WV_DIFF)
191 #endif
192 #ifdef FEAT_FOLDING
193 # define PV_FDC OPT_WIN(WV_FDC)
194 # define PV_FEN OPT_WIN(WV_FEN)
195 # define PV_FDI OPT_WIN(WV_FDI)
196 # define PV_FDL OPT_WIN(WV_FDL)
197 # define PV_FDM OPT_WIN(WV_FDM)
198 # define PV_FML OPT_WIN(WV_FML)
199 # define PV_FDN OPT_WIN(WV_FDN)
200 # ifdef FEAT_EVAL
201 # define PV_FDE OPT_WIN(WV_FDE)
202 # define PV_FDT OPT_WIN(WV_FDT)
203 # endif
204 # define PV_FMR OPT_WIN(WV_FMR)
205 #endif
206 #ifdef FEAT_LINEBREAK
207 # define PV_LBR OPT_WIN(WV_LBR)
208 #endif
209 #define PV_NU OPT_WIN(WV_NU)
210 #ifdef FEAT_LINEBREAK
211 # define PV_NUW OPT_WIN(WV_NUW)
212 #endif
213 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
214 # define PV_PVW OPT_WIN(WV_PVW)
215 #endif
216 #ifdef FEAT_RIGHTLEFT
217 # define PV_RL OPT_WIN(WV_RL)
218 # define PV_RLC OPT_WIN(WV_RLC)
219 #endif
220 #ifdef FEAT_SCROLLBIND
221 # define PV_SCBIND OPT_WIN(WV_SCBIND)
222 #endif
223 #define PV_SCROLL OPT_WIN(WV_SCROLL)
224 #ifdef FEAT_SPELL
225 # define PV_SPELL OPT_WIN(WV_SPELL)
226 #endif
227 #ifdef FEAT_SYN_HL
228 # define PV_CUC OPT_WIN(WV_CUC)
229 # define PV_CUL OPT_WIN(WV_CUL)
230 #endif
231 #ifdef FEAT_STL_OPT
232 # define PV_STL OPT_BOTH(OPT_WIN(WV_STL))
233 #endif
234 #ifdef FEAT_WINDOWS
235 # define PV_WFH OPT_WIN(WV_WFH)
236 #endif
237 #ifdef FEAT_VERTSPLIT
238 # define PV_WFW OPT_WIN(WV_WFW)
239 #endif
240 #define PV_WRAP OPT_WIN(WV_WRAP)
243 /* WV_ and BV_ values get typecasted to this for the "indir" field */
244 typedef enum
246 PV_NONE = 0
247 } idopt_T;
250 * Options local to a window have a value local to a buffer and global to all
251 * buffers. Indicate this by setting "var" to VAR_WIN.
253 #define VAR_WIN ((char_u *)-1)
256 * These are the global values for options which are also local to a buffer.
257 * Only to be used in option.c!
259 static int p_ai;
260 static int p_bin;
261 #ifdef FEAT_MBYTE
262 static int p_bomb;
263 #endif
264 #if defined(FEAT_QUICKFIX)
265 static char_u *p_bh;
266 static char_u *p_bt;
267 #endif
268 static int p_bl;
269 static int p_ci;
270 #ifdef FEAT_CINDENT
271 static int p_cin;
272 static char_u *p_cink;
273 static char_u *p_cino;
274 #endif
275 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
276 static char_u *p_cinw;
277 #endif
278 #ifdef FEAT_COMMENTS
279 static char_u *p_com;
280 #endif
281 #ifdef FEAT_FOLDING
282 static char_u *p_cms;
283 #endif
284 #ifdef FEAT_INS_EXPAND
285 static char_u *p_cpt;
286 #endif
287 #ifdef FEAT_COMPL_FUNC
288 static char_u *p_cfu;
289 static char_u *p_ofu;
290 #endif
291 static int p_eol;
292 static int p_et;
293 #ifdef FEAT_MBYTE
294 static char_u *p_fenc;
295 #endif
296 static char_u *p_ff;
297 static char_u *p_fo;
298 static char_u *p_flp;
299 #ifdef FEAT_AUTOCMD
300 static char_u *p_ft;
301 #endif
302 static long p_iminsert;
303 static long p_imsearch;
304 #if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
305 static char_u *p_inex;
306 #endif
307 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
308 static char_u *p_inde;
309 static char_u *p_indk;
310 #endif
311 #if defined(FEAT_EVAL)
312 static char_u *p_fex;
313 #endif
314 static int p_inf;
315 static char_u *p_isk;
316 #ifdef FEAT_CRYPT
317 static char_u *p_key;
318 #endif
319 #ifdef FEAT_LISP
320 static int p_lisp;
321 #endif
322 static int p_ml;
323 static int p_ma;
324 static int p_mod;
325 static char_u *p_mps;
326 static char_u *p_nf;
327 #ifdef FEAT_OSFILETYPE
328 static char_u *p_oft;
329 #endif
330 static int p_pi;
331 #ifdef FEAT_TEXTOBJ
332 static char_u *p_qe;
333 #endif
334 static int p_ro;
335 #ifdef FEAT_SMARTINDENT
336 static int p_si;
337 #endif
338 #ifndef SHORT_FNAME
339 static int p_sn;
340 #endif
341 static long p_sts;
342 #if defined(FEAT_SEARCHPATH)
343 static char_u *p_sua;
344 #endif
345 static long p_sw;
346 static int p_swf;
347 #ifdef FEAT_SYN_HL
348 static long p_smc;
349 static char_u *p_syn;
350 #endif
351 #ifdef FEAT_SPELL
352 static char_u *p_spc;
353 static char_u *p_spf;
354 static char_u *p_spl;
355 #endif
356 static long p_ts;
357 static long p_tw;
358 static int p_tx;
359 static long p_wm;
360 #ifdef FEAT_KEYMAP
361 static char_u *p_keymap;
362 #endif
364 /* Saved values for when 'bin' is set. */
365 static int p_et_nobin;
366 static int p_ml_nobin;
367 static long p_tw_nobin;
368 static long p_wm_nobin;
370 /* Saved values for when 'paste' is set */
371 static long p_tw_nopaste;
372 static long p_wm_nopaste;
373 static long p_sts_nopaste;
374 static int p_ai_nopaste;
376 struct vimoption
378 char *fullname; /* full option name */
379 char *shortname; /* permissible abbreviation */
380 long_u flags; /* see below */
381 char_u *var; /* global option: pointer to variable;
382 * window-local option: VAR_WIN;
383 * buffer-local option: global value */
384 idopt_T indir; /* global option: PV_NONE;
385 * local option: indirect option index */
386 char_u *def_val[2]; /* default values for variable (vi and vim) */
387 #ifdef FEAT_EVAL
388 scid_T scriptID; /* script in which the option was last set */
389 #endif
392 #define VI_DEFAULT 0 /* def_val[VI_DEFAULT] is Vi default value */
393 #define VIM_DEFAULT 1 /* def_val[VIM_DEFAULT] is Vim default value */
396 * Flags
398 #define P_BOOL 0x01 /* the option is boolean */
399 #define P_NUM 0x02 /* the option is numeric */
400 #define P_STRING 0x04 /* the option is a string */
401 #define P_ALLOCED 0x08 /* the string option is in allocated memory,
402 must use vim_free() when assigning new
403 value. Not set if default is the same. */
404 #define P_EXPAND 0x10 /* environment expansion. NOTE: P_EXPAND can
405 never be used for local or hidden options! */
406 #define P_NODEFAULT 0x40 /* don't set to default value */
407 #define P_DEF_ALLOCED 0x80 /* default value is in allocated memory, must
408 use vim_free() when assigning new value */
409 #define P_WAS_SET 0x100 /* option has been set/reset */
410 #define P_NO_MKRC 0x200 /* don't include in :mkvimrc output */
411 #define P_VI_DEF 0x400 /* Use Vi default for Vim */
412 #define P_VIM 0x800 /* Vim option, reset when 'cp' set */
414 /* when option changed, what to display: */
415 #define P_RSTAT 0x1000 /* redraw status lines */
416 #define P_RWIN 0x2000 /* redraw current window */
417 #define P_RBUF 0x4000 /* redraw current buffer */
418 #define P_RALL 0x6000 /* redraw all windows */
419 #define P_RCLR 0x7000 /* clear and redraw all */
421 #define P_COMMA 0x8000 /* comma separated list */
422 #define P_NODUP 0x10000L/* don't allow duplicate strings */
423 #define P_FLAGLIST 0x20000L/* list of single-char flags */
425 #define P_SECURE 0x40000L/* cannot change in modeline or secure mode */
426 #define P_GETTEXT 0x80000L/* expand default value with _() */
427 #define P_NOGLOB 0x100000L/* do not use local value for global vimrc */
428 #define P_NFNAME 0x200000L/* only normal file name chars allowed */
429 #define P_INSECURE 0x400000L/* option was set from a modeline */
430 #define P_PRI_MKRC 0x800000L/* priority for :mkvimrc (setting option has
431 side effects) */
433 #define ISK_LATIN1 (char_u *)"@,48-57,_,192-255"
435 /* 'isprint' for latin1 is also used for MS-Windows cp1252, where 0x80 is used
436 * for the currency sign. */
437 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
438 # define ISP_LATIN1 (char_u *)"@,~-255"
439 #else
440 # define ISP_LATIN1 (char_u *)"@,161-255"
441 #endif
443 /* The 16 bit MS-DOS version is low on space, make the string as short as
444 * possible when compiling with few features. */
445 #if defined(FEAT_DIFF) || defined(FEAT_FOLDING) || defined(FEAT_SPELL) \
446 || defined(FEAT_VERTSPLIT) || defined(FEAT_CLIPBOARD) \
447 || defined(FEAT_INS_EXPAND) || defined(FEAT_SYN_HL)
448 # 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"
449 #else
450 # 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"
451 #endif
454 * options[] is initialized here.
455 * The order of the options MUST be alphabetic for ":set all" and findoption().
456 * All option names MUST start with a lowercase letter (for findoption()).
457 * Exception: "t_" options are at the end.
458 * The options with a NULL variable are 'hidden': a set command for them is
459 * ignored and they are not printed.
461 static struct vimoption
462 #ifdef FEAT_GUI_W16
463 _far
464 #endif
465 options[] =
467 {"aleph", "al", P_NUM|P_VI_DEF,
468 #ifdef FEAT_RIGHTLEFT
469 (char_u *)&p_aleph, PV_NONE,
470 #else
471 (char_u *)NULL, PV_NONE,
472 #endif
474 #if (defined(MSDOS) || defined(WIN3264) || defined(OS2)) && !defined(FEAT_GUI_W32)
475 (char_u *)128L,
476 #else
477 (char_u *)224L,
478 #endif
479 (char_u *)0L}},
480 {"antialias", "anti", P_BOOL|P_VI_DEF|P_VIM|P_RCLR,
481 #ifdef FEAT_ANTIALIAS
482 (char_u *)&p_antialias, PV_NONE,
483 #else
484 (char_u *)NULL, PV_NONE,
485 #endif
486 #if FEAT_GUI_MACVIM
487 {(char_u *)TRUE, (char_u *)0L}},
488 #else
489 {(char_u *)FALSE, (char_u *)0L}},
490 #endif
491 {"arabic", "arab", P_BOOL|P_VI_DEF|P_VIM,
492 #ifdef FEAT_ARABIC
493 (char_u *)VAR_WIN, PV_ARAB,
494 #else
495 (char_u *)NULL, PV_NONE,
496 #endif
497 {(char_u *)FALSE, (char_u *)0L}},
498 {"arabicshape", "arshape", P_BOOL|P_VI_DEF|P_VIM|P_RCLR,
499 #ifdef FEAT_ARABIC
500 (char_u *)&p_arshape, PV_NONE,
501 #else
502 (char_u *)NULL, PV_NONE,
503 #endif
504 {(char_u *)TRUE, (char_u *)0L}},
505 {"allowrevins", "ari", P_BOOL|P_VI_DEF|P_VIM,
506 #ifdef FEAT_RIGHTLEFT
507 (char_u *)&p_ari, PV_NONE,
508 #else
509 (char_u *)NULL, PV_NONE,
510 #endif
511 {(char_u *)FALSE, (char_u *)0L}},
512 {"altkeymap", "akm", P_BOOL|P_VI_DEF,
513 #ifdef FEAT_FKMAP
514 (char_u *)&p_altkeymap, PV_NONE,
515 #else
516 (char_u *)NULL, PV_NONE,
517 #endif
518 {(char_u *)FALSE, (char_u *)0L}},
519 {"ambiwidth", "ambw", P_STRING|P_VI_DEF|P_RCLR,
520 #if defined(FEAT_MBYTE)
521 (char_u *)&p_ambw, PV_NONE,
522 {(char_u *)"single", (char_u *)0L}
523 #else
524 (char_u *)NULL, PV_NONE,
525 {(char_u *)0L, (char_u *)0L}
526 #endif
528 #ifdef FEAT_AUTOCHDIR
529 {"autochdir", "acd", P_BOOL|P_VI_DEF,
530 (char_u *)&p_acd, PV_NONE,
531 {(char_u *)FALSE, (char_u *)0L}},
532 #endif
533 {"autoindent", "ai", P_BOOL|P_VI_DEF,
534 (char_u *)&p_ai, PV_AI,
535 {(char_u *)FALSE, (char_u *)0L}},
536 {"autoprint", "ap", P_BOOL|P_VI_DEF,
537 (char_u *)NULL, PV_NONE,
538 {(char_u *)FALSE, (char_u *)0L}},
539 {"autoread", "ar", P_BOOL|P_VI_DEF,
540 (char_u *)&p_ar, PV_AR,
541 {(char_u *)FALSE, (char_u *)0L}},
542 {"autowrite", "aw", P_BOOL|P_VI_DEF,
543 (char_u *)&p_aw, PV_NONE,
544 {(char_u *)FALSE, (char_u *)0L}},
545 {"autowriteall","awa", P_BOOL|P_VI_DEF,
546 (char_u *)&p_awa, PV_NONE,
547 {(char_u *)FALSE, (char_u *)0L}},
548 {"background", "bg", P_STRING|P_VI_DEF|P_RCLR,
549 (char_u *)&p_bg, PV_NONE,
551 #if (defined(MSDOS) || defined(OS2) || defined(WIN3264)) && !defined(FEAT_GUI)
552 (char_u *)"dark",
553 #else
554 (char_u *)"light",
555 #endif
556 (char_u *)0L}},
557 {"backspace", "bs", P_STRING|P_VI_DEF|P_VIM|P_COMMA|P_NODUP,
558 (char_u *)&p_bs, PV_NONE,
559 {(char_u *)"", (char_u *)0L}},
560 {"backup", "bk", P_BOOL|P_VI_DEF|P_VIM,
561 (char_u *)&p_bk, PV_NONE,
562 {(char_u *)FALSE, (char_u *)0L}},
563 {"backupcopy", "bkc", P_STRING|P_VIM|P_COMMA|P_NODUP,
564 (char_u *)&p_bkc, PV_NONE,
565 #ifdef UNIX
566 {(char_u *)"yes", (char_u *)"auto"}
567 #else
568 {(char_u *)"auto", (char_u *)"auto"}
569 #endif
571 {"backupdir", "bdir", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP|P_SECURE,
572 (char_u *)&p_bdir, PV_NONE,
573 {(char_u *)DFLT_BDIR, (char_u *)0L}},
574 {"backupext", "bex", P_STRING|P_VI_DEF|P_NFNAME,
575 (char_u *)&p_bex, PV_NONE,
577 #ifdef VMS
578 (char_u *)"_",
579 #else
580 (char_u *)"~",
581 #endif
582 (char_u *)0L}},
583 {"backupskip", "bsk", P_STRING|P_VI_DEF|P_COMMA,
584 #ifdef FEAT_WILDIGN
585 (char_u *)&p_bsk, PV_NONE,
586 {(char_u *)"", (char_u *)0L}
587 #else
588 (char_u *)NULL, PV_NONE,
589 {(char_u *)0L, (char_u *)0L}
590 #endif
592 #ifdef FEAT_BEVAL
593 {"balloondelay","bdlay",P_NUM|P_VI_DEF,
594 (char_u *)&p_bdlay, PV_NONE,
595 {(char_u *)600L, (char_u *)0L}},
596 {"ballooneval", "beval",P_BOOL|P_VI_DEF|P_NO_MKRC,
597 (char_u *)&p_beval, PV_NONE,
598 {(char_u *)FALSE, (char_u *)0L}},
599 # ifdef FEAT_EVAL
600 {"balloonexpr", "bexpr", P_STRING|P_ALLOCED|P_VI_DEF|P_VIM,
601 (char_u *)&p_bexpr, PV_BEXPR,
602 {(char_u *)"", (char_u *)0L}},
603 # endif
604 #endif
605 {"beautify", "bf", P_BOOL|P_VI_DEF,
606 (char_u *)NULL, PV_NONE,
607 {(char_u *)FALSE, (char_u *)0L}},
608 {"binary", "bin", P_BOOL|P_VI_DEF|P_RSTAT,
609 (char_u *)&p_bin, PV_BIN,
610 {(char_u *)FALSE, (char_u *)0L}},
611 {"bioskey", "biosk",P_BOOL|P_VI_DEF,
612 #ifdef MSDOS
613 (char_u *)&p_biosk, PV_NONE,
614 #else
615 (char_u *)NULL, PV_NONE,
616 #endif
617 {(char_u *)TRUE, (char_u *)0L}},
618 {"bomb", NULL, P_BOOL|P_NO_MKRC|P_VI_DEF|P_RSTAT,
619 #ifdef FEAT_MBYTE
620 (char_u *)&p_bomb, PV_BOMB,
621 #else
622 (char_u *)NULL, PV_NONE,
623 #endif
624 {(char_u *)FALSE, (char_u *)0L}},
625 {"breakat", "brk", P_STRING|P_VI_DEF|P_RALL|P_FLAGLIST,
626 #ifdef FEAT_LINEBREAK
627 (char_u *)&p_breakat, PV_NONE,
628 {(char_u *)" \t!@*-+;:,./?", (char_u *)0L}
629 #else
630 (char_u *)NULL, PV_NONE,
631 {(char_u *)0L, (char_u *)0L}
632 #endif
634 {"browsedir", "bsdir",P_STRING|P_VI_DEF,
635 #ifdef FEAT_BROWSE
636 (char_u *)&p_bsdir, PV_NONE,
637 {(char_u *)"last", (char_u *)0L}
638 #else
639 (char_u *)NULL, PV_NONE,
640 {(char_u *)0L, (char_u *)0L}
641 #endif
643 {"bufhidden", "bh", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB,
644 #if defined(FEAT_QUICKFIX)
645 (char_u *)&p_bh, PV_BH,
646 {(char_u *)"", (char_u *)0L}
647 #else
648 (char_u *)NULL, PV_NONE,
649 {(char_u *)0L, (char_u *)0L}
650 #endif
652 {"buflisted", "bl", P_BOOL|P_VI_DEF|P_NOGLOB,
653 (char_u *)&p_bl, PV_BL,
654 {(char_u *)1L, (char_u *)0L}
656 {"buftype", "bt", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB,
657 #if defined(FEAT_QUICKFIX)
658 (char_u *)&p_bt, PV_BT,
659 {(char_u *)"", (char_u *)0L}
660 #else
661 (char_u *)NULL, PV_NONE,
662 {(char_u *)0L, (char_u *)0L}
663 #endif
665 {"casemap", "cmp", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
666 #ifdef FEAT_MBYTE
667 (char_u *)&p_cmp, PV_NONE,
668 {(char_u *)"internal,keepascii", (char_u *)0L}
669 #else
670 (char_u *)NULL, PV_NONE,
671 {(char_u *)0L, (char_u *)0L}
672 #endif
674 {"cdpath", "cd", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
675 #ifdef FEAT_SEARCHPATH
676 (char_u *)&p_cdpath, PV_NONE,
677 {(char_u *)",,", (char_u *)0L}
678 #else
679 (char_u *)NULL, PV_NONE,
680 {(char_u *)0L, (char_u *)0L}
681 #endif
683 {"cedit", NULL, P_STRING,
684 #ifdef FEAT_CMDWIN
685 (char_u *)&p_cedit, PV_NONE,
686 {(char_u *)"", (char_u *)CTRL_F_STR}
687 #else
688 (char_u *)NULL, PV_NONE,
689 {(char_u *)0L, (char_u *)0L}
690 #endif
692 {"charconvert", "ccv", P_STRING|P_VI_DEF|P_SECURE,
693 #if defined(FEAT_MBYTE) && defined(FEAT_EVAL)
694 (char_u *)&p_ccv, PV_NONE,
695 {(char_u *)"", (char_u *)0L}
696 #else
697 (char_u *)NULL, PV_NONE,
698 {(char_u *)0L, (char_u *)0L}
699 #endif
701 {"cindent", "cin", P_BOOL|P_VI_DEF|P_VIM,
702 #ifdef FEAT_CINDENT
703 (char_u *)&p_cin, PV_CIN,
704 #else
705 (char_u *)NULL, PV_NONE,
706 #endif
707 {(char_u *)FALSE, (char_u *)0L}},
708 {"cinkeys", "cink", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
709 #ifdef FEAT_CINDENT
710 (char_u *)&p_cink, PV_CINK,
711 {(char_u *)"0{,0},0),:,0#,!^F,o,O,e", (char_u *)0L}
712 #else
713 (char_u *)NULL, PV_NONE,
714 {(char_u *)0L, (char_u *)0L}
715 #endif
717 {"cinoptions", "cino", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
718 #ifdef FEAT_CINDENT
719 (char_u *)&p_cino, PV_CINO,
720 #else
721 (char_u *)NULL, PV_NONE,
722 #endif
723 {(char_u *)"", (char_u *)0L}},
724 {"cinwords", "cinw", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
725 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
726 (char_u *)&p_cinw, PV_CINW,
727 {(char_u *)"if,else,while,do,for,switch",
728 (char_u *)0L}
729 #else
730 (char_u *)NULL, PV_NONE,
731 {(char_u *)0L, (char_u *)0L}
732 #endif
734 {"clipboard", "cb", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
735 #ifdef FEAT_CLIPBOARD
736 (char_u *)&p_cb, PV_NONE,
737 # ifdef FEAT_XCLIPBOARD
738 {(char_u *)"autoselect,exclude:cons\\|linux",
739 (char_u *)0L}
740 # else
741 {(char_u *)"", (char_u *)0L}
742 # endif
743 #else
744 (char_u *)NULL, PV_NONE,
745 {(char_u *)"", (char_u *)0L}
746 #endif
748 {"cmdheight", "ch", P_NUM|P_VI_DEF|P_RALL,
749 (char_u *)&p_ch, PV_NONE,
750 {(char_u *)1L, (char_u *)0L}},
751 {"cmdwinheight", "cwh", P_NUM|P_VI_DEF,
752 #ifdef FEAT_CMDWIN
753 (char_u *)&p_cwh, PV_NONE,
754 #else
755 (char_u *)NULL, PV_NONE,
756 #endif
757 {(char_u *)7L, (char_u *)0L}},
758 {"columns", "co", P_NUM|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RCLR,
759 (char_u *)&Columns, PV_NONE,
760 {(char_u *)80L, (char_u *)0L}},
761 {"comments", "com", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
762 #ifdef FEAT_COMMENTS
763 (char_u *)&p_com, PV_COM,
764 {(char_u *)"s1:/*,mb:*,ex:*/,://,b:#,:%,:XCOMM,n:>,fb:-",
765 (char_u *)0L}
766 #else
767 (char_u *)NULL, PV_NONE,
768 {(char_u *)0L, (char_u *)0L}
769 #endif
771 {"commentstring", "cms", P_STRING|P_ALLOCED|P_VI_DEF,
772 #ifdef FEAT_FOLDING
773 (char_u *)&p_cms, PV_CMS,
774 {(char_u *)"/*%s*/", (char_u *)0L}
775 #else
776 (char_u *)NULL, PV_NONE,
777 {(char_u *)0L, (char_u *)0L}
778 #endif
780 /* P_PRI_MKRC isn't needed here, optval_default()
781 * always returns TRUE for 'compatible' */
782 {"compatible", "cp", P_BOOL|P_RALL,
783 (char_u *)&p_cp, PV_NONE,
784 {(char_u *)TRUE, (char_u *)FALSE}},
785 {"complete", "cpt", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
786 #ifdef FEAT_INS_EXPAND
787 (char_u *)&p_cpt, PV_CPT,
788 {(char_u *)".,w,b,u,t,i", (char_u *)0L}
789 #else
790 (char_u *)NULL, PV_NONE,
791 {(char_u *)0L, (char_u *)0L}
792 #endif
794 {"completefunc", "cfu", P_STRING|P_ALLOCED|P_VI_DEF|P_SECURE,
795 #ifdef FEAT_COMPL_FUNC
796 (char_u *)&p_cfu, PV_CFU,
797 {(char_u *)"", (char_u *)0L}
798 #else
799 (char_u *)NULL, PV_NONE,
800 {(char_u *)0L, (char_u *)0L}
801 #endif
803 {"completeopt", "cot", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
804 #ifdef FEAT_INS_EXPAND
805 (char_u *)&p_cot, PV_NONE,
806 {(char_u *)"menu,preview", (char_u *)0L}
807 #else
808 (char_u *)NULL, PV_NONE,
809 {(char_u *)0L, (char_u *)0L}
810 #endif
812 {"confirm", "cf", P_BOOL|P_VI_DEF,
813 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
814 (char_u *)&p_confirm, PV_NONE,
815 #else
816 (char_u *)NULL, PV_NONE,
817 #endif
818 {(char_u *)FALSE, (char_u *)0L}},
819 {"conskey", "consk",P_BOOL|P_VI_DEF,
820 #ifdef MSDOS
821 (char_u *)&p_consk, PV_NONE,
822 #else
823 (char_u *)NULL, PV_NONE,
824 #endif
825 {(char_u *)FALSE, (char_u *)0L}},
826 {"copyindent", "ci", P_BOOL|P_VI_DEF|P_VIM,
827 (char_u *)&p_ci, PV_CI,
828 {(char_u *)FALSE, (char_u *)0L}},
829 {"cpoptions", "cpo", P_STRING|P_VIM|P_RALL|P_FLAGLIST,
830 (char_u *)&p_cpo, PV_NONE,
831 {(char_u *)CPO_VI, (char_u *)CPO_VIM}},
832 {"cscopepathcomp", "cspc", P_NUM|P_VI_DEF|P_VIM,
833 #ifdef FEAT_CSCOPE
834 (char_u *)&p_cspc, PV_NONE,
835 #else
836 (char_u *)NULL, PV_NONE,
837 #endif
838 {(char_u *)0L, (char_u *)0L}},
839 {"cscopeprg", "csprg", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
840 #ifdef FEAT_CSCOPE
841 (char_u *)&p_csprg, PV_NONE,
842 {(char_u *)"cscope", (char_u *)0L}
843 #else
844 (char_u *)NULL, PV_NONE,
845 {(char_u *)0L, (char_u *)0L}
846 #endif
848 {"cscopequickfix", "csqf", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
849 #if defined(FEAT_CSCOPE) && defined(FEAT_QUICKFIX)
850 (char_u *)&p_csqf, PV_NONE,
851 {(char_u *)"", (char_u *)0L}
852 #else
853 (char_u *)NULL, PV_NONE,
854 {(char_u *)0L, (char_u *)0L}
855 #endif
857 {"cscopetag", "cst", P_BOOL|P_VI_DEF|P_VIM,
858 #ifdef FEAT_CSCOPE
859 (char_u *)&p_cst, PV_NONE,
860 #else
861 (char_u *)NULL, PV_NONE,
862 #endif
863 {(char_u *)0L, (char_u *)0L}},
864 {"cscopetagorder", "csto", P_NUM|P_VI_DEF|P_VIM,
865 #ifdef FEAT_CSCOPE
866 (char_u *)&p_csto, PV_NONE,
867 #else
868 (char_u *)NULL, PV_NONE,
869 #endif
870 {(char_u *)0L, (char_u *)0L}},
871 {"cscopeverbose", "csverb", P_BOOL|P_VI_DEF|P_VIM,
872 #ifdef FEAT_CSCOPE
873 (char_u *)&p_csverbose, PV_NONE,
874 #else
875 (char_u *)NULL, PV_NONE,
876 #endif
877 {(char_u *)0L, (char_u *)0L}},
878 {"cursorcolumn", "cuc", P_BOOL|P_VI_DEF|P_RWIN,
879 #ifdef FEAT_SYN_HL
880 (char_u *)VAR_WIN, PV_CUC,
881 #else
882 (char_u *)NULL, PV_NONE,
883 #endif
884 {(char_u *)FALSE, (char_u *)0L}},
885 {"cursorline", "cul", P_BOOL|P_VI_DEF|P_RWIN,
886 #ifdef FEAT_SYN_HL
887 (char_u *)VAR_WIN, PV_CUL,
888 #else
889 (char_u *)NULL, PV_NONE,
890 #endif
891 {(char_u *)FALSE, (char_u *)0L}},
892 {"debug", NULL, P_STRING|P_VI_DEF,
893 (char_u *)&p_debug, PV_NONE,
894 {(char_u *)"", (char_u *)0L}},
895 {"define", "def", P_STRING|P_ALLOCED|P_VI_DEF,
896 #ifdef FEAT_FIND_ID
897 (char_u *)&p_def, PV_DEF,
898 {(char_u *)"^\\s*#\\s*define", (char_u *)0L}
899 #else
900 (char_u *)NULL, PV_NONE,
901 {(char_u *)NULL, (char_u *)0L}
902 #endif
904 {"delcombine", "deco", P_BOOL|P_VI_DEF|P_VIM,
905 #ifdef FEAT_MBYTE
906 (char_u *)&p_deco, PV_NONE,
907 #else
908 (char_u *)NULL, PV_NONE,
909 #endif
910 {(char_u *)FALSE, (char_u *)0L}},
911 {"dictionary", "dict", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
912 #ifdef FEAT_INS_EXPAND
913 (char_u *)&p_dict, PV_DICT,
914 #else
915 (char_u *)NULL, PV_NONE,
916 #endif
917 {(char_u *)"", (char_u *)0L}},
918 {"diff", NULL, P_BOOL|P_VI_DEF|P_RWIN|P_NOGLOB,
919 #ifdef FEAT_DIFF
920 (char_u *)VAR_WIN, PV_DIFF,
921 #else
922 (char_u *)NULL, PV_NONE,
923 #endif
924 {(char_u *)FALSE, (char_u *)0L}},
925 {"diffexpr", "dex", P_STRING|P_VI_DEF|P_SECURE,
926 #if defined(FEAT_DIFF) && defined(FEAT_EVAL)
927 (char_u *)&p_dex, PV_NONE,
928 {(char_u *)"", (char_u *)0L}
929 #else
930 (char_u *)NULL, PV_NONE,
931 {(char_u *)0L, (char_u *)0L}
932 #endif
934 {"diffopt", "dip", P_STRING|P_ALLOCED|P_VI_DEF|P_RWIN|P_COMMA|P_NODUP,
935 #ifdef FEAT_DIFF
936 (char_u *)&p_dip, PV_NONE,
937 {(char_u *)"filler", (char_u *)NULL}
938 #else
939 (char_u *)NULL, PV_NONE,
940 {(char_u *)"", (char_u *)NULL}
941 #endif
943 {"digraph", "dg", P_BOOL|P_VI_DEF|P_VIM,
944 #ifdef FEAT_DIGRAPHS
945 (char_u *)&p_dg, PV_NONE,
946 #else
947 (char_u *)NULL, PV_NONE,
948 #endif
949 {(char_u *)FALSE, (char_u *)0L}},
950 {"directory", "dir", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP|P_SECURE,
951 (char_u *)&p_dir, PV_NONE,
952 {(char_u *)DFLT_DIR, (char_u *)0L}},
953 {"display", "dy", P_STRING|P_VI_DEF|P_COMMA|P_RALL|P_NODUP,
954 (char_u *)&p_dy, PV_NONE,
955 {(char_u *)"", (char_u *)0L}},
956 {"eadirection", "ead", P_STRING|P_VI_DEF,
957 #ifdef FEAT_VERTSPLIT
958 (char_u *)&p_ead, PV_NONE,
959 {(char_u *)"both", (char_u *)0L}
960 #else
961 (char_u *)NULL, PV_NONE,
962 {(char_u *)NULL, (char_u *)0L}
963 #endif
965 {"edcompatible","ed", P_BOOL|P_VI_DEF,
966 (char_u *)&p_ed, PV_NONE,
967 {(char_u *)FALSE, (char_u *)0L}},
968 {"encoding", "enc", P_STRING|P_VI_DEF|P_RCLR,
969 #ifdef FEAT_MBYTE
970 (char_u *)&p_enc, PV_NONE,
971 {(char_u *)ENC_DFLT, (char_u *)0L}
972 #else
973 (char_u *)NULL, PV_NONE,
974 {(char_u *)0L, (char_u *)0L}
975 #endif
977 {"endofline", "eol", P_BOOL|P_NO_MKRC|P_VI_DEF|P_RSTAT,
978 (char_u *)&p_eol, PV_EOL,
979 {(char_u *)TRUE, (char_u *)0L}},
980 {"equalalways", "ea", P_BOOL|P_VI_DEF|P_RALL,
981 (char_u *)&p_ea, PV_NONE,
982 {(char_u *)TRUE, (char_u *)0L}},
983 {"equalprg", "ep", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
984 (char_u *)&p_ep, PV_EP,
985 {(char_u *)"", (char_u *)0L}},
986 {"errorbells", "eb", P_BOOL|P_VI_DEF,
987 (char_u *)&p_eb, PV_NONE,
988 {(char_u *)FALSE, (char_u *)0L}},
989 {"errorfile", "ef", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
990 #ifdef FEAT_QUICKFIX
991 (char_u *)&p_ef, PV_NONE,
992 {(char_u *)DFLT_ERRORFILE, (char_u *)0L}
993 #else
994 (char_u *)NULL, PV_NONE,
995 {(char_u *)NULL, (char_u *)0L}
996 #endif
998 {"errorformat", "efm", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
999 #ifdef FEAT_QUICKFIX
1000 (char_u *)&p_efm, PV_EFM,
1001 {(char_u *)DFLT_EFM, (char_u *)0L},
1002 #else
1003 (char_u *)NULL, PV_NONE,
1004 {(char_u *)NULL, (char_u *)0L}
1005 #endif
1007 {"esckeys", "ek", P_BOOL|P_VIM,
1008 (char_u *)&p_ek, PV_NONE,
1009 {(char_u *)FALSE, (char_u *)TRUE}},
1010 {"eventignore", "ei", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1011 #ifdef FEAT_AUTOCMD
1012 (char_u *)&p_ei, PV_NONE,
1013 #else
1014 (char_u *)NULL, PV_NONE,
1015 #endif
1016 {(char_u *)"", (char_u *)0L}},
1017 {"expandtab", "et", P_BOOL|P_VI_DEF|P_VIM,
1018 (char_u *)&p_et, PV_ET,
1019 {(char_u *)FALSE, (char_u *)0L}},
1020 {"exrc", "ex", P_BOOL|P_VI_DEF|P_SECURE,
1021 (char_u *)&p_exrc, PV_NONE,
1022 {(char_u *)FALSE, (char_u *)0L}},
1023 {"fileencoding","fenc", P_STRING|P_ALLOCED|P_VI_DEF|P_RSTAT|P_RBUF|P_NO_MKRC,
1024 #ifdef FEAT_MBYTE
1025 (char_u *)&p_fenc, PV_FENC,
1026 {(char_u *)"", (char_u *)0L}
1027 #else
1028 (char_u *)NULL, PV_NONE,
1029 {(char_u *)0L, (char_u *)0L}
1030 #endif
1032 {"fileencodings","fencs", P_STRING|P_VI_DEF|P_COMMA,
1033 #ifdef FEAT_MBYTE
1034 (char_u *)&p_fencs, PV_NONE,
1035 {(char_u *)"ucs-bom", (char_u *)0L}
1036 #else
1037 (char_u *)NULL, PV_NONE,
1038 {(char_u *)0L, (char_u *)0L}
1039 #endif
1041 {"fileformat", "ff", P_STRING|P_ALLOCED|P_VI_DEF|P_RSTAT|P_NO_MKRC,
1042 (char_u *)&p_ff, PV_FF,
1043 {(char_u *)DFLT_FF, (char_u *)0L}},
1044 {"fileformats", "ffs", P_STRING|P_VIM|P_COMMA|P_NODUP,
1045 (char_u *)&p_ffs, PV_NONE,
1046 {(char_u *)DFLT_FFS_VI, (char_u *)DFLT_FFS_VIM}},
1047 {"filetype", "ft", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB|P_NFNAME,
1048 #ifdef FEAT_AUTOCMD
1049 (char_u *)&p_ft, PV_FT,
1050 {(char_u *)"", (char_u *)0L}
1051 #else
1052 (char_u *)NULL, PV_NONE,
1053 {(char_u *)0L, (char_u *)0L}
1054 #endif
1056 {"fillchars", "fcs", P_STRING|P_VI_DEF|P_RALL|P_COMMA|P_NODUP,
1057 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
1058 (char_u *)&p_fcs, PV_NONE,
1059 {(char_u *)"vert:|,fold:-", (char_u *)0L}
1060 #else
1061 (char_u *)NULL, PV_NONE,
1062 {(char_u *)"", (char_u *)0L}
1063 #endif
1065 {"fkmap", "fk", P_BOOL|P_VI_DEF,
1066 #ifdef FEAT_FKMAP
1067 (char_u *)&p_fkmap, PV_NONE,
1068 #else
1069 (char_u *)NULL, PV_NONE,
1070 #endif
1071 {(char_u *)FALSE, (char_u *)0L}},
1072 {"flash", "fl", P_BOOL|P_VI_DEF,
1073 (char_u *)NULL, PV_NONE,
1074 {(char_u *)FALSE, (char_u *)0L}},
1075 #ifdef FEAT_FOLDING
1076 {"foldclose", "fcl", P_STRING|P_VI_DEF|P_COMMA|P_NODUP|P_RWIN,
1077 (char_u *)&p_fcl, PV_NONE,
1078 {(char_u *)"", (char_u *)0L}},
1079 {"foldcolumn", "fdc", P_NUM|P_VI_DEF|P_RWIN,
1080 (char_u *)VAR_WIN, PV_FDC,
1081 {(char_u *)FALSE, (char_u *)0L}},
1082 {"foldenable", "fen", P_BOOL|P_VI_DEF|P_RWIN,
1083 (char_u *)VAR_WIN, PV_FEN,
1084 {(char_u *)TRUE, (char_u *)0L}},
1085 {"foldexpr", "fde", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1086 # ifdef FEAT_EVAL
1087 (char_u *)VAR_WIN, PV_FDE,
1088 {(char_u *)"0", (char_u *)NULL}
1089 # else
1090 (char_u *)NULL, PV_NONE,
1091 {(char_u *)NULL, (char_u *)0L}
1092 # endif
1094 {"foldignore", "fdi", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1095 (char_u *)VAR_WIN, PV_FDI,
1096 {(char_u *)"#", (char_u *)NULL}},
1097 {"foldlevel", "fdl", P_NUM|P_VI_DEF|P_RWIN,
1098 (char_u *)VAR_WIN, PV_FDL,
1099 {(char_u *)0L, (char_u *)0L}},
1100 {"foldlevelstart","fdls", P_NUM|P_VI_DEF,
1101 (char_u *)&p_fdls, PV_NONE,
1102 {(char_u *)-1L, (char_u *)0L}},
1103 {"foldmarker", "fmr", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|
1104 P_RWIN|P_COMMA|P_NODUP,
1105 (char_u *)VAR_WIN, PV_FMR,
1106 {(char_u *)"{{{,}}}", (char_u *)NULL}},
1107 {"foldmethod", "fdm", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1108 (char_u *)VAR_WIN, PV_FDM,
1109 {(char_u *)"manual", (char_u *)NULL}},
1110 {"foldminlines","fml", P_NUM|P_VI_DEF|P_RWIN,
1111 (char_u *)VAR_WIN, PV_FML,
1112 {(char_u *)1L, (char_u *)0L}},
1113 {"foldnestmax", "fdn", P_NUM|P_VI_DEF|P_RWIN,
1114 (char_u *)VAR_WIN, PV_FDN,
1115 {(char_u *)20L, (char_u *)0L}},
1116 {"foldopen", "fdo", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1117 (char_u *)&p_fdo, PV_NONE,
1118 {(char_u *)"block,hor,mark,percent,quickfix,search,tag,undo",
1119 (char_u *)0L}},
1120 {"foldtext", "fdt", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1121 # ifdef FEAT_EVAL
1122 (char_u *)VAR_WIN, PV_FDT,
1123 {(char_u *)"foldtext()", (char_u *)NULL}
1124 # else
1125 (char_u *)NULL, PV_NONE,
1126 {(char_u *)NULL, (char_u *)0L}
1127 # endif
1129 #endif
1130 {"formatexpr", "fex", P_STRING|P_ALLOCED|P_VI_DEF|P_VIM,
1131 #ifdef FEAT_EVAL
1132 (char_u *)&p_fex, PV_FEX,
1133 {(char_u *)"", (char_u *)0L}
1134 #else
1135 (char_u *)NULL, PV_NONE,
1136 {(char_u *)0L, (char_u *)0L}
1137 #endif
1139 {"formatoptions","fo", P_STRING|P_ALLOCED|P_VIM|P_FLAGLIST,
1140 (char_u *)&p_fo, PV_FO,
1141 {(char_u *)DFLT_FO_VI, (char_u *)DFLT_FO_VIM}},
1142 {"formatlistpat","flp", P_STRING|P_ALLOCED|P_VI_DEF,
1143 (char_u *)&p_flp, PV_FLP,
1144 {(char_u *)"^\\s*\\d\\+[\\]:.)}\\t ]\\s*", (char_u *)0L}},
1145 {"formatprg", "fp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1146 (char_u *)&p_fp, PV_NONE,
1147 {(char_u *)"", (char_u *)0L}},
1148 {"fsync", "fs", P_BOOL|P_SECURE|P_VI_DEF,
1149 #ifdef HAVE_FSYNC
1150 (char_u *)&p_fs, PV_NONE,
1151 {(char_u *)TRUE, (char_u *)0L}
1152 #else
1153 (char_u *)NULL, PV_NONE,
1154 {(char_u *)FALSE, (char_u *)0L}
1155 #endif
1157 {"fullscreen", "fu", P_BOOL,
1158 #ifdef FEAT_FULLSCREEN
1159 (char_u *)&p_fullscreen, PV_NONE,
1160 #else
1161 (char_u *)NULL, PV_NONE,
1162 #endif
1163 {(char_u *)FALSE, (char_u *)0L}},
1164 {"fuoptions", "fuopt", P_STRING|P_COMMA|P_NODUP|P_VI_DEF,
1165 #ifdef FEAT_FULLSCREEN
1166 (char_u *)&p_fuoptions, PV_NONE,
1167 {(char_u *)"maxvert", (char_u *)0L}},
1168 #else
1169 (char_u *)NULL, PV_NONE,
1170 {(char_u *)NULL, (char_u *)0L}},
1171 #endif
1172 {"gdefault", "gd", P_BOOL|P_VI_DEF|P_VIM,
1173 (char_u *)&p_gd, PV_NONE,
1174 {(char_u *)FALSE, (char_u *)0L}},
1175 {"graphic", "gr", P_BOOL|P_VI_DEF,
1176 (char_u *)NULL, PV_NONE,
1177 {(char_u *)FALSE, (char_u *)0L}},
1178 {"grepformat", "gfm", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1179 #ifdef FEAT_QUICKFIX
1180 (char_u *)&p_gefm, PV_NONE,
1181 {(char_u *)DFLT_GREPFORMAT, (char_u *)0L},
1182 #else
1183 (char_u *)NULL, PV_NONE,
1184 {(char_u *)NULL, (char_u *)0L}
1185 #endif
1187 {"grepprg", "gp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1188 #ifdef FEAT_QUICKFIX
1189 (char_u *)&p_gp, PV_GP,
1191 # ifdef WIN3264
1192 /* may be changed to "grep -n" in os_win32.c */
1193 (char_u *)"findstr /n",
1194 # else
1195 # ifdef UNIX
1196 /* Add an extra file name so that grep will always
1197 * insert a file name in the match line. */
1198 (char_u *)"grep -n $* /dev/null",
1199 # else
1200 # ifdef VMS
1201 (char_u *)"SEARCH/NUMBERS ",
1202 # else
1203 (char_u *)"grep -n ",
1204 #endif
1205 #endif
1206 # endif
1207 (char_u *)0L},
1208 #else
1209 (char_u *)NULL, PV_NONE,
1210 {(char_u *)NULL, (char_u *)0L}
1211 #endif
1213 {"guicursor", "gcr", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1214 #ifdef CURSOR_SHAPE
1215 (char_u *)&p_guicursor, PV_NONE,
1217 # ifdef FEAT_GUI
1218 (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",
1219 # else /* MSDOS or Win32 console */
1220 (char_u *)"n-v-c:block,o:hor50,i-ci:hor15,r-cr:hor30,sm:block",
1221 # endif
1222 (char_u *)0L}
1223 #else
1224 (char_u *)NULL, PV_NONE,
1225 {(char_u *)NULL, (char_u *)0L}
1226 #endif
1228 {"guifont", "gfn", P_STRING|P_VI_DEF|P_RCLR|P_COMMA|P_NODUP,
1229 #ifdef FEAT_GUI
1230 (char_u *)&p_guifont, PV_NONE,
1231 {(char_u *)"", (char_u *)0L}
1232 #else
1233 (char_u *)NULL, PV_NONE,
1234 {(char_u *)NULL, (char_u *)0L}
1235 #endif
1237 {"guifontset", "gfs", P_STRING|P_VI_DEF|P_RCLR|P_COMMA,
1238 #if defined(FEAT_GUI) && defined(FEAT_XFONTSET)
1239 (char_u *)&p_guifontset, PV_NONE,
1240 {(char_u *)"", (char_u *)0L}
1241 #else
1242 (char_u *)NULL, PV_NONE,
1243 {(char_u *)NULL, (char_u *)0L}
1244 #endif
1246 {"guifontwide", "gfw", P_STRING|P_VI_DEF|P_RCLR|P_COMMA|P_NODUP,
1247 #if defined(FEAT_GUI) && defined(FEAT_MBYTE)
1248 (char_u *)&p_guifontwide, PV_NONE,
1249 {(char_u *)"", (char_u *)0L}
1250 #else
1251 (char_u *)NULL, PV_NONE,
1252 {(char_u *)NULL, (char_u *)0L}
1253 #endif
1255 {"guiheadroom", "ghr", P_NUM|P_VI_DEF,
1256 #if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11)
1257 (char_u *)&p_ghr, PV_NONE,
1258 #else
1259 (char_u *)NULL, PV_NONE,
1260 #endif
1261 {(char_u *)50L, (char_u *)0L}},
1262 {"guioptions", "go", P_STRING|P_VI_DEF|P_RALL|P_FLAGLIST,
1263 #if defined(FEAT_GUI)
1264 (char_u *)&p_go, PV_NONE,
1265 # if defined(UNIX) && !defined(MACOS)
1266 {(char_u *)"aegimrLtT", (char_u *)0L}
1267 # else
1268 {(char_u *)"egmrLtT", (char_u *)0L}
1269 # endif
1270 #else
1271 (char_u *)NULL, PV_NONE,
1272 {(char_u *)NULL, (char_u *)0L}
1273 #endif
1275 {"guipty", NULL, P_BOOL|P_VI_DEF,
1276 #if defined(FEAT_GUI)
1277 (char_u *)&p_guipty, PV_NONE,
1278 #else
1279 (char_u *)NULL, PV_NONE,
1280 #endif
1281 {(char_u *)TRUE, (char_u *)0L}},
1282 {"guitablabel", "gtl", P_STRING|P_VI_DEF|P_RWIN,
1283 #if defined(FEAT_GUI_TABLINE)
1284 (char_u *)&p_gtl, PV_NONE,
1285 {(char_u *)"", (char_u *)0L}
1286 #else
1287 (char_u *)NULL, PV_NONE,
1288 {(char_u *)NULL, (char_u *)0L}
1289 #endif
1291 {"guitabtooltip", "gtt", P_STRING|P_VI_DEF|P_RWIN,
1292 #if defined(FEAT_GUI_TABLINE)
1293 (char_u *)&p_gtt, PV_NONE,
1294 {(char_u *)"", (char_u *)0L}
1295 #else
1296 (char_u *)NULL, PV_NONE,
1297 {(char_u *)NULL, (char_u *)0L}
1298 #endif
1300 {"hardtabs", "ht", P_NUM|P_VI_DEF,
1301 (char_u *)NULL, PV_NONE,
1302 {(char_u *)0L, (char_u *)0L}},
1303 {"helpfile", "hf", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1304 (char_u *)&p_hf, PV_NONE,
1305 {(char_u *)DFLT_HELPFILE, (char_u *)0L}},
1306 {"helpheight", "hh", P_NUM|P_VI_DEF,
1307 #ifdef FEAT_WINDOWS
1308 (char_u *)&p_hh, PV_NONE,
1309 #else
1310 (char_u *)NULL, PV_NONE,
1311 #endif
1312 {(char_u *)20L, (char_u *)0L}},
1313 {"helplang", "hlg", P_STRING|P_VI_DEF|P_COMMA,
1314 #ifdef FEAT_MULTI_LANG
1315 (char_u *)&p_hlg, PV_NONE,
1316 {(char_u *)"", (char_u *)0L}
1317 #else
1318 (char_u *)NULL, PV_NONE,
1319 {(char_u *)0L, (char_u *)0L}
1320 #endif
1322 {"hidden", "hid", P_BOOL|P_VI_DEF,
1323 (char_u *)&p_hid, PV_NONE,
1324 {(char_u *)FALSE, (char_u *)0L}},
1325 {"highlight", "hl", P_STRING|P_VI_DEF|P_RCLR|P_COMMA|P_NODUP,
1326 (char_u *)&p_hl, PV_NONE,
1327 {(char_u *)HIGHLIGHT_INIT, (char_u *)0L}},
1328 {"history", "hi", P_NUM|P_VIM,
1329 (char_u *)&p_hi, PV_NONE,
1330 {(char_u *)0L, (char_u *)20L}},
1331 {"hkmap", "hk", P_BOOL|P_VI_DEF|P_VIM,
1332 #ifdef FEAT_RIGHTLEFT
1333 (char_u *)&p_hkmap, PV_NONE,
1334 #else
1335 (char_u *)NULL, PV_NONE,
1336 #endif
1337 {(char_u *)FALSE, (char_u *)0L}},
1338 {"hkmapp", "hkp", P_BOOL|P_VI_DEF|P_VIM,
1339 #ifdef FEAT_RIGHTLEFT
1340 (char_u *)&p_hkmapp, PV_NONE,
1341 #else
1342 (char_u *)NULL, PV_NONE,
1343 #endif
1344 {(char_u *)FALSE, (char_u *)0L}},
1345 {"hlsearch", "hls", P_BOOL|P_VI_DEF|P_VIM|P_RALL,
1346 (char_u *)&p_hls, PV_NONE,
1347 {(char_u *)FALSE, (char_u *)0L}},
1348 {"icon", NULL, P_BOOL|P_VI_DEF,
1349 #ifdef FEAT_TITLE
1350 (char_u *)&p_icon, PV_NONE,
1351 #else
1352 (char_u *)NULL, PV_NONE,
1353 #endif
1354 {(char_u *)FALSE, (char_u *)0L}},
1355 {"iconstring", NULL, P_STRING|P_VI_DEF,
1356 #ifdef FEAT_TITLE
1357 (char_u *)&p_iconstring, PV_NONE,
1358 #else
1359 (char_u *)NULL, PV_NONE,
1360 #endif
1361 {(char_u *)"", (char_u *)0L}},
1362 {"ignorecase", "ic", P_BOOL|P_VI_DEF,
1363 (char_u *)&p_ic, PV_NONE,
1364 {(char_u *)FALSE, (char_u *)0L}},
1365 {"imactivatekey","imak",P_STRING|P_VI_DEF,
1366 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
1367 (char_u *)&p_imak, PV_NONE,
1368 #else
1369 (char_u *)NULL, PV_NONE,
1370 #endif
1371 {(char_u *)"", (char_u *)0L}},
1372 {"imcmdline", "imc", P_BOOL|P_VI_DEF,
1373 #ifdef USE_IM_CONTROL
1374 (char_u *)&p_imcmdline, PV_NONE,
1375 #else
1376 (char_u *)NULL, PV_NONE,
1377 #endif
1378 {(char_u *)FALSE, (char_u *)0L}},
1379 {"imdisable", "imd", P_BOOL|P_VI_DEF,
1380 #ifdef USE_IM_CONTROL
1381 (char_u *)&p_imdisable, PV_NONE,
1382 #else
1383 (char_u *)NULL, PV_NONE,
1384 #endif
1385 #ifdef __sgi
1386 {(char_u *)TRUE, (char_u *)0L}
1387 #else
1388 {(char_u *)FALSE, (char_u *)0L}
1389 #endif
1391 {"iminsert", "imi", P_NUM|P_VI_DEF,
1392 (char_u *)&p_iminsert, PV_IMI,
1393 #ifdef B_IMODE_IM
1394 {(char_u *)B_IMODE_IM, (char_u *)0L}
1395 #else
1396 {(char_u *)B_IMODE_NONE, (char_u *)0L}
1397 #endif
1399 {"imsearch", "ims", P_NUM|P_VI_DEF,
1400 (char_u *)&p_imsearch, PV_IMS,
1401 #ifdef B_IMODE_IM
1402 {(char_u *)B_IMODE_IM, (char_u *)0L}
1403 #else
1404 {(char_u *)B_IMODE_NONE, (char_u *)0L}
1405 #endif
1407 {"include", "inc", P_STRING|P_ALLOCED|P_VI_DEF,
1408 #ifdef FEAT_FIND_ID
1409 (char_u *)&p_inc, PV_INC,
1410 {(char_u *)"^\\s*#\\s*include", (char_u *)0L}
1411 #else
1412 (char_u *)NULL, PV_NONE,
1413 {(char_u *)0L, (char_u *)0L}
1414 #endif
1416 {"includeexpr", "inex", P_STRING|P_ALLOCED|P_VI_DEF,
1417 #if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
1418 (char_u *)&p_inex, PV_INEX,
1419 {(char_u *)"", (char_u *)0L}
1420 #else
1421 (char_u *)NULL, PV_NONE,
1422 {(char_u *)0L, (char_u *)0L}
1423 #endif
1425 {"incsearch", "is", P_BOOL|P_VI_DEF|P_VIM,
1426 (char_u *)&p_is, PV_NONE,
1427 {(char_u *)FALSE, (char_u *)0L}},
1428 {"indentexpr", "inde", P_STRING|P_ALLOCED|P_VI_DEF|P_VIM,
1429 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
1430 (char_u *)&p_inde, PV_INDE,
1431 {(char_u *)"", (char_u *)0L}
1432 #else
1433 (char_u *)NULL, PV_NONE,
1434 {(char_u *)0L, (char_u *)0L}
1435 #endif
1437 {"indentkeys", "indk", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
1438 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
1439 (char_u *)&p_indk, PV_INDK,
1440 {(char_u *)"0{,0},:,0#,!^F,o,O,e", (char_u *)0L}
1441 #else
1442 (char_u *)NULL, PV_NONE,
1443 {(char_u *)0L, (char_u *)0L}
1444 #endif
1446 {"infercase", "inf", P_BOOL|P_VI_DEF,
1447 (char_u *)&p_inf, PV_INF,
1448 {(char_u *)FALSE, (char_u *)0L}},
1449 {"insertmode", "im", P_BOOL|P_VI_DEF|P_VIM,
1450 (char_u *)&p_im, PV_NONE,
1451 {(char_u *)FALSE, (char_u *)0L}},
1452 {"isfname", "isf", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1453 (char_u *)&p_isf, PV_NONE,
1455 #ifdef BACKSLASH_IN_FILENAME
1456 /* Excluded are: & and ^ are special in cmd.exe
1457 * ( and ) are used in text separating fnames */
1458 (char_u *)"@,48-57,/,\\,.,-,_,+,,,#,$,%,{,},[,],:,@-@,!,~,=",
1459 #else
1460 # ifdef AMIGA
1461 (char_u *)"@,48-57,/,.,-,_,+,,,$,:",
1462 # else
1463 # ifdef VMS
1464 (char_u *)"@,48-57,/,.,-,_,+,,,#,$,%,<,>,[,],:,;,~",
1465 # else /* UNIX et al. */
1466 # ifdef EBCDIC
1467 (char_u *)"@,240-249,/,.,-,_,+,,,#,$,%,~,=",
1468 # else
1469 (char_u *)"@,48-57,/,.,-,_,+,,,#,$,%,~,=",
1470 # endif
1471 # endif
1472 # endif
1473 #endif
1474 (char_u *)0L}},
1475 {"isident", "isi", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1476 (char_u *)&p_isi, PV_NONE,
1478 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
1479 (char_u *)"@,48-57,_,128-167,224-235",
1480 #else
1481 # ifdef EBCDIC
1482 /* TODO: EBCDIC Check this! @ == isalpha()*/
1483 (char_u *)"@,240-249,_,66-73,81-89,98-105,"
1484 "112-120,128,140-142,156,158,172,"
1485 "174,186,191,203-207,219-225,235-239,"
1486 "251-254",
1487 # else
1488 (char_u *)"@,48-57,_,192-255",
1489 # endif
1490 #endif
1491 (char_u *)0L}},
1492 {"iskeyword", "isk", P_STRING|P_ALLOCED|P_VIM|P_COMMA|P_NODUP,
1493 (char_u *)&p_isk, PV_ISK,
1495 #ifdef EBCDIC
1496 (char_u *)"@,240-249,_",
1497 /* TODO: EBCDIC Check this! @ == isalpha()*/
1498 (char_u *)"@,240-249,_,66-73,81-89,98-105,"
1499 "112-120,128,140-142,156,158,172,"
1500 "174,186,191,203-207,219-225,235-239,"
1501 "251-254",
1502 #else
1503 (char_u *)"@,48-57,_",
1504 # if defined(MSDOS) || defined(MSWIN) || defined(OS2)
1505 (char_u *)"@,48-57,_,128-167,224-235"
1506 # else
1507 ISK_LATIN1
1508 # endif
1509 #endif
1511 {"isprint", "isp", P_STRING|P_VI_DEF|P_RALL|P_COMMA|P_NODUP,
1512 (char_u *)&p_isp, PV_NONE,
1514 #if defined(MSDOS) || defined(MSWIN) || defined(OS2) \
1515 || (defined(MACOS) && !defined(MACOS_X)) \
1516 || defined(VMS)
1517 (char_u *)"@,~-255",
1518 #else
1519 # ifdef EBCDIC
1520 /* all chars above 63 are printable */
1521 (char_u *)"63-255",
1522 # else
1523 ISP_LATIN1,
1524 # endif
1525 #endif
1526 (char_u *)0L}},
1527 {"joinspaces", "js", P_BOOL|P_VI_DEF|P_VIM,
1528 (char_u *)&p_js, PV_NONE,
1529 {(char_u *)TRUE, (char_u *)0L}},
1530 {"key", NULL, P_STRING|P_ALLOCED|P_VI_DEF|P_NO_MKRC,
1531 #ifdef FEAT_CRYPT
1532 (char_u *)&p_key, PV_KEY,
1533 {(char_u *)"", (char_u *)0L}
1534 #else
1535 (char_u *)NULL, PV_NONE,
1536 {(char_u *)0L, (char_u *)0L}
1537 #endif
1539 {"keymap", "kmp", P_STRING|P_ALLOCED|P_VI_DEF|P_RBUF|P_RSTAT|P_NFNAME|P_PRI_MKRC,
1540 #ifdef FEAT_KEYMAP
1541 (char_u *)&p_keymap, PV_KMAP,
1542 {(char_u *)"", (char_u *)0L}
1543 #else
1544 (char_u *)NULL, PV_NONE,
1545 {(char_u *)"", (char_u *)0L}
1546 #endif
1548 {"keymodel", "km", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1549 #ifdef FEAT_VISUAL
1550 (char_u *)&p_km, PV_NONE,
1551 #else
1552 (char_u *)NULL, PV_NONE,
1553 #endif
1554 {(char_u *)"", (char_u *)0L}},
1555 {"keywordprg", "kp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1556 (char_u *)&p_kp, PV_KP,
1558 #if defined(MSDOS) || defined(MSWIN)
1559 (char_u *)":help",
1560 #else
1561 #ifdef VMS
1562 (char_u *)"help",
1563 #else
1564 # if defined(OS2)
1565 (char_u *)"view /",
1566 # else
1567 # ifdef USEMAN_S
1568 (char_u *)"man -s",
1569 # else
1570 (char_u *)"man",
1571 # endif
1572 # endif
1573 #endif
1574 #endif
1575 (char_u *)0L}},
1576 {"langmap", "lmap", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1577 #ifdef FEAT_LANGMAP
1578 (char_u *)&p_langmap, PV_NONE,
1579 {(char_u *)"", /* unmatched } */
1580 #else
1581 (char_u *)NULL, PV_NONE,
1582 {(char_u *)NULL,
1583 #endif
1584 (char_u *)0L}},
1585 {"langmenu", "lm", P_STRING|P_VI_DEF|P_NFNAME,
1586 #if defined(FEAT_MENU) && defined(FEAT_MULTI_LANG)
1587 (char_u *)&p_lm, PV_NONE,
1588 #else
1589 (char_u *)NULL, PV_NONE,
1590 #endif
1591 {(char_u *)"", (char_u *)0L}},
1592 {"laststatus", "ls", P_NUM|P_VI_DEF|P_RALL,
1593 #ifdef FEAT_WINDOWS
1594 (char_u *)&p_ls, PV_NONE,
1595 #else
1596 (char_u *)NULL, PV_NONE,
1597 #endif
1598 {(char_u *)1L, (char_u *)0L}},
1599 {"lazyredraw", "lz", P_BOOL|P_VI_DEF,
1600 (char_u *)&p_lz, PV_NONE,
1601 {(char_u *)FALSE, (char_u *)0L}},
1602 {"linebreak", "lbr", P_BOOL|P_VI_DEF|P_RWIN,
1603 #ifdef FEAT_LINEBREAK
1604 (char_u *)VAR_WIN, PV_LBR,
1605 #else
1606 (char_u *)NULL, PV_NONE,
1607 #endif
1608 {(char_u *)FALSE, (char_u *)0L}},
1609 {"lines", NULL, P_NUM|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RCLR,
1610 (char_u *)&Rows, PV_NONE,
1612 #if defined(MSDOS) || defined(WIN3264) || defined(OS2)
1613 (char_u *)25L,
1614 #else
1615 (char_u *)24L,
1616 #endif
1617 (char_u *)0L}},
1618 {"linespace", "lsp", P_NUM|P_VI_DEF|P_RCLR,
1619 #ifdef FEAT_GUI
1620 (char_u *)&p_linespace, PV_NONE,
1621 #else
1622 (char_u *)NULL, PV_NONE,
1623 #endif
1624 #ifdef FEAT_GUI_W32
1625 {(char_u *)1L, (char_u *)0L}
1626 #else
1627 {(char_u *)0L, (char_u *)0L}
1628 #endif
1630 {"lisp", NULL, P_BOOL|P_VI_DEF,
1631 #ifdef FEAT_LISP
1632 (char_u *)&p_lisp, PV_LISP,
1633 #else
1634 (char_u *)NULL, PV_NONE,
1635 #endif
1636 {(char_u *)FALSE, (char_u *)0L}},
1637 {"lispwords", "lw", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1638 #ifdef FEAT_LISP
1639 (char_u *)&p_lispwords, PV_NONE,
1640 {(char_u *)LISPWORD_VALUE, (char_u *)0L}
1641 #else
1642 (char_u *)NULL, PV_NONE,
1643 {(char_u *)"", (char_u *)0L}
1644 #endif
1646 {"list", NULL, P_BOOL|P_VI_DEF|P_RWIN,
1647 (char_u *)VAR_WIN, PV_LIST,
1648 {(char_u *)FALSE, (char_u *)0L}},
1649 {"listchars", "lcs", P_STRING|P_VI_DEF|P_RALL|P_COMMA|P_NODUP,
1650 (char_u *)&p_lcs, PV_NONE,
1651 {(char_u *)"eol:$", (char_u *)0L}},
1652 {"loadplugins", "lpl", P_BOOL|P_VI_DEF,
1653 (char_u *)&p_lpl, PV_NONE,
1654 {(char_u *)TRUE, (char_u *)0L}},
1655 #ifdef FEAT_GUI_MAC
1656 {"macatsui", NULL, P_BOOL|P_VI_DEF|P_RCLR,
1657 (char_u *)&p_macatsui, PV_NONE,
1658 {(char_u *)TRUE, (char_u *)0L}},
1659 #endif
1660 {"magic", NULL, P_BOOL|P_VI_DEF,
1661 (char_u *)&p_magic, PV_NONE,
1662 {(char_u *)TRUE, (char_u *)0L}},
1663 {"makeef", "mef", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1664 #ifdef FEAT_QUICKFIX
1665 (char_u *)&p_mef, PV_NONE,
1666 {(char_u *)"", (char_u *)0L}
1667 #else
1668 (char_u *)NULL, PV_NONE,
1669 {(char_u *)NULL, (char_u *)0L}
1670 #endif
1672 {"makeprg", "mp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1673 #ifdef FEAT_QUICKFIX
1674 (char_u *)&p_mp, PV_MP,
1675 # ifdef VMS
1676 {(char_u *)"MMS", (char_u *)0L}
1677 # else
1678 {(char_u *)"make", (char_u *)0L}
1679 # endif
1680 #else
1681 (char_u *)NULL, PV_NONE,
1682 {(char_u *)NULL, (char_u *)0L}
1683 #endif
1685 {"matchpairs", "mps", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
1686 (char_u *)&p_mps, PV_MPS,
1687 {(char_u *)"(:),{:},[:]", (char_u *)0L}},
1688 {"matchtime", "mat", P_NUM|P_VI_DEF,
1689 (char_u *)&p_mat, PV_NONE,
1690 {(char_u *)5L, (char_u *)0L}},
1691 {"maxcombine", "mco", P_NUM|P_VI_DEF,
1692 #ifdef FEAT_MBYTE
1693 (char_u *)&p_mco, PV_NONE,
1694 #else
1695 (char_u *)NULL, PV_NONE,
1696 #endif
1697 {(char_u *)2, (char_u *)0L}},
1698 {"maxfuncdepth", "mfd", P_NUM|P_VI_DEF,
1699 #ifdef FEAT_EVAL
1700 (char_u *)&p_mfd, PV_NONE,
1701 #else
1702 (char_u *)NULL, PV_NONE,
1703 #endif
1704 {(char_u *)100L, (char_u *)0L}},
1705 {"maxmapdepth", "mmd", P_NUM|P_VI_DEF,
1706 (char_u *)&p_mmd, PV_NONE,
1707 {(char_u *)1000L, (char_u *)0L}},
1708 {"maxmem", "mm", P_NUM|P_VI_DEF,
1709 (char_u *)&p_mm, PV_NONE,
1710 {(char_u *)DFLT_MAXMEM, (char_u *)0L}},
1711 {"maxmempattern","mmp", P_NUM|P_VI_DEF,
1712 (char_u *)&p_mmp, PV_NONE,
1713 {(char_u *)1000L, (char_u *)0L}},
1714 {"maxmemtot", "mmt", P_NUM|P_VI_DEF,
1715 (char_u *)&p_mmt, PV_NONE,
1716 {(char_u *)DFLT_MAXMEMTOT, (char_u *)0L}},
1717 {"menuitems", "mis", P_NUM|P_VI_DEF,
1718 #ifdef FEAT_MENU
1719 (char_u *)&p_mis, PV_NONE,
1720 #else
1721 (char_u *)NULL, PV_NONE,
1722 #endif
1723 {(char_u *)25L, (char_u *)0L}},
1724 {"mesg", NULL, P_BOOL|P_VI_DEF,
1725 (char_u *)NULL, PV_NONE,
1726 {(char_u *)FALSE, (char_u *)0L}},
1727 {"mkspellmem", "msm", P_STRING|P_VI_DEF|P_EXPAND|P_SECURE,
1728 #ifdef FEAT_SPELL
1729 (char_u *)&p_msm, PV_NONE,
1730 {(char_u *)"460000,2000,500", (char_u *)0L}
1731 #else
1732 (char_u *)NULL, PV_NONE,
1733 {(char_u *)0L, (char_u *)0L}
1734 #endif
1736 {"modeline", "ml", P_BOOL|P_VIM,
1737 (char_u *)&p_ml, PV_ML,
1738 {(char_u *)FALSE, (char_u *)TRUE}},
1739 {"modelines", "mls", P_NUM|P_VI_DEF,
1740 (char_u *)&p_mls, PV_NONE,
1741 {(char_u *)5L, (char_u *)0L}},
1742 {"modifiable", "ma", P_BOOL|P_VI_DEF|P_NOGLOB,
1743 (char_u *)&p_ma, PV_MA,
1744 {(char_u *)TRUE, (char_u *)0L}},
1745 {"modified", "mod", P_BOOL|P_NO_MKRC|P_VI_DEF|P_RSTAT,
1746 (char_u *)&p_mod, PV_MOD,
1747 {(char_u *)FALSE, (char_u *)0L}},
1748 {"more", NULL, P_BOOL|P_VIM,
1749 (char_u *)&p_more, PV_NONE,
1750 {(char_u *)FALSE, (char_u *)TRUE}},
1751 {"mouse", NULL, P_STRING|P_VI_DEF|P_FLAGLIST,
1752 (char_u *)&p_mouse, PV_NONE,
1754 #if defined(MSDOS) || defined(WIN3264)
1755 (char_u *)"a",
1756 #else
1757 (char_u *)"",
1758 #endif
1759 (char_u *)0L}},
1760 {"mousefocus", "mousef", P_BOOL|P_VI_DEF,
1761 #ifdef FEAT_GUI
1762 (char_u *)&p_mousef, PV_NONE,
1763 #else
1764 (char_u *)NULL, PV_NONE,
1765 #endif
1766 {(char_u *)FALSE, (char_u *)0L}},
1767 {"mousehide", "mh", P_BOOL|P_VI_DEF,
1768 #ifdef FEAT_GUI
1769 (char_u *)&p_mh, PV_NONE,
1770 #else
1771 (char_u *)NULL, PV_NONE,
1772 #endif
1773 {(char_u *)TRUE, (char_u *)0L}},
1774 {"mousemodel", "mousem", P_STRING|P_VI_DEF,
1775 (char_u *)&p_mousem, PV_NONE,
1777 #if defined(MSDOS) || defined(MSWIN)
1778 (char_u *)"popup",
1779 #else
1780 # if defined(MACOS)
1781 (char_u *)"popup_setpos",
1782 # else
1783 (char_u *)"extend",
1784 # endif
1785 #endif
1786 (char_u *)0L}},
1787 {"mouseshape", "mouses", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1788 #ifdef FEAT_MOUSESHAPE
1789 (char_u *)&p_mouseshape, PV_NONE,
1790 {(char_u *)"i-r:beam,s:updown,sd:udsizing,vs:leftright,vd:lrsizing,m:no,ml:up-arrow,v:rightup-arrow", (char_u *)0L}
1791 #else
1792 (char_u *)NULL, PV_NONE,
1793 {(char_u *)NULL, (char_u *)0L}
1794 #endif
1796 {"mousetime", "mouset", P_NUM|P_VI_DEF,
1797 (char_u *)&p_mouset, PV_NONE,
1798 {(char_u *)500L, (char_u *)0L}},
1799 {"mzquantum", "mzq", P_NUM,
1800 #ifdef FEAT_MZSCHEME
1801 (char_u *)&p_mzq, PV_NONE,
1802 #else
1803 (char_u *)NULL, PV_NONE,
1804 #endif
1805 {(char_u *)100L, (char_u *)100L}},
1806 {"novice", NULL, P_BOOL|P_VI_DEF,
1807 (char_u *)NULL, PV_NONE,
1808 {(char_u *)FALSE, (char_u *)0L}},
1809 {"nrformats", "nf", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
1810 (char_u *)&p_nf, PV_NF,
1811 {(char_u *)"octal,hex", (char_u *)0L}},
1812 {"number", "nu", P_BOOL|P_VI_DEF|P_RWIN,
1813 (char_u *)VAR_WIN, PV_NU,
1814 {(char_u *)FALSE, (char_u *)0L}},
1815 {"numberwidth", "nuw", P_NUM|P_RWIN|P_VIM,
1816 #ifdef FEAT_LINEBREAK
1817 (char_u *)VAR_WIN, PV_NUW,
1818 #else
1819 (char_u *)NULL, PV_NONE,
1820 #endif
1821 {(char_u *)8L, (char_u *)4L}},
1822 {"omnifunc", "ofu", P_STRING|P_ALLOCED|P_VI_DEF|P_SECURE,
1823 #ifdef FEAT_COMPL_FUNC
1824 (char_u *)&p_ofu, PV_OFU,
1825 {(char_u *)"", (char_u *)0L}
1826 #else
1827 (char_u *)NULL, PV_NONE,
1828 {(char_u *)0L, (char_u *)0L}
1829 #endif
1831 {"open", NULL, P_BOOL|P_VI_DEF,
1832 (char_u *)NULL, PV_NONE,
1833 {(char_u *)FALSE, (char_u *)0L}},
1834 {"opendevice", "odev", P_BOOL|P_VI_DEF,
1835 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
1836 (char_u *)&p_odev, PV_NONE,
1837 #else
1838 (char_u *)NULL, PV_NONE,
1839 #endif
1840 {(char_u *)FALSE, (char_u *)FALSE}
1842 {"operatorfunc", "opfunc", P_STRING|P_VI_DEF|P_SECURE,
1843 (char_u *)&p_opfunc, PV_NONE,
1844 {(char_u *)"", (char_u *)0L} },
1845 {"optimize", "opt", P_BOOL|P_VI_DEF,
1846 (char_u *)NULL, PV_NONE,
1847 {(char_u *)FALSE, (char_u *)0L}},
1848 {"osfiletype", "oft", P_STRING|P_ALLOCED|P_VI_DEF,
1849 #ifdef FEAT_OSFILETYPE
1850 (char_u *)&p_oft, PV_OFT,
1851 {(char_u *)DFLT_OFT, (char_u *)0L}
1852 #else
1853 (char_u *)NULL, PV_NONE,
1854 {(char_u *)0L, (char_u *)0L}
1855 #endif
1857 {"paragraphs", "para", P_STRING|P_VI_DEF,
1858 (char_u *)&p_para, PV_NONE,
1859 {(char_u *)"IPLPPPQPP TPHPLIPpLpItpplpipbp",
1860 (char_u *)0L}},
1861 {"paste", NULL, P_BOOL|P_VI_DEF|P_PRI_MKRC,
1862 (char_u *)&p_paste, PV_NONE,
1863 {(char_u *)FALSE, (char_u *)0L}},
1864 {"pastetoggle", "pt", P_STRING|P_VI_DEF,
1865 (char_u *)&p_pt, PV_NONE,
1866 {(char_u *)"", (char_u *)0L}},
1867 {"patchexpr", "pex", P_STRING|P_VI_DEF|P_SECURE,
1868 #if defined(FEAT_DIFF) && defined(FEAT_EVAL)
1869 (char_u *)&p_pex, PV_NONE,
1870 {(char_u *)"", (char_u *)0L}
1871 #else
1872 (char_u *)NULL, PV_NONE,
1873 {(char_u *)0L, (char_u *)0L}
1874 #endif
1876 {"patchmode", "pm", P_STRING|P_VI_DEF|P_NFNAME,
1877 (char_u *)&p_pm, PV_NONE,
1878 {(char_u *)"", (char_u *)0L}},
1879 {"path", "pa", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
1880 (char_u *)&p_path, PV_PATH,
1882 #if defined AMIGA || defined MSDOS || defined MSWIN
1883 (char_u *)".,,",
1884 #else
1885 # if defined(__EMX__)
1886 (char_u *)".,/emx/include,,",
1887 # else /* Unix, probably */
1888 (char_u *)".,/usr/include,,",
1889 # endif
1890 #endif
1891 (char_u *)0L}},
1892 {"preserveindent", "pi", P_BOOL|P_VI_DEF|P_VIM,
1893 (char_u *)&p_pi, PV_PI,
1894 {(char_u *)FALSE, (char_u *)0L}},
1895 {"previewheight", "pvh", P_NUM|P_VI_DEF,
1896 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
1897 (char_u *)&p_pvh, PV_NONE,
1898 #else
1899 (char_u *)NULL, PV_NONE,
1900 #endif
1901 {(char_u *)12L, (char_u *)0L}},
1902 {"previewwindow", "pvw", P_BOOL|P_VI_DEF|P_RSTAT|P_NOGLOB,
1903 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
1904 (char_u *)VAR_WIN, PV_PVW,
1905 #else
1906 (char_u *)NULL, PV_NONE,
1907 #endif
1908 {(char_u *)FALSE, (char_u *)0L}},
1909 {"printdevice", "pdev", P_STRING|P_VI_DEF|P_SECURE,
1910 #ifdef FEAT_PRINTER
1911 (char_u *)&p_pdev, PV_NONE,
1912 {(char_u *)"", (char_u *)0L}
1913 #else
1914 (char_u *)NULL, PV_NONE,
1915 {(char_u *)NULL, (char_u *)0L}
1916 #endif
1918 {"printencoding", "penc", P_STRING|P_VI_DEF,
1919 #ifdef FEAT_POSTSCRIPT
1920 (char_u *)&p_penc, PV_NONE,
1921 {(char_u *)"", (char_u *)0L}
1922 #else
1923 (char_u *)NULL, PV_NONE,
1924 {(char_u *)NULL, (char_u *)0L}
1925 #endif
1927 {"printexpr", "pexpr", P_STRING|P_VI_DEF,
1928 #ifdef FEAT_POSTSCRIPT
1929 (char_u *)&p_pexpr, PV_NONE,
1930 {(char_u *)"", (char_u *)0L}
1931 #else
1932 (char_u *)NULL, PV_NONE,
1933 {(char_u *)NULL, (char_u *)0L}
1934 #endif
1936 {"printfont", "pfn", P_STRING|P_VI_DEF,
1937 #ifdef FEAT_PRINTER
1938 (char_u *)&p_pfn, PV_NONE,
1940 # ifdef MSWIN
1941 (char_u *)"Courier_New:h10",
1942 # else
1943 (char_u *)"courier",
1944 # endif
1945 (char_u *)0L}
1946 #else
1947 (char_u *)NULL, PV_NONE,
1948 {(char_u *)NULL, (char_u *)0L}
1949 #endif
1951 {"printheader", "pheader", P_STRING|P_VI_DEF|P_GETTEXT,
1952 #ifdef FEAT_PRINTER
1953 (char_u *)&p_header, PV_NONE,
1954 {(char_u *)N_("%<%f%h%m%=Page %N"), (char_u *)0L}
1955 #else
1956 (char_u *)NULL, PV_NONE,
1957 {(char_u *)NULL, (char_u *)0L}
1958 #endif
1960 {"printmbcharset", "pmbcs", P_STRING|P_VI_DEF,
1961 #if defined(FEAT_POSTSCRIPT) && defined(FEAT_MBYTE)
1962 (char_u *)&p_pmcs, PV_NONE,
1963 {(char_u *)"", (char_u *)0L}
1964 #else
1965 (char_u *)NULL, PV_NONE,
1966 {(char_u *)NULL, (char_u *)0L}
1967 #endif
1969 {"printmbfont", "pmbfn", P_STRING|P_VI_DEF,
1970 #if defined(FEAT_POSTSCRIPT) && defined(FEAT_MBYTE)
1971 (char_u *)&p_pmfn, PV_NONE,
1972 {(char_u *)"", (char_u *)0L}
1973 #else
1974 (char_u *)NULL, PV_NONE,
1975 {(char_u *)NULL, (char_u *)0L}
1976 #endif
1978 {"printoptions", "popt", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1979 #ifdef FEAT_PRINTER
1980 (char_u *)&p_popt, PV_NONE,
1981 {(char_u *)"", (char_u *)0L}
1982 #else
1983 (char_u *)NULL, PV_NONE,
1984 {(char_u *)NULL, (char_u *)0L}
1985 #endif
1987 {"prompt", NULL, P_BOOL|P_VI_DEF,
1988 (char_u *)&p_prompt, PV_NONE,
1989 {(char_u *)TRUE, (char_u *)0L}},
1990 {"pumheight", "ph", P_NUM|P_VI_DEF,
1991 #ifdef FEAT_INS_EXPAND
1992 (char_u *)&p_ph, PV_NONE,
1993 #else
1994 (char_u *)NULL, PV_NONE,
1995 #endif
1996 {(char_u *)0L, (char_u *)0L}},
1997 {"quoteescape", "qe", P_STRING|P_ALLOCED|P_VI_DEF,
1998 #ifdef FEAT_TEXTOBJ
1999 (char_u *)&p_qe, PV_QE,
2000 {(char_u *)"\\", (char_u *)0L}
2001 #else
2002 (char_u *)NULL, PV_NONE,
2003 {(char_u *)NULL, (char_u *)0L}
2004 #endif
2006 {"readonly", "ro", P_BOOL|P_VI_DEF|P_RSTAT|P_NOGLOB,
2007 (char_u *)&p_ro, PV_RO,
2008 {(char_u *)FALSE, (char_u *)0L}},
2009 {"redraw", NULL, P_BOOL|P_VI_DEF,
2010 (char_u *)NULL, PV_NONE,
2011 {(char_u *)FALSE, (char_u *)0L}},
2012 {"redrawtime", "rdt", P_NUM|P_VI_DEF,
2013 #ifdef FEAT_RELTIME
2014 (char_u *)&p_rdt, PV_NONE,
2015 #else
2016 (char_u *)NULL, PV_NONE,
2017 #endif
2018 {(char_u *)2000L, (char_u *)0L}},
2019 {"remap", NULL, P_BOOL|P_VI_DEF,
2020 (char_u *)&p_remap, PV_NONE,
2021 {(char_u *)TRUE, (char_u *)0L}},
2022 {"report", NULL, P_NUM|P_VI_DEF,
2023 (char_u *)&p_report, PV_NONE,
2024 {(char_u *)2L, (char_u *)0L}},
2025 {"restorescreen", "rs", P_BOOL|P_VI_DEF,
2026 #ifdef WIN3264
2027 (char_u *)&p_rs, PV_NONE,
2028 #else
2029 (char_u *)NULL, PV_NONE,
2030 #endif
2031 {(char_u *)TRUE, (char_u *)0L}},
2032 {"revins", "ri", P_BOOL|P_VI_DEF|P_VIM,
2033 #ifdef FEAT_RIGHTLEFT
2034 (char_u *)&p_ri, PV_NONE,
2035 #else
2036 (char_u *)NULL, PV_NONE,
2037 #endif
2038 {(char_u *)FALSE, (char_u *)0L}},
2039 {"rightleft", "rl", P_BOOL|P_VI_DEF|P_RWIN,
2040 #ifdef FEAT_RIGHTLEFT
2041 (char_u *)VAR_WIN, PV_RL,
2042 #else
2043 (char_u *)NULL, PV_NONE,
2044 #endif
2045 {(char_u *)FALSE, (char_u *)0L}},
2046 {"rightleftcmd", "rlc", P_STRING|P_ALLOCED|P_VI_DEF|P_RWIN,
2047 #ifdef FEAT_RIGHTLEFT
2048 (char_u *)VAR_WIN, PV_RLC,
2049 {(char_u *)"search", (char_u *)NULL}
2050 #else
2051 (char_u *)NULL, PV_NONE,
2052 {(char_u *)NULL, (char_u *)0L}
2053 #endif
2055 {"ruler", "ru", P_BOOL|P_VI_DEF|P_VIM|P_RSTAT,
2056 #ifdef FEAT_CMDL_INFO
2057 (char_u *)&p_ru, PV_NONE,
2058 #else
2059 (char_u *)NULL, PV_NONE,
2060 #endif
2061 {(char_u *)FALSE, (char_u *)0L}},
2062 {"rulerformat", "ruf", P_STRING|P_VI_DEF|P_ALLOCED|P_RSTAT,
2063 #ifdef FEAT_STL_OPT
2064 (char_u *)&p_ruf, PV_NONE,
2065 #else
2066 (char_u *)NULL, PV_NONE,
2067 #endif
2068 {(char_u *)"", (char_u *)0L}},
2069 {"runtimepath", "rtp", P_STRING|P_VI_DEF|P_EXPAND|P_COMMA|P_NODUP|P_SECURE,
2070 (char_u *)&p_rtp, PV_NONE,
2071 {(char_u *)DFLT_RUNTIMEPATH, (char_u *)0L}},
2072 {"scroll", "scr", P_NUM|P_NO_MKRC|P_VI_DEF,
2073 (char_u *)VAR_WIN, PV_SCROLL,
2074 {(char_u *)12L, (char_u *)0L}},
2075 {"scrollbind", "scb", P_BOOL|P_VI_DEF,
2076 #ifdef FEAT_SCROLLBIND
2077 (char_u *)VAR_WIN, PV_SCBIND,
2078 #else
2079 (char_u *)NULL, PV_NONE,
2080 #endif
2081 {(char_u *)FALSE, (char_u *)0L}},
2082 {"scrolljump", "sj", P_NUM|P_VI_DEF|P_VIM,
2083 (char_u *)&p_sj, PV_NONE,
2084 {(char_u *)1L, (char_u *)0L}},
2085 {"scrolloff", "so", P_NUM|P_VI_DEF|P_VIM|P_RALL,
2086 (char_u *)&p_so, PV_NONE,
2087 {(char_u *)0L, (char_u *)0L}},
2088 {"scrollopt", "sbo", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2089 #ifdef FEAT_SCROLLBIND
2090 (char_u *)&p_sbo, PV_NONE,
2091 {(char_u *)"ver,jump", (char_u *)0L}
2092 #else
2093 (char_u *)NULL, PV_NONE,
2094 {(char_u *)0L, (char_u *)0L}
2095 #endif
2097 {"sections", "sect", P_STRING|P_VI_DEF,
2098 (char_u *)&p_sections, PV_NONE,
2099 {(char_u *)"SHNHH HUnhsh", (char_u *)0L}},
2100 {"secure", NULL, P_BOOL|P_VI_DEF|P_SECURE,
2101 (char_u *)&p_secure, PV_NONE,
2102 {(char_u *)FALSE, (char_u *)0L}},
2103 {"selection", "sel", P_STRING|P_VI_DEF,
2104 #ifdef FEAT_VISUAL
2105 (char_u *)&p_sel, PV_NONE,
2106 #else
2107 (char_u *)NULL, PV_NONE,
2108 #endif
2109 {(char_u *)"inclusive", (char_u *)0L}},
2110 {"selectmode", "slm", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2111 #ifdef FEAT_VISUAL
2112 (char_u *)&p_slm, PV_NONE,
2113 #else
2114 (char_u *)NULL, PV_NONE,
2115 #endif
2116 {(char_u *)"", (char_u *)0L}},
2117 {"sessionoptions", "ssop", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2118 #ifdef FEAT_SESSION
2119 (char_u *)&p_ssop, PV_NONE,
2120 {(char_u *)"blank,buffers,curdir,folds,help,options,tabpages,winsize",
2121 (char_u *)0L}
2122 #else
2123 (char_u *)NULL, PV_NONE,
2124 {(char_u *)0L, (char_u *)0L}
2125 #endif
2127 {"shell", "sh", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
2128 (char_u *)&p_sh, PV_NONE,
2130 #ifdef VMS
2131 (char_u *)"-",
2132 #else
2133 # if defined(MSDOS)
2134 (char_u *)"command",
2135 # else
2136 # if defined(WIN16)
2137 (char_u *)"command.com",
2138 # else
2139 # if defined(WIN3264)
2140 (char_u *)"", /* set in set_init_1() */
2141 # else
2142 # if defined(OS2)
2143 (char_u *)"cmd.exe",
2144 # else
2145 # if defined(ARCHIE)
2146 (char_u *)"gos",
2147 # else
2148 (char_u *)"sh",
2149 # endif
2150 # endif
2151 # endif
2152 # endif
2153 # endif
2154 #endif /* VMS */
2155 (char_u *)0L}},
2156 {"shellcmdflag","shcf", P_STRING|P_VI_DEF|P_SECURE,
2157 (char_u *)&p_shcf, PV_NONE,
2159 #if defined(MSDOS) || defined(MSWIN)
2160 (char_u *)"/c",
2161 #else
2162 # if defined(OS2)
2163 (char_u *)"/c",
2164 # else
2165 (char_u *)"-c",
2166 # endif
2167 #endif
2168 (char_u *)0L}},
2169 {"shellpipe", "sp", P_STRING|P_VI_DEF|P_SECURE,
2170 #ifdef FEAT_QUICKFIX
2171 (char_u *)&p_sp, PV_NONE,
2173 #if defined(UNIX) || defined(OS2)
2174 # ifdef ARCHIE
2175 (char_u *)"2>",
2176 # else
2177 (char_u *)"| tee",
2178 # endif
2179 #else
2180 (char_u *)">",
2181 #endif
2182 (char_u *)0L}
2183 #else
2184 (char_u *)NULL, PV_NONE,
2185 {(char_u *)0L, (char_u *)0L}
2186 #endif
2188 {"shellquote", "shq", P_STRING|P_VI_DEF|P_SECURE,
2189 (char_u *)&p_shq, PV_NONE,
2190 {(char_u *)"", (char_u *)0L}},
2191 {"shellredir", "srr", P_STRING|P_VI_DEF|P_SECURE,
2192 (char_u *)&p_srr, PV_NONE,
2193 {(char_u *)">", (char_u *)0L}},
2194 {"shellslash", "ssl", P_BOOL|P_VI_DEF,
2195 #ifdef BACKSLASH_IN_FILENAME
2196 (char_u *)&p_ssl, PV_NONE,
2197 #else
2198 (char_u *)NULL, PV_NONE,
2199 #endif
2200 {(char_u *)FALSE, (char_u *)0L}},
2201 {"shelltemp", "stmp", P_BOOL,
2202 (char_u *)&p_stmp, PV_NONE,
2203 {(char_u *)FALSE, (char_u *)TRUE}},
2204 {"shelltype", "st", P_NUM|P_VI_DEF,
2205 #ifdef AMIGA
2206 (char_u *)&p_st, PV_NONE,
2207 #else
2208 (char_u *)NULL, PV_NONE,
2209 #endif
2210 {(char_u *)0L, (char_u *)0L}},
2211 {"shellxquote", "sxq", P_STRING|P_VI_DEF|P_SECURE,
2212 (char_u *)&p_sxq, PV_NONE,
2214 #if defined(UNIX) && defined(USE_SYSTEM) && !defined(__EMX__)
2215 (char_u *)"\"",
2216 #else
2217 (char_u *)"",
2218 #endif
2219 (char_u *)0L}},
2220 {"shiftround", "sr", P_BOOL|P_VI_DEF|P_VIM,
2221 (char_u *)&p_sr, PV_NONE,
2222 {(char_u *)FALSE, (char_u *)0L}},
2223 {"shiftwidth", "sw", P_NUM|P_VI_DEF,
2224 (char_u *)&p_sw, PV_SW,
2225 {(char_u *)8L, (char_u *)0L}},
2226 {"shortmess", "shm", P_STRING|P_VIM|P_FLAGLIST,
2227 (char_u *)&p_shm, PV_NONE,
2228 {(char_u *)"", (char_u *)"filnxtToO"}},
2229 {"shortname", "sn", P_BOOL|P_VI_DEF,
2230 #ifdef SHORT_FNAME
2231 (char_u *)NULL, PV_NONE,
2232 #else
2233 (char_u *)&p_sn, PV_SN,
2234 #endif
2235 {(char_u *)FALSE, (char_u *)0L}},
2236 {"showbreak", "sbr", P_STRING|P_VI_DEF|P_RALL,
2237 #ifdef FEAT_LINEBREAK
2238 (char_u *)&p_sbr, PV_NONE,
2239 #else
2240 (char_u *)NULL, PV_NONE,
2241 #endif
2242 {(char_u *)"", (char_u *)0L}},
2243 {"showcmd", "sc", P_BOOL|P_VIM,
2244 #ifdef FEAT_CMDL_INFO
2245 (char_u *)&p_sc, PV_NONE,
2246 #else
2247 (char_u *)NULL, PV_NONE,
2248 #endif
2249 {(char_u *)FALSE,
2250 #ifdef UNIX
2251 (char_u *)FALSE
2252 #else
2253 (char_u *)TRUE
2254 #endif
2256 {"showfulltag", "sft", P_BOOL|P_VI_DEF,
2257 (char_u *)&p_sft, PV_NONE,
2258 {(char_u *)FALSE, (char_u *)0L}},
2259 {"showmatch", "sm", P_BOOL|P_VI_DEF,
2260 (char_u *)&p_sm, PV_NONE,
2261 {(char_u *)FALSE, (char_u *)0L}},
2262 {"showmode", "smd", P_BOOL|P_VIM,
2263 (char_u *)&p_smd, PV_NONE,
2264 {(char_u *)FALSE, (char_u *)TRUE}},
2265 {"showtabline", "stal", P_NUM|P_VI_DEF|P_RALL,
2266 #ifdef FEAT_WINDOWS
2267 (char_u *)&p_stal, PV_NONE,
2268 #else
2269 (char_u *)NULL, PV_NONE,
2270 #endif
2271 {(char_u *)1L, (char_u *)0L}},
2272 {"sidescroll", "ss", P_NUM|P_VI_DEF,
2273 (char_u *)&p_ss, PV_NONE,
2274 {(char_u *)0L, (char_u *)0L}},
2275 {"sidescrolloff", "siso", P_NUM|P_VI_DEF|P_VIM|P_RBUF,
2276 (char_u *)&p_siso, PV_NONE,
2277 {(char_u *)0L, (char_u *)0L}},
2278 {"slowopen", "slow", P_BOOL|P_VI_DEF,
2279 (char_u *)NULL, PV_NONE,
2280 {(char_u *)FALSE, (char_u *)0L}},
2281 {"smartcase", "scs", P_BOOL|P_VI_DEF|P_VIM,
2282 (char_u *)&p_scs, PV_NONE,
2283 {(char_u *)FALSE, (char_u *)0L}},
2284 {"smartindent", "si", P_BOOL|P_VI_DEF|P_VIM,
2285 #ifdef FEAT_SMARTINDENT
2286 (char_u *)&p_si, PV_SI,
2287 #else
2288 (char_u *)NULL, PV_NONE,
2289 #endif
2290 {(char_u *)FALSE, (char_u *)0L}},
2291 {"smarttab", "sta", P_BOOL|P_VI_DEF|P_VIM,
2292 (char_u *)&p_sta, PV_NONE,
2293 {(char_u *)FALSE, (char_u *)0L}},
2294 {"softtabstop", "sts", P_NUM|P_VI_DEF|P_VIM,
2295 (char_u *)&p_sts, PV_STS,
2296 {(char_u *)0L, (char_u *)0L}},
2297 {"sourceany", NULL, P_BOOL|P_VI_DEF,
2298 (char_u *)NULL, PV_NONE,
2299 {(char_u *)FALSE, (char_u *)0L}},
2300 {"spell", NULL, P_BOOL|P_VI_DEF|P_RWIN,
2301 #ifdef FEAT_SPELL
2302 (char_u *)VAR_WIN, PV_SPELL,
2303 #else
2304 (char_u *)NULL, PV_NONE,
2305 #endif
2306 {(char_u *)FALSE, (char_u *)0L}},
2307 {"spellcapcheck", "spc", P_STRING|P_ALLOCED|P_VI_DEF|P_RBUF,
2308 #ifdef FEAT_SPELL
2309 (char_u *)&p_spc, PV_SPC,
2310 {(char_u *)"[.?!]\\_[\\])'\" ]\\+", (char_u *)0L}
2311 #else
2312 (char_u *)NULL, PV_NONE,
2313 {(char_u *)0L, (char_u *)0L}
2314 #endif
2316 {"spellfile", "spf", P_STRING|P_EXPAND|P_ALLOCED|P_VI_DEF|P_SECURE|P_COMMA,
2317 #ifdef FEAT_SPELL
2318 (char_u *)&p_spf, PV_SPF,
2319 {(char_u *)"", (char_u *)0L}
2320 #else
2321 (char_u *)NULL, PV_NONE,
2322 {(char_u *)0L, (char_u *)0L}
2323 #endif
2325 {"spelllang", "spl", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_RBUF|P_EXPAND,
2326 #ifdef FEAT_SPELL
2327 (char_u *)&p_spl, PV_SPL,
2328 {(char_u *)"en", (char_u *)0L}
2329 #else
2330 (char_u *)NULL, PV_NONE,
2331 {(char_u *)0L, (char_u *)0L}
2332 #endif
2334 {"spellsuggest", "sps", P_STRING|P_VI_DEF|P_EXPAND|P_SECURE|P_COMMA,
2335 #ifdef FEAT_SPELL
2336 (char_u *)&p_sps, PV_NONE,
2337 {(char_u *)"best", (char_u *)0L}
2338 #else
2339 (char_u *)NULL, PV_NONE,
2340 {(char_u *)0L, (char_u *)0L}
2341 #endif
2343 {"splitbelow", "sb", P_BOOL|P_VI_DEF,
2344 #ifdef FEAT_WINDOWS
2345 (char_u *)&p_sb, PV_NONE,
2346 #else
2347 (char_u *)NULL, PV_NONE,
2348 #endif
2349 {(char_u *)FALSE, (char_u *)0L}},
2350 {"splitright", "spr", P_BOOL|P_VI_DEF,
2351 #ifdef FEAT_VERTSPLIT
2352 (char_u *)&p_spr, PV_NONE,
2353 #else
2354 (char_u *)NULL, PV_NONE,
2355 #endif
2356 {(char_u *)FALSE, (char_u *)0L}},
2357 {"startofline", "sol", P_BOOL|P_VI_DEF|P_VIM,
2358 (char_u *)&p_sol, PV_NONE,
2359 {(char_u *)TRUE, (char_u *)0L}},
2360 {"statusline" ,"stl", P_STRING|P_VI_DEF|P_ALLOCED|P_RSTAT,
2361 #ifdef FEAT_STL_OPT
2362 (char_u *)&p_stl, PV_STL,
2363 #else
2364 (char_u *)NULL, PV_NONE,
2365 #endif
2366 {(char_u *)"", (char_u *)0L}},
2367 {"suffixes", "su", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2368 (char_u *)&p_su, PV_NONE,
2369 {(char_u *)".bak,~,.o,.h,.info,.swp,.obj",
2370 (char_u *)0L}},
2371 {"suffixesadd", "sua", P_STRING|P_VI_DEF|P_ALLOCED|P_COMMA|P_NODUP,
2372 #ifdef FEAT_SEARCHPATH
2373 (char_u *)&p_sua, PV_SUA,
2374 {(char_u *)"", (char_u *)0L}
2375 #else
2376 (char_u *)NULL, PV_NONE,
2377 {(char_u *)0L, (char_u *)0L}
2378 #endif
2380 {"swapfile", "swf", P_BOOL|P_VI_DEF|P_RSTAT,
2381 (char_u *)&p_swf, PV_SWF,
2382 {(char_u *)TRUE, (char_u *)0L}},
2383 {"swapsync", "sws", P_STRING|P_VI_DEF,
2384 (char_u *)&p_sws, PV_NONE,
2385 {(char_u *)"fsync", (char_u *)0L}},
2386 {"switchbuf", "swb", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2387 (char_u *)&p_swb, PV_NONE,
2388 {(char_u *)"", (char_u *)0L}},
2389 {"synmaxcol", "smc", P_NUM|P_VI_DEF|P_RBUF,
2390 #ifdef FEAT_SYN_HL
2391 (char_u *)&p_smc, PV_SMC,
2392 {(char_u *)3000L, (char_u *)0L}
2393 #else
2394 (char_u *)NULL, PV_NONE,
2395 {(char_u *)0L, (char_u *)0L}
2396 #endif
2398 {"syntax", "syn", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB|P_NFNAME,
2399 #ifdef FEAT_SYN_HL
2400 (char_u *)&p_syn, PV_SYN,
2401 {(char_u *)"", (char_u *)0L}
2402 #else
2403 (char_u *)NULL, PV_NONE,
2404 {(char_u *)0L, (char_u *)0L}
2405 #endif
2407 {"tabline", "tal", P_STRING|P_VI_DEF|P_RALL,
2408 #ifdef FEAT_STL_OPT
2409 (char_u *)&p_tal, PV_NONE,
2410 #else
2411 (char_u *)NULL, PV_NONE,
2412 #endif
2413 {(char_u *)"", (char_u *)0L}},
2414 {"tabpagemax", "tpm", P_NUM|P_VI_DEF,
2415 #ifdef FEAT_WINDOWS
2416 (char_u *)&p_tpm, PV_NONE,
2417 #else
2418 (char_u *)NULL, PV_NONE,
2419 #endif
2420 {(char_u *)10L, (char_u *)0L}},
2421 {"tabstop", "ts", P_NUM|P_VI_DEF|P_RBUF,
2422 (char_u *)&p_ts, PV_TS,
2423 {(char_u *)8L, (char_u *)0L}},
2424 {"tagbsearch", "tbs", P_BOOL|P_VI_DEF,
2425 (char_u *)&p_tbs, PV_NONE,
2426 #ifdef VMS /* binary searching doesn't appear to work on VMS */
2427 {(char_u *)0L, (char_u *)0L}
2428 #else
2429 {(char_u *)TRUE, (char_u *)0L}
2430 #endif
2432 {"taglength", "tl", P_NUM|P_VI_DEF,
2433 (char_u *)&p_tl, PV_NONE,
2434 {(char_u *)0L, (char_u *)0L}},
2435 {"tagrelative", "tr", P_BOOL|P_VIM,
2436 (char_u *)&p_tr, PV_NONE,
2437 {(char_u *)FALSE, (char_u *)TRUE}},
2438 {"tags", "tag", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
2439 (char_u *)&p_tags, PV_TAGS,
2441 #if defined(FEAT_EMACS_TAGS) && !defined(CASE_INSENSITIVE_FILENAME)
2442 (char_u *)"./tags,./TAGS,tags,TAGS",
2443 #else
2444 (char_u *)"./tags,tags",
2445 #endif
2446 (char_u *)0L}},
2447 {"tagstack", "tgst", P_BOOL|P_VI_DEF,
2448 (char_u *)&p_tgst, PV_NONE,
2449 {(char_u *)TRUE, (char_u *)0L}},
2450 {"term", NULL, P_STRING|P_EXPAND|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RALL,
2451 (char_u *)&T_NAME, PV_NONE,
2452 {(char_u *)"", (char_u *)0L}},
2453 {"termbidi", "tbidi", P_BOOL|P_VI_DEF,
2454 #ifdef FEAT_ARABIC
2455 (char_u *)&p_tbidi, PV_NONE,
2456 #else
2457 (char_u *)NULL, PV_NONE,
2458 #endif
2459 {(char_u *)FALSE, (char_u *)0L}},
2460 {"termencoding", "tenc", P_STRING|P_VI_DEF|P_RCLR,
2461 #ifdef FEAT_MBYTE
2462 (char_u *)&p_tenc, PV_NONE,
2463 {(char_u *)"", (char_u *)0L}
2464 #else
2465 (char_u *)NULL, PV_NONE,
2466 {(char_u *)0L, (char_u *)0L}
2467 #endif
2469 {"terse", NULL, P_BOOL|P_VI_DEF,
2470 (char_u *)&p_terse, PV_NONE,
2471 {(char_u *)FALSE, (char_u *)0L}},
2472 {"textauto", "ta", P_BOOL|P_VIM,
2473 (char_u *)&p_ta, PV_NONE,
2474 {(char_u *)DFLT_TEXTAUTO, (char_u *)TRUE}},
2475 {"textmode", "tx", P_BOOL|P_VI_DEF|P_NO_MKRC,
2476 (char_u *)&p_tx, PV_TX,
2478 #ifdef USE_CRNL
2479 (char_u *)TRUE,
2480 #else
2481 (char_u *)FALSE,
2482 #endif
2483 (char_u *)0L}},
2484 {"textwidth", "tw", P_NUM|P_VI_DEF|P_VIM,
2485 (char_u *)&p_tw, PV_TW,
2486 {(char_u *)0L, (char_u *)0L}},
2487 {"thesaurus", "tsr", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
2488 #ifdef FEAT_INS_EXPAND
2489 (char_u *)&p_tsr, PV_TSR,
2490 #else
2491 (char_u *)NULL, PV_NONE,
2492 #endif
2493 {(char_u *)"", (char_u *)0L}},
2494 {"tildeop", "top", P_BOOL|P_VI_DEF|P_VIM,
2495 (char_u *)&p_to, PV_NONE,
2496 {(char_u *)FALSE, (char_u *)0L}},
2497 {"timeout", "to", P_BOOL|P_VI_DEF,
2498 (char_u *)&p_timeout, PV_NONE,
2499 {(char_u *)TRUE, (char_u *)0L}},
2500 {"timeoutlen", "tm", P_NUM|P_VI_DEF,
2501 (char_u *)&p_tm, PV_NONE,
2502 {(char_u *)1000L, (char_u *)0L}},
2503 {"title", NULL, P_BOOL|P_VI_DEF,
2504 #ifdef FEAT_TITLE
2505 (char_u *)&p_title, PV_NONE,
2506 #else
2507 (char_u *)NULL, PV_NONE,
2508 #endif
2509 {(char_u *)FALSE, (char_u *)0L}},
2510 {"titlelen", NULL, P_NUM|P_VI_DEF,
2511 #ifdef FEAT_TITLE
2512 (char_u *)&p_titlelen, PV_NONE,
2513 #else
2514 (char_u *)NULL, PV_NONE,
2515 #endif
2516 {(char_u *)85L, (char_u *)0L}},
2517 {"titleold", NULL, P_STRING|P_VI_DEF|P_GETTEXT|P_SECURE|P_NO_MKRC,
2518 #ifdef FEAT_TITLE
2519 (char_u *)&p_titleold, PV_NONE,
2520 {(char_u *)N_("Thanks for flying Vim"),
2521 (char_u *)0L}
2522 #else
2523 (char_u *)NULL, PV_NONE,
2524 {(char_u *)0L, (char_u *)0L}
2525 #endif
2527 {"titlestring", NULL, P_STRING|P_VI_DEF,
2528 #ifdef FEAT_TITLE
2529 (char_u *)&p_titlestring, PV_NONE,
2530 #else
2531 (char_u *)NULL, PV_NONE,
2532 #endif
2533 {(char_u *)"", (char_u *)0L}},
2534 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
2535 {"toolbar", "tb", P_STRING|P_COMMA|P_VI_DEF|P_NODUP,
2536 (char_u *)&p_toolbar, PV_NONE,
2537 {(char_u *)"icons,tooltips", (char_u *)0L}},
2538 #endif
2539 #if defined(FEAT_TOOLBAR) && ((defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)) \
2540 || defined(FEAT_GUI_MACVIM))
2541 {"toolbariconsize", "tbis", P_STRING|P_VI_DEF,
2542 (char_u *)&p_tbis, PV_NONE,
2543 {(char_u *)"small", (char_u *)0L}},
2544 #endif
2545 {"transparency", "transp", P_NUM|P_VIM|P_RCLR,
2546 #ifdef FEAT_TRANSPARENCY
2547 (char_u *)&p_transp, PV_NONE,
2548 #else
2549 (char_u *)NULL, PV_NONE,
2550 #endif
2551 {(char_u *)0L, (char_u *)0L} },
2552 {"ttimeout", NULL, P_BOOL|P_VI_DEF|P_VIM,
2553 (char_u *)&p_ttimeout, PV_NONE,
2554 {(char_u *)FALSE, (char_u *)0L}},
2555 {"ttimeoutlen", "ttm", P_NUM|P_VI_DEF,
2556 (char_u *)&p_ttm, PV_NONE,
2557 {(char_u *)-1L, (char_u *)0L}},
2558 {"ttybuiltin", "tbi", P_BOOL|P_VI_DEF,
2559 (char_u *)&p_tbi, PV_NONE,
2560 {(char_u *)TRUE, (char_u *)0L}},
2561 {"ttyfast", "tf", P_BOOL|P_NO_MKRC|P_VI_DEF,
2562 (char_u *)&p_tf, PV_NONE,
2563 {(char_u *)FALSE, (char_u *)0L}},
2564 {"ttymouse", "ttym", P_STRING|P_NODEFAULT|P_NO_MKRC|P_VI_DEF,
2565 #if defined(FEAT_MOUSE) && (defined(UNIX) || defined(VMS))
2566 (char_u *)&p_ttym, PV_NONE,
2567 #else
2568 (char_u *)NULL, PV_NONE,
2569 #endif
2570 {(char_u *)"", (char_u *)0L}},
2571 {"ttyscroll", "tsl", P_NUM|P_VI_DEF,
2572 (char_u *)&p_ttyscroll, PV_NONE,
2573 {(char_u *)999L, (char_u *)0L}},
2574 {"ttytype", "tty", P_STRING|P_EXPAND|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RALL,
2575 (char_u *)&T_NAME, PV_NONE,
2576 {(char_u *)"", (char_u *)0L}},
2577 {"undolevels", "ul", P_NUM|P_VI_DEF,
2578 (char_u *)&p_ul, PV_NONE,
2580 #if defined(UNIX) || defined(WIN3264) || defined(OS2) || defined(VMS)
2581 (char_u *)1000L,
2582 #else
2583 (char_u *)100L,
2584 #endif
2585 (char_u *)0L}},
2586 {"updatecount", "uc", P_NUM|P_VI_DEF,
2587 (char_u *)&p_uc, PV_NONE,
2588 {(char_u *)200L, (char_u *)0L}},
2589 {"updatetime", "ut", P_NUM|P_VI_DEF,
2590 (char_u *)&p_ut, PV_NONE,
2591 {(char_u *)4000L, (char_u *)0L}},
2592 {"verbose", "vbs", P_NUM|P_VI_DEF,
2593 (char_u *)&p_verbose, PV_NONE,
2594 {(char_u *)0L, (char_u *)0L}},
2595 {"verbosefile", "vfile", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
2596 (char_u *)&p_vfile, PV_NONE,
2597 {(char_u *)"", (char_u *)0L}},
2598 {"viewdir", "vdir", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
2599 #ifdef FEAT_SESSION
2600 (char_u *)&p_vdir, PV_NONE,
2601 {(char_u *)DFLT_VDIR, (char_u *)0L}
2602 #else
2603 (char_u *)NULL, PV_NONE,
2604 {(char_u *)0L, (char_u *)0L}
2605 #endif
2607 {"viewoptions", "vop", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2608 #ifdef FEAT_SESSION
2609 (char_u *)&p_vop, PV_NONE,
2610 {(char_u *)"folds,options,cursor", (char_u *)0L}
2611 #else
2612 (char_u *)NULL, PV_NONE,
2613 {(char_u *)0L, (char_u *)0L}
2614 #endif
2616 {"viminfo", "vi", P_STRING|P_COMMA|P_NODUP|P_SECURE,
2617 #ifdef FEAT_VIMINFO
2618 (char_u *)&p_viminfo, PV_NONE,
2619 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
2620 {(char_u *)"", (char_u *)"'20,<50,s10,h,rA:,rB:"}
2621 #else
2622 # ifdef AMIGA
2623 {(char_u *)"",
2624 (char_u *)"'20,<50,s10,h,rdf0:,rdf1:,rdf2:"}
2625 # else
2626 {(char_u *)"", (char_u *)"'20,<50,s10,h"}
2627 # endif
2628 #endif
2629 #else
2630 (char_u *)NULL, PV_NONE,
2631 {(char_u *)0L, (char_u *)0L}
2632 #endif
2634 {"virtualedit", "ve", P_STRING|P_COMMA|P_NODUP|P_VI_DEF|P_VIM,
2635 #ifdef FEAT_VIRTUALEDIT
2636 (char_u *)&p_ve, PV_NONE,
2637 {(char_u *)"", (char_u *)""}
2638 #else
2639 (char_u *)NULL, PV_NONE,
2640 {(char_u *)0L, (char_u *)0L}
2641 #endif
2643 {"visualbell", "vb", P_BOOL|P_VI_DEF,
2644 (char_u *)&p_vb, PV_NONE,
2645 {(char_u *)FALSE, (char_u *)0L}},
2646 {"w300", NULL, P_NUM|P_VI_DEF,
2647 (char_u *)NULL, PV_NONE,
2648 {(char_u *)0L, (char_u *)0L}},
2649 {"w1200", NULL, P_NUM|P_VI_DEF,
2650 (char_u *)NULL, PV_NONE,
2651 {(char_u *)0L, (char_u *)0L}},
2652 {"w9600", NULL, P_NUM|P_VI_DEF,
2653 (char_u *)NULL, PV_NONE,
2654 {(char_u *)0L, (char_u *)0L}},
2655 {"warn", NULL, P_BOOL|P_VI_DEF,
2656 (char_u *)&p_warn, PV_NONE,
2657 {(char_u *)TRUE, (char_u *)0L}},
2658 {"weirdinvert", "wiv", P_BOOL|P_VI_DEF|P_RCLR,
2659 (char_u *)&p_wiv, PV_NONE,
2660 {(char_u *)FALSE, (char_u *)0L}},
2661 {"whichwrap", "ww", P_STRING|P_VIM|P_COMMA|P_FLAGLIST,
2662 (char_u *)&p_ww, PV_NONE,
2663 {(char_u *)"", (char_u *)"b,s"}},
2664 {"wildchar", "wc", P_NUM|P_VIM,
2665 (char_u *)&p_wc, PV_NONE,
2666 {(char_u *)(long)Ctrl_E, (char_u *)(long)TAB}},
2667 {"wildcharm", "wcm", P_NUM|P_VI_DEF,
2668 (char_u *)&p_wcm, PV_NONE,
2669 {(char_u *)0L, (char_u *)0L}},
2670 {"wildignore", "wig", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2671 #ifdef FEAT_WILDIGN
2672 (char_u *)&p_wig, PV_NONE,
2673 #else
2674 (char_u *)NULL, PV_NONE,
2675 #endif
2676 {(char_u *)"", (char_u *)0L}},
2677 {"wildmenu", "wmnu", P_BOOL|P_VI_DEF,
2678 #ifdef FEAT_WILDMENU
2679 (char_u *)&p_wmnu, PV_NONE,
2680 #else
2681 (char_u *)NULL, PV_NONE,
2682 #endif
2683 {(char_u *)FALSE, (char_u *)0L}},
2684 {"wildmode", "wim", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2685 (char_u *)&p_wim, PV_NONE,
2686 {(char_u *)"full", (char_u *)0L}},
2687 {"wildoptions", "wop", P_STRING|P_VI_DEF,
2688 #ifdef FEAT_CMDL_COMPL
2689 (char_u *)&p_wop, PV_NONE,
2690 {(char_u *)"", (char_u *)0L}
2691 #else
2692 (char_u *)NULL, PV_NONE,
2693 {(char_u *)NULL, (char_u *)0L}
2694 #endif
2696 {"winaltkeys", "wak", P_STRING|P_VI_DEF,
2697 #ifdef FEAT_WAK
2698 (char_u *)&p_wak, PV_NONE,
2699 {(char_u *)"menu", (char_u *)0L}
2700 #else
2701 (char_u *)NULL, PV_NONE,
2702 {(char_u *)NULL, (char_u *)0L}
2703 #endif
2705 {"window", "wi", P_NUM|P_VI_DEF,
2706 (char_u *)&p_window, PV_NONE,
2707 {(char_u *)0L, (char_u *)0L}},
2708 {"winheight", "wh", P_NUM|P_VI_DEF,
2709 #ifdef FEAT_WINDOWS
2710 (char_u *)&p_wh, PV_NONE,
2711 #else
2712 (char_u *)NULL, PV_NONE,
2713 #endif
2714 {(char_u *)1L, (char_u *)0L}},
2715 {"winfixheight", "wfh", P_BOOL|P_VI_DEF|P_RSTAT,
2716 #ifdef FEAT_WINDOWS
2717 (char_u *)VAR_WIN, PV_WFH,
2718 #else
2719 (char_u *)NULL, PV_NONE,
2720 #endif
2721 {(char_u *)FALSE, (char_u *)0L}},
2722 {"winfixwidth", "wfw", P_BOOL|P_VI_DEF|P_RSTAT,
2723 #ifdef FEAT_VERTSPLIT
2724 (char_u *)VAR_WIN, PV_WFW,
2725 #else
2726 (char_u *)NULL, PV_NONE,
2727 #endif
2728 {(char_u *)FALSE, (char_u *)0L}},
2729 {"winminheight", "wmh", P_NUM|P_VI_DEF,
2730 #ifdef FEAT_WINDOWS
2731 (char_u *)&p_wmh, PV_NONE,
2732 #else
2733 (char_u *)NULL, PV_NONE,
2734 #endif
2735 {(char_u *)1L, (char_u *)0L}},
2736 {"winminwidth", "wmw", P_NUM|P_VI_DEF,
2737 #ifdef FEAT_VERTSPLIT
2738 (char_u *)&p_wmw, PV_NONE,
2739 #else
2740 (char_u *)NULL, PV_NONE,
2741 #endif
2742 {(char_u *)1L, (char_u *)0L}},
2743 {"winwidth", "wiw", P_NUM|P_VI_DEF,
2744 #ifdef FEAT_VERTSPLIT
2745 (char_u *)&p_wiw, PV_NONE,
2746 #else
2747 (char_u *)NULL, PV_NONE,
2748 #endif
2749 {(char_u *)20L, (char_u *)0L}},
2750 {"wrap", NULL, P_BOOL|P_VI_DEF|P_RWIN,
2751 (char_u *)VAR_WIN, PV_WRAP,
2752 {(char_u *)TRUE, (char_u *)0L}},
2753 {"wrapmargin", "wm", P_NUM|P_VI_DEF,
2754 (char_u *)&p_wm, PV_WM,
2755 {(char_u *)0L, (char_u *)0L}},
2756 {"wrapscan", "ws", P_BOOL|P_VI_DEF,
2757 (char_u *)&p_ws, PV_NONE,
2758 {(char_u *)TRUE, (char_u *)0L}},
2759 {"write", NULL, P_BOOL|P_VI_DEF,
2760 (char_u *)&p_write, PV_NONE,
2761 {(char_u *)TRUE, (char_u *)0L}},
2762 {"writeany", "wa", P_BOOL|P_VI_DEF,
2763 (char_u *)&p_wa, PV_NONE,
2764 {(char_u *)FALSE, (char_u *)0L}},
2765 {"writebackup", "wb", P_BOOL|P_VI_DEF|P_VIM,
2766 (char_u *)&p_wb, PV_NONE,
2768 #ifdef FEAT_WRITEBACKUP
2769 (char_u *)TRUE,
2770 #else
2771 (char_u *)FALSE,
2772 #endif
2773 (char_u *)0L}},
2774 {"writedelay", "wd", P_NUM|P_VI_DEF,
2775 (char_u *)&p_wd, PV_NONE,
2776 {(char_u *)0L, (char_u *)0L}},
2778 /* terminal output codes */
2779 #define p_term(sss, vvv) {sss, NULL, P_STRING|P_VI_DEF|P_RALL|P_SECURE, \
2780 (char_u *)&vvv, PV_NONE, \
2781 {(char_u *)"", (char_u *)0L}},
2783 p_term("t_AB", T_CAB)
2784 p_term("t_AF", T_CAF)
2785 p_term("t_AL", T_CAL)
2786 p_term("t_al", T_AL)
2787 p_term("t_bc", T_BC)
2788 p_term("t_cd", T_CD)
2789 p_term("t_ce", T_CE)
2790 p_term("t_cl", T_CL)
2791 p_term("t_cm", T_CM)
2792 p_term("t_Co", T_CCO)
2793 p_term("t_CS", T_CCS)
2794 p_term("t_cs", T_CS)
2795 #ifdef FEAT_VERTSPLIT
2796 p_term("t_CV", T_CSV)
2797 #endif
2798 p_term("t_ut", T_UT)
2799 p_term("t_da", T_DA)
2800 p_term("t_db", T_DB)
2801 p_term("t_DL", T_CDL)
2802 p_term("t_dl", T_DL)
2803 p_term("t_fs", T_FS)
2804 p_term("t_IE", T_CIE)
2805 p_term("t_IS", T_CIS)
2806 p_term("t_ke", T_KE)
2807 p_term("t_ks", T_KS)
2808 p_term("t_le", T_LE)
2809 p_term("t_mb", T_MB)
2810 p_term("t_md", T_MD)
2811 p_term("t_me", T_ME)
2812 p_term("t_mr", T_MR)
2813 p_term("t_ms", T_MS)
2814 p_term("t_nd", T_ND)
2815 p_term("t_op", T_OP)
2816 p_term("t_RI", T_CRI)
2817 p_term("t_RV", T_CRV)
2818 p_term("t_Sb", T_CSB)
2819 p_term("t_Sf", T_CSF)
2820 p_term("t_se", T_SE)
2821 p_term("t_so", T_SO)
2822 p_term("t_sr", T_SR)
2823 p_term("t_ts", T_TS)
2824 p_term("t_te", T_TE)
2825 p_term("t_ti", T_TI)
2826 p_term("t_ue", T_UE)
2827 p_term("t_us", T_US)
2828 p_term("t_vb", T_VB)
2829 p_term("t_ve", T_VE)
2830 p_term("t_vi", T_VI)
2831 p_term("t_vs", T_VS)
2832 p_term("t_WP", T_CWP)
2833 p_term("t_WS", T_CWS)
2834 p_term("t_SI", T_CSI)
2835 p_term("t_EI", T_CEI)
2836 p_term("t_xs", T_XS)
2837 p_term("t_ZH", T_CZH)
2838 p_term("t_ZR", T_CZR)
2840 /* terminal key codes are not in here */
2842 {NULL, NULL, 0, NULL, PV_NONE, {NULL, NULL}} /* end marker */
2845 #define PARAM_COUNT (sizeof(options) / sizeof(struct vimoption))
2847 #ifdef FEAT_MBYTE
2848 static char *(p_ambw_values[]) = {"single", "double", NULL};
2849 #endif
2850 static char *(p_bg_values[]) = {"light", "dark", NULL};
2851 static char *(p_nf_values[]) = {"octal", "hex", "alpha", NULL};
2852 static char *(p_ff_values[]) = {FF_UNIX, FF_DOS, FF_MAC, NULL};
2853 #ifdef FEAT_CMDL_COMPL
2854 static char *(p_wop_values[]) = {"tagfile", NULL};
2855 #endif
2856 #ifdef FEAT_WAK
2857 static char *(p_wak_values[]) = {"yes", "menu", "no", NULL};
2858 #endif
2859 static char *(p_mousem_values[]) = {"extend", "popup", "popup_setpos", "mac", NULL};
2860 #ifdef FEAT_VISUAL
2861 static char *(p_sel_values[]) = {"inclusive", "exclusive", "old", NULL};
2862 static char *(p_slm_values[]) = {"mouse", "key", "cmd", NULL};
2863 #endif
2864 #ifdef FEAT_VISUAL
2865 static char *(p_km_values[]) = {"startsel", "stopsel", NULL};
2866 #endif
2867 #ifdef FEAT_BROWSE
2868 static char *(p_bsdir_values[]) = {"current", "last", "buffer", NULL};
2869 #endif
2870 #ifdef FEAT_SCROLLBIND
2871 static char *(p_scbopt_values[]) = {"ver", "hor", "jump", NULL};
2872 #endif
2873 static char *(p_swb_values[]) = {"useopen", "usetab", "split", NULL};
2874 static char *(p_debug_values[]) = {"msg", "throw", "beep", NULL};
2875 #ifdef FEAT_VERTSPLIT
2876 static char *(p_ead_values[]) = {"both", "ver", "hor", NULL};
2877 #endif
2878 #if defined(FEAT_QUICKFIX)
2879 # ifdef FEAT_AUTOCMD
2880 static char *(p_buftype_values[]) = {"nofile", "nowrite", "quickfix", "help", "acwrite", NULL};
2881 # else
2882 static char *(p_buftype_values[]) = {"nofile", "nowrite", "quickfix", "help", NULL};
2883 # endif
2884 static char *(p_bufhidden_values[]) = {"hide", "unload", "delete", "wipe", NULL};
2885 #endif
2886 static char *(p_bs_values[]) = {"indent", "eol", "start", NULL};
2887 #ifdef FEAT_FOLDING
2888 static char *(p_fdm_values[]) = {"manual", "expr", "marker", "indent", "syntax",
2889 # ifdef FEAT_DIFF
2890 "diff",
2891 # endif
2892 NULL};
2893 static char *(p_fcl_values[]) = {"all", NULL};
2894 #endif
2895 #ifdef FEAT_INS_EXPAND
2896 static char *(p_cot_values[]) = {"menu", "menuone", "longest", "preview", NULL};
2897 #endif
2899 static void set_option_default __ARGS((int, int opt_flags, int compatible));
2900 static void set_options_default __ARGS((int opt_flags));
2901 static char_u *term_bg_default __ARGS((void));
2902 static void did_set_option __ARGS((int opt_idx, int opt_flags, int new_value));
2903 static char_u *illegal_char __ARGS((char_u *, int));
2904 static int string_to_key __ARGS((char_u *arg));
2905 #ifdef FEAT_CMDWIN
2906 static char_u *check_cedit __ARGS((void));
2907 #endif
2908 #ifdef FEAT_TITLE
2909 static void did_set_title __ARGS((int icon));
2910 #endif
2911 static char_u *option_expand __ARGS((int opt_idx, char_u *val));
2912 static void didset_options __ARGS((void));
2913 static void check_string_option __ARGS((char_u **pp));
2914 #if defined(FEAT_EVAL) || defined(PROTO)
2915 static long_u *insecure_flag __ARGS((int opt_idx, int opt_flags));
2916 #else
2917 # define insecure_flag(opt_idx, opt_flags) (&options[opt_idx].flags)
2918 #endif
2919 static void set_string_option_global __ARGS((int opt_idx, char_u **varp));
2920 static void set_string_option __ARGS((int opt_idx, char_u *value, int opt_flags));
2921 static char_u *did_set_string_option __ARGS((int opt_idx, char_u **varp, int new_value_alloced, char_u *oldval, char_u *errbuf, int opt_flags));
2922 static char_u *set_chars_option __ARGS((char_u **varp));
2923 #ifdef FEAT_CLIPBOARD
2924 static char_u *check_clipboard_option __ARGS((void));
2925 #endif
2926 #ifdef FEAT_SPELL
2927 static char_u *compile_cap_prog __ARGS((buf_T *buf));
2928 #endif
2929 #ifdef FEAT_EVAL
2930 static void set_option_scriptID_idx __ARGS((int opt_idx, int opt_flags, int id));
2931 #endif
2932 static char_u *set_bool_option __ARGS((int opt_idx, char_u *varp, int value, int opt_flags));
2933 static char_u *set_num_option __ARGS((int opt_idx, char_u *varp, long value, char_u *errbuf, size_t errbuflen, int opt_flags));
2934 static void check_redraw __ARGS((long_u flags));
2935 static int findoption __ARGS((char_u *));
2936 static int find_key_option __ARGS((char_u *));
2937 static void showoptions __ARGS((int all, int opt_flags));
2938 static int optval_default __ARGS((struct vimoption *, char_u *varp));
2939 static void showoneopt __ARGS((struct vimoption *, int opt_flags));
2940 static int put_setstring __ARGS((FILE *fd, char *cmd, char *name, char_u **valuep, int expand));
2941 static int put_setnum __ARGS((FILE *fd, char *cmd, char *name, long *valuep));
2942 static int put_setbool __ARGS((FILE *fd, char *cmd, char *name, int value));
2943 static int istermoption __ARGS((struct vimoption *));
2944 static char_u *get_varp_scope __ARGS((struct vimoption *p, int opt_flags));
2945 static char_u *get_varp __ARGS((struct vimoption *));
2946 static void option_value2string __ARGS((struct vimoption *, int opt_flags));
2947 static int wc_use_keyname __ARGS((char_u *varp, long *wcp));
2948 #ifdef FEAT_LANGMAP
2949 static void langmap_init __ARGS((void));
2950 static void langmap_set __ARGS((void));
2951 #endif
2952 static void paste_option_changed __ARGS((void));
2953 static void compatible_set __ARGS((void));
2954 #ifdef FEAT_LINEBREAK
2955 static void fill_breakat_flags __ARGS((void));
2956 #endif
2957 static int opt_strings_flags __ARGS((char_u *val, char **values, unsigned *flagp, int list));
2958 static int check_opt_strings __ARGS((char_u *val, char **values, int));
2959 static int check_opt_wim __ARGS((void));
2960 #ifdef FEAT_FULLSCREEN
2961 static int check_fuoptions __ARGS((char_u *, unsigned *, int *));
2962 #endif
2965 * Initialize the options, first part.
2967 * Called only once from main(), just after creating the first buffer.
2969 void
2970 set_init_1()
2972 char_u *p;
2973 int opt_idx;
2974 long_u n;
2975 #if defined(FEAT_GUI_MACVIM) && defined(FEAT_MBYTE)
2976 int did_mb_init;
2977 #endif
2979 #ifdef FEAT_LANGMAP
2980 langmap_init();
2981 #endif
2983 /* Be Vi compatible by default */
2984 p_cp = TRUE;
2986 /* Use POSIX compatibility when $VIM_POSIX is set. */
2987 if (mch_getenv((char_u *)"VIM_POSIX") != NULL)
2989 set_string_default("cpo", (char_u *)CPO_ALL);
2990 set_string_default("shm", (char_u *)"A");
2994 * Find default value for 'shell' option.
2995 * Don't use it if it is empty.
2997 if (((p = mch_getenv((char_u *)"SHELL")) != NULL && *p != NUL)
2998 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
2999 # ifdef __EMX__
3000 || ((p = mch_getenv((char_u *)"EMXSHELL")) != NULL && *p != NUL)
3001 # endif
3002 || ((p = mch_getenv((char_u *)"COMSPEC")) != NULL && *p != NUL)
3003 # ifdef WIN3264
3004 || ((p = default_shell()) != NULL && *p != NUL)
3005 # endif
3006 #endif
3008 set_string_default("sh", p);
3010 #ifdef FEAT_WILDIGN
3012 * Set the default for 'backupskip' to include environment variables for
3013 * temp files.
3016 # ifdef UNIX
3017 static char *(names[4]) = {"", "TMPDIR", "TEMP", "TMP"};
3018 # else
3019 static char *(names[3]) = {"TMPDIR", "TEMP", "TMP"};
3020 # endif
3021 int len;
3022 garray_T ga;
3023 int mustfree;
3025 ga_init2(&ga, 1, 100);
3026 for (n = 0; n < (long)(sizeof(names) / sizeof(char *)); ++n)
3028 mustfree = FALSE;
3029 # ifdef UNIX
3030 if (*names[n] == NUL)
3031 p = (char_u *)"/tmp";
3032 else
3033 # endif
3034 p = vim_getenv((char_u *)names[n], &mustfree);
3035 if (p != NULL && *p != NUL)
3037 /* First time count the NUL, otherwise count the ','. */
3038 len = (int)STRLEN(p) + 3;
3039 if (ga_grow(&ga, len) == OK)
3041 if (ga.ga_len > 0)
3042 STRCAT(ga.ga_data, ",");
3043 STRCAT(ga.ga_data, p);
3044 add_pathsep(ga.ga_data);
3045 STRCAT(ga.ga_data, "*");
3046 ga.ga_len += len;
3049 if (mustfree)
3050 vim_free(p);
3052 if (ga.ga_data != NULL)
3054 set_string_default("bsk", ga.ga_data);
3055 vim_free(ga.ga_data);
3058 #endif
3061 * 'maxmemtot' and 'maxmem' may have to be adjusted for available memory
3063 opt_idx = findoption((char_u *)"maxmemtot");
3064 if (opt_idx >= 0)
3066 #if !defined(HAVE_AVAIL_MEM) && !defined(HAVE_TOTAL_MEM)
3067 if (options[opt_idx].def_val[VI_DEFAULT] == (char_u *)0L)
3068 #endif
3070 #ifdef HAVE_AVAIL_MEM
3071 /* Use amount of memory available at this moment. */
3072 n = (mch_avail_mem(FALSE) >> 11);
3073 #else
3074 # ifdef HAVE_TOTAL_MEM
3075 /* Use amount of memory available to Vim. */
3076 n = (mch_total_mem(FALSE) >> 1);
3077 # else
3078 n = (0x7fffffff >> 11);
3079 # endif
3080 #endif
3081 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)n;
3082 opt_idx = findoption((char_u *)"maxmem");
3083 if (opt_idx >= 0)
3085 #if !defined(HAVE_AVAIL_MEM) && !defined(HAVE_TOTAL_MEM)
3086 if ((long)options[opt_idx].def_val[VI_DEFAULT] > n
3087 || (long)options[opt_idx].def_val[VI_DEFAULT] == 0L)
3088 #endif
3089 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)n;
3094 #ifdef FEAT_GUI_W32
3095 /* force 'shortname' for Win32s */
3096 if (gui_is_win32s())
3098 opt_idx = findoption((char_u *)"shortname");
3099 if (opt_idx >= 0)
3100 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)TRUE;
3102 #endif
3104 #ifdef FEAT_SEARCHPATH
3106 char_u *cdpath;
3107 char_u *buf;
3108 int i;
3109 int j;
3110 int mustfree = FALSE;
3112 /* Initialize the 'cdpath' option's default value. */
3113 cdpath = vim_getenv((char_u *)"CDPATH", &mustfree);
3114 if (cdpath != NULL)
3116 buf = alloc((unsigned)((STRLEN(cdpath) << 1) + 2));
3117 if (buf != NULL)
3119 buf[0] = ','; /* start with ",", current dir first */
3120 j = 1;
3121 for (i = 0; cdpath[i] != NUL; ++i)
3123 if (vim_ispathlistsep(cdpath[i]))
3124 buf[j++] = ',';
3125 else
3127 if (cdpath[i] == ' ' || cdpath[i] == ',')
3128 buf[j++] = '\\';
3129 buf[j++] = cdpath[i];
3132 buf[j] = NUL;
3133 opt_idx = findoption((char_u *)"cdpath");
3134 if (opt_idx >= 0)
3136 options[opt_idx].def_val[VI_DEFAULT] = buf;
3137 options[opt_idx].flags |= P_DEF_ALLOCED;
3140 if (mustfree)
3141 vim_free(cdpath);
3144 #endif
3146 #if defined(FEAT_POSTSCRIPT) && (defined(MSWIN) || defined(OS2) || defined(VMS) || defined(EBCDIC) || defined(MAC) || defined(hpux))
3147 /* Set print encoding on platforms that don't default to latin1 */
3148 set_string_default("penc",
3149 # if defined(MSWIN) || defined(OS2)
3150 (char_u *)"cp1252"
3151 # else
3152 # ifdef VMS
3153 (char_u *)"dec-mcs"
3154 # else
3155 # ifdef EBCDIC
3156 (char_u *)"ebcdic-uk"
3157 # else
3158 # ifdef MAC
3159 (char_u *)"mac-roman"
3160 # else /* HPUX */
3161 (char_u *)"hp-roman8"
3162 # endif
3163 # endif
3164 # endif
3165 # endif
3167 #endif
3169 #ifdef FEAT_POSTSCRIPT
3170 /* 'printexpr' must be allocated to be able to evaluate it. */
3171 set_string_default("pexpr",
3172 # if defined(MSWIN) || defined(MSDOS) || defined(OS2)
3173 (char_u *)"system('copy' . ' ' . v:fname_in . (&printdevice == '' ? ' LPT1:' : (' \"' . &printdevice . '\"'))) . delete(v:fname_in)"
3174 # else
3175 # ifdef VMS
3176 (char_u *)"system('print/delete' . (&printdevice == '' ? '' : ' /queue=' . &printdevice) . ' ' . v:fname_in)"
3178 # else
3179 (char_u *)"system('lpr' . (&printdevice == '' ? '' : ' -P' . &printdevice) . ' ' . v:fname_in) . delete(v:fname_in) + v:shell_error"
3180 # endif
3181 # endif
3183 #endif
3186 * Set all the options (except the terminal options) to their default
3187 * value. Also set the global value for local options.
3189 set_options_default(0);
3191 #ifdef FEAT_GUI
3192 if (found_reverse_arg)
3193 set_option_value((char_u *)"bg", 0L, (char_u *)"dark", 0);
3194 #endif
3196 curbuf->b_p_initialized = TRUE;
3197 curbuf->b_p_ar = -1; /* no local 'autoread' value */
3198 check_buf_options(curbuf);
3199 check_win_options(curwin);
3200 check_options();
3202 /* Must be before option_expand(), because that one needs vim_isIDc() */
3203 didset_options();
3205 #ifdef FEAT_SPELL
3206 /* Use the current chartab for the generic chartab. */
3207 init_spell_chartab();
3208 #endif
3210 #ifdef FEAT_LINEBREAK
3212 * initialize the table for 'breakat'.
3214 fill_breakat_flags();
3215 #endif
3218 * Expand environment variables and things like "~" for the defaults.
3219 * If option_expand() returns non-NULL the variable is expanded. This can
3220 * only happen for non-indirect options.
3221 * Also set the default to the expanded value, so ":set" does not list
3222 * them.
3223 * Don't set the P_ALLOCED flag, because we don't want to free the
3224 * default.
3226 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
3228 if ((options[opt_idx].flags & P_GETTEXT)
3229 && options[opt_idx].var != NULL)
3230 p = (char_u *)_(*(char **)options[opt_idx].var);
3231 else
3232 p = option_expand(opt_idx, NULL);
3233 if (p != NULL && (p = vim_strsave(p)) != NULL)
3235 *(char_u **)options[opt_idx].var = p;
3236 /* VIMEXP
3237 * Defaults for all expanded options are currently the same for Vi
3238 * and Vim. When this changes, add some code here! Also need to
3239 * split P_DEF_ALLOCED in two.
3241 if (options[opt_idx].flags & P_DEF_ALLOCED)
3242 vim_free(options[opt_idx].def_val[VI_DEFAULT]);
3243 options[opt_idx].def_val[VI_DEFAULT] = p;
3244 options[opt_idx].flags |= P_DEF_ALLOCED;
3248 /* Initialize the highlight_attr[] table. */
3249 highlight_changed();
3251 save_file_ff(curbuf); /* Buffer is unchanged */
3253 /* Parse default for 'wildmode' */
3254 check_opt_wim();
3256 #if defined(FEAT_ARABIC)
3257 /* Detect use of mlterm.
3258 * Mlterm is a terminal emulator akin to xterm that has some special
3259 * abilities (bidi namely).
3260 * NOTE: mlterm's author is being asked to 'set' a variable
3261 * instead of an environment variable due to inheritance.
3263 if (mch_getenv((char_u *)"MLTERM") != NULL)
3264 set_option_value((char_u *)"tbidi", 1L, NULL, 0);
3265 #endif
3267 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
3268 /* Parse default for 'fillchars'. */
3269 (void)set_chars_option(&p_fcs);
3270 #endif
3272 #ifdef FEAT_CLIPBOARD
3273 /* Parse default for 'clipboard' */
3274 (void)check_clipboard_option();
3275 #endif
3277 #ifdef FEAT_MBYTE
3278 # if defined(WIN3264) && defined(FEAT_GETTEXT)
3280 * If $LANG isn't set, try to get a good value for it. This makes the
3281 * right language be used automatically. Don't do this for English.
3283 if (mch_getenv((char_u *)"LANG") == NULL)
3285 char buf[20];
3287 /* Could use LOCALE_SISO639LANGNAME, but it's not in Win95.
3288 * LOCALE_SABBREVLANGNAME gives us three letters, like "enu", we use
3289 * only the first two. */
3290 n = GetLocaleInfo(LOCALE_USER_DEFAULT, LOCALE_SABBREVLANGNAME,
3291 (LPTSTR)buf, 20);
3292 if (n >= 2 && STRNICMP(buf, "en", 2) != 0)
3294 /* There are a few exceptions (probably more) */
3295 if (STRNICMP(buf, "cht", 3) == 0 || STRNICMP(buf, "zht", 3) == 0)
3296 STRCPY(buf, "zh_TW");
3297 else if (STRNICMP(buf, "chs", 3) == 0
3298 || STRNICMP(buf, "zhc", 3) == 0)
3299 STRCPY(buf, "zh_CN");
3300 else if (STRNICMP(buf, "jp", 2) == 0)
3301 STRCPY(buf, "ja");
3302 else
3303 buf[2] = NUL; /* truncate to two-letter code */
3304 vim_setenv("LANG", buf);
3307 # else
3308 # ifdef MACOS_CONVERT
3309 if (mch_getenv((char_u *)"LANG") == NULL)
3311 char buf[20];
3312 if (LocaleRefGetPartString(NULL,
3313 kLocaleLanguageMask | kLocaleLanguageVariantMask |
3314 kLocaleRegionMask | kLocaleRegionVariantMask,
3315 sizeof buf, buf) == noErr && *buf)
3317 vim_setenv((char_u *)"LANG", (char_u *)buf);
3318 # ifdef HAVE_LOCALE_H
3319 setlocale(LC_ALL, "");
3320 # endif
3323 # endif
3324 # endif
3326 /* enc_locale() will try to find the encoding of the current locale. */
3327 p = enc_locale();
3328 if (p != NULL)
3330 char_u *save_enc;
3332 /* Try setting 'encoding' and check if the value is valid.
3333 * If not, go back to the default "latin1". */
3334 save_enc = p_enc;
3335 p_enc = p;
3336 if (STRCMP(p_enc, "gb18030") == 0)
3338 /* We don't support "gb18030", but "cp936" is a good substitute
3339 * for practical purposes, thus use that. It's not an alias to
3340 * still support conversion between gb18030 and utf-8. */
3341 p_enc = vim_strsave((char_u *)"cp936");
3342 vim_free(p);
3344 #if defined(FEAT_GUI_MACVIM)
3345 did_mb_init = (mb_init() == NULL);
3346 if (!did_mb_init)
3348 /* The encoding returned by enc_locale() was invalid, so fall back
3349 * on using utf-8 as the default encoding in MacVim. */
3350 vim_free(p_enc);
3351 p_enc = vim_strsave((char_u *)"utf-8");
3352 did_mb_init = (mb_init() == NULL);
3355 /* did_mb_init should always be TRUE, but check just in case. */
3356 if (did_mb_init)
3357 #else
3358 if (mb_init() == NULL)
3359 #endif
3361 opt_idx = findoption((char_u *)"encoding");
3362 if (opt_idx >= 0)
3364 options[opt_idx].def_val[VI_DEFAULT] = p_enc;
3365 options[opt_idx].flags |= P_DEF_ALLOCED;
3368 #if defined(MSDOS) || defined(MSWIN) || defined(OS2) || defined(MACOS) \
3369 || defined(VMS)
3370 if (STRCMP(p_enc, "latin1") == 0
3371 # ifdef FEAT_MBYTE
3372 || enc_utf8
3373 # endif
3376 /* Adjust the default for 'isprint' and 'iskeyword' to match
3377 * latin1. Also set the defaults for when 'nocompatible' is
3378 * set. */
3379 set_string_option_direct((char_u *)"isp", -1,
3380 ISP_LATIN1, OPT_FREE, SID_NONE);
3381 set_string_option_direct((char_u *)"isk", -1,
3382 ISK_LATIN1, OPT_FREE, SID_NONE);
3383 opt_idx = findoption((char_u *)"isp");
3384 if (opt_idx >= 0)
3385 options[opt_idx].def_val[VIM_DEFAULT] = ISP_LATIN1;
3386 opt_idx = findoption((char_u *)"isk");
3387 if (opt_idx >= 0)
3388 options[opt_idx].def_val[VIM_DEFAULT] = ISK_LATIN1;
3389 (void)init_chartab();
3391 #endif
3393 # if defined(WIN3264) && !defined(FEAT_GUI)
3394 /* Win32 console: When GetACP() returns a different value from
3395 * GetConsoleCP() set 'termencoding'. */
3396 if (GetACP() != GetConsoleCP())
3398 char buf[50];
3400 sprintf(buf, "cp%ld", (long)GetConsoleCP());
3401 p_tenc = vim_strsave((char_u *)buf);
3402 if (p_tenc != NULL)
3404 opt_idx = findoption((char_u *)"termencoding");
3405 if (opt_idx >= 0)
3407 options[opt_idx].def_val[VI_DEFAULT] = p_tenc;
3408 options[opt_idx].flags |= P_DEF_ALLOCED;
3410 convert_setup(&input_conv, p_tenc, p_enc);
3411 convert_setup(&output_conv, p_enc, p_tenc);
3413 else
3414 p_tenc = empty_option;
3416 # endif
3417 # if defined(WIN3264) && defined(FEAT_MBYTE)
3418 /* $HOME may have characters in active code page. */
3419 init_homedir();
3420 # endif
3422 else
3424 vim_free(p_enc);
3425 p_enc = save_enc;
3428 #endif
3430 #ifdef FEAT_MULTI_LANG
3431 /* Set the default for 'helplang'. */
3432 set_helplang_default(get_mess_lang());
3433 #endif
3437 * Set an option to its default value.
3438 * This does not take care of side effects!
3440 static void
3441 set_option_default(opt_idx, opt_flags, compatible)
3442 int opt_idx;
3443 int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */
3444 int compatible; /* use Vi default value */
3446 char_u *varp; /* pointer to variable for current option */
3447 int dvi; /* index in def_val[] */
3448 long_u flags;
3449 long_u *flagsp;
3450 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
3452 varp = get_varp_scope(&(options[opt_idx]), both ? OPT_LOCAL : opt_flags);
3453 flags = options[opt_idx].flags;
3454 if (varp != NULL) /* skip hidden option, nothing to do for it */
3456 dvi = ((flags & P_VI_DEF) || compatible) ? VI_DEFAULT : VIM_DEFAULT;
3457 if (flags & P_STRING)
3459 /* Use set_string_option_direct() for local options to handle
3460 * freeing and allocating the value. */
3461 if (options[opt_idx].indir != PV_NONE)
3462 set_string_option_direct(NULL, opt_idx,
3463 options[opt_idx].def_val[dvi], opt_flags, 0);
3464 else
3466 if ((opt_flags & OPT_FREE) && (flags & P_ALLOCED))
3467 free_string_option(*(char_u **)(varp));
3468 *(char_u **)varp = options[opt_idx].def_val[dvi];
3469 options[opt_idx].flags &= ~P_ALLOCED;
3472 else if (flags & P_NUM)
3474 if (options[opt_idx].indir == PV_SCROLL)
3475 win_comp_scroll(curwin);
3476 else
3478 *(long *)varp = (long)(long_i)options[opt_idx].def_val[dvi];
3479 /* May also set global value for local option. */
3480 if (both)
3481 *(long *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) =
3482 *(long *)varp;
3485 else /* P_BOOL */
3487 /* the cast to long is required for Manx C, long_i is needed for
3488 * MSVC */
3489 *(int *)varp = (int)(long)(long_i)options[opt_idx].def_val[dvi];
3490 #ifdef UNIX
3491 /* 'modeline' defaults to off for root */
3492 if (options[opt_idx].indir == PV_ML && getuid() == ROOT_UID)
3493 *(int *)varp = FALSE;
3494 #endif
3495 /* May also set global value for local option. */
3496 if (both)
3497 *(int *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) =
3498 *(int *)varp;
3501 /* The default value is not insecure. */
3502 flagsp = insecure_flag(opt_idx, opt_flags);
3503 *flagsp = *flagsp & ~P_INSECURE;
3506 #ifdef FEAT_EVAL
3507 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
3508 #endif
3512 * Set all options (except terminal options) to their default value.
3514 static void
3515 set_options_default(opt_flags)
3516 int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */
3518 int i;
3519 #ifdef FEAT_WINDOWS
3520 win_T *wp;
3521 tabpage_T *tp;
3522 #endif
3524 for (i = 0; !istermoption(&options[i]); i++)
3525 if (!(options[i].flags & P_NODEFAULT))
3526 set_option_default(i, opt_flags, p_cp);
3528 #ifdef FEAT_WINDOWS
3529 /* The 'scroll' option must be computed for all windows. */
3530 FOR_ALL_TAB_WINDOWS(tp, wp)
3531 win_comp_scroll(wp);
3532 #else
3533 win_comp_scroll(curwin);
3534 #endif
3538 * Set the Vi-default value of a string option.
3539 * Used for 'sh', 'backupskip' and 'term'.
3541 void
3542 set_string_default(name, val)
3543 char *name;
3544 char_u *val;
3546 char_u *p;
3547 int opt_idx;
3549 p = vim_strsave(val);
3550 if (p != NULL) /* we don't want a NULL */
3552 opt_idx = findoption((char_u *)name);
3553 if (opt_idx >= 0)
3555 if (options[opt_idx].flags & P_DEF_ALLOCED)
3556 vim_free(options[opt_idx].def_val[VI_DEFAULT]);
3557 options[opt_idx].def_val[VI_DEFAULT] = p;
3558 options[opt_idx].flags |= P_DEF_ALLOCED;
3564 * Set the Vi-default value of a number option.
3565 * Used for 'lines' and 'columns'.
3567 void
3568 set_number_default(name, val)
3569 char *name;
3570 long val;
3572 int opt_idx;
3574 opt_idx = findoption((char_u *)name);
3575 if (opt_idx >= 0)
3576 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
3579 #if defined(EXITFREE) || defined(PROTO)
3581 * Free all options.
3583 void
3584 free_all_options()
3586 int i;
3588 for (i = 0; !istermoption(&options[i]); i++)
3590 if (options[i].indir == PV_NONE)
3592 /* global option: free value and default value. */
3593 if (options[i].flags & P_ALLOCED && options[i].var != NULL)
3594 free_string_option(*(char_u **)options[i].var);
3595 if (options[i].flags & P_DEF_ALLOCED)
3596 free_string_option(options[i].def_val[VI_DEFAULT]);
3598 else if (options[i].var != VAR_WIN
3599 && (options[i].flags & P_STRING))
3600 /* buffer-local option: free global value */
3601 free_string_option(*(char_u **)options[i].var);
3604 #endif
3608 * Initialize the options, part two: After getting Rows and Columns and
3609 * setting 'term'.
3611 void
3612 set_init_2()
3614 int idx;
3617 * 'scroll' defaults to half the window height. Note that this default is
3618 * wrong when the window height changes.
3620 set_number_default("scroll", (long)((long_u)Rows >> 1));
3621 idx = findoption((char_u *)"scroll");
3622 if (idx >= 0 && !(options[idx].flags & P_WAS_SET))
3623 set_option_default(idx, OPT_LOCAL, p_cp);
3624 comp_col();
3627 * 'window' is only for backwards compatibility with Vi.
3628 * Default is Rows - 1.
3630 if (!option_was_set((char_u *)"window"))
3631 p_window = Rows - 1;
3632 set_number_default("window", Rows - 1);
3634 /* For DOS console the default is always black. */
3635 #if !((defined(MSDOS) || defined(OS2) || defined(WIN3264)) && !defined(FEAT_GUI))
3637 * If 'background' wasn't set by the user, try guessing the value,
3638 * depending on the terminal name. Only need to check for terminals
3639 * with a dark background, that can handle color.
3641 idx = findoption((char_u *)"bg");
3642 if (idx >= 0 && !(options[idx].flags & P_WAS_SET)
3643 && *term_bg_default() == 'd')
3645 set_string_option_direct(NULL, idx, (char_u *)"dark", OPT_FREE, 0);
3646 /* don't mark it as set, when starting the GUI it may be
3647 * changed again */
3648 options[idx].flags &= ~P_WAS_SET;
3650 #endif
3652 #ifdef CURSOR_SHAPE
3653 parse_shape_opt(SHAPE_CURSOR); /* set cursor shapes from 'guicursor' */
3654 #endif
3655 #ifdef FEAT_MOUSESHAPE
3656 parse_shape_opt(SHAPE_MOUSE); /* set mouse shapes from 'mouseshape' */
3657 #endif
3658 #ifdef FEAT_PRINTER
3659 (void)parse_printoptions(); /* parse 'printoptions' default value */
3660 #endif
3664 * Return "dark" or "light" depending on the kind of terminal.
3665 * This is just guessing! Recognized are:
3666 * "linux" Linux console
3667 * "screen.linux" Linux console with screen
3668 * "cygwin" Cygwin shell
3669 * "putty" Putty program
3670 * We also check the COLORFGBG environment variable, which is set by
3671 * rxvt and derivatives. This variable contains either two or three
3672 * values separated by semicolons; we want the last value in either
3673 * case. If this value is 0-6 or 8, our background is dark.
3675 static char_u *
3676 term_bg_default()
3678 #if defined(MSDOS) || defined(OS2) || defined(WIN3264)
3679 /* DOS console nearly always black */
3680 return (char_u *)"dark";
3681 #else
3682 char_u *p;
3684 if (STRCMP(T_NAME, "linux") == 0
3685 || STRCMP(T_NAME, "screen.linux") == 0
3686 || STRCMP(T_NAME, "cygwin") == 0
3687 || STRCMP(T_NAME, "putty") == 0
3688 || ((p = mch_getenv((char_u *)"COLORFGBG")) != NULL
3689 && (p = vim_strrchr(p, ';')) != NULL
3690 && ((p[1] >= '0' && p[1] <= '6') || p[1] == '8')
3691 && p[2] == NUL))
3692 return (char_u *)"dark";
3693 return (char_u *)"light";
3694 #endif
3698 * Initialize the options, part three: After reading the .vimrc
3700 void
3701 set_init_3()
3703 #if defined(UNIX) || defined(OS2) || defined(WIN3264)
3705 * Set 'shellpipe' and 'shellredir', depending on the 'shell' option.
3706 * This is done after other initializations, where 'shell' might have been
3707 * set, but only if they have not been set before.
3709 char_u *p;
3710 int idx_srr;
3711 int do_srr;
3712 #ifdef FEAT_QUICKFIX
3713 int idx_sp;
3714 int do_sp;
3715 #endif
3717 idx_srr = findoption((char_u *)"srr");
3718 if (idx_srr < 0)
3719 do_srr = FALSE;
3720 else
3721 do_srr = !(options[idx_srr].flags & P_WAS_SET);
3722 #ifdef FEAT_QUICKFIX
3723 idx_sp = findoption((char_u *)"sp");
3724 if (idx_sp < 0)
3725 do_sp = FALSE;
3726 else
3727 do_sp = !(options[idx_sp].flags & P_WAS_SET);
3728 #endif
3731 * Isolate the name of the shell:
3732 * - Skip beyond any path. E.g., "/usr/bin/csh -f" -> "csh -f".
3733 * - Remove any argument. E.g., "csh -f" -> "csh".
3735 p = gettail(p_sh);
3736 p = vim_strnsave(p, (int)(skiptowhite(p) - p));
3737 if (p != NULL)
3740 * Default for p_sp is "| tee", for p_srr is ">".
3741 * For known shells it is changed here to include stderr.
3743 if ( fnamecmp(p, "csh") == 0
3744 || fnamecmp(p, "tcsh") == 0
3745 # if defined(OS2) || defined(WIN3264) /* also check with .exe extension */
3746 || fnamecmp(p, "csh.exe") == 0
3747 || fnamecmp(p, "tcsh.exe") == 0
3748 # endif
3751 #if defined(FEAT_QUICKFIX)
3752 if (do_sp)
3754 # ifdef WIN3264
3755 p_sp = (char_u *)">&";
3756 # else
3757 p_sp = (char_u *)"|& tee";
3758 # endif
3759 options[idx_sp].def_val[VI_DEFAULT] = p_sp;
3761 #endif
3762 if (do_srr)
3764 p_srr = (char_u *)">&";
3765 options[idx_srr].def_val[VI_DEFAULT] = p_srr;
3768 else
3769 # ifndef OS2 /* Always use bourne shell style redirection if we reach this */
3770 if ( fnamecmp(p, "sh") == 0
3771 || fnamecmp(p, "ksh") == 0
3772 || fnamecmp(p, "zsh") == 0
3773 || fnamecmp(p, "zsh-beta") == 0
3774 || fnamecmp(p, "bash") == 0
3775 # ifdef WIN3264
3776 || fnamecmp(p, "cmd") == 0
3777 || fnamecmp(p, "sh.exe") == 0
3778 || fnamecmp(p, "ksh.exe") == 0
3779 || fnamecmp(p, "zsh.exe") == 0
3780 || fnamecmp(p, "zsh-beta.exe") == 0
3781 || fnamecmp(p, "bash.exe") == 0
3782 || fnamecmp(p, "cmd.exe") == 0
3783 # endif
3785 # endif
3787 #if defined(FEAT_QUICKFIX)
3788 if (do_sp)
3790 # ifdef WIN3264
3791 p_sp = (char_u *)">%s 2>&1";
3792 # else
3793 p_sp = (char_u *)"2>&1| tee";
3794 # endif
3795 options[idx_sp].def_val[VI_DEFAULT] = p_sp;
3797 #endif
3798 if (do_srr)
3800 p_srr = (char_u *)">%s 2>&1";
3801 options[idx_srr].def_val[VI_DEFAULT] = p_srr;
3804 vim_free(p);
3806 #endif
3808 #if defined(MSDOS) || defined(WIN3264) || defined(OS2)
3810 * Set 'shellcmdflag and 'shellquote' depending on the 'shell' option.
3811 * This is done after other initializations, where 'shell' might have been
3812 * set, but only if they have not been set before. Default for p_shcf is
3813 * "/c", for p_shq is "". For "sh" like shells it is changed here to
3814 * "-c" and "\"", but not for DJGPP, because it starts the shell without
3815 * command.com. And for Win32 we need to set p_sxq instead.
3817 if (strstr((char *)gettail(p_sh), "sh") != NULL)
3819 int idx3;
3821 idx3 = findoption((char_u *)"shcf");
3822 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
3824 p_shcf = (char_u *)"-c";
3825 options[idx3].def_val[VI_DEFAULT] = p_shcf;
3828 # ifndef DJGPP
3829 # ifdef WIN3264
3830 /* Somehow Win32 requires the quotes around the redirection too */
3831 idx3 = findoption((char_u *)"sxq");
3832 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
3834 p_sxq = (char_u *)"\"";
3835 options[idx3].def_val[VI_DEFAULT] = p_sxq;
3837 # else
3838 idx3 = findoption((char_u *)"shq");
3839 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
3841 p_shq = (char_u *)"\"";
3842 options[idx3].def_val[VI_DEFAULT] = p_shq;
3844 # endif
3845 # endif
3847 #endif
3849 #ifdef FEAT_TITLE
3850 set_title_defaults();
3851 #endif
3854 #if defined(FEAT_MULTI_LANG) || defined(PROTO)
3856 * When 'helplang' is still at its default value, set it to "lang".
3857 * Only the first two characters of "lang" are used.
3859 void
3860 set_helplang_default(lang)
3861 char_u *lang;
3863 int idx;
3865 if (lang == NULL || STRLEN(lang) < 2) /* safety check */
3866 return;
3867 idx = findoption((char_u *)"hlg");
3868 if (idx >= 0 && !(options[idx].flags & P_WAS_SET))
3870 if (options[idx].flags & P_ALLOCED)
3871 free_string_option(p_hlg);
3872 p_hlg = vim_strsave(lang);
3873 if (p_hlg == NULL)
3874 p_hlg = empty_option;
3875 else
3877 /* zh_CN becomes "cn", zh_TW becomes "tw". */
3878 if (STRNICMP(p_hlg, "zh_", 3) == 0 && STRLEN(p_hlg) >= 5)
3880 p_hlg[0] = TOLOWER_ASC(p_hlg[3]);
3881 p_hlg[1] = TOLOWER_ASC(p_hlg[4]);
3883 p_hlg[2] = NUL;
3885 options[idx].flags |= P_ALLOCED;
3888 #endif
3890 #ifdef FEAT_GUI
3891 static char_u *gui_bg_default __ARGS((void));
3893 static char_u *
3894 gui_bg_default()
3896 if (gui_get_lightness(gui.back_pixel) < 127)
3897 return (char_u *)"dark";
3898 return (char_u *)"light";
3902 * Option initializations that can only be done after opening the GUI window.
3904 void
3905 init_gui_options()
3907 /* Set the 'background' option according to the lightness of the
3908 * background color, unless the user has set it already. */
3909 if (!option_was_set((char_u *)"bg") && STRCMP(p_bg, gui_bg_default()) != 0)
3911 set_option_value((char_u *)"bg", 0L, gui_bg_default(), 0);
3912 highlight_changed();
3915 #endif
3917 #ifdef FEAT_TITLE
3919 * 'title' and 'icon' only default to true if they have not been set or reset
3920 * in .vimrc and we can read the old value.
3921 * When 'title' and 'icon' have been reset in .vimrc, we won't even check if
3922 * they can be reset. This reduces startup time when using X on a remote
3923 * machine.
3925 void
3926 set_title_defaults()
3928 int idx1;
3929 long val;
3932 * If GUI is (going to be) used, we can always set the window title and
3933 * icon name. Saves a bit of time, because the X11 display server does
3934 * not need to be contacted.
3936 idx1 = findoption((char_u *)"title");
3937 if (idx1 >= 0 && !(options[idx1].flags & P_WAS_SET))
3939 #ifdef FEAT_GUI
3940 if (gui.starting || gui.in_use)
3941 val = TRUE;
3942 else
3943 #endif
3944 val = mch_can_restore_title();
3945 options[idx1].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
3946 p_title = val;
3948 idx1 = findoption((char_u *)"icon");
3949 if (idx1 >= 0 && !(options[idx1].flags & P_WAS_SET))
3951 #ifdef FEAT_GUI
3952 if (gui.starting || gui.in_use)
3953 val = TRUE;
3954 else
3955 #endif
3956 val = mch_can_restore_icon();
3957 options[idx1].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
3958 p_icon = val;
3961 #endif
3964 * Parse 'arg' for option settings.
3966 * 'arg' may be IObuff, but only when no errors can be present and option
3967 * does not need to be expanded with option_expand().
3968 * "opt_flags":
3969 * 0 for ":set"
3970 * OPT_GLOBAL for ":setglobal"
3971 * OPT_LOCAL for ":setlocal" and a modeline
3972 * OPT_MODELINE for a modeline
3973 * OPT_WINONLY to only set window-local options
3974 * OPT_NOWIN to skip setting window-local options
3976 * returns FAIL if an error is detected, OK otherwise
3979 do_set(arg, opt_flags)
3980 char_u *arg; /* option string (may be written to!) */
3981 int opt_flags;
3983 int opt_idx;
3984 char_u *errmsg;
3985 char_u errbuf[80];
3986 char_u *startarg;
3987 int prefix; /* 1: nothing, 0: "no", 2: "inv" in front of name */
3988 int nextchar; /* next non-white char after option name */
3989 int afterchar; /* character just after option name */
3990 int len;
3991 int i;
3992 long value;
3993 int key;
3994 long_u flags; /* flags for current option */
3995 char_u *varp = NULL; /* pointer to variable for current option */
3996 int did_show = FALSE; /* already showed one value */
3997 int adding; /* "opt+=arg" */
3998 int prepending; /* "opt^=arg" */
3999 int removing; /* "opt-=arg" */
4000 int cp_val = 0;
4001 char_u key_name[2];
4003 if (*arg == NUL)
4005 showoptions(0, opt_flags);
4006 did_show = TRUE;
4007 goto theend;
4010 while (*arg != NUL) /* loop to process all options */
4012 errmsg = NULL;
4013 startarg = arg; /* remember for error message */
4015 if (STRNCMP(arg, "all", 3) == 0 && !isalpha(arg[3])
4016 && !(opt_flags & OPT_MODELINE))
4019 * ":set all" show all options.
4020 * ":set all&" set all options to their default value.
4022 arg += 3;
4023 if (*arg == '&')
4025 ++arg;
4026 /* Only for :set command set global value of local options. */
4027 set_options_default(OPT_FREE | opt_flags);
4029 else
4031 showoptions(1, opt_flags);
4032 did_show = TRUE;
4035 else if (STRNCMP(arg, "termcap", 7) == 0 && !(opt_flags & OPT_MODELINE))
4037 showoptions(2, opt_flags);
4038 show_termcodes();
4039 did_show = TRUE;
4040 arg += 7;
4042 else
4044 prefix = 1;
4045 if (STRNCMP(arg, "no", 2) == 0)
4047 prefix = 0;
4048 arg += 2;
4050 else if (STRNCMP(arg, "inv", 3) == 0)
4052 prefix = 2;
4053 arg += 3;
4056 /* find end of name */
4057 key = 0;
4058 if (*arg == '<')
4060 nextchar = 0;
4061 opt_idx = -1;
4062 /* look out for <t_>;> */
4063 if (arg[1] == 't' && arg[2] == '_' && arg[3] && arg[4])
4064 len = 5;
4065 else
4067 len = 1;
4068 while (arg[len] != NUL && arg[len] != '>')
4069 ++len;
4071 if (arg[len] != '>')
4073 errmsg = e_invarg;
4074 goto skip;
4076 arg[len] = NUL; /* put NUL after name */
4077 if (arg[1] == 't' && arg[2] == '_') /* could be term code */
4078 opt_idx = findoption(arg + 1);
4079 arg[len++] = '>'; /* restore '>' */
4080 if (opt_idx == -1)
4081 key = find_key_option(arg + 1);
4083 else
4085 len = 0;
4087 * The two characters after "t_" may not be alphanumeric.
4089 if (arg[0] == 't' && arg[1] == '_' && arg[2] && arg[3])
4090 len = 4;
4091 else
4092 while (ASCII_ISALNUM(arg[len]) || arg[len] == '_')
4093 ++len;
4094 nextchar = arg[len];
4095 arg[len] = NUL; /* put NUL after name */
4096 opt_idx = findoption(arg);
4097 arg[len] = nextchar; /* restore nextchar */
4098 if (opt_idx == -1)
4099 key = find_key_option(arg);
4102 /* remember character after option name */
4103 afterchar = arg[len];
4105 /* skip white space, allow ":set ai ?" */
4106 while (vim_iswhite(arg[len]))
4107 ++len;
4109 adding = FALSE;
4110 prepending = FALSE;
4111 removing = FALSE;
4112 if (arg[len] != NUL && arg[len + 1] == '=')
4114 if (arg[len] == '+')
4116 adding = TRUE; /* "+=" */
4117 ++len;
4119 else if (arg[len] == '^')
4121 prepending = TRUE; /* "^=" */
4122 ++len;
4124 else if (arg[len] == '-')
4126 removing = TRUE; /* "-=" */
4127 ++len;
4130 nextchar = arg[len];
4132 if (opt_idx == -1 && key == 0) /* found a mismatch: skip */
4134 errmsg = (char_u *)N_("E518: Unknown option");
4135 goto skip;
4138 if (opt_idx >= 0)
4140 if (options[opt_idx].var == NULL) /* hidden option: skip */
4142 /* Only give an error message when requesting the value of
4143 * a hidden option, ignore setting it. */
4144 if (vim_strchr((char_u *)"=:!&<", nextchar) == NULL
4145 && (!(options[opt_idx].flags & P_BOOL)
4146 || nextchar == '?'))
4147 errmsg = (char_u *)N_("E519: Option not supported");
4148 goto skip;
4151 flags = options[opt_idx].flags;
4152 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
4154 else
4156 flags = P_STRING;
4157 if (key < 0)
4159 key_name[0] = KEY2TERMCAP0(key);
4160 key_name[1] = KEY2TERMCAP1(key);
4162 else
4164 key_name[0] = KS_KEY;
4165 key_name[1] = (key & 0xff);
4169 /* Skip all options that are not window-local (used when showing
4170 * an already loaded buffer in a window). */
4171 if ((opt_flags & OPT_WINONLY)
4172 && (opt_idx < 0 || options[opt_idx].var != VAR_WIN))
4173 goto skip;
4175 /* Skip all options that are window-local (used for :vimgrep). */
4176 if ((opt_flags & OPT_NOWIN) && opt_idx >= 0
4177 && options[opt_idx].var == VAR_WIN)
4178 goto skip;
4180 /* Disallow changing some options from modelines */
4181 if ((opt_flags & OPT_MODELINE) && (flags & P_SECURE))
4183 errmsg = (char_u *)_("E520: Not allowed in a modeline");
4184 goto skip;
4187 #ifdef HAVE_SANDBOX
4188 /* Disallow changing some options in the sandbox */
4189 if (sandbox != 0 && (flags & P_SECURE))
4191 errmsg = (char_u *)_(e_sandbox);
4192 goto skip;
4194 #endif
4196 if (vim_strchr((char_u *)"?=:!&<", nextchar) != NULL)
4198 arg += len;
4199 cp_val = p_cp;
4200 if (nextchar == '&' && arg[1] == 'v' && arg[2] == 'i')
4202 if (arg[3] == 'm') /* "opt&vim": set to Vim default */
4204 cp_val = FALSE;
4205 arg += 3;
4207 else /* "opt&vi": set to Vi default */
4209 cp_val = TRUE;
4210 arg += 2;
4213 if (vim_strchr((char_u *)"?!&<", nextchar) != NULL
4214 && arg[1] != NUL && !vim_iswhite(arg[1]))
4216 errmsg = e_trailing;
4217 goto skip;
4222 * allow '=' and ':' as MSDOS command.com allows only one
4223 * '=' character per "set" command line. grrr. (jw)
4225 if (nextchar == '?'
4226 || (prefix == 1
4227 && vim_strchr((char_u *)"=:&<", nextchar) == NULL
4228 && !(flags & P_BOOL)))
4231 * print value
4233 if (did_show)
4234 msg_putchar('\n'); /* cursor below last one */
4235 else
4237 gotocmdline(TRUE); /* cursor at status line */
4238 did_show = TRUE; /* remember that we did a line */
4240 if (opt_idx >= 0)
4242 showoneopt(&options[opt_idx], opt_flags);
4243 #ifdef FEAT_EVAL
4244 if (p_verbose > 0)
4246 /* Mention where the option was last set. */
4247 if (varp == options[opt_idx].var)
4248 last_set_msg(options[opt_idx].scriptID);
4249 else if ((int)options[opt_idx].indir & PV_WIN)
4250 last_set_msg(curwin->w_p_scriptID[
4251 (int)options[opt_idx].indir & PV_MASK]);
4252 else if ((int)options[opt_idx].indir & PV_BUF)
4253 last_set_msg(curbuf->b_p_scriptID[
4254 (int)options[opt_idx].indir & PV_MASK]);
4256 #endif
4258 else
4260 char_u *p;
4262 p = find_termcode(key_name);
4263 if (p == NULL)
4265 errmsg = (char_u *)N_("E518: Unknown option");
4266 goto skip;
4268 else
4269 (void)show_one_termcode(key_name, p, TRUE);
4271 if (nextchar != '?'
4272 && nextchar != NUL && !vim_iswhite(afterchar))
4273 errmsg = e_trailing;
4275 else
4277 if (flags & P_BOOL) /* boolean */
4279 if (nextchar == '=' || nextchar == ':')
4281 errmsg = e_invarg;
4282 goto skip;
4286 * ":set opt!": invert
4287 * ":set opt&": reset to default value
4288 * ":set opt<": reset to global value
4290 if (nextchar == '!')
4291 value = *(int *)(varp) ^ 1;
4292 else if (nextchar == '&')
4293 value = (int)(long)(long_i)options[opt_idx].def_val[
4294 ((flags & P_VI_DEF) || cp_val)
4295 ? VI_DEFAULT : VIM_DEFAULT];
4296 else if (nextchar == '<')
4298 /* For 'autoread' -1 means to use global value. */
4299 if ((int *)varp == &curbuf->b_p_ar
4300 && opt_flags == OPT_LOCAL)
4301 value = -1;
4302 else
4303 value = *(int *)get_varp_scope(&(options[opt_idx]),
4304 OPT_GLOBAL);
4306 else
4309 * ":set invopt": invert
4310 * ":set opt" or ":set noopt": set or reset
4312 if (nextchar != NUL && !vim_iswhite(afterchar))
4314 errmsg = e_trailing;
4315 goto skip;
4317 if (prefix == 2) /* inv */
4318 value = *(int *)(varp) ^ 1;
4319 else
4320 value = prefix;
4323 errmsg = set_bool_option(opt_idx, varp, (int)value,
4324 opt_flags);
4326 else /* numeric or string */
4328 if (vim_strchr((char_u *)"=:&<", nextchar) == NULL
4329 || prefix != 1)
4331 errmsg = e_invarg;
4332 goto skip;
4335 if (flags & P_NUM) /* numeric */
4338 * Different ways to set a number option:
4339 * & set to default value
4340 * < set to global value
4341 * <xx> accept special key codes for 'wildchar'
4342 * c accept any non-digit for 'wildchar'
4343 * [-]0-9 set number
4344 * other error
4346 ++arg;
4347 if (nextchar == '&')
4348 value = (long)(long_i)options[opt_idx].def_val[
4349 ((flags & P_VI_DEF) || cp_val)
4350 ? VI_DEFAULT : VIM_DEFAULT];
4351 else if (nextchar == '<')
4352 value = *(long *)get_varp_scope(&(options[opt_idx]),
4353 OPT_GLOBAL);
4354 else if (((long *)varp == &p_wc
4355 || (long *)varp == &p_wcm)
4356 && (*arg == '<'
4357 || *arg == '^'
4358 || ((!arg[1] || vim_iswhite(arg[1]))
4359 && !VIM_ISDIGIT(*arg))))
4361 value = string_to_key(arg);
4362 if (value == 0 && (long *)varp != &p_wcm)
4364 errmsg = e_invarg;
4365 goto skip;
4368 /* allow negative numbers (for 'undolevels') */
4369 else if (*arg == '-' || VIM_ISDIGIT(*arg))
4371 i = 0;
4372 if (*arg == '-')
4373 i = 1;
4374 #ifdef HAVE_STRTOL
4375 value = strtol((char *)arg, NULL, 0);
4376 if (arg[i] == '0' && TOLOWER_ASC(arg[i + 1]) == 'x')
4377 i += 2;
4378 #else
4379 value = atol((char *)arg);
4380 #endif
4381 while (VIM_ISDIGIT(arg[i]))
4382 ++i;
4383 if (arg[i] != NUL && !vim_iswhite(arg[i]))
4385 errmsg = e_invarg;
4386 goto skip;
4389 else
4391 errmsg = (char_u *)N_("E521: Number required after =");
4392 goto skip;
4395 if (adding)
4396 value = *(long *)varp + value;
4397 if (prepending)
4398 value = *(long *)varp * value;
4399 if (removing)
4400 value = *(long *)varp - value;
4401 errmsg = set_num_option(opt_idx, varp, value,
4402 errbuf, sizeof(errbuf), opt_flags);
4404 else if (opt_idx >= 0) /* string */
4406 char_u *save_arg = NULL;
4407 char_u *s = NULL;
4408 char_u *oldval; /* previous value if *varp */
4409 char_u *newval;
4410 char_u *origval;
4411 unsigned newlen;
4412 int comma;
4413 int bs;
4414 int new_value_alloced; /* new string option
4415 was allocated */
4417 /* When using ":set opt=val" for a global option
4418 * with a local value the local value will be
4419 * reset, use the global value here. */
4420 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
4421 && ((int)options[opt_idx].indir & PV_BOTH))
4422 varp = options[opt_idx].var;
4424 /* The old value is kept until we are sure that the
4425 * new value is valid. */
4426 oldval = *(char_u **)varp;
4427 if (nextchar == '&') /* set to default val */
4429 newval = options[opt_idx].def_val[
4430 ((flags & P_VI_DEF) || cp_val)
4431 ? VI_DEFAULT : VIM_DEFAULT];
4432 if ((char_u **)varp == &p_bg)
4434 /* guess the value of 'background' */
4435 #ifdef FEAT_GUI
4436 if (gui.in_use)
4437 newval = gui_bg_default();
4438 else
4439 #endif
4440 newval = term_bg_default();
4443 /* expand environment variables and ~ (since the
4444 * default value was already expanded, only
4445 * required when an environment variable was set
4446 * later */
4447 if (newval == NULL)
4448 newval = empty_option;
4449 else
4451 s = option_expand(opt_idx, newval);
4452 if (s == NULL)
4453 s = newval;
4454 newval = vim_strsave(s);
4456 new_value_alloced = TRUE;
4458 else if (nextchar == '<') /* set to global val */
4460 newval = vim_strsave(*(char_u **)get_varp_scope(
4461 &(options[opt_idx]), OPT_GLOBAL));
4462 new_value_alloced = TRUE;
4464 else
4466 ++arg; /* jump to after the '=' or ':' */
4469 * Set 'keywordprg' to ":help" if an empty
4470 * value was passed to :set by the user.
4471 * Misuse errbuf[] for the resulting string.
4473 if (varp == (char_u *)&p_kp
4474 && (*arg == NUL || *arg == ' '))
4476 STRCPY(errbuf, ":help");
4477 save_arg = arg;
4478 arg = errbuf;
4481 * Convert 'whichwrap' number to string, for
4482 * backwards compatibility with Vim 3.0.
4483 * Misuse errbuf[] for the resulting string.
4485 else if (varp == (char_u *)&p_ww
4486 && VIM_ISDIGIT(*arg))
4488 *errbuf = NUL;
4489 i = getdigits(&arg);
4490 if (i & 1)
4491 STRCAT(errbuf, "b,");
4492 if (i & 2)
4493 STRCAT(errbuf, "s,");
4494 if (i & 4)
4495 STRCAT(errbuf, "h,l,");
4496 if (i & 8)
4497 STRCAT(errbuf, "<,>,");
4498 if (i & 16)
4499 STRCAT(errbuf, "[,],");
4500 if (*errbuf != NUL) /* remove trailing , */
4501 errbuf[STRLEN(errbuf) - 1] = NUL;
4502 save_arg = arg;
4503 arg = errbuf;
4506 * Remove '>' before 'dir' and 'bdir', for
4507 * backwards compatibility with version 3.0
4509 else if ( *arg == '>'
4510 && (varp == (char_u *)&p_dir
4511 || varp == (char_u *)&p_bdir))
4513 ++arg;
4516 /* When setting the local value of a global
4517 * option, the old value may be the global value. */
4518 if (((int)options[opt_idx].indir & PV_BOTH)
4519 && (opt_flags & OPT_LOCAL))
4520 origval = *(char_u **)get_varp(
4521 &options[opt_idx]);
4522 else
4523 origval = oldval;
4526 * Copy the new string into allocated memory.
4527 * Can't use set_string_option_direct(), because
4528 * we need to remove the backslashes.
4530 /* get a bit too much */
4531 newlen = (unsigned)STRLEN(arg) + 1;
4532 if (adding || prepending || removing)
4533 newlen += (unsigned)STRLEN(origval) + 1;
4534 newval = alloc(newlen);
4535 if (newval == NULL) /* out of mem, don't change */
4536 break;
4537 s = newval;
4540 * Copy the string, skip over escaped chars.
4541 * For MS-DOS and WIN32 backslashes before normal
4542 * file name characters are not removed, and keep
4543 * backslash at start, for "\\machine\path", but
4544 * do remove it for "\\\\machine\\path".
4545 * The reverse is found in ExpandOldSetting().
4547 while (*arg && !vim_iswhite(*arg))
4549 if (*arg == '\\' && arg[1] != NUL
4550 #ifdef BACKSLASH_IN_FILENAME
4551 && !((flags & P_EXPAND)
4552 && vim_isfilec(arg[1])
4553 && (arg[1] != '\\'
4554 || (s == newval
4555 && arg[2] != '\\')))
4556 #endif
4558 ++arg; /* remove backslash */
4559 #ifdef FEAT_MBYTE
4560 if (has_mbyte
4561 && (i = (*mb_ptr2len)(arg)) > 1)
4563 /* copy multibyte char */
4564 mch_memmove(s, arg, (size_t)i);
4565 arg += i;
4566 s += i;
4568 else
4569 #endif
4570 *s++ = *arg++;
4572 *s = NUL;
4575 * Expand environment variables and ~.
4576 * Don't do it when adding without inserting a
4577 * comma.
4579 if (!(adding || prepending || removing)
4580 || (flags & P_COMMA))
4582 s = option_expand(opt_idx, newval);
4583 if (s != NULL)
4585 vim_free(newval);
4586 newlen = (unsigned)STRLEN(s) + 1;
4587 if (adding || prepending || removing)
4588 newlen += (unsigned)STRLEN(origval) + 1;
4589 newval = alloc(newlen);
4590 if (newval == NULL)
4591 break;
4592 STRCPY(newval, s);
4596 /* locate newval[] in origval[] when removing it
4597 * and when adding to avoid duplicates */
4598 i = 0; /* init for GCC */
4599 if (removing || (flags & P_NODUP))
4601 i = (int)STRLEN(newval);
4602 bs = 0;
4603 for (s = origval; *s; ++s)
4605 if ((!(flags & P_COMMA)
4606 || s == origval
4607 || (s[-1] == ',' && !(bs & 1)))
4608 && STRNCMP(s, newval, i) == 0
4609 && (!(flags & P_COMMA)
4610 || s[i] == ','
4611 || s[i] == NUL))
4612 break;
4613 /* Count backspaces. Only a comma with an
4614 * even number of backspaces before it is
4615 * recognized as a separator */
4616 if (s > origval && s[-1] == '\\')
4617 ++bs;
4618 else
4619 bs = 0;
4622 /* do not add if already there */
4623 if ((adding || prepending) && *s)
4625 prepending = FALSE;
4626 adding = FALSE;
4627 STRCPY(newval, origval);
4631 /* concatenate the two strings; add a ',' if
4632 * needed */
4633 if (adding || prepending)
4635 comma = ((flags & P_COMMA) && *origval != NUL
4636 && *newval != NUL);
4637 if (adding)
4639 i = (int)STRLEN(origval);
4640 mch_memmove(newval + i + comma, newval,
4641 STRLEN(newval) + 1);
4642 mch_memmove(newval, origval, (size_t)i);
4644 else
4646 i = (int)STRLEN(newval);
4647 mch_memmove(newval + i + comma, origval,
4648 STRLEN(origval) + 1);
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 mch_memmove(newval + (s - origval), s + i,
4678 STRLEN(s + i) + 1);
4682 if (flags & P_FLAGLIST)
4684 /* Remove flags that appear twice. */
4685 for (s = newval; *s; ++s)
4686 if ((!(flags & P_COMMA) || *s != ',')
4687 && vim_strchr(s + 1, *s) != NULL)
4689 mch_memmove(s, s + 1, STRLEN(s));
4690 --s;
4694 if (save_arg != NULL) /* number for 'whichwrap' */
4695 arg = save_arg;
4696 new_value_alloced = TRUE;
4699 /* Set the new value. */
4700 *(char_u **)(varp) = newval;
4702 /* Handle side effects, and set the global value for
4703 * ":set" on local options. */
4704 errmsg = did_set_string_option(opt_idx, (char_u **)varp,
4705 new_value_alloced, oldval, errbuf, opt_flags);
4707 /* If error detected, print the error message. */
4708 if (errmsg != NULL)
4709 goto skip;
4711 else /* key code option */
4713 char_u *p;
4715 if (nextchar == '&')
4717 if (add_termcap_entry(key_name, TRUE) == FAIL)
4718 errmsg = (char_u *)N_("E522: Not found in termcap");
4720 else
4722 ++arg; /* jump to after the '=' or ':' */
4723 for (p = arg; *p && !vim_iswhite(*p); ++p)
4724 if (*p == '\\' && p[1] != NUL)
4725 ++p;
4726 nextchar = *p;
4727 *p = NUL;
4728 add_termcode(key_name, arg, FALSE);
4729 *p = nextchar;
4731 if (full_screen)
4732 ttest(FALSE);
4733 redraw_all_later(CLEAR);
4737 if (opt_idx >= 0)
4738 did_set_option(opt_idx, opt_flags,
4739 !prepending && !adding && !removing);
4742 skip:
4744 * Advance to next argument.
4745 * - skip until a blank found, taking care of backslashes
4746 * - skip blanks
4747 * - skip one "=val" argument (for hidden options ":set gfn =xx")
4749 for (i = 0; i < 2 ; ++i)
4751 while (*arg != NUL && !vim_iswhite(*arg))
4752 if (*arg++ == '\\' && *arg != NUL)
4753 ++arg;
4754 arg = skipwhite(arg);
4755 if (*arg != '=')
4756 break;
4760 if (errmsg != NULL)
4762 vim_strncpy(IObuff, (char_u *)_(errmsg), IOSIZE - 1);
4763 i = (int)STRLEN(IObuff) + 2;
4764 if (i + (arg - startarg) < IOSIZE)
4766 /* append the argument with the error */
4767 STRCAT(IObuff, ": ");
4768 mch_memmove(IObuff + i, startarg, (arg - startarg));
4769 IObuff[i + (arg - startarg)] = NUL;
4771 /* make sure all characters are printable */
4772 trans_characters(IObuff, IOSIZE);
4774 ++no_wait_return; /* wait_return done later */
4775 emsg(IObuff); /* show error highlighted */
4776 --no_wait_return;
4778 return FAIL;
4781 arg = skipwhite(arg);
4784 theend:
4785 if (silent_mode && did_show)
4787 /* After displaying option values in silent mode. */
4788 silent_mode = FALSE;
4789 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
4790 msg_putchar('\n');
4791 cursor_on(); /* msg_start() switches it off */
4792 out_flush();
4793 silent_mode = TRUE;
4794 info_message = FALSE; /* use mch_msg(), not mch_errmsg() */
4797 return OK;
4801 * Call this when an option has been given a new value through a user command.
4802 * Sets the P_WAS_SET flag and takes care of the P_INSECURE flag.
4804 static void
4805 did_set_option(opt_idx, opt_flags, new_value)
4806 int opt_idx;
4807 int opt_flags; /* possibly with OPT_MODELINE */
4808 int new_value; /* value was replaced completely */
4810 long_u *p;
4812 options[opt_idx].flags |= P_WAS_SET;
4814 /* When an option is set in the sandbox, from a modeline or in secure mode
4815 * set the P_INSECURE flag. Otherwise, if a new value is stored reset the
4816 * flag. */
4817 p = insecure_flag(opt_idx, opt_flags);
4818 if (secure
4819 #ifdef HAVE_SANDBOX
4820 || sandbox != 0
4821 #endif
4822 || (opt_flags & OPT_MODELINE))
4823 *p = *p | P_INSECURE;
4824 else if (new_value)
4825 *p = *p & ~P_INSECURE;
4828 static char_u *
4829 illegal_char(errbuf, c)
4830 char_u *errbuf;
4831 int c;
4833 if (errbuf == NULL)
4834 return (char_u *)"";
4835 sprintf((char *)errbuf, _("E539: Illegal character <%s>"),
4836 (char *)transchar(c));
4837 return errbuf;
4841 * Convert a key name or string into a key value.
4842 * Used for 'wildchar' and 'cedit' options.
4844 static int
4845 string_to_key(arg)
4846 char_u *arg;
4848 if (*arg == '<')
4849 return find_key_option(arg + 1);
4850 if (*arg == '^')
4851 return Ctrl_chr(arg[1]);
4852 return *arg;
4855 #ifdef FEAT_CMDWIN
4857 * Check value of 'cedit' and set cedit_key.
4858 * Returns NULL if value is OK, error message otherwise.
4860 static char_u *
4861 check_cedit()
4863 int n;
4865 if (*p_cedit == NUL)
4866 cedit_key = -1;
4867 else
4869 n = string_to_key(p_cedit);
4870 if (vim_isprintc(n))
4871 return e_invarg;
4872 cedit_key = n;
4874 return NULL;
4876 #endif
4878 #ifdef FEAT_TITLE
4880 * When changing 'title', 'titlestring', 'icon' or 'iconstring', call
4881 * maketitle() to create and display it.
4882 * When switching the title or icon off, call mch_restore_title() to get
4883 * the old value back.
4885 static void
4886 did_set_title(icon)
4887 int icon; /* Did set icon instead of title */
4889 if (starting != NO_SCREEN
4890 #ifdef FEAT_GUI
4891 && !gui.starting
4892 #endif
4895 maketitle();
4896 if (icon)
4898 if (!p_icon)
4899 mch_restore_title(2);
4901 else
4903 if (!p_title)
4904 mch_restore_title(1);
4908 #endif
4911 * set_options_bin - called when 'bin' changes value.
4913 void
4914 set_options_bin(oldval, newval, opt_flags)
4915 int oldval;
4916 int newval;
4917 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
4920 * The option values that are changed when 'bin' changes are
4921 * copied when 'bin is set and restored when 'bin' is reset.
4923 if (newval)
4925 if (!oldval) /* switched on */
4927 if (!(opt_flags & OPT_GLOBAL))
4929 curbuf->b_p_tw_nobin = curbuf->b_p_tw;
4930 curbuf->b_p_wm_nobin = curbuf->b_p_wm;
4931 curbuf->b_p_ml_nobin = curbuf->b_p_ml;
4932 curbuf->b_p_et_nobin = curbuf->b_p_et;
4934 if (!(opt_flags & OPT_LOCAL))
4936 p_tw_nobin = p_tw;
4937 p_wm_nobin = p_wm;
4938 p_ml_nobin = p_ml;
4939 p_et_nobin = p_et;
4943 if (!(opt_flags & OPT_GLOBAL))
4945 curbuf->b_p_tw = 0; /* no automatic line wrap */
4946 curbuf->b_p_wm = 0; /* no automatic line wrap */
4947 curbuf->b_p_ml = 0; /* no modelines */
4948 curbuf->b_p_et = 0; /* no expandtab */
4950 if (!(opt_flags & OPT_LOCAL))
4952 p_tw = 0;
4953 p_wm = 0;
4954 p_ml = FALSE;
4955 p_et = FALSE;
4956 p_bin = TRUE; /* needed when called for the "-b" argument */
4959 else if (oldval) /* switched off */
4961 if (!(opt_flags & OPT_GLOBAL))
4963 curbuf->b_p_tw = curbuf->b_p_tw_nobin;
4964 curbuf->b_p_wm = curbuf->b_p_wm_nobin;
4965 curbuf->b_p_ml = curbuf->b_p_ml_nobin;
4966 curbuf->b_p_et = curbuf->b_p_et_nobin;
4968 if (!(opt_flags & OPT_LOCAL))
4970 p_tw = p_tw_nobin;
4971 p_wm = p_wm_nobin;
4972 p_ml = p_ml_nobin;
4973 p_et = p_et_nobin;
4978 #ifdef FEAT_VIMINFO
4980 * Find the parameter represented by the given character (eg ', :, ", or /),
4981 * and return its associated value in the 'viminfo' string.
4982 * Only works for number parameters, not for 'r' or 'n'.
4983 * If the parameter is not specified in the string or there is no following
4984 * number, return -1.
4987 get_viminfo_parameter(type)
4988 int type;
4990 char_u *p;
4992 p = find_viminfo_parameter(type);
4993 if (p != NULL && VIM_ISDIGIT(*p))
4994 return atoi((char *)p);
4995 return -1;
4999 * Find the parameter represented by the given character (eg ''', ':', '"', or
5000 * '/') in the 'viminfo' option and return a pointer to the string after it.
5001 * Return NULL if the parameter is not specified in the string.
5003 char_u *
5004 find_viminfo_parameter(type)
5005 int type;
5007 char_u *p;
5009 for (p = p_viminfo; *p; ++p)
5011 if (*p == type)
5012 return p + 1;
5013 if (*p == 'n') /* 'n' is always the last one */
5014 break;
5015 p = vim_strchr(p, ','); /* skip until next ',' */
5016 if (p == NULL) /* hit the end without finding parameter */
5017 break;
5019 return NULL;
5021 #endif
5024 * Expand environment variables for some string options.
5025 * These string options cannot be indirect!
5026 * If "val" is NULL expand the current value of the option.
5027 * Return pointer to NameBuff, or NULL when not expanded.
5029 static char_u *
5030 option_expand(opt_idx, val)
5031 int opt_idx;
5032 char_u *val;
5034 /* if option doesn't need expansion nothing to do */
5035 if (!(options[opt_idx].flags & P_EXPAND) || options[opt_idx].var == NULL)
5036 return NULL;
5038 /* If val is longer than MAXPATHL no meaningful expansion can be done,
5039 * expand_env() would truncate the string. */
5040 if (val != NULL && STRLEN(val) > MAXPATHL)
5041 return NULL;
5043 if (val == NULL)
5044 val = *(char_u **)options[opt_idx].var;
5047 * Expanding this with NameBuff, expand_env() must not be passed IObuff.
5048 * Escape spaces when expanding 'tags', they are used to separate file
5049 * names.
5050 * For 'spellsuggest' expand after "file:".
5052 expand_env_esc(val, NameBuff, MAXPATHL,
5053 (char_u **)options[opt_idx].var == &p_tags, FALSE,
5054 #ifdef FEAT_SPELL
5055 (char_u **)options[opt_idx].var == &p_sps ? (char_u *)"file:" :
5056 #endif
5057 NULL);
5058 if (STRCMP(NameBuff, val) == 0) /* they are the same */
5059 return NULL;
5061 return NameBuff;
5065 * After setting various option values: recompute variables that depend on
5066 * option values.
5068 static void
5069 didset_options()
5071 /* initialize the table for 'iskeyword' et.al. */
5072 (void)init_chartab();
5074 #ifdef FEAT_MBYTE
5075 (void)opt_strings_flags(p_cmp, p_cmp_values, &cmp_flags, TRUE);
5076 #endif
5077 (void)opt_strings_flags(p_bkc, p_bkc_values, &bkc_flags, TRUE);
5078 #ifdef FEAT_SESSION
5079 (void)opt_strings_flags(p_ssop, p_ssop_values, &ssop_flags, TRUE);
5080 (void)opt_strings_flags(p_vop, p_ssop_values, &vop_flags, TRUE);
5081 #endif
5082 #ifdef FEAT_FOLDING
5083 (void)opt_strings_flags(p_fdo, p_fdo_values, &fdo_flags, TRUE);
5084 #endif
5085 #ifdef FEAT_FULLSCREEN
5086 (void)check_fuoptions(p_fuoptions, &fuoptions_flags,
5087 &fuoptions_bgcolor);
5088 #endif
5089 (void)opt_strings_flags(p_dy, p_dy_values, &dy_flags, TRUE);
5090 #ifdef FEAT_VIRTUALEDIT
5091 (void)opt_strings_flags(p_ve, p_ve_values, &ve_flags, TRUE);
5092 #endif
5093 #if defined(FEAT_MOUSE) && (defined(UNIX) || defined(VMS))
5094 (void)opt_strings_flags(p_ttym, p_ttym_values, &ttym_flags, FALSE);
5095 #endif
5096 #ifdef FEAT_SPELL
5097 (void)spell_check_msm();
5098 (void)spell_check_sps();
5099 (void)compile_cap_prog(curbuf);
5100 #endif
5101 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
5102 (void)opt_strings_flags(p_toolbar, p_toolbar_values, &toolbar_flags, TRUE);
5103 #endif
5104 #if defined(FEAT_TOOLBAR) && ((defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)) \
5105 || defined(FEAT_GUI_MACVIM))
5106 (void)opt_strings_flags(p_tbis, p_tbis_values, &tbis_flags, FALSE);
5107 #endif
5108 #ifdef FEAT_CMDWIN
5109 /* set cedit_key */
5110 (void)check_cedit();
5111 #endif
5115 * Check for string options that are NULL (normally only termcap options).
5117 void
5118 check_options()
5120 int opt_idx;
5122 for (opt_idx = 0; options[opt_idx].fullname != NULL; opt_idx++)
5123 if ((options[opt_idx].flags & P_STRING) && options[opt_idx].var != NULL)
5124 check_string_option((char_u **)get_varp(&(options[opt_idx])));
5128 * Check string options in a buffer for NULL value.
5130 void
5131 check_buf_options(buf)
5132 buf_T *buf;
5134 #if defined(FEAT_QUICKFIX)
5135 check_string_option(&buf->b_p_bh);
5136 check_string_option(&buf->b_p_bt);
5137 #endif
5138 #ifdef FEAT_MBYTE
5139 check_string_option(&buf->b_p_fenc);
5140 #endif
5141 check_string_option(&buf->b_p_ff);
5142 #ifdef FEAT_FIND_ID
5143 check_string_option(&buf->b_p_def);
5144 check_string_option(&buf->b_p_inc);
5145 # ifdef FEAT_EVAL
5146 check_string_option(&buf->b_p_inex);
5147 # endif
5148 #endif
5149 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
5150 check_string_option(&buf->b_p_inde);
5151 check_string_option(&buf->b_p_indk);
5152 #endif
5153 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
5154 check_string_option(&buf->b_p_bexpr);
5155 #endif
5156 #if defined(FEAT_EVAL)
5157 check_string_option(&buf->b_p_fex);
5158 #endif
5159 #ifdef FEAT_CRYPT
5160 check_string_option(&buf->b_p_key);
5161 #endif
5162 check_string_option(&buf->b_p_kp);
5163 check_string_option(&buf->b_p_mps);
5164 check_string_option(&buf->b_p_fo);
5165 check_string_option(&buf->b_p_flp);
5166 check_string_option(&buf->b_p_isk);
5167 #ifdef FEAT_COMMENTS
5168 check_string_option(&buf->b_p_com);
5169 #endif
5170 #ifdef FEAT_FOLDING
5171 check_string_option(&buf->b_p_cms);
5172 #endif
5173 check_string_option(&buf->b_p_nf);
5174 #ifdef FEAT_TEXTOBJ
5175 check_string_option(&buf->b_p_qe);
5176 #endif
5177 #ifdef FEAT_SYN_HL
5178 check_string_option(&buf->b_p_syn);
5179 #endif
5180 #ifdef FEAT_SPELL
5181 check_string_option(&buf->b_p_spc);
5182 check_string_option(&buf->b_p_spf);
5183 check_string_option(&buf->b_p_spl);
5184 #endif
5185 #ifdef FEAT_SEARCHPATH
5186 check_string_option(&buf->b_p_sua);
5187 #endif
5188 #ifdef FEAT_CINDENT
5189 check_string_option(&buf->b_p_cink);
5190 check_string_option(&buf->b_p_cino);
5191 #endif
5192 #ifdef FEAT_AUTOCMD
5193 check_string_option(&buf->b_p_ft);
5194 #endif
5195 #ifdef FEAT_OSFILETYPE
5196 check_string_option(&buf->b_p_oft);
5197 #endif
5198 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
5199 check_string_option(&buf->b_p_cinw);
5200 #endif
5201 #ifdef FEAT_INS_EXPAND
5202 check_string_option(&buf->b_p_cpt);
5203 #endif
5204 #ifdef FEAT_COMPL_FUNC
5205 check_string_option(&buf->b_p_cfu);
5206 check_string_option(&buf->b_p_ofu);
5207 #endif
5208 #ifdef FEAT_KEYMAP
5209 check_string_option(&buf->b_p_keymap);
5210 #endif
5211 #ifdef FEAT_QUICKFIX
5212 check_string_option(&buf->b_p_gp);
5213 check_string_option(&buf->b_p_mp);
5214 check_string_option(&buf->b_p_efm);
5215 #endif
5216 check_string_option(&buf->b_p_ep);
5217 check_string_option(&buf->b_p_path);
5218 check_string_option(&buf->b_p_tags);
5219 #ifdef FEAT_INS_EXPAND
5220 check_string_option(&buf->b_p_dict);
5221 check_string_option(&buf->b_p_tsr);
5222 #endif
5226 * Free the string allocated for an option.
5227 * Checks for the string being empty_option. This may happen if we're out of
5228 * memory, vim_strsave() returned NULL, which was replaced by empty_option by
5229 * check_options().
5230 * Does NOT check for P_ALLOCED flag!
5232 void
5233 free_string_option(p)
5234 char_u *p;
5236 if (p != empty_option)
5237 vim_free(p);
5240 void
5241 clear_string_option(pp)
5242 char_u **pp;
5244 if (*pp != empty_option)
5245 vim_free(*pp);
5246 *pp = empty_option;
5249 static void
5250 check_string_option(pp)
5251 char_u **pp;
5253 if (*pp == NULL)
5254 *pp = empty_option;
5258 * Mark a terminal option as allocated, found by a pointer into term_strings[].
5260 void
5261 set_term_option_alloced(p)
5262 char_u **p;
5264 int opt_idx;
5266 for (opt_idx = 1; options[opt_idx].fullname != NULL; opt_idx++)
5267 if (options[opt_idx].var == (char_u *)p)
5269 options[opt_idx].flags |= P_ALLOCED;
5270 return;
5272 return; /* cannot happen: didn't find it! */
5275 #if defined(FEAT_EVAL) || defined(PROTO)
5277 * Return TRUE when option "opt" was set from a modeline or in secure mode.
5278 * Return FALSE when it wasn't.
5279 * Return -1 for an unknown option.
5282 was_set_insecurely(opt, opt_flags)
5283 char_u *opt;
5284 int opt_flags;
5286 int idx = findoption(opt);
5287 long_u *flagp;
5289 if (idx >= 0)
5291 flagp = insecure_flag(idx, opt_flags);
5292 return (*flagp & P_INSECURE) != 0;
5294 EMSG2(_(e_intern2), "was_set_insecurely()");
5295 return -1;
5299 * Get a pointer to the flags used for the P_INSECURE flag of option
5300 * "opt_idx". For some local options a local flags field is used.
5302 static long_u *
5303 insecure_flag(opt_idx, opt_flags)
5304 int opt_idx;
5305 int opt_flags;
5307 if (opt_flags & OPT_LOCAL)
5308 switch ((int)options[opt_idx].indir)
5310 #ifdef FEAT_STL_OPT
5311 case PV_STL: return &curwin->w_p_stl_flags;
5312 #endif
5313 #ifdef FEAT_EVAL
5314 # ifdef FEAT_FOLDING
5315 case PV_FDE: return &curwin->w_p_fde_flags;
5316 case PV_FDT: return &curwin->w_p_fdt_flags;
5317 # endif
5318 # ifdef FEAT_BEVAL
5319 case PV_BEXPR: return &curbuf->b_p_bexpr_flags;
5320 # endif
5321 # if defined(FEAT_CINDENT)
5322 case PV_INDE: return &curbuf->b_p_inde_flags;
5323 # endif
5324 case PV_FEX: return &curbuf->b_p_fex_flags;
5325 # ifdef FEAT_FIND_ID
5326 case PV_INEX: return &curbuf->b_p_inex_flags;
5327 # endif
5328 #endif
5331 /* Nothing special, return global flags field. */
5332 return &options[opt_idx].flags;
5334 #endif
5337 * Set a string option to a new value (without checking the effect).
5338 * The string is copied into allocated memory.
5339 * if ("opt_idx" == -1) "name" is used, otherwise "opt_idx" is used.
5340 * When "set_sid" is zero set the scriptID to current_SID. When "set_sid" is
5341 * SID_NONE don't set the scriptID. Otherwise set the scriptID to "set_sid".
5343 /*ARGSUSED*/
5344 void
5345 set_string_option_direct(name, opt_idx, val, opt_flags, set_sid)
5346 char_u *name;
5347 int opt_idx;
5348 char_u *val;
5349 int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */
5350 int set_sid;
5352 char_u *s;
5353 char_u **varp;
5354 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
5355 int idx = opt_idx;
5357 if (idx == -1) /* use name */
5359 idx = findoption(name);
5360 if (idx < 0) /* not found (should not happen) */
5362 EMSG2(_(e_intern2), "set_string_option_direct()");
5363 return;
5367 if (options[idx].var == NULL) /* can't set hidden option */
5368 return;
5370 s = vim_strsave(val);
5371 if (s != NULL)
5373 varp = (char_u **)get_varp_scope(&(options[idx]),
5374 both ? OPT_LOCAL : opt_flags);
5375 if ((opt_flags & OPT_FREE) && (options[idx].flags & P_ALLOCED))
5376 free_string_option(*varp);
5377 *varp = s;
5379 /* For buffer/window local option may also set the global value. */
5380 if (both)
5381 set_string_option_global(idx, varp);
5383 options[idx].flags |= P_ALLOCED;
5385 /* When setting both values of a global option with a local value,
5386 * make the local value empty, so that the global value is used. */
5387 if (((int)options[idx].indir & PV_BOTH) && both)
5389 free_string_option(*varp);
5390 *varp = empty_option;
5392 # ifdef FEAT_EVAL
5393 if (set_sid != SID_NONE)
5394 set_option_scriptID_idx(idx, opt_flags,
5395 set_sid == 0 ? current_SID : set_sid);
5396 # endif
5401 * Set global value for string option when it's a local option.
5403 static void
5404 set_string_option_global(opt_idx, varp)
5405 int opt_idx; /* option index */
5406 char_u **varp; /* pointer to option variable */
5408 char_u **p, *s;
5410 /* the global value is always allocated */
5411 if (options[opt_idx].var == VAR_WIN)
5412 p = (char_u **)GLOBAL_WO(varp);
5413 else
5414 p = (char_u **)options[opt_idx].var;
5415 if (options[opt_idx].indir != PV_NONE
5416 && p != varp
5417 && (s = vim_strsave(*varp)) != NULL)
5419 free_string_option(*p);
5420 *p = s;
5425 * Set a string option to a new value, and handle the effects.
5427 static void
5428 set_string_option(opt_idx, value, opt_flags)
5429 int opt_idx;
5430 char_u *value;
5431 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
5433 char_u *s;
5434 char_u **varp;
5435 char_u *oldval;
5437 if (options[opt_idx].var == NULL) /* don't set hidden option */
5438 return;
5440 s = vim_strsave(value);
5441 if (s != NULL)
5443 varp = (char_u **)get_varp_scope(&(options[opt_idx]),
5444 (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
5445 ? (((int)options[opt_idx].indir & PV_BOTH)
5446 ? OPT_GLOBAL : OPT_LOCAL)
5447 : opt_flags);
5448 oldval = *varp;
5449 *varp = s;
5450 if (did_set_string_option(opt_idx, varp, TRUE, oldval, NULL,
5451 opt_flags) == NULL)
5452 did_set_option(opt_idx, opt_flags, TRUE);
5457 * Handle string options that need some action to perform when changed.
5458 * Returns NULL for success, or an error message for an error.
5460 static char_u *
5461 did_set_string_option(opt_idx, varp, new_value_alloced, oldval, errbuf,
5462 opt_flags)
5463 int opt_idx; /* index in options[] table */
5464 char_u **varp; /* pointer to the option variable */
5465 int new_value_alloced; /* new value was allocated */
5466 char_u *oldval; /* previous value of the option */
5467 char_u *errbuf; /* buffer for errors, or NULL */
5468 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
5470 char_u *errmsg = NULL;
5471 char_u *s, *p;
5472 int did_chartab = FALSE;
5473 char_u **gvarp;
5474 long_u free_oldval = (options[opt_idx].flags & P_ALLOCED);
5476 /* Get the global option to compare with, otherwise we would have to check
5477 * two values for all local options. */
5478 gvarp = (char_u **)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL);
5480 /* Disallow changing some options from secure mode */
5481 if ((secure
5482 #ifdef HAVE_SANDBOX
5483 || sandbox != 0
5484 #endif
5485 ) && (options[opt_idx].flags & P_SECURE))
5487 errmsg = e_secure;
5490 /* Check for a "normal" file name in some options. Disallow a path
5491 * separator (slash and/or backslash), wildcards and characters that are
5492 * often illegal in a file name. */
5493 else if ((options[opt_idx].flags & P_NFNAME)
5494 && vim_strpbrk(*varp, (char_u *)"/\\*?[|<>") != NULL)
5496 errmsg = e_invarg;
5499 /* 'term' */
5500 else if (varp == &T_NAME)
5502 if (T_NAME[0] == NUL)
5503 errmsg = (char_u *)N_("E529: Cannot set 'term' to empty string");
5504 #ifdef FEAT_GUI
5505 if (gui.in_use)
5506 errmsg = (char_u *)N_("E530: Cannot change term in GUI");
5507 else if (term_is_gui(T_NAME))
5508 errmsg = (char_u *)N_("E531: Use \":gui\" to start the GUI");
5509 #endif
5510 else if (set_termname(T_NAME) == FAIL)
5511 errmsg = (char_u *)N_("E522: Not found in termcap");
5512 else
5513 /* Screen colors may have changed. */
5514 redraw_later_clear();
5517 /* 'backupcopy' */
5518 else if (varp == &p_bkc)
5520 if (opt_strings_flags(p_bkc, p_bkc_values, &bkc_flags, TRUE) != OK)
5521 errmsg = e_invarg;
5522 if (((bkc_flags & BKC_AUTO) != 0)
5523 + ((bkc_flags & BKC_YES) != 0)
5524 + ((bkc_flags & BKC_NO) != 0) != 1)
5526 /* Must have exactly one of "auto", "yes" and "no". */
5527 (void)opt_strings_flags(oldval, p_bkc_values, &bkc_flags, TRUE);
5528 errmsg = e_invarg;
5532 /* 'backupext' and 'patchmode' */
5533 else if (varp == &p_bex || varp == &p_pm)
5535 if (STRCMP(*p_bex == '.' ? p_bex + 1 : p_bex,
5536 *p_pm == '.' ? p_pm + 1 : p_pm) == 0)
5537 errmsg = (char_u *)N_("E589: 'backupext' and 'patchmode' are equal");
5541 * 'isident', 'iskeyword', 'isprint or 'isfname' option: refill chartab[]
5542 * If the new option is invalid, use old value. 'lisp' option: refill
5543 * chartab[] for '-' char
5545 else if ( varp == &p_isi
5546 || varp == &(curbuf->b_p_isk)
5547 || varp == &p_isp
5548 || varp == &p_isf)
5550 if (init_chartab() == FAIL)
5552 did_chartab = TRUE; /* need to restore it below */
5553 errmsg = e_invarg; /* error in value */
5557 /* 'helpfile' */
5558 else if (varp == &p_hf)
5560 /* May compute new values for $VIM and $VIMRUNTIME */
5561 if (didset_vim)
5563 vim_setenv((char_u *)"VIM", (char_u *)"");
5564 didset_vim = FALSE;
5566 if (didset_vimruntime)
5568 vim_setenv((char_u *)"VIMRUNTIME", (char_u *)"");
5569 didset_vimruntime = FALSE;
5573 #ifdef FEAT_MULTI_LANG
5574 /* 'helplang' */
5575 else if (varp == &p_hlg)
5577 /* Check for "", "ab", "ab,cd", etc. */
5578 for (s = p_hlg; *s != NUL; s += 3)
5580 if (s[1] == NUL || ((s[2] != ',' || s[3] == NUL) && s[2] != NUL))
5582 errmsg = e_invarg;
5583 break;
5585 if (s[2] == NUL)
5586 break;
5589 #endif
5591 /* 'highlight' */
5592 else if (varp == &p_hl)
5594 if (highlight_changed() == FAIL)
5595 errmsg = e_invarg; /* invalid flags */
5598 /* 'nrformats' */
5599 else if (gvarp == &p_nf)
5601 if (check_opt_strings(*varp, p_nf_values, TRUE) != OK)
5602 errmsg = e_invarg;
5605 #ifdef FEAT_SESSION
5606 /* 'sessionoptions' */
5607 else if (varp == &p_ssop)
5609 if (opt_strings_flags(p_ssop, p_ssop_values, &ssop_flags, TRUE) != OK)
5610 errmsg = e_invarg;
5611 if ((ssop_flags & SSOP_CURDIR) && (ssop_flags & SSOP_SESDIR))
5613 /* Don't allow both "sesdir" and "curdir". */
5614 (void)opt_strings_flags(oldval, p_ssop_values, &ssop_flags, TRUE);
5615 errmsg = e_invarg;
5618 /* 'viewoptions' */
5619 else if (varp == &p_vop)
5621 if (opt_strings_flags(p_vop, p_ssop_values, &vop_flags, TRUE) != OK)
5622 errmsg = e_invarg;
5624 #endif
5626 /* 'scrollopt' */
5627 #ifdef FEAT_SCROLLBIND
5628 else if (varp == &p_sbo)
5630 if (check_opt_strings(p_sbo, p_scbopt_values, TRUE) != OK)
5631 errmsg = e_invarg;
5633 #endif
5635 /* 'ambiwidth' */
5636 #ifdef FEAT_MBYTE
5637 else if (varp == &p_ambw)
5639 if (check_opt_strings(p_ambw, p_ambw_values, FALSE) != OK)
5640 errmsg = e_invarg;
5642 #endif
5644 /* 'background' */
5645 else if (varp == &p_bg)
5647 if (check_opt_strings(p_bg, p_bg_values, FALSE) == OK)
5649 #ifdef FEAT_EVAL
5650 int dark = (*p_bg == 'd');
5651 #endif
5653 init_highlight(FALSE, FALSE);
5655 #ifdef FEAT_EVAL
5656 if (dark != (*p_bg == 'd')
5657 && get_var_value((char_u *)"g:colors_name") != NULL)
5659 /* The color scheme must have set 'background' back to another
5660 * value, that's not what we want here. Disable the color
5661 * scheme and set the colors again. */
5662 do_unlet((char_u *)"g:colors_name", TRUE);
5663 free_string_option(p_bg);
5664 p_bg = vim_strsave((char_u *)(dark ? "dark" : "light"));
5665 check_string_option(&p_bg);
5666 init_highlight(FALSE, FALSE);
5668 #endif
5670 else
5671 errmsg = e_invarg;
5674 /* 'wildmode' */
5675 else if (varp == &p_wim)
5677 if (check_opt_wim() == FAIL)
5678 errmsg = e_invarg;
5681 #ifdef FEAT_CMDL_COMPL
5682 /* 'wildoptions' */
5683 else if (varp == &p_wop)
5685 if (check_opt_strings(p_wop, p_wop_values, TRUE) != OK)
5686 errmsg = e_invarg;
5688 #endif
5690 #ifdef FEAT_WAK
5691 /* 'winaltkeys' */
5692 else if (varp == &p_wak)
5694 if (*p_wak == NUL
5695 || check_opt_strings(p_wak, p_wak_values, FALSE) != OK)
5696 errmsg = e_invarg;
5697 # ifdef FEAT_MENU
5698 # ifdef FEAT_GUI_MOTIF
5699 else if (gui.in_use)
5700 gui_motif_set_mnemonics(p_wak[0] == 'y' || p_wak[0] == 'm');
5701 # else
5702 # ifdef FEAT_GUI_GTK
5703 else if (gui.in_use)
5704 gui_gtk_set_mnemonics(p_wak[0] == 'y' || p_wak[0] == 'm');
5705 # endif
5706 # endif
5707 # endif
5709 #endif
5711 #ifdef FEAT_AUTOCMD
5712 /* 'eventignore' */
5713 else if (varp == &p_ei)
5715 if (check_ei() == FAIL)
5716 errmsg = e_invarg;
5718 #endif
5720 #ifdef FEAT_MBYTE
5721 /* 'encoding' and 'fileencoding' */
5722 else if (varp == &p_enc || gvarp == &p_fenc || varp == &p_tenc)
5724 if (gvarp == &p_fenc)
5726 if (!curbuf->b_p_ma && opt_flags != OPT_GLOBAL)
5727 errmsg = e_modifiable;
5728 else if (vim_strchr(*varp, ',') != NULL)
5729 /* No comma allowed in 'fileencoding'; catches confusing it
5730 * with 'fileencodings'. */
5731 errmsg = e_invarg;
5732 else
5734 # ifdef FEAT_TITLE
5735 /* May show a "+" in the title now. */
5736 need_maketitle = TRUE;
5737 # endif
5738 /* Add 'fileencoding' to the swap file. */
5739 ml_setflags(curbuf);
5742 if (errmsg == NULL)
5744 /* canonize the value, so that STRCMP() can be used on it */
5745 p = enc_canonize(*varp);
5746 if (p != NULL)
5748 vim_free(*varp);
5749 *varp = p;
5751 if (varp == &p_enc)
5753 errmsg = mb_init();
5754 # ifdef FEAT_TITLE
5755 need_maketitle = TRUE;
5756 # endif
5760 # if (defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)) || defined(FEAT_GUI_MACVIM)
5761 if (errmsg == NULL && varp == &p_tenc && gui.in_use)
5763 /* MacVim and GTK+ 2 GUIs force 'tenc' to UTF-8. */
5764 if (STRCMP(p_tenc, "utf-8") != 0)
5765 # if defined(FEAT_GUI_MACVIM)
5766 errmsg = (char_u *)N_("E617: Cannot be changed in MacVim");
5767 # else
5768 errmsg = (char_u *)N_("E617: Cannot be changed in the GTK+ 2 GUI");
5769 # endif
5771 # endif
5773 if (errmsg == NULL)
5775 # ifdef FEAT_KEYMAP
5776 /* When 'keymap' is used and 'encoding' changes, reload the keymap
5777 * (with another encoding). */
5778 if (varp == &p_enc && *curbuf->b_p_keymap != NUL)
5779 (void)keymap_init();
5780 # endif
5782 /* When 'termencoding' is not empty and 'encoding' changes or when
5783 * 'termencoding' changes, need to setup for keyboard input and
5784 * display output conversion. */
5785 if (((varp == &p_enc && *p_tenc != NUL) || varp == &p_tenc))
5787 convert_setup(&input_conv, p_tenc, p_enc);
5788 convert_setup(&output_conv, p_enc, p_tenc);
5791 # if defined(WIN3264) && defined(FEAT_MBYTE)
5792 /* $HOME may have characters in active code page. */
5793 if (varp == &p_enc)
5794 init_homedir();
5795 # endif
5798 #endif
5800 #if defined(FEAT_POSTSCRIPT)
5801 else if (varp == &p_penc)
5803 /* Canonize printencoding if VIM standard one */
5804 p = enc_canonize(p_penc);
5805 if (p != NULL)
5807 vim_free(p_penc);
5808 p_penc = p;
5810 else
5812 /* Ensure lower case and '-' for '_' */
5813 for (s = p_penc; *s != NUL; s++)
5815 if (*s == '_')
5816 *s = '-';
5817 else
5818 *s = TOLOWER_ASC(*s);
5822 #endif
5824 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
5825 else if (varp == &p_imak)
5827 if (gui.in_use && !im_xim_isvalid_imactivate())
5828 errmsg = e_invarg;
5830 #endif
5832 #ifdef FEAT_KEYMAP
5833 else if (varp == &curbuf->b_p_keymap)
5835 /* load or unload key mapping tables */
5836 errmsg = keymap_init();
5838 /* When successfully installed a new keymap switch on using it. */
5839 if (*curbuf->b_p_keymap != NUL && errmsg == NULL)
5841 curbuf->b_p_iminsert = B_IMODE_LMAP;
5842 if (curbuf->b_p_imsearch != B_IMODE_USE_INSERT)
5843 curbuf->b_p_imsearch = B_IMODE_LMAP;
5844 set_iminsert_global();
5845 set_imsearch_global();
5846 # ifdef FEAT_WINDOWS
5847 status_redraw_curbuf();
5848 # endif
5851 #endif
5853 /* 'fileformat' */
5854 else if (gvarp == &p_ff)
5856 if (!curbuf->b_p_ma && !(opt_flags & OPT_GLOBAL))
5857 errmsg = e_modifiable;
5858 else if (check_opt_strings(*varp, p_ff_values, FALSE) != OK)
5859 errmsg = e_invarg;
5860 else
5862 /* may also change 'textmode' */
5863 if (get_fileformat(curbuf) == EOL_DOS)
5864 curbuf->b_p_tx = TRUE;
5865 else
5866 curbuf->b_p_tx = FALSE;
5867 #ifdef FEAT_TITLE
5868 need_maketitle = TRUE;
5869 #endif
5870 /* update flag in swap file */
5871 ml_setflags(curbuf);
5875 /* 'fileformats' */
5876 else if (varp == &p_ffs)
5878 if (check_opt_strings(p_ffs, p_ff_values, TRUE) != OK)
5879 errmsg = e_invarg;
5880 else
5882 /* also change 'textauto' */
5883 if (*p_ffs == NUL)
5884 p_ta = FALSE;
5885 else
5886 p_ta = TRUE;
5890 #if defined(FEAT_CRYPT) && defined(FEAT_CMDHIST)
5891 /* 'cryptkey' */
5892 else if (gvarp == &p_key)
5894 /* Make sure the ":set" command doesn't show the new value in the
5895 * history. */
5896 remove_key_from_history();
5898 #endif
5900 /* 'matchpairs' */
5901 else if (gvarp == &p_mps)
5903 /* Check for "x:y,x:y" */
5904 for (p = *varp; *p != NUL; p += 4)
5906 if (p[1] != ':' || p[2] == NUL || (p[3] != NUL && p[3] != ','))
5908 errmsg = e_invarg;
5909 break;
5911 if (p[3] == NUL)
5912 break;
5916 #ifdef FEAT_COMMENTS
5917 /* 'comments' */
5918 else if (gvarp == &p_com)
5920 for (s = *varp; *s; )
5922 while (*s && *s != ':')
5924 if (vim_strchr((char_u *)COM_ALL, *s) == NULL
5925 && !VIM_ISDIGIT(*s) && *s != '-')
5927 errmsg = illegal_char(errbuf, *s);
5928 break;
5930 ++s;
5932 if (*s++ == NUL)
5933 errmsg = (char_u *)N_("E524: Missing colon");
5934 else if (*s == ',' || *s == NUL)
5935 errmsg = (char_u *)N_("E525: Zero length string");
5936 if (errmsg != NULL)
5937 break;
5938 while (*s && *s != ',')
5940 if (*s == '\\' && s[1] != NUL)
5941 ++s;
5942 ++s;
5944 s = skip_to_option_part(s);
5947 #endif
5949 /* 'listchars' */
5950 else if (varp == &p_lcs)
5952 errmsg = set_chars_option(varp);
5955 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
5956 /* 'fillchars' */
5957 else if (varp == &p_fcs)
5959 errmsg = set_chars_option(varp);
5961 #endif
5963 #ifdef FEAT_CMDWIN
5964 /* 'cedit' */
5965 else if (varp == &p_cedit)
5967 errmsg = check_cedit();
5969 #endif
5971 /* 'verbosefile' */
5972 else if (varp == &p_vfile)
5974 verbose_stop();
5975 if (*p_vfile != NUL && verbose_open() == FAIL)
5976 errmsg = e_invarg;
5979 #ifdef FEAT_VIMINFO
5980 /* 'viminfo' */
5981 else if (varp == &p_viminfo)
5983 for (s = p_viminfo; *s;)
5985 /* Check it's a valid character */
5986 if (vim_strchr((char_u *)"!\"%'/:<@cfhnrs", *s) == NULL)
5988 errmsg = illegal_char(errbuf, *s);
5989 break;
5991 if (*s == 'n') /* name is always last one */
5993 break;
5995 else if (*s == 'r') /* skip until next ',' */
5997 while (*++s && *s != ',')
6000 else if (*s == '%')
6002 /* optional number */
6003 while (vim_isdigit(*++s))
6006 else if (*s == '!' || *s == 'h' || *s == 'c')
6007 ++s; /* no extra chars */
6008 else /* must have a number */
6010 while (vim_isdigit(*++s))
6013 if (!VIM_ISDIGIT(*(s - 1)))
6015 if (errbuf != NULL)
6017 sprintf((char *)errbuf,
6018 _("E526: Missing number after <%s>"),
6019 transchar_byte(*(s - 1)));
6020 errmsg = errbuf;
6022 else
6023 errmsg = (char_u *)"";
6024 break;
6027 if (*s == ',')
6028 ++s;
6029 else if (*s)
6031 if (errbuf != NULL)
6032 errmsg = (char_u *)N_("E527: Missing comma");
6033 else
6034 errmsg = (char_u *)"";
6035 break;
6038 if (*p_viminfo && errmsg == NULL && get_viminfo_parameter('\'') < 0)
6039 errmsg = (char_u *)N_("E528: Must specify a ' value");
6041 #endif /* FEAT_VIMINFO */
6043 /* terminal options */
6044 else if (istermoption(&options[opt_idx]) && full_screen)
6046 /* ":set t_Co=0" and ":set t_Co=1" do ":set t_Co=" */
6047 if (varp == &T_CCO)
6049 t_colors = atoi((char *)T_CCO);
6050 if (t_colors <= 1)
6052 if (new_value_alloced)
6053 vim_free(T_CCO);
6054 T_CCO = empty_option;
6056 /* We now have a different color setup, initialize it again. */
6057 init_highlight(TRUE, FALSE);
6059 ttest(FALSE);
6060 if (varp == &T_ME)
6062 out_str(T_ME);
6063 redraw_later(CLEAR);
6064 #if defined(MSDOS) || (defined(WIN3264) && !defined(FEAT_GUI_W32))
6065 /* Since t_me has been set, this probably means that the user
6066 * wants to use this as default colors. Need to reset default
6067 * background/foreground colors. */
6068 mch_set_normal_colors();
6069 #endif
6073 #ifdef FEAT_LINEBREAK
6074 /* 'showbreak' */
6075 else if (varp == &p_sbr)
6077 for (s = p_sbr; *s; )
6079 if (ptr2cells(s) != 1)
6080 errmsg = (char_u *)N_("E595: contains unprintable or wide character");
6081 mb_ptr_adv(s);
6084 #endif
6086 #ifdef FEAT_GUI
6087 /* 'guifont' */
6088 else if (varp == &p_guifont)
6090 if (gui.in_use)
6092 p = p_guifont;
6093 # if defined(FEAT_GUI_GTK)
6095 * Put up a font dialog and let the user select a new value.
6096 * If this is cancelled go back to the old value but don't
6097 * give an error message.
6099 if (STRCMP(p, "*") == 0)
6101 p = gui_mch_font_dialog(oldval);
6103 if (new_value_alloced)
6104 free_string_option(p_guifont);
6106 p_guifont = (p != NULL) ? p : vim_strsave(oldval);
6107 new_value_alloced = TRUE;
6109 # endif
6110 if (p != NULL && gui_init_font(p_guifont, FALSE) != OK)
6112 # if defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_PHOTON) \
6113 || defined(FEAT_GUI_MACVIM)
6114 if (STRCMP(p_guifont, "*") == 0)
6116 /* Dialog was cancelled: Keep the old value without giving
6117 * an error message. */
6118 if (new_value_alloced)
6119 free_string_option(p_guifont);
6120 p_guifont = vim_strsave(oldval);
6121 new_value_alloced = TRUE;
6123 else
6124 # endif
6125 errmsg = (char_u *)N_("E596: Invalid font(s)");
6129 # ifdef FEAT_XFONTSET
6130 else if (varp == &p_guifontset)
6132 if (STRCMP(p_guifontset, "*") == 0)
6133 errmsg = (char_u *)N_("E597: can't select fontset");
6134 else if (gui.in_use && gui_init_font(p_guifontset, TRUE) != OK)
6135 errmsg = (char_u *)N_("E598: Invalid fontset");
6137 # endif
6138 # ifdef FEAT_MBYTE
6139 else if (varp == &p_guifontwide)
6141 if (STRCMP(p_guifontwide, "*") == 0)
6142 errmsg = (char_u *)N_("E533: can't select wide font");
6143 else if (gui_get_wide_font() == FAIL)
6144 errmsg = (char_u *)N_("E534: Invalid wide font");
6146 # endif
6147 #endif
6149 #ifdef CURSOR_SHAPE
6150 /* 'guicursor' */
6151 else if (varp == &p_guicursor)
6152 errmsg = parse_shape_opt(SHAPE_CURSOR);
6153 #endif
6155 #ifdef FEAT_MOUSESHAPE
6156 /* 'mouseshape' */
6157 else if (varp == &p_mouseshape)
6159 errmsg = parse_shape_opt(SHAPE_MOUSE);
6160 update_mouseshape(-1);
6162 #endif
6164 #ifdef FEAT_PRINTER
6165 else if (varp == &p_popt)
6166 errmsg = parse_printoptions();
6167 # if defined(FEAT_MBYTE) && defined(FEAT_POSTSCRIPT)
6168 else if (varp == &p_pmfn)
6169 errmsg = parse_printmbfont();
6170 # endif
6171 #endif
6173 #ifdef FEAT_LANGMAP
6174 /* 'langmap' */
6175 else if (varp == &p_langmap)
6176 langmap_set();
6177 #endif
6179 #ifdef FEAT_LINEBREAK
6180 /* 'breakat' */
6181 else if (varp == &p_breakat)
6182 fill_breakat_flags();
6183 #endif
6185 #ifdef FEAT_TITLE
6186 /* 'titlestring' and 'iconstring' */
6187 else if (varp == &p_titlestring || varp == &p_iconstring)
6189 # ifdef FEAT_STL_OPT
6190 int flagval = (varp == &p_titlestring) ? STL_IN_TITLE : STL_IN_ICON;
6192 /* NULL => statusline syntax */
6193 if (vim_strchr(*varp, '%') && check_stl_option(*varp) == NULL)
6194 stl_syntax |= flagval;
6195 else
6196 stl_syntax &= ~flagval;
6197 # endif
6198 did_set_title(varp == &p_iconstring);
6201 #endif
6203 #ifdef FEAT_GUI
6204 /* 'guioptions' */
6205 else if (varp == &p_go)
6206 gui_init_which_components(oldval);
6207 #endif
6209 #if defined(FEAT_GUI_TABLINE)
6210 /* 'guitablabel' */
6211 else if (varp == &p_gtl)
6212 redraw_tabline = TRUE;
6213 #endif
6215 #if defined(FEAT_MOUSE_TTY) && (defined(UNIX) || defined(VMS))
6216 /* 'ttymouse' */
6217 else if (varp == &p_ttym)
6219 /* Switch the mouse off before changing the escape sequences used for
6220 * that. */
6221 mch_setmouse(FALSE);
6222 if (opt_strings_flags(p_ttym, p_ttym_values, &ttym_flags, FALSE) != OK)
6223 errmsg = e_invarg;
6224 else
6225 check_mouse_termcode();
6226 if (termcap_active)
6227 setmouse(); /* may switch it on again */
6229 #endif
6231 #ifdef FEAT_VISUAL
6232 /* 'selection' */
6233 else if (varp == &p_sel)
6235 if (*p_sel == NUL
6236 || check_opt_strings(p_sel, p_sel_values, FALSE) != OK)
6237 errmsg = e_invarg;
6240 /* 'selectmode' */
6241 else if (varp == &p_slm)
6243 if (check_opt_strings(p_slm, p_slm_values, TRUE) != OK)
6244 errmsg = e_invarg;
6246 #endif
6248 #ifdef FEAT_BROWSE
6249 /* 'browsedir' */
6250 else if (varp == &p_bsdir)
6252 if (check_opt_strings(p_bsdir, p_bsdir_values, FALSE) != OK
6253 && !mch_isdir(p_bsdir))
6254 errmsg = e_invarg;
6256 #endif
6258 #ifdef FEAT_VISUAL
6259 /* 'keymodel' */
6260 else if (varp == &p_km)
6262 if (check_opt_strings(p_km, p_km_values, TRUE) != OK)
6263 errmsg = e_invarg;
6264 else
6266 km_stopsel = (vim_strchr(p_km, 'o') != NULL);
6267 km_startsel = (vim_strchr(p_km, 'a') != NULL);
6270 #endif
6272 /* 'mousemodel' */
6273 else if (varp == &p_mousem)
6275 if (check_opt_strings(p_mousem, p_mousem_values, FALSE) != OK)
6276 errmsg = e_invarg;
6277 #if defined(FEAT_GUI_MOTIF) && defined(FEAT_MENU) && (XmVersion <= 1002)
6278 else if (*p_mousem != *oldval)
6279 /* Changed from "extend" to "popup" or "popup_setpos" or vv: need
6280 * to create or delete the popup menus. */
6281 gui_motif_update_mousemodel(root_menu);
6282 #endif
6285 /* 'switchbuf' */
6286 else if (varp == &p_swb)
6288 if (check_opt_strings(p_swb, p_swb_values, TRUE) != OK)
6289 errmsg = e_invarg;
6292 /* 'debug' */
6293 else if (varp == &p_debug)
6295 if (check_opt_strings(p_debug, p_debug_values, TRUE) != OK)
6296 errmsg = e_invarg;
6299 /* 'display' */
6300 else if (varp == &p_dy)
6302 if (opt_strings_flags(p_dy, p_dy_values, &dy_flags, TRUE) != OK)
6303 errmsg = e_invarg;
6304 else
6305 (void)init_chartab();
6309 #ifdef FEAT_VERTSPLIT
6310 /* 'eadirection' */
6311 else if (varp == &p_ead)
6313 if (check_opt_strings(p_ead, p_ead_values, FALSE) != OK)
6314 errmsg = e_invarg;
6316 #endif
6318 #ifdef FEAT_CLIPBOARD
6319 /* 'clipboard' */
6320 else if (varp == &p_cb)
6321 errmsg = check_clipboard_option();
6322 #endif
6324 #ifdef FEAT_SPELL
6325 /* When 'spelllang' or 'spellfile' is set and there is a window for this
6326 * buffer in which 'spell' is set load the wordlists. */
6327 else if (varp == &(curbuf->b_p_spl) || varp == &(curbuf->b_p_spf))
6329 win_T *wp;
6330 int l;
6332 if (varp == &(curbuf->b_p_spf))
6334 l = (int)STRLEN(curbuf->b_p_spf);
6335 if (l > 0 && (l < 4 || STRCMP(curbuf->b_p_spf + l - 4,
6336 ".add") != 0))
6337 errmsg = e_invarg;
6340 if (errmsg == NULL)
6342 FOR_ALL_WINDOWS(wp)
6343 if (wp->w_buffer == curbuf && wp->w_p_spell)
6345 errmsg = did_set_spelllang(curbuf);
6346 # ifdef FEAT_WINDOWS
6347 break;
6348 # endif
6352 /* When 'spellcapcheck' is set compile the regexp program. */
6353 else if (varp == &(curbuf->b_p_spc))
6355 errmsg = compile_cap_prog(curbuf);
6357 /* 'spellsuggest' */
6358 else if (varp == &p_sps)
6360 if (spell_check_sps() != OK)
6361 errmsg = e_invarg;
6363 /* 'mkspellmem' */
6364 else if (varp == &p_msm)
6366 if (spell_check_msm() != OK)
6367 errmsg = e_invarg;
6369 #endif
6371 #ifdef FEAT_QUICKFIX
6372 /* When 'bufhidden' is set, check for valid value. */
6373 else if (gvarp == &p_bh)
6375 if (check_opt_strings(curbuf->b_p_bh, p_bufhidden_values, FALSE) != OK)
6376 errmsg = e_invarg;
6379 /* When 'buftype' is set, check for valid value. */
6380 else if (gvarp == &p_bt)
6382 if (check_opt_strings(curbuf->b_p_bt, p_buftype_values, FALSE) != OK)
6383 errmsg = e_invarg;
6384 else
6386 # ifdef FEAT_WINDOWS
6387 if (curwin->w_status_height)
6389 curwin->w_redr_status = TRUE;
6390 redraw_later(VALID);
6392 # endif
6393 curbuf->b_help = (curbuf->b_p_bt[0] == 'h');
6396 #endif
6398 #ifdef FEAT_STL_OPT
6399 /* 'statusline' or 'rulerformat' */
6400 else if (gvarp == &p_stl || varp == &p_ruf)
6402 int wid;
6404 if (varp == &p_ruf) /* reset ru_wid first */
6405 ru_wid = 0;
6406 s = *varp;
6407 if (varp == &p_ruf && *s == '%')
6409 /* set ru_wid if 'ruf' starts with "%99(" */
6410 if (*++s == '-') /* ignore a '-' */
6411 s++;
6412 wid = getdigits(&s);
6413 if (wid && *s == '(' && (errmsg = check_stl_option(p_ruf)) == NULL)
6414 ru_wid = wid;
6415 else
6416 errmsg = check_stl_option(p_ruf);
6418 /* check 'statusline' only if it doesn't start with "%!" */
6419 else if (varp == &p_ruf || s[0] != '%' || s[1] != '!')
6420 errmsg = check_stl_option(s);
6421 if (varp == &p_ruf && errmsg == NULL)
6422 comp_col();
6424 #endif
6426 #ifdef FEAT_INS_EXPAND
6427 /* check if it is a valid value for 'complete' -- Acevedo */
6428 else if (gvarp == &p_cpt)
6430 for (s = *varp; *s;)
6432 while(*s == ',' || *s == ' ')
6433 s++;
6434 if (!*s)
6435 break;
6436 if (vim_strchr((char_u *)".wbuksid]tU", *s) == NULL)
6438 errmsg = illegal_char(errbuf, *s);
6439 break;
6441 if (*++s != NUL && *s != ',' && *s != ' ')
6443 if (s[-1] == 'k' || s[-1] == 's')
6445 /* skip optional filename after 'k' and 's' */
6446 while (*s && *s != ',' && *s != ' ')
6448 if (*s == '\\')
6449 ++s;
6450 ++s;
6453 else
6455 if (errbuf != NULL)
6457 sprintf((char *)errbuf,
6458 _("E535: Illegal character after <%c>"),
6459 *--s);
6460 errmsg = errbuf;
6462 else
6463 errmsg = (char_u *)"";
6464 break;
6470 /* 'completeopt' */
6471 else if (varp == &p_cot)
6473 if (check_opt_strings(p_cot, p_cot_values, TRUE) != OK)
6474 errmsg = e_invarg;
6476 #endif /* FEAT_INS_EXPAND */
6479 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
6480 else if (varp == &p_toolbar)
6482 if (opt_strings_flags(p_toolbar, p_toolbar_values,
6483 &toolbar_flags, TRUE) != OK)
6484 errmsg = e_invarg;
6485 else
6487 out_flush();
6488 gui_mch_show_toolbar((toolbar_flags &
6489 (TOOLBAR_TEXT | TOOLBAR_ICONS)) != 0);
6492 #endif
6494 #if defined(FEAT_TOOLBAR) && ((defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)) \
6495 || defined(FEAT_GUI_MACVIM))
6496 /* 'toolbariconsize': GTK+ 2 and MacVim only */
6497 else if (varp == &p_tbis)
6499 if (opt_strings_flags(p_tbis, p_tbis_values, &tbis_flags, FALSE) != OK)
6500 errmsg = e_invarg;
6501 else
6503 out_flush();
6504 gui_mch_show_toolbar((toolbar_flags &
6505 (TOOLBAR_TEXT | TOOLBAR_ICONS)) != 0);
6508 #endif
6510 /* 'pastetoggle': translate key codes like in a mapping */
6511 else if (varp == &p_pt)
6513 if (*p_pt)
6515 (void)replace_termcodes(p_pt, &p, TRUE, TRUE, FALSE);
6516 if (p != NULL)
6518 if (new_value_alloced)
6519 free_string_option(p_pt);
6520 p_pt = p;
6521 new_value_alloced = TRUE;
6526 /* 'backspace' */
6527 else if (varp == &p_bs)
6529 if (VIM_ISDIGIT(*p_bs))
6531 if (*p_bs >'2' || p_bs[1] != NUL)
6532 errmsg = e_invarg;
6534 else if (check_opt_strings(p_bs, p_bs_values, TRUE) != OK)
6535 errmsg = e_invarg;
6538 #ifdef FEAT_MBYTE
6539 /* 'casemap' */
6540 else if (varp == &p_cmp)
6542 if (opt_strings_flags(p_cmp, p_cmp_values, &cmp_flags, TRUE) != OK)
6543 errmsg = e_invarg;
6545 #endif
6547 #ifdef FEAT_DIFF
6548 /* 'diffopt' */
6549 else if (varp == &p_dip)
6551 if (diffopt_changed() == FAIL)
6552 errmsg = e_invarg;
6554 #endif
6556 #ifdef FEAT_FOLDING
6557 /* 'foldmethod' */
6558 else if (gvarp == &curwin->w_allbuf_opt.wo_fdm)
6560 if (check_opt_strings(*varp, p_fdm_values, FALSE) != OK
6561 || *curwin->w_p_fdm == NUL)
6562 errmsg = e_invarg;
6563 else
6564 foldUpdateAll(curwin);
6566 # ifdef FEAT_EVAL
6567 /* 'foldexpr' */
6568 else if (varp == &curwin->w_p_fde)
6570 if (foldmethodIsExpr(curwin))
6571 foldUpdateAll(curwin);
6573 # endif
6574 /* 'foldmarker' */
6575 else if (gvarp == &curwin->w_allbuf_opt.wo_fmr)
6577 p = vim_strchr(*varp, ',');
6578 if (p == NULL)
6579 errmsg = (char_u *)N_("E536: comma required");
6580 else if (p == *varp || p[1] == NUL)
6581 errmsg = e_invarg;
6582 else if (foldmethodIsMarker(curwin))
6583 foldUpdateAll(curwin);
6585 /* 'commentstring' */
6586 else if (gvarp == &p_cms)
6588 if (**varp != NUL && strstr((char *)*varp, "%s") == NULL)
6589 errmsg = (char_u *)N_("E537: 'commentstring' must be empty or contain %s");
6591 /* 'foldopen' */
6592 else if (varp == &p_fdo)
6594 if (opt_strings_flags(p_fdo, p_fdo_values, &fdo_flags, TRUE) != OK)
6595 errmsg = e_invarg;
6597 /* 'foldclose' */
6598 else if (varp == &p_fcl)
6600 if (check_opt_strings(p_fcl, p_fcl_values, TRUE) != OK)
6601 errmsg = e_invarg;
6603 /* 'foldignore' */
6604 else if (gvarp == &curwin->w_allbuf_opt.wo_fdi)
6606 if (foldmethodIsIndent(curwin))
6607 foldUpdateAll(curwin);
6609 #endif
6611 #ifdef FEAT_FULLSCREEN
6612 /* 'fuoptions' */
6613 else if (varp == &p_fuoptions)
6615 if (check_fuoptions(p_fuoptions, &fuoptions_flags,
6616 &fuoptions_bgcolor) != OK)
6617 errmsg = e_invarg;
6619 #endif
6621 #ifdef FEAT_VIRTUALEDIT
6622 /* 'virtualedit' */
6623 else if (varp == &p_ve)
6625 if (opt_strings_flags(p_ve, p_ve_values, &ve_flags, TRUE) != OK)
6626 errmsg = e_invarg;
6627 else if (STRCMP(p_ve, oldval) != 0)
6629 /* Recompute cursor position in case the new 've' setting
6630 * changes something. */
6631 validate_virtcol();
6632 coladvance(curwin->w_virtcol);
6635 #endif
6637 #if defined(FEAT_CSCOPE) && defined(FEAT_QUICKFIX)
6638 else if (varp == &p_csqf)
6640 if (p_csqf != NULL)
6642 p = p_csqf;
6643 while (*p != NUL)
6645 if (vim_strchr((char_u *)CSQF_CMDS, *p) == NULL
6646 || p[1] == NUL
6647 || vim_strchr((char_u *)CSQF_FLAGS, p[1]) == NULL
6648 || (p[2] != NUL && p[2] != ','))
6650 errmsg = e_invarg;
6651 break;
6653 else if (p[2] == NUL)
6654 break;
6655 else
6656 p += 3;
6660 #endif
6662 /* Options that are a list of flags. */
6663 else
6665 p = NULL;
6666 if (varp == &p_ww)
6667 p = (char_u *)WW_ALL;
6668 if (varp == &p_shm)
6669 p = (char_u *)SHM_ALL;
6670 else if (varp == &(p_cpo))
6671 p = (char_u *)CPO_ALL;
6672 else if (varp == &(curbuf->b_p_fo))
6673 p = (char_u *)FO_ALL;
6674 else if (varp == &p_mouse)
6676 #ifdef FEAT_MOUSE
6677 p = (char_u *)MOUSE_ALL;
6678 #else
6679 if (*p_mouse != NUL)
6680 errmsg = (char_u *)N_("E538: No mouse support");
6681 #endif
6683 #if defined(FEAT_GUI)
6684 else if (varp == &p_go)
6685 p = (char_u *)GO_ALL;
6686 #endif
6687 if (p != NULL)
6689 for (s = *varp; *s; ++s)
6690 if (vim_strchr(p, *s) == NULL)
6692 errmsg = illegal_char(errbuf, *s);
6693 break;
6699 * If error detected, restore the previous value.
6701 if (errmsg != NULL)
6703 if (new_value_alloced)
6704 free_string_option(*varp);
6705 *varp = oldval;
6707 * When resetting some values, need to act on it.
6709 if (did_chartab)
6710 (void)init_chartab();
6711 if (varp == &p_hl)
6712 (void)highlight_changed();
6714 else
6716 #ifdef FEAT_EVAL
6717 /* Remember where the option was set. */
6718 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
6719 #endif
6721 * Free string options that are in allocated memory.
6722 * Use "free_oldval", because recursiveness may change the flags under
6723 * our fingers (esp. init_highlight()).
6725 if (free_oldval)
6726 free_string_option(oldval);
6727 if (new_value_alloced)
6728 options[opt_idx].flags |= P_ALLOCED;
6729 else
6730 options[opt_idx].flags &= ~P_ALLOCED;
6732 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
6733 && ((int)options[opt_idx].indir & PV_BOTH))
6735 /* global option with local value set to use global value; free
6736 * the local value and make it empty */
6737 p = get_varp_scope(&(options[opt_idx]), OPT_LOCAL);
6738 free_string_option(*(char_u **)p);
6739 *(char_u **)p = empty_option;
6742 /* May set global value for local option. */
6743 else if (!(opt_flags & OPT_LOCAL) && opt_flags != OPT_GLOBAL)
6744 set_string_option_global(opt_idx, varp);
6746 #ifdef FEAT_AUTOCMD
6748 * Trigger the autocommand only after setting the flags.
6750 # ifdef FEAT_SYN_HL
6751 /* When 'syntax' is set, load the syntax of that name */
6752 if (varp == &(curbuf->b_p_syn))
6754 apply_autocmds(EVENT_SYNTAX, curbuf->b_p_syn,
6755 curbuf->b_fname, TRUE, curbuf);
6757 # endif
6758 else if (varp == &(curbuf->b_p_ft))
6760 /* 'filetype' is set, trigger the FileType autocommand */
6761 did_filetype = TRUE;
6762 apply_autocmds(EVENT_FILETYPE, curbuf->b_p_ft,
6763 curbuf->b_fname, TRUE, curbuf);
6765 #endif
6766 #ifdef FEAT_SPELL
6767 if (varp == &(curbuf->b_p_spl))
6769 char_u fname[200];
6772 * Source the spell/LANG.vim in 'runtimepath'.
6773 * They could set 'spellcapcheck' depending on the language.
6774 * Use the first name in 'spelllang' up to '_region' or
6775 * '.encoding'.
6777 for (p = curbuf->b_p_spl; *p != NUL; ++p)
6778 if (vim_strchr((char_u *)"_.,", *p) != NULL)
6779 break;
6780 vim_snprintf((char *)fname, 200, "spell/%.*s.vim",
6781 (int)(p - curbuf->b_p_spl), curbuf->b_p_spl);
6782 source_runtime(fname, TRUE);
6784 #endif
6787 #ifdef FEAT_MOUSE
6788 if (varp == &p_mouse)
6790 # ifdef FEAT_MOUSE_TTY
6791 if (*p_mouse == NUL)
6792 mch_setmouse(FALSE); /* switch mouse off */
6793 else
6794 # endif
6795 setmouse(); /* in case 'mouse' changed */
6797 #endif
6799 if (curwin->w_curswant != MAXCOL)
6800 curwin->w_set_curswant = TRUE; /* in case 'showbreak' changed */
6801 check_redraw(options[opt_idx].flags);
6803 return errmsg;
6807 * Handle setting 'listchars' or 'fillchars'.
6808 * Returns error message, NULL if it's OK.
6810 static char_u *
6811 set_chars_option(varp)
6812 char_u **varp;
6814 int round, i, len, entries;
6815 char_u *p, *s;
6816 int c1, c2 = 0;
6817 struct charstab
6819 int *cp;
6820 char *name;
6822 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6823 static struct charstab filltab[] =
6825 {&fill_stl, "stl"},
6826 {&fill_stlnc, "stlnc"},
6827 {&fill_vert, "vert"},
6828 {&fill_fold, "fold"},
6829 {&fill_diff, "diff"},
6831 #endif
6832 static struct charstab lcstab[] =
6834 {&lcs_eol, "eol"},
6835 {&lcs_ext, "extends"},
6836 {&lcs_nbsp, "nbsp"},
6837 {&lcs_prec, "precedes"},
6838 {&lcs_tab2, "tab"},
6839 {&lcs_trail, "trail"},
6841 struct charstab *tab;
6843 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6844 if (varp == &p_lcs)
6845 #endif
6847 tab = lcstab;
6848 entries = sizeof(lcstab) / sizeof(struct charstab);
6850 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6851 else
6853 tab = filltab;
6854 entries = sizeof(filltab) / sizeof(struct charstab);
6856 #endif
6858 /* first round: check for valid value, second round: assign values */
6859 for (round = 0; round <= 1; ++round)
6861 if (round)
6863 /* After checking that the value is valid: set defaults: space for
6864 * 'fillchars', NUL for 'listchars' */
6865 for (i = 0; i < entries; ++i)
6866 *(tab[i].cp) = (varp == &p_lcs ? NUL : ' ');
6867 if (varp == &p_lcs)
6868 lcs_tab1 = NUL;
6869 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6870 else
6871 fill_diff = '-';
6872 #endif
6874 p = *varp;
6875 while (*p)
6877 for (i = 0; i < entries; ++i)
6879 len = (int)STRLEN(tab[i].name);
6880 if (STRNCMP(p, tab[i].name, len) == 0
6881 && p[len] == ':'
6882 && p[len + 1] != NUL)
6884 s = p + len + 1;
6885 #ifdef FEAT_MBYTE
6886 c1 = mb_ptr2char_adv(&s);
6887 if (mb_char2cells(c1) > 1)
6888 continue;
6889 #else
6890 c1 = *s++;
6891 #endif
6892 if (tab[i].cp == &lcs_tab2)
6894 if (*s == NUL)
6895 continue;
6896 #ifdef FEAT_MBYTE
6897 c2 = mb_ptr2char_adv(&s);
6898 if (mb_char2cells(c2) > 1)
6899 continue;
6900 #else
6901 c2 = *s++;
6902 #endif
6904 if (*s == ',' || *s == NUL)
6906 if (round)
6908 if (tab[i].cp == &lcs_tab2)
6910 lcs_tab1 = c1;
6911 lcs_tab2 = c2;
6913 else
6914 *(tab[i].cp) = c1;
6917 p = s;
6918 break;
6923 if (i == entries)
6924 return e_invarg;
6925 if (*p == ',')
6926 ++p;
6930 return NULL; /* no error */
6933 #ifdef FEAT_STL_OPT
6935 * Check validity of options with the 'statusline' format.
6936 * Return error message or NULL.
6938 char_u *
6939 check_stl_option(s)
6940 char_u *s;
6942 int itemcnt = 0;
6943 int groupdepth = 0;
6944 static char_u errbuf[80];
6946 while (*s && itemcnt < STL_MAX_ITEM)
6948 /* Check for valid keys after % sequences */
6949 while (*s && *s != '%')
6950 s++;
6951 if (!*s)
6952 break;
6953 s++;
6954 if (*s != '%' && *s != ')')
6955 ++itemcnt;
6956 if (*s == '%' || *s == STL_TRUNCMARK || *s == STL_MIDDLEMARK)
6958 s++;
6959 continue;
6961 if (*s == ')')
6963 s++;
6964 if (--groupdepth < 0)
6965 break;
6966 continue;
6968 if (*s == '-')
6969 s++;
6970 while (VIM_ISDIGIT(*s))
6971 s++;
6972 if (*s == STL_USER_HL)
6973 continue;
6974 if (*s == '.')
6976 s++;
6977 while (*s && VIM_ISDIGIT(*s))
6978 s++;
6980 if (*s == '(')
6982 groupdepth++;
6983 continue;
6985 if (vim_strchr(STL_ALL, *s) == NULL)
6987 return illegal_char(errbuf, *s);
6989 if (*s == '{')
6991 s++;
6992 while (*s != '}' && *s)
6993 s++;
6994 if (*s != '}')
6995 return (char_u *)N_("E540: Unclosed expression sequence");
6998 if (itemcnt >= STL_MAX_ITEM)
6999 return (char_u *)N_("E541: too many items");
7000 if (groupdepth != 0)
7001 return (char_u *)N_("E542: unbalanced groups");
7002 return NULL;
7004 #endif
7006 #ifdef FEAT_CLIPBOARD
7008 * Extract the items in the 'clipboard' option and set global values.
7010 static char_u *
7011 check_clipboard_option()
7013 int new_unnamed = FALSE;
7014 int new_autoselect = FALSE;
7015 int new_autoselectml = FALSE;
7016 regprog_T *new_exclude_prog = NULL;
7017 char_u *errmsg = NULL;
7018 char_u *p;
7020 for (p = p_cb; *p != NUL; )
7022 if (STRNCMP(p, "unnamed", 7) == 0 && (p[7] == ',' || p[7] == NUL))
7024 new_unnamed = TRUE;
7025 p += 7;
7027 else if (STRNCMP(p, "autoselect", 10) == 0
7028 && (p[10] == ',' || p[10] == NUL))
7030 new_autoselect = TRUE;
7031 p += 10;
7033 else if (STRNCMP(p, "autoselectml", 12) == 0
7034 && (p[12] == ',' || p[12] == NUL))
7036 new_autoselectml = TRUE;
7037 p += 12;
7039 else if (STRNCMP(p, "exclude:", 8) == 0 && new_exclude_prog == NULL)
7041 p += 8;
7042 new_exclude_prog = vim_regcomp(p, RE_MAGIC);
7043 if (new_exclude_prog == NULL)
7044 errmsg = e_invarg;
7045 break;
7047 else
7049 errmsg = e_invarg;
7050 break;
7052 if (*p == ',')
7053 ++p;
7055 if (errmsg == NULL)
7057 clip_unnamed = new_unnamed;
7058 clip_autoselect = new_autoselect;
7059 clip_autoselectml = new_autoselectml;
7060 vim_free(clip_exclude_prog);
7061 clip_exclude_prog = new_exclude_prog;
7063 else
7064 vim_free(new_exclude_prog);
7066 return errmsg;
7068 #endif
7070 #ifdef FEAT_SPELL
7072 * Set curbuf->b_cap_prog to the regexp program for 'spellcapcheck'.
7073 * Return error message when failed, NULL when OK.
7075 static char_u *
7076 compile_cap_prog(buf)
7077 buf_T *buf;
7079 regprog_T *rp = buf->b_cap_prog;
7080 char_u *re;
7082 if (*buf->b_p_spc == NUL)
7083 buf->b_cap_prog = NULL;
7084 else
7086 /* Prepend a ^ so that we only match at one column */
7087 re = concat_str((char_u *)"^", buf->b_p_spc);
7088 if (re != NULL)
7090 buf->b_cap_prog = vim_regcomp(re, RE_MAGIC);
7091 if (buf->b_cap_prog == NULL)
7093 buf->b_cap_prog = rp; /* restore the previous program */
7094 return e_invarg;
7096 vim_free(re);
7100 vim_free(rp);
7101 return NULL;
7103 #endif
7105 #if defined(FEAT_EVAL) || defined(PROTO)
7107 * Set the scriptID for an option, taking care of setting the buffer- or
7108 * window-local value.
7110 static void
7111 set_option_scriptID_idx(opt_idx, opt_flags, id)
7112 int opt_idx;
7113 int opt_flags;
7114 int id;
7116 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
7117 int indir = (int)options[opt_idx].indir;
7119 /* Remember where the option was set. For local options need to do that
7120 * in the buffer or window structure. */
7121 if (both || (opt_flags & OPT_GLOBAL) || (indir & (PV_BUF|PV_WIN)) == 0)
7122 options[opt_idx].scriptID = id;
7123 if (both || (opt_flags & OPT_LOCAL))
7125 if (indir & PV_BUF)
7126 curbuf->b_p_scriptID[indir & PV_MASK] = id;
7127 else if (indir & PV_WIN)
7128 curwin->w_p_scriptID[indir & PV_MASK] = id;
7131 #endif
7134 * Set the value of a boolean option, and take care of side effects.
7135 * Returns NULL for success, or an error message for an error.
7137 static char_u *
7138 set_bool_option(opt_idx, varp, value, opt_flags)
7139 int opt_idx; /* index in options[] table */
7140 char_u *varp; /* pointer to the option variable */
7141 int value; /* new value */
7142 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
7144 int old_value = *(int *)varp;
7146 /* Disallow changing some options from secure mode */
7147 if ((secure
7148 #ifdef HAVE_SANDBOX
7149 || sandbox != 0
7150 #endif
7151 ) && (options[opt_idx].flags & P_SECURE))
7152 return e_secure;
7154 *(int *)varp = value; /* set the new value */
7155 #ifdef FEAT_EVAL
7156 /* Remember where the option was set. */
7157 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
7158 #endif
7160 #ifdef FEAT_GUI
7161 need_mouse_correct = TRUE;
7162 #endif
7164 /* May set global value for local option. */
7165 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0)
7166 *(int *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) = value;
7169 * Handle side effects of changing a bool option.
7172 /* 'compatible' */
7173 if ((int *)varp == &p_cp)
7175 compatible_set();
7178 else if ((int *)varp == &curbuf->b_p_ro)
7180 /* when 'readonly' is reset globally, also reset readonlymode */
7181 if (!curbuf->b_p_ro && (opt_flags & OPT_LOCAL) == 0)
7182 readonlymode = FALSE;
7184 /* when 'readonly' is set may give W10 again */
7185 if (curbuf->b_p_ro)
7186 curbuf->b_did_warn = FALSE;
7188 #ifdef FEAT_TITLE
7189 need_maketitle = TRUE;
7190 #endif
7193 #ifdef FEAT_TITLE
7194 /* when 'modifiable' is changed, redraw the window title */
7195 else if ((int *)varp == &curbuf->b_p_ma)
7196 need_maketitle = TRUE;
7197 /* when 'endofline' is changed, redraw the window title */
7198 else if ((int *)varp == &curbuf->b_p_eol)
7199 need_maketitle = TRUE;
7200 #ifdef FEAT_MBYTE
7201 /* when 'bomb' is changed, redraw the window title */
7202 else if ((int *)varp == &curbuf->b_p_bomb)
7203 need_maketitle = TRUE;
7204 #endif
7205 #endif
7207 /* when 'bin' is set also set some other options */
7208 else if ((int *)varp == &curbuf->b_p_bin)
7210 set_options_bin(old_value, curbuf->b_p_bin, opt_flags);
7211 #ifdef FEAT_TITLE
7212 need_maketitle = TRUE;
7213 #endif
7216 #ifdef FEAT_AUTOCMD
7217 /* when 'buflisted' changes, trigger autocommands */
7218 else if ((int *)varp == &curbuf->b_p_bl && old_value != curbuf->b_p_bl)
7220 apply_autocmds(curbuf->b_p_bl ? EVENT_BUFADD : EVENT_BUFDELETE,
7221 NULL, NULL, TRUE, curbuf);
7223 #endif
7225 /* when 'swf' is set, create swapfile, when reset remove swapfile */
7226 else if ((int *)varp == &curbuf->b_p_swf)
7228 if (curbuf->b_p_swf && p_uc)
7229 ml_open_file(curbuf); /* create the swap file */
7230 else
7231 /* no need to reset curbuf->b_may_swap, ml_open_file() will check
7232 * buf->b_p_swf */
7233 mf_close_file(curbuf, TRUE); /* remove the swap file */
7236 /* when 'terse' is set change 'shortmess' */
7237 else if ((int *)varp == &p_terse)
7239 char_u *p;
7241 p = vim_strchr(p_shm, SHM_SEARCH);
7243 /* insert 's' in p_shm */
7244 if (p_terse && p == NULL)
7246 STRCPY(IObuff, p_shm);
7247 STRCAT(IObuff, "s");
7248 set_string_option_direct((char_u *)"shm", -1, IObuff, OPT_FREE, 0);
7250 /* remove 's' from p_shm */
7251 else if (!p_terse && p != NULL)
7252 mch_memmove(p, p + 1, STRLEN(p));
7255 /* when 'paste' is set or reset also change other options */
7256 else if ((int *)varp == &p_paste)
7258 paste_option_changed();
7261 /* when 'insertmode' is set from an autocommand need to do work here */
7262 else if ((int *)varp == &p_im)
7264 if (p_im)
7266 if ((State & INSERT) == 0)
7267 need_start_insertmode = TRUE;
7268 stop_insert_mode = FALSE;
7270 else
7272 need_start_insertmode = FALSE;
7273 stop_insert_mode = TRUE;
7274 if (restart_edit != 0 && mode_displayed)
7275 clear_cmdline = TRUE; /* remove "(insert)" */
7276 restart_edit = 0;
7280 /* when 'ignorecase' is set or reset and 'hlsearch' is set, redraw */
7281 else if ((int *)varp == &p_ic && p_hls)
7283 redraw_all_later(SOME_VALID);
7286 #ifdef FEAT_SEARCH_EXTRA
7287 /* when 'hlsearch' is set or reset: reset no_hlsearch */
7288 else if ((int *)varp == &p_hls)
7290 no_hlsearch = FALSE;
7292 #endif
7294 #ifdef FEAT_SCROLLBIND
7295 /* when 'scrollbind' is set: snapshot the current position to avoid a jump
7296 * at the end of normal_cmd() */
7297 else if ((int *)varp == &curwin->w_p_scb)
7299 if (curwin->w_p_scb)
7300 do_check_scrollbind(FALSE);
7302 #endif
7304 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
7305 /* There can be only one window with 'previewwindow' set. */
7306 else if ((int *)varp == &curwin->w_p_pvw)
7308 if (curwin->w_p_pvw)
7310 win_T *win;
7312 for (win = firstwin; win != NULL; win = win->w_next)
7313 if (win->w_p_pvw && win != curwin)
7315 curwin->w_p_pvw = FALSE;
7316 return (char_u *)N_("E590: A preview window already exists");
7320 #endif
7322 /* when 'textmode' is set or reset also change 'fileformat' */
7323 else if ((int *)varp == &curbuf->b_p_tx)
7325 set_fileformat(curbuf->b_p_tx ? EOL_DOS : EOL_UNIX, opt_flags);
7328 #ifdef FEAT_FULLSCREEN
7329 /* when 'fullscreen' changes, forward it to the gui */
7330 else if ((int *)varp == &p_fullscreen && gui.in_use)
7332 if (p_fullscreen && !old_value)
7334 guicolor_T fg, bg;
7335 if (fuoptions_flags & FUOPT_BGCOLOR_HLGROUP)
7337 /* Find out background color from colorscheme
7338 * via highlight group id */
7339 syn_id2colors(fuoptions_bgcolor, &fg, &bg);
7341 else
7343 /* set explicit background color */
7344 bg = fuoptions_bgcolor;
7346 gui_mch_enter_fullscreen(fuoptions_flags, bg);
7348 else if (!p_fullscreen && old_value)
7350 gui_mch_leave_fullscreen();
7353 #endif
7355 #if defined(FEAT_ANTIALIAS) && defined(FEAT_GUI_MACVIM)
7356 else if ((int *)varp == &p_antialias)
7358 gui_macvim_set_antialias(p_antialias);
7360 #endif
7362 /* when 'textauto' is set or reset also change 'fileformats' */
7363 else if ((int *)varp == &p_ta)
7364 set_string_option_direct((char_u *)"ffs", -1,
7365 p_ta ? (char_u *)DFLT_FFS_VIM : (char_u *)"",
7366 OPT_FREE | opt_flags, 0);
7369 * When 'lisp' option changes include/exclude '-' in
7370 * keyword characters.
7372 #ifdef FEAT_LISP
7373 else if (varp == (char_u *)&(curbuf->b_p_lisp))
7375 (void)buf_init_chartab(curbuf, FALSE); /* ignore errors */
7377 #endif
7379 #ifdef FEAT_TITLE
7380 /* when 'title' changed, may need to change the title; same for 'icon' */
7381 else if ((int *)varp == &p_title)
7383 did_set_title(FALSE);
7386 else if ((int *)varp == &p_icon)
7388 did_set_title(TRUE);
7390 #endif
7392 else if ((int *)varp == &curbuf->b_changed)
7394 if (!value)
7395 save_file_ff(curbuf); /* Buffer is unchanged */
7396 #ifdef FEAT_TITLE
7397 need_maketitle = TRUE;
7398 #endif
7399 #ifdef FEAT_AUTOCMD
7400 modified_was_set = value;
7401 #endif
7404 #ifdef BACKSLASH_IN_FILENAME
7405 else if ((int *)varp == &p_ssl)
7407 if (p_ssl)
7409 psepc = '/';
7410 psepcN = '\\';
7411 pseps[0] = '/';
7413 else
7415 psepc = '\\';
7416 psepcN = '/';
7417 pseps[0] = '\\';
7420 /* need to adjust the file name arguments and buffer names. */
7421 buflist_slash_adjust();
7422 alist_slash_adjust();
7423 # ifdef FEAT_EVAL
7424 scriptnames_slash_adjust();
7425 # endif
7427 #endif
7429 /* If 'wrap' is set, set w_leftcol to zero. */
7430 else if ((int *)varp == &curwin->w_p_wrap)
7432 if (curwin->w_p_wrap)
7433 curwin->w_leftcol = 0;
7436 #ifdef FEAT_WINDOWS
7437 else if ((int *)varp == &p_ea)
7439 if (p_ea && !old_value)
7440 win_equal(curwin, FALSE, 0);
7442 #endif
7444 else if ((int *)varp == &p_wiv)
7447 * When 'weirdinvert' changed, set/reset 't_xs'.
7448 * Then set 'weirdinvert' according to value of 't_xs'.
7450 if (p_wiv && !old_value)
7451 T_XS = (char_u *)"y";
7452 else if (!p_wiv && old_value)
7453 T_XS = empty_option;
7454 p_wiv = (*T_XS != NUL);
7457 #ifdef FEAT_BEVAL
7458 else if ((int *)varp == &p_beval)
7460 if (p_beval == TRUE)
7461 gui_mch_enable_beval_area(balloonEval);
7462 else
7463 gui_mch_disable_beval_area(balloonEval);
7465 #endif
7467 #ifdef FEAT_AUTOCHDIR
7468 else if ((int *)varp == &p_acd)
7470 /* Change directories when the 'acd' option is set now. */
7471 DO_AUTOCHDIR
7473 #endif
7475 #ifdef FEAT_DIFF
7476 /* 'diff' */
7477 else if ((int *)varp == &curwin->w_p_diff)
7479 /* May add or remove the buffer from the list of diff buffers. */
7480 diff_buf_adjust(curwin);
7481 # ifdef FEAT_FOLDING
7482 if (foldmethodIsDiff(curwin))
7483 foldUpdateAll(curwin);
7484 # endif
7486 #endif
7488 #ifdef USE_IM_CONTROL
7489 /* 'imdisable' */
7490 else if ((int *)varp == &p_imdisable)
7492 /* Only de-activate it here, it will be enabled when changing mode. */
7493 if (p_imdisable)
7494 im_set_active(FALSE);
7496 #endif
7498 #ifdef FEAT_SPELL
7499 /* 'spell' */
7500 else if ((int *)varp == &curwin->w_p_spell)
7502 if (curwin->w_p_spell)
7504 char_u *errmsg = did_set_spelllang(curbuf);
7506 if (errmsg != NULL)
7507 EMSG(_(errmsg));
7510 #endif
7512 #ifdef FEAT_FKMAP
7513 else if ((int *)varp == &p_altkeymap)
7515 if (old_value != p_altkeymap)
7517 if (!p_altkeymap)
7519 p_hkmap = p_fkmap;
7520 p_fkmap = 0;
7522 else
7524 p_fkmap = p_hkmap;
7525 p_hkmap = 0;
7527 (void)init_chartab();
7532 * In case some second language keymapping options have changed, check
7533 * and correct the setting in a consistent way.
7537 * If hkmap or fkmap are set, reset Arabic keymapping.
7539 if ((p_hkmap || p_fkmap) && p_altkeymap)
7541 p_altkeymap = p_fkmap;
7542 # ifdef FEAT_ARABIC
7543 curwin->w_p_arab = FALSE;
7544 # endif
7545 (void)init_chartab();
7549 * If hkmap set, reset Farsi keymapping.
7551 if (p_hkmap && p_altkeymap)
7553 p_altkeymap = 0;
7554 p_fkmap = 0;
7555 # ifdef FEAT_ARABIC
7556 curwin->w_p_arab = FALSE;
7557 # endif
7558 (void)init_chartab();
7562 * If fkmap set, reset Hebrew keymapping.
7564 if (p_fkmap && !p_altkeymap)
7566 p_altkeymap = 1;
7567 p_hkmap = 0;
7568 # ifdef FEAT_ARABIC
7569 curwin->w_p_arab = FALSE;
7570 # endif
7571 (void)init_chartab();
7573 #endif
7575 #ifdef FEAT_ARABIC
7576 if ((int *)varp == &curwin->w_p_arab)
7578 if (curwin->w_p_arab)
7581 * 'arabic' is set, handle various sub-settings.
7583 if (!p_tbidi)
7585 /* set rightleft mode */
7586 if (!curwin->w_p_rl)
7588 curwin->w_p_rl = TRUE;
7589 changed_window_setting();
7592 /* Enable Arabic shaping (major part of what Arabic requires) */
7593 if (!p_arshape)
7595 p_arshape = TRUE;
7596 redraw_later_clear();
7600 /* Arabic requires a utf-8 encoding, inform the user if its not
7601 * set. */
7602 if (STRCMP(p_enc, "utf-8") != 0)
7604 msg_source(hl_attr(HLF_W));
7605 MSG_ATTR(_("W17: Arabic requires UTF-8, do ':set encoding=utf-8'"),
7606 hl_attr(HLF_W));
7609 # ifdef FEAT_MBYTE
7610 /* set 'delcombine' */
7611 p_deco = TRUE;
7612 # endif
7614 # ifdef FEAT_KEYMAP
7615 /* Force-set the necessary keymap for arabic */
7616 set_option_value((char_u *)"keymap", 0L, (char_u *)"arabic",
7617 OPT_LOCAL);
7618 # endif
7619 # ifdef FEAT_FKMAP
7620 p_altkeymap = 0;
7621 p_hkmap = 0;
7622 p_fkmap = 0;
7623 (void)init_chartab();
7624 # endif
7626 else
7629 * 'arabic' is reset, handle various sub-settings.
7631 if (!p_tbidi)
7633 /* reset rightleft mode */
7634 if (curwin->w_p_rl)
7636 curwin->w_p_rl = FALSE;
7637 changed_window_setting();
7640 /* 'arabicshape' isn't reset, it is a global option and
7641 * another window may still need it "on". */
7644 /* 'delcombine' isn't reset, it is a global option and another
7645 * window may still want it "on". */
7647 # ifdef FEAT_KEYMAP
7648 /* Revert to the default keymap */
7649 curbuf->b_p_iminsert = B_IMODE_NONE;
7650 curbuf->b_p_imsearch = B_IMODE_USE_INSERT;
7651 # endif
7654 #endif
7657 * End of handling side effects for bool options.
7660 options[opt_idx].flags |= P_WAS_SET;
7662 comp_col(); /* in case 'ruler' or 'showcmd' changed */
7663 if (curwin->w_curswant != MAXCOL)
7664 curwin->w_set_curswant = TRUE; /* in case 'list' changed */
7665 check_redraw(options[opt_idx].flags);
7667 return NULL;
7671 * Set the value of a number option, and take care of side effects.
7672 * Returns NULL for success, or an error message for an error.
7674 static char_u *
7675 set_num_option(opt_idx, varp, value, errbuf, errbuflen, opt_flags)
7676 int opt_idx; /* index in options[] table */
7677 char_u *varp; /* pointer to the option variable */
7678 long value; /* new value */
7679 char_u *errbuf; /* buffer for error messages */
7680 size_t errbuflen; /* length of "errbuf" */
7681 int opt_flags; /* OPT_LOCAL, OPT_GLOBAL and
7682 OPT_MODELINE */
7684 char_u *errmsg = NULL;
7685 long old_value = *(long *)varp;
7686 long old_Rows = Rows; /* remember old Rows */
7687 long old_Columns = Columns; /* remember old Columns */
7688 long *pp = (long *)varp;
7690 /* Disallow changing some options from secure mode. */
7691 if ((secure
7692 #ifdef HAVE_SANDBOX
7693 || sandbox != 0
7694 #endif
7695 ) && (options[opt_idx].flags & P_SECURE))
7696 return e_secure;
7698 *pp = value;
7699 #ifdef FEAT_EVAL
7700 /* Remember where the option was set. */
7701 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
7702 #endif
7703 #ifdef FEAT_GUI
7704 need_mouse_correct = TRUE;
7705 #endif
7707 if (curbuf->b_p_sw <= 0)
7709 errmsg = e_positive;
7710 curbuf->b_p_sw = curbuf->b_p_ts;
7714 * Number options that need some action when changed
7716 #ifdef FEAT_WINDOWS
7717 if (pp == &p_wh || pp == &p_hh)
7719 if (p_wh < 1)
7721 errmsg = e_positive;
7722 p_wh = 1;
7724 if (p_wmh > p_wh)
7726 errmsg = e_winheight;
7727 p_wh = p_wmh;
7729 if (p_hh < 0)
7731 errmsg = e_positive;
7732 p_hh = 0;
7735 /* Change window height NOW */
7736 if (lastwin != firstwin)
7738 if (pp == &p_wh && curwin->w_height < p_wh)
7739 win_setheight((int)p_wh);
7740 if (pp == &p_hh && curbuf->b_help && curwin->w_height < p_hh)
7741 win_setheight((int)p_hh);
7745 /* 'winminheight' */
7746 else if (pp == &p_wmh)
7748 if (p_wmh < 0)
7750 errmsg = e_positive;
7751 p_wmh = 0;
7753 if (p_wmh > p_wh)
7755 errmsg = e_winheight;
7756 p_wmh = p_wh;
7758 win_setminheight();
7761 # ifdef FEAT_VERTSPLIT
7762 else if (pp == &p_wiw)
7764 if (p_wiw < 1)
7766 errmsg = e_positive;
7767 p_wiw = 1;
7769 if (p_wmw > p_wiw)
7771 errmsg = e_winwidth;
7772 p_wiw = p_wmw;
7775 /* Change window width NOW */
7776 if (lastwin != firstwin && curwin->w_width < p_wiw)
7777 win_setwidth((int)p_wiw);
7780 /* 'winminwidth' */
7781 else if (pp == &p_wmw)
7783 if (p_wmw < 0)
7785 errmsg = e_positive;
7786 p_wmw = 0;
7788 if (p_wmw > p_wiw)
7790 errmsg = e_winwidth;
7791 p_wmw = p_wiw;
7793 win_setminheight();
7795 # endif
7797 #endif
7799 #ifdef FEAT_WINDOWS
7800 /* (re)set last window status line */
7801 else if (pp == &p_ls)
7803 last_status(FALSE);
7806 /* (re)set tab page line */
7807 else if (pp == &p_stal)
7809 shell_new_rows(); /* recompute window positions and heights */
7811 #endif
7813 #ifdef FEAT_GUI
7814 else if (pp == &p_linespace)
7816 /* Recompute gui.char_height and resize the Vim window to keep the
7817 * same number of lines. */
7818 if (gui.in_use && gui_mch_adjust_charheight() == OK)
7819 gui_set_shellsize(FALSE, FALSE, RESIZE_VERT);
7821 #endif
7823 #ifdef FEAT_FOLDING
7824 /* 'foldlevel' */
7825 else if (pp == &curwin->w_p_fdl)
7827 if (curwin->w_p_fdl < 0)
7828 curwin->w_p_fdl = 0;
7829 newFoldLevel();
7832 /* 'foldminlevel' */
7833 else if (pp == &curwin->w_p_fml)
7835 foldUpdateAll(curwin);
7838 /* 'foldnestmax' */
7839 else if (pp == &curwin->w_p_fdn)
7841 if (foldmethodIsSyntax(curwin) || foldmethodIsIndent(curwin))
7842 foldUpdateAll(curwin);
7845 /* 'foldcolumn' */
7846 else if (pp == &curwin->w_p_fdc)
7848 if (curwin->w_p_fdc < 0)
7850 errmsg = e_positive;
7851 curwin->w_p_fdc = 0;
7853 else if (curwin->w_p_fdc > 12)
7855 errmsg = e_invarg;
7856 curwin->w_p_fdc = 12;
7860 /* 'shiftwidth' or 'tabstop' */
7861 else if (pp == &curbuf->b_p_sw || pp == &curbuf->b_p_ts)
7863 if (foldmethodIsIndent(curwin))
7864 foldUpdateAll(curwin);
7866 #endif /* FEAT_FOLDING */
7868 #ifdef FEAT_MBYTE
7869 /* 'maxcombine' */
7870 else if (pp == &p_mco)
7872 if (p_mco > MAX_MCO)
7873 p_mco = MAX_MCO;
7874 else if (p_mco < 0)
7875 p_mco = 0;
7876 screenclear(); /* will re-allocate the screen */
7878 #endif
7880 else if (pp == &curbuf->b_p_iminsert)
7882 if (curbuf->b_p_iminsert < 0 || curbuf->b_p_iminsert > B_IMODE_LAST)
7884 errmsg = e_invarg;
7885 curbuf->b_p_iminsert = B_IMODE_NONE;
7887 p_iminsert = curbuf->b_p_iminsert;
7888 if (termcap_active) /* don't do this in the alternate screen */
7889 showmode();
7890 #if defined(FEAT_WINDOWS) && defined(FEAT_KEYMAP)
7891 /* Show/unshow value of 'keymap' in status lines. */
7892 status_redraw_curbuf();
7893 #endif
7896 else if (pp == &p_window)
7898 if (p_window < 1)
7899 p_window = 1;
7900 else if (p_window >= Rows)
7901 p_window = Rows - 1;
7904 else if (pp == &curbuf->b_p_imsearch)
7906 if (curbuf->b_p_imsearch < -1 || curbuf->b_p_imsearch > B_IMODE_LAST)
7908 errmsg = e_invarg;
7909 curbuf->b_p_imsearch = B_IMODE_NONE;
7911 p_imsearch = curbuf->b_p_imsearch;
7914 #ifdef FEAT_TITLE
7915 /* if 'titlelen' has changed, redraw the title */
7916 else if (pp == &p_titlelen)
7918 if (p_titlelen < 0)
7920 errmsg = e_positive;
7921 p_titlelen = 85;
7923 if (starting != NO_SCREEN && old_value != p_titlelen)
7924 need_maketitle = TRUE;
7926 #endif
7928 /* if p_ch changed value, change the command line height */
7929 else if (pp == &p_ch)
7931 if (p_ch < 1)
7933 errmsg = e_positive;
7934 p_ch = 1;
7936 if (p_ch > Rows - min_rows() + 1)
7937 p_ch = Rows - min_rows() + 1;
7939 /* Only compute the new window layout when startup has been
7940 * completed. Otherwise the frame sizes may be wrong. */
7941 if (p_ch != old_value && full_screen
7942 #ifdef FEAT_GUI
7943 && !gui.starting
7944 #endif
7946 command_height();
7949 /* when 'updatecount' changes from zero to non-zero, open swap files */
7950 else if (pp == &p_uc)
7952 if (p_uc < 0)
7954 errmsg = e_positive;
7955 p_uc = 100;
7957 if (p_uc && !old_value)
7958 ml_open_files();
7960 #ifdef MZSCHEME_GUI_THREADS
7961 else if (pp == &p_mzq)
7962 mzvim_reset_timer();
7963 #endif
7965 /* sync undo before 'undolevels' changes */
7966 else if (pp == &p_ul)
7968 /* use the old value, otherwise u_sync() may not work properly */
7969 p_ul = old_value;
7970 u_sync(TRUE);
7971 p_ul = value;
7974 #ifdef FEAT_LINEBREAK
7975 /* 'numberwidth' must be positive */
7976 else if (pp == &curwin->w_p_nuw)
7978 if (curwin->w_p_nuw < 1)
7980 errmsg = e_positive;
7981 curwin->w_p_nuw = 1;
7983 if (curwin->w_p_nuw > 10)
7985 errmsg = e_invarg;
7986 curwin->w_p_nuw = 10;
7988 curwin->w_nrwidth_line_count = 0;
7990 #endif
7992 #if defined(FEAT_TRANSPARENCY)
7993 /* 'transparency' is a number between 0 and 100 */
7994 else if (pp == &p_transp)
7996 if (p_transp < 0 || p_transp > 100)
7998 errmsg = e_invarg;
7999 p_transp = old_value;
8001 else if (gui.in_use)
8002 gui_mch_new_colors();
8004 #endif
8007 * Check the bounds for numeric options here
8009 if (Rows < min_rows() && full_screen)
8011 if (errbuf != NULL)
8013 vim_snprintf((char *)errbuf, errbuflen,
8014 _("E593: Need at least %d lines"), min_rows());
8015 errmsg = errbuf;
8017 Rows = min_rows();
8019 if (Columns < MIN_COLUMNS && full_screen)
8021 if (errbuf != NULL)
8023 vim_snprintf((char *)errbuf, errbuflen,
8024 _("E594: Need at least %d columns"), MIN_COLUMNS);
8025 errmsg = errbuf;
8027 Columns = MIN_COLUMNS;
8029 /* Limit the values to avoid an overflow in Rows * Columns. */
8030 if (Columns > 10000)
8031 Columns = 10000;
8032 if (Rows > 1000)
8033 Rows = 1000;
8035 #ifdef DJGPP
8036 /* avoid a crash by checking for a too large value of 'columns' */
8037 if (old_Columns != Columns && full_screen && term_console)
8038 mch_check_columns();
8039 #endif
8042 * If the screen (shell) height has been changed, assume it is the
8043 * physical screenheight.
8045 if (old_Rows != Rows || old_Columns != Columns)
8047 /* Changing the screen size is not allowed while updating the screen. */
8048 if (updating_screen)
8049 *pp = old_value;
8050 else if (full_screen
8051 #ifdef FEAT_GUI
8052 && !gui.starting
8053 #endif
8055 set_shellsize((int)Columns, (int)Rows, TRUE);
8056 else
8058 /* Postpone the resizing; check the size and cmdline position for
8059 * messages. */
8060 check_shellsize();
8061 if (cmdline_row > Rows - p_ch && Rows > p_ch)
8062 cmdline_row = Rows - p_ch;
8064 if (p_window >= Rows || !option_was_set((char_u *)"window"))
8065 p_window = Rows - 1;
8068 if (curbuf->b_p_sts < 0)
8070 errmsg = e_positive;
8071 curbuf->b_p_sts = 0;
8073 if (curbuf->b_p_ts <= 0)
8075 errmsg = e_positive;
8076 curbuf->b_p_ts = 8;
8078 if (curbuf->b_p_tw < 0)
8080 errmsg = e_positive;
8081 curbuf->b_p_tw = 0;
8083 if (p_tm < 0)
8085 errmsg = e_positive;
8086 p_tm = 0;
8088 if ((curwin->w_p_scr <= 0
8089 || (curwin->w_p_scr > curwin->w_height
8090 && curwin->w_height > 0))
8091 && full_screen)
8093 if (pp == &(curwin->w_p_scr))
8095 if (curwin->w_p_scr != 0)
8096 errmsg = e_scroll;
8097 win_comp_scroll(curwin);
8099 /* If 'scroll' became invalid because of a side effect silently adjust
8100 * it. */
8101 else if (curwin->w_p_scr <= 0)
8102 curwin->w_p_scr = 1;
8103 else /* curwin->w_p_scr > curwin->w_height */
8104 curwin->w_p_scr = curwin->w_height;
8106 if (p_report < 0)
8108 errmsg = e_positive;
8109 p_report = 1;
8111 if ((p_sj < -100 || p_sj >= Rows) && full_screen)
8113 if (Rows != old_Rows) /* Rows changed, just adjust p_sj */
8114 p_sj = Rows / 2;
8115 else
8117 errmsg = e_scroll;
8118 p_sj = 1;
8121 if (p_so < 0 && full_screen)
8123 errmsg = e_scroll;
8124 p_so = 0;
8126 if (p_siso < 0 && full_screen)
8128 errmsg = e_positive;
8129 p_siso = 0;
8131 #ifdef FEAT_CMDWIN
8132 if (p_cwh < 1)
8134 errmsg = e_positive;
8135 p_cwh = 1;
8137 #endif
8138 if (p_ut < 0)
8140 errmsg = e_positive;
8141 p_ut = 2000;
8143 if (p_ss < 0)
8145 errmsg = e_positive;
8146 p_ss = 0;
8149 /* May set global value for local option. */
8150 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0)
8151 *(long *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) = *pp;
8153 options[opt_idx].flags |= P_WAS_SET;
8155 comp_col(); /* in case 'columns' or 'ls' changed */
8156 if (curwin->w_curswant != MAXCOL)
8157 curwin->w_set_curswant = TRUE; /* in case 'tabstop' changed */
8158 check_redraw(options[opt_idx].flags);
8160 return errmsg;
8164 * Called after an option changed: check if something needs to be redrawn.
8166 static void
8167 check_redraw(flags)
8168 long_u flags;
8170 /* Careful: P_RCLR and P_RALL are a combination of other P_ flags */
8171 int clear = (flags & P_RCLR) == P_RCLR;
8172 int all = ((flags & P_RALL) == P_RALL || clear);
8174 #ifdef FEAT_WINDOWS
8175 if ((flags & P_RSTAT) || all) /* mark all status lines dirty */
8176 status_redraw_all();
8177 #endif
8179 if ((flags & P_RBUF) || (flags & P_RWIN) || all)
8180 changed_window_setting();
8181 if (flags & P_RBUF)
8182 redraw_curbuf_later(NOT_VALID);
8183 if (clear)
8184 redraw_all_later(CLEAR);
8185 else if (all)
8186 redraw_all_later(NOT_VALID);
8190 * Find index for option 'arg'.
8191 * Return -1 if not found.
8193 static int
8194 findoption(arg)
8195 char_u *arg;
8197 int opt_idx;
8198 char *s, *p;
8199 static short quick_tab[27] = {0, 0}; /* quick access table */
8200 int is_term_opt;
8203 * For first call: Initialize the quick-access table.
8204 * It contains the index for the first option that starts with a certain
8205 * letter. There are 26 letters, plus the first "t_" option.
8207 if (quick_tab[1] == 0)
8209 p = options[0].fullname;
8210 for (opt_idx = 1; (s = options[opt_idx].fullname) != NULL; opt_idx++)
8212 if (s[0] != p[0])
8214 if (s[0] == 't' && s[1] == '_')
8215 quick_tab[26] = opt_idx;
8216 else
8217 quick_tab[CharOrdLow(s[0])] = opt_idx;
8219 p = s;
8224 * Check for name starting with an illegal character.
8226 #ifdef EBCDIC
8227 if (!islower(arg[0]))
8228 #else
8229 if (arg[0] < 'a' || arg[0] > 'z')
8230 #endif
8231 return -1;
8233 is_term_opt = (arg[0] == 't' && arg[1] == '_');
8234 if (is_term_opt)
8235 opt_idx = quick_tab[26];
8236 else
8237 opt_idx = quick_tab[CharOrdLow(arg[0])];
8238 for ( ; (s = options[opt_idx].fullname) != NULL; opt_idx++)
8240 if (STRCMP(arg, s) == 0) /* match full name */
8241 break;
8243 if (s == NULL && !is_term_opt)
8245 opt_idx = quick_tab[CharOrdLow(arg[0])];
8246 for ( ; options[opt_idx].fullname != NULL; opt_idx++)
8248 s = options[opt_idx].shortname;
8249 if (s != NULL && STRCMP(arg, s) == 0) /* match short name */
8250 break;
8251 s = NULL;
8254 if (s == NULL)
8255 opt_idx = -1;
8256 return opt_idx;
8259 #if defined(FEAT_EVAL) || defined(FEAT_TCL) || defined(FEAT_MZSCHEME)
8261 * Get the value for an option.
8263 * Returns:
8264 * Number or Toggle option: 1, *numval gets value.
8265 * String option: 0, *stringval gets allocated string.
8266 * Hidden Number or Toggle option: -1.
8267 * hidden String option: -2.
8268 * unknown option: -3.
8271 get_option_value(name, numval, stringval, opt_flags)
8272 char_u *name;
8273 long *numval;
8274 char_u **stringval; /* NULL when only checking existance */
8275 int opt_flags;
8277 int opt_idx;
8278 char_u *varp;
8280 opt_idx = findoption(name);
8281 if (opt_idx < 0) /* unknown option */
8282 return -3;
8284 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
8286 if (options[opt_idx].flags & P_STRING)
8288 if (varp == NULL) /* hidden option */
8289 return -2;
8290 if (stringval != NULL)
8292 #ifdef FEAT_CRYPT
8293 /* never return the value of the crypt key */
8294 if ((char_u **)varp == &curbuf->b_p_key)
8295 *stringval = vim_strsave((char_u *)"*****");
8296 else
8297 #endif
8298 *stringval = vim_strsave(*(char_u **)(varp));
8300 return 0;
8303 if (varp == NULL) /* hidden option */
8304 return -1;
8305 if (options[opt_idx].flags & P_NUM)
8306 *numval = *(long *)varp;
8307 else
8309 /* Special case: 'modified' is b_changed, but we also want to consider
8310 * it set when 'ff' or 'fenc' changed. */
8311 if ((int *)varp == &curbuf->b_changed)
8312 *numval = curbufIsChanged();
8313 else
8314 *numval = *(int *)varp;
8316 return 1;
8318 #endif
8321 * Set the value of option "name".
8322 * Use "string" for string options, use "number" for other options.
8324 void
8325 set_option_value(name, number, string, opt_flags)
8326 char_u *name;
8327 long number;
8328 char_u *string;
8329 int opt_flags; /* OPT_LOCAL or 0 (both) */
8331 int opt_idx;
8332 char_u *varp;
8333 long_u flags;
8335 opt_idx = findoption(name);
8336 if (opt_idx < 0)
8337 EMSG2(_("E355: Unknown option: %s"), name);
8338 else
8340 flags = options[opt_idx].flags;
8341 #ifdef HAVE_SANDBOX
8342 /* Disallow changing some options in the sandbox */
8343 if (sandbox > 0 && (flags & P_SECURE))
8345 EMSG(_(e_sandbox));
8346 return;
8348 #endif
8349 if (flags & P_STRING)
8350 set_string_option(opt_idx, string, opt_flags);
8351 else
8353 varp = get_varp(&options[opt_idx]);
8354 if (varp != NULL) /* hidden option is not changed */
8356 if (number == 0 && string != NULL)
8358 int index;
8360 /* Either we are given a string or we are setting option
8361 * to zero. */
8362 for (index = 0; string[index] == '0'; ++index)
8364 if (string[index] != NUL || index == 0)
8366 /* There's another character after zeros or the string
8367 * is empty. In both cases, we are trying to set a
8368 * num option using a string. */
8369 EMSG3(_("E521: Number required: &%s = '%s'"),
8370 name, string);
8371 return; /* do nothing as we hit an error */
8375 if (flags & P_NUM)
8376 (void)set_num_option(opt_idx, varp, number,
8377 NULL, 0, opt_flags);
8378 else
8379 (void)set_bool_option(opt_idx, varp, (int)number,
8380 opt_flags);
8387 * Get the terminal code for a terminal option.
8388 * Returns NULL when not found.
8390 char_u *
8391 get_term_code(tname)
8392 char_u *tname;
8394 int opt_idx;
8395 char_u *varp;
8397 if (tname[0] != 't' || tname[1] != '_' ||
8398 tname[2] == NUL || tname[3] == NUL)
8399 return NULL;
8400 if ((opt_idx = findoption(tname)) >= 0)
8402 varp = get_varp(&(options[opt_idx]));
8403 if (varp != NULL)
8404 varp = *(char_u **)(varp);
8405 return varp;
8407 return find_termcode(tname + 2);
8410 char_u *
8411 get_highlight_default()
8413 int i;
8415 i = findoption((char_u *)"hl");
8416 if (i >= 0)
8417 return options[i].def_val[VI_DEFAULT];
8418 return (char_u *)NULL;
8421 #if defined(FEAT_MBYTE) || defined(PROTO)
8422 char_u *
8423 get_encoding_default()
8425 int i;
8427 i = findoption((char_u *)"enc");
8428 if (i >= 0)
8429 return options[i].def_val[VI_DEFAULT];
8430 return (char_u *)NULL;
8432 #endif
8435 * Translate a string like "t_xx", "<t_xx>" or "<S-Tab>" to a key number.
8437 static int
8438 find_key_option(arg)
8439 char_u *arg;
8441 int key;
8442 int modifiers;
8445 * Don't use get_special_key_code() for t_xx, we don't want it to call
8446 * add_termcap_entry().
8448 if (arg[0] == 't' && arg[1] == '_' && arg[2] && arg[3])
8449 key = TERMCAP2KEY(arg[2], arg[3]);
8450 else
8452 --arg; /* put arg at the '<' */
8453 modifiers = 0;
8454 key = find_special_key(&arg, &modifiers, TRUE);
8455 if (modifiers) /* can't handle modifiers here */
8456 key = 0;
8458 return key;
8462 * if 'all' == 0: show changed options
8463 * if 'all' == 1: show all normal options
8464 * if 'all' == 2: show all terminal options
8466 static void
8467 showoptions(all, opt_flags)
8468 int all;
8469 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
8471 struct vimoption *p;
8472 int col;
8473 int isterm;
8474 char_u *varp;
8475 struct vimoption **items;
8476 int item_count;
8477 int run;
8478 int row, rows;
8479 int cols;
8480 int i;
8481 int len;
8483 #define INC 20
8484 #define GAP 3
8486 items = (struct vimoption **)alloc((unsigned)(sizeof(struct vimoption *) *
8487 PARAM_COUNT));
8488 if (items == NULL)
8489 return;
8491 /* Highlight title */
8492 if (all == 2)
8493 MSG_PUTS_TITLE(_("\n--- Terminal codes ---"));
8494 else if (opt_flags & OPT_GLOBAL)
8495 MSG_PUTS_TITLE(_("\n--- Global option values ---"));
8496 else if (opt_flags & OPT_LOCAL)
8497 MSG_PUTS_TITLE(_("\n--- Local option values ---"));
8498 else
8499 MSG_PUTS_TITLE(_("\n--- Options ---"));
8502 * do the loop two times:
8503 * 1. display the short items
8504 * 2. display the long items (only strings and numbers)
8506 for (run = 1; run <= 2 && !got_int; ++run)
8509 * collect the items in items[]
8511 item_count = 0;
8512 for (p = &options[0]; p->fullname != NULL; p++)
8514 varp = NULL;
8515 isterm = istermoption(p);
8516 if (opt_flags != 0)
8518 if (p->indir != PV_NONE && !isterm)
8519 varp = get_varp_scope(p, opt_flags);
8521 else
8522 varp = get_varp(p);
8523 if (varp != NULL
8524 && ((all == 2 && isterm)
8525 || (all == 1 && !isterm)
8526 || (all == 0 && !optval_default(p, varp))))
8528 if (p->flags & P_BOOL)
8529 len = 1; /* a toggle option fits always */
8530 else
8532 option_value2string(p, opt_flags);
8533 len = (int)STRLEN(p->fullname) + vim_strsize(NameBuff) + 1;
8535 if ((len <= INC - GAP && run == 1) ||
8536 (len > INC - GAP && run == 2))
8537 items[item_count++] = p;
8542 * display the items
8544 if (run == 1)
8546 cols = (Columns + GAP - 3) / INC;
8547 if (cols == 0)
8548 cols = 1;
8549 rows = (item_count + cols - 1) / cols;
8551 else /* run == 2 */
8552 rows = item_count;
8553 for (row = 0; row < rows && !got_int; ++row)
8555 msg_putchar('\n'); /* go to next line */
8556 if (got_int) /* 'q' typed in more */
8557 break;
8558 col = 0;
8559 for (i = row; i < item_count; i += rows)
8561 msg_col = col; /* make columns */
8562 showoneopt(items[i], opt_flags);
8563 col += INC;
8565 out_flush();
8566 ui_breakcheck();
8569 vim_free(items);
8573 * Return TRUE if option "p" has its default value.
8575 static int
8576 optval_default(p, varp)
8577 struct vimoption *p;
8578 char_u *varp;
8580 int dvi;
8582 if (varp == NULL)
8583 return TRUE; /* hidden option is always at default */
8584 dvi = ((p->flags & P_VI_DEF) || p_cp) ? VI_DEFAULT : VIM_DEFAULT;
8585 if (p->flags & P_NUM)
8586 return (*(long *)varp == (long)(long_i)p->def_val[dvi]);
8587 if (p->flags & P_BOOL)
8588 /* the cast to long is required for Manx C, long_i is
8589 * needed for MSVC */
8590 return (*(int *)varp == (int)(long)(long_i)p->def_val[dvi]);
8591 /* P_STRING */
8592 return (STRCMP(*(char_u **)varp, p->def_val[dvi]) == 0);
8596 * showoneopt: show the value of one option
8597 * must not be called with a hidden option!
8599 static void
8600 showoneopt(p, opt_flags)
8601 struct vimoption *p;
8602 int opt_flags; /* OPT_LOCAL or OPT_GLOBAL */
8604 char_u *varp;
8605 int save_silent = silent_mode;
8607 silent_mode = FALSE;
8608 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
8610 varp = get_varp_scope(p, opt_flags);
8612 /* for 'modified' we also need to check if 'ff' or 'fenc' changed. */
8613 if ((p->flags & P_BOOL) && ((int *)varp == &curbuf->b_changed
8614 ? !curbufIsChanged() : !*(int *)varp))
8615 MSG_PUTS("no");
8616 else if ((p->flags & P_BOOL) && *(int *)varp < 0)
8617 MSG_PUTS("--");
8618 else
8619 MSG_PUTS(" ");
8620 MSG_PUTS(p->fullname);
8621 if (!(p->flags & P_BOOL))
8623 msg_putchar('=');
8624 /* put value string in NameBuff */
8625 option_value2string(p, opt_flags);
8626 msg_outtrans(NameBuff);
8629 silent_mode = save_silent;
8630 info_message = FALSE;
8634 * Write modified options as ":set" commands to a file.
8636 * There are three values for "opt_flags":
8637 * OPT_GLOBAL: Write global option values and fresh values of
8638 * buffer-local options (used for start of a session
8639 * file).
8640 * OPT_GLOBAL + OPT_LOCAL: Idem, add fresh values of window-local options for
8641 * curwin (used for a vimrc file).
8642 * OPT_LOCAL: Write buffer-local option values for curbuf, fresh
8643 * and local values for window-local options of
8644 * curwin. Local values are also written when at the
8645 * default value, because a modeline or autocommand
8646 * may have set them when doing ":edit file" and the
8647 * user has set them back at the default or fresh
8648 * value.
8649 * When "local_only" is TRUE, don't write fresh
8650 * values, only local values (for ":mkview").
8651 * (fresh value = value used for a new buffer or window for a local option).
8653 * Return FAIL on error, OK otherwise.
8656 makeset(fd, opt_flags, local_only)
8657 FILE *fd;
8658 int opt_flags;
8659 int local_only;
8661 struct vimoption *p;
8662 char_u *varp; /* currently used value */
8663 char_u *varp_fresh; /* local value */
8664 char_u *varp_local = NULL; /* fresh value */
8665 char *cmd;
8666 int round;
8667 int pri;
8670 * The options that don't have a default (terminal name, columns, lines)
8671 * are never written. Terminal options are also not written.
8672 * Do the loop over "options[]" twice: once for options with the
8673 * P_PRI_MKRC flag and once without.
8675 for (pri = 1; pri >= 0; --pri)
8677 for (p = &options[0]; !istermoption(p); p++)
8678 if (!(p->flags & P_NO_MKRC)
8679 && !istermoption(p)
8680 && ((pri == 1) == ((p->flags & P_PRI_MKRC) != 0)))
8682 /* skip global option when only doing locals */
8683 if (p->indir == PV_NONE && !(opt_flags & OPT_GLOBAL))
8684 continue;
8686 /* Do not store options like 'bufhidden' and 'syntax' in a vimrc
8687 * file, they are always buffer-specific. */
8688 if ((opt_flags & OPT_GLOBAL) && (p->flags & P_NOGLOB))
8689 continue;
8691 /* Global values are only written when not at the default value. */
8692 varp = get_varp_scope(p, opt_flags);
8693 if ((opt_flags & OPT_GLOBAL) && optval_default(p, varp))
8694 continue;
8696 round = 2;
8697 if (p->indir != PV_NONE)
8699 if (p->var == VAR_WIN)
8701 /* skip window-local option when only doing globals */
8702 if (!(opt_flags & OPT_LOCAL))
8703 continue;
8704 /* When fresh value of window-local option is not at the
8705 * default, need to write it too. */
8706 if (!(opt_flags & OPT_GLOBAL) && !local_only)
8708 varp_fresh = get_varp_scope(p, OPT_GLOBAL);
8709 if (!optval_default(p, varp_fresh))
8711 round = 1;
8712 varp_local = varp;
8713 varp = varp_fresh;
8719 /* Round 1: fresh value for window-local options.
8720 * Round 2: other values */
8721 for ( ; round <= 2; varp = varp_local, ++round)
8723 if (round == 1 || (opt_flags & OPT_GLOBAL))
8724 cmd = "set";
8725 else
8726 cmd = "setlocal";
8728 if (p->flags & P_BOOL)
8730 if (put_setbool(fd, cmd, p->fullname, *(int *)varp) == FAIL)
8731 return FAIL;
8733 else if (p->flags & P_NUM)
8735 if (put_setnum(fd, cmd, p->fullname, (long *)varp) == FAIL)
8736 return FAIL;
8738 else /* P_STRING */
8740 #if defined(FEAT_SYN_HL) || defined(FEAT_AUTOCMD)
8741 int do_endif = FALSE;
8743 /* Don't set 'syntax' and 'filetype' again if the value is
8744 * already right, avoids reloading the syntax file. */
8745 if (
8746 # if defined(FEAT_SYN_HL)
8747 p->indir == PV_SYN
8748 # if defined(FEAT_AUTOCMD)
8750 # endif
8751 # endif
8752 # if defined(FEAT_AUTOCMD)
8753 p->indir == PV_FT)
8754 # endif
8756 if (fprintf(fd, "if &%s != '%s'", p->fullname,
8757 *(char_u **)(varp)) < 0
8758 || put_eol(fd) < 0)
8759 return FAIL;
8760 do_endif = TRUE;
8762 #endif
8763 if (put_setstring(fd, cmd, p->fullname, (char_u **)varp,
8764 (p->flags & P_EXPAND) != 0) == FAIL)
8765 return FAIL;
8766 #if defined(FEAT_SYN_HL) || defined(FEAT_AUTOCMD)
8767 if (do_endif)
8769 if (put_line(fd, "endif") == FAIL)
8770 return FAIL;
8772 #endif
8777 return OK;
8780 #if defined(FEAT_FOLDING) || defined(PROTO)
8782 * Generate set commands for the local fold options only. Used when
8783 * 'sessionoptions' or 'viewoptions' contains "folds" but not "options".
8786 makefoldset(fd)
8787 FILE *fd;
8789 if (put_setstring(fd, "setlocal", "fdm", &curwin->w_p_fdm, FALSE) == FAIL
8790 # ifdef FEAT_EVAL
8791 || put_setstring(fd, "setlocal", "fde", &curwin->w_p_fde, FALSE)
8792 == FAIL
8793 # endif
8794 || put_setstring(fd, "setlocal", "fmr", &curwin->w_p_fmr, FALSE)
8795 == FAIL
8796 || put_setstring(fd, "setlocal", "fdi", &curwin->w_p_fdi, FALSE)
8797 == FAIL
8798 || put_setnum(fd, "setlocal", "fdl", &curwin->w_p_fdl) == FAIL
8799 || put_setnum(fd, "setlocal", "fml", &curwin->w_p_fml) == FAIL
8800 || put_setnum(fd, "setlocal", "fdn", &curwin->w_p_fdn) == FAIL
8801 || put_setbool(fd, "setlocal", "fen", curwin->w_p_fen) == FAIL
8803 return FAIL;
8805 return OK;
8807 #endif
8809 static int
8810 put_setstring(fd, cmd, name, valuep, expand)
8811 FILE *fd;
8812 char *cmd;
8813 char *name;
8814 char_u **valuep;
8815 int expand;
8817 char_u *s;
8818 char_u buf[MAXPATHL];
8820 if (fprintf(fd, "%s %s=", cmd, name) < 0)
8821 return FAIL;
8822 if (*valuep != NULL)
8824 /* Output 'pastetoggle' as key names. For other
8825 * options some characters have to be escaped with
8826 * CTRL-V or backslash */
8827 if (valuep == &p_pt)
8829 s = *valuep;
8830 while (*s != NUL)
8831 if (fputs((char *)str2special(&s, FALSE), fd) < 0)
8832 return FAIL;
8834 else if (expand)
8836 home_replace(NULL, *valuep, buf, MAXPATHL, FALSE);
8837 if (put_escstr(fd, buf, 2) == FAIL)
8838 return FAIL;
8840 else if (put_escstr(fd, *valuep, 2) == FAIL)
8841 return FAIL;
8843 if (put_eol(fd) < 0)
8844 return FAIL;
8845 return OK;
8848 static int
8849 put_setnum(fd, cmd, name, valuep)
8850 FILE *fd;
8851 char *cmd;
8852 char *name;
8853 long *valuep;
8855 long wc;
8857 if (fprintf(fd, "%s %s=", cmd, name) < 0)
8858 return FAIL;
8859 if (wc_use_keyname((char_u *)valuep, &wc))
8861 /* print 'wildchar' and 'wildcharm' as a key name */
8862 if (fputs((char *)get_special_key_name((int)wc, 0), fd) < 0)
8863 return FAIL;
8865 else if (fprintf(fd, "%ld", *valuep) < 0)
8866 return FAIL;
8867 if (put_eol(fd) < 0)
8868 return FAIL;
8869 return OK;
8872 static int
8873 put_setbool(fd, cmd, name, value)
8874 FILE *fd;
8875 char *cmd;
8876 char *name;
8877 int value;
8879 if (value < 0) /* global/local option using global value */
8880 return OK;
8881 if (fprintf(fd, "%s %s%s", cmd, value ? "" : "no", name) < 0
8882 || put_eol(fd) < 0)
8883 return FAIL;
8884 return OK;
8888 * Clear all the terminal options.
8889 * If the option has been allocated, free the memory.
8890 * Terminal options are never hidden or indirect.
8892 void
8893 clear_termoptions()
8896 * Reset a few things before clearing the old options. This may cause
8897 * outputting a few things that the terminal doesn't understand, but the
8898 * screen will be cleared later, so this is OK.
8900 #ifdef FEAT_MOUSE_TTY
8901 mch_setmouse(FALSE); /* switch mouse off */
8902 #endif
8903 #ifdef FEAT_TITLE
8904 mch_restore_title(3); /* restore window titles */
8905 #endif
8906 #if defined(FEAT_XCLIPBOARD) && defined(FEAT_GUI)
8907 /* When starting the GUI close the display opened for the clipboard.
8908 * After restoring the title, because that will need the display. */
8909 if (gui.starting)
8910 clear_xterm_clip();
8911 #endif
8912 #ifdef WIN3264
8914 * Check if this is allowed now.
8916 if (can_end_termcap_mode(FALSE) == TRUE)
8917 #endif
8918 stoptermcap(); /* stop termcap mode */
8920 free_termoptions();
8923 void
8924 free_termoptions()
8926 struct vimoption *p;
8928 for (p = &options[0]; p->fullname != NULL; p++)
8929 if (istermoption(p))
8931 if (p->flags & P_ALLOCED)
8932 free_string_option(*(char_u **)(p->var));
8933 if (p->flags & P_DEF_ALLOCED)
8934 free_string_option(p->def_val[VI_DEFAULT]);
8935 *(char_u **)(p->var) = empty_option;
8936 p->def_val[VI_DEFAULT] = empty_option;
8937 p->flags &= ~(P_ALLOCED|P_DEF_ALLOCED);
8939 clear_termcodes();
8943 * Set the terminal option defaults to the current value.
8944 * Used after setting the terminal name.
8946 void
8947 set_term_defaults()
8949 struct vimoption *p;
8951 for (p = &options[0]; p->fullname != NULL; p++)
8953 if (istermoption(p) && p->def_val[VI_DEFAULT] != *(char_u **)(p->var))
8955 if (p->flags & P_DEF_ALLOCED)
8957 free_string_option(p->def_val[VI_DEFAULT]);
8958 p->flags &= ~P_DEF_ALLOCED;
8960 p->def_val[VI_DEFAULT] = *(char_u **)(p->var);
8961 if (p->flags & P_ALLOCED)
8963 p->flags |= P_DEF_ALLOCED;
8964 p->flags &= ~P_ALLOCED; /* don't free the value now */
8971 * return TRUE if 'p' starts with 't_'
8973 static int
8974 istermoption(p)
8975 struct vimoption *p;
8977 return (p->fullname[0] == 't' && p->fullname[1] == '_');
8981 * Compute columns for ruler and shown command. 'sc_col' is also used to
8982 * decide what the maximum length of a message on the status line can be.
8983 * If there is a status line for the last window, 'sc_col' is independent
8984 * of 'ru_col'.
8987 #define COL_RULER 17 /* columns needed by standard ruler */
8989 void
8990 comp_col()
8992 #if defined(FEAT_CMDL_INFO) && defined(FEAT_WINDOWS)
8993 int last_has_status = (p_ls == 2 || (p_ls == 1 && firstwin != lastwin));
8995 sc_col = 0;
8996 ru_col = 0;
8997 if (p_ru)
8999 #ifdef FEAT_STL_OPT
9000 ru_col = (ru_wid ? ru_wid : COL_RULER) + 1;
9001 #else
9002 ru_col = COL_RULER + 1;
9003 #endif
9004 /* no last status line, adjust sc_col */
9005 if (!last_has_status)
9006 sc_col = ru_col;
9008 if (p_sc)
9010 sc_col += SHOWCMD_COLS;
9011 if (!p_ru || last_has_status) /* no need for separating space */
9012 ++sc_col;
9014 sc_col = Columns - sc_col;
9015 ru_col = Columns - ru_col;
9016 if (sc_col <= 0) /* screen too narrow, will become a mess */
9017 sc_col = 1;
9018 if (ru_col <= 0)
9019 ru_col = 1;
9020 #else
9021 sc_col = Columns;
9022 ru_col = Columns;
9023 #endif
9027 * Get pointer to option variable, depending on local or global scope.
9029 static char_u *
9030 get_varp_scope(p, opt_flags)
9031 struct vimoption *p;
9032 int opt_flags;
9034 if ((opt_flags & OPT_GLOBAL) && p->indir != PV_NONE)
9036 if (p->var == VAR_WIN)
9037 return (char_u *)GLOBAL_WO(get_varp(p));
9038 return p->var;
9040 if ((opt_flags & OPT_LOCAL) && ((int)p->indir & PV_BOTH))
9042 switch ((int)p->indir)
9044 #ifdef FEAT_QUICKFIX
9045 case PV_EFM: return (char_u *)&(curbuf->b_p_efm);
9046 case PV_GP: return (char_u *)&(curbuf->b_p_gp);
9047 case PV_MP: return (char_u *)&(curbuf->b_p_mp);
9048 #endif
9049 case PV_EP: return (char_u *)&(curbuf->b_p_ep);
9050 case PV_KP: return (char_u *)&(curbuf->b_p_kp);
9051 case PV_PATH: return (char_u *)&(curbuf->b_p_path);
9052 case PV_AR: return (char_u *)&(curbuf->b_p_ar);
9053 case PV_TAGS: return (char_u *)&(curbuf->b_p_tags);
9054 #ifdef FEAT_FIND_ID
9055 case PV_DEF: return (char_u *)&(curbuf->b_p_def);
9056 case PV_INC: return (char_u *)&(curbuf->b_p_inc);
9057 #endif
9058 #ifdef FEAT_INS_EXPAND
9059 case PV_DICT: return (char_u *)&(curbuf->b_p_dict);
9060 case PV_TSR: return (char_u *)&(curbuf->b_p_tsr);
9061 #endif
9062 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9063 case PV_BEXPR: return (char_u *)&(curbuf->b_p_bexpr);
9064 #endif
9065 #ifdef FEAT_STL_OPT
9066 case PV_STL: return (char_u *)&(curwin->w_p_stl);
9067 #endif
9069 return NULL; /* "cannot happen" */
9071 return get_varp(p);
9075 * Get pointer to option variable.
9077 static char_u *
9078 get_varp(p)
9079 struct vimoption *p;
9081 /* hidden option, always return NULL */
9082 if (p->var == NULL)
9083 return NULL;
9085 switch ((int)p->indir)
9087 case PV_NONE: return p->var;
9089 /* global option with local value: use local value if it's been set */
9090 case PV_EP: return *curbuf->b_p_ep != NUL
9091 ? (char_u *)&curbuf->b_p_ep : p->var;
9092 case PV_KP: return *curbuf->b_p_kp != NUL
9093 ? (char_u *)&curbuf->b_p_kp : p->var;
9094 case PV_PATH: return *curbuf->b_p_path != NUL
9095 ? (char_u *)&(curbuf->b_p_path) : p->var;
9096 case PV_AR: return curbuf->b_p_ar >= 0
9097 ? (char_u *)&(curbuf->b_p_ar) : p->var;
9098 case PV_TAGS: return *curbuf->b_p_tags != NUL
9099 ? (char_u *)&(curbuf->b_p_tags) : p->var;
9100 #ifdef FEAT_FIND_ID
9101 case PV_DEF: return *curbuf->b_p_def != NUL
9102 ? (char_u *)&(curbuf->b_p_def) : p->var;
9103 case PV_INC: return *curbuf->b_p_inc != NUL
9104 ? (char_u *)&(curbuf->b_p_inc) : p->var;
9105 #endif
9106 #ifdef FEAT_INS_EXPAND
9107 case PV_DICT: return *curbuf->b_p_dict != NUL
9108 ? (char_u *)&(curbuf->b_p_dict) : p->var;
9109 case PV_TSR: return *curbuf->b_p_tsr != NUL
9110 ? (char_u *)&(curbuf->b_p_tsr) : p->var;
9111 #endif
9112 #ifdef FEAT_QUICKFIX
9113 case PV_EFM: return *curbuf->b_p_efm != NUL
9114 ? (char_u *)&(curbuf->b_p_efm) : p->var;
9115 case PV_GP: return *curbuf->b_p_gp != NUL
9116 ? (char_u *)&(curbuf->b_p_gp) : p->var;
9117 case PV_MP: return *curbuf->b_p_mp != NUL
9118 ? (char_u *)&(curbuf->b_p_mp) : p->var;
9119 #endif
9120 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9121 case PV_BEXPR: return *curbuf->b_p_bexpr != NUL
9122 ? (char_u *)&(curbuf->b_p_bexpr) : p->var;
9123 #endif
9124 #ifdef FEAT_STL_OPT
9125 case PV_STL: return *curwin->w_p_stl != NUL
9126 ? (char_u *)&(curwin->w_p_stl) : p->var;
9127 #endif
9129 #ifdef FEAT_ARABIC
9130 case PV_ARAB: return (char_u *)&(curwin->w_p_arab);
9131 #endif
9132 case PV_LIST: return (char_u *)&(curwin->w_p_list);
9133 #ifdef FEAT_SPELL
9134 case PV_SPELL: return (char_u *)&(curwin->w_p_spell);
9135 #endif
9136 #ifdef FEAT_SYN_HL
9137 case PV_CUC: return (char_u *)&(curwin->w_p_cuc);
9138 case PV_CUL: return (char_u *)&(curwin->w_p_cul);
9139 #endif
9140 #ifdef FEAT_DIFF
9141 case PV_DIFF: return (char_u *)&(curwin->w_p_diff);
9142 #endif
9143 #ifdef FEAT_FOLDING
9144 case PV_FDC: return (char_u *)&(curwin->w_p_fdc);
9145 case PV_FEN: return (char_u *)&(curwin->w_p_fen);
9146 case PV_FDI: return (char_u *)&(curwin->w_p_fdi);
9147 case PV_FDL: return (char_u *)&(curwin->w_p_fdl);
9148 case PV_FDM: return (char_u *)&(curwin->w_p_fdm);
9149 case PV_FML: return (char_u *)&(curwin->w_p_fml);
9150 case PV_FDN: return (char_u *)&(curwin->w_p_fdn);
9151 # ifdef FEAT_EVAL
9152 case PV_FDE: return (char_u *)&(curwin->w_p_fde);
9153 case PV_FDT: return (char_u *)&(curwin->w_p_fdt);
9154 # endif
9155 case PV_FMR: return (char_u *)&(curwin->w_p_fmr);
9156 #endif
9157 case PV_NU: return (char_u *)&(curwin->w_p_nu);
9158 #ifdef FEAT_LINEBREAK
9159 case PV_NUW: return (char_u *)&(curwin->w_p_nuw);
9160 #endif
9161 #ifdef FEAT_WINDOWS
9162 case PV_WFH: return (char_u *)&(curwin->w_p_wfh);
9163 #endif
9164 #ifdef FEAT_VERTSPLIT
9165 case PV_WFW: return (char_u *)&(curwin->w_p_wfw);
9166 #endif
9167 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
9168 case PV_PVW: return (char_u *)&(curwin->w_p_pvw);
9169 #endif
9170 #ifdef FEAT_RIGHTLEFT
9171 case PV_RL: return (char_u *)&(curwin->w_p_rl);
9172 case PV_RLC: return (char_u *)&(curwin->w_p_rlc);
9173 #endif
9174 case PV_SCROLL: return (char_u *)&(curwin->w_p_scr);
9175 case PV_WRAP: return (char_u *)&(curwin->w_p_wrap);
9176 #ifdef FEAT_LINEBREAK
9177 case PV_LBR: return (char_u *)&(curwin->w_p_lbr);
9178 #endif
9179 #ifdef FEAT_SCROLLBIND
9180 case PV_SCBIND: return (char_u *)&(curwin->w_p_scb);
9181 #endif
9183 case PV_AI: return (char_u *)&(curbuf->b_p_ai);
9184 case PV_BIN: return (char_u *)&(curbuf->b_p_bin);
9185 #ifdef FEAT_MBYTE
9186 case PV_BOMB: return (char_u *)&(curbuf->b_p_bomb);
9187 #endif
9188 #if defined(FEAT_QUICKFIX)
9189 case PV_BH: return (char_u *)&(curbuf->b_p_bh);
9190 case PV_BT: return (char_u *)&(curbuf->b_p_bt);
9191 #endif
9192 case PV_BL: return (char_u *)&(curbuf->b_p_bl);
9193 case PV_CI: return (char_u *)&(curbuf->b_p_ci);
9194 #ifdef FEAT_CINDENT
9195 case PV_CIN: return (char_u *)&(curbuf->b_p_cin);
9196 case PV_CINK: return (char_u *)&(curbuf->b_p_cink);
9197 case PV_CINO: return (char_u *)&(curbuf->b_p_cino);
9198 #endif
9199 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
9200 case PV_CINW: return (char_u *)&(curbuf->b_p_cinw);
9201 #endif
9202 #ifdef FEAT_COMMENTS
9203 case PV_COM: return (char_u *)&(curbuf->b_p_com);
9204 #endif
9205 #ifdef FEAT_FOLDING
9206 case PV_CMS: return (char_u *)&(curbuf->b_p_cms);
9207 #endif
9208 #ifdef FEAT_INS_EXPAND
9209 case PV_CPT: return (char_u *)&(curbuf->b_p_cpt);
9210 #endif
9211 #ifdef FEAT_COMPL_FUNC
9212 case PV_CFU: return (char_u *)&(curbuf->b_p_cfu);
9213 case PV_OFU: return (char_u *)&(curbuf->b_p_ofu);
9214 #endif
9215 case PV_EOL: return (char_u *)&(curbuf->b_p_eol);
9216 case PV_ET: return (char_u *)&(curbuf->b_p_et);
9217 #ifdef FEAT_MBYTE
9218 case PV_FENC: return (char_u *)&(curbuf->b_p_fenc);
9219 #endif
9220 case PV_FF: return (char_u *)&(curbuf->b_p_ff);
9221 #ifdef FEAT_AUTOCMD
9222 case PV_FT: return (char_u *)&(curbuf->b_p_ft);
9223 #endif
9224 case PV_FO: return (char_u *)&(curbuf->b_p_fo);
9225 case PV_FLP: return (char_u *)&(curbuf->b_p_flp);
9226 case PV_IMI: return (char_u *)&(curbuf->b_p_iminsert);
9227 case PV_IMS: return (char_u *)&(curbuf->b_p_imsearch);
9228 case PV_INF: return (char_u *)&(curbuf->b_p_inf);
9229 case PV_ISK: return (char_u *)&(curbuf->b_p_isk);
9230 #ifdef FEAT_FIND_ID
9231 # ifdef FEAT_EVAL
9232 case PV_INEX: return (char_u *)&(curbuf->b_p_inex);
9233 # endif
9234 #endif
9235 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
9236 case PV_INDE: return (char_u *)&(curbuf->b_p_inde);
9237 case PV_INDK: return (char_u *)&(curbuf->b_p_indk);
9238 #endif
9239 #ifdef FEAT_EVAL
9240 case PV_FEX: return (char_u *)&(curbuf->b_p_fex);
9241 #endif
9242 #ifdef FEAT_CRYPT
9243 case PV_KEY: return (char_u *)&(curbuf->b_p_key);
9244 #endif
9245 #ifdef FEAT_LISP
9246 case PV_LISP: return (char_u *)&(curbuf->b_p_lisp);
9247 #endif
9248 case PV_ML: return (char_u *)&(curbuf->b_p_ml);
9249 case PV_MPS: return (char_u *)&(curbuf->b_p_mps);
9250 case PV_MA: return (char_u *)&(curbuf->b_p_ma);
9251 case PV_MOD: return (char_u *)&(curbuf->b_changed);
9252 case PV_NF: return (char_u *)&(curbuf->b_p_nf);
9253 #ifdef FEAT_OSFILETYPE
9254 case PV_OFT: return (char_u *)&(curbuf->b_p_oft);
9255 #endif
9256 case PV_PI: return (char_u *)&(curbuf->b_p_pi);
9257 #ifdef FEAT_TEXTOBJ
9258 case PV_QE: return (char_u *)&(curbuf->b_p_qe);
9259 #endif
9260 case PV_RO: return (char_u *)&(curbuf->b_p_ro);
9261 #ifdef FEAT_SMARTINDENT
9262 case PV_SI: return (char_u *)&(curbuf->b_p_si);
9263 #endif
9264 #ifndef SHORT_FNAME
9265 case PV_SN: return (char_u *)&(curbuf->b_p_sn);
9266 #endif
9267 case PV_STS: return (char_u *)&(curbuf->b_p_sts);
9268 #ifdef FEAT_SEARCHPATH
9269 case PV_SUA: return (char_u *)&(curbuf->b_p_sua);
9270 #endif
9271 case PV_SWF: return (char_u *)&(curbuf->b_p_swf);
9272 #ifdef FEAT_SYN_HL
9273 case PV_SMC: return (char_u *)&(curbuf->b_p_smc);
9274 case PV_SYN: return (char_u *)&(curbuf->b_p_syn);
9275 #endif
9276 #ifdef FEAT_SPELL
9277 case PV_SPC: return (char_u *)&(curbuf->b_p_spc);
9278 case PV_SPF: return (char_u *)&(curbuf->b_p_spf);
9279 case PV_SPL: return (char_u *)&(curbuf->b_p_spl);
9280 #endif
9281 case PV_SW: return (char_u *)&(curbuf->b_p_sw);
9282 case PV_TS: return (char_u *)&(curbuf->b_p_ts);
9283 case PV_TW: return (char_u *)&(curbuf->b_p_tw);
9284 case PV_TX: return (char_u *)&(curbuf->b_p_tx);
9285 case PV_WM: return (char_u *)&(curbuf->b_p_wm);
9286 #ifdef FEAT_KEYMAP
9287 case PV_KMAP: return (char_u *)&(curbuf->b_p_keymap);
9288 #endif
9289 default: EMSG(_("E356: get_varp ERROR"));
9291 /* always return a valid pointer to avoid a crash! */
9292 return (char_u *)&(curbuf->b_p_wm);
9296 * Get the value of 'equalprg', either the buffer-local one or the global one.
9298 char_u *
9299 get_equalprg()
9301 if (*curbuf->b_p_ep == NUL)
9302 return p_ep;
9303 return curbuf->b_p_ep;
9306 #if defined(FEAT_WINDOWS) || defined(PROTO)
9308 * Copy options from one window to another.
9309 * Used when splitting a window.
9311 void
9312 win_copy_options(wp_from, wp_to)
9313 win_T *wp_from;
9314 win_T *wp_to;
9316 copy_winopt(&wp_from->w_onebuf_opt, &wp_to->w_onebuf_opt);
9317 copy_winopt(&wp_from->w_allbuf_opt, &wp_to->w_allbuf_opt);
9318 # ifdef FEAT_RIGHTLEFT
9319 # ifdef FEAT_FKMAP
9320 /* Is this right? */
9321 wp_to->w_farsi = wp_from->w_farsi;
9322 # endif
9323 # endif
9325 #endif
9328 * Copy the options from one winopt_T to another.
9329 * Doesn't free the old option values in "to", use clear_winopt() for that.
9330 * The 'scroll' option is not copied, because it depends on the window height.
9331 * The 'previewwindow' option is reset, there can be only one preview window.
9333 void
9334 copy_winopt(from, to)
9335 winopt_T *from;
9336 winopt_T *to;
9338 #ifdef FEAT_ARABIC
9339 to->wo_arab = from->wo_arab;
9340 #endif
9341 to->wo_list = from->wo_list;
9342 to->wo_nu = from->wo_nu;
9343 #ifdef FEAT_LINEBREAK
9344 to->wo_nuw = from->wo_nuw;
9345 #endif
9346 #ifdef FEAT_RIGHTLEFT
9347 to->wo_rl = from->wo_rl;
9348 to->wo_rlc = vim_strsave(from->wo_rlc);
9349 #endif
9350 #ifdef FEAT_STL_OPT
9351 to->wo_stl = vim_strsave(from->wo_stl);
9352 #endif
9353 to->wo_wrap = from->wo_wrap;
9354 #ifdef FEAT_LINEBREAK
9355 to->wo_lbr = from->wo_lbr;
9356 #endif
9357 #ifdef FEAT_SCROLLBIND
9358 to->wo_scb = from->wo_scb;
9359 #endif
9360 #ifdef FEAT_SPELL
9361 to->wo_spell = from->wo_spell;
9362 #endif
9363 #ifdef FEAT_SYN_HL
9364 to->wo_cuc = from->wo_cuc;
9365 to->wo_cul = from->wo_cul;
9366 #endif
9367 #ifdef FEAT_DIFF
9368 to->wo_diff = from->wo_diff;
9369 #endif
9370 #ifdef FEAT_FOLDING
9371 to->wo_fdc = from->wo_fdc;
9372 to->wo_fen = from->wo_fen;
9373 to->wo_fdi = vim_strsave(from->wo_fdi);
9374 to->wo_fml = from->wo_fml;
9375 to->wo_fdl = from->wo_fdl;
9376 to->wo_fdm = vim_strsave(from->wo_fdm);
9377 to->wo_fdn = from->wo_fdn;
9378 # ifdef FEAT_EVAL
9379 to->wo_fde = vim_strsave(from->wo_fde);
9380 to->wo_fdt = vim_strsave(from->wo_fdt);
9381 # endif
9382 to->wo_fmr = vim_strsave(from->wo_fmr);
9383 #endif
9384 check_winopt(to); /* don't want NULL pointers */
9388 * Check string options in a window for a NULL value.
9390 void
9391 check_win_options(win)
9392 win_T *win;
9394 check_winopt(&win->w_onebuf_opt);
9395 check_winopt(&win->w_allbuf_opt);
9399 * Check for NULL pointers in a winopt_T and replace them with empty_option.
9401 /*ARGSUSED*/
9402 void
9403 check_winopt(wop)
9404 winopt_T *wop;
9406 #ifdef FEAT_FOLDING
9407 check_string_option(&wop->wo_fdi);
9408 check_string_option(&wop->wo_fdm);
9409 # ifdef FEAT_EVAL
9410 check_string_option(&wop->wo_fde);
9411 check_string_option(&wop->wo_fdt);
9412 # endif
9413 check_string_option(&wop->wo_fmr);
9414 #endif
9415 #ifdef FEAT_RIGHTLEFT
9416 check_string_option(&wop->wo_rlc);
9417 #endif
9418 #ifdef FEAT_STL_OPT
9419 check_string_option(&wop->wo_stl);
9420 #endif
9424 * Free the allocated memory inside a winopt_T.
9426 /*ARGSUSED*/
9427 void
9428 clear_winopt(wop)
9429 winopt_T *wop;
9431 #ifdef FEAT_FOLDING
9432 clear_string_option(&wop->wo_fdi);
9433 clear_string_option(&wop->wo_fdm);
9434 # ifdef FEAT_EVAL
9435 clear_string_option(&wop->wo_fde);
9436 clear_string_option(&wop->wo_fdt);
9437 # endif
9438 clear_string_option(&wop->wo_fmr);
9439 #endif
9440 #ifdef FEAT_RIGHTLEFT
9441 clear_string_option(&wop->wo_rlc);
9442 #endif
9443 #ifdef FEAT_STL_OPT
9444 clear_string_option(&wop->wo_stl);
9445 #endif
9449 * Copy global option values to local options for one buffer.
9450 * Used when creating a new buffer and sometimes when entering a buffer.
9451 * flags:
9452 * BCO_ENTER We will enter the buf buffer.
9453 * BCO_ALWAYS Always copy the options, but only set b_p_initialized when
9454 * appropriate.
9455 * BCO_NOHELP Don't copy the values to a help buffer.
9457 void
9458 buf_copy_options(buf, flags)
9459 buf_T *buf;
9460 int flags;
9462 int should_copy = TRUE;
9463 char_u *save_p_isk = NULL; /* init for GCC */
9464 int dont_do_help;
9465 int did_isk = FALSE;
9468 * Don't do anything of the buffer is invalid.
9470 if (buf == NULL || !buf_valid(buf))
9471 return;
9474 * Skip this when the option defaults have not been set yet. Happens when
9475 * main() allocates the first buffer.
9477 if (p_cpo != NULL)
9480 * Always copy when entering and 'cpo' contains 'S'.
9481 * Don't copy when already initialized.
9482 * Don't copy when 'cpo' contains 's' and not entering.
9483 * 'S' BCO_ENTER initialized 's' should_copy
9484 * yes yes X X TRUE
9485 * yes no yes X FALSE
9486 * no X yes X FALSE
9487 * X no no yes FALSE
9488 * X no no no TRUE
9489 * no yes no X TRUE
9491 if ((vim_strchr(p_cpo, CPO_BUFOPTGLOB) == NULL || !(flags & BCO_ENTER))
9492 && (buf->b_p_initialized
9493 || (!(flags & BCO_ENTER)
9494 && vim_strchr(p_cpo, CPO_BUFOPT) != NULL)))
9495 should_copy = FALSE;
9497 if (should_copy || (flags & BCO_ALWAYS))
9499 /* Don't copy the options specific to a help buffer when
9500 * BCO_NOHELP is given or the options were initialized already
9501 * (jumping back to a help file with CTRL-T or CTRL-O) */
9502 dont_do_help = ((flags & BCO_NOHELP) && buf->b_help)
9503 || buf->b_p_initialized;
9504 if (dont_do_help) /* don't free b_p_isk */
9506 save_p_isk = buf->b_p_isk;
9507 buf->b_p_isk = NULL;
9510 * Always free the allocated strings.
9511 * If not already initialized, set 'readonly' and copy 'fileformat'.
9513 if (!buf->b_p_initialized)
9515 free_buf_options(buf, TRUE);
9516 buf->b_p_ro = FALSE; /* don't copy readonly */
9517 buf->b_p_tx = p_tx;
9518 #ifdef FEAT_MBYTE
9519 buf->b_p_fenc = vim_strsave(p_fenc);
9520 #endif
9521 buf->b_p_ff = vim_strsave(p_ff);
9522 #if defined(FEAT_QUICKFIX)
9523 buf->b_p_bh = empty_option;
9524 buf->b_p_bt = empty_option;
9525 #endif
9527 else
9528 free_buf_options(buf, FALSE);
9530 buf->b_p_ai = p_ai;
9531 buf->b_p_ai_nopaste = p_ai_nopaste;
9532 buf->b_p_sw = p_sw;
9533 buf->b_p_tw = p_tw;
9534 buf->b_p_tw_nopaste = p_tw_nopaste;
9535 buf->b_p_tw_nobin = p_tw_nobin;
9536 buf->b_p_wm = p_wm;
9537 buf->b_p_wm_nopaste = p_wm_nopaste;
9538 buf->b_p_wm_nobin = p_wm_nobin;
9539 buf->b_p_bin = p_bin;
9540 #ifdef FEAT_MBYTE
9541 buf->b_p_bomb = p_bomb;
9542 #endif
9543 buf->b_p_et = p_et;
9544 buf->b_p_et_nobin = p_et_nobin;
9545 buf->b_p_ml = p_ml;
9546 buf->b_p_ml_nobin = p_ml_nobin;
9547 buf->b_p_inf = p_inf;
9548 buf->b_p_swf = p_swf;
9549 #ifdef FEAT_INS_EXPAND
9550 buf->b_p_cpt = vim_strsave(p_cpt);
9551 #endif
9552 #ifdef FEAT_COMPL_FUNC
9553 buf->b_p_cfu = vim_strsave(p_cfu);
9554 buf->b_p_ofu = vim_strsave(p_ofu);
9555 #endif
9556 buf->b_p_sts = p_sts;
9557 buf->b_p_sts_nopaste = p_sts_nopaste;
9558 #ifndef SHORT_FNAME
9559 buf->b_p_sn = p_sn;
9560 #endif
9561 #ifdef FEAT_COMMENTS
9562 buf->b_p_com = vim_strsave(p_com);
9563 #endif
9564 #ifdef FEAT_FOLDING
9565 buf->b_p_cms = vim_strsave(p_cms);
9566 #endif
9567 buf->b_p_fo = vim_strsave(p_fo);
9568 buf->b_p_flp = vim_strsave(p_flp);
9569 buf->b_p_nf = vim_strsave(p_nf);
9570 buf->b_p_mps = vim_strsave(p_mps);
9571 #ifdef FEAT_SMARTINDENT
9572 buf->b_p_si = p_si;
9573 #endif
9574 buf->b_p_ci = p_ci;
9575 #ifdef FEAT_CINDENT
9576 buf->b_p_cin = p_cin;
9577 buf->b_p_cink = vim_strsave(p_cink);
9578 buf->b_p_cino = vim_strsave(p_cino);
9579 #endif
9580 #ifdef FEAT_AUTOCMD
9581 /* Don't copy 'filetype', it must be detected */
9582 buf->b_p_ft = empty_option;
9583 #endif
9584 #ifdef FEAT_OSFILETYPE
9585 buf->b_p_oft = vim_strsave(p_oft);
9586 #endif
9587 buf->b_p_pi = p_pi;
9588 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
9589 buf->b_p_cinw = vim_strsave(p_cinw);
9590 #endif
9591 #ifdef FEAT_LISP
9592 buf->b_p_lisp = p_lisp;
9593 #endif
9594 #ifdef FEAT_SYN_HL
9595 /* Don't copy 'syntax', it must be set */
9596 buf->b_p_syn = empty_option;
9597 buf->b_p_smc = p_smc;
9598 #endif
9599 #ifdef FEAT_SPELL
9600 buf->b_p_spc = vim_strsave(p_spc);
9601 (void)compile_cap_prog(buf);
9602 buf->b_p_spf = vim_strsave(p_spf);
9603 buf->b_p_spl = vim_strsave(p_spl);
9604 #endif
9605 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
9606 buf->b_p_inde = vim_strsave(p_inde);
9607 buf->b_p_indk = vim_strsave(p_indk);
9608 #endif
9609 #if defined(FEAT_EVAL)
9610 buf->b_p_fex = vim_strsave(p_fex);
9611 #endif
9612 #ifdef FEAT_CRYPT
9613 buf->b_p_key = vim_strsave(p_key);
9614 #endif
9615 #ifdef FEAT_SEARCHPATH
9616 buf->b_p_sua = vim_strsave(p_sua);
9617 #endif
9618 #ifdef FEAT_KEYMAP
9619 buf->b_p_keymap = vim_strsave(p_keymap);
9620 buf->b_kmap_state |= KEYMAP_INIT;
9621 #endif
9622 /* This isn't really an option, but copying the langmap and IME
9623 * state from the current buffer is better than resetting it. */
9624 buf->b_p_iminsert = p_iminsert;
9625 buf->b_p_imsearch = p_imsearch;
9627 /* options that are normally global but also have a local value
9628 * are not copied, start using the global value */
9629 buf->b_p_ar = -1;
9630 #ifdef FEAT_QUICKFIX
9631 buf->b_p_gp = empty_option;
9632 buf->b_p_mp = empty_option;
9633 buf->b_p_efm = empty_option;
9634 #endif
9635 buf->b_p_ep = empty_option;
9636 buf->b_p_kp = empty_option;
9637 buf->b_p_path = empty_option;
9638 buf->b_p_tags = empty_option;
9639 #ifdef FEAT_FIND_ID
9640 buf->b_p_def = empty_option;
9641 buf->b_p_inc = empty_option;
9642 # ifdef FEAT_EVAL
9643 buf->b_p_inex = vim_strsave(p_inex);
9644 # endif
9645 #endif
9646 #ifdef FEAT_INS_EXPAND
9647 buf->b_p_dict = empty_option;
9648 buf->b_p_tsr = empty_option;
9649 #endif
9650 #ifdef FEAT_TEXTOBJ
9651 buf->b_p_qe = vim_strsave(p_qe);
9652 #endif
9653 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9654 buf->b_p_bexpr = empty_option;
9655 #endif
9658 * Don't copy the options set by ex_help(), use the saved values,
9659 * when going from a help buffer to a non-help buffer.
9660 * Don't touch these at all when BCO_NOHELP is used and going from
9661 * or to a help buffer.
9663 if (dont_do_help)
9664 buf->b_p_isk = save_p_isk;
9665 else
9667 buf->b_p_isk = vim_strsave(p_isk);
9668 did_isk = TRUE;
9669 buf->b_p_ts = p_ts;
9670 buf->b_help = FALSE;
9671 #ifdef FEAT_QUICKFIX
9672 if (buf->b_p_bt[0] == 'h')
9673 clear_string_option(&buf->b_p_bt);
9674 #endif
9675 buf->b_p_ma = p_ma;
9680 * When the options should be copied (ignoring BCO_ALWAYS), set the
9681 * flag that indicates that the options have been initialized.
9683 if (should_copy)
9684 buf->b_p_initialized = TRUE;
9687 check_buf_options(buf); /* make sure we don't have NULLs */
9688 if (did_isk)
9689 (void)buf_init_chartab(buf, FALSE);
9693 * Reset the 'modifiable' option and its default value.
9695 void
9696 reset_modifiable()
9698 int opt_idx;
9700 curbuf->b_p_ma = FALSE;
9701 p_ma = FALSE;
9702 opt_idx = findoption((char_u *)"ma");
9703 if (opt_idx >= 0)
9704 options[opt_idx].def_val[VI_DEFAULT] = FALSE;
9708 * Set the global value for 'iminsert' to the local value.
9710 void
9711 set_iminsert_global()
9713 p_iminsert = curbuf->b_p_iminsert;
9717 * Set the global value for 'imsearch' to the local value.
9719 void
9720 set_imsearch_global()
9722 p_imsearch = curbuf->b_p_imsearch;
9725 #if defined(FEAT_CMDL_COMPL) || defined(PROTO)
9726 static int expand_option_idx = -1;
9727 static char_u expand_option_name[5] = {'t', '_', NUL, NUL, NUL};
9728 static int expand_option_flags = 0;
9730 void
9731 set_context_in_set_cmd(xp, arg, opt_flags)
9732 expand_T *xp;
9733 char_u *arg;
9734 int opt_flags; /* OPT_GLOBAL and/or OPT_LOCAL */
9736 int nextchar;
9737 long_u flags = 0; /* init for GCC */
9738 int opt_idx = 0; /* init for GCC */
9739 char_u *p;
9740 char_u *s;
9741 int is_term_option = FALSE;
9742 int key;
9744 expand_option_flags = opt_flags;
9746 xp->xp_context = EXPAND_SETTINGS;
9747 if (*arg == NUL)
9749 xp->xp_pattern = arg;
9750 return;
9752 p = arg + STRLEN(arg) - 1;
9753 if (*p == ' ' && *(p - 1) != '\\')
9755 xp->xp_pattern = p + 1;
9756 return;
9758 while (p > arg)
9760 s = p;
9761 /* count number of backslashes before ' ' or ',' */
9762 if (*p == ' ' || *p == ',')
9764 while (s > arg && *(s - 1) == '\\')
9765 --s;
9767 /* break at a space with an even number of backslashes */
9768 if (*p == ' ' && ((p - s) & 1) == 0)
9770 ++p;
9771 break;
9773 --p;
9775 if (STRNCMP(p, "no", 2) == 0)
9777 xp->xp_context = EXPAND_BOOL_SETTINGS;
9778 p += 2;
9780 if (STRNCMP(p, "inv", 3) == 0)
9782 xp->xp_context = EXPAND_BOOL_SETTINGS;
9783 p += 3;
9785 xp->xp_pattern = arg = p;
9786 if (*arg == '<')
9788 while (*p != '>')
9789 if (*p++ == NUL) /* expand terminal option name */
9790 return;
9791 key = get_special_key_code(arg + 1);
9792 if (key == 0) /* unknown name */
9794 xp->xp_context = EXPAND_NOTHING;
9795 return;
9797 nextchar = *++p;
9798 is_term_option = TRUE;
9799 expand_option_name[2] = KEY2TERMCAP0(key);
9800 expand_option_name[3] = KEY2TERMCAP1(key);
9802 else
9804 if (p[0] == 't' && p[1] == '_')
9806 p += 2;
9807 if (*p != NUL)
9808 ++p;
9809 if (*p == NUL)
9810 return; /* expand option name */
9811 nextchar = *++p;
9812 is_term_option = TRUE;
9813 expand_option_name[2] = p[-2];
9814 expand_option_name[3] = p[-1];
9816 else
9818 /* Allow * wildcard */
9819 while (ASCII_ISALNUM(*p) || *p == '_' || *p == '*')
9820 p++;
9821 if (*p == NUL)
9822 return;
9823 nextchar = *p;
9824 *p = NUL;
9825 opt_idx = findoption(arg);
9826 *p = nextchar;
9827 if (opt_idx == -1 || options[opt_idx].var == NULL)
9829 xp->xp_context = EXPAND_NOTHING;
9830 return;
9832 flags = options[opt_idx].flags;
9833 if (flags & P_BOOL)
9835 xp->xp_context = EXPAND_NOTHING;
9836 return;
9840 /* handle "-=" and "+=" */
9841 if ((nextchar == '-' || nextchar == '+' || nextchar == '^') && p[1] == '=')
9843 ++p;
9844 nextchar = '=';
9846 if ((nextchar != '=' && nextchar != ':')
9847 || xp->xp_context == EXPAND_BOOL_SETTINGS)
9849 xp->xp_context = EXPAND_UNSUCCESSFUL;
9850 return;
9852 if (xp->xp_context != EXPAND_BOOL_SETTINGS && p[1] == NUL)
9854 xp->xp_context = EXPAND_OLD_SETTING;
9855 if (is_term_option)
9856 expand_option_idx = -1;
9857 else
9858 expand_option_idx = opt_idx;
9859 xp->xp_pattern = p + 1;
9860 return;
9862 xp->xp_context = EXPAND_NOTHING;
9863 if (is_term_option || (flags & P_NUM))
9864 return;
9866 xp->xp_pattern = p + 1;
9868 if (flags & P_EXPAND)
9870 p = options[opt_idx].var;
9871 if (p == (char_u *)&p_bdir
9872 || p == (char_u *)&p_dir
9873 || p == (char_u *)&p_path
9874 || p == (char_u *)&p_rtp
9875 #ifdef FEAT_SEARCHPATH
9876 || p == (char_u *)&p_cdpath
9877 #endif
9878 #ifdef FEAT_SESSION
9879 || p == (char_u *)&p_vdir
9880 #endif
9883 xp->xp_context = EXPAND_DIRECTORIES;
9884 if (p == (char_u *)&p_path
9885 #ifdef FEAT_SEARCHPATH
9886 || p == (char_u *)&p_cdpath
9887 #endif
9889 xp->xp_backslash = XP_BS_THREE;
9890 else
9891 xp->xp_backslash = XP_BS_ONE;
9893 else
9895 xp->xp_context = EXPAND_FILES;
9896 /* for 'tags' need three backslashes for a space */
9897 if (p == (char_u *)&p_tags)
9898 xp->xp_backslash = XP_BS_THREE;
9899 else
9900 xp->xp_backslash = XP_BS_ONE;
9904 /* For an option that is a list of file names, find the start of the
9905 * last file name. */
9906 for (p = arg + STRLEN(arg) - 1; p > xp->xp_pattern; --p)
9908 /* count number of backslashes before ' ' or ',' */
9909 if (*p == ' ' || *p == ',')
9911 s = p;
9912 while (s > xp->xp_pattern && *(s - 1) == '\\')
9913 --s;
9914 if ((*p == ' ' && (xp->xp_backslash == XP_BS_THREE && (p - s) < 3))
9915 || (*p == ',' && (flags & P_COMMA) && ((p - s) & 1) == 0))
9917 xp->xp_pattern = p + 1;
9918 break;
9922 #ifdef FEAT_SPELL
9923 /* for 'spellsuggest' start at "file:" */
9924 if (options[opt_idx].var == (char_u *)&p_sps
9925 && STRNCMP(p, "file:", 5) == 0)
9927 xp->xp_pattern = p + 5;
9928 break;
9930 #endif
9933 return;
9937 ExpandSettings(xp, regmatch, num_file, file)
9938 expand_T *xp;
9939 regmatch_T *regmatch;
9940 int *num_file;
9941 char_u ***file;
9943 int num_normal = 0; /* Nr of matching non-term-code settings */
9944 int num_term = 0; /* Nr of matching terminal code settings */
9945 int opt_idx;
9946 int match;
9947 int count = 0;
9948 char_u *str;
9949 int loop;
9950 int is_term_opt;
9951 char_u name_buf[MAX_KEY_NAME_LEN];
9952 static char *(names[]) = {"all", "termcap"};
9953 int ic = regmatch->rm_ic; /* remember the ignore-case flag */
9955 /* do this loop twice:
9956 * loop == 0: count the number of matching options
9957 * loop == 1: copy the matching options into allocated memory
9959 for (loop = 0; loop <= 1; ++loop)
9961 regmatch->rm_ic = ic;
9962 if (xp->xp_context != EXPAND_BOOL_SETTINGS)
9964 for (match = 0; match < sizeof(names) / sizeof(char *); ++match)
9965 if (vim_regexec(regmatch, (char_u *)names[match], (colnr_T)0))
9967 if (loop == 0)
9968 num_normal++;
9969 else
9970 (*file)[count++] = vim_strsave((char_u *)names[match]);
9973 for (opt_idx = 0; (str = (char_u *)options[opt_idx].fullname) != NULL;
9974 opt_idx++)
9976 if (options[opt_idx].var == NULL)
9977 continue;
9978 if (xp->xp_context == EXPAND_BOOL_SETTINGS
9979 && !(options[opt_idx].flags & P_BOOL))
9980 continue;
9981 is_term_opt = istermoption(&options[opt_idx]);
9982 if (is_term_opt && num_normal > 0)
9983 continue;
9984 match = FALSE;
9985 if (vim_regexec(regmatch, str, (colnr_T)0)
9986 || (options[opt_idx].shortname != NULL
9987 && vim_regexec(regmatch,
9988 (char_u *)options[opt_idx].shortname, (colnr_T)0)))
9989 match = TRUE;
9990 else if (is_term_opt)
9992 name_buf[0] = '<';
9993 name_buf[1] = 't';
9994 name_buf[2] = '_';
9995 name_buf[3] = str[2];
9996 name_buf[4] = str[3];
9997 name_buf[5] = '>';
9998 name_buf[6] = NUL;
9999 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10001 match = TRUE;
10002 str = name_buf;
10005 if (match)
10007 if (loop == 0)
10009 if (is_term_opt)
10010 num_term++;
10011 else
10012 num_normal++;
10014 else
10015 (*file)[count++] = vim_strsave(str);
10019 * Check terminal key codes, these are not in the option table
10021 if (xp->xp_context != EXPAND_BOOL_SETTINGS && num_normal == 0)
10023 for (opt_idx = 0; (str = get_termcode(opt_idx)) != NULL; opt_idx++)
10025 if (!isprint(str[0]) || !isprint(str[1]))
10026 continue;
10028 name_buf[0] = 't';
10029 name_buf[1] = '_';
10030 name_buf[2] = str[0];
10031 name_buf[3] = str[1];
10032 name_buf[4] = NUL;
10034 match = FALSE;
10035 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10036 match = TRUE;
10037 else
10039 name_buf[0] = '<';
10040 name_buf[1] = 't';
10041 name_buf[2] = '_';
10042 name_buf[3] = str[0];
10043 name_buf[4] = str[1];
10044 name_buf[5] = '>';
10045 name_buf[6] = NUL;
10047 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10048 match = TRUE;
10050 if (match)
10052 if (loop == 0)
10053 num_term++;
10054 else
10055 (*file)[count++] = vim_strsave(name_buf);
10060 * Check special key names.
10062 regmatch->rm_ic = TRUE; /* ignore case here */
10063 for (opt_idx = 0; (str = get_key_name(opt_idx)) != NULL; opt_idx++)
10065 name_buf[0] = '<';
10066 STRCPY(name_buf + 1, str);
10067 STRCAT(name_buf, ">");
10069 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10071 if (loop == 0)
10072 num_term++;
10073 else
10074 (*file)[count++] = vim_strsave(name_buf);
10078 if (loop == 0)
10080 if (num_normal > 0)
10081 *num_file = num_normal;
10082 else if (num_term > 0)
10083 *num_file = num_term;
10084 else
10085 return OK;
10086 *file = (char_u **)alloc((unsigned)(*num_file * sizeof(char_u *)));
10087 if (*file == NULL)
10089 *file = (char_u **)"";
10090 return FAIL;
10094 return OK;
10098 ExpandOldSetting(num_file, file)
10099 int *num_file;
10100 char_u ***file;
10102 char_u *var = NULL; /* init for GCC */
10103 char_u *buf;
10105 *num_file = 0;
10106 *file = (char_u **)alloc((unsigned)sizeof(char_u *));
10107 if (*file == NULL)
10108 return FAIL;
10111 * For a terminal key code expand_option_idx is < 0.
10113 if (expand_option_idx < 0)
10115 var = find_termcode(expand_option_name + 2);
10116 if (var == NULL)
10117 expand_option_idx = findoption(expand_option_name);
10120 if (expand_option_idx >= 0)
10122 /* put string of option value in NameBuff */
10123 option_value2string(&options[expand_option_idx], expand_option_flags);
10124 var = NameBuff;
10126 else if (var == NULL)
10127 var = (char_u *)"";
10129 /* A backslash is required before some characters. This is the reverse of
10130 * what happens in do_set(). */
10131 buf = vim_strsave_escaped(var, escape_chars);
10133 if (buf == NULL)
10135 vim_free(*file);
10136 *file = NULL;
10137 return FAIL;
10140 #ifdef BACKSLASH_IN_FILENAME
10141 /* For MS-Windows et al. we don't double backslashes at the start and
10142 * before a file name character. */
10143 for (var = buf; *var != NUL; mb_ptr_adv(var))
10144 if (var[0] == '\\' && var[1] == '\\'
10145 && expand_option_idx >= 0
10146 && (options[expand_option_idx].flags & P_EXPAND)
10147 && vim_isfilec(var[2])
10148 && (var[2] != '\\' || (var == buf && var[4] != '\\')))
10149 mch_memmove(var, var + 1, STRLEN(var));
10150 #endif
10152 *file[0] = buf;
10153 *num_file = 1;
10154 return OK;
10156 #endif
10159 * Get the value for the numeric or string option *opp in a nice format into
10160 * NameBuff[]. Must not be called with a hidden option!
10162 static void
10163 option_value2string(opp, opt_flags)
10164 struct vimoption *opp;
10165 int opt_flags; /* OPT_GLOBAL and/or OPT_LOCAL */
10167 char_u *varp;
10169 varp = get_varp_scope(opp, opt_flags);
10171 if (opp->flags & P_NUM)
10173 long wc = 0;
10175 if (wc_use_keyname(varp, &wc))
10176 STRCPY(NameBuff, get_special_key_name((int)wc, 0));
10177 else if (wc != 0)
10178 STRCPY(NameBuff, transchar((int)wc));
10179 else
10180 sprintf((char *)NameBuff, "%ld", *(long *)varp);
10182 else /* P_STRING */
10184 varp = *(char_u **)(varp);
10185 if (varp == NULL) /* just in case */
10186 NameBuff[0] = NUL;
10187 #ifdef FEAT_CRYPT
10188 /* don't show the actual value of 'key', only that it's set */
10189 else if (opp->var == (char_u *)&p_key && *varp)
10190 STRCPY(NameBuff, "*****");
10191 #endif
10192 else if (opp->flags & P_EXPAND)
10193 home_replace(NULL, varp, NameBuff, MAXPATHL, FALSE);
10194 /* Translate 'pastetoggle' into special key names */
10195 else if ((char_u **)opp->var == &p_pt)
10196 str2specialbuf(p_pt, NameBuff, MAXPATHL);
10197 else
10198 vim_strncpy(NameBuff, varp, MAXPATHL - 1);
10203 * Return TRUE if "varp" points to 'wildchar' or 'wildcharm' and it can be
10204 * printed as a keyname.
10205 * "*wcp" is set to the value of the option if it's 'wildchar' or 'wildcharm'.
10207 static int
10208 wc_use_keyname(varp, wcp)
10209 char_u *varp;
10210 long *wcp;
10212 if (((long *)varp == &p_wc) || ((long *)varp == &p_wcm))
10214 *wcp = *(long *)varp;
10215 if (IS_SPECIAL(*wcp) || find_special_key_in_table((int)*wcp) >= 0)
10216 return TRUE;
10218 return FALSE;
10221 #ifdef FEAT_LANGMAP
10223 * Any character has an equivalent character. This is used for keyboards that
10224 * have a special language mode that sends characters above 128 (although
10225 * other characters can be translated too).
10229 * char_u langmap_mapchar[256];
10230 * Normally maps each of the 128 upper chars to an <128 ascii char; used to
10231 * "translate" native lang chars in normal mode or some cases of
10232 * insert mode without having to tediously switch lang mode back&forth.
10235 static void
10236 langmap_init()
10238 int i;
10240 for (i = 0; i < 256; i++) /* we init with a-one-to one map */
10241 langmap_mapchar[i] = i;
10245 * Called when langmap option is set; the language map can be
10246 * changed at any time!
10248 static void
10249 langmap_set()
10251 char_u *p;
10252 char_u *p2;
10253 int from, to;
10255 langmap_init(); /* back to one-to-one map first */
10257 for (p = p_langmap; p[0] != NUL; )
10259 for (p2 = p; p2[0] != NUL && p2[0] != ',' && p2[0] != ';';
10260 mb_ptr_adv(p2))
10262 if (p2[0] == '\\' && p2[1] != NUL)
10263 ++p2;
10265 if (p2[0] == ';')
10266 ++p2; /* abcd;ABCD form, p2 points to A */
10267 else
10268 p2 = NULL; /* aAbBcCdD form, p2 is NULL */
10269 while (p[0])
10271 if (p[0] == '\\' && p[1] != NUL)
10272 ++p;
10273 #ifdef FEAT_MBYTE
10274 from = (*mb_ptr2char)(p);
10275 #else
10276 from = p[0];
10277 #endif
10278 if (p2 == NULL)
10280 mb_ptr_adv(p);
10281 if (p[0] == '\\')
10282 ++p;
10283 #ifdef FEAT_MBYTE
10284 to = (*mb_ptr2char)(p);
10285 #else
10286 to = p[0];
10287 #endif
10289 else
10291 if (p2[0] == '\\')
10292 ++p2;
10293 #ifdef FEAT_MBYTE
10294 to = (*mb_ptr2char)(p2);
10295 #else
10296 to = p2[0];
10297 #endif
10299 if (to == NUL)
10301 EMSG2(_("E357: 'langmap': Matching character missing for %s"),
10302 transchar(from));
10303 return;
10305 langmap_mapchar[from & 255] = to;
10307 /* Advance to next pair */
10308 mb_ptr_adv(p);
10309 if (p2 == NULL)
10311 if (p[0] == ',')
10313 ++p;
10314 break;
10317 else
10319 mb_ptr_adv(p2);
10320 if (*p == ';')
10322 p = p2;
10323 if (p[0] != NUL)
10325 if (p[0] != ',')
10327 EMSG2(_("E358: 'langmap': Extra characters after semicolon: %s"), p);
10328 return;
10330 ++p;
10332 break;
10338 #endif
10341 * Return TRUE if format option 'x' is in effect.
10342 * Take care of no formatting when 'paste' is set.
10345 has_format_option(x)
10346 int x;
10348 if (p_paste)
10349 return FALSE;
10350 return (vim_strchr(curbuf->b_p_fo, x) != NULL);
10354 * Return TRUE if "x" is present in 'shortmess' option, or
10355 * 'shortmess' contains 'a' and "x" is present in SHM_A.
10358 shortmess(x)
10359 int x;
10361 return ( vim_strchr(p_shm, x) != NULL
10362 || (vim_strchr(p_shm, 'a') != NULL
10363 && vim_strchr((char_u *)SHM_A, x) != NULL));
10367 * paste_option_changed() - Called after p_paste was set or reset.
10369 static void
10370 paste_option_changed()
10372 static int old_p_paste = FALSE;
10373 static int save_sm = 0;
10374 #ifdef FEAT_CMDL_INFO
10375 static int save_ru = 0;
10376 #endif
10377 #ifdef FEAT_RIGHTLEFT
10378 static int save_ri = 0;
10379 static int save_hkmap = 0;
10380 #endif
10381 buf_T *buf;
10383 if (p_paste)
10386 * Paste switched from off to on.
10387 * Save the current values, so they can be restored later.
10389 if (!old_p_paste)
10391 /* save options for each buffer */
10392 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10394 buf->b_p_tw_nopaste = buf->b_p_tw;
10395 buf->b_p_wm_nopaste = buf->b_p_wm;
10396 buf->b_p_sts_nopaste = buf->b_p_sts;
10397 buf->b_p_ai_nopaste = buf->b_p_ai;
10400 /* save global options */
10401 save_sm = p_sm;
10402 #ifdef FEAT_CMDL_INFO
10403 save_ru = p_ru;
10404 #endif
10405 #ifdef FEAT_RIGHTLEFT
10406 save_ri = p_ri;
10407 save_hkmap = p_hkmap;
10408 #endif
10409 /* save global values for local buffer options */
10410 p_tw_nopaste = p_tw;
10411 p_wm_nopaste = p_wm;
10412 p_sts_nopaste = p_sts;
10413 p_ai_nopaste = p_ai;
10417 * Always set the option values, also when 'paste' is set when it is
10418 * already on.
10420 /* set options for each buffer */
10421 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10423 buf->b_p_tw = 0; /* textwidth is 0 */
10424 buf->b_p_wm = 0; /* wrapmargin is 0 */
10425 buf->b_p_sts = 0; /* softtabstop is 0 */
10426 buf->b_p_ai = 0; /* no auto-indent */
10429 /* set global options */
10430 p_sm = 0; /* no showmatch */
10431 #ifdef FEAT_CMDL_INFO
10432 # ifdef FEAT_WINDOWS
10433 if (p_ru)
10434 status_redraw_all(); /* redraw to remove the ruler */
10435 # endif
10436 p_ru = 0; /* no ruler */
10437 #endif
10438 #ifdef FEAT_RIGHTLEFT
10439 p_ri = 0; /* no reverse insert */
10440 p_hkmap = 0; /* no Hebrew keyboard */
10441 #endif
10442 /* set global values for local buffer options */
10443 p_tw = 0;
10444 p_wm = 0;
10445 p_sts = 0;
10446 p_ai = 0;
10450 * Paste switched from on to off: Restore saved values.
10452 else if (old_p_paste)
10454 /* restore options for each buffer */
10455 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10457 buf->b_p_tw = buf->b_p_tw_nopaste;
10458 buf->b_p_wm = buf->b_p_wm_nopaste;
10459 buf->b_p_sts = buf->b_p_sts_nopaste;
10460 buf->b_p_ai = buf->b_p_ai_nopaste;
10463 /* restore global options */
10464 p_sm = save_sm;
10465 #ifdef FEAT_CMDL_INFO
10466 # ifdef FEAT_WINDOWS
10467 if (p_ru != save_ru)
10468 status_redraw_all(); /* redraw to draw the ruler */
10469 # endif
10470 p_ru = save_ru;
10471 #endif
10472 #ifdef FEAT_RIGHTLEFT
10473 p_ri = save_ri;
10474 p_hkmap = save_hkmap;
10475 #endif
10476 /* set global values for local buffer options */
10477 p_tw = p_tw_nopaste;
10478 p_wm = p_wm_nopaste;
10479 p_sts = p_sts_nopaste;
10480 p_ai = p_ai_nopaste;
10483 old_p_paste = p_paste;
10487 * vimrc_found() - Called when a ".vimrc" or "VIMINIT" has been found.
10489 * Reset 'compatible' and set the values for options that didn't get set yet
10490 * to the Vim defaults.
10491 * Don't do this if the 'compatible' option has been set or reset before.
10492 * When "fname" is not NULL, use it to set $"envname" when it wasn't set yet.
10494 void
10495 vimrc_found(fname, envname)
10496 char_u *fname;
10497 char_u *envname;
10499 int opt_idx;
10500 int dofree = FALSE;
10501 char_u *p;
10503 if (!option_was_set((char_u *)"cp"))
10505 p_cp = FALSE;
10506 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
10507 if (!(options[opt_idx].flags & (P_WAS_SET|P_VI_DEF)))
10508 set_option_default(opt_idx, OPT_FREE, FALSE);
10509 didset_options();
10512 if (fname != NULL)
10514 p = vim_getenv(envname, &dofree);
10515 if (p == NULL)
10517 /* Set $MYVIMRC to the first vimrc file found. */
10518 p = FullName_save(fname, FALSE);
10519 if (p != NULL)
10521 vim_setenv(envname, p);
10522 vim_free(p);
10525 else if (dofree)
10526 vim_free(p);
10531 * Set 'compatible' on or off. Called for "-C" and "-N" command line arg.
10533 void
10534 change_compatible(on)
10535 int on;
10537 int opt_idx;
10539 if (p_cp != on)
10541 p_cp = on;
10542 compatible_set();
10544 opt_idx = findoption((char_u *)"cp");
10545 if (opt_idx >= 0)
10546 options[opt_idx].flags |= P_WAS_SET;
10550 * Return TRUE when option "name" has been set.
10553 option_was_set(name)
10554 char_u *name;
10556 int idx;
10558 idx = findoption(name);
10559 if (idx < 0) /* unknown option */
10560 return FALSE;
10561 if (options[idx].flags & P_WAS_SET)
10562 return TRUE;
10563 return FALSE;
10567 * compatible_set() - Called when 'compatible' has been set or unset.
10569 * When 'compatible' set: Set all relevant options (those that have the P_VIM)
10570 * flag) to a Vi compatible value.
10571 * When 'compatible' is unset: Set all options that have a different default
10572 * for Vim (without the P_VI_DEF flag) to that default.
10574 static void
10575 compatible_set()
10577 int opt_idx;
10579 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
10580 if ( ((options[opt_idx].flags & P_VIM) && p_cp)
10581 || (!(options[opt_idx].flags & P_VI_DEF) && !p_cp))
10582 set_option_default(opt_idx, OPT_FREE, p_cp);
10583 didset_options();
10586 #ifdef FEAT_LINEBREAK
10588 # if defined(__BORLANDC__) && (__BORLANDC__ < 0x500)
10589 /* Borland C++ screws up loop optimisation here (negri) */
10590 #pragma option -O-l
10591 # endif
10594 * fill_breakat_flags() -- called when 'breakat' changes value.
10596 static void
10597 fill_breakat_flags()
10599 char_u *p;
10600 int i;
10602 for (i = 0; i < 256; i++)
10603 breakat_flags[i] = FALSE;
10605 if (p_breakat != NULL)
10606 for (p = p_breakat; *p; p++)
10607 breakat_flags[*p] = TRUE;
10610 # if defined(__BORLANDC__) && (__BORLANDC__ < 0x500)
10611 #pragma option -O.l
10612 # endif
10614 #endif
10617 * Check an option that can be a range of string values.
10619 * Return OK for correct value, FAIL otherwise.
10620 * Empty is always OK.
10622 static int
10623 check_opt_strings(val, values, list)
10624 char_u *val;
10625 char **values;
10626 int list; /* when TRUE: accept a list of values */
10628 return opt_strings_flags(val, values, NULL, list);
10632 * Handle an option that can be a range of string values.
10633 * Set a flag in "*flagp" for each string present.
10635 * Return OK for correct value, FAIL otherwise.
10636 * Empty is always OK.
10638 static int
10639 opt_strings_flags(val, values, flagp, list)
10640 char_u *val; /* new value */
10641 char **values; /* array of valid string values */
10642 unsigned *flagp;
10643 int list; /* when TRUE: accept a list of values */
10645 int i;
10646 int len;
10647 unsigned new_flags = 0;
10649 while (*val)
10651 for (i = 0; ; ++i)
10653 if (values[i] == NULL) /* val not found in values[] */
10654 return FAIL;
10656 len = (int)STRLEN(values[i]);
10657 if (STRNCMP(values[i], val, len) == 0
10658 && ((list && val[len] == ',') || val[len] == NUL))
10660 val += len + (val[len] == ',');
10661 new_flags |= (1 << i);
10662 break; /* check next item in val list */
10666 if (flagp != NULL)
10667 *flagp = new_flags;
10669 return OK;
10673 * Read the 'wildmode' option, fill wim_flags[].
10675 static int
10676 check_opt_wim()
10678 char_u new_wim_flags[4];
10679 char_u *p;
10680 int i;
10681 int idx = 0;
10683 for (i = 0; i < 4; ++i)
10684 new_wim_flags[i] = 0;
10686 for (p = p_wim; *p; ++p)
10688 for (i = 0; ASCII_ISALPHA(p[i]); ++i)
10690 if (p[i] != NUL && p[i] != ',' && p[i] != ':')
10691 return FAIL;
10692 if (i == 7 && STRNCMP(p, "longest", 7) == 0)
10693 new_wim_flags[idx] |= WIM_LONGEST;
10694 else if (i == 4 && STRNCMP(p, "full", 4) == 0)
10695 new_wim_flags[idx] |= WIM_FULL;
10696 else if (i == 4 && STRNCMP(p, "list", 4) == 0)
10697 new_wim_flags[idx] |= WIM_LIST;
10698 else
10699 return FAIL;
10700 p += i;
10701 if (*p == NUL)
10702 break;
10703 if (*p == ',')
10705 if (idx == 3)
10706 return FAIL;
10707 ++idx;
10711 /* fill remaining entries with last flag */
10712 while (idx < 3)
10714 new_wim_flags[idx + 1] = new_wim_flags[idx];
10715 ++idx;
10718 /* only when there are no errors, wim_flags[] is changed */
10719 for (i = 0; i < 4; ++i)
10720 wim_flags[i] = new_wim_flags[i];
10721 return OK;
10725 * Check if backspacing over something is allowed.
10728 can_bs(what)
10729 int what; /* BS_INDENT, BS_EOL or BS_START */
10731 switch (*p_bs)
10733 case '2': return TRUE;
10734 case '1': return (what != BS_START);
10735 case '0': return FALSE;
10737 return vim_strchr(p_bs, what) != NULL;
10741 * Save the current values of 'fileformat' and 'fileencoding', so that we know
10742 * the file must be considered changed when the value is different.
10744 void
10745 save_file_ff(buf)
10746 buf_T *buf;
10748 buf->b_start_ffc = *buf->b_p_ff;
10749 buf->b_start_eol = buf->b_p_eol;
10750 #ifdef FEAT_MBYTE
10751 buf->b_start_bomb = buf->b_p_bomb;
10753 /* Only use free/alloc when necessary, they take time. */
10754 if (buf->b_start_fenc == NULL
10755 || STRCMP(buf->b_start_fenc, buf->b_p_fenc) != 0)
10757 vim_free(buf->b_start_fenc);
10758 buf->b_start_fenc = vim_strsave(buf->b_p_fenc);
10760 #endif
10764 * Return TRUE if 'fileformat' and/or 'fileencoding' has a different value
10765 * from when editing started (save_file_ff() called).
10766 * Also when 'endofline' was changed and 'binary' is set, or when 'bomb' was
10767 * changed and 'binary' is not set.
10768 * Don't consider a new, empty buffer to be changed.
10771 file_ff_differs(buf)
10772 buf_T *buf;
10774 /* In a buffer that was never loaded the options are not valid. */
10775 if (buf->b_flags & BF_NEVERLOADED)
10776 return FALSE;
10777 if ((buf->b_flags & BF_NEW)
10778 && buf->b_ml.ml_line_count == 1
10779 && *ml_get_buf(buf, (linenr_T)1, FALSE) == NUL)
10780 return FALSE;
10781 if (buf->b_start_ffc != *buf->b_p_ff)
10782 return TRUE;
10783 if (buf->b_p_bin && buf->b_start_eol != buf->b_p_eol)
10784 return TRUE;
10785 #ifdef FEAT_MBYTE
10786 if (!buf->b_p_bin && buf->b_start_bomb != buf->b_p_bomb)
10787 return TRUE;
10788 if (buf->b_start_fenc == NULL)
10789 return (*buf->b_p_fenc != NUL);
10790 return (STRCMP(buf->b_start_fenc, buf->b_p_fenc) != 0);
10791 #else
10792 return FALSE;
10793 #endif
10797 * return OK if "p" is a valid fileformat name, FAIL otherwise.
10800 check_ff_value(p)
10801 char_u *p;
10803 return check_opt_strings(p, p_ff_values, FALSE);
10806 #ifdef FEAT_FULLSCREEN
10808 * Read the 'fuoptions' option, set fuoptions_flags and
10809 * fuoptions_bgcolor.
10811 static int
10812 check_fuoptions(p_fuoptions, flags, bgcolor)
10813 char_u *p_fuoptions; /* fuoptions string */
10814 unsigned *flags; /* fuoptions flags */
10815 int *bgcolor; /* background highlight group id */
10817 unsigned new_fuoptions_flags;
10818 int new_fuoptions_bgcolor;
10819 char_u *p;
10820 char_u hg_term; /* character terminating
10821 highlight group string in
10822 'background' option' */
10823 int i,j,k;
10825 new_fuoptions_flags = 0;
10826 new_fuoptions_bgcolor = 0xFF000000;
10828 for (p = p_fuoptions; *p; ++p)
10830 for (i = 0; ASCII_ISALPHA(p[i]); ++i)
10832 if (p[i] != NUL && p[i] != ',' && p[i] != ':')
10833 return FAIL;
10834 if (i == 10 && STRNCMP(p, "background", 10) == 0)
10836 if (p[i] != ':') return FAIL;
10837 i++;
10838 if (p[i] == NUL) return FAIL;
10839 if (p[i] == '#')
10841 /* explicit color (#aarrggbb) */
10842 i++;
10843 for (j = i; j < i+8 && vim_isxdigit(p[j]); ++j)
10845 if (j < i+8)
10846 return FAIL; /* less than 8 digits */
10847 if (p[j] != NUL && p[j] != ',')
10848 return FAIL;
10849 new_fuoptions_bgcolor = 0;
10850 for (k = 0; k < 8; k++)
10851 new_fuoptions_bgcolor = new_fuoptions_bgcolor * 16 +
10852 hex2nr(p[i+k]);
10853 i = j;
10854 /* mark bgcolor as an explicit argb color */
10855 new_fuoptions_flags &= ~FUOPT_BGCOLOR_HLGROUP;
10857 else
10859 /* highlight group name */
10860 for (j = i; ASCII_ISALPHA(p[j]); ++j)
10862 if (p[j] != NUL && p[j] != ',')
10863 return FAIL;
10864 hg_term = p[j];
10865 p[j] = NUL; /* temporarily terminate string */
10866 new_fuoptions_bgcolor = syn_name2id((char_u*)(p+i));
10867 p[j] = hg_term; /* restore string */
10868 if (! new_fuoptions_bgcolor)
10869 return FAIL;
10870 i = j;
10871 /* mark bgcolor as highlight group id */
10872 new_fuoptions_flags |= FUOPT_BGCOLOR_HLGROUP;
10875 else if (i == 7 && STRNCMP(p, "maxhorz", 7) == 0)
10876 new_fuoptions_flags |= FUOPT_MAXHORZ;
10877 else if (i == 7 && STRNCMP(p, "maxvert", 7) == 0)
10878 new_fuoptions_flags |= FUOPT_MAXVERT;
10879 else
10880 return FAIL;
10881 p += i;
10882 if (*p == NUL)
10883 break;
10884 if (*p == ':')
10885 return FAIL;
10888 *flags = new_fuoptions_flags;
10889 *bgcolor = new_fuoptions_bgcolor;
10890 return OK;
10892 #endif