Merge branch 'vim' into feat/persistent-undo
[vim_extended.git] / src / option.c
blobf2c8613287c3bcf3395032addbe9895d04346169
1 /* vi:set ts=8 sts=4 sw=4:
3 * VIM - Vi IMproved by Bram Moolenaar
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
11 * Code to handle user-settable options. This is all pretty much table-
12 * driven. Checklist for adding a new option:
13 * - Put it in the options array below (copy an existing entry).
14 * - For a global option: Add a variable for it in option.h.
15 * - For a buffer or window local option:
16 * - Add a PV_XX entry to the enum below.
17 * - Add a variable to the window or buffer struct in structs.h.
18 * - For a window option, add some code to copy_winopt().
19 * - For a buffer option, add some code to buf_copy_options().
20 * - For a buffer string option, add code to check_buf_options().
21 * - If it's a numeric option, add any necessary bounds checks to do_set().
22 * - If it's a list of flags, add some code in do_set(), search for WW_ALL.
23 * - When adding an option with expansion (P_EXPAND), but with a different
24 * default for Vi and Vim (no P_VI_DEF), add some code at VIMEXP.
25 * - Add documentation! One line in doc/help.txt, full description in
26 * options.txt, and any other related places.
27 * - Add an entry in runtime/optwin.vim.
28 * When making changes:
29 * - Adjust the help for the option in doc/option.txt.
30 * - When an entry has the P_VIM flag, or is lacking the P_VI_DEF flag, add a
31 * comment at the help for the 'compatible' option.
34 #define IN_OPTION_C
35 #include "vim.h"
38 * The options that are local to a window or buffer have "indir" set to one of
39 * these values. Special values:
40 * PV_NONE: global option.
41 * PV_WIN is added: window-local option
42 * PV_BUF is added: buffer-local option
43 * PV_BOTH is added: global option which also has a local value.
45 #define PV_BOTH 0x1000
46 #define PV_WIN 0x2000
47 #define PV_BUF 0x4000
48 #define PV_MASK 0x0fff
49 #define OPT_WIN(x) (idopt_T)(PV_WIN + (int)(x))
50 #define OPT_BUF(x) (idopt_T)(PV_BUF + (int)(x))
51 #define OPT_BOTH(x) (idopt_T)(PV_BOTH + (int)(x))
54 * Definition of the PV_ values for buffer-local options.
55 * The BV_ values are defined in option.h.
57 #define PV_AI OPT_BUF(BV_AI)
58 #define PV_AR OPT_BOTH(OPT_BUF(BV_AR))
59 #ifdef FEAT_QUICKFIX
60 # define PV_BH OPT_BUF(BV_BH)
61 # define PV_BT OPT_BUF(BV_BT)
62 # define PV_EFM OPT_BOTH(OPT_BUF(BV_EFM))
63 # define PV_GP OPT_BOTH(OPT_BUF(BV_GP))
64 # define PV_MP OPT_BOTH(OPT_BUF(BV_MP))
65 #endif
66 #define PV_BIN OPT_BUF(BV_BIN)
67 #define PV_BL OPT_BUF(BV_BL)
68 #ifdef FEAT_MBYTE
69 # define PV_BOMB OPT_BUF(BV_BOMB)
70 #endif
71 #define PV_CI OPT_BUF(BV_CI)
72 #ifdef FEAT_CINDENT
73 # define PV_CIN OPT_BUF(BV_CIN)
74 # define PV_CINK OPT_BUF(BV_CINK)
75 # define PV_CINO OPT_BUF(BV_CINO)
76 #endif
77 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
78 # define PV_CINW OPT_BUF(BV_CINW)
79 #endif
80 #ifdef FEAT_FOLDING
81 # define PV_CMS OPT_BUF(BV_CMS)
82 #endif
83 #ifdef FEAT_COMMENTS
84 # define PV_COM OPT_BUF(BV_COM)
85 #endif
86 #ifdef FEAT_INS_EXPAND
87 # define PV_CPT OPT_BUF(BV_CPT)
88 # define PV_DICT OPT_BOTH(OPT_BUF(BV_DICT))
89 # define PV_TSR OPT_BOTH(OPT_BUF(BV_TSR))
90 #endif
91 #ifdef FEAT_COMPL_FUNC
92 # define PV_CFU OPT_BUF(BV_CFU)
93 #endif
94 #ifdef FEAT_FIND_ID
95 # define PV_DEF OPT_BOTH(OPT_BUF(BV_DEF))
96 # define PV_INC OPT_BOTH(OPT_BUF(BV_INC))
97 #endif
98 #define PV_EOL OPT_BUF(BV_EOL)
99 #define PV_EP OPT_BOTH(OPT_BUF(BV_EP))
100 #define PV_ET OPT_BUF(BV_ET)
101 #ifdef FEAT_MBYTE
102 # define PV_FENC OPT_BUF(BV_FENC)
103 #endif
104 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
105 # define PV_BEXPR OPT_BOTH(OPT_BUF(BV_BEXPR))
106 #endif
107 #ifdef FEAT_EVAL
108 # define PV_FEX OPT_BUF(BV_FEX)
109 #endif
110 #define PV_FF OPT_BUF(BV_FF)
111 #define PV_FLP OPT_BUF(BV_FLP)
112 #define PV_FO OPT_BUF(BV_FO)
113 #ifdef FEAT_AUTOCMD
114 # define PV_FT OPT_BUF(BV_FT)
115 #endif
116 #define PV_IMI OPT_BUF(BV_IMI)
117 #define PV_IMS OPT_BUF(BV_IMS)
118 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
119 # define PV_INDE OPT_BUF(BV_INDE)
120 # define PV_INDK OPT_BUF(BV_INDK)
121 #endif
122 #if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
123 # define PV_INEX OPT_BUF(BV_INEX)
124 #endif
125 #define PV_INF OPT_BUF(BV_INF)
126 #define PV_ISK OPT_BUF(BV_ISK)
127 #ifdef FEAT_CRYPT
128 # define PV_KEY OPT_BUF(BV_KEY)
129 #endif
130 #ifdef FEAT_KEYMAP
131 # define PV_KMAP OPT_BUF(BV_KMAP)
132 #endif
133 #define PV_KP OPT_BOTH(OPT_BUF(BV_KP))
134 #ifdef FEAT_LISP
135 # define PV_LISP OPT_BUF(BV_LISP)
136 #endif
137 #define PV_MA OPT_BUF(BV_MA)
138 #define PV_ML OPT_BUF(BV_ML)
139 #define PV_MOD OPT_BUF(BV_MOD)
140 #define PV_MPS OPT_BUF(BV_MPS)
141 #define PV_NF OPT_BUF(BV_NF)
142 #ifdef FEAT_OSFILETYPE
143 # define PV_OFT OPT_BUF(BV_OFT)
144 #endif
145 #ifdef FEAT_COMPL_FUNC
146 # define PV_OFU OPT_BUF(BV_OFU)
147 #endif
148 #define PV_PATH OPT_BOTH(OPT_BUF(BV_PATH))
149 #define PV_PI OPT_BUF(BV_PI)
150 #ifdef FEAT_TEXTOBJ
151 # define PV_QE OPT_BUF(BV_QE)
152 #endif
153 #define PV_RO OPT_BUF(BV_RO)
154 #ifdef FEAT_SMARTINDENT
155 # define PV_SI OPT_BUF(BV_SI)
156 #endif
157 #ifndef SHORT_FNAME
158 # define PV_SN OPT_BUF(BV_SN)
159 #endif
160 #ifdef FEAT_SYN_HL
161 # define PV_SMC OPT_BUF(BV_SMC)
162 # define PV_SYN OPT_BUF(BV_SYN)
163 #endif
164 #ifdef FEAT_SPELL
165 # define PV_SPC OPT_BUF(BV_SPC)
166 # define PV_SPF OPT_BUF(BV_SPF)
167 # define PV_SPL OPT_BUF(BV_SPL)
168 #endif
169 #define PV_STS OPT_BUF(BV_STS)
170 #ifdef FEAT_SEARCHPATH
171 # define PV_SUA OPT_BUF(BV_SUA)
172 #endif
173 #define PV_SW OPT_BUF(BV_SW)
174 #define PV_SWF OPT_BUF(BV_SWF)
175 #define PV_TAGS OPT_BOTH(OPT_BUF(BV_TAGS))
176 #define PV_TS OPT_BUF(BV_TS)
177 #define PV_TW OPT_BUF(BV_TW)
178 #define PV_TX OPT_BUF(BV_TX)
179 #ifdef FEAT_PERSISTENT_UNDO
180 #define PV_UDF OPT_BUF(BV_UDF)
181 #endif
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 static int p_mod;
329 static char_u *p_mps;
330 static char_u *p_nf;
331 #ifdef FEAT_OSFILETYPE
332 static char_u *p_oft;
333 #endif
334 static int p_pi;
335 #ifdef FEAT_TEXTOBJ
336 static char_u *p_qe;
337 #endif
338 static int p_ro;
339 #ifdef FEAT_SMARTINDENT
340 static int p_si;
341 #endif
342 #ifndef SHORT_FNAME
343 static int p_sn;
344 #endif
345 static long p_sts;
346 #if defined(FEAT_SEARCHPATH)
347 static char_u *p_sua;
348 #endif
349 static long p_sw;
350 static int p_swf;
351 #ifdef FEAT_SYN_HL
352 static long p_smc;
353 static char_u *p_syn;
354 #endif
355 #ifdef FEAT_SPELL
356 static char_u *p_spc;
357 static char_u *p_spf;
358 static char_u *p_spl;
359 #endif
360 static long p_ts;
361 static long p_tw;
362 static int p_tx;
363 #ifdef FEAT_PERSISTENT_UNDO
364 static int p_udf;
365 #endif
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 # define SCRIPTID_INIT , 0
397 #else
398 # define SCRIPTID_INIT
399 #endif
402 #define VI_DEFAULT 0 /* def_val[VI_DEFAULT] is Vi default value */
403 #define VIM_DEFAULT 1 /* def_val[VIM_DEFAULT] is Vim default value */
406 * Flags
408 #define P_BOOL 0x01 /* the option is boolean */
409 #define P_NUM 0x02 /* the option is numeric */
410 #define P_STRING 0x04 /* the option is a string */
411 #define P_ALLOCED 0x08 /* the string option is in allocated memory,
412 must use free_string_option() when
413 assigning new value. Not set if default is
414 the same. */
415 #define P_EXPAND 0x10 /* environment expansion. NOTE: P_EXPAND can
416 never be used for local or hidden options! */
417 #define P_NODEFAULT 0x40 /* don't set to default value */
418 #define P_DEF_ALLOCED 0x80 /* default value is in allocated memory, must
419 use vim_free() when assigning new value */
420 #define P_WAS_SET 0x100 /* option has been set/reset */
421 #define P_NO_MKRC 0x200 /* don't include in :mkvimrc output */
422 #define P_VI_DEF 0x400 /* Use Vi default for Vim */
423 #define P_VIM 0x800 /* Vim option, reset when 'cp' set */
425 /* when option changed, what to display: */
426 #define P_RSTAT 0x1000 /* redraw status lines */
427 #define P_RWIN 0x2000 /* redraw current window */
428 #define P_RBUF 0x4000 /* redraw current buffer */
429 #define P_RALL 0x6000 /* redraw all windows */
430 #define P_RCLR 0x7000 /* clear and redraw all */
432 #define P_COMMA 0x8000 /* comma separated list */
433 #define P_NODUP 0x10000L/* don't allow duplicate strings */
434 #define P_FLAGLIST 0x20000L/* list of single-char flags */
436 #define P_SECURE 0x40000L/* cannot change in modeline or secure mode */
437 #define P_GETTEXT 0x80000L/* expand default value with _() */
438 #define P_NOGLOB 0x100000L/* do not use local value for global vimrc */
439 #define P_NFNAME 0x200000L/* only normal file name chars allowed */
440 #define P_INSECURE 0x400000L/* option was set from a modeline */
441 #define P_PRI_MKRC 0x800000L/* priority for :mkvimrc (setting option has
442 side effects) */
444 #define ISK_LATIN1 (char_u *)"@,48-57,_,192-255"
446 /* 'isprint' for latin1 is also used for MS-Windows cp1252, where 0x80 is used
447 * for the currency sign. */
448 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
449 # define ISP_LATIN1 (char_u *)"@,~-255"
450 #else
451 # define ISP_LATIN1 (char_u *)"@,161-255"
452 #endif
454 /* The 16 bit MS-DOS version is low on space, make the string as short as
455 * possible when compiling with few features. */
456 #if defined(FEAT_DIFF) || defined(FEAT_FOLDING) || defined(FEAT_SPELL) \
457 || defined(FEAT_VERTSPLIT) || defined(FEAT_CLIPBOARD) \
458 || defined(FEAT_INS_EXPAND) || defined(FEAT_SYN_HL)
459 # 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"
460 #else
461 # 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"
462 #endif
465 * options[] is initialized here.
466 * The order of the options MUST be alphabetic for ":set all" and findoption().
467 * All option names MUST start with a lowercase letter (for findoption()).
468 * Exception: "t_" options are at the end.
469 * The options with a NULL variable are 'hidden': a set command for them is
470 * ignored and they are not printed.
472 static struct vimoption
473 #ifdef FEAT_GUI_W16
474 _far
475 #endif
476 options[] =
478 {"aleph", "al", P_NUM|P_VI_DEF,
479 #ifdef FEAT_RIGHTLEFT
480 (char_u *)&p_aleph, PV_NONE,
481 #else
482 (char_u *)NULL, PV_NONE,
483 #endif
485 #if (defined(MSDOS) || defined(WIN3264) || defined(OS2)) && !defined(FEAT_GUI_W32)
486 (char_u *)128L,
487 #else
488 (char_u *)224L,
489 #endif
490 (char_u *)0L} SCRIPTID_INIT},
491 {"antialias", "anti", P_BOOL|P_VI_DEF|P_VIM|P_RCLR,
492 #if defined(FEAT_GUI) && defined(MACOS_X)
493 (char_u *)&p_antialias, PV_NONE,
494 {(char_u *)FALSE, (char_u *)FALSE}
495 #else
496 (char_u *)NULL, PV_NONE,
497 {(char_u *)FALSE, (char_u *)FALSE}
498 #endif
499 SCRIPTID_INIT},
500 {"arabic", "arab", P_BOOL|P_VI_DEF|P_VIM,
501 #ifdef FEAT_ARABIC
502 (char_u *)VAR_WIN, PV_ARAB,
503 #else
504 (char_u *)NULL, PV_NONE,
505 #endif
506 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
507 {"arabicshape", "arshape", P_BOOL|P_VI_DEF|P_VIM|P_RCLR,
508 #ifdef FEAT_ARABIC
509 (char_u *)&p_arshape, PV_NONE,
510 #else
511 (char_u *)NULL, PV_NONE,
512 #endif
513 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
514 {"allowrevins", "ari", P_BOOL|P_VI_DEF|P_VIM,
515 #ifdef FEAT_RIGHTLEFT
516 (char_u *)&p_ari, PV_NONE,
517 #else
518 (char_u *)NULL, PV_NONE,
519 #endif
520 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
521 {"altkeymap", "akm", P_BOOL|P_VI_DEF,
522 #ifdef FEAT_FKMAP
523 (char_u *)&p_altkeymap, PV_NONE,
524 #else
525 (char_u *)NULL, PV_NONE,
526 #endif
527 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
528 {"ambiwidth", "ambw", P_STRING|P_VI_DEF|P_RCLR,
529 #if defined(FEAT_MBYTE)
530 (char_u *)&p_ambw, PV_NONE,
531 {(char_u *)"single", (char_u *)0L}
532 #else
533 (char_u *)NULL, PV_NONE,
534 {(char_u *)0L, (char_u *)0L}
535 #endif
536 SCRIPTID_INIT},
537 #ifdef FEAT_AUTOCHDIR
538 {"autochdir", "acd", P_BOOL|P_VI_DEF,
539 (char_u *)&p_acd, PV_NONE,
540 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
541 #endif
542 {"autoindent", "ai", P_BOOL|P_VI_DEF,
543 (char_u *)&p_ai, PV_AI,
544 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
545 {"autoprint", "ap", P_BOOL|P_VI_DEF,
546 (char_u *)NULL, PV_NONE,
547 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
548 {"autoread", "ar", P_BOOL|P_VI_DEF,
549 (char_u *)&p_ar, PV_AR,
550 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
551 {"autowrite", "aw", P_BOOL|P_VI_DEF,
552 (char_u *)&p_aw, PV_NONE,
553 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
554 {"autowriteall","awa", P_BOOL|P_VI_DEF,
555 (char_u *)&p_awa, PV_NONE,
556 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
557 {"background", "bg", P_STRING|P_VI_DEF|P_RCLR,
558 (char_u *)&p_bg, PV_NONE,
560 #if (defined(MSDOS) || defined(OS2) || defined(WIN3264)) && !defined(FEAT_GUI)
561 (char_u *)"dark",
562 #else
563 (char_u *)"light",
564 #endif
565 (char_u *)0L} SCRIPTID_INIT},
566 {"backspace", "bs", P_STRING|P_VI_DEF|P_VIM|P_COMMA|P_NODUP,
567 (char_u *)&p_bs, PV_NONE,
568 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
569 {"backup", "bk", P_BOOL|P_VI_DEF|P_VIM,
570 (char_u *)&p_bk, PV_NONE,
571 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
572 {"backupcopy", "bkc", P_STRING|P_VIM|P_COMMA|P_NODUP,
573 (char_u *)&p_bkc, PV_NONE,
574 #ifdef UNIX
575 {(char_u *)"yes", (char_u *)"auto"}
576 #else
577 {(char_u *)"auto", (char_u *)"auto"}
578 #endif
579 SCRIPTID_INIT},
580 {"backupdir", "bdir", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP|P_SECURE,
581 (char_u *)&p_bdir, PV_NONE,
582 {(char_u *)DFLT_BDIR, (char_u *)0L} SCRIPTID_INIT},
583 {"backupext", "bex", P_STRING|P_VI_DEF|P_NFNAME,
584 (char_u *)&p_bex, PV_NONE,
586 #ifdef VMS
587 (char_u *)"_",
588 #else
589 (char_u *)"~",
590 #endif
591 (char_u *)0L} SCRIPTID_INIT},
592 {"backupskip", "bsk", P_STRING|P_VI_DEF|P_COMMA,
593 #ifdef FEAT_WILDIGN
594 (char_u *)&p_bsk, PV_NONE,
595 {(char_u *)"", (char_u *)0L}
596 #else
597 (char_u *)NULL, PV_NONE,
598 {(char_u *)0L, (char_u *)0L}
599 #endif
600 SCRIPTID_INIT},
601 #ifdef FEAT_BEVAL
602 {"balloondelay","bdlay",P_NUM|P_VI_DEF,
603 (char_u *)&p_bdlay, PV_NONE,
604 {(char_u *)600L, (char_u *)0L} SCRIPTID_INIT},
605 {"ballooneval", "beval",P_BOOL|P_VI_DEF|P_NO_MKRC,
606 (char_u *)&p_beval, PV_NONE,
607 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
608 # ifdef FEAT_EVAL
609 {"balloonexpr", "bexpr", P_STRING|P_ALLOCED|P_VI_DEF|P_VIM,
610 (char_u *)&p_bexpr, PV_BEXPR,
611 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
612 # endif
613 #endif
614 {"beautify", "bf", P_BOOL|P_VI_DEF,
615 (char_u *)NULL, PV_NONE,
616 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
617 {"binary", "bin", P_BOOL|P_VI_DEF|P_RSTAT,
618 (char_u *)&p_bin, PV_BIN,
619 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
620 {"bioskey", "biosk",P_BOOL|P_VI_DEF,
621 #ifdef MSDOS
622 (char_u *)&p_biosk, PV_NONE,
623 #else
624 (char_u *)NULL, PV_NONE,
625 #endif
626 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
627 {"bomb", NULL, P_BOOL|P_NO_MKRC|P_VI_DEF|P_RSTAT,
628 #ifdef FEAT_MBYTE
629 (char_u *)&p_bomb, PV_BOMB,
630 #else
631 (char_u *)NULL, PV_NONE,
632 #endif
633 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
634 {"breakat", "brk", P_STRING|P_VI_DEF|P_RALL|P_FLAGLIST,
635 #ifdef FEAT_LINEBREAK
636 (char_u *)&p_breakat, PV_NONE,
637 {(char_u *)" \t!@*-+;:,./?", (char_u *)0L}
638 #else
639 (char_u *)NULL, PV_NONE,
640 {(char_u *)0L, (char_u *)0L}
641 #endif
642 SCRIPTID_INIT},
643 {"browsedir", "bsdir",P_STRING|P_VI_DEF,
644 #ifdef FEAT_BROWSE
645 (char_u *)&p_bsdir, PV_NONE,
646 {(char_u *)"last", (char_u *)0L}
647 #else
648 (char_u *)NULL, PV_NONE,
649 {(char_u *)0L, (char_u *)0L}
650 #endif
651 SCRIPTID_INIT},
652 {"bufhidden", "bh", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB,
653 #if defined(FEAT_QUICKFIX)
654 (char_u *)&p_bh, PV_BH,
655 {(char_u *)"", (char_u *)0L}
656 #else
657 (char_u *)NULL, PV_NONE,
658 {(char_u *)0L, (char_u *)0L}
659 #endif
660 SCRIPTID_INIT},
661 {"buflisted", "bl", P_BOOL|P_VI_DEF|P_NOGLOB,
662 (char_u *)&p_bl, PV_BL,
663 {(char_u *)1L, (char_u *)0L}
664 SCRIPTID_INIT},
665 {"buftype", "bt", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB,
666 #if defined(FEAT_QUICKFIX)
667 (char_u *)&p_bt, PV_BT,
668 {(char_u *)"", (char_u *)0L}
669 #else
670 (char_u *)NULL, PV_NONE,
671 {(char_u *)0L, (char_u *)0L}
672 #endif
673 SCRIPTID_INIT},
674 {"casemap", "cmp", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
675 #ifdef FEAT_MBYTE
676 (char_u *)&p_cmp, PV_NONE,
677 {(char_u *)"internal,keepascii", (char_u *)0L}
678 #else
679 (char_u *)NULL, PV_NONE,
680 {(char_u *)0L, (char_u *)0L}
681 #endif
682 SCRIPTID_INIT},
683 {"cdpath", "cd", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
684 #ifdef FEAT_SEARCHPATH
685 (char_u *)&p_cdpath, PV_NONE,
686 {(char_u *)",,", (char_u *)0L}
687 #else
688 (char_u *)NULL, PV_NONE,
689 {(char_u *)0L, (char_u *)0L}
690 #endif
691 SCRIPTID_INIT},
692 {"cedit", NULL, P_STRING,
693 #ifdef FEAT_CMDWIN
694 (char_u *)&p_cedit, PV_NONE,
695 {(char_u *)"", (char_u *)CTRL_F_STR}
696 #else
697 (char_u *)NULL, PV_NONE,
698 {(char_u *)0L, (char_u *)0L}
699 #endif
700 SCRIPTID_INIT},
701 {"charconvert", "ccv", P_STRING|P_VI_DEF|P_SECURE,
702 #if defined(FEAT_MBYTE) && defined(FEAT_EVAL)
703 (char_u *)&p_ccv, PV_NONE,
704 {(char_u *)"", (char_u *)0L}
705 #else
706 (char_u *)NULL, PV_NONE,
707 {(char_u *)0L, (char_u *)0L}
708 #endif
709 SCRIPTID_INIT},
710 {"cindent", "cin", P_BOOL|P_VI_DEF|P_VIM,
711 #ifdef FEAT_CINDENT
712 (char_u *)&p_cin, PV_CIN,
713 #else
714 (char_u *)NULL, PV_NONE,
715 #endif
716 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
717 {"cinkeys", "cink", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
718 #ifdef FEAT_CINDENT
719 (char_u *)&p_cink, PV_CINK,
720 {(char_u *)"0{,0},0),:,0#,!^F,o,O,e", (char_u *)0L}
721 #else
722 (char_u *)NULL, PV_NONE,
723 {(char_u *)0L, (char_u *)0L}
724 #endif
725 SCRIPTID_INIT},
726 {"cinoptions", "cino", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
727 #ifdef FEAT_CINDENT
728 (char_u *)&p_cino, PV_CINO,
729 #else
730 (char_u *)NULL, PV_NONE,
731 #endif
732 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
733 {"cinwords", "cinw", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
734 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
735 (char_u *)&p_cinw, PV_CINW,
736 {(char_u *)"if,else,while,do,for,switch",
737 (char_u *)0L}
738 #else
739 (char_u *)NULL, PV_NONE,
740 {(char_u *)0L, (char_u *)0L}
741 #endif
742 SCRIPTID_INIT},
743 {"clipboard", "cb", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
744 #ifdef FEAT_CLIPBOARD
745 (char_u *)&p_cb, PV_NONE,
746 # ifdef FEAT_XCLIPBOARD
747 {(char_u *)"autoselect,exclude:cons\\|linux",
748 (char_u *)0L}
749 # else
750 {(char_u *)"", (char_u *)0L}
751 # endif
752 #else
753 (char_u *)NULL, PV_NONE,
754 {(char_u *)"", (char_u *)0L}
755 #endif
756 SCRIPTID_INIT},
757 {"cmdheight", "ch", P_NUM|P_VI_DEF|P_RALL,
758 (char_u *)&p_ch, PV_NONE,
759 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
760 {"cmdwinheight", "cwh", P_NUM|P_VI_DEF,
761 #ifdef FEAT_CMDWIN
762 (char_u *)&p_cwh, PV_NONE,
763 #else
764 (char_u *)NULL, PV_NONE,
765 #endif
766 {(char_u *)7L, (char_u *)0L} SCRIPTID_INIT},
767 {"columns", "co", P_NUM|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RCLR,
768 (char_u *)&Columns, PV_NONE,
769 {(char_u *)80L, (char_u *)0L} SCRIPTID_INIT},
770 {"comments", "com", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
771 #ifdef FEAT_COMMENTS
772 (char_u *)&p_com, PV_COM,
773 {(char_u *)"s1:/*,mb:*,ex:*/,://,b:#,:%,:XCOMM,n:>,fb:-",
774 (char_u *)0L}
775 #else
776 (char_u *)NULL, PV_NONE,
777 {(char_u *)0L, (char_u *)0L}
778 #endif
779 SCRIPTID_INIT},
780 {"commentstring", "cms", P_STRING|P_ALLOCED|P_VI_DEF,
781 #ifdef FEAT_FOLDING
782 (char_u *)&p_cms, PV_CMS,
783 {(char_u *)"/*%s*/", (char_u *)0L}
784 #else
785 (char_u *)NULL, PV_NONE,
786 {(char_u *)0L, (char_u *)0L}
787 #endif
788 SCRIPTID_INIT},
789 /* P_PRI_MKRC isn't needed here, optval_default()
790 * always returns TRUE for 'compatible' */
791 {"compatible", "cp", P_BOOL|P_RALL,
792 (char_u *)&p_cp, PV_NONE,
793 {(char_u *)TRUE, (char_u *)FALSE} SCRIPTID_INIT},
794 {"complete", "cpt", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
795 #ifdef FEAT_INS_EXPAND
796 (char_u *)&p_cpt, PV_CPT,
797 {(char_u *)".,w,b,u,t,i", (char_u *)0L}
798 #else
799 (char_u *)NULL, PV_NONE,
800 {(char_u *)0L, (char_u *)0L}
801 #endif
802 SCRIPTID_INIT},
803 {"completefunc", "cfu", P_STRING|P_ALLOCED|P_VI_DEF|P_SECURE,
804 #ifdef FEAT_COMPL_FUNC
805 (char_u *)&p_cfu, PV_CFU,
806 {(char_u *)"", (char_u *)0L}
807 #else
808 (char_u *)NULL, PV_NONE,
809 {(char_u *)0L, (char_u *)0L}
810 #endif
811 SCRIPTID_INIT},
812 {"completeopt", "cot", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
813 #ifdef FEAT_INS_EXPAND
814 (char_u *)&p_cot, PV_NONE,
815 {(char_u *)"menu,preview", (char_u *)0L}
816 #else
817 (char_u *)NULL, PV_NONE,
818 {(char_u *)0L, (char_u *)0L}
819 #endif
820 SCRIPTID_INIT},
821 {"confirm", "cf", P_BOOL|P_VI_DEF,
822 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
823 (char_u *)&p_confirm, PV_NONE,
824 #else
825 (char_u *)NULL, PV_NONE,
826 #endif
827 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
828 {"conskey", "consk",P_BOOL|P_VI_DEF,
829 #ifdef MSDOS
830 (char_u *)&p_consk, PV_NONE,
831 #else
832 (char_u *)NULL, PV_NONE,
833 #endif
834 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
835 {"copyindent", "ci", P_BOOL|P_VI_DEF|P_VIM,
836 (char_u *)&p_ci, PV_CI,
837 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
838 {"cpoptions", "cpo", P_STRING|P_VIM|P_RALL|P_FLAGLIST,
839 (char_u *)&p_cpo, PV_NONE,
840 {(char_u *)CPO_VI, (char_u *)CPO_VIM}
841 SCRIPTID_INIT},
842 {"cscopepathcomp", "cspc", P_NUM|P_VI_DEF|P_VIM,
843 #ifdef FEAT_CSCOPE
844 (char_u *)&p_cspc, PV_NONE,
845 #else
846 (char_u *)NULL, PV_NONE,
847 #endif
848 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
849 {"cscopeprg", "csprg", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
850 #ifdef FEAT_CSCOPE
851 (char_u *)&p_csprg, PV_NONE,
852 {(char_u *)"cscope", (char_u *)0L}
853 #else
854 (char_u *)NULL, PV_NONE,
855 {(char_u *)0L, (char_u *)0L}
856 #endif
857 SCRIPTID_INIT},
858 {"cscopequickfix", "csqf", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
859 #if defined(FEAT_CSCOPE) && defined(FEAT_QUICKFIX)
860 (char_u *)&p_csqf, PV_NONE,
861 {(char_u *)"", (char_u *)0L}
862 #else
863 (char_u *)NULL, PV_NONE,
864 {(char_u *)0L, (char_u *)0L}
865 #endif
866 SCRIPTID_INIT},
867 {"cscopetag", "cst", P_BOOL|P_VI_DEF|P_VIM,
868 #ifdef FEAT_CSCOPE
869 (char_u *)&p_cst, PV_NONE,
870 #else
871 (char_u *)NULL, PV_NONE,
872 #endif
873 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
874 {"cscopetagorder", "csto", P_NUM|P_VI_DEF|P_VIM,
875 #ifdef FEAT_CSCOPE
876 (char_u *)&p_csto, PV_NONE,
877 #else
878 (char_u *)NULL, PV_NONE,
879 #endif
880 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
881 {"cscopeverbose", "csverb", P_BOOL|P_VI_DEF|P_VIM,
882 #ifdef FEAT_CSCOPE
883 (char_u *)&p_csverbose, PV_NONE,
884 #else
885 (char_u *)NULL, PV_NONE,
886 #endif
887 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
888 {"cursorcolumn", "cuc", P_BOOL|P_VI_DEF|P_RWIN,
889 #ifdef FEAT_SYN_HL
890 (char_u *)VAR_WIN, PV_CUC,
891 #else
892 (char_u *)NULL, PV_NONE,
893 #endif
894 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
895 {"cursorline", "cul", P_BOOL|P_VI_DEF|P_RWIN,
896 #ifdef FEAT_SYN_HL
897 (char_u *)VAR_WIN, PV_CUL,
898 #else
899 (char_u *)NULL, PV_NONE,
900 #endif
901 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
902 {"debug", NULL, P_STRING|P_VI_DEF,
903 (char_u *)&p_debug, PV_NONE,
904 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
905 {"define", "def", P_STRING|P_ALLOCED|P_VI_DEF,
906 #ifdef FEAT_FIND_ID
907 (char_u *)&p_def, PV_DEF,
908 {(char_u *)"^\\s*#\\s*define", (char_u *)0L}
909 #else
910 (char_u *)NULL, PV_NONE,
911 {(char_u *)NULL, (char_u *)0L}
912 #endif
913 SCRIPTID_INIT},
914 {"delcombine", "deco", P_BOOL|P_VI_DEF|P_VIM,
915 #ifdef FEAT_MBYTE
916 (char_u *)&p_deco, PV_NONE,
917 #else
918 (char_u *)NULL, PV_NONE,
919 #endif
920 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
921 {"dictionary", "dict", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
922 #ifdef FEAT_INS_EXPAND
923 (char_u *)&p_dict, PV_DICT,
924 #else
925 (char_u *)NULL, PV_NONE,
926 #endif
927 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
928 {"diff", NULL, P_BOOL|P_VI_DEF|P_RWIN|P_NOGLOB,
929 #ifdef FEAT_DIFF
930 (char_u *)VAR_WIN, PV_DIFF,
931 #else
932 (char_u *)NULL, PV_NONE,
933 #endif
934 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
935 {"diffexpr", "dex", P_STRING|P_VI_DEF|P_SECURE,
936 #if defined(FEAT_DIFF) && defined(FEAT_EVAL)
937 (char_u *)&p_dex, PV_NONE,
938 {(char_u *)"", (char_u *)0L}
939 #else
940 (char_u *)NULL, PV_NONE,
941 {(char_u *)0L, (char_u *)0L}
942 #endif
943 SCRIPTID_INIT},
944 {"diffopt", "dip", P_STRING|P_ALLOCED|P_VI_DEF|P_RWIN|P_COMMA|P_NODUP,
945 #ifdef FEAT_DIFF
946 (char_u *)&p_dip, PV_NONE,
947 {(char_u *)"filler", (char_u *)NULL}
948 #else
949 (char_u *)NULL, PV_NONE,
950 {(char_u *)"", (char_u *)NULL}
951 #endif
952 SCRIPTID_INIT},
953 {"digraph", "dg", P_BOOL|P_VI_DEF|P_VIM,
954 #ifdef FEAT_DIGRAPHS
955 (char_u *)&p_dg, PV_NONE,
956 #else
957 (char_u *)NULL, PV_NONE,
958 #endif
959 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
960 {"directory", "dir", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP|P_SECURE,
961 (char_u *)&p_dir, PV_NONE,
962 {(char_u *)DFLT_DIR, (char_u *)0L} SCRIPTID_INIT},
963 {"display", "dy", P_STRING|P_VI_DEF|P_COMMA|P_RALL|P_NODUP,
964 (char_u *)&p_dy, PV_NONE,
965 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
966 {"eadirection", "ead", P_STRING|P_VI_DEF,
967 #ifdef FEAT_VERTSPLIT
968 (char_u *)&p_ead, PV_NONE,
969 {(char_u *)"both", (char_u *)0L}
970 #else
971 (char_u *)NULL, PV_NONE,
972 {(char_u *)NULL, (char_u *)0L}
973 #endif
974 SCRIPTID_INIT},
975 {"edcompatible","ed", P_BOOL|P_VI_DEF,
976 (char_u *)&p_ed, PV_NONE,
977 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
978 {"encoding", "enc", P_STRING|P_VI_DEF|P_RCLR,
979 #ifdef FEAT_MBYTE
980 (char_u *)&p_enc, PV_NONE,
981 {(char_u *)ENC_DFLT, (char_u *)0L}
982 #else
983 (char_u *)NULL, PV_NONE,
984 {(char_u *)0L, (char_u *)0L}
985 #endif
986 SCRIPTID_INIT},
987 {"endofline", "eol", P_BOOL|P_NO_MKRC|P_VI_DEF|P_RSTAT,
988 (char_u *)&p_eol, PV_EOL,
989 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
990 {"equalalways", "ea", P_BOOL|P_VI_DEF|P_RALL,
991 (char_u *)&p_ea, PV_NONE,
992 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
993 {"equalprg", "ep", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
994 (char_u *)&p_ep, PV_EP,
995 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
996 {"errorbells", "eb", P_BOOL|P_VI_DEF,
997 (char_u *)&p_eb, PV_NONE,
998 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
999 {"errorfile", "ef", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1000 #ifdef FEAT_QUICKFIX
1001 (char_u *)&p_ef, PV_NONE,
1002 {(char_u *)DFLT_ERRORFILE, (char_u *)0L}
1003 #else
1004 (char_u *)NULL, PV_NONE,
1005 {(char_u *)NULL, (char_u *)0L}
1006 #endif
1007 SCRIPTID_INIT},
1008 {"errorformat", "efm", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1009 #ifdef FEAT_QUICKFIX
1010 (char_u *)&p_efm, PV_EFM,
1011 {(char_u *)DFLT_EFM, (char_u *)0L}
1012 #else
1013 (char_u *)NULL, PV_NONE,
1014 {(char_u *)NULL, (char_u *)0L}
1015 #endif
1016 SCRIPTID_INIT},
1017 {"esckeys", "ek", P_BOOL|P_VIM,
1018 (char_u *)&p_ek, PV_NONE,
1019 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
1020 {"eventignore", "ei", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1021 #ifdef FEAT_AUTOCMD
1022 (char_u *)&p_ei, PV_NONE,
1023 #else
1024 (char_u *)NULL, PV_NONE,
1025 #endif
1026 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1027 {"expandtab", "et", P_BOOL|P_VI_DEF|P_VIM,
1028 (char_u *)&p_et, PV_ET,
1029 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1030 {"exrc", "ex", P_BOOL|P_VI_DEF|P_SECURE,
1031 (char_u *)&p_exrc, PV_NONE,
1032 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1033 {"fileencoding","fenc", P_STRING|P_ALLOCED|P_VI_DEF|P_RSTAT|P_RBUF|P_NO_MKRC,
1034 #ifdef FEAT_MBYTE
1035 (char_u *)&p_fenc, PV_FENC,
1036 {(char_u *)"", (char_u *)0L}
1037 #else
1038 (char_u *)NULL, PV_NONE,
1039 {(char_u *)0L, (char_u *)0L}
1040 #endif
1041 SCRIPTID_INIT},
1042 {"fileencodings","fencs", P_STRING|P_VI_DEF|P_COMMA,
1043 #ifdef FEAT_MBYTE
1044 (char_u *)&p_fencs, PV_NONE,
1045 {(char_u *)"ucs-bom", (char_u *)0L}
1046 #else
1047 (char_u *)NULL, PV_NONE,
1048 {(char_u *)0L, (char_u *)0L}
1049 #endif
1050 SCRIPTID_INIT},
1051 {"fileformat", "ff", P_STRING|P_ALLOCED|P_VI_DEF|P_RSTAT|P_NO_MKRC,
1052 (char_u *)&p_ff, PV_FF,
1053 {(char_u *)DFLT_FF, (char_u *)0L} SCRIPTID_INIT},
1054 {"fileformats", "ffs", P_STRING|P_VIM|P_COMMA|P_NODUP,
1055 (char_u *)&p_ffs, PV_NONE,
1056 {(char_u *)DFLT_FFS_VI, (char_u *)DFLT_FFS_VIM}
1057 SCRIPTID_INIT},
1058 {"filetype", "ft", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB|P_NFNAME,
1059 #ifdef FEAT_AUTOCMD
1060 (char_u *)&p_ft, PV_FT,
1061 {(char_u *)"", (char_u *)0L}
1062 #else
1063 (char_u *)NULL, PV_NONE,
1064 {(char_u *)0L, (char_u *)0L}
1065 #endif
1066 SCRIPTID_INIT},
1067 {"fillchars", "fcs", P_STRING|P_VI_DEF|P_RALL|P_COMMA|P_NODUP,
1068 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
1069 (char_u *)&p_fcs, PV_NONE,
1070 {(char_u *)"vert:|,fold:-", (char_u *)0L}
1071 #else
1072 (char_u *)NULL, PV_NONE,
1073 {(char_u *)"", (char_u *)0L}
1074 #endif
1075 SCRIPTID_INIT},
1076 {"fkmap", "fk", P_BOOL|P_VI_DEF,
1077 #ifdef FEAT_FKMAP
1078 (char_u *)&p_fkmap, PV_NONE,
1079 #else
1080 (char_u *)NULL, PV_NONE,
1081 #endif
1082 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1083 {"flash", "fl", P_BOOL|P_VI_DEF,
1084 (char_u *)NULL, PV_NONE,
1085 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1086 #ifdef FEAT_FOLDING
1087 {"foldclose", "fcl", P_STRING|P_VI_DEF|P_COMMA|P_NODUP|P_RWIN,
1088 (char_u *)&p_fcl, PV_NONE,
1089 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1090 {"foldcolumn", "fdc", P_NUM|P_VI_DEF|P_RWIN,
1091 (char_u *)VAR_WIN, PV_FDC,
1092 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1093 {"foldenable", "fen", P_BOOL|P_VI_DEF|P_RWIN,
1094 (char_u *)VAR_WIN, PV_FEN,
1095 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1096 {"foldexpr", "fde", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1097 # ifdef FEAT_EVAL
1098 (char_u *)VAR_WIN, PV_FDE,
1099 {(char_u *)"0", (char_u *)NULL}
1100 # else
1101 (char_u *)NULL, PV_NONE,
1102 {(char_u *)NULL, (char_u *)0L}
1103 # endif
1104 SCRIPTID_INIT},
1105 {"foldignore", "fdi", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1106 (char_u *)VAR_WIN, PV_FDI,
1107 {(char_u *)"#", (char_u *)NULL} SCRIPTID_INIT},
1108 {"foldlevel", "fdl", P_NUM|P_VI_DEF|P_RWIN,
1109 (char_u *)VAR_WIN, PV_FDL,
1110 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
1111 {"foldlevelstart","fdls", P_NUM|P_VI_DEF,
1112 (char_u *)&p_fdls, PV_NONE,
1113 {(char_u *)-1L, (char_u *)0L} SCRIPTID_INIT},
1114 {"foldmarker", "fmr", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|
1115 P_RWIN|P_COMMA|P_NODUP,
1116 (char_u *)VAR_WIN, PV_FMR,
1117 {(char_u *)"{{{,}}}", (char_u *)NULL}
1118 SCRIPTID_INIT},
1119 {"foldmethod", "fdm", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1120 (char_u *)VAR_WIN, PV_FDM,
1121 {(char_u *)"manual", (char_u *)NULL} SCRIPTID_INIT},
1122 {"foldminlines","fml", P_NUM|P_VI_DEF|P_RWIN,
1123 (char_u *)VAR_WIN, PV_FML,
1124 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
1125 {"foldnestmax", "fdn", P_NUM|P_VI_DEF|P_RWIN,
1126 (char_u *)VAR_WIN, PV_FDN,
1127 {(char_u *)20L, (char_u *)0L} SCRIPTID_INIT},
1128 {"foldopen", "fdo", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1129 (char_u *)&p_fdo, PV_NONE,
1130 {(char_u *)"block,hor,mark,percent,quickfix,search,tag,undo",
1131 (char_u *)0L} SCRIPTID_INIT},
1132 {"foldtext", "fdt", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1133 # ifdef FEAT_EVAL
1134 (char_u *)VAR_WIN, PV_FDT,
1135 {(char_u *)"foldtext()", (char_u *)NULL}
1136 # else
1137 (char_u *)NULL, PV_NONE,
1138 {(char_u *)NULL, (char_u *)0L}
1139 # endif
1140 SCRIPTID_INIT},
1141 #endif
1142 {"formatexpr", "fex", P_STRING|P_ALLOCED|P_VI_DEF|P_VIM,
1143 #ifdef FEAT_EVAL
1144 (char_u *)&p_fex, PV_FEX,
1145 {(char_u *)"", (char_u *)0L}
1146 #else
1147 (char_u *)NULL, PV_NONE,
1148 {(char_u *)0L, (char_u *)0L}
1149 #endif
1150 SCRIPTID_INIT},
1151 {"formatoptions","fo", P_STRING|P_ALLOCED|P_VIM|P_FLAGLIST,
1152 (char_u *)&p_fo, PV_FO,
1153 {(char_u *)DFLT_FO_VI, (char_u *)DFLT_FO_VIM}
1154 SCRIPTID_INIT},
1155 {"formatlistpat","flp", P_STRING|P_ALLOCED|P_VI_DEF,
1156 (char_u *)&p_flp, PV_FLP,
1157 {(char_u *)"^\\s*\\d\\+[\\]:.)}\\t ]\\s*",
1158 (char_u *)0L} SCRIPTID_INIT},
1159 {"formatprg", "fp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1160 (char_u *)&p_fp, PV_NONE,
1161 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1162 {"fsync", "fs", P_BOOL|P_SECURE|P_VI_DEF,
1163 #ifdef HAVE_FSYNC
1164 (char_u *)&p_fs, PV_NONE,
1165 {(char_u *)TRUE, (char_u *)0L}
1166 #else
1167 (char_u *)NULL, PV_NONE,
1168 {(char_u *)FALSE, (char_u *)0L}
1169 #endif
1170 SCRIPTID_INIT},
1171 {"gdefault", "gd", P_BOOL|P_VI_DEF|P_VIM,
1172 (char_u *)&p_gd, PV_NONE,
1173 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1174 {"graphic", "gr", P_BOOL|P_VI_DEF,
1175 (char_u *)NULL, PV_NONE,
1176 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1177 {"grepformat", "gfm", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1178 #ifdef FEAT_QUICKFIX
1179 (char_u *)&p_gefm, PV_NONE,
1180 {(char_u *)DFLT_GREPFORMAT, (char_u *)0L}
1181 #else
1182 (char_u *)NULL, PV_NONE,
1183 {(char_u *)NULL, (char_u *)0L}
1184 #endif
1185 SCRIPTID_INIT},
1186 {"grepprg", "gp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1187 #ifdef FEAT_QUICKFIX
1188 (char_u *)&p_gp, PV_GP,
1190 # ifdef WIN3264
1191 /* may be changed to "grep -n" in os_win32.c */
1192 (char_u *)"findstr /n",
1193 # else
1194 # ifdef UNIX
1195 /* Add an extra file name so that grep will always
1196 * insert a file name in the match line. */
1197 (char_u *)"grep -n $* /dev/null",
1198 # else
1199 # ifdef VMS
1200 (char_u *)"SEARCH/NUMBERS ",
1201 # else
1202 (char_u *)"grep -n ",
1203 # endif
1204 # endif
1205 # endif
1206 (char_u *)0L}
1207 #else
1208 (char_u *)NULL, PV_NONE,
1209 {(char_u *)NULL, (char_u *)0L}
1210 #endif
1211 SCRIPTID_INIT},
1212 {"guicursor", "gcr", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1213 #ifdef CURSOR_SHAPE
1214 (char_u *)&p_guicursor, PV_NONE,
1216 # ifdef FEAT_GUI
1217 (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",
1218 # else /* MSDOS or Win32 console */
1219 (char_u *)"n-v-c:block,o:hor50,i-ci:hor15,r-cr:hor30,sm:block",
1220 # endif
1221 (char_u *)0L}
1222 #else
1223 (char_u *)NULL, PV_NONE,
1224 {(char_u *)NULL, (char_u *)0L}
1225 #endif
1226 SCRIPTID_INIT},
1227 {"guifont", "gfn", P_STRING|P_VI_DEF|P_RCLR|P_COMMA|P_NODUP,
1228 #ifdef FEAT_GUI
1229 (char_u *)&p_guifont, PV_NONE,
1230 {(char_u *)"", (char_u *)0L}
1231 #else
1232 (char_u *)NULL, PV_NONE,
1233 {(char_u *)NULL, (char_u *)0L}
1234 #endif
1235 SCRIPTID_INIT},
1236 {"guifontset", "gfs", P_STRING|P_VI_DEF|P_RCLR|P_COMMA,
1237 #if defined(FEAT_GUI) && defined(FEAT_XFONTSET)
1238 (char_u *)&p_guifontset, PV_NONE,
1239 {(char_u *)"", (char_u *)0L}
1240 #else
1241 (char_u *)NULL, PV_NONE,
1242 {(char_u *)NULL, (char_u *)0L}
1243 #endif
1244 SCRIPTID_INIT},
1245 {"guifontwide", "gfw", P_STRING|P_VI_DEF|P_RCLR|P_COMMA|P_NODUP,
1246 #if defined(FEAT_GUI) && defined(FEAT_MBYTE)
1247 (char_u *)&p_guifontwide, PV_NONE,
1248 {(char_u *)"", (char_u *)0L}
1249 #else
1250 (char_u *)NULL, PV_NONE,
1251 {(char_u *)NULL, (char_u *)0L}
1252 #endif
1253 SCRIPTID_INIT},
1254 {"guiheadroom", "ghr", P_NUM|P_VI_DEF,
1255 #if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11)
1256 (char_u *)&p_ghr, PV_NONE,
1257 #else
1258 (char_u *)NULL, PV_NONE,
1259 #endif
1260 {(char_u *)50L, (char_u *)0L} SCRIPTID_INIT},
1261 {"guioptions", "go", P_STRING|P_VI_DEF|P_RALL|P_FLAGLIST,
1262 #if defined(FEAT_GUI)
1263 (char_u *)&p_go, PV_NONE,
1264 # if defined(UNIX) && !defined(MACOS)
1265 {(char_u *)"aegimrLtT", (char_u *)0L}
1266 # else
1267 {(char_u *)"egmrLtT", (char_u *)0L}
1268 # endif
1269 #else
1270 (char_u *)NULL, PV_NONE,
1271 {(char_u *)NULL, (char_u *)0L}
1272 #endif
1273 SCRIPTID_INIT},
1274 {"guipty", NULL, P_BOOL|P_VI_DEF,
1275 #if defined(FEAT_GUI)
1276 (char_u *)&p_guipty, PV_NONE,
1277 #else
1278 (char_u *)NULL, PV_NONE,
1279 #endif
1280 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1281 {"guitablabel", "gtl", P_STRING|P_VI_DEF|P_RWIN,
1282 #if defined(FEAT_GUI_TABLINE)
1283 (char_u *)&p_gtl, PV_NONE,
1284 {(char_u *)"", (char_u *)0L}
1285 #else
1286 (char_u *)NULL, PV_NONE,
1287 {(char_u *)NULL, (char_u *)0L}
1288 #endif
1289 SCRIPTID_INIT},
1290 {"guitabtooltip", "gtt", P_STRING|P_VI_DEF|P_RWIN,
1291 #if defined(FEAT_GUI_TABLINE)
1292 (char_u *)&p_gtt, PV_NONE,
1293 {(char_u *)"", (char_u *)0L}
1294 #else
1295 (char_u *)NULL, PV_NONE,
1296 {(char_u *)NULL, (char_u *)0L}
1297 #endif
1298 SCRIPTID_INIT},
1299 {"hardtabs", "ht", P_NUM|P_VI_DEF,
1300 (char_u *)NULL, PV_NONE,
1301 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
1302 {"helpfile", "hf", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1303 (char_u *)&p_hf, PV_NONE,
1304 {(char_u *)DFLT_HELPFILE, (char_u *)0L}
1305 SCRIPTID_INIT},
1306 {"helpheight", "hh", P_NUM|P_VI_DEF,
1307 #ifdef FEAT_WINDOWS
1308 (char_u *)&p_hh, PV_NONE,
1309 #else
1310 (char_u *)NULL, PV_NONE,
1311 #endif
1312 {(char_u *)20L, (char_u *)0L} SCRIPTID_INIT},
1313 {"helplang", "hlg", P_STRING|P_VI_DEF|P_COMMA,
1314 #ifdef FEAT_MULTI_LANG
1315 (char_u *)&p_hlg, PV_NONE,
1316 {(char_u *)"", (char_u *)0L}
1317 #else
1318 (char_u *)NULL, PV_NONE,
1319 {(char_u *)0L, (char_u *)0L}
1320 #endif
1321 SCRIPTID_INIT},
1322 {"hidden", "hid", P_BOOL|P_VI_DEF,
1323 (char_u *)&p_hid, PV_NONE,
1324 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1325 {"highlight", "hl", P_STRING|P_VI_DEF|P_RCLR|P_COMMA|P_NODUP,
1326 (char_u *)&p_hl, PV_NONE,
1327 {(char_u *)HIGHLIGHT_INIT, (char_u *)0L}
1328 SCRIPTID_INIT},
1329 {"history", "hi", P_NUM|P_VIM,
1330 (char_u *)&p_hi, PV_NONE,
1331 {(char_u *)0L, (char_u *)20L} SCRIPTID_INIT},
1332 {"hkmap", "hk", P_BOOL|P_VI_DEF|P_VIM,
1333 #ifdef FEAT_RIGHTLEFT
1334 (char_u *)&p_hkmap, PV_NONE,
1335 #else
1336 (char_u *)NULL, PV_NONE,
1337 #endif
1338 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1339 {"hkmapp", "hkp", P_BOOL|P_VI_DEF|P_VIM,
1340 #ifdef FEAT_RIGHTLEFT
1341 (char_u *)&p_hkmapp, PV_NONE,
1342 #else
1343 (char_u *)NULL, PV_NONE,
1344 #endif
1345 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1346 {"hlsearch", "hls", P_BOOL|P_VI_DEF|P_VIM|P_RALL,
1347 (char_u *)&p_hls, PV_NONE,
1348 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1349 {"icon", NULL, P_BOOL|P_VI_DEF,
1350 #ifdef FEAT_TITLE
1351 (char_u *)&p_icon, PV_NONE,
1352 #else
1353 (char_u *)NULL, PV_NONE,
1354 #endif
1355 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1356 {"iconstring", NULL, P_STRING|P_VI_DEF,
1357 #ifdef FEAT_TITLE
1358 (char_u *)&p_iconstring, PV_NONE,
1359 #else
1360 (char_u *)NULL, PV_NONE,
1361 #endif
1362 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1363 {"ignorecase", "ic", P_BOOL|P_VI_DEF,
1364 (char_u *)&p_ic, PV_NONE,
1365 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1366 {"imactivatekey","imak",P_STRING|P_VI_DEF,
1367 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
1368 (char_u *)&p_imak, PV_NONE,
1369 #else
1370 (char_u *)NULL, PV_NONE,
1371 #endif
1372 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1373 {"imcmdline", "imc", P_BOOL|P_VI_DEF,
1374 #ifdef USE_IM_CONTROL
1375 (char_u *)&p_imcmdline, PV_NONE,
1376 #else
1377 (char_u *)NULL, PV_NONE,
1378 #endif
1379 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1380 {"imdisable", "imd", P_BOOL|P_VI_DEF,
1381 #ifdef USE_IM_CONTROL
1382 (char_u *)&p_imdisable, PV_NONE,
1383 #else
1384 (char_u *)NULL, PV_NONE,
1385 #endif
1386 #ifdef __sgi
1387 {(char_u *)TRUE, (char_u *)0L}
1388 #else
1389 {(char_u *)FALSE, (char_u *)0L}
1390 #endif
1391 SCRIPTID_INIT},
1392 {"iminsert", "imi", P_NUM|P_VI_DEF,
1393 (char_u *)&p_iminsert, PV_IMI,
1394 #ifdef B_IMODE_IM
1395 {(char_u *)B_IMODE_IM, (char_u *)0L}
1396 #else
1397 {(char_u *)B_IMODE_NONE, (char_u *)0L}
1398 #endif
1399 SCRIPTID_INIT},
1400 {"imsearch", "ims", P_NUM|P_VI_DEF,
1401 (char_u *)&p_imsearch, PV_IMS,
1402 #ifdef B_IMODE_IM
1403 {(char_u *)B_IMODE_IM, (char_u *)0L}
1404 #else
1405 {(char_u *)B_IMODE_NONE, (char_u *)0L}
1406 #endif
1407 SCRIPTID_INIT},
1408 {"include", "inc", P_STRING|P_ALLOCED|P_VI_DEF,
1409 #ifdef FEAT_FIND_ID
1410 (char_u *)&p_inc, PV_INC,
1411 {(char_u *)"^\\s*#\\s*include", (char_u *)0L}
1412 #else
1413 (char_u *)NULL, PV_NONE,
1414 {(char_u *)0L, (char_u *)0L}
1415 #endif
1416 SCRIPTID_INIT},
1417 {"includeexpr", "inex", P_STRING|P_ALLOCED|P_VI_DEF,
1418 #if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
1419 (char_u *)&p_inex, PV_INEX,
1420 {(char_u *)"", (char_u *)0L}
1421 #else
1422 (char_u *)NULL, PV_NONE,
1423 {(char_u *)0L, (char_u *)0L}
1424 #endif
1425 SCRIPTID_INIT},
1426 {"incsearch", "is", P_BOOL|P_VI_DEF|P_VIM,
1427 (char_u *)&p_is, PV_NONE,
1428 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1429 {"indentexpr", "inde", P_STRING|P_ALLOCED|P_VI_DEF|P_VIM,
1430 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
1431 (char_u *)&p_inde, PV_INDE,
1432 {(char_u *)"", (char_u *)0L}
1433 #else
1434 (char_u *)NULL, PV_NONE,
1435 {(char_u *)0L, (char_u *)0L}
1436 #endif
1437 SCRIPTID_INIT},
1438 {"indentkeys", "indk", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
1439 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
1440 (char_u *)&p_indk, PV_INDK,
1441 {(char_u *)"0{,0},:,0#,!^F,o,O,e", (char_u *)0L}
1442 #else
1443 (char_u *)NULL, PV_NONE,
1444 {(char_u *)0L, (char_u *)0L}
1445 #endif
1446 SCRIPTID_INIT},
1447 {"infercase", "inf", P_BOOL|P_VI_DEF,
1448 (char_u *)&p_inf, PV_INF,
1449 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1450 {"insertmode", "im", P_BOOL|P_VI_DEF|P_VIM,
1451 (char_u *)&p_im, PV_NONE,
1452 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1453 {"isfname", "isf", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1454 (char_u *)&p_isf, PV_NONE,
1456 #ifdef BACKSLASH_IN_FILENAME
1457 /* Excluded are: & and ^ are special in cmd.exe
1458 * ( and ) are used in text separating fnames */
1459 (char_u *)"@,48-57,/,\\,.,-,_,+,,,#,$,%,{,},[,],:,@-@,!,~,=",
1460 #else
1461 # ifdef AMIGA
1462 (char_u *)"@,48-57,/,.,-,_,+,,,$,:",
1463 # else
1464 # ifdef VMS
1465 (char_u *)"@,48-57,/,.,-,_,+,,,#,$,%,<,>,[,],:,;,~",
1466 # else /* UNIX et al. */
1467 # ifdef EBCDIC
1468 (char_u *)"@,240-249,/,.,-,_,+,,,#,$,%,~,=",
1469 # else
1470 (char_u *)"@,48-57,/,.,-,_,+,,,#,$,%,~,=",
1471 # endif
1472 # endif
1473 # endif
1474 #endif
1475 (char_u *)0L} SCRIPTID_INIT},
1476 {"isident", "isi", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1477 (char_u *)&p_isi, PV_NONE,
1479 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
1480 (char_u *)"@,48-57,_,128-167,224-235",
1481 #else
1482 # ifdef EBCDIC
1483 /* TODO: EBCDIC Check this! @ == isalpha()*/
1484 (char_u *)"@,240-249,_,66-73,81-89,98-105,"
1485 "112-120,128,140-142,156,158,172,"
1486 "174,186,191,203-207,219-225,235-239,"
1487 "251-254",
1488 # else
1489 (char_u *)"@,48-57,_,192-255",
1490 # endif
1491 #endif
1492 (char_u *)0L} SCRIPTID_INIT},
1493 {"iskeyword", "isk", P_STRING|P_ALLOCED|P_VIM|P_COMMA|P_NODUP,
1494 (char_u *)&p_isk, PV_ISK,
1496 #ifdef EBCDIC
1497 (char_u *)"@,240-249,_",
1498 /* TODO: EBCDIC Check this! @ == isalpha()*/
1499 (char_u *)"@,240-249,_,66-73,81-89,98-105,"
1500 "112-120,128,140-142,156,158,172,"
1501 "174,186,191,203-207,219-225,235-239,"
1502 "251-254",
1503 #else
1504 (char_u *)"@,48-57,_",
1505 # if defined(MSDOS) || defined(MSWIN) || defined(OS2)
1506 (char_u *)"@,48-57,_,128-167,224-235"
1507 # else
1508 ISK_LATIN1
1509 # endif
1510 #endif
1511 } SCRIPTID_INIT},
1512 {"isprint", "isp", P_STRING|P_VI_DEF|P_RALL|P_COMMA|P_NODUP,
1513 (char_u *)&p_isp, PV_NONE,
1515 #if defined(MSDOS) || defined(MSWIN) || defined(OS2) \
1516 || (defined(MACOS) && !defined(MACOS_X)) \
1517 || defined(VMS)
1518 (char_u *)"@,~-255",
1519 #else
1520 # ifdef EBCDIC
1521 /* all chars above 63 are printable */
1522 (char_u *)"63-255",
1523 # else
1524 ISP_LATIN1,
1525 # endif
1526 #endif
1527 (char_u *)0L} SCRIPTID_INIT},
1528 {"joinspaces", "js", P_BOOL|P_VI_DEF|P_VIM,
1529 (char_u *)&p_js, PV_NONE,
1530 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1531 {"key", NULL, P_STRING|P_ALLOCED|P_VI_DEF|P_NO_MKRC,
1532 #ifdef FEAT_CRYPT
1533 (char_u *)&p_key, PV_KEY,
1534 {(char_u *)"", (char_u *)0L}
1535 #else
1536 (char_u *)NULL, PV_NONE,
1537 {(char_u *)0L, (char_u *)0L}
1538 #endif
1539 SCRIPTID_INIT},
1540 {"keymap", "kmp", P_STRING|P_ALLOCED|P_VI_DEF|P_RBUF|P_RSTAT|P_NFNAME|P_PRI_MKRC,
1541 #ifdef FEAT_KEYMAP
1542 (char_u *)&p_keymap, PV_KMAP,
1543 {(char_u *)"", (char_u *)0L}
1544 #else
1545 (char_u *)NULL, PV_NONE,
1546 {(char_u *)"", (char_u *)0L}
1547 #endif
1548 SCRIPTID_INIT},
1549 {"keymodel", "km", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1550 #ifdef FEAT_VISUAL
1551 (char_u *)&p_km, PV_NONE,
1552 #else
1553 (char_u *)NULL, PV_NONE,
1554 #endif
1555 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1556 {"keywordprg", "kp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1557 (char_u *)&p_kp, PV_KP,
1559 #if defined(MSDOS) || defined(MSWIN)
1560 (char_u *)":help",
1561 #else
1562 #ifdef VMS
1563 (char_u *)"help",
1564 #else
1565 # if defined(OS2)
1566 (char_u *)"view /",
1567 # else
1568 # ifdef USEMAN_S
1569 (char_u *)"man -s",
1570 # else
1571 (char_u *)"man",
1572 # endif
1573 # endif
1574 #endif
1575 #endif
1576 (char_u *)0L} SCRIPTID_INIT},
1577 {"langmap", "lmap", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1578 #ifdef FEAT_LANGMAP
1579 (char_u *)&p_langmap, PV_NONE,
1580 {(char_u *)"", /* unmatched } */
1581 #else
1582 (char_u *)NULL, PV_NONE,
1583 {(char_u *)NULL,
1584 #endif
1585 (char_u *)0L} SCRIPTID_INIT},
1586 {"langmenu", "lm", P_STRING|P_VI_DEF|P_NFNAME,
1587 #if defined(FEAT_MENU) && defined(FEAT_MULTI_LANG)
1588 (char_u *)&p_lm, PV_NONE,
1589 #else
1590 (char_u *)NULL, PV_NONE,
1591 #endif
1592 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1593 {"laststatus", "ls", P_NUM|P_VI_DEF|P_RALL,
1594 #ifdef FEAT_WINDOWS
1595 (char_u *)&p_ls, PV_NONE,
1596 #else
1597 (char_u *)NULL, PV_NONE,
1598 #endif
1599 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
1600 {"lazyredraw", "lz", P_BOOL|P_VI_DEF,
1601 (char_u *)&p_lz, PV_NONE,
1602 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1603 {"linebreak", "lbr", P_BOOL|P_VI_DEF|P_RWIN,
1604 #ifdef FEAT_LINEBREAK
1605 (char_u *)VAR_WIN, PV_LBR,
1606 #else
1607 (char_u *)NULL, PV_NONE,
1608 #endif
1609 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1610 {"lines", NULL, P_NUM|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RCLR,
1611 (char_u *)&Rows, PV_NONE,
1613 #if defined(MSDOS) || defined(WIN3264) || defined(OS2)
1614 (char_u *)25L,
1615 #else
1616 (char_u *)24L,
1617 #endif
1618 (char_u *)0L} SCRIPTID_INIT},
1619 {"linespace", "lsp", P_NUM|P_VI_DEF|P_RCLR,
1620 #ifdef FEAT_GUI
1621 (char_u *)&p_linespace, PV_NONE,
1622 #else
1623 (char_u *)NULL, PV_NONE,
1624 #endif
1625 #ifdef FEAT_GUI_W32
1626 {(char_u *)1L, (char_u *)0L}
1627 #else
1628 {(char_u *)0L, (char_u *)0L}
1629 #endif
1630 SCRIPTID_INIT},
1631 {"lisp", NULL, P_BOOL|P_VI_DEF,
1632 #ifdef FEAT_LISP
1633 (char_u *)&p_lisp, PV_LISP,
1634 #else
1635 (char_u *)NULL, PV_NONE,
1636 #endif
1637 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1638 {"lispwords", "lw", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1639 #ifdef FEAT_LISP
1640 (char_u *)&p_lispwords, PV_NONE,
1641 {(char_u *)LISPWORD_VALUE, (char_u *)0L}
1642 #else
1643 (char_u *)NULL, PV_NONE,
1644 {(char_u *)"", (char_u *)0L}
1645 #endif
1646 SCRIPTID_INIT},
1647 {"list", NULL, P_BOOL|P_VI_DEF|P_RWIN,
1648 (char_u *)VAR_WIN, PV_LIST,
1649 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1650 {"listchars", "lcs", P_STRING|P_VI_DEF|P_RALL|P_COMMA|P_NODUP,
1651 (char_u *)&p_lcs, PV_NONE,
1652 {(char_u *)"eol:$", (char_u *)0L} SCRIPTID_INIT},
1653 {"loadplugins", "lpl", P_BOOL|P_VI_DEF,
1654 (char_u *)&p_lpl, PV_NONE,
1655 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1656 #ifdef FEAT_GUI_MAC
1657 {"macatsui", NULL, P_BOOL|P_VI_DEF|P_RCLR,
1658 (char_u *)&p_macatsui, PV_NONE,
1659 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1660 #endif
1661 {"magic", NULL, P_BOOL|P_VI_DEF,
1662 (char_u *)&p_magic, PV_NONE,
1663 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1664 {"makeef", "mef", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1665 #ifdef FEAT_QUICKFIX
1666 (char_u *)&p_mef, PV_NONE,
1667 {(char_u *)"", (char_u *)0L}
1668 #else
1669 (char_u *)NULL, PV_NONE,
1670 {(char_u *)NULL, (char_u *)0L}
1671 #endif
1672 SCRIPTID_INIT},
1673 {"makeprg", "mp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1674 #ifdef FEAT_QUICKFIX
1675 (char_u *)&p_mp, PV_MP,
1676 # ifdef VMS
1677 {(char_u *)"MMS", (char_u *)0L}
1678 # else
1679 {(char_u *)"make", (char_u *)0L}
1680 # endif
1681 #else
1682 (char_u *)NULL, PV_NONE,
1683 {(char_u *)NULL, (char_u *)0L}
1684 #endif
1685 SCRIPTID_INIT},
1686 {"matchpairs", "mps", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
1687 (char_u *)&p_mps, PV_MPS,
1688 {(char_u *)"(:),{:},[:]", (char_u *)0L}
1689 SCRIPTID_INIT},
1690 {"matchtime", "mat", P_NUM|P_VI_DEF,
1691 (char_u *)&p_mat, PV_NONE,
1692 {(char_u *)5L, (char_u *)0L} SCRIPTID_INIT},
1693 {"maxcombine", "mco", P_NUM|P_VI_DEF,
1694 #ifdef FEAT_MBYTE
1695 (char_u *)&p_mco, PV_NONE,
1696 #else
1697 (char_u *)NULL, PV_NONE,
1698 #endif
1699 {(char_u *)2, (char_u *)0L} SCRIPTID_INIT},
1700 {"maxfuncdepth", "mfd", P_NUM|P_VI_DEF,
1701 #ifdef FEAT_EVAL
1702 (char_u *)&p_mfd, PV_NONE,
1703 #else
1704 (char_u *)NULL, PV_NONE,
1705 #endif
1706 {(char_u *)100L, (char_u *)0L} SCRIPTID_INIT},
1707 {"maxmapdepth", "mmd", P_NUM|P_VI_DEF,
1708 (char_u *)&p_mmd, PV_NONE,
1709 {(char_u *)1000L, (char_u *)0L} SCRIPTID_INIT},
1710 {"maxmem", "mm", P_NUM|P_VI_DEF,
1711 (char_u *)&p_mm, PV_NONE,
1712 {(char_u *)DFLT_MAXMEM, (char_u *)0L}
1713 SCRIPTID_INIT},
1714 {"maxmempattern","mmp", P_NUM|P_VI_DEF,
1715 (char_u *)&p_mmp, PV_NONE,
1716 {(char_u *)1000L, (char_u *)0L} SCRIPTID_INIT},
1717 {"maxmemtot", "mmt", P_NUM|P_VI_DEF,
1718 (char_u *)&p_mmt, PV_NONE,
1719 {(char_u *)DFLT_MAXMEMTOT, (char_u *)0L}
1720 SCRIPTID_INIT},
1721 {"menuitems", "mis", P_NUM|P_VI_DEF,
1722 #ifdef FEAT_MENU
1723 (char_u *)&p_mis, PV_NONE,
1724 #else
1725 (char_u *)NULL, PV_NONE,
1726 #endif
1727 {(char_u *)25L, (char_u *)0L} SCRIPTID_INIT},
1728 {"mesg", NULL, P_BOOL|P_VI_DEF,
1729 (char_u *)NULL, PV_NONE,
1730 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1731 {"mkspellmem", "msm", P_STRING|P_VI_DEF|P_EXPAND|P_SECURE,
1732 #ifdef FEAT_SPELL
1733 (char_u *)&p_msm, PV_NONE,
1734 {(char_u *)"460000,2000,500", (char_u *)0L}
1735 #else
1736 (char_u *)NULL, PV_NONE,
1737 {(char_u *)0L, (char_u *)0L}
1738 #endif
1739 SCRIPTID_INIT},
1740 {"modeline", "ml", P_BOOL|P_VIM,
1741 (char_u *)&p_ml, PV_ML,
1742 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
1743 {"modelines", "mls", P_NUM|P_VI_DEF,
1744 (char_u *)&p_mls, PV_NONE,
1745 {(char_u *)5L, (char_u *)0L} SCRIPTID_INIT},
1746 {"modifiable", "ma", P_BOOL|P_VI_DEF|P_NOGLOB,
1747 (char_u *)&p_ma, PV_MA,
1748 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1749 {"modified", "mod", P_BOOL|P_NO_MKRC|P_VI_DEF|P_RSTAT,
1750 (char_u *)&p_mod, PV_MOD,
1751 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1752 {"more", NULL, P_BOOL|P_VIM,
1753 (char_u *)&p_more, PV_NONE,
1754 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
1755 {"mouse", NULL, P_STRING|P_VI_DEF|P_FLAGLIST,
1756 (char_u *)&p_mouse, PV_NONE,
1758 #if defined(MSDOS) || defined(WIN3264)
1759 (char_u *)"a",
1760 #else
1761 (char_u *)"",
1762 #endif
1763 (char_u *)0L} SCRIPTID_INIT},
1764 {"mousefocus", "mousef", P_BOOL|P_VI_DEF,
1765 #ifdef FEAT_GUI
1766 (char_u *)&p_mousef, PV_NONE,
1767 #else
1768 (char_u *)NULL, PV_NONE,
1769 #endif
1770 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1771 {"mousehide", "mh", P_BOOL|P_VI_DEF,
1772 #ifdef FEAT_GUI
1773 (char_u *)&p_mh, PV_NONE,
1774 #else
1775 (char_u *)NULL, PV_NONE,
1776 #endif
1777 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1778 {"mousemodel", "mousem", P_STRING|P_VI_DEF,
1779 (char_u *)&p_mousem, PV_NONE,
1781 #if defined(MSDOS) || defined(MSWIN)
1782 (char_u *)"popup",
1783 #else
1784 # if defined(MACOS)
1785 (char_u *)"popup_setpos",
1786 # else
1787 (char_u *)"extend",
1788 # endif
1789 #endif
1790 (char_u *)0L} SCRIPTID_INIT},
1791 {"mouseshape", "mouses", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1792 #ifdef FEAT_MOUSESHAPE
1793 (char_u *)&p_mouseshape, PV_NONE,
1794 {(char_u *)"i-r:beam,s:updown,sd:udsizing,vs:leftright,vd:lrsizing,m:no,ml:up-arrow,v:rightup-arrow", (char_u *)0L}
1795 #else
1796 (char_u *)NULL, PV_NONE,
1797 {(char_u *)NULL, (char_u *)0L}
1798 #endif
1799 SCRIPTID_INIT},
1800 {"mousetime", "mouset", P_NUM|P_VI_DEF,
1801 (char_u *)&p_mouset, PV_NONE,
1802 {(char_u *)500L, (char_u *)0L} SCRIPTID_INIT},
1803 {"mzquantum", "mzq", P_NUM,
1804 #ifdef FEAT_MZSCHEME
1805 (char_u *)&p_mzq, PV_NONE,
1806 #else
1807 (char_u *)NULL, PV_NONE,
1808 #endif
1809 {(char_u *)100L, (char_u *)100L} SCRIPTID_INIT},
1810 {"novice", NULL, P_BOOL|P_VI_DEF,
1811 (char_u *)NULL, PV_NONE,
1812 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1813 {"nrformats", "nf", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
1814 (char_u *)&p_nf, PV_NF,
1815 {(char_u *)"octal,hex", (char_u *)0L}
1816 SCRIPTID_INIT},
1817 {"number", "nu", P_BOOL|P_VI_DEF|P_RWIN,
1818 (char_u *)VAR_WIN, PV_NU,
1819 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1820 {"numberwidth", "nuw", P_NUM|P_RWIN|P_VIM,
1821 #ifdef FEAT_LINEBREAK
1822 (char_u *)VAR_WIN, PV_NUW,
1823 #else
1824 (char_u *)NULL, PV_NONE,
1825 #endif
1826 {(char_u *)8L, (char_u *)4L} SCRIPTID_INIT},
1827 {"omnifunc", "ofu", P_STRING|P_ALLOCED|P_VI_DEF|P_SECURE,
1828 #ifdef FEAT_COMPL_FUNC
1829 (char_u *)&p_ofu, PV_OFU,
1830 {(char_u *)"", (char_u *)0L}
1831 #else
1832 (char_u *)NULL, PV_NONE,
1833 {(char_u *)0L, (char_u *)0L}
1834 #endif
1835 SCRIPTID_INIT},
1836 {"open", NULL, P_BOOL|P_VI_DEF,
1837 (char_u *)NULL, PV_NONE,
1838 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1839 {"opendevice", "odev", P_BOOL|P_VI_DEF,
1840 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
1841 (char_u *)&p_odev, PV_NONE,
1842 #else
1843 (char_u *)NULL, PV_NONE,
1844 #endif
1845 {(char_u *)FALSE, (char_u *)FALSE}
1846 SCRIPTID_INIT},
1847 {"operatorfunc", "opfunc", P_STRING|P_VI_DEF|P_SECURE,
1848 (char_u *)&p_opfunc, PV_NONE,
1849 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1850 {"optimize", "opt", P_BOOL|P_VI_DEF,
1851 (char_u *)NULL, PV_NONE,
1852 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1853 {"osfiletype", "oft", P_STRING|P_ALLOCED|P_VI_DEF,
1854 #ifdef FEAT_OSFILETYPE
1855 (char_u *)&p_oft, PV_OFT,
1856 {(char_u *)DFLT_OFT, (char_u *)0L}
1857 #else
1858 (char_u *)NULL, PV_NONE,
1859 {(char_u *)0L, (char_u *)0L}
1860 #endif
1861 SCRIPTID_INIT},
1862 {"paragraphs", "para", P_STRING|P_VI_DEF,
1863 (char_u *)&p_para, PV_NONE,
1864 {(char_u *)"IPLPPPQPP TPHPLIPpLpItpplpipbp",
1865 (char_u *)0L} SCRIPTID_INIT},
1866 {"paste", NULL, P_BOOL|P_VI_DEF|P_PRI_MKRC,
1867 (char_u *)&p_paste, PV_NONE,
1868 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1869 {"pastetoggle", "pt", P_STRING|P_VI_DEF,
1870 (char_u *)&p_pt, PV_NONE,
1871 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1872 {"patchexpr", "pex", P_STRING|P_VI_DEF|P_SECURE,
1873 #if defined(FEAT_DIFF) && defined(FEAT_EVAL)
1874 (char_u *)&p_pex, PV_NONE,
1875 {(char_u *)"", (char_u *)0L}
1876 #else
1877 (char_u *)NULL, PV_NONE,
1878 {(char_u *)0L, (char_u *)0L}
1879 #endif
1880 SCRIPTID_INIT},
1881 {"patchmode", "pm", P_STRING|P_VI_DEF|P_NFNAME,
1882 (char_u *)&p_pm, PV_NONE,
1883 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1884 {"path", "pa", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
1885 (char_u *)&p_path, PV_PATH,
1887 #if defined AMIGA || defined MSDOS || defined MSWIN
1888 (char_u *)".,,",
1889 #else
1890 # if defined(__EMX__)
1891 (char_u *)".,/emx/include,,",
1892 # else /* Unix, probably */
1893 (char_u *)".,/usr/include,,",
1894 # endif
1895 #endif
1896 (char_u *)0L} SCRIPTID_INIT},
1897 {"preserveindent", "pi", P_BOOL|P_VI_DEF|P_VIM,
1898 (char_u *)&p_pi, PV_PI,
1899 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1900 {"previewheight", "pvh", P_NUM|P_VI_DEF,
1901 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
1902 (char_u *)&p_pvh, PV_NONE,
1903 #else
1904 (char_u *)NULL, PV_NONE,
1905 #endif
1906 {(char_u *)12L, (char_u *)0L} SCRIPTID_INIT},
1907 {"previewwindow", "pvw", P_BOOL|P_VI_DEF|P_RSTAT|P_NOGLOB,
1908 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
1909 (char_u *)VAR_WIN, PV_PVW,
1910 #else
1911 (char_u *)NULL, PV_NONE,
1912 #endif
1913 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1914 {"printdevice", "pdev", P_STRING|P_VI_DEF|P_SECURE,
1915 #ifdef FEAT_PRINTER
1916 (char_u *)&p_pdev, PV_NONE,
1917 {(char_u *)"", (char_u *)0L}
1918 #else
1919 (char_u *)NULL, PV_NONE,
1920 {(char_u *)NULL, (char_u *)0L}
1921 #endif
1922 SCRIPTID_INIT},
1923 {"printencoding", "penc", P_STRING|P_VI_DEF,
1924 #ifdef FEAT_POSTSCRIPT
1925 (char_u *)&p_penc, 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
1931 SCRIPTID_INIT},
1932 {"printexpr", "pexpr", P_STRING|P_VI_DEF,
1933 #ifdef FEAT_POSTSCRIPT
1934 (char_u *)&p_pexpr, 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
1940 SCRIPTID_INIT},
1941 {"printfont", "pfn", P_STRING|P_VI_DEF,
1942 #ifdef FEAT_PRINTER
1943 (char_u *)&p_pfn, PV_NONE,
1945 # ifdef MSWIN
1946 (char_u *)"Courier_New:h10",
1947 # else
1948 (char_u *)"courier",
1949 # endif
1950 (char_u *)0L}
1951 #else
1952 (char_u *)NULL, PV_NONE,
1953 {(char_u *)NULL, (char_u *)0L}
1954 #endif
1955 SCRIPTID_INIT},
1956 {"printheader", "pheader", P_STRING|P_VI_DEF|P_GETTEXT,
1957 #ifdef FEAT_PRINTER
1958 (char_u *)&p_header, PV_NONE,
1959 {(char_u *)N_("%<%f%h%m%=Page %N"), (char_u *)0L}
1960 #else
1961 (char_u *)NULL, PV_NONE,
1962 {(char_u *)NULL, (char_u *)0L}
1963 #endif
1964 SCRIPTID_INIT},
1965 {"printmbcharset", "pmbcs", P_STRING|P_VI_DEF,
1966 #if defined(FEAT_POSTSCRIPT) && defined(FEAT_MBYTE)
1967 (char_u *)&p_pmcs, PV_NONE,
1968 {(char_u *)"", (char_u *)0L}
1969 #else
1970 (char_u *)NULL, PV_NONE,
1971 {(char_u *)NULL, (char_u *)0L}
1972 #endif
1973 SCRIPTID_INIT},
1974 {"printmbfont", "pmbfn", P_STRING|P_VI_DEF,
1975 #if defined(FEAT_POSTSCRIPT) && defined(FEAT_MBYTE)
1976 (char_u *)&p_pmfn, 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
1982 SCRIPTID_INIT},
1983 {"printoptions", "popt", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1984 #ifdef FEAT_PRINTER
1985 (char_u *)&p_popt, 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
1991 SCRIPTID_INIT},
1992 {"prompt", NULL, P_BOOL|P_VI_DEF,
1993 (char_u *)&p_prompt, PV_NONE,
1994 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1995 {"pumheight", "ph", P_NUM|P_VI_DEF,
1996 #ifdef FEAT_INS_EXPAND
1997 (char_u *)&p_ph, PV_NONE,
1998 #else
1999 (char_u *)NULL, PV_NONE,
2000 #endif
2001 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2002 {"quoteescape", "qe", P_STRING|P_ALLOCED|P_VI_DEF,
2003 #ifdef FEAT_TEXTOBJ
2004 (char_u *)&p_qe, PV_QE,
2005 {(char_u *)"\\", (char_u *)0L}
2006 #else
2007 (char_u *)NULL, PV_NONE,
2008 {(char_u *)NULL, (char_u *)0L}
2009 #endif
2010 SCRIPTID_INIT},
2011 {"readonly", "ro", P_BOOL|P_VI_DEF|P_RSTAT|P_NOGLOB,
2012 (char_u *)&p_ro, PV_RO,
2013 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2014 {"redraw", NULL, P_BOOL|P_VI_DEF,
2015 (char_u *)NULL, PV_NONE,
2016 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2017 {"redrawtime", "rdt", P_NUM|P_VI_DEF,
2018 #ifdef FEAT_RELTIME
2019 (char_u *)&p_rdt, PV_NONE,
2020 #else
2021 (char_u *)NULL, PV_NONE,
2022 #endif
2023 {(char_u *)2000L, (char_u *)0L} SCRIPTID_INIT},
2024 {"remap", NULL, P_BOOL|P_VI_DEF,
2025 (char_u *)&p_remap, PV_NONE,
2026 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2027 {"report", NULL, P_NUM|P_VI_DEF,
2028 (char_u *)&p_report, PV_NONE,
2029 {(char_u *)2L, (char_u *)0L} SCRIPTID_INIT},
2030 {"restorescreen", "rs", P_BOOL|P_VI_DEF,
2031 #ifdef WIN3264
2032 (char_u *)&p_rs, PV_NONE,
2033 #else
2034 (char_u *)NULL, PV_NONE,
2035 #endif
2036 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2037 {"revins", "ri", P_BOOL|P_VI_DEF|P_VIM,
2038 #ifdef FEAT_RIGHTLEFT
2039 (char_u *)&p_ri, PV_NONE,
2040 #else
2041 (char_u *)NULL, PV_NONE,
2042 #endif
2043 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2044 {"rightleft", "rl", P_BOOL|P_VI_DEF|P_RWIN,
2045 #ifdef FEAT_RIGHTLEFT
2046 (char_u *)VAR_WIN, PV_RL,
2047 #else
2048 (char_u *)NULL, PV_NONE,
2049 #endif
2050 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2051 {"rightleftcmd", "rlc", P_STRING|P_ALLOCED|P_VI_DEF|P_RWIN,
2052 #ifdef FEAT_RIGHTLEFT
2053 (char_u *)VAR_WIN, PV_RLC,
2054 {(char_u *)"search", (char_u *)NULL}
2055 #else
2056 (char_u *)NULL, PV_NONE,
2057 {(char_u *)NULL, (char_u *)0L}
2058 #endif
2059 SCRIPTID_INIT},
2060 {"ruler", "ru", P_BOOL|P_VI_DEF|P_VIM|P_RSTAT,
2061 #ifdef FEAT_CMDL_INFO
2062 (char_u *)&p_ru, PV_NONE,
2063 #else
2064 (char_u *)NULL, PV_NONE,
2065 #endif
2066 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2067 {"rulerformat", "ruf", P_STRING|P_VI_DEF|P_ALLOCED|P_RSTAT,
2068 #ifdef FEAT_STL_OPT
2069 (char_u *)&p_ruf, PV_NONE,
2070 #else
2071 (char_u *)NULL, PV_NONE,
2072 #endif
2073 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2074 {"runtimepath", "rtp", P_STRING|P_VI_DEF|P_EXPAND|P_COMMA|P_NODUP|P_SECURE,
2075 (char_u *)&p_rtp, PV_NONE,
2076 {(char_u *)DFLT_RUNTIMEPATH, (char_u *)0L}
2077 SCRIPTID_INIT},
2078 {"scroll", "scr", P_NUM|P_NO_MKRC|P_VI_DEF,
2079 (char_u *)VAR_WIN, PV_SCROLL,
2080 {(char_u *)12L, (char_u *)0L} SCRIPTID_INIT},
2081 {"scrollbind", "scb", P_BOOL|P_VI_DEF,
2082 #ifdef FEAT_SCROLLBIND
2083 (char_u *)VAR_WIN, PV_SCBIND,
2084 #else
2085 (char_u *)NULL, PV_NONE,
2086 #endif
2087 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2088 {"scrolljump", "sj", P_NUM|P_VI_DEF|P_VIM,
2089 (char_u *)&p_sj, PV_NONE,
2090 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
2091 {"scrolloff", "so", P_NUM|P_VI_DEF|P_VIM|P_RALL,
2092 (char_u *)&p_so, PV_NONE,
2093 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2094 {"scrollopt", "sbo", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2095 #ifdef FEAT_SCROLLBIND
2096 (char_u *)&p_sbo, PV_NONE,
2097 {(char_u *)"ver,jump", (char_u *)0L}
2098 #else
2099 (char_u *)NULL, PV_NONE,
2100 {(char_u *)0L, (char_u *)0L}
2101 #endif
2102 SCRIPTID_INIT},
2103 {"sections", "sect", P_STRING|P_VI_DEF,
2104 (char_u *)&p_sections, PV_NONE,
2105 {(char_u *)"SHNHH HUnhsh", (char_u *)0L}
2106 SCRIPTID_INIT},
2107 {"secure", NULL, P_BOOL|P_VI_DEF|P_SECURE,
2108 (char_u *)&p_secure, PV_NONE,
2109 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2110 {"selection", "sel", P_STRING|P_VI_DEF,
2111 #ifdef FEAT_VISUAL
2112 (char_u *)&p_sel, PV_NONE,
2113 #else
2114 (char_u *)NULL, PV_NONE,
2115 #endif
2116 {(char_u *)"inclusive", (char_u *)0L}
2117 SCRIPTID_INIT},
2118 {"selectmode", "slm", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2119 #ifdef FEAT_VISUAL
2120 (char_u *)&p_slm, PV_NONE,
2121 #else
2122 (char_u *)NULL, PV_NONE,
2123 #endif
2124 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2125 {"sessionoptions", "ssop", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2126 #ifdef FEAT_SESSION
2127 (char_u *)&p_ssop, PV_NONE,
2128 {(char_u *)"blank,buffers,curdir,folds,help,options,tabpages,winsize",
2129 (char_u *)0L}
2130 #else
2131 (char_u *)NULL, PV_NONE,
2132 {(char_u *)0L, (char_u *)0L}
2133 #endif
2134 SCRIPTID_INIT},
2135 {"shell", "sh", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
2136 (char_u *)&p_sh, PV_NONE,
2138 #ifdef VMS
2139 (char_u *)"-",
2140 #else
2141 # if defined(MSDOS)
2142 (char_u *)"command",
2143 # else
2144 # if defined(WIN16)
2145 (char_u *)"command.com",
2146 # else
2147 # if defined(WIN3264)
2148 (char_u *)"", /* set in set_init_1() */
2149 # else
2150 # if defined(OS2)
2151 (char_u *)"cmd.exe",
2152 # else
2153 # if defined(ARCHIE)
2154 (char_u *)"gos",
2155 # else
2156 (char_u *)"sh",
2157 # endif
2158 # endif
2159 # endif
2160 # endif
2161 # endif
2162 #endif /* VMS */
2163 (char_u *)0L} SCRIPTID_INIT},
2164 {"shellcmdflag","shcf", P_STRING|P_VI_DEF|P_SECURE,
2165 (char_u *)&p_shcf, PV_NONE,
2167 #if defined(MSDOS) || defined(MSWIN)
2168 (char_u *)"/c",
2169 #else
2170 # if defined(OS2)
2171 (char_u *)"/c",
2172 # else
2173 (char_u *)"-c",
2174 # endif
2175 #endif
2176 (char_u *)0L} SCRIPTID_INIT},
2177 {"shellpipe", "sp", P_STRING|P_VI_DEF|P_SECURE,
2178 #ifdef FEAT_QUICKFIX
2179 (char_u *)&p_sp, PV_NONE,
2181 #if defined(UNIX) || defined(OS2)
2182 # ifdef ARCHIE
2183 (char_u *)"2>",
2184 # else
2185 (char_u *)"| tee",
2186 # endif
2187 #else
2188 (char_u *)">",
2189 #endif
2190 (char_u *)0L}
2191 #else
2192 (char_u *)NULL, PV_NONE,
2193 {(char_u *)0L, (char_u *)0L}
2194 #endif
2195 SCRIPTID_INIT},
2196 {"shellquote", "shq", P_STRING|P_VI_DEF|P_SECURE,
2197 (char_u *)&p_shq, PV_NONE,
2198 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2199 {"shellredir", "srr", P_STRING|P_VI_DEF|P_SECURE,
2200 (char_u *)&p_srr, PV_NONE,
2201 {(char_u *)">", (char_u *)0L} SCRIPTID_INIT},
2202 {"shellslash", "ssl", P_BOOL|P_VI_DEF,
2203 #ifdef BACKSLASH_IN_FILENAME
2204 (char_u *)&p_ssl, PV_NONE,
2205 #else
2206 (char_u *)NULL, PV_NONE,
2207 #endif
2208 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2209 {"shelltemp", "stmp", P_BOOL,
2210 (char_u *)&p_stmp, PV_NONE,
2211 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
2212 {"shelltype", "st", P_NUM|P_VI_DEF,
2213 #ifdef AMIGA
2214 (char_u *)&p_st, PV_NONE,
2215 #else
2216 (char_u *)NULL, PV_NONE,
2217 #endif
2218 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2219 {"shellxquote", "sxq", P_STRING|P_VI_DEF|P_SECURE,
2220 (char_u *)&p_sxq, PV_NONE,
2222 #if defined(UNIX) && defined(USE_SYSTEM) && !defined(__EMX__)
2223 (char_u *)"\"",
2224 #else
2225 (char_u *)"",
2226 #endif
2227 (char_u *)0L} SCRIPTID_INIT},
2228 {"shiftround", "sr", P_BOOL|P_VI_DEF|P_VIM,
2229 (char_u *)&p_sr, PV_NONE,
2230 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2231 {"shiftwidth", "sw", P_NUM|P_VI_DEF,
2232 (char_u *)&p_sw, PV_SW,
2233 {(char_u *)8L, (char_u *)0L} SCRIPTID_INIT},
2234 {"shortmess", "shm", P_STRING|P_VIM|P_FLAGLIST,
2235 (char_u *)&p_shm, PV_NONE,
2236 {(char_u *)"", (char_u *)"filnxtToO"}
2237 SCRIPTID_INIT},
2238 {"shortname", "sn", P_BOOL|P_VI_DEF,
2239 #ifdef SHORT_FNAME
2240 (char_u *)NULL, PV_NONE,
2241 #else
2242 (char_u *)&p_sn, PV_SN,
2243 #endif
2244 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2245 {"showbreak", "sbr", P_STRING|P_VI_DEF|P_RALL,
2246 #ifdef FEAT_LINEBREAK
2247 (char_u *)&p_sbr, PV_NONE,
2248 #else
2249 (char_u *)NULL, PV_NONE,
2250 #endif
2251 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2252 {"showcmd", "sc", P_BOOL|P_VIM,
2253 #ifdef FEAT_CMDL_INFO
2254 (char_u *)&p_sc, PV_NONE,
2255 #else
2256 (char_u *)NULL, PV_NONE,
2257 #endif
2258 {(char_u *)FALSE,
2259 #ifdef UNIX
2260 (char_u *)FALSE
2261 #else
2262 (char_u *)TRUE
2263 #endif
2264 } SCRIPTID_INIT},
2265 {"showfulltag", "sft", P_BOOL|P_VI_DEF,
2266 (char_u *)&p_sft, PV_NONE,
2267 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2268 {"showmatch", "sm", P_BOOL|P_VI_DEF,
2269 (char_u *)&p_sm, PV_NONE,
2270 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2271 {"showmode", "smd", P_BOOL|P_VIM,
2272 (char_u *)&p_smd, PV_NONE,
2273 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
2274 {"showtabline", "stal", P_NUM|P_VI_DEF|P_RALL,
2275 #ifdef FEAT_WINDOWS
2276 (char_u *)&p_stal, PV_NONE,
2277 #else
2278 (char_u *)NULL, PV_NONE,
2279 #endif
2280 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
2281 {"sidescroll", "ss", P_NUM|P_VI_DEF,
2282 (char_u *)&p_ss, PV_NONE,
2283 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2284 {"sidescrolloff", "siso", P_NUM|P_VI_DEF|P_VIM|P_RBUF,
2285 (char_u *)&p_siso, PV_NONE,
2286 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2287 {"slowopen", "slow", P_BOOL|P_VI_DEF,
2288 (char_u *)NULL, PV_NONE,
2289 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2290 {"smartcase", "scs", P_BOOL|P_VI_DEF|P_VIM,
2291 (char_u *)&p_scs, PV_NONE,
2292 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2293 {"smartindent", "si", P_BOOL|P_VI_DEF|P_VIM,
2294 #ifdef FEAT_SMARTINDENT
2295 (char_u *)&p_si, PV_SI,
2296 #else
2297 (char_u *)NULL, PV_NONE,
2298 #endif
2299 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2300 {"smarttab", "sta", P_BOOL|P_VI_DEF|P_VIM,
2301 (char_u *)&p_sta, PV_NONE,
2302 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2303 {"softtabstop", "sts", P_NUM|P_VI_DEF|P_VIM,
2304 (char_u *)&p_sts, PV_STS,
2305 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2306 {"sourceany", NULL, P_BOOL|P_VI_DEF,
2307 (char_u *)NULL, PV_NONE,
2308 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2309 {"spell", NULL, P_BOOL|P_VI_DEF|P_RWIN,
2310 #ifdef FEAT_SPELL
2311 (char_u *)VAR_WIN, PV_SPELL,
2312 #else
2313 (char_u *)NULL, PV_NONE,
2314 #endif
2315 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2316 {"spellcapcheck", "spc", P_STRING|P_ALLOCED|P_VI_DEF|P_RBUF,
2317 #ifdef FEAT_SPELL
2318 (char_u *)&p_spc, PV_SPC,
2319 {(char_u *)"[.?!]\\_[\\])'\" ]\\+", (char_u *)0L}
2320 #else
2321 (char_u *)NULL, PV_NONE,
2322 {(char_u *)0L, (char_u *)0L}
2323 #endif
2324 SCRIPTID_INIT},
2325 {"spellfile", "spf", P_STRING|P_EXPAND|P_ALLOCED|P_VI_DEF|P_SECURE|P_COMMA,
2326 #ifdef FEAT_SPELL
2327 (char_u *)&p_spf, PV_SPF,
2328 {(char_u *)"", (char_u *)0L}
2329 #else
2330 (char_u *)NULL, PV_NONE,
2331 {(char_u *)0L, (char_u *)0L}
2332 #endif
2333 SCRIPTID_INIT},
2334 {"spelllang", "spl", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_RBUF|P_EXPAND,
2335 #ifdef FEAT_SPELL
2336 (char_u *)&p_spl, PV_SPL,
2337 {(char_u *)"en", (char_u *)0L}
2338 #else
2339 (char_u *)NULL, PV_NONE,
2340 {(char_u *)0L, (char_u *)0L}
2341 #endif
2342 SCRIPTID_INIT},
2343 {"spellsuggest", "sps", P_STRING|P_VI_DEF|P_EXPAND|P_SECURE|P_COMMA,
2344 #ifdef FEAT_SPELL
2345 (char_u *)&p_sps, PV_NONE,
2346 {(char_u *)"best", (char_u *)0L}
2347 #else
2348 (char_u *)NULL, PV_NONE,
2349 {(char_u *)0L, (char_u *)0L}
2350 #endif
2351 SCRIPTID_INIT},
2352 {"splitbelow", "sb", P_BOOL|P_VI_DEF,
2353 #ifdef FEAT_WINDOWS
2354 (char_u *)&p_sb, PV_NONE,
2355 #else
2356 (char_u *)NULL, PV_NONE,
2357 #endif
2358 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2359 {"splitright", "spr", P_BOOL|P_VI_DEF,
2360 #ifdef FEAT_VERTSPLIT
2361 (char_u *)&p_spr, PV_NONE,
2362 #else
2363 (char_u *)NULL, PV_NONE,
2364 #endif
2365 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2366 {"startofline", "sol", P_BOOL|P_VI_DEF|P_VIM,
2367 (char_u *)&p_sol, PV_NONE,
2368 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2369 {"statusline" ,"stl", P_STRING|P_VI_DEF|P_ALLOCED|P_RSTAT,
2370 #ifdef FEAT_STL_OPT
2371 (char_u *)&p_stl, PV_STL,
2372 #else
2373 (char_u *)NULL, PV_NONE,
2374 #endif
2375 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2376 {"suffixes", "su", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2377 (char_u *)&p_su, PV_NONE,
2378 {(char_u *)".bak,~,.o,.h,.info,.swp,.obj",
2379 (char_u *)0L} SCRIPTID_INIT},
2380 {"suffixesadd", "sua", P_STRING|P_VI_DEF|P_ALLOCED|P_COMMA|P_NODUP,
2381 #ifdef FEAT_SEARCHPATH
2382 (char_u *)&p_sua, PV_SUA,
2383 {(char_u *)"", (char_u *)0L}
2384 #else
2385 (char_u *)NULL, PV_NONE,
2386 {(char_u *)0L, (char_u *)0L}
2387 #endif
2388 SCRIPTID_INIT},
2389 {"swapfile", "swf", P_BOOL|P_VI_DEF|P_RSTAT,
2390 (char_u *)&p_swf, PV_SWF,
2391 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2392 {"swapsync", "sws", P_STRING|P_VI_DEF,
2393 (char_u *)&p_sws, PV_NONE,
2394 {(char_u *)"fsync", (char_u *)0L} SCRIPTID_INIT},
2395 {"switchbuf", "swb", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2396 (char_u *)&p_swb, PV_NONE,
2397 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2398 {"synmaxcol", "smc", P_NUM|P_VI_DEF|P_RBUF,
2399 #ifdef FEAT_SYN_HL
2400 (char_u *)&p_smc, PV_SMC,
2401 {(char_u *)3000L, (char_u *)0L}
2402 #else
2403 (char_u *)NULL, PV_NONE,
2404 {(char_u *)0L, (char_u *)0L}
2405 #endif
2406 SCRIPTID_INIT},
2407 {"syntax", "syn", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB|P_NFNAME,
2408 #ifdef FEAT_SYN_HL
2409 (char_u *)&p_syn, PV_SYN,
2410 {(char_u *)"", (char_u *)0L}
2411 #else
2412 (char_u *)NULL, PV_NONE,
2413 {(char_u *)0L, (char_u *)0L}
2414 #endif
2415 SCRIPTID_INIT},
2416 {"tabline", "tal", P_STRING|P_VI_DEF|P_RALL,
2417 #ifdef FEAT_STL_OPT
2418 (char_u *)&p_tal, PV_NONE,
2419 #else
2420 (char_u *)NULL, PV_NONE,
2421 #endif
2422 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2423 {"tabpagemax", "tpm", P_NUM|P_VI_DEF,
2424 #ifdef FEAT_WINDOWS
2425 (char_u *)&p_tpm, PV_NONE,
2426 #else
2427 (char_u *)NULL, PV_NONE,
2428 #endif
2429 {(char_u *)10L, (char_u *)0L} SCRIPTID_INIT},
2430 {"tabstop", "ts", P_NUM|P_VI_DEF|P_RBUF,
2431 (char_u *)&p_ts, PV_TS,
2432 {(char_u *)8L, (char_u *)0L} SCRIPTID_INIT},
2433 {"tagbsearch", "tbs", P_BOOL|P_VI_DEF,
2434 (char_u *)&p_tbs, PV_NONE,
2435 #ifdef VMS /* binary searching doesn't appear to work on VMS */
2436 {(char_u *)0L, (char_u *)0L}
2437 #else
2438 {(char_u *)TRUE, (char_u *)0L}
2439 #endif
2440 SCRIPTID_INIT},
2441 {"taglength", "tl", P_NUM|P_VI_DEF,
2442 (char_u *)&p_tl, PV_NONE,
2443 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2444 {"tagrelative", "tr", P_BOOL|P_VIM,
2445 (char_u *)&p_tr, PV_NONE,
2446 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
2447 {"tags", "tag", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
2448 (char_u *)&p_tags, PV_TAGS,
2450 #if defined(FEAT_EMACS_TAGS) && !defined(CASE_INSENSITIVE_FILENAME)
2451 (char_u *)"./tags,./TAGS,tags,TAGS",
2452 #else
2453 (char_u *)"./tags,tags",
2454 #endif
2455 (char_u *)0L} SCRIPTID_INIT},
2456 {"tagstack", "tgst", P_BOOL|P_VI_DEF,
2457 (char_u *)&p_tgst, PV_NONE,
2458 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2459 {"term", NULL, P_STRING|P_EXPAND|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RALL,
2460 (char_u *)&T_NAME, PV_NONE,
2461 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2462 {"termbidi", "tbidi", P_BOOL|P_VI_DEF,
2463 #ifdef FEAT_ARABIC
2464 (char_u *)&p_tbidi, PV_NONE,
2465 #else
2466 (char_u *)NULL, PV_NONE,
2467 #endif
2468 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2469 {"termencoding", "tenc", P_STRING|P_VI_DEF|P_RCLR,
2470 #ifdef FEAT_MBYTE
2471 (char_u *)&p_tenc, PV_NONE,
2472 {(char_u *)"", (char_u *)0L}
2473 #else
2474 (char_u *)NULL, PV_NONE,
2475 {(char_u *)0L, (char_u *)0L}
2476 #endif
2477 SCRIPTID_INIT},
2478 {"terse", NULL, P_BOOL|P_VI_DEF,
2479 (char_u *)&p_terse, PV_NONE,
2480 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2481 {"textauto", "ta", P_BOOL|P_VIM,
2482 (char_u *)&p_ta, PV_NONE,
2483 {(char_u *)DFLT_TEXTAUTO, (char_u *)TRUE}
2484 SCRIPTID_INIT},
2485 {"textmode", "tx", P_BOOL|P_VI_DEF|P_NO_MKRC,
2486 (char_u *)&p_tx, PV_TX,
2488 #ifdef USE_CRNL
2489 (char_u *)TRUE,
2490 #else
2491 (char_u *)FALSE,
2492 #endif
2493 (char_u *)0L} SCRIPTID_INIT},
2494 {"textwidth", "tw", P_NUM|P_VI_DEF|P_VIM,
2495 (char_u *)&p_tw, PV_TW,
2496 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2497 {"thesaurus", "tsr", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
2498 #ifdef FEAT_INS_EXPAND
2499 (char_u *)&p_tsr, PV_TSR,
2500 #else
2501 (char_u *)NULL, PV_NONE,
2502 #endif
2503 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2504 {"tildeop", "top", P_BOOL|P_VI_DEF|P_VIM,
2505 (char_u *)&p_to, PV_NONE,
2506 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2507 {"timeout", "to", P_BOOL|P_VI_DEF,
2508 (char_u *)&p_timeout, PV_NONE,
2509 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2510 {"timeoutlen", "tm", P_NUM|P_VI_DEF,
2511 (char_u *)&p_tm, PV_NONE,
2512 {(char_u *)1000L, (char_u *)0L} SCRIPTID_INIT},
2513 {"title", NULL, P_BOOL|P_VI_DEF,
2514 #ifdef FEAT_TITLE
2515 (char_u *)&p_title, PV_NONE,
2516 #else
2517 (char_u *)NULL, PV_NONE,
2518 #endif
2519 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2520 {"titlelen", NULL, P_NUM|P_VI_DEF,
2521 #ifdef FEAT_TITLE
2522 (char_u *)&p_titlelen, PV_NONE,
2523 #else
2524 (char_u *)NULL, PV_NONE,
2525 #endif
2526 {(char_u *)85L, (char_u *)0L} SCRIPTID_INIT},
2527 {"titleold", NULL, P_STRING|P_VI_DEF|P_GETTEXT|P_SECURE|P_NO_MKRC,
2528 #ifdef FEAT_TITLE
2529 (char_u *)&p_titleold, PV_NONE,
2530 {(char_u *)N_("Thanks for flying Vim"),
2531 (char_u *)0L}
2532 #else
2533 (char_u *)NULL, PV_NONE,
2534 {(char_u *)0L, (char_u *)0L}
2535 #endif
2536 SCRIPTID_INIT},
2537 {"titlestring", NULL, P_STRING|P_VI_DEF,
2538 #ifdef FEAT_TITLE
2539 (char_u *)&p_titlestring, PV_NONE,
2540 #else
2541 (char_u *)NULL, PV_NONE,
2542 #endif
2543 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2544 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
2545 {"toolbar", "tb", P_STRING|P_COMMA|P_VI_DEF|P_NODUP,
2546 (char_u *)&p_toolbar, PV_NONE,
2547 {(char_u *)"icons,tooltips", (char_u *)0L}
2548 SCRIPTID_INIT},
2549 #endif
2550 #if defined(FEAT_TOOLBAR) && defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)
2551 {"toolbariconsize", "tbis", P_STRING|P_VI_DEF,
2552 (char_u *)&p_tbis, PV_NONE,
2553 {(char_u *)"small", (char_u *)0L} SCRIPTID_INIT},
2554 #endif
2555 {"ttimeout", NULL, P_BOOL|P_VI_DEF|P_VIM,
2556 (char_u *)&p_ttimeout, PV_NONE,
2557 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2558 {"ttimeoutlen", "ttm", P_NUM|P_VI_DEF,
2559 (char_u *)&p_ttm, PV_NONE,
2560 {(char_u *)-1L, (char_u *)0L} SCRIPTID_INIT},
2561 {"ttybuiltin", "tbi", P_BOOL|P_VI_DEF,
2562 (char_u *)&p_tbi, PV_NONE,
2563 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2564 {"ttyfast", "tf", P_BOOL|P_NO_MKRC|P_VI_DEF,
2565 (char_u *)&p_tf, PV_NONE,
2566 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2567 {"ttymouse", "ttym", P_STRING|P_NODEFAULT|P_NO_MKRC|P_VI_DEF,
2568 #if defined(FEAT_MOUSE) && (defined(UNIX) || defined(VMS))
2569 (char_u *)&p_ttym, PV_NONE,
2570 #else
2571 (char_u *)NULL, PV_NONE,
2572 #endif
2573 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2574 {"ttyscroll", "tsl", P_NUM|P_VI_DEF,
2575 (char_u *)&p_ttyscroll, PV_NONE,
2576 {(char_u *)999L, (char_u *)0L} SCRIPTID_INIT},
2577 {"ttytype", "tty", P_STRING|P_EXPAND|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RALL,
2578 (char_u *)&T_NAME, PV_NONE,
2579 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2580 #ifdef FEAT_PERSISTENT_UNDO
2581 {"undodir", "udir", P_STRING|P_EXPAND|P_COMMA|P_NODUP|P_SECURE|P_VI_DEF,
2582 (char_u *)&p_udir, PV_NONE,
2583 {(char_u *)DFLT_UDIR, (char_u *)0L}},
2584 {"undofile", "udf", P_BOOL|P_VIM,
2585 (char_u *)&p_udf, PV_UDF,
2586 {(char_u *)TRUE, (char_u *)0L}},
2587 #endif
2588 {"undolevels", "ul", P_NUM|P_VI_DEF,
2589 (char_u *)&p_ul, PV_NONE,
2591 #if defined(UNIX) || defined(WIN3264) || defined(OS2) || defined(VMS)
2592 (char_u *)1000L,
2593 #else
2594 (char_u *)100L,
2595 #endif
2596 (char_u *)0L} SCRIPTID_INIT},
2597 {"updatecount", "uc", P_NUM|P_VI_DEF,
2598 (char_u *)&p_uc, PV_NONE,
2599 {(char_u *)200L, (char_u *)0L} SCRIPTID_INIT},
2600 {"updatetime", "ut", P_NUM|P_VI_DEF,
2601 (char_u *)&p_ut, PV_NONE,
2602 {(char_u *)4000L, (char_u *)0L} SCRIPTID_INIT},
2603 {"verbose", "vbs", P_NUM|P_VI_DEF,
2604 (char_u *)&p_verbose, PV_NONE,
2605 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2606 {"verbosefile", "vfile", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
2607 (char_u *)&p_vfile, PV_NONE,
2608 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2609 {"viewdir", "vdir", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
2610 #ifdef FEAT_SESSION
2611 (char_u *)&p_vdir, PV_NONE,
2612 {(char_u *)DFLT_VDIR, (char_u *)0L}
2613 #else
2614 (char_u *)NULL, PV_NONE,
2615 {(char_u *)0L, (char_u *)0L}
2616 #endif
2617 SCRIPTID_INIT},
2618 {"viewoptions", "vop", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2619 #ifdef FEAT_SESSION
2620 (char_u *)&p_vop, PV_NONE,
2621 {(char_u *)"folds,options,cursor", (char_u *)0L}
2622 #else
2623 (char_u *)NULL, PV_NONE,
2624 {(char_u *)0L, (char_u *)0L}
2625 #endif
2626 SCRIPTID_INIT},
2627 {"viminfo", "vi", P_STRING|P_COMMA|P_NODUP|P_SECURE,
2628 #ifdef FEAT_VIMINFO
2629 (char_u *)&p_viminfo, PV_NONE,
2630 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
2631 {(char_u *)"", (char_u *)"'100,<50,s10,h,rA:,rB:"}
2632 #else
2633 # ifdef AMIGA
2634 {(char_u *)"",
2635 (char_u *)"'100,<50,s10,h,rdf0:,rdf1:,rdf2:"}
2636 # else
2637 {(char_u *)"", (char_u *)"'100,<50,s10,h"}
2638 # endif
2639 #endif
2640 #else
2641 (char_u *)NULL, PV_NONE,
2642 {(char_u *)0L, (char_u *)0L}
2643 #endif
2644 SCRIPTID_INIT},
2645 {"virtualedit", "ve", P_STRING|P_COMMA|P_NODUP|P_VI_DEF|P_VIM,
2646 #ifdef FEAT_VIRTUALEDIT
2647 (char_u *)&p_ve, PV_NONE,
2648 {(char_u *)"", (char_u *)""}
2649 #else
2650 (char_u *)NULL, PV_NONE,
2651 {(char_u *)0L, (char_u *)0L}
2652 #endif
2653 SCRIPTID_INIT},
2654 {"visualbell", "vb", P_BOOL|P_VI_DEF,
2655 (char_u *)&p_vb, PV_NONE,
2656 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2657 {"w300", NULL, P_NUM|P_VI_DEF,
2658 (char_u *)NULL, PV_NONE,
2659 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2660 {"w1200", NULL, P_NUM|P_VI_DEF,
2661 (char_u *)NULL, PV_NONE,
2662 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2663 {"w9600", NULL, P_NUM|P_VI_DEF,
2664 (char_u *)NULL, PV_NONE,
2665 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2666 {"warn", NULL, P_BOOL|P_VI_DEF,
2667 (char_u *)&p_warn, PV_NONE,
2668 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2669 {"weirdinvert", "wiv", P_BOOL|P_VI_DEF|P_RCLR,
2670 (char_u *)&p_wiv, PV_NONE,
2671 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2672 {"whichwrap", "ww", P_STRING|P_VIM|P_COMMA|P_FLAGLIST,
2673 (char_u *)&p_ww, PV_NONE,
2674 {(char_u *)"", (char_u *)"b,s"} SCRIPTID_INIT},
2675 {"wildchar", "wc", P_NUM|P_VIM,
2676 (char_u *)&p_wc, PV_NONE,
2677 {(char_u *)(long)Ctrl_E, (char_u *)(long)TAB}
2678 SCRIPTID_INIT},
2679 {"wildcharm", "wcm", P_NUM|P_VI_DEF,
2680 (char_u *)&p_wcm, PV_NONE,
2681 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2682 {"wildignore", "wig", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2683 #ifdef FEAT_WILDIGN
2684 (char_u *)&p_wig, PV_NONE,
2685 #else
2686 (char_u *)NULL, PV_NONE,
2687 #endif
2688 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2689 {"wildmenu", "wmnu", P_BOOL|P_VI_DEF,
2690 #ifdef FEAT_WILDMENU
2691 (char_u *)&p_wmnu, PV_NONE,
2692 #else
2693 (char_u *)NULL, PV_NONE,
2694 #endif
2695 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2696 {"wildmode", "wim", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2697 (char_u *)&p_wim, PV_NONE,
2698 {(char_u *)"full", (char_u *)0L} SCRIPTID_INIT},
2699 {"wildoptions", "wop", P_STRING|P_VI_DEF,
2700 #ifdef FEAT_CMDL_COMPL
2701 (char_u *)&p_wop, PV_NONE,
2702 {(char_u *)"", (char_u *)0L}
2703 #else
2704 (char_u *)NULL, PV_NONE,
2705 {(char_u *)NULL, (char_u *)0L}
2706 #endif
2707 SCRIPTID_INIT},
2708 {"winaltkeys", "wak", P_STRING|P_VI_DEF,
2709 #ifdef FEAT_WAK
2710 (char_u *)&p_wak, PV_NONE,
2711 {(char_u *)"menu", (char_u *)0L}
2712 #else
2713 (char_u *)NULL, PV_NONE,
2714 {(char_u *)NULL, (char_u *)0L}
2715 #endif
2716 SCRIPTID_INIT},
2717 {"window", "wi", P_NUM|P_VI_DEF,
2718 (char_u *)&p_window, PV_NONE,
2719 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2720 {"winheight", "wh", P_NUM|P_VI_DEF,
2721 #ifdef FEAT_WINDOWS
2722 (char_u *)&p_wh, PV_NONE,
2723 #else
2724 (char_u *)NULL, PV_NONE,
2725 #endif
2726 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
2727 {"winfixheight", "wfh", P_BOOL|P_VI_DEF|P_RSTAT,
2728 #ifdef FEAT_WINDOWS
2729 (char_u *)VAR_WIN, PV_WFH,
2730 #else
2731 (char_u *)NULL, PV_NONE,
2732 #endif
2733 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2734 {"winfixwidth", "wfw", P_BOOL|P_VI_DEF|P_RSTAT,
2735 #ifdef FEAT_VERTSPLIT
2736 (char_u *)VAR_WIN, PV_WFW,
2737 #else
2738 (char_u *)NULL, PV_NONE,
2739 #endif
2740 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2741 {"winminheight", "wmh", P_NUM|P_VI_DEF,
2742 #ifdef FEAT_WINDOWS
2743 (char_u *)&p_wmh, PV_NONE,
2744 #else
2745 (char_u *)NULL, PV_NONE,
2746 #endif
2747 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
2748 {"winminwidth", "wmw", P_NUM|P_VI_DEF,
2749 #ifdef FEAT_VERTSPLIT
2750 (char_u *)&p_wmw, PV_NONE,
2751 #else
2752 (char_u *)NULL, PV_NONE,
2753 #endif
2754 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
2755 {"winwidth", "wiw", P_NUM|P_VI_DEF,
2756 #ifdef FEAT_VERTSPLIT
2757 (char_u *)&p_wiw, PV_NONE,
2758 #else
2759 (char_u *)NULL, PV_NONE,
2760 #endif
2761 {(char_u *)20L, (char_u *)0L} SCRIPTID_INIT},
2762 {"wrap", NULL, P_BOOL|P_VI_DEF|P_RWIN,
2763 (char_u *)VAR_WIN, PV_WRAP,
2764 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2765 {"wrapmargin", "wm", P_NUM|P_VI_DEF,
2766 (char_u *)&p_wm, PV_WM,
2767 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2768 {"wrapscan", "ws", P_BOOL|P_VI_DEF,
2769 (char_u *)&p_ws, PV_NONE,
2770 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2771 {"write", NULL, P_BOOL|P_VI_DEF,
2772 (char_u *)&p_write, PV_NONE,
2773 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2774 {"writeany", "wa", P_BOOL|P_VI_DEF,
2775 (char_u *)&p_wa, PV_NONE,
2776 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2777 {"writebackup", "wb", P_BOOL|P_VI_DEF|P_VIM,
2778 (char_u *)&p_wb, PV_NONE,
2780 #ifdef FEAT_WRITEBACKUP
2781 (char_u *)TRUE,
2782 #else
2783 (char_u *)FALSE,
2784 #endif
2785 (char_u *)0L} SCRIPTID_INIT},
2786 {"writedelay", "wd", P_NUM|P_VI_DEF,
2787 (char_u *)&p_wd, PV_NONE,
2788 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2790 /* terminal output codes */
2791 #define p_term(sss, vvv) {sss, NULL, P_STRING|P_VI_DEF|P_RALL|P_SECURE, \
2792 (char_u *)&vvv, PV_NONE, \
2793 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2795 p_term("t_AB", T_CAB)
2796 p_term("t_AF", T_CAF)
2797 p_term("t_AL", T_CAL)
2798 p_term("t_al", T_AL)
2799 p_term("t_bc", T_BC)
2800 p_term("t_cd", T_CD)
2801 p_term("t_ce", T_CE)
2802 p_term("t_cl", T_CL)
2803 p_term("t_cm", T_CM)
2804 p_term("t_Co", T_CCO)
2805 p_term("t_CS", T_CCS)
2806 p_term("t_cs", T_CS)
2807 #ifdef FEAT_VERTSPLIT
2808 p_term("t_CV", T_CSV)
2809 #endif
2810 p_term("t_ut", T_UT)
2811 p_term("t_da", T_DA)
2812 p_term("t_db", T_DB)
2813 p_term("t_DL", T_CDL)
2814 p_term("t_dl", T_DL)
2815 p_term("t_fs", T_FS)
2816 p_term("t_IE", T_CIE)
2817 p_term("t_IS", T_CIS)
2818 p_term("t_ke", T_KE)
2819 p_term("t_ks", T_KS)
2820 p_term("t_le", T_LE)
2821 p_term("t_mb", T_MB)
2822 p_term("t_md", T_MD)
2823 p_term("t_me", T_ME)
2824 p_term("t_mr", T_MR)
2825 p_term("t_ms", T_MS)
2826 p_term("t_nd", T_ND)
2827 p_term("t_op", T_OP)
2828 p_term("t_RI", T_CRI)
2829 p_term("t_RV", T_CRV)
2830 p_term("t_Sb", T_CSB)
2831 p_term("t_Sf", T_CSF)
2832 p_term("t_se", T_SE)
2833 p_term("t_so", T_SO)
2834 p_term("t_sr", T_SR)
2835 p_term("t_ts", T_TS)
2836 p_term("t_te", T_TE)
2837 p_term("t_ti", T_TI)
2838 p_term("t_ue", T_UE)
2839 p_term("t_us", T_US)
2840 p_term("t_vb", T_VB)
2841 p_term("t_ve", T_VE)
2842 p_term("t_vi", T_VI)
2843 p_term("t_vs", T_VS)
2844 p_term("t_WP", T_CWP)
2845 p_term("t_WS", T_CWS)
2846 p_term("t_SI", T_CSI)
2847 p_term("t_EI", T_CEI)
2848 p_term("t_xs", T_XS)
2849 p_term("t_ZH", T_CZH)
2850 p_term("t_ZR", T_CZR)
2852 /* terminal key codes are not in here */
2854 /* end marker */
2855 {NULL, NULL, 0, NULL, PV_NONE, {NULL, NULL} SCRIPTID_INIT}
2858 #define PARAM_COUNT (sizeof(options) / sizeof(struct vimoption))
2860 #ifdef FEAT_MBYTE
2861 static char *(p_ambw_values[]) = {"single", "double", NULL};
2862 #endif
2863 static char *(p_bg_values[]) = {"light", "dark", NULL};
2864 static char *(p_nf_values[]) = {"octal", "hex", "alpha", NULL};
2865 static char *(p_ff_values[]) = {FF_UNIX, FF_DOS, FF_MAC, NULL};
2866 #ifdef FEAT_CMDL_COMPL
2867 static char *(p_wop_values[]) = {"tagfile", NULL};
2868 #endif
2869 #ifdef FEAT_WAK
2870 static char *(p_wak_values[]) = {"yes", "menu", "no", NULL};
2871 #endif
2872 static char *(p_mousem_values[]) = {"extend", "popup", "popup_setpos", "mac", NULL};
2873 #ifdef FEAT_VISUAL
2874 static char *(p_sel_values[]) = {"inclusive", "exclusive", "old", NULL};
2875 static char *(p_slm_values[]) = {"mouse", "key", "cmd", NULL};
2876 #endif
2877 #ifdef FEAT_VISUAL
2878 static char *(p_km_values[]) = {"startsel", "stopsel", NULL};
2879 #endif
2880 #ifdef FEAT_BROWSE
2881 static char *(p_bsdir_values[]) = {"current", "last", "buffer", NULL};
2882 #endif
2883 #ifdef FEAT_SCROLLBIND
2884 static char *(p_scbopt_values[]) = {"ver", "hor", "jump", NULL};
2885 #endif
2886 static char *(p_debug_values[]) = {"msg", "throw", "beep", NULL};
2887 #ifdef FEAT_VERTSPLIT
2888 static char *(p_ead_values[]) = {"both", "ver", "hor", NULL};
2889 #endif
2890 #if defined(FEAT_QUICKFIX)
2891 # ifdef FEAT_AUTOCMD
2892 static char *(p_buftype_values[]) = {"nofile", "nowrite", "quickfix", "help", "acwrite", NULL};
2893 # else
2894 static char *(p_buftype_values[]) = {"nofile", "nowrite", "quickfix", "help", NULL};
2895 # endif
2896 static char *(p_bufhidden_values[]) = {"hide", "unload", "delete", "wipe", NULL};
2897 #endif
2898 static char *(p_bs_values[]) = {"indent", "eol", "start", NULL};
2899 #ifdef FEAT_FOLDING
2900 static char *(p_fdm_values[]) = {"manual", "expr", "marker", "indent", "syntax",
2901 # ifdef FEAT_DIFF
2902 "diff",
2903 # endif
2904 NULL};
2905 static char *(p_fcl_values[]) = {"all", NULL};
2906 #endif
2907 #ifdef FEAT_INS_EXPAND
2908 static char *(p_cot_values[]) = {"menu", "menuone", "longest", "preview", NULL};
2909 #endif
2911 static void set_option_default __ARGS((int, int opt_flags, int compatible));
2912 static void set_options_default __ARGS((int opt_flags));
2913 static char_u *term_bg_default __ARGS((void));
2914 static void did_set_option __ARGS((int opt_idx, int opt_flags, int new_value));
2915 static char_u *illegal_char __ARGS((char_u *, int));
2916 static int string_to_key __ARGS((char_u *arg));
2917 #ifdef FEAT_CMDWIN
2918 static char_u *check_cedit __ARGS((void));
2919 #endif
2920 #ifdef FEAT_TITLE
2921 static void did_set_title __ARGS((int icon));
2922 #endif
2923 static char_u *option_expand __ARGS((int opt_idx, char_u *val));
2924 static void didset_options __ARGS((void));
2925 static void check_string_option __ARGS((char_u **pp));
2926 #if defined(FEAT_EVAL) || defined(PROTO)
2927 static long_u *insecure_flag __ARGS((int opt_idx, int opt_flags));
2928 #else
2929 # define insecure_flag(opt_idx, opt_flags) (&options[opt_idx].flags)
2930 #endif
2931 static void set_string_option_global __ARGS((int opt_idx, char_u **varp));
2932 static void set_string_option __ARGS((int opt_idx, char_u *value, int opt_flags));
2933 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));
2934 static char_u *set_chars_option __ARGS((char_u **varp));
2935 #ifdef FEAT_CLIPBOARD
2936 static char_u *check_clipboard_option __ARGS((void));
2937 #endif
2938 #ifdef FEAT_SPELL
2939 static char_u *compile_cap_prog __ARGS((buf_T *buf));
2940 #endif
2941 #ifdef FEAT_EVAL
2942 static void set_option_scriptID_idx __ARGS((int opt_idx, int opt_flags, int id));
2943 #endif
2944 static char_u *set_bool_option __ARGS((int opt_idx, char_u *varp, int value, int opt_flags));
2945 static char_u *set_num_option __ARGS((int opt_idx, char_u *varp, long value, char_u *errbuf, size_t errbuflen, int opt_flags));
2946 static void check_redraw __ARGS((long_u flags));
2947 static int findoption __ARGS((char_u *));
2948 static int find_key_option __ARGS((char_u *));
2949 static void showoptions __ARGS((int all, int opt_flags));
2950 static int optval_default __ARGS((struct vimoption *, char_u *varp));
2951 static void showoneopt __ARGS((struct vimoption *, int opt_flags));
2952 static int put_setstring __ARGS((FILE *fd, char *cmd, char *name, char_u **valuep, int expand));
2953 static int put_setnum __ARGS((FILE *fd, char *cmd, char *name, long *valuep));
2954 static int put_setbool __ARGS((FILE *fd, char *cmd, char *name, int value));
2955 static int istermoption __ARGS((struct vimoption *));
2956 static char_u *get_varp_scope __ARGS((struct vimoption *p, int opt_flags));
2957 static char_u *get_varp __ARGS((struct vimoption *));
2958 static void option_value2string __ARGS((struct vimoption *, int opt_flags));
2959 static int wc_use_keyname __ARGS((char_u *varp, long *wcp));
2960 #ifdef FEAT_LANGMAP
2961 static void langmap_init __ARGS((void));
2962 static void langmap_set __ARGS((void));
2963 #endif
2964 static void paste_option_changed __ARGS((void));
2965 static void compatible_set __ARGS((void));
2966 #ifdef FEAT_LINEBREAK
2967 static void fill_breakat_flags __ARGS((void));
2968 #endif
2969 static int opt_strings_flags __ARGS((char_u *val, char **values, unsigned *flagp, int list));
2970 static int check_opt_strings __ARGS((char_u *val, char **values, int));
2971 static int check_opt_wim __ARGS((void));
2974 * Initialize the options, first part.
2976 * Called only once from main(), just after creating the first buffer.
2978 void
2979 set_init_1()
2981 char_u *p;
2982 int opt_idx;
2983 long_u n;
2985 #ifdef FEAT_LANGMAP
2986 langmap_init();
2987 #endif
2989 /* Be Vi compatible by default */
2990 p_cp = TRUE;
2992 /* Use POSIX compatibility when $VIM_POSIX is set. */
2993 if (mch_getenv((char_u *)"VIM_POSIX") != NULL)
2995 set_string_default("cpo", (char_u *)CPO_ALL);
2996 set_string_default("shm", (char_u *)"A");
3000 * Find default value for 'shell' option.
3001 * Don't use it if it is empty.
3003 if (((p = mch_getenv((char_u *)"SHELL")) != NULL && *p != NUL)
3004 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
3005 # ifdef __EMX__
3006 || ((p = mch_getenv((char_u *)"EMXSHELL")) != NULL && *p != NUL)
3007 # endif
3008 || ((p = mch_getenv((char_u *)"COMSPEC")) != NULL && *p != NUL)
3009 # ifdef WIN3264
3010 || ((p = default_shell()) != NULL && *p != NUL)
3011 # endif
3012 #endif
3014 set_string_default("sh", p);
3016 #ifdef FEAT_WILDIGN
3018 * Set the default for 'backupskip' to include environment variables for
3019 * temp files.
3022 # ifdef UNIX
3023 static char *(names[4]) = {"", "TMPDIR", "TEMP", "TMP"};
3024 # else
3025 static char *(names[3]) = {"TMPDIR", "TEMP", "TMP"};
3026 # endif
3027 int len;
3028 garray_T ga;
3029 int mustfree;
3031 ga_init2(&ga, 1, 100);
3032 for (n = 0; n < (long)(sizeof(names) / sizeof(char *)); ++n)
3034 mustfree = FALSE;
3035 # ifdef UNIX
3036 if (*names[n] == NUL)
3037 p = (char_u *)"/tmp";
3038 else
3039 # endif
3040 p = vim_getenv((char_u *)names[n], &mustfree);
3041 if (p != NULL && *p != NUL)
3043 /* First time count the NUL, otherwise count the ','. */
3044 len = (int)STRLEN(p) + 3;
3045 if (ga_grow(&ga, len) == OK)
3047 if (ga.ga_len > 0)
3048 STRCAT(ga.ga_data, ",");
3049 STRCAT(ga.ga_data, p);
3050 add_pathsep(ga.ga_data);
3051 STRCAT(ga.ga_data, "*");
3052 ga.ga_len += len;
3055 if (mustfree)
3056 vim_free(p);
3058 if (ga.ga_data != NULL)
3060 set_string_default("bsk", ga.ga_data);
3061 vim_free(ga.ga_data);
3064 #endif
3067 * 'maxmemtot' and 'maxmem' may have to be adjusted for available memory
3069 opt_idx = findoption((char_u *)"maxmemtot");
3070 if (opt_idx >= 0)
3072 #if !defined(HAVE_AVAIL_MEM) && !defined(HAVE_TOTAL_MEM)
3073 if (options[opt_idx].def_val[VI_DEFAULT] == (char_u *)0L)
3074 #endif
3076 #ifdef HAVE_AVAIL_MEM
3077 /* Use amount of memory available at this moment. */
3078 n = (mch_avail_mem(FALSE) >> 11);
3079 #else
3080 # ifdef HAVE_TOTAL_MEM
3081 /* Use amount of memory available to Vim. */
3082 n = (mch_total_mem(FALSE) >> 1);
3083 # else
3084 n = (0x7fffffff >> 11);
3085 # endif
3086 #endif
3087 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)n;
3088 opt_idx = findoption((char_u *)"maxmem");
3089 if (opt_idx >= 0)
3091 #if !defined(HAVE_AVAIL_MEM) && !defined(HAVE_TOTAL_MEM)
3092 if ((long)options[opt_idx].def_val[VI_DEFAULT] > n
3093 || (long)options[opt_idx].def_val[VI_DEFAULT] == 0L)
3094 #endif
3095 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)n;
3100 #ifdef FEAT_GUI_W32
3101 /* force 'shortname' for Win32s */
3102 if (gui_is_win32s())
3104 opt_idx = findoption((char_u *)"shortname");
3105 if (opt_idx >= 0)
3106 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)TRUE;
3108 #endif
3110 #ifdef FEAT_SEARCHPATH
3112 char_u *cdpath;
3113 char_u *buf;
3114 int i;
3115 int j;
3116 int mustfree = FALSE;
3118 /* Initialize the 'cdpath' option's default value. */
3119 cdpath = vim_getenv((char_u *)"CDPATH", &mustfree);
3120 if (cdpath != NULL)
3122 buf = alloc((unsigned)((STRLEN(cdpath) << 1) + 2));
3123 if (buf != NULL)
3125 buf[0] = ','; /* start with ",", current dir first */
3126 j = 1;
3127 for (i = 0; cdpath[i] != NUL; ++i)
3129 if (vim_ispathlistsep(cdpath[i]))
3130 buf[j++] = ',';
3131 else
3133 if (cdpath[i] == ' ' || cdpath[i] == ',')
3134 buf[j++] = '\\';
3135 buf[j++] = cdpath[i];
3138 buf[j] = NUL;
3139 opt_idx = findoption((char_u *)"cdpath");
3140 if (opt_idx >= 0)
3142 options[opt_idx].def_val[VI_DEFAULT] = buf;
3143 options[opt_idx].flags |= P_DEF_ALLOCED;
3146 if (mustfree)
3147 vim_free(cdpath);
3150 #endif
3152 #if defined(FEAT_POSTSCRIPT) && (defined(MSWIN) || defined(OS2) || defined(VMS) || defined(EBCDIC) || defined(MAC) || defined(hpux))
3153 /* Set print encoding on platforms that don't default to latin1 */
3154 set_string_default("penc",
3155 # if defined(MSWIN) || defined(OS2)
3156 (char_u *)"cp1252"
3157 # else
3158 # ifdef VMS
3159 (char_u *)"dec-mcs"
3160 # else
3161 # ifdef EBCDIC
3162 (char_u *)"ebcdic-uk"
3163 # else
3164 # ifdef MAC
3165 (char_u *)"mac-roman"
3166 # else /* HPUX */
3167 (char_u *)"hp-roman8"
3168 # endif
3169 # endif
3170 # endif
3171 # endif
3173 #endif
3175 #ifdef FEAT_POSTSCRIPT
3176 /* 'printexpr' must be allocated to be able to evaluate it. */
3177 set_string_default("pexpr",
3178 # if defined(MSWIN) || defined(MSDOS) || defined(OS2)
3179 (char_u *)"system('copy' . ' ' . v:fname_in . (&printdevice == '' ? ' LPT1:' : (' \"' . &printdevice . '\"'))) . delete(v:fname_in)"
3180 # else
3181 # ifdef VMS
3182 (char_u *)"system('print/delete' . (&printdevice == '' ? '' : ' /queue=' . &printdevice) . ' ' . v:fname_in)"
3184 # else
3185 (char_u *)"system('lpr' . (&printdevice == '' ? '' : ' -P' . &printdevice) . ' ' . v:fname_in) . delete(v:fname_in) + v:shell_error"
3186 # endif
3187 # endif
3189 #endif
3192 * Set all the options (except the terminal options) to their default
3193 * value. Also set the global value for local options.
3195 set_options_default(0);
3197 #ifdef FEAT_GUI
3198 if (found_reverse_arg)
3199 set_option_value((char_u *)"bg", 0L, (char_u *)"dark", 0);
3200 #endif
3202 curbuf->b_p_initialized = TRUE;
3203 curbuf->b_p_ar = -1; /* no local 'autoread' value */
3204 check_buf_options(curbuf);
3205 check_win_options(curwin);
3206 check_options();
3208 /* Must be before option_expand(), because that one needs vim_isIDc() */
3209 didset_options();
3211 #ifdef FEAT_SPELL
3212 /* Use the current chartab for the generic chartab. */
3213 init_spell_chartab();
3214 #endif
3216 #ifdef FEAT_LINEBREAK
3218 * initialize the table for 'breakat'.
3220 fill_breakat_flags();
3221 #endif
3224 * Expand environment variables and things like "~" for the defaults.
3225 * If option_expand() returns non-NULL the variable is expanded. This can
3226 * only happen for non-indirect options.
3227 * Also set the default to the expanded value, so ":set" does not list
3228 * them.
3229 * Don't set the P_ALLOCED flag, because we don't want to free the
3230 * default.
3232 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
3234 if ((options[opt_idx].flags & P_GETTEXT)
3235 && options[opt_idx].var != NULL)
3236 p = (char_u *)_(*(char **)options[opt_idx].var);
3237 else
3238 p = option_expand(opt_idx, NULL);
3239 if (p != NULL && (p = vim_strsave(p)) != NULL)
3241 *(char_u **)options[opt_idx].var = p;
3242 /* VIMEXP
3243 * Defaults for all expanded options are currently the same for Vi
3244 * and Vim. When this changes, add some code here! Also need to
3245 * split P_DEF_ALLOCED in two.
3247 if (options[opt_idx].flags & P_DEF_ALLOCED)
3248 vim_free(options[opt_idx].def_val[VI_DEFAULT]);
3249 options[opt_idx].def_val[VI_DEFAULT] = p;
3250 options[opt_idx].flags |= P_DEF_ALLOCED;
3254 /* Initialize the highlight_attr[] table. */
3255 highlight_changed();
3257 save_file_ff(curbuf); /* Buffer is unchanged */
3259 /* Parse default for 'wildmode' */
3260 check_opt_wim();
3262 #if defined(FEAT_ARABIC)
3263 /* Detect use of mlterm.
3264 * Mlterm is a terminal emulator akin to xterm that has some special
3265 * abilities (bidi namely).
3266 * NOTE: mlterm's author is being asked to 'set' a variable
3267 * instead of an environment variable due to inheritance.
3269 if (mch_getenv((char_u *)"MLTERM") != NULL)
3270 set_option_value((char_u *)"tbidi", 1L, NULL, 0);
3271 #endif
3273 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
3274 /* Parse default for 'fillchars'. */
3275 (void)set_chars_option(&p_fcs);
3276 #endif
3278 #ifdef FEAT_CLIPBOARD
3279 /* Parse default for 'clipboard' */
3280 (void)check_clipboard_option();
3281 #endif
3283 #ifdef FEAT_MBYTE
3284 # if defined(WIN3264) && defined(FEAT_GETTEXT)
3286 * If $LANG isn't set, try to get a good value for it. This makes the
3287 * right language be used automatically. Don't do this for English.
3289 if (mch_getenv((char_u *)"LANG") == NULL)
3291 char buf[20];
3293 /* Could use LOCALE_SISO639LANGNAME, but it's not in Win95.
3294 * LOCALE_SABBREVLANGNAME gives us three letters, like "enu", we use
3295 * only the first two. */
3296 n = GetLocaleInfo(LOCALE_USER_DEFAULT, LOCALE_SABBREVLANGNAME,
3297 (LPTSTR)buf, 20);
3298 if (n >= 2 && STRNICMP(buf, "en", 2) != 0)
3300 /* There are a few exceptions (probably more) */
3301 if (STRNICMP(buf, "cht", 3) == 0 || STRNICMP(buf, "zht", 3) == 0)
3302 STRCPY(buf, "zh_TW");
3303 else if (STRNICMP(buf, "chs", 3) == 0
3304 || STRNICMP(buf, "zhc", 3) == 0)
3305 STRCPY(buf, "zh_CN");
3306 else if (STRNICMP(buf, "jp", 2) == 0)
3307 STRCPY(buf, "ja");
3308 else
3309 buf[2] = NUL; /* truncate to two-letter code */
3310 vim_setenv("LANG", buf);
3313 # else
3314 # ifdef MACOS_CONVERT
3315 /* Moved to os_mac_conv.c to avoid dependency problems. */
3316 mac_lang_init();
3317 # endif
3318 # endif
3320 /* enc_locale() will try to find the encoding of the current locale. */
3321 p = enc_locale();
3322 if (p != NULL)
3324 char_u *save_enc;
3326 /* Try setting 'encoding' and check if the value is valid.
3327 * If not, go back to the default "latin1". */
3328 save_enc = p_enc;
3329 p_enc = p;
3330 if (STRCMP(p_enc, "gb18030") == 0)
3332 /* We don't support "gb18030", but "cp936" is a good substitute
3333 * for practical purposes, thus use that. It's not an alias to
3334 * still support conversion between gb18030 and utf-8. */
3335 p_enc = vim_strsave((char_u *)"cp936");
3336 vim_free(p);
3338 if (mb_init() == NULL)
3340 opt_idx = findoption((char_u *)"encoding");
3341 if (opt_idx >= 0)
3343 options[opt_idx].def_val[VI_DEFAULT] = p_enc;
3344 options[opt_idx].flags |= P_DEF_ALLOCED;
3347 #if defined(MSDOS) || defined(MSWIN) || defined(OS2) || defined(MACOS) \
3348 || defined(VMS)
3349 if (STRCMP(p_enc, "latin1") == 0
3350 # ifdef FEAT_MBYTE
3351 || enc_utf8
3352 # endif
3355 /* Adjust the default for 'isprint' and 'iskeyword' to match
3356 * latin1. Also set the defaults for when 'nocompatible' is
3357 * set. */
3358 set_string_option_direct((char_u *)"isp", -1,
3359 ISP_LATIN1, OPT_FREE, SID_NONE);
3360 set_string_option_direct((char_u *)"isk", -1,
3361 ISK_LATIN1, OPT_FREE, SID_NONE);
3362 opt_idx = findoption((char_u *)"isp");
3363 if (opt_idx >= 0)
3364 options[opt_idx].def_val[VIM_DEFAULT] = ISP_LATIN1;
3365 opt_idx = findoption((char_u *)"isk");
3366 if (opt_idx >= 0)
3367 options[opt_idx].def_val[VIM_DEFAULT] = ISK_LATIN1;
3368 (void)init_chartab();
3370 #endif
3372 # if defined(WIN3264) && !defined(FEAT_GUI)
3373 /* Win32 console: When GetACP() returns a different value from
3374 * GetConsoleCP() set 'termencoding'. */
3375 if (GetACP() != GetConsoleCP())
3377 char buf[50];
3379 sprintf(buf, "cp%ld", (long)GetConsoleCP());
3380 p_tenc = vim_strsave((char_u *)buf);
3381 if (p_tenc != NULL)
3383 opt_idx = findoption((char_u *)"termencoding");
3384 if (opt_idx >= 0)
3386 options[opt_idx].def_val[VI_DEFAULT] = p_tenc;
3387 options[opt_idx].flags |= P_DEF_ALLOCED;
3389 convert_setup(&input_conv, p_tenc, p_enc);
3390 convert_setup(&output_conv, p_enc, p_tenc);
3392 else
3393 p_tenc = empty_option;
3395 # endif
3396 # if defined(WIN3264) && defined(FEAT_MBYTE)
3397 /* $HOME may have characters in active code page. */
3398 init_homedir();
3399 # endif
3401 else
3403 vim_free(p_enc);
3404 p_enc = save_enc;
3407 #endif
3409 #ifdef FEAT_MULTI_LANG
3410 /* Set the default for 'helplang'. */
3411 set_helplang_default(get_mess_lang());
3412 #endif
3416 * Set an option to its default value.
3417 * This does not take care of side effects!
3419 static void
3420 set_option_default(opt_idx, opt_flags, compatible)
3421 int opt_idx;
3422 int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */
3423 int compatible; /* use Vi default value */
3425 char_u *varp; /* pointer to variable for current option */
3426 int dvi; /* index in def_val[] */
3427 long_u flags;
3428 long_u *flagsp;
3429 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
3431 varp = get_varp_scope(&(options[opt_idx]), both ? OPT_LOCAL : opt_flags);
3432 flags = options[opt_idx].flags;
3433 if (varp != NULL) /* skip hidden option, nothing to do for it */
3435 dvi = ((flags & P_VI_DEF) || compatible) ? VI_DEFAULT : VIM_DEFAULT;
3436 if (flags & P_STRING)
3438 /* Use set_string_option_direct() for local options to handle
3439 * freeing and allocating the value. */
3440 if (options[opt_idx].indir != PV_NONE)
3441 set_string_option_direct(NULL, opt_idx,
3442 options[opt_idx].def_val[dvi], opt_flags, 0);
3443 else
3445 if ((opt_flags & OPT_FREE) && (flags & P_ALLOCED))
3446 free_string_option(*(char_u **)(varp));
3447 *(char_u **)varp = options[opt_idx].def_val[dvi];
3448 options[opt_idx].flags &= ~P_ALLOCED;
3451 else if (flags & P_NUM)
3453 if (options[opt_idx].indir == PV_SCROLL)
3454 win_comp_scroll(curwin);
3455 else
3457 *(long *)varp = (long)(long_i)options[opt_idx].def_val[dvi];
3458 /* May also set global value for local option. */
3459 if (both)
3460 *(long *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) =
3461 *(long *)varp;
3464 else /* P_BOOL */
3466 /* the cast to long is required for Manx C, long_i is needed for
3467 * MSVC */
3468 *(int *)varp = (int)(long)(long_i)options[opt_idx].def_val[dvi];
3469 #ifdef UNIX
3470 /* 'modeline' defaults to off for root */
3471 if (options[opt_idx].indir == PV_ML && getuid() == ROOT_UID)
3472 *(int *)varp = FALSE;
3473 #endif
3474 /* May also set global value for local option. */
3475 if (both)
3476 *(int *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) =
3477 *(int *)varp;
3480 /* The default value is not insecure. */
3481 flagsp = insecure_flag(opt_idx, opt_flags);
3482 *flagsp = *flagsp & ~P_INSECURE;
3485 #ifdef FEAT_EVAL
3486 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
3487 #endif
3491 * Set all options (except terminal options) to their default value.
3493 static void
3494 set_options_default(opt_flags)
3495 int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */
3497 int i;
3498 #ifdef FEAT_WINDOWS
3499 win_T *wp;
3500 tabpage_T *tp;
3501 #endif
3503 for (i = 0; !istermoption(&options[i]); i++)
3504 if (!(options[i].flags & P_NODEFAULT))
3505 set_option_default(i, opt_flags, p_cp);
3507 #ifdef FEAT_WINDOWS
3508 /* The 'scroll' option must be computed for all windows. */
3509 FOR_ALL_TAB_WINDOWS(tp, wp)
3510 win_comp_scroll(wp);
3511 #else
3512 win_comp_scroll(curwin);
3513 #endif
3517 * Set the Vi-default value of a string option.
3518 * Used for 'sh', 'backupskip' and 'term'.
3520 void
3521 set_string_default(name, val)
3522 char *name;
3523 char_u *val;
3525 char_u *p;
3526 int opt_idx;
3528 p = vim_strsave(val);
3529 if (p != NULL) /* we don't want a NULL */
3531 opt_idx = findoption((char_u *)name);
3532 if (opt_idx >= 0)
3534 if (options[opt_idx].flags & P_DEF_ALLOCED)
3535 vim_free(options[opt_idx].def_val[VI_DEFAULT]);
3536 options[opt_idx].def_val[VI_DEFAULT] = p;
3537 options[opt_idx].flags |= P_DEF_ALLOCED;
3543 * Set the Vi-default value of a number option.
3544 * Used for 'lines' and 'columns'.
3546 void
3547 set_number_default(name, val)
3548 char *name;
3549 long val;
3551 int opt_idx;
3553 opt_idx = findoption((char_u *)name);
3554 if (opt_idx >= 0)
3555 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
3558 #if defined(EXITFREE) || defined(PROTO)
3560 * Free all options.
3562 void
3563 free_all_options()
3565 int i;
3567 for (i = 0; !istermoption(&options[i]); i++)
3569 if (options[i].indir == PV_NONE)
3571 /* global option: free value and default value. */
3572 if (options[i].flags & P_ALLOCED && options[i].var != NULL)
3573 free_string_option(*(char_u **)options[i].var);
3574 if (options[i].flags & P_DEF_ALLOCED)
3575 free_string_option(options[i].def_val[VI_DEFAULT]);
3577 else if (options[i].var != VAR_WIN
3578 && (options[i].flags & P_STRING))
3579 /* buffer-local option: free global value */
3580 free_string_option(*(char_u **)options[i].var);
3583 #endif
3587 * Initialize the options, part two: After getting Rows and Columns and
3588 * setting 'term'.
3590 void
3591 set_init_2()
3593 int idx;
3596 * 'scroll' defaults to half the window height. Note that this default is
3597 * wrong when the window height changes.
3599 set_number_default("scroll", (long)((long_u)Rows >> 1));
3600 idx = findoption((char_u *)"scroll");
3601 if (idx >= 0 && !(options[idx].flags & P_WAS_SET))
3602 set_option_default(idx, OPT_LOCAL, p_cp);
3603 comp_col();
3606 * 'window' is only for backwards compatibility with Vi.
3607 * Default is Rows - 1.
3609 if (!option_was_set((char_u *)"window"))
3610 p_window = Rows - 1;
3611 set_number_default("window", Rows - 1);
3613 /* For DOS console the default is always black. */
3614 #if !((defined(MSDOS) || defined(OS2) || defined(WIN3264)) && !defined(FEAT_GUI))
3616 * If 'background' wasn't set by the user, try guessing the value,
3617 * depending on the terminal name. Only need to check for terminals
3618 * with a dark background, that can handle color.
3620 idx = findoption((char_u *)"bg");
3621 if (idx >= 0 && !(options[idx].flags & P_WAS_SET)
3622 && *term_bg_default() == 'd')
3624 set_string_option_direct(NULL, idx, (char_u *)"dark", OPT_FREE, 0);
3625 /* don't mark it as set, when starting the GUI it may be
3626 * changed again */
3627 options[idx].flags &= ~P_WAS_SET;
3629 #endif
3631 #ifdef CURSOR_SHAPE
3632 parse_shape_opt(SHAPE_CURSOR); /* set cursor shapes from 'guicursor' */
3633 #endif
3634 #ifdef FEAT_MOUSESHAPE
3635 parse_shape_opt(SHAPE_MOUSE); /* set mouse shapes from 'mouseshape' */
3636 #endif
3637 #ifdef FEAT_PRINTER
3638 (void)parse_printoptions(); /* parse 'printoptions' default value */
3639 #endif
3643 * Return "dark" or "light" depending on the kind of terminal.
3644 * This is just guessing! Recognized are:
3645 * "linux" Linux console
3646 * "screen.linux" Linux console with screen
3647 * "cygwin" Cygwin shell
3648 * "putty" Putty program
3649 * We also check the COLORFGBG environment variable, which is set by
3650 * rxvt and derivatives. This variable contains either two or three
3651 * values separated by semicolons; we want the last value in either
3652 * case. If this value is 0-6 or 8, our background is dark.
3654 static char_u *
3655 term_bg_default()
3657 #if defined(MSDOS) || defined(OS2) || defined(WIN3264)
3658 /* DOS console nearly always black */
3659 return (char_u *)"dark";
3660 #else
3661 char_u *p;
3663 if (STRCMP(T_NAME, "linux") == 0
3664 || STRCMP(T_NAME, "screen.linux") == 0
3665 || STRCMP(T_NAME, "cygwin") == 0
3666 || STRCMP(T_NAME, "putty") == 0
3667 || ((p = mch_getenv((char_u *)"COLORFGBG")) != NULL
3668 && (p = vim_strrchr(p, ';')) != NULL
3669 && ((p[1] >= '0' && p[1] <= '6') || p[1] == '8')
3670 && p[2] == NUL))
3671 return (char_u *)"dark";
3672 return (char_u *)"light";
3673 #endif
3677 * Initialize the options, part three: After reading the .vimrc
3679 void
3680 set_init_3()
3682 #if defined(UNIX) || defined(OS2) || defined(WIN3264)
3684 * Set 'shellpipe' and 'shellredir', depending on the 'shell' option.
3685 * This is done after other initializations, where 'shell' might have been
3686 * set, but only if they have not been set before.
3688 char_u *p;
3689 int idx_srr;
3690 int do_srr;
3691 #ifdef FEAT_QUICKFIX
3692 int idx_sp;
3693 int do_sp;
3694 #endif
3696 idx_srr = findoption((char_u *)"srr");
3697 if (idx_srr < 0)
3698 do_srr = FALSE;
3699 else
3700 do_srr = !(options[idx_srr].flags & P_WAS_SET);
3701 #ifdef FEAT_QUICKFIX
3702 idx_sp = findoption((char_u *)"sp");
3703 if (idx_sp < 0)
3704 do_sp = FALSE;
3705 else
3706 do_sp = !(options[idx_sp].flags & P_WAS_SET);
3707 #endif
3710 * Isolate the name of the shell:
3711 * - Skip beyond any path. E.g., "/usr/bin/csh -f" -> "csh -f".
3712 * - Remove any argument. E.g., "csh -f" -> "csh".
3714 p = gettail(p_sh);
3715 p = vim_strnsave(p, (int)(skiptowhite(p) - p));
3716 if (p != NULL)
3719 * Default for p_sp is "| tee", for p_srr is ">".
3720 * For known shells it is changed here to include stderr.
3722 if ( fnamecmp(p, "csh") == 0
3723 || fnamecmp(p, "tcsh") == 0
3724 # if defined(OS2) || defined(WIN3264) /* also check with .exe extension */
3725 || fnamecmp(p, "csh.exe") == 0
3726 || fnamecmp(p, "tcsh.exe") == 0
3727 # endif
3730 #if defined(FEAT_QUICKFIX)
3731 if (do_sp)
3733 # ifdef WIN3264
3734 p_sp = (char_u *)">&";
3735 # else
3736 p_sp = (char_u *)"|& tee";
3737 # endif
3738 options[idx_sp].def_val[VI_DEFAULT] = p_sp;
3740 #endif
3741 if (do_srr)
3743 p_srr = (char_u *)">&";
3744 options[idx_srr].def_val[VI_DEFAULT] = p_srr;
3747 else
3748 # ifndef OS2 /* Always use bourne shell style redirection if we reach this */
3749 if ( fnamecmp(p, "sh") == 0
3750 || fnamecmp(p, "ksh") == 0
3751 || fnamecmp(p, "zsh") == 0
3752 || fnamecmp(p, "zsh-beta") == 0
3753 || fnamecmp(p, "bash") == 0
3754 # ifdef WIN3264
3755 || fnamecmp(p, "cmd") == 0
3756 || fnamecmp(p, "sh.exe") == 0
3757 || fnamecmp(p, "ksh.exe") == 0
3758 || fnamecmp(p, "zsh.exe") == 0
3759 || fnamecmp(p, "zsh-beta.exe") == 0
3760 || fnamecmp(p, "bash.exe") == 0
3761 || fnamecmp(p, "cmd.exe") == 0
3762 # endif
3764 # endif
3766 #if defined(FEAT_QUICKFIX)
3767 if (do_sp)
3769 # ifdef WIN3264
3770 p_sp = (char_u *)">%s 2>&1";
3771 # else
3772 p_sp = (char_u *)"2>&1| tee";
3773 # endif
3774 options[idx_sp].def_val[VI_DEFAULT] = p_sp;
3776 #endif
3777 if (do_srr)
3779 p_srr = (char_u *)">%s 2>&1";
3780 options[idx_srr].def_val[VI_DEFAULT] = p_srr;
3783 vim_free(p);
3785 #endif
3787 #if defined(MSDOS) || defined(WIN3264) || defined(OS2)
3789 * Set 'shellcmdflag and 'shellquote' depending on the 'shell' option.
3790 * This is done after other initializations, where 'shell' might have been
3791 * set, but only if they have not been set before. Default for p_shcf is
3792 * "/c", for p_shq is "". For "sh" like shells it is changed here to
3793 * "-c" and "\"", but not for DJGPP, because it starts the shell without
3794 * command.com. And for Win32 we need to set p_sxq instead.
3796 if (strstr((char *)gettail(p_sh), "sh") != NULL)
3798 int idx3;
3800 idx3 = findoption((char_u *)"shcf");
3801 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
3803 p_shcf = (char_u *)"-c";
3804 options[idx3].def_val[VI_DEFAULT] = p_shcf;
3807 # ifndef DJGPP
3808 # ifdef WIN3264
3809 /* Somehow Win32 requires the quotes around the redirection too */
3810 idx3 = findoption((char_u *)"sxq");
3811 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
3813 p_sxq = (char_u *)"\"";
3814 options[idx3].def_val[VI_DEFAULT] = p_sxq;
3816 # else
3817 idx3 = findoption((char_u *)"shq");
3818 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
3820 p_shq = (char_u *)"\"";
3821 options[idx3].def_val[VI_DEFAULT] = p_shq;
3823 # endif
3824 # endif
3826 #endif
3828 #ifdef FEAT_TITLE
3829 set_title_defaults();
3830 #endif
3833 #if defined(FEAT_MULTI_LANG) || defined(PROTO)
3835 * When 'helplang' is still at its default value, set it to "lang".
3836 * Only the first two characters of "lang" are used.
3838 void
3839 set_helplang_default(lang)
3840 char_u *lang;
3842 int idx;
3844 if (lang == NULL || STRLEN(lang) < 2) /* safety check */
3845 return;
3846 idx = findoption((char_u *)"hlg");
3847 if (idx >= 0 && !(options[idx].flags & P_WAS_SET))
3849 if (options[idx].flags & P_ALLOCED)
3850 free_string_option(p_hlg);
3851 p_hlg = vim_strsave(lang);
3852 if (p_hlg == NULL)
3853 p_hlg = empty_option;
3854 else
3856 /* zh_CN becomes "cn", zh_TW becomes "tw". */
3857 if (STRNICMP(p_hlg, "zh_", 3) == 0 && STRLEN(p_hlg) >= 5)
3859 p_hlg[0] = TOLOWER_ASC(p_hlg[3]);
3860 p_hlg[1] = TOLOWER_ASC(p_hlg[4]);
3862 p_hlg[2] = NUL;
3864 options[idx].flags |= P_ALLOCED;
3867 #endif
3869 #ifdef FEAT_GUI
3870 static char_u *gui_bg_default __ARGS((void));
3872 static char_u *
3873 gui_bg_default()
3875 if (gui_get_lightness(gui.back_pixel) < 127)
3876 return (char_u *)"dark";
3877 return (char_u *)"light";
3881 * Option initializations that can only be done after opening the GUI window.
3883 void
3884 init_gui_options()
3886 /* Set the 'background' option according to the lightness of the
3887 * background color, unless the user has set it already. */
3888 if (!option_was_set((char_u *)"bg") && STRCMP(p_bg, gui_bg_default()) != 0)
3890 set_option_value((char_u *)"bg", 0L, gui_bg_default(), 0);
3891 highlight_changed();
3894 #endif
3896 #ifdef FEAT_TITLE
3898 * 'title' and 'icon' only default to true if they have not been set or reset
3899 * in .vimrc and we can read the old value.
3900 * When 'title' and 'icon' have been reset in .vimrc, we won't even check if
3901 * they can be reset. This reduces startup time when using X on a remote
3902 * machine.
3904 void
3905 set_title_defaults()
3907 int idx1;
3908 long val;
3911 * If GUI is (going to be) used, we can always set the window title and
3912 * icon name. Saves a bit of time, because the X11 display server does
3913 * not need to be contacted.
3915 idx1 = findoption((char_u *)"title");
3916 if (idx1 >= 0 && !(options[idx1].flags & P_WAS_SET))
3918 #ifdef FEAT_GUI
3919 if (gui.starting || gui.in_use)
3920 val = TRUE;
3921 else
3922 #endif
3923 val = mch_can_restore_title();
3924 options[idx1].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
3925 p_title = val;
3927 idx1 = findoption((char_u *)"icon");
3928 if (idx1 >= 0 && !(options[idx1].flags & P_WAS_SET))
3930 #ifdef FEAT_GUI
3931 if (gui.starting || gui.in_use)
3932 val = TRUE;
3933 else
3934 #endif
3935 val = mch_can_restore_icon();
3936 options[idx1].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
3937 p_icon = val;
3940 #endif
3943 * Parse 'arg' for option settings.
3945 * 'arg' may be IObuff, but only when no errors can be present and option
3946 * does not need to be expanded with option_expand().
3947 * "opt_flags":
3948 * 0 for ":set"
3949 * OPT_GLOBAL for ":setglobal"
3950 * OPT_LOCAL for ":setlocal" and a modeline
3951 * OPT_MODELINE for a modeline
3952 * OPT_WINONLY to only set window-local options
3953 * OPT_NOWIN to skip setting window-local options
3955 * returns FAIL if an error is detected, OK otherwise
3958 do_set(arg, opt_flags)
3959 char_u *arg; /* option string (may be written to!) */
3960 int opt_flags;
3962 int opt_idx;
3963 char_u *errmsg;
3964 char_u errbuf[80];
3965 char_u *startarg;
3966 int prefix; /* 1: nothing, 0: "no", 2: "inv" in front of name */
3967 int nextchar; /* next non-white char after option name */
3968 int afterchar; /* character just after option name */
3969 int len;
3970 int i;
3971 long value;
3972 int key;
3973 long_u flags; /* flags for current option */
3974 char_u *varp = NULL; /* pointer to variable for current option */
3975 int did_show = FALSE; /* already showed one value */
3976 int adding; /* "opt+=arg" */
3977 int prepending; /* "opt^=arg" */
3978 int removing; /* "opt-=arg" */
3979 int cp_val = 0;
3980 char_u key_name[2];
3982 if (*arg == NUL)
3984 showoptions(0, opt_flags);
3985 did_show = TRUE;
3986 goto theend;
3989 while (*arg != NUL) /* loop to process all options */
3991 errmsg = NULL;
3992 startarg = arg; /* remember for error message */
3994 if (STRNCMP(arg, "all", 3) == 0 && !isalpha(arg[3])
3995 && !(opt_flags & OPT_MODELINE))
3998 * ":set all" show all options.
3999 * ":set all&" set all options to their default value.
4001 arg += 3;
4002 if (*arg == '&')
4004 ++arg;
4005 /* Only for :set command set global value of local options. */
4006 set_options_default(OPT_FREE | opt_flags);
4008 else
4010 showoptions(1, opt_flags);
4011 did_show = TRUE;
4014 else if (STRNCMP(arg, "termcap", 7) == 0 && !(opt_flags & OPT_MODELINE))
4016 showoptions(2, opt_flags);
4017 show_termcodes();
4018 did_show = TRUE;
4019 arg += 7;
4021 else
4023 prefix = 1;
4024 if (STRNCMP(arg, "no", 2) == 0 && STRNCMP(arg, "novice", 6) != 0)
4026 prefix = 0;
4027 arg += 2;
4029 else if (STRNCMP(arg, "inv", 3) == 0)
4031 prefix = 2;
4032 arg += 3;
4035 /* find end of name */
4036 key = 0;
4037 if (*arg == '<')
4039 nextchar = 0;
4040 opt_idx = -1;
4041 /* look out for <t_>;> */
4042 if (arg[1] == 't' && arg[2] == '_' && arg[3] && arg[4])
4043 len = 5;
4044 else
4046 len = 1;
4047 while (arg[len] != NUL && arg[len] != '>')
4048 ++len;
4050 if (arg[len] != '>')
4052 errmsg = e_invarg;
4053 goto skip;
4055 arg[len] = NUL; /* put NUL after name */
4056 if (arg[1] == 't' && arg[2] == '_') /* could be term code */
4057 opt_idx = findoption(arg + 1);
4058 arg[len++] = '>'; /* restore '>' */
4059 if (opt_idx == -1)
4060 key = find_key_option(arg + 1);
4062 else
4064 len = 0;
4066 * The two characters after "t_" may not be alphanumeric.
4068 if (arg[0] == 't' && arg[1] == '_' && arg[2] && arg[3])
4069 len = 4;
4070 else
4071 while (ASCII_ISALNUM(arg[len]) || arg[len] == '_')
4072 ++len;
4073 nextchar = arg[len];
4074 arg[len] = NUL; /* put NUL after name */
4075 opt_idx = findoption(arg);
4076 arg[len] = nextchar; /* restore nextchar */
4077 if (opt_idx == -1)
4078 key = find_key_option(arg);
4081 /* remember character after option name */
4082 afterchar = arg[len];
4084 /* skip white space, allow ":set ai ?" */
4085 while (vim_iswhite(arg[len]))
4086 ++len;
4088 adding = FALSE;
4089 prepending = FALSE;
4090 removing = FALSE;
4091 if (arg[len] != NUL && arg[len + 1] == '=')
4093 if (arg[len] == '+')
4095 adding = TRUE; /* "+=" */
4096 ++len;
4098 else if (arg[len] == '^')
4100 prepending = TRUE; /* "^=" */
4101 ++len;
4103 else if (arg[len] == '-')
4105 removing = TRUE; /* "-=" */
4106 ++len;
4109 nextchar = arg[len];
4111 if (opt_idx == -1 && key == 0) /* found a mismatch: skip */
4113 errmsg = (char_u *)N_("E518: Unknown option");
4114 goto skip;
4117 if (opt_idx >= 0)
4119 if (options[opt_idx].var == NULL) /* hidden option: skip */
4121 /* Only give an error message when requesting the value of
4122 * a hidden option, ignore setting it. */
4123 if (vim_strchr((char_u *)"=:!&<", nextchar) == NULL
4124 && (!(options[opt_idx].flags & P_BOOL)
4125 || nextchar == '?'))
4126 errmsg = (char_u *)N_("E519: Option not supported");
4127 goto skip;
4130 flags = options[opt_idx].flags;
4131 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
4133 else
4135 flags = P_STRING;
4136 if (key < 0)
4138 key_name[0] = KEY2TERMCAP0(key);
4139 key_name[1] = KEY2TERMCAP1(key);
4141 else
4143 key_name[0] = KS_KEY;
4144 key_name[1] = (key & 0xff);
4148 /* Skip all options that are not window-local (used when showing
4149 * an already loaded buffer in a window). */
4150 if ((opt_flags & OPT_WINONLY)
4151 && (opt_idx < 0 || options[opt_idx].var != VAR_WIN))
4152 goto skip;
4154 /* Skip all options that are window-local (used for :vimgrep). */
4155 if ((opt_flags & OPT_NOWIN) && opt_idx >= 0
4156 && options[opt_idx].var == VAR_WIN)
4157 goto skip;
4159 /* Disallow changing some options from modelines. */
4160 if (opt_flags & OPT_MODELINE)
4162 if (flags & P_SECURE)
4164 errmsg = (char_u *)_("E520: Not allowed in a modeline");
4165 goto skip;
4167 #ifdef FEAT_DIFF
4168 /* In diff mode some options are overruled. This avoids that
4169 * 'foldmethod' becomes "marker" instead of "diff" and that
4170 * "wrap" gets set. */
4171 if (curwin->w_p_diff
4172 && (options[opt_idx].indir == PV_FDM
4173 || options[opt_idx].indir == PV_WRAP))
4174 goto skip;
4175 #endif
4178 #ifdef HAVE_SANDBOX
4179 /* Disallow changing some options in the sandbox */
4180 if (sandbox != 0 && (flags & P_SECURE))
4182 errmsg = (char_u *)_(e_sandbox);
4183 goto skip;
4185 #endif
4187 if (vim_strchr((char_u *)"?=:!&<", nextchar) != NULL)
4189 arg += len;
4190 cp_val = p_cp;
4191 if (nextchar == '&' && arg[1] == 'v' && arg[2] == 'i')
4193 if (arg[3] == 'm') /* "opt&vim": set to Vim default */
4195 cp_val = FALSE;
4196 arg += 3;
4198 else /* "opt&vi": set to Vi default */
4200 cp_val = TRUE;
4201 arg += 2;
4204 if (vim_strchr((char_u *)"?!&<", nextchar) != NULL
4205 && arg[1] != NUL && !vim_iswhite(arg[1]))
4207 errmsg = e_trailing;
4208 goto skip;
4213 * allow '=' and ':' as MSDOS command.com allows only one
4214 * '=' character per "set" command line. grrr. (jw)
4216 if (nextchar == '?'
4217 || (prefix == 1
4218 && vim_strchr((char_u *)"=:&<", nextchar) == NULL
4219 && !(flags & P_BOOL)))
4222 * print value
4224 if (did_show)
4225 msg_putchar('\n'); /* cursor below last one */
4226 else
4228 gotocmdline(TRUE); /* cursor at status line */
4229 did_show = TRUE; /* remember that we did a line */
4231 if (opt_idx >= 0)
4233 showoneopt(&options[opt_idx], opt_flags);
4234 #ifdef FEAT_EVAL
4235 if (p_verbose > 0)
4237 /* Mention where the option was last set. */
4238 if (varp == options[opt_idx].var)
4239 last_set_msg(options[opt_idx].scriptID);
4240 else if ((int)options[opt_idx].indir & PV_WIN)
4241 last_set_msg(curwin->w_p_scriptID[
4242 (int)options[opt_idx].indir & PV_MASK]);
4243 else if ((int)options[opt_idx].indir & PV_BUF)
4244 last_set_msg(curbuf->b_p_scriptID[
4245 (int)options[opt_idx].indir & PV_MASK]);
4247 #endif
4249 else
4251 char_u *p;
4253 p = find_termcode(key_name);
4254 if (p == NULL)
4256 errmsg = (char_u *)N_("E518: Unknown option");
4257 goto skip;
4259 else
4260 (void)show_one_termcode(key_name, p, TRUE);
4262 if (nextchar != '?'
4263 && nextchar != NUL && !vim_iswhite(afterchar))
4264 errmsg = e_trailing;
4266 else
4268 if (flags & P_BOOL) /* boolean */
4270 if (nextchar == '=' || nextchar == ':')
4272 errmsg = e_invarg;
4273 goto skip;
4277 * ":set opt!": invert
4278 * ":set opt&": reset to default value
4279 * ":set opt<": reset to global value
4281 if (nextchar == '!')
4282 value = *(int *)(varp) ^ 1;
4283 else if (nextchar == '&')
4284 value = (int)(long)(long_i)options[opt_idx].def_val[
4285 ((flags & P_VI_DEF) || cp_val)
4286 ? VI_DEFAULT : VIM_DEFAULT];
4287 else if (nextchar == '<')
4289 /* For 'autoread' -1 means to use global value. */
4290 if ((int *)varp == &curbuf->b_p_ar
4291 && opt_flags == OPT_LOCAL)
4292 value = -1;
4293 else
4294 value = *(int *)get_varp_scope(&(options[opt_idx]),
4295 OPT_GLOBAL);
4297 else
4300 * ":set invopt": invert
4301 * ":set opt" or ":set noopt": set or reset
4303 if (nextchar != NUL && !vim_iswhite(afterchar))
4305 errmsg = e_trailing;
4306 goto skip;
4308 if (prefix == 2) /* inv */
4309 value = *(int *)(varp) ^ 1;
4310 else
4311 value = prefix;
4314 errmsg = set_bool_option(opt_idx, varp, (int)value,
4315 opt_flags);
4317 else /* numeric or string */
4319 if (vim_strchr((char_u *)"=:&<", nextchar) == NULL
4320 || prefix != 1)
4322 errmsg = e_invarg;
4323 goto skip;
4326 if (flags & P_NUM) /* numeric */
4329 * Different ways to set a number option:
4330 * & set to default value
4331 * < set to global value
4332 * <xx> accept special key codes for 'wildchar'
4333 * c accept any non-digit for 'wildchar'
4334 * [-]0-9 set number
4335 * other error
4337 ++arg;
4338 if (nextchar == '&')
4339 value = (long)(long_i)options[opt_idx].def_val[
4340 ((flags & P_VI_DEF) || cp_val)
4341 ? VI_DEFAULT : VIM_DEFAULT];
4342 else if (nextchar == '<')
4343 value = *(long *)get_varp_scope(&(options[opt_idx]),
4344 OPT_GLOBAL);
4345 else if (((long *)varp == &p_wc
4346 || (long *)varp == &p_wcm)
4347 && (*arg == '<'
4348 || *arg == '^'
4349 || ((!arg[1] || vim_iswhite(arg[1]))
4350 && !VIM_ISDIGIT(*arg))))
4352 value = string_to_key(arg);
4353 if (value == 0 && (long *)varp != &p_wcm)
4355 errmsg = e_invarg;
4356 goto skip;
4359 /* allow negative numbers (for 'undolevels') */
4360 else if (*arg == '-' || VIM_ISDIGIT(*arg))
4362 i = 0;
4363 if (*arg == '-')
4364 i = 1;
4365 #ifdef HAVE_STRTOL
4366 value = strtol((char *)arg, NULL, 0);
4367 if (arg[i] == '0' && TOLOWER_ASC(arg[i + 1]) == 'x')
4368 i += 2;
4369 #else
4370 value = atol((char *)arg);
4371 #endif
4372 while (VIM_ISDIGIT(arg[i]))
4373 ++i;
4374 if (arg[i] != NUL && !vim_iswhite(arg[i]))
4376 errmsg = e_invarg;
4377 goto skip;
4380 else
4382 errmsg = (char_u *)N_("E521: Number required after =");
4383 goto skip;
4386 if (adding)
4387 value = *(long *)varp + value;
4388 if (prepending)
4389 value = *(long *)varp * value;
4390 if (removing)
4391 value = *(long *)varp - value;
4392 errmsg = set_num_option(opt_idx, varp, value,
4393 errbuf, sizeof(errbuf), opt_flags);
4395 else if (opt_idx >= 0) /* string */
4397 char_u *save_arg = NULL;
4398 char_u *s = NULL;
4399 char_u *oldval; /* previous value if *varp */
4400 char_u *newval;
4401 char_u *origval;
4402 unsigned newlen;
4403 int comma;
4404 int bs;
4405 int new_value_alloced; /* new string option
4406 was allocated */
4408 /* When using ":set opt=val" for a global option
4409 * with a local value the local value will be
4410 * reset, use the global value here. */
4411 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
4412 && ((int)options[opt_idx].indir & PV_BOTH))
4413 varp = options[opt_idx].var;
4415 /* The old value is kept until we are sure that the
4416 * new value is valid. */
4417 oldval = *(char_u **)varp;
4418 if (nextchar == '&') /* set to default val */
4420 newval = options[opt_idx].def_val[
4421 ((flags & P_VI_DEF) || cp_val)
4422 ? VI_DEFAULT : VIM_DEFAULT];
4423 if ((char_u **)varp == &p_bg)
4425 /* guess the value of 'background' */
4426 #ifdef FEAT_GUI
4427 if (gui.in_use)
4428 newval = gui_bg_default();
4429 else
4430 #endif
4431 newval = term_bg_default();
4434 /* expand environment variables and ~ (since the
4435 * default value was already expanded, only
4436 * required when an environment variable was set
4437 * later */
4438 if (newval == NULL)
4439 newval = empty_option;
4440 else
4442 s = option_expand(opt_idx, newval);
4443 if (s == NULL)
4444 s = newval;
4445 newval = vim_strsave(s);
4447 new_value_alloced = TRUE;
4449 else if (nextchar == '<') /* set to global val */
4451 newval = vim_strsave(*(char_u **)get_varp_scope(
4452 &(options[opt_idx]), OPT_GLOBAL));
4453 new_value_alloced = TRUE;
4455 else
4457 ++arg; /* jump to after the '=' or ':' */
4460 * Set 'keywordprg' to ":help" if an empty
4461 * value was passed to :set by the user.
4462 * Misuse errbuf[] for the resulting string.
4464 if (varp == (char_u *)&p_kp
4465 && (*arg == NUL || *arg == ' '))
4467 STRCPY(errbuf, ":help");
4468 save_arg = arg;
4469 arg = errbuf;
4472 * Convert 'whichwrap' number to string, for
4473 * backwards compatibility with Vim 3.0.
4474 * Misuse errbuf[] for the resulting string.
4476 else if (varp == (char_u *)&p_ww
4477 && VIM_ISDIGIT(*arg))
4479 *errbuf = NUL;
4480 i = getdigits(&arg);
4481 if (i & 1)
4482 STRCAT(errbuf, "b,");
4483 if (i & 2)
4484 STRCAT(errbuf, "s,");
4485 if (i & 4)
4486 STRCAT(errbuf, "h,l,");
4487 if (i & 8)
4488 STRCAT(errbuf, "<,>,");
4489 if (i & 16)
4490 STRCAT(errbuf, "[,],");
4491 if (*errbuf != NUL) /* remove trailing , */
4492 errbuf[STRLEN(errbuf) - 1] = NUL;
4493 save_arg = arg;
4494 arg = errbuf;
4497 * Remove '>' before 'dir' and 'bdir', for
4498 * backwards compatibility with version 3.0
4500 else if ( *arg == '>'
4501 && (varp == (char_u *)&p_dir
4502 || varp == (char_u *)&p_bdir))
4504 ++arg;
4507 /* When setting the local value of a global
4508 * option, the old value may be the global value. */
4509 if (((int)options[opt_idx].indir & PV_BOTH)
4510 && (opt_flags & OPT_LOCAL))
4511 origval = *(char_u **)get_varp(
4512 &options[opt_idx]);
4513 else
4514 origval = oldval;
4517 * Copy the new string into allocated memory.
4518 * Can't use set_string_option_direct(), because
4519 * we need to remove the backslashes.
4521 /* get a bit too much */
4522 newlen = (unsigned)STRLEN(arg) + 1;
4523 if (adding || prepending || removing)
4524 newlen += (unsigned)STRLEN(origval) + 1;
4525 newval = alloc(newlen);
4526 if (newval == NULL) /* out of mem, don't change */
4527 break;
4528 s = newval;
4531 * Copy the string, skip over escaped chars.
4532 * For MS-DOS and WIN32 backslashes before normal
4533 * file name characters are not removed, and keep
4534 * backslash at start, for "\\machine\path", but
4535 * do remove it for "\\\\machine\\path".
4536 * The reverse is found in ExpandOldSetting().
4538 while (*arg && !vim_iswhite(*arg))
4540 if (*arg == '\\' && arg[1] != NUL
4541 #ifdef BACKSLASH_IN_FILENAME
4542 && !((flags & P_EXPAND)
4543 && vim_isfilec(arg[1])
4544 && (arg[1] != '\\'
4545 || (s == newval
4546 && arg[2] != '\\')))
4547 #endif
4549 ++arg; /* remove backslash */
4550 #ifdef FEAT_MBYTE
4551 if (has_mbyte
4552 && (i = (*mb_ptr2len)(arg)) > 1)
4554 /* copy multibyte char */
4555 mch_memmove(s, arg, (size_t)i);
4556 arg += i;
4557 s += i;
4559 else
4560 #endif
4561 *s++ = *arg++;
4563 *s = NUL;
4566 * Expand environment variables and ~.
4567 * Don't do it when adding without inserting a
4568 * comma.
4570 if (!(adding || prepending || removing)
4571 || (flags & P_COMMA))
4573 s = option_expand(opt_idx, newval);
4574 if (s != NULL)
4576 vim_free(newval);
4577 newlen = (unsigned)STRLEN(s) + 1;
4578 if (adding || prepending || removing)
4579 newlen += (unsigned)STRLEN(origval) + 1;
4580 newval = alloc(newlen);
4581 if (newval == NULL)
4582 break;
4583 STRCPY(newval, s);
4587 /* locate newval[] in origval[] when removing it
4588 * and when adding to avoid duplicates */
4589 i = 0; /* init for GCC */
4590 if (removing || (flags & P_NODUP))
4592 i = (int)STRLEN(newval);
4593 bs = 0;
4594 for (s = origval; *s; ++s)
4596 if ((!(flags & P_COMMA)
4597 || s == origval
4598 || (s[-1] == ',' && !(bs & 1)))
4599 && STRNCMP(s, newval, i) == 0
4600 && (!(flags & P_COMMA)
4601 || s[i] == ','
4602 || s[i] == NUL))
4603 break;
4604 /* Count backspaces. Only a comma with an
4605 * even number of backspaces before it is
4606 * recognized as a separator */
4607 if (s > origval && s[-1] == '\\')
4608 ++bs;
4609 else
4610 bs = 0;
4613 /* do not add if already there */
4614 if ((adding || prepending) && *s)
4616 prepending = FALSE;
4617 adding = FALSE;
4618 STRCPY(newval, origval);
4622 /* concatenate the two strings; add a ',' if
4623 * needed */
4624 if (adding || prepending)
4626 comma = ((flags & P_COMMA) && *origval != NUL
4627 && *newval != NUL);
4628 if (adding)
4630 i = (int)STRLEN(origval);
4631 mch_memmove(newval + i + comma, newval,
4632 STRLEN(newval) + 1);
4633 mch_memmove(newval, origval, (size_t)i);
4635 else
4637 i = (int)STRLEN(newval);
4638 STRMOVE(newval + i + comma, origval);
4640 if (comma)
4641 newval[i] = ',';
4644 /* Remove newval[] from origval[]. (Note: "i" has
4645 * been set above and is used here). */
4646 if (removing)
4648 STRCPY(newval, origval);
4649 if (*s)
4651 /* may need to remove a comma */
4652 if (flags & P_COMMA)
4654 if (s == origval)
4656 /* include comma after string */
4657 if (s[i] == ',')
4658 ++i;
4660 else
4662 /* include comma before string */
4663 --s;
4664 ++i;
4667 STRMOVE(newval + (s - origval), s + i);
4671 if (flags & P_FLAGLIST)
4673 /* Remove flags that appear twice. */
4674 for (s = newval; *s; ++s)
4675 if ((!(flags & P_COMMA) || *s != ',')
4676 && vim_strchr(s + 1, *s) != NULL)
4678 STRMOVE(s, s + 1);
4679 --s;
4683 if (save_arg != NULL) /* number for 'whichwrap' */
4684 arg = save_arg;
4685 new_value_alloced = TRUE;
4688 /* Set the new value. */
4689 *(char_u **)(varp) = newval;
4691 /* Handle side effects, and set the global value for
4692 * ":set" on local options. */
4693 errmsg = did_set_string_option(opt_idx, (char_u **)varp,
4694 new_value_alloced, oldval, errbuf, opt_flags);
4696 /* If error detected, print the error message. */
4697 if (errmsg != NULL)
4698 goto skip;
4700 else /* key code option */
4702 char_u *p;
4704 if (nextchar == '&')
4706 if (add_termcap_entry(key_name, TRUE) == FAIL)
4707 errmsg = (char_u *)N_("E522: Not found in termcap");
4709 else
4711 ++arg; /* jump to after the '=' or ':' */
4712 for (p = arg; *p && !vim_iswhite(*p); ++p)
4713 if (*p == '\\' && p[1] != NUL)
4714 ++p;
4715 nextchar = *p;
4716 *p = NUL;
4717 add_termcode(key_name, arg, FALSE);
4718 *p = nextchar;
4720 if (full_screen)
4721 ttest(FALSE);
4722 redraw_all_later(CLEAR);
4726 if (opt_idx >= 0)
4727 did_set_option(opt_idx, opt_flags,
4728 !prepending && !adding && !removing);
4731 skip:
4733 * Advance to next argument.
4734 * - skip until a blank found, taking care of backslashes
4735 * - skip blanks
4736 * - skip one "=val" argument (for hidden options ":set gfn =xx")
4738 for (i = 0; i < 2 ; ++i)
4740 while (*arg != NUL && !vim_iswhite(*arg))
4741 if (*arg++ == '\\' && *arg != NUL)
4742 ++arg;
4743 arg = skipwhite(arg);
4744 if (*arg != '=')
4745 break;
4749 if (errmsg != NULL)
4751 vim_strncpy(IObuff, (char_u *)_(errmsg), IOSIZE - 1);
4752 i = (int)STRLEN(IObuff) + 2;
4753 if (i + (arg - startarg) < IOSIZE)
4755 /* append the argument with the error */
4756 STRCAT(IObuff, ": ");
4757 mch_memmove(IObuff + i, startarg, (arg - startarg));
4758 IObuff[i + (arg - startarg)] = NUL;
4760 /* make sure all characters are printable */
4761 trans_characters(IObuff, IOSIZE);
4763 ++no_wait_return; /* wait_return done later */
4764 emsg(IObuff); /* show error highlighted */
4765 --no_wait_return;
4767 return FAIL;
4770 arg = skipwhite(arg);
4773 theend:
4774 if (silent_mode && did_show)
4776 /* After displaying option values in silent mode. */
4777 silent_mode = FALSE;
4778 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
4779 msg_putchar('\n');
4780 cursor_on(); /* msg_start() switches it off */
4781 out_flush();
4782 silent_mode = TRUE;
4783 info_message = FALSE; /* use mch_msg(), not mch_errmsg() */
4786 return OK;
4790 * Call this when an option has been given a new value through a user command.
4791 * Sets the P_WAS_SET flag and takes care of the P_INSECURE flag.
4793 static void
4794 did_set_option(opt_idx, opt_flags, new_value)
4795 int opt_idx;
4796 int opt_flags; /* possibly with OPT_MODELINE */
4797 int new_value; /* value was replaced completely */
4799 long_u *p;
4801 options[opt_idx].flags |= P_WAS_SET;
4803 /* When an option is set in the sandbox, from a modeline or in secure mode
4804 * set the P_INSECURE flag. Otherwise, if a new value is stored reset the
4805 * flag. */
4806 p = insecure_flag(opt_idx, opt_flags);
4807 if (secure
4808 #ifdef HAVE_SANDBOX
4809 || sandbox != 0
4810 #endif
4811 || (opt_flags & OPT_MODELINE))
4812 *p = *p | P_INSECURE;
4813 else if (new_value)
4814 *p = *p & ~P_INSECURE;
4817 static char_u *
4818 illegal_char(errbuf, c)
4819 char_u *errbuf;
4820 int c;
4822 if (errbuf == NULL)
4823 return (char_u *)"";
4824 sprintf((char *)errbuf, _("E539: Illegal character <%s>"),
4825 (char *)transchar(c));
4826 return errbuf;
4830 * Convert a key name or string into a key value.
4831 * Used for 'wildchar' and 'cedit' options.
4833 static int
4834 string_to_key(arg)
4835 char_u *arg;
4837 if (*arg == '<')
4838 return find_key_option(arg + 1);
4839 if (*arg == '^')
4840 return Ctrl_chr(arg[1]);
4841 return *arg;
4844 #ifdef FEAT_CMDWIN
4846 * Check value of 'cedit' and set cedit_key.
4847 * Returns NULL if value is OK, error message otherwise.
4849 static char_u *
4850 check_cedit()
4852 int n;
4854 if (*p_cedit == NUL)
4855 cedit_key = -1;
4856 else
4858 n = string_to_key(p_cedit);
4859 if (vim_isprintc(n))
4860 return e_invarg;
4861 cedit_key = n;
4863 return NULL;
4865 #endif
4867 #ifdef FEAT_TITLE
4869 * When changing 'title', 'titlestring', 'icon' or 'iconstring', call
4870 * maketitle() to create and display it.
4871 * When switching the title or icon off, call mch_restore_title() to get
4872 * the old value back.
4874 static void
4875 did_set_title(icon)
4876 int icon; /* Did set icon instead of title */
4878 if (starting != NO_SCREEN
4879 #ifdef FEAT_GUI
4880 && !gui.starting
4881 #endif
4884 maketitle();
4885 if (icon)
4887 if (!p_icon)
4888 mch_restore_title(2);
4890 else
4892 if (!p_title)
4893 mch_restore_title(1);
4897 #endif
4900 * set_options_bin - called when 'bin' changes value.
4902 void
4903 set_options_bin(oldval, newval, opt_flags)
4904 int oldval;
4905 int newval;
4906 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
4909 * The option values that are changed when 'bin' changes are
4910 * copied when 'bin is set and restored when 'bin' is reset.
4912 if (newval)
4914 if (!oldval) /* switched on */
4916 if (!(opt_flags & OPT_GLOBAL))
4918 curbuf->b_p_tw_nobin = curbuf->b_p_tw;
4919 curbuf->b_p_wm_nobin = curbuf->b_p_wm;
4920 curbuf->b_p_ml_nobin = curbuf->b_p_ml;
4921 curbuf->b_p_et_nobin = curbuf->b_p_et;
4923 if (!(opt_flags & OPT_LOCAL))
4925 p_tw_nobin = p_tw;
4926 p_wm_nobin = p_wm;
4927 p_ml_nobin = p_ml;
4928 p_et_nobin = p_et;
4932 if (!(opt_flags & OPT_GLOBAL))
4934 curbuf->b_p_tw = 0; /* no automatic line wrap */
4935 curbuf->b_p_wm = 0; /* no automatic line wrap */
4936 curbuf->b_p_ml = 0; /* no modelines */
4937 curbuf->b_p_et = 0; /* no expandtab */
4939 if (!(opt_flags & OPT_LOCAL))
4941 p_tw = 0;
4942 p_wm = 0;
4943 p_ml = FALSE;
4944 p_et = FALSE;
4945 p_bin = TRUE; /* needed when called for the "-b" argument */
4948 else if (oldval) /* switched off */
4950 if (!(opt_flags & OPT_GLOBAL))
4952 curbuf->b_p_tw = curbuf->b_p_tw_nobin;
4953 curbuf->b_p_wm = curbuf->b_p_wm_nobin;
4954 curbuf->b_p_ml = curbuf->b_p_ml_nobin;
4955 curbuf->b_p_et = curbuf->b_p_et_nobin;
4957 if (!(opt_flags & OPT_LOCAL))
4959 p_tw = p_tw_nobin;
4960 p_wm = p_wm_nobin;
4961 p_ml = p_ml_nobin;
4962 p_et = p_et_nobin;
4967 #ifdef FEAT_VIMINFO
4969 * Find the parameter represented by the given character (eg ', :, ", or /),
4970 * and return its associated value in the 'viminfo' string.
4971 * Only works for number parameters, not for 'r' or 'n'.
4972 * If the parameter is not specified in the string or there is no following
4973 * number, return -1.
4976 get_viminfo_parameter(type)
4977 int type;
4979 char_u *p;
4981 p = find_viminfo_parameter(type);
4982 if (p != NULL && VIM_ISDIGIT(*p))
4983 return atoi((char *)p);
4984 return -1;
4988 * Find the parameter represented by the given character (eg ''', ':', '"', or
4989 * '/') in the 'viminfo' option and return a pointer to the string after it.
4990 * Return NULL if the parameter is not specified in the string.
4992 char_u *
4993 find_viminfo_parameter(type)
4994 int type;
4996 char_u *p;
4998 for (p = p_viminfo; *p; ++p)
5000 if (*p == type)
5001 return p + 1;
5002 if (*p == 'n') /* 'n' is always the last one */
5003 break;
5004 p = vim_strchr(p, ','); /* skip until next ',' */
5005 if (p == NULL) /* hit the end without finding parameter */
5006 break;
5008 return NULL;
5010 #endif
5013 * Expand environment variables for some string options.
5014 * These string options cannot be indirect!
5015 * If "val" is NULL expand the current value of the option.
5016 * Return pointer to NameBuff, or NULL when not expanded.
5018 static char_u *
5019 option_expand(opt_idx, val)
5020 int opt_idx;
5021 char_u *val;
5023 /* if option doesn't need expansion nothing to do */
5024 if (!(options[opt_idx].flags & P_EXPAND) || options[opt_idx].var == NULL)
5025 return NULL;
5027 /* If val is longer than MAXPATHL no meaningful expansion can be done,
5028 * expand_env() would truncate the string. */
5029 if (val != NULL && STRLEN(val) > MAXPATHL)
5030 return NULL;
5032 if (val == NULL)
5033 val = *(char_u **)options[opt_idx].var;
5036 * Expanding this with NameBuff, expand_env() must not be passed IObuff.
5037 * Escape spaces when expanding 'tags', they are used to separate file
5038 * names.
5039 * For 'spellsuggest' expand after "file:".
5041 expand_env_esc(val, NameBuff, MAXPATHL,
5042 (char_u **)options[opt_idx].var == &p_tags, FALSE,
5043 #ifdef FEAT_SPELL
5044 (char_u **)options[opt_idx].var == &p_sps ? (char_u *)"file:" :
5045 #endif
5046 NULL);
5047 if (STRCMP(NameBuff, val) == 0) /* they are the same */
5048 return NULL;
5050 return NameBuff;
5054 * After setting various option values: recompute variables that depend on
5055 * option values.
5057 static void
5058 didset_options()
5060 /* initialize the table for 'iskeyword' et.al. */
5061 (void)init_chartab();
5063 #ifdef FEAT_MBYTE
5064 (void)opt_strings_flags(p_cmp, p_cmp_values, &cmp_flags, TRUE);
5065 #endif
5066 (void)opt_strings_flags(p_bkc, p_bkc_values, &bkc_flags, TRUE);
5067 #ifdef FEAT_SESSION
5068 (void)opt_strings_flags(p_ssop, p_ssop_values, &ssop_flags, TRUE);
5069 (void)opt_strings_flags(p_vop, p_ssop_values, &vop_flags, TRUE);
5070 #endif
5071 #ifdef FEAT_FOLDING
5072 (void)opt_strings_flags(p_fdo, p_fdo_values, &fdo_flags, TRUE);
5073 #endif
5074 (void)opt_strings_flags(p_dy, p_dy_values, &dy_flags, TRUE);
5075 #ifdef FEAT_VIRTUALEDIT
5076 (void)opt_strings_flags(p_ve, p_ve_values, &ve_flags, TRUE);
5077 #endif
5078 #if defined(FEAT_MOUSE) && (defined(UNIX) || defined(VMS))
5079 (void)opt_strings_flags(p_ttym, p_ttym_values, &ttym_flags, FALSE);
5080 #endif
5081 #ifdef FEAT_SPELL
5082 (void)spell_check_msm();
5083 (void)spell_check_sps();
5084 (void)compile_cap_prog(curbuf);
5085 #endif
5086 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
5087 (void)opt_strings_flags(p_toolbar, p_toolbar_values, &toolbar_flags, TRUE);
5088 #endif
5089 #if defined(FEAT_TOOLBAR) && defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)
5090 (void)opt_strings_flags(p_tbis, p_tbis_values, &tbis_flags, FALSE);
5091 #endif
5092 #ifdef FEAT_CMDWIN
5093 /* set cedit_key */
5094 (void)check_cedit();
5095 #endif
5099 * Check for string options that are NULL (normally only termcap options).
5101 void
5102 check_options()
5104 int opt_idx;
5106 for (opt_idx = 0; options[opt_idx].fullname != NULL; opt_idx++)
5107 if ((options[opt_idx].flags & P_STRING) && options[opt_idx].var != NULL)
5108 check_string_option((char_u **)get_varp(&(options[opt_idx])));
5112 * Check string options in a buffer for NULL value.
5114 void
5115 check_buf_options(buf)
5116 buf_T *buf;
5118 #if defined(FEAT_QUICKFIX)
5119 check_string_option(&buf->b_p_bh);
5120 check_string_option(&buf->b_p_bt);
5121 #endif
5122 #ifdef FEAT_MBYTE
5123 check_string_option(&buf->b_p_fenc);
5124 #endif
5125 check_string_option(&buf->b_p_ff);
5126 #ifdef FEAT_FIND_ID
5127 check_string_option(&buf->b_p_def);
5128 check_string_option(&buf->b_p_inc);
5129 # ifdef FEAT_EVAL
5130 check_string_option(&buf->b_p_inex);
5131 # endif
5132 #endif
5133 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
5134 check_string_option(&buf->b_p_inde);
5135 check_string_option(&buf->b_p_indk);
5136 #endif
5137 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
5138 check_string_option(&buf->b_p_bexpr);
5139 #endif
5140 #if defined(FEAT_EVAL)
5141 check_string_option(&buf->b_p_fex);
5142 #endif
5143 #ifdef FEAT_CRYPT
5144 check_string_option(&buf->b_p_key);
5145 #endif
5146 check_string_option(&buf->b_p_kp);
5147 check_string_option(&buf->b_p_mps);
5148 check_string_option(&buf->b_p_fo);
5149 check_string_option(&buf->b_p_flp);
5150 check_string_option(&buf->b_p_isk);
5151 #ifdef FEAT_COMMENTS
5152 check_string_option(&buf->b_p_com);
5153 #endif
5154 #ifdef FEAT_FOLDING
5155 check_string_option(&buf->b_p_cms);
5156 #endif
5157 check_string_option(&buf->b_p_nf);
5158 #ifdef FEAT_TEXTOBJ
5159 check_string_option(&buf->b_p_qe);
5160 #endif
5161 #ifdef FEAT_SYN_HL
5162 check_string_option(&buf->b_p_syn);
5163 #endif
5164 #ifdef FEAT_SPELL
5165 check_string_option(&buf->b_p_spc);
5166 check_string_option(&buf->b_p_spf);
5167 check_string_option(&buf->b_p_spl);
5168 #endif
5169 #ifdef FEAT_SEARCHPATH
5170 check_string_option(&buf->b_p_sua);
5171 #endif
5172 #ifdef FEAT_CINDENT
5173 check_string_option(&buf->b_p_cink);
5174 check_string_option(&buf->b_p_cino);
5175 #endif
5176 #ifdef FEAT_AUTOCMD
5177 check_string_option(&buf->b_p_ft);
5178 #endif
5179 #ifdef FEAT_OSFILETYPE
5180 check_string_option(&buf->b_p_oft);
5181 #endif
5182 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
5183 check_string_option(&buf->b_p_cinw);
5184 #endif
5185 #ifdef FEAT_INS_EXPAND
5186 check_string_option(&buf->b_p_cpt);
5187 #endif
5188 #ifdef FEAT_COMPL_FUNC
5189 check_string_option(&buf->b_p_cfu);
5190 check_string_option(&buf->b_p_ofu);
5191 #endif
5192 #ifdef FEAT_KEYMAP
5193 check_string_option(&buf->b_p_keymap);
5194 #endif
5195 #ifdef FEAT_QUICKFIX
5196 check_string_option(&buf->b_p_gp);
5197 check_string_option(&buf->b_p_mp);
5198 check_string_option(&buf->b_p_efm);
5199 #endif
5200 check_string_option(&buf->b_p_ep);
5201 check_string_option(&buf->b_p_path);
5202 check_string_option(&buf->b_p_tags);
5203 #ifdef FEAT_INS_EXPAND
5204 check_string_option(&buf->b_p_dict);
5205 check_string_option(&buf->b_p_tsr);
5206 #endif
5210 * Free the string allocated for an option.
5211 * Checks for the string being empty_option. This may happen if we're out of
5212 * memory, vim_strsave() returned NULL, which was replaced by empty_option by
5213 * check_options().
5214 * Does NOT check for P_ALLOCED flag!
5216 void
5217 free_string_option(p)
5218 char_u *p;
5220 if (p != empty_option)
5221 vim_free(p);
5224 void
5225 clear_string_option(pp)
5226 char_u **pp;
5228 if (*pp != empty_option)
5229 vim_free(*pp);
5230 *pp = empty_option;
5233 static void
5234 check_string_option(pp)
5235 char_u **pp;
5237 if (*pp == NULL)
5238 *pp = empty_option;
5242 * Mark a terminal option as allocated, found by a pointer into term_strings[].
5244 void
5245 set_term_option_alloced(p)
5246 char_u **p;
5248 int opt_idx;
5250 for (opt_idx = 1; options[opt_idx].fullname != NULL; opt_idx++)
5251 if (options[opt_idx].var == (char_u *)p)
5253 options[opt_idx].flags |= P_ALLOCED;
5254 return;
5256 return; /* cannot happen: didn't find it! */
5259 #if defined(FEAT_EVAL) || defined(PROTO)
5261 * Return TRUE when option "opt" was set from a modeline or in secure mode.
5262 * Return FALSE when it wasn't.
5263 * Return -1 for an unknown option.
5266 was_set_insecurely(opt, opt_flags)
5267 char_u *opt;
5268 int opt_flags;
5270 int idx = findoption(opt);
5271 long_u *flagp;
5273 if (idx >= 0)
5275 flagp = insecure_flag(idx, opt_flags);
5276 return (*flagp & P_INSECURE) != 0;
5278 EMSG2(_(e_intern2), "was_set_insecurely()");
5279 return -1;
5283 * Get a pointer to the flags used for the P_INSECURE flag of option
5284 * "opt_idx". For some local options a local flags field is used.
5286 static long_u *
5287 insecure_flag(opt_idx, opt_flags)
5288 int opt_idx;
5289 int opt_flags;
5291 if (opt_flags & OPT_LOCAL)
5292 switch ((int)options[opt_idx].indir)
5294 #ifdef FEAT_STL_OPT
5295 case PV_STL: return &curwin->w_p_stl_flags;
5296 #endif
5297 #ifdef FEAT_EVAL
5298 # ifdef FEAT_FOLDING
5299 case PV_FDE: return &curwin->w_p_fde_flags;
5300 case PV_FDT: return &curwin->w_p_fdt_flags;
5301 # endif
5302 # ifdef FEAT_BEVAL
5303 case PV_BEXPR: return &curbuf->b_p_bexpr_flags;
5304 # endif
5305 # if defined(FEAT_CINDENT)
5306 case PV_INDE: return &curbuf->b_p_inde_flags;
5307 # endif
5308 case PV_FEX: return &curbuf->b_p_fex_flags;
5309 # ifdef FEAT_FIND_ID
5310 case PV_INEX: return &curbuf->b_p_inex_flags;
5311 # endif
5312 #endif
5315 /* Nothing special, return global flags field. */
5316 return &options[opt_idx].flags;
5318 #endif
5320 #ifdef FEAT_TITLE
5321 static void redraw_titles __ARGS((void));
5324 * Redraw the window title and/or tab page text later.
5326 static void redraw_titles()
5328 need_maketitle = TRUE;
5329 # ifdef FEAT_WINDOWS
5330 redraw_tabline = TRUE;
5331 # endif
5333 #endif
5336 * Set a string option to a new value (without checking the effect).
5337 * The string is copied into allocated memory.
5338 * if ("opt_idx" == -1) "name" is used, otherwise "opt_idx" is used.
5339 * When "set_sid" is zero set the scriptID to current_SID. When "set_sid" is
5340 * SID_NONE don't set the scriptID. Otherwise set the scriptID to "set_sid".
5342 void
5343 set_string_option_direct(name, opt_idx, val, opt_flags, set_sid)
5344 char_u *name;
5345 int opt_idx;
5346 char_u *val;
5347 int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */
5348 int set_sid UNUSED;
5350 char_u *s;
5351 char_u **varp;
5352 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
5353 int idx = opt_idx;
5355 if (idx == -1) /* use name */
5357 idx = findoption(name);
5358 if (idx < 0) /* not found (should not happen) */
5360 EMSG2(_(e_intern2), "set_string_option_direct()");
5361 return;
5365 if (options[idx].var == NULL) /* can't set hidden option */
5366 return;
5368 s = vim_strsave(val);
5369 if (s != NULL)
5371 varp = (char_u **)get_varp_scope(&(options[idx]),
5372 both ? OPT_LOCAL : opt_flags);
5373 if ((opt_flags & OPT_FREE) && (options[idx].flags & P_ALLOCED))
5374 free_string_option(*varp);
5375 *varp = s;
5377 /* For buffer/window local option may also set the global value. */
5378 if (both)
5379 set_string_option_global(idx, varp);
5381 options[idx].flags |= P_ALLOCED;
5383 /* When setting both values of a global option with a local value,
5384 * make the local value empty, so that the global value is used. */
5385 if (((int)options[idx].indir & PV_BOTH) && both)
5387 free_string_option(*varp);
5388 *varp = empty_option;
5390 # ifdef FEAT_EVAL
5391 if (set_sid != SID_NONE)
5392 set_option_scriptID_idx(idx, opt_flags,
5393 set_sid == 0 ? current_SID : set_sid);
5394 # endif
5399 * Set global value for string option when it's a local option.
5401 static void
5402 set_string_option_global(opt_idx, varp)
5403 int opt_idx; /* option index */
5404 char_u **varp; /* pointer to option variable */
5406 char_u **p, *s;
5408 /* the global value is always allocated */
5409 if (options[opt_idx].var == VAR_WIN)
5410 p = (char_u **)GLOBAL_WO(varp);
5411 else
5412 p = (char_u **)options[opt_idx].var;
5413 if (options[opt_idx].indir != PV_NONE
5414 && p != varp
5415 && (s = vim_strsave(*varp)) != NULL)
5417 free_string_option(*p);
5418 *p = s;
5423 * Set a string option to a new value, and handle the effects.
5425 static void
5426 set_string_option(opt_idx, value, opt_flags)
5427 int opt_idx;
5428 char_u *value;
5429 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
5431 char_u *s;
5432 char_u **varp;
5433 char_u *oldval;
5435 if (options[opt_idx].var == NULL) /* don't set hidden option */
5436 return;
5438 s = vim_strsave(value);
5439 if (s != NULL)
5441 varp = (char_u **)get_varp_scope(&(options[opt_idx]),
5442 (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
5443 ? (((int)options[opt_idx].indir & PV_BOTH)
5444 ? OPT_GLOBAL : OPT_LOCAL)
5445 : opt_flags);
5446 oldval = *varp;
5447 *varp = s;
5448 if (did_set_string_option(opt_idx, varp, TRUE, oldval, NULL,
5449 opt_flags) == NULL)
5450 did_set_option(opt_idx, opt_flags, TRUE);
5455 * Handle string options that need some action to perform when changed.
5456 * Returns NULL for success, or an error message for an error.
5458 static char_u *
5459 did_set_string_option(opt_idx, varp, new_value_alloced, oldval, errbuf,
5460 opt_flags)
5461 int opt_idx; /* index in options[] table */
5462 char_u **varp; /* pointer to the option variable */
5463 int new_value_alloced; /* new value was allocated */
5464 char_u *oldval; /* previous value of the option */
5465 char_u *errbuf; /* buffer for errors, or NULL */
5466 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
5468 char_u *errmsg = NULL;
5469 char_u *s, *p;
5470 int did_chartab = FALSE;
5471 char_u **gvarp;
5472 long_u free_oldval = (options[opt_idx].flags & P_ALLOCED);
5473 #ifdef FEAT_GUI
5474 /* set when changing an option that only requires a redraw in the GUI */
5475 int redraw_gui_only = FALSE;
5476 #endif
5478 /* Get the global option to compare with, otherwise we would have to check
5479 * two values for all local options. */
5480 gvarp = (char_u **)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL);
5482 /* Disallow changing some options from secure mode */
5483 if ((secure
5484 #ifdef HAVE_SANDBOX
5485 || sandbox != 0
5486 #endif
5487 ) && (options[opt_idx].flags & P_SECURE))
5489 errmsg = e_secure;
5492 /* Check for a "normal" file name in some options. Disallow a path
5493 * separator (slash and/or backslash), wildcards and characters that are
5494 * often illegal in a file name. */
5495 else if ((options[opt_idx].flags & P_NFNAME)
5496 && vim_strpbrk(*varp, (char_u *)"/\\*?[|<>") != NULL)
5498 errmsg = e_invarg;
5501 /* 'term' */
5502 else if (varp == &T_NAME)
5504 if (T_NAME[0] == NUL)
5505 errmsg = (char_u *)N_("E529: Cannot set 'term' to empty string");
5506 #ifdef FEAT_GUI
5507 if (gui.in_use)
5508 errmsg = (char_u *)N_("E530: Cannot change term in GUI");
5509 else if (term_is_gui(T_NAME))
5510 errmsg = (char_u *)N_("E531: Use \":gui\" to start the GUI");
5511 #endif
5512 else if (set_termname(T_NAME) == FAIL)
5513 errmsg = (char_u *)N_("E522: Not found in termcap");
5514 else
5515 /* Screen colors may have changed. */
5516 redraw_later_clear();
5519 /* 'backupcopy' */
5520 else if (varp == &p_bkc)
5522 if (opt_strings_flags(p_bkc, p_bkc_values, &bkc_flags, TRUE) != OK)
5523 errmsg = e_invarg;
5524 if (((bkc_flags & BKC_AUTO) != 0)
5525 + ((bkc_flags & BKC_YES) != 0)
5526 + ((bkc_flags & BKC_NO) != 0) != 1)
5528 /* Must have exactly one of "auto", "yes" and "no". */
5529 (void)opt_strings_flags(oldval, p_bkc_values, &bkc_flags, TRUE);
5530 errmsg = e_invarg;
5534 /* 'backupext' and 'patchmode' */
5535 else if (varp == &p_bex || varp == &p_pm)
5537 if (STRCMP(*p_bex == '.' ? p_bex + 1 : p_bex,
5538 *p_pm == '.' ? p_pm + 1 : p_pm) == 0)
5539 errmsg = (char_u *)N_("E589: 'backupext' and 'patchmode' are equal");
5543 * 'isident', 'iskeyword', 'isprint or 'isfname' option: refill chartab[]
5544 * If the new option is invalid, use old value. 'lisp' option: refill
5545 * chartab[] for '-' char
5547 else if ( varp == &p_isi
5548 || varp == &(curbuf->b_p_isk)
5549 || varp == &p_isp
5550 || varp == &p_isf)
5552 if (init_chartab() == FAIL)
5554 did_chartab = TRUE; /* need to restore it below */
5555 errmsg = e_invarg; /* error in value */
5559 /* 'helpfile' */
5560 else if (varp == &p_hf)
5562 /* May compute new values for $VIM and $VIMRUNTIME */
5563 if (didset_vim)
5565 vim_setenv((char_u *)"VIM", (char_u *)"");
5566 didset_vim = FALSE;
5568 if (didset_vimruntime)
5570 vim_setenv((char_u *)"VIMRUNTIME", (char_u *)"");
5571 didset_vimruntime = FALSE;
5575 #ifdef FEAT_MULTI_LANG
5576 /* 'helplang' */
5577 else if (varp == &p_hlg)
5579 /* Check for "", "ab", "ab,cd", etc. */
5580 for (s = p_hlg; *s != NUL; s += 3)
5582 if (s[1] == NUL || ((s[2] != ',' || s[3] == NUL) && s[2] != NUL))
5584 errmsg = e_invarg;
5585 break;
5587 if (s[2] == NUL)
5588 break;
5591 #endif
5593 /* 'highlight' */
5594 else if (varp == &p_hl)
5596 if (highlight_changed() == FAIL)
5597 errmsg = e_invarg; /* invalid flags */
5600 /* 'nrformats' */
5601 else if (gvarp == &p_nf)
5603 if (check_opt_strings(*varp, p_nf_values, TRUE) != OK)
5604 errmsg = e_invarg;
5607 #ifdef FEAT_SESSION
5608 /* 'sessionoptions' */
5609 else if (varp == &p_ssop)
5611 if (opt_strings_flags(p_ssop, p_ssop_values, &ssop_flags, TRUE) != OK)
5612 errmsg = e_invarg;
5613 if ((ssop_flags & SSOP_CURDIR) && (ssop_flags & SSOP_SESDIR))
5615 /* Don't allow both "sesdir" and "curdir". */
5616 (void)opt_strings_flags(oldval, p_ssop_values, &ssop_flags, TRUE);
5617 errmsg = e_invarg;
5620 /* 'viewoptions' */
5621 else if (varp == &p_vop)
5623 if (opt_strings_flags(p_vop, p_ssop_values, &vop_flags, TRUE) != OK)
5624 errmsg = e_invarg;
5626 #endif
5628 /* 'scrollopt' */
5629 #ifdef FEAT_SCROLLBIND
5630 else if (varp == &p_sbo)
5632 if (check_opt_strings(p_sbo, p_scbopt_values, TRUE) != OK)
5633 errmsg = e_invarg;
5635 #endif
5637 /* 'ambiwidth' */
5638 #ifdef FEAT_MBYTE
5639 else if (varp == &p_ambw)
5641 if (check_opt_strings(p_ambw, p_ambw_values, FALSE) != OK)
5642 errmsg = e_invarg;
5644 #endif
5646 /* 'background' */
5647 else if (varp == &p_bg)
5649 if (check_opt_strings(p_bg, p_bg_values, FALSE) == OK)
5651 #ifdef FEAT_EVAL
5652 int dark = (*p_bg == 'd');
5653 #endif
5655 init_highlight(FALSE, FALSE);
5657 #ifdef FEAT_EVAL
5658 if (dark != (*p_bg == 'd')
5659 && get_var_value((char_u *)"g:colors_name") != NULL)
5661 /* The color scheme must have set 'background' back to another
5662 * value, that's not what we want here. Disable the color
5663 * scheme and set the colors again. */
5664 do_unlet((char_u *)"g:colors_name", TRUE);
5665 free_string_option(p_bg);
5666 p_bg = vim_strsave((char_u *)(dark ? "dark" : "light"));
5667 check_string_option(&p_bg);
5668 init_highlight(FALSE, FALSE);
5670 #endif
5672 else
5673 errmsg = e_invarg;
5676 /* 'wildmode' */
5677 else if (varp == &p_wim)
5679 if (check_opt_wim() == FAIL)
5680 errmsg = e_invarg;
5683 #ifdef FEAT_CMDL_COMPL
5684 /* 'wildoptions' */
5685 else if (varp == &p_wop)
5687 if (check_opt_strings(p_wop, p_wop_values, TRUE) != OK)
5688 errmsg = e_invarg;
5690 #endif
5692 #ifdef FEAT_WAK
5693 /* 'winaltkeys' */
5694 else if (varp == &p_wak)
5696 if (*p_wak == NUL
5697 || check_opt_strings(p_wak, p_wak_values, FALSE) != OK)
5698 errmsg = e_invarg;
5699 # ifdef FEAT_MENU
5700 # ifdef FEAT_GUI_MOTIF
5701 else if (gui.in_use)
5702 gui_motif_set_mnemonics(p_wak[0] == 'y' || p_wak[0] == 'm');
5703 # else
5704 # ifdef FEAT_GUI_GTK
5705 else if (gui.in_use)
5706 gui_gtk_set_mnemonics(p_wak[0] == 'y' || p_wak[0] == 'm');
5707 # endif
5708 # endif
5709 # endif
5711 #endif
5713 #ifdef FEAT_AUTOCMD
5714 /* 'eventignore' */
5715 else if (varp == &p_ei)
5717 if (check_ei() == FAIL)
5718 errmsg = e_invarg;
5720 #endif
5722 #ifdef FEAT_MBYTE
5723 /* 'encoding' and 'fileencoding' */
5724 else if (varp == &p_enc || gvarp == &p_fenc || varp == &p_tenc)
5726 if (gvarp == &p_fenc)
5728 if (!curbuf->b_p_ma && opt_flags != OPT_GLOBAL)
5729 errmsg = e_modifiable;
5730 else if (vim_strchr(*varp, ',') != NULL)
5731 /* No comma allowed in 'fileencoding'; catches confusing it
5732 * with 'fileencodings'. */
5733 errmsg = e_invarg;
5734 else
5736 # ifdef FEAT_TITLE
5737 /* May show a "+" in the title now. */
5738 redraw_titles();
5739 # endif
5740 /* Add 'fileencoding' to the swap file. */
5741 ml_setflags(curbuf);
5744 if (errmsg == NULL)
5746 /* canonize the value, so that STRCMP() can be used on it */
5747 p = enc_canonize(*varp);
5748 if (p != NULL)
5750 vim_free(*varp);
5751 *varp = p;
5753 if (varp == &p_enc)
5755 errmsg = mb_init();
5756 # ifdef FEAT_TITLE
5757 redraw_titles();
5758 # endif
5762 # if defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)
5763 if (errmsg == NULL && varp == &p_tenc && gui.in_use)
5765 /* GTK+ 2 uses only a single encoding, and that is UTF-8. */
5766 if (STRCMP(p_tenc, "utf-8") != 0)
5767 errmsg = (char_u *)N_("E617: Cannot be changed in the GTK+ 2 GUI");
5769 # endif
5771 if (errmsg == NULL)
5773 # ifdef FEAT_KEYMAP
5774 /* When 'keymap' is used and 'encoding' changes, reload the keymap
5775 * (with another encoding). */
5776 if (varp == &p_enc && *curbuf->b_p_keymap != NUL)
5777 (void)keymap_init();
5778 # endif
5780 /* When 'termencoding' is not empty and 'encoding' changes or when
5781 * 'termencoding' changes, need to setup for keyboard input and
5782 * display output conversion. */
5783 if (((varp == &p_enc && *p_tenc != NUL) || varp == &p_tenc))
5785 convert_setup(&input_conv, p_tenc, p_enc);
5786 convert_setup(&output_conv, p_enc, p_tenc);
5789 # if defined(WIN3264) && defined(FEAT_MBYTE)
5790 /* $HOME may have characters in active code page. */
5791 if (varp == &p_enc)
5792 init_homedir();
5793 # endif
5796 #endif
5798 #if defined(FEAT_POSTSCRIPT)
5799 else if (varp == &p_penc)
5801 /* Canonize printencoding if VIM standard one */
5802 p = enc_canonize(p_penc);
5803 if (p != NULL)
5805 vim_free(p_penc);
5806 p_penc = p;
5808 else
5810 /* Ensure lower case and '-' for '_' */
5811 for (s = p_penc; *s != NUL; s++)
5813 if (*s == '_')
5814 *s = '-';
5815 else
5816 *s = TOLOWER_ASC(*s);
5820 #endif
5822 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
5823 else if (varp == &p_imak)
5825 if (gui.in_use && !im_xim_isvalid_imactivate())
5826 errmsg = e_invarg;
5828 #endif
5830 #ifdef FEAT_KEYMAP
5831 else if (varp == &curbuf->b_p_keymap)
5833 /* load or unload key mapping tables */
5834 errmsg = keymap_init();
5836 if (errmsg == NULL)
5838 if (*curbuf->b_p_keymap != NUL)
5840 /* Installed a new keymap, switch on using it. */
5841 curbuf->b_p_iminsert = B_IMODE_LMAP;
5842 if (curbuf->b_p_imsearch != B_IMODE_USE_INSERT)
5843 curbuf->b_p_imsearch = B_IMODE_LMAP;
5845 else
5847 /* Cleared the keymap, may reset 'iminsert' and 'imsearch'. */
5848 if (curbuf->b_p_iminsert == B_IMODE_LMAP)
5849 curbuf->b_p_iminsert = B_IMODE_NONE;
5850 if (curbuf->b_p_imsearch == B_IMODE_LMAP)
5851 curbuf->b_p_imsearch = B_IMODE_USE_INSERT;
5853 if ((opt_flags & OPT_LOCAL) == 0)
5855 set_iminsert_global();
5856 set_imsearch_global();
5858 # ifdef FEAT_WINDOWS
5859 status_redraw_curbuf();
5860 # endif
5863 #endif
5865 /* 'fileformat' */
5866 else if (gvarp == &p_ff)
5868 if (!curbuf->b_p_ma && !(opt_flags & OPT_GLOBAL))
5869 errmsg = e_modifiable;
5870 else if (check_opt_strings(*varp, p_ff_values, FALSE) != OK)
5871 errmsg = e_invarg;
5872 else
5874 /* may also change 'textmode' */
5875 if (get_fileformat(curbuf) == EOL_DOS)
5876 curbuf->b_p_tx = TRUE;
5877 else
5878 curbuf->b_p_tx = FALSE;
5879 #ifdef FEAT_TITLE
5880 redraw_titles();
5881 #endif
5882 /* update flag in swap file */
5883 ml_setflags(curbuf);
5884 /* Redraw needed when switching to/from "mac": a CR in the text
5885 * will be displayed differently. */
5886 if (get_fileformat(curbuf) == EOL_MAC || *oldval == 'm')
5887 redraw_curbuf_later(NOT_VALID);
5891 /* 'fileformats' */
5892 else if (varp == &p_ffs)
5894 if (check_opt_strings(p_ffs, p_ff_values, TRUE) != OK)
5895 errmsg = e_invarg;
5896 else
5898 /* also change 'textauto' */
5899 if (*p_ffs == NUL)
5900 p_ta = FALSE;
5901 else
5902 p_ta = TRUE;
5906 #if defined(FEAT_CRYPT) && defined(FEAT_CMDHIST)
5907 /* 'cryptkey' */
5908 else if (gvarp == &p_key)
5910 /* Make sure the ":set" command doesn't show the new value in the
5911 * history. */
5912 remove_key_from_history();
5914 #endif
5916 /* 'matchpairs' */
5917 else if (gvarp == &p_mps)
5919 /* Check for "x:y,x:y" */
5920 for (p = *varp; *p != NUL; p += 4)
5922 if (p[1] != ':' || p[2] == NUL || (p[3] != NUL && p[3] != ','))
5924 errmsg = e_invarg;
5925 break;
5927 if (p[3] == NUL)
5928 break;
5932 #ifdef FEAT_COMMENTS
5933 /* 'comments' */
5934 else if (gvarp == &p_com)
5936 for (s = *varp; *s; )
5938 while (*s && *s != ':')
5940 if (vim_strchr((char_u *)COM_ALL, *s) == NULL
5941 && !VIM_ISDIGIT(*s) && *s != '-')
5943 errmsg = illegal_char(errbuf, *s);
5944 break;
5946 ++s;
5948 if (*s++ == NUL)
5949 errmsg = (char_u *)N_("E524: Missing colon");
5950 else if (*s == ',' || *s == NUL)
5951 errmsg = (char_u *)N_("E525: Zero length string");
5952 if (errmsg != NULL)
5953 break;
5954 while (*s && *s != ',')
5956 if (*s == '\\' && s[1] != NUL)
5957 ++s;
5958 ++s;
5960 s = skip_to_option_part(s);
5963 #endif
5965 /* 'listchars' */
5966 else if (varp == &p_lcs)
5968 errmsg = set_chars_option(varp);
5971 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
5972 /* 'fillchars' */
5973 else if (varp == &p_fcs)
5975 errmsg = set_chars_option(varp);
5977 #endif
5979 #ifdef FEAT_CMDWIN
5980 /* 'cedit' */
5981 else if (varp == &p_cedit)
5983 errmsg = check_cedit();
5985 #endif
5987 /* 'verbosefile' */
5988 else if (varp == &p_vfile)
5990 verbose_stop();
5991 if (*p_vfile != NUL && verbose_open() == FAIL)
5992 errmsg = e_invarg;
5995 #ifdef FEAT_VIMINFO
5996 /* 'viminfo' */
5997 else if (varp == &p_viminfo)
5999 for (s = p_viminfo; *s;)
6001 /* Check it's a valid character */
6002 if (vim_strchr((char_u *)"!\"%'/:<@cfhnrs", *s) == NULL)
6004 errmsg = illegal_char(errbuf, *s);
6005 break;
6007 if (*s == 'n') /* name is always last one */
6009 break;
6011 else if (*s == 'r') /* skip until next ',' */
6013 while (*++s && *s != ',')
6016 else if (*s == '%')
6018 /* optional number */
6019 while (vim_isdigit(*++s))
6022 else if (*s == '!' || *s == 'h' || *s == 'c')
6023 ++s; /* no extra chars */
6024 else /* must have a number */
6026 while (vim_isdigit(*++s))
6029 if (!VIM_ISDIGIT(*(s - 1)))
6031 if (errbuf != NULL)
6033 sprintf((char *)errbuf,
6034 _("E526: Missing number after <%s>"),
6035 transchar_byte(*(s - 1)));
6036 errmsg = errbuf;
6038 else
6039 errmsg = (char_u *)"";
6040 break;
6043 if (*s == ',')
6044 ++s;
6045 else if (*s)
6047 if (errbuf != NULL)
6048 errmsg = (char_u *)N_("E527: Missing comma");
6049 else
6050 errmsg = (char_u *)"";
6051 break;
6054 if (*p_viminfo && errmsg == NULL && get_viminfo_parameter('\'') < 0)
6055 errmsg = (char_u *)N_("E528: Must specify a ' value");
6057 #endif /* FEAT_VIMINFO */
6059 /* terminal options */
6060 else if (istermoption(&options[opt_idx]) && full_screen)
6062 /* ":set t_Co=0" and ":set t_Co=1" do ":set t_Co=" */
6063 if (varp == &T_CCO)
6065 int colors = atoi((char *)T_CCO);
6067 /* Only reinitialize colors if t_Co value has really changed to
6068 * avoid expensive reload of colorscheme if t_Co is set to the
6069 * same value multiple times. */
6070 if (colors != t_colors)
6072 t_colors = colors;
6073 if (t_colors <= 1)
6075 if (new_value_alloced)
6076 vim_free(T_CCO);
6077 T_CCO = empty_option;
6079 /* We now have a different color setup, initialize it again. */
6080 init_highlight(TRUE, FALSE);
6083 ttest(FALSE);
6084 if (varp == &T_ME)
6086 out_str(T_ME);
6087 redraw_later(CLEAR);
6088 #if defined(MSDOS) || (defined(WIN3264) && !defined(FEAT_GUI_W32))
6089 /* Since t_me has been set, this probably means that the user
6090 * wants to use this as default colors. Need to reset default
6091 * background/foreground colors. */
6092 mch_set_normal_colors();
6093 #endif
6097 #ifdef FEAT_LINEBREAK
6098 /* 'showbreak' */
6099 else if (varp == &p_sbr)
6101 for (s = p_sbr; *s; )
6103 if (ptr2cells(s) != 1)
6104 errmsg = (char_u *)N_("E595: contains unprintable or wide character");
6105 mb_ptr_adv(s);
6108 #endif
6110 #ifdef FEAT_GUI
6111 /* 'guifont' */
6112 else if (varp == &p_guifont)
6114 if (gui.in_use)
6116 p = p_guifont;
6117 # if defined(FEAT_GUI_GTK)
6119 * Put up a font dialog and let the user select a new value.
6120 * If this is cancelled go back to the old value but don't
6121 * give an error message.
6123 if (STRCMP(p, "*") == 0)
6125 p = gui_mch_font_dialog(oldval);
6127 if (new_value_alloced)
6128 free_string_option(p_guifont);
6130 p_guifont = (p != NULL) ? p : vim_strsave(oldval);
6131 new_value_alloced = TRUE;
6133 # endif
6134 if (p != NULL && gui_init_font(p_guifont, FALSE) != OK)
6136 # if defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_PHOTON)
6137 if (STRCMP(p_guifont, "*") == 0)
6139 /* Dialog was cancelled: Keep the old value without giving
6140 * an error message. */
6141 if (new_value_alloced)
6142 free_string_option(p_guifont);
6143 p_guifont = vim_strsave(oldval);
6144 new_value_alloced = TRUE;
6146 else
6147 # endif
6148 errmsg = (char_u *)N_("E596: Invalid font(s)");
6151 redraw_gui_only = TRUE;
6153 # ifdef FEAT_XFONTSET
6154 else if (varp == &p_guifontset)
6156 if (STRCMP(p_guifontset, "*") == 0)
6157 errmsg = (char_u *)N_("E597: can't select fontset");
6158 else if (gui.in_use && gui_init_font(p_guifontset, TRUE) != OK)
6159 errmsg = (char_u *)N_("E598: Invalid fontset");
6160 redraw_gui_only = TRUE;
6162 # endif
6163 # ifdef FEAT_MBYTE
6164 else if (varp == &p_guifontwide)
6166 if (STRCMP(p_guifontwide, "*") == 0)
6167 errmsg = (char_u *)N_("E533: can't select wide font");
6168 else if (gui_get_wide_font() == FAIL)
6169 errmsg = (char_u *)N_("E534: Invalid wide font");
6170 redraw_gui_only = TRUE;
6172 # endif
6173 #endif
6175 #ifdef CURSOR_SHAPE
6176 /* 'guicursor' */
6177 else if (varp == &p_guicursor)
6178 errmsg = parse_shape_opt(SHAPE_CURSOR);
6179 #endif
6181 #ifdef FEAT_MOUSESHAPE
6182 /* 'mouseshape' */
6183 else if (varp == &p_mouseshape)
6185 errmsg = parse_shape_opt(SHAPE_MOUSE);
6186 update_mouseshape(-1);
6188 #endif
6190 #ifdef FEAT_PRINTER
6191 else if (varp == &p_popt)
6192 errmsg = parse_printoptions();
6193 # if defined(FEAT_MBYTE) && defined(FEAT_POSTSCRIPT)
6194 else if (varp == &p_pmfn)
6195 errmsg = parse_printmbfont();
6196 # endif
6197 #endif
6199 #ifdef FEAT_LANGMAP
6200 /* 'langmap' */
6201 else if (varp == &p_langmap)
6202 langmap_set();
6203 #endif
6205 #ifdef FEAT_LINEBREAK
6206 /* 'breakat' */
6207 else if (varp == &p_breakat)
6208 fill_breakat_flags();
6209 #endif
6211 #ifdef FEAT_TITLE
6212 /* 'titlestring' and 'iconstring' */
6213 else if (varp == &p_titlestring || varp == &p_iconstring)
6215 # ifdef FEAT_STL_OPT
6216 int flagval = (varp == &p_titlestring) ? STL_IN_TITLE : STL_IN_ICON;
6218 /* NULL => statusline syntax */
6219 if (vim_strchr(*varp, '%') && check_stl_option(*varp) == NULL)
6220 stl_syntax |= flagval;
6221 else
6222 stl_syntax &= ~flagval;
6223 # endif
6224 did_set_title(varp == &p_iconstring);
6227 #endif
6229 #ifdef FEAT_GUI
6230 /* 'guioptions' */
6231 else if (varp == &p_go)
6233 gui_init_which_components(oldval);
6234 redraw_gui_only = TRUE;
6236 #endif
6238 #if defined(FEAT_GUI_TABLINE)
6239 /* 'guitablabel' */
6240 else if (varp == &p_gtl)
6242 redraw_tabline = TRUE;
6243 redraw_gui_only = TRUE;
6245 /* 'guitabtooltip' */
6246 else if (varp == &p_gtt)
6248 redraw_gui_only = TRUE;
6250 #endif
6252 #if defined(FEAT_MOUSE_TTY) && (defined(UNIX) || defined(VMS))
6253 /* 'ttymouse' */
6254 else if (varp == &p_ttym)
6256 /* Switch the mouse off before changing the escape sequences used for
6257 * that. */
6258 mch_setmouse(FALSE);
6259 if (opt_strings_flags(p_ttym, p_ttym_values, &ttym_flags, FALSE) != OK)
6260 errmsg = e_invarg;
6261 else
6262 check_mouse_termcode();
6263 if (termcap_active)
6264 setmouse(); /* may switch it on again */
6266 #endif
6268 #ifdef FEAT_VISUAL
6269 /* 'selection' */
6270 else if (varp == &p_sel)
6272 if (*p_sel == NUL
6273 || check_opt_strings(p_sel, p_sel_values, FALSE) != OK)
6274 errmsg = e_invarg;
6277 /* 'selectmode' */
6278 else if (varp == &p_slm)
6280 if (check_opt_strings(p_slm, p_slm_values, TRUE) != OK)
6281 errmsg = e_invarg;
6283 #endif
6285 #ifdef FEAT_BROWSE
6286 /* 'browsedir' */
6287 else if (varp == &p_bsdir)
6289 if (check_opt_strings(p_bsdir, p_bsdir_values, FALSE) != OK
6290 && !mch_isdir(p_bsdir))
6291 errmsg = e_invarg;
6293 #endif
6295 #ifdef FEAT_VISUAL
6296 /* 'keymodel' */
6297 else if (varp == &p_km)
6299 if (check_opt_strings(p_km, p_km_values, TRUE) != OK)
6300 errmsg = e_invarg;
6301 else
6303 km_stopsel = (vim_strchr(p_km, 'o') != NULL);
6304 km_startsel = (vim_strchr(p_km, 'a') != NULL);
6307 #endif
6309 /* 'mousemodel' */
6310 else if (varp == &p_mousem)
6312 if (check_opt_strings(p_mousem, p_mousem_values, FALSE) != OK)
6313 errmsg = e_invarg;
6314 #if defined(FEAT_GUI_MOTIF) && defined(FEAT_MENU) && (XmVersion <= 1002)
6315 else if (*p_mousem != *oldval)
6316 /* Changed from "extend" to "popup" or "popup_setpos" or vv: need
6317 * to create or delete the popup menus. */
6318 gui_motif_update_mousemodel(root_menu);
6319 #endif
6322 /* 'switchbuf' */
6323 else if (varp == &p_swb)
6325 if (opt_strings_flags(p_swb, p_swb_values, &swb_flags, TRUE) != OK)
6326 errmsg = e_invarg;
6329 /* 'debug' */
6330 else if (varp == &p_debug)
6332 if (check_opt_strings(p_debug, p_debug_values, TRUE) != OK)
6333 errmsg = e_invarg;
6336 /* 'display' */
6337 else if (varp == &p_dy)
6339 if (opt_strings_flags(p_dy, p_dy_values, &dy_flags, TRUE) != OK)
6340 errmsg = e_invarg;
6341 else
6342 (void)init_chartab();
6346 #ifdef FEAT_VERTSPLIT
6347 /* 'eadirection' */
6348 else if (varp == &p_ead)
6350 if (check_opt_strings(p_ead, p_ead_values, FALSE) != OK)
6351 errmsg = e_invarg;
6353 #endif
6355 #ifdef FEAT_CLIPBOARD
6356 /* 'clipboard' */
6357 else if (varp == &p_cb)
6358 errmsg = check_clipboard_option();
6359 #endif
6361 #ifdef FEAT_SPELL
6362 /* When 'spelllang' or 'spellfile' is set and there is a window for this
6363 * buffer in which 'spell' is set load the wordlists. */
6364 else if (varp == &(curbuf->b_p_spl) || varp == &(curbuf->b_p_spf))
6366 win_T *wp;
6367 int l;
6369 if (varp == &(curbuf->b_p_spf))
6371 l = (int)STRLEN(curbuf->b_p_spf);
6372 if (l > 0 && (l < 4 || STRCMP(curbuf->b_p_spf + l - 4,
6373 ".add") != 0))
6374 errmsg = e_invarg;
6377 if (errmsg == NULL)
6379 FOR_ALL_WINDOWS(wp)
6380 if (wp->w_buffer == curbuf && wp->w_p_spell)
6382 errmsg = did_set_spelllang(curbuf);
6383 # ifdef FEAT_WINDOWS
6384 break;
6385 # endif
6389 /* When 'spellcapcheck' is set compile the regexp program. */
6390 else if (varp == &(curbuf->b_p_spc))
6392 errmsg = compile_cap_prog(curbuf);
6394 /* 'spellsuggest' */
6395 else if (varp == &p_sps)
6397 if (spell_check_sps() != OK)
6398 errmsg = e_invarg;
6400 /* 'mkspellmem' */
6401 else if (varp == &p_msm)
6403 if (spell_check_msm() != OK)
6404 errmsg = e_invarg;
6406 #endif
6408 #ifdef FEAT_QUICKFIX
6409 /* When 'bufhidden' is set, check for valid value. */
6410 else if (gvarp == &p_bh)
6412 if (check_opt_strings(curbuf->b_p_bh, p_bufhidden_values, FALSE) != OK)
6413 errmsg = e_invarg;
6416 /* When 'buftype' is set, check for valid value. */
6417 else if (gvarp == &p_bt)
6419 if (check_opt_strings(curbuf->b_p_bt, p_buftype_values, FALSE) != OK)
6420 errmsg = e_invarg;
6421 else
6423 # ifdef FEAT_WINDOWS
6424 if (curwin->w_status_height)
6426 curwin->w_redr_status = TRUE;
6427 redraw_later(VALID);
6429 # endif
6430 curbuf->b_help = (curbuf->b_p_bt[0] == 'h');
6431 # ifdef FEAT_TITLE
6432 redraw_titles();
6433 # endif
6436 #endif
6438 #ifdef FEAT_STL_OPT
6439 /* 'statusline' or 'rulerformat' */
6440 else if (gvarp == &p_stl || varp == &p_ruf)
6442 int wid;
6444 if (varp == &p_ruf) /* reset ru_wid first */
6445 ru_wid = 0;
6446 s = *varp;
6447 if (varp == &p_ruf && *s == '%')
6449 /* set ru_wid if 'ruf' starts with "%99(" */
6450 if (*++s == '-') /* ignore a '-' */
6451 s++;
6452 wid = getdigits(&s);
6453 if (wid && *s == '(' && (errmsg = check_stl_option(p_ruf)) == NULL)
6454 ru_wid = wid;
6455 else
6456 errmsg = check_stl_option(p_ruf);
6458 /* check 'statusline' only if it doesn't start with "%!" */
6459 else if (varp == &p_ruf || s[0] != '%' || s[1] != '!')
6460 errmsg = check_stl_option(s);
6461 if (varp == &p_ruf && errmsg == NULL)
6462 comp_col();
6464 #endif
6466 #ifdef FEAT_INS_EXPAND
6467 /* check if it is a valid value for 'complete' -- Acevedo */
6468 else if (gvarp == &p_cpt)
6470 for (s = *varp; *s;)
6472 while(*s == ',' || *s == ' ')
6473 s++;
6474 if (!*s)
6475 break;
6476 if (vim_strchr((char_u *)".wbuksid]tU", *s) == NULL)
6478 errmsg = illegal_char(errbuf, *s);
6479 break;
6481 if (*++s != NUL && *s != ',' && *s != ' ')
6483 if (s[-1] == 'k' || s[-1] == 's')
6485 /* skip optional filename after 'k' and 's' */
6486 while (*s && *s != ',' && *s != ' ')
6488 if (*s == '\\')
6489 ++s;
6490 ++s;
6493 else
6495 if (errbuf != NULL)
6497 sprintf((char *)errbuf,
6498 _("E535: Illegal character after <%c>"),
6499 *--s);
6500 errmsg = errbuf;
6502 else
6503 errmsg = (char_u *)"";
6504 break;
6510 /* 'completeopt' */
6511 else if (varp == &p_cot)
6513 if (check_opt_strings(p_cot, p_cot_values, TRUE) != OK)
6514 errmsg = e_invarg;
6516 #endif /* FEAT_INS_EXPAND */
6519 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
6520 else if (varp == &p_toolbar)
6522 if (opt_strings_flags(p_toolbar, p_toolbar_values,
6523 &toolbar_flags, TRUE) != OK)
6524 errmsg = e_invarg;
6525 else
6527 out_flush();
6528 gui_mch_show_toolbar((toolbar_flags &
6529 (TOOLBAR_TEXT | TOOLBAR_ICONS)) != 0);
6532 #endif
6534 #if defined(FEAT_TOOLBAR) && defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)
6535 /* 'toolbariconsize': GTK+ 2 only */
6536 else if (varp == &p_tbis)
6538 if (opt_strings_flags(p_tbis, p_tbis_values, &tbis_flags, FALSE) != OK)
6539 errmsg = e_invarg;
6540 else
6542 out_flush();
6543 gui_mch_show_toolbar((toolbar_flags &
6544 (TOOLBAR_TEXT | TOOLBAR_ICONS)) != 0);
6547 #endif
6549 /* 'pastetoggle': translate key codes like in a mapping */
6550 else if (varp == &p_pt)
6552 if (*p_pt)
6554 (void)replace_termcodes(p_pt, &p, TRUE, TRUE, FALSE);
6555 if (p != NULL)
6557 if (new_value_alloced)
6558 free_string_option(p_pt);
6559 p_pt = p;
6560 new_value_alloced = TRUE;
6565 /* 'backspace' */
6566 else if (varp == &p_bs)
6568 if (VIM_ISDIGIT(*p_bs))
6570 if (*p_bs >'2' || p_bs[1] != NUL)
6571 errmsg = e_invarg;
6573 else if (check_opt_strings(p_bs, p_bs_values, TRUE) != OK)
6574 errmsg = e_invarg;
6577 #ifdef FEAT_MBYTE
6578 /* 'casemap' */
6579 else if (varp == &p_cmp)
6581 if (opt_strings_flags(p_cmp, p_cmp_values, &cmp_flags, TRUE) != OK)
6582 errmsg = e_invarg;
6584 #endif
6586 #ifdef FEAT_DIFF
6587 /* 'diffopt' */
6588 else if (varp == &p_dip)
6590 if (diffopt_changed() == FAIL)
6591 errmsg = e_invarg;
6593 #endif
6595 #ifdef FEAT_FOLDING
6596 /* 'foldmethod' */
6597 else if (gvarp == &curwin->w_allbuf_opt.wo_fdm)
6599 if (check_opt_strings(*varp, p_fdm_values, FALSE) != OK
6600 || *curwin->w_p_fdm == NUL)
6601 errmsg = e_invarg;
6602 else
6604 foldUpdateAll(curwin);
6605 if (foldmethodIsDiff(curwin))
6606 newFoldLevel();
6609 # ifdef FEAT_EVAL
6610 /* 'foldexpr' */
6611 else if (varp == &curwin->w_p_fde)
6613 if (foldmethodIsExpr(curwin))
6614 foldUpdateAll(curwin);
6616 # endif
6617 /* 'foldmarker' */
6618 else if (gvarp == &curwin->w_allbuf_opt.wo_fmr)
6620 p = vim_strchr(*varp, ',');
6621 if (p == NULL)
6622 errmsg = (char_u *)N_("E536: comma required");
6623 else if (p == *varp || p[1] == NUL)
6624 errmsg = e_invarg;
6625 else if (foldmethodIsMarker(curwin))
6626 foldUpdateAll(curwin);
6628 /* 'commentstring' */
6629 else if (gvarp == &p_cms)
6631 if (**varp != NUL && strstr((char *)*varp, "%s") == NULL)
6632 errmsg = (char_u *)N_("E537: 'commentstring' must be empty or contain %s");
6634 /* 'foldopen' */
6635 else if (varp == &p_fdo)
6637 if (opt_strings_flags(p_fdo, p_fdo_values, &fdo_flags, TRUE) != OK)
6638 errmsg = e_invarg;
6640 /* 'foldclose' */
6641 else if (varp == &p_fcl)
6643 if (check_opt_strings(p_fcl, p_fcl_values, TRUE) != OK)
6644 errmsg = e_invarg;
6646 /* 'foldignore' */
6647 else if (gvarp == &curwin->w_allbuf_opt.wo_fdi)
6649 if (foldmethodIsIndent(curwin))
6650 foldUpdateAll(curwin);
6652 #endif
6654 #ifdef FEAT_VIRTUALEDIT
6655 /* 'virtualedit' */
6656 else if (varp == &p_ve)
6658 if (opt_strings_flags(p_ve, p_ve_values, &ve_flags, TRUE) != OK)
6659 errmsg = e_invarg;
6660 else if (STRCMP(p_ve, oldval) != 0)
6662 /* Recompute cursor position in case the new 've' setting
6663 * changes something. */
6664 validate_virtcol();
6665 coladvance(curwin->w_virtcol);
6668 #endif
6670 #if defined(FEAT_CSCOPE) && defined(FEAT_QUICKFIX)
6671 else if (varp == &p_csqf)
6673 if (p_csqf != NULL)
6675 p = p_csqf;
6676 while (*p != NUL)
6678 if (vim_strchr((char_u *)CSQF_CMDS, *p) == NULL
6679 || p[1] == NUL
6680 || vim_strchr((char_u *)CSQF_FLAGS, p[1]) == NULL
6681 || (p[2] != NUL && p[2] != ','))
6683 errmsg = e_invarg;
6684 break;
6686 else if (p[2] == NUL)
6687 break;
6688 else
6689 p += 3;
6693 #endif
6695 /* Options that are a list of flags. */
6696 else
6698 p = NULL;
6699 if (varp == &p_ww)
6700 p = (char_u *)WW_ALL;
6701 if (varp == &p_shm)
6702 p = (char_u *)SHM_ALL;
6703 else if (varp == &(p_cpo))
6704 p = (char_u *)CPO_ALL;
6705 else if (varp == &(curbuf->b_p_fo))
6706 p = (char_u *)FO_ALL;
6707 else if (varp == &p_mouse)
6709 #ifdef FEAT_MOUSE
6710 p = (char_u *)MOUSE_ALL;
6711 #else
6712 if (*p_mouse != NUL)
6713 errmsg = (char_u *)N_("E538: No mouse support");
6714 #endif
6716 #if defined(FEAT_GUI)
6717 else if (varp == &p_go)
6718 p = (char_u *)GO_ALL;
6719 #endif
6720 if (p != NULL)
6722 for (s = *varp; *s; ++s)
6723 if (vim_strchr(p, *s) == NULL)
6725 errmsg = illegal_char(errbuf, *s);
6726 break;
6732 * If error detected, restore the previous value.
6734 if (errmsg != NULL)
6736 if (new_value_alloced)
6737 free_string_option(*varp);
6738 *varp = oldval;
6740 * When resetting some values, need to act on it.
6742 if (did_chartab)
6743 (void)init_chartab();
6744 if (varp == &p_hl)
6745 (void)highlight_changed();
6747 else
6749 #ifdef FEAT_EVAL
6750 /* Remember where the option was set. */
6751 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
6752 #endif
6754 * Free string options that are in allocated memory.
6755 * Use "free_oldval", because recursiveness may change the flags under
6756 * our fingers (esp. init_highlight()).
6758 if (free_oldval)
6759 free_string_option(oldval);
6760 if (new_value_alloced)
6761 options[opt_idx].flags |= P_ALLOCED;
6762 else
6763 options[opt_idx].flags &= ~P_ALLOCED;
6765 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
6766 && ((int)options[opt_idx].indir & PV_BOTH))
6768 /* global option with local value set to use global value; free
6769 * the local value and make it empty */
6770 p = get_varp_scope(&(options[opt_idx]), OPT_LOCAL);
6771 free_string_option(*(char_u **)p);
6772 *(char_u **)p = empty_option;
6775 /* May set global value for local option. */
6776 else if (!(opt_flags & OPT_LOCAL) && opt_flags != OPT_GLOBAL)
6777 set_string_option_global(opt_idx, varp);
6779 #ifdef FEAT_AUTOCMD
6781 * Trigger the autocommand only after setting the flags.
6783 # ifdef FEAT_SYN_HL
6784 /* When 'syntax' is set, load the syntax of that name */
6785 if (varp == &(curbuf->b_p_syn))
6787 apply_autocmds(EVENT_SYNTAX, curbuf->b_p_syn,
6788 curbuf->b_fname, TRUE, curbuf);
6790 # endif
6791 else if (varp == &(curbuf->b_p_ft))
6793 /* 'filetype' is set, trigger the FileType autocommand */
6794 did_filetype = TRUE;
6795 apply_autocmds(EVENT_FILETYPE, curbuf->b_p_ft,
6796 curbuf->b_fname, TRUE, curbuf);
6798 #endif
6799 #ifdef FEAT_SPELL
6800 if (varp == &(curbuf->b_p_spl))
6802 char_u fname[200];
6805 * Source the spell/LANG.vim in 'runtimepath'.
6806 * They could set 'spellcapcheck' depending on the language.
6807 * Use the first name in 'spelllang' up to '_region' or
6808 * '.encoding'.
6810 for (p = curbuf->b_p_spl; *p != NUL; ++p)
6811 if (vim_strchr((char_u *)"_.,", *p) != NULL)
6812 break;
6813 vim_snprintf((char *)fname, 200, "spell/%.*s.vim",
6814 (int)(p - curbuf->b_p_spl), curbuf->b_p_spl);
6815 source_runtime(fname, TRUE);
6817 #endif
6820 #ifdef FEAT_MOUSE
6821 if (varp == &p_mouse)
6823 # ifdef FEAT_MOUSE_TTY
6824 if (*p_mouse == NUL)
6825 mch_setmouse(FALSE); /* switch mouse off */
6826 else
6827 # endif
6828 setmouse(); /* in case 'mouse' changed */
6830 #endif
6832 if (curwin->w_curswant != MAXCOL)
6833 curwin->w_set_curswant = TRUE; /* in case 'showbreak' changed */
6834 #ifdef FEAT_GUI
6835 /* check redraw when it's not a GUI option or the GUI is active. */
6836 if (!redraw_gui_only || gui.in_use)
6837 #endif
6838 check_redraw(options[opt_idx].flags);
6840 return errmsg;
6844 * Handle setting 'listchars' or 'fillchars'.
6845 * Returns error message, NULL if it's OK.
6847 static char_u *
6848 set_chars_option(varp)
6849 char_u **varp;
6851 int round, i, len, entries;
6852 char_u *p, *s;
6853 int c1, c2 = 0;
6854 struct charstab
6856 int *cp;
6857 char *name;
6859 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6860 static struct charstab filltab[] =
6862 {&fill_stl, "stl"},
6863 {&fill_stlnc, "stlnc"},
6864 {&fill_vert, "vert"},
6865 {&fill_fold, "fold"},
6866 {&fill_diff, "diff"},
6868 #endif
6869 static struct charstab lcstab[] =
6871 {&lcs_eol, "eol"},
6872 {&lcs_ext, "extends"},
6873 {&lcs_nbsp, "nbsp"},
6874 {&lcs_prec, "precedes"},
6875 {&lcs_tab2, "tab"},
6876 {&lcs_trail, "trail"},
6878 struct charstab *tab;
6880 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6881 if (varp == &p_lcs)
6882 #endif
6884 tab = lcstab;
6885 entries = sizeof(lcstab) / sizeof(struct charstab);
6887 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6888 else
6890 tab = filltab;
6891 entries = sizeof(filltab) / sizeof(struct charstab);
6893 #endif
6895 /* first round: check for valid value, second round: assign values */
6896 for (round = 0; round <= 1; ++round)
6898 if (round)
6900 /* After checking that the value is valid: set defaults: space for
6901 * 'fillchars', NUL for 'listchars' */
6902 for (i = 0; i < entries; ++i)
6903 *(tab[i].cp) = (varp == &p_lcs ? NUL : ' ');
6904 if (varp == &p_lcs)
6905 lcs_tab1 = NUL;
6906 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6907 else
6908 fill_diff = '-';
6909 #endif
6911 p = *varp;
6912 while (*p)
6914 for (i = 0; i < entries; ++i)
6916 len = (int)STRLEN(tab[i].name);
6917 if (STRNCMP(p, tab[i].name, len) == 0
6918 && p[len] == ':'
6919 && p[len + 1] != NUL)
6921 s = p + len + 1;
6922 #ifdef FEAT_MBYTE
6923 c1 = mb_ptr2char_adv(&s);
6924 if (mb_char2cells(c1) > 1)
6925 continue;
6926 #else
6927 c1 = *s++;
6928 #endif
6929 if (tab[i].cp == &lcs_tab2)
6931 if (*s == NUL)
6932 continue;
6933 #ifdef FEAT_MBYTE
6934 c2 = mb_ptr2char_adv(&s);
6935 if (mb_char2cells(c2) > 1)
6936 continue;
6937 #else
6938 c2 = *s++;
6939 #endif
6941 if (*s == ',' || *s == NUL)
6943 if (round)
6945 if (tab[i].cp == &lcs_tab2)
6947 lcs_tab1 = c1;
6948 lcs_tab2 = c2;
6950 else
6951 *(tab[i].cp) = c1;
6954 p = s;
6955 break;
6960 if (i == entries)
6961 return e_invarg;
6962 if (*p == ',')
6963 ++p;
6967 return NULL; /* no error */
6970 #ifdef FEAT_STL_OPT
6972 * Check validity of options with the 'statusline' format.
6973 * Return error message or NULL.
6975 char_u *
6976 check_stl_option(s)
6977 char_u *s;
6979 int itemcnt = 0;
6980 int groupdepth = 0;
6981 static char_u errbuf[80];
6983 while (*s && itemcnt < STL_MAX_ITEM)
6985 /* Check for valid keys after % sequences */
6986 while (*s && *s != '%')
6987 s++;
6988 if (!*s)
6989 break;
6990 s++;
6991 if (*s != '%' && *s != ')')
6992 ++itemcnt;
6993 if (*s == '%' || *s == STL_TRUNCMARK || *s == STL_MIDDLEMARK)
6995 s++;
6996 continue;
6998 if (*s == ')')
7000 s++;
7001 if (--groupdepth < 0)
7002 break;
7003 continue;
7005 if (*s == '-')
7006 s++;
7007 while (VIM_ISDIGIT(*s))
7008 s++;
7009 if (*s == STL_USER_HL)
7010 continue;
7011 if (*s == '.')
7013 s++;
7014 while (*s && VIM_ISDIGIT(*s))
7015 s++;
7017 if (*s == '(')
7019 groupdepth++;
7020 continue;
7022 if (vim_strchr(STL_ALL, *s) == NULL)
7024 return illegal_char(errbuf, *s);
7026 if (*s == '{')
7028 s++;
7029 while (*s != '}' && *s)
7030 s++;
7031 if (*s != '}')
7032 return (char_u *)N_("E540: Unclosed expression sequence");
7035 if (itemcnt >= STL_MAX_ITEM)
7036 return (char_u *)N_("E541: too many items");
7037 if (groupdepth != 0)
7038 return (char_u *)N_("E542: unbalanced groups");
7039 return NULL;
7041 #endif
7043 #ifdef FEAT_CLIPBOARD
7045 * Extract the items in the 'clipboard' option and set global values.
7047 static char_u *
7048 check_clipboard_option()
7050 int new_unnamed = FALSE;
7051 int new_autoselect = FALSE;
7052 int new_autoselectml = FALSE;
7053 int new_html = FALSE;
7054 regprog_T *new_exclude_prog = NULL;
7055 char_u *errmsg = NULL;
7056 char_u *p;
7058 for (p = p_cb; *p != NUL; )
7060 if (STRNCMP(p, "unnamed", 7) == 0 && (p[7] == ',' || p[7] == NUL))
7062 new_unnamed = TRUE;
7063 p += 7;
7065 else if (STRNCMP(p, "autoselect", 10) == 0
7066 && (p[10] == ',' || p[10] == NUL))
7068 new_autoselect = TRUE;
7069 p += 10;
7071 else if (STRNCMP(p, "autoselectml", 12) == 0
7072 && (p[12] == ',' || p[12] == NUL))
7074 new_autoselectml = TRUE;
7075 p += 12;
7077 else if (STRNCMP(p, "html", 4) == 0 && (p[4] == ',' || p[4] == NUL))
7079 new_html = TRUE;
7080 p += 4;
7082 else if (STRNCMP(p, "exclude:", 8) == 0 && new_exclude_prog == NULL)
7084 p += 8;
7085 new_exclude_prog = vim_regcomp(p, RE_MAGIC);
7086 if (new_exclude_prog == NULL)
7087 errmsg = e_invarg;
7088 break;
7090 else
7092 errmsg = e_invarg;
7093 break;
7095 if (*p == ',')
7096 ++p;
7098 if (errmsg == NULL)
7100 clip_unnamed = new_unnamed;
7101 clip_autoselect = new_autoselect;
7102 clip_autoselectml = new_autoselectml;
7103 clip_html = new_html;
7104 vim_free(clip_exclude_prog);
7105 clip_exclude_prog = new_exclude_prog;
7107 else
7108 vim_free(new_exclude_prog);
7110 return errmsg;
7112 #endif
7114 #ifdef FEAT_SPELL
7116 * Set curbuf->b_cap_prog to the regexp program for 'spellcapcheck'.
7117 * Return error message when failed, NULL when OK.
7119 static char_u *
7120 compile_cap_prog(buf)
7121 buf_T *buf;
7123 regprog_T *rp = buf->b_cap_prog;
7124 char_u *re;
7126 if (*buf->b_p_spc == NUL)
7127 buf->b_cap_prog = NULL;
7128 else
7130 /* Prepend a ^ so that we only match at one column */
7131 re = concat_str((char_u *)"^", buf->b_p_spc);
7132 if (re != NULL)
7134 buf->b_cap_prog = vim_regcomp(re, RE_MAGIC);
7135 if (buf->b_cap_prog == NULL)
7137 buf->b_cap_prog = rp; /* restore the previous program */
7138 return e_invarg;
7140 vim_free(re);
7144 vim_free(rp);
7145 return NULL;
7147 #endif
7149 #if defined(FEAT_EVAL) || defined(PROTO)
7151 * Set the scriptID for an option, taking care of setting the buffer- or
7152 * window-local value.
7154 static void
7155 set_option_scriptID_idx(opt_idx, opt_flags, id)
7156 int opt_idx;
7157 int opt_flags;
7158 int id;
7160 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
7161 int indir = (int)options[opt_idx].indir;
7163 /* Remember where the option was set. For local options need to do that
7164 * in the buffer or window structure. */
7165 if (both || (opt_flags & OPT_GLOBAL) || (indir & (PV_BUF|PV_WIN)) == 0)
7166 options[opt_idx].scriptID = id;
7167 if (both || (opt_flags & OPT_LOCAL))
7169 if (indir & PV_BUF)
7170 curbuf->b_p_scriptID[indir & PV_MASK] = id;
7171 else if (indir & PV_WIN)
7172 curwin->w_p_scriptID[indir & PV_MASK] = id;
7175 #endif
7178 * Set the value of a boolean option, and take care of side effects.
7179 * Returns NULL for success, or an error message for an error.
7181 static char_u *
7182 set_bool_option(opt_idx, varp, value, opt_flags)
7183 int opt_idx; /* index in options[] table */
7184 char_u *varp; /* pointer to the option variable */
7185 int value; /* new value */
7186 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
7188 int old_value = *(int *)varp;
7190 /* Disallow changing some options from secure mode */
7191 if ((secure
7192 #ifdef HAVE_SANDBOX
7193 || sandbox != 0
7194 #endif
7195 ) && (options[opt_idx].flags & P_SECURE))
7196 return e_secure;
7198 *(int *)varp = value; /* set the new value */
7199 #ifdef FEAT_EVAL
7200 /* Remember where the option was set. */
7201 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
7202 #endif
7204 #ifdef FEAT_GUI
7205 need_mouse_correct = TRUE;
7206 #endif
7208 /* May set global value for local option. */
7209 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0)
7210 *(int *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) = value;
7213 * Handle side effects of changing a bool option.
7216 /* 'compatible' */
7217 if ((int *)varp == &p_cp)
7219 compatible_set();
7222 /* 'list', 'number' */
7223 else if ((int *)varp == &curwin->w_p_list
7224 || (int *)varp == &curwin->w_p_nu)
7226 if (curwin->w_curswant != MAXCOL)
7227 curwin->w_set_curswant = TRUE;
7230 else if ((int *)varp == &curbuf->b_p_ro)
7232 /* when 'readonly' is reset globally, also reset readonlymode */
7233 if (!curbuf->b_p_ro && (opt_flags & OPT_LOCAL) == 0)
7234 readonlymode = FALSE;
7236 /* when 'readonly' is set may give W10 again */
7237 if (curbuf->b_p_ro)
7238 curbuf->b_did_warn = FALSE;
7240 #ifdef FEAT_TITLE
7241 redraw_titles();
7242 #endif
7245 #ifdef FEAT_TITLE
7246 /* when 'modifiable' is changed, redraw the window title */
7247 else if ((int *)varp == &curbuf->b_p_ma)
7249 redraw_titles();
7251 /* when 'endofline' is changed, redraw the window title */
7252 else if ((int *)varp == &curbuf->b_p_eol)
7254 redraw_titles();
7256 # ifdef FEAT_MBYTE
7257 /* when 'bomb' is changed, redraw the window title and tab page text */
7258 else if ((int *)varp == &curbuf->b_p_bomb)
7260 redraw_titles();
7262 # endif
7263 #endif
7265 /* when 'bin' is set also set some other options */
7266 else if ((int *)varp == &curbuf->b_p_bin)
7268 set_options_bin(old_value, curbuf->b_p_bin, opt_flags);
7269 #ifdef FEAT_TITLE
7270 redraw_titles();
7271 #endif
7274 #ifdef FEAT_AUTOCMD
7275 /* when 'buflisted' changes, trigger autocommands */
7276 else if ((int *)varp == &curbuf->b_p_bl && old_value != curbuf->b_p_bl)
7278 apply_autocmds(curbuf->b_p_bl ? EVENT_BUFADD : EVENT_BUFDELETE,
7279 NULL, NULL, TRUE, curbuf);
7281 #endif
7283 /* when 'swf' is set, create swapfile, when reset remove swapfile */
7284 else if ((int *)varp == &curbuf->b_p_swf)
7286 if (curbuf->b_p_swf && p_uc)
7287 ml_open_file(curbuf); /* create the swap file */
7288 else
7289 /* no need to reset curbuf->b_may_swap, ml_open_file() will check
7290 * buf->b_p_swf */
7291 mf_close_file(curbuf, TRUE); /* remove the swap file */
7294 /* when 'terse' is set change 'shortmess' */
7295 else if ((int *)varp == &p_terse)
7297 char_u *p;
7299 p = vim_strchr(p_shm, SHM_SEARCH);
7301 /* insert 's' in p_shm */
7302 if (p_terse && p == NULL)
7304 STRCPY(IObuff, p_shm);
7305 STRCAT(IObuff, "s");
7306 set_string_option_direct((char_u *)"shm", -1, IObuff, OPT_FREE, 0);
7308 /* remove 's' from p_shm */
7309 else if (!p_terse && p != NULL)
7310 STRMOVE(p, p + 1);
7313 /* when 'paste' is set or reset also change other options */
7314 else if ((int *)varp == &p_paste)
7316 paste_option_changed();
7319 /* when 'insertmode' is set from an autocommand need to do work here */
7320 else if ((int *)varp == &p_im)
7322 if (p_im)
7324 if ((State & INSERT) == 0)
7325 need_start_insertmode = TRUE;
7326 stop_insert_mode = FALSE;
7328 else
7330 need_start_insertmode = FALSE;
7331 stop_insert_mode = TRUE;
7332 if (restart_edit != 0 && mode_displayed)
7333 clear_cmdline = TRUE; /* remove "(insert)" */
7334 restart_edit = 0;
7338 /* when 'ignorecase' is set or reset and 'hlsearch' is set, redraw */
7339 else if ((int *)varp == &p_ic && p_hls)
7341 redraw_all_later(SOME_VALID);
7344 #ifdef FEAT_SEARCH_EXTRA
7345 /* when 'hlsearch' is set or reset: reset no_hlsearch */
7346 else if ((int *)varp == &p_hls)
7348 no_hlsearch = FALSE;
7350 #endif
7352 #ifdef FEAT_SCROLLBIND
7353 /* when 'scrollbind' is set: snapshot the current position to avoid a jump
7354 * at the end of normal_cmd() */
7355 else if ((int *)varp == &curwin->w_p_scb)
7357 if (curwin->w_p_scb)
7358 do_check_scrollbind(FALSE);
7360 #endif
7362 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
7363 /* There can be only one window with 'previewwindow' set. */
7364 else if ((int *)varp == &curwin->w_p_pvw)
7366 if (curwin->w_p_pvw)
7368 win_T *win;
7370 for (win = firstwin; win != NULL; win = win->w_next)
7371 if (win->w_p_pvw && win != curwin)
7373 curwin->w_p_pvw = FALSE;
7374 return (char_u *)N_("E590: A preview window already exists");
7378 #endif
7380 /* when 'textmode' is set or reset also change 'fileformat' */
7381 else if ((int *)varp == &curbuf->b_p_tx)
7383 set_fileformat(curbuf->b_p_tx ? EOL_DOS : EOL_UNIX, opt_flags);
7386 /* when 'textauto' is set or reset also change 'fileformats' */
7387 else if ((int *)varp == &p_ta)
7388 set_string_option_direct((char_u *)"ffs", -1,
7389 p_ta ? (char_u *)DFLT_FFS_VIM : (char_u *)"",
7390 OPT_FREE | opt_flags, 0);
7393 * When 'lisp' option changes include/exclude '-' in
7394 * keyword characters.
7396 #ifdef FEAT_LISP
7397 else if (varp == (char_u *)&(curbuf->b_p_lisp))
7399 (void)buf_init_chartab(curbuf, FALSE); /* ignore errors */
7401 #endif
7403 #ifdef FEAT_TITLE
7404 /* when 'title' changed, may need to change the title; same for 'icon' */
7405 else if ((int *)varp == &p_title)
7407 did_set_title(FALSE);
7410 else if ((int *)varp == &p_icon)
7412 did_set_title(TRUE);
7414 #endif
7416 else if ((int *)varp == &curbuf->b_changed)
7418 if (!value)
7419 save_file_ff(curbuf); /* Buffer is unchanged */
7420 #ifdef FEAT_TITLE
7421 redraw_titles();
7422 #endif
7423 #ifdef FEAT_AUTOCMD
7424 modified_was_set = value;
7425 #endif
7428 #ifdef BACKSLASH_IN_FILENAME
7429 else if ((int *)varp == &p_ssl)
7431 if (p_ssl)
7433 psepc = '/';
7434 psepcN = '\\';
7435 pseps[0] = '/';
7437 else
7439 psepc = '\\';
7440 psepcN = '/';
7441 pseps[0] = '\\';
7444 /* need to adjust the file name arguments and buffer names. */
7445 buflist_slash_adjust();
7446 alist_slash_adjust();
7447 # ifdef FEAT_EVAL
7448 scriptnames_slash_adjust();
7449 # endif
7451 #endif
7453 /* If 'wrap' is set, set w_leftcol to zero. */
7454 else if ((int *)varp == &curwin->w_p_wrap)
7456 if (curwin->w_p_wrap)
7457 curwin->w_leftcol = 0;
7458 if (curwin->w_curswant != MAXCOL)
7459 curwin->w_set_curswant = TRUE;
7462 #ifdef FEAT_WINDOWS
7463 else if ((int *)varp == &p_ea)
7465 if (p_ea && !old_value)
7466 win_equal(curwin, FALSE, 0);
7468 #endif
7470 else if ((int *)varp == &p_wiv)
7473 * When 'weirdinvert' changed, set/reset 't_xs'.
7474 * Then set 'weirdinvert' according to value of 't_xs'.
7476 if (p_wiv && !old_value)
7477 T_XS = (char_u *)"y";
7478 else if (!p_wiv && old_value)
7479 T_XS = empty_option;
7480 p_wiv = (*T_XS != NUL);
7483 #ifdef FEAT_BEVAL
7484 else if ((int *)varp == &p_beval)
7486 if (p_beval == TRUE)
7487 gui_mch_enable_beval_area(balloonEval);
7488 else
7489 gui_mch_disable_beval_area(balloonEval);
7491 #endif
7493 #ifdef FEAT_AUTOCHDIR
7494 else if ((int *)varp == &p_acd)
7496 /* Change directories when the 'acd' option is set now. */
7497 DO_AUTOCHDIR
7499 #endif
7501 #ifdef FEAT_DIFF
7502 /* 'diff' */
7503 else if ((int *)varp == &curwin->w_p_diff)
7505 /* May add or remove the buffer from the list of diff buffers. */
7506 diff_buf_adjust(curwin);
7507 # ifdef FEAT_FOLDING
7508 if (foldmethodIsDiff(curwin))
7509 foldUpdateAll(curwin);
7510 # endif
7512 #endif
7514 #ifdef USE_IM_CONTROL
7515 /* 'imdisable' */
7516 else if ((int *)varp == &p_imdisable)
7518 /* Only de-activate it here, it will be enabled when changing mode. */
7519 if (p_imdisable)
7520 im_set_active(FALSE);
7522 #endif
7524 #ifdef FEAT_SPELL
7525 /* 'spell' */
7526 else if ((int *)varp == &curwin->w_p_spell)
7528 if (curwin->w_p_spell)
7530 char_u *errmsg = did_set_spelllang(curbuf);
7532 if (errmsg != NULL)
7533 EMSG(_(errmsg));
7536 #endif
7538 #ifdef FEAT_FKMAP
7539 else if ((int *)varp == &p_altkeymap)
7541 if (old_value != p_altkeymap)
7543 if (!p_altkeymap)
7545 p_hkmap = p_fkmap;
7546 p_fkmap = 0;
7548 else
7550 p_fkmap = p_hkmap;
7551 p_hkmap = 0;
7553 (void)init_chartab();
7558 * In case some second language keymapping options have changed, check
7559 * and correct the setting in a consistent way.
7563 * If hkmap or fkmap are set, reset Arabic keymapping.
7565 if ((p_hkmap || p_fkmap) && p_altkeymap)
7567 p_altkeymap = p_fkmap;
7568 # ifdef FEAT_ARABIC
7569 curwin->w_p_arab = FALSE;
7570 # endif
7571 (void)init_chartab();
7575 * If hkmap set, reset Farsi keymapping.
7577 if (p_hkmap && p_altkeymap)
7579 p_altkeymap = 0;
7580 p_fkmap = 0;
7581 # ifdef FEAT_ARABIC
7582 curwin->w_p_arab = FALSE;
7583 # endif
7584 (void)init_chartab();
7588 * If fkmap set, reset Hebrew keymapping.
7590 if (p_fkmap && !p_altkeymap)
7592 p_altkeymap = 1;
7593 p_hkmap = 0;
7594 # ifdef FEAT_ARABIC
7595 curwin->w_p_arab = FALSE;
7596 # endif
7597 (void)init_chartab();
7599 #endif
7601 #ifdef FEAT_ARABIC
7602 if ((int *)varp == &curwin->w_p_arab)
7604 if (curwin->w_p_arab)
7607 * 'arabic' is set, handle various sub-settings.
7609 if (!p_tbidi)
7611 /* set rightleft mode */
7612 if (!curwin->w_p_rl)
7614 curwin->w_p_rl = TRUE;
7615 changed_window_setting();
7618 /* Enable Arabic shaping (major part of what Arabic requires) */
7619 if (!p_arshape)
7621 p_arshape = TRUE;
7622 redraw_later_clear();
7626 /* Arabic requires a utf-8 encoding, inform the user if its not
7627 * set. */
7628 if (STRCMP(p_enc, "utf-8") != 0)
7630 static char *w_arabic = N_("W17: Arabic requires UTF-8, do ':set encoding=utf-8'");
7632 msg_source(hl_attr(HLF_W));
7633 MSG_ATTR(_(w_arabic), hl_attr(HLF_W));
7634 #ifdef FEAT_EVAL
7635 set_vim_var_string(VV_WARNINGMSG, (char_u *)_(w_arabic), -1);
7636 #endif
7639 # ifdef FEAT_MBYTE
7640 /* set 'delcombine' */
7641 p_deco = TRUE;
7642 # endif
7644 # ifdef FEAT_KEYMAP
7645 /* Force-set the necessary keymap for arabic */
7646 set_option_value((char_u *)"keymap", 0L, (char_u *)"arabic",
7647 OPT_LOCAL);
7648 # endif
7649 # ifdef FEAT_FKMAP
7650 p_altkeymap = 0;
7651 p_hkmap = 0;
7652 p_fkmap = 0;
7653 (void)init_chartab();
7654 # endif
7656 else
7659 * 'arabic' is reset, handle various sub-settings.
7661 if (!p_tbidi)
7663 /* reset rightleft mode */
7664 if (curwin->w_p_rl)
7666 curwin->w_p_rl = FALSE;
7667 changed_window_setting();
7670 /* 'arabicshape' isn't reset, it is a global option and
7671 * another window may still need it "on". */
7674 /* 'delcombine' isn't reset, it is a global option and another
7675 * window may still want it "on". */
7677 # ifdef FEAT_KEYMAP
7678 /* Revert to the default keymap */
7679 curbuf->b_p_iminsert = B_IMODE_NONE;
7680 curbuf->b_p_imsearch = B_IMODE_USE_INSERT;
7681 # endif
7683 if (curwin->w_curswant != MAXCOL)
7684 curwin->w_set_curswant = TRUE;
7687 else if ((int *)varp == &p_arshape)
7689 if (curwin->w_curswant != MAXCOL)
7690 curwin->w_set_curswant = TRUE;
7692 #endif
7694 #ifdef FEAT_LINEBREAK
7695 if ((int *)varp == &curwin->w_p_lbr)
7697 if (curwin->w_curswant != MAXCOL)
7698 curwin->w_set_curswant = TRUE;
7700 #endif
7702 #ifdef FEAT_RIGHTLEFT
7703 if ((int *)varp == &curwin->w_p_rl)
7705 if (curwin->w_curswant != MAXCOL)
7706 curwin->w_set_curswant = TRUE;
7708 #endif
7711 * End of handling side effects for bool options.
7714 options[opt_idx].flags |= P_WAS_SET;
7716 comp_col(); /* in case 'ruler' or 'showcmd' changed */
7718 check_redraw(options[opt_idx].flags);
7720 return NULL;
7724 * Set the value of a number option, and take care of side effects.
7725 * Returns NULL for success, or an error message for an error.
7727 static char_u *
7728 set_num_option(opt_idx, varp, value, errbuf, errbuflen, opt_flags)
7729 int opt_idx; /* index in options[] table */
7730 char_u *varp; /* pointer to the option variable */
7731 long value; /* new value */
7732 char_u *errbuf; /* buffer for error messages */
7733 size_t errbuflen; /* length of "errbuf" */
7734 int opt_flags; /* OPT_LOCAL, OPT_GLOBAL and
7735 OPT_MODELINE */
7737 char_u *errmsg = NULL;
7738 long old_value = *(long *)varp;
7739 long old_Rows = Rows; /* remember old Rows */
7740 long old_Columns = Columns; /* remember old Columns */
7741 long *pp = (long *)varp;
7743 /* Disallow changing some options from secure mode. */
7744 if ((secure
7745 #ifdef HAVE_SANDBOX
7746 || sandbox != 0
7747 #endif
7748 ) && (options[opt_idx].flags & P_SECURE))
7749 return e_secure;
7751 *pp = value;
7752 #ifdef FEAT_EVAL
7753 /* Remember where the option was set. */
7754 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
7755 #endif
7756 #ifdef FEAT_GUI
7757 need_mouse_correct = TRUE;
7758 #endif
7760 if (curbuf->b_p_sw <= 0)
7762 errmsg = e_positive;
7763 curbuf->b_p_sw = curbuf->b_p_ts;
7767 * Number options that need some action when changed
7769 #ifdef FEAT_WINDOWS
7770 if (pp == &p_wh || pp == &p_hh)
7772 if (p_wh < 1)
7774 errmsg = e_positive;
7775 p_wh = 1;
7777 if (p_wmh > p_wh)
7779 errmsg = e_winheight;
7780 p_wh = p_wmh;
7782 if (p_hh < 0)
7784 errmsg = e_positive;
7785 p_hh = 0;
7788 /* Change window height NOW */
7789 if (lastwin != firstwin)
7791 if (pp == &p_wh && curwin->w_height < p_wh)
7792 win_setheight((int)p_wh);
7793 if (pp == &p_hh && curbuf->b_help && curwin->w_height < p_hh)
7794 win_setheight((int)p_hh);
7798 /* 'winminheight' */
7799 else if (pp == &p_wmh)
7801 if (p_wmh < 0)
7803 errmsg = e_positive;
7804 p_wmh = 0;
7806 if (p_wmh > p_wh)
7808 errmsg = e_winheight;
7809 p_wmh = p_wh;
7811 win_setminheight();
7814 # ifdef FEAT_VERTSPLIT
7815 else if (pp == &p_wiw)
7817 if (p_wiw < 1)
7819 errmsg = e_positive;
7820 p_wiw = 1;
7822 if (p_wmw > p_wiw)
7824 errmsg = e_winwidth;
7825 p_wiw = p_wmw;
7828 /* Change window width NOW */
7829 if (lastwin != firstwin && curwin->w_width < p_wiw)
7830 win_setwidth((int)p_wiw);
7833 /* 'winminwidth' */
7834 else if (pp == &p_wmw)
7836 if (p_wmw < 0)
7838 errmsg = e_positive;
7839 p_wmw = 0;
7841 if (p_wmw > p_wiw)
7843 errmsg = e_winwidth;
7844 p_wmw = p_wiw;
7846 win_setminheight();
7848 # endif
7850 #endif
7852 #ifdef FEAT_WINDOWS
7853 /* (re)set last window status line */
7854 else if (pp == &p_ls)
7856 last_status(FALSE);
7859 /* (re)set tab page line */
7860 else if (pp == &p_stal)
7862 shell_new_rows(); /* recompute window positions and heights */
7864 #endif
7866 #ifdef FEAT_GUI
7867 else if (pp == &p_linespace)
7869 /* Recompute gui.char_height and resize the Vim window to keep the
7870 * same number of lines. */
7871 if (gui.in_use && gui_mch_adjust_charheight() == OK)
7872 gui_set_shellsize(FALSE, FALSE, RESIZE_VERT);
7874 #endif
7876 #ifdef FEAT_FOLDING
7877 /* 'foldlevel' */
7878 else if (pp == &curwin->w_p_fdl)
7880 if (curwin->w_p_fdl < 0)
7881 curwin->w_p_fdl = 0;
7882 newFoldLevel();
7885 /* 'foldminlines' */
7886 else if (pp == &curwin->w_p_fml)
7888 foldUpdateAll(curwin);
7891 /* 'foldnestmax' */
7892 else if (pp == &curwin->w_p_fdn)
7894 if (foldmethodIsSyntax(curwin) || foldmethodIsIndent(curwin))
7895 foldUpdateAll(curwin);
7898 /* 'foldcolumn' */
7899 else if (pp == &curwin->w_p_fdc)
7901 if (curwin->w_p_fdc < 0)
7903 errmsg = e_positive;
7904 curwin->w_p_fdc = 0;
7906 else if (curwin->w_p_fdc > 12)
7908 errmsg = e_invarg;
7909 curwin->w_p_fdc = 12;
7913 /* 'shiftwidth' or 'tabstop' */
7914 else if (pp == &curbuf->b_p_sw || pp == &curbuf->b_p_ts)
7916 if (foldmethodIsIndent(curwin))
7917 foldUpdateAll(curwin);
7919 #endif /* FEAT_FOLDING */
7921 #ifdef FEAT_MBYTE
7922 /* 'maxcombine' */
7923 else if (pp == &p_mco)
7925 if (p_mco > MAX_MCO)
7926 p_mco = MAX_MCO;
7927 else if (p_mco < 0)
7928 p_mco = 0;
7929 screenclear(); /* will re-allocate the screen */
7931 #endif
7933 else if (pp == &curbuf->b_p_iminsert)
7935 if (curbuf->b_p_iminsert < 0 || curbuf->b_p_iminsert > B_IMODE_LAST)
7937 errmsg = e_invarg;
7938 curbuf->b_p_iminsert = B_IMODE_NONE;
7940 p_iminsert = curbuf->b_p_iminsert;
7941 if (termcap_active) /* don't do this in the alternate screen */
7942 showmode();
7943 #if defined(FEAT_WINDOWS) && defined(FEAT_KEYMAP)
7944 /* Show/unshow value of 'keymap' in status lines. */
7945 status_redraw_curbuf();
7946 #endif
7949 else if (pp == &p_window)
7951 if (p_window < 1)
7952 p_window = 1;
7953 else if (p_window >= Rows)
7954 p_window = Rows - 1;
7957 else if (pp == &curbuf->b_p_imsearch)
7959 if (curbuf->b_p_imsearch < -1 || curbuf->b_p_imsearch > B_IMODE_LAST)
7961 errmsg = e_invarg;
7962 curbuf->b_p_imsearch = B_IMODE_NONE;
7964 p_imsearch = curbuf->b_p_imsearch;
7967 #ifdef FEAT_TITLE
7968 /* if 'titlelen' has changed, redraw the title */
7969 else if (pp == &p_titlelen)
7971 if (p_titlelen < 0)
7973 errmsg = e_positive;
7974 p_titlelen = 85;
7976 if (starting != NO_SCREEN && old_value != p_titlelen)
7977 need_maketitle = TRUE;
7979 #endif
7981 /* if p_ch changed value, change the command line height */
7982 else if (pp == &p_ch)
7984 if (p_ch < 1)
7986 errmsg = e_positive;
7987 p_ch = 1;
7989 if (p_ch > Rows - min_rows() + 1)
7990 p_ch = Rows - min_rows() + 1;
7992 /* Only compute the new window layout when startup has been
7993 * completed. Otherwise the frame sizes may be wrong. */
7994 if (p_ch != old_value && full_screen
7995 #ifdef FEAT_GUI
7996 && !gui.starting
7997 #endif
7999 command_height();
8002 /* when 'updatecount' changes from zero to non-zero, open swap files */
8003 else if (pp == &p_uc)
8005 if (p_uc < 0)
8007 errmsg = e_positive;
8008 p_uc = 100;
8010 if (p_uc && !old_value)
8011 ml_open_files();
8013 #ifdef MZSCHEME_GUI_THREADS
8014 else if (pp == &p_mzq)
8015 mzvim_reset_timer();
8016 #endif
8018 /* sync undo before 'undolevels' changes */
8019 else if (pp == &p_ul)
8021 /* use the old value, otherwise u_sync() may not work properly */
8022 p_ul = old_value;
8023 u_sync(TRUE);
8024 p_ul = value;
8027 #ifdef FEAT_LINEBREAK
8028 /* 'numberwidth' must be positive */
8029 else if (pp == &curwin->w_p_nuw)
8031 if (curwin->w_p_nuw < 1)
8033 errmsg = e_positive;
8034 curwin->w_p_nuw = 1;
8036 if (curwin->w_p_nuw > 10)
8038 errmsg = e_invarg;
8039 curwin->w_p_nuw = 10;
8041 curwin->w_nrwidth_line_count = 0;
8043 #endif
8046 * Check the bounds for numeric options here
8048 if (Rows < min_rows() && full_screen)
8050 if (errbuf != NULL)
8052 vim_snprintf((char *)errbuf, errbuflen,
8053 _("E593: Need at least %d lines"), min_rows());
8054 errmsg = errbuf;
8056 Rows = min_rows();
8058 if (Columns < MIN_COLUMNS && full_screen)
8060 if (errbuf != NULL)
8062 vim_snprintf((char *)errbuf, errbuflen,
8063 _("E594: Need at least %d columns"), MIN_COLUMNS);
8064 errmsg = errbuf;
8066 Columns = MIN_COLUMNS;
8068 /* Limit the values to avoid an overflow in Rows * Columns. */
8069 if (Columns > 10000)
8070 Columns = 10000;
8071 if (Rows > 1000)
8072 Rows = 1000;
8074 #ifdef DJGPP
8075 /* avoid a crash by checking for a too large value of 'columns' */
8076 if (old_Columns != Columns && full_screen && term_console)
8077 mch_check_columns();
8078 #endif
8081 * If the screen (shell) height has been changed, assume it is the
8082 * physical screenheight.
8084 if (old_Rows != Rows || old_Columns != Columns)
8086 /* Changing the screen size is not allowed while updating the screen. */
8087 if (updating_screen)
8088 *pp = old_value;
8089 else if (full_screen
8090 #ifdef FEAT_GUI
8091 && !gui.starting
8092 #endif
8094 set_shellsize((int)Columns, (int)Rows, TRUE);
8095 else
8097 /* Postpone the resizing; check the size and cmdline position for
8098 * messages. */
8099 check_shellsize();
8100 if (cmdline_row > Rows - p_ch && Rows > p_ch)
8101 cmdline_row = Rows - p_ch;
8103 if (p_window >= Rows || !option_was_set((char_u *)"window"))
8104 p_window = Rows - 1;
8107 if (curbuf->b_p_sts < 0)
8109 errmsg = e_positive;
8110 curbuf->b_p_sts = 0;
8112 if (curbuf->b_p_ts <= 0)
8114 errmsg = e_positive;
8115 curbuf->b_p_ts = 8;
8117 if (curbuf->b_p_tw < 0)
8119 errmsg = e_positive;
8120 curbuf->b_p_tw = 0;
8122 if (p_tm < 0)
8124 errmsg = e_positive;
8125 p_tm = 0;
8127 if ((curwin->w_p_scr <= 0
8128 || (curwin->w_p_scr > curwin->w_height
8129 && curwin->w_height > 0))
8130 && full_screen)
8132 if (pp == &(curwin->w_p_scr))
8134 if (curwin->w_p_scr != 0)
8135 errmsg = e_scroll;
8136 win_comp_scroll(curwin);
8138 /* If 'scroll' became invalid because of a side effect silently adjust
8139 * it. */
8140 else if (curwin->w_p_scr <= 0)
8141 curwin->w_p_scr = 1;
8142 else /* curwin->w_p_scr > curwin->w_height */
8143 curwin->w_p_scr = curwin->w_height;
8145 if (p_hi < 0)
8147 errmsg = e_positive;
8148 p_hi = 0;
8150 if (p_report < 0)
8152 errmsg = e_positive;
8153 p_report = 1;
8155 if ((p_sj < -100 || p_sj >= Rows) && full_screen)
8157 if (Rows != old_Rows) /* Rows changed, just adjust p_sj */
8158 p_sj = Rows / 2;
8159 else
8161 errmsg = e_scroll;
8162 p_sj = 1;
8165 if (p_so < 0 && full_screen)
8167 errmsg = e_scroll;
8168 p_so = 0;
8170 if (p_siso < 0 && full_screen)
8172 errmsg = e_positive;
8173 p_siso = 0;
8175 #ifdef FEAT_CMDWIN
8176 if (p_cwh < 1)
8178 errmsg = e_positive;
8179 p_cwh = 1;
8181 #endif
8182 if (p_ut < 0)
8184 errmsg = e_positive;
8185 p_ut = 2000;
8187 if (p_ss < 0)
8189 errmsg = e_positive;
8190 p_ss = 0;
8193 /* May set global value for local option. */
8194 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0)
8195 *(long *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) = *pp;
8197 options[opt_idx].flags |= P_WAS_SET;
8199 comp_col(); /* in case 'columns' or 'ls' changed */
8200 if (curwin->w_curswant != MAXCOL)
8201 curwin->w_set_curswant = TRUE; /* in case 'tabstop' changed */
8202 check_redraw(options[opt_idx].flags);
8204 return errmsg;
8208 * Called after an option changed: check if something needs to be redrawn.
8210 static void
8211 check_redraw(flags)
8212 long_u flags;
8214 /* Careful: P_RCLR and P_RALL are a combination of other P_ flags */
8215 int clear = (flags & P_RCLR) == P_RCLR;
8216 int all = ((flags & P_RALL) == P_RALL || clear);
8218 #ifdef FEAT_WINDOWS
8219 if ((flags & P_RSTAT) || all) /* mark all status lines dirty */
8220 status_redraw_all();
8221 #endif
8223 if ((flags & P_RBUF) || (flags & P_RWIN) || all)
8224 changed_window_setting();
8225 if (flags & P_RBUF)
8226 redraw_curbuf_later(NOT_VALID);
8227 if (clear)
8228 redraw_all_later(CLEAR);
8229 else if (all)
8230 redraw_all_later(NOT_VALID);
8234 * Find index for option 'arg'.
8235 * Return -1 if not found.
8237 static int
8238 findoption(arg)
8239 char_u *arg;
8241 int opt_idx;
8242 char *s, *p;
8243 static short quick_tab[27] = {0, 0}; /* quick access table */
8244 int is_term_opt;
8247 * For first call: Initialize the quick-access table.
8248 * It contains the index for the first option that starts with a certain
8249 * letter. There are 26 letters, plus the first "t_" option.
8251 if (quick_tab[1] == 0)
8253 p = options[0].fullname;
8254 for (opt_idx = 1; (s = options[opt_idx].fullname) != NULL; opt_idx++)
8256 if (s[0] != p[0])
8258 if (s[0] == 't' && s[1] == '_')
8259 quick_tab[26] = opt_idx;
8260 else
8261 quick_tab[CharOrdLow(s[0])] = opt_idx;
8263 p = s;
8268 * Check for name starting with an illegal character.
8270 #ifdef EBCDIC
8271 if (!islower(arg[0]))
8272 #else
8273 if (arg[0] < 'a' || arg[0] > 'z')
8274 #endif
8275 return -1;
8277 is_term_opt = (arg[0] == 't' && arg[1] == '_');
8278 if (is_term_opt)
8279 opt_idx = quick_tab[26];
8280 else
8281 opt_idx = quick_tab[CharOrdLow(arg[0])];
8282 for ( ; (s = options[opt_idx].fullname) != NULL; opt_idx++)
8284 if (STRCMP(arg, s) == 0) /* match full name */
8285 break;
8287 if (s == NULL && !is_term_opt)
8289 opt_idx = quick_tab[CharOrdLow(arg[0])];
8290 for ( ; options[opt_idx].fullname != NULL; opt_idx++)
8292 s = options[opt_idx].shortname;
8293 if (s != NULL && STRCMP(arg, s) == 0) /* match short name */
8294 break;
8295 s = NULL;
8298 if (s == NULL)
8299 opt_idx = -1;
8300 return opt_idx;
8303 #if defined(FEAT_EVAL) || defined(FEAT_TCL) || defined(FEAT_MZSCHEME)
8305 * Get the value for an option.
8307 * Returns:
8308 * Number or Toggle option: 1, *numval gets value.
8309 * String option: 0, *stringval gets allocated string.
8310 * Hidden Number or Toggle option: -1.
8311 * hidden String option: -2.
8312 * unknown option: -3.
8315 get_option_value(name, numval, stringval, opt_flags)
8316 char_u *name;
8317 long *numval;
8318 char_u **stringval; /* NULL when only checking existance */
8319 int opt_flags;
8321 int opt_idx;
8322 char_u *varp;
8324 opt_idx = findoption(name);
8325 if (opt_idx < 0) /* unknown option */
8326 return -3;
8328 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
8330 if (options[opt_idx].flags & P_STRING)
8332 if (varp == NULL) /* hidden option */
8333 return -2;
8334 if (stringval != NULL)
8336 #ifdef FEAT_CRYPT
8337 /* never return the value of the crypt key */
8338 if ((char_u **)varp == &curbuf->b_p_key
8339 && **(char_u **)(varp) != NUL)
8340 *stringval = vim_strsave((char_u *)"*****");
8341 else
8342 #endif
8343 *stringval = vim_strsave(*(char_u **)(varp));
8345 return 0;
8348 if (varp == NULL) /* hidden option */
8349 return -1;
8350 if (options[opt_idx].flags & P_NUM)
8351 *numval = *(long *)varp;
8352 else
8354 /* Special case: 'modified' is b_changed, but we also want to consider
8355 * it set when 'ff' or 'fenc' changed. */
8356 if ((int *)varp == &curbuf->b_changed)
8357 *numval = curbufIsChanged();
8358 else
8359 *numval = *(int *)varp;
8361 return 1;
8363 #endif
8366 * Set the value of option "name".
8367 * Use "string" for string options, use "number" for other options.
8369 void
8370 set_option_value(name, number, string, opt_flags)
8371 char_u *name;
8372 long number;
8373 char_u *string;
8374 int opt_flags; /* OPT_LOCAL or 0 (both) */
8376 int opt_idx;
8377 char_u *varp;
8378 long_u flags;
8380 opt_idx = findoption(name);
8381 if (opt_idx < 0)
8382 EMSG2(_("E355: Unknown option: %s"), name);
8383 else
8385 flags = options[opt_idx].flags;
8386 #ifdef HAVE_SANDBOX
8387 /* Disallow changing some options in the sandbox */
8388 if (sandbox > 0 && (flags & P_SECURE))
8390 EMSG(_(e_sandbox));
8391 return;
8393 #endif
8394 if (flags & P_STRING)
8395 set_string_option(opt_idx, string, opt_flags);
8396 else
8398 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
8399 if (varp != NULL) /* hidden option is not changed */
8401 if (number == 0 && string != NULL)
8403 int idx;
8405 /* Either we are given a string or we are setting option
8406 * to zero. */
8407 for (idx = 0; string[idx] == '0'; ++idx)
8409 if (string[idx] != NUL || idx == 0)
8411 /* There's another character after zeros or the string
8412 * is empty. In both cases, we are trying to set a
8413 * num option using a string. */
8414 EMSG3(_("E521: Number required: &%s = '%s'"),
8415 name, string);
8416 return; /* do nothing as we hit an error */
8420 if (flags & P_NUM)
8421 (void)set_num_option(opt_idx, varp, number,
8422 NULL, 0, opt_flags);
8423 else
8424 (void)set_bool_option(opt_idx, varp, (int)number,
8425 opt_flags);
8432 * Get the terminal code for a terminal option.
8433 * Returns NULL when not found.
8435 char_u *
8436 get_term_code(tname)
8437 char_u *tname;
8439 int opt_idx;
8440 char_u *varp;
8442 if (tname[0] != 't' || tname[1] != '_' ||
8443 tname[2] == NUL || tname[3] == NUL)
8444 return NULL;
8445 if ((opt_idx = findoption(tname)) >= 0)
8447 varp = get_varp(&(options[opt_idx]));
8448 if (varp != NULL)
8449 varp = *(char_u **)(varp);
8450 return varp;
8452 return find_termcode(tname + 2);
8455 char_u *
8456 get_highlight_default()
8458 int i;
8460 i = findoption((char_u *)"hl");
8461 if (i >= 0)
8462 return options[i].def_val[VI_DEFAULT];
8463 return (char_u *)NULL;
8466 #if defined(FEAT_MBYTE) || defined(PROTO)
8467 char_u *
8468 get_encoding_default()
8470 int i;
8472 i = findoption((char_u *)"enc");
8473 if (i >= 0)
8474 return options[i].def_val[VI_DEFAULT];
8475 return (char_u *)NULL;
8477 #endif
8480 * Translate a string like "t_xx", "<t_xx>" or "<S-Tab>" to a key number.
8482 static int
8483 find_key_option(arg)
8484 char_u *arg;
8486 int key;
8487 int modifiers;
8490 * Don't use get_special_key_code() for t_xx, we don't want it to call
8491 * add_termcap_entry().
8493 if (arg[0] == 't' && arg[1] == '_' && arg[2] && arg[3])
8494 key = TERMCAP2KEY(arg[2], arg[3]);
8495 else
8497 --arg; /* put arg at the '<' */
8498 modifiers = 0;
8499 key = find_special_key(&arg, &modifiers, TRUE, TRUE);
8500 if (modifiers) /* can't handle modifiers here */
8501 key = 0;
8503 return key;
8507 * if 'all' == 0: show changed options
8508 * if 'all' == 1: show all normal options
8509 * if 'all' == 2: show all terminal options
8511 static void
8512 showoptions(all, opt_flags)
8513 int all;
8514 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
8516 struct vimoption *p;
8517 int col;
8518 int isterm;
8519 char_u *varp;
8520 struct vimoption **items;
8521 int item_count;
8522 int run;
8523 int row, rows;
8524 int cols;
8525 int i;
8526 int len;
8528 #define INC 20
8529 #define GAP 3
8531 items = (struct vimoption **)alloc((unsigned)(sizeof(struct vimoption *) *
8532 PARAM_COUNT));
8533 if (items == NULL)
8534 return;
8536 /* Highlight title */
8537 if (all == 2)
8538 MSG_PUTS_TITLE(_("\n--- Terminal codes ---"));
8539 else if (opt_flags & OPT_GLOBAL)
8540 MSG_PUTS_TITLE(_("\n--- Global option values ---"));
8541 else if (opt_flags & OPT_LOCAL)
8542 MSG_PUTS_TITLE(_("\n--- Local option values ---"));
8543 else
8544 MSG_PUTS_TITLE(_("\n--- Options ---"));
8547 * do the loop two times:
8548 * 1. display the short items
8549 * 2. display the long items (only strings and numbers)
8551 for (run = 1; run <= 2 && !got_int; ++run)
8554 * collect the items in items[]
8556 item_count = 0;
8557 for (p = &options[0]; p->fullname != NULL; p++)
8559 varp = NULL;
8560 isterm = istermoption(p);
8561 if (opt_flags != 0)
8563 if (p->indir != PV_NONE && !isterm)
8564 varp = get_varp_scope(p, opt_flags);
8566 else
8567 varp = get_varp(p);
8568 if (varp != NULL
8569 && ((all == 2 && isterm)
8570 || (all == 1 && !isterm)
8571 || (all == 0 && !optval_default(p, varp))))
8573 if (p->flags & P_BOOL)
8574 len = 1; /* a toggle option fits always */
8575 else
8577 option_value2string(p, opt_flags);
8578 len = (int)STRLEN(p->fullname) + vim_strsize(NameBuff) + 1;
8580 if ((len <= INC - GAP && run == 1) ||
8581 (len > INC - GAP && run == 2))
8582 items[item_count++] = p;
8587 * display the items
8589 if (run == 1)
8591 cols = (Columns + GAP - 3) / INC;
8592 if (cols == 0)
8593 cols = 1;
8594 rows = (item_count + cols - 1) / cols;
8596 else /* run == 2 */
8597 rows = item_count;
8598 for (row = 0; row < rows && !got_int; ++row)
8600 msg_putchar('\n'); /* go to next line */
8601 if (got_int) /* 'q' typed in more */
8602 break;
8603 col = 0;
8604 for (i = row; i < item_count; i += rows)
8606 msg_col = col; /* make columns */
8607 showoneopt(items[i], opt_flags);
8608 col += INC;
8610 out_flush();
8611 ui_breakcheck();
8614 vim_free(items);
8618 * Return TRUE if option "p" has its default value.
8620 static int
8621 optval_default(p, varp)
8622 struct vimoption *p;
8623 char_u *varp;
8625 int dvi;
8627 if (varp == NULL)
8628 return TRUE; /* hidden option is always at default */
8629 dvi = ((p->flags & P_VI_DEF) || p_cp) ? VI_DEFAULT : VIM_DEFAULT;
8630 if (p->flags & P_NUM)
8631 return (*(long *)varp == (long)(long_i)p->def_val[dvi]);
8632 if (p->flags & P_BOOL)
8633 /* the cast to long is required for Manx C, long_i is
8634 * needed for MSVC */
8635 return (*(int *)varp == (int)(long)(long_i)p->def_val[dvi]);
8636 /* P_STRING */
8637 return (STRCMP(*(char_u **)varp, p->def_val[dvi]) == 0);
8641 * showoneopt: show the value of one option
8642 * must not be called with a hidden option!
8644 static void
8645 showoneopt(p, opt_flags)
8646 struct vimoption *p;
8647 int opt_flags; /* OPT_LOCAL or OPT_GLOBAL */
8649 char_u *varp;
8650 int save_silent = silent_mode;
8652 silent_mode = FALSE;
8653 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
8655 varp = get_varp_scope(p, opt_flags);
8657 /* for 'modified' we also need to check if 'ff' or 'fenc' changed. */
8658 if ((p->flags & P_BOOL) && ((int *)varp == &curbuf->b_changed
8659 ? !curbufIsChanged() : !*(int *)varp))
8660 MSG_PUTS("no");
8661 else if ((p->flags & P_BOOL) && *(int *)varp < 0)
8662 MSG_PUTS("--");
8663 else
8664 MSG_PUTS(" ");
8665 MSG_PUTS(p->fullname);
8666 if (!(p->flags & P_BOOL))
8668 msg_putchar('=');
8669 /* put value string in NameBuff */
8670 option_value2string(p, opt_flags);
8671 msg_outtrans(NameBuff);
8674 silent_mode = save_silent;
8675 info_message = FALSE;
8679 * Write modified options as ":set" commands to a file.
8681 * There are three values for "opt_flags":
8682 * OPT_GLOBAL: Write global option values and fresh values of
8683 * buffer-local options (used for start of a session
8684 * file).
8685 * OPT_GLOBAL + OPT_LOCAL: Idem, add fresh values of window-local options for
8686 * curwin (used for a vimrc file).
8687 * OPT_LOCAL: Write buffer-local option values for curbuf, fresh
8688 * and local values for window-local options of
8689 * curwin. Local values are also written when at the
8690 * default value, because a modeline or autocommand
8691 * may have set them when doing ":edit file" and the
8692 * user has set them back at the default or fresh
8693 * value.
8694 * When "local_only" is TRUE, don't write fresh
8695 * values, only local values (for ":mkview").
8696 * (fresh value = value used for a new buffer or window for a local option).
8698 * Return FAIL on error, OK otherwise.
8701 makeset(fd, opt_flags, local_only)
8702 FILE *fd;
8703 int opt_flags;
8704 int local_only;
8706 struct vimoption *p;
8707 char_u *varp; /* currently used value */
8708 char_u *varp_fresh; /* local value */
8709 char_u *varp_local = NULL; /* fresh value */
8710 char *cmd;
8711 int round;
8712 int pri;
8715 * The options that don't have a default (terminal name, columns, lines)
8716 * are never written. Terminal options are also not written.
8717 * Do the loop over "options[]" twice: once for options with the
8718 * P_PRI_MKRC flag and once without.
8720 for (pri = 1; pri >= 0; --pri)
8722 for (p = &options[0]; !istermoption(p); p++)
8723 if (!(p->flags & P_NO_MKRC)
8724 && !istermoption(p)
8725 && ((pri == 1) == ((p->flags & P_PRI_MKRC) != 0)))
8727 /* skip global option when only doing locals */
8728 if (p->indir == PV_NONE && !(opt_flags & OPT_GLOBAL))
8729 continue;
8731 /* Do not store options like 'bufhidden' and 'syntax' in a vimrc
8732 * file, they are always buffer-specific. */
8733 if ((opt_flags & OPT_GLOBAL) && (p->flags & P_NOGLOB))
8734 continue;
8736 /* Global values are only written when not at the default value. */
8737 varp = get_varp_scope(p, opt_flags);
8738 if ((opt_flags & OPT_GLOBAL) && optval_default(p, varp))
8739 continue;
8741 round = 2;
8742 if (p->indir != PV_NONE)
8744 if (p->var == VAR_WIN)
8746 /* skip window-local option when only doing globals */
8747 if (!(opt_flags & OPT_LOCAL))
8748 continue;
8749 /* When fresh value of window-local option is not at the
8750 * default, need to write it too. */
8751 if (!(opt_flags & OPT_GLOBAL) && !local_only)
8753 varp_fresh = get_varp_scope(p, OPT_GLOBAL);
8754 if (!optval_default(p, varp_fresh))
8756 round = 1;
8757 varp_local = varp;
8758 varp = varp_fresh;
8764 /* Round 1: fresh value for window-local options.
8765 * Round 2: other values */
8766 for ( ; round <= 2; varp = varp_local, ++round)
8768 if (round == 1 || (opt_flags & OPT_GLOBAL))
8769 cmd = "set";
8770 else
8771 cmd = "setlocal";
8773 if (p->flags & P_BOOL)
8775 if (put_setbool(fd, cmd, p->fullname, *(int *)varp) == FAIL)
8776 return FAIL;
8778 else if (p->flags & P_NUM)
8780 if (put_setnum(fd, cmd, p->fullname, (long *)varp) == FAIL)
8781 return FAIL;
8783 else /* P_STRING */
8785 #if defined(FEAT_SYN_HL) || defined(FEAT_AUTOCMD)
8786 int do_endif = FALSE;
8788 /* Don't set 'syntax' and 'filetype' again if the value is
8789 * already right, avoids reloading the syntax file. */
8790 if (
8791 # if defined(FEAT_SYN_HL)
8792 p->indir == PV_SYN
8793 # if defined(FEAT_AUTOCMD)
8795 # endif
8796 # endif
8797 # if defined(FEAT_AUTOCMD)
8798 p->indir == PV_FT
8799 # endif
8802 if (fprintf(fd, "if &%s != '%s'", p->fullname,
8803 *(char_u **)(varp)) < 0
8804 || put_eol(fd) < 0)
8805 return FAIL;
8806 do_endif = TRUE;
8808 #endif
8809 if (put_setstring(fd, cmd, p->fullname, (char_u **)varp,
8810 (p->flags & P_EXPAND) != 0) == FAIL)
8811 return FAIL;
8812 #if defined(FEAT_SYN_HL) || defined(FEAT_AUTOCMD)
8813 if (do_endif)
8815 if (put_line(fd, "endif") == FAIL)
8816 return FAIL;
8818 #endif
8823 return OK;
8826 #if defined(FEAT_FOLDING) || defined(PROTO)
8828 * Generate set commands for the local fold options only. Used when
8829 * 'sessionoptions' or 'viewoptions' contains "folds" but not "options".
8832 makefoldset(fd)
8833 FILE *fd;
8835 if (put_setstring(fd, "setlocal", "fdm", &curwin->w_p_fdm, FALSE) == FAIL
8836 # ifdef FEAT_EVAL
8837 || put_setstring(fd, "setlocal", "fde", &curwin->w_p_fde, FALSE)
8838 == FAIL
8839 # endif
8840 || put_setstring(fd, "setlocal", "fmr", &curwin->w_p_fmr, FALSE)
8841 == FAIL
8842 || put_setstring(fd, "setlocal", "fdi", &curwin->w_p_fdi, FALSE)
8843 == FAIL
8844 || put_setnum(fd, "setlocal", "fdl", &curwin->w_p_fdl) == FAIL
8845 || put_setnum(fd, "setlocal", "fml", &curwin->w_p_fml) == FAIL
8846 || put_setnum(fd, "setlocal", "fdn", &curwin->w_p_fdn) == FAIL
8847 || put_setbool(fd, "setlocal", "fen", curwin->w_p_fen) == FAIL
8849 return FAIL;
8851 return OK;
8853 #endif
8855 static int
8856 put_setstring(fd, cmd, name, valuep, expand)
8857 FILE *fd;
8858 char *cmd;
8859 char *name;
8860 char_u **valuep;
8861 int expand;
8863 char_u *s;
8864 char_u buf[MAXPATHL];
8866 if (fprintf(fd, "%s %s=", cmd, name) < 0)
8867 return FAIL;
8868 if (*valuep != NULL)
8870 /* Output 'pastetoggle' as key names. For other
8871 * options some characters have to be escaped with
8872 * CTRL-V or backslash */
8873 if (valuep == &p_pt)
8875 s = *valuep;
8876 while (*s != NUL)
8877 if (put_escstr(fd, str2special(&s, FALSE), 2) == FAIL)
8878 return FAIL;
8880 else if (expand)
8882 home_replace(NULL, *valuep, buf, MAXPATHL, FALSE);
8883 if (put_escstr(fd, buf, 2) == FAIL)
8884 return FAIL;
8886 else if (put_escstr(fd, *valuep, 2) == FAIL)
8887 return FAIL;
8889 if (put_eol(fd) < 0)
8890 return FAIL;
8891 return OK;
8894 static int
8895 put_setnum(fd, cmd, name, valuep)
8896 FILE *fd;
8897 char *cmd;
8898 char *name;
8899 long *valuep;
8901 long wc;
8903 if (fprintf(fd, "%s %s=", cmd, name) < 0)
8904 return FAIL;
8905 if (wc_use_keyname((char_u *)valuep, &wc))
8907 /* print 'wildchar' and 'wildcharm' as a key name */
8908 if (fputs((char *)get_special_key_name((int)wc, 0), fd) < 0)
8909 return FAIL;
8911 else if (fprintf(fd, "%ld", *valuep) < 0)
8912 return FAIL;
8913 if (put_eol(fd) < 0)
8914 return FAIL;
8915 return OK;
8918 static int
8919 put_setbool(fd, cmd, name, value)
8920 FILE *fd;
8921 char *cmd;
8922 char *name;
8923 int value;
8925 if (value < 0) /* global/local option using global value */
8926 return OK;
8927 if (fprintf(fd, "%s %s%s", cmd, value ? "" : "no", name) < 0
8928 || put_eol(fd) < 0)
8929 return FAIL;
8930 return OK;
8934 * Clear all the terminal options.
8935 * If the option has been allocated, free the memory.
8936 * Terminal options are never hidden or indirect.
8938 void
8939 clear_termoptions()
8942 * Reset a few things before clearing the old options. This may cause
8943 * outputting a few things that the terminal doesn't understand, but the
8944 * screen will be cleared later, so this is OK.
8946 #ifdef FEAT_MOUSE_TTY
8947 mch_setmouse(FALSE); /* switch mouse off */
8948 #endif
8949 #ifdef FEAT_TITLE
8950 mch_restore_title(3); /* restore window titles */
8951 #endif
8952 #if defined(FEAT_XCLIPBOARD) && defined(FEAT_GUI)
8953 /* When starting the GUI close the display opened for the clipboard.
8954 * After restoring the title, because that will need the display. */
8955 if (gui.starting)
8956 clear_xterm_clip();
8957 #endif
8958 #ifdef WIN3264
8960 * Check if this is allowed now.
8962 if (can_end_termcap_mode(FALSE) == TRUE)
8963 #endif
8964 stoptermcap(); /* stop termcap mode */
8966 free_termoptions();
8969 void
8970 free_termoptions()
8972 struct vimoption *p;
8974 for (p = &options[0]; p->fullname != NULL; p++)
8975 if (istermoption(p))
8977 if (p->flags & P_ALLOCED)
8978 free_string_option(*(char_u **)(p->var));
8979 if (p->flags & P_DEF_ALLOCED)
8980 free_string_option(p->def_val[VI_DEFAULT]);
8981 *(char_u **)(p->var) = empty_option;
8982 p->def_val[VI_DEFAULT] = empty_option;
8983 p->flags &= ~(P_ALLOCED|P_DEF_ALLOCED);
8985 clear_termcodes();
8989 * Free the string for one term option, if it was allocated.
8990 * Set the string to empty_option and clear allocated flag.
8991 * "var" points to the option value.
8993 void
8994 free_one_termoption(var)
8995 char_u *var;
8997 struct vimoption *p;
8999 for (p = &options[0]; p->fullname != NULL; p++)
9000 if (p->var == var)
9002 if (p->flags & P_ALLOCED)
9003 free_string_option(*(char_u **)(p->var));
9004 *(char_u **)(p->var) = empty_option;
9005 p->flags &= ~P_ALLOCED;
9006 break;
9011 * Set the terminal option defaults to the current value.
9012 * Used after setting the terminal name.
9014 void
9015 set_term_defaults()
9017 struct vimoption *p;
9019 for (p = &options[0]; p->fullname != NULL; p++)
9021 if (istermoption(p) && p->def_val[VI_DEFAULT] != *(char_u **)(p->var))
9023 if (p->flags & P_DEF_ALLOCED)
9025 free_string_option(p->def_val[VI_DEFAULT]);
9026 p->flags &= ~P_DEF_ALLOCED;
9028 p->def_val[VI_DEFAULT] = *(char_u **)(p->var);
9029 if (p->flags & P_ALLOCED)
9031 p->flags |= P_DEF_ALLOCED;
9032 p->flags &= ~P_ALLOCED; /* don't free the value now */
9039 * return TRUE if 'p' starts with 't_'
9041 static int
9042 istermoption(p)
9043 struct vimoption *p;
9045 return (p->fullname[0] == 't' && p->fullname[1] == '_');
9049 * Compute columns for ruler and shown command. 'sc_col' is also used to
9050 * decide what the maximum length of a message on the status line can be.
9051 * If there is a status line for the last window, 'sc_col' is independent
9052 * of 'ru_col'.
9055 #define COL_RULER 17 /* columns needed by standard ruler */
9057 void
9058 comp_col()
9060 #if defined(FEAT_CMDL_INFO) && defined(FEAT_WINDOWS)
9061 int last_has_status = (p_ls == 2 || (p_ls == 1 && firstwin != lastwin));
9063 sc_col = 0;
9064 ru_col = 0;
9065 if (p_ru)
9067 #ifdef FEAT_STL_OPT
9068 ru_col = (ru_wid ? ru_wid : COL_RULER) + 1;
9069 #else
9070 ru_col = COL_RULER + 1;
9071 #endif
9072 /* no last status line, adjust sc_col */
9073 if (!last_has_status)
9074 sc_col = ru_col;
9076 if (p_sc)
9078 sc_col += SHOWCMD_COLS;
9079 if (!p_ru || last_has_status) /* no need for separating space */
9080 ++sc_col;
9082 sc_col = Columns - sc_col;
9083 ru_col = Columns - ru_col;
9084 if (sc_col <= 0) /* screen too narrow, will become a mess */
9085 sc_col = 1;
9086 if (ru_col <= 0)
9087 ru_col = 1;
9088 #else
9089 sc_col = Columns;
9090 ru_col = Columns;
9091 #endif
9095 * Get pointer to option variable, depending on local or global scope.
9097 static char_u *
9098 get_varp_scope(p, opt_flags)
9099 struct vimoption *p;
9100 int opt_flags;
9102 if ((opt_flags & OPT_GLOBAL) && p->indir != PV_NONE)
9104 if (p->var == VAR_WIN)
9105 return (char_u *)GLOBAL_WO(get_varp(p));
9106 return p->var;
9108 if ((opt_flags & OPT_LOCAL) && ((int)p->indir & PV_BOTH))
9110 switch ((int)p->indir)
9112 #ifdef FEAT_QUICKFIX
9113 case PV_EFM: return (char_u *)&(curbuf->b_p_efm);
9114 case PV_GP: return (char_u *)&(curbuf->b_p_gp);
9115 case PV_MP: return (char_u *)&(curbuf->b_p_mp);
9116 #endif
9117 case PV_EP: return (char_u *)&(curbuf->b_p_ep);
9118 case PV_KP: return (char_u *)&(curbuf->b_p_kp);
9119 case PV_PATH: return (char_u *)&(curbuf->b_p_path);
9120 case PV_AR: return (char_u *)&(curbuf->b_p_ar);
9121 case PV_TAGS: return (char_u *)&(curbuf->b_p_tags);
9122 #ifdef FEAT_FIND_ID
9123 case PV_DEF: return (char_u *)&(curbuf->b_p_def);
9124 case PV_INC: return (char_u *)&(curbuf->b_p_inc);
9125 #endif
9126 #ifdef FEAT_INS_EXPAND
9127 case PV_DICT: return (char_u *)&(curbuf->b_p_dict);
9128 case PV_TSR: return (char_u *)&(curbuf->b_p_tsr);
9129 #endif
9130 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9131 case PV_BEXPR: return (char_u *)&(curbuf->b_p_bexpr);
9132 #endif
9133 #ifdef FEAT_STL_OPT
9134 case PV_STL: return (char_u *)&(curwin->w_p_stl);
9135 #endif
9137 return NULL; /* "cannot happen" */
9139 return get_varp(p);
9143 * Get pointer to option variable.
9145 static char_u *
9146 get_varp(p)
9147 struct vimoption *p;
9149 /* hidden option, always return NULL */
9150 if (p->var == NULL)
9151 return NULL;
9153 switch ((int)p->indir)
9155 case PV_NONE: return p->var;
9157 /* global option with local value: use local value if it's been set */
9158 case PV_EP: return *curbuf->b_p_ep != NUL
9159 ? (char_u *)&curbuf->b_p_ep : p->var;
9160 case PV_KP: return *curbuf->b_p_kp != NUL
9161 ? (char_u *)&curbuf->b_p_kp : p->var;
9162 case PV_PATH: return *curbuf->b_p_path != NUL
9163 ? (char_u *)&(curbuf->b_p_path) : p->var;
9164 case PV_AR: return curbuf->b_p_ar >= 0
9165 ? (char_u *)&(curbuf->b_p_ar) : p->var;
9166 case PV_TAGS: return *curbuf->b_p_tags != NUL
9167 ? (char_u *)&(curbuf->b_p_tags) : p->var;
9168 #ifdef FEAT_FIND_ID
9169 case PV_DEF: return *curbuf->b_p_def != NUL
9170 ? (char_u *)&(curbuf->b_p_def) : p->var;
9171 case PV_INC: return *curbuf->b_p_inc != NUL
9172 ? (char_u *)&(curbuf->b_p_inc) : p->var;
9173 #endif
9174 #ifdef FEAT_INS_EXPAND
9175 case PV_DICT: return *curbuf->b_p_dict != NUL
9176 ? (char_u *)&(curbuf->b_p_dict) : p->var;
9177 case PV_TSR: return *curbuf->b_p_tsr != NUL
9178 ? (char_u *)&(curbuf->b_p_tsr) : p->var;
9179 #endif
9180 #ifdef FEAT_QUICKFIX
9181 case PV_EFM: return *curbuf->b_p_efm != NUL
9182 ? (char_u *)&(curbuf->b_p_efm) : p->var;
9183 case PV_GP: return *curbuf->b_p_gp != NUL
9184 ? (char_u *)&(curbuf->b_p_gp) : p->var;
9185 case PV_MP: return *curbuf->b_p_mp != NUL
9186 ? (char_u *)&(curbuf->b_p_mp) : p->var;
9187 #endif
9188 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9189 case PV_BEXPR: return *curbuf->b_p_bexpr != NUL
9190 ? (char_u *)&(curbuf->b_p_bexpr) : p->var;
9191 #endif
9192 #ifdef FEAT_STL_OPT
9193 case PV_STL: return *curwin->w_p_stl != NUL
9194 ? (char_u *)&(curwin->w_p_stl) : p->var;
9195 #endif
9197 #ifdef FEAT_ARABIC
9198 case PV_ARAB: return (char_u *)&(curwin->w_p_arab);
9199 #endif
9200 case PV_LIST: return (char_u *)&(curwin->w_p_list);
9201 #ifdef FEAT_SPELL
9202 case PV_SPELL: return (char_u *)&(curwin->w_p_spell);
9203 #endif
9204 #ifdef FEAT_SYN_HL
9205 case PV_CUC: return (char_u *)&(curwin->w_p_cuc);
9206 case PV_CUL: return (char_u *)&(curwin->w_p_cul);
9207 #endif
9208 #ifdef FEAT_DIFF
9209 case PV_DIFF: return (char_u *)&(curwin->w_p_diff);
9210 #endif
9211 #ifdef FEAT_FOLDING
9212 case PV_FDC: return (char_u *)&(curwin->w_p_fdc);
9213 case PV_FEN: return (char_u *)&(curwin->w_p_fen);
9214 case PV_FDI: return (char_u *)&(curwin->w_p_fdi);
9215 case PV_FDL: return (char_u *)&(curwin->w_p_fdl);
9216 case PV_FDM: return (char_u *)&(curwin->w_p_fdm);
9217 case PV_FML: return (char_u *)&(curwin->w_p_fml);
9218 case PV_FDN: return (char_u *)&(curwin->w_p_fdn);
9219 # ifdef FEAT_EVAL
9220 case PV_FDE: return (char_u *)&(curwin->w_p_fde);
9221 case PV_FDT: return (char_u *)&(curwin->w_p_fdt);
9222 # endif
9223 case PV_FMR: return (char_u *)&(curwin->w_p_fmr);
9224 #endif
9225 case PV_NU: return (char_u *)&(curwin->w_p_nu);
9226 #ifdef FEAT_LINEBREAK
9227 case PV_NUW: return (char_u *)&(curwin->w_p_nuw);
9228 #endif
9229 #ifdef FEAT_WINDOWS
9230 case PV_WFH: return (char_u *)&(curwin->w_p_wfh);
9231 #endif
9232 #ifdef FEAT_VERTSPLIT
9233 case PV_WFW: return (char_u *)&(curwin->w_p_wfw);
9234 #endif
9235 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
9236 case PV_PVW: return (char_u *)&(curwin->w_p_pvw);
9237 #endif
9238 #ifdef FEAT_RIGHTLEFT
9239 case PV_RL: return (char_u *)&(curwin->w_p_rl);
9240 case PV_RLC: return (char_u *)&(curwin->w_p_rlc);
9241 #endif
9242 case PV_SCROLL: return (char_u *)&(curwin->w_p_scr);
9243 case PV_WRAP: return (char_u *)&(curwin->w_p_wrap);
9244 #ifdef FEAT_LINEBREAK
9245 case PV_LBR: return (char_u *)&(curwin->w_p_lbr);
9246 #endif
9247 #ifdef FEAT_SCROLLBIND
9248 case PV_SCBIND: return (char_u *)&(curwin->w_p_scb);
9249 #endif
9251 case PV_AI: return (char_u *)&(curbuf->b_p_ai);
9252 case PV_BIN: return (char_u *)&(curbuf->b_p_bin);
9253 #ifdef FEAT_MBYTE
9254 case PV_BOMB: return (char_u *)&(curbuf->b_p_bomb);
9255 #endif
9256 #if defined(FEAT_QUICKFIX)
9257 case PV_BH: return (char_u *)&(curbuf->b_p_bh);
9258 case PV_BT: return (char_u *)&(curbuf->b_p_bt);
9259 #endif
9260 case PV_BL: return (char_u *)&(curbuf->b_p_bl);
9261 case PV_CI: return (char_u *)&(curbuf->b_p_ci);
9262 #ifdef FEAT_CINDENT
9263 case PV_CIN: return (char_u *)&(curbuf->b_p_cin);
9264 case PV_CINK: return (char_u *)&(curbuf->b_p_cink);
9265 case PV_CINO: return (char_u *)&(curbuf->b_p_cino);
9266 #endif
9267 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
9268 case PV_CINW: return (char_u *)&(curbuf->b_p_cinw);
9269 #endif
9270 #ifdef FEAT_COMMENTS
9271 case PV_COM: return (char_u *)&(curbuf->b_p_com);
9272 #endif
9273 #ifdef FEAT_FOLDING
9274 case PV_CMS: return (char_u *)&(curbuf->b_p_cms);
9275 #endif
9276 #ifdef FEAT_INS_EXPAND
9277 case PV_CPT: return (char_u *)&(curbuf->b_p_cpt);
9278 #endif
9279 #ifdef FEAT_COMPL_FUNC
9280 case PV_CFU: return (char_u *)&(curbuf->b_p_cfu);
9281 case PV_OFU: return (char_u *)&(curbuf->b_p_ofu);
9282 #endif
9283 case PV_EOL: return (char_u *)&(curbuf->b_p_eol);
9284 case PV_ET: return (char_u *)&(curbuf->b_p_et);
9285 #ifdef FEAT_MBYTE
9286 case PV_FENC: return (char_u *)&(curbuf->b_p_fenc);
9287 #endif
9288 case PV_FF: return (char_u *)&(curbuf->b_p_ff);
9289 #ifdef FEAT_AUTOCMD
9290 case PV_FT: return (char_u *)&(curbuf->b_p_ft);
9291 #endif
9292 case PV_FO: return (char_u *)&(curbuf->b_p_fo);
9293 case PV_FLP: return (char_u *)&(curbuf->b_p_flp);
9294 case PV_IMI: return (char_u *)&(curbuf->b_p_iminsert);
9295 case PV_IMS: return (char_u *)&(curbuf->b_p_imsearch);
9296 case PV_INF: return (char_u *)&(curbuf->b_p_inf);
9297 case PV_ISK: return (char_u *)&(curbuf->b_p_isk);
9298 #ifdef FEAT_FIND_ID
9299 # ifdef FEAT_EVAL
9300 case PV_INEX: return (char_u *)&(curbuf->b_p_inex);
9301 # endif
9302 #endif
9303 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
9304 case PV_INDE: return (char_u *)&(curbuf->b_p_inde);
9305 case PV_INDK: return (char_u *)&(curbuf->b_p_indk);
9306 #endif
9307 #ifdef FEAT_EVAL
9308 case PV_FEX: return (char_u *)&(curbuf->b_p_fex);
9309 #endif
9310 #ifdef FEAT_CRYPT
9311 case PV_KEY: return (char_u *)&(curbuf->b_p_key);
9312 #endif
9313 #ifdef FEAT_LISP
9314 case PV_LISP: return (char_u *)&(curbuf->b_p_lisp);
9315 #endif
9316 case PV_ML: return (char_u *)&(curbuf->b_p_ml);
9317 case PV_MPS: return (char_u *)&(curbuf->b_p_mps);
9318 case PV_MA: return (char_u *)&(curbuf->b_p_ma);
9319 case PV_MOD: return (char_u *)&(curbuf->b_changed);
9320 case PV_NF: return (char_u *)&(curbuf->b_p_nf);
9321 #ifdef FEAT_OSFILETYPE
9322 case PV_OFT: return (char_u *)&(curbuf->b_p_oft);
9323 #endif
9324 case PV_PI: return (char_u *)&(curbuf->b_p_pi);
9325 #ifdef FEAT_TEXTOBJ
9326 case PV_QE: return (char_u *)&(curbuf->b_p_qe);
9327 #endif
9328 case PV_RO: return (char_u *)&(curbuf->b_p_ro);
9329 #ifdef FEAT_SMARTINDENT
9330 case PV_SI: return (char_u *)&(curbuf->b_p_si);
9331 #endif
9332 #ifndef SHORT_FNAME
9333 case PV_SN: return (char_u *)&(curbuf->b_p_sn);
9334 #endif
9335 case PV_STS: return (char_u *)&(curbuf->b_p_sts);
9336 #ifdef FEAT_SEARCHPATH
9337 case PV_SUA: return (char_u *)&(curbuf->b_p_sua);
9338 #endif
9339 case PV_SWF: return (char_u *)&(curbuf->b_p_swf);
9340 #ifdef FEAT_SYN_HL
9341 case PV_SMC: return (char_u *)&(curbuf->b_p_smc);
9342 case PV_SYN: return (char_u *)&(curbuf->b_p_syn);
9343 #endif
9344 #ifdef FEAT_SPELL
9345 case PV_SPC: return (char_u *)&(curbuf->b_p_spc);
9346 case PV_SPF: return (char_u *)&(curbuf->b_p_spf);
9347 case PV_SPL: return (char_u *)&(curbuf->b_p_spl);
9348 #endif
9349 case PV_SW: return (char_u *)&(curbuf->b_p_sw);
9350 case PV_TS: return (char_u *)&(curbuf->b_p_ts);
9351 case PV_TW: return (char_u *)&(curbuf->b_p_tw);
9352 case PV_TX: return (char_u *)&(curbuf->b_p_tx);
9353 #ifdef FEAT_PERSISTENT_UNDO
9354 case PV_UDF: return (char_u *)&(curbuf->b_p_udf);
9355 #endif
9356 case PV_WM: return (char_u *)&(curbuf->b_p_wm);
9357 #ifdef FEAT_KEYMAP
9358 case PV_KMAP: return (char_u *)&(curbuf->b_p_keymap);
9359 #endif
9360 default: EMSG(_("E356: get_varp ERROR"));
9362 /* always return a valid pointer to avoid a crash! */
9363 return (char_u *)&(curbuf->b_p_wm);
9367 * Get the value of 'equalprg', either the buffer-local one or the global one.
9369 char_u *
9370 get_equalprg()
9372 if (*curbuf->b_p_ep == NUL)
9373 return p_ep;
9374 return curbuf->b_p_ep;
9377 #if defined(FEAT_WINDOWS) || defined(PROTO)
9379 * Copy options from one window to another.
9380 * Used when splitting a window.
9382 void
9383 win_copy_options(wp_from, wp_to)
9384 win_T *wp_from;
9385 win_T *wp_to;
9387 copy_winopt(&wp_from->w_onebuf_opt, &wp_to->w_onebuf_opt);
9388 copy_winopt(&wp_from->w_allbuf_opt, &wp_to->w_allbuf_opt);
9389 # ifdef FEAT_RIGHTLEFT
9390 # ifdef FEAT_FKMAP
9391 /* Is this right? */
9392 wp_to->w_farsi = wp_from->w_farsi;
9393 # endif
9394 # endif
9396 #endif
9399 * Copy the options from one winopt_T to another.
9400 * Doesn't free the old option values in "to", use clear_winopt() for that.
9401 * The 'scroll' option is not copied, because it depends on the window height.
9402 * The 'previewwindow' option is reset, there can be only one preview window.
9404 void
9405 copy_winopt(from, to)
9406 winopt_T *from;
9407 winopt_T *to;
9409 #ifdef FEAT_ARABIC
9410 to->wo_arab = from->wo_arab;
9411 #endif
9412 to->wo_list = from->wo_list;
9413 to->wo_nu = from->wo_nu;
9414 #ifdef FEAT_LINEBREAK
9415 to->wo_nuw = from->wo_nuw;
9416 #endif
9417 #ifdef FEAT_RIGHTLEFT
9418 to->wo_rl = from->wo_rl;
9419 to->wo_rlc = vim_strsave(from->wo_rlc);
9420 #endif
9421 #ifdef FEAT_STL_OPT
9422 to->wo_stl = vim_strsave(from->wo_stl);
9423 #endif
9424 to->wo_wrap = from->wo_wrap;
9425 #ifdef FEAT_LINEBREAK
9426 to->wo_lbr = from->wo_lbr;
9427 #endif
9428 #ifdef FEAT_SCROLLBIND
9429 to->wo_scb = from->wo_scb;
9430 #endif
9431 #ifdef FEAT_SPELL
9432 to->wo_spell = from->wo_spell;
9433 #endif
9434 #ifdef FEAT_SYN_HL
9435 to->wo_cuc = from->wo_cuc;
9436 to->wo_cul = from->wo_cul;
9437 #endif
9438 #ifdef FEAT_DIFF
9439 to->wo_diff = from->wo_diff;
9440 #endif
9441 #ifdef FEAT_FOLDING
9442 to->wo_fdc = from->wo_fdc;
9443 to->wo_fen = from->wo_fen;
9444 to->wo_fdi = vim_strsave(from->wo_fdi);
9445 to->wo_fml = from->wo_fml;
9446 to->wo_fdl = from->wo_fdl;
9447 to->wo_fdm = vim_strsave(from->wo_fdm);
9448 to->wo_fdn = from->wo_fdn;
9449 # ifdef FEAT_EVAL
9450 to->wo_fde = vim_strsave(from->wo_fde);
9451 to->wo_fdt = vim_strsave(from->wo_fdt);
9452 # endif
9453 to->wo_fmr = vim_strsave(from->wo_fmr);
9454 #endif
9455 check_winopt(to); /* don't want NULL pointers */
9459 * Check string options in a window for a NULL value.
9461 void
9462 check_win_options(win)
9463 win_T *win;
9465 check_winopt(&win->w_onebuf_opt);
9466 check_winopt(&win->w_allbuf_opt);
9470 * Check for NULL pointers in a winopt_T and replace them with empty_option.
9472 void
9473 check_winopt(wop)
9474 winopt_T *wop UNUSED;
9476 #ifdef FEAT_FOLDING
9477 check_string_option(&wop->wo_fdi);
9478 check_string_option(&wop->wo_fdm);
9479 # ifdef FEAT_EVAL
9480 check_string_option(&wop->wo_fde);
9481 check_string_option(&wop->wo_fdt);
9482 # endif
9483 check_string_option(&wop->wo_fmr);
9484 #endif
9485 #ifdef FEAT_RIGHTLEFT
9486 check_string_option(&wop->wo_rlc);
9487 #endif
9488 #ifdef FEAT_STL_OPT
9489 check_string_option(&wop->wo_stl);
9490 #endif
9494 * Free the allocated memory inside a winopt_T.
9496 void
9497 clear_winopt(wop)
9498 winopt_T *wop UNUSED;
9500 #ifdef FEAT_FOLDING
9501 clear_string_option(&wop->wo_fdi);
9502 clear_string_option(&wop->wo_fdm);
9503 # ifdef FEAT_EVAL
9504 clear_string_option(&wop->wo_fde);
9505 clear_string_option(&wop->wo_fdt);
9506 # endif
9507 clear_string_option(&wop->wo_fmr);
9508 #endif
9509 #ifdef FEAT_RIGHTLEFT
9510 clear_string_option(&wop->wo_rlc);
9511 #endif
9512 #ifdef FEAT_STL_OPT
9513 clear_string_option(&wop->wo_stl);
9514 #endif
9518 * Copy global option values to local options for one buffer.
9519 * Used when creating a new buffer and sometimes when entering a buffer.
9520 * flags:
9521 * BCO_ENTER We will enter the buf buffer.
9522 * BCO_ALWAYS Always copy the options, but only set b_p_initialized when
9523 * appropriate.
9524 * BCO_NOHELP Don't copy the values to a help buffer.
9526 void
9527 buf_copy_options(buf, flags)
9528 buf_T *buf;
9529 int flags;
9531 int should_copy = TRUE;
9532 char_u *save_p_isk = NULL; /* init for GCC */
9533 int dont_do_help;
9534 int did_isk = FALSE;
9537 * Don't do anything of the buffer is invalid.
9539 if (buf == NULL || !buf_valid(buf))
9540 return;
9543 * Skip this when the option defaults have not been set yet. Happens when
9544 * main() allocates the first buffer.
9546 if (p_cpo != NULL)
9549 * Always copy when entering and 'cpo' contains 'S'.
9550 * Don't copy when already initialized.
9551 * Don't copy when 'cpo' contains 's' and not entering.
9552 * 'S' BCO_ENTER initialized 's' should_copy
9553 * yes yes X X TRUE
9554 * yes no yes X FALSE
9555 * no X yes X FALSE
9556 * X no no yes FALSE
9557 * X no no no TRUE
9558 * no yes no X TRUE
9560 if ((vim_strchr(p_cpo, CPO_BUFOPTGLOB) == NULL || !(flags & BCO_ENTER))
9561 && (buf->b_p_initialized
9562 || (!(flags & BCO_ENTER)
9563 && vim_strchr(p_cpo, CPO_BUFOPT) != NULL)))
9564 should_copy = FALSE;
9566 if (should_copy || (flags & BCO_ALWAYS))
9568 /* Don't copy the options specific to a help buffer when
9569 * BCO_NOHELP is given or the options were initialized already
9570 * (jumping back to a help file with CTRL-T or CTRL-O) */
9571 dont_do_help = ((flags & BCO_NOHELP) && buf->b_help)
9572 || buf->b_p_initialized;
9573 if (dont_do_help) /* don't free b_p_isk */
9575 save_p_isk = buf->b_p_isk;
9576 buf->b_p_isk = NULL;
9579 * Always free the allocated strings.
9580 * If not already initialized, set 'readonly' and copy 'fileformat'.
9582 if (!buf->b_p_initialized)
9584 free_buf_options(buf, TRUE);
9585 buf->b_p_ro = FALSE; /* don't copy readonly */
9586 buf->b_p_tx = p_tx;
9587 #ifdef FEAT_MBYTE
9588 buf->b_p_fenc = vim_strsave(p_fenc);
9589 #endif
9590 buf->b_p_ff = vim_strsave(p_ff);
9591 #if defined(FEAT_QUICKFIX)
9592 buf->b_p_bh = empty_option;
9593 buf->b_p_bt = empty_option;
9594 #endif
9596 else
9597 free_buf_options(buf, FALSE);
9599 buf->b_p_ai = p_ai;
9600 buf->b_p_ai_nopaste = p_ai_nopaste;
9601 buf->b_p_sw = p_sw;
9602 buf->b_p_tw = p_tw;
9603 buf->b_p_tw_nopaste = p_tw_nopaste;
9604 buf->b_p_tw_nobin = p_tw_nobin;
9605 buf->b_p_wm = p_wm;
9606 buf->b_p_wm_nopaste = p_wm_nopaste;
9607 buf->b_p_wm_nobin = p_wm_nobin;
9608 buf->b_p_bin = p_bin;
9609 #ifdef FEAT_MBYTE
9610 buf->b_p_bomb = p_bomb;
9611 #endif
9612 buf->b_p_et = p_et;
9613 buf->b_p_et_nobin = p_et_nobin;
9614 buf->b_p_ml = p_ml;
9615 buf->b_p_ml_nobin = p_ml_nobin;
9616 buf->b_p_inf = p_inf;
9617 buf->b_p_swf = p_swf;
9618 #ifdef FEAT_INS_EXPAND
9619 buf->b_p_cpt = vim_strsave(p_cpt);
9620 #endif
9621 #ifdef FEAT_COMPL_FUNC
9622 buf->b_p_cfu = vim_strsave(p_cfu);
9623 buf->b_p_ofu = vim_strsave(p_ofu);
9624 #endif
9625 buf->b_p_sts = p_sts;
9626 buf->b_p_sts_nopaste = p_sts_nopaste;
9627 #ifndef SHORT_FNAME
9628 buf->b_p_sn = p_sn;
9629 #endif
9630 #ifdef FEAT_COMMENTS
9631 buf->b_p_com = vim_strsave(p_com);
9632 #endif
9633 #ifdef FEAT_FOLDING
9634 buf->b_p_cms = vim_strsave(p_cms);
9635 #endif
9636 buf->b_p_fo = vim_strsave(p_fo);
9637 buf->b_p_flp = vim_strsave(p_flp);
9638 buf->b_p_nf = vim_strsave(p_nf);
9639 buf->b_p_mps = vim_strsave(p_mps);
9640 #ifdef FEAT_SMARTINDENT
9641 buf->b_p_si = p_si;
9642 #endif
9643 buf->b_p_ci = p_ci;
9644 #ifdef FEAT_CINDENT
9645 buf->b_p_cin = p_cin;
9646 buf->b_p_cink = vim_strsave(p_cink);
9647 buf->b_p_cino = vim_strsave(p_cino);
9648 #endif
9649 #ifdef FEAT_AUTOCMD
9650 /* Don't copy 'filetype', it must be detected */
9651 buf->b_p_ft = empty_option;
9652 #endif
9653 #ifdef FEAT_OSFILETYPE
9654 buf->b_p_oft = vim_strsave(p_oft);
9655 #endif
9656 buf->b_p_pi = p_pi;
9657 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
9658 buf->b_p_cinw = vim_strsave(p_cinw);
9659 #endif
9660 #ifdef FEAT_LISP
9661 buf->b_p_lisp = p_lisp;
9662 #endif
9663 #ifdef FEAT_SYN_HL
9664 /* Don't copy 'syntax', it must be set */
9665 buf->b_p_syn = empty_option;
9666 buf->b_p_smc = p_smc;
9667 #endif
9668 #ifdef FEAT_SPELL
9669 buf->b_p_spc = vim_strsave(p_spc);
9670 (void)compile_cap_prog(buf);
9671 buf->b_p_spf = vim_strsave(p_spf);
9672 buf->b_p_spl = vim_strsave(p_spl);
9673 #endif
9674 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
9675 buf->b_p_inde = vim_strsave(p_inde);
9676 buf->b_p_indk = vim_strsave(p_indk);
9677 #endif
9678 #if defined(FEAT_EVAL)
9679 buf->b_p_fex = vim_strsave(p_fex);
9680 #endif
9681 #ifdef FEAT_CRYPT
9682 buf->b_p_key = vim_strsave(p_key);
9683 #endif
9684 #ifdef FEAT_SEARCHPATH
9685 buf->b_p_sua = vim_strsave(p_sua);
9686 #endif
9687 #ifdef FEAT_KEYMAP
9688 buf->b_p_keymap = vim_strsave(p_keymap);
9689 buf->b_kmap_state |= KEYMAP_INIT;
9690 #endif
9691 /* This isn't really an option, but copying the langmap and IME
9692 * state from the current buffer is better than resetting it. */
9693 buf->b_p_iminsert = p_iminsert;
9694 buf->b_p_imsearch = p_imsearch;
9696 /* options that are normally global but also have a local value
9697 * are not copied, start using the global value */
9698 buf->b_p_ar = -1;
9699 #ifdef FEAT_QUICKFIX
9700 buf->b_p_gp = empty_option;
9701 buf->b_p_mp = empty_option;
9702 buf->b_p_efm = empty_option;
9703 #endif
9704 buf->b_p_ep = empty_option;
9705 buf->b_p_kp = empty_option;
9706 buf->b_p_path = empty_option;
9707 buf->b_p_tags = empty_option;
9708 #ifdef FEAT_FIND_ID
9709 buf->b_p_def = empty_option;
9710 buf->b_p_inc = empty_option;
9711 # ifdef FEAT_EVAL
9712 buf->b_p_inex = vim_strsave(p_inex);
9713 # endif
9714 #endif
9715 #ifdef FEAT_INS_EXPAND
9716 buf->b_p_dict = empty_option;
9717 buf->b_p_tsr = empty_option;
9718 #endif
9719 #ifdef FEAT_TEXTOBJ
9720 buf->b_p_qe = vim_strsave(p_qe);
9721 #endif
9722 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9723 buf->b_p_bexpr = empty_option;
9724 #endif
9725 #ifdef FEAT_PERSISTENT_UNDO
9726 buf->b_p_udf = p_udf;
9727 #endif
9730 * Don't copy the options set by ex_help(), use the saved values,
9731 * when going from a help buffer to a non-help buffer.
9732 * Don't touch these at all when BCO_NOHELP is used and going from
9733 * or to a help buffer.
9735 if (dont_do_help)
9736 buf->b_p_isk = save_p_isk;
9737 else
9739 buf->b_p_isk = vim_strsave(p_isk);
9740 did_isk = TRUE;
9741 buf->b_p_ts = p_ts;
9742 buf->b_help = FALSE;
9743 #ifdef FEAT_QUICKFIX
9744 if (buf->b_p_bt[0] == 'h')
9745 clear_string_option(&buf->b_p_bt);
9746 #endif
9747 buf->b_p_ma = p_ma;
9752 * When the options should be copied (ignoring BCO_ALWAYS), set the
9753 * flag that indicates that the options have been initialized.
9755 if (should_copy)
9756 buf->b_p_initialized = TRUE;
9759 check_buf_options(buf); /* make sure we don't have NULLs */
9760 if (did_isk)
9761 (void)buf_init_chartab(buf, FALSE);
9765 * Reset the 'modifiable' option and its default value.
9767 void
9768 reset_modifiable()
9770 int opt_idx;
9772 curbuf->b_p_ma = FALSE;
9773 p_ma = FALSE;
9774 opt_idx = findoption((char_u *)"ma");
9775 if (opt_idx >= 0)
9776 options[opt_idx].def_val[VI_DEFAULT] = FALSE;
9780 * Set the global value for 'iminsert' to the local value.
9782 void
9783 set_iminsert_global()
9785 p_iminsert = curbuf->b_p_iminsert;
9789 * Set the global value for 'imsearch' to the local value.
9791 void
9792 set_imsearch_global()
9794 p_imsearch = curbuf->b_p_imsearch;
9797 #if defined(FEAT_CMDL_COMPL) || defined(PROTO)
9798 static int expand_option_idx = -1;
9799 static char_u expand_option_name[5] = {'t', '_', NUL, NUL, NUL};
9800 static int expand_option_flags = 0;
9802 void
9803 set_context_in_set_cmd(xp, arg, opt_flags)
9804 expand_T *xp;
9805 char_u *arg;
9806 int opt_flags; /* OPT_GLOBAL and/or OPT_LOCAL */
9808 int nextchar;
9809 long_u flags = 0; /* init for GCC */
9810 int opt_idx = 0; /* init for GCC */
9811 char_u *p;
9812 char_u *s;
9813 int is_term_option = FALSE;
9814 int key;
9816 expand_option_flags = opt_flags;
9818 xp->xp_context = EXPAND_SETTINGS;
9819 if (*arg == NUL)
9821 xp->xp_pattern = arg;
9822 return;
9824 p = arg + STRLEN(arg) - 1;
9825 if (*p == ' ' && *(p - 1) != '\\')
9827 xp->xp_pattern = p + 1;
9828 return;
9830 while (p > arg)
9832 s = p;
9833 /* count number of backslashes before ' ' or ',' */
9834 if (*p == ' ' || *p == ',')
9836 while (s > arg && *(s - 1) == '\\')
9837 --s;
9839 /* break at a space with an even number of backslashes */
9840 if (*p == ' ' && ((p - s) & 1) == 0)
9842 ++p;
9843 break;
9845 --p;
9847 if (STRNCMP(p, "no", 2) == 0 && STRNCMP(p, "novice", 6) != 0)
9849 xp->xp_context = EXPAND_BOOL_SETTINGS;
9850 p += 2;
9852 if (STRNCMP(p, "inv", 3) == 0)
9854 xp->xp_context = EXPAND_BOOL_SETTINGS;
9855 p += 3;
9857 xp->xp_pattern = arg = p;
9858 if (*arg == '<')
9860 while (*p != '>')
9861 if (*p++ == NUL) /* expand terminal option name */
9862 return;
9863 key = get_special_key_code(arg + 1);
9864 if (key == 0) /* unknown name */
9866 xp->xp_context = EXPAND_NOTHING;
9867 return;
9869 nextchar = *++p;
9870 is_term_option = TRUE;
9871 expand_option_name[2] = KEY2TERMCAP0(key);
9872 expand_option_name[3] = KEY2TERMCAP1(key);
9874 else
9876 if (p[0] == 't' && p[1] == '_')
9878 p += 2;
9879 if (*p != NUL)
9880 ++p;
9881 if (*p == NUL)
9882 return; /* expand option name */
9883 nextchar = *++p;
9884 is_term_option = TRUE;
9885 expand_option_name[2] = p[-2];
9886 expand_option_name[3] = p[-1];
9888 else
9890 /* Allow * wildcard */
9891 while (ASCII_ISALNUM(*p) || *p == '_' || *p == '*')
9892 p++;
9893 if (*p == NUL)
9894 return;
9895 nextchar = *p;
9896 *p = NUL;
9897 opt_idx = findoption(arg);
9898 *p = nextchar;
9899 if (opt_idx == -1 || options[opt_idx].var == NULL)
9901 xp->xp_context = EXPAND_NOTHING;
9902 return;
9904 flags = options[opt_idx].flags;
9905 if (flags & P_BOOL)
9907 xp->xp_context = EXPAND_NOTHING;
9908 return;
9912 /* handle "-=" and "+=" */
9913 if ((nextchar == '-' || nextchar == '+' || nextchar == '^') && p[1] == '=')
9915 ++p;
9916 nextchar = '=';
9918 if ((nextchar != '=' && nextchar != ':')
9919 || xp->xp_context == EXPAND_BOOL_SETTINGS)
9921 xp->xp_context = EXPAND_UNSUCCESSFUL;
9922 return;
9924 if (xp->xp_context != EXPAND_BOOL_SETTINGS && p[1] == NUL)
9926 xp->xp_context = EXPAND_OLD_SETTING;
9927 if (is_term_option)
9928 expand_option_idx = -1;
9929 else
9930 expand_option_idx = opt_idx;
9931 xp->xp_pattern = p + 1;
9932 return;
9934 xp->xp_context = EXPAND_NOTHING;
9935 if (is_term_option || (flags & P_NUM))
9936 return;
9938 xp->xp_pattern = p + 1;
9940 if (flags & P_EXPAND)
9942 p = options[opt_idx].var;
9943 if (p == (char_u *)&p_bdir
9944 || p == (char_u *)&p_dir
9945 || p == (char_u *)&p_path
9946 || p == (char_u *)&p_rtp
9947 #ifdef FEAT_SEARCHPATH
9948 || p == (char_u *)&p_cdpath
9949 #endif
9950 #ifdef FEAT_SESSION
9951 || p == (char_u *)&p_vdir
9952 #endif
9955 xp->xp_context = EXPAND_DIRECTORIES;
9956 if (p == (char_u *)&p_path
9957 #ifdef FEAT_SEARCHPATH
9958 || p == (char_u *)&p_cdpath
9959 #endif
9961 xp->xp_backslash = XP_BS_THREE;
9962 else
9963 xp->xp_backslash = XP_BS_ONE;
9965 else
9967 xp->xp_context = EXPAND_FILES;
9968 /* for 'tags' need three backslashes for a space */
9969 if (p == (char_u *)&p_tags)
9970 xp->xp_backslash = XP_BS_THREE;
9971 else
9972 xp->xp_backslash = XP_BS_ONE;
9976 /* For an option that is a list of file names, find the start of the
9977 * last file name. */
9978 for (p = arg + STRLEN(arg) - 1; p > xp->xp_pattern; --p)
9980 /* count number of backslashes before ' ' or ',' */
9981 if (*p == ' ' || *p == ',')
9983 s = p;
9984 while (s > xp->xp_pattern && *(s - 1) == '\\')
9985 --s;
9986 if ((*p == ' ' && (xp->xp_backslash == XP_BS_THREE && (p - s) < 3))
9987 || (*p == ',' && (flags & P_COMMA) && ((p - s) & 1) == 0))
9989 xp->xp_pattern = p + 1;
9990 break;
9994 #ifdef FEAT_SPELL
9995 /* for 'spellsuggest' start at "file:" */
9996 if (options[opt_idx].var == (char_u *)&p_sps
9997 && STRNCMP(p, "file:", 5) == 0)
9999 xp->xp_pattern = p + 5;
10000 break;
10002 #endif
10005 return;
10009 ExpandSettings(xp, regmatch, num_file, file)
10010 expand_T *xp;
10011 regmatch_T *regmatch;
10012 int *num_file;
10013 char_u ***file;
10015 int num_normal = 0; /* Nr of matching non-term-code settings */
10016 int num_term = 0; /* Nr of matching terminal code settings */
10017 int opt_idx;
10018 int match;
10019 int count = 0;
10020 char_u *str;
10021 int loop;
10022 int is_term_opt;
10023 char_u name_buf[MAX_KEY_NAME_LEN];
10024 static char *(names[]) = {"all", "termcap"};
10025 int ic = regmatch->rm_ic; /* remember the ignore-case flag */
10027 /* do this loop twice:
10028 * loop == 0: count the number of matching options
10029 * loop == 1: copy the matching options into allocated memory
10031 for (loop = 0; loop <= 1; ++loop)
10033 regmatch->rm_ic = ic;
10034 if (xp->xp_context != EXPAND_BOOL_SETTINGS)
10036 for (match = 0; match < (int)(sizeof(names) / sizeof(char *));
10037 ++match)
10038 if (vim_regexec(regmatch, (char_u *)names[match], (colnr_T)0))
10040 if (loop == 0)
10041 num_normal++;
10042 else
10043 (*file)[count++] = vim_strsave((char_u *)names[match]);
10046 for (opt_idx = 0; (str = (char_u *)options[opt_idx].fullname) != NULL;
10047 opt_idx++)
10049 if (options[opt_idx].var == NULL)
10050 continue;
10051 if (xp->xp_context == EXPAND_BOOL_SETTINGS
10052 && !(options[opt_idx].flags & P_BOOL))
10053 continue;
10054 is_term_opt = istermoption(&options[opt_idx]);
10055 if (is_term_opt && num_normal > 0)
10056 continue;
10057 match = FALSE;
10058 if (vim_regexec(regmatch, str, (colnr_T)0)
10059 || (options[opt_idx].shortname != NULL
10060 && vim_regexec(regmatch,
10061 (char_u *)options[opt_idx].shortname, (colnr_T)0)))
10062 match = TRUE;
10063 else if (is_term_opt)
10065 name_buf[0] = '<';
10066 name_buf[1] = 't';
10067 name_buf[2] = '_';
10068 name_buf[3] = str[2];
10069 name_buf[4] = str[3];
10070 name_buf[5] = '>';
10071 name_buf[6] = NUL;
10072 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10074 match = TRUE;
10075 str = name_buf;
10078 if (match)
10080 if (loop == 0)
10082 if (is_term_opt)
10083 num_term++;
10084 else
10085 num_normal++;
10087 else
10088 (*file)[count++] = vim_strsave(str);
10092 * Check terminal key codes, these are not in the option table
10094 if (xp->xp_context != EXPAND_BOOL_SETTINGS && num_normal == 0)
10096 for (opt_idx = 0; (str = get_termcode(opt_idx)) != NULL; opt_idx++)
10098 if (!isprint(str[0]) || !isprint(str[1]))
10099 continue;
10101 name_buf[0] = 't';
10102 name_buf[1] = '_';
10103 name_buf[2] = str[0];
10104 name_buf[3] = str[1];
10105 name_buf[4] = NUL;
10107 match = FALSE;
10108 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10109 match = TRUE;
10110 else
10112 name_buf[0] = '<';
10113 name_buf[1] = 't';
10114 name_buf[2] = '_';
10115 name_buf[3] = str[0];
10116 name_buf[4] = str[1];
10117 name_buf[5] = '>';
10118 name_buf[6] = NUL;
10120 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10121 match = TRUE;
10123 if (match)
10125 if (loop == 0)
10126 num_term++;
10127 else
10128 (*file)[count++] = vim_strsave(name_buf);
10133 * Check special key names.
10135 regmatch->rm_ic = TRUE; /* ignore case here */
10136 for (opt_idx = 0; (str = get_key_name(opt_idx)) != NULL; opt_idx++)
10138 name_buf[0] = '<';
10139 STRCPY(name_buf + 1, str);
10140 STRCAT(name_buf, ">");
10142 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10144 if (loop == 0)
10145 num_term++;
10146 else
10147 (*file)[count++] = vim_strsave(name_buf);
10151 if (loop == 0)
10153 if (num_normal > 0)
10154 *num_file = num_normal;
10155 else if (num_term > 0)
10156 *num_file = num_term;
10157 else
10158 return OK;
10159 *file = (char_u **)alloc((unsigned)(*num_file * sizeof(char_u *)));
10160 if (*file == NULL)
10162 *file = (char_u **)"";
10163 return FAIL;
10167 return OK;
10171 ExpandOldSetting(num_file, file)
10172 int *num_file;
10173 char_u ***file;
10175 char_u *var = NULL; /* init for GCC */
10176 char_u *buf;
10178 *num_file = 0;
10179 *file = (char_u **)alloc((unsigned)sizeof(char_u *));
10180 if (*file == NULL)
10181 return FAIL;
10184 * For a terminal key code expand_option_idx is < 0.
10186 if (expand_option_idx < 0)
10188 var = find_termcode(expand_option_name + 2);
10189 if (var == NULL)
10190 expand_option_idx = findoption(expand_option_name);
10193 if (expand_option_idx >= 0)
10195 /* put string of option value in NameBuff */
10196 option_value2string(&options[expand_option_idx], expand_option_flags);
10197 var = NameBuff;
10199 else if (var == NULL)
10200 var = (char_u *)"";
10202 /* A backslash is required before some characters. This is the reverse of
10203 * what happens in do_set(). */
10204 buf = vim_strsave_escaped(var, escape_chars);
10206 if (buf == NULL)
10208 vim_free(*file);
10209 *file = NULL;
10210 return FAIL;
10213 #ifdef BACKSLASH_IN_FILENAME
10214 /* For MS-Windows et al. we don't double backslashes at the start and
10215 * before a file name character. */
10216 for (var = buf; *var != NUL; mb_ptr_adv(var))
10217 if (var[0] == '\\' && var[1] == '\\'
10218 && expand_option_idx >= 0
10219 && (options[expand_option_idx].flags & P_EXPAND)
10220 && vim_isfilec(var[2])
10221 && (var[2] != '\\' || (var == buf && var[4] != '\\')))
10222 STRMOVE(var, var + 1);
10223 #endif
10225 *file[0] = buf;
10226 *num_file = 1;
10227 return OK;
10229 #endif
10232 * Get the value for the numeric or string option *opp in a nice format into
10233 * NameBuff[]. Must not be called with a hidden option!
10235 static void
10236 option_value2string(opp, opt_flags)
10237 struct vimoption *opp;
10238 int opt_flags; /* OPT_GLOBAL and/or OPT_LOCAL */
10240 char_u *varp;
10242 varp = get_varp_scope(opp, opt_flags);
10244 if (opp->flags & P_NUM)
10246 long wc = 0;
10248 if (wc_use_keyname(varp, &wc))
10249 STRCPY(NameBuff, get_special_key_name((int)wc, 0));
10250 else if (wc != 0)
10251 STRCPY(NameBuff, transchar((int)wc));
10252 else
10253 sprintf((char *)NameBuff, "%ld", *(long *)varp);
10255 else /* P_STRING */
10257 varp = *(char_u **)(varp);
10258 if (varp == NULL) /* just in case */
10259 NameBuff[0] = NUL;
10260 #ifdef FEAT_CRYPT
10261 /* don't show the actual value of 'key', only that it's set */
10262 else if (opp->var == (char_u *)&p_key && *varp)
10263 STRCPY(NameBuff, "*****");
10264 #endif
10265 else if (opp->flags & P_EXPAND)
10266 home_replace(NULL, varp, NameBuff, MAXPATHL, FALSE);
10267 /* Translate 'pastetoggle' into special key names */
10268 else if ((char_u **)opp->var == &p_pt)
10269 str2specialbuf(p_pt, NameBuff, MAXPATHL);
10270 else
10271 vim_strncpy(NameBuff, varp, MAXPATHL - 1);
10276 * Return TRUE if "varp" points to 'wildchar' or 'wildcharm' and it can be
10277 * printed as a keyname.
10278 * "*wcp" is set to the value of the option if it's 'wildchar' or 'wildcharm'.
10280 static int
10281 wc_use_keyname(varp, wcp)
10282 char_u *varp;
10283 long *wcp;
10285 if (((long *)varp == &p_wc) || ((long *)varp == &p_wcm))
10287 *wcp = *(long *)varp;
10288 if (IS_SPECIAL(*wcp) || find_special_key_in_table((int)*wcp) >= 0)
10289 return TRUE;
10291 return FALSE;
10294 #ifdef FEAT_LANGMAP
10296 * Any character has an equivalent 'langmap' character. This is used for
10297 * keyboards that have a special language mode that sends characters above
10298 * 128 (although other characters can be translated too). The "to" field is a
10299 * Vim command character. This avoids having to switch the keyboard back to
10300 * ASCII mode when leaving Insert mode.
10302 * langmap_mapchar[] maps any of 256 chars to an ASCII char used for Vim
10303 * commands.
10304 * When FEAT_MBYTE is defined langmap_mapga.ga_data is a sorted table of
10305 * langmap_entry_T. This does the same as langmap_mapchar[] for characters >=
10306 * 256.
10308 # ifdef FEAT_MBYTE
10310 * With multi-byte support use growarray for 'langmap' chars >= 256
10312 typedef struct
10314 int from;
10315 int to;
10316 } langmap_entry_T;
10318 static garray_T langmap_mapga;
10319 static void langmap_set_entry __ARGS((int from, int to));
10322 * Search for an entry in "langmap_mapga" for "from". If found set the "to"
10323 * field. If not found insert a new entry at the appropriate location.
10325 static void
10326 langmap_set_entry(from, to)
10327 int from;
10328 int to;
10330 langmap_entry_T *entries = (langmap_entry_T *)(langmap_mapga.ga_data);
10331 int a = 0;
10332 int b = langmap_mapga.ga_len;
10334 /* Do a binary search for an existing entry. */
10335 while (a != b)
10337 int i = (a + b) / 2;
10338 int d = entries[i].from - from;
10340 if (d == 0)
10342 entries[i].to = to;
10343 return;
10345 if (d < 0)
10346 a = i + 1;
10347 else
10348 b = i;
10351 if (ga_grow(&langmap_mapga, 1) != OK)
10352 return; /* out of memory */
10354 /* insert new entry at position "a" */
10355 entries = (langmap_entry_T *)(langmap_mapga.ga_data) + a;
10356 mch_memmove(entries + 1, entries,
10357 (langmap_mapga.ga_len - a) * sizeof(langmap_entry_T));
10358 ++langmap_mapga.ga_len;
10359 entries[0].from = from;
10360 entries[0].to = to;
10364 * Apply 'langmap' to multi-byte character "c" and return the result.
10367 langmap_adjust_mb(c)
10368 int c;
10370 langmap_entry_T *entries = (langmap_entry_T *)(langmap_mapga.ga_data);
10371 int a = 0;
10372 int b = langmap_mapga.ga_len;
10374 while (a != b)
10376 int i = (a + b) / 2;
10377 int d = entries[i].from - c;
10379 if (d == 0)
10380 return entries[i].to; /* found matching entry */
10381 if (d < 0)
10382 a = i + 1;
10383 else
10384 b = i;
10386 return c; /* no entry found, return "c" unmodified */
10388 # endif
10390 static void
10391 langmap_init()
10393 int i;
10395 for (i = 0; i < 256; i++)
10396 langmap_mapchar[i] = i; /* we init with a one-to-one map */
10397 # ifdef FEAT_MBYTE
10398 ga_init2(&langmap_mapga, sizeof(langmap_entry_T), 8);
10399 # endif
10403 * Called when langmap option is set; the language map can be
10404 * changed at any time!
10406 static void
10407 langmap_set()
10409 char_u *p;
10410 char_u *p2;
10411 int from, to;
10413 #ifdef FEAT_MBYTE
10414 ga_clear(&langmap_mapga); /* clear the previous map first */
10415 #endif
10416 langmap_init(); /* back to one-to-one map */
10418 for (p = p_langmap; p[0] != NUL; )
10420 for (p2 = p; p2[0] != NUL && p2[0] != ',' && p2[0] != ';';
10421 mb_ptr_adv(p2))
10423 if (p2[0] == '\\' && p2[1] != NUL)
10424 ++p2;
10426 if (p2[0] == ';')
10427 ++p2; /* abcd;ABCD form, p2 points to A */
10428 else
10429 p2 = NULL; /* aAbBcCdD form, p2 is NULL */
10430 while (p[0])
10432 if (p[0] == '\\' && p[1] != NUL)
10433 ++p;
10434 #ifdef FEAT_MBYTE
10435 from = (*mb_ptr2char)(p);
10436 #else
10437 from = p[0];
10438 #endif
10439 if (p2 == NULL)
10441 mb_ptr_adv(p);
10442 if (p[0] == '\\')
10443 ++p;
10444 #ifdef FEAT_MBYTE
10445 to = (*mb_ptr2char)(p);
10446 #else
10447 to = p[0];
10448 #endif
10450 else
10452 if (p2[0] == '\\')
10453 ++p2;
10454 #ifdef FEAT_MBYTE
10455 to = (*mb_ptr2char)(p2);
10456 #else
10457 to = p2[0];
10458 #endif
10460 if (to == NUL)
10462 EMSG2(_("E357: 'langmap': Matching character missing for %s"),
10463 transchar(from));
10464 return;
10467 #ifdef FEAT_MBYTE
10468 if (from >= 256)
10469 langmap_set_entry(from, to);
10470 else
10471 #endif
10472 langmap_mapchar[from & 255] = to;
10474 /* Advance to next pair */
10475 mb_ptr_adv(p);
10476 if (p2 == NULL)
10478 if (p[0] == ',')
10480 ++p;
10481 break;
10484 else
10486 mb_ptr_adv(p2);
10487 if (*p == ';')
10489 p = p2;
10490 if (p[0] != NUL)
10492 if (p[0] != ',')
10494 EMSG2(_("E358: 'langmap': Extra characters after semicolon: %s"), p);
10495 return;
10497 ++p;
10499 break;
10505 #endif
10508 * Return TRUE if format option 'x' is in effect.
10509 * Take care of no formatting when 'paste' is set.
10512 has_format_option(x)
10513 int x;
10515 if (p_paste)
10516 return FALSE;
10517 return (vim_strchr(curbuf->b_p_fo, x) != NULL);
10521 * Return TRUE if "x" is present in 'shortmess' option, or
10522 * 'shortmess' contains 'a' and "x" is present in SHM_A.
10525 shortmess(x)
10526 int x;
10528 return ( vim_strchr(p_shm, x) != NULL
10529 || (vim_strchr(p_shm, 'a') != NULL
10530 && vim_strchr((char_u *)SHM_A, x) != NULL));
10534 * paste_option_changed() - Called after p_paste was set or reset.
10536 static void
10537 paste_option_changed()
10539 static int old_p_paste = FALSE;
10540 static int save_sm = 0;
10541 #ifdef FEAT_CMDL_INFO
10542 static int save_ru = 0;
10543 #endif
10544 #ifdef FEAT_RIGHTLEFT
10545 static int save_ri = 0;
10546 static int save_hkmap = 0;
10547 #endif
10548 buf_T *buf;
10550 if (p_paste)
10553 * Paste switched from off to on.
10554 * Save the current values, so they can be restored later.
10556 if (!old_p_paste)
10558 /* save options for each buffer */
10559 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10561 buf->b_p_tw_nopaste = buf->b_p_tw;
10562 buf->b_p_wm_nopaste = buf->b_p_wm;
10563 buf->b_p_sts_nopaste = buf->b_p_sts;
10564 buf->b_p_ai_nopaste = buf->b_p_ai;
10567 /* save global options */
10568 save_sm = p_sm;
10569 #ifdef FEAT_CMDL_INFO
10570 save_ru = p_ru;
10571 #endif
10572 #ifdef FEAT_RIGHTLEFT
10573 save_ri = p_ri;
10574 save_hkmap = p_hkmap;
10575 #endif
10576 /* save global values for local buffer options */
10577 p_tw_nopaste = p_tw;
10578 p_wm_nopaste = p_wm;
10579 p_sts_nopaste = p_sts;
10580 p_ai_nopaste = p_ai;
10584 * Always set the option values, also when 'paste' is set when it is
10585 * already on.
10587 /* set options for each buffer */
10588 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10590 buf->b_p_tw = 0; /* textwidth is 0 */
10591 buf->b_p_wm = 0; /* wrapmargin is 0 */
10592 buf->b_p_sts = 0; /* softtabstop is 0 */
10593 buf->b_p_ai = 0; /* no auto-indent */
10596 /* set global options */
10597 p_sm = 0; /* no showmatch */
10598 #ifdef FEAT_CMDL_INFO
10599 # ifdef FEAT_WINDOWS
10600 if (p_ru)
10601 status_redraw_all(); /* redraw to remove the ruler */
10602 # endif
10603 p_ru = 0; /* no ruler */
10604 #endif
10605 #ifdef FEAT_RIGHTLEFT
10606 p_ri = 0; /* no reverse insert */
10607 p_hkmap = 0; /* no Hebrew keyboard */
10608 #endif
10609 /* set global values for local buffer options */
10610 p_tw = 0;
10611 p_wm = 0;
10612 p_sts = 0;
10613 p_ai = 0;
10617 * Paste switched from on to off: Restore saved values.
10619 else if (old_p_paste)
10621 /* restore options for each buffer */
10622 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10624 buf->b_p_tw = buf->b_p_tw_nopaste;
10625 buf->b_p_wm = buf->b_p_wm_nopaste;
10626 buf->b_p_sts = buf->b_p_sts_nopaste;
10627 buf->b_p_ai = buf->b_p_ai_nopaste;
10630 /* restore global options */
10631 p_sm = save_sm;
10632 #ifdef FEAT_CMDL_INFO
10633 # ifdef FEAT_WINDOWS
10634 if (p_ru != save_ru)
10635 status_redraw_all(); /* redraw to draw the ruler */
10636 # endif
10637 p_ru = save_ru;
10638 #endif
10639 #ifdef FEAT_RIGHTLEFT
10640 p_ri = save_ri;
10641 p_hkmap = save_hkmap;
10642 #endif
10643 /* set global values for local buffer options */
10644 p_tw = p_tw_nopaste;
10645 p_wm = p_wm_nopaste;
10646 p_sts = p_sts_nopaste;
10647 p_ai = p_ai_nopaste;
10650 old_p_paste = p_paste;
10654 * vimrc_found() - Called when a ".vimrc" or "VIMINIT" has been found.
10656 * Reset 'compatible' and set the values for options that didn't get set yet
10657 * to the Vim defaults.
10658 * Don't do this if the 'compatible' option has been set or reset before.
10659 * When "fname" is not NULL, use it to set $"envname" when it wasn't set yet.
10661 void
10662 vimrc_found(fname, envname)
10663 char_u *fname;
10664 char_u *envname;
10666 int opt_idx;
10667 int dofree = FALSE;
10668 char_u *p;
10670 if (!option_was_set((char_u *)"cp"))
10672 p_cp = FALSE;
10673 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
10674 if (!(options[opt_idx].flags & (P_WAS_SET|P_VI_DEF)))
10675 set_option_default(opt_idx, OPT_FREE, FALSE);
10676 didset_options();
10679 if (fname != NULL)
10681 p = vim_getenv(envname, &dofree);
10682 if (p == NULL)
10684 /* Set $MYVIMRC to the first vimrc file found. */
10685 p = FullName_save(fname, FALSE);
10686 if (p != NULL)
10688 vim_setenv(envname, p);
10689 vim_free(p);
10692 else if (dofree)
10693 vim_free(p);
10698 * Set 'compatible' on or off. Called for "-C" and "-N" command line arg.
10700 void
10701 change_compatible(on)
10702 int on;
10704 int opt_idx;
10706 if (p_cp != on)
10708 p_cp = on;
10709 compatible_set();
10711 opt_idx = findoption((char_u *)"cp");
10712 if (opt_idx >= 0)
10713 options[opt_idx].flags |= P_WAS_SET;
10717 * Return TRUE when option "name" has been set.
10720 option_was_set(name)
10721 char_u *name;
10723 int idx;
10725 idx = findoption(name);
10726 if (idx < 0) /* unknown option */
10727 return FALSE;
10728 if (options[idx].flags & P_WAS_SET)
10729 return TRUE;
10730 return FALSE;
10734 * compatible_set() - Called when 'compatible' has been set or unset.
10736 * When 'compatible' set: Set all relevant options (those that have the P_VIM)
10737 * flag) to a Vi compatible value.
10738 * When 'compatible' is unset: Set all options that have a different default
10739 * for Vim (without the P_VI_DEF flag) to that default.
10741 static void
10742 compatible_set()
10744 int opt_idx;
10746 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
10747 if ( ((options[opt_idx].flags & P_VIM) && p_cp)
10748 || (!(options[opt_idx].flags & P_VI_DEF) && !p_cp))
10749 set_option_default(opt_idx, OPT_FREE, p_cp);
10750 didset_options();
10753 #ifdef FEAT_LINEBREAK
10755 # if defined(__BORLANDC__) && (__BORLANDC__ < 0x500)
10756 /* Borland C++ screws up loop optimisation here (negri) */
10757 #pragma option -O-l
10758 # endif
10761 * fill_breakat_flags() -- called when 'breakat' changes value.
10763 static void
10764 fill_breakat_flags()
10766 char_u *p;
10767 int i;
10769 for (i = 0; i < 256; i++)
10770 breakat_flags[i] = FALSE;
10772 if (p_breakat != NULL)
10773 for (p = p_breakat; *p; p++)
10774 breakat_flags[*p] = TRUE;
10777 # if defined(__BORLANDC__) && (__BORLANDC__ < 0x500)
10778 #pragma option -O.l
10779 # endif
10781 #endif
10784 * Check an option that can be a range of string values.
10786 * Return OK for correct value, FAIL otherwise.
10787 * Empty is always OK.
10789 static int
10790 check_opt_strings(val, values, list)
10791 char_u *val;
10792 char **values;
10793 int list; /* when TRUE: accept a list of values */
10795 return opt_strings_flags(val, values, NULL, list);
10799 * Handle an option that can be a range of string values.
10800 * Set a flag in "*flagp" for each string present.
10802 * Return OK for correct value, FAIL otherwise.
10803 * Empty is always OK.
10805 static int
10806 opt_strings_flags(val, values, flagp, list)
10807 char_u *val; /* new value */
10808 char **values; /* array of valid string values */
10809 unsigned *flagp;
10810 int list; /* when TRUE: accept a list of values */
10812 int i;
10813 int len;
10814 unsigned new_flags = 0;
10816 while (*val)
10818 for (i = 0; ; ++i)
10820 if (values[i] == NULL) /* val not found in values[] */
10821 return FAIL;
10823 len = (int)STRLEN(values[i]);
10824 if (STRNCMP(values[i], val, len) == 0
10825 && ((list && val[len] == ',') || val[len] == NUL))
10827 val += len + (val[len] == ',');
10828 new_flags |= (1 << i);
10829 break; /* check next item in val list */
10833 if (flagp != NULL)
10834 *flagp = new_flags;
10836 return OK;
10840 * Read the 'wildmode' option, fill wim_flags[].
10842 static int
10843 check_opt_wim()
10845 char_u new_wim_flags[4];
10846 char_u *p;
10847 int i;
10848 int idx = 0;
10850 for (i = 0; i < 4; ++i)
10851 new_wim_flags[i] = 0;
10853 for (p = p_wim; *p; ++p)
10855 for (i = 0; ASCII_ISALPHA(p[i]); ++i)
10857 if (p[i] != NUL && p[i] != ',' && p[i] != ':')
10858 return FAIL;
10859 if (i == 7 && STRNCMP(p, "longest", 7) == 0)
10860 new_wim_flags[idx] |= WIM_LONGEST;
10861 else if (i == 4 && STRNCMP(p, "full", 4) == 0)
10862 new_wim_flags[idx] |= WIM_FULL;
10863 else if (i == 4 && STRNCMP(p, "list", 4) == 0)
10864 new_wim_flags[idx] |= WIM_LIST;
10865 else
10866 return FAIL;
10867 p += i;
10868 if (*p == NUL)
10869 break;
10870 if (*p == ',')
10872 if (idx == 3)
10873 return FAIL;
10874 ++idx;
10878 /* fill remaining entries with last flag */
10879 while (idx < 3)
10881 new_wim_flags[idx + 1] = new_wim_flags[idx];
10882 ++idx;
10885 /* only when there are no errors, wim_flags[] is changed */
10886 for (i = 0; i < 4; ++i)
10887 wim_flags[i] = new_wim_flags[i];
10888 return OK;
10892 * Check if backspacing over something is allowed.
10895 can_bs(what)
10896 int what; /* BS_INDENT, BS_EOL or BS_START */
10898 switch (*p_bs)
10900 case '2': return TRUE;
10901 case '1': return (what != BS_START);
10902 case '0': return FALSE;
10904 return vim_strchr(p_bs, what) != NULL;
10908 * Save the current values of 'fileformat' and 'fileencoding', so that we know
10909 * the file must be considered changed when the value is different.
10911 void
10912 save_file_ff(buf)
10913 buf_T *buf;
10915 buf->b_start_ffc = *buf->b_p_ff;
10916 buf->b_start_eol = buf->b_p_eol;
10917 #ifdef FEAT_MBYTE
10918 buf->b_start_bomb = buf->b_p_bomb;
10920 /* Only use free/alloc when necessary, they take time. */
10921 if (buf->b_start_fenc == NULL
10922 || STRCMP(buf->b_start_fenc, buf->b_p_fenc) != 0)
10924 vim_free(buf->b_start_fenc);
10925 buf->b_start_fenc = vim_strsave(buf->b_p_fenc);
10927 #endif
10931 * Return TRUE if 'fileformat' and/or 'fileencoding' has a different value
10932 * from when editing started (save_file_ff() called).
10933 * Also when 'endofline' was changed and 'binary' is set, or when 'bomb' was
10934 * changed and 'binary' is not set.
10935 * Don't consider a new, empty buffer to be changed.
10938 file_ff_differs(buf)
10939 buf_T *buf;
10941 /* In a buffer that was never loaded the options are not valid. */
10942 if (buf->b_flags & BF_NEVERLOADED)
10943 return FALSE;
10944 if ((buf->b_flags & BF_NEW)
10945 && buf->b_ml.ml_line_count == 1
10946 && *ml_get_buf(buf, (linenr_T)1, FALSE) == NUL)
10947 return FALSE;
10948 if (buf->b_start_ffc != *buf->b_p_ff)
10949 return TRUE;
10950 if (buf->b_p_bin && buf->b_start_eol != buf->b_p_eol)
10951 return TRUE;
10952 #ifdef FEAT_MBYTE
10953 if (!buf->b_p_bin && buf->b_start_bomb != buf->b_p_bomb)
10954 return TRUE;
10955 if (buf->b_start_fenc == NULL)
10956 return (*buf->b_p_fenc != NUL);
10957 return (STRCMP(buf->b_start_fenc, buf->b_p_fenc) != 0);
10958 #else
10959 return FALSE;
10960 #endif
10964 * return OK if "p" is a valid fileformat name, FAIL otherwise.
10967 check_ff_value(p)
10968 char_u *p;
10970 return check_opt_strings(p, p_ff_values, FALSE);