Beware exceptions when processing input
[MacVim.git] / src / option.c
blob7ca1a93328fd4d4e115df7d57d7f449c37f25f55
1 /* vi:set ts=8 sts=4 sw=4:
3 * VIM - Vi IMproved by Bram Moolenaar
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
11 * Code to handle user-settable options. This is all pretty much table-
12 * driven. Checklist for adding a new option:
13 * - Put it in the options array below (copy an existing entry).
14 * - For a global option: Add a variable for it in option.h.
15 * - For a buffer or window local option:
16 * - Add a PV_XX entry to the enum below.
17 * - Add a variable to the window or buffer struct in structs.h.
18 * - For a window option, add some code to copy_winopt().
19 * - For a buffer option, add some code to buf_copy_options().
20 * - For a buffer string option, add code to check_buf_options().
21 * - If it's a numeric option, add any necessary bounds checks to do_set().
22 * - If it's a list of flags, add some code in do_set(), search for WW_ALL.
23 * - When adding an option with expansion (P_EXPAND), but with a different
24 * default for Vi and Vim (no P_VI_DEF), add some code at VIMEXP.
25 * - Add documentation! One line in doc/help.txt, full description in
26 * options.txt, and any other related places.
27 * - Add an entry in runtime/optwin.vim.
28 * When making changes:
29 * - Adjust the help for the option in doc/option.txt.
30 * - When an entry has the P_VIM flag, or is lacking the P_VI_DEF flag, add a
31 * comment at the help for the 'compatible' option.
34 #define IN_OPTION_C
35 #include "vim.h"
38 * The options that are local to a window or buffer have "indir" set to one of
39 * these values. Special values:
40 * PV_NONE: global option.
41 * PV_WIN is added: window-local option
42 * PV_BUF is added: buffer-local option
43 * PV_BOTH is added: global option which also has a local value.
45 #define PV_BOTH 0x1000
46 #define PV_WIN 0x2000
47 #define PV_BUF 0x4000
48 #define PV_MASK 0x0fff
49 #define OPT_WIN(x) (idopt_T)(PV_WIN + (int)(x))
50 #define OPT_BUF(x) (idopt_T)(PV_BUF + (int)(x))
51 #define OPT_BOTH(x) (idopt_T)(PV_BOTH + (int)(x))
54 * Definition of the PV_ values for buffer-local options.
55 * The BV_ values are defined in option.h.
57 #define PV_AI OPT_BUF(BV_AI)
58 #define PV_AR OPT_BOTH(OPT_BUF(BV_AR))
59 #ifdef FEAT_QUICKFIX
60 # define PV_BH OPT_BUF(BV_BH)
61 # define PV_BT OPT_BUF(BV_BT)
62 # define PV_EFM OPT_BOTH(OPT_BUF(BV_EFM))
63 # define PV_GP OPT_BOTH(OPT_BUF(BV_GP))
64 # define PV_MP OPT_BOTH(OPT_BUF(BV_MP))
65 #endif
66 #define PV_BIN OPT_BUF(BV_BIN)
67 #define PV_BL OPT_BUF(BV_BL)
68 #ifdef FEAT_MBYTE
69 # define PV_BOMB OPT_BUF(BV_BOMB)
70 #endif
71 #define PV_CI OPT_BUF(BV_CI)
72 #ifdef FEAT_CINDENT
73 # define PV_CIN OPT_BUF(BV_CIN)
74 # define PV_CINK OPT_BUF(BV_CINK)
75 # define PV_CINO OPT_BUF(BV_CINO)
76 #endif
77 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
78 # define PV_CINW OPT_BUF(BV_CINW)
79 #endif
80 #ifdef FEAT_FOLDING
81 # define PV_CMS OPT_BUF(BV_CMS)
82 #endif
83 #ifdef FEAT_COMMENTS
84 # define PV_COM OPT_BUF(BV_COM)
85 #endif
86 #ifdef FEAT_INS_EXPAND
87 # define PV_CPT OPT_BUF(BV_CPT)
88 # define PV_DICT OPT_BOTH(OPT_BUF(BV_DICT))
89 # define PV_TSR OPT_BOTH(OPT_BUF(BV_TSR))
90 #endif
91 #ifdef FEAT_COMPL_FUNC
92 # define PV_CFU OPT_BUF(BV_CFU)
93 #endif
94 #ifdef FEAT_FIND_ID
95 # define PV_DEF OPT_BOTH(OPT_BUF(BV_DEF))
96 # define PV_INC OPT_BOTH(OPT_BUF(BV_INC))
97 #endif
98 #define PV_EOL OPT_BUF(BV_EOL)
99 #define PV_EP OPT_BOTH(OPT_BUF(BV_EP))
100 #define PV_ET OPT_BUF(BV_ET)
101 #ifdef FEAT_MBYTE
102 # define PV_FENC OPT_BUF(BV_FENC)
103 #endif
104 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
105 # define PV_BEXPR OPT_BOTH(OPT_BUF(BV_BEXPR))
106 #endif
107 #ifdef FEAT_EVAL
108 # define PV_FEX OPT_BUF(BV_FEX)
109 #endif
110 #define PV_FF OPT_BUF(BV_FF)
111 #define PV_FLP OPT_BUF(BV_FLP)
112 #define PV_FO OPT_BUF(BV_FO)
113 #ifdef FEAT_AUTOCMD
114 # define PV_FT OPT_BUF(BV_FT)
115 #endif
116 #define PV_IMI OPT_BUF(BV_IMI)
117 #define PV_IMS OPT_BUF(BV_IMS)
118 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
119 # define PV_INDE OPT_BUF(BV_INDE)
120 # define PV_INDK OPT_BUF(BV_INDK)
121 #endif
122 #if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
123 # define PV_INEX OPT_BUF(BV_INEX)
124 #endif
125 #define PV_INF OPT_BUF(BV_INF)
126 #define PV_ISK OPT_BUF(BV_ISK)
127 #ifdef FEAT_CRYPT
128 # define PV_KEY OPT_BUF(BV_KEY)
129 #endif
130 #ifdef FEAT_KEYMAP
131 # define PV_KMAP OPT_BUF(BV_KMAP)
132 #endif
133 #define PV_KP OPT_BOTH(OPT_BUF(BV_KP))
134 #ifdef FEAT_LISP
135 # define PV_LISP OPT_BUF(BV_LISP)
136 #endif
137 #define PV_MA OPT_BUF(BV_MA)
138 #define PV_ML OPT_BUF(BV_ML)
139 #define PV_MOD OPT_BUF(BV_MOD)
140 #define PV_MPS OPT_BUF(BV_MPS)
141 #ifdef FEAT_GUI_MACVIM
142 #define PV_MMTA OPT_BUF(BV_MMTA)
143 #endif
144 #define PV_NF OPT_BUF(BV_NF)
145 #ifdef FEAT_OSFILETYPE
146 # define PV_OFT OPT_BUF(BV_OFT)
147 #endif
148 #ifdef FEAT_COMPL_FUNC
149 # define PV_OFU OPT_BUF(BV_OFU)
150 #endif
151 #define PV_PATH OPT_BOTH(OPT_BUF(BV_PATH))
152 #define PV_PI OPT_BUF(BV_PI)
153 #ifdef FEAT_TEXTOBJ
154 # define PV_QE OPT_BUF(BV_QE)
155 #endif
156 #define PV_RO OPT_BUF(BV_RO)
157 #ifdef FEAT_SMARTINDENT
158 # define PV_SI OPT_BUF(BV_SI)
159 #endif
160 #ifndef SHORT_FNAME
161 # define PV_SN OPT_BUF(BV_SN)
162 #endif
163 #ifdef FEAT_SYN_HL
164 # define PV_SMC OPT_BUF(BV_SMC)
165 # define PV_SYN OPT_BUF(BV_SYN)
166 #endif
167 #ifdef FEAT_SPELL
168 # define PV_SPC OPT_BUF(BV_SPC)
169 # define PV_SPF OPT_BUF(BV_SPF)
170 # define PV_SPL OPT_BUF(BV_SPL)
171 #endif
172 #define PV_STS OPT_BUF(BV_STS)
173 #ifdef FEAT_SEARCHPATH
174 # define PV_SUA OPT_BUF(BV_SUA)
175 #endif
176 #define PV_SW OPT_BUF(BV_SW)
177 #define PV_SWF OPT_BUF(BV_SWF)
178 #define PV_TAGS OPT_BOTH(OPT_BUF(BV_TAGS))
179 #define PV_TS OPT_BUF(BV_TS)
180 #define PV_TW OPT_BUF(BV_TW)
181 #define PV_TX OPT_BUF(BV_TX)
182 #define PV_WM OPT_BUF(BV_WM)
185 * Definition of the PV_ values for window-local options.
186 * The WV_ values are defined in option.h.
188 #define PV_LIST OPT_WIN(WV_LIST)
189 #ifdef FEAT_ARABIC
190 # define PV_ARAB OPT_WIN(WV_ARAB)
191 #endif
192 #ifdef FEAT_DIFF
193 # define PV_DIFF OPT_WIN(WV_DIFF)
194 #endif
195 #ifdef FEAT_FOLDING
196 # define PV_FDC OPT_WIN(WV_FDC)
197 # define PV_FEN OPT_WIN(WV_FEN)
198 # define PV_FDI OPT_WIN(WV_FDI)
199 # define PV_FDL OPT_WIN(WV_FDL)
200 # define PV_FDM OPT_WIN(WV_FDM)
201 # define PV_FML OPT_WIN(WV_FML)
202 # define PV_FDN OPT_WIN(WV_FDN)
203 # ifdef FEAT_EVAL
204 # define PV_FDE OPT_WIN(WV_FDE)
205 # define PV_FDT OPT_WIN(WV_FDT)
206 # endif
207 # define PV_FMR OPT_WIN(WV_FMR)
208 #endif
209 #ifdef FEAT_LINEBREAK
210 # define PV_LBR OPT_WIN(WV_LBR)
211 #endif
212 #define PV_NU OPT_WIN(WV_NU)
213 #ifdef FEAT_LINEBREAK
214 # define PV_NUW OPT_WIN(WV_NUW)
215 #endif
216 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
217 # define PV_PVW OPT_WIN(WV_PVW)
218 #endif
219 #ifdef FEAT_RIGHTLEFT
220 # define PV_RL OPT_WIN(WV_RL)
221 # define PV_RLC OPT_WIN(WV_RLC)
222 #endif
223 #ifdef FEAT_SCROLLBIND
224 # define PV_SCBIND OPT_WIN(WV_SCBIND)
225 #endif
226 #define PV_SCROLL OPT_WIN(WV_SCROLL)
227 #ifdef FEAT_SPELL
228 # define PV_SPELL OPT_WIN(WV_SPELL)
229 #endif
230 #ifdef FEAT_SYN_HL
231 # define PV_CUC OPT_WIN(WV_CUC)
232 # define PV_CUL OPT_WIN(WV_CUL)
233 #endif
234 #ifdef FEAT_STL_OPT
235 # define PV_STL OPT_BOTH(OPT_WIN(WV_STL))
236 #endif
237 #ifdef FEAT_WINDOWS
238 # define PV_WFH OPT_WIN(WV_WFH)
239 #endif
240 #ifdef FEAT_VERTSPLIT
241 # define PV_WFW OPT_WIN(WV_WFW)
242 #endif
243 #define PV_WRAP OPT_WIN(WV_WRAP)
246 /* WV_ and BV_ values get typecasted to this for the "indir" field */
247 typedef enum
249 PV_NONE = 0,
250 PV_MAXVAL = 0xffff /* to avoid warnings for value out of range */
251 } idopt_T;
254 * Options local to a window have a value local to a buffer and global to all
255 * buffers. Indicate this by setting "var" to VAR_WIN.
257 #define VAR_WIN ((char_u *)-1)
260 * These are the global values for options which are also local to a buffer.
261 * Only to be used in option.c!
263 static int p_ai;
264 static int p_bin;
265 #ifdef FEAT_MBYTE
266 static int p_bomb;
267 #endif
268 #if defined(FEAT_QUICKFIX)
269 static char_u *p_bh;
270 static char_u *p_bt;
271 #endif
272 static int p_bl;
273 static int p_ci;
274 #ifdef FEAT_CINDENT
275 static int p_cin;
276 static char_u *p_cink;
277 static char_u *p_cino;
278 #endif
279 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
280 static char_u *p_cinw;
281 #endif
282 #ifdef FEAT_COMMENTS
283 static char_u *p_com;
284 #endif
285 #ifdef FEAT_FOLDING
286 static char_u *p_cms;
287 #endif
288 #ifdef FEAT_INS_EXPAND
289 static char_u *p_cpt;
290 #endif
291 #ifdef FEAT_COMPL_FUNC
292 static char_u *p_cfu;
293 static char_u *p_ofu;
294 #endif
295 static int p_eol;
296 static int p_et;
297 #ifdef FEAT_MBYTE
298 static char_u *p_fenc;
299 #endif
300 static char_u *p_ff;
301 static char_u *p_fo;
302 static char_u *p_flp;
303 #ifdef FEAT_AUTOCMD
304 static char_u *p_ft;
305 #endif
306 static long p_iminsert;
307 static long p_imsearch;
308 #if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
309 static char_u *p_inex;
310 #endif
311 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
312 static char_u *p_inde;
313 static char_u *p_indk;
314 #endif
315 #if defined(FEAT_EVAL)
316 static char_u *p_fex;
317 #endif
318 static int p_inf;
319 static char_u *p_isk;
320 #ifdef FEAT_CRYPT
321 static char_u *p_key;
322 #endif
323 #ifdef FEAT_LISP
324 static int p_lisp;
325 #endif
326 static int p_ml;
327 static int p_ma;
328 #ifdef FEAT_GUI_MACVIM
329 static int p_mmta;
330 #endif
331 static int p_mod;
332 static char_u *p_mps;
333 static char_u *p_nf;
334 #ifdef FEAT_OSFILETYPE
335 static char_u *p_oft;
336 #endif
337 static int p_pi;
338 #ifdef FEAT_TEXTOBJ
339 static char_u *p_qe;
340 #endif
341 static int p_ro;
342 #ifdef FEAT_SMARTINDENT
343 static int p_si;
344 #endif
345 #ifndef SHORT_FNAME
346 static int p_sn;
347 #endif
348 static long p_sts;
349 #if defined(FEAT_SEARCHPATH)
350 static char_u *p_sua;
351 #endif
352 static long p_sw;
353 static int p_swf;
354 #ifdef FEAT_SYN_HL
355 static long p_smc;
356 static char_u *p_syn;
357 #endif
358 #ifdef FEAT_SPELL
359 static char_u *p_spc;
360 static char_u *p_spf;
361 static char_u *p_spl;
362 #endif
363 static long p_ts;
364 static long p_tw;
365 static int p_tx;
366 static long p_wm;
367 #ifdef FEAT_KEYMAP
368 static char_u *p_keymap;
369 #endif
371 /* Saved values for when 'bin' is set. */
372 static int p_et_nobin;
373 static int p_ml_nobin;
374 static long p_tw_nobin;
375 static long p_wm_nobin;
377 /* Saved values for when 'paste' is set */
378 static long p_tw_nopaste;
379 static long p_wm_nopaste;
380 static long p_sts_nopaste;
381 static int p_ai_nopaste;
383 struct vimoption
385 char *fullname; /* full option name */
386 char *shortname; /* permissible abbreviation */
387 long_u flags; /* see below */
388 char_u *var; /* global option: pointer to variable;
389 * window-local option: VAR_WIN;
390 * buffer-local option: global value */
391 idopt_T indir; /* global option: PV_NONE;
392 * local option: indirect option index */
393 char_u *def_val[2]; /* default values for variable (vi and vim) */
394 #ifdef FEAT_EVAL
395 scid_T scriptID; /* script in which the option was last set */
396 #endif
399 #define VI_DEFAULT 0 /* def_val[VI_DEFAULT] is Vi default value */
400 #define VIM_DEFAULT 1 /* def_val[VIM_DEFAULT] is Vim default value */
403 * Flags
405 #define P_BOOL 0x01 /* the option is boolean */
406 #define P_NUM 0x02 /* the option is numeric */
407 #define P_STRING 0x04 /* the option is a string */
408 #define P_ALLOCED 0x08 /* the string option is in allocated memory,
409 must use vim_free() when assigning new
410 value. Not set if default is the same. */
411 #define P_EXPAND 0x10 /* environment expansion. NOTE: P_EXPAND can
412 never be used for local or hidden options! */
413 #define P_NODEFAULT 0x40 /* don't set to default value */
414 #define P_DEF_ALLOCED 0x80 /* default value is in allocated memory, must
415 use vim_free() when assigning new value */
416 #define P_WAS_SET 0x100 /* option has been set/reset */
417 #define P_NO_MKRC 0x200 /* don't include in :mkvimrc output */
418 #define P_VI_DEF 0x400 /* Use Vi default for Vim */
419 #define P_VIM 0x800 /* Vim option, reset when 'cp' set */
421 /* when option changed, what to display: */
422 #define P_RSTAT 0x1000 /* redraw status lines */
423 #define P_RWIN 0x2000 /* redraw current window */
424 #define P_RBUF 0x4000 /* redraw current buffer */
425 #define P_RALL 0x6000 /* redraw all windows */
426 #define P_RCLR 0x7000 /* clear and redraw all */
428 #define P_COMMA 0x8000 /* comma separated list */
429 #define P_NODUP 0x10000L/* don't allow duplicate strings */
430 #define P_FLAGLIST 0x20000L/* list of single-char flags */
432 #define P_SECURE 0x40000L/* cannot change in modeline or secure mode */
433 #define P_GETTEXT 0x80000L/* expand default value with _() */
434 #define P_NOGLOB 0x100000L/* do not use local value for global vimrc */
435 #define P_NFNAME 0x200000L/* only normal file name chars allowed */
436 #define P_INSECURE 0x400000L/* option was set from a modeline */
437 #define P_PRI_MKRC 0x800000L/* priority for :mkvimrc (setting option has
438 side effects) */
440 #define ISK_LATIN1 (char_u *)"@,48-57,_,192-255"
442 /* 'isprint' for latin1 is also used for MS-Windows cp1252, where 0x80 is used
443 * for the currency sign. */
444 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
445 # define ISP_LATIN1 (char_u *)"@,~-255"
446 #else
447 # define ISP_LATIN1 (char_u *)"@,161-255"
448 #endif
450 /* The 16 bit MS-DOS version is low on space, make the string as short as
451 * possible when compiling with few features. */
452 #if defined(FEAT_DIFF) || defined(FEAT_FOLDING) || defined(FEAT_SPELL) \
453 || defined(FEAT_VERTSPLIT) || defined(FEAT_CLIPBOARD) \
454 || defined(FEAT_INS_EXPAND) || defined(FEAT_SYN_HL)
455 # define HIGHLIGHT_INIT "8:SpecialKey,@:NonText,d:Directory,e:ErrorMsg,i:IncSearch,l:Search,m:MoreMsg,M:ModeMsg,n:LineNr,r:Question,s:StatusLine,S:StatusLineNC,c:VertSplit,t:Title,v:Visual,V:VisualNOS,w:WarningMsg,W:WildMenu,f:Folded,F:FoldColumn,A:DiffAdd,C:DiffChange,D:DiffDelete,T:DiffText,>:SignColumn,B:SpellBad,P:SpellCap,R:SpellRare,L:SpellLocal,+:Pmenu,=:PmenuSel,x:PmenuSbar,X:PmenuThumb,*:TabLine,#:TabLineSel,_:TabLineFill,!:CursorColumn,.:CursorLine"
456 #else
457 # define HIGHLIGHT_INIT "8:SpecialKey,@:NonText,d:Directory,e:ErrorMsg,i:IncSearch,l:Search,m:MoreMsg,M:ModeMsg,n:LineNr,r:Question,s:StatusLine,S:StatusLineNC,t:Title,v:Visual,w:WarningMsg,W:WildMenu,>:SignColumn,*:TabLine,#:TabLineSel,_:TabLineFill"
458 #endif
461 * options[] is initialized here.
462 * The order of the options MUST be alphabetic for ":set all" and findoption().
463 * All option names MUST start with a lowercase letter (for findoption()).
464 * Exception: "t_" options are at the end.
465 * The options with a NULL variable are 'hidden': a set command for them is
466 * ignored and they are not printed.
468 static struct vimoption
469 #ifdef FEAT_GUI_W16
470 _far
471 #endif
472 options[] =
474 {"aleph", "al", P_NUM|P_VI_DEF,
475 #ifdef FEAT_RIGHTLEFT
476 (char_u *)&p_aleph, PV_NONE,
477 #else
478 (char_u *)NULL, PV_NONE,
479 #endif
481 #if (defined(MSDOS) || defined(WIN3264) || defined(OS2)) && !defined(FEAT_GUI_W32)
482 (char_u *)128L,
483 #else
484 (char_u *)224L,
485 #endif
486 (char_u *)0L}},
487 {"antialias", "anti", P_BOOL|P_VI_DEF|P_VIM|P_RCLR,
488 #ifdef FEAT_ANTIALIAS
489 (char_u *)&p_antialias, PV_NONE,
490 #else
491 (char_u *)NULL, PV_NONE,
492 #endif
493 #if FEAT_GUI_MACVIM
494 {(char_u *)TRUE, (char_u *)0L}},
495 #else
496 {(char_u *)FALSE, (char_u *)0L}},
497 #endif
498 {"arabic", "arab", P_BOOL|P_VI_DEF|P_VIM,
499 #ifdef FEAT_ARABIC
500 (char_u *)VAR_WIN, PV_ARAB,
501 #else
502 (char_u *)NULL, PV_NONE,
503 #endif
504 {(char_u *)FALSE, (char_u *)0L}},
505 {"arabicshape", "arshape", P_BOOL|P_VI_DEF|P_VIM|P_RCLR,
506 #ifdef FEAT_ARABIC
507 (char_u *)&p_arshape, PV_NONE,
508 #else
509 (char_u *)NULL, PV_NONE,
510 #endif
511 {(char_u *)TRUE, (char_u *)0L}},
512 {"allowrevins", "ari", P_BOOL|P_VI_DEF|P_VIM,
513 #ifdef FEAT_RIGHTLEFT
514 (char_u *)&p_ari, PV_NONE,
515 #else
516 (char_u *)NULL, PV_NONE,
517 #endif
518 {(char_u *)FALSE, (char_u *)0L}},
519 {"altkeymap", "akm", P_BOOL|P_VI_DEF,
520 #ifdef FEAT_FKMAP
521 (char_u *)&p_altkeymap, PV_NONE,
522 #else
523 (char_u *)NULL, PV_NONE,
524 #endif
525 {(char_u *)FALSE, (char_u *)0L}},
526 {"ambiwidth", "ambw", P_STRING|P_VI_DEF|P_RCLR,
527 #if defined(FEAT_MBYTE)
528 (char_u *)&p_ambw, PV_NONE,
529 {(char_u *)"single", (char_u *)0L}
530 #else
531 (char_u *)NULL, PV_NONE,
532 {(char_u *)0L, (char_u *)0L}
533 #endif
535 #ifdef FEAT_AUTOCHDIR
536 {"autochdir", "acd", P_BOOL|P_VI_DEF,
537 (char_u *)&p_acd, PV_NONE,
538 {(char_u *)FALSE, (char_u *)0L}},
539 #endif
540 {"autoindent", "ai", P_BOOL|P_VI_DEF,
541 (char_u *)&p_ai, PV_AI,
542 {(char_u *)FALSE, (char_u *)0L}},
543 {"autoprint", "ap", P_BOOL|P_VI_DEF,
544 (char_u *)NULL, PV_NONE,
545 {(char_u *)FALSE, (char_u *)0L}},
546 {"autoread", "ar", P_BOOL|P_VI_DEF,
547 (char_u *)&p_ar, PV_AR,
548 {(char_u *)FALSE, (char_u *)0L}},
549 {"autowrite", "aw", P_BOOL|P_VI_DEF,
550 (char_u *)&p_aw, PV_NONE,
551 {(char_u *)FALSE, (char_u *)0L}},
552 {"autowriteall","awa", P_BOOL|P_VI_DEF,
553 (char_u *)&p_awa, PV_NONE,
554 {(char_u *)FALSE, (char_u *)0L}},
555 {"background", "bg", P_STRING|P_VI_DEF|P_RCLR,
556 (char_u *)&p_bg, PV_NONE,
558 #if (defined(MSDOS) || defined(OS2) || defined(WIN3264)) && !defined(FEAT_GUI)
559 (char_u *)"dark",
560 #else
561 (char_u *)"light",
562 #endif
563 (char_u *)0L}},
564 {"backspace", "bs", P_STRING|P_VI_DEF|P_VIM|P_COMMA|P_NODUP,
565 (char_u *)&p_bs, PV_NONE,
566 {(char_u *)"", (char_u *)0L}},
567 {"backup", "bk", P_BOOL|P_VI_DEF|P_VIM,
568 (char_u *)&p_bk, PV_NONE,
569 {(char_u *)FALSE, (char_u *)0L}},
570 {"backupcopy", "bkc", P_STRING|P_VIM|P_COMMA|P_NODUP,
571 (char_u *)&p_bkc, PV_NONE,
572 #ifdef UNIX
573 {(char_u *)"yes", (char_u *)"auto"}
574 #else
575 {(char_u *)"auto", (char_u *)"auto"}
576 #endif
578 {"backupdir", "bdir", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP|P_SECURE,
579 (char_u *)&p_bdir, PV_NONE,
580 {(char_u *)DFLT_BDIR, (char_u *)0L}},
581 {"backupext", "bex", P_STRING|P_VI_DEF|P_NFNAME,
582 (char_u *)&p_bex, PV_NONE,
584 #ifdef VMS
585 (char_u *)"_",
586 #else
587 (char_u *)"~",
588 #endif
589 (char_u *)0L}},
590 {"backupskip", "bsk", P_STRING|P_VI_DEF|P_COMMA,
591 #ifdef FEAT_WILDIGN
592 (char_u *)&p_bsk, PV_NONE,
593 {(char_u *)"", (char_u *)0L}
594 #else
595 (char_u *)NULL, PV_NONE,
596 {(char_u *)0L, (char_u *)0L}
597 #endif
599 #ifdef FEAT_BEVAL
600 {"balloondelay","bdlay",P_NUM|P_VI_DEF,
601 (char_u *)&p_bdlay, PV_NONE,
602 {(char_u *)600L, (char_u *)0L}},
603 {"ballooneval", "beval",P_BOOL|P_VI_DEF|P_NO_MKRC,
604 (char_u *)&p_beval, PV_NONE,
605 {(char_u *)FALSE, (char_u *)0L}},
606 # ifdef FEAT_EVAL
607 {"balloonexpr", "bexpr", P_STRING|P_ALLOCED|P_VI_DEF|P_VIM,
608 (char_u *)&p_bexpr, PV_BEXPR,
609 {(char_u *)"", (char_u *)0L}},
610 # endif
611 #endif
612 {"beautify", "bf", P_BOOL|P_VI_DEF,
613 (char_u *)NULL, PV_NONE,
614 {(char_u *)FALSE, (char_u *)0L}},
615 {"binary", "bin", P_BOOL|P_VI_DEF|P_RSTAT,
616 (char_u *)&p_bin, PV_BIN,
617 {(char_u *)FALSE, (char_u *)0L}},
618 {"bioskey", "biosk",P_BOOL|P_VI_DEF,
619 #ifdef MSDOS
620 (char_u *)&p_biosk, PV_NONE,
621 #else
622 (char_u *)NULL, PV_NONE,
623 #endif
624 {(char_u *)TRUE, (char_u *)0L}},
625 {"bomb", NULL, P_BOOL|P_NO_MKRC|P_VI_DEF|P_RSTAT,
626 #ifdef FEAT_MBYTE
627 (char_u *)&p_bomb, PV_BOMB,
628 #else
629 (char_u *)NULL, PV_NONE,
630 #endif
631 {(char_u *)FALSE, (char_u *)0L}},
632 {"breakat", "brk", P_STRING|P_VI_DEF|P_RALL|P_FLAGLIST,
633 #ifdef FEAT_LINEBREAK
634 (char_u *)&p_breakat, PV_NONE,
635 {(char_u *)" \t!@*-+;:,./?", (char_u *)0L}
636 #else
637 (char_u *)NULL, PV_NONE,
638 {(char_u *)0L, (char_u *)0L}
639 #endif
641 {"browsedir", "bsdir",P_STRING|P_VI_DEF,
642 #ifdef FEAT_BROWSE
643 (char_u *)&p_bsdir, PV_NONE,
644 {(char_u *)"last", (char_u *)0L}
645 #else
646 (char_u *)NULL, PV_NONE,
647 {(char_u *)0L, (char_u *)0L}
648 #endif
650 {"bufhidden", "bh", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB,
651 #if defined(FEAT_QUICKFIX)
652 (char_u *)&p_bh, PV_BH,
653 {(char_u *)"", (char_u *)0L}
654 #else
655 (char_u *)NULL, PV_NONE,
656 {(char_u *)0L, (char_u *)0L}
657 #endif
659 {"buflisted", "bl", P_BOOL|P_VI_DEF|P_NOGLOB,
660 (char_u *)&p_bl, PV_BL,
661 {(char_u *)1L, (char_u *)0L}
663 {"buftype", "bt", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB,
664 #if defined(FEAT_QUICKFIX)
665 (char_u *)&p_bt, PV_BT,
666 {(char_u *)"", (char_u *)0L}
667 #else
668 (char_u *)NULL, PV_NONE,
669 {(char_u *)0L, (char_u *)0L}
670 #endif
672 {"casemap", "cmp", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
673 #ifdef FEAT_MBYTE
674 (char_u *)&p_cmp, PV_NONE,
675 {(char_u *)"internal,keepascii", (char_u *)0L}
676 #else
677 (char_u *)NULL, PV_NONE,
678 {(char_u *)0L, (char_u *)0L}
679 #endif
681 {"cdpath", "cd", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
682 #ifdef FEAT_SEARCHPATH
683 (char_u *)&p_cdpath, PV_NONE,
684 {(char_u *)",,", (char_u *)0L}
685 #else
686 (char_u *)NULL, PV_NONE,
687 {(char_u *)0L, (char_u *)0L}
688 #endif
690 {"cedit", NULL, P_STRING,
691 #ifdef FEAT_CMDWIN
692 (char_u *)&p_cedit, PV_NONE,
693 {(char_u *)"", (char_u *)CTRL_F_STR}
694 #else
695 (char_u *)NULL, PV_NONE,
696 {(char_u *)0L, (char_u *)0L}
697 #endif
699 {"charconvert", "ccv", P_STRING|P_VI_DEF|P_SECURE,
700 #if defined(FEAT_MBYTE) && defined(FEAT_EVAL)
701 (char_u *)&p_ccv, PV_NONE,
702 {(char_u *)"", (char_u *)0L}
703 #else
704 (char_u *)NULL, PV_NONE,
705 {(char_u *)0L, (char_u *)0L}
706 #endif
708 {"cindent", "cin", P_BOOL|P_VI_DEF|P_VIM,
709 #ifdef FEAT_CINDENT
710 (char_u *)&p_cin, PV_CIN,
711 #else
712 (char_u *)NULL, PV_NONE,
713 #endif
714 {(char_u *)FALSE, (char_u *)0L}},
715 {"cinkeys", "cink", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
716 #ifdef FEAT_CINDENT
717 (char_u *)&p_cink, PV_CINK,
718 {(char_u *)"0{,0},0),:,0#,!^F,o,O,e", (char_u *)0L}
719 #else
720 (char_u *)NULL, PV_NONE,
721 {(char_u *)0L, (char_u *)0L}
722 #endif
724 {"cinoptions", "cino", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
725 #ifdef FEAT_CINDENT
726 (char_u *)&p_cino, PV_CINO,
727 #else
728 (char_u *)NULL, PV_NONE,
729 #endif
730 {(char_u *)"", (char_u *)0L}},
731 {"cinwords", "cinw", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
732 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
733 (char_u *)&p_cinw, PV_CINW,
734 {(char_u *)"if,else,while,do,for,switch",
735 (char_u *)0L}
736 #else
737 (char_u *)NULL, PV_NONE,
738 {(char_u *)0L, (char_u *)0L}
739 #endif
741 {"clipboard", "cb", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
742 #ifdef FEAT_CLIPBOARD
743 (char_u *)&p_cb, PV_NONE,
744 # ifdef FEAT_XCLIPBOARD
745 {(char_u *)"autoselect,exclude:cons\\|linux",
746 (char_u *)0L}
747 # else
748 {(char_u *)"", (char_u *)0L}
749 # endif
750 #else
751 (char_u *)NULL, PV_NONE,
752 {(char_u *)"", (char_u *)0L}
753 #endif
755 {"cmdheight", "ch", P_NUM|P_VI_DEF|P_RALL,
756 (char_u *)&p_ch, PV_NONE,
757 {(char_u *)1L, (char_u *)0L}},
758 {"cmdwinheight", "cwh", P_NUM|P_VI_DEF,
759 #ifdef FEAT_CMDWIN
760 (char_u *)&p_cwh, PV_NONE,
761 #else
762 (char_u *)NULL, PV_NONE,
763 #endif
764 {(char_u *)7L, (char_u *)0L}},
765 {"columns", "co", P_NUM|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RCLR,
766 (char_u *)&Columns, PV_NONE,
767 {(char_u *)80L, (char_u *)0L}},
768 {"comments", "com", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
769 #ifdef FEAT_COMMENTS
770 (char_u *)&p_com, PV_COM,
771 {(char_u *)"s1:/*,mb:*,ex:*/,://,b:#,:%,:XCOMM,n:>,fb:-",
772 (char_u *)0L}
773 #else
774 (char_u *)NULL, PV_NONE,
775 {(char_u *)0L, (char_u *)0L}
776 #endif
778 {"commentstring", "cms", P_STRING|P_ALLOCED|P_VI_DEF,
779 #ifdef FEAT_FOLDING
780 (char_u *)&p_cms, PV_CMS,
781 {(char_u *)"/*%s*/", (char_u *)0L}
782 #else
783 (char_u *)NULL, PV_NONE,
784 {(char_u *)0L, (char_u *)0L}
785 #endif
787 /* P_PRI_MKRC isn't needed here, optval_default()
788 * always returns TRUE for 'compatible' */
789 {"compatible", "cp", P_BOOL|P_RALL,
790 (char_u *)&p_cp, PV_NONE,
791 {(char_u *)TRUE, (char_u *)FALSE}},
792 {"complete", "cpt", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
793 #ifdef FEAT_INS_EXPAND
794 (char_u *)&p_cpt, PV_CPT,
795 {(char_u *)".,w,b,u,t,i", (char_u *)0L}
796 #else
797 (char_u *)NULL, PV_NONE,
798 {(char_u *)0L, (char_u *)0L}
799 #endif
801 {"completefunc", "cfu", P_STRING|P_ALLOCED|P_VI_DEF|P_SECURE,
802 #ifdef FEAT_COMPL_FUNC
803 (char_u *)&p_cfu, PV_CFU,
804 {(char_u *)"", (char_u *)0L}
805 #else
806 (char_u *)NULL, PV_NONE,
807 {(char_u *)0L, (char_u *)0L}
808 #endif
810 {"completeopt", "cot", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
811 #ifdef FEAT_INS_EXPAND
812 (char_u *)&p_cot, PV_NONE,
813 {(char_u *)"menu,preview", (char_u *)0L}
814 #else
815 (char_u *)NULL, PV_NONE,
816 {(char_u *)0L, (char_u *)0L}
817 #endif
819 {"confirm", "cf", P_BOOL|P_VI_DEF,
820 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
821 (char_u *)&p_confirm, PV_NONE,
822 #else
823 (char_u *)NULL, PV_NONE,
824 #endif
825 {(char_u *)FALSE, (char_u *)0L}},
826 {"conskey", "consk",P_BOOL|P_VI_DEF,
827 #ifdef MSDOS
828 (char_u *)&p_consk, PV_NONE,
829 #else
830 (char_u *)NULL, PV_NONE,
831 #endif
832 {(char_u *)FALSE, (char_u *)0L}},
833 {"copyindent", "ci", P_BOOL|P_VI_DEF|P_VIM,
834 (char_u *)&p_ci, PV_CI,
835 {(char_u *)FALSE, (char_u *)0L}},
836 {"cpoptions", "cpo", P_STRING|P_VIM|P_RALL|P_FLAGLIST,
837 (char_u *)&p_cpo, PV_NONE,
838 {(char_u *)CPO_VI, (char_u *)CPO_VIM}},
839 {"cscopepathcomp", "cspc", P_NUM|P_VI_DEF|P_VIM,
840 #ifdef FEAT_CSCOPE
841 (char_u *)&p_cspc, PV_NONE,
842 #else
843 (char_u *)NULL, PV_NONE,
844 #endif
845 {(char_u *)0L, (char_u *)0L}},
846 {"cscopeprg", "csprg", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
847 #ifdef FEAT_CSCOPE
848 (char_u *)&p_csprg, PV_NONE,
849 {(char_u *)"cscope", (char_u *)0L}
850 #else
851 (char_u *)NULL, PV_NONE,
852 {(char_u *)0L, (char_u *)0L}
853 #endif
855 {"cscopequickfix", "csqf", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
856 #if defined(FEAT_CSCOPE) && defined(FEAT_QUICKFIX)
857 (char_u *)&p_csqf, PV_NONE,
858 {(char_u *)"", (char_u *)0L}
859 #else
860 (char_u *)NULL, PV_NONE,
861 {(char_u *)0L, (char_u *)0L}
862 #endif
864 {"cscopetag", "cst", P_BOOL|P_VI_DEF|P_VIM,
865 #ifdef FEAT_CSCOPE
866 (char_u *)&p_cst, PV_NONE,
867 #else
868 (char_u *)NULL, PV_NONE,
869 #endif
870 {(char_u *)0L, (char_u *)0L}},
871 {"cscopetagorder", "csto", P_NUM|P_VI_DEF|P_VIM,
872 #ifdef FEAT_CSCOPE
873 (char_u *)&p_csto, PV_NONE,
874 #else
875 (char_u *)NULL, PV_NONE,
876 #endif
877 {(char_u *)0L, (char_u *)0L}},
878 {"cscopeverbose", "csverb", P_BOOL|P_VI_DEF|P_VIM,
879 #ifdef FEAT_CSCOPE
880 (char_u *)&p_csverbose, PV_NONE,
881 #else
882 (char_u *)NULL, PV_NONE,
883 #endif
884 {(char_u *)0L, (char_u *)0L}},
885 {"cursorcolumn", "cuc", P_BOOL|P_VI_DEF|P_RWIN,
886 #ifdef FEAT_SYN_HL
887 (char_u *)VAR_WIN, PV_CUC,
888 #else
889 (char_u *)NULL, PV_NONE,
890 #endif
891 {(char_u *)FALSE, (char_u *)0L}},
892 {"cursorline", "cul", P_BOOL|P_VI_DEF|P_RWIN,
893 #ifdef FEAT_SYN_HL
894 (char_u *)VAR_WIN, PV_CUL,
895 #else
896 (char_u *)NULL, PV_NONE,
897 #endif
898 {(char_u *)FALSE, (char_u *)0L}},
899 {"debug", NULL, P_STRING|P_VI_DEF,
900 (char_u *)&p_debug, PV_NONE,
901 {(char_u *)"", (char_u *)0L}},
902 {"define", "def", P_STRING|P_ALLOCED|P_VI_DEF,
903 #ifdef FEAT_FIND_ID
904 (char_u *)&p_def, PV_DEF,
905 {(char_u *)"^\\s*#\\s*define", (char_u *)0L}
906 #else
907 (char_u *)NULL, PV_NONE,
908 {(char_u *)NULL, (char_u *)0L}
909 #endif
911 {"delcombine", "deco", P_BOOL|P_VI_DEF|P_VIM,
912 #ifdef FEAT_MBYTE
913 (char_u *)&p_deco, PV_NONE,
914 #else
915 (char_u *)NULL, PV_NONE,
916 #endif
917 {(char_u *)FALSE, (char_u *)0L}},
918 {"dictionary", "dict", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
919 #ifdef FEAT_INS_EXPAND
920 (char_u *)&p_dict, PV_DICT,
921 #else
922 (char_u *)NULL, PV_NONE,
923 #endif
924 {(char_u *)"", (char_u *)0L}},
925 {"diff", NULL, P_BOOL|P_VI_DEF|P_RWIN|P_NOGLOB,
926 #ifdef FEAT_DIFF
927 (char_u *)VAR_WIN, PV_DIFF,
928 #else
929 (char_u *)NULL, PV_NONE,
930 #endif
931 {(char_u *)FALSE, (char_u *)0L}},
932 {"diffexpr", "dex", P_STRING|P_VI_DEF|P_SECURE,
933 #if defined(FEAT_DIFF) && defined(FEAT_EVAL)
934 (char_u *)&p_dex, PV_NONE,
935 {(char_u *)"", (char_u *)0L}
936 #else
937 (char_u *)NULL, PV_NONE,
938 {(char_u *)0L, (char_u *)0L}
939 #endif
941 {"diffopt", "dip", P_STRING|P_ALLOCED|P_VI_DEF|P_RWIN|P_COMMA|P_NODUP,
942 #ifdef FEAT_DIFF
943 (char_u *)&p_dip, PV_NONE,
944 {(char_u *)"filler", (char_u *)NULL}
945 #else
946 (char_u *)NULL, PV_NONE,
947 {(char_u *)"", (char_u *)NULL}
948 #endif
950 {"digraph", "dg", P_BOOL|P_VI_DEF|P_VIM,
951 #ifdef FEAT_DIGRAPHS
952 (char_u *)&p_dg, PV_NONE,
953 #else
954 (char_u *)NULL, PV_NONE,
955 #endif
956 {(char_u *)FALSE, (char_u *)0L}},
957 {"directory", "dir", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP|P_SECURE,
958 (char_u *)&p_dir, PV_NONE,
959 {(char_u *)DFLT_DIR, (char_u *)0L}},
960 {"display", "dy", P_STRING|P_VI_DEF|P_COMMA|P_RALL|P_NODUP,
961 (char_u *)&p_dy, PV_NONE,
962 {(char_u *)"", (char_u *)0L}},
963 {"eadirection", "ead", P_STRING|P_VI_DEF,
964 #ifdef FEAT_VERTSPLIT
965 (char_u *)&p_ead, PV_NONE,
966 {(char_u *)"both", (char_u *)0L}
967 #else
968 (char_u *)NULL, PV_NONE,
969 {(char_u *)NULL, (char_u *)0L}
970 #endif
972 {"edcompatible","ed", P_BOOL|P_VI_DEF,
973 (char_u *)&p_ed, PV_NONE,
974 {(char_u *)FALSE, (char_u *)0L}},
975 {"encoding", "enc", P_STRING|P_VI_DEF|P_RCLR,
976 #ifdef FEAT_MBYTE
977 (char_u *)&p_enc, PV_NONE,
978 {(char_u *)ENC_DFLT, (char_u *)0L}
979 #else
980 (char_u *)NULL, PV_NONE,
981 {(char_u *)0L, (char_u *)0L}
982 #endif
984 {"endofline", "eol", P_BOOL|P_NO_MKRC|P_VI_DEF|P_RSTAT,
985 (char_u *)&p_eol, PV_EOL,
986 {(char_u *)TRUE, (char_u *)0L}},
987 {"equalalways", "ea", P_BOOL|P_VI_DEF|P_RALL,
988 (char_u *)&p_ea, PV_NONE,
989 {(char_u *)TRUE, (char_u *)0L}},
990 {"equalprg", "ep", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
991 (char_u *)&p_ep, PV_EP,
992 {(char_u *)"", (char_u *)0L}},
993 {"errorbells", "eb", P_BOOL|P_VI_DEF,
994 (char_u *)&p_eb, PV_NONE,
995 {(char_u *)FALSE, (char_u *)0L}},
996 {"errorfile", "ef", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
997 #ifdef FEAT_QUICKFIX
998 (char_u *)&p_ef, PV_NONE,
999 {(char_u *)DFLT_ERRORFILE, (char_u *)0L}
1000 #else
1001 (char_u *)NULL, PV_NONE,
1002 {(char_u *)NULL, (char_u *)0L}
1003 #endif
1005 {"errorformat", "efm", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1006 #ifdef FEAT_QUICKFIX
1007 (char_u *)&p_efm, PV_EFM,
1008 {(char_u *)DFLT_EFM, (char_u *)0L},
1009 #else
1010 (char_u *)NULL, PV_NONE,
1011 {(char_u *)NULL, (char_u *)0L}
1012 #endif
1014 {"esckeys", "ek", P_BOOL|P_VIM,
1015 (char_u *)&p_ek, PV_NONE,
1016 {(char_u *)FALSE, (char_u *)TRUE}},
1017 {"eventignore", "ei", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1018 #ifdef FEAT_AUTOCMD
1019 (char_u *)&p_ei, PV_NONE,
1020 #else
1021 (char_u *)NULL, PV_NONE,
1022 #endif
1023 {(char_u *)"", (char_u *)0L}},
1024 {"expandtab", "et", P_BOOL|P_VI_DEF|P_VIM,
1025 (char_u *)&p_et, PV_ET,
1026 {(char_u *)FALSE, (char_u *)0L}},
1027 {"exrc", "ex", P_BOOL|P_VI_DEF|P_SECURE,
1028 (char_u *)&p_exrc, PV_NONE,
1029 {(char_u *)FALSE, (char_u *)0L}},
1030 {"fileencoding","fenc", P_STRING|P_ALLOCED|P_VI_DEF|P_RSTAT|P_RBUF|P_NO_MKRC,
1031 #ifdef FEAT_MBYTE
1032 (char_u *)&p_fenc, PV_FENC,
1033 {(char_u *)"", (char_u *)0L}
1034 #else
1035 (char_u *)NULL, PV_NONE,
1036 {(char_u *)0L, (char_u *)0L}
1037 #endif
1039 {"fileencodings","fencs", P_STRING|P_VI_DEF|P_COMMA,
1040 #ifdef FEAT_MBYTE
1041 (char_u *)&p_fencs, PV_NONE,
1042 {(char_u *)"ucs-bom", (char_u *)0L}
1043 #else
1044 (char_u *)NULL, PV_NONE,
1045 {(char_u *)0L, (char_u *)0L}
1046 #endif
1048 {"fileformat", "ff", P_STRING|P_ALLOCED|P_VI_DEF|P_RSTAT|P_NO_MKRC,
1049 (char_u *)&p_ff, PV_FF,
1050 {(char_u *)DFLT_FF, (char_u *)0L}},
1051 {"fileformats", "ffs", P_STRING|P_VIM|P_COMMA|P_NODUP,
1052 (char_u *)&p_ffs, PV_NONE,
1053 {(char_u *)DFLT_FFS_VI, (char_u *)DFLT_FFS_VIM}},
1054 {"filetype", "ft", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB|P_NFNAME,
1055 #ifdef FEAT_AUTOCMD
1056 (char_u *)&p_ft, PV_FT,
1057 {(char_u *)"", (char_u *)0L}
1058 #else
1059 (char_u *)NULL, PV_NONE,
1060 {(char_u *)0L, (char_u *)0L}
1061 #endif
1063 {"fillchars", "fcs", P_STRING|P_VI_DEF|P_RALL|P_COMMA|P_NODUP,
1064 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
1065 (char_u *)&p_fcs, PV_NONE,
1066 {(char_u *)"vert:|,fold:-", (char_u *)0L}
1067 #else
1068 (char_u *)NULL, PV_NONE,
1069 {(char_u *)"", (char_u *)0L}
1070 #endif
1072 {"fkmap", "fk", P_BOOL|P_VI_DEF,
1073 #ifdef FEAT_FKMAP
1074 (char_u *)&p_fkmap, PV_NONE,
1075 #else
1076 (char_u *)NULL, PV_NONE,
1077 #endif
1078 {(char_u *)FALSE, (char_u *)0L}},
1079 {"flash", "fl", P_BOOL|P_VI_DEF,
1080 (char_u *)NULL, PV_NONE,
1081 {(char_u *)FALSE, (char_u *)0L}},
1082 #ifdef FEAT_FOLDING
1083 {"foldclose", "fcl", P_STRING|P_VI_DEF|P_COMMA|P_NODUP|P_RWIN,
1084 (char_u *)&p_fcl, PV_NONE,
1085 {(char_u *)"", (char_u *)0L}},
1086 {"foldcolumn", "fdc", P_NUM|P_VI_DEF|P_RWIN,
1087 (char_u *)VAR_WIN, PV_FDC,
1088 {(char_u *)FALSE, (char_u *)0L}},
1089 {"foldenable", "fen", P_BOOL|P_VI_DEF|P_RWIN,
1090 (char_u *)VAR_WIN, PV_FEN,
1091 {(char_u *)TRUE, (char_u *)0L}},
1092 {"foldexpr", "fde", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1093 # ifdef FEAT_EVAL
1094 (char_u *)VAR_WIN, PV_FDE,
1095 {(char_u *)"0", (char_u *)NULL}
1096 # else
1097 (char_u *)NULL, PV_NONE,
1098 {(char_u *)NULL, (char_u *)0L}
1099 # endif
1101 {"foldignore", "fdi", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1102 (char_u *)VAR_WIN, PV_FDI,
1103 {(char_u *)"#", (char_u *)NULL}},
1104 {"foldlevel", "fdl", P_NUM|P_VI_DEF|P_RWIN,
1105 (char_u *)VAR_WIN, PV_FDL,
1106 {(char_u *)0L, (char_u *)0L}},
1107 {"foldlevelstart","fdls", P_NUM|P_VI_DEF,
1108 (char_u *)&p_fdls, PV_NONE,
1109 {(char_u *)-1L, (char_u *)0L}},
1110 {"foldmarker", "fmr", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|
1111 P_RWIN|P_COMMA|P_NODUP,
1112 (char_u *)VAR_WIN, PV_FMR,
1113 {(char_u *)"{{{,}}}", (char_u *)NULL}},
1114 {"foldmethod", "fdm", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1115 (char_u *)VAR_WIN, PV_FDM,
1116 {(char_u *)"manual", (char_u *)NULL}},
1117 {"foldminlines","fml", P_NUM|P_VI_DEF|P_RWIN,
1118 (char_u *)VAR_WIN, PV_FML,
1119 {(char_u *)1L, (char_u *)0L}},
1120 {"foldnestmax", "fdn", P_NUM|P_VI_DEF|P_RWIN,
1121 (char_u *)VAR_WIN, PV_FDN,
1122 {(char_u *)20L, (char_u *)0L}},
1123 {"foldopen", "fdo", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1124 (char_u *)&p_fdo, PV_NONE,
1125 {(char_u *)"block,hor,mark,percent,quickfix,search,tag,undo",
1126 (char_u *)0L}},
1127 {"foldtext", "fdt", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1128 # ifdef FEAT_EVAL
1129 (char_u *)VAR_WIN, PV_FDT,
1130 {(char_u *)"foldtext()", (char_u *)NULL}
1131 # else
1132 (char_u *)NULL, PV_NONE,
1133 {(char_u *)NULL, (char_u *)0L}
1134 # endif
1136 #endif
1137 {"formatexpr", "fex", P_STRING|P_ALLOCED|P_VI_DEF|P_VIM,
1138 #ifdef FEAT_EVAL
1139 (char_u *)&p_fex, PV_FEX,
1140 {(char_u *)"", (char_u *)0L}
1141 #else
1142 (char_u *)NULL, PV_NONE,
1143 {(char_u *)0L, (char_u *)0L}
1144 #endif
1146 {"formatoptions","fo", P_STRING|P_ALLOCED|P_VIM|P_FLAGLIST,
1147 (char_u *)&p_fo, PV_FO,
1148 {(char_u *)DFLT_FO_VI, (char_u *)DFLT_FO_VIM}},
1149 {"formatlistpat","flp", P_STRING|P_ALLOCED|P_VI_DEF,
1150 (char_u *)&p_flp, PV_FLP,
1151 {(char_u *)"^\\s*\\d\\+[\\]:.)}\\t ]\\s*", (char_u *)0L}},
1152 {"formatprg", "fp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1153 (char_u *)&p_fp, PV_NONE,
1154 {(char_u *)"", (char_u *)0L}},
1155 {"fsync", "fs", P_BOOL|P_SECURE|P_VI_DEF,
1156 #ifdef HAVE_FSYNC
1157 (char_u *)&p_fs, PV_NONE,
1158 {(char_u *)TRUE, (char_u *)0L}
1159 #else
1160 (char_u *)NULL, PV_NONE,
1161 {(char_u *)FALSE, (char_u *)0L}
1162 #endif
1164 {"fullscreen", "fu", P_BOOL|P_NO_MKRC,
1165 #ifdef FEAT_FULLSCREEN
1166 (char_u *)&p_fullscreen, PV_NONE,
1167 #else
1168 (char_u *)NULL, PV_NONE,
1169 #endif
1170 {(char_u *)FALSE, (char_u *)0L}},
1171 {"fuoptions", "fuopt", P_STRING|P_COMMA|P_NODUP|P_VI_DEF,
1172 #ifdef FEAT_FULLSCREEN
1173 (char_u *)&p_fuoptions, PV_NONE,
1174 {(char_u *)"maxvert", (char_u *)0L}},
1175 #else
1176 (char_u *)NULL, PV_NONE,
1177 {(char_u *)NULL, (char_u *)0L}},
1178 #endif
1179 {"gdefault", "gd", P_BOOL|P_VI_DEF|P_VIM,
1180 (char_u *)&p_gd, PV_NONE,
1181 {(char_u *)FALSE, (char_u *)0L}},
1182 {"graphic", "gr", P_BOOL|P_VI_DEF,
1183 (char_u *)NULL, PV_NONE,
1184 {(char_u *)FALSE, (char_u *)0L}},
1185 {"grepformat", "gfm", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1186 #ifdef FEAT_QUICKFIX
1187 (char_u *)&p_gefm, PV_NONE,
1188 {(char_u *)DFLT_GREPFORMAT, (char_u *)0L},
1189 #else
1190 (char_u *)NULL, PV_NONE,
1191 {(char_u *)NULL, (char_u *)0L}
1192 #endif
1194 {"grepprg", "gp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1195 #ifdef FEAT_QUICKFIX
1196 (char_u *)&p_gp, PV_GP,
1198 # ifdef WIN3264
1199 /* may be changed to "grep -n" in os_win32.c */
1200 (char_u *)"findstr /n",
1201 # else
1202 # ifdef UNIX
1203 /* Add an extra file name so that grep will always
1204 * insert a file name in the match line. */
1205 (char_u *)"grep -n $* /dev/null",
1206 # else
1207 # ifdef VMS
1208 (char_u *)"SEARCH/NUMBERS ",
1209 # else
1210 (char_u *)"grep -n ",
1211 #endif
1212 #endif
1213 # endif
1214 (char_u *)0L},
1215 #else
1216 (char_u *)NULL, PV_NONE,
1217 {(char_u *)NULL, (char_u *)0L}
1218 #endif
1220 {"guicursor", "gcr", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1221 #ifdef CURSOR_SHAPE
1222 (char_u *)&p_guicursor, PV_NONE,
1224 # ifdef FEAT_GUI
1225 (char_u *)"n-v-c:block-Cursor/lCursor,ve:ver35-Cursor,o:hor50-Cursor,i-ci:ver25-Cursor/lCursor,r-cr:hor20-Cursor/lCursor,sm:block-Cursor-blinkwait175-blinkoff150-blinkon175",
1226 # else /* MSDOS or Win32 console */
1227 (char_u *)"n-v-c:block,o:hor50,i-ci:hor15,r-cr:hor30,sm:block",
1228 # endif
1229 (char_u *)0L}
1230 #else
1231 (char_u *)NULL, PV_NONE,
1232 {(char_u *)NULL, (char_u *)0L}
1233 #endif
1235 {"guifont", "gfn", P_STRING|P_VI_DEF|P_RCLR|P_COMMA|P_NODUP,
1236 #ifdef FEAT_GUI
1237 (char_u *)&p_guifont, PV_NONE,
1238 {(char_u *)"", (char_u *)0L}
1239 #else
1240 (char_u *)NULL, PV_NONE,
1241 {(char_u *)NULL, (char_u *)0L}
1242 #endif
1244 {"guifontset", "gfs", P_STRING|P_VI_DEF|P_RCLR|P_COMMA,
1245 #if defined(FEAT_GUI) && defined(FEAT_XFONTSET)
1246 (char_u *)&p_guifontset, PV_NONE,
1247 {(char_u *)"", (char_u *)0L}
1248 #else
1249 (char_u *)NULL, PV_NONE,
1250 {(char_u *)NULL, (char_u *)0L}
1251 #endif
1253 {"guifontwide", "gfw", P_STRING|P_VI_DEF|P_RCLR|P_COMMA|P_NODUP,
1254 #if defined(FEAT_GUI) && defined(FEAT_MBYTE)
1255 (char_u *)&p_guifontwide, PV_NONE,
1256 {(char_u *)"", (char_u *)0L}
1257 #else
1258 (char_u *)NULL, PV_NONE,
1259 {(char_u *)NULL, (char_u *)0L}
1260 #endif
1262 {"guiheadroom", "ghr", P_NUM|P_VI_DEF,
1263 #if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11)
1264 (char_u *)&p_ghr, PV_NONE,
1265 #else
1266 (char_u *)NULL, PV_NONE,
1267 #endif
1268 {(char_u *)50L, (char_u *)0L}},
1269 {"guioptions", "go", P_STRING|P_VI_DEF|P_RALL|P_FLAGLIST,
1270 #if defined(FEAT_GUI)
1271 (char_u *)&p_go, PV_NONE,
1272 # if defined(UNIX) && !defined(MACOS)
1273 {(char_u *)"aegimrLtT", (char_u *)0L}
1274 # else
1275 {(char_u *)"egmrLtT", (char_u *)0L}
1276 # endif
1277 #else
1278 (char_u *)NULL, PV_NONE,
1279 {(char_u *)NULL, (char_u *)0L}
1280 #endif
1282 {"guipty", NULL, P_BOOL|P_VI_DEF,
1283 #if defined(FEAT_GUI)
1284 (char_u *)&p_guipty, PV_NONE,
1285 #else
1286 (char_u *)NULL, PV_NONE,
1287 #endif
1288 {(char_u *)TRUE, (char_u *)0L}},
1289 {"guitablabel", "gtl", P_STRING|P_VI_DEF|P_RWIN,
1290 #if defined(FEAT_GUI_TABLINE)
1291 (char_u *)&p_gtl, PV_NONE,
1292 {(char_u *)"", (char_u *)0L}
1293 #else
1294 (char_u *)NULL, PV_NONE,
1295 {(char_u *)NULL, (char_u *)0L}
1296 #endif
1298 {"guitabtooltip", "gtt", P_STRING|P_VI_DEF|P_RWIN,
1299 #if defined(FEAT_GUI_TABLINE)
1300 (char_u *)&p_gtt, PV_NONE,
1301 {(char_u *)"", (char_u *)0L}
1302 #else
1303 (char_u *)NULL, PV_NONE,
1304 {(char_u *)NULL, (char_u *)0L}
1305 #endif
1307 {"hardtabs", "ht", P_NUM|P_VI_DEF,
1308 (char_u *)NULL, PV_NONE,
1309 {(char_u *)0L, (char_u *)0L}},
1310 {"helpfile", "hf", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1311 (char_u *)&p_hf, PV_NONE,
1312 {(char_u *)DFLT_HELPFILE, (char_u *)0L}},
1313 {"helpheight", "hh", P_NUM|P_VI_DEF,
1314 #ifdef FEAT_WINDOWS
1315 (char_u *)&p_hh, PV_NONE,
1316 #else
1317 (char_u *)NULL, PV_NONE,
1318 #endif
1319 {(char_u *)20L, (char_u *)0L}},
1320 {"helplang", "hlg", P_STRING|P_VI_DEF|P_COMMA,
1321 #ifdef FEAT_MULTI_LANG
1322 (char_u *)&p_hlg, PV_NONE,
1323 {(char_u *)"", (char_u *)0L}
1324 #else
1325 (char_u *)NULL, PV_NONE,
1326 {(char_u *)0L, (char_u *)0L}
1327 #endif
1329 {"hidden", "hid", P_BOOL|P_VI_DEF,
1330 (char_u *)&p_hid, PV_NONE,
1331 {(char_u *)FALSE, (char_u *)0L}},
1332 {"highlight", "hl", P_STRING|P_VI_DEF|P_RCLR|P_COMMA|P_NODUP,
1333 (char_u *)&p_hl, PV_NONE,
1334 {(char_u *)HIGHLIGHT_INIT, (char_u *)0L}},
1335 {"history", "hi", P_NUM|P_VIM,
1336 (char_u *)&p_hi, PV_NONE,
1337 {(char_u *)0L, (char_u *)20L}},
1338 {"hkmap", "hk", P_BOOL|P_VI_DEF|P_VIM,
1339 #ifdef FEAT_RIGHTLEFT
1340 (char_u *)&p_hkmap, PV_NONE,
1341 #else
1342 (char_u *)NULL, PV_NONE,
1343 #endif
1344 {(char_u *)FALSE, (char_u *)0L}},
1345 {"hkmapp", "hkp", P_BOOL|P_VI_DEF|P_VIM,
1346 #ifdef FEAT_RIGHTLEFT
1347 (char_u *)&p_hkmapp, PV_NONE,
1348 #else
1349 (char_u *)NULL, PV_NONE,
1350 #endif
1351 {(char_u *)FALSE, (char_u *)0L}},
1352 {"hlsearch", "hls", P_BOOL|P_VI_DEF|P_VIM|P_RALL,
1353 (char_u *)&p_hls, PV_NONE,
1354 {(char_u *)FALSE, (char_u *)0L}},
1355 {"icon", NULL, P_BOOL|P_VI_DEF,
1356 #ifdef FEAT_TITLE
1357 (char_u *)&p_icon, PV_NONE,
1358 #else
1359 (char_u *)NULL, PV_NONE,
1360 #endif
1361 {(char_u *)FALSE, (char_u *)0L}},
1362 {"iconstring", NULL, P_STRING|P_VI_DEF,
1363 #ifdef FEAT_TITLE
1364 (char_u *)&p_iconstring, PV_NONE,
1365 #else
1366 (char_u *)NULL, PV_NONE,
1367 #endif
1368 {(char_u *)"", (char_u *)0L}},
1369 {"ignorecase", "ic", P_BOOL|P_VI_DEF,
1370 (char_u *)&p_ic, PV_NONE,
1371 {(char_u *)FALSE, (char_u *)0L}},
1372 {"imactivatekey","imak",P_STRING|P_VI_DEF,
1373 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
1374 (char_u *)&p_imak, PV_NONE,
1375 #else
1376 (char_u *)NULL, PV_NONE,
1377 #endif
1378 {(char_u *)"", (char_u *)0L}},
1379 {"imcmdline", "imc", P_BOOL|P_VI_DEF,
1380 #ifdef USE_IM_CONTROL
1381 (char_u *)&p_imcmdline, PV_NONE,
1382 #else
1383 (char_u *)NULL, PV_NONE,
1384 #endif
1385 {(char_u *)FALSE, (char_u *)0L}},
1386 {"imdisable", "imd", P_BOOL|P_VI_DEF,
1387 #ifdef USE_IM_CONTROL
1388 (char_u *)&p_imdisable, PV_NONE,
1389 #else
1390 (char_u *)NULL, PV_NONE,
1391 #endif
1392 #if defined(__sgi) || defined(FEAT_GUI_MACVIM)
1393 {(char_u *)TRUE, (char_u *)0L}
1394 #else
1395 {(char_u *)FALSE, (char_u *)0L}
1396 #endif
1398 {"iminsert", "imi", P_NUM|P_VI_DEF,
1399 (char_u *)&p_iminsert, PV_IMI,
1400 #ifdef B_IMODE_IM
1401 {(char_u *)B_IMODE_IM, (char_u *)0L}
1402 #else
1403 {(char_u *)B_IMODE_NONE, (char_u *)0L}
1404 #endif
1406 {"imsearch", "ims", P_NUM|P_VI_DEF,
1407 (char_u *)&p_imsearch, PV_IMS,
1408 #ifdef B_IMODE_IM
1409 {(char_u *)B_IMODE_IM, (char_u *)0L}
1410 #else
1411 {(char_u *)B_IMODE_NONE, (char_u *)0L}
1412 #endif
1414 {"include", "inc", P_STRING|P_ALLOCED|P_VI_DEF,
1415 #ifdef FEAT_FIND_ID
1416 (char_u *)&p_inc, PV_INC,
1417 {(char_u *)"^\\s*#\\s*include", (char_u *)0L}
1418 #else
1419 (char_u *)NULL, PV_NONE,
1420 {(char_u *)0L, (char_u *)0L}
1421 #endif
1423 {"includeexpr", "inex", P_STRING|P_ALLOCED|P_VI_DEF,
1424 #if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
1425 (char_u *)&p_inex, PV_INEX,
1426 {(char_u *)"", (char_u *)0L}
1427 #else
1428 (char_u *)NULL, PV_NONE,
1429 {(char_u *)0L, (char_u *)0L}
1430 #endif
1432 {"incsearch", "is", P_BOOL|P_VI_DEF|P_VIM,
1433 (char_u *)&p_is, PV_NONE,
1434 {(char_u *)FALSE, (char_u *)0L}},
1435 {"indentexpr", "inde", P_STRING|P_ALLOCED|P_VI_DEF|P_VIM,
1436 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
1437 (char_u *)&p_inde, PV_INDE,
1438 {(char_u *)"", (char_u *)0L}
1439 #else
1440 (char_u *)NULL, PV_NONE,
1441 {(char_u *)0L, (char_u *)0L}
1442 #endif
1444 {"indentkeys", "indk", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
1445 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
1446 (char_u *)&p_indk, PV_INDK,
1447 {(char_u *)"0{,0},:,0#,!^F,o,O,e", (char_u *)0L}
1448 #else
1449 (char_u *)NULL, PV_NONE,
1450 {(char_u *)0L, (char_u *)0L}
1451 #endif
1453 {"infercase", "inf", P_BOOL|P_VI_DEF,
1454 (char_u *)&p_inf, PV_INF,
1455 {(char_u *)FALSE, (char_u *)0L}},
1456 {"insertmode", "im", P_BOOL|P_VI_DEF|P_VIM,
1457 (char_u *)&p_im, PV_NONE,
1458 {(char_u *)FALSE, (char_u *)0L}},
1459 {"isfname", "isf", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1460 (char_u *)&p_isf, PV_NONE,
1462 #ifdef BACKSLASH_IN_FILENAME
1463 /* Excluded are: & and ^ are special in cmd.exe
1464 * ( and ) are used in text separating fnames */
1465 (char_u *)"@,48-57,/,\\,.,-,_,+,,,#,$,%,{,},[,],:,@-@,!,~,=",
1466 #else
1467 # ifdef AMIGA
1468 (char_u *)"@,48-57,/,.,-,_,+,,,$,:",
1469 # else
1470 # ifdef VMS
1471 (char_u *)"@,48-57,/,.,-,_,+,,,#,$,%,<,>,[,],:,;,~",
1472 # else /* UNIX et al. */
1473 # ifdef EBCDIC
1474 (char_u *)"@,240-249,/,.,-,_,+,,,#,$,%,~,=",
1475 # else
1476 (char_u *)"@,48-57,/,.,-,_,+,,,#,$,%,~,=",
1477 # endif
1478 # endif
1479 # endif
1480 #endif
1481 (char_u *)0L}},
1482 {"isident", "isi", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1483 (char_u *)&p_isi, PV_NONE,
1485 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
1486 (char_u *)"@,48-57,_,128-167,224-235",
1487 #else
1488 # ifdef EBCDIC
1489 /* TODO: EBCDIC Check this! @ == isalpha()*/
1490 (char_u *)"@,240-249,_,66-73,81-89,98-105,"
1491 "112-120,128,140-142,156,158,172,"
1492 "174,186,191,203-207,219-225,235-239,"
1493 "251-254",
1494 # else
1495 (char_u *)"@,48-57,_,192-255",
1496 # endif
1497 #endif
1498 (char_u *)0L}},
1499 {"iskeyword", "isk", P_STRING|P_ALLOCED|P_VIM|P_COMMA|P_NODUP,
1500 (char_u *)&p_isk, PV_ISK,
1502 #ifdef EBCDIC
1503 (char_u *)"@,240-249,_",
1504 /* TODO: EBCDIC Check this! @ == isalpha()*/
1505 (char_u *)"@,240-249,_,66-73,81-89,98-105,"
1506 "112-120,128,140-142,156,158,172,"
1507 "174,186,191,203-207,219-225,235-239,"
1508 "251-254",
1509 #else
1510 (char_u *)"@,48-57,_",
1511 # if defined(MSDOS) || defined(MSWIN) || defined(OS2)
1512 (char_u *)"@,48-57,_,128-167,224-235"
1513 # else
1514 ISK_LATIN1
1515 # endif
1516 #endif
1518 {"isprint", "isp", P_STRING|P_VI_DEF|P_RALL|P_COMMA|P_NODUP,
1519 (char_u *)&p_isp, PV_NONE,
1521 #if defined(MSDOS) || defined(MSWIN) || defined(OS2) \
1522 || (defined(MACOS) && !defined(MACOS_X)) \
1523 || defined(VMS)
1524 (char_u *)"@,~-255",
1525 #else
1526 # ifdef EBCDIC
1527 /* all chars above 63 are printable */
1528 (char_u *)"63-255",
1529 # else
1530 ISP_LATIN1,
1531 # endif
1532 #endif
1533 (char_u *)0L}},
1534 {"joinspaces", "js", P_BOOL|P_VI_DEF|P_VIM,
1535 (char_u *)&p_js, PV_NONE,
1536 {(char_u *)TRUE, (char_u *)0L}},
1537 {"key", NULL, P_STRING|P_ALLOCED|P_VI_DEF|P_NO_MKRC,
1538 #ifdef FEAT_CRYPT
1539 (char_u *)&p_key, PV_KEY,
1540 {(char_u *)"", (char_u *)0L}
1541 #else
1542 (char_u *)NULL, PV_NONE,
1543 {(char_u *)0L, (char_u *)0L}
1544 #endif
1546 {"keymap", "kmp", P_STRING|P_ALLOCED|P_VI_DEF|P_RBUF|P_RSTAT|P_NFNAME|P_PRI_MKRC,
1547 #ifdef FEAT_KEYMAP
1548 (char_u *)&p_keymap, PV_KMAP,
1549 {(char_u *)"", (char_u *)0L}
1550 #else
1551 (char_u *)NULL, PV_NONE,
1552 {(char_u *)"", (char_u *)0L}
1553 #endif
1555 {"keymodel", "km", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1556 #ifdef FEAT_VISUAL
1557 (char_u *)&p_km, PV_NONE,
1558 #else
1559 (char_u *)NULL, PV_NONE,
1560 #endif
1561 {(char_u *)"", (char_u *)0L}},
1562 {"keywordprg", "kp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1563 (char_u *)&p_kp, PV_KP,
1565 #if defined(MSDOS) || defined(MSWIN)
1566 (char_u *)":help",
1567 #else
1568 #ifdef VMS
1569 (char_u *)"help",
1570 #else
1571 # if defined(OS2)
1572 (char_u *)"view /",
1573 # else
1574 # ifdef USEMAN_S
1575 (char_u *)"man -s",
1576 # else
1577 (char_u *)"man",
1578 # endif
1579 # endif
1580 #endif
1581 #endif
1582 (char_u *)0L}},
1583 {"langmap", "lmap", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1584 #ifdef FEAT_LANGMAP
1585 (char_u *)&p_langmap, PV_NONE,
1586 {(char_u *)"", /* unmatched } */
1587 #else
1588 (char_u *)NULL, PV_NONE,
1589 {(char_u *)NULL,
1590 #endif
1591 (char_u *)0L}},
1592 {"langmenu", "lm", P_STRING|P_VI_DEF|P_NFNAME,
1593 #if defined(FEAT_MENU) && defined(FEAT_MULTI_LANG)
1594 (char_u *)&p_lm, PV_NONE,
1595 #else
1596 (char_u *)NULL, PV_NONE,
1597 #endif
1598 {(char_u *)"", (char_u *)0L}},
1599 {"laststatus", "ls", P_NUM|P_VI_DEF|P_RALL,
1600 #ifdef FEAT_WINDOWS
1601 (char_u *)&p_ls, PV_NONE,
1602 #else
1603 (char_u *)NULL, PV_NONE,
1604 #endif
1605 {(char_u *)1L, (char_u *)0L}},
1606 {"lazyredraw", "lz", P_BOOL|P_VI_DEF,
1607 (char_u *)&p_lz, PV_NONE,
1608 {(char_u *)FALSE, (char_u *)0L}},
1609 {"linebreak", "lbr", P_BOOL|P_VI_DEF|P_RWIN,
1610 #ifdef FEAT_LINEBREAK
1611 (char_u *)VAR_WIN, PV_LBR,
1612 #else
1613 (char_u *)NULL, PV_NONE,
1614 #endif
1615 {(char_u *)FALSE, (char_u *)0L}},
1616 {"lines", NULL, P_NUM|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RCLR,
1617 (char_u *)&Rows, PV_NONE,
1619 #if defined(MSDOS) || defined(WIN3264) || defined(OS2)
1620 (char_u *)25L,
1621 #else
1622 (char_u *)24L,
1623 #endif
1624 (char_u *)0L}},
1625 {"linespace", "lsp", P_NUM|P_VI_DEF|P_RCLR,
1626 #ifdef FEAT_GUI
1627 (char_u *)&p_linespace, PV_NONE,
1628 #else
1629 (char_u *)NULL, PV_NONE,
1630 #endif
1631 #ifdef FEAT_GUI_W32
1632 {(char_u *)1L, (char_u *)0L}
1633 #else
1634 {(char_u *)0L, (char_u *)0L}
1635 #endif
1637 {"lisp", NULL, P_BOOL|P_VI_DEF,
1638 #ifdef FEAT_LISP
1639 (char_u *)&p_lisp, PV_LISP,
1640 #else
1641 (char_u *)NULL, PV_NONE,
1642 #endif
1643 {(char_u *)FALSE, (char_u *)0L}},
1644 {"lispwords", "lw", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1645 #ifdef FEAT_LISP
1646 (char_u *)&p_lispwords, PV_NONE,
1647 {(char_u *)LISPWORD_VALUE, (char_u *)0L}
1648 #else
1649 (char_u *)NULL, PV_NONE,
1650 {(char_u *)"", (char_u *)0L}
1651 #endif
1653 {"list", NULL, P_BOOL|P_VI_DEF|P_RWIN,
1654 (char_u *)VAR_WIN, PV_LIST,
1655 {(char_u *)FALSE, (char_u *)0L}},
1656 {"listchars", "lcs", P_STRING|P_VI_DEF|P_RALL|P_COMMA|P_NODUP,
1657 (char_u *)&p_lcs, PV_NONE,
1658 {(char_u *)"eol:$", (char_u *)0L}},
1659 {"loadplugins", "lpl", P_BOOL|P_VI_DEF,
1660 (char_u *)&p_lpl, PV_NONE,
1661 {(char_u *)TRUE, (char_u *)0L}},
1662 #ifdef FEAT_GUI_MAC
1663 {"macatsui", NULL, P_BOOL|P_VI_DEF|P_RCLR,
1664 (char_u *)&p_macatsui, PV_NONE,
1665 {(char_u *)TRUE, (char_u *)0L}},
1666 #endif
1667 {"macmeta", "mmta", P_BOOL|P_VI_DEF,
1668 #ifdef FEAT_GUI_MACVIM
1669 (char_u *)&p_mmta, PV_MMTA,
1670 #else
1671 (char_u *)NULL, PV_NONE,
1672 #endif
1673 {(char_u *)FALSE, (char_u *)0L}},
1674 {"magic", NULL, P_BOOL|P_VI_DEF,
1675 (char_u *)&p_magic, PV_NONE,
1676 {(char_u *)TRUE, (char_u *)0L}},
1677 {"makeef", "mef", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1678 #ifdef FEAT_QUICKFIX
1679 (char_u *)&p_mef, PV_NONE,
1680 {(char_u *)"", (char_u *)0L}
1681 #else
1682 (char_u *)NULL, PV_NONE,
1683 {(char_u *)NULL, (char_u *)0L}
1684 #endif
1686 {"makeprg", "mp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1687 #ifdef FEAT_QUICKFIX
1688 (char_u *)&p_mp, PV_MP,
1689 # ifdef VMS
1690 {(char_u *)"MMS", (char_u *)0L}
1691 # else
1692 {(char_u *)"make", (char_u *)0L}
1693 # endif
1694 #else
1695 (char_u *)NULL, PV_NONE,
1696 {(char_u *)NULL, (char_u *)0L}
1697 #endif
1699 {"matchpairs", "mps", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
1700 (char_u *)&p_mps, PV_MPS,
1701 {(char_u *)"(:),{:},[:]", (char_u *)0L}},
1702 {"matchtime", "mat", P_NUM|P_VI_DEF,
1703 (char_u *)&p_mat, PV_NONE,
1704 {(char_u *)5L, (char_u *)0L}},
1705 {"maxcombine", "mco", P_NUM|P_VI_DEF,
1706 #ifdef FEAT_MBYTE
1707 (char_u *)&p_mco, PV_NONE,
1708 #else
1709 (char_u *)NULL, PV_NONE,
1710 #endif
1711 {(char_u *)2, (char_u *)0L}},
1712 {"maxfuncdepth", "mfd", P_NUM|P_VI_DEF,
1713 #ifdef FEAT_EVAL
1714 (char_u *)&p_mfd, PV_NONE,
1715 #else
1716 (char_u *)NULL, PV_NONE,
1717 #endif
1718 {(char_u *)100L, (char_u *)0L}},
1719 {"maxmapdepth", "mmd", P_NUM|P_VI_DEF,
1720 (char_u *)&p_mmd, PV_NONE,
1721 {(char_u *)1000L, (char_u *)0L}},
1722 {"maxmem", "mm", P_NUM|P_VI_DEF,
1723 (char_u *)&p_mm, PV_NONE,
1724 {(char_u *)DFLT_MAXMEM, (char_u *)0L}},
1725 {"maxmempattern","mmp", P_NUM|P_VI_DEF,
1726 (char_u *)&p_mmp, PV_NONE,
1727 {(char_u *)1000L, (char_u *)0L}},
1728 {"maxmemtot", "mmt", P_NUM|P_VI_DEF,
1729 (char_u *)&p_mmt, PV_NONE,
1730 {(char_u *)DFLT_MAXMEMTOT, (char_u *)0L}},
1731 {"menuitems", "mis", P_NUM|P_VI_DEF,
1732 #ifdef FEAT_MENU
1733 (char_u *)&p_mis, PV_NONE,
1734 #else
1735 (char_u *)NULL, PV_NONE,
1736 #endif
1737 {(char_u *)25L, (char_u *)0L}},
1738 {"mesg", NULL, P_BOOL|P_VI_DEF,
1739 (char_u *)NULL, PV_NONE,
1740 {(char_u *)FALSE, (char_u *)0L}},
1741 {"mkspellmem", "msm", P_STRING|P_VI_DEF|P_EXPAND|P_SECURE,
1742 #ifdef FEAT_SPELL
1743 (char_u *)&p_msm, PV_NONE,
1744 {(char_u *)"460000,2000,500", (char_u *)0L}
1745 #else
1746 (char_u *)NULL, PV_NONE,
1747 {(char_u *)0L, (char_u *)0L}
1748 #endif
1750 {"modeline", "ml", P_BOOL|P_VIM,
1751 (char_u *)&p_ml, PV_ML,
1752 {(char_u *)FALSE, (char_u *)TRUE}},
1753 {"modelines", "mls", P_NUM|P_VI_DEF,
1754 (char_u *)&p_mls, PV_NONE,
1755 {(char_u *)5L, (char_u *)0L}},
1756 {"modifiable", "ma", P_BOOL|P_VI_DEF|P_NOGLOB,
1757 (char_u *)&p_ma, PV_MA,
1758 {(char_u *)TRUE, (char_u *)0L}},
1759 {"modified", "mod", P_BOOL|P_NO_MKRC|P_VI_DEF|P_RSTAT,
1760 (char_u *)&p_mod, PV_MOD,
1761 {(char_u *)FALSE, (char_u *)0L}},
1762 {"more", NULL, P_BOOL|P_VIM,
1763 (char_u *)&p_more, PV_NONE,
1764 {(char_u *)FALSE, (char_u *)TRUE}},
1765 {"mouse", NULL, P_STRING|P_VI_DEF|P_FLAGLIST,
1766 (char_u *)&p_mouse, PV_NONE,
1768 #if defined(MSDOS) || defined(WIN3264)
1769 (char_u *)"a",
1770 #else
1771 (char_u *)"",
1772 #endif
1773 (char_u *)0L}},
1774 {"mousefocus", "mousef", P_BOOL|P_VI_DEF,
1775 #ifdef FEAT_GUI
1776 (char_u *)&p_mousef, PV_NONE,
1777 #else
1778 (char_u *)NULL, PV_NONE,
1779 #endif
1780 {(char_u *)FALSE, (char_u *)0L}},
1781 {"mousehide", "mh", P_BOOL|P_VI_DEF,
1782 #ifdef FEAT_GUI
1783 (char_u *)&p_mh, PV_NONE,
1784 #else
1785 (char_u *)NULL, PV_NONE,
1786 #endif
1787 {(char_u *)TRUE, (char_u *)0L}},
1788 {"mousemodel", "mousem", P_STRING|P_VI_DEF,
1789 (char_u *)&p_mousem, PV_NONE,
1791 #if defined(MSDOS) || defined(MSWIN)
1792 (char_u *)"popup",
1793 #else
1794 # if defined(MACOS)
1795 (char_u *)"popup_setpos",
1796 # else
1797 (char_u *)"extend",
1798 # endif
1799 #endif
1800 (char_u *)0L}},
1801 {"mouseshape", "mouses", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1802 #ifdef FEAT_MOUSESHAPE
1803 (char_u *)&p_mouseshape, PV_NONE,
1804 {(char_u *)"i-r:beam,s:updown,sd:udsizing,vs:leftright,vd:lrsizing,m:no,ml:up-arrow,v:rightup-arrow", (char_u *)0L}
1805 #else
1806 (char_u *)NULL, PV_NONE,
1807 {(char_u *)NULL, (char_u *)0L}
1808 #endif
1810 {"mousetime", "mouset", P_NUM|P_VI_DEF,
1811 (char_u *)&p_mouset, PV_NONE,
1812 {(char_u *)500L, (char_u *)0L}},
1813 {"mzquantum", "mzq", P_NUM,
1814 #ifdef FEAT_MZSCHEME
1815 (char_u *)&p_mzq, PV_NONE,
1816 #else
1817 (char_u *)NULL, PV_NONE,
1818 #endif
1819 {(char_u *)100L, (char_u *)100L}},
1820 {"novice", NULL, P_BOOL|P_VI_DEF,
1821 (char_u *)NULL, PV_NONE,
1822 {(char_u *)FALSE, (char_u *)0L}},
1823 {"nrformats", "nf", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
1824 (char_u *)&p_nf, PV_NF,
1825 {(char_u *)"octal,hex", (char_u *)0L}},
1826 {"number", "nu", P_BOOL|P_VI_DEF|P_RWIN,
1827 (char_u *)VAR_WIN, PV_NU,
1828 {(char_u *)FALSE, (char_u *)0L}},
1829 {"numberwidth", "nuw", P_NUM|P_RWIN|P_VIM,
1830 #ifdef FEAT_LINEBREAK
1831 (char_u *)VAR_WIN, PV_NUW,
1832 #else
1833 (char_u *)NULL, PV_NONE,
1834 #endif
1835 {(char_u *)8L, (char_u *)4L}},
1836 {"omnifunc", "ofu", P_STRING|P_ALLOCED|P_VI_DEF|P_SECURE,
1837 #ifdef FEAT_COMPL_FUNC
1838 (char_u *)&p_ofu, PV_OFU,
1839 {(char_u *)"", (char_u *)0L}
1840 #else
1841 (char_u *)NULL, PV_NONE,
1842 {(char_u *)0L, (char_u *)0L}
1843 #endif
1845 {"open", NULL, P_BOOL|P_VI_DEF,
1846 (char_u *)NULL, PV_NONE,
1847 {(char_u *)FALSE, (char_u *)0L}},
1848 {"opendevice", "odev", P_BOOL|P_VI_DEF,
1849 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
1850 (char_u *)&p_odev, PV_NONE,
1851 #else
1852 (char_u *)NULL, PV_NONE,
1853 #endif
1854 {(char_u *)FALSE, (char_u *)FALSE}
1856 {"operatorfunc", "opfunc", P_STRING|P_VI_DEF|P_SECURE,
1857 (char_u *)&p_opfunc, PV_NONE,
1858 {(char_u *)"", (char_u *)0L} },
1859 {"optimize", "opt", P_BOOL|P_VI_DEF,
1860 (char_u *)NULL, PV_NONE,
1861 {(char_u *)FALSE, (char_u *)0L}},
1862 {"osfiletype", "oft", P_STRING|P_ALLOCED|P_VI_DEF,
1863 #ifdef FEAT_OSFILETYPE
1864 (char_u *)&p_oft, PV_OFT,
1865 {(char_u *)DFLT_OFT, (char_u *)0L}
1866 #else
1867 (char_u *)NULL, PV_NONE,
1868 {(char_u *)0L, (char_u *)0L}
1869 #endif
1871 {"paragraphs", "para", P_STRING|P_VI_DEF,
1872 (char_u *)&p_para, PV_NONE,
1873 {(char_u *)"IPLPPPQPP TPHPLIPpLpItpplpipbp",
1874 (char_u *)0L}},
1875 {"paste", NULL, P_BOOL|P_VI_DEF|P_PRI_MKRC,
1876 (char_u *)&p_paste, PV_NONE,
1877 {(char_u *)FALSE, (char_u *)0L}},
1878 {"pastetoggle", "pt", P_STRING|P_VI_DEF,
1879 (char_u *)&p_pt, PV_NONE,
1880 {(char_u *)"", (char_u *)0L}},
1881 {"patchexpr", "pex", P_STRING|P_VI_DEF|P_SECURE,
1882 #if defined(FEAT_DIFF) && defined(FEAT_EVAL)
1883 (char_u *)&p_pex, PV_NONE,
1884 {(char_u *)"", (char_u *)0L}
1885 #else
1886 (char_u *)NULL, PV_NONE,
1887 {(char_u *)0L, (char_u *)0L}
1888 #endif
1890 {"patchmode", "pm", P_STRING|P_VI_DEF|P_NFNAME,
1891 (char_u *)&p_pm, PV_NONE,
1892 {(char_u *)"", (char_u *)0L}},
1893 {"path", "pa", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
1894 (char_u *)&p_path, PV_PATH,
1896 #if defined AMIGA || defined MSDOS || defined MSWIN
1897 (char_u *)".,,",
1898 #else
1899 # if defined(__EMX__)
1900 (char_u *)".,/emx/include,,",
1901 # else /* Unix, probably */
1902 (char_u *)".,/usr/include,,",
1903 # endif
1904 #endif
1905 (char_u *)0L}},
1906 {"preserveindent", "pi", P_BOOL|P_VI_DEF|P_VIM,
1907 (char_u *)&p_pi, PV_PI,
1908 {(char_u *)FALSE, (char_u *)0L}},
1909 {"previewheight", "pvh", P_NUM|P_VI_DEF,
1910 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
1911 (char_u *)&p_pvh, PV_NONE,
1912 #else
1913 (char_u *)NULL, PV_NONE,
1914 #endif
1915 {(char_u *)12L, (char_u *)0L}},
1916 {"previewwindow", "pvw", P_BOOL|P_VI_DEF|P_RSTAT|P_NOGLOB,
1917 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
1918 (char_u *)VAR_WIN, PV_PVW,
1919 #else
1920 (char_u *)NULL, PV_NONE,
1921 #endif
1922 {(char_u *)FALSE, (char_u *)0L}},
1923 {"printdevice", "pdev", P_STRING|P_VI_DEF|P_SECURE,
1924 #ifdef FEAT_PRINTER
1925 (char_u *)&p_pdev, PV_NONE,
1926 {(char_u *)"", (char_u *)0L}
1927 #else
1928 (char_u *)NULL, PV_NONE,
1929 {(char_u *)NULL, (char_u *)0L}
1930 #endif
1932 {"printencoding", "penc", P_STRING|P_VI_DEF,
1933 #ifdef FEAT_POSTSCRIPT
1934 (char_u *)&p_penc, PV_NONE,
1935 {(char_u *)"", (char_u *)0L}
1936 #else
1937 (char_u *)NULL, PV_NONE,
1938 {(char_u *)NULL, (char_u *)0L}
1939 #endif
1941 {"printexpr", "pexpr", P_STRING|P_VI_DEF,
1942 #ifdef FEAT_POSTSCRIPT
1943 (char_u *)&p_pexpr, PV_NONE,
1944 {(char_u *)"", (char_u *)0L}
1945 #else
1946 (char_u *)NULL, PV_NONE,
1947 {(char_u *)NULL, (char_u *)0L}
1948 #endif
1950 {"printfont", "pfn", P_STRING|P_VI_DEF,
1951 #ifdef FEAT_PRINTER
1952 (char_u *)&p_pfn, PV_NONE,
1954 # ifdef MSWIN
1955 (char_u *)"Courier_New:h10",
1956 # else
1957 (char_u *)"courier",
1958 # endif
1959 (char_u *)0L}
1960 #else
1961 (char_u *)NULL, PV_NONE,
1962 {(char_u *)NULL, (char_u *)0L}
1963 #endif
1965 {"printheader", "pheader", P_STRING|P_VI_DEF|P_GETTEXT,
1966 #ifdef FEAT_PRINTER
1967 (char_u *)&p_header, PV_NONE,
1968 {(char_u *)N_("%<%f%h%m%=Page %N"), (char_u *)0L}
1969 #else
1970 (char_u *)NULL, PV_NONE,
1971 {(char_u *)NULL, (char_u *)0L}
1972 #endif
1974 {"printmbcharset", "pmbcs", P_STRING|P_VI_DEF,
1975 #if defined(FEAT_POSTSCRIPT) && defined(FEAT_MBYTE)
1976 (char_u *)&p_pmcs, PV_NONE,
1977 {(char_u *)"", (char_u *)0L}
1978 #else
1979 (char_u *)NULL, PV_NONE,
1980 {(char_u *)NULL, (char_u *)0L}
1981 #endif
1983 {"printmbfont", "pmbfn", P_STRING|P_VI_DEF,
1984 #if defined(FEAT_POSTSCRIPT) && defined(FEAT_MBYTE)
1985 (char_u *)&p_pmfn, PV_NONE,
1986 {(char_u *)"", (char_u *)0L}
1987 #else
1988 (char_u *)NULL, PV_NONE,
1989 {(char_u *)NULL, (char_u *)0L}
1990 #endif
1992 {"printoptions", "popt", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1993 #ifdef FEAT_PRINTER
1994 (char_u *)&p_popt, PV_NONE,
1995 {(char_u *)"", (char_u *)0L}
1996 #else
1997 (char_u *)NULL, PV_NONE,
1998 {(char_u *)NULL, (char_u *)0L}
1999 #endif
2001 {"prompt", NULL, P_BOOL|P_VI_DEF,
2002 (char_u *)&p_prompt, PV_NONE,
2003 {(char_u *)TRUE, (char_u *)0L}},
2004 {"pumheight", "ph", P_NUM|P_VI_DEF,
2005 #ifdef FEAT_INS_EXPAND
2006 (char_u *)&p_ph, PV_NONE,
2007 #else
2008 (char_u *)NULL, PV_NONE,
2009 #endif
2010 {(char_u *)0L, (char_u *)0L}},
2011 {"quoteescape", "qe", P_STRING|P_ALLOCED|P_VI_DEF,
2012 #ifdef FEAT_TEXTOBJ
2013 (char_u *)&p_qe, PV_QE,
2014 {(char_u *)"\\", (char_u *)0L}
2015 #else
2016 (char_u *)NULL, PV_NONE,
2017 {(char_u *)NULL, (char_u *)0L}
2018 #endif
2020 {"readonly", "ro", P_BOOL|P_VI_DEF|P_RSTAT|P_NOGLOB,
2021 (char_u *)&p_ro, PV_RO,
2022 {(char_u *)FALSE, (char_u *)0L}},
2023 {"redraw", NULL, P_BOOL|P_VI_DEF,
2024 (char_u *)NULL, PV_NONE,
2025 {(char_u *)FALSE, (char_u *)0L}},
2026 {"redrawtime", "rdt", P_NUM|P_VI_DEF,
2027 #ifdef FEAT_RELTIME
2028 (char_u *)&p_rdt, PV_NONE,
2029 #else
2030 (char_u *)NULL, PV_NONE,
2031 #endif
2032 {(char_u *)2000L, (char_u *)0L}},
2033 {"remap", NULL, P_BOOL|P_VI_DEF,
2034 (char_u *)&p_remap, PV_NONE,
2035 {(char_u *)TRUE, (char_u *)0L}},
2036 {"report", NULL, P_NUM|P_VI_DEF,
2037 (char_u *)&p_report, PV_NONE,
2038 {(char_u *)2L, (char_u *)0L}},
2039 {"restorescreen", "rs", P_BOOL|P_VI_DEF,
2040 #ifdef WIN3264
2041 (char_u *)&p_rs, PV_NONE,
2042 #else
2043 (char_u *)NULL, PV_NONE,
2044 #endif
2045 {(char_u *)TRUE, (char_u *)0L}},
2046 {"revins", "ri", P_BOOL|P_VI_DEF|P_VIM,
2047 #ifdef FEAT_RIGHTLEFT
2048 (char_u *)&p_ri, PV_NONE,
2049 #else
2050 (char_u *)NULL, PV_NONE,
2051 #endif
2052 {(char_u *)FALSE, (char_u *)0L}},
2053 {"rightleft", "rl", P_BOOL|P_VI_DEF|P_RWIN,
2054 #ifdef FEAT_RIGHTLEFT
2055 (char_u *)VAR_WIN, PV_RL,
2056 #else
2057 (char_u *)NULL, PV_NONE,
2058 #endif
2059 {(char_u *)FALSE, (char_u *)0L}},
2060 {"rightleftcmd", "rlc", P_STRING|P_ALLOCED|P_VI_DEF|P_RWIN,
2061 #ifdef FEAT_RIGHTLEFT
2062 (char_u *)VAR_WIN, PV_RLC,
2063 {(char_u *)"search", (char_u *)NULL}
2064 #else
2065 (char_u *)NULL, PV_NONE,
2066 {(char_u *)NULL, (char_u *)0L}
2067 #endif
2069 {"ruler", "ru", P_BOOL|P_VI_DEF|P_VIM|P_RSTAT,
2070 #ifdef FEAT_CMDL_INFO
2071 (char_u *)&p_ru, PV_NONE,
2072 #else
2073 (char_u *)NULL, PV_NONE,
2074 #endif
2075 {(char_u *)FALSE, (char_u *)0L}},
2076 {"rulerformat", "ruf", P_STRING|P_VI_DEF|P_ALLOCED|P_RSTAT,
2077 #ifdef FEAT_STL_OPT
2078 (char_u *)&p_ruf, PV_NONE,
2079 #else
2080 (char_u *)NULL, PV_NONE,
2081 #endif
2082 {(char_u *)"", (char_u *)0L}},
2083 {"runtimepath", "rtp", P_STRING|P_VI_DEF|P_EXPAND|P_COMMA|P_NODUP|P_SECURE,
2084 (char_u *)&p_rtp, PV_NONE,
2085 {(char_u *)DFLT_RUNTIMEPATH, (char_u *)0L}},
2086 {"scroll", "scr", P_NUM|P_NO_MKRC|P_VI_DEF,
2087 (char_u *)VAR_WIN, PV_SCROLL,
2088 {(char_u *)12L, (char_u *)0L}},
2089 {"scrollbind", "scb", P_BOOL|P_VI_DEF,
2090 #ifdef FEAT_SCROLLBIND
2091 (char_u *)VAR_WIN, PV_SCBIND,
2092 #else
2093 (char_u *)NULL, PV_NONE,
2094 #endif
2095 {(char_u *)FALSE, (char_u *)0L}},
2096 {"scrolljump", "sj", P_NUM|P_VI_DEF|P_VIM,
2097 (char_u *)&p_sj, PV_NONE,
2098 {(char_u *)1L, (char_u *)0L}},
2099 {"scrolloff", "so", P_NUM|P_VI_DEF|P_VIM|P_RALL,
2100 (char_u *)&p_so, PV_NONE,
2101 {(char_u *)0L, (char_u *)0L}},
2102 {"scrollopt", "sbo", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2103 #ifdef FEAT_SCROLLBIND
2104 (char_u *)&p_sbo, PV_NONE,
2105 {(char_u *)"ver,jump", (char_u *)0L}
2106 #else
2107 (char_u *)NULL, PV_NONE,
2108 {(char_u *)0L, (char_u *)0L}
2109 #endif
2111 {"sections", "sect", P_STRING|P_VI_DEF,
2112 (char_u *)&p_sections, PV_NONE,
2113 {(char_u *)"SHNHH HUnhsh", (char_u *)0L}},
2114 {"secure", NULL, P_BOOL|P_VI_DEF|P_SECURE,
2115 (char_u *)&p_secure, PV_NONE,
2116 {(char_u *)FALSE, (char_u *)0L}},
2117 {"selection", "sel", P_STRING|P_VI_DEF,
2118 #ifdef FEAT_VISUAL
2119 (char_u *)&p_sel, PV_NONE,
2120 #else
2121 (char_u *)NULL, PV_NONE,
2122 #endif
2123 {(char_u *)"inclusive", (char_u *)0L}},
2124 {"selectmode", "slm", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2125 #ifdef FEAT_VISUAL
2126 (char_u *)&p_slm, PV_NONE,
2127 #else
2128 (char_u *)NULL, PV_NONE,
2129 #endif
2130 {(char_u *)"", (char_u *)0L}},
2131 {"sessionoptions", "ssop", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2132 #ifdef FEAT_SESSION
2133 (char_u *)&p_ssop, PV_NONE,
2134 {(char_u *)"blank,buffers,curdir,folds,help,options,tabpages,winsize",
2135 (char_u *)0L}
2136 #else
2137 (char_u *)NULL, PV_NONE,
2138 {(char_u *)0L, (char_u *)0L}
2139 #endif
2141 {"shell", "sh", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
2142 (char_u *)&p_sh, PV_NONE,
2144 #ifdef VMS
2145 (char_u *)"-",
2146 #else
2147 # if defined(MSDOS)
2148 (char_u *)"command",
2149 # else
2150 # if defined(WIN16)
2151 (char_u *)"command.com",
2152 # else
2153 # if defined(WIN3264)
2154 (char_u *)"", /* set in set_init_1() */
2155 # else
2156 # if defined(OS2)
2157 (char_u *)"cmd.exe",
2158 # else
2159 # if defined(ARCHIE)
2160 (char_u *)"gos",
2161 # else
2162 (char_u *)"sh",
2163 # endif
2164 # endif
2165 # endif
2166 # endif
2167 # endif
2168 #endif /* VMS */
2169 (char_u *)0L}},
2170 {"shellcmdflag","shcf", P_STRING|P_VI_DEF|P_SECURE,
2171 (char_u *)&p_shcf, PV_NONE,
2173 #if defined(MSDOS) || defined(MSWIN)
2174 (char_u *)"/c",
2175 #else
2176 # if defined(OS2)
2177 (char_u *)"/c",
2178 # else
2179 (char_u *)"-c",
2180 # endif
2181 #endif
2182 (char_u *)0L}},
2183 {"shellpipe", "sp", P_STRING|P_VI_DEF|P_SECURE,
2184 #ifdef FEAT_QUICKFIX
2185 (char_u *)&p_sp, PV_NONE,
2187 #if defined(UNIX) || defined(OS2)
2188 # ifdef ARCHIE
2189 (char_u *)"2>",
2190 # else
2191 (char_u *)"| tee",
2192 # endif
2193 #else
2194 (char_u *)">",
2195 #endif
2196 (char_u *)0L}
2197 #else
2198 (char_u *)NULL, PV_NONE,
2199 {(char_u *)0L, (char_u *)0L}
2200 #endif
2202 {"shellquote", "shq", P_STRING|P_VI_DEF|P_SECURE,
2203 (char_u *)&p_shq, PV_NONE,
2204 {(char_u *)"", (char_u *)0L}},
2205 {"shellredir", "srr", P_STRING|P_VI_DEF|P_SECURE,
2206 (char_u *)&p_srr, PV_NONE,
2207 {(char_u *)">", (char_u *)0L}},
2208 {"shellslash", "ssl", P_BOOL|P_VI_DEF,
2209 #ifdef BACKSLASH_IN_FILENAME
2210 (char_u *)&p_ssl, PV_NONE,
2211 #else
2212 (char_u *)NULL, PV_NONE,
2213 #endif
2214 {(char_u *)FALSE, (char_u *)0L}},
2215 {"shelltemp", "stmp", P_BOOL,
2216 (char_u *)&p_stmp, PV_NONE,
2217 {(char_u *)FALSE, (char_u *)TRUE}},
2218 {"shelltype", "st", P_NUM|P_VI_DEF,
2219 #ifdef AMIGA
2220 (char_u *)&p_st, PV_NONE,
2221 #else
2222 (char_u *)NULL, PV_NONE,
2223 #endif
2224 {(char_u *)0L, (char_u *)0L}},
2225 {"shellxquote", "sxq", P_STRING|P_VI_DEF|P_SECURE,
2226 (char_u *)&p_sxq, PV_NONE,
2228 #if defined(UNIX) && defined(USE_SYSTEM) && !defined(__EMX__)
2229 (char_u *)"\"",
2230 #else
2231 (char_u *)"",
2232 #endif
2233 (char_u *)0L}},
2234 {"shiftround", "sr", P_BOOL|P_VI_DEF|P_VIM,
2235 (char_u *)&p_sr, PV_NONE,
2236 {(char_u *)FALSE, (char_u *)0L}},
2237 {"shiftwidth", "sw", P_NUM|P_VI_DEF,
2238 (char_u *)&p_sw, PV_SW,
2239 {(char_u *)8L, (char_u *)0L}},
2240 {"shortmess", "shm", P_STRING|P_VIM|P_FLAGLIST,
2241 (char_u *)&p_shm, PV_NONE,
2242 {(char_u *)"", (char_u *)"filnxtToO"}},
2243 {"shortname", "sn", P_BOOL|P_VI_DEF,
2244 #ifdef SHORT_FNAME
2245 (char_u *)NULL, PV_NONE,
2246 #else
2247 (char_u *)&p_sn, PV_SN,
2248 #endif
2249 {(char_u *)FALSE, (char_u *)0L}},
2250 {"showbreak", "sbr", P_STRING|P_VI_DEF|P_RALL,
2251 #ifdef FEAT_LINEBREAK
2252 (char_u *)&p_sbr, PV_NONE,
2253 #else
2254 (char_u *)NULL, PV_NONE,
2255 #endif
2256 {(char_u *)"", (char_u *)0L}},
2257 {"showcmd", "sc", P_BOOL|P_VIM,
2258 #ifdef FEAT_CMDL_INFO
2259 (char_u *)&p_sc, PV_NONE,
2260 #else
2261 (char_u *)NULL, PV_NONE,
2262 #endif
2263 {(char_u *)FALSE,
2264 #ifdef UNIX
2265 (char_u *)FALSE
2266 #else
2267 (char_u *)TRUE
2268 #endif
2270 {"showfulltag", "sft", P_BOOL|P_VI_DEF,
2271 (char_u *)&p_sft, PV_NONE,
2272 {(char_u *)FALSE, (char_u *)0L}},
2273 {"showmatch", "sm", P_BOOL|P_VI_DEF,
2274 (char_u *)&p_sm, PV_NONE,
2275 {(char_u *)FALSE, (char_u *)0L}},
2276 {"showmode", "smd", P_BOOL|P_VIM,
2277 (char_u *)&p_smd, PV_NONE,
2278 {(char_u *)FALSE, (char_u *)TRUE}},
2279 {"showtabline", "stal", P_NUM|P_VI_DEF|P_RALL,
2280 #ifdef FEAT_WINDOWS
2281 (char_u *)&p_stal, PV_NONE,
2282 #else
2283 (char_u *)NULL, PV_NONE,
2284 #endif
2285 {(char_u *)1L, (char_u *)0L}},
2286 {"sidescroll", "ss", P_NUM|P_VI_DEF,
2287 (char_u *)&p_ss, PV_NONE,
2288 {(char_u *)0L, (char_u *)0L}},
2289 {"sidescrolloff", "siso", P_NUM|P_VI_DEF|P_VIM|P_RBUF,
2290 (char_u *)&p_siso, PV_NONE,
2291 {(char_u *)0L, (char_u *)0L}},
2292 {"slowopen", "slow", P_BOOL|P_VI_DEF,
2293 (char_u *)NULL, PV_NONE,
2294 {(char_u *)FALSE, (char_u *)0L}},
2295 {"smartcase", "scs", P_BOOL|P_VI_DEF|P_VIM,
2296 (char_u *)&p_scs, PV_NONE,
2297 {(char_u *)FALSE, (char_u *)0L}},
2298 {"smartindent", "si", P_BOOL|P_VI_DEF|P_VIM,
2299 #ifdef FEAT_SMARTINDENT
2300 (char_u *)&p_si, PV_SI,
2301 #else
2302 (char_u *)NULL, PV_NONE,
2303 #endif
2304 {(char_u *)FALSE, (char_u *)0L}},
2305 {"smarttab", "sta", P_BOOL|P_VI_DEF|P_VIM,
2306 (char_u *)&p_sta, PV_NONE,
2307 {(char_u *)FALSE, (char_u *)0L}},
2308 {"softtabstop", "sts", P_NUM|P_VI_DEF|P_VIM,
2309 (char_u *)&p_sts, PV_STS,
2310 {(char_u *)0L, (char_u *)0L}},
2311 {"sourceany", NULL, P_BOOL|P_VI_DEF,
2312 (char_u *)NULL, PV_NONE,
2313 {(char_u *)FALSE, (char_u *)0L}},
2314 {"spell", NULL, P_BOOL|P_VI_DEF|P_RWIN,
2315 #ifdef FEAT_SPELL
2316 (char_u *)VAR_WIN, PV_SPELL,
2317 #else
2318 (char_u *)NULL, PV_NONE,
2319 #endif
2320 {(char_u *)FALSE, (char_u *)0L}},
2321 {"spellcapcheck", "spc", P_STRING|P_ALLOCED|P_VI_DEF|P_RBUF,
2322 #ifdef FEAT_SPELL
2323 (char_u *)&p_spc, PV_SPC,
2324 {(char_u *)"[.?!]\\_[\\])'\" ]\\+", (char_u *)0L}
2325 #else
2326 (char_u *)NULL, PV_NONE,
2327 {(char_u *)0L, (char_u *)0L}
2328 #endif
2330 {"spellfile", "spf", P_STRING|P_EXPAND|P_ALLOCED|P_VI_DEF|P_SECURE|P_COMMA,
2331 #ifdef FEAT_SPELL
2332 (char_u *)&p_spf, PV_SPF,
2333 {(char_u *)"", (char_u *)0L}
2334 #else
2335 (char_u *)NULL, PV_NONE,
2336 {(char_u *)0L, (char_u *)0L}
2337 #endif
2339 {"spelllang", "spl", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_RBUF|P_EXPAND,
2340 #ifdef FEAT_SPELL
2341 (char_u *)&p_spl, PV_SPL,
2342 {(char_u *)"en", (char_u *)0L}
2343 #else
2344 (char_u *)NULL, PV_NONE,
2345 {(char_u *)0L, (char_u *)0L}
2346 #endif
2348 {"spellsuggest", "sps", P_STRING|P_VI_DEF|P_EXPAND|P_SECURE|P_COMMA,
2349 #ifdef FEAT_SPELL
2350 (char_u *)&p_sps, PV_NONE,
2351 {(char_u *)"best", (char_u *)0L}
2352 #else
2353 (char_u *)NULL, PV_NONE,
2354 {(char_u *)0L, (char_u *)0L}
2355 #endif
2357 {"splitbelow", "sb", P_BOOL|P_VI_DEF,
2358 #ifdef FEAT_WINDOWS
2359 (char_u *)&p_sb, PV_NONE,
2360 #else
2361 (char_u *)NULL, PV_NONE,
2362 #endif
2363 {(char_u *)FALSE, (char_u *)0L}},
2364 {"splitright", "spr", P_BOOL|P_VI_DEF,
2365 #ifdef FEAT_VERTSPLIT
2366 (char_u *)&p_spr, PV_NONE,
2367 #else
2368 (char_u *)NULL, PV_NONE,
2369 #endif
2370 {(char_u *)FALSE, (char_u *)0L}},
2371 {"startofline", "sol", P_BOOL|P_VI_DEF|P_VIM,
2372 (char_u *)&p_sol, PV_NONE,
2373 {(char_u *)TRUE, (char_u *)0L}},
2374 {"statusline" ,"stl", P_STRING|P_VI_DEF|P_ALLOCED|P_RSTAT,
2375 #ifdef FEAT_STL_OPT
2376 (char_u *)&p_stl, PV_STL,
2377 #else
2378 (char_u *)NULL, PV_NONE,
2379 #endif
2380 {(char_u *)"", (char_u *)0L}},
2381 {"suffixes", "su", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2382 (char_u *)&p_su, PV_NONE,
2383 {(char_u *)".bak,~,.o,.h,.info,.swp,.obj",
2384 (char_u *)0L}},
2385 {"suffixesadd", "sua", P_STRING|P_VI_DEF|P_ALLOCED|P_COMMA|P_NODUP,
2386 #ifdef FEAT_SEARCHPATH
2387 (char_u *)&p_sua, PV_SUA,
2388 {(char_u *)"", (char_u *)0L}
2389 #else
2390 (char_u *)NULL, PV_NONE,
2391 {(char_u *)0L, (char_u *)0L}
2392 #endif
2394 {"swapfile", "swf", P_BOOL|P_VI_DEF|P_RSTAT,
2395 (char_u *)&p_swf, PV_SWF,
2396 {(char_u *)TRUE, (char_u *)0L}},
2397 {"swapsync", "sws", P_STRING|P_VI_DEF,
2398 (char_u *)&p_sws, PV_NONE,
2399 {(char_u *)"fsync", (char_u *)0L}},
2400 {"switchbuf", "swb", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2401 (char_u *)&p_swb, PV_NONE,
2402 {(char_u *)"", (char_u *)0L}},
2403 {"synmaxcol", "smc", P_NUM|P_VI_DEF|P_RBUF,
2404 #ifdef FEAT_SYN_HL
2405 (char_u *)&p_smc, PV_SMC,
2406 {(char_u *)3000L, (char_u *)0L}
2407 #else
2408 (char_u *)NULL, PV_NONE,
2409 {(char_u *)0L, (char_u *)0L}
2410 #endif
2412 {"syntax", "syn", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB|P_NFNAME,
2413 #ifdef FEAT_SYN_HL
2414 (char_u *)&p_syn, PV_SYN,
2415 {(char_u *)"", (char_u *)0L}
2416 #else
2417 (char_u *)NULL, PV_NONE,
2418 {(char_u *)0L, (char_u *)0L}
2419 #endif
2421 {"tabline", "tal", P_STRING|P_VI_DEF|P_RALL,
2422 #ifdef FEAT_STL_OPT
2423 (char_u *)&p_tal, PV_NONE,
2424 #else
2425 (char_u *)NULL, PV_NONE,
2426 #endif
2427 {(char_u *)"", (char_u *)0L}},
2428 {"tabpagemax", "tpm", P_NUM|P_VI_DEF,
2429 #ifdef FEAT_WINDOWS
2430 (char_u *)&p_tpm, PV_NONE,
2431 #else
2432 (char_u *)NULL, PV_NONE,
2433 #endif
2434 {(char_u *)10L, (char_u *)0L}},
2435 {"tabstop", "ts", P_NUM|P_VI_DEF|P_RBUF,
2436 (char_u *)&p_ts, PV_TS,
2437 {(char_u *)8L, (char_u *)0L}},
2438 {"tagbsearch", "tbs", P_BOOL|P_VI_DEF,
2439 (char_u *)&p_tbs, PV_NONE,
2440 #ifdef VMS /* binary searching doesn't appear to work on VMS */
2441 {(char_u *)0L, (char_u *)0L}
2442 #else
2443 {(char_u *)TRUE, (char_u *)0L}
2444 #endif
2446 {"taglength", "tl", P_NUM|P_VI_DEF,
2447 (char_u *)&p_tl, PV_NONE,
2448 {(char_u *)0L, (char_u *)0L}},
2449 {"tagrelative", "tr", P_BOOL|P_VIM,
2450 (char_u *)&p_tr, PV_NONE,
2451 {(char_u *)FALSE, (char_u *)TRUE}},
2452 {"tags", "tag", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
2453 (char_u *)&p_tags, PV_TAGS,
2455 #if defined(FEAT_EMACS_TAGS) && !defined(CASE_INSENSITIVE_FILENAME)
2456 (char_u *)"./tags,./TAGS,tags,TAGS",
2457 #else
2458 (char_u *)"./tags,tags",
2459 #endif
2460 (char_u *)0L}},
2461 {"tagstack", "tgst", P_BOOL|P_VI_DEF,
2462 (char_u *)&p_tgst, PV_NONE,
2463 {(char_u *)TRUE, (char_u *)0L}},
2464 {"term", NULL, P_STRING|P_EXPAND|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RALL,
2465 (char_u *)&T_NAME, PV_NONE,
2466 {(char_u *)"", (char_u *)0L}},
2467 {"termbidi", "tbidi", P_BOOL|P_VI_DEF,
2468 #ifdef FEAT_ARABIC
2469 (char_u *)&p_tbidi, PV_NONE,
2470 #else
2471 (char_u *)NULL, PV_NONE,
2472 #endif
2473 {(char_u *)FALSE, (char_u *)0L}},
2474 {"termencoding", "tenc", P_STRING|P_VI_DEF|P_RCLR,
2475 #ifdef FEAT_MBYTE
2476 (char_u *)&p_tenc, PV_NONE,
2477 {(char_u *)"", (char_u *)0L}
2478 #else
2479 (char_u *)NULL, PV_NONE,
2480 {(char_u *)0L, (char_u *)0L}
2481 #endif
2483 {"terse", NULL, P_BOOL|P_VI_DEF,
2484 (char_u *)&p_terse, PV_NONE,
2485 {(char_u *)FALSE, (char_u *)0L}},
2486 {"textauto", "ta", P_BOOL|P_VIM,
2487 (char_u *)&p_ta, PV_NONE,
2488 {(char_u *)DFLT_TEXTAUTO, (char_u *)TRUE}},
2489 {"textmode", "tx", P_BOOL|P_VI_DEF|P_NO_MKRC,
2490 (char_u *)&p_tx, PV_TX,
2492 #ifdef USE_CRNL
2493 (char_u *)TRUE,
2494 #else
2495 (char_u *)FALSE,
2496 #endif
2497 (char_u *)0L}},
2498 {"textwidth", "tw", P_NUM|P_VI_DEF|P_VIM,
2499 (char_u *)&p_tw, PV_TW,
2500 {(char_u *)0L, (char_u *)0L}},
2501 {"thesaurus", "tsr", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
2502 #ifdef FEAT_INS_EXPAND
2503 (char_u *)&p_tsr, PV_TSR,
2504 #else
2505 (char_u *)NULL, PV_NONE,
2506 #endif
2507 {(char_u *)"", (char_u *)0L}},
2508 {"tildeop", "top", P_BOOL|P_VI_DEF|P_VIM,
2509 (char_u *)&p_to, PV_NONE,
2510 {(char_u *)FALSE, (char_u *)0L}},
2511 {"timeout", "to", P_BOOL|P_VI_DEF,
2512 (char_u *)&p_timeout, PV_NONE,
2513 {(char_u *)TRUE, (char_u *)0L}},
2514 {"timeoutlen", "tm", P_NUM|P_VI_DEF,
2515 (char_u *)&p_tm, PV_NONE,
2516 {(char_u *)1000L, (char_u *)0L}},
2517 {"title", NULL, P_BOOL|P_VI_DEF,
2518 #ifdef FEAT_TITLE
2519 (char_u *)&p_title, PV_NONE,
2520 #else
2521 (char_u *)NULL, PV_NONE,
2522 #endif
2523 {(char_u *)FALSE, (char_u *)0L}},
2524 {"titlelen", NULL, P_NUM|P_VI_DEF,
2525 #ifdef FEAT_TITLE
2526 (char_u *)&p_titlelen, PV_NONE,
2527 #else
2528 (char_u *)NULL, PV_NONE,
2529 #endif
2530 {(char_u *)85L, (char_u *)0L}},
2531 {"titleold", NULL, P_STRING|P_VI_DEF|P_GETTEXT|P_SECURE|P_NO_MKRC,
2532 #ifdef FEAT_TITLE
2533 (char_u *)&p_titleold, PV_NONE,
2534 {(char_u *)N_("Thanks for flying Vim"),
2535 (char_u *)0L}
2536 #else
2537 (char_u *)NULL, PV_NONE,
2538 {(char_u *)0L, (char_u *)0L}
2539 #endif
2541 {"titlestring", NULL, P_STRING|P_VI_DEF,
2542 #ifdef FEAT_TITLE
2543 (char_u *)&p_titlestring, PV_NONE,
2544 #else
2545 (char_u *)NULL, PV_NONE,
2546 #endif
2547 {(char_u *)"", (char_u *)0L}},
2548 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
2549 {"toolbar", "tb", P_STRING|P_COMMA|P_VI_DEF|P_NODUP,
2550 (char_u *)&p_toolbar, PV_NONE,
2551 {(char_u *)"icons,tooltips", (char_u *)0L}},
2552 #endif
2553 #if defined(FEAT_TOOLBAR) && ((defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)) \
2554 || defined(FEAT_GUI_MACVIM))
2555 {"toolbariconsize", "tbis", P_STRING|P_VI_DEF,
2556 (char_u *)&p_tbis, PV_NONE,
2557 {(char_u *)"small", (char_u *)0L}},
2558 #endif
2559 {"transparency", "transp", P_NUM|P_VIM|P_RCLR,
2560 #ifdef FEAT_TRANSPARENCY
2561 (char_u *)&p_transp, PV_NONE,
2562 #else
2563 (char_u *)NULL, PV_NONE,
2564 #endif
2565 {(char_u *)0L, (char_u *)0L} },
2566 {"ttimeout", NULL, P_BOOL|P_VI_DEF|P_VIM,
2567 (char_u *)&p_ttimeout, PV_NONE,
2568 {(char_u *)FALSE, (char_u *)0L}},
2569 {"ttimeoutlen", "ttm", P_NUM|P_VI_DEF,
2570 (char_u *)&p_ttm, PV_NONE,
2571 {(char_u *)-1L, (char_u *)0L}},
2572 {"ttybuiltin", "tbi", P_BOOL|P_VI_DEF,
2573 (char_u *)&p_tbi, PV_NONE,
2574 {(char_u *)TRUE, (char_u *)0L}},
2575 {"ttyfast", "tf", P_BOOL|P_NO_MKRC|P_VI_DEF,
2576 (char_u *)&p_tf, PV_NONE,
2577 {(char_u *)FALSE, (char_u *)0L}},
2578 {"ttymouse", "ttym", P_STRING|P_NODEFAULT|P_NO_MKRC|P_VI_DEF,
2579 #if defined(FEAT_MOUSE) && (defined(UNIX) || defined(VMS))
2580 (char_u *)&p_ttym, PV_NONE,
2581 #else
2582 (char_u *)NULL, PV_NONE,
2583 #endif
2584 {(char_u *)"", (char_u *)0L}},
2585 {"ttyscroll", "tsl", P_NUM|P_VI_DEF,
2586 (char_u *)&p_ttyscroll, PV_NONE,
2587 {(char_u *)999L, (char_u *)0L}},
2588 {"ttytype", "tty", P_STRING|P_EXPAND|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RALL,
2589 (char_u *)&T_NAME, PV_NONE,
2590 {(char_u *)"", (char_u *)0L}},
2591 {"undolevels", "ul", P_NUM|P_VI_DEF,
2592 (char_u *)&p_ul, PV_NONE,
2594 #if defined(UNIX) || defined(WIN3264) || defined(OS2) || defined(VMS)
2595 (char_u *)1000L,
2596 #else
2597 (char_u *)100L,
2598 #endif
2599 (char_u *)0L}},
2600 {"updatecount", "uc", P_NUM|P_VI_DEF,
2601 (char_u *)&p_uc, PV_NONE,
2602 {(char_u *)200L, (char_u *)0L}},
2603 {"updatetime", "ut", P_NUM|P_VI_DEF,
2604 (char_u *)&p_ut, PV_NONE,
2605 {(char_u *)4000L, (char_u *)0L}},
2606 {"verbose", "vbs", P_NUM|P_VI_DEF,
2607 (char_u *)&p_verbose, PV_NONE,
2608 {(char_u *)0L, (char_u *)0L}},
2609 {"verbosefile", "vfile", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
2610 (char_u *)&p_vfile, PV_NONE,
2611 {(char_u *)"", (char_u *)0L}},
2612 {"viewdir", "vdir", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
2613 #ifdef FEAT_SESSION
2614 (char_u *)&p_vdir, PV_NONE,
2615 {(char_u *)DFLT_VDIR, (char_u *)0L}
2616 #else
2617 (char_u *)NULL, PV_NONE,
2618 {(char_u *)0L, (char_u *)0L}
2619 #endif
2621 {"viewoptions", "vop", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2622 #ifdef FEAT_SESSION
2623 (char_u *)&p_vop, PV_NONE,
2624 {(char_u *)"folds,options,cursor", (char_u *)0L}
2625 #else
2626 (char_u *)NULL, PV_NONE,
2627 {(char_u *)0L, (char_u *)0L}
2628 #endif
2630 {"viminfo", "vi", P_STRING|P_COMMA|P_NODUP|P_SECURE,
2631 #ifdef FEAT_VIMINFO
2632 (char_u *)&p_viminfo, PV_NONE,
2633 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
2634 {(char_u *)"", (char_u *)"'100,<50,s10,h,rA:,rB:"}
2635 #else
2636 # ifdef AMIGA
2637 {(char_u *)"",
2638 (char_u *)"'100,<50,s10,h,rdf0:,rdf1:,rdf2:"}
2639 # else
2640 {(char_u *)"", (char_u *)"'100,<50,s10,h"}
2641 # endif
2642 #endif
2643 #else
2644 (char_u *)NULL, PV_NONE,
2645 {(char_u *)0L, (char_u *)0L}
2646 #endif
2648 {"virtualedit", "ve", P_STRING|P_COMMA|P_NODUP|P_VI_DEF|P_VIM,
2649 #ifdef FEAT_VIRTUALEDIT
2650 (char_u *)&p_ve, PV_NONE,
2651 {(char_u *)"", (char_u *)""}
2652 #else
2653 (char_u *)NULL, PV_NONE,
2654 {(char_u *)0L, (char_u *)0L}
2655 #endif
2657 {"visualbell", "vb", P_BOOL|P_VI_DEF,
2658 (char_u *)&p_vb, PV_NONE,
2659 {(char_u *)FALSE, (char_u *)0L}},
2660 {"w300", NULL, P_NUM|P_VI_DEF,
2661 (char_u *)NULL, PV_NONE,
2662 {(char_u *)0L, (char_u *)0L}},
2663 {"w1200", NULL, P_NUM|P_VI_DEF,
2664 (char_u *)NULL, PV_NONE,
2665 {(char_u *)0L, (char_u *)0L}},
2666 {"w9600", NULL, P_NUM|P_VI_DEF,
2667 (char_u *)NULL, PV_NONE,
2668 {(char_u *)0L, (char_u *)0L}},
2669 {"warn", NULL, P_BOOL|P_VI_DEF,
2670 (char_u *)&p_warn, PV_NONE,
2671 {(char_u *)TRUE, (char_u *)0L}},
2672 {"weirdinvert", "wiv", P_BOOL|P_VI_DEF|P_RCLR,
2673 (char_u *)&p_wiv, PV_NONE,
2674 {(char_u *)FALSE, (char_u *)0L}},
2675 {"whichwrap", "ww", P_STRING|P_VIM|P_COMMA|P_FLAGLIST,
2676 (char_u *)&p_ww, PV_NONE,
2677 {(char_u *)"", (char_u *)"b,s"}},
2678 {"wildchar", "wc", P_NUM|P_VIM,
2679 (char_u *)&p_wc, PV_NONE,
2680 {(char_u *)(long)Ctrl_E, (char_u *)(long)TAB}},
2681 {"wildcharm", "wcm", P_NUM|P_VI_DEF,
2682 (char_u *)&p_wcm, PV_NONE,
2683 {(char_u *)0L, (char_u *)0L}},
2684 {"wildignore", "wig", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2685 #ifdef FEAT_WILDIGN
2686 (char_u *)&p_wig, PV_NONE,
2687 #else
2688 (char_u *)NULL, PV_NONE,
2689 #endif
2690 {(char_u *)"", (char_u *)0L}},
2691 {"wildmenu", "wmnu", P_BOOL|P_VI_DEF,
2692 #ifdef FEAT_WILDMENU
2693 (char_u *)&p_wmnu, PV_NONE,
2694 #else
2695 (char_u *)NULL, PV_NONE,
2696 #endif
2697 {(char_u *)FALSE, (char_u *)0L}},
2698 {"wildmode", "wim", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2699 (char_u *)&p_wim, PV_NONE,
2700 {(char_u *)"full", (char_u *)0L}},
2701 {"wildoptions", "wop", P_STRING|P_VI_DEF,
2702 #ifdef FEAT_CMDL_COMPL
2703 (char_u *)&p_wop, PV_NONE,
2704 {(char_u *)"", (char_u *)0L}
2705 #else
2706 (char_u *)NULL, PV_NONE,
2707 {(char_u *)NULL, (char_u *)0L}
2708 #endif
2710 {"winaltkeys", "wak", P_STRING|P_VI_DEF,
2711 #ifdef FEAT_WAK
2712 (char_u *)&p_wak, PV_NONE,
2713 {(char_u *)"menu", (char_u *)0L}
2714 #else
2715 (char_u *)NULL, PV_NONE,
2716 {(char_u *)NULL, (char_u *)0L}
2717 #endif
2719 {"window", "wi", P_NUM|P_VI_DEF,
2720 (char_u *)&p_window, PV_NONE,
2721 {(char_u *)0L, (char_u *)0L}},
2722 {"winheight", "wh", P_NUM|P_VI_DEF,
2723 #ifdef FEAT_WINDOWS
2724 (char_u *)&p_wh, PV_NONE,
2725 #else
2726 (char_u *)NULL, PV_NONE,
2727 #endif
2728 {(char_u *)1L, (char_u *)0L}},
2729 {"winfixheight", "wfh", P_BOOL|P_VI_DEF|P_RSTAT,
2730 #ifdef FEAT_WINDOWS
2731 (char_u *)VAR_WIN, PV_WFH,
2732 #else
2733 (char_u *)NULL, PV_NONE,
2734 #endif
2735 {(char_u *)FALSE, (char_u *)0L}},
2736 {"winfixwidth", "wfw", P_BOOL|P_VI_DEF|P_RSTAT,
2737 #ifdef FEAT_VERTSPLIT
2738 (char_u *)VAR_WIN, PV_WFW,
2739 #else
2740 (char_u *)NULL, PV_NONE,
2741 #endif
2742 {(char_u *)FALSE, (char_u *)0L}},
2743 {"winminheight", "wmh", P_NUM|P_VI_DEF,
2744 #ifdef FEAT_WINDOWS
2745 (char_u *)&p_wmh, PV_NONE,
2746 #else
2747 (char_u *)NULL, PV_NONE,
2748 #endif
2749 {(char_u *)1L, (char_u *)0L}},
2750 {"winminwidth", "wmw", P_NUM|P_VI_DEF,
2751 #ifdef FEAT_VERTSPLIT
2752 (char_u *)&p_wmw, PV_NONE,
2753 #else
2754 (char_u *)NULL, PV_NONE,
2755 #endif
2756 {(char_u *)1L, (char_u *)0L}},
2757 {"winwidth", "wiw", P_NUM|P_VI_DEF,
2758 #ifdef FEAT_VERTSPLIT
2759 (char_u *)&p_wiw, PV_NONE,
2760 #else
2761 (char_u *)NULL, PV_NONE,
2762 #endif
2763 {(char_u *)20L, (char_u *)0L}},
2764 {"wrap", NULL, P_BOOL|P_VI_DEF|P_RWIN,
2765 (char_u *)VAR_WIN, PV_WRAP,
2766 {(char_u *)TRUE, (char_u *)0L}},
2767 {"wrapmargin", "wm", P_NUM|P_VI_DEF,
2768 (char_u *)&p_wm, PV_WM,
2769 {(char_u *)0L, (char_u *)0L}},
2770 {"wrapscan", "ws", P_BOOL|P_VI_DEF,
2771 (char_u *)&p_ws, PV_NONE,
2772 {(char_u *)TRUE, (char_u *)0L}},
2773 {"write", NULL, P_BOOL|P_VI_DEF,
2774 (char_u *)&p_write, PV_NONE,
2775 {(char_u *)TRUE, (char_u *)0L}},
2776 {"writeany", "wa", P_BOOL|P_VI_DEF,
2777 (char_u *)&p_wa, PV_NONE,
2778 {(char_u *)FALSE, (char_u *)0L}},
2779 {"writebackup", "wb", P_BOOL|P_VI_DEF|P_VIM,
2780 (char_u *)&p_wb, PV_NONE,
2782 #ifdef FEAT_WRITEBACKUP
2783 (char_u *)TRUE,
2784 #else
2785 (char_u *)FALSE,
2786 #endif
2787 (char_u *)0L}},
2788 {"writedelay", "wd", P_NUM|P_VI_DEF,
2789 (char_u *)&p_wd, PV_NONE,
2790 {(char_u *)0L, (char_u *)0L}},
2792 /* terminal output codes */
2793 #define p_term(sss, vvv) {sss, NULL, P_STRING|P_VI_DEF|P_RALL|P_SECURE, \
2794 (char_u *)&vvv, PV_NONE, \
2795 {(char_u *)"", (char_u *)0L}},
2797 p_term("t_AB", T_CAB)
2798 p_term("t_AF", T_CAF)
2799 p_term("t_AL", T_CAL)
2800 p_term("t_al", T_AL)
2801 p_term("t_bc", T_BC)
2802 p_term("t_cd", T_CD)
2803 p_term("t_ce", T_CE)
2804 p_term("t_cl", T_CL)
2805 p_term("t_cm", T_CM)
2806 p_term("t_Co", T_CCO)
2807 p_term("t_CS", T_CCS)
2808 p_term("t_cs", T_CS)
2809 #ifdef FEAT_VERTSPLIT
2810 p_term("t_CV", T_CSV)
2811 #endif
2812 p_term("t_ut", T_UT)
2813 p_term("t_da", T_DA)
2814 p_term("t_db", T_DB)
2815 p_term("t_DL", T_CDL)
2816 p_term("t_dl", T_DL)
2817 p_term("t_fs", T_FS)
2818 p_term("t_IE", T_CIE)
2819 p_term("t_IS", T_CIS)
2820 p_term("t_ke", T_KE)
2821 p_term("t_ks", T_KS)
2822 p_term("t_le", T_LE)
2823 p_term("t_mb", T_MB)
2824 p_term("t_md", T_MD)
2825 p_term("t_me", T_ME)
2826 p_term("t_mr", T_MR)
2827 p_term("t_ms", T_MS)
2828 p_term("t_nd", T_ND)
2829 p_term("t_op", T_OP)
2830 p_term("t_RI", T_CRI)
2831 p_term("t_RV", T_CRV)
2832 p_term("t_Sb", T_CSB)
2833 p_term("t_Sf", T_CSF)
2834 p_term("t_se", T_SE)
2835 p_term("t_so", T_SO)
2836 p_term("t_sr", T_SR)
2837 p_term("t_ts", T_TS)
2838 p_term("t_te", T_TE)
2839 p_term("t_ti", T_TI)
2840 p_term("t_ue", T_UE)
2841 p_term("t_us", T_US)
2842 p_term("t_vb", T_VB)
2843 p_term("t_ve", T_VE)
2844 p_term("t_vi", T_VI)
2845 p_term("t_vs", T_VS)
2846 p_term("t_WP", T_CWP)
2847 p_term("t_WS", T_CWS)
2848 p_term("t_SI", T_CSI)
2849 p_term("t_EI", T_CEI)
2850 p_term("t_xs", T_XS)
2851 p_term("t_ZH", T_CZH)
2852 p_term("t_ZR", T_CZR)
2854 /* terminal key codes are not in here */
2856 {NULL, NULL, 0, NULL, PV_NONE, {NULL, NULL}} /* end marker */
2859 #define PARAM_COUNT (sizeof(options) / sizeof(struct vimoption))
2861 #ifdef FEAT_MBYTE
2862 static char *(p_ambw_values[]) = {"single", "double", NULL};
2863 #endif
2864 static char *(p_bg_values[]) = {"light", "dark", NULL};
2865 static char *(p_nf_values[]) = {"octal", "hex", "alpha", NULL};
2866 static char *(p_ff_values[]) = {FF_UNIX, FF_DOS, FF_MAC, NULL};
2867 #ifdef FEAT_CMDL_COMPL
2868 static char *(p_wop_values[]) = {"tagfile", NULL};
2869 #endif
2870 #ifdef FEAT_WAK
2871 static char *(p_wak_values[]) = {"yes", "menu", "no", NULL};
2872 #endif
2873 static char *(p_mousem_values[]) = {"extend", "popup", "popup_setpos", "mac", NULL};
2874 #ifdef FEAT_VISUAL
2875 static char *(p_sel_values[]) = {"inclusive", "exclusive", "old", NULL};
2876 static char *(p_slm_values[]) = {"mouse", "key", "cmd", NULL};
2877 #endif
2878 #ifdef FEAT_VISUAL
2879 static char *(p_km_values[]) = {"startsel", "stopsel", NULL};
2880 #endif
2881 #ifdef FEAT_BROWSE
2882 static char *(p_bsdir_values[]) = {"current", "last", "buffer", NULL};
2883 #endif
2884 #ifdef FEAT_SCROLLBIND
2885 static char *(p_scbopt_values[]) = {"ver", "hor", "jump", NULL};
2886 #endif
2887 static char *(p_debug_values[]) = {"msg", "throw", "beep", NULL};
2888 #ifdef FEAT_VERTSPLIT
2889 static char *(p_ead_values[]) = {"both", "ver", "hor", NULL};
2890 #endif
2891 #if defined(FEAT_QUICKFIX)
2892 # ifdef FEAT_AUTOCMD
2893 static char *(p_buftype_values[]) = {"nofile", "nowrite", "quickfix", "help", "acwrite", NULL};
2894 # else
2895 static char *(p_buftype_values[]) = {"nofile", "nowrite", "quickfix", "help", NULL};
2896 # endif
2897 static char *(p_bufhidden_values[]) = {"hide", "unload", "delete", "wipe", NULL};
2898 #endif
2899 static char *(p_bs_values[]) = {"indent", "eol", "start", NULL};
2900 #ifdef FEAT_FOLDING
2901 static char *(p_fdm_values[]) = {"manual", "expr", "marker", "indent", "syntax",
2902 # ifdef FEAT_DIFF
2903 "diff",
2904 # endif
2905 NULL};
2906 static char *(p_fcl_values[]) = {"all", NULL};
2907 #endif
2908 #ifdef FEAT_INS_EXPAND
2909 static char *(p_cot_values[]) = {"menu", "menuone", "longest", "preview", NULL};
2910 #endif
2912 static void set_option_default __ARGS((int, int opt_flags, int compatible));
2913 static void set_options_default __ARGS((int opt_flags));
2914 static char_u *term_bg_default __ARGS((void));
2915 static void did_set_option __ARGS((int opt_idx, int opt_flags, int new_value));
2916 static char_u *illegal_char __ARGS((char_u *, int));
2917 static int string_to_key __ARGS((char_u *arg));
2918 #ifdef FEAT_CMDWIN
2919 static char_u *check_cedit __ARGS((void));
2920 #endif
2921 #ifdef FEAT_TITLE
2922 static void did_set_title __ARGS((int icon));
2923 #endif
2924 static char_u *option_expand __ARGS((int opt_idx, char_u *val));
2925 static void didset_options __ARGS((void));
2926 static void check_string_option __ARGS((char_u **pp));
2927 #if defined(FEAT_EVAL) || defined(PROTO)
2928 static long_u *insecure_flag __ARGS((int opt_idx, int opt_flags));
2929 #else
2930 # define insecure_flag(opt_idx, opt_flags) (&options[opt_idx].flags)
2931 #endif
2932 static void set_string_option_global __ARGS((int opt_idx, char_u **varp));
2933 static void set_string_option __ARGS((int opt_idx, char_u *value, int opt_flags));
2934 static char_u *did_set_string_option __ARGS((int opt_idx, char_u **varp, int new_value_alloced, char_u *oldval, char_u *errbuf, int opt_flags));
2935 static char_u *set_chars_option __ARGS((char_u **varp));
2936 #ifdef FEAT_CLIPBOARD
2937 static char_u *check_clipboard_option __ARGS((void));
2938 #endif
2939 #ifdef FEAT_SPELL
2940 static char_u *compile_cap_prog __ARGS((buf_T *buf));
2941 #endif
2942 #ifdef FEAT_EVAL
2943 static void set_option_scriptID_idx __ARGS((int opt_idx, int opt_flags, int id));
2944 #endif
2945 static char_u *set_bool_option __ARGS((int opt_idx, char_u *varp, int value, int opt_flags));
2946 static char_u *set_num_option __ARGS((int opt_idx, char_u *varp, long value, char_u *errbuf, size_t errbuflen, int opt_flags));
2947 static void check_redraw __ARGS((long_u flags));
2948 static int findoption __ARGS((char_u *));
2949 static int find_key_option __ARGS((char_u *));
2950 static void showoptions __ARGS((int all, int opt_flags));
2951 static int optval_default __ARGS((struct vimoption *, char_u *varp));
2952 static void showoneopt __ARGS((struct vimoption *, int opt_flags));
2953 static int put_setstring __ARGS((FILE *fd, char *cmd, char *name, char_u **valuep, int expand));
2954 static int put_setnum __ARGS((FILE *fd, char *cmd, char *name, long *valuep));
2955 static int put_setbool __ARGS((FILE *fd, char *cmd, char *name, int value));
2956 static int istermoption __ARGS((struct vimoption *));
2957 static char_u *get_varp_scope __ARGS((struct vimoption *p, int opt_flags));
2958 static char_u *get_varp __ARGS((struct vimoption *));
2959 static void option_value2string __ARGS((struct vimoption *, int opt_flags));
2960 static int wc_use_keyname __ARGS((char_u *varp, long *wcp));
2961 #ifdef FEAT_LANGMAP
2962 static void langmap_init __ARGS((void));
2963 static void langmap_set __ARGS((void));
2964 #endif
2965 static void paste_option_changed __ARGS((void));
2966 static void compatible_set __ARGS((void));
2967 #ifdef FEAT_LINEBREAK
2968 static void fill_breakat_flags __ARGS((void));
2969 #endif
2970 static int opt_strings_flags __ARGS((char_u *val, char **values, unsigned *flagp, int list));
2971 static int check_opt_strings __ARGS((char_u *val, char **values, int));
2972 static int check_opt_wim __ARGS((void));
2973 #ifdef FEAT_FULLSCREEN
2974 static int check_fuoptions __ARGS((char_u *, unsigned *, int *));
2975 #endif
2978 * Initialize the options, first part.
2980 * Called only once from main(), just after creating the first buffer.
2982 void
2983 set_init_1()
2985 char_u *p;
2986 int opt_idx;
2987 long_u n;
2988 #if defined(FEAT_GUI_MACVIM) && defined(FEAT_MBYTE)
2989 int did_mb_init;
2990 #endif
2992 #ifdef FEAT_LANGMAP
2993 langmap_init();
2994 #endif
2996 /* Be Vi compatible by default */
2997 p_cp = TRUE;
2999 /* Use POSIX compatibility when $VIM_POSIX is set. */
3000 if (mch_getenv((char_u *)"VIM_POSIX") != NULL)
3002 set_string_default("cpo", (char_u *)CPO_ALL);
3003 set_string_default("shm", (char_u *)"A");
3007 * Find default value for 'shell' option.
3008 * Don't use it if it is empty.
3010 if (((p = mch_getenv((char_u *)"SHELL")) != NULL && *p != NUL)
3011 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
3012 # ifdef __EMX__
3013 || ((p = mch_getenv((char_u *)"EMXSHELL")) != NULL && *p != NUL)
3014 # endif
3015 || ((p = mch_getenv((char_u *)"COMSPEC")) != NULL && *p != NUL)
3016 # ifdef WIN3264
3017 || ((p = default_shell()) != NULL && *p != NUL)
3018 # endif
3019 #endif
3021 set_string_default("sh", p);
3023 #ifdef FEAT_WILDIGN
3025 * Set the default for 'backupskip' to include environment variables for
3026 * temp files.
3029 # ifdef UNIX
3030 static char *(names[4]) = {"", "TMPDIR", "TEMP", "TMP"};
3031 # else
3032 static char *(names[3]) = {"TMPDIR", "TEMP", "TMP"};
3033 # endif
3034 int len;
3035 garray_T ga;
3036 int mustfree;
3038 ga_init2(&ga, 1, 100);
3039 for (n = 0; n < (long)(sizeof(names) / sizeof(char *)); ++n)
3041 mustfree = FALSE;
3042 # ifdef UNIX
3043 if (*names[n] == NUL)
3044 p = (char_u *)"/tmp";
3045 else
3046 # endif
3047 p = vim_getenv((char_u *)names[n], &mustfree);
3048 if (p != NULL && *p != NUL)
3050 /* First time count the NUL, otherwise count the ','. */
3051 len = (int)STRLEN(p) + 3;
3052 if (ga_grow(&ga, len) == OK)
3054 if (ga.ga_len > 0)
3055 STRCAT(ga.ga_data, ",");
3056 STRCAT(ga.ga_data, p);
3057 add_pathsep(ga.ga_data);
3058 STRCAT(ga.ga_data, "*");
3059 ga.ga_len += len;
3062 if (mustfree)
3063 vim_free(p);
3065 if (ga.ga_data != NULL)
3067 set_string_default("bsk", ga.ga_data);
3068 vim_free(ga.ga_data);
3071 #endif
3074 * 'maxmemtot' and 'maxmem' may have to be adjusted for available memory
3076 opt_idx = findoption((char_u *)"maxmemtot");
3077 if (opt_idx >= 0)
3079 #if !defined(HAVE_AVAIL_MEM) && !defined(HAVE_TOTAL_MEM)
3080 if (options[opt_idx].def_val[VI_DEFAULT] == (char_u *)0L)
3081 #endif
3083 #ifdef HAVE_AVAIL_MEM
3084 /* Use amount of memory available at this moment. */
3085 n = (mch_avail_mem(FALSE) >> 11);
3086 #else
3087 # ifdef HAVE_TOTAL_MEM
3088 /* Use amount of memory available to Vim. */
3089 n = (mch_total_mem(FALSE) >> 1);
3090 # else
3091 n = (0x7fffffff >> 11);
3092 # endif
3093 #endif
3094 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)n;
3095 opt_idx = findoption((char_u *)"maxmem");
3096 if (opt_idx >= 0)
3098 #if !defined(HAVE_AVAIL_MEM) && !defined(HAVE_TOTAL_MEM)
3099 if ((long)options[opt_idx].def_val[VI_DEFAULT] > n
3100 || (long)options[opt_idx].def_val[VI_DEFAULT] == 0L)
3101 #endif
3102 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)n;
3107 #ifdef FEAT_GUI_W32
3108 /* force 'shortname' for Win32s */
3109 if (gui_is_win32s())
3111 opt_idx = findoption((char_u *)"shortname");
3112 if (opt_idx >= 0)
3113 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)TRUE;
3115 #endif
3117 #ifdef FEAT_SEARCHPATH
3119 char_u *cdpath;
3120 char_u *buf;
3121 int i;
3122 int j;
3123 int mustfree = FALSE;
3125 /* Initialize the 'cdpath' option's default value. */
3126 cdpath = vim_getenv((char_u *)"CDPATH", &mustfree);
3127 if (cdpath != NULL)
3129 buf = alloc((unsigned)((STRLEN(cdpath) << 1) + 2));
3130 if (buf != NULL)
3132 buf[0] = ','; /* start with ",", current dir first */
3133 j = 1;
3134 for (i = 0; cdpath[i] != NUL; ++i)
3136 if (vim_ispathlistsep(cdpath[i]))
3137 buf[j++] = ',';
3138 else
3140 if (cdpath[i] == ' ' || cdpath[i] == ',')
3141 buf[j++] = '\\';
3142 buf[j++] = cdpath[i];
3145 buf[j] = NUL;
3146 opt_idx = findoption((char_u *)"cdpath");
3147 if (opt_idx >= 0)
3149 options[opt_idx].def_val[VI_DEFAULT] = buf;
3150 options[opt_idx].flags |= P_DEF_ALLOCED;
3153 if (mustfree)
3154 vim_free(cdpath);
3157 #endif
3159 #if defined(FEAT_POSTSCRIPT) && (defined(MSWIN) || defined(OS2) || defined(VMS) || defined(EBCDIC) || defined(MAC) || defined(hpux))
3160 /* Set print encoding on platforms that don't default to latin1 */
3161 set_string_default("penc",
3162 # if defined(MSWIN) || defined(OS2)
3163 (char_u *)"cp1252"
3164 # else
3165 # ifdef VMS
3166 (char_u *)"dec-mcs"
3167 # else
3168 # ifdef EBCDIC
3169 (char_u *)"ebcdic-uk"
3170 # else
3171 # ifdef MAC
3172 (char_u *)"mac-roman"
3173 # else /* HPUX */
3174 (char_u *)"hp-roman8"
3175 # endif
3176 # endif
3177 # endif
3178 # endif
3180 #endif
3182 #ifdef FEAT_POSTSCRIPT
3183 /* 'printexpr' must be allocated to be able to evaluate it. */
3184 set_string_default("pexpr",
3185 # if defined(MSWIN) || defined(MSDOS) || defined(OS2)
3186 (char_u *)"system('copy' . ' ' . v:fname_in . (&printdevice == '' ? ' LPT1:' : (' \"' . &printdevice . '\"'))) . delete(v:fname_in)"
3187 # else
3188 # ifdef VMS
3189 (char_u *)"system('print/delete' . (&printdevice == '' ? '' : ' /queue=' . &printdevice) . ' ' . v:fname_in)"
3191 # else
3192 (char_u *)"system('lpr' . (&printdevice == '' ? '' : ' -P' . &printdevice) . ' ' . v:fname_in) . delete(v:fname_in) + v:shell_error"
3193 # endif
3194 # endif
3196 #endif
3199 * Set all the options (except the terminal options) to their default
3200 * value. Also set the global value for local options.
3202 set_options_default(0);
3204 #ifdef FEAT_GUI
3205 if (found_reverse_arg)
3206 set_option_value((char_u *)"bg", 0L, (char_u *)"dark", 0);
3207 #endif
3209 curbuf->b_p_initialized = TRUE;
3210 curbuf->b_p_ar = -1; /* no local 'autoread' value */
3211 check_buf_options(curbuf);
3212 check_win_options(curwin);
3213 check_options();
3215 /* Must be before option_expand(), because that one needs vim_isIDc() */
3216 didset_options();
3218 #ifdef FEAT_SPELL
3219 /* Use the current chartab for the generic chartab. */
3220 init_spell_chartab();
3221 #endif
3223 #ifdef FEAT_LINEBREAK
3225 * initialize the table for 'breakat'.
3227 fill_breakat_flags();
3228 #endif
3231 * Expand environment variables and things like "~" for the defaults.
3232 * If option_expand() returns non-NULL the variable is expanded. This can
3233 * only happen for non-indirect options.
3234 * Also set the default to the expanded value, so ":set" does not list
3235 * them.
3236 * Don't set the P_ALLOCED flag, because we don't want to free the
3237 * default.
3239 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
3241 if ((options[opt_idx].flags & P_GETTEXT)
3242 && options[opt_idx].var != NULL)
3243 p = (char_u *)_(*(char **)options[opt_idx].var);
3244 else
3245 p = option_expand(opt_idx, NULL);
3246 if (p != NULL && (p = vim_strsave(p)) != NULL)
3248 *(char_u **)options[opt_idx].var = p;
3249 /* VIMEXP
3250 * Defaults for all expanded options are currently the same for Vi
3251 * and Vim. When this changes, add some code here! Also need to
3252 * split P_DEF_ALLOCED in two.
3254 if (options[opt_idx].flags & P_DEF_ALLOCED)
3255 vim_free(options[opt_idx].def_val[VI_DEFAULT]);
3256 options[opt_idx].def_val[VI_DEFAULT] = p;
3257 options[opt_idx].flags |= P_DEF_ALLOCED;
3261 /* Initialize the highlight_attr[] table. */
3262 highlight_changed();
3264 save_file_ff(curbuf); /* Buffer is unchanged */
3266 /* Parse default for 'wildmode' */
3267 check_opt_wim();
3269 #if defined(FEAT_ARABIC)
3270 /* Detect use of mlterm.
3271 * Mlterm is a terminal emulator akin to xterm that has some special
3272 * abilities (bidi namely).
3273 * NOTE: mlterm's author is being asked to 'set' a variable
3274 * instead of an environment variable due to inheritance.
3276 if (mch_getenv((char_u *)"MLTERM") != NULL)
3277 set_option_value((char_u *)"tbidi", 1L, NULL, 0);
3278 #endif
3280 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
3281 /* Parse default for 'fillchars'. */
3282 (void)set_chars_option(&p_fcs);
3283 #endif
3285 #ifdef FEAT_CLIPBOARD
3286 /* Parse default for 'clipboard' */
3287 (void)check_clipboard_option();
3288 #endif
3290 #ifdef FEAT_MBYTE
3291 # if defined(WIN3264) && defined(FEAT_GETTEXT)
3293 * If $LANG isn't set, try to get a good value for it. This makes the
3294 * right language be used automatically. Don't do this for English.
3296 if (mch_getenv((char_u *)"LANG") == NULL)
3298 char buf[20];
3300 /* Could use LOCALE_SISO639LANGNAME, but it's not in Win95.
3301 * LOCALE_SABBREVLANGNAME gives us three letters, like "enu", we use
3302 * only the first two. */
3303 n = GetLocaleInfo(LOCALE_USER_DEFAULT, LOCALE_SABBREVLANGNAME,
3304 (LPTSTR)buf, 20);
3305 if (n >= 2 && STRNICMP(buf, "en", 2) != 0)
3307 /* There are a few exceptions (probably more) */
3308 if (STRNICMP(buf, "cht", 3) == 0 || STRNICMP(buf, "zht", 3) == 0)
3309 STRCPY(buf, "zh_TW");
3310 else if (STRNICMP(buf, "chs", 3) == 0
3311 || STRNICMP(buf, "zhc", 3) == 0)
3312 STRCPY(buf, "zh_CN");
3313 else if (STRNICMP(buf, "jp", 2) == 0)
3314 STRCPY(buf, "ja");
3315 else
3316 buf[2] = NUL; /* truncate to two-letter code */
3317 vim_setenv("LANG", buf);
3320 # else
3321 # ifdef MACOS_CONVERT
3322 /* Moved to os_mac_conv.c to avoid dependency problems. */
3323 mac_lang_init();
3324 # endif
3325 # endif
3327 /* enc_locale() will try to find the encoding of the current locale. */
3328 p = enc_locale();
3329 if (p != NULL)
3331 char_u *save_enc;
3333 /* Try setting 'encoding' and check if the value is valid.
3334 * If not, go back to the default "latin1". */
3335 save_enc = p_enc;
3336 p_enc = p;
3337 if (STRCMP(p_enc, "gb18030") == 0)
3339 /* We don't support "gb18030", but "cp936" is a good substitute
3340 * for practical purposes, thus use that. It's not an alias to
3341 * still support conversion between gb18030 and utf-8. */
3342 p_enc = vim_strsave((char_u *)"cp936");
3343 vim_free(p);
3345 #if defined(FEAT_GUI_MACVIM)
3346 did_mb_init = (mb_init() == NULL);
3347 if (!did_mb_init)
3349 /* The encoding returned by enc_locale() was invalid, so fall back
3350 * on using utf-8 as the default encoding in MacVim. */
3351 vim_free(p_enc);
3352 p_enc = vim_strsave((char_u *)"utf-8");
3353 did_mb_init = (mb_init() == NULL);
3356 /* did_mb_init should always be TRUE, but check just in case. */
3357 if (did_mb_init)
3358 #else
3359 if (mb_init() == NULL)
3360 #endif
3362 opt_idx = findoption((char_u *)"encoding");
3363 if (opt_idx >= 0)
3365 options[opt_idx].def_val[VI_DEFAULT] = p_enc;
3366 options[opt_idx].flags |= P_DEF_ALLOCED;
3369 #if defined(MSDOS) || defined(MSWIN) || defined(OS2) || defined(MACOS) \
3370 || defined(VMS)
3371 if (STRCMP(p_enc, "latin1") == 0
3372 # ifdef FEAT_MBYTE
3373 || enc_utf8
3374 # endif
3377 /* Adjust the default for 'isprint' and 'iskeyword' to match
3378 * latin1. Also set the defaults for when 'nocompatible' is
3379 * set. */
3380 set_string_option_direct((char_u *)"isp", -1,
3381 ISP_LATIN1, OPT_FREE, SID_NONE);
3382 set_string_option_direct((char_u *)"isk", -1,
3383 ISK_LATIN1, OPT_FREE, SID_NONE);
3384 opt_idx = findoption((char_u *)"isp");
3385 if (opt_idx >= 0)
3386 options[opt_idx].def_val[VIM_DEFAULT] = ISP_LATIN1;
3387 opt_idx = findoption((char_u *)"isk");
3388 if (opt_idx >= 0)
3389 options[opt_idx].def_val[VIM_DEFAULT] = ISK_LATIN1;
3390 (void)init_chartab();
3392 #endif
3394 # if defined(WIN3264) && !defined(FEAT_GUI)
3395 /* Win32 console: When GetACP() returns a different value from
3396 * GetConsoleCP() set 'termencoding'. */
3397 if (GetACP() != GetConsoleCP())
3399 char buf[50];
3401 sprintf(buf, "cp%ld", (long)GetConsoleCP());
3402 p_tenc = vim_strsave((char_u *)buf);
3403 if (p_tenc != NULL)
3405 opt_idx = findoption((char_u *)"termencoding");
3406 if (opt_idx >= 0)
3408 options[opt_idx].def_val[VI_DEFAULT] = p_tenc;
3409 options[opt_idx].flags |= P_DEF_ALLOCED;
3411 convert_setup(&input_conv, p_tenc, p_enc);
3412 convert_setup(&output_conv, p_enc, p_tenc);
3414 else
3415 p_tenc = empty_option;
3417 # endif
3418 # if defined(WIN3264) && defined(FEAT_MBYTE)
3419 /* $HOME may have characters in active code page. */
3420 init_homedir();
3421 # endif
3423 else
3425 vim_free(p_enc);
3426 p_enc = save_enc;
3429 #endif
3431 #ifdef FEAT_MULTI_LANG
3432 /* Set the default for 'helplang'. */
3433 set_helplang_default(get_mess_lang());
3434 #endif
3438 * Set an option to its default value.
3439 * This does not take care of side effects!
3441 static void
3442 set_option_default(opt_idx, opt_flags, compatible)
3443 int opt_idx;
3444 int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */
3445 int compatible; /* use Vi default value */
3447 char_u *varp; /* pointer to variable for current option */
3448 int dvi; /* index in def_val[] */
3449 long_u flags;
3450 long_u *flagsp;
3451 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
3453 varp = get_varp_scope(&(options[opt_idx]), both ? OPT_LOCAL : opt_flags);
3454 flags = options[opt_idx].flags;
3455 if (varp != NULL) /* skip hidden option, nothing to do for it */
3457 dvi = ((flags & P_VI_DEF) || compatible) ? VI_DEFAULT : VIM_DEFAULT;
3458 if (flags & P_STRING)
3460 /* Use set_string_option_direct() for local options to handle
3461 * freeing and allocating the value. */
3462 if (options[opt_idx].indir != PV_NONE)
3463 set_string_option_direct(NULL, opt_idx,
3464 options[opt_idx].def_val[dvi], opt_flags, 0);
3465 else
3467 if ((opt_flags & OPT_FREE) && (flags & P_ALLOCED))
3468 free_string_option(*(char_u **)(varp));
3469 *(char_u **)varp = options[opt_idx].def_val[dvi];
3470 options[opt_idx].flags &= ~P_ALLOCED;
3473 else if (flags & P_NUM)
3475 if (options[opt_idx].indir == PV_SCROLL)
3476 win_comp_scroll(curwin);
3477 else
3479 *(long *)varp = (long)(long_i)options[opt_idx].def_val[dvi];
3480 /* May also set global value for local option. */
3481 if (both)
3482 *(long *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) =
3483 *(long *)varp;
3486 else /* P_BOOL */
3488 /* the cast to long is required for Manx C, long_i is needed for
3489 * MSVC */
3490 *(int *)varp = (int)(long)(long_i)options[opt_idx].def_val[dvi];
3491 #ifdef UNIX
3492 /* 'modeline' defaults to off for root */
3493 if (options[opt_idx].indir == PV_ML && getuid() == ROOT_UID)
3494 *(int *)varp = FALSE;
3495 #endif
3496 /* May also set global value for local option. */
3497 if (both)
3498 *(int *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) =
3499 *(int *)varp;
3502 /* The default value is not insecure. */
3503 flagsp = insecure_flag(opt_idx, opt_flags);
3504 *flagsp = *flagsp & ~P_INSECURE;
3507 #ifdef FEAT_EVAL
3508 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
3509 #endif
3513 * Set all options (except terminal options) to their default value.
3515 static void
3516 set_options_default(opt_flags)
3517 int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */
3519 int i;
3520 #ifdef FEAT_WINDOWS
3521 win_T *wp;
3522 tabpage_T *tp;
3523 #endif
3525 for (i = 0; !istermoption(&options[i]); i++)
3526 if (!(options[i].flags & P_NODEFAULT))
3527 set_option_default(i, opt_flags, p_cp);
3529 #ifdef FEAT_WINDOWS
3530 /* The 'scroll' option must be computed for all windows. */
3531 FOR_ALL_TAB_WINDOWS(tp, wp)
3532 win_comp_scroll(wp);
3533 #else
3534 win_comp_scroll(curwin);
3535 #endif
3539 * Set the Vi-default value of a string option.
3540 * Used for 'sh', 'backupskip' and 'term'.
3542 void
3543 set_string_default(name, val)
3544 char *name;
3545 char_u *val;
3547 char_u *p;
3548 int opt_idx;
3550 p = vim_strsave(val);
3551 if (p != NULL) /* we don't want a NULL */
3553 opt_idx = findoption((char_u *)name);
3554 if (opt_idx >= 0)
3556 if (options[opt_idx].flags & P_DEF_ALLOCED)
3557 vim_free(options[opt_idx].def_val[VI_DEFAULT]);
3558 options[opt_idx].def_val[VI_DEFAULT] = p;
3559 options[opt_idx].flags |= P_DEF_ALLOCED;
3565 * Set the Vi-default value of a number option.
3566 * Used for 'lines' and 'columns'.
3568 void
3569 set_number_default(name, val)
3570 char *name;
3571 long val;
3573 int opt_idx;
3575 opt_idx = findoption((char_u *)name);
3576 if (opt_idx >= 0)
3577 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
3580 #if defined(EXITFREE) || defined(PROTO)
3582 * Free all options.
3584 void
3585 free_all_options()
3587 int i;
3589 for (i = 0; !istermoption(&options[i]); i++)
3591 if (options[i].indir == PV_NONE)
3593 /* global option: free value and default value. */
3594 if (options[i].flags & P_ALLOCED && options[i].var != NULL)
3595 free_string_option(*(char_u **)options[i].var);
3596 if (options[i].flags & P_DEF_ALLOCED)
3597 free_string_option(options[i].def_val[VI_DEFAULT]);
3599 else if (options[i].var != VAR_WIN
3600 && (options[i].flags & P_STRING))
3601 /* buffer-local option: free global value */
3602 free_string_option(*(char_u **)options[i].var);
3605 #endif
3609 * Initialize the options, part two: After getting Rows and Columns and
3610 * setting 'term'.
3612 void
3613 set_init_2()
3615 int idx;
3618 * 'scroll' defaults to half the window height. Note that this default is
3619 * wrong when the window height changes.
3621 set_number_default("scroll", (long)((long_u)Rows >> 1));
3622 idx = findoption((char_u *)"scroll");
3623 if (idx >= 0 && !(options[idx].flags & P_WAS_SET))
3624 set_option_default(idx, OPT_LOCAL, p_cp);
3625 comp_col();
3628 * 'window' is only for backwards compatibility with Vi.
3629 * Default is Rows - 1.
3631 if (!option_was_set((char_u *)"window"))
3632 p_window = Rows - 1;
3633 set_number_default("window", Rows - 1);
3635 /* For DOS console the default is always black. */
3636 #if !((defined(MSDOS) || defined(OS2) || defined(WIN3264)) && !defined(FEAT_GUI))
3638 * If 'background' wasn't set by the user, try guessing the value,
3639 * depending on the terminal name. Only need to check for terminals
3640 * with a dark background, that can handle color.
3642 idx = findoption((char_u *)"bg");
3643 if (idx >= 0 && !(options[idx].flags & P_WAS_SET)
3644 && *term_bg_default() == 'd')
3646 set_string_option_direct(NULL, idx, (char_u *)"dark", OPT_FREE, 0);
3647 /* don't mark it as set, when starting the GUI it may be
3648 * changed again */
3649 options[idx].flags &= ~P_WAS_SET;
3651 #endif
3653 #ifdef CURSOR_SHAPE
3654 parse_shape_opt(SHAPE_CURSOR); /* set cursor shapes from 'guicursor' */
3655 #endif
3656 #ifdef FEAT_MOUSESHAPE
3657 parse_shape_opt(SHAPE_MOUSE); /* set mouse shapes from 'mouseshape' */
3658 #endif
3659 #ifdef FEAT_PRINTER
3660 (void)parse_printoptions(); /* parse 'printoptions' default value */
3661 #endif
3665 * Return "dark" or "light" depending on the kind of terminal.
3666 * This is just guessing! Recognized are:
3667 * "linux" Linux console
3668 * "screen.linux" Linux console with screen
3669 * "cygwin" Cygwin shell
3670 * "putty" Putty program
3671 * We also check the COLORFGBG environment variable, which is set by
3672 * rxvt and derivatives. This variable contains either two or three
3673 * values separated by semicolons; we want the last value in either
3674 * case. If this value is 0-6 or 8, our background is dark.
3676 static char_u *
3677 term_bg_default()
3679 #if defined(MSDOS) || defined(OS2) || defined(WIN3264)
3680 /* DOS console nearly always black */
3681 return (char_u *)"dark";
3682 #else
3683 char_u *p;
3685 if (STRCMP(T_NAME, "linux") == 0
3686 || STRCMP(T_NAME, "screen.linux") == 0
3687 || STRCMP(T_NAME, "cygwin") == 0
3688 || STRCMP(T_NAME, "putty") == 0
3689 || ((p = mch_getenv((char_u *)"COLORFGBG")) != NULL
3690 && (p = vim_strrchr(p, ';')) != NULL
3691 && ((p[1] >= '0' && p[1] <= '6') || p[1] == '8')
3692 && p[2] == NUL))
3693 return (char_u *)"dark";
3694 return (char_u *)"light";
3695 #endif
3699 * Initialize the options, part three: After reading the .vimrc
3701 void
3702 set_init_3()
3704 #if defined(UNIX) || defined(OS2) || defined(WIN3264)
3706 * Set 'shellpipe' and 'shellredir', depending on the 'shell' option.
3707 * This is done after other initializations, where 'shell' might have been
3708 * set, but only if they have not been set before.
3710 char_u *p;
3711 int idx_srr;
3712 int do_srr;
3713 #ifdef FEAT_QUICKFIX
3714 int idx_sp;
3715 int do_sp;
3716 #endif
3718 idx_srr = findoption((char_u *)"srr");
3719 if (idx_srr < 0)
3720 do_srr = FALSE;
3721 else
3722 do_srr = !(options[idx_srr].flags & P_WAS_SET);
3723 #ifdef FEAT_QUICKFIX
3724 idx_sp = findoption((char_u *)"sp");
3725 if (idx_sp < 0)
3726 do_sp = FALSE;
3727 else
3728 do_sp = !(options[idx_sp].flags & P_WAS_SET);
3729 #endif
3732 * Isolate the name of the shell:
3733 * - Skip beyond any path. E.g., "/usr/bin/csh -f" -> "csh -f".
3734 * - Remove any argument. E.g., "csh -f" -> "csh".
3736 p = gettail(p_sh);
3737 p = vim_strnsave(p, (int)(skiptowhite(p) - p));
3738 if (p != NULL)
3741 * Default for p_sp is "| tee", for p_srr is ">".
3742 * For known shells it is changed here to include stderr.
3744 if ( fnamecmp(p, "csh") == 0
3745 || fnamecmp(p, "tcsh") == 0
3746 # if defined(OS2) || defined(WIN3264) /* also check with .exe extension */
3747 || fnamecmp(p, "csh.exe") == 0
3748 || fnamecmp(p, "tcsh.exe") == 0
3749 # endif
3752 #if defined(FEAT_QUICKFIX)
3753 if (do_sp)
3755 # ifdef WIN3264
3756 p_sp = (char_u *)">&";
3757 # else
3758 p_sp = (char_u *)"|& tee";
3759 # endif
3760 options[idx_sp].def_val[VI_DEFAULT] = p_sp;
3762 #endif
3763 if (do_srr)
3765 p_srr = (char_u *)">&";
3766 options[idx_srr].def_val[VI_DEFAULT] = p_srr;
3769 else
3770 # ifndef OS2 /* Always use bourne shell style redirection if we reach this */
3771 if ( fnamecmp(p, "sh") == 0
3772 || fnamecmp(p, "ksh") == 0
3773 || fnamecmp(p, "zsh") == 0
3774 || fnamecmp(p, "zsh-beta") == 0
3775 || fnamecmp(p, "bash") == 0
3776 # ifdef WIN3264
3777 || fnamecmp(p, "cmd") == 0
3778 || fnamecmp(p, "sh.exe") == 0
3779 || fnamecmp(p, "ksh.exe") == 0
3780 || fnamecmp(p, "zsh.exe") == 0
3781 || fnamecmp(p, "zsh-beta.exe") == 0
3782 || fnamecmp(p, "bash.exe") == 0
3783 || fnamecmp(p, "cmd.exe") == 0
3784 # endif
3786 # endif
3788 #if defined(FEAT_QUICKFIX)
3789 if (do_sp)
3791 # ifdef WIN3264
3792 p_sp = (char_u *)">%s 2>&1";
3793 # else
3794 p_sp = (char_u *)"2>&1| tee";
3795 # endif
3796 options[idx_sp].def_val[VI_DEFAULT] = p_sp;
3798 #endif
3799 if (do_srr)
3801 p_srr = (char_u *)">%s 2>&1";
3802 options[idx_srr].def_val[VI_DEFAULT] = p_srr;
3805 vim_free(p);
3807 #endif
3809 #if defined(MSDOS) || defined(WIN3264) || defined(OS2)
3811 * Set 'shellcmdflag and 'shellquote' depending on the 'shell' option.
3812 * This is done after other initializations, where 'shell' might have been
3813 * set, but only if they have not been set before. Default for p_shcf is
3814 * "/c", for p_shq is "". For "sh" like shells it is changed here to
3815 * "-c" and "\"", but not for DJGPP, because it starts the shell without
3816 * command.com. And for Win32 we need to set p_sxq instead.
3818 if (strstr((char *)gettail(p_sh), "sh") != NULL)
3820 int idx3;
3822 idx3 = findoption((char_u *)"shcf");
3823 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
3825 p_shcf = (char_u *)"-c";
3826 options[idx3].def_val[VI_DEFAULT] = p_shcf;
3829 # ifndef DJGPP
3830 # ifdef WIN3264
3831 /* Somehow Win32 requires the quotes around the redirection too */
3832 idx3 = findoption((char_u *)"sxq");
3833 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
3835 p_sxq = (char_u *)"\"";
3836 options[idx3].def_val[VI_DEFAULT] = p_sxq;
3838 # else
3839 idx3 = findoption((char_u *)"shq");
3840 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
3842 p_shq = (char_u *)"\"";
3843 options[idx3].def_val[VI_DEFAULT] = p_shq;
3845 # endif
3846 # endif
3848 #endif
3850 #ifdef FEAT_TITLE
3851 set_title_defaults();
3852 #endif
3855 #if defined(FEAT_MULTI_LANG) || defined(PROTO)
3857 * When 'helplang' is still at its default value, set it to "lang".
3858 * Only the first two characters of "lang" are used.
3860 void
3861 set_helplang_default(lang)
3862 char_u *lang;
3864 int idx;
3866 if (lang == NULL || STRLEN(lang) < 2) /* safety check */
3867 return;
3868 idx = findoption((char_u *)"hlg");
3869 if (idx >= 0 && !(options[idx].flags & P_WAS_SET))
3871 if (options[idx].flags & P_ALLOCED)
3872 free_string_option(p_hlg);
3873 p_hlg = vim_strsave(lang);
3874 if (p_hlg == NULL)
3875 p_hlg = empty_option;
3876 else
3878 /* zh_CN becomes "cn", zh_TW becomes "tw". */
3879 if (STRNICMP(p_hlg, "zh_", 3) == 0 && STRLEN(p_hlg) >= 5)
3881 p_hlg[0] = TOLOWER_ASC(p_hlg[3]);
3882 p_hlg[1] = TOLOWER_ASC(p_hlg[4]);
3884 p_hlg[2] = NUL;
3886 options[idx].flags |= P_ALLOCED;
3889 #endif
3891 #ifdef FEAT_GUI
3892 static char_u *gui_bg_default __ARGS((void));
3894 static char_u *
3895 gui_bg_default()
3897 if (gui_get_lightness(gui.back_pixel) < 127)
3898 return (char_u *)"dark";
3899 return (char_u *)"light";
3903 * Option initializations that can only be done after opening the GUI window.
3905 void
3906 init_gui_options()
3908 /* Set the 'background' option according to the lightness of the
3909 * background color, unless the user has set it already. */
3910 if (!option_was_set((char_u *)"bg") && STRCMP(p_bg, gui_bg_default()) != 0)
3912 set_option_value((char_u *)"bg", 0L, gui_bg_default(), 0);
3913 highlight_changed();
3916 #endif
3918 #ifdef FEAT_TITLE
3920 * 'title' and 'icon' only default to true if they have not been set or reset
3921 * in .vimrc and we can read the old value.
3922 * When 'title' and 'icon' have been reset in .vimrc, we won't even check if
3923 * they can be reset. This reduces startup time when using X on a remote
3924 * machine.
3926 void
3927 set_title_defaults()
3929 int idx1;
3930 long val;
3933 * If GUI is (going to be) used, we can always set the window title and
3934 * icon name. Saves a bit of time, because the X11 display server does
3935 * not need to be contacted.
3937 idx1 = findoption((char_u *)"title");
3938 if (idx1 >= 0 && !(options[idx1].flags & P_WAS_SET))
3940 #ifdef FEAT_GUI
3941 if (gui.starting || gui.in_use)
3942 val = TRUE;
3943 else
3944 #endif
3945 val = mch_can_restore_title();
3946 options[idx1].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
3947 p_title = val;
3949 idx1 = findoption((char_u *)"icon");
3950 if (idx1 >= 0 && !(options[idx1].flags & P_WAS_SET))
3952 #ifdef FEAT_GUI
3953 if (gui.starting || gui.in_use)
3954 val = TRUE;
3955 else
3956 #endif
3957 val = mch_can_restore_icon();
3958 options[idx1].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
3959 p_icon = val;
3962 #endif
3965 * Parse 'arg' for option settings.
3967 * 'arg' may be IObuff, but only when no errors can be present and option
3968 * does not need to be expanded with option_expand().
3969 * "opt_flags":
3970 * 0 for ":set"
3971 * OPT_GLOBAL for ":setglobal"
3972 * OPT_LOCAL for ":setlocal" and a modeline
3973 * OPT_MODELINE for a modeline
3974 * OPT_WINONLY to only set window-local options
3975 * OPT_NOWIN to skip setting window-local options
3977 * returns FAIL if an error is detected, OK otherwise
3980 do_set(arg, opt_flags)
3981 char_u *arg; /* option string (may be written to!) */
3982 int opt_flags;
3984 int opt_idx;
3985 char_u *errmsg;
3986 char_u errbuf[80];
3987 char_u *startarg;
3988 int prefix; /* 1: nothing, 0: "no", 2: "inv" in front of name */
3989 int nextchar; /* next non-white char after option name */
3990 int afterchar; /* character just after option name */
3991 int len;
3992 int i;
3993 long value;
3994 int key;
3995 long_u flags; /* flags for current option */
3996 char_u *varp = NULL; /* pointer to variable for current option */
3997 int did_show = FALSE; /* already showed one value */
3998 int adding; /* "opt+=arg" */
3999 int prepending; /* "opt^=arg" */
4000 int removing; /* "opt-=arg" */
4001 int cp_val = 0;
4002 char_u key_name[2];
4004 if (*arg == NUL)
4006 showoptions(0, opt_flags);
4007 did_show = TRUE;
4008 goto theend;
4011 while (*arg != NUL) /* loop to process all options */
4013 errmsg = NULL;
4014 startarg = arg; /* remember for error message */
4016 if (STRNCMP(arg, "all", 3) == 0 && !isalpha(arg[3])
4017 && !(opt_flags & OPT_MODELINE))
4020 * ":set all" show all options.
4021 * ":set all&" set all options to their default value.
4023 arg += 3;
4024 if (*arg == '&')
4026 ++arg;
4027 /* Only for :set command set global value of local options. */
4028 set_options_default(OPT_FREE | opt_flags);
4030 else
4032 showoptions(1, opt_flags);
4033 did_show = TRUE;
4036 else if (STRNCMP(arg, "termcap", 7) == 0 && !(opt_flags & OPT_MODELINE))
4038 showoptions(2, opt_flags);
4039 show_termcodes();
4040 did_show = TRUE;
4041 arg += 7;
4043 else
4045 prefix = 1;
4046 if (STRNCMP(arg, "no", 2) == 0)
4048 prefix = 0;
4049 arg += 2;
4051 else if (STRNCMP(arg, "inv", 3) == 0)
4053 prefix = 2;
4054 arg += 3;
4057 /* find end of name */
4058 key = 0;
4059 if (*arg == '<')
4061 nextchar = 0;
4062 opt_idx = -1;
4063 /* look out for <t_>;> */
4064 if (arg[1] == 't' && arg[2] == '_' && arg[3] && arg[4])
4065 len = 5;
4066 else
4068 len = 1;
4069 while (arg[len] != NUL && arg[len] != '>')
4070 ++len;
4072 if (arg[len] != '>')
4074 errmsg = e_invarg;
4075 goto skip;
4077 arg[len] = NUL; /* put NUL after name */
4078 if (arg[1] == 't' && arg[2] == '_') /* could be term code */
4079 opt_idx = findoption(arg + 1);
4080 arg[len++] = '>'; /* restore '>' */
4081 if (opt_idx == -1)
4082 key = find_key_option(arg + 1);
4084 else
4086 len = 0;
4088 * The two characters after "t_" may not be alphanumeric.
4090 if (arg[0] == 't' && arg[1] == '_' && arg[2] && arg[3])
4091 len = 4;
4092 else
4093 while (ASCII_ISALNUM(arg[len]) || arg[len] == '_')
4094 ++len;
4095 nextchar = arg[len];
4096 arg[len] = NUL; /* put NUL after name */
4097 opt_idx = findoption(arg);
4098 arg[len] = nextchar; /* restore nextchar */
4099 if (opt_idx == -1)
4100 key = find_key_option(arg);
4103 /* remember character after option name */
4104 afterchar = arg[len];
4106 /* skip white space, allow ":set ai ?" */
4107 while (vim_iswhite(arg[len]))
4108 ++len;
4110 adding = FALSE;
4111 prepending = FALSE;
4112 removing = FALSE;
4113 if (arg[len] != NUL && arg[len + 1] == '=')
4115 if (arg[len] == '+')
4117 adding = TRUE; /* "+=" */
4118 ++len;
4120 else if (arg[len] == '^')
4122 prepending = TRUE; /* "^=" */
4123 ++len;
4125 else if (arg[len] == '-')
4127 removing = TRUE; /* "-=" */
4128 ++len;
4131 nextchar = arg[len];
4133 if (opt_idx == -1 && key == 0) /* found a mismatch: skip */
4135 errmsg = (char_u *)N_("E518: Unknown option");
4136 goto skip;
4139 if (opt_idx >= 0)
4141 if (options[opt_idx].var == NULL) /* hidden option: skip */
4143 /* Only give an error message when requesting the value of
4144 * a hidden option, ignore setting it. */
4145 if (vim_strchr((char_u *)"=:!&<", nextchar) == NULL
4146 && (!(options[opt_idx].flags & P_BOOL)
4147 || nextchar == '?'))
4148 errmsg = (char_u *)N_("E519: Option not supported");
4149 goto skip;
4152 flags = options[opt_idx].flags;
4153 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
4155 else
4157 flags = P_STRING;
4158 if (key < 0)
4160 key_name[0] = KEY2TERMCAP0(key);
4161 key_name[1] = KEY2TERMCAP1(key);
4163 else
4165 key_name[0] = KS_KEY;
4166 key_name[1] = (key & 0xff);
4170 /* Skip all options that are not window-local (used when showing
4171 * an already loaded buffer in a window). */
4172 if ((opt_flags & OPT_WINONLY)
4173 && (opt_idx < 0 || options[opt_idx].var != VAR_WIN))
4174 goto skip;
4176 /* Skip all options that are window-local (used for :vimgrep). */
4177 if ((opt_flags & OPT_NOWIN) && opt_idx >= 0
4178 && options[opt_idx].var == VAR_WIN)
4179 goto skip;
4181 /* Disallow changing some options from modelines. */
4182 if (opt_flags & OPT_MODELINE)
4184 if (flags & P_SECURE)
4186 errmsg = (char_u *)_("E520: Not allowed in a modeline");
4187 goto skip;
4189 #ifdef FEAT_DIFF
4190 /* In diff mode some options are overruled. This avoids that
4191 * 'foldmethod' becomes "marker" instead of "diff" and that
4192 * "wrap" gets set. */
4193 if (curwin->w_p_diff
4194 && (options[opt_idx].indir == PV_FDM
4195 || options[opt_idx].indir == PV_WRAP))
4196 goto skip;
4197 #endif
4200 #ifdef HAVE_SANDBOX
4201 /* Disallow changing some options in the sandbox */
4202 if (sandbox != 0 && (flags & P_SECURE))
4204 errmsg = (char_u *)_(e_sandbox);
4205 goto skip;
4207 #endif
4209 if (vim_strchr((char_u *)"?=:!&<", nextchar) != NULL)
4211 arg += len;
4212 cp_val = p_cp;
4213 if (nextchar == '&' && arg[1] == 'v' && arg[2] == 'i')
4215 if (arg[3] == 'm') /* "opt&vim": set to Vim default */
4217 cp_val = FALSE;
4218 arg += 3;
4220 else /* "opt&vi": set to Vi default */
4222 cp_val = TRUE;
4223 arg += 2;
4226 if (vim_strchr((char_u *)"?!&<", nextchar) != NULL
4227 && arg[1] != NUL && !vim_iswhite(arg[1]))
4229 errmsg = e_trailing;
4230 goto skip;
4235 * allow '=' and ':' as MSDOS command.com allows only one
4236 * '=' character per "set" command line. grrr. (jw)
4238 if (nextchar == '?'
4239 || (prefix == 1
4240 && vim_strchr((char_u *)"=:&<", nextchar) == NULL
4241 && !(flags & P_BOOL)))
4244 * print value
4246 if (did_show)
4247 msg_putchar('\n'); /* cursor below last one */
4248 else
4250 gotocmdline(TRUE); /* cursor at status line */
4251 did_show = TRUE; /* remember that we did a line */
4253 if (opt_idx >= 0)
4255 showoneopt(&options[opt_idx], opt_flags);
4256 #ifdef FEAT_EVAL
4257 if (p_verbose > 0)
4259 /* Mention where the option was last set. */
4260 if (varp == options[opt_idx].var)
4261 last_set_msg(options[opt_idx].scriptID);
4262 else if ((int)options[opt_idx].indir & PV_WIN)
4263 last_set_msg(curwin->w_p_scriptID[
4264 (int)options[opt_idx].indir & PV_MASK]);
4265 else if ((int)options[opt_idx].indir & PV_BUF)
4266 last_set_msg(curbuf->b_p_scriptID[
4267 (int)options[opt_idx].indir & PV_MASK]);
4269 #endif
4271 else
4273 char_u *p;
4275 p = find_termcode(key_name);
4276 if (p == NULL)
4278 errmsg = (char_u *)N_("E518: Unknown option");
4279 goto skip;
4281 else
4282 (void)show_one_termcode(key_name, p, TRUE);
4284 if (nextchar != '?'
4285 && nextchar != NUL && !vim_iswhite(afterchar))
4286 errmsg = e_trailing;
4288 else
4290 if (flags & P_BOOL) /* boolean */
4292 if (nextchar == '=' || nextchar == ':')
4294 errmsg = e_invarg;
4295 goto skip;
4299 * ":set opt!": invert
4300 * ":set opt&": reset to default value
4301 * ":set opt<": reset to global value
4303 if (nextchar == '!')
4304 value = *(int *)(varp) ^ 1;
4305 else if (nextchar == '&')
4306 value = (int)(long)(long_i)options[opt_idx].def_val[
4307 ((flags & P_VI_DEF) || cp_val)
4308 ? VI_DEFAULT : VIM_DEFAULT];
4309 else if (nextchar == '<')
4311 /* For 'autoread' -1 means to use global value. */
4312 if ((int *)varp == &curbuf->b_p_ar
4313 && opt_flags == OPT_LOCAL)
4314 value = -1;
4315 else
4316 value = *(int *)get_varp_scope(&(options[opt_idx]),
4317 OPT_GLOBAL);
4319 else
4322 * ":set invopt": invert
4323 * ":set opt" or ":set noopt": set or reset
4325 if (nextchar != NUL && !vim_iswhite(afterchar))
4327 errmsg = e_trailing;
4328 goto skip;
4330 if (prefix == 2) /* inv */
4331 value = *(int *)(varp) ^ 1;
4332 else
4333 value = prefix;
4336 errmsg = set_bool_option(opt_idx, varp, (int)value,
4337 opt_flags);
4339 else /* numeric or string */
4341 if (vim_strchr((char_u *)"=:&<", nextchar) == NULL
4342 || prefix != 1)
4344 errmsg = e_invarg;
4345 goto skip;
4348 if (flags & P_NUM) /* numeric */
4351 * Different ways to set a number option:
4352 * & set to default value
4353 * < set to global value
4354 * <xx> accept special key codes for 'wildchar'
4355 * c accept any non-digit for 'wildchar'
4356 * [-]0-9 set number
4357 * other error
4359 ++arg;
4360 if (nextchar == '&')
4361 value = (long)(long_i)options[opt_idx].def_val[
4362 ((flags & P_VI_DEF) || cp_val)
4363 ? VI_DEFAULT : VIM_DEFAULT];
4364 else if (nextchar == '<')
4365 value = *(long *)get_varp_scope(&(options[opt_idx]),
4366 OPT_GLOBAL);
4367 else if (((long *)varp == &p_wc
4368 || (long *)varp == &p_wcm)
4369 && (*arg == '<'
4370 || *arg == '^'
4371 || ((!arg[1] || vim_iswhite(arg[1]))
4372 && !VIM_ISDIGIT(*arg))))
4374 value = string_to_key(arg);
4375 if (value == 0 && (long *)varp != &p_wcm)
4377 errmsg = e_invarg;
4378 goto skip;
4381 /* allow negative numbers (for 'undolevels') */
4382 else if (*arg == '-' || VIM_ISDIGIT(*arg))
4384 i = 0;
4385 if (*arg == '-')
4386 i = 1;
4387 #ifdef HAVE_STRTOL
4388 value = strtol((char *)arg, NULL, 0);
4389 if (arg[i] == '0' && TOLOWER_ASC(arg[i + 1]) == 'x')
4390 i += 2;
4391 #else
4392 value = atol((char *)arg);
4393 #endif
4394 while (VIM_ISDIGIT(arg[i]))
4395 ++i;
4396 if (arg[i] != NUL && !vim_iswhite(arg[i]))
4398 errmsg = e_invarg;
4399 goto skip;
4402 else
4404 errmsg = (char_u *)N_("E521: Number required after =");
4405 goto skip;
4408 if (adding)
4409 value = *(long *)varp + value;
4410 if (prepending)
4411 value = *(long *)varp * value;
4412 if (removing)
4413 value = *(long *)varp - value;
4414 errmsg = set_num_option(opt_idx, varp, value,
4415 errbuf, sizeof(errbuf), opt_flags);
4417 else if (opt_idx >= 0) /* string */
4419 char_u *save_arg = NULL;
4420 char_u *s = NULL;
4421 char_u *oldval; /* previous value if *varp */
4422 char_u *newval;
4423 char_u *origval;
4424 unsigned newlen;
4425 int comma;
4426 int bs;
4427 int new_value_alloced; /* new string option
4428 was allocated */
4430 /* When using ":set opt=val" for a global option
4431 * with a local value the local value will be
4432 * reset, use the global value here. */
4433 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
4434 && ((int)options[opt_idx].indir & PV_BOTH))
4435 varp = options[opt_idx].var;
4437 /* The old value is kept until we are sure that the
4438 * new value is valid. */
4439 oldval = *(char_u **)varp;
4440 if (nextchar == '&') /* set to default val */
4442 newval = options[opt_idx].def_val[
4443 ((flags & P_VI_DEF) || cp_val)
4444 ? VI_DEFAULT : VIM_DEFAULT];
4445 if ((char_u **)varp == &p_bg)
4447 /* guess the value of 'background' */
4448 #ifdef FEAT_GUI
4449 if (gui.in_use)
4450 newval = gui_bg_default();
4451 else
4452 #endif
4453 newval = term_bg_default();
4456 /* expand environment variables and ~ (since the
4457 * default value was already expanded, only
4458 * required when an environment variable was set
4459 * later */
4460 if (newval == NULL)
4461 newval = empty_option;
4462 else
4464 s = option_expand(opt_idx, newval);
4465 if (s == NULL)
4466 s = newval;
4467 newval = vim_strsave(s);
4469 new_value_alloced = TRUE;
4471 else if (nextchar == '<') /* set to global val */
4473 newval = vim_strsave(*(char_u **)get_varp_scope(
4474 &(options[opt_idx]), OPT_GLOBAL));
4475 new_value_alloced = TRUE;
4477 else
4479 ++arg; /* jump to after the '=' or ':' */
4482 * Set 'keywordprg' to ":help" if an empty
4483 * value was passed to :set by the user.
4484 * Misuse errbuf[] for the resulting string.
4486 if (varp == (char_u *)&p_kp
4487 && (*arg == NUL || *arg == ' '))
4489 STRCPY(errbuf, ":help");
4490 save_arg = arg;
4491 arg = errbuf;
4494 * Convert 'whichwrap' number to string, for
4495 * backwards compatibility with Vim 3.0.
4496 * Misuse errbuf[] for the resulting string.
4498 else if (varp == (char_u *)&p_ww
4499 && VIM_ISDIGIT(*arg))
4501 *errbuf = NUL;
4502 i = getdigits(&arg);
4503 if (i & 1)
4504 STRCAT(errbuf, "b,");
4505 if (i & 2)
4506 STRCAT(errbuf, "s,");
4507 if (i & 4)
4508 STRCAT(errbuf, "h,l,");
4509 if (i & 8)
4510 STRCAT(errbuf, "<,>,");
4511 if (i & 16)
4512 STRCAT(errbuf, "[,],");
4513 if (*errbuf != NUL) /* remove trailing , */
4514 errbuf[STRLEN(errbuf) - 1] = NUL;
4515 save_arg = arg;
4516 arg = errbuf;
4519 * Remove '>' before 'dir' and 'bdir', for
4520 * backwards compatibility with version 3.0
4522 else if ( *arg == '>'
4523 && (varp == (char_u *)&p_dir
4524 || varp == (char_u *)&p_bdir))
4526 ++arg;
4529 /* When setting the local value of a global
4530 * option, the old value may be the global value. */
4531 if (((int)options[opt_idx].indir & PV_BOTH)
4532 && (opt_flags & OPT_LOCAL))
4533 origval = *(char_u **)get_varp(
4534 &options[opt_idx]);
4535 else
4536 origval = oldval;
4539 * Copy the new string into allocated memory.
4540 * Can't use set_string_option_direct(), because
4541 * we need to remove the backslashes.
4543 /* get a bit too much */
4544 newlen = (unsigned)STRLEN(arg) + 1;
4545 if (adding || prepending || removing)
4546 newlen += (unsigned)STRLEN(origval) + 1;
4547 newval = alloc(newlen);
4548 if (newval == NULL) /* out of mem, don't change */
4549 break;
4550 s = newval;
4553 * Copy the string, skip over escaped chars.
4554 * For MS-DOS and WIN32 backslashes before normal
4555 * file name characters are not removed, and keep
4556 * backslash at start, for "\\machine\path", but
4557 * do remove it for "\\\\machine\\path".
4558 * The reverse is found in ExpandOldSetting().
4560 while (*arg && !vim_iswhite(*arg))
4562 if (*arg == '\\' && arg[1] != NUL
4563 #ifdef BACKSLASH_IN_FILENAME
4564 && !((flags & P_EXPAND)
4565 && vim_isfilec(arg[1])
4566 && (arg[1] != '\\'
4567 || (s == newval
4568 && arg[2] != '\\')))
4569 #endif
4571 ++arg; /* remove backslash */
4572 #ifdef FEAT_MBYTE
4573 if (has_mbyte
4574 && (i = (*mb_ptr2len)(arg)) > 1)
4576 /* copy multibyte char */
4577 mch_memmove(s, arg, (size_t)i);
4578 arg += i;
4579 s += i;
4581 else
4582 #endif
4583 *s++ = *arg++;
4585 *s = NUL;
4588 * Expand environment variables and ~.
4589 * Don't do it when adding without inserting a
4590 * comma.
4592 if (!(adding || prepending || removing)
4593 || (flags & P_COMMA))
4595 s = option_expand(opt_idx, newval);
4596 if (s != NULL)
4598 vim_free(newval);
4599 newlen = (unsigned)STRLEN(s) + 1;
4600 if (adding || prepending || removing)
4601 newlen += (unsigned)STRLEN(origval) + 1;
4602 newval = alloc(newlen);
4603 if (newval == NULL)
4604 break;
4605 STRCPY(newval, s);
4609 /* locate newval[] in origval[] when removing it
4610 * and when adding to avoid duplicates */
4611 i = 0; /* init for GCC */
4612 if (removing || (flags & P_NODUP))
4614 i = (int)STRLEN(newval);
4615 bs = 0;
4616 for (s = origval; *s; ++s)
4618 if ((!(flags & P_COMMA)
4619 || s == origval
4620 || (s[-1] == ',' && !(bs & 1)))
4621 && STRNCMP(s, newval, i) == 0
4622 && (!(flags & P_COMMA)
4623 || s[i] == ','
4624 || s[i] == NUL))
4625 break;
4626 /* Count backspaces. Only a comma with an
4627 * even number of backspaces before it is
4628 * recognized as a separator */
4629 if (s > origval && s[-1] == '\\')
4630 ++bs;
4631 else
4632 bs = 0;
4635 /* do not add if already there */
4636 if ((adding || prepending) && *s)
4638 prepending = FALSE;
4639 adding = FALSE;
4640 STRCPY(newval, origval);
4644 /* concatenate the two strings; add a ',' if
4645 * needed */
4646 if (adding || prepending)
4648 comma = ((flags & P_COMMA) && *origval != NUL
4649 && *newval != NUL);
4650 if (adding)
4652 i = (int)STRLEN(origval);
4653 mch_memmove(newval + i + comma, newval,
4654 STRLEN(newval) + 1);
4655 mch_memmove(newval, origval, (size_t)i);
4657 else
4659 i = (int)STRLEN(newval);
4660 STRMOVE(newval + i + comma, origval);
4662 if (comma)
4663 newval[i] = ',';
4666 /* Remove newval[] from origval[]. (Note: "i" has
4667 * been set above and is used here). */
4668 if (removing)
4670 STRCPY(newval, origval);
4671 if (*s)
4673 /* may need to remove a comma */
4674 if (flags & P_COMMA)
4676 if (s == origval)
4678 /* include comma after string */
4679 if (s[i] == ',')
4680 ++i;
4682 else
4684 /* include comma before string */
4685 --s;
4686 ++i;
4689 STRMOVE(newval + (s - origval), s + i);
4693 if (flags & P_FLAGLIST)
4695 /* Remove flags that appear twice. */
4696 for (s = newval; *s; ++s)
4697 if ((!(flags & P_COMMA) || *s != ',')
4698 && vim_strchr(s + 1, *s) != NULL)
4700 STRMOVE(s, s + 1);
4701 --s;
4705 if (save_arg != NULL) /* number for 'whichwrap' */
4706 arg = save_arg;
4707 new_value_alloced = TRUE;
4710 /* Set the new value. */
4711 *(char_u **)(varp) = newval;
4713 /* Handle side effects, and set the global value for
4714 * ":set" on local options. */
4715 errmsg = did_set_string_option(opt_idx, (char_u **)varp,
4716 new_value_alloced, oldval, errbuf, opt_flags);
4718 /* If error detected, print the error message. */
4719 if (errmsg != NULL)
4720 goto skip;
4722 else /* key code option */
4724 char_u *p;
4726 if (nextchar == '&')
4728 if (add_termcap_entry(key_name, TRUE) == FAIL)
4729 errmsg = (char_u *)N_("E522: Not found in termcap");
4731 else
4733 ++arg; /* jump to after the '=' or ':' */
4734 for (p = arg; *p && !vim_iswhite(*p); ++p)
4735 if (*p == '\\' && p[1] != NUL)
4736 ++p;
4737 nextchar = *p;
4738 *p = NUL;
4739 add_termcode(key_name, arg, FALSE);
4740 *p = nextchar;
4742 if (full_screen)
4743 ttest(FALSE);
4744 redraw_all_later(CLEAR);
4748 if (opt_idx >= 0)
4749 did_set_option(opt_idx, opt_flags,
4750 !prepending && !adding && !removing);
4753 skip:
4755 * Advance to next argument.
4756 * - skip until a blank found, taking care of backslashes
4757 * - skip blanks
4758 * - skip one "=val" argument (for hidden options ":set gfn =xx")
4760 for (i = 0; i < 2 ; ++i)
4762 while (*arg != NUL && !vim_iswhite(*arg))
4763 if (*arg++ == '\\' && *arg != NUL)
4764 ++arg;
4765 arg = skipwhite(arg);
4766 if (*arg != '=')
4767 break;
4771 if (errmsg != NULL)
4773 vim_strncpy(IObuff, (char_u *)_(errmsg), IOSIZE - 1);
4774 i = (int)STRLEN(IObuff) + 2;
4775 if (i + (arg - startarg) < IOSIZE)
4777 /* append the argument with the error */
4778 STRCAT(IObuff, ": ");
4779 mch_memmove(IObuff + i, startarg, (arg - startarg));
4780 IObuff[i + (arg - startarg)] = NUL;
4782 /* make sure all characters are printable */
4783 trans_characters(IObuff, IOSIZE);
4785 ++no_wait_return; /* wait_return done later */
4786 emsg(IObuff); /* show error highlighted */
4787 --no_wait_return;
4789 return FAIL;
4792 arg = skipwhite(arg);
4795 theend:
4796 if (silent_mode && did_show)
4798 /* After displaying option values in silent mode. */
4799 silent_mode = FALSE;
4800 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
4801 msg_putchar('\n');
4802 cursor_on(); /* msg_start() switches it off */
4803 out_flush();
4804 silent_mode = TRUE;
4805 info_message = FALSE; /* use mch_msg(), not mch_errmsg() */
4808 return OK;
4812 * Call this when an option has been given a new value through a user command.
4813 * Sets the P_WAS_SET flag and takes care of the P_INSECURE flag.
4815 static void
4816 did_set_option(opt_idx, opt_flags, new_value)
4817 int opt_idx;
4818 int opt_flags; /* possibly with OPT_MODELINE */
4819 int new_value; /* value was replaced completely */
4821 long_u *p;
4823 options[opt_idx].flags |= P_WAS_SET;
4825 /* When an option is set in the sandbox, from a modeline or in secure mode
4826 * set the P_INSECURE flag. Otherwise, if a new value is stored reset the
4827 * flag. */
4828 p = insecure_flag(opt_idx, opt_flags);
4829 if (secure
4830 #ifdef HAVE_SANDBOX
4831 || sandbox != 0
4832 #endif
4833 || (opt_flags & OPT_MODELINE))
4834 *p = *p | P_INSECURE;
4835 else if (new_value)
4836 *p = *p & ~P_INSECURE;
4839 static char_u *
4840 illegal_char(errbuf, c)
4841 char_u *errbuf;
4842 int c;
4844 if (errbuf == NULL)
4845 return (char_u *)"";
4846 sprintf((char *)errbuf, _("E539: Illegal character <%s>"),
4847 (char *)transchar(c));
4848 return errbuf;
4852 * Convert a key name or string into a key value.
4853 * Used for 'wildchar' and 'cedit' options.
4855 static int
4856 string_to_key(arg)
4857 char_u *arg;
4859 if (*arg == '<')
4860 return find_key_option(arg + 1);
4861 if (*arg == '^')
4862 return Ctrl_chr(arg[1]);
4863 return *arg;
4866 #ifdef FEAT_CMDWIN
4868 * Check value of 'cedit' and set cedit_key.
4869 * Returns NULL if value is OK, error message otherwise.
4871 static char_u *
4872 check_cedit()
4874 int n;
4876 if (*p_cedit == NUL)
4877 cedit_key = -1;
4878 else
4880 n = string_to_key(p_cedit);
4881 if (vim_isprintc(n))
4882 return e_invarg;
4883 cedit_key = n;
4885 return NULL;
4887 #endif
4889 #ifdef FEAT_TITLE
4891 * When changing 'title', 'titlestring', 'icon' or 'iconstring', call
4892 * maketitle() to create and display it.
4893 * When switching the title or icon off, call mch_restore_title() to get
4894 * the old value back.
4896 static void
4897 did_set_title(icon)
4898 int icon; /* Did set icon instead of title */
4900 if (starting != NO_SCREEN
4901 #ifdef FEAT_GUI
4902 && !gui.starting
4903 #endif
4906 maketitle();
4907 if (icon)
4909 if (!p_icon)
4910 mch_restore_title(2);
4912 else
4914 if (!p_title)
4915 mch_restore_title(1);
4919 #endif
4922 * set_options_bin - called when 'bin' changes value.
4924 void
4925 set_options_bin(oldval, newval, opt_flags)
4926 int oldval;
4927 int newval;
4928 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
4931 * The option values that are changed when 'bin' changes are
4932 * copied when 'bin is set and restored when 'bin' is reset.
4934 if (newval)
4936 if (!oldval) /* switched on */
4938 if (!(opt_flags & OPT_GLOBAL))
4940 curbuf->b_p_tw_nobin = curbuf->b_p_tw;
4941 curbuf->b_p_wm_nobin = curbuf->b_p_wm;
4942 curbuf->b_p_ml_nobin = curbuf->b_p_ml;
4943 curbuf->b_p_et_nobin = curbuf->b_p_et;
4945 if (!(opt_flags & OPT_LOCAL))
4947 p_tw_nobin = p_tw;
4948 p_wm_nobin = p_wm;
4949 p_ml_nobin = p_ml;
4950 p_et_nobin = p_et;
4954 if (!(opt_flags & OPT_GLOBAL))
4956 curbuf->b_p_tw = 0; /* no automatic line wrap */
4957 curbuf->b_p_wm = 0; /* no automatic line wrap */
4958 curbuf->b_p_ml = 0; /* no modelines */
4959 curbuf->b_p_et = 0; /* no expandtab */
4961 if (!(opt_flags & OPT_LOCAL))
4963 p_tw = 0;
4964 p_wm = 0;
4965 p_ml = FALSE;
4966 p_et = FALSE;
4967 p_bin = TRUE; /* needed when called for the "-b" argument */
4970 else if (oldval) /* switched off */
4972 if (!(opt_flags & OPT_GLOBAL))
4974 curbuf->b_p_tw = curbuf->b_p_tw_nobin;
4975 curbuf->b_p_wm = curbuf->b_p_wm_nobin;
4976 curbuf->b_p_ml = curbuf->b_p_ml_nobin;
4977 curbuf->b_p_et = curbuf->b_p_et_nobin;
4979 if (!(opt_flags & OPT_LOCAL))
4981 p_tw = p_tw_nobin;
4982 p_wm = p_wm_nobin;
4983 p_ml = p_ml_nobin;
4984 p_et = p_et_nobin;
4989 #ifdef FEAT_VIMINFO
4991 * Find the parameter represented by the given character (eg ', :, ", or /),
4992 * and return its associated value in the 'viminfo' string.
4993 * Only works for number parameters, not for 'r' or 'n'.
4994 * If the parameter is not specified in the string or there is no following
4995 * number, return -1.
4998 get_viminfo_parameter(type)
4999 int type;
5001 char_u *p;
5003 p = find_viminfo_parameter(type);
5004 if (p != NULL && VIM_ISDIGIT(*p))
5005 return atoi((char *)p);
5006 return -1;
5010 * Find the parameter represented by the given character (eg ''', ':', '"', or
5011 * '/') in the 'viminfo' option and return a pointer to the string after it.
5012 * Return NULL if the parameter is not specified in the string.
5014 char_u *
5015 find_viminfo_parameter(type)
5016 int type;
5018 char_u *p;
5020 for (p = p_viminfo; *p; ++p)
5022 if (*p == type)
5023 return p + 1;
5024 if (*p == 'n') /* 'n' is always the last one */
5025 break;
5026 p = vim_strchr(p, ','); /* skip until next ',' */
5027 if (p == NULL) /* hit the end without finding parameter */
5028 break;
5030 return NULL;
5032 #endif
5035 * Expand environment variables for some string options.
5036 * These string options cannot be indirect!
5037 * If "val" is NULL expand the current value of the option.
5038 * Return pointer to NameBuff, or NULL when not expanded.
5040 static char_u *
5041 option_expand(opt_idx, val)
5042 int opt_idx;
5043 char_u *val;
5045 /* if option doesn't need expansion nothing to do */
5046 if (!(options[opt_idx].flags & P_EXPAND) || options[opt_idx].var == NULL)
5047 return NULL;
5049 /* If val is longer than MAXPATHL no meaningful expansion can be done,
5050 * expand_env() would truncate the string. */
5051 if (val != NULL && STRLEN(val) > MAXPATHL)
5052 return NULL;
5054 if (val == NULL)
5055 val = *(char_u **)options[opt_idx].var;
5058 * Expanding this with NameBuff, expand_env() must not be passed IObuff.
5059 * Escape spaces when expanding 'tags', they are used to separate file
5060 * names.
5061 * For 'spellsuggest' expand after "file:".
5063 expand_env_esc(val, NameBuff, MAXPATHL,
5064 (char_u **)options[opt_idx].var == &p_tags, FALSE,
5065 #ifdef FEAT_SPELL
5066 (char_u **)options[opt_idx].var == &p_sps ? (char_u *)"file:" :
5067 #endif
5068 NULL);
5069 if (STRCMP(NameBuff, val) == 0) /* they are the same */
5070 return NULL;
5072 return NameBuff;
5076 * After setting various option values: recompute variables that depend on
5077 * option values.
5079 static void
5080 didset_options()
5082 /* initialize the table for 'iskeyword' et.al. */
5083 (void)init_chartab();
5085 #ifdef FEAT_MBYTE
5086 (void)opt_strings_flags(p_cmp, p_cmp_values, &cmp_flags, TRUE);
5087 #endif
5088 (void)opt_strings_flags(p_bkc, p_bkc_values, &bkc_flags, TRUE);
5089 #ifdef FEAT_SESSION
5090 (void)opt_strings_flags(p_ssop, p_ssop_values, &ssop_flags, TRUE);
5091 (void)opt_strings_flags(p_vop, p_ssop_values, &vop_flags, TRUE);
5092 #endif
5093 #ifdef FEAT_FOLDING
5094 (void)opt_strings_flags(p_fdo, p_fdo_values, &fdo_flags, TRUE);
5095 #endif
5096 #ifdef FEAT_FULLSCREEN
5097 (void)check_fuoptions(p_fuoptions, &fuoptions_flags,
5098 &fuoptions_bgcolor);
5099 #endif
5100 (void)opt_strings_flags(p_dy, p_dy_values, &dy_flags, TRUE);
5101 #ifdef FEAT_VIRTUALEDIT
5102 (void)opt_strings_flags(p_ve, p_ve_values, &ve_flags, TRUE);
5103 #endif
5104 #if defined(FEAT_MOUSE) && (defined(UNIX) || defined(VMS))
5105 (void)opt_strings_flags(p_ttym, p_ttym_values, &ttym_flags, FALSE);
5106 #endif
5107 #ifdef FEAT_SPELL
5108 (void)spell_check_msm();
5109 (void)spell_check_sps();
5110 (void)compile_cap_prog(curbuf);
5111 #endif
5112 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
5113 (void)opt_strings_flags(p_toolbar, p_toolbar_values, &toolbar_flags, TRUE);
5114 #endif
5115 #if defined(FEAT_TOOLBAR) && ((defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)) \
5116 || defined(FEAT_GUI_MACVIM))
5117 (void)opt_strings_flags(p_tbis, p_tbis_values, &tbis_flags, FALSE);
5118 #endif
5119 #ifdef FEAT_CMDWIN
5120 /* set cedit_key */
5121 (void)check_cedit();
5122 #endif
5126 * Check for string options that are NULL (normally only termcap options).
5128 void
5129 check_options()
5131 int opt_idx;
5133 for (opt_idx = 0; options[opt_idx].fullname != NULL; opt_idx++)
5134 if ((options[opt_idx].flags & P_STRING) && options[opt_idx].var != NULL)
5135 check_string_option((char_u **)get_varp(&(options[opt_idx])));
5139 * Check string options in a buffer for NULL value.
5141 void
5142 check_buf_options(buf)
5143 buf_T *buf;
5145 #if defined(FEAT_QUICKFIX)
5146 check_string_option(&buf->b_p_bh);
5147 check_string_option(&buf->b_p_bt);
5148 #endif
5149 #ifdef FEAT_MBYTE
5150 check_string_option(&buf->b_p_fenc);
5151 #endif
5152 check_string_option(&buf->b_p_ff);
5153 #ifdef FEAT_FIND_ID
5154 check_string_option(&buf->b_p_def);
5155 check_string_option(&buf->b_p_inc);
5156 # ifdef FEAT_EVAL
5157 check_string_option(&buf->b_p_inex);
5158 # endif
5159 #endif
5160 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
5161 check_string_option(&buf->b_p_inde);
5162 check_string_option(&buf->b_p_indk);
5163 #endif
5164 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
5165 check_string_option(&buf->b_p_bexpr);
5166 #endif
5167 #if defined(FEAT_EVAL)
5168 check_string_option(&buf->b_p_fex);
5169 #endif
5170 #ifdef FEAT_CRYPT
5171 check_string_option(&buf->b_p_key);
5172 #endif
5173 check_string_option(&buf->b_p_kp);
5174 check_string_option(&buf->b_p_mps);
5175 check_string_option(&buf->b_p_fo);
5176 check_string_option(&buf->b_p_flp);
5177 check_string_option(&buf->b_p_isk);
5178 #ifdef FEAT_COMMENTS
5179 check_string_option(&buf->b_p_com);
5180 #endif
5181 #ifdef FEAT_FOLDING
5182 check_string_option(&buf->b_p_cms);
5183 #endif
5184 check_string_option(&buf->b_p_nf);
5185 #ifdef FEAT_TEXTOBJ
5186 check_string_option(&buf->b_p_qe);
5187 #endif
5188 #ifdef FEAT_SYN_HL
5189 check_string_option(&buf->b_p_syn);
5190 #endif
5191 #ifdef FEAT_SPELL
5192 check_string_option(&buf->b_p_spc);
5193 check_string_option(&buf->b_p_spf);
5194 check_string_option(&buf->b_p_spl);
5195 #endif
5196 #ifdef FEAT_SEARCHPATH
5197 check_string_option(&buf->b_p_sua);
5198 #endif
5199 #ifdef FEAT_CINDENT
5200 check_string_option(&buf->b_p_cink);
5201 check_string_option(&buf->b_p_cino);
5202 #endif
5203 #ifdef FEAT_AUTOCMD
5204 check_string_option(&buf->b_p_ft);
5205 #endif
5206 #ifdef FEAT_OSFILETYPE
5207 check_string_option(&buf->b_p_oft);
5208 #endif
5209 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
5210 check_string_option(&buf->b_p_cinw);
5211 #endif
5212 #ifdef FEAT_INS_EXPAND
5213 check_string_option(&buf->b_p_cpt);
5214 #endif
5215 #ifdef FEAT_COMPL_FUNC
5216 check_string_option(&buf->b_p_cfu);
5217 check_string_option(&buf->b_p_ofu);
5218 #endif
5219 #ifdef FEAT_KEYMAP
5220 check_string_option(&buf->b_p_keymap);
5221 #endif
5222 #ifdef FEAT_QUICKFIX
5223 check_string_option(&buf->b_p_gp);
5224 check_string_option(&buf->b_p_mp);
5225 check_string_option(&buf->b_p_efm);
5226 #endif
5227 check_string_option(&buf->b_p_ep);
5228 check_string_option(&buf->b_p_path);
5229 check_string_option(&buf->b_p_tags);
5230 #ifdef FEAT_INS_EXPAND
5231 check_string_option(&buf->b_p_dict);
5232 check_string_option(&buf->b_p_tsr);
5233 #endif
5237 * Free the string allocated for an option.
5238 * Checks for the string being empty_option. This may happen if we're out of
5239 * memory, vim_strsave() returned NULL, which was replaced by empty_option by
5240 * check_options().
5241 * Does NOT check for P_ALLOCED flag!
5243 void
5244 free_string_option(p)
5245 char_u *p;
5247 if (p != empty_option)
5248 vim_free(p);
5251 void
5252 clear_string_option(pp)
5253 char_u **pp;
5255 if (*pp != empty_option)
5256 vim_free(*pp);
5257 *pp = empty_option;
5260 static void
5261 check_string_option(pp)
5262 char_u **pp;
5264 if (*pp == NULL)
5265 *pp = empty_option;
5269 * Mark a terminal option as allocated, found by a pointer into term_strings[].
5271 void
5272 set_term_option_alloced(p)
5273 char_u **p;
5275 int opt_idx;
5277 for (opt_idx = 1; options[opt_idx].fullname != NULL; opt_idx++)
5278 if (options[opt_idx].var == (char_u *)p)
5280 options[opt_idx].flags |= P_ALLOCED;
5281 return;
5283 return; /* cannot happen: didn't find it! */
5286 #if defined(FEAT_EVAL) || defined(PROTO)
5288 * Return TRUE when option "opt" was set from a modeline or in secure mode.
5289 * Return FALSE when it wasn't.
5290 * Return -1 for an unknown option.
5293 was_set_insecurely(opt, opt_flags)
5294 char_u *opt;
5295 int opt_flags;
5297 int idx = findoption(opt);
5298 long_u *flagp;
5300 if (idx >= 0)
5302 flagp = insecure_flag(idx, opt_flags);
5303 return (*flagp & P_INSECURE) != 0;
5305 EMSG2(_(e_intern2), "was_set_insecurely()");
5306 return -1;
5310 * Get a pointer to the flags used for the P_INSECURE flag of option
5311 * "opt_idx". For some local options a local flags field is used.
5313 static long_u *
5314 insecure_flag(opt_idx, opt_flags)
5315 int opt_idx;
5316 int opt_flags;
5318 if (opt_flags & OPT_LOCAL)
5319 switch ((int)options[opt_idx].indir)
5321 #ifdef FEAT_STL_OPT
5322 case PV_STL: return &curwin->w_p_stl_flags;
5323 #endif
5324 #ifdef FEAT_EVAL
5325 # ifdef FEAT_FOLDING
5326 case PV_FDE: return &curwin->w_p_fde_flags;
5327 case PV_FDT: return &curwin->w_p_fdt_flags;
5328 # endif
5329 # ifdef FEAT_BEVAL
5330 case PV_BEXPR: return &curbuf->b_p_bexpr_flags;
5331 # endif
5332 # if defined(FEAT_CINDENT)
5333 case PV_INDE: return &curbuf->b_p_inde_flags;
5334 # endif
5335 case PV_FEX: return &curbuf->b_p_fex_flags;
5336 # ifdef FEAT_FIND_ID
5337 case PV_INEX: return &curbuf->b_p_inex_flags;
5338 # endif
5339 #endif
5342 /* Nothing special, return global flags field. */
5343 return &options[opt_idx].flags;
5345 #endif
5347 #ifdef FEAT_TITLE
5348 static void redraw_titles __ARGS((void));
5351 * Redraw the window title and/or tab page text later.
5353 static void redraw_titles()
5355 need_maketitle = TRUE;
5356 # ifdef FEAT_WINDOWS
5357 redraw_tabline = TRUE;
5358 # endif
5360 #endif
5363 * Set a string option to a new value (without checking the effect).
5364 * The string is copied into allocated memory.
5365 * if ("opt_idx" == -1) "name" is used, otherwise "opt_idx" is used.
5366 * When "set_sid" is zero set the scriptID to current_SID. When "set_sid" is
5367 * SID_NONE don't set the scriptID. Otherwise set the scriptID to "set_sid".
5369 /*ARGSUSED*/
5370 void
5371 set_string_option_direct(name, opt_idx, val, opt_flags, set_sid)
5372 char_u *name;
5373 int opt_idx;
5374 char_u *val;
5375 int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */
5376 int set_sid;
5378 char_u *s;
5379 char_u **varp;
5380 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
5381 int idx = opt_idx;
5383 if (idx == -1) /* use name */
5385 idx = findoption(name);
5386 if (idx < 0) /* not found (should not happen) */
5388 EMSG2(_(e_intern2), "set_string_option_direct()");
5389 return;
5393 if (options[idx].var == NULL) /* can't set hidden option */
5394 return;
5396 s = vim_strsave(val);
5397 if (s != NULL)
5399 varp = (char_u **)get_varp_scope(&(options[idx]),
5400 both ? OPT_LOCAL : opt_flags);
5401 if ((opt_flags & OPT_FREE) && (options[idx].flags & P_ALLOCED))
5402 free_string_option(*varp);
5403 *varp = s;
5405 /* For buffer/window local option may also set the global value. */
5406 if (both)
5407 set_string_option_global(idx, varp);
5409 options[idx].flags |= P_ALLOCED;
5411 /* When setting both values of a global option with a local value,
5412 * make the local value empty, so that the global value is used. */
5413 if (((int)options[idx].indir & PV_BOTH) && both)
5415 free_string_option(*varp);
5416 *varp = empty_option;
5418 # ifdef FEAT_EVAL
5419 if (set_sid != SID_NONE)
5420 set_option_scriptID_idx(idx, opt_flags,
5421 set_sid == 0 ? current_SID : set_sid);
5422 # endif
5427 * Set global value for string option when it's a local option.
5429 static void
5430 set_string_option_global(opt_idx, varp)
5431 int opt_idx; /* option index */
5432 char_u **varp; /* pointer to option variable */
5434 char_u **p, *s;
5436 /* the global value is always allocated */
5437 if (options[opt_idx].var == VAR_WIN)
5438 p = (char_u **)GLOBAL_WO(varp);
5439 else
5440 p = (char_u **)options[opt_idx].var;
5441 if (options[opt_idx].indir != PV_NONE
5442 && p != varp
5443 && (s = vim_strsave(*varp)) != NULL)
5445 free_string_option(*p);
5446 *p = s;
5451 * Set a string option to a new value, and handle the effects.
5453 static void
5454 set_string_option(opt_idx, value, opt_flags)
5455 int opt_idx;
5456 char_u *value;
5457 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
5459 char_u *s;
5460 char_u **varp;
5461 char_u *oldval;
5463 if (options[opt_idx].var == NULL) /* don't set hidden option */
5464 return;
5466 s = vim_strsave(value);
5467 if (s != NULL)
5469 varp = (char_u **)get_varp_scope(&(options[opt_idx]),
5470 (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
5471 ? (((int)options[opt_idx].indir & PV_BOTH)
5472 ? OPT_GLOBAL : OPT_LOCAL)
5473 : opt_flags);
5474 oldval = *varp;
5475 *varp = s;
5476 if (did_set_string_option(opt_idx, varp, TRUE, oldval, NULL,
5477 opt_flags) == NULL)
5478 did_set_option(opt_idx, opt_flags, TRUE);
5483 * Handle string options that need some action to perform when changed.
5484 * Returns NULL for success, or an error message for an error.
5486 static char_u *
5487 did_set_string_option(opt_idx, varp, new_value_alloced, oldval, errbuf,
5488 opt_flags)
5489 int opt_idx; /* index in options[] table */
5490 char_u **varp; /* pointer to the option variable */
5491 int new_value_alloced; /* new value was allocated */
5492 char_u *oldval; /* previous value of the option */
5493 char_u *errbuf; /* buffer for errors, or NULL */
5494 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
5496 char_u *errmsg = NULL;
5497 char_u *s, *p;
5498 int did_chartab = FALSE;
5499 char_u **gvarp;
5500 long_u free_oldval = (options[opt_idx].flags & P_ALLOCED);
5501 #ifdef FEAT_GUI
5502 /* set when changing an option that only requires a redraw in the GUI */
5503 int redraw_gui_only = FALSE;
5504 #endif
5506 /* Get the global option to compare with, otherwise we would have to check
5507 * two values for all local options. */
5508 gvarp = (char_u **)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL);
5510 /* Disallow changing some options from secure mode */
5511 if ((secure
5512 #ifdef HAVE_SANDBOX
5513 || sandbox != 0
5514 #endif
5515 ) && (options[opt_idx].flags & P_SECURE))
5517 errmsg = e_secure;
5520 /* Check for a "normal" file name in some options. Disallow a path
5521 * separator (slash and/or backslash), wildcards and characters that are
5522 * often illegal in a file name. */
5523 else if ((options[opt_idx].flags & P_NFNAME)
5524 && vim_strpbrk(*varp, (char_u *)"/\\*?[|<>") != NULL)
5526 errmsg = e_invarg;
5529 /* 'term' */
5530 else if (varp == &T_NAME)
5532 if (T_NAME[0] == NUL)
5533 errmsg = (char_u *)N_("E529: Cannot set 'term' to empty string");
5534 #ifdef FEAT_GUI
5535 if (gui.in_use)
5536 errmsg = (char_u *)N_("E530: Cannot change term in GUI");
5537 else if (term_is_gui(T_NAME))
5538 errmsg = (char_u *)N_("E531: Use \":gui\" to start the GUI");
5539 #endif
5540 else if (set_termname(T_NAME) == FAIL)
5541 errmsg = (char_u *)N_("E522: Not found in termcap");
5542 else
5543 /* Screen colors may have changed. */
5544 redraw_later_clear();
5547 /* 'backupcopy' */
5548 else if (varp == &p_bkc)
5550 if (opt_strings_flags(p_bkc, p_bkc_values, &bkc_flags, TRUE) != OK)
5551 errmsg = e_invarg;
5552 if (((bkc_flags & BKC_AUTO) != 0)
5553 + ((bkc_flags & BKC_YES) != 0)
5554 + ((bkc_flags & BKC_NO) != 0) != 1)
5556 /* Must have exactly one of "auto", "yes" and "no". */
5557 (void)opt_strings_flags(oldval, p_bkc_values, &bkc_flags, TRUE);
5558 errmsg = e_invarg;
5562 /* 'backupext' and 'patchmode' */
5563 else if (varp == &p_bex || varp == &p_pm)
5565 if (STRCMP(*p_bex == '.' ? p_bex + 1 : p_bex,
5566 *p_pm == '.' ? p_pm + 1 : p_pm) == 0)
5567 errmsg = (char_u *)N_("E589: 'backupext' and 'patchmode' are equal");
5571 * 'isident', 'iskeyword', 'isprint or 'isfname' option: refill chartab[]
5572 * If the new option is invalid, use old value. 'lisp' option: refill
5573 * chartab[] for '-' char
5575 else if ( varp == &p_isi
5576 || varp == &(curbuf->b_p_isk)
5577 || varp == &p_isp
5578 || varp == &p_isf)
5580 if (init_chartab() == FAIL)
5582 did_chartab = TRUE; /* need to restore it below */
5583 errmsg = e_invarg; /* error in value */
5587 /* 'helpfile' */
5588 else if (varp == &p_hf)
5590 /* May compute new values for $VIM and $VIMRUNTIME */
5591 if (didset_vim)
5593 vim_setenv((char_u *)"VIM", (char_u *)"");
5594 didset_vim = FALSE;
5596 if (didset_vimruntime)
5598 vim_setenv((char_u *)"VIMRUNTIME", (char_u *)"");
5599 didset_vimruntime = FALSE;
5603 #ifdef FEAT_MULTI_LANG
5604 /* 'helplang' */
5605 else if (varp == &p_hlg)
5607 /* Check for "", "ab", "ab,cd", etc. */
5608 for (s = p_hlg; *s != NUL; s += 3)
5610 if (s[1] == NUL || ((s[2] != ',' || s[3] == NUL) && s[2] != NUL))
5612 errmsg = e_invarg;
5613 break;
5615 if (s[2] == NUL)
5616 break;
5619 #endif
5621 /* 'highlight' */
5622 else if (varp == &p_hl)
5624 if (highlight_changed() == FAIL)
5625 errmsg = e_invarg; /* invalid flags */
5628 /* 'nrformats' */
5629 else if (gvarp == &p_nf)
5631 if (check_opt_strings(*varp, p_nf_values, TRUE) != OK)
5632 errmsg = e_invarg;
5635 #ifdef FEAT_SESSION
5636 /* 'sessionoptions' */
5637 else if (varp == &p_ssop)
5639 if (opt_strings_flags(p_ssop, p_ssop_values, &ssop_flags, TRUE) != OK)
5640 errmsg = e_invarg;
5641 if ((ssop_flags & SSOP_CURDIR) && (ssop_flags & SSOP_SESDIR))
5643 /* Don't allow both "sesdir" and "curdir". */
5644 (void)opt_strings_flags(oldval, p_ssop_values, &ssop_flags, TRUE);
5645 errmsg = e_invarg;
5648 /* 'viewoptions' */
5649 else if (varp == &p_vop)
5651 if (opt_strings_flags(p_vop, p_ssop_values, &vop_flags, TRUE) != OK)
5652 errmsg = e_invarg;
5654 #endif
5656 /* 'scrollopt' */
5657 #ifdef FEAT_SCROLLBIND
5658 else if (varp == &p_sbo)
5660 if (check_opt_strings(p_sbo, p_scbopt_values, TRUE) != OK)
5661 errmsg = e_invarg;
5663 #endif
5665 /* 'ambiwidth' */
5666 #ifdef FEAT_MBYTE
5667 else if (varp == &p_ambw)
5669 if (check_opt_strings(p_ambw, p_ambw_values, FALSE) != OK)
5670 errmsg = e_invarg;
5672 #endif
5674 /* 'background' */
5675 else if (varp == &p_bg)
5677 if (check_opt_strings(p_bg, p_bg_values, FALSE) == OK)
5679 #ifdef FEAT_EVAL
5680 int dark = (*p_bg == 'd');
5681 #endif
5683 init_highlight(FALSE, FALSE);
5685 #ifdef FEAT_EVAL
5686 if (dark != (*p_bg == 'd')
5687 && get_var_value((char_u *)"g:colors_name") != NULL)
5689 /* The color scheme must have set 'background' back to another
5690 * value, that's not what we want here. Disable the color
5691 * scheme and set the colors again. */
5692 do_unlet((char_u *)"g:colors_name", TRUE);
5693 free_string_option(p_bg);
5694 p_bg = vim_strsave((char_u *)(dark ? "dark" : "light"));
5695 check_string_option(&p_bg);
5696 init_highlight(FALSE, FALSE);
5698 #endif
5700 else
5701 errmsg = e_invarg;
5704 /* 'wildmode' */
5705 else if (varp == &p_wim)
5707 if (check_opt_wim() == FAIL)
5708 errmsg = e_invarg;
5711 #ifdef FEAT_CMDL_COMPL
5712 /* 'wildoptions' */
5713 else if (varp == &p_wop)
5715 if (check_opt_strings(p_wop, p_wop_values, TRUE) != OK)
5716 errmsg = e_invarg;
5718 #endif
5720 #ifdef FEAT_WAK
5721 /* 'winaltkeys' */
5722 else if (varp == &p_wak)
5724 if (*p_wak == NUL
5725 || check_opt_strings(p_wak, p_wak_values, FALSE) != OK)
5726 errmsg = e_invarg;
5727 # ifdef FEAT_MENU
5728 # ifdef FEAT_GUI_MOTIF
5729 else if (gui.in_use)
5730 gui_motif_set_mnemonics(p_wak[0] == 'y' || p_wak[0] == 'm');
5731 # else
5732 # ifdef FEAT_GUI_GTK
5733 else if (gui.in_use)
5734 gui_gtk_set_mnemonics(p_wak[0] == 'y' || p_wak[0] == 'm');
5735 # endif
5736 # endif
5737 # endif
5739 #endif
5741 #ifdef FEAT_AUTOCMD
5742 /* 'eventignore' */
5743 else if (varp == &p_ei)
5745 if (check_ei() == FAIL)
5746 errmsg = e_invarg;
5748 #endif
5750 #ifdef FEAT_MBYTE
5751 /* 'encoding' and 'fileencoding' */
5752 else if (varp == &p_enc || gvarp == &p_fenc || varp == &p_tenc)
5754 if (gvarp == &p_fenc)
5756 if (!curbuf->b_p_ma && opt_flags != OPT_GLOBAL)
5757 errmsg = e_modifiable;
5758 else if (vim_strchr(*varp, ',') != NULL)
5759 /* No comma allowed in 'fileencoding'; catches confusing it
5760 * with 'fileencodings'. */
5761 errmsg = e_invarg;
5762 else
5764 # ifdef FEAT_TITLE
5765 /* May show a "+" in the title now. */
5766 redraw_titles();
5767 # endif
5768 /* Add 'fileencoding' to the swap file. */
5769 ml_setflags(curbuf);
5772 if (errmsg == NULL)
5774 /* canonize the value, so that STRCMP() can be used on it */
5775 p = enc_canonize(*varp);
5776 if (p != NULL)
5778 vim_free(*varp);
5779 *varp = p;
5781 if (varp == &p_enc)
5783 errmsg = mb_init();
5784 # ifdef FEAT_TITLE
5785 redraw_titles();
5786 # endif
5790 # if (defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)) || defined(FEAT_GUI_MACVIM)
5791 if (errmsg == NULL && varp == &p_tenc && gui.in_use)
5793 /* MacVim and GTK+ 2 GUIs force 'tenc' to UTF-8. */
5794 if (STRCMP(p_tenc, "utf-8") != 0)
5795 # if defined(FEAT_GUI_MACVIM)
5796 errmsg = (char_u *)N_("E617: Cannot be changed in MacVim");
5797 # else
5798 errmsg = (char_u *)N_("E617: Cannot be changed in the GTK+ 2 GUI");
5799 # endif
5801 # endif
5803 if (errmsg == NULL)
5805 # ifdef FEAT_KEYMAP
5806 /* When 'keymap' is used and 'encoding' changes, reload the keymap
5807 * (with another encoding). */
5808 if (varp == &p_enc && *curbuf->b_p_keymap != NUL)
5809 (void)keymap_init();
5810 # endif
5812 /* When 'termencoding' is not empty and 'encoding' changes or when
5813 * 'termencoding' changes, need to setup for keyboard input and
5814 * display output conversion. */
5815 if (((varp == &p_enc && *p_tenc != NUL) || varp == &p_tenc))
5817 convert_setup(&input_conv, p_tenc, p_enc);
5818 convert_setup(&output_conv, p_enc, p_tenc);
5821 # if defined(WIN3264) && defined(FEAT_MBYTE)
5822 /* $HOME may have characters in active code page. */
5823 if (varp == &p_enc)
5824 init_homedir();
5825 # endif
5828 #endif
5830 #if defined(FEAT_POSTSCRIPT)
5831 else if (varp == &p_penc)
5833 /* Canonize printencoding if VIM standard one */
5834 p = enc_canonize(p_penc);
5835 if (p != NULL)
5837 vim_free(p_penc);
5838 p_penc = p;
5840 else
5842 /* Ensure lower case and '-' for '_' */
5843 for (s = p_penc; *s != NUL; s++)
5845 if (*s == '_')
5846 *s = '-';
5847 else
5848 *s = TOLOWER_ASC(*s);
5852 #endif
5854 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
5855 else if (varp == &p_imak)
5857 if (gui.in_use && !im_xim_isvalid_imactivate())
5858 errmsg = e_invarg;
5860 #endif
5862 #ifdef FEAT_KEYMAP
5863 else if (varp == &curbuf->b_p_keymap)
5865 /* load or unload key mapping tables */
5866 errmsg = keymap_init();
5868 if (errmsg == NULL)
5870 if (*curbuf->b_p_keymap != NUL)
5872 /* Installed a new keymap, switch on using it. */
5873 curbuf->b_p_iminsert = B_IMODE_LMAP;
5874 if (curbuf->b_p_imsearch != B_IMODE_USE_INSERT)
5875 curbuf->b_p_imsearch = B_IMODE_LMAP;
5877 else
5879 /* Cleared the keymap, may reset 'iminsert' and 'imsearch'. */
5880 if (curbuf->b_p_iminsert == B_IMODE_LMAP)
5881 curbuf->b_p_iminsert = B_IMODE_NONE;
5882 if (curbuf->b_p_imsearch == B_IMODE_LMAP)
5883 curbuf->b_p_imsearch = B_IMODE_USE_INSERT;
5885 if ((opt_flags & OPT_LOCAL) == 0)
5887 set_iminsert_global();
5888 set_imsearch_global();
5890 # ifdef FEAT_WINDOWS
5891 status_redraw_curbuf();
5892 # endif
5895 #endif
5897 /* 'fileformat' */
5898 else if (gvarp == &p_ff)
5900 if (!curbuf->b_p_ma && !(opt_flags & OPT_GLOBAL))
5901 errmsg = e_modifiable;
5902 else if (check_opt_strings(*varp, p_ff_values, FALSE) != OK)
5903 errmsg = e_invarg;
5904 else
5906 /* may also change 'textmode' */
5907 if (get_fileformat(curbuf) == EOL_DOS)
5908 curbuf->b_p_tx = TRUE;
5909 else
5910 curbuf->b_p_tx = FALSE;
5911 #ifdef FEAT_TITLE
5912 redraw_titles();
5913 #endif
5914 /* update flag in swap file */
5915 ml_setflags(curbuf);
5919 /* 'fileformats' */
5920 else if (varp == &p_ffs)
5922 if (check_opt_strings(p_ffs, p_ff_values, TRUE) != OK)
5923 errmsg = e_invarg;
5924 else
5926 /* also change 'textauto' */
5927 if (*p_ffs == NUL)
5928 p_ta = FALSE;
5929 else
5930 p_ta = TRUE;
5934 #if defined(FEAT_CRYPT) && defined(FEAT_CMDHIST)
5935 /* 'cryptkey' */
5936 else if (gvarp == &p_key)
5938 /* Make sure the ":set" command doesn't show the new value in the
5939 * history. */
5940 remove_key_from_history();
5942 #endif
5944 /* 'matchpairs' */
5945 else if (gvarp == &p_mps)
5947 /* Check for "x:y,x:y" */
5948 for (p = *varp; *p != NUL; p += 4)
5950 if (p[1] != ':' || p[2] == NUL || (p[3] != NUL && p[3] != ','))
5952 errmsg = e_invarg;
5953 break;
5955 if (p[3] == NUL)
5956 break;
5960 #ifdef FEAT_COMMENTS
5961 /* 'comments' */
5962 else if (gvarp == &p_com)
5964 for (s = *varp; *s; )
5966 while (*s && *s != ':')
5968 if (vim_strchr((char_u *)COM_ALL, *s) == NULL
5969 && !VIM_ISDIGIT(*s) && *s != '-')
5971 errmsg = illegal_char(errbuf, *s);
5972 break;
5974 ++s;
5976 if (*s++ == NUL)
5977 errmsg = (char_u *)N_("E524: Missing colon");
5978 else if (*s == ',' || *s == NUL)
5979 errmsg = (char_u *)N_("E525: Zero length string");
5980 if (errmsg != NULL)
5981 break;
5982 while (*s && *s != ',')
5984 if (*s == '\\' && s[1] != NUL)
5985 ++s;
5986 ++s;
5988 s = skip_to_option_part(s);
5991 #endif
5993 /* 'listchars' */
5994 else if (varp == &p_lcs)
5996 errmsg = set_chars_option(varp);
5999 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6000 /* 'fillchars' */
6001 else if (varp == &p_fcs)
6003 errmsg = set_chars_option(varp);
6005 #endif
6007 #ifdef FEAT_CMDWIN
6008 /* 'cedit' */
6009 else if (varp == &p_cedit)
6011 errmsg = check_cedit();
6013 #endif
6015 /* 'verbosefile' */
6016 else if (varp == &p_vfile)
6018 verbose_stop();
6019 if (*p_vfile != NUL && verbose_open() == FAIL)
6020 errmsg = e_invarg;
6023 #ifdef FEAT_VIMINFO
6024 /* 'viminfo' */
6025 else if (varp == &p_viminfo)
6027 for (s = p_viminfo; *s;)
6029 /* Check it's a valid character */
6030 if (vim_strchr((char_u *)"!\"%'/:<@cfhnrs", *s) == NULL)
6032 errmsg = illegal_char(errbuf, *s);
6033 break;
6035 if (*s == 'n') /* name is always last one */
6037 break;
6039 else if (*s == 'r') /* skip until next ',' */
6041 while (*++s && *s != ',')
6044 else if (*s == '%')
6046 /* optional number */
6047 while (vim_isdigit(*++s))
6050 else if (*s == '!' || *s == 'h' || *s == 'c')
6051 ++s; /* no extra chars */
6052 else /* must have a number */
6054 while (vim_isdigit(*++s))
6057 if (!VIM_ISDIGIT(*(s - 1)))
6059 if (errbuf != NULL)
6061 sprintf((char *)errbuf,
6062 _("E526: Missing number after <%s>"),
6063 transchar_byte(*(s - 1)));
6064 errmsg = errbuf;
6066 else
6067 errmsg = (char_u *)"";
6068 break;
6071 if (*s == ',')
6072 ++s;
6073 else if (*s)
6075 if (errbuf != NULL)
6076 errmsg = (char_u *)N_("E527: Missing comma");
6077 else
6078 errmsg = (char_u *)"";
6079 break;
6082 if (*p_viminfo && errmsg == NULL && get_viminfo_parameter('\'') < 0)
6083 errmsg = (char_u *)N_("E528: Must specify a ' value");
6085 #endif /* FEAT_VIMINFO */
6087 /* terminal options */
6088 else if (istermoption(&options[opt_idx]) && full_screen)
6090 /* ":set t_Co=0" and ":set t_Co=1" do ":set t_Co=" */
6091 if (varp == &T_CCO)
6093 int colors = atoi((char *)T_CCO);
6095 /* Only reinitialize colors if t_Co value has really changed to
6096 * avoid expensive reload of colorscheme if t_Co is set to the
6097 * same value multiple times. */
6098 if (colors != t_colors)
6100 t_colors = colors;
6101 if (t_colors <= 1)
6103 if (new_value_alloced)
6104 vim_free(T_CCO);
6105 T_CCO = empty_option;
6107 /* We now have a different color setup, initialize it again. */
6108 init_highlight(TRUE, FALSE);
6111 ttest(FALSE);
6112 if (varp == &T_ME)
6114 out_str(T_ME);
6115 redraw_later(CLEAR);
6116 #if defined(MSDOS) || (defined(WIN3264) && !defined(FEAT_GUI_W32))
6117 /* Since t_me has been set, this probably means that the user
6118 * wants to use this as default colors. Need to reset default
6119 * background/foreground colors. */
6120 mch_set_normal_colors();
6121 #endif
6125 #ifdef FEAT_LINEBREAK
6126 /* 'showbreak' */
6127 else if (varp == &p_sbr)
6129 for (s = p_sbr; *s; )
6131 if (ptr2cells(s) != 1)
6132 errmsg = (char_u *)N_("E595: contains unprintable or wide character");
6133 mb_ptr_adv(s);
6136 #endif
6138 #ifdef FEAT_GUI
6139 /* 'guifont' */
6140 else if (varp == &p_guifont)
6142 if (gui.in_use)
6144 p = p_guifont;
6145 # if defined(FEAT_GUI_GTK)
6147 * Put up a font dialog and let the user select a new value.
6148 * If this is cancelled go back to the old value but don't
6149 * give an error message.
6151 if (STRCMP(p, "*") == 0)
6153 p = gui_mch_font_dialog(oldval);
6155 if (new_value_alloced)
6156 free_string_option(p_guifont);
6158 p_guifont = (p != NULL) ? p : vim_strsave(oldval);
6159 new_value_alloced = TRUE;
6161 # endif
6162 if (p != NULL && gui_init_font(p_guifont, FALSE) != OK)
6164 # if defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_PHOTON) \
6165 || defined(FEAT_GUI_MACVIM)
6166 if (STRCMP(p_guifont, "*") == 0)
6168 /* Dialog was cancelled: Keep the old value without giving
6169 * an error message. */
6170 if (new_value_alloced)
6171 free_string_option(p_guifont);
6172 p_guifont = vim_strsave(oldval);
6173 new_value_alloced = TRUE;
6175 else
6176 # endif
6177 errmsg = (char_u *)N_("E596: Invalid font(s)");
6180 redraw_gui_only = TRUE;
6182 # ifdef FEAT_XFONTSET
6183 else if (varp == &p_guifontset)
6185 if (STRCMP(p_guifontset, "*") == 0)
6186 errmsg = (char_u *)N_("E597: can't select fontset");
6187 else if (gui.in_use && gui_init_font(p_guifontset, TRUE) != OK)
6188 errmsg = (char_u *)N_("E598: Invalid fontset");
6189 redraw_gui_only = TRUE;
6191 # endif
6192 # ifdef FEAT_MBYTE
6193 else if (varp == &p_guifontwide)
6195 if (STRCMP(p_guifontwide, "*") == 0)
6196 errmsg = (char_u *)N_("E533: can't select wide font");
6197 else if (gui_get_wide_font() == FAIL)
6198 errmsg = (char_u *)N_("E534: Invalid wide font");
6199 redraw_gui_only = TRUE;
6201 # endif
6202 #endif
6204 #ifdef CURSOR_SHAPE
6205 /* 'guicursor' */
6206 else if (varp == &p_guicursor)
6207 errmsg = parse_shape_opt(SHAPE_CURSOR);
6208 #endif
6210 #ifdef FEAT_MOUSESHAPE
6211 /* 'mouseshape' */
6212 else if (varp == &p_mouseshape)
6214 errmsg = parse_shape_opt(SHAPE_MOUSE);
6215 update_mouseshape(-1);
6217 #endif
6219 #ifdef FEAT_PRINTER
6220 else if (varp == &p_popt)
6221 errmsg = parse_printoptions();
6222 # if defined(FEAT_MBYTE) && defined(FEAT_POSTSCRIPT)
6223 else if (varp == &p_pmfn)
6224 errmsg = parse_printmbfont();
6225 # endif
6226 #endif
6228 #ifdef FEAT_LANGMAP
6229 /* 'langmap' */
6230 else if (varp == &p_langmap)
6231 langmap_set();
6232 #endif
6234 #ifdef FEAT_LINEBREAK
6235 /* 'breakat' */
6236 else if (varp == &p_breakat)
6237 fill_breakat_flags();
6238 #endif
6240 #ifdef FEAT_TITLE
6241 /* 'titlestring' and 'iconstring' */
6242 else if (varp == &p_titlestring || varp == &p_iconstring)
6244 # ifdef FEAT_STL_OPT
6245 int flagval = (varp == &p_titlestring) ? STL_IN_TITLE : STL_IN_ICON;
6247 /* NULL => statusline syntax */
6248 if (vim_strchr(*varp, '%') && check_stl_option(*varp) == NULL)
6249 stl_syntax |= flagval;
6250 else
6251 stl_syntax &= ~flagval;
6252 # endif
6253 did_set_title(varp == &p_iconstring);
6256 #endif
6258 #ifdef FEAT_GUI
6259 /* 'guioptions' */
6260 else if (varp == &p_go)
6262 gui_init_which_components(oldval);
6263 redraw_gui_only = TRUE;
6265 #endif
6267 #if defined(FEAT_GUI_TABLINE)
6268 /* 'guitablabel' */
6269 else if (varp == &p_gtl)
6271 redraw_tabline = TRUE;
6272 redraw_gui_only = TRUE;
6274 /* 'guitabtooltip' */
6275 else if (varp == &p_gtt)
6277 redraw_gui_only = TRUE;
6279 #endif
6281 #if defined(FEAT_MOUSE_TTY) && (defined(UNIX) || defined(VMS))
6282 /* 'ttymouse' */
6283 else if (varp == &p_ttym)
6285 /* Switch the mouse off before changing the escape sequences used for
6286 * that. */
6287 mch_setmouse(FALSE);
6288 if (opt_strings_flags(p_ttym, p_ttym_values, &ttym_flags, FALSE) != OK)
6289 errmsg = e_invarg;
6290 else
6291 check_mouse_termcode();
6292 if (termcap_active)
6293 setmouse(); /* may switch it on again */
6295 #endif
6297 #ifdef FEAT_VISUAL
6298 /* 'selection' */
6299 else if (varp == &p_sel)
6301 if (*p_sel == NUL
6302 || check_opt_strings(p_sel, p_sel_values, FALSE) != OK)
6303 errmsg = e_invarg;
6306 /* 'selectmode' */
6307 else if (varp == &p_slm)
6309 if (check_opt_strings(p_slm, p_slm_values, TRUE) != OK)
6310 errmsg = e_invarg;
6312 #endif
6314 #ifdef FEAT_BROWSE
6315 /* 'browsedir' */
6316 else if (varp == &p_bsdir)
6318 if (check_opt_strings(p_bsdir, p_bsdir_values, FALSE) != OK
6319 && !mch_isdir(p_bsdir))
6320 errmsg = e_invarg;
6322 #endif
6324 #ifdef FEAT_VISUAL
6325 /* 'keymodel' */
6326 else if (varp == &p_km)
6328 if (check_opt_strings(p_km, p_km_values, TRUE) != OK)
6329 errmsg = e_invarg;
6330 else
6332 km_stopsel = (vim_strchr(p_km, 'o') != NULL);
6333 km_startsel = (vim_strchr(p_km, 'a') != NULL);
6336 #endif
6338 /* 'mousemodel' */
6339 else if (varp == &p_mousem)
6341 if (check_opt_strings(p_mousem, p_mousem_values, FALSE) != OK)
6342 errmsg = e_invarg;
6343 #if defined(FEAT_GUI_MOTIF) && defined(FEAT_MENU) && (XmVersion <= 1002)
6344 else if (*p_mousem != *oldval)
6345 /* Changed from "extend" to "popup" or "popup_setpos" or vv: need
6346 * to create or delete the popup menus. */
6347 gui_motif_update_mousemodel(root_menu);
6348 #endif
6351 /* 'switchbuf' */
6352 else if (varp == &p_swb)
6354 if (opt_strings_flags(p_swb, p_swb_values, &swb_flags, TRUE) != OK)
6355 errmsg = e_invarg;
6358 /* 'debug' */
6359 else if (varp == &p_debug)
6361 if (check_opt_strings(p_debug, p_debug_values, TRUE) != OK)
6362 errmsg = e_invarg;
6365 /* 'display' */
6366 else if (varp == &p_dy)
6368 if (opt_strings_flags(p_dy, p_dy_values, &dy_flags, TRUE) != OK)
6369 errmsg = e_invarg;
6370 else
6371 (void)init_chartab();
6375 #ifdef FEAT_VERTSPLIT
6376 /* 'eadirection' */
6377 else if (varp == &p_ead)
6379 if (check_opt_strings(p_ead, p_ead_values, FALSE) != OK)
6380 errmsg = e_invarg;
6382 #endif
6384 #ifdef FEAT_CLIPBOARD
6385 /* 'clipboard' */
6386 else if (varp == &p_cb)
6387 errmsg = check_clipboard_option();
6388 #endif
6390 #ifdef FEAT_SPELL
6391 /* When 'spelllang' or 'spellfile' is set and there is a window for this
6392 * buffer in which 'spell' is set load the wordlists. */
6393 else if (varp == &(curbuf->b_p_spl) || varp == &(curbuf->b_p_spf))
6395 win_T *wp;
6396 int l;
6398 if (varp == &(curbuf->b_p_spf))
6400 l = (int)STRLEN(curbuf->b_p_spf);
6401 if (l > 0 && (l < 4 || STRCMP(curbuf->b_p_spf + l - 4,
6402 ".add") != 0))
6403 errmsg = e_invarg;
6406 if (errmsg == NULL)
6408 FOR_ALL_WINDOWS(wp)
6409 if (wp->w_buffer == curbuf && wp->w_p_spell)
6411 errmsg = did_set_spelllang(curbuf);
6412 # ifdef FEAT_WINDOWS
6413 break;
6414 # endif
6418 /* When 'spellcapcheck' is set compile the regexp program. */
6419 else if (varp == &(curbuf->b_p_spc))
6421 errmsg = compile_cap_prog(curbuf);
6423 /* 'spellsuggest' */
6424 else if (varp == &p_sps)
6426 if (spell_check_sps() != OK)
6427 errmsg = e_invarg;
6429 /* 'mkspellmem' */
6430 else if (varp == &p_msm)
6432 if (spell_check_msm() != OK)
6433 errmsg = e_invarg;
6435 #endif
6437 #ifdef FEAT_QUICKFIX
6438 /* When 'bufhidden' is set, check for valid value. */
6439 else if (gvarp == &p_bh)
6441 if (check_opt_strings(curbuf->b_p_bh, p_bufhidden_values, FALSE) != OK)
6442 errmsg = e_invarg;
6445 /* When 'buftype' is set, check for valid value. */
6446 else if (gvarp == &p_bt)
6448 if (check_opt_strings(curbuf->b_p_bt, p_buftype_values, FALSE) != OK)
6449 errmsg = e_invarg;
6450 else
6452 # ifdef FEAT_WINDOWS
6453 if (curwin->w_status_height)
6455 curwin->w_redr_status = TRUE;
6456 redraw_later(VALID);
6458 # endif
6459 curbuf->b_help = (curbuf->b_p_bt[0] == 'h');
6462 #endif
6464 #ifdef FEAT_STL_OPT
6465 /* 'statusline' or 'rulerformat' */
6466 else if (gvarp == &p_stl || varp == &p_ruf)
6468 int wid;
6470 if (varp == &p_ruf) /* reset ru_wid first */
6471 ru_wid = 0;
6472 s = *varp;
6473 if (varp == &p_ruf && *s == '%')
6475 /* set ru_wid if 'ruf' starts with "%99(" */
6476 if (*++s == '-') /* ignore a '-' */
6477 s++;
6478 wid = getdigits(&s);
6479 if (wid && *s == '(' && (errmsg = check_stl_option(p_ruf)) == NULL)
6480 ru_wid = wid;
6481 else
6482 errmsg = check_stl_option(p_ruf);
6484 /* check 'statusline' only if it doesn't start with "%!" */
6485 else if (varp == &p_ruf || s[0] != '%' || s[1] != '!')
6486 errmsg = check_stl_option(s);
6487 if (varp == &p_ruf && errmsg == NULL)
6488 comp_col();
6490 #endif
6492 #ifdef FEAT_INS_EXPAND
6493 /* check if it is a valid value for 'complete' -- Acevedo */
6494 else if (gvarp == &p_cpt)
6496 for (s = *varp; *s;)
6498 while(*s == ',' || *s == ' ')
6499 s++;
6500 if (!*s)
6501 break;
6502 if (vim_strchr((char_u *)".wbuksid]tU", *s) == NULL)
6504 errmsg = illegal_char(errbuf, *s);
6505 break;
6507 if (*++s != NUL && *s != ',' && *s != ' ')
6509 if (s[-1] == 'k' || s[-1] == 's')
6511 /* skip optional filename after 'k' and 's' */
6512 while (*s && *s != ',' && *s != ' ')
6514 if (*s == '\\')
6515 ++s;
6516 ++s;
6519 else
6521 if (errbuf != NULL)
6523 sprintf((char *)errbuf,
6524 _("E535: Illegal character after <%c>"),
6525 *--s);
6526 errmsg = errbuf;
6528 else
6529 errmsg = (char_u *)"";
6530 break;
6536 /* 'completeopt' */
6537 else if (varp == &p_cot)
6539 if (check_opt_strings(p_cot, p_cot_values, TRUE) != OK)
6540 errmsg = e_invarg;
6542 #endif /* FEAT_INS_EXPAND */
6545 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
6546 else if (varp == &p_toolbar)
6548 if (opt_strings_flags(p_toolbar, p_toolbar_values,
6549 &toolbar_flags, TRUE) != OK)
6550 errmsg = e_invarg;
6551 else
6553 out_flush();
6554 gui_mch_show_toolbar((toolbar_flags &
6555 (TOOLBAR_TEXT | TOOLBAR_ICONS)) != 0);
6558 #endif
6560 #if defined(FEAT_TOOLBAR) && ((defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)) \
6561 || defined(FEAT_GUI_MACVIM))
6562 /* 'toolbariconsize': GTK+ 2 and MacVim only */
6563 else if (varp == &p_tbis)
6565 if (opt_strings_flags(p_tbis, p_tbis_values, &tbis_flags, FALSE) != OK)
6566 errmsg = e_invarg;
6567 else
6569 out_flush();
6570 gui_mch_show_toolbar((toolbar_flags &
6571 (TOOLBAR_TEXT | TOOLBAR_ICONS)) != 0);
6574 #endif
6576 /* 'pastetoggle': translate key codes like in a mapping */
6577 else if (varp == &p_pt)
6579 if (*p_pt)
6581 (void)replace_termcodes(p_pt, &p, TRUE, TRUE, FALSE);
6582 if (p != NULL)
6584 if (new_value_alloced)
6585 free_string_option(p_pt);
6586 p_pt = p;
6587 new_value_alloced = TRUE;
6592 /* 'backspace' */
6593 else if (varp == &p_bs)
6595 if (VIM_ISDIGIT(*p_bs))
6597 if (*p_bs >'2' || p_bs[1] != NUL)
6598 errmsg = e_invarg;
6600 else if (check_opt_strings(p_bs, p_bs_values, TRUE) != OK)
6601 errmsg = e_invarg;
6604 #ifdef FEAT_MBYTE
6605 /* 'casemap' */
6606 else if (varp == &p_cmp)
6608 if (opt_strings_flags(p_cmp, p_cmp_values, &cmp_flags, TRUE) != OK)
6609 errmsg = e_invarg;
6611 #endif
6613 #ifdef FEAT_DIFF
6614 /* 'diffopt' */
6615 else if (varp == &p_dip)
6617 if (diffopt_changed() == FAIL)
6618 errmsg = e_invarg;
6620 #endif
6622 #ifdef FEAT_FOLDING
6623 /* 'foldmethod' */
6624 else if (gvarp == &curwin->w_allbuf_opt.wo_fdm)
6626 if (check_opt_strings(*varp, p_fdm_values, FALSE) != OK
6627 || *curwin->w_p_fdm == NUL)
6628 errmsg = e_invarg;
6629 else
6630 foldUpdateAll(curwin);
6632 # ifdef FEAT_EVAL
6633 /* 'foldexpr' */
6634 else if (varp == &curwin->w_p_fde)
6636 if (foldmethodIsExpr(curwin))
6637 foldUpdateAll(curwin);
6639 # endif
6640 /* 'foldmarker' */
6641 else if (gvarp == &curwin->w_allbuf_opt.wo_fmr)
6643 p = vim_strchr(*varp, ',');
6644 if (p == NULL)
6645 errmsg = (char_u *)N_("E536: comma required");
6646 else if (p == *varp || p[1] == NUL)
6647 errmsg = e_invarg;
6648 else if (foldmethodIsMarker(curwin))
6649 foldUpdateAll(curwin);
6651 /* 'commentstring' */
6652 else if (gvarp == &p_cms)
6654 if (**varp != NUL && strstr((char *)*varp, "%s") == NULL)
6655 errmsg = (char_u *)N_("E537: 'commentstring' must be empty or contain %s");
6657 /* 'foldopen' */
6658 else if (varp == &p_fdo)
6660 if (opt_strings_flags(p_fdo, p_fdo_values, &fdo_flags, TRUE) != OK)
6661 errmsg = e_invarg;
6663 /* 'foldclose' */
6664 else if (varp == &p_fcl)
6666 if (check_opt_strings(p_fcl, p_fcl_values, TRUE) != OK)
6667 errmsg = e_invarg;
6669 /* 'foldignore' */
6670 else if (gvarp == &curwin->w_allbuf_opt.wo_fdi)
6672 if (foldmethodIsIndent(curwin))
6673 foldUpdateAll(curwin);
6675 #endif
6677 #ifdef FEAT_FULLSCREEN
6678 /* 'fuoptions' */
6679 else if (varp == &p_fuoptions)
6681 if (check_fuoptions(p_fuoptions, &fuoptions_flags,
6682 &fuoptions_bgcolor) != OK)
6683 errmsg = e_invarg;
6685 #endif
6687 #ifdef FEAT_VIRTUALEDIT
6688 /* 'virtualedit' */
6689 else if (varp == &p_ve)
6691 if (opt_strings_flags(p_ve, p_ve_values, &ve_flags, TRUE) != OK)
6692 errmsg = e_invarg;
6693 else if (STRCMP(p_ve, oldval) != 0)
6695 /* Recompute cursor position in case the new 've' setting
6696 * changes something. */
6697 validate_virtcol();
6698 coladvance(curwin->w_virtcol);
6701 #endif
6703 #if defined(FEAT_CSCOPE) && defined(FEAT_QUICKFIX)
6704 else if (varp == &p_csqf)
6706 if (p_csqf != NULL)
6708 p = p_csqf;
6709 while (*p != NUL)
6711 if (vim_strchr((char_u *)CSQF_CMDS, *p) == NULL
6712 || p[1] == NUL
6713 || vim_strchr((char_u *)CSQF_FLAGS, p[1]) == NULL
6714 || (p[2] != NUL && p[2] != ','))
6716 errmsg = e_invarg;
6717 break;
6719 else if (p[2] == NUL)
6720 break;
6721 else
6722 p += 3;
6726 #endif
6728 /* Options that are a list of flags. */
6729 else
6731 p = NULL;
6732 if (varp == &p_ww)
6733 p = (char_u *)WW_ALL;
6734 if (varp == &p_shm)
6735 p = (char_u *)SHM_ALL;
6736 else if (varp == &(p_cpo))
6737 p = (char_u *)CPO_ALL;
6738 else if (varp == &(curbuf->b_p_fo))
6739 p = (char_u *)FO_ALL;
6740 else if (varp == &p_mouse)
6742 #ifdef FEAT_MOUSE
6743 p = (char_u *)MOUSE_ALL;
6744 #else
6745 if (*p_mouse != NUL)
6746 errmsg = (char_u *)N_("E538: No mouse support");
6747 #endif
6749 #if defined(FEAT_GUI)
6750 else if (varp == &p_go)
6751 p = (char_u *)GO_ALL;
6752 #endif
6753 if (p != NULL)
6755 for (s = *varp; *s; ++s)
6756 if (vim_strchr(p, *s) == NULL)
6758 errmsg = illegal_char(errbuf, *s);
6759 break;
6765 * If error detected, restore the previous value.
6767 if (errmsg != NULL)
6769 if (new_value_alloced)
6770 free_string_option(*varp);
6771 *varp = oldval;
6773 * When resetting some values, need to act on it.
6775 if (did_chartab)
6776 (void)init_chartab();
6777 if (varp == &p_hl)
6778 (void)highlight_changed();
6780 else
6782 #ifdef FEAT_EVAL
6783 /* Remember where the option was set. */
6784 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
6785 #endif
6787 * Free string options that are in allocated memory.
6788 * Use "free_oldval", because recursiveness may change the flags under
6789 * our fingers (esp. init_highlight()).
6791 if (free_oldval)
6792 free_string_option(oldval);
6793 if (new_value_alloced)
6794 options[opt_idx].flags |= P_ALLOCED;
6795 else
6796 options[opt_idx].flags &= ~P_ALLOCED;
6798 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
6799 && ((int)options[opt_idx].indir & PV_BOTH))
6801 /* global option with local value set to use global value; free
6802 * the local value and make it empty */
6803 p = get_varp_scope(&(options[opt_idx]), OPT_LOCAL);
6804 free_string_option(*(char_u **)p);
6805 *(char_u **)p = empty_option;
6808 /* May set global value for local option. */
6809 else if (!(opt_flags & OPT_LOCAL) && opt_flags != OPT_GLOBAL)
6810 set_string_option_global(opt_idx, varp);
6812 #ifdef FEAT_AUTOCMD
6814 * Trigger the autocommand only after setting the flags.
6816 # ifdef FEAT_SYN_HL
6817 /* When 'syntax' is set, load the syntax of that name */
6818 if (varp == &(curbuf->b_p_syn))
6820 apply_autocmds(EVENT_SYNTAX, curbuf->b_p_syn,
6821 curbuf->b_fname, TRUE, curbuf);
6823 # endif
6824 else if (varp == &(curbuf->b_p_ft))
6826 /* 'filetype' is set, trigger the FileType autocommand */
6827 did_filetype = TRUE;
6828 apply_autocmds(EVENT_FILETYPE, curbuf->b_p_ft,
6829 curbuf->b_fname, TRUE, curbuf);
6831 #endif
6832 #ifdef FEAT_SPELL
6833 if (varp == &(curbuf->b_p_spl))
6835 char_u fname[200];
6838 * Source the spell/LANG.vim in 'runtimepath'.
6839 * They could set 'spellcapcheck' depending on the language.
6840 * Use the first name in 'spelllang' up to '_region' or
6841 * '.encoding'.
6843 for (p = curbuf->b_p_spl; *p != NUL; ++p)
6844 if (vim_strchr((char_u *)"_.,", *p) != NULL)
6845 break;
6846 vim_snprintf((char *)fname, 200, "spell/%.*s.vim",
6847 (int)(p - curbuf->b_p_spl), curbuf->b_p_spl);
6848 source_runtime(fname, TRUE);
6850 #endif
6853 #ifdef FEAT_MOUSE
6854 if (varp == &p_mouse)
6856 # ifdef FEAT_MOUSE_TTY
6857 if (*p_mouse == NUL)
6858 mch_setmouse(FALSE); /* switch mouse off */
6859 else
6860 # endif
6861 setmouse(); /* in case 'mouse' changed */
6863 #endif
6865 if (curwin->w_curswant != MAXCOL)
6866 curwin->w_set_curswant = TRUE; /* in case 'showbreak' changed */
6867 #ifdef FEAT_GUI
6868 /* check redraw when it's not a GUI option or the GUI is active. */
6869 if (!redraw_gui_only || gui.in_use)
6870 #endif
6871 check_redraw(options[opt_idx].flags);
6873 return errmsg;
6877 * Handle setting 'listchars' or 'fillchars'.
6878 * Returns error message, NULL if it's OK.
6880 static char_u *
6881 set_chars_option(varp)
6882 char_u **varp;
6884 int round, i, len, entries;
6885 char_u *p, *s;
6886 int c1, c2 = 0;
6887 struct charstab
6889 int *cp;
6890 char *name;
6892 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6893 static struct charstab filltab[] =
6895 {&fill_stl, "stl"},
6896 {&fill_stlnc, "stlnc"},
6897 {&fill_vert, "vert"},
6898 {&fill_fold, "fold"},
6899 {&fill_diff, "diff"},
6901 #endif
6902 static struct charstab lcstab[] =
6904 {&lcs_eol, "eol"},
6905 {&lcs_ext, "extends"},
6906 {&lcs_nbsp, "nbsp"},
6907 {&lcs_prec, "precedes"},
6908 {&lcs_tab2, "tab"},
6909 {&lcs_trail, "trail"},
6911 struct charstab *tab;
6913 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6914 if (varp == &p_lcs)
6915 #endif
6917 tab = lcstab;
6918 entries = sizeof(lcstab) / sizeof(struct charstab);
6920 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6921 else
6923 tab = filltab;
6924 entries = sizeof(filltab) / sizeof(struct charstab);
6926 #endif
6928 /* first round: check for valid value, second round: assign values */
6929 for (round = 0; round <= 1; ++round)
6931 if (round)
6933 /* After checking that the value is valid: set defaults: space for
6934 * 'fillchars', NUL for 'listchars' */
6935 for (i = 0; i < entries; ++i)
6936 *(tab[i].cp) = (varp == &p_lcs ? NUL : ' ');
6937 if (varp == &p_lcs)
6938 lcs_tab1 = NUL;
6939 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6940 else
6941 fill_diff = '-';
6942 #endif
6944 p = *varp;
6945 while (*p)
6947 for (i = 0; i < entries; ++i)
6949 len = (int)STRLEN(tab[i].name);
6950 if (STRNCMP(p, tab[i].name, len) == 0
6951 && p[len] == ':'
6952 && p[len + 1] != NUL)
6954 s = p + len + 1;
6955 #ifdef FEAT_MBYTE
6956 c1 = mb_ptr2char_adv(&s);
6957 if (mb_char2cells(c1) > 1)
6958 continue;
6959 #else
6960 c1 = *s++;
6961 #endif
6962 if (tab[i].cp == &lcs_tab2)
6964 if (*s == NUL)
6965 continue;
6966 #ifdef FEAT_MBYTE
6967 c2 = mb_ptr2char_adv(&s);
6968 if (mb_char2cells(c2) > 1)
6969 continue;
6970 #else
6971 c2 = *s++;
6972 #endif
6974 if (*s == ',' || *s == NUL)
6976 if (round)
6978 if (tab[i].cp == &lcs_tab2)
6980 lcs_tab1 = c1;
6981 lcs_tab2 = c2;
6983 else
6984 *(tab[i].cp) = c1;
6987 p = s;
6988 break;
6993 if (i == entries)
6994 return e_invarg;
6995 if (*p == ',')
6996 ++p;
7000 return NULL; /* no error */
7003 #ifdef FEAT_STL_OPT
7005 * Check validity of options with the 'statusline' format.
7006 * Return error message or NULL.
7008 char_u *
7009 check_stl_option(s)
7010 char_u *s;
7012 int itemcnt = 0;
7013 int groupdepth = 0;
7014 static char_u errbuf[80];
7016 while (*s && itemcnt < STL_MAX_ITEM)
7018 /* Check for valid keys after % sequences */
7019 while (*s && *s != '%')
7020 s++;
7021 if (!*s)
7022 break;
7023 s++;
7024 if (*s != '%' && *s != ')')
7025 ++itemcnt;
7026 if (*s == '%' || *s == STL_TRUNCMARK || *s == STL_MIDDLEMARK)
7028 s++;
7029 continue;
7031 if (*s == ')')
7033 s++;
7034 if (--groupdepth < 0)
7035 break;
7036 continue;
7038 if (*s == '-')
7039 s++;
7040 while (VIM_ISDIGIT(*s))
7041 s++;
7042 if (*s == STL_USER_HL)
7043 continue;
7044 if (*s == '.')
7046 s++;
7047 while (*s && VIM_ISDIGIT(*s))
7048 s++;
7050 if (*s == '(')
7052 groupdepth++;
7053 continue;
7055 if (vim_strchr(STL_ALL, *s) == NULL)
7057 return illegal_char(errbuf, *s);
7059 if (*s == '{')
7061 s++;
7062 while (*s != '}' && *s)
7063 s++;
7064 if (*s != '}')
7065 return (char_u *)N_("E540: Unclosed expression sequence");
7068 if (itemcnt >= STL_MAX_ITEM)
7069 return (char_u *)N_("E541: too many items");
7070 if (groupdepth != 0)
7071 return (char_u *)N_("E542: unbalanced groups");
7072 return NULL;
7074 #endif
7076 #ifdef FEAT_CLIPBOARD
7078 * Extract the items in the 'clipboard' option and set global values.
7080 static char_u *
7081 check_clipboard_option()
7083 int new_unnamed = FALSE;
7084 int new_autoselect = FALSE;
7085 int new_autoselectml = FALSE;
7086 regprog_T *new_exclude_prog = NULL;
7087 char_u *errmsg = NULL;
7088 char_u *p;
7090 for (p = p_cb; *p != NUL; )
7092 if (STRNCMP(p, "unnamed", 7) == 0 && (p[7] == ',' || p[7] == NUL))
7094 new_unnamed = TRUE;
7095 p += 7;
7097 else if (STRNCMP(p, "autoselect", 10) == 0
7098 && (p[10] == ',' || p[10] == NUL))
7100 new_autoselect = TRUE;
7101 p += 10;
7103 else if (STRNCMP(p, "autoselectml", 12) == 0
7104 && (p[12] == ',' || p[12] == NUL))
7106 new_autoselectml = TRUE;
7107 p += 12;
7109 else if (STRNCMP(p, "exclude:", 8) == 0 && new_exclude_prog == NULL)
7111 p += 8;
7112 new_exclude_prog = vim_regcomp(p, RE_MAGIC);
7113 if (new_exclude_prog == NULL)
7114 errmsg = e_invarg;
7115 break;
7117 else
7119 errmsg = e_invarg;
7120 break;
7122 if (*p == ',')
7123 ++p;
7125 if (errmsg == NULL)
7127 clip_unnamed = new_unnamed;
7128 clip_autoselect = new_autoselect;
7129 clip_autoselectml = new_autoselectml;
7130 vim_free(clip_exclude_prog);
7131 clip_exclude_prog = new_exclude_prog;
7133 else
7134 vim_free(new_exclude_prog);
7136 return errmsg;
7138 #endif
7140 #ifdef FEAT_SPELL
7142 * Set curbuf->b_cap_prog to the regexp program for 'spellcapcheck'.
7143 * Return error message when failed, NULL when OK.
7145 static char_u *
7146 compile_cap_prog(buf)
7147 buf_T *buf;
7149 regprog_T *rp = buf->b_cap_prog;
7150 char_u *re;
7152 if (*buf->b_p_spc == NUL)
7153 buf->b_cap_prog = NULL;
7154 else
7156 /* Prepend a ^ so that we only match at one column */
7157 re = concat_str((char_u *)"^", buf->b_p_spc);
7158 if (re != NULL)
7160 buf->b_cap_prog = vim_regcomp(re, RE_MAGIC);
7161 if (buf->b_cap_prog == NULL)
7163 buf->b_cap_prog = rp; /* restore the previous program */
7164 return e_invarg;
7166 vim_free(re);
7170 vim_free(rp);
7171 return NULL;
7173 #endif
7175 #if defined(FEAT_EVAL) || defined(PROTO)
7177 * Set the scriptID for an option, taking care of setting the buffer- or
7178 * window-local value.
7180 static void
7181 set_option_scriptID_idx(opt_idx, opt_flags, id)
7182 int opt_idx;
7183 int opt_flags;
7184 int id;
7186 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
7187 int indir = (int)options[opt_idx].indir;
7189 /* Remember where the option was set. For local options need to do that
7190 * in the buffer or window structure. */
7191 if (both || (opt_flags & OPT_GLOBAL) || (indir & (PV_BUF|PV_WIN)) == 0)
7192 options[opt_idx].scriptID = id;
7193 if (both || (opt_flags & OPT_LOCAL))
7195 if (indir & PV_BUF)
7196 curbuf->b_p_scriptID[indir & PV_MASK] = id;
7197 else if (indir & PV_WIN)
7198 curwin->w_p_scriptID[indir & PV_MASK] = id;
7201 #endif
7204 * Set the value of a boolean option, and take care of side effects.
7205 * Returns NULL for success, or an error message for an error.
7207 static char_u *
7208 set_bool_option(opt_idx, varp, value, opt_flags)
7209 int opt_idx; /* index in options[] table */
7210 char_u *varp; /* pointer to the option variable */
7211 int value; /* new value */
7212 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
7214 int old_value = *(int *)varp;
7216 /* Disallow changing some options from secure mode */
7217 if ((secure
7218 #ifdef HAVE_SANDBOX
7219 || sandbox != 0
7220 #endif
7221 ) && (options[opt_idx].flags & P_SECURE))
7222 return e_secure;
7224 *(int *)varp = value; /* set the new value */
7225 #ifdef FEAT_EVAL
7226 /* Remember where the option was set. */
7227 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
7228 #endif
7230 #ifdef FEAT_GUI
7231 need_mouse_correct = TRUE;
7232 #endif
7234 /* May set global value for local option. */
7235 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0)
7236 *(int *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) = value;
7239 * Handle side effects of changing a bool option.
7242 /* 'compatible' */
7243 if ((int *)varp == &p_cp)
7245 compatible_set();
7248 else if ((int *)varp == &curbuf->b_p_ro)
7250 /* when 'readonly' is reset globally, also reset readonlymode */
7251 if (!curbuf->b_p_ro && (opt_flags & OPT_LOCAL) == 0)
7252 readonlymode = FALSE;
7254 /* when 'readonly' is set may give W10 again */
7255 if (curbuf->b_p_ro)
7256 curbuf->b_did_warn = FALSE;
7258 #ifdef FEAT_TITLE
7259 redraw_titles();
7260 #endif
7263 #ifdef FEAT_TITLE
7264 /* when 'modifiable' is changed, redraw the window title */
7265 else if ((int *)varp == &curbuf->b_p_ma)
7267 redraw_titles();
7269 /* when 'endofline' is changed, redraw the window title */
7270 else if ((int *)varp == &curbuf->b_p_eol)
7272 redraw_titles();
7274 # ifdef FEAT_MBYTE
7275 /* when 'bomb' is changed, redraw the window title and tab page text */
7276 else if ((int *)varp == &curbuf->b_p_bomb)
7278 redraw_titles();
7280 # endif
7281 #endif
7283 /* when 'bin' is set also set some other options */
7284 else if ((int *)varp == &curbuf->b_p_bin)
7286 set_options_bin(old_value, curbuf->b_p_bin, opt_flags);
7287 #ifdef FEAT_TITLE
7288 redraw_titles();
7289 #endif
7292 #ifdef FEAT_AUTOCMD
7293 /* when 'buflisted' changes, trigger autocommands */
7294 else if ((int *)varp == &curbuf->b_p_bl && old_value != curbuf->b_p_bl)
7296 apply_autocmds(curbuf->b_p_bl ? EVENT_BUFADD : EVENT_BUFDELETE,
7297 NULL, NULL, TRUE, curbuf);
7299 #endif
7301 /* when 'swf' is set, create swapfile, when reset remove swapfile */
7302 else if ((int *)varp == &curbuf->b_p_swf)
7304 if (curbuf->b_p_swf && p_uc)
7305 ml_open_file(curbuf); /* create the swap file */
7306 else
7307 /* no need to reset curbuf->b_may_swap, ml_open_file() will check
7308 * buf->b_p_swf */
7309 mf_close_file(curbuf, TRUE); /* remove the swap file */
7312 /* when 'terse' is set change 'shortmess' */
7313 else if ((int *)varp == &p_terse)
7315 char_u *p;
7317 p = vim_strchr(p_shm, SHM_SEARCH);
7319 /* insert 's' in p_shm */
7320 if (p_terse && p == NULL)
7322 STRCPY(IObuff, p_shm);
7323 STRCAT(IObuff, "s");
7324 set_string_option_direct((char_u *)"shm", -1, IObuff, OPT_FREE, 0);
7326 /* remove 's' from p_shm */
7327 else if (!p_terse && p != NULL)
7328 STRMOVE(p, p + 1);
7331 /* when 'paste' is set or reset also change other options */
7332 else if ((int *)varp == &p_paste)
7334 paste_option_changed();
7337 /* when 'insertmode' is set from an autocommand need to do work here */
7338 else if ((int *)varp == &p_im)
7340 if (p_im)
7342 if ((State & INSERT) == 0)
7343 need_start_insertmode = TRUE;
7344 stop_insert_mode = FALSE;
7346 else
7348 need_start_insertmode = FALSE;
7349 stop_insert_mode = TRUE;
7350 if (restart_edit != 0 && mode_displayed)
7351 clear_cmdline = TRUE; /* remove "(insert)" */
7352 restart_edit = 0;
7356 /* when 'ignorecase' is set or reset and 'hlsearch' is set, redraw */
7357 else if ((int *)varp == &p_ic && p_hls)
7359 redraw_all_later(SOME_VALID);
7362 #ifdef FEAT_SEARCH_EXTRA
7363 /* when 'hlsearch' is set or reset: reset no_hlsearch */
7364 else if ((int *)varp == &p_hls)
7366 no_hlsearch = FALSE;
7368 #endif
7370 #ifdef FEAT_SCROLLBIND
7371 /* when 'scrollbind' is set: snapshot the current position to avoid a jump
7372 * at the end of normal_cmd() */
7373 else if ((int *)varp == &curwin->w_p_scb)
7375 if (curwin->w_p_scb)
7376 do_check_scrollbind(FALSE);
7378 #endif
7380 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
7381 /* There can be only one window with 'previewwindow' set. */
7382 else if ((int *)varp == &curwin->w_p_pvw)
7384 if (curwin->w_p_pvw)
7386 win_T *win;
7388 for (win = firstwin; win != NULL; win = win->w_next)
7389 if (win->w_p_pvw && win != curwin)
7391 curwin->w_p_pvw = FALSE;
7392 return (char_u *)N_("E590: A preview window already exists");
7396 #endif
7398 /* when 'textmode' is set or reset also change 'fileformat' */
7399 else if ((int *)varp == &curbuf->b_p_tx)
7401 set_fileformat(curbuf->b_p_tx ? EOL_DOS : EOL_UNIX, opt_flags);
7404 #ifdef FEAT_FULLSCREEN
7405 /* when 'fullscreen' changes, forward it to the gui */
7406 else if ((int *)varp == &p_fullscreen && gui.in_use)
7408 if (p_fullscreen && !old_value)
7410 guicolor_T fg, bg;
7411 if (fuoptions_flags & FUOPT_BGCOLOR_HLGROUP)
7413 /* Find out background color from colorscheme
7414 * via highlight group id */
7415 syn_id2colors(fuoptions_bgcolor, &fg, &bg);
7417 else
7419 /* set explicit background color */
7420 bg = fuoptions_bgcolor;
7422 gui_mch_enter_fullscreen(fuoptions_flags, bg);
7424 else if (!p_fullscreen && old_value)
7426 gui_mch_leave_fullscreen();
7429 #endif
7431 #if defined(FEAT_ANTIALIAS) && defined(FEAT_GUI_MACVIM)
7432 else if ((int *)varp == &p_antialias)
7434 gui_macvim_set_antialias(p_antialias);
7436 #endif
7438 /* when 'textauto' is set or reset also change 'fileformats' */
7439 else if ((int *)varp == &p_ta)
7440 set_string_option_direct((char_u *)"ffs", -1,
7441 p_ta ? (char_u *)DFLT_FFS_VIM : (char_u *)"",
7442 OPT_FREE | opt_flags, 0);
7445 * When 'lisp' option changes include/exclude '-' in
7446 * keyword characters.
7448 #ifdef FEAT_LISP
7449 else if (varp == (char_u *)&(curbuf->b_p_lisp))
7451 (void)buf_init_chartab(curbuf, FALSE); /* ignore errors */
7453 #endif
7455 #ifdef FEAT_TITLE
7456 /* when 'title' changed, may need to change the title; same for 'icon' */
7457 else if ((int *)varp == &p_title)
7459 did_set_title(FALSE);
7462 else if ((int *)varp == &p_icon)
7464 did_set_title(TRUE);
7466 #endif
7468 else if ((int *)varp == &curbuf->b_changed)
7470 if (!value)
7471 save_file_ff(curbuf); /* Buffer is unchanged */
7472 #ifdef FEAT_TITLE
7473 redraw_titles();
7474 #endif
7475 #ifdef FEAT_AUTOCMD
7476 modified_was_set = value;
7477 #endif
7480 #ifdef BACKSLASH_IN_FILENAME
7481 else if ((int *)varp == &p_ssl)
7483 if (p_ssl)
7485 psepc = '/';
7486 psepcN = '\\';
7487 pseps[0] = '/';
7489 else
7491 psepc = '\\';
7492 psepcN = '/';
7493 pseps[0] = '\\';
7496 /* need to adjust the file name arguments and buffer names. */
7497 buflist_slash_adjust();
7498 alist_slash_adjust();
7499 # ifdef FEAT_EVAL
7500 scriptnames_slash_adjust();
7501 # endif
7503 #endif
7505 /* If 'wrap' is set, set w_leftcol to zero. */
7506 else if ((int *)varp == &curwin->w_p_wrap)
7508 if (curwin->w_p_wrap)
7509 curwin->w_leftcol = 0;
7512 #ifdef FEAT_WINDOWS
7513 else if ((int *)varp == &p_ea)
7515 if (p_ea && !old_value)
7516 win_equal(curwin, FALSE, 0);
7518 #endif
7520 else if ((int *)varp == &p_wiv)
7523 * When 'weirdinvert' changed, set/reset 't_xs'.
7524 * Then set 'weirdinvert' according to value of 't_xs'.
7526 if (p_wiv && !old_value)
7527 T_XS = (char_u *)"y";
7528 else if (!p_wiv && old_value)
7529 T_XS = empty_option;
7530 p_wiv = (*T_XS != NUL);
7533 #ifdef FEAT_BEVAL
7534 else if ((int *)varp == &p_beval)
7536 if (p_beval == TRUE)
7537 gui_mch_enable_beval_area(balloonEval);
7538 else
7539 gui_mch_disable_beval_area(balloonEval);
7541 #endif
7543 #ifdef FEAT_AUTOCHDIR
7544 else if ((int *)varp == &p_acd)
7546 /* Change directories when the 'acd' option is set now. */
7547 DO_AUTOCHDIR
7549 #endif
7551 #ifdef FEAT_DIFF
7552 /* 'diff' */
7553 else if ((int *)varp == &curwin->w_p_diff)
7555 /* May add or remove the buffer from the list of diff buffers. */
7556 diff_buf_adjust(curwin);
7557 # ifdef FEAT_FOLDING
7558 if (foldmethodIsDiff(curwin))
7559 foldUpdateAll(curwin);
7560 # endif
7562 #endif
7564 #ifdef USE_IM_CONTROL
7565 /* 'imdisable' */
7566 else if ((int *)varp == &p_imdisable)
7568 /* Only de-activate it here, it will be enabled when changing mode. */
7569 if (p_imdisable)
7570 im_set_active(FALSE);
7572 #endif
7574 #ifdef FEAT_SPELL
7575 /* 'spell' */
7576 else if ((int *)varp == &curwin->w_p_spell)
7578 if (curwin->w_p_spell)
7580 char_u *errmsg = did_set_spelllang(curbuf);
7582 if (errmsg != NULL)
7583 EMSG(_(errmsg));
7586 #endif
7588 #ifdef FEAT_FKMAP
7589 else if ((int *)varp == &p_altkeymap)
7591 if (old_value != p_altkeymap)
7593 if (!p_altkeymap)
7595 p_hkmap = p_fkmap;
7596 p_fkmap = 0;
7598 else
7600 p_fkmap = p_hkmap;
7601 p_hkmap = 0;
7603 (void)init_chartab();
7608 * In case some second language keymapping options have changed, check
7609 * and correct the setting in a consistent way.
7613 * If hkmap or fkmap are set, reset Arabic keymapping.
7615 if ((p_hkmap || p_fkmap) && p_altkeymap)
7617 p_altkeymap = p_fkmap;
7618 # ifdef FEAT_ARABIC
7619 curwin->w_p_arab = FALSE;
7620 # endif
7621 (void)init_chartab();
7625 * If hkmap set, reset Farsi keymapping.
7627 if (p_hkmap && p_altkeymap)
7629 p_altkeymap = 0;
7630 p_fkmap = 0;
7631 # ifdef FEAT_ARABIC
7632 curwin->w_p_arab = FALSE;
7633 # endif
7634 (void)init_chartab();
7638 * If fkmap set, reset Hebrew keymapping.
7640 if (p_fkmap && !p_altkeymap)
7642 p_altkeymap = 1;
7643 p_hkmap = 0;
7644 # ifdef FEAT_ARABIC
7645 curwin->w_p_arab = FALSE;
7646 # endif
7647 (void)init_chartab();
7649 #endif
7651 #ifdef FEAT_ARABIC
7652 if ((int *)varp == &curwin->w_p_arab)
7654 if (curwin->w_p_arab)
7657 * 'arabic' is set, handle various sub-settings.
7659 if (!p_tbidi)
7661 /* set rightleft mode */
7662 if (!curwin->w_p_rl)
7664 curwin->w_p_rl = TRUE;
7665 changed_window_setting();
7668 /* Enable Arabic shaping (major part of what Arabic requires) */
7669 if (!p_arshape)
7671 p_arshape = TRUE;
7672 redraw_later_clear();
7676 /* Arabic requires a utf-8 encoding, inform the user if its not
7677 * set. */
7678 if (STRCMP(p_enc, "utf-8") != 0)
7680 static char *w_arabic = N_("W17: Arabic requires UTF-8, do ':set encoding=utf-8'");
7682 msg_source(hl_attr(HLF_W));
7683 MSG_ATTR(_(w_arabic), hl_attr(HLF_W));
7684 #ifdef FEAT_EVAL
7685 set_vim_var_string(VV_WARNINGMSG, (char_u *)_(w_arabic), -1);
7686 #endif
7689 # ifdef FEAT_MBYTE
7690 /* set 'delcombine' */
7691 p_deco = TRUE;
7692 # endif
7694 # ifdef FEAT_KEYMAP
7695 /* Force-set the necessary keymap for arabic */
7696 set_option_value((char_u *)"keymap", 0L, (char_u *)"arabic",
7697 OPT_LOCAL);
7698 # endif
7699 # ifdef FEAT_FKMAP
7700 p_altkeymap = 0;
7701 p_hkmap = 0;
7702 p_fkmap = 0;
7703 (void)init_chartab();
7704 # endif
7706 else
7709 * 'arabic' is reset, handle various sub-settings.
7711 if (!p_tbidi)
7713 /* reset rightleft mode */
7714 if (curwin->w_p_rl)
7716 curwin->w_p_rl = FALSE;
7717 changed_window_setting();
7720 /* 'arabicshape' isn't reset, it is a global option and
7721 * another window may still need it "on". */
7724 /* 'delcombine' isn't reset, it is a global option and another
7725 * window may still want it "on". */
7727 # ifdef FEAT_KEYMAP
7728 /* Revert to the default keymap */
7729 curbuf->b_p_iminsert = B_IMODE_NONE;
7730 curbuf->b_p_imsearch = B_IMODE_USE_INSERT;
7731 # endif
7734 #endif
7737 * End of handling side effects for bool options.
7740 options[opt_idx].flags |= P_WAS_SET;
7742 comp_col(); /* in case 'ruler' or 'showcmd' changed */
7743 if (curwin->w_curswant != MAXCOL)
7744 curwin->w_set_curswant = TRUE; /* in case 'list' changed */
7745 check_redraw(options[opt_idx].flags);
7747 return NULL;
7751 * Set the value of a number option, and take care of side effects.
7752 * Returns NULL for success, or an error message for an error.
7754 static char_u *
7755 set_num_option(opt_idx, varp, value, errbuf, errbuflen, opt_flags)
7756 int opt_idx; /* index in options[] table */
7757 char_u *varp; /* pointer to the option variable */
7758 long value; /* new value */
7759 char_u *errbuf; /* buffer for error messages */
7760 size_t errbuflen; /* length of "errbuf" */
7761 int opt_flags; /* OPT_LOCAL, OPT_GLOBAL and
7762 OPT_MODELINE */
7764 char_u *errmsg = NULL;
7765 long old_value = *(long *)varp;
7766 long old_Rows = Rows; /* remember old Rows */
7767 long old_Columns = Columns; /* remember old Columns */
7768 long *pp = (long *)varp;
7770 /* Disallow changing some options from secure mode. */
7771 if ((secure
7772 #ifdef HAVE_SANDBOX
7773 || sandbox != 0
7774 #endif
7775 ) && (options[opt_idx].flags & P_SECURE))
7776 return e_secure;
7778 *pp = value;
7779 #ifdef FEAT_EVAL
7780 /* Remember where the option was set. */
7781 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
7782 #endif
7783 #ifdef FEAT_GUI
7784 need_mouse_correct = TRUE;
7785 #endif
7787 if (curbuf->b_p_sw <= 0)
7789 errmsg = e_positive;
7790 curbuf->b_p_sw = curbuf->b_p_ts;
7794 * Number options that need some action when changed
7796 #ifdef FEAT_WINDOWS
7797 if (pp == &p_wh || pp == &p_hh)
7799 if (p_wh < 1)
7801 errmsg = e_positive;
7802 p_wh = 1;
7804 if (p_wmh > p_wh)
7806 errmsg = e_winheight;
7807 p_wh = p_wmh;
7809 if (p_hh < 0)
7811 errmsg = e_positive;
7812 p_hh = 0;
7815 /* Change window height NOW */
7816 if (lastwin != firstwin)
7818 if (pp == &p_wh && curwin->w_height < p_wh)
7819 win_setheight((int)p_wh);
7820 if (pp == &p_hh && curbuf->b_help && curwin->w_height < p_hh)
7821 win_setheight((int)p_hh);
7825 /* 'winminheight' */
7826 else if (pp == &p_wmh)
7828 if (p_wmh < 0)
7830 errmsg = e_positive;
7831 p_wmh = 0;
7833 if (p_wmh > p_wh)
7835 errmsg = e_winheight;
7836 p_wmh = p_wh;
7838 win_setminheight();
7841 # ifdef FEAT_VERTSPLIT
7842 else if (pp == &p_wiw)
7844 if (p_wiw < 1)
7846 errmsg = e_positive;
7847 p_wiw = 1;
7849 if (p_wmw > p_wiw)
7851 errmsg = e_winwidth;
7852 p_wiw = p_wmw;
7855 /* Change window width NOW */
7856 if (lastwin != firstwin && curwin->w_width < p_wiw)
7857 win_setwidth((int)p_wiw);
7860 /* 'winminwidth' */
7861 else if (pp == &p_wmw)
7863 if (p_wmw < 0)
7865 errmsg = e_positive;
7866 p_wmw = 0;
7868 if (p_wmw > p_wiw)
7870 errmsg = e_winwidth;
7871 p_wmw = p_wiw;
7873 win_setminheight();
7875 # endif
7877 #endif
7879 #ifdef FEAT_WINDOWS
7880 /* (re)set last window status line */
7881 else if (pp == &p_ls)
7883 last_status(FALSE);
7886 /* (re)set tab page line */
7887 else if (pp == &p_stal)
7889 shell_new_rows(); /* recompute window positions and heights */
7891 #endif
7893 #ifdef FEAT_GUI
7894 else if (pp == &p_linespace)
7896 /* Recompute gui.char_height and resize the Vim window to keep the
7897 * same number of lines. */
7898 if (gui.in_use && gui_mch_adjust_charheight() == OK)
7899 gui_set_shellsize(FALSE, FALSE, RESIZE_VERT);
7901 #endif
7903 #ifdef FEAT_FOLDING
7904 /* 'foldlevel' */
7905 else if (pp == &curwin->w_p_fdl)
7907 if (curwin->w_p_fdl < 0)
7908 curwin->w_p_fdl = 0;
7909 newFoldLevel();
7912 /* 'foldminlines' */
7913 else if (pp == &curwin->w_p_fml)
7915 foldUpdateAll(curwin);
7918 /* 'foldnestmax' */
7919 else if (pp == &curwin->w_p_fdn)
7921 if (foldmethodIsSyntax(curwin) || foldmethodIsIndent(curwin))
7922 foldUpdateAll(curwin);
7925 /* 'foldcolumn' */
7926 else if (pp == &curwin->w_p_fdc)
7928 if (curwin->w_p_fdc < 0)
7930 errmsg = e_positive;
7931 curwin->w_p_fdc = 0;
7933 else if (curwin->w_p_fdc > 12)
7935 errmsg = e_invarg;
7936 curwin->w_p_fdc = 12;
7940 /* 'shiftwidth' or 'tabstop' */
7941 else if (pp == &curbuf->b_p_sw || pp == &curbuf->b_p_ts)
7943 if (foldmethodIsIndent(curwin))
7944 foldUpdateAll(curwin);
7946 #endif /* FEAT_FOLDING */
7948 #ifdef FEAT_MBYTE
7949 /* 'maxcombine' */
7950 else if (pp == &p_mco)
7952 if (p_mco > MAX_MCO)
7953 p_mco = MAX_MCO;
7954 else if (p_mco < 0)
7955 p_mco = 0;
7956 screenclear(); /* will re-allocate the screen */
7958 #endif
7960 else if (pp == &curbuf->b_p_iminsert)
7962 if (curbuf->b_p_iminsert < 0 || curbuf->b_p_iminsert > B_IMODE_LAST)
7964 errmsg = e_invarg;
7965 curbuf->b_p_iminsert = B_IMODE_NONE;
7967 p_iminsert = curbuf->b_p_iminsert;
7968 if (termcap_active) /* don't do this in the alternate screen */
7969 showmode();
7970 #if defined(FEAT_WINDOWS) && defined(FEAT_KEYMAP)
7971 /* Show/unshow value of 'keymap' in status lines. */
7972 status_redraw_curbuf();
7973 #endif
7976 else if (pp == &p_window)
7978 if (p_window < 1)
7979 p_window = 1;
7980 else if (p_window >= Rows)
7981 p_window = Rows - 1;
7984 else if (pp == &curbuf->b_p_imsearch)
7986 if (curbuf->b_p_imsearch < -1 || curbuf->b_p_imsearch > B_IMODE_LAST)
7988 errmsg = e_invarg;
7989 curbuf->b_p_imsearch = B_IMODE_NONE;
7991 p_imsearch = curbuf->b_p_imsearch;
7994 #ifdef FEAT_TITLE
7995 /* if 'titlelen' has changed, redraw the title */
7996 else if (pp == &p_titlelen)
7998 if (p_titlelen < 0)
8000 errmsg = e_positive;
8001 p_titlelen = 85;
8003 if (starting != NO_SCREEN && old_value != p_titlelen)
8004 need_maketitle = TRUE;
8006 #endif
8008 /* if p_ch changed value, change the command line height */
8009 else if (pp == &p_ch)
8011 if (p_ch < 1)
8013 errmsg = e_positive;
8014 p_ch = 1;
8016 if (p_ch > Rows - min_rows() + 1)
8017 p_ch = Rows - min_rows() + 1;
8019 /* Only compute the new window layout when startup has been
8020 * completed. Otherwise the frame sizes may be wrong. */
8021 if (p_ch != old_value && full_screen
8022 #ifdef FEAT_GUI
8023 && !gui.starting
8024 #endif
8026 command_height();
8029 /* when 'updatecount' changes from zero to non-zero, open swap files */
8030 else if (pp == &p_uc)
8032 if (p_uc < 0)
8034 errmsg = e_positive;
8035 p_uc = 100;
8037 if (p_uc && !old_value)
8038 ml_open_files();
8040 #ifdef MZSCHEME_GUI_THREADS
8041 else if (pp == &p_mzq)
8042 mzvim_reset_timer();
8043 #endif
8045 /* sync undo before 'undolevels' changes */
8046 else if (pp == &p_ul)
8048 /* use the old value, otherwise u_sync() may not work properly */
8049 p_ul = old_value;
8050 u_sync(TRUE);
8051 p_ul = value;
8054 #ifdef FEAT_LINEBREAK
8055 /* 'numberwidth' must be positive */
8056 else if (pp == &curwin->w_p_nuw)
8058 if (curwin->w_p_nuw < 1)
8060 errmsg = e_positive;
8061 curwin->w_p_nuw = 1;
8063 if (curwin->w_p_nuw > 10)
8065 errmsg = e_invarg;
8066 curwin->w_p_nuw = 10;
8068 curwin->w_nrwidth_line_count = 0;
8070 #endif
8072 #if defined(FEAT_TRANSPARENCY)
8073 /* 'transparency' is a number between 0 and 100 */
8074 else if (pp == &p_transp)
8076 if (p_transp < 0 || p_transp > 100)
8078 errmsg = e_invarg;
8079 p_transp = old_value;
8081 else if (gui.in_use)
8082 gui_mch_new_colors();
8084 #endif
8087 * Check the bounds for numeric options here
8089 if (Rows < min_rows() && full_screen)
8091 if (errbuf != NULL)
8093 vim_snprintf((char *)errbuf, errbuflen,
8094 _("E593: Need at least %d lines"), min_rows());
8095 errmsg = errbuf;
8097 Rows = min_rows();
8099 if (Columns < MIN_COLUMNS && full_screen)
8101 if (errbuf != NULL)
8103 vim_snprintf((char *)errbuf, errbuflen,
8104 _("E594: Need at least %d columns"), MIN_COLUMNS);
8105 errmsg = errbuf;
8107 Columns = MIN_COLUMNS;
8109 /* Limit the values to avoid an overflow in Rows * Columns. */
8110 if (Columns > 10000)
8111 Columns = 10000;
8112 if (Rows > 1000)
8113 Rows = 1000;
8115 #ifdef DJGPP
8116 /* avoid a crash by checking for a too large value of 'columns' */
8117 if (old_Columns != Columns && full_screen && term_console)
8118 mch_check_columns();
8119 #endif
8122 * If the screen (shell) height has been changed, assume it is the
8123 * physical screenheight.
8125 if (old_Rows != Rows || old_Columns != Columns)
8127 /* Changing the screen size is not allowed while updating the screen. */
8128 if (updating_screen)
8129 *pp = old_value;
8130 else if (full_screen
8131 #ifdef FEAT_GUI
8132 && !gui.starting
8133 #endif
8135 set_shellsize((int)Columns, (int)Rows, TRUE);
8136 else
8138 /* Postpone the resizing; check the size and cmdline position for
8139 * messages. */
8140 check_shellsize();
8141 if (cmdline_row > Rows - p_ch && Rows > p_ch)
8142 cmdline_row = Rows - p_ch;
8144 if (p_window >= Rows || !option_was_set((char_u *)"window"))
8145 p_window = Rows - 1;
8148 if (curbuf->b_p_sts < 0)
8150 errmsg = e_positive;
8151 curbuf->b_p_sts = 0;
8153 if (curbuf->b_p_ts <= 0)
8155 errmsg = e_positive;
8156 curbuf->b_p_ts = 8;
8158 if (curbuf->b_p_tw < 0)
8160 errmsg = e_positive;
8161 curbuf->b_p_tw = 0;
8163 if (p_tm < 0)
8165 errmsg = e_positive;
8166 p_tm = 0;
8168 if ((curwin->w_p_scr <= 0
8169 || (curwin->w_p_scr > curwin->w_height
8170 && curwin->w_height > 0))
8171 && full_screen)
8173 if (pp == &(curwin->w_p_scr))
8175 if (curwin->w_p_scr != 0)
8176 errmsg = e_scroll;
8177 win_comp_scroll(curwin);
8179 /* If 'scroll' became invalid because of a side effect silently adjust
8180 * it. */
8181 else if (curwin->w_p_scr <= 0)
8182 curwin->w_p_scr = 1;
8183 else /* curwin->w_p_scr > curwin->w_height */
8184 curwin->w_p_scr = curwin->w_height;
8186 if (p_hi < 0)
8188 errmsg = e_positive;
8189 p_hi = 0;
8191 if (p_report < 0)
8193 errmsg = e_positive;
8194 p_report = 1;
8196 if ((p_sj < -100 || p_sj >= Rows) && full_screen)
8198 if (Rows != old_Rows) /* Rows changed, just adjust p_sj */
8199 p_sj = Rows / 2;
8200 else
8202 errmsg = e_scroll;
8203 p_sj = 1;
8206 if (p_so < 0 && full_screen)
8208 errmsg = e_scroll;
8209 p_so = 0;
8211 if (p_siso < 0 && full_screen)
8213 errmsg = e_positive;
8214 p_siso = 0;
8216 #ifdef FEAT_CMDWIN
8217 if (p_cwh < 1)
8219 errmsg = e_positive;
8220 p_cwh = 1;
8222 #endif
8223 if (p_ut < 0)
8225 errmsg = e_positive;
8226 p_ut = 2000;
8228 if (p_ss < 0)
8230 errmsg = e_positive;
8231 p_ss = 0;
8234 /* May set global value for local option. */
8235 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0)
8236 *(long *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) = *pp;
8238 options[opt_idx].flags |= P_WAS_SET;
8240 comp_col(); /* in case 'columns' or 'ls' changed */
8241 if (curwin->w_curswant != MAXCOL)
8242 curwin->w_set_curswant = TRUE; /* in case 'tabstop' changed */
8243 check_redraw(options[opt_idx].flags);
8245 return errmsg;
8249 * Called after an option changed: check if something needs to be redrawn.
8251 static void
8252 check_redraw(flags)
8253 long_u flags;
8255 /* Careful: P_RCLR and P_RALL are a combination of other P_ flags */
8256 int clear = (flags & P_RCLR) == P_RCLR;
8257 int all = ((flags & P_RALL) == P_RALL || clear);
8259 #ifdef FEAT_WINDOWS
8260 if ((flags & P_RSTAT) || all) /* mark all status lines dirty */
8261 status_redraw_all();
8262 #endif
8264 if ((flags & P_RBUF) || (flags & P_RWIN) || all)
8265 changed_window_setting();
8266 if (flags & P_RBUF)
8267 redraw_curbuf_later(NOT_VALID);
8268 if (clear)
8269 redraw_all_later(CLEAR);
8270 else if (all)
8271 redraw_all_later(NOT_VALID);
8275 * Find index for option 'arg'.
8276 * Return -1 if not found.
8278 static int
8279 findoption(arg)
8280 char_u *arg;
8282 int opt_idx;
8283 char *s, *p;
8284 static short quick_tab[27] = {0, 0}; /* quick access table */
8285 int is_term_opt;
8288 * For first call: Initialize the quick-access table.
8289 * It contains the index for the first option that starts with a certain
8290 * letter. There are 26 letters, plus the first "t_" option.
8292 if (quick_tab[1] == 0)
8294 p = options[0].fullname;
8295 for (opt_idx = 1; (s = options[opt_idx].fullname) != NULL; opt_idx++)
8297 if (s[0] != p[0])
8299 if (s[0] == 't' && s[1] == '_')
8300 quick_tab[26] = opt_idx;
8301 else
8302 quick_tab[CharOrdLow(s[0])] = opt_idx;
8304 p = s;
8309 * Check for name starting with an illegal character.
8311 #ifdef EBCDIC
8312 if (!islower(arg[0]))
8313 #else
8314 if (arg[0] < 'a' || arg[0] > 'z')
8315 #endif
8316 return -1;
8318 is_term_opt = (arg[0] == 't' && arg[1] == '_');
8319 if (is_term_opt)
8320 opt_idx = quick_tab[26];
8321 else
8322 opt_idx = quick_tab[CharOrdLow(arg[0])];
8323 for ( ; (s = options[opt_idx].fullname) != NULL; opt_idx++)
8325 if (STRCMP(arg, s) == 0) /* match full name */
8326 break;
8328 if (s == NULL && !is_term_opt)
8330 opt_idx = quick_tab[CharOrdLow(arg[0])];
8331 for ( ; options[opt_idx].fullname != NULL; opt_idx++)
8333 s = options[opt_idx].shortname;
8334 if (s != NULL && STRCMP(arg, s) == 0) /* match short name */
8335 break;
8336 s = NULL;
8339 if (s == NULL)
8340 opt_idx = -1;
8341 return opt_idx;
8344 #if defined(FEAT_EVAL) || defined(FEAT_TCL) || defined(FEAT_MZSCHEME)
8346 * Get the value for an option.
8348 * Returns:
8349 * Number or Toggle option: 1, *numval gets value.
8350 * String option: 0, *stringval gets allocated string.
8351 * Hidden Number or Toggle option: -1.
8352 * hidden String option: -2.
8353 * unknown option: -3.
8356 get_option_value(name, numval, stringval, opt_flags)
8357 char_u *name;
8358 long *numval;
8359 char_u **stringval; /* NULL when only checking existance */
8360 int opt_flags;
8362 int opt_idx;
8363 char_u *varp;
8365 opt_idx = findoption(name);
8366 if (opt_idx < 0) /* unknown option */
8367 return -3;
8369 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
8371 if (options[opt_idx].flags & P_STRING)
8373 if (varp == NULL) /* hidden option */
8374 return -2;
8375 if (stringval != NULL)
8377 #ifdef FEAT_CRYPT
8378 /* never return the value of the crypt key */
8379 if ((char_u **)varp == &curbuf->b_p_key
8380 && **(char_u **)(varp) != NUL)
8381 *stringval = vim_strsave((char_u *)"*****");
8382 else
8383 #endif
8384 *stringval = vim_strsave(*(char_u **)(varp));
8386 return 0;
8389 if (varp == NULL) /* hidden option */
8390 return -1;
8391 if (options[opt_idx].flags & P_NUM)
8392 *numval = *(long *)varp;
8393 else
8395 /* Special case: 'modified' is b_changed, but we also want to consider
8396 * it set when 'ff' or 'fenc' changed. */
8397 if ((int *)varp == &curbuf->b_changed)
8398 *numval = curbufIsChanged();
8399 else
8400 *numval = *(int *)varp;
8402 return 1;
8404 #endif
8407 * Set the value of option "name".
8408 * Use "string" for string options, use "number" for other options.
8410 void
8411 set_option_value(name, number, string, opt_flags)
8412 char_u *name;
8413 long number;
8414 char_u *string;
8415 int opt_flags; /* OPT_LOCAL or 0 (both) */
8417 int opt_idx;
8418 char_u *varp;
8419 long_u flags;
8421 opt_idx = findoption(name);
8422 if (opt_idx < 0)
8423 EMSG2(_("E355: Unknown option: %s"), name);
8424 else
8426 flags = options[opt_idx].flags;
8427 #ifdef HAVE_SANDBOX
8428 /* Disallow changing some options in the sandbox */
8429 if (sandbox > 0 && (flags & P_SECURE))
8431 EMSG(_(e_sandbox));
8432 return;
8434 #endif
8435 if (flags & P_STRING)
8436 set_string_option(opt_idx, string, opt_flags);
8437 else
8439 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
8440 if (varp != NULL) /* hidden option is not changed */
8442 if (number == 0 && string != NULL)
8444 int idx;
8446 /* Either we are given a string or we are setting option
8447 * to zero. */
8448 for (idx = 0; string[idx] == '0'; ++idx)
8450 if (string[idx] != NUL || idx == 0)
8452 /* There's another character after zeros or the string
8453 * is empty. In both cases, we are trying to set a
8454 * num option using a string. */
8455 EMSG3(_("E521: Number required: &%s = '%s'"),
8456 name, string);
8457 return; /* do nothing as we hit an error */
8461 if (flags & P_NUM)
8462 (void)set_num_option(opt_idx, varp, number,
8463 NULL, 0, opt_flags);
8464 else
8465 (void)set_bool_option(opt_idx, varp, (int)number,
8466 opt_flags);
8473 * Get the terminal code for a terminal option.
8474 * Returns NULL when not found.
8476 char_u *
8477 get_term_code(tname)
8478 char_u *tname;
8480 int opt_idx;
8481 char_u *varp;
8483 if (tname[0] != 't' || tname[1] != '_' ||
8484 tname[2] == NUL || tname[3] == NUL)
8485 return NULL;
8486 if ((opt_idx = findoption(tname)) >= 0)
8488 varp = get_varp(&(options[opt_idx]));
8489 if (varp != NULL)
8490 varp = *(char_u **)(varp);
8491 return varp;
8493 return find_termcode(tname + 2);
8496 char_u *
8497 get_highlight_default()
8499 int i;
8501 i = findoption((char_u *)"hl");
8502 if (i >= 0)
8503 return options[i].def_val[VI_DEFAULT];
8504 return (char_u *)NULL;
8507 #if defined(FEAT_MBYTE) || defined(PROTO)
8508 char_u *
8509 get_encoding_default()
8511 int i;
8513 i = findoption((char_u *)"enc");
8514 if (i >= 0)
8515 return options[i].def_val[VI_DEFAULT];
8516 return (char_u *)NULL;
8518 #endif
8521 * Translate a string like "t_xx", "<t_xx>" or "<S-Tab>" to a key number.
8523 static int
8524 find_key_option(arg)
8525 char_u *arg;
8527 int key;
8528 int modifiers;
8531 * Don't use get_special_key_code() for t_xx, we don't want it to call
8532 * add_termcap_entry().
8534 if (arg[0] == 't' && arg[1] == '_' && arg[2] && arg[3])
8535 key = TERMCAP2KEY(arg[2], arg[3]);
8536 else
8538 --arg; /* put arg at the '<' */
8539 modifiers = 0;
8540 key = find_special_key(&arg, &modifiers, TRUE, TRUE);
8541 if (modifiers) /* can't handle modifiers here */
8542 key = 0;
8544 return key;
8548 * if 'all' == 0: show changed options
8549 * if 'all' == 1: show all normal options
8550 * if 'all' == 2: show all terminal options
8552 static void
8553 showoptions(all, opt_flags)
8554 int all;
8555 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
8557 struct vimoption *p;
8558 int col;
8559 int isterm;
8560 char_u *varp;
8561 struct vimoption **items;
8562 int item_count;
8563 int run;
8564 int row, rows;
8565 int cols;
8566 int i;
8567 int len;
8569 #define INC 20
8570 #define GAP 3
8572 items = (struct vimoption **)alloc((unsigned)(sizeof(struct vimoption *) *
8573 PARAM_COUNT));
8574 if (items == NULL)
8575 return;
8577 /* Highlight title */
8578 if (all == 2)
8579 MSG_PUTS_TITLE(_("\n--- Terminal codes ---"));
8580 else if (opt_flags & OPT_GLOBAL)
8581 MSG_PUTS_TITLE(_("\n--- Global option values ---"));
8582 else if (opt_flags & OPT_LOCAL)
8583 MSG_PUTS_TITLE(_("\n--- Local option values ---"));
8584 else
8585 MSG_PUTS_TITLE(_("\n--- Options ---"));
8588 * do the loop two times:
8589 * 1. display the short items
8590 * 2. display the long items (only strings and numbers)
8592 for (run = 1; run <= 2 && !got_int; ++run)
8595 * collect the items in items[]
8597 item_count = 0;
8598 for (p = &options[0]; p->fullname != NULL; p++)
8600 varp = NULL;
8601 isterm = istermoption(p);
8602 if (opt_flags != 0)
8604 if (p->indir != PV_NONE && !isterm)
8605 varp = get_varp_scope(p, opt_flags);
8607 else
8608 varp = get_varp(p);
8609 if (varp != NULL
8610 && ((all == 2 && isterm)
8611 || (all == 1 && !isterm)
8612 || (all == 0 && !optval_default(p, varp))))
8614 if (p->flags & P_BOOL)
8615 len = 1; /* a toggle option fits always */
8616 else
8618 option_value2string(p, opt_flags);
8619 len = (int)STRLEN(p->fullname) + vim_strsize(NameBuff) + 1;
8621 if ((len <= INC - GAP && run == 1) ||
8622 (len > INC - GAP && run == 2))
8623 items[item_count++] = p;
8628 * display the items
8630 if (run == 1)
8632 cols = (Columns + GAP - 3) / INC;
8633 if (cols == 0)
8634 cols = 1;
8635 rows = (item_count + cols - 1) / cols;
8637 else /* run == 2 */
8638 rows = item_count;
8639 for (row = 0; row < rows && !got_int; ++row)
8641 msg_putchar('\n'); /* go to next line */
8642 if (got_int) /* 'q' typed in more */
8643 break;
8644 col = 0;
8645 for (i = row; i < item_count; i += rows)
8647 msg_col = col; /* make columns */
8648 showoneopt(items[i], opt_flags);
8649 col += INC;
8651 out_flush();
8652 ui_breakcheck();
8655 vim_free(items);
8659 * Return TRUE if option "p" has its default value.
8661 static int
8662 optval_default(p, varp)
8663 struct vimoption *p;
8664 char_u *varp;
8666 int dvi;
8668 if (varp == NULL)
8669 return TRUE; /* hidden option is always at default */
8670 dvi = ((p->flags & P_VI_DEF) || p_cp) ? VI_DEFAULT : VIM_DEFAULT;
8671 if (p->flags & P_NUM)
8672 return (*(long *)varp == (long)(long_i)p->def_val[dvi]);
8673 if (p->flags & P_BOOL)
8674 /* the cast to long is required for Manx C, long_i is
8675 * needed for MSVC */
8676 return (*(int *)varp == (int)(long)(long_i)p->def_val[dvi]);
8677 /* P_STRING */
8678 return (STRCMP(*(char_u **)varp, p->def_val[dvi]) == 0);
8682 * showoneopt: show the value of one option
8683 * must not be called with a hidden option!
8685 static void
8686 showoneopt(p, opt_flags)
8687 struct vimoption *p;
8688 int opt_flags; /* OPT_LOCAL or OPT_GLOBAL */
8690 char_u *varp;
8691 int save_silent = silent_mode;
8693 silent_mode = FALSE;
8694 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
8696 varp = get_varp_scope(p, opt_flags);
8698 /* for 'modified' we also need to check if 'ff' or 'fenc' changed. */
8699 if ((p->flags & P_BOOL) && ((int *)varp == &curbuf->b_changed
8700 ? !curbufIsChanged() : !*(int *)varp))
8701 MSG_PUTS("no");
8702 else if ((p->flags & P_BOOL) && *(int *)varp < 0)
8703 MSG_PUTS("--");
8704 else
8705 MSG_PUTS(" ");
8706 MSG_PUTS(p->fullname);
8707 if (!(p->flags & P_BOOL))
8709 msg_putchar('=');
8710 /* put value string in NameBuff */
8711 option_value2string(p, opt_flags);
8712 msg_outtrans(NameBuff);
8715 silent_mode = save_silent;
8716 info_message = FALSE;
8720 * Write modified options as ":set" commands to a file.
8722 * There are three values for "opt_flags":
8723 * OPT_GLOBAL: Write global option values and fresh values of
8724 * buffer-local options (used for start of a session
8725 * file).
8726 * OPT_GLOBAL + OPT_LOCAL: Idem, add fresh values of window-local options for
8727 * curwin (used for a vimrc file).
8728 * OPT_LOCAL: Write buffer-local option values for curbuf, fresh
8729 * and local values for window-local options of
8730 * curwin. Local values are also written when at the
8731 * default value, because a modeline or autocommand
8732 * may have set them when doing ":edit file" and the
8733 * user has set them back at the default or fresh
8734 * value.
8735 * When "local_only" is TRUE, don't write fresh
8736 * values, only local values (for ":mkview").
8737 * (fresh value = value used for a new buffer or window for a local option).
8739 * Return FAIL on error, OK otherwise.
8742 makeset(fd, opt_flags, local_only)
8743 FILE *fd;
8744 int opt_flags;
8745 int local_only;
8747 struct vimoption *p;
8748 char_u *varp; /* currently used value */
8749 char_u *varp_fresh; /* local value */
8750 char_u *varp_local = NULL; /* fresh value */
8751 char *cmd;
8752 int round;
8753 int pri;
8756 * The options that don't have a default (terminal name, columns, lines)
8757 * are never written. Terminal options are also not written.
8758 * Do the loop over "options[]" twice: once for options with the
8759 * P_PRI_MKRC flag and once without.
8761 for (pri = 1; pri >= 0; --pri)
8763 for (p = &options[0]; !istermoption(p); p++)
8764 if (!(p->flags & P_NO_MKRC)
8765 && !istermoption(p)
8766 && ((pri == 1) == ((p->flags & P_PRI_MKRC) != 0)))
8768 /* skip global option when only doing locals */
8769 if (p->indir == PV_NONE && !(opt_flags & OPT_GLOBAL))
8770 continue;
8772 /* Do not store options like 'bufhidden' and 'syntax' in a vimrc
8773 * file, they are always buffer-specific. */
8774 if ((opt_flags & OPT_GLOBAL) && (p->flags & P_NOGLOB))
8775 continue;
8777 /* Global values are only written when not at the default value. */
8778 varp = get_varp_scope(p, opt_flags);
8779 if ((opt_flags & OPT_GLOBAL) && optval_default(p, varp))
8780 continue;
8782 round = 2;
8783 if (p->indir != PV_NONE)
8785 if (p->var == VAR_WIN)
8787 /* skip window-local option when only doing globals */
8788 if (!(opt_flags & OPT_LOCAL))
8789 continue;
8790 /* When fresh value of window-local option is not at the
8791 * default, need to write it too. */
8792 if (!(opt_flags & OPT_GLOBAL) && !local_only)
8794 varp_fresh = get_varp_scope(p, OPT_GLOBAL);
8795 if (!optval_default(p, varp_fresh))
8797 round = 1;
8798 varp_local = varp;
8799 varp = varp_fresh;
8805 /* Round 1: fresh value for window-local options.
8806 * Round 2: other values */
8807 for ( ; round <= 2; varp = varp_local, ++round)
8809 if (round == 1 || (opt_flags & OPT_GLOBAL))
8810 cmd = "set";
8811 else
8812 cmd = "setlocal";
8814 if (p->flags & P_BOOL)
8816 if (put_setbool(fd, cmd, p->fullname, *(int *)varp) == FAIL)
8817 return FAIL;
8819 else if (p->flags & P_NUM)
8821 if (put_setnum(fd, cmd, p->fullname, (long *)varp) == FAIL)
8822 return FAIL;
8824 else /* P_STRING */
8826 #if defined(FEAT_SYN_HL) || defined(FEAT_AUTOCMD)
8827 int do_endif = FALSE;
8829 /* Don't set 'syntax' and 'filetype' again if the value is
8830 * already right, avoids reloading the syntax file. */
8831 if (
8832 # if defined(FEAT_SYN_HL)
8833 p->indir == PV_SYN
8834 # if defined(FEAT_AUTOCMD)
8836 # endif
8837 # endif
8838 # if defined(FEAT_AUTOCMD)
8839 p->indir == PV_FT
8840 # endif
8843 if (fprintf(fd, "if &%s != '%s'", p->fullname,
8844 *(char_u **)(varp)) < 0
8845 || put_eol(fd) < 0)
8846 return FAIL;
8847 do_endif = TRUE;
8849 #endif
8850 if (put_setstring(fd, cmd, p->fullname, (char_u **)varp,
8851 (p->flags & P_EXPAND) != 0) == FAIL)
8852 return FAIL;
8853 #if defined(FEAT_SYN_HL) || defined(FEAT_AUTOCMD)
8854 if (do_endif)
8856 if (put_line(fd, "endif") == FAIL)
8857 return FAIL;
8859 #endif
8864 return OK;
8867 #if defined(FEAT_FOLDING) || defined(PROTO)
8869 * Generate set commands for the local fold options only. Used when
8870 * 'sessionoptions' or 'viewoptions' contains "folds" but not "options".
8873 makefoldset(fd)
8874 FILE *fd;
8876 if (put_setstring(fd, "setlocal", "fdm", &curwin->w_p_fdm, FALSE) == FAIL
8877 # ifdef FEAT_EVAL
8878 || put_setstring(fd, "setlocal", "fde", &curwin->w_p_fde, FALSE)
8879 == FAIL
8880 # endif
8881 || put_setstring(fd, "setlocal", "fmr", &curwin->w_p_fmr, FALSE)
8882 == FAIL
8883 || put_setstring(fd, "setlocal", "fdi", &curwin->w_p_fdi, FALSE)
8884 == FAIL
8885 || put_setnum(fd, "setlocal", "fdl", &curwin->w_p_fdl) == FAIL
8886 || put_setnum(fd, "setlocal", "fml", &curwin->w_p_fml) == FAIL
8887 || put_setnum(fd, "setlocal", "fdn", &curwin->w_p_fdn) == FAIL
8888 || put_setbool(fd, "setlocal", "fen", curwin->w_p_fen) == FAIL
8890 return FAIL;
8892 return OK;
8894 #endif
8896 static int
8897 put_setstring(fd, cmd, name, valuep, expand)
8898 FILE *fd;
8899 char *cmd;
8900 char *name;
8901 char_u **valuep;
8902 int expand;
8904 char_u *s;
8905 char_u buf[MAXPATHL];
8907 if (fprintf(fd, "%s %s=", cmd, name) < 0)
8908 return FAIL;
8909 if (*valuep != NULL)
8911 /* Output 'pastetoggle' as key names. For other
8912 * options some characters have to be escaped with
8913 * CTRL-V or backslash */
8914 if (valuep == &p_pt)
8916 s = *valuep;
8917 while (*s != NUL)
8918 if (put_escstr(fd, str2special(&s, FALSE), 2) == FAIL)
8919 return FAIL;
8921 else if (expand)
8923 home_replace(NULL, *valuep, buf, MAXPATHL, FALSE);
8924 if (put_escstr(fd, buf, 2) == FAIL)
8925 return FAIL;
8927 else if (put_escstr(fd, *valuep, 2) == FAIL)
8928 return FAIL;
8930 if (put_eol(fd) < 0)
8931 return FAIL;
8932 return OK;
8935 static int
8936 put_setnum(fd, cmd, name, valuep)
8937 FILE *fd;
8938 char *cmd;
8939 char *name;
8940 long *valuep;
8942 long wc;
8944 if (fprintf(fd, "%s %s=", cmd, name) < 0)
8945 return FAIL;
8946 if (wc_use_keyname((char_u *)valuep, &wc))
8948 /* print 'wildchar' and 'wildcharm' as a key name */
8949 if (fputs((char *)get_special_key_name((int)wc, 0), fd) < 0)
8950 return FAIL;
8952 else if (fprintf(fd, "%ld", *valuep) < 0)
8953 return FAIL;
8954 if (put_eol(fd) < 0)
8955 return FAIL;
8956 return OK;
8959 static int
8960 put_setbool(fd, cmd, name, value)
8961 FILE *fd;
8962 char *cmd;
8963 char *name;
8964 int value;
8966 if (value < 0) /* global/local option using global value */
8967 return OK;
8968 if (fprintf(fd, "%s %s%s", cmd, value ? "" : "no", name) < 0
8969 || put_eol(fd) < 0)
8970 return FAIL;
8971 return OK;
8975 * Clear all the terminal options.
8976 * If the option has been allocated, free the memory.
8977 * Terminal options are never hidden or indirect.
8979 void
8980 clear_termoptions()
8983 * Reset a few things before clearing the old options. This may cause
8984 * outputting a few things that the terminal doesn't understand, but the
8985 * screen will be cleared later, so this is OK.
8987 #ifdef FEAT_MOUSE_TTY
8988 mch_setmouse(FALSE); /* switch mouse off */
8989 #endif
8990 #ifdef FEAT_TITLE
8991 mch_restore_title(3); /* restore window titles */
8992 #endif
8993 #if defined(FEAT_XCLIPBOARD) && defined(FEAT_GUI)
8994 /* When starting the GUI close the display opened for the clipboard.
8995 * After restoring the title, because that will need the display. */
8996 if (gui.starting)
8997 clear_xterm_clip();
8998 #endif
8999 #ifdef WIN3264
9001 * Check if this is allowed now.
9003 if (can_end_termcap_mode(FALSE) == TRUE)
9004 #endif
9005 stoptermcap(); /* stop termcap mode */
9007 free_termoptions();
9010 void
9011 free_termoptions()
9013 struct vimoption *p;
9015 for (p = &options[0]; p->fullname != NULL; p++)
9016 if (istermoption(p))
9018 if (p->flags & P_ALLOCED)
9019 free_string_option(*(char_u **)(p->var));
9020 if (p->flags & P_DEF_ALLOCED)
9021 free_string_option(p->def_val[VI_DEFAULT]);
9022 *(char_u **)(p->var) = empty_option;
9023 p->def_val[VI_DEFAULT] = empty_option;
9024 p->flags &= ~(P_ALLOCED|P_DEF_ALLOCED);
9026 clear_termcodes();
9030 * Set the terminal option defaults to the current value.
9031 * Used after setting the terminal name.
9033 void
9034 set_term_defaults()
9036 struct vimoption *p;
9038 for (p = &options[0]; p->fullname != NULL; p++)
9040 if (istermoption(p) && p->def_val[VI_DEFAULT] != *(char_u **)(p->var))
9042 if (p->flags & P_DEF_ALLOCED)
9044 free_string_option(p->def_val[VI_DEFAULT]);
9045 p->flags &= ~P_DEF_ALLOCED;
9047 p->def_val[VI_DEFAULT] = *(char_u **)(p->var);
9048 if (p->flags & P_ALLOCED)
9050 p->flags |= P_DEF_ALLOCED;
9051 p->flags &= ~P_ALLOCED; /* don't free the value now */
9058 * return TRUE if 'p' starts with 't_'
9060 static int
9061 istermoption(p)
9062 struct vimoption *p;
9064 return (p->fullname[0] == 't' && p->fullname[1] == '_');
9068 * Compute columns for ruler and shown command. 'sc_col' is also used to
9069 * decide what the maximum length of a message on the status line can be.
9070 * If there is a status line for the last window, 'sc_col' is independent
9071 * of 'ru_col'.
9074 #define COL_RULER 17 /* columns needed by standard ruler */
9076 void
9077 comp_col()
9079 #if defined(FEAT_CMDL_INFO) && defined(FEAT_WINDOWS)
9080 int last_has_status = (p_ls == 2 || (p_ls == 1 && firstwin != lastwin));
9082 sc_col = 0;
9083 ru_col = 0;
9084 if (p_ru)
9086 #ifdef FEAT_STL_OPT
9087 ru_col = (ru_wid ? ru_wid : COL_RULER) + 1;
9088 #else
9089 ru_col = COL_RULER + 1;
9090 #endif
9091 /* no last status line, adjust sc_col */
9092 if (!last_has_status)
9093 sc_col = ru_col;
9095 if (p_sc)
9097 sc_col += SHOWCMD_COLS;
9098 if (!p_ru || last_has_status) /* no need for separating space */
9099 ++sc_col;
9101 sc_col = Columns - sc_col;
9102 ru_col = Columns - ru_col;
9103 if (sc_col <= 0) /* screen too narrow, will become a mess */
9104 sc_col = 1;
9105 if (ru_col <= 0)
9106 ru_col = 1;
9107 #else
9108 sc_col = Columns;
9109 ru_col = Columns;
9110 #endif
9114 * Get pointer to option variable, depending on local or global scope.
9116 static char_u *
9117 get_varp_scope(p, opt_flags)
9118 struct vimoption *p;
9119 int opt_flags;
9121 if ((opt_flags & OPT_GLOBAL) && p->indir != PV_NONE)
9123 if (p->var == VAR_WIN)
9124 return (char_u *)GLOBAL_WO(get_varp(p));
9125 return p->var;
9127 if ((opt_flags & OPT_LOCAL) && ((int)p->indir & PV_BOTH))
9129 switch ((int)p->indir)
9131 #ifdef FEAT_QUICKFIX
9132 case PV_EFM: return (char_u *)&(curbuf->b_p_efm);
9133 case PV_GP: return (char_u *)&(curbuf->b_p_gp);
9134 case PV_MP: return (char_u *)&(curbuf->b_p_mp);
9135 #endif
9136 case PV_EP: return (char_u *)&(curbuf->b_p_ep);
9137 case PV_KP: return (char_u *)&(curbuf->b_p_kp);
9138 case PV_PATH: return (char_u *)&(curbuf->b_p_path);
9139 case PV_AR: return (char_u *)&(curbuf->b_p_ar);
9140 case PV_TAGS: return (char_u *)&(curbuf->b_p_tags);
9141 #ifdef FEAT_FIND_ID
9142 case PV_DEF: return (char_u *)&(curbuf->b_p_def);
9143 case PV_INC: return (char_u *)&(curbuf->b_p_inc);
9144 #endif
9145 #ifdef FEAT_INS_EXPAND
9146 case PV_DICT: return (char_u *)&(curbuf->b_p_dict);
9147 case PV_TSR: return (char_u *)&(curbuf->b_p_tsr);
9148 #endif
9149 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9150 case PV_BEXPR: return (char_u *)&(curbuf->b_p_bexpr);
9151 #endif
9152 #ifdef FEAT_STL_OPT
9153 case PV_STL: return (char_u *)&(curwin->w_p_stl);
9154 #endif
9156 return NULL; /* "cannot happen" */
9158 return get_varp(p);
9162 * Get pointer to option variable.
9164 static char_u *
9165 get_varp(p)
9166 struct vimoption *p;
9168 /* hidden option, always return NULL */
9169 if (p->var == NULL)
9170 return NULL;
9172 switch ((int)p->indir)
9174 case PV_NONE: return p->var;
9176 /* global option with local value: use local value if it's been set */
9177 case PV_EP: return *curbuf->b_p_ep != NUL
9178 ? (char_u *)&curbuf->b_p_ep : p->var;
9179 case PV_KP: return *curbuf->b_p_kp != NUL
9180 ? (char_u *)&curbuf->b_p_kp : p->var;
9181 case PV_PATH: return *curbuf->b_p_path != NUL
9182 ? (char_u *)&(curbuf->b_p_path) : p->var;
9183 case PV_AR: return curbuf->b_p_ar >= 0
9184 ? (char_u *)&(curbuf->b_p_ar) : p->var;
9185 case PV_TAGS: return *curbuf->b_p_tags != NUL
9186 ? (char_u *)&(curbuf->b_p_tags) : p->var;
9187 #ifdef FEAT_FIND_ID
9188 case PV_DEF: return *curbuf->b_p_def != NUL
9189 ? (char_u *)&(curbuf->b_p_def) : p->var;
9190 case PV_INC: return *curbuf->b_p_inc != NUL
9191 ? (char_u *)&(curbuf->b_p_inc) : p->var;
9192 #endif
9193 #ifdef FEAT_INS_EXPAND
9194 case PV_DICT: return *curbuf->b_p_dict != NUL
9195 ? (char_u *)&(curbuf->b_p_dict) : p->var;
9196 case PV_TSR: return *curbuf->b_p_tsr != NUL
9197 ? (char_u *)&(curbuf->b_p_tsr) : p->var;
9198 #endif
9199 #ifdef FEAT_QUICKFIX
9200 case PV_EFM: return *curbuf->b_p_efm != NUL
9201 ? (char_u *)&(curbuf->b_p_efm) : p->var;
9202 case PV_GP: return *curbuf->b_p_gp != NUL
9203 ? (char_u *)&(curbuf->b_p_gp) : p->var;
9204 case PV_MP: return *curbuf->b_p_mp != NUL
9205 ? (char_u *)&(curbuf->b_p_mp) : p->var;
9206 #endif
9207 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9208 case PV_BEXPR: return *curbuf->b_p_bexpr != NUL
9209 ? (char_u *)&(curbuf->b_p_bexpr) : p->var;
9210 #endif
9211 #ifdef FEAT_STL_OPT
9212 case PV_STL: return *curwin->w_p_stl != NUL
9213 ? (char_u *)&(curwin->w_p_stl) : p->var;
9214 #endif
9216 #ifdef FEAT_ARABIC
9217 case PV_ARAB: return (char_u *)&(curwin->w_p_arab);
9218 #endif
9219 case PV_LIST: return (char_u *)&(curwin->w_p_list);
9220 #ifdef FEAT_SPELL
9221 case PV_SPELL: return (char_u *)&(curwin->w_p_spell);
9222 #endif
9223 #ifdef FEAT_SYN_HL
9224 case PV_CUC: return (char_u *)&(curwin->w_p_cuc);
9225 case PV_CUL: return (char_u *)&(curwin->w_p_cul);
9226 #endif
9227 #ifdef FEAT_DIFF
9228 case PV_DIFF: return (char_u *)&(curwin->w_p_diff);
9229 #endif
9230 #ifdef FEAT_FOLDING
9231 case PV_FDC: return (char_u *)&(curwin->w_p_fdc);
9232 case PV_FEN: return (char_u *)&(curwin->w_p_fen);
9233 case PV_FDI: return (char_u *)&(curwin->w_p_fdi);
9234 case PV_FDL: return (char_u *)&(curwin->w_p_fdl);
9235 case PV_FDM: return (char_u *)&(curwin->w_p_fdm);
9236 case PV_FML: return (char_u *)&(curwin->w_p_fml);
9237 case PV_FDN: return (char_u *)&(curwin->w_p_fdn);
9238 # ifdef FEAT_EVAL
9239 case PV_FDE: return (char_u *)&(curwin->w_p_fde);
9240 case PV_FDT: return (char_u *)&(curwin->w_p_fdt);
9241 # endif
9242 case PV_FMR: return (char_u *)&(curwin->w_p_fmr);
9243 #endif
9244 case PV_NU: return (char_u *)&(curwin->w_p_nu);
9245 #ifdef FEAT_LINEBREAK
9246 case PV_NUW: return (char_u *)&(curwin->w_p_nuw);
9247 #endif
9248 #ifdef FEAT_WINDOWS
9249 case PV_WFH: return (char_u *)&(curwin->w_p_wfh);
9250 #endif
9251 #ifdef FEAT_VERTSPLIT
9252 case PV_WFW: return (char_u *)&(curwin->w_p_wfw);
9253 #endif
9254 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
9255 case PV_PVW: return (char_u *)&(curwin->w_p_pvw);
9256 #endif
9257 #ifdef FEAT_RIGHTLEFT
9258 case PV_RL: return (char_u *)&(curwin->w_p_rl);
9259 case PV_RLC: return (char_u *)&(curwin->w_p_rlc);
9260 #endif
9261 case PV_SCROLL: return (char_u *)&(curwin->w_p_scr);
9262 case PV_WRAP: return (char_u *)&(curwin->w_p_wrap);
9263 #ifdef FEAT_LINEBREAK
9264 case PV_LBR: return (char_u *)&(curwin->w_p_lbr);
9265 #endif
9266 #ifdef FEAT_SCROLLBIND
9267 case PV_SCBIND: return (char_u *)&(curwin->w_p_scb);
9268 #endif
9270 case PV_AI: return (char_u *)&(curbuf->b_p_ai);
9271 case PV_BIN: return (char_u *)&(curbuf->b_p_bin);
9272 #ifdef FEAT_MBYTE
9273 case PV_BOMB: return (char_u *)&(curbuf->b_p_bomb);
9274 #endif
9275 #if defined(FEAT_QUICKFIX)
9276 case PV_BH: return (char_u *)&(curbuf->b_p_bh);
9277 case PV_BT: return (char_u *)&(curbuf->b_p_bt);
9278 #endif
9279 case PV_BL: return (char_u *)&(curbuf->b_p_bl);
9280 case PV_CI: return (char_u *)&(curbuf->b_p_ci);
9281 #ifdef FEAT_CINDENT
9282 case PV_CIN: return (char_u *)&(curbuf->b_p_cin);
9283 case PV_CINK: return (char_u *)&(curbuf->b_p_cink);
9284 case PV_CINO: return (char_u *)&(curbuf->b_p_cino);
9285 #endif
9286 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
9287 case PV_CINW: return (char_u *)&(curbuf->b_p_cinw);
9288 #endif
9289 #ifdef FEAT_COMMENTS
9290 case PV_COM: return (char_u *)&(curbuf->b_p_com);
9291 #endif
9292 #ifdef FEAT_FOLDING
9293 case PV_CMS: return (char_u *)&(curbuf->b_p_cms);
9294 #endif
9295 #ifdef FEAT_INS_EXPAND
9296 case PV_CPT: return (char_u *)&(curbuf->b_p_cpt);
9297 #endif
9298 #ifdef FEAT_COMPL_FUNC
9299 case PV_CFU: return (char_u *)&(curbuf->b_p_cfu);
9300 case PV_OFU: return (char_u *)&(curbuf->b_p_ofu);
9301 #endif
9302 case PV_EOL: return (char_u *)&(curbuf->b_p_eol);
9303 case PV_ET: return (char_u *)&(curbuf->b_p_et);
9304 #ifdef FEAT_MBYTE
9305 case PV_FENC: return (char_u *)&(curbuf->b_p_fenc);
9306 #endif
9307 case PV_FF: return (char_u *)&(curbuf->b_p_ff);
9308 #ifdef FEAT_AUTOCMD
9309 case PV_FT: return (char_u *)&(curbuf->b_p_ft);
9310 #endif
9311 case PV_FO: return (char_u *)&(curbuf->b_p_fo);
9312 case PV_FLP: return (char_u *)&(curbuf->b_p_flp);
9313 case PV_IMI: return (char_u *)&(curbuf->b_p_iminsert);
9314 case PV_IMS: return (char_u *)&(curbuf->b_p_imsearch);
9315 case PV_INF: return (char_u *)&(curbuf->b_p_inf);
9316 case PV_ISK: return (char_u *)&(curbuf->b_p_isk);
9317 #ifdef FEAT_FIND_ID
9318 # ifdef FEAT_EVAL
9319 case PV_INEX: return (char_u *)&(curbuf->b_p_inex);
9320 # endif
9321 #endif
9322 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
9323 case PV_INDE: return (char_u *)&(curbuf->b_p_inde);
9324 case PV_INDK: return (char_u *)&(curbuf->b_p_indk);
9325 #endif
9326 #ifdef FEAT_EVAL
9327 case PV_FEX: return (char_u *)&(curbuf->b_p_fex);
9328 #endif
9329 #ifdef FEAT_CRYPT
9330 case PV_KEY: return (char_u *)&(curbuf->b_p_key);
9331 #endif
9332 #ifdef FEAT_LISP
9333 case PV_LISP: return (char_u *)&(curbuf->b_p_lisp);
9334 #endif
9335 case PV_ML: return (char_u *)&(curbuf->b_p_ml);
9336 case PV_MPS: return (char_u *)&(curbuf->b_p_mps);
9337 #ifdef FEAT_GUI_MACVIM
9338 case PV_MMTA: return (char_u *)&(curbuf->b_p_mmta);
9339 #endif
9340 case PV_MA: return (char_u *)&(curbuf->b_p_ma);
9341 case PV_MOD: return (char_u *)&(curbuf->b_changed);
9342 case PV_NF: return (char_u *)&(curbuf->b_p_nf);
9343 #ifdef FEAT_OSFILETYPE
9344 case PV_OFT: return (char_u *)&(curbuf->b_p_oft);
9345 #endif
9346 case PV_PI: return (char_u *)&(curbuf->b_p_pi);
9347 #ifdef FEAT_TEXTOBJ
9348 case PV_QE: return (char_u *)&(curbuf->b_p_qe);
9349 #endif
9350 case PV_RO: return (char_u *)&(curbuf->b_p_ro);
9351 #ifdef FEAT_SMARTINDENT
9352 case PV_SI: return (char_u *)&(curbuf->b_p_si);
9353 #endif
9354 #ifndef SHORT_FNAME
9355 case PV_SN: return (char_u *)&(curbuf->b_p_sn);
9356 #endif
9357 case PV_STS: return (char_u *)&(curbuf->b_p_sts);
9358 #ifdef FEAT_SEARCHPATH
9359 case PV_SUA: return (char_u *)&(curbuf->b_p_sua);
9360 #endif
9361 case PV_SWF: return (char_u *)&(curbuf->b_p_swf);
9362 #ifdef FEAT_SYN_HL
9363 case PV_SMC: return (char_u *)&(curbuf->b_p_smc);
9364 case PV_SYN: return (char_u *)&(curbuf->b_p_syn);
9365 #endif
9366 #ifdef FEAT_SPELL
9367 case PV_SPC: return (char_u *)&(curbuf->b_p_spc);
9368 case PV_SPF: return (char_u *)&(curbuf->b_p_spf);
9369 case PV_SPL: return (char_u *)&(curbuf->b_p_spl);
9370 #endif
9371 case PV_SW: return (char_u *)&(curbuf->b_p_sw);
9372 case PV_TS: return (char_u *)&(curbuf->b_p_ts);
9373 case PV_TW: return (char_u *)&(curbuf->b_p_tw);
9374 case PV_TX: return (char_u *)&(curbuf->b_p_tx);
9375 case PV_WM: return (char_u *)&(curbuf->b_p_wm);
9376 #ifdef FEAT_KEYMAP
9377 case PV_KMAP: return (char_u *)&(curbuf->b_p_keymap);
9378 #endif
9379 default: EMSG(_("E356: get_varp ERROR"));
9381 /* always return a valid pointer to avoid a crash! */
9382 return (char_u *)&(curbuf->b_p_wm);
9386 * Get the value of 'equalprg', either the buffer-local one or the global one.
9388 char_u *
9389 get_equalprg()
9391 if (*curbuf->b_p_ep == NUL)
9392 return p_ep;
9393 return curbuf->b_p_ep;
9396 #if defined(FEAT_WINDOWS) || defined(PROTO)
9398 * Copy options from one window to another.
9399 * Used when splitting a window.
9401 void
9402 win_copy_options(wp_from, wp_to)
9403 win_T *wp_from;
9404 win_T *wp_to;
9406 copy_winopt(&wp_from->w_onebuf_opt, &wp_to->w_onebuf_opt);
9407 copy_winopt(&wp_from->w_allbuf_opt, &wp_to->w_allbuf_opt);
9408 # ifdef FEAT_RIGHTLEFT
9409 # ifdef FEAT_FKMAP
9410 /* Is this right? */
9411 wp_to->w_farsi = wp_from->w_farsi;
9412 # endif
9413 # endif
9415 #endif
9418 * Copy the options from one winopt_T to another.
9419 * Doesn't free the old option values in "to", use clear_winopt() for that.
9420 * The 'scroll' option is not copied, because it depends on the window height.
9421 * The 'previewwindow' option is reset, there can be only one preview window.
9423 void
9424 copy_winopt(from, to)
9425 winopt_T *from;
9426 winopt_T *to;
9428 #ifdef FEAT_ARABIC
9429 to->wo_arab = from->wo_arab;
9430 #endif
9431 to->wo_list = from->wo_list;
9432 to->wo_nu = from->wo_nu;
9433 #ifdef FEAT_LINEBREAK
9434 to->wo_nuw = from->wo_nuw;
9435 #endif
9436 #ifdef FEAT_RIGHTLEFT
9437 to->wo_rl = from->wo_rl;
9438 to->wo_rlc = vim_strsave(from->wo_rlc);
9439 #endif
9440 #ifdef FEAT_STL_OPT
9441 to->wo_stl = vim_strsave(from->wo_stl);
9442 #endif
9443 to->wo_wrap = from->wo_wrap;
9444 #ifdef FEAT_LINEBREAK
9445 to->wo_lbr = from->wo_lbr;
9446 #endif
9447 #ifdef FEAT_SCROLLBIND
9448 to->wo_scb = from->wo_scb;
9449 #endif
9450 #ifdef FEAT_SPELL
9451 to->wo_spell = from->wo_spell;
9452 #endif
9453 #ifdef FEAT_SYN_HL
9454 to->wo_cuc = from->wo_cuc;
9455 to->wo_cul = from->wo_cul;
9456 #endif
9457 #ifdef FEAT_DIFF
9458 to->wo_diff = from->wo_diff;
9459 #endif
9460 #ifdef FEAT_FOLDING
9461 to->wo_fdc = from->wo_fdc;
9462 to->wo_fen = from->wo_fen;
9463 to->wo_fdi = vim_strsave(from->wo_fdi);
9464 to->wo_fml = from->wo_fml;
9465 to->wo_fdl = from->wo_fdl;
9466 to->wo_fdm = vim_strsave(from->wo_fdm);
9467 to->wo_fdn = from->wo_fdn;
9468 # ifdef FEAT_EVAL
9469 to->wo_fde = vim_strsave(from->wo_fde);
9470 to->wo_fdt = vim_strsave(from->wo_fdt);
9471 # endif
9472 to->wo_fmr = vim_strsave(from->wo_fmr);
9473 #endif
9474 check_winopt(to); /* don't want NULL pointers */
9478 * Check string options in a window for a NULL value.
9480 void
9481 check_win_options(win)
9482 win_T *win;
9484 check_winopt(&win->w_onebuf_opt);
9485 check_winopt(&win->w_allbuf_opt);
9489 * Check for NULL pointers in a winopt_T and replace them with empty_option.
9491 /*ARGSUSED*/
9492 void
9493 check_winopt(wop)
9494 winopt_T *wop;
9496 #ifdef FEAT_FOLDING
9497 check_string_option(&wop->wo_fdi);
9498 check_string_option(&wop->wo_fdm);
9499 # ifdef FEAT_EVAL
9500 check_string_option(&wop->wo_fde);
9501 check_string_option(&wop->wo_fdt);
9502 # endif
9503 check_string_option(&wop->wo_fmr);
9504 #endif
9505 #ifdef FEAT_RIGHTLEFT
9506 check_string_option(&wop->wo_rlc);
9507 #endif
9508 #ifdef FEAT_STL_OPT
9509 check_string_option(&wop->wo_stl);
9510 #endif
9514 * Free the allocated memory inside a winopt_T.
9516 /*ARGSUSED*/
9517 void
9518 clear_winopt(wop)
9519 winopt_T *wop;
9521 #ifdef FEAT_FOLDING
9522 clear_string_option(&wop->wo_fdi);
9523 clear_string_option(&wop->wo_fdm);
9524 # ifdef FEAT_EVAL
9525 clear_string_option(&wop->wo_fde);
9526 clear_string_option(&wop->wo_fdt);
9527 # endif
9528 clear_string_option(&wop->wo_fmr);
9529 #endif
9530 #ifdef FEAT_RIGHTLEFT
9531 clear_string_option(&wop->wo_rlc);
9532 #endif
9533 #ifdef FEAT_STL_OPT
9534 clear_string_option(&wop->wo_stl);
9535 #endif
9539 * Copy global option values to local options for one buffer.
9540 * Used when creating a new buffer and sometimes when entering a buffer.
9541 * flags:
9542 * BCO_ENTER We will enter the buf buffer.
9543 * BCO_ALWAYS Always copy the options, but only set b_p_initialized when
9544 * appropriate.
9545 * BCO_NOHELP Don't copy the values to a help buffer.
9547 void
9548 buf_copy_options(buf, flags)
9549 buf_T *buf;
9550 int flags;
9552 int should_copy = TRUE;
9553 char_u *save_p_isk = NULL; /* init for GCC */
9554 int dont_do_help;
9555 int did_isk = FALSE;
9558 * Don't do anything of the buffer is invalid.
9560 if (buf == NULL || !buf_valid(buf))
9561 return;
9564 * Skip this when the option defaults have not been set yet. Happens when
9565 * main() allocates the first buffer.
9567 if (p_cpo != NULL)
9570 * Always copy when entering and 'cpo' contains 'S'.
9571 * Don't copy when already initialized.
9572 * Don't copy when 'cpo' contains 's' and not entering.
9573 * 'S' BCO_ENTER initialized 's' should_copy
9574 * yes yes X X TRUE
9575 * yes no yes X FALSE
9576 * no X yes X FALSE
9577 * X no no yes FALSE
9578 * X no no no TRUE
9579 * no yes no X TRUE
9581 if ((vim_strchr(p_cpo, CPO_BUFOPTGLOB) == NULL || !(flags & BCO_ENTER))
9582 && (buf->b_p_initialized
9583 || (!(flags & BCO_ENTER)
9584 && vim_strchr(p_cpo, CPO_BUFOPT) != NULL)))
9585 should_copy = FALSE;
9587 if (should_copy || (flags & BCO_ALWAYS))
9589 /* Don't copy the options specific to a help buffer when
9590 * BCO_NOHELP is given or the options were initialized already
9591 * (jumping back to a help file with CTRL-T or CTRL-O) */
9592 dont_do_help = ((flags & BCO_NOHELP) && buf->b_help)
9593 || buf->b_p_initialized;
9594 if (dont_do_help) /* don't free b_p_isk */
9596 save_p_isk = buf->b_p_isk;
9597 buf->b_p_isk = NULL;
9600 * Always free the allocated strings.
9601 * If not already initialized, set 'readonly' and copy 'fileformat'.
9603 if (!buf->b_p_initialized)
9605 free_buf_options(buf, TRUE);
9606 buf->b_p_ro = FALSE; /* don't copy readonly */
9607 buf->b_p_tx = p_tx;
9608 #ifdef FEAT_MBYTE
9609 buf->b_p_fenc = vim_strsave(p_fenc);
9610 #endif
9611 buf->b_p_ff = vim_strsave(p_ff);
9612 #if defined(FEAT_QUICKFIX)
9613 buf->b_p_bh = empty_option;
9614 buf->b_p_bt = empty_option;
9615 #endif
9617 else
9618 free_buf_options(buf, FALSE);
9620 buf->b_p_ai = p_ai;
9621 buf->b_p_ai_nopaste = p_ai_nopaste;
9622 buf->b_p_sw = p_sw;
9623 buf->b_p_tw = p_tw;
9624 buf->b_p_tw_nopaste = p_tw_nopaste;
9625 buf->b_p_tw_nobin = p_tw_nobin;
9626 buf->b_p_wm = p_wm;
9627 buf->b_p_wm_nopaste = p_wm_nopaste;
9628 buf->b_p_wm_nobin = p_wm_nobin;
9629 buf->b_p_bin = p_bin;
9630 #ifdef FEAT_MBYTE
9631 buf->b_p_bomb = p_bomb;
9632 #endif
9633 buf->b_p_et = p_et;
9634 buf->b_p_et_nobin = p_et_nobin;
9635 buf->b_p_ml = p_ml;
9636 buf->b_p_ml_nobin = p_ml_nobin;
9637 buf->b_p_inf = p_inf;
9638 buf->b_p_swf = p_swf;
9639 #ifdef FEAT_INS_EXPAND
9640 buf->b_p_cpt = vim_strsave(p_cpt);
9641 #endif
9642 #ifdef FEAT_COMPL_FUNC
9643 buf->b_p_cfu = vim_strsave(p_cfu);
9644 buf->b_p_ofu = vim_strsave(p_ofu);
9645 #endif
9646 buf->b_p_sts = p_sts;
9647 buf->b_p_sts_nopaste = p_sts_nopaste;
9648 #ifndef SHORT_FNAME
9649 buf->b_p_sn = p_sn;
9650 #endif
9651 #ifdef FEAT_COMMENTS
9652 buf->b_p_com = vim_strsave(p_com);
9653 #endif
9654 #ifdef FEAT_FOLDING
9655 buf->b_p_cms = vim_strsave(p_cms);
9656 #endif
9657 buf->b_p_fo = vim_strsave(p_fo);
9658 buf->b_p_flp = vim_strsave(p_flp);
9659 buf->b_p_nf = vim_strsave(p_nf);
9660 buf->b_p_mps = vim_strsave(p_mps);
9661 #ifdef FEAT_SMARTINDENT
9662 buf->b_p_si = p_si;
9663 #endif
9664 buf->b_p_ci = p_ci;
9665 #ifdef FEAT_CINDENT
9666 buf->b_p_cin = p_cin;
9667 buf->b_p_cink = vim_strsave(p_cink);
9668 buf->b_p_cino = vim_strsave(p_cino);
9669 #endif
9670 #ifdef FEAT_AUTOCMD
9671 /* Don't copy 'filetype', it must be detected */
9672 buf->b_p_ft = empty_option;
9673 #endif
9674 #ifdef FEAT_OSFILETYPE
9675 buf->b_p_oft = vim_strsave(p_oft);
9676 #endif
9677 buf->b_p_pi = p_pi;
9678 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
9679 buf->b_p_cinw = vim_strsave(p_cinw);
9680 #endif
9681 #ifdef FEAT_LISP
9682 buf->b_p_lisp = p_lisp;
9683 #endif
9684 #ifdef FEAT_SYN_HL
9685 /* Don't copy 'syntax', it must be set */
9686 buf->b_p_syn = empty_option;
9687 buf->b_p_smc = p_smc;
9688 #endif
9689 #ifdef FEAT_SPELL
9690 buf->b_p_spc = vim_strsave(p_spc);
9691 (void)compile_cap_prog(buf);
9692 buf->b_p_spf = vim_strsave(p_spf);
9693 buf->b_p_spl = vim_strsave(p_spl);
9694 #endif
9695 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
9696 buf->b_p_inde = vim_strsave(p_inde);
9697 buf->b_p_indk = vim_strsave(p_indk);
9698 #endif
9699 #if defined(FEAT_EVAL)
9700 buf->b_p_fex = vim_strsave(p_fex);
9701 #endif
9702 #ifdef FEAT_CRYPT
9703 buf->b_p_key = vim_strsave(p_key);
9704 #endif
9705 #ifdef FEAT_SEARCHPATH
9706 buf->b_p_sua = vim_strsave(p_sua);
9707 #endif
9708 #ifdef FEAT_KEYMAP
9709 buf->b_p_keymap = vim_strsave(p_keymap);
9710 buf->b_kmap_state |= KEYMAP_INIT;
9711 #endif
9712 #ifdef FEAT_GUI_MACVIM
9713 buf->b_p_mmta = p_mmta;
9714 #endif
9715 /* This isn't really an option, but copying the langmap and IME
9716 * state from the current buffer is better than resetting it. */
9717 buf->b_p_iminsert = p_iminsert;
9718 buf->b_p_imsearch = p_imsearch;
9720 /* options that are normally global but also have a local value
9721 * are not copied, start using the global value */
9722 buf->b_p_ar = -1;
9723 #ifdef FEAT_QUICKFIX
9724 buf->b_p_gp = empty_option;
9725 buf->b_p_mp = empty_option;
9726 buf->b_p_efm = empty_option;
9727 #endif
9728 buf->b_p_ep = empty_option;
9729 buf->b_p_kp = empty_option;
9730 buf->b_p_path = empty_option;
9731 buf->b_p_tags = empty_option;
9732 #ifdef FEAT_FIND_ID
9733 buf->b_p_def = empty_option;
9734 buf->b_p_inc = empty_option;
9735 # ifdef FEAT_EVAL
9736 buf->b_p_inex = vim_strsave(p_inex);
9737 # endif
9738 #endif
9739 #ifdef FEAT_INS_EXPAND
9740 buf->b_p_dict = empty_option;
9741 buf->b_p_tsr = empty_option;
9742 #endif
9743 #ifdef FEAT_TEXTOBJ
9744 buf->b_p_qe = vim_strsave(p_qe);
9745 #endif
9746 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9747 buf->b_p_bexpr = empty_option;
9748 #endif
9751 * Don't copy the options set by ex_help(), use the saved values,
9752 * when going from a help buffer to a non-help buffer.
9753 * Don't touch these at all when BCO_NOHELP is used and going from
9754 * or to a help buffer.
9756 if (dont_do_help)
9757 buf->b_p_isk = save_p_isk;
9758 else
9760 buf->b_p_isk = vim_strsave(p_isk);
9761 did_isk = TRUE;
9762 buf->b_p_ts = p_ts;
9763 buf->b_help = FALSE;
9764 #ifdef FEAT_QUICKFIX
9765 if (buf->b_p_bt[0] == 'h')
9766 clear_string_option(&buf->b_p_bt);
9767 #endif
9768 buf->b_p_ma = p_ma;
9773 * When the options should be copied (ignoring BCO_ALWAYS), set the
9774 * flag that indicates that the options have been initialized.
9776 if (should_copy)
9777 buf->b_p_initialized = TRUE;
9780 check_buf_options(buf); /* make sure we don't have NULLs */
9781 if (did_isk)
9782 (void)buf_init_chartab(buf, FALSE);
9786 * Reset the 'modifiable' option and its default value.
9788 void
9789 reset_modifiable()
9791 int opt_idx;
9793 curbuf->b_p_ma = FALSE;
9794 p_ma = FALSE;
9795 opt_idx = findoption((char_u *)"ma");
9796 if (opt_idx >= 0)
9797 options[opt_idx].def_val[VI_DEFAULT] = FALSE;
9801 * Set the global value for 'iminsert' to the local value.
9803 void
9804 set_iminsert_global()
9806 p_iminsert = curbuf->b_p_iminsert;
9810 * Set the global value for 'imsearch' to the local value.
9812 void
9813 set_imsearch_global()
9815 p_imsearch = curbuf->b_p_imsearch;
9818 #if defined(FEAT_CMDL_COMPL) || defined(PROTO)
9819 static int expand_option_idx = -1;
9820 static char_u expand_option_name[5] = {'t', '_', NUL, NUL, NUL};
9821 static int expand_option_flags = 0;
9823 void
9824 set_context_in_set_cmd(xp, arg, opt_flags)
9825 expand_T *xp;
9826 char_u *arg;
9827 int opt_flags; /* OPT_GLOBAL and/or OPT_LOCAL */
9829 int nextchar;
9830 long_u flags = 0; /* init for GCC */
9831 int opt_idx = 0; /* init for GCC */
9832 char_u *p;
9833 char_u *s;
9834 int is_term_option = FALSE;
9835 int key;
9837 expand_option_flags = opt_flags;
9839 xp->xp_context = EXPAND_SETTINGS;
9840 if (*arg == NUL)
9842 xp->xp_pattern = arg;
9843 return;
9845 p = arg + STRLEN(arg) - 1;
9846 if (*p == ' ' && *(p - 1) != '\\')
9848 xp->xp_pattern = p + 1;
9849 return;
9851 while (p > arg)
9853 s = p;
9854 /* count number of backslashes before ' ' or ',' */
9855 if (*p == ' ' || *p == ',')
9857 while (s > arg && *(s - 1) == '\\')
9858 --s;
9860 /* break at a space with an even number of backslashes */
9861 if (*p == ' ' && ((p - s) & 1) == 0)
9863 ++p;
9864 break;
9866 --p;
9868 if (STRNCMP(p, "no", 2) == 0)
9870 xp->xp_context = EXPAND_BOOL_SETTINGS;
9871 p += 2;
9873 if (STRNCMP(p, "inv", 3) == 0)
9875 xp->xp_context = EXPAND_BOOL_SETTINGS;
9876 p += 3;
9878 xp->xp_pattern = arg = p;
9879 if (*arg == '<')
9881 while (*p != '>')
9882 if (*p++ == NUL) /* expand terminal option name */
9883 return;
9884 key = get_special_key_code(arg + 1);
9885 if (key == 0) /* unknown name */
9887 xp->xp_context = EXPAND_NOTHING;
9888 return;
9890 nextchar = *++p;
9891 is_term_option = TRUE;
9892 expand_option_name[2] = KEY2TERMCAP0(key);
9893 expand_option_name[3] = KEY2TERMCAP1(key);
9895 else
9897 if (p[0] == 't' && p[1] == '_')
9899 p += 2;
9900 if (*p != NUL)
9901 ++p;
9902 if (*p == NUL)
9903 return; /* expand option name */
9904 nextchar = *++p;
9905 is_term_option = TRUE;
9906 expand_option_name[2] = p[-2];
9907 expand_option_name[3] = p[-1];
9909 else
9911 /* Allow * wildcard */
9912 while (ASCII_ISALNUM(*p) || *p == '_' || *p == '*')
9913 p++;
9914 if (*p == NUL)
9915 return;
9916 nextchar = *p;
9917 *p = NUL;
9918 opt_idx = findoption(arg);
9919 *p = nextchar;
9920 if (opt_idx == -1 || options[opt_idx].var == NULL)
9922 xp->xp_context = EXPAND_NOTHING;
9923 return;
9925 flags = options[opt_idx].flags;
9926 if (flags & P_BOOL)
9928 xp->xp_context = EXPAND_NOTHING;
9929 return;
9933 /* handle "-=" and "+=" */
9934 if ((nextchar == '-' || nextchar == '+' || nextchar == '^') && p[1] == '=')
9936 ++p;
9937 nextchar = '=';
9939 if ((nextchar != '=' && nextchar != ':')
9940 || xp->xp_context == EXPAND_BOOL_SETTINGS)
9942 xp->xp_context = EXPAND_UNSUCCESSFUL;
9943 return;
9945 if (xp->xp_context != EXPAND_BOOL_SETTINGS && p[1] == NUL)
9947 xp->xp_context = EXPAND_OLD_SETTING;
9948 if (is_term_option)
9949 expand_option_idx = -1;
9950 else
9951 expand_option_idx = opt_idx;
9952 xp->xp_pattern = p + 1;
9953 return;
9955 xp->xp_context = EXPAND_NOTHING;
9956 if (is_term_option || (flags & P_NUM))
9957 return;
9959 xp->xp_pattern = p + 1;
9961 if (flags & P_EXPAND)
9963 p = options[opt_idx].var;
9964 if (p == (char_u *)&p_bdir
9965 || p == (char_u *)&p_dir
9966 || p == (char_u *)&p_path
9967 || p == (char_u *)&p_rtp
9968 #ifdef FEAT_SEARCHPATH
9969 || p == (char_u *)&p_cdpath
9970 #endif
9971 #ifdef FEAT_SESSION
9972 || p == (char_u *)&p_vdir
9973 #endif
9976 xp->xp_context = EXPAND_DIRECTORIES;
9977 if (p == (char_u *)&p_path
9978 #ifdef FEAT_SEARCHPATH
9979 || p == (char_u *)&p_cdpath
9980 #endif
9982 xp->xp_backslash = XP_BS_THREE;
9983 else
9984 xp->xp_backslash = XP_BS_ONE;
9986 else
9988 xp->xp_context = EXPAND_FILES;
9989 /* for 'tags' need three backslashes for a space */
9990 if (p == (char_u *)&p_tags)
9991 xp->xp_backslash = XP_BS_THREE;
9992 else
9993 xp->xp_backslash = XP_BS_ONE;
9997 /* For an option that is a list of file names, find the start of the
9998 * last file name. */
9999 for (p = arg + STRLEN(arg) - 1; p > xp->xp_pattern; --p)
10001 /* count number of backslashes before ' ' or ',' */
10002 if (*p == ' ' || *p == ',')
10004 s = p;
10005 while (s > xp->xp_pattern && *(s - 1) == '\\')
10006 --s;
10007 if ((*p == ' ' && (xp->xp_backslash == XP_BS_THREE && (p - s) < 3))
10008 || (*p == ',' && (flags & P_COMMA) && ((p - s) & 1) == 0))
10010 xp->xp_pattern = p + 1;
10011 break;
10015 #ifdef FEAT_SPELL
10016 /* for 'spellsuggest' start at "file:" */
10017 if (options[opt_idx].var == (char_u *)&p_sps
10018 && STRNCMP(p, "file:", 5) == 0)
10020 xp->xp_pattern = p + 5;
10021 break;
10023 #endif
10026 return;
10030 ExpandSettings(xp, regmatch, num_file, file)
10031 expand_T *xp;
10032 regmatch_T *regmatch;
10033 int *num_file;
10034 char_u ***file;
10036 int num_normal = 0; /* Nr of matching non-term-code settings */
10037 int num_term = 0; /* Nr of matching terminal code settings */
10038 int opt_idx;
10039 int match;
10040 int count = 0;
10041 char_u *str;
10042 int loop;
10043 int is_term_opt;
10044 char_u name_buf[MAX_KEY_NAME_LEN];
10045 static char *(names[]) = {"all", "termcap"};
10046 int ic = regmatch->rm_ic; /* remember the ignore-case flag */
10048 /* do this loop twice:
10049 * loop == 0: count the number of matching options
10050 * loop == 1: copy the matching options into allocated memory
10052 for (loop = 0; loop <= 1; ++loop)
10054 regmatch->rm_ic = ic;
10055 if (xp->xp_context != EXPAND_BOOL_SETTINGS)
10057 for (match = 0; match < sizeof(names) / sizeof(char *); ++match)
10058 if (vim_regexec(regmatch, (char_u *)names[match], (colnr_T)0))
10060 if (loop == 0)
10061 num_normal++;
10062 else
10063 (*file)[count++] = vim_strsave((char_u *)names[match]);
10066 for (opt_idx = 0; (str = (char_u *)options[opt_idx].fullname) != NULL;
10067 opt_idx++)
10069 if (options[opt_idx].var == NULL)
10070 continue;
10071 if (xp->xp_context == EXPAND_BOOL_SETTINGS
10072 && !(options[opt_idx].flags & P_BOOL))
10073 continue;
10074 is_term_opt = istermoption(&options[opt_idx]);
10075 if (is_term_opt && num_normal > 0)
10076 continue;
10077 match = FALSE;
10078 if (vim_regexec(regmatch, str, (colnr_T)0)
10079 || (options[opt_idx].shortname != NULL
10080 && vim_regexec(regmatch,
10081 (char_u *)options[opt_idx].shortname, (colnr_T)0)))
10082 match = TRUE;
10083 else if (is_term_opt)
10085 name_buf[0] = '<';
10086 name_buf[1] = 't';
10087 name_buf[2] = '_';
10088 name_buf[3] = str[2];
10089 name_buf[4] = str[3];
10090 name_buf[5] = '>';
10091 name_buf[6] = NUL;
10092 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10094 match = TRUE;
10095 str = name_buf;
10098 if (match)
10100 if (loop == 0)
10102 if (is_term_opt)
10103 num_term++;
10104 else
10105 num_normal++;
10107 else
10108 (*file)[count++] = vim_strsave(str);
10112 * Check terminal key codes, these are not in the option table
10114 if (xp->xp_context != EXPAND_BOOL_SETTINGS && num_normal == 0)
10116 for (opt_idx = 0; (str = get_termcode(opt_idx)) != NULL; opt_idx++)
10118 if (!isprint(str[0]) || !isprint(str[1]))
10119 continue;
10121 name_buf[0] = 't';
10122 name_buf[1] = '_';
10123 name_buf[2] = str[0];
10124 name_buf[3] = str[1];
10125 name_buf[4] = NUL;
10127 match = FALSE;
10128 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10129 match = TRUE;
10130 else
10132 name_buf[0] = '<';
10133 name_buf[1] = 't';
10134 name_buf[2] = '_';
10135 name_buf[3] = str[0];
10136 name_buf[4] = str[1];
10137 name_buf[5] = '>';
10138 name_buf[6] = NUL;
10140 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10141 match = TRUE;
10143 if (match)
10145 if (loop == 0)
10146 num_term++;
10147 else
10148 (*file)[count++] = vim_strsave(name_buf);
10153 * Check special key names.
10155 regmatch->rm_ic = TRUE; /* ignore case here */
10156 for (opt_idx = 0; (str = get_key_name(opt_idx)) != NULL; opt_idx++)
10158 name_buf[0] = '<';
10159 STRCPY(name_buf + 1, str);
10160 STRCAT(name_buf, ">");
10162 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10164 if (loop == 0)
10165 num_term++;
10166 else
10167 (*file)[count++] = vim_strsave(name_buf);
10171 if (loop == 0)
10173 if (num_normal > 0)
10174 *num_file = num_normal;
10175 else if (num_term > 0)
10176 *num_file = num_term;
10177 else
10178 return OK;
10179 *file = (char_u **)alloc((unsigned)(*num_file * sizeof(char_u *)));
10180 if (*file == NULL)
10182 *file = (char_u **)"";
10183 return FAIL;
10187 return OK;
10191 ExpandOldSetting(num_file, file)
10192 int *num_file;
10193 char_u ***file;
10195 char_u *var = NULL; /* init for GCC */
10196 char_u *buf;
10198 *num_file = 0;
10199 *file = (char_u **)alloc((unsigned)sizeof(char_u *));
10200 if (*file == NULL)
10201 return FAIL;
10204 * For a terminal key code expand_option_idx is < 0.
10206 if (expand_option_idx < 0)
10208 var = find_termcode(expand_option_name + 2);
10209 if (var == NULL)
10210 expand_option_idx = findoption(expand_option_name);
10213 if (expand_option_idx >= 0)
10215 /* put string of option value in NameBuff */
10216 option_value2string(&options[expand_option_idx], expand_option_flags);
10217 var = NameBuff;
10219 else if (var == NULL)
10220 var = (char_u *)"";
10222 /* A backslash is required before some characters. This is the reverse of
10223 * what happens in do_set(). */
10224 buf = vim_strsave_escaped(var, escape_chars);
10226 if (buf == NULL)
10228 vim_free(*file);
10229 *file = NULL;
10230 return FAIL;
10233 #ifdef BACKSLASH_IN_FILENAME
10234 /* For MS-Windows et al. we don't double backslashes at the start and
10235 * before a file name character. */
10236 for (var = buf; *var != NUL; mb_ptr_adv(var))
10237 if (var[0] == '\\' && var[1] == '\\'
10238 && expand_option_idx >= 0
10239 && (options[expand_option_idx].flags & P_EXPAND)
10240 && vim_isfilec(var[2])
10241 && (var[2] != '\\' || (var == buf && var[4] != '\\')))
10242 STRMOVE(var, var + 1);
10243 #endif
10245 *file[0] = buf;
10246 *num_file = 1;
10247 return OK;
10249 #endif
10252 * Get the value for the numeric or string option *opp in a nice format into
10253 * NameBuff[]. Must not be called with a hidden option!
10255 static void
10256 option_value2string(opp, opt_flags)
10257 struct vimoption *opp;
10258 int opt_flags; /* OPT_GLOBAL and/or OPT_LOCAL */
10260 char_u *varp;
10262 varp = get_varp_scope(opp, opt_flags);
10264 if (opp->flags & P_NUM)
10266 long wc = 0;
10268 if (wc_use_keyname(varp, &wc))
10269 STRCPY(NameBuff, get_special_key_name((int)wc, 0));
10270 else if (wc != 0)
10271 STRCPY(NameBuff, transchar((int)wc));
10272 else
10273 sprintf((char *)NameBuff, "%ld", *(long *)varp);
10275 else /* P_STRING */
10277 varp = *(char_u **)(varp);
10278 if (varp == NULL) /* just in case */
10279 NameBuff[0] = NUL;
10280 #ifdef FEAT_CRYPT
10281 /* don't show the actual value of 'key', only that it's set */
10282 else if (opp->var == (char_u *)&p_key && *varp)
10283 STRCPY(NameBuff, "*****");
10284 #endif
10285 else if (opp->flags & P_EXPAND)
10286 home_replace(NULL, varp, NameBuff, MAXPATHL, FALSE);
10287 /* Translate 'pastetoggle' into special key names */
10288 else if ((char_u **)opp->var == &p_pt)
10289 str2specialbuf(p_pt, NameBuff, MAXPATHL);
10290 else
10291 vim_strncpy(NameBuff, varp, MAXPATHL - 1);
10296 * Return TRUE if "varp" points to 'wildchar' or 'wildcharm' and it can be
10297 * printed as a keyname.
10298 * "*wcp" is set to the value of the option if it's 'wildchar' or 'wildcharm'.
10300 static int
10301 wc_use_keyname(varp, wcp)
10302 char_u *varp;
10303 long *wcp;
10305 if (((long *)varp == &p_wc) || ((long *)varp == &p_wcm))
10307 *wcp = *(long *)varp;
10308 if (IS_SPECIAL(*wcp) || find_special_key_in_table((int)*wcp) >= 0)
10309 return TRUE;
10311 return FALSE;
10314 #ifdef FEAT_LANGMAP
10316 * Any character has an equivalent 'langmap' character. This is used for
10317 * keyboards that have a special language mode that sends characters above
10318 * 128 (although other characters can be translated too). The "to" field is a
10319 * Vim command character. This avoids having to switch the keyboard back to
10320 * ASCII mode when leaving Insert mode.
10322 * langmap_mapchar[] maps any of 256 chars to an ASCII char used for Vim
10323 * commands.
10324 * When FEAT_MBYTE is defined langmap_mapga.ga_data is a sorted table of
10325 * langmap_entry_T. This does the same as langmap_mapchar[] for characters >=
10326 * 256.
10328 # ifdef FEAT_MBYTE
10330 * With multi-byte support use growarray for 'langmap' chars >= 256
10332 typedef struct
10334 int from;
10335 int to;
10336 } langmap_entry_T;
10338 static garray_T langmap_mapga;
10339 static void langmap_set_entry __ARGS((int from, int to));
10342 * Search for an entry in "langmap_mapga" for "from". If found set the "to"
10343 * field. If not found insert a new entry at the appropriate location.
10345 static void
10346 langmap_set_entry(from, to)
10347 int from;
10348 int to;
10350 langmap_entry_T *entries = (langmap_entry_T *)(langmap_mapga.ga_data);
10351 int a = 0;
10352 int b = langmap_mapga.ga_len;
10354 /* Do a binary search for an existing entry. */
10355 while (a != b)
10357 int i = (a + b) / 2;
10358 int d = entries[i].from - from;
10360 if (d == 0)
10362 entries[i].to = to;
10363 return;
10365 if (d < 0)
10366 a = i + 1;
10367 else
10368 b = i;
10371 if (ga_grow(&langmap_mapga, 1) != OK)
10372 return; /* out of memory */
10374 /* insert new entry at position "a" */
10375 entries = (langmap_entry_T *)(langmap_mapga.ga_data) + a;
10376 mch_memmove(entries + 1, entries,
10377 (langmap_mapga.ga_len - a) * sizeof(langmap_entry_T));
10378 ++langmap_mapga.ga_len;
10379 entries[0].from = from;
10380 entries[0].to = to;
10384 * Apply 'langmap' to multi-byte character "c" and return the result.
10387 langmap_adjust_mb(c)
10388 int c;
10390 langmap_entry_T *entries = (langmap_entry_T *)(langmap_mapga.ga_data);
10391 int a = 0;
10392 int b = langmap_mapga.ga_len;
10394 while (a != b)
10396 int i = (a + b) / 2;
10397 int d = entries[i].from - c;
10399 if (d == 0)
10400 return entries[i].to; /* found matching entry */
10401 if (d < 0)
10402 a = i + 1;
10403 else
10404 b = i;
10406 return c; /* no entry found, return "c" unmodified */
10408 # endif
10410 static void
10411 langmap_init()
10413 int i;
10415 for (i = 0; i < 256; i++)
10416 langmap_mapchar[i] = i; /* we init with a one-to-one map */
10417 # ifdef FEAT_MBYTE
10418 ga_init2(&langmap_mapga, sizeof(langmap_entry_T), 8);
10419 # endif
10423 * Called when langmap option is set; the language map can be
10424 * changed at any time!
10426 static void
10427 langmap_set()
10429 char_u *p;
10430 char_u *p2;
10431 int from, to;
10433 #ifdef FEAT_MBYTE
10434 ga_clear(&langmap_mapga); /* clear the previous map first */
10435 #endif
10436 langmap_init(); /* back to one-to-one map */
10438 for (p = p_langmap; p[0] != NUL; )
10440 for (p2 = p; p2[0] != NUL && p2[0] != ',' && p2[0] != ';';
10441 mb_ptr_adv(p2))
10443 if (p2[0] == '\\' && p2[1] != NUL)
10444 ++p2;
10446 if (p2[0] == ';')
10447 ++p2; /* abcd;ABCD form, p2 points to A */
10448 else
10449 p2 = NULL; /* aAbBcCdD form, p2 is NULL */
10450 while (p[0])
10452 if (p[0] == '\\' && p[1] != NUL)
10453 ++p;
10454 #ifdef FEAT_MBYTE
10455 from = (*mb_ptr2char)(p);
10456 #else
10457 from = p[0];
10458 #endif
10459 if (p2 == NULL)
10461 mb_ptr_adv(p);
10462 if (p[0] == '\\')
10463 ++p;
10464 #ifdef FEAT_MBYTE
10465 to = (*mb_ptr2char)(p);
10466 #else
10467 to = p[0];
10468 #endif
10470 else
10472 if (p2[0] == '\\')
10473 ++p2;
10474 #ifdef FEAT_MBYTE
10475 to = (*mb_ptr2char)(p2);
10476 #else
10477 to = p2[0];
10478 #endif
10480 if (to == NUL)
10482 EMSG2(_("E357: 'langmap': Matching character missing for %s"),
10483 transchar(from));
10484 return;
10487 #ifdef FEAT_MBYTE
10488 if (from >= 256)
10489 langmap_set_entry(from, to);
10490 else
10491 #endif
10492 langmap_mapchar[from & 255] = to;
10494 /* Advance to next pair */
10495 mb_ptr_adv(p);
10496 if (p2 == NULL)
10498 if (p[0] == ',')
10500 ++p;
10501 break;
10504 else
10506 mb_ptr_adv(p2);
10507 if (*p == ';')
10509 p = p2;
10510 if (p[0] != NUL)
10512 if (p[0] != ',')
10514 EMSG2(_("E358: 'langmap': Extra characters after semicolon: %s"), p);
10515 return;
10517 ++p;
10519 break;
10525 #endif
10528 * Return TRUE if format option 'x' is in effect.
10529 * Take care of no formatting when 'paste' is set.
10532 has_format_option(x)
10533 int x;
10535 if (p_paste)
10536 return FALSE;
10537 return (vim_strchr(curbuf->b_p_fo, x) != NULL);
10541 * Return TRUE if "x" is present in 'shortmess' option, or
10542 * 'shortmess' contains 'a' and "x" is present in SHM_A.
10545 shortmess(x)
10546 int x;
10548 return ( vim_strchr(p_shm, x) != NULL
10549 || (vim_strchr(p_shm, 'a') != NULL
10550 && vim_strchr((char_u *)SHM_A, x) != NULL));
10554 * paste_option_changed() - Called after p_paste was set or reset.
10556 static void
10557 paste_option_changed()
10559 static int old_p_paste = FALSE;
10560 static int save_sm = 0;
10561 #ifdef FEAT_CMDL_INFO
10562 static int save_ru = 0;
10563 #endif
10564 #ifdef FEAT_RIGHTLEFT
10565 static int save_ri = 0;
10566 static int save_hkmap = 0;
10567 #endif
10568 buf_T *buf;
10570 if (p_paste)
10573 * Paste switched from off to on.
10574 * Save the current values, so they can be restored later.
10576 if (!old_p_paste)
10578 /* save options for each buffer */
10579 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10581 buf->b_p_tw_nopaste = buf->b_p_tw;
10582 buf->b_p_wm_nopaste = buf->b_p_wm;
10583 buf->b_p_sts_nopaste = buf->b_p_sts;
10584 buf->b_p_ai_nopaste = buf->b_p_ai;
10587 /* save global options */
10588 save_sm = p_sm;
10589 #ifdef FEAT_CMDL_INFO
10590 save_ru = p_ru;
10591 #endif
10592 #ifdef FEAT_RIGHTLEFT
10593 save_ri = p_ri;
10594 save_hkmap = p_hkmap;
10595 #endif
10596 /* save global values for local buffer options */
10597 p_tw_nopaste = p_tw;
10598 p_wm_nopaste = p_wm;
10599 p_sts_nopaste = p_sts;
10600 p_ai_nopaste = p_ai;
10604 * Always set the option values, also when 'paste' is set when it is
10605 * already on.
10607 /* set options for each buffer */
10608 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10610 buf->b_p_tw = 0; /* textwidth is 0 */
10611 buf->b_p_wm = 0; /* wrapmargin is 0 */
10612 buf->b_p_sts = 0; /* softtabstop is 0 */
10613 buf->b_p_ai = 0; /* no auto-indent */
10616 /* set global options */
10617 p_sm = 0; /* no showmatch */
10618 #ifdef FEAT_CMDL_INFO
10619 # ifdef FEAT_WINDOWS
10620 if (p_ru)
10621 status_redraw_all(); /* redraw to remove the ruler */
10622 # endif
10623 p_ru = 0; /* no ruler */
10624 #endif
10625 #ifdef FEAT_RIGHTLEFT
10626 p_ri = 0; /* no reverse insert */
10627 p_hkmap = 0; /* no Hebrew keyboard */
10628 #endif
10629 /* set global values for local buffer options */
10630 p_tw = 0;
10631 p_wm = 0;
10632 p_sts = 0;
10633 p_ai = 0;
10637 * Paste switched from on to off: Restore saved values.
10639 else if (old_p_paste)
10641 /* restore options for each buffer */
10642 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10644 buf->b_p_tw = buf->b_p_tw_nopaste;
10645 buf->b_p_wm = buf->b_p_wm_nopaste;
10646 buf->b_p_sts = buf->b_p_sts_nopaste;
10647 buf->b_p_ai = buf->b_p_ai_nopaste;
10650 /* restore global options */
10651 p_sm = save_sm;
10652 #ifdef FEAT_CMDL_INFO
10653 # ifdef FEAT_WINDOWS
10654 if (p_ru != save_ru)
10655 status_redraw_all(); /* redraw to draw the ruler */
10656 # endif
10657 p_ru = save_ru;
10658 #endif
10659 #ifdef FEAT_RIGHTLEFT
10660 p_ri = save_ri;
10661 p_hkmap = save_hkmap;
10662 #endif
10663 /* set global values for local buffer options */
10664 p_tw = p_tw_nopaste;
10665 p_wm = p_wm_nopaste;
10666 p_sts = p_sts_nopaste;
10667 p_ai = p_ai_nopaste;
10670 old_p_paste = p_paste;
10674 * vimrc_found() - Called when a ".vimrc" or "VIMINIT" has been found.
10676 * Reset 'compatible' and set the values for options that didn't get set yet
10677 * to the Vim defaults.
10678 * Don't do this if the 'compatible' option has been set or reset before.
10679 * When "fname" is not NULL, use it to set $"envname" when it wasn't set yet.
10681 void
10682 vimrc_found(fname, envname)
10683 char_u *fname;
10684 char_u *envname;
10686 int opt_idx;
10687 int dofree = FALSE;
10688 char_u *p;
10690 if (!option_was_set((char_u *)"cp"))
10692 p_cp = FALSE;
10693 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
10694 if (!(options[opt_idx].flags & (P_WAS_SET|P_VI_DEF)))
10695 set_option_default(opt_idx, OPT_FREE, FALSE);
10696 didset_options();
10699 if (fname != NULL)
10701 p = vim_getenv(envname, &dofree);
10702 if (p == NULL)
10704 /* Set $MYVIMRC to the first vimrc file found. */
10705 p = FullName_save(fname, FALSE);
10706 if (p != NULL)
10708 vim_setenv(envname, p);
10709 vim_free(p);
10712 else if (dofree)
10713 vim_free(p);
10718 * Set 'compatible' on or off. Called for "-C" and "-N" command line arg.
10720 void
10721 change_compatible(on)
10722 int on;
10724 int opt_idx;
10726 if (p_cp != on)
10728 p_cp = on;
10729 compatible_set();
10731 opt_idx = findoption((char_u *)"cp");
10732 if (opt_idx >= 0)
10733 options[opt_idx].flags |= P_WAS_SET;
10737 * Return TRUE when option "name" has been set.
10740 option_was_set(name)
10741 char_u *name;
10743 int idx;
10745 idx = findoption(name);
10746 if (idx < 0) /* unknown option */
10747 return FALSE;
10748 if (options[idx].flags & P_WAS_SET)
10749 return TRUE;
10750 return FALSE;
10754 * compatible_set() - Called when 'compatible' has been set or unset.
10756 * When 'compatible' set: Set all relevant options (those that have the P_VIM)
10757 * flag) to a Vi compatible value.
10758 * When 'compatible' is unset: Set all options that have a different default
10759 * for Vim (without the P_VI_DEF flag) to that default.
10761 static void
10762 compatible_set()
10764 int opt_idx;
10766 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
10767 if ( ((options[opt_idx].flags & P_VIM) && p_cp)
10768 || (!(options[opt_idx].flags & P_VI_DEF) && !p_cp))
10769 set_option_default(opt_idx, OPT_FREE, p_cp);
10770 didset_options();
10773 #ifdef FEAT_LINEBREAK
10775 # if defined(__BORLANDC__) && (__BORLANDC__ < 0x500)
10776 /* Borland C++ screws up loop optimisation here (negri) */
10777 #pragma option -O-l
10778 # endif
10781 * fill_breakat_flags() -- called when 'breakat' changes value.
10783 static void
10784 fill_breakat_flags()
10786 char_u *p;
10787 int i;
10789 for (i = 0; i < 256; i++)
10790 breakat_flags[i] = FALSE;
10792 if (p_breakat != NULL)
10793 for (p = p_breakat; *p; p++)
10794 breakat_flags[*p] = TRUE;
10797 # if defined(__BORLANDC__) && (__BORLANDC__ < 0x500)
10798 #pragma option -O.l
10799 # endif
10801 #endif
10804 * Check an option that can be a range of string values.
10806 * Return OK for correct value, FAIL otherwise.
10807 * Empty is always OK.
10809 static int
10810 check_opt_strings(val, values, list)
10811 char_u *val;
10812 char **values;
10813 int list; /* when TRUE: accept a list of values */
10815 return opt_strings_flags(val, values, NULL, list);
10819 * Handle an option that can be a range of string values.
10820 * Set a flag in "*flagp" for each string present.
10822 * Return OK for correct value, FAIL otherwise.
10823 * Empty is always OK.
10825 static int
10826 opt_strings_flags(val, values, flagp, list)
10827 char_u *val; /* new value */
10828 char **values; /* array of valid string values */
10829 unsigned *flagp;
10830 int list; /* when TRUE: accept a list of values */
10832 int i;
10833 int len;
10834 unsigned new_flags = 0;
10836 while (*val)
10838 for (i = 0; ; ++i)
10840 if (values[i] == NULL) /* val not found in values[] */
10841 return FAIL;
10843 len = (int)STRLEN(values[i]);
10844 if (STRNCMP(values[i], val, len) == 0
10845 && ((list && val[len] == ',') || val[len] == NUL))
10847 val += len + (val[len] == ',');
10848 new_flags |= (1 << i);
10849 break; /* check next item in val list */
10853 if (flagp != NULL)
10854 *flagp = new_flags;
10856 return OK;
10860 * Read the 'wildmode' option, fill wim_flags[].
10862 static int
10863 check_opt_wim()
10865 char_u new_wim_flags[4];
10866 char_u *p;
10867 int i;
10868 int idx = 0;
10870 for (i = 0; i < 4; ++i)
10871 new_wim_flags[i] = 0;
10873 for (p = p_wim; *p; ++p)
10875 for (i = 0; ASCII_ISALPHA(p[i]); ++i)
10877 if (p[i] != NUL && p[i] != ',' && p[i] != ':')
10878 return FAIL;
10879 if (i == 7 && STRNCMP(p, "longest", 7) == 0)
10880 new_wim_flags[idx] |= WIM_LONGEST;
10881 else if (i == 4 && STRNCMP(p, "full", 4) == 0)
10882 new_wim_flags[idx] |= WIM_FULL;
10883 else if (i == 4 && STRNCMP(p, "list", 4) == 0)
10884 new_wim_flags[idx] |= WIM_LIST;
10885 else
10886 return FAIL;
10887 p += i;
10888 if (*p == NUL)
10889 break;
10890 if (*p == ',')
10892 if (idx == 3)
10893 return FAIL;
10894 ++idx;
10898 /* fill remaining entries with last flag */
10899 while (idx < 3)
10901 new_wim_flags[idx + 1] = new_wim_flags[idx];
10902 ++idx;
10905 /* only when there are no errors, wim_flags[] is changed */
10906 for (i = 0; i < 4; ++i)
10907 wim_flags[i] = new_wim_flags[i];
10908 return OK;
10912 * Check if backspacing over something is allowed.
10915 can_bs(what)
10916 int what; /* BS_INDENT, BS_EOL or BS_START */
10918 switch (*p_bs)
10920 case '2': return TRUE;
10921 case '1': return (what != BS_START);
10922 case '0': return FALSE;
10924 return vim_strchr(p_bs, what) != NULL;
10928 * Save the current values of 'fileformat' and 'fileencoding', so that we know
10929 * the file must be considered changed when the value is different.
10931 void
10932 save_file_ff(buf)
10933 buf_T *buf;
10935 buf->b_start_ffc = *buf->b_p_ff;
10936 buf->b_start_eol = buf->b_p_eol;
10937 #ifdef FEAT_MBYTE
10938 buf->b_start_bomb = buf->b_p_bomb;
10940 /* Only use free/alloc when necessary, they take time. */
10941 if (buf->b_start_fenc == NULL
10942 || STRCMP(buf->b_start_fenc, buf->b_p_fenc) != 0)
10944 vim_free(buf->b_start_fenc);
10945 buf->b_start_fenc = vim_strsave(buf->b_p_fenc);
10947 #endif
10951 * Return TRUE if 'fileformat' and/or 'fileencoding' has a different value
10952 * from when editing started (save_file_ff() called).
10953 * Also when 'endofline' was changed and 'binary' is set, or when 'bomb' was
10954 * changed and 'binary' is not set.
10955 * Don't consider a new, empty buffer to be changed.
10958 file_ff_differs(buf)
10959 buf_T *buf;
10961 /* In a buffer that was never loaded the options are not valid. */
10962 if (buf->b_flags & BF_NEVERLOADED)
10963 return FALSE;
10964 if ((buf->b_flags & BF_NEW)
10965 && buf->b_ml.ml_line_count == 1
10966 && *ml_get_buf(buf, (linenr_T)1, FALSE) == NUL)
10967 return FALSE;
10968 if (buf->b_start_ffc != *buf->b_p_ff)
10969 return TRUE;
10970 if (buf->b_p_bin && buf->b_start_eol != buf->b_p_eol)
10971 return TRUE;
10972 #ifdef FEAT_MBYTE
10973 if (!buf->b_p_bin && buf->b_start_bomb != buf->b_p_bomb)
10974 return TRUE;
10975 if (buf->b_start_fenc == NULL)
10976 return (*buf->b_p_fenc != NUL);
10977 return (STRCMP(buf->b_start_fenc, buf->b_p_fenc) != 0);
10978 #else
10979 return FALSE;
10980 #endif
10984 * return OK if "p" is a valid fileformat name, FAIL otherwise.
10987 check_ff_value(p)
10988 char_u *p;
10990 return check_opt_strings(p, p_ff_values, FALSE);
10993 #ifdef FEAT_FULLSCREEN
10995 * Read the 'fuoptions' option, set fuoptions_flags and
10996 * fuoptions_bgcolor.
10998 static int
10999 check_fuoptions(p_fuoptions, flags, bgcolor)
11000 char_u *p_fuoptions; /* fuoptions string */
11001 unsigned *flags; /* fuoptions flags */
11002 int *bgcolor; /* background highlight group id */
11004 unsigned new_fuoptions_flags;
11005 int new_fuoptions_bgcolor;
11006 char_u *p;
11007 char_u hg_term; /* character terminating
11008 highlight group string in
11009 'background' option' */
11010 int i,j,k;
11012 new_fuoptions_flags = 0;
11013 new_fuoptions_bgcolor = 0xFF000000;
11015 for (p = p_fuoptions; *p; ++p)
11017 for (i = 0; ASCII_ISALPHA(p[i]); ++i)
11019 if (p[i] != NUL && p[i] != ',' && p[i] != ':')
11020 return FAIL;
11021 if (i == 10 && STRNCMP(p, "background", 10) == 0)
11023 if (p[i] != ':') return FAIL;
11024 i++;
11025 if (p[i] == NUL) return FAIL;
11026 if (p[i] == '#')
11028 /* explicit color (#aarrggbb) */
11029 i++;
11030 for (j = i; j < i+8 && vim_isxdigit(p[j]); ++j)
11032 if (j < i+8)
11033 return FAIL; /* less than 8 digits */
11034 if (p[j] != NUL && p[j] != ',')
11035 return FAIL;
11036 new_fuoptions_bgcolor = 0;
11037 for (k = 0; k < 8; k++)
11038 new_fuoptions_bgcolor = new_fuoptions_bgcolor * 16 +
11039 hex2nr(p[i+k]);
11040 i = j;
11041 /* mark bgcolor as an explicit argb color */
11042 new_fuoptions_flags &= ~FUOPT_BGCOLOR_HLGROUP;
11044 else
11046 /* highlight group name */
11047 for (j = i; ASCII_ISALPHA(p[j]); ++j)
11049 if (p[j] != NUL && p[j] != ',')
11050 return FAIL;
11051 hg_term = p[j];
11052 p[j] = NUL; /* temporarily terminate string */
11053 new_fuoptions_bgcolor = syn_name2id((char_u*)(p+i));
11054 p[j] = hg_term; /* restore string */
11055 if (! new_fuoptions_bgcolor)
11056 return FAIL;
11057 i = j;
11058 /* mark bgcolor as highlight group id */
11059 new_fuoptions_flags |= FUOPT_BGCOLOR_HLGROUP;
11062 else if (i == 7 && STRNCMP(p, "maxhorz", 7) == 0)
11063 new_fuoptions_flags |= FUOPT_MAXHORZ;
11064 else if (i == 7 && STRNCMP(p, "maxvert", 7) == 0)
11065 new_fuoptions_flags |= FUOPT_MAXVERT;
11066 else
11067 return FAIL;
11068 p += i;
11069 if (*p == NUL)
11070 break;
11071 if (*p == ':')
11072 return FAIL;
11075 *flags = new_fuoptions_flags;
11076 *bgcolor = new_fuoptions_bgcolor;
11078 /* Let the GUI know, in case the background color has changed. */
11079 gui_mch_fuopt_update();
11081 return OK;
11083 #endif