Merge branch 'vim-with-runtime' into feat/persistent-undo
[vim_extended.git] / src / option.c
blob9983451a2e7e221fcd4783a2dee6e1e570cf36d6
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".
3713 * But don't allow a space in the path, so that this works:
3714 * "/usr/bin/csh --rcfile ~/.cshrc"
3715 * But don't do that for Windows, it's common to have a space in the path.
3717 #ifdef WIN3264
3718 p = gettail(p_sh);
3719 p = vim_strnsave(p, (int)(skiptowhite(p) - p));
3720 #else
3721 p = skiptowhite(p_sh);
3722 if (*p == NUL)
3724 /* No white space, use the tail. */
3725 p = vim_strsave(gettail(p_sh));
3727 else
3729 char_u *p1, *p2;
3731 /* Find the last path separator before the space. */
3732 p1 = p_sh;
3733 for (p2 = p_sh; p2 < p; mb_ptr_adv(p2))
3734 if (vim_ispathsep(*p2))
3735 p1 = p2 + 1;
3736 p = vim_strnsave(p1, (int)(p - p1));
3738 #endif
3739 if (p != NULL)
3742 * Default for p_sp is "| tee", for p_srr is ">".
3743 * For known shells it is changed here to include stderr.
3745 if ( fnamecmp(p, "csh") == 0
3746 || fnamecmp(p, "tcsh") == 0
3747 # if defined(OS2) || defined(WIN3264) /* also check with .exe extension */
3748 || fnamecmp(p, "csh.exe") == 0
3749 || fnamecmp(p, "tcsh.exe") == 0
3750 # endif
3753 #if defined(FEAT_QUICKFIX)
3754 if (do_sp)
3756 # ifdef WIN3264
3757 p_sp = (char_u *)">&";
3758 # else
3759 p_sp = (char_u *)"|& tee";
3760 # endif
3761 options[idx_sp].def_val[VI_DEFAULT] = p_sp;
3763 #endif
3764 if (do_srr)
3766 p_srr = (char_u *)">&";
3767 options[idx_srr].def_val[VI_DEFAULT] = p_srr;
3770 else
3771 # ifndef OS2 /* Always use bourne shell style redirection if we reach this */
3772 if ( fnamecmp(p, "sh") == 0
3773 || fnamecmp(p, "ksh") == 0
3774 || fnamecmp(p, "zsh") == 0
3775 || fnamecmp(p, "zsh-beta") == 0
3776 || fnamecmp(p, "bash") == 0
3777 # ifdef WIN3264
3778 || fnamecmp(p, "cmd") == 0
3779 || fnamecmp(p, "sh.exe") == 0
3780 || fnamecmp(p, "ksh.exe") == 0
3781 || fnamecmp(p, "zsh.exe") == 0
3782 || fnamecmp(p, "zsh-beta.exe") == 0
3783 || fnamecmp(p, "bash.exe") == 0
3784 || fnamecmp(p, "cmd.exe") == 0
3785 # endif
3787 # endif
3789 #if defined(FEAT_QUICKFIX)
3790 if (do_sp)
3792 # ifdef WIN3264
3793 p_sp = (char_u *)">%s 2>&1";
3794 # else
3795 p_sp = (char_u *)"2>&1| tee";
3796 # endif
3797 options[idx_sp].def_val[VI_DEFAULT] = p_sp;
3799 #endif
3800 if (do_srr)
3802 p_srr = (char_u *)">%s 2>&1";
3803 options[idx_srr].def_val[VI_DEFAULT] = p_srr;
3806 vim_free(p);
3808 #endif
3810 #if defined(MSDOS) || defined(WIN3264) || defined(OS2)
3812 * Set 'shellcmdflag and 'shellquote' depending on the 'shell' option.
3813 * This is done after other initializations, where 'shell' might have been
3814 * set, but only if they have not been set before. Default for p_shcf is
3815 * "/c", for p_shq is "". For "sh" like shells it is changed here to
3816 * "-c" and "\"", but not for DJGPP, because it starts the shell without
3817 * command.com. And for Win32 we need to set p_sxq instead.
3819 if (strstr((char *)gettail(p_sh), "sh") != NULL)
3821 int idx3;
3823 idx3 = findoption((char_u *)"shcf");
3824 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
3826 p_shcf = (char_u *)"-c";
3827 options[idx3].def_val[VI_DEFAULT] = p_shcf;
3830 # ifndef DJGPP
3831 # ifdef WIN3264
3832 /* Somehow Win32 requires the quotes around the redirection too */
3833 idx3 = findoption((char_u *)"sxq");
3834 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
3836 p_sxq = (char_u *)"\"";
3837 options[idx3].def_val[VI_DEFAULT] = p_sxq;
3839 # else
3840 idx3 = findoption((char_u *)"shq");
3841 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
3843 p_shq = (char_u *)"\"";
3844 options[idx3].def_val[VI_DEFAULT] = p_shq;
3846 # endif
3847 # endif
3849 #endif
3851 #ifdef FEAT_TITLE
3852 set_title_defaults();
3853 #endif
3856 #if defined(FEAT_MULTI_LANG) || defined(PROTO)
3858 * When 'helplang' is still at its default value, set it to "lang".
3859 * Only the first two characters of "lang" are used.
3861 void
3862 set_helplang_default(lang)
3863 char_u *lang;
3865 int idx;
3867 if (lang == NULL || STRLEN(lang) < 2) /* safety check */
3868 return;
3869 idx = findoption((char_u *)"hlg");
3870 if (idx >= 0 && !(options[idx].flags & P_WAS_SET))
3872 if (options[idx].flags & P_ALLOCED)
3873 free_string_option(p_hlg);
3874 p_hlg = vim_strsave(lang);
3875 if (p_hlg == NULL)
3876 p_hlg = empty_option;
3877 else
3879 /* zh_CN becomes "cn", zh_TW becomes "tw". */
3880 if (STRNICMP(p_hlg, "zh_", 3) == 0 && STRLEN(p_hlg) >= 5)
3882 p_hlg[0] = TOLOWER_ASC(p_hlg[3]);
3883 p_hlg[1] = TOLOWER_ASC(p_hlg[4]);
3885 p_hlg[2] = NUL;
3887 options[idx].flags |= P_ALLOCED;
3890 #endif
3892 #ifdef FEAT_GUI
3893 static char_u *gui_bg_default __ARGS((void));
3895 static char_u *
3896 gui_bg_default()
3898 if (gui_get_lightness(gui.back_pixel) < 127)
3899 return (char_u *)"dark";
3900 return (char_u *)"light";
3904 * Option initializations that can only be done after opening the GUI window.
3906 void
3907 init_gui_options()
3909 /* Set the 'background' option according to the lightness of the
3910 * background color, unless the user has set it already. */
3911 if (!option_was_set((char_u *)"bg") && STRCMP(p_bg, gui_bg_default()) != 0)
3913 set_option_value((char_u *)"bg", 0L, gui_bg_default(), 0);
3914 highlight_changed();
3917 #endif
3919 #ifdef FEAT_TITLE
3921 * 'title' and 'icon' only default to true if they have not been set or reset
3922 * in .vimrc and we can read the old value.
3923 * When 'title' and 'icon' have been reset in .vimrc, we won't even check if
3924 * they can be reset. This reduces startup time when using X on a remote
3925 * machine.
3927 void
3928 set_title_defaults()
3930 int idx1;
3931 long val;
3934 * If GUI is (going to be) used, we can always set the window title and
3935 * icon name. Saves a bit of time, because the X11 display server does
3936 * not need to be contacted.
3938 idx1 = findoption((char_u *)"title");
3939 if (idx1 >= 0 && !(options[idx1].flags & P_WAS_SET))
3941 #ifdef FEAT_GUI
3942 if (gui.starting || gui.in_use)
3943 val = TRUE;
3944 else
3945 #endif
3946 val = mch_can_restore_title();
3947 options[idx1].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
3948 p_title = val;
3950 idx1 = findoption((char_u *)"icon");
3951 if (idx1 >= 0 && !(options[idx1].flags & P_WAS_SET))
3953 #ifdef FEAT_GUI
3954 if (gui.starting || gui.in_use)
3955 val = TRUE;
3956 else
3957 #endif
3958 val = mch_can_restore_icon();
3959 options[idx1].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
3960 p_icon = val;
3963 #endif
3966 * Parse 'arg' for option settings.
3968 * 'arg' may be IObuff, but only when no errors can be present and option
3969 * does not need to be expanded with option_expand().
3970 * "opt_flags":
3971 * 0 for ":set"
3972 * OPT_GLOBAL for ":setglobal"
3973 * OPT_LOCAL for ":setlocal" and a modeline
3974 * OPT_MODELINE for a modeline
3975 * OPT_WINONLY to only set window-local options
3976 * OPT_NOWIN to skip setting window-local options
3978 * returns FAIL if an error is detected, OK otherwise
3981 do_set(arg, opt_flags)
3982 char_u *arg; /* option string (may be written to!) */
3983 int opt_flags;
3985 int opt_idx;
3986 char_u *errmsg;
3987 char_u errbuf[80];
3988 char_u *startarg;
3989 int prefix; /* 1: nothing, 0: "no", 2: "inv" in front of name */
3990 int nextchar; /* next non-white char after option name */
3991 int afterchar; /* character just after option name */
3992 int len;
3993 int i;
3994 long value;
3995 int key;
3996 long_u flags; /* flags for current option */
3997 char_u *varp = NULL; /* pointer to variable for current option */
3998 int did_show = FALSE; /* already showed one value */
3999 int adding; /* "opt+=arg" */
4000 int prepending; /* "opt^=arg" */
4001 int removing; /* "opt-=arg" */
4002 int cp_val = 0;
4003 char_u key_name[2];
4005 if (*arg == NUL)
4007 showoptions(0, opt_flags);
4008 did_show = TRUE;
4009 goto theend;
4012 while (*arg != NUL) /* loop to process all options */
4014 errmsg = NULL;
4015 startarg = arg; /* remember for error message */
4017 if (STRNCMP(arg, "all", 3) == 0 && !isalpha(arg[3])
4018 && !(opt_flags & OPT_MODELINE))
4021 * ":set all" show all options.
4022 * ":set all&" set all options to their default value.
4024 arg += 3;
4025 if (*arg == '&')
4027 ++arg;
4028 /* Only for :set command set global value of local options. */
4029 set_options_default(OPT_FREE | opt_flags);
4031 else
4033 showoptions(1, opt_flags);
4034 did_show = TRUE;
4037 else if (STRNCMP(arg, "termcap", 7) == 0 && !(opt_flags & OPT_MODELINE))
4039 showoptions(2, opt_flags);
4040 show_termcodes();
4041 did_show = TRUE;
4042 arg += 7;
4044 else
4046 prefix = 1;
4047 if (STRNCMP(arg, "no", 2) == 0 && STRNCMP(arg, "novice", 6) != 0)
4049 prefix = 0;
4050 arg += 2;
4052 else if (STRNCMP(arg, "inv", 3) == 0)
4054 prefix = 2;
4055 arg += 3;
4058 /* find end of name */
4059 key = 0;
4060 if (*arg == '<')
4062 nextchar = 0;
4063 opt_idx = -1;
4064 /* look out for <t_>;> */
4065 if (arg[1] == 't' && arg[2] == '_' && arg[3] && arg[4])
4066 len = 5;
4067 else
4069 len = 1;
4070 while (arg[len] != NUL && arg[len] != '>')
4071 ++len;
4073 if (arg[len] != '>')
4075 errmsg = e_invarg;
4076 goto skip;
4078 arg[len] = NUL; /* put NUL after name */
4079 if (arg[1] == 't' && arg[2] == '_') /* could be term code */
4080 opt_idx = findoption(arg + 1);
4081 arg[len++] = '>'; /* restore '>' */
4082 if (opt_idx == -1)
4083 key = find_key_option(arg + 1);
4085 else
4087 len = 0;
4089 * The two characters after "t_" may not be alphanumeric.
4091 if (arg[0] == 't' && arg[1] == '_' && arg[2] && arg[3])
4092 len = 4;
4093 else
4094 while (ASCII_ISALNUM(arg[len]) || arg[len] == '_')
4095 ++len;
4096 nextchar = arg[len];
4097 arg[len] = NUL; /* put NUL after name */
4098 opt_idx = findoption(arg);
4099 arg[len] = nextchar; /* restore nextchar */
4100 if (opt_idx == -1)
4101 key = find_key_option(arg);
4104 /* remember character after option name */
4105 afterchar = arg[len];
4107 /* skip white space, allow ":set ai ?" */
4108 while (vim_iswhite(arg[len]))
4109 ++len;
4111 adding = FALSE;
4112 prepending = FALSE;
4113 removing = FALSE;
4114 if (arg[len] != NUL && arg[len + 1] == '=')
4116 if (arg[len] == '+')
4118 adding = TRUE; /* "+=" */
4119 ++len;
4121 else if (arg[len] == '^')
4123 prepending = TRUE; /* "^=" */
4124 ++len;
4126 else if (arg[len] == '-')
4128 removing = TRUE; /* "-=" */
4129 ++len;
4132 nextchar = arg[len];
4134 if (opt_idx == -1 && key == 0) /* found a mismatch: skip */
4136 errmsg = (char_u *)N_("E518: Unknown option");
4137 goto skip;
4140 if (opt_idx >= 0)
4142 if (options[opt_idx].var == NULL) /* hidden option: skip */
4144 /* Only give an error message when requesting the value of
4145 * a hidden option, ignore setting it. */
4146 if (vim_strchr((char_u *)"=:!&<", nextchar) == NULL
4147 && (!(options[opt_idx].flags & P_BOOL)
4148 || nextchar == '?'))
4149 errmsg = (char_u *)N_("E519: Option not supported");
4150 goto skip;
4153 flags = options[opt_idx].flags;
4154 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
4156 else
4158 flags = P_STRING;
4159 if (key < 0)
4161 key_name[0] = KEY2TERMCAP0(key);
4162 key_name[1] = KEY2TERMCAP1(key);
4164 else
4166 key_name[0] = KS_KEY;
4167 key_name[1] = (key & 0xff);
4171 /* Skip all options that are not window-local (used when showing
4172 * an already loaded buffer in a window). */
4173 if ((opt_flags & OPT_WINONLY)
4174 && (opt_idx < 0 || options[opt_idx].var != VAR_WIN))
4175 goto skip;
4177 /* Skip all options that are window-local (used for :vimgrep). */
4178 if ((opt_flags & OPT_NOWIN) && opt_idx >= 0
4179 && options[opt_idx].var == VAR_WIN)
4180 goto skip;
4182 /* Disallow changing some options from modelines. */
4183 if (opt_flags & OPT_MODELINE)
4185 if (flags & P_SECURE)
4187 errmsg = (char_u *)_("E520: Not allowed in a modeline");
4188 goto skip;
4190 #ifdef FEAT_DIFF
4191 /* In diff mode some options are overruled. This avoids that
4192 * 'foldmethod' becomes "marker" instead of "diff" and that
4193 * "wrap" gets set. */
4194 if (curwin->w_p_diff
4195 && (options[opt_idx].indir == PV_FDM
4196 || options[opt_idx].indir == PV_WRAP))
4197 goto skip;
4198 #endif
4201 #ifdef HAVE_SANDBOX
4202 /* Disallow changing some options in the sandbox */
4203 if (sandbox != 0 && (flags & P_SECURE))
4205 errmsg = (char_u *)_(e_sandbox);
4206 goto skip;
4208 #endif
4210 if (vim_strchr((char_u *)"?=:!&<", nextchar) != NULL)
4212 arg += len;
4213 cp_val = p_cp;
4214 if (nextchar == '&' && arg[1] == 'v' && arg[2] == 'i')
4216 if (arg[3] == 'm') /* "opt&vim": set to Vim default */
4218 cp_val = FALSE;
4219 arg += 3;
4221 else /* "opt&vi": set to Vi default */
4223 cp_val = TRUE;
4224 arg += 2;
4227 if (vim_strchr((char_u *)"?!&<", nextchar) != NULL
4228 && arg[1] != NUL && !vim_iswhite(arg[1]))
4230 errmsg = e_trailing;
4231 goto skip;
4236 * allow '=' and ':' as MSDOS command.com allows only one
4237 * '=' character per "set" command line. grrr. (jw)
4239 if (nextchar == '?'
4240 || (prefix == 1
4241 && vim_strchr((char_u *)"=:&<", nextchar) == NULL
4242 && !(flags & P_BOOL)))
4245 * print value
4247 if (did_show)
4248 msg_putchar('\n'); /* cursor below last one */
4249 else
4251 gotocmdline(TRUE); /* cursor at status line */
4252 did_show = TRUE; /* remember that we did a line */
4254 if (opt_idx >= 0)
4256 showoneopt(&options[opt_idx], opt_flags);
4257 #ifdef FEAT_EVAL
4258 if (p_verbose > 0)
4260 /* Mention where the option was last set. */
4261 if (varp == options[opt_idx].var)
4262 last_set_msg(options[opt_idx].scriptID);
4263 else if ((int)options[opt_idx].indir & PV_WIN)
4264 last_set_msg(curwin->w_p_scriptID[
4265 (int)options[opt_idx].indir & PV_MASK]);
4266 else if ((int)options[opt_idx].indir & PV_BUF)
4267 last_set_msg(curbuf->b_p_scriptID[
4268 (int)options[opt_idx].indir & PV_MASK]);
4270 #endif
4272 else
4274 char_u *p;
4276 p = find_termcode(key_name);
4277 if (p == NULL)
4279 errmsg = (char_u *)N_("E518: Unknown option");
4280 goto skip;
4282 else
4283 (void)show_one_termcode(key_name, p, TRUE);
4285 if (nextchar != '?'
4286 && nextchar != NUL && !vim_iswhite(afterchar))
4287 errmsg = e_trailing;
4289 else
4291 if (flags & P_BOOL) /* boolean */
4293 if (nextchar == '=' || nextchar == ':')
4295 errmsg = e_invarg;
4296 goto skip;
4300 * ":set opt!": invert
4301 * ":set opt&": reset to default value
4302 * ":set opt<": reset to global value
4304 if (nextchar == '!')
4305 value = *(int *)(varp) ^ 1;
4306 else if (nextchar == '&')
4307 value = (int)(long)(long_i)options[opt_idx].def_val[
4308 ((flags & P_VI_DEF) || cp_val)
4309 ? VI_DEFAULT : VIM_DEFAULT];
4310 else if (nextchar == '<')
4312 /* For 'autoread' -1 means to use global value. */
4313 if ((int *)varp == &curbuf->b_p_ar
4314 && opt_flags == OPT_LOCAL)
4315 value = -1;
4316 else
4317 value = *(int *)get_varp_scope(&(options[opt_idx]),
4318 OPT_GLOBAL);
4320 else
4323 * ":set invopt": invert
4324 * ":set opt" or ":set noopt": set or reset
4326 if (nextchar != NUL && !vim_iswhite(afterchar))
4328 errmsg = e_trailing;
4329 goto skip;
4331 if (prefix == 2) /* inv */
4332 value = *(int *)(varp) ^ 1;
4333 else
4334 value = prefix;
4337 errmsg = set_bool_option(opt_idx, varp, (int)value,
4338 opt_flags);
4340 else /* numeric or string */
4342 if (vim_strchr((char_u *)"=:&<", nextchar) == NULL
4343 || prefix != 1)
4345 errmsg = e_invarg;
4346 goto skip;
4349 if (flags & P_NUM) /* numeric */
4352 * Different ways to set a number option:
4353 * & set to default value
4354 * < set to global value
4355 * <xx> accept special key codes for 'wildchar'
4356 * c accept any non-digit for 'wildchar'
4357 * [-]0-9 set number
4358 * other error
4360 ++arg;
4361 if (nextchar == '&')
4362 value = (long)(long_i)options[opt_idx].def_val[
4363 ((flags & P_VI_DEF) || cp_val)
4364 ? VI_DEFAULT : VIM_DEFAULT];
4365 else if (nextchar == '<')
4366 value = *(long *)get_varp_scope(&(options[opt_idx]),
4367 OPT_GLOBAL);
4368 else if (((long *)varp == &p_wc
4369 || (long *)varp == &p_wcm)
4370 && (*arg == '<'
4371 || *arg == '^'
4372 || ((!arg[1] || vim_iswhite(arg[1]))
4373 && !VIM_ISDIGIT(*arg))))
4375 value = string_to_key(arg);
4376 if (value == 0 && (long *)varp != &p_wcm)
4378 errmsg = e_invarg;
4379 goto skip;
4382 /* allow negative numbers (for 'undolevels') */
4383 else if (*arg == '-' || VIM_ISDIGIT(*arg))
4385 i = 0;
4386 if (*arg == '-')
4387 i = 1;
4388 #ifdef HAVE_STRTOL
4389 value = strtol((char *)arg, NULL, 0);
4390 if (arg[i] == '0' && TOLOWER_ASC(arg[i + 1]) == 'x')
4391 i += 2;
4392 #else
4393 value = atol((char *)arg);
4394 #endif
4395 while (VIM_ISDIGIT(arg[i]))
4396 ++i;
4397 if (arg[i] != NUL && !vim_iswhite(arg[i]))
4399 errmsg = e_invarg;
4400 goto skip;
4403 else
4405 errmsg = (char_u *)N_("E521: Number required after =");
4406 goto skip;
4409 if (adding)
4410 value = *(long *)varp + value;
4411 if (prepending)
4412 value = *(long *)varp * value;
4413 if (removing)
4414 value = *(long *)varp - value;
4415 errmsg = set_num_option(opt_idx, varp, value,
4416 errbuf, sizeof(errbuf), opt_flags);
4418 else if (opt_idx >= 0) /* string */
4420 char_u *save_arg = NULL;
4421 char_u *s = NULL;
4422 char_u *oldval; /* previous value if *varp */
4423 char_u *newval;
4424 char_u *origval;
4425 unsigned newlen;
4426 int comma;
4427 int bs;
4428 int new_value_alloced; /* new string option
4429 was allocated */
4431 /* When using ":set opt=val" for a global option
4432 * with a local value the local value will be
4433 * reset, use the global value here. */
4434 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
4435 && ((int)options[opt_idx].indir & PV_BOTH))
4436 varp = options[opt_idx].var;
4438 /* The old value is kept until we are sure that the
4439 * new value is valid. */
4440 oldval = *(char_u **)varp;
4441 if (nextchar == '&') /* set to default val */
4443 newval = options[opt_idx].def_val[
4444 ((flags & P_VI_DEF) || cp_val)
4445 ? VI_DEFAULT : VIM_DEFAULT];
4446 if ((char_u **)varp == &p_bg)
4448 /* guess the value of 'background' */
4449 #ifdef FEAT_GUI
4450 if (gui.in_use)
4451 newval = gui_bg_default();
4452 else
4453 #endif
4454 newval = term_bg_default();
4457 /* expand environment variables and ~ (since the
4458 * default value was already expanded, only
4459 * required when an environment variable was set
4460 * later */
4461 if (newval == NULL)
4462 newval = empty_option;
4463 else
4465 s = option_expand(opt_idx, newval);
4466 if (s == NULL)
4467 s = newval;
4468 newval = vim_strsave(s);
4470 new_value_alloced = TRUE;
4472 else if (nextchar == '<') /* set to global val */
4474 newval = vim_strsave(*(char_u **)get_varp_scope(
4475 &(options[opt_idx]), OPT_GLOBAL));
4476 new_value_alloced = TRUE;
4478 else
4480 ++arg; /* jump to after the '=' or ':' */
4483 * Set 'keywordprg' to ":help" if an empty
4484 * value was passed to :set by the user.
4485 * Misuse errbuf[] for the resulting string.
4487 if (varp == (char_u *)&p_kp
4488 && (*arg == NUL || *arg == ' '))
4490 STRCPY(errbuf, ":help");
4491 save_arg = arg;
4492 arg = errbuf;
4495 * Convert 'whichwrap' number to string, for
4496 * backwards compatibility with Vim 3.0.
4497 * Misuse errbuf[] for the resulting string.
4499 else if (varp == (char_u *)&p_ww
4500 && VIM_ISDIGIT(*arg))
4502 *errbuf = NUL;
4503 i = getdigits(&arg);
4504 if (i & 1)
4505 STRCAT(errbuf, "b,");
4506 if (i & 2)
4507 STRCAT(errbuf, "s,");
4508 if (i & 4)
4509 STRCAT(errbuf, "h,l,");
4510 if (i & 8)
4511 STRCAT(errbuf, "<,>,");
4512 if (i & 16)
4513 STRCAT(errbuf, "[,],");
4514 if (*errbuf != NUL) /* remove trailing , */
4515 errbuf[STRLEN(errbuf) - 1] = NUL;
4516 save_arg = arg;
4517 arg = errbuf;
4520 * Remove '>' before 'dir' and 'bdir', for
4521 * backwards compatibility with version 3.0
4523 else if ( *arg == '>'
4524 && (varp == (char_u *)&p_dir
4525 || varp == (char_u *)&p_bdir))
4527 ++arg;
4530 /* When setting the local value of a global
4531 * option, the old value may be the global value. */
4532 if (((int)options[opt_idx].indir & PV_BOTH)
4533 && (opt_flags & OPT_LOCAL))
4534 origval = *(char_u **)get_varp(
4535 &options[opt_idx]);
4536 else
4537 origval = oldval;
4540 * Copy the new string into allocated memory.
4541 * Can't use set_string_option_direct(), because
4542 * we need to remove the backslashes.
4544 /* get a bit too much */
4545 newlen = (unsigned)STRLEN(arg) + 1;
4546 if (adding || prepending || removing)
4547 newlen += (unsigned)STRLEN(origval) + 1;
4548 newval = alloc(newlen);
4549 if (newval == NULL) /* out of mem, don't change */
4550 break;
4551 s = newval;
4554 * Copy the string, skip over escaped chars.
4555 * For MS-DOS and WIN32 backslashes before normal
4556 * file name characters are not removed, and keep
4557 * backslash at start, for "\\machine\path", but
4558 * do remove it for "\\\\machine\\path".
4559 * The reverse is found in ExpandOldSetting().
4561 while (*arg && !vim_iswhite(*arg))
4563 if (*arg == '\\' && arg[1] != NUL
4564 #ifdef BACKSLASH_IN_FILENAME
4565 && !((flags & P_EXPAND)
4566 && vim_isfilec(arg[1])
4567 && (arg[1] != '\\'
4568 || (s == newval
4569 && arg[2] != '\\')))
4570 #endif
4572 ++arg; /* remove backslash */
4573 #ifdef FEAT_MBYTE
4574 if (has_mbyte
4575 && (i = (*mb_ptr2len)(arg)) > 1)
4577 /* copy multibyte char */
4578 mch_memmove(s, arg, (size_t)i);
4579 arg += i;
4580 s += i;
4582 else
4583 #endif
4584 *s++ = *arg++;
4586 *s = NUL;
4589 * Expand environment variables and ~.
4590 * Don't do it when adding without inserting a
4591 * comma.
4593 if (!(adding || prepending || removing)
4594 || (flags & P_COMMA))
4596 s = option_expand(opt_idx, newval);
4597 if (s != NULL)
4599 vim_free(newval);
4600 newlen = (unsigned)STRLEN(s) + 1;
4601 if (adding || prepending || removing)
4602 newlen += (unsigned)STRLEN(origval) + 1;
4603 newval = alloc(newlen);
4604 if (newval == NULL)
4605 break;
4606 STRCPY(newval, s);
4610 /* locate newval[] in origval[] when removing it
4611 * and when adding to avoid duplicates */
4612 i = 0; /* init for GCC */
4613 if (removing || (flags & P_NODUP))
4615 i = (int)STRLEN(newval);
4616 bs = 0;
4617 for (s = origval; *s; ++s)
4619 if ((!(flags & P_COMMA)
4620 || s == origval
4621 || (s[-1] == ',' && !(bs & 1)))
4622 && STRNCMP(s, newval, i) == 0
4623 && (!(flags & P_COMMA)
4624 || s[i] == ','
4625 || s[i] == NUL))
4626 break;
4627 /* Count backspaces. Only a comma with an
4628 * even number of backspaces before it is
4629 * recognized as a separator */
4630 if (s > origval && s[-1] == '\\')
4631 ++bs;
4632 else
4633 bs = 0;
4636 /* do not add if already there */
4637 if ((adding || prepending) && *s)
4639 prepending = FALSE;
4640 adding = FALSE;
4641 STRCPY(newval, origval);
4645 /* concatenate the two strings; add a ',' if
4646 * needed */
4647 if (adding || prepending)
4649 comma = ((flags & P_COMMA) && *origval != NUL
4650 && *newval != NUL);
4651 if (adding)
4653 i = (int)STRLEN(origval);
4654 mch_memmove(newval + i + comma, newval,
4655 STRLEN(newval) + 1);
4656 mch_memmove(newval, origval, (size_t)i);
4658 else
4660 i = (int)STRLEN(newval);
4661 STRMOVE(newval + i + comma, origval);
4663 if (comma)
4664 newval[i] = ',';
4667 /* Remove newval[] from origval[]. (Note: "i" has
4668 * been set above and is used here). */
4669 if (removing)
4671 STRCPY(newval, origval);
4672 if (*s)
4674 /* may need to remove a comma */
4675 if (flags & P_COMMA)
4677 if (s == origval)
4679 /* include comma after string */
4680 if (s[i] == ',')
4681 ++i;
4683 else
4685 /* include comma before string */
4686 --s;
4687 ++i;
4690 STRMOVE(newval + (s - origval), s + i);
4694 if (flags & P_FLAGLIST)
4696 /* Remove flags that appear twice. */
4697 for (s = newval; *s; ++s)
4698 if ((!(flags & P_COMMA) || *s != ',')
4699 && vim_strchr(s + 1, *s) != NULL)
4701 STRMOVE(s, s + 1);
4702 --s;
4706 if (save_arg != NULL) /* number for 'whichwrap' */
4707 arg = save_arg;
4708 new_value_alloced = TRUE;
4711 /* Set the new value. */
4712 *(char_u **)(varp) = newval;
4714 /* Handle side effects, and set the global value for
4715 * ":set" on local options. */
4716 errmsg = did_set_string_option(opt_idx, (char_u **)varp,
4717 new_value_alloced, oldval, errbuf, opt_flags);
4719 /* If error detected, print the error message. */
4720 if (errmsg != NULL)
4721 goto skip;
4723 else /* key code option */
4725 char_u *p;
4727 if (nextchar == '&')
4729 if (add_termcap_entry(key_name, TRUE) == FAIL)
4730 errmsg = (char_u *)N_("E522: Not found in termcap");
4732 else
4734 ++arg; /* jump to after the '=' or ':' */
4735 for (p = arg; *p && !vim_iswhite(*p); ++p)
4736 if (*p == '\\' && p[1] != NUL)
4737 ++p;
4738 nextchar = *p;
4739 *p = NUL;
4740 add_termcode(key_name, arg, FALSE);
4741 *p = nextchar;
4743 if (full_screen)
4744 ttest(FALSE);
4745 redraw_all_later(CLEAR);
4749 if (opt_idx >= 0)
4750 did_set_option(opt_idx, opt_flags,
4751 !prepending && !adding && !removing);
4754 skip:
4756 * Advance to next argument.
4757 * - skip until a blank found, taking care of backslashes
4758 * - skip blanks
4759 * - skip one "=val" argument (for hidden options ":set gfn =xx")
4761 for (i = 0; i < 2 ; ++i)
4763 while (*arg != NUL && !vim_iswhite(*arg))
4764 if (*arg++ == '\\' && *arg != NUL)
4765 ++arg;
4766 arg = skipwhite(arg);
4767 if (*arg != '=')
4768 break;
4772 if (errmsg != NULL)
4774 vim_strncpy(IObuff, (char_u *)_(errmsg), IOSIZE - 1);
4775 i = (int)STRLEN(IObuff) + 2;
4776 if (i + (arg - startarg) < IOSIZE)
4778 /* append the argument with the error */
4779 STRCAT(IObuff, ": ");
4780 mch_memmove(IObuff + i, startarg, (arg - startarg));
4781 IObuff[i + (arg - startarg)] = NUL;
4783 /* make sure all characters are printable */
4784 trans_characters(IObuff, IOSIZE);
4786 ++no_wait_return; /* wait_return done later */
4787 emsg(IObuff); /* show error highlighted */
4788 --no_wait_return;
4790 return FAIL;
4793 arg = skipwhite(arg);
4796 theend:
4797 if (silent_mode && did_show)
4799 /* After displaying option values in silent mode. */
4800 silent_mode = FALSE;
4801 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
4802 msg_putchar('\n');
4803 cursor_on(); /* msg_start() switches it off */
4804 out_flush();
4805 silent_mode = TRUE;
4806 info_message = FALSE; /* use mch_msg(), not mch_errmsg() */
4809 return OK;
4813 * Call this when an option has been given a new value through a user command.
4814 * Sets the P_WAS_SET flag and takes care of the P_INSECURE flag.
4816 static void
4817 did_set_option(opt_idx, opt_flags, new_value)
4818 int opt_idx;
4819 int opt_flags; /* possibly with OPT_MODELINE */
4820 int new_value; /* value was replaced completely */
4822 long_u *p;
4824 options[opt_idx].flags |= P_WAS_SET;
4826 /* When an option is set in the sandbox, from a modeline or in secure mode
4827 * set the P_INSECURE flag. Otherwise, if a new value is stored reset the
4828 * flag. */
4829 p = insecure_flag(opt_idx, opt_flags);
4830 if (secure
4831 #ifdef HAVE_SANDBOX
4832 || sandbox != 0
4833 #endif
4834 || (opt_flags & OPT_MODELINE))
4835 *p = *p | P_INSECURE;
4836 else if (new_value)
4837 *p = *p & ~P_INSECURE;
4840 static char_u *
4841 illegal_char(errbuf, c)
4842 char_u *errbuf;
4843 int c;
4845 if (errbuf == NULL)
4846 return (char_u *)"";
4847 sprintf((char *)errbuf, _("E539: Illegal character <%s>"),
4848 (char *)transchar(c));
4849 return errbuf;
4853 * Convert a key name or string into a key value.
4854 * Used for 'wildchar' and 'cedit' options.
4856 static int
4857 string_to_key(arg)
4858 char_u *arg;
4860 if (*arg == '<')
4861 return find_key_option(arg + 1);
4862 if (*arg == '^')
4863 return Ctrl_chr(arg[1]);
4864 return *arg;
4867 #ifdef FEAT_CMDWIN
4869 * Check value of 'cedit' and set cedit_key.
4870 * Returns NULL if value is OK, error message otherwise.
4872 static char_u *
4873 check_cedit()
4875 int n;
4877 if (*p_cedit == NUL)
4878 cedit_key = -1;
4879 else
4881 n = string_to_key(p_cedit);
4882 if (vim_isprintc(n))
4883 return e_invarg;
4884 cedit_key = n;
4886 return NULL;
4888 #endif
4890 #ifdef FEAT_TITLE
4892 * When changing 'title', 'titlestring', 'icon' or 'iconstring', call
4893 * maketitle() to create and display it.
4894 * When switching the title or icon off, call mch_restore_title() to get
4895 * the old value back.
4897 static void
4898 did_set_title(icon)
4899 int icon; /* Did set icon instead of title */
4901 if (starting != NO_SCREEN
4902 #ifdef FEAT_GUI
4903 && !gui.starting
4904 #endif
4907 maketitle();
4908 if (icon)
4910 if (!p_icon)
4911 mch_restore_title(2);
4913 else
4915 if (!p_title)
4916 mch_restore_title(1);
4920 #endif
4923 * set_options_bin - called when 'bin' changes value.
4925 void
4926 set_options_bin(oldval, newval, opt_flags)
4927 int oldval;
4928 int newval;
4929 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
4932 * The option values that are changed when 'bin' changes are
4933 * copied when 'bin is set and restored when 'bin' is reset.
4935 if (newval)
4937 if (!oldval) /* switched on */
4939 if (!(opt_flags & OPT_GLOBAL))
4941 curbuf->b_p_tw_nobin = curbuf->b_p_tw;
4942 curbuf->b_p_wm_nobin = curbuf->b_p_wm;
4943 curbuf->b_p_ml_nobin = curbuf->b_p_ml;
4944 curbuf->b_p_et_nobin = curbuf->b_p_et;
4946 if (!(opt_flags & OPT_LOCAL))
4948 p_tw_nobin = p_tw;
4949 p_wm_nobin = p_wm;
4950 p_ml_nobin = p_ml;
4951 p_et_nobin = p_et;
4955 if (!(opt_flags & OPT_GLOBAL))
4957 curbuf->b_p_tw = 0; /* no automatic line wrap */
4958 curbuf->b_p_wm = 0; /* no automatic line wrap */
4959 curbuf->b_p_ml = 0; /* no modelines */
4960 curbuf->b_p_et = 0; /* no expandtab */
4962 if (!(opt_flags & OPT_LOCAL))
4964 p_tw = 0;
4965 p_wm = 0;
4966 p_ml = FALSE;
4967 p_et = FALSE;
4968 p_bin = TRUE; /* needed when called for the "-b" argument */
4971 else if (oldval) /* switched off */
4973 if (!(opt_flags & OPT_GLOBAL))
4975 curbuf->b_p_tw = curbuf->b_p_tw_nobin;
4976 curbuf->b_p_wm = curbuf->b_p_wm_nobin;
4977 curbuf->b_p_ml = curbuf->b_p_ml_nobin;
4978 curbuf->b_p_et = curbuf->b_p_et_nobin;
4980 if (!(opt_flags & OPT_LOCAL))
4982 p_tw = p_tw_nobin;
4983 p_wm = p_wm_nobin;
4984 p_ml = p_ml_nobin;
4985 p_et = p_et_nobin;
4990 #ifdef FEAT_VIMINFO
4992 * Find the parameter represented by the given character (eg ', :, ", or /),
4993 * and return its associated value in the 'viminfo' string.
4994 * Only works for number parameters, not for 'r' or 'n'.
4995 * If the parameter is not specified in the string or there is no following
4996 * number, return -1.
4999 get_viminfo_parameter(type)
5000 int type;
5002 char_u *p;
5004 p = find_viminfo_parameter(type);
5005 if (p != NULL && VIM_ISDIGIT(*p))
5006 return atoi((char *)p);
5007 return -1;
5011 * Find the parameter represented by the given character (eg ''', ':', '"', or
5012 * '/') in the 'viminfo' option and return a pointer to the string after it.
5013 * Return NULL if the parameter is not specified in the string.
5015 char_u *
5016 find_viminfo_parameter(type)
5017 int type;
5019 char_u *p;
5021 for (p = p_viminfo; *p; ++p)
5023 if (*p == type)
5024 return p + 1;
5025 if (*p == 'n') /* 'n' is always the last one */
5026 break;
5027 p = vim_strchr(p, ','); /* skip until next ',' */
5028 if (p == NULL) /* hit the end without finding parameter */
5029 break;
5031 return NULL;
5033 #endif
5036 * Expand environment variables for some string options.
5037 * These string options cannot be indirect!
5038 * If "val" is NULL expand the current value of the option.
5039 * Return pointer to NameBuff, or NULL when not expanded.
5041 static char_u *
5042 option_expand(opt_idx, val)
5043 int opt_idx;
5044 char_u *val;
5046 /* if option doesn't need expansion nothing to do */
5047 if (!(options[opt_idx].flags & P_EXPAND) || options[opt_idx].var == NULL)
5048 return NULL;
5050 /* If val is longer than MAXPATHL no meaningful expansion can be done,
5051 * expand_env() would truncate the string. */
5052 if (val != NULL && STRLEN(val) > MAXPATHL)
5053 return NULL;
5055 if (val == NULL)
5056 val = *(char_u **)options[opt_idx].var;
5059 * Expanding this with NameBuff, expand_env() must not be passed IObuff.
5060 * Escape spaces when expanding 'tags', they are used to separate file
5061 * names.
5062 * For 'spellsuggest' expand after "file:".
5064 expand_env_esc(val, NameBuff, MAXPATHL,
5065 (char_u **)options[opt_idx].var == &p_tags, FALSE,
5066 #ifdef FEAT_SPELL
5067 (char_u **)options[opt_idx].var == &p_sps ? (char_u *)"file:" :
5068 #endif
5069 NULL);
5070 if (STRCMP(NameBuff, val) == 0) /* they are the same */
5071 return NULL;
5073 return NameBuff;
5077 * After setting various option values: recompute variables that depend on
5078 * option values.
5080 static void
5081 didset_options()
5083 /* initialize the table for 'iskeyword' et.al. */
5084 (void)init_chartab();
5086 #ifdef FEAT_MBYTE
5087 (void)opt_strings_flags(p_cmp, p_cmp_values, &cmp_flags, TRUE);
5088 #endif
5089 (void)opt_strings_flags(p_bkc, p_bkc_values, &bkc_flags, TRUE);
5090 #ifdef FEAT_SESSION
5091 (void)opt_strings_flags(p_ssop, p_ssop_values, &ssop_flags, TRUE);
5092 (void)opt_strings_flags(p_vop, p_ssop_values, &vop_flags, TRUE);
5093 #endif
5094 #ifdef FEAT_FOLDING
5095 (void)opt_strings_flags(p_fdo, p_fdo_values, &fdo_flags, TRUE);
5096 #endif
5097 (void)opt_strings_flags(p_dy, p_dy_values, &dy_flags, TRUE);
5098 #ifdef FEAT_VIRTUALEDIT
5099 (void)opt_strings_flags(p_ve, p_ve_values, &ve_flags, TRUE);
5100 #endif
5101 #if defined(FEAT_MOUSE) && (defined(UNIX) || defined(VMS))
5102 (void)opt_strings_flags(p_ttym, p_ttym_values, &ttym_flags, FALSE);
5103 #endif
5104 #ifdef FEAT_SPELL
5105 (void)spell_check_msm();
5106 (void)spell_check_sps();
5107 (void)compile_cap_prog(curbuf);
5108 #endif
5109 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
5110 (void)opt_strings_flags(p_toolbar, p_toolbar_values, &toolbar_flags, TRUE);
5111 #endif
5112 #if defined(FEAT_TOOLBAR) && defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)
5113 (void)opt_strings_flags(p_tbis, p_tbis_values, &tbis_flags, FALSE);
5114 #endif
5115 #ifdef FEAT_CMDWIN
5116 /* set cedit_key */
5117 (void)check_cedit();
5118 #endif
5122 * Check for string options that are NULL (normally only termcap options).
5124 void
5125 check_options()
5127 int opt_idx;
5129 for (opt_idx = 0; options[opt_idx].fullname != NULL; opt_idx++)
5130 if ((options[opt_idx].flags & P_STRING) && options[opt_idx].var != NULL)
5131 check_string_option((char_u **)get_varp(&(options[opt_idx])));
5135 * Check string options in a buffer for NULL value.
5137 void
5138 check_buf_options(buf)
5139 buf_T *buf;
5141 #if defined(FEAT_QUICKFIX)
5142 check_string_option(&buf->b_p_bh);
5143 check_string_option(&buf->b_p_bt);
5144 #endif
5145 #ifdef FEAT_MBYTE
5146 check_string_option(&buf->b_p_fenc);
5147 #endif
5148 check_string_option(&buf->b_p_ff);
5149 #ifdef FEAT_FIND_ID
5150 check_string_option(&buf->b_p_def);
5151 check_string_option(&buf->b_p_inc);
5152 # ifdef FEAT_EVAL
5153 check_string_option(&buf->b_p_inex);
5154 # endif
5155 #endif
5156 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
5157 check_string_option(&buf->b_p_inde);
5158 check_string_option(&buf->b_p_indk);
5159 #endif
5160 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
5161 check_string_option(&buf->b_p_bexpr);
5162 #endif
5163 #if defined(FEAT_EVAL)
5164 check_string_option(&buf->b_p_fex);
5165 #endif
5166 #ifdef FEAT_CRYPT
5167 check_string_option(&buf->b_p_key);
5168 #endif
5169 check_string_option(&buf->b_p_kp);
5170 check_string_option(&buf->b_p_mps);
5171 check_string_option(&buf->b_p_fo);
5172 check_string_option(&buf->b_p_flp);
5173 check_string_option(&buf->b_p_isk);
5174 #ifdef FEAT_COMMENTS
5175 check_string_option(&buf->b_p_com);
5176 #endif
5177 #ifdef FEAT_FOLDING
5178 check_string_option(&buf->b_p_cms);
5179 #endif
5180 check_string_option(&buf->b_p_nf);
5181 #ifdef FEAT_TEXTOBJ
5182 check_string_option(&buf->b_p_qe);
5183 #endif
5184 #ifdef FEAT_SYN_HL
5185 check_string_option(&buf->b_p_syn);
5186 #endif
5187 #ifdef FEAT_SPELL
5188 check_string_option(&buf->b_p_spc);
5189 check_string_option(&buf->b_p_spf);
5190 check_string_option(&buf->b_p_spl);
5191 #endif
5192 #ifdef FEAT_SEARCHPATH
5193 check_string_option(&buf->b_p_sua);
5194 #endif
5195 #ifdef FEAT_CINDENT
5196 check_string_option(&buf->b_p_cink);
5197 check_string_option(&buf->b_p_cino);
5198 #endif
5199 #ifdef FEAT_AUTOCMD
5200 check_string_option(&buf->b_p_ft);
5201 #endif
5202 #ifdef FEAT_OSFILETYPE
5203 check_string_option(&buf->b_p_oft);
5204 #endif
5205 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
5206 check_string_option(&buf->b_p_cinw);
5207 #endif
5208 #ifdef FEAT_INS_EXPAND
5209 check_string_option(&buf->b_p_cpt);
5210 #endif
5211 #ifdef FEAT_COMPL_FUNC
5212 check_string_option(&buf->b_p_cfu);
5213 check_string_option(&buf->b_p_ofu);
5214 #endif
5215 #ifdef FEAT_KEYMAP
5216 check_string_option(&buf->b_p_keymap);
5217 #endif
5218 #ifdef FEAT_QUICKFIX
5219 check_string_option(&buf->b_p_gp);
5220 check_string_option(&buf->b_p_mp);
5221 check_string_option(&buf->b_p_efm);
5222 #endif
5223 check_string_option(&buf->b_p_ep);
5224 check_string_option(&buf->b_p_path);
5225 check_string_option(&buf->b_p_tags);
5226 #ifdef FEAT_INS_EXPAND
5227 check_string_option(&buf->b_p_dict);
5228 check_string_option(&buf->b_p_tsr);
5229 #endif
5233 * Free the string allocated for an option.
5234 * Checks for the string being empty_option. This may happen if we're out of
5235 * memory, vim_strsave() returned NULL, which was replaced by empty_option by
5236 * check_options().
5237 * Does NOT check for P_ALLOCED flag!
5239 void
5240 free_string_option(p)
5241 char_u *p;
5243 if (p != empty_option)
5244 vim_free(p);
5247 void
5248 clear_string_option(pp)
5249 char_u **pp;
5251 if (*pp != empty_option)
5252 vim_free(*pp);
5253 *pp = empty_option;
5256 static void
5257 check_string_option(pp)
5258 char_u **pp;
5260 if (*pp == NULL)
5261 *pp = empty_option;
5265 * Mark a terminal option as allocated, found by a pointer into term_strings[].
5267 void
5268 set_term_option_alloced(p)
5269 char_u **p;
5271 int opt_idx;
5273 for (opt_idx = 1; options[opt_idx].fullname != NULL; opt_idx++)
5274 if (options[opt_idx].var == (char_u *)p)
5276 options[opt_idx].flags |= P_ALLOCED;
5277 return;
5279 return; /* cannot happen: didn't find it! */
5282 #if defined(FEAT_EVAL) || defined(PROTO)
5284 * Return TRUE when option "opt" was set from a modeline or in secure mode.
5285 * Return FALSE when it wasn't.
5286 * Return -1 for an unknown option.
5289 was_set_insecurely(opt, opt_flags)
5290 char_u *opt;
5291 int opt_flags;
5293 int idx = findoption(opt);
5294 long_u *flagp;
5296 if (idx >= 0)
5298 flagp = insecure_flag(idx, opt_flags);
5299 return (*flagp & P_INSECURE) != 0;
5301 EMSG2(_(e_intern2), "was_set_insecurely()");
5302 return -1;
5306 * Get a pointer to the flags used for the P_INSECURE flag of option
5307 * "opt_idx". For some local options a local flags field is used.
5309 static long_u *
5310 insecure_flag(opt_idx, opt_flags)
5311 int opt_idx;
5312 int opt_flags;
5314 if (opt_flags & OPT_LOCAL)
5315 switch ((int)options[opt_idx].indir)
5317 #ifdef FEAT_STL_OPT
5318 case PV_STL: return &curwin->w_p_stl_flags;
5319 #endif
5320 #ifdef FEAT_EVAL
5321 # ifdef FEAT_FOLDING
5322 case PV_FDE: return &curwin->w_p_fde_flags;
5323 case PV_FDT: return &curwin->w_p_fdt_flags;
5324 # endif
5325 # ifdef FEAT_BEVAL
5326 case PV_BEXPR: return &curbuf->b_p_bexpr_flags;
5327 # endif
5328 # if defined(FEAT_CINDENT)
5329 case PV_INDE: return &curbuf->b_p_inde_flags;
5330 # endif
5331 case PV_FEX: return &curbuf->b_p_fex_flags;
5332 # ifdef FEAT_FIND_ID
5333 case PV_INEX: return &curbuf->b_p_inex_flags;
5334 # endif
5335 #endif
5338 /* Nothing special, return global flags field. */
5339 return &options[opt_idx].flags;
5341 #endif
5343 #ifdef FEAT_TITLE
5344 static void redraw_titles __ARGS((void));
5347 * Redraw the window title and/or tab page text later.
5349 static void redraw_titles()
5351 need_maketitle = TRUE;
5352 # ifdef FEAT_WINDOWS
5353 redraw_tabline = TRUE;
5354 # endif
5356 #endif
5359 * Set a string option to a new value (without checking the effect).
5360 * The string is copied into allocated memory.
5361 * if ("opt_idx" == -1) "name" is used, otherwise "opt_idx" is used.
5362 * When "set_sid" is zero set the scriptID to current_SID. When "set_sid" is
5363 * SID_NONE don't set the scriptID. Otherwise set the scriptID to "set_sid".
5365 void
5366 set_string_option_direct(name, opt_idx, val, opt_flags, set_sid)
5367 char_u *name;
5368 int opt_idx;
5369 char_u *val;
5370 int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */
5371 int set_sid UNUSED;
5373 char_u *s;
5374 char_u **varp;
5375 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
5376 int idx = opt_idx;
5378 if (idx == -1) /* use name */
5380 idx = findoption(name);
5381 if (idx < 0) /* not found (should not happen) */
5383 EMSG2(_(e_intern2), "set_string_option_direct()");
5384 return;
5388 if (options[idx].var == NULL) /* can't set hidden option */
5389 return;
5391 s = vim_strsave(val);
5392 if (s != NULL)
5394 varp = (char_u **)get_varp_scope(&(options[idx]),
5395 both ? OPT_LOCAL : opt_flags);
5396 if ((opt_flags & OPT_FREE) && (options[idx].flags & P_ALLOCED))
5397 free_string_option(*varp);
5398 *varp = s;
5400 /* For buffer/window local option may also set the global value. */
5401 if (both)
5402 set_string_option_global(idx, varp);
5404 options[idx].flags |= P_ALLOCED;
5406 /* When setting both values of a global option with a local value,
5407 * make the local value empty, so that the global value is used. */
5408 if (((int)options[idx].indir & PV_BOTH) && both)
5410 free_string_option(*varp);
5411 *varp = empty_option;
5413 # ifdef FEAT_EVAL
5414 if (set_sid != SID_NONE)
5415 set_option_scriptID_idx(idx, opt_flags,
5416 set_sid == 0 ? current_SID : set_sid);
5417 # endif
5422 * Set global value for string option when it's a local option.
5424 static void
5425 set_string_option_global(opt_idx, varp)
5426 int opt_idx; /* option index */
5427 char_u **varp; /* pointer to option variable */
5429 char_u **p, *s;
5431 /* the global value is always allocated */
5432 if (options[opt_idx].var == VAR_WIN)
5433 p = (char_u **)GLOBAL_WO(varp);
5434 else
5435 p = (char_u **)options[opt_idx].var;
5436 if (options[opt_idx].indir != PV_NONE
5437 && p != varp
5438 && (s = vim_strsave(*varp)) != NULL)
5440 free_string_option(*p);
5441 *p = s;
5446 * Set a string option to a new value, and handle the effects.
5448 static void
5449 set_string_option(opt_idx, value, opt_flags)
5450 int opt_idx;
5451 char_u *value;
5452 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
5454 char_u *s;
5455 char_u **varp;
5456 char_u *oldval;
5458 if (options[opt_idx].var == NULL) /* don't set hidden option */
5459 return;
5461 s = vim_strsave(value);
5462 if (s != NULL)
5464 varp = (char_u **)get_varp_scope(&(options[opt_idx]),
5465 (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
5466 ? (((int)options[opt_idx].indir & PV_BOTH)
5467 ? OPT_GLOBAL : OPT_LOCAL)
5468 : opt_flags);
5469 oldval = *varp;
5470 *varp = s;
5471 if (did_set_string_option(opt_idx, varp, TRUE, oldval, NULL,
5472 opt_flags) == NULL)
5473 did_set_option(opt_idx, opt_flags, TRUE);
5478 * Handle string options that need some action to perform when changed.
5479 * Returns NULL for success, or an error message for an error.
5481 static char_u *
5482 did_set_string_option(opt_idx, varp, new_value_alloced, oldval, errbuf,
5483 opt_flags)
5484 int opt_idx; /* index in options[] table */
5485 char_u **varp; /* pointer to the option variable */
5486 int new_value_alloced; /* new value was allocated */
5487 char_u *oldval; /* previous value of the option */
5488 char_u *errbuf; /* buffer for errors, or NULL */
5489 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
5491 char_u *errmsg = NULL;
5492 char_u *s, *p;
5493 int did_chartab = FALSE;
5494 char_u **gvarp;
5495 long_u free_oldval = (options[opt_idx].flags & P_ALLOCED);
5496 #ifdef FEAT_GUI
5497 /* set when changing an option that only requires a redraw in the GUI */
5498 int redraw_gui_only = FALSE;
5499 #endif
5501 /* Get the global option to compare with, otherwise we would have to check
5502 * two values for all local options. */
5503 gvarp = (char_u **)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL);
5505 /* Disallow changing some options from secure mode */
5506 if ((secure
5507 #ifdef HAVE_SANDBOX
5508 || sandbox != 0
5509 #endif
5510 ) && (options[opt_idx].flags & P_SECURE))
5512 errmsg = e_secure;
5515 /* Check for a "normal" file name in some options. Disallow a path
5516 * separator (slash and/or backslash), wildcards and characters that are
5517 * often illegal in a file name. */
5518 else if ((options[opt_idx].flags & P_NFNAME)
5519 && vim_strpbrk(*varp, (char_u *)"/\\*?[|<>") != NULL)
5521 errmsg = e_invarg;
5524 /* 'term' */
5525 else if (varp == &T_NAME)
5527 if (T_NAME[0] == NUL)
5528 errmsg = (char_u *)N_("E529: Cannot set 'term' to empty string");
5529 #ifdef FEAT_GUI
5530 if (gui.in_use)
5531 errmsg = (char_u *)N_("E530: Cannot change term in GUI");
5532 else if (term_is_gui(T_NAME))
5533 errmsg = (char_u *)N_("E531: Use \":gui\" to start the GUI");
5534 #endif
5535 else if (set_termname(T_NAME) == FAIL)
5536 errmsg = (char_u *)N_("E522: Not found in termcap");
5537 else
5538 /* Screen colors may have changed. */
5539 redraw_later_clear();
5542 /* 'backupcopy' */
5543 else if (varp == &p_bkc)
5545 if (opt_strings_flags(p_bkc, p_bkc_values, &bkc_flags, TRUE) != OK)
5546 errmsg = e_invarg;
5547 if (((bkc_flags & BKC_AUTO) != 0)
5548 + ((bkc_flags & BKC_YES) != 0)
5549 + ((bkc_flags & BKC_NO) != 0) != 1)
5551 /* Must have exactly one of "auto", "yes" and "no". */
5552 (void)opt_strings_flags(oldval, p_bkc_values, &bkc_flags, TRUE);
5553 errmsg = e_invarg;
5557 /* 'backupext' and 'patchmode' */
5558 else if (varp == &p_bex || varp == &p_pm)
5560 if (STRCMP(*p_bex == '.' ? p_bex + 1 : p_bex,
5561 *p_pm == '.' ? p_pm + 1 : p_pm) == 0)
5562 errmsg = (char_u *)N_("E589: 'backupext' and 'patchmode' are equal");
5566 * 'isident', 'iskeyword', 'isprint or 'isfname' option: refill chartab[]
5567 * If the new option is invalid, use old value. 'lisp' option: refill
5568 * chartab[] for '-' char
5570 else if ( varp == &p_isi
5571 || varp == &(curbuf->b_p_isk)
5572 || varp == &p_isp
5573 || varp == &p_isf)
5575 if (init_chartab() == FAIL)
5577 did_chartab = TRUE; /* need to restore it below */
5578 errmsg = e_invarg; /* error in value */
5582 /* 'helpfile' */
5583 else if (varp == &p_hf)
5585 /* May compute new values for $VIM and $VIMRUNTIME */
5586 if (didset_vim)
5588 vim_setenv((char_u *)"VIM", (char_u *)"");
5589 didset_vim = FALSE;
5591 if (didset_vimruntime)
5593 vim_setenv((char_u *)"VIMRUNTIME", (char_u *)"");
5594 didset_vimruntime = FALSE;
5598 #ifdef FEAT_MULTI_LANG
5599 /* 'helplang' */
5600 else if (varp == &p_hlg)
5602 /* Check for "", "ab", "ab,cd", etc. */
5603 for (s = p_hlg; *s != NUL; s += 3)
5605 if (s[1] == NUL || ((s[2] != ',' || s[3] == NUL) && s[2] != NUL))
5607 errmsg = e_invarg;
5608 break;
5610 if (s[2] == NUL)
5611 break;
5614 #endif
5616 /* 'highlight' */
5617 else if (varp == &p_hl)
5619 if (highlight_changed() == FAIL)
5620 errmsg = e_invarg; /* invalid flags */
5623 /* 'nrformats' */
5624 else if (gvarp == &p_nf)
5626 if (check_opt_strings(*varp, p_nf_values, TRUE) != OK)
5627 errmsg = e_invarg;
5630 #ifdef FEAT_SESSION
5631 /* 'sessionoptions' */
5632 else if (varp == &p_ssop)
5634 if (opt_strings_flags(p_ssop, p_ssop_values, &ssop_flags, TRUE) != OK)
5635 errmsg = e_invarg;
5636 if ((ssop_flags & SSOP_CURDIR) && (ssop_flags & SSOP_SESDIR))
5638 /* Don't allow both "sesdir" and "curdir". */
5639 (void)opt_strings_flags(oldval, p_ssop_values, &ssop_flags, TRUE);
5640 errmsg = e_invarg;
5643 /* 'viewoptions' */
5644 else if (varp == &p_vop)
5646 if (opt_strings_flags(p_vop, p_ssop_values, &vop_flags, TRUE) != OK)
5647 errmsg = e_invarg;
5649 #endif
5651 /* 'scrollopt' */
5652 #ifdef FEAT_SCROLLBIND
5653 else if (varp == &p_sbo)
5655 if (check_opt_strings(p_sbo, p_scbopt_values, TRUE) != OK)
5656 errmsg = e_invarg;
5658 #endif
5660 /* 'ambiwidth' */
5661 #ifdef FEAT_MBYTE
5662 else if (varp == &p_ambw)
5664 if (check_opt_strings(p_ambw, p_ambw_values, FALSE) != OK)
5665 errmsg = e_invarg;
5667 #endif
5669 /* 'background' */
5670 else if (varp == &p_bg)
5672 if (check_opt_strings(p_bg, p_bg_values, FALSE) == OK)
5674 #ifdef FEAT_EVAL
5675 int dark = (*p_bg == 'd');
5676 #endif
5678 init_highlight(FALSE, FALSE);
5680 #ifdef FEAT_EVAL
5681 if (dark != (*p_bg == 'd')
5682 && get_var_value((char_u *)"g:colors_name") != NULL)
5684 /* The color scheme must have set 'background' back to another
5685 * value, that's not what we want here. Disable the color
5686 * scheme and set the colors again. */
5687 do_unlet((char_u *)"g:colors_name", TRUE);
5688 free_string_option(p_bg);
5689 p_bg = vim_strsave((char_u *)(dark ? "dark" : "light"));
5690 check_string_option(&p_bg);
5691 init_highlight(FALSE, FALSE);
5693 #endif
5695 else
5696 errmsg = e_invarg;
5699 /* 'wildmode' */
5700 else if (varp == &p_wim)
5702 if (check_opt_wim() == FAIL)
5703 errmsg = e_invarg;
5706 #ifdef FEAT_CMDL_COMPL
5707 /* 'wildoptions' */
5708 else if (varp == &p_wop)
5710 if (check_opt_strings(p_wop, p_wop_values, TRUE) != OK)
5711 errmsg = e_invarg;
5713 #endif
5715 #ifdef FEAT_WAK
5716 /* 'winaltkeys' */
5717 else if (varp == &p_wak)
5719 if (*p_wak == NUL
5720 || check_opt_strings(p_wak, p_wak_values, FALSE) != OK)
5721 errmsg = e_invarg;
5722 # ifdef FEAT_MENU
5723 # ifdef FEAT_GUI_MOTIF
5724 else if (gui.in_use)
5725 gui_motif_set_mnemonics(p_wak[0] == 'y' || p_wak[0] == 'm');
5726 # else
5727 # ifdef FEAT_GUI_GTK
5728 else if (gui.in_use)
5729 gui_gtk_set_mnemonics(p_wak[0] == 'y' || p_wak[0] == 'm');
5730 # endif
5731 # endif
5732 # endif
5734 #endif
5736 #ifdef FEAT_AUTOCMD
5737 /* 'eventignore' */
5738 else if (varp == &p_ei)
5740 if (check_ei() == FAIL)
5741 errmsg = e_invarg;
5743 #endif
5745 #ifdef FEAT_MBYTE
5746 /* 'encoding' and 'fileencoding' */
5747 else if (varp == &p_enc || gvarp == &p_fenc || varp == &p_tenc)
5749 if (gvarp == &p_fenc)
5751 if (!curbuf->b_p_ma && opt_flags != OPT_GLOBAL)
5752 errmsg = e_modifiable;
5753 else if (vim_strchr(*varp, ',') != NULL)
5754 /* No comma allowed in 'fileencoding'; catches confusing it
5755 * with 'fileencodings'. */
5756 errmsg = e_invarg;
5757 else
5759 # ifdef FEAT_TITLE
5760 /* May show a "+" in the title now. */
5761 redraw_titles();
5762 # endif
5763 /* Add 'fileencoding' to the swap file. */
5764 ml_setflags(curbuf);
5767 if (errmsg == NULL)
5769 /* canonize the value, so that STRCMP() can be used on it */
5770 p = enc_canonize(*varp);
5771 if (p != NULL)
5773 vim_free(*varp);
5774 *varp = p;
5776 if (varp == &p_enc)
5778 errmsg = mb_init();
5779 # ifdef FEAT_TITLE
5780 redraw_titles();
5781 # endif
5785 # if defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)
5786 if (errmsg == NULL && varp == &p_tenc && gui.in_use)
5788 /* GTK+ 2 uses only a single encoding, and that is UTF-8. */
5789 if (STRCMP(p_tenc, "utf-8") != 0)
5790 errmsg = (char_u *)N_("E617: Cannot be changed in the GTK+ 2 GUI");
5792 # endif
5794 if (errmsg == NULL)
5796 # ifdef FEAT_KEYMAP
5797 /* When 'keymap' is used and 'encoding' changes, reload the keymap
5798 * (with another encoding). */
5799 if (varp == &p_enc && *curbuf->b_p_keymap != NUL)
5800 (void)keymap_init();
5801 # endif
5803 /* When 'termencoding' is not empty and 'encoding' changes or when
5804 * 'termencoding' changes, need to setup for keyboard input and
5805 * display output conversion. */
5806 if (((varp == &p_enc && *p_tenc != NUL) || varp == &p_tenc))
5808 convert_setup(&input_conv, p_tenc, p_enc);
5809 convert_setup(&output_conv, p_enc, p_tenc);
5812 # if defined(WIN3264) && defined(FEAT_MBYTE)
5813 /* $HOME may have characters in active code page. */
5814 if (varp == &p_enc)
5815 init_homedir();
5816 # endif
5819 #endif
5821 #if defined(FEAT_POSTSCRIPT)
5822 else if (varp == &p_penc)
5824 /* Canonize printencoding if VIM standard one */
5825 p = enc_canonize(p_penc);
5826 if (p != NULL)
5828 vim_free(p_penc);
5829 p_penc = p;
5831 else
5833 /* Ensure lower case and '-' for '_' */
5834 for (s = p_penc; *s != NUL; s++)
5836 if (*s == '_')
5837 *s = '-';
5838 else
5839 *s = TOLOWER_ASC(*s);
5843 #endif
5845 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
5846 else if (varp == &p_imak)
5848 if (gui.in_use && !im_xim_isvalid_imactivate())
5849 errmsg = e_invarg;
5851 #endif
5853 #ifdef FEAT_KEYMAP
5854 else if (varp == &curbuf->b_p_keymap)
5856 /* load or unload key mapping tables */
5857 errmsg = keymap_init();
5859 if (errmsg == NULL)
5861 if (*curbuf->b_p_keymap != NUL)
5863 /* Installed a new keymap, switch on using it. */
5864 curbuf->b_p_iminsert = B_IMODE_LMAP;
5865 if (curbuf->b_p_imsearch != B_IMODE_USE_INSERT)
5866 curbuf->b_p_imsearch = B_IMODE_LMAP;
5868 else
5870 /* Cleared the keymap, may reset 'iminsert' and 'imsearch'. */
5871 if (curbuf->b_p_iminsert == B_IMODE_LMAP)
5872 curbuf->b_p_iminsert = B_IMODE_NONE;
5873 if (curbuf->b_p_imsearch == B_IMODE_LMAP)
5874 curbuf->b_p_imsearch = B_IMODE_USE_INSERT;
5876 if ((opt_flags & OPT_LOCAL) == 0)
5878 set_iminsert_global();
5879 set_imsearch_global();
5881 # ifdef FEAT_WINDOWS
5882 status_redraw_curbuf();
5883 # endif
5886 #endif
5888 /* 'fileformat' */
5889 else if (gvarp == &p_ff)
5891 if (!curbuf->b_p_ma && !(opt_flags & OPT_GLOBAL))
5892 errmsg = e_modifiable;
5893 else if (check_opt_strings(*varp, p_ff_values, FALSE) != OK)
5894 errmsg = e_invarg;
5895 else
5897 /* may also change 'textmode' */
5898 if (get_fileformat(curbuf) == EOL_DOS)
5899 curbuf->b_p_tx = TRUE;
5900 else
5901 curbuf->b_p_tx = FALSE;
5902 #ifdef FEAT_TITLE
5903 redraw_titles();
5904 #endif
5905 /* update flag in swap file */
5906 ml_setflags(curbuf);
5907 /* Redraw needed when switching to/from "mac": a CR in the text
5908 * will be displayed differently. */
5909 if (get_fileformat(curbuf) == EOL_MAC || *oldval == 'm')
5910 redraw_curbuf_later(NOT_VALID);
5914 /* 'fileformats' */
5915 else if (varp == &p_ffs)
5917 if (check_opt_strings(p_ffs, p_ff_values, TRUE) != OK)
5918 errmsg = e_invarg;
5919 else
5921 /* also change 'textauto' */
5922 if (*p_ffs == NUL)
5923 p_ta = FALSE;
5924 else
5925 p_ta = TRUE;
5929 #if defined(FEAT_CRYPT) && defined(FEAT_CMDHIST)
5930 /* 'cryptkey' */
5931 else if (gvarp == &p_key)
5933 /* Make sure the ":set" command doesn't show the new value in the
5934 * history. */
5935 remove_key_from_history();
5937 #endif
5939 /* 'matchpairs' */
5940 else if (gvarp == &p_mps)
5942 /* Check for "x:y,x:y" */
5943 for (p = *varp; *p != NUL; p += 4)
5945 if (p[1] != ':' || p[2] == NUL || (p[3] != NUL && p[3] != ','))
5947 errmsg = e_invarg;
5948 break;
5950 if (p[3] == NUL)
5951 break;
5955 #ifdef FEAT_COMMENTS
5956 /* 'comments' */
5957 else if (gvarp == &p_com)
5959 for (s = *varp; *s; )
5961 while (*s && *s != ':')
5963 if (vim_strchr((char_u *)COM_ALL, *s) == NULL
5964 && !VIM_ISDIGIT(*s) && *s != '-')
5966 errmsg = illegal_char(errbuf, *s);
5967 break;
5969 ++s;
5971 if (*s++ == NUL)
5972 errmsg = (char_u *)N_("E524: Missing colon");
5973 else if (*s == ',' || *s == NUL)
5974 errmsg = (char_u *)N_("E525: Zero length string");
5975 if (errmsg != NULL)
5976 break;
5977 while (*s && *s != ',')
5979 if (*s == '\\' && s[1] != NUL)
5980 ++s;
5981 ++s;
5983 s = skip_to_option_part(s);
5986 #endif
5988 /* 'listchars' */
5989 else if (varp == &p_lcs)
5991 errmsg = set_chars_option(varp);
5994 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
5995 /* 'fillchars' */
5996 else if (varp == &p_fcs)
5998 errmsg = set_chars_option(varp);
6000 #endif
6002 #ifdef FEAT_CMDWIN
6003 /* 'cedit' */
6004 else if (varp == &p_cedit)
6006 errmsg = check_cedit();
6008 #endif
6010 /* 'verbosefile' */
6011 else if (varp == &p_vfile)
6013 verbose_stop();
6014 if (*p_vfile != NUL && verbose_open() == FAIL)
6015 errmsg = e_invarg;
6018 #ifdef FEAT_VIMINFO
6019 /* 'viminfo' */
6020 else if (varp == &p_viminfo)
6022 for (s = p_viminfo; *s;)
6024 /* Check it's a valid character */
6025 if (vim_strchr((char_u *)"!\"%'/:<@cfhnrs", *s) == NULL)
6027 errmsg = illegal_char(errbuf, *s);
6028 break;
6030 if (*s == 'n') /* name is always last one */
6032 break;
6034 else if (*s == 'r') /* skip until next ',' */
6036 while (*++s && *s != ',')
6039 else if (*s == '%')
6041 /* optional number */
6042 while (vim_isdigit(*++s))
6045 else if (*s == '!' || *s == 'h' || *s == 'c')
6046 ++s; /* no extra chars */
6047 else /* must have a number */
6049 while (vim_isdigit(*++s))
6052 if (!VIM_ISDIGIT(*(s - 1)))
6054 if (errbuf != NULL)
6056 sprintf((char *)errbuf,
6057 _("E526: Missing number after <%s>"),
6058 transchar_byte(*(s - 1)));
6059 errmsg = errbuf;
6061 else
6062 errmsg = (char_u *)"";
6063 break;
6066 if (*s == ',')
6067 ++s;
6068 else if (*s)
6070 if (errbuf != NULL)
6071 errmsg = (char_u *)N_("E527: Missing comma");
6072 else
6073 errmsg = (char_u *)"";
6074 break;
6077 if (*p_viminfo && errmsg == NULL && get_viminfo_parameter('\'') < 0)
6078 errmsg = (char_u *)N_("E528: Must specify a ' value");
6080 #endif /* FEAT_VIMINFO */
6082 /* terminal options */
6083 else if (istermoption(&options[opt_idx]) && full_screen)
6085 /* ":set t_Co=0" and ":set t_Co=1" do ":set t_Co=" */
6086 if (varp == &T_CCO)
6088 int colors = atoi((char *)T_CCO);
6090 /* Only reinitialize colors if t_Co value has really changed to
6091 * avoid expensive reload of colorscheme if t_Co is set to the
6092 * same value multiple times. */
6093 if (colors != t_colors)
6095 t_colors = colors;
6096 if (t_colors <= 1)
6098 if (new_value_alloced)
6099 vim_free(T_CCO);
6100 T_CCO = empty_option;
6102 /* We now have a different color setup, initialize it again. */
6103 init_highlight(TRUE, FALSE);
6106 ttest(FALSE);
6107 if (varp == &T_ME)
6109 out_str(T_ME);
6110 redraw_later(CLEAR);
6111 #if defined(MSDOS) || (defined(WIN3264) && !defined(FEAT_GUI_W32))
6112 /* Since t_me has been set, this probably means that the user
6113 * wants to use this as default colors. Need to reset default
6114 * background/foreground colors. */
6115 mch_set_normal_colors();
6116 #endif
6120 #ifdef FEAT_LINEBREAK
6121 /* 'showbreak' */
6122 else if (varp == &p_sbr)
6124 for (s = p_sbr; *s; )
6126 if (ptr2cells(s) != 1)
6127 errmsg = (char_u *)N_("E595: contains unprintable or wide character");
6128 mb_ptr_adv(s);
6131 #endif
6133 #ifdef FEAT_GUI
6134 /* 'guifont' */
6135 else if (varp == &p_guifont)
6137 if (gui.in_use)
6139 p = p_guifont;
6140 # if defined(FEAT_GUI_GTK)
6142 * Put up a font dialog and let the user select a new value.
6143 * If this is cancelled go back to the old value but don't
6144 * give an error message.
6146 if (STRCMP(p, "*") == 0)
6148 p = gui_mch_font_dialog(oldval);
6150 if (new_value_alloced)
6151 free_string_option(p_guifont);
6153 p_guifont = (p != NULL) ? p : vim_strsave(oldval);
6154 new_value_alloced = TRUE;
6156 # endif
6157 if (p != NULL && gui_init_font(p_guifont, FALSE) != OK)
6159 # if defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_PHOTON)
6160 if (STRCMP(p_guifont, "*") == 0)
6162 /* Dialog was cancelled: Keep the old value without giving
6163 * an error message. */
6164 if (new_value_alloced)
6165 free_string_option(p_guifont);
6166 p_guifont = vim_strsave(oldval);
6167 new_value_alloced = TRUE;
6169 else
6170 # endif
6171 errmsg = (char_u *)N_("E596: Invalid font(s)");
6174 redraw_gui_only = TRUE;
6176 # ifdef FEAT_XFONTSET
6177 else if (varp == &p_guifontset)
6179 if (STRCMP(p_guifontset, "*") == 0)
6180 errmsg = (char_u *)N_("E597: can't select fontset");
6181 else if (gui.in_use && gui_init_font(p_guifontset, TRUE) != OK)
6182 errmsg = (char_u *)N_("E598: Invalid fontset");
6183 redraw_gui_only = TRUE;
6185 # endif
6186 # ifdef FEAT_MBYTE
6187 else if (varp == &p_guifontwide)
6189 if (STRCMP(p_guifontwide, "*") == 0)
6190 errmsg = (char_u *)N_("E533: can't select wide font");
6191 else if (gui_get_wide_font() == FAIL)
6192 errmsg = (char_u *)N_("E534: Invalid wide font");
6193 redraw_gui_only = TRUE;
6195 # endif
6196 #endif
6198 #ifdef CURSOR_SHAPE
6199 /* 'guicursor' */
6200 else if (varp == &p_guicursor)
6201 errmsg = parse_shape_opt(SHAPE_CURSOR);
6202 #endif
6204 #ifdef FEAT_MOUSESHAPE
6205 /* 'mouseshape' */
6206 else if (varp == &p_mouseshape)
6208 errmsg = parse_shape_opt(SHAPE_MOUSE);
6209 update_mouseshape(-1);
6211 #endif
6213 #ifdef FEAT_PRINTER
6214 else if (varp == &p_popt)
6215 errmsg = parse_printoptions();
6216 # if defined(FEAT_MBYTE) && defined(FEAT_POSTSCRIPT)
6217 else if (varp == &p_pmfn)
6218 errmsg = parse_printmbfont();
6219 # endif
6220 #endif
6222 #ifdef FEAT_LANGMAP
6223 /* 'langmap' */
6224 else if (varp == &p_langmap)
6225 langmap_set();
6226 #endif
6228 #ifdef FEAT_LINEBREAK
6229 /* 'breakat' */
6230 else if (varp == &p_breakat)
6231 fill_breakat_flags();
6232 #endif
6234 #ifdef FEAT_TITLE
6235 /* 'titlestring' and 'iconstring' */
6236 else if (varp == &p_titlestring || varp == &p_iconstring)
6238 # ifdef FEAT_STL_OPT
6239 int flagval = (varp == &p_titlestring) ? STL_IN_TITLE : STL_IN_ICON;
6241 /* NULL => statusline syntax */
6242 if (vim_strchr(*varp, '%') && check_stl_option(*varp) == NULL)
6243 stl_syntax |= flagval;
6244 else
6245 stl_syntax &= ~flagval;
6246 # endif
6247 did_set_title(varp == &p_iconstring);
6250 #endif
6252 #ifdef FEAT_GUI
6253 /* 'guioptions' */
6254 else if (varp == &p_go)
6256 gui_init_which_components(oldval);
6257 redraw_gui_only = TRUE;
6259 #endif
6261 #if defined(FEAT_GUI_TABLINE)
6262 /* 'guitablabel' */
6263 else if (varp == &p_gtl)
6265 redraw_tabline = TRUE;
6266 redraw_gui_only = TRUE;
6268 /* 'guitabtooltip' */
6269 else if (varp == &p_gtt)
6271 redraw_gui_only = TRUE;
6273 #endif
6275 #if defined(FEAT_MOUSE_TTY) && (defined(UNIX) || defined(VMS))
6276 /* 'ttymouse' */
6277 else if (varp == &p_ttym)
6279 /* Switch the mouse off before changing the escape sequences used for
6280 * that. */
6281 mch_setmouse(FALSE);
6282 if (opt_strings_flags(p_ttym, p_ttym_values, &ttym_flags, FALSE) != OK)
6283 errmsg = e_invarg;
6284 else
6285 check_mouse_termcode();
6286 if (termcap_active)
6287 setmouse(); /* may switch it on again */
6289 #endif
6291 #ifdef FEAT_VISUAL
6292 /* 'selection' */
6293 else if (varp == &p_sel)
6295 if (*p_sel == NUL
6296 || check_opt_strings(p_sel, p_sel_values, FALSE) != OK)
6297 errmsg = e_invarg;
6300 /* 'selectmode' */
6301 else if (varp == &p_slm)
6303 if (check_opt_strings(p_slm, p_slm_values, TRUE) != OK)
6304 errmsg = e_invarg;
6306 #endif
6308 #ifdef FEAT_BROWSE
6309 /* 'browsedir' */
6310 else if (varp == &p_bsdir)
6312 if (check_opt_strings(p_bsdir, p_bsdir_values, FALSE) != OK
6313 && !mch_isdir(p_bsdir))
6314 errmsg = e_invarg;
6316 #endif
6318 #ifdef FEAT_VISUAL
6319 /* 'keymodel' */
6320 else if (varp == &p_km)
6322 if (check_opt_strings(p_km, p_km_values, TRUE) != OK)
6323 errmsg = e_invarg;
6324 else
6326 km_stopsel = (vim_strchr(p_km, 'o') != NULL);
6327 km_startsel = (vim_strchr(p_km, 'a') != NULL);
6330 #endif
6332 /* 'mousemodel' */
6333 else if (varp == &p_mousem)
6335 if (check_opt_strings(p_mousem, p_mousem_values, FALSE) != OK)
6336 errmsg = e_invarg;
6337 #if defined(FEAT_GUI_MOTIF) && defined(FEAT_MENU) && (XmVersion <= 1002)
6338 else if (*p_mousem != *oldval)
6339 /* Changed from "extend" to "popup" or "popup_setpos" or vv: need
6340 * to create or delete the popup menus. */
6341 gui_motif_update_mousemodel(root_menu);
6342 #endif
6345 /* 'switchbuf' */
6346 else if (varp == &p_swb)
6348 if (opt_strings_flags(p_swb, p_swb_values, &swb_flags, TRUE) != OK)
6349 errmsg = e_invarg;
6352 /* 'debug' */
6353 else if (varp == &p_debug)
6355 if (check_opt_strings(p_debug, p_debug_values, TRUE) != OK)
6356 errmsg = e_invarg;
6359 /* 'display' */
6360 else if (varp == &p_dy)
6362 if (opt_strings_flags(p_dy, p_dy_values, &dy_flags, TRUE) != OK)
6363 errmsg = e_invarg;
6364 else
6365 (void)init_chartab();
6369 #ifdef FEAT_VERTSPLIT
6370 /* 'eadirection' */
6371 else if (varp == &p_ead)
6373 if (check_opt_strings(p_ead, p_ead_values, FALSE) != OK)
6374 errmsg = e_invarg;
6376 #endif
6378 #ifdef FEAT_CLIPBOARD
6379 /* 'clipboard' */
6380 else if (varp == &p_cb)
6381 errmsg = check_clipboard_option();
6382 #endif
6384 #ifdef FEAT_SPELL
6385 /* When 'spelllang' or 'spellfile' is set and there is a window for this
6386 * buffer in which 'spell' is set load the wordlists. */
6387 else if (varp == &(curbuf->b_p_spl) || varp == &(curbuf->b_p_spf))
6389 win_T *wp;
6390 int l;
6392 if (varp == &(curbuf->b_p_spf))
6394 l = (int)STRLEN(curbuf->b_p_spf);
6395 if (l > 0 && (l < 4 || STRCMP(curbuf->b_p_spf + l - 4,
6396 ".add") != 0))
6397 errmsg = e_invarg;
6400 if (errmsg == NULL)
6402 FOR_ALL_WINDOWS(wp)
6403 if (wp->w_buffer == curbuf && wp->w_p_spell)
6405 errmsg = did_set_spelllang(curbuf);
6406 # ifdef FEAT_WINDOWS
6407 break;
6408 # endif
6412 /* When 'spellcapcheck' is set compile the regexp program. */
6413 else if (varp == &(curbuf->b_p_spc))
6415 errmsg = compile_cap_prog(curbuf);
6417 /* 'spellsuggest' */
6418 else if (varp == &p_sps)
6420 if (spell_check_sps() != OK)
6421 errmsg = e_invarg;
6423 /* 'mkspellmem' */
6424 else if (varp == &p_msm)
6426 if (spell_check_msm() != OK)
6427 errmsg = e_invarg;
6429 #endif
6431 #ifdef FEAT_QUICKFIX
6432 /* When 'bufhidden' is set, check for valid value. */
6433 else if (gvarp == &p_bh)
6435 if (check_opt_strings(curbuf->b_p_bh, p_bufhidden_values, FALSE) != OK)
6436 errmsg = e_invarg;
6439 /* When 'buftype' is set, check for valid value. */
6440 else if (gvarp == &p_bt)
6442 if (check_opt_strings(curbuf->b_p_bt, p_buftype_values, FALSE) != OK)
6443 errmsg = e_invarg;
6444 else
6446 # ifdef FEAT_WINDOWS
6447 if (curwin->w_status_height)
6449 curwin->w_redr_status = TRUE;
6450 redraw_later(VALID);
6452 # endif
6453 curbuf->b_help = (curbuf->b_p_bt[0] == 'h');
6454 # ifdef FEAT_TITLE
6455 redraw_titles();
6456 # endif
6459 #endif
6461 #ifdef FEAT_STL_OPT
6462 /* 'statusline' or 'rulerformat' */
6463 else if (gvarp == &p_stl || varp == &p_ruf)
6465 int wid;
6467 if (varp == &p_ruf) /* reset ru_wid first */
6468 ru_wid = 0;
6469 s = *varp;
6470 if (varp == &p_ruf && *s == '%')
6472 /* set ru_wid if 'ruf' starts with "%99(" */
6473 if (*++s == '-') /* ignore a '-' */
6474 s++;
6475 wid = getdigits(&s);
6476 if (wid && *s == '(' && (errmsg = check_stl_option(p_ruf)) == NULL)
6477 ru_wid = wid;
6478 else
6479 errmsg = check_stl_option(p_ruf);
6481 /* check 'statusline' only if it doesn't start with "%!" */
6482 else if (varp == &p_ruf || s[0] != '%' || s[1] != '!')
6483 errmsg = check_stl_option(s);
6484 if (varp == &p_ruf && errmsg == NULL)
6485 comp_col();
6487 #endif
6489 #ifdef FEAT_INS_EXPAND
6490 /* check if it is a valid value for 'complete' -- Acevedo */
6491 else if (gvarp == &p_cpt)
6493 for (s = *varp; *s;)
6495 while(*s == ',' || *s == ' ')
6496 s++;
6497 if (!*s)
6498 break;
6499 if (vim_strchr((char_u *)".wbuksid]tU", *s) == NULL)
6501 errmsg = illegal_char(errbuf, *s);
6502 break;
6504 if (*++s != NUL && *s != ',' && *s != ' ')
6506 if (s[-1] == 'k' || s[-1] == 's')
6508 /* skip optional filename after 'k' and 's' */
6509 while (*s && *s != ',' && *s != ' ')
6511 if (*s == '\\')
6512 ++s;
6513 ++s;
6516 else
6518 if (errbuf != NULL)
6520 sprintf((char *)errbuf,
6521 _("E535: Illegal character after <%c>"),
6522 *--s);
6523 errmsg = errbuf;
6525 else
6526 errmsg = (char_u *)"";
6527 break;
6533 /* 'completeopt' */
6534 else if (varp == &p_cot)
6536 if (check_opt_strings(p_cot, p_cot_values, TRUE) != OK)
6537 errmsg = e_invarg;
6539 #endif /* FEAT_INS_EXPAND */
6542 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
6543 else if (varp == &p_toolbar)
6545 if (opt_strings_flags(p_toolbar, p_toolbar_values,
6546 &toolbar_flags, TRUE) != OK)
6547 errmsg = e_invarg;
6548 else
6550 out_flush();
6551 gui_mch_show_toolbar((toolbar_flags &
6552 (TOOLBAR_TEXT | TOOLBAR_ICONS)) != 0);
6555 #endif
6557 #if defined(FEAT_TOOLBAR) && defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)
6558 /* 'toolbariconsize': GTK+ 2 only */
6559 else if (varp == &p_tbis)
6561 if (opt_strings_flags(p_tbis, p_tbis_values, &tbis_flags, FALSE) != OK)
6562 errmsg = e_invarg;
6563 else
6565 out_flush();
6566 gui_mch_show_toolbar((toolbar_flags &
6567 (TOOLBAR_TEXT | TOOLBAR_ICONS)) != 0);
6570 #endif
6572 /* 'pastetoggle': translate key codes like in a mapping */
6573 else if (varp == &p_pt)
6575 if (*p_pt)
6577 (void)replace_termcodes(p_pt, &p, TRUE, TRUE, FALSE);
6578 if (p != NULL)
6580 if (new_value_alloced)
6581 free_string_option(p_pt);
6582 p_pt = p;
6583 new_value_alloced = TRUE;
6588 /* 'backspace' */
6589 else if (varp == &p_bs)
6591 if (VIM_ISDIGIT(*p_bs))
6593 if (*p_bs >'2' || p_bs[1] != NUL)
6594 errmsg = e_invarg;
6596 else if (check_opt_strings(p_bs, p_bs_values, TRUE) != OK)
6597 errmsg = e_invarg;
6600 #ifdef FEAT_MBYTE
6601 /* 'casemap' */
6602 else if (varp == &p_cmp)
6604 if (opt_strings_flags(p_cmp, p_cmp_values, &cmp_flags, TRUE) != OK)
6605 errmsg = e_invarg;
6607 #endif
6609 #ifdef FEAT_DIFF
6610 /* 'diffopt' */
6611 else if (varp == &p_dip)
6613 if (diffopt_changed() == FAIL)
6614 errmsg = e_invarg;
6616 #endif
6618 #ifdef FEAT_FOLDING
6619 /* 'foldmethod' */
6620 else if (gvarp == &curwin->w_allbuf_opt.wo_fdm)
6622 if (check_opt_strings(*varp, p_fdm_values, FALSE) != OK
6623 || *curwin->w_p_fdm == NUL)
6624 errmsg = e_invarg;
6625 else
6627 foldUpdateAll(curwin);
6628 if (foldmethodIsDiff(curwin))
6629 newFoldLevel();
6632 # ifdef FEAT_EVAL
6633 /* 'foldexpr' */
6634 else if (varp == &curwin->w_p_fde)
6636 if (foldmethodIsExpr(curwin))
6637 foldUpdateAll(curwin);
6639 # endif
6640 /* 'foldmarker' */
6641 else if (gvarp == &curwin->w_allbuf_opt.wo_fmr)
6643 p = vim_strchr(*varp, ',');
6644 if (p == NULL)
6645 errmsg = (char_u *)N_("E536: comma required");
6646 else if (p == *varp || p[1] == NUL)
6647 errmsg = e_invarg;
6648 else if (foldmethodIsMarker(curwin))
6649 foldUpdateAll(curwin);
6651 /* 'commentstring' */
6652 else if (gvarp == &p_cms)
6654 if (**varp != NUL && strstr((char *)*varp, "%s") == NULL)
6655 errmsg = (char_u *)N_("E537: 'commentstring' must be empty or contain %s");
6657 /* 'foldopen' */
6658 else if (varp == &p_fdo)
6660 if (opt_strings_flags(p_fdo, p_fdo_values, &fdo_flags, TRUE) != OK)
6661 errmsg = e_invarg;
6663 /* 'foldclose' */
6664 else if (varp == &p_fcl)
6666 if (check_opt_strings(p_fcl, p_fcl_values, TRUE) != OK)
6667 errmsg = e_invarg;
6669 /* 'foldignore' */
6670 else if (gvarp == &curwin->w_allbuf_opt.wo_fdi)
6672 if (foldmethodIsIndent(curwin))
6673 foldUpdateAll(curwin);
6675 #endif
6677 #ifdef FEAT_VIRTUALEDIT
6678 /* 'virtualedit' */
6679 else if (varp == &p_ve)
6681 if (opt_strings_flags(p_ve, p_ve_values, &ve_flags, TRUE) != OK)
6682 errmsg = e_invarg;
6683 else if (STRCMP(p_ve, oldval) != 0)
6685 /* Recompute cursor position in case the new 've' setting
6686 * changes something. */
6687 validate_virtcol();
6688 coladvance(curwin->w_virtcol);
6691 #endif
6693 #if defined(FEAT_CSCOPE) && defined(FEAT_QUICKFIX)
6694 else if (varp == &p_csqf)
6696 if (p_csqf != NULL)
6698 p = p_csqf;
6699 while (*p != NUL)
6701 if (vim_strchr((char_u *)CSQF_CMDS, *p) == NULL
6702 || p[1] == NUL
6703 || vim_strchr((char_u *)CSQF_FLAGS, p[1]) == NULL
6704 || (p[2] != NUL && p[2] != ','))
6706 errmsg = e_invarg;
6707 break;
6709 else if (p[2] == NUL)
6710 break;
6711 else
6712 p += 3;
6716 #endif
6718 /* Options that are a list of flags. */
6719 else
6721 p = NULL;
6722 if (varp == &p_ww)
6723 p = (char_u *)WW_ALL;
6724 if (varp == &p_shm)
6725 p = (char_u *)SHM_ALL;
6726 else if (varp == &(p_cpo))
6727 p = (char_u *)CPO_ALL;
6728 else if (varp == &(curbuf->b_p_fo))
6729 p = (char_u *)FO_ALL;
6730 else if (varp == &p_mouse)
6732 #ifdef FEAT_MOUSE
6733 p = (char_u *)MOUSE_ALL;
6734 #else
6735 if (*p_mouse != NUL)
6736 errmsg = (char_u *)N_("E538: No mouse support");
6737 #endif
6739 #if defined(FEAT_GUI)
6740 else if (varp == &p_go)
6741 p = (char_u *)GO_ALL;
6742 #endif
6743 if (p != NULL)
6745 for (s = *varp; *s; ++s)
6746 if (vim_strchr(p, *s) == NULL)
6748 errmsg = illegal_char(errbuf, *s);
6749 break;
6755 * If error detected, restore the previous value.
6757 if (errmsg != NULL)
6759 if (new_value_alloced)
6760 free_string_option(*varp);
6761 *varp = oldval;
6763 * When resetting some values, need to act on it.
6765 if (did_chartab)
6766 (void)init_chartab();
6767 if (varp == &p_hl)
6768 (void)highlight_changed();
6770 else
6772 #ifdef FEAT_EVAL
6773 /* Remember where the option was set. */
6774 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
6775 #endif
6777 * Free string options that are in allocated memory.
6778 * Use "free_oldval", because recursiveness may change the flags under
6779 * our fingers (esp. init_highlight()).
6781 if (free_oldval)
6782 free_string_option(oldval);
6783 if (new_value_alloced)
6784 options[opt_idx].flags |= P_ALLOCED;
6785 else
6786 options[opt_idx].flags &= ~P_ALLOCED;
6788 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
6789 && ((int)options[opt_idx].indir & PV_BOTH))
6791 /* global option with local value set to use global value; free
6792 * the local value and make it empty */
6793 p = get_varp_scope(&(options[opt_idx]), OPT_LOCAL);
6794 free_string_option(*(char_u **)p);
6795 *(char_u **)p = empty_option;
6798 /* May set global value for local option. */
6799 else if (!(opt_flags & OPT_LOCAL) && opt_flags != OPT_GLOBAL)
6800 set_string_option_global(opt_idx, varp);
6802 #ifdef FEAT_AUTOCMD
6804 * Trigger the autocommand only after setting the flags.
6806 # ifdef FEAT_SYN_HL
6807 /* When 'syntax' is set, load the syntax of that name */
6808 if (varp == &(curbuf->b_p_syn))
6810 apply_autocmds(EVENT_SYNTAX, curbuf->b_p_syn,
6811 curbuf->b_fname, TRUE, curbuf);
6813 # endif
6814 else if (varp == &(curbuf->b_p_ft))
6816 /* 'filetype' is set, trigger the FileType autocommand */
6817 did_filetype = TRUE;
6818 apply_autocmds(EVENT_FILETYPE, curbuf->b_p_ft,
6819 curbuf->b_fname, TRUE, curbuf);
6821 #endif
6822 #ifdef FEAT_SPELL
6823 if (varp == &(curbuf->b_p_spl))
6825 char_u fname[200];
6828 * Source the spell/LANG.vim in 'runtimepath'.
6829 * They could set 'spellcapcheck' depending on the language.
6830 * Use the first name in 'spelllang' up to '_region' or
6831 * '.encoding'.
6833 for (p = curbuf->b_p_spl; *p != NUL; ++p)
6834 if (vim_strchr((char_u *)"_.,", *p) != NULL)
6835 break;
6836 vim_snprintf((char *)fname, 200, "spell/%.*s.vim",
6837 (int)(p - curbuf->b_p_spl), curbuf->b_p_spl);
6838 source_runtime(fname, TRUE);
6840 #endif
6843 #ifdef FEAT_MOUSE
6844 if (varp == &p_mouse)
6846 # ifdef FEAT_MOUSE_TTY
6847 if (*p_mouse == NUL)
6848 mch_setmouse(FALSE); /* switch mouse off */
6849 else
6850 # endif
6851 setmouse(); /* in case 'mouse' changed */
6853 #endif
6855 if (curwin->w_curswant != MAXCOL)
6856 curwin->w_set_curswant = TRUE; /* in case 'showbreak' changed */
6857 #ifdef FEAT_GUI
6858 /* check redraw when it's not a GUI option or the GUI is active. */
6859 if (!redraw_gui_only || gui.in_use)
6860 #endif
6861 check_redraw(options[opt_idx].flags);
6863 return errmsg;
6867 * Handle setting 'listchars' or 'fillchars'.
6868 * Returns error message, NULL if it's OK.
6870 static char_u *
6871 set_chars_option(varp)
6872 char_u **varp;
6874 int round, i, len, entries;
6875 char_u *p, *s;
6876 int c1, c2 = 0;
6877 struct charstab
6879 int *cp;
6880 char *name;
6882 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6883 static struct charstab filltab[] =
6885 {&fill_stl, "stl"},
6886 {&fill_stlnc, "stlnc"},
6887 {&fill_vert, "vert"},
6888 {&fill_fold, "fold"},
6889 {&fill_diff, "diff"},
6891 #endif
6892 static struct charstab lcstab[] =
6894 {&lcs_eol, "eol"},
6895 {&lcs_ext, "extends"},
6896 {&lcs_nbsp, "nbsp"},
6897 {&lcs_prec, "precedes"},
6898 {&lcs_tab2, "tab"},
6899 {&lcs_trail, "trail"},
6901 struct charstab *tab;
6903 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6904 if (varp == &p_lcs)
6905 #endif
6907 tab = lcstab;
6908 entries = sizeof(lcstab) / sizeof(struct charstab);
6910 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6911 else
6913 tab = filltab;
6914 entries = sizeof(filltab) / sizeof(struct charstab);
6916 #endif
6918 /* first round: check for valid value, second round: assign values */
6919 for (round = 0; round <= 1; ++round)
6921 if (round)
6923 /* After checking that the value is valid: set defaults: space for
6924 * 'fillchars', NUL for 'listchars' */
6925 for (i = 0; i < entries; ++i)
6926 *(tab[i].cp) = (varp == &p_lcs ? NUL : ' ');
6927 if (varp == &p_lcs)
6928 lcs_tab1 = NUL;
6929 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6930 else
6931 fill_diff = '-';
6932 #endif
6934 p = *varp;
6935 while (*p)
6937 for (i = 0; i < entries; ++i)
6939 len = (int)STRLEN(tab[i].name);
6940 if (STRNCMP(p, tab[i].name, len) == 0
6941 && p[len] == ':'
6942 && p[len + 1] != NUL)
6944 s = p + len + 1;
6945 #ifdef FEAT_MBYTE
6946 c1 = mb_ptr2char_adv(&s);
6947 if (mb_char2cells(c1) > 1)
6948 continue;
6949 #else
6950 c1 = *s++;
6951 #endif
6952 if (tab[i].cp == &lcs_tab2)
6954 if (*s == NUL)
6955 continue;
6956 #ifdef FEAT_MBYTE
6957 c2 = mb_ptr2char_adv(&s);
6958 if (mb_char2cells(c2) > 1)
6959 continue;
6960 #else
6961 c2 = *s++;
6962 #endif
6964 if (*s == ',' || *s == NUL)
6966 if (round)
6968 if (tab[i].cp == &lcs_tab2)
6970 lcs_tab1 = c1;
6971 lcs_tab2 = c2;
6973 else
6974 *(tab[i].cp) = c1;
6977 p = s;
6978 break;
6983 if (i == entries)
6984 return e_invarg;
6985 if (*p == ',')
6986 ++p;
6990 return NULL; /* no error */
6993 #ifdef FEAT_STL_OPT
6995 * Check validity of options with the 'statusline' format.
6996 * Return error message or NULL.
6998 char_u *
6999 check_stl_option(s)
7000 char_u *s;
7002 int itemcnt = 0;
7003 int groupdepth = 0;
7004 static char_u errbuf[80];
7006 while (*s && itemcnt < STL_MAX_ITEM)
7008 /* Check for valid keys after % sequences */
7009 while (*s && *s != '%')
7010 s++;
7011 if (!*s)
7012 break;
7013 s++;
7014 if (*s != '%' && *s != ')')
7015 ++itemcnt;
7016 if (*s == '%' || *s == STL_TRUNCMARK || *s == STL_MIDDLEMARK)
7018 s++;
7019 continue;
7021 if (*s == ')')
7023 s++;
7024 if (--groupdepth < 0)
7025 break;
7026 continue;
7028 if (*s == '-')
7029 s++;
7030 while (VIM_ISDIGIT(*s))
7031 s++;
7032 if (*s == STL_USER_HL)
7033 continue;
7034 if (*s == '.')
7036 s++;
7037 while (*s && VIM_ISDIGIT(*s))
7038 s++;
7040 if (*s == '(')
7042 groupdepth++;
7043 continue;
7045 if (vim_strchr(STL_ALL, *s) == NULL)
7047 return illegal_char(errbuf, *s);
7049 if (*s == '{')
7051 s++;
7052 while (*s != '}' && *s)
7053 s++;
7054 if (*s != '}')
7055 return (char_u *)N_("E540: Unclosed expression sequence");
7058 if (itemcnt >= STL_MAX_ITEM)
7059 return (char_u *)N_("E541: too many items");
7060 if (groupdepth != 0)
7061 return (char_u *)N_("E542: unbalanced groups");
7062 return NULL;
7064 #endif
7066 #ifdef FEAT_CLIPBOARD
7068 * Extract the items in the 'clipboard' option and set global values.
7070 static char_u *
7071 check_clipboard_option()
7073 int new_unnamed = FALSE;
7074 int new_autoselect = FALSE;
7075 int new_autoselectml = FALSE;
7076 int new_html = FALSE;
7077 regprog_T *new_exclude_prog = NULL;
7078 char_u *errmsg = NULL;
7079 char_u *p;
7081 for (p = p_cb; *p != NUL; )
7083 if (STRNCMP(p, "unnamed", 7) == 0 && (p[7] == ',' || p[7] == NUL))
7085 new_unnamed = TRUE;
7086 p += 7;
7088 else if (STRNCMP(p, "autoselect", 10) == 0
7089 && (p[10] == ',' || p[10] == NUL))
7091 new_autoselect = TRUE;
7092 p += 10;
7094 else if (STRNCMP(p, "autoselectml", 12) == 0
7095 && (p[12] == ',' || p[12] == NUL))
7097 new_autoselectml = TRUE;
7098 p += 12;
7100 else if (STRNCMP(p, "html", 4) == 0 && (p[4] == ',' || p[4] == NUL))
7102 new_html = TRUE;
7103 p += 4;
7105 else if (STRNCMP(p, "exclude:", 8) == 0 && new_exclude_prog == NULL)
7107 p += 8;
7108 new_exclude_prog = vim_regcomp(p, RE_MAGIC);
7109 if (new_exclude_prog == NULL)
7110 errmsg = e_invarg;
7111 break;
7113 else
7115 errmsg = e_invarg;
7116 break;
7118 if (*p == ',')
7119 ++p;
7121 if (errmsg == NULL)
7123 clip_unnamed = new_unnamed;
7124 clip_autoselect = new_autoselect;
7125 clip_autoselectml = new_autoselectml;
7126 clip_html = new_html;
7127 vim_free(clip_exclude_prog);
7128 clip_exclude_prog = new_exclude_prog;
7129 #ifdef FEAT_GUI_GTK
7130 if (gui.in_use)
7132 gui_gtk_set_selection_targets();
7133 gui_gtk_set_dnd_targets();
7135 #endif
7137 else
7138 vim_free(new_exclude_prog);
7140 return errmsg;
7142 #endif
7144 #ifdef FEAT_SPELL
7146 * Set curbuf->b_cap_prog to the regexp program for 'spellcapcheck'.
7147 * Return error message when failed, NULL when OK.
7149 static char_u *
7150 compile_cap_prog(buf)
7151 buf_T *buf;
7153 regprog_T *rp = buf->b_cap_prog;
7154 char_u *re;
7156 if (*buf->b_p_spc == NUL)
7157 buf->b_cap_prog = NULL;
7158 else
7160 /* Prepend a ^ so that we only match at one column */
7161 re = concat_str((char_u *)"^", buf->b_p_spc);
7162 if (re != NULL)
7164 buf->b_cap_prog = vim_regcomp(re, RE_MAGIC);
7165 if (buf->b_cap_prog == NULL)
7167 buf->b_cap_prog = rp; /* restore the previous program */
7168 return e_invarg;
7170 vim_free(re);
7174 vim_free(rp);
7175 return NULL;
7177 #endif
7179 #if defined(FEAT_EVAL) || defined(PROTO)
7181 * Set the scriptID for an option, taking care of setting the buffer- or
7182 * window-local value.
7184 static void
7185 set_option_scriptID_idx(opt_idx, opt_flags, id)
7186 int opt_idx;
7187 int opt_flags;
7188 int id;
7190 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
7191 int indir = (int)options[opt_idx].indir;
7193 /* Remember where the option was set. For local options need to do that
7194 * in the buffer or window structure. */
7195 if (both || (opt_flags & OPT_GLOBAL) || (indir & (PV_BUF|PV_WIN)) == 0)
7196 options[opt_idx].scriptID = id;
7197 if (both || (opt_flags & OPT_LOCAL))
7199 if (indir & PV_BUF)
7200 curbuf->b_p_scriptID[indir & PV_MASK] = id;
7201 else if (indir & PV_WIN)
7202 curwin->w_p_scriptID[indir & PV_MASK] = id;
7205 #endif
7208 * Set the value of a boolean option, and take care of side effects.
7209 * Returns NULL for success, or an error message for an error.
7211 static char_u *
7212 set_bool_option(opt_idx, varp, value, opt_flags)
7213 int opt_idx; /* index in options[] table */
7214 char_u *varp; /* pointer to the option variable */
7215 int value; /* new value */
7216 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
7218 int old_value = *(int *)varp;
7220 /* Disallow changing some options from secure mode */
7221 if ((secure
7222 #ifdef HAVE_SANDBOX
7223 || sandbox != 0
7224 #endif
7225 ) && (options[opt_idx].flags & P_SECURE))
7226 return e_secure;
7228 *(int *)varp = value; /* set the new value */
7229 #ifdef FEAT_EVAL
7230 /* Remember where the option was set. */
7231 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
7232 #endif
7234 #ifdef FEAT_GUI
7235 need_mouse_correct = TRUE;
7236 #endif
7238 /* May set global value for local option. */
7239 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0)
7240 *(int *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) = value;
7243 * Handle side effects of changing a bool option.
7246 /* 'compatible' */
7247 if ((int *)varp == &p_cp)
7249 compatible_set();
7252 /* 'list', 'number' */
7253 else if ((int *)varp == &curwin->w_p_list
7254 || (int *)varp == &curwin->w_p_nu)
7256 if (curwin->w_curswant != MAXCOL)
7257 curwin->w_set_curswant = TRUE;
7260 else if ((int *)varp == &curbuf->b_p_ro)
7262 /* when 'readonly' is reset globally, also reset readonlymode */
7263 if (!curbuf->b_p_ro && (opt_flags & OPT_LOCAL) == 0)
7264 readonlymode = FALSE;
7266 /* when 'readonly' is set may give W10 again */
7267 if (curbuf->b_p_ro)
7268 curbuf->b_did_warn = FALSE;
7270 #ifdef FEAT_TITLE
7271 redraw_titles();
7272 #endif
7275 #ifdef FEAT_TITLE
7276 /* when 'modifiable' is changed, redraw the window title */
7277 else if ((int *)varp == &curbuf->b_p_ma)
7279 redraw_titles();
7281 /* when 'endofline' is changed, redraw the window title */
7282 else if ((int *)varp == &curbuf->b_p_eol)
7284 redraw_titles();
7286 # ifdef FEAT_MBYTE
7287 /* when 'bomb' is changed, redraw the window title and tab page text */
7288 else if ((int *)varp == &curbuf->b_p_bomb)
7290 redraw_titles();
7292 # endif
7293 #endif
7295 /* when 'bin' is set also set some other options */
7296 else if ((int *)varp == &curbuf->b_p_bin)
7298 set_options_bin(old_value, curbuf->b_p_bin, opt_flags);
7299 #ifdef FEAT_TITLE
7300 redraw_titles();
7301 #endif
7304 #ifdef FEAT_AUTOCMD
7305 /* when 'buflisted' changes, trigger autocommands */
7306 else if ((int *)varp == &curbuf->b_p_bl && old_value != curbuf->b_p_bl)
7308 apply_autocmds(curbuf->b_p_bl ? EVENT_BUFADD : EVENT_BUFDELETE,
7309 NULL, NULL, TRUE, curbuf);
7311 #endif
7313 /* when 'swf' is set, create swapfile, when reset remove swapfile */
7314 else if ((int *)varp == &curbuf->b_p_swf)
7316 if (curbuf->b_p_swf && p_uc)
7317 ml_open_file(curbuf); /* create the swap file */
7318 else
7319 /* no need to reset curbuf->b_may_swap, ml_open_file() will check
7320 * buf->b_p_swf */
7321 mf_close_file(curbuf, TRUE); /* remove the swap file */
7324 /* when 'terse' is set change 'shortmess' */
7325 else if ((int *)varp == &p_terse)
7327 char_u *p;
7329 p = vim_strchr(p_shm, SHM_SEARCH);
7331 /* insert 's' in p_shm */
7332 if (p_terse && p == NULL)
7334 STRCPY(IObuff, p_shm);
7335 STRCAT(IObuff, "s");
7336 set_string_option_direct((char_u *)"shm", -1, IObuff, OPT_FREE, 0);
7338 /* remove 's' from p_shm */
7339 else if (!p_terse && p != NULL)
7340 STRMOVE(p, p + 1);
7343 /* when 'paste' is set or reset also change other options */
7344 else if ((int *)varp == &p_paste)
7346 paste_option_changed();
7349 /* when 'insertmode' is set from an autocommand need to do work here */
7350 else if ((int *)varp == &p_im)
7352 if (p_im)
7354 if ((State & INSERT) == 0)
7355 need_start_insertmode = TRUE;
7356 stop_insert_mode = FALSE;
7358 else
7360 need_start_insertmode = FALSE;
7361 stop_insert_mode = TRUE;
7362 if (restart_edit != 0 && mode_displayed)
7363 clear_cmdline = TRUE; /* remove "(insert)" */
7364 restart_edit = 0;
7368 /* when 'ignorecase' is set or reset and 'hlsearch' is set, redraw */
7369 else if ((int *)varp == &p_ic && p_hls)
7371 redraw_all_later(SOME_VALID);
7374 #ifdef FEAT_SEARCH_EXTRA
7375 /* when 'hlsearch' is set or reset: reset no_hlsearch */
7376 else if ((int *)varp == &p_hls)
7378 no_hlsearch = FALSE;
7380 #endif
7382 #ifdef FEAT_SCROLLBIND
7383 /* when 'scrollbind' is set: snapshot the current position to avoid a jump
7384 * at the end of normal_cmd() */
7385 else if ((int *)varp == &curwin->w_p_scb)
7387 if (curwin->w_p_scb)
7388 do_check_scrollbind(FALSE);
7390 #endif
7392 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
7393 /* There can be only one window with 'previewwindow' set. */
7394 else if ((int *)varp == &curwin->w_p_pvw)
7396 if (curwin->w_p_pvw)
7398 win_T *win;
7400 for (win = firstwin; win != NULL; win = win->w_next)
7401 if (win->w_p_pvw && win != curwin)
7403 curwin->w_p_pvw = FALSE;
7404 return (char_u *)N_("E590: A preview window already exists");
7408 #endif
7410 /* when 'textmode' is set or reset also change 'fileformat' */
7411 else if ((int *)varp == &curbuf->b_p_tx)
7413 set_fileformat(curbuf->b_p_tx ? EOL_DOS : EOL_UNIX, opt_flags);
7416 /* when 'textauto' is set or reset also change 'fileformats' */
7417 else if ((int *)varp == &p_ta)
7418 set_string_option_direct((char_u *)"ffs", -1,
7419 p_ta ? (char_u *)DFLT_FFS_VIM : (char_u *)"",
7420 OPT_FREE | opt_flags, 0);
7423 * When 'lisp' option changes include/exclude '-' in
7424 * keyword characters.
7426 #ifdef FEAT_LISP
7427 else if (varp == (char_u *)&(curbuf->b_p_lisp))
7429 (void)buf_init_chartab(curbuf, FALSE); /* ignore errors */
7431 #endif
7433 #ifdef FEAT_TITLE
7434 /* when 'title' changed, may need to change the title; same for 'icon' */
7435 else if ((int *)varp == &p_title)
7437 did_set_title(FALSE);
7440 else if ((int *)varp == &p_icon)
7442 did_set_title(TRUE);
7444 #endif
7446 else if ((int *)varp == &curbuf->b_changed)
7448 if (!value)
7449 save_file_ff(curbuf); /* Buffer is unchanged */
7450 #ifdef FEAT_TITLE
7451 redraw_titles();
7452 #endif
7453 #ifdef FEAT_AUTOCMD
7454 modified_was_set = value;
7455 #endif
7458 #ifdef BACKSLASH_IN_FILENAME
7459 else if ((int *)varp == &p_ssl)
7461 if (p_ssl)
7463 psepc = '/';
7464 psepcN = '\\';
7465 pseps[0] = '/';
7467 else
7469 psepc = '\\';
7470 psepcN = '/';
7471 pseps[0] = '\\';
7474 /* need to adjust the file name arguments and buffer names. */
7475 buflist_slash_adjust();
7476 alist_slash_adjust();
7477 # ifdef FEAT_EVAL
7478 scriptnames_slash_adjust();
7479 # endif
7481 #endif
7483 /* If 'wrap' is set, set w_leftcol to zero. */
7484 else if ((int *)varp == &curwin->w_p_wrap)
7486 if (curwin->w_p_wrap)
7487 curwin->w_leftcol = 0;
7488 if (curwin->w_curswant != MAXCOL)
7489 curwin->w_set_curswant = TRUE;
7492 #ifdef FEAT_WINDOWS
7493 else if ((int *)varp == &p_ea)
7495 if (p_ea && !old_value)
7496 win_equal(curwin, FALSE, 0);
7498 #endif
7500 else if ((int *)varp == &p_wiv)
7503 * When 'weirdinvert' changed, set/reset 't_xs'.
7504 * Then set 'weirdinvert' according to value of 't_xs'.
7506 if (p_wiv && !old_value)
7507 T_XS = (char_u *)"y";
7508 else if (!p_wiv && old_value)
7509 T_XS = empty_option;
7510 p_wiv = (*T_XS != NUL);
7513 #ifdef FEAT_BEVAL
7514 else if ((int *)varp == &p_beval)
7516 if (p_beval == TRUE)
7517 gui_mch_enable_beval_area(balloonEval);
7518 else
7519 gui_mch_disable_beval_area(balloonEval);
7521 #endif
7523 #ifdef FEAT_AUTOCHDIR
7524 else if ((int *)varp == &p_acd)
7526 /* Change directories when the 'acd' option is set now. */
7527 DO_AUTOCHDIR
7529 #endif
7531 #ifdef FEAT_DIFF
7532 /* 'diff' */
7533 else if ((int *)varp == &curwin->w_p_diff)
7535 /* May add or remove the buffer from the list of diff buffers. */
7536 diff_buf_adjust(curwin);
7537 # ifdef FEAT_FOLDING
7538 if (foldmethodIsDiff(curwin))
7539 foldUpdateAll(curwin);
7540 # endif
7542 #endif
7544 #ifdef USE_IM_CONTROL
7545 /* 'imdisable' */
7546 else if ((int *)varp == &p_imdisable)
7548 /* Only de-activate it here, it will be enabled when changing mode. */
7549 if (p_imdisable)
7550 im_set_active(FALSE);
7552 #endif
7554 #ifdef FEAT_SPELL
7555 /* 'spell' */
7556 else if ((int *)varp == &curwin->w_p_spell)
7558 if (curwin->w_p_spell)
7560 char_u *errmsg = did_set_spelllang(curbuf);
7562 if (errmsg != NULL)
7563 EMSG(_(errmsg));
7566 #endif
7568 #ifdef FEAT_FKMAP
7569 else if ((int *)varp == &p_altkeymap)
7571 if (old_value != p_altkeymap)
7573 if (!p_altkeymap)
7575 p_hkmap = p_fkmap;
7576 p_fkmap = 0;
7578 else
7580 p_fkmap = p_hkmap;
7581 p_hkmap = 0;
7583 (void)init_chartab();
7588 * In case some second language keymapping options have changed, check
7589 * and correct the setting in a consistent way.
7593 * If hkmap or fkmap are set, reset Arabic keymapping.
7595 if ((p_hkmap || p_fkmap) && p_altkeymap)
7597 p_altkeymap = p_fkmap;
7598 # ifdef FEAT_ARABIC
7599 curwin->w_p_arab = FALSE;
7600 # endif
7601 (void)init_chartab();
7605 * If hkmap set, reset Farsi keymapping.
7607 if (p_hkmap && p_altkeymap)
7609 p_altkeymap = 0;
7610 p_fkmap = 0;
7611 # ifdef FEAT_ARABIC
7612 curwin->w_p_arab = FALSE;
7613 # endif
7614 (void)init_chartab();
7618 * If fkmap set, reset Hebrew keymapping.
7620 if (p_fkmap && !p_altkeymap)
7622 p_altkeymap = 1;
7623 p_hkmap = 0;
7624 # ifdef FEAT_ARABIC
7625 curwin->w_p_arab = FALSE;
7626 # endif
7627 (void)init_chartab();
7629 #endif
7631 #ifdef FEAT_ARABIC
7632 if ((int *)varp == &curwin->w_p_arab)
7634 if (curwin->w_p_arab)
7637 * 'arabic' is set, handle various sub-settings.
7639 if (!p_tbidi)
7641 /* set rightleft mode */
7642 if (!curwin->w_p_rl)
7644 curwin->w_p_rl = TRUE;
7645 changed_window_setting();
7648 /* Enable Arabic shaping (major part of what Arabic requires) */
7649 if (!p_arshape)
7651 p_arshape = TRUE;
7652 redraw_later_clear();
7656 /* Arabic requires a utf-8 encoding, inform the user if its not
7657 * set. */
7658 if (STRCMP(p_enc, "utf-8") != 0)
7660 static char *w_arabic = N_("W17: Arabic requires UTF-8, do ':set encoding=utf-8'");
7662 msg_source(hl_attr(HLF_W));
7663 MSG_ATTR(_(w_arabic), hl_attr(HLF_W));
7664 #ifdef FEAT_EVAL
7665 set_vim_var_string(VV_WARNINGMSG, (char_u *)_(w_arabic), -1);
7666 #endif
7669 # ifdef FEAT_MBYTE
7670 /* set 'delcombine' */
7671 p_deco = TRUE;
7672 # endif
7674 # ifdef FEAT_KEYMAP
7675 /* Force-set the necessary keymap for arabic */
7676 set_option_value((char_u *)"keymap", 0L, (char_u *)"arabic",
7677 OPT_LOCAL);
7678 # endif
7679 # ifdef FEAT_FKMAP
7680 p_altkeymap = 0;
7681 p_hkmap = 0;
7682 p_fkmap = 0;
7683 (void)init_chartab();
7684 # endif
7686 else
7689 * 'arabic' is reset, handle various sub-settings.
7691 if (!p_tbidi)
7693 /* reset rightleft mode */
7694 if (curwin->w_p_rl)
7696 curwin->w_p_rl = FALSE;
7697 changed_window_setting();
7700 /* 'arabicshape' isn't reset, it is a global option and
7701 * another window may still need it "on". */
7704 /* 'delcombine' isn't reset, it is a global option and another
7705 * window may still want it "on". */
7707 # ifdef FEAT_KEYMAP
7708 /* Revert to the default keymap */
7709 curbuf->b_p_iminsert = B_IMODE_NONE;
7710 curbuf->b_p_imsearch = B_IMODE_USE_INSERT;
7711 # endif
7713 if (curwin->w_curswant != MAXCOL)
7714 curwin->w_set_curswant = TRUE;
7717 else if ((int *)varp == &p_arshape)
7719 if (curwin->w_curswant != MAXCOL)
7720 curwin->w_set_curswant = TRUE;
7722 #endif
7724 #ifdef FEAT_LINEBREAK
7725 if ((int *)varp == &curwin->w_p_lbr)
7727 if (curwin->w_curswant != MAXCOL)
7728 curwin->w_set_curswant = TRUE;
7730 #endif
7732 #ifdef FEAT_RIGHTLEFT
7733 if ((int *)varp == &curwin->w_p_rl)
7735 if (curwin->w_curswant != MAXCOL)
7736 curwin->w_set_curswant = TRUE;
7738 #endif
7741 * End of handling side effects for bool options.
7744 options[opt_idx].flags |= P_WAS_SET;
7746 comp_col(); /* in case 'ruler' or 'showcmd' changed */
7748 check_redraw(options[opt_idx].flags);
7750 return NULL;
7754 * Set the value of a number option, and take care of side effects.
7755 * Returns NULL for success, or an error message for an error.
7757 static char_u *
7758 set_num_option(opt_idx, varp, value, errbuf, errbuflen, opt_flags)
7759 int opt_idx; /* index in options[] table */
7760 char_u *varp; /* pointer to the option variable */
7761 long value; /* new value */
7762 char_u *errbuf; /* buffer for error messages */
7763 size_t errbuflen; /* length of "errbuf" */
7764 int opt_flags; /* OPT_LOCAL, OPT_GLOBAL and
7765 OPT_MODELINE */
7767 char_u *errmsg = NULL;
7768 long old_value = *(long *)varp;
7769 long old_Rows = Rows; /* remember old Rows */
7770 long old_Columns = Columns; /* remember old Columns */
7771 long *pp = (long *)varp;
7773 /* Disallow changing some options from secure mode. */
7774 if ((secure
7775 #ifdef HAVE_SANDBOX
7776 || sandbox != 0
7777 #endif
7778 ) && (options[opt_idx].flags & P_SECURE))
7779 return e_secure;
7781 *pp = value;
7782 #ifdef FEAT_EVAL
7783 /* Remember where the option was set. */
7784 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
7785 #endif
7786 #ifdef FEAT_GUI
7787 need_mouse_correct = TRUE;
7788 #endif
7790 if (curbuf->b_p_sw <= 0)
7792 errmsg = e_positive;
7793 curbuf->b_p_sw = curbuf->b_p_ts;
7797 * Number options that need some action when changed
7799 #ifdef FEAT_WINDOWS
7800 if (pp == &p_wh || pp == &p_hh)
7802 if (p_wh < 1)
7804 errmsg = e_positive;
7805 p_wh = 1;
7807 if (p_wmh > p_wh)
7809 errmsg = e_winheight;
7810 p_wh = p_wmh;
7812 if (p_hh < 0)
7814 errmsg = e_positive;
7815 p_hh = 0;
7818 /* Change window height NOW */
7819 if (lastwin != firstwin)
7821 if (pp == &p_wh && curwin->w_height < p_wh)
7822 win_setheight((int)p_wh);
7823 if (pp == &p_hh && curbuf->b_help && curwin->w_height < p_hh)
7824 win_setheight((int)p_hh);
7828 /* 'winminheight' */
7829 else if (pp == &p_wmh)
7831 if (p_wmh < 0)
7833 errmsg = e_positive;
7834 p_wmh = 0;
7836 if (p_wmh > p_wh)
7838 errmsg = e_winheight;
7839 p_wmh = p_wh;
7841 win_setminheight();
7844 # ifdef FEAT_VERTSPLIT
7845 else if (pp == &p_wiw)
7847 if (p_wiw < 1)
7849 errmsg = e_positive;
7850 p_wiw = 1;
7852 if (p_wmw > p_wiw)
7854 errmsg = e_winwidth;
7855 p_wiw = p_wmw;
7858 /* Change window width NOW */
7859 if (lastwin != firstwin && curwin->w_width < p_wiw)
7860 win_setwidth((int)p_wiw);
7863 /* 'winminwidth' */
7864 else if (pp == &p_wmw)
7866 if (p_wmw < 0)
7868 errmsg = e_positive;
7869 p_wmw = 0;
7871 if (p_wmw > p_wiw)
7873 errmsg = e_winwidth;
7874 p_wmw = p_wiw;
7876 win_setminheight();
7878 # endif
7880 #endif
7882 #ifdef FEAT_WINDOWS
7883 /* (re)set last window status line */
7884 else if (pp == &p_ls)
7886 last_status(FALSE);
7889 /* (re)set tab page line */
7890 else if (pp == &p_stal)
7892 shell_new_rows(); /* recompute window positions and heights */
7894 #endif
7896 #ifdef FEAT_GUI
7897 else if (pp == &p_linespace)
7899 /* Recompute gui.char_height and resize the Vim window to keep the
7900 * same number of lines. */
7901 if (gui.in_use && gui_mch_adjust_charheight() == OK)
7902 gui_set_shellsize(FALSE, FALSE, RESIZE_VERT);
7904 #endif
7906 #ifdef FEAT_FOLDING
7907 /* 'foldlevel' */
7908 else if (pp == &curwin->w_p_fdl)
7910 if (curwin->w_p_fdl < 0)
7911 curwin->w_p_fdl = 0;
7912 newFoldLevel();
7915 /* 'foldminlines' */
7916 else if (pp == &curwin->w_p_fml)
7918 foldUpdateAll(curwin);
7921 /* 'foldnestmax' */
7922 else if (pp == &curwin->w_p_fdn)
7924 if (foldmethodIsSyntax(curwin) || foldmethodIsIndent(curwin))
7925 foldUpdateAll(curwin);
7928 /* 'foldcolumn' */
7929 else if (pp == &curwin->w_p_fdc)
7931 if (curwin->w_p_fdc < 0)
7933 errmsg = e_positive;
7934 curwin->w_p_fdc = 0;
7936 else if (curwin->w_p_fdc > 12)
7938 errmsg = e_invarg;
7939 curwin->w_p_fdc = 12;
7943 /* 'shiftwidth' or 'tabstop' */
7944 else if (pp == &curbuf->b_p_sw || pp == &curbuf->b_p_ts)
7946 if (foldmethodIsIndent(curwin))
7947 foldUpdateAll(curwin);
7949 #endif /* FEAT_FOLDING */
7951 #ifdef FEAT_MBYTE
7952 /* 'maxcombine' */
7953 else if (pp == &p_mco)
7955 if (p_mco > MAX_MCO)
7956 p_mco = MAX_MCO;
7957 else if (p_mco < 0)
7958 p_mco = 0;
7959 screenclear(); /* will re-allocate the screen */
7961 #endif
7963 else if (pp == &curbuf->b_p_iminsert)
7965 if (curbuf->b_p_iminsert < 0 || curbuf->b_p_iminsert > B_IMODE_LAST)
7967 errmsg = e_invarg;
7968 curbuf->b_p_iminsert = B_IMODE_NONE;
7970 p_iminsert = curbuf->b_p_iminsert;
7971 if (termcap_active) /* don't do this in the alternate screen */
7972 showmode();
7973 #if defined(FEAT_WINDOWS) && defined(FEAT_KEYMAP)
7974 /* Show/unshow value of 'keymap' in status lines. */
7975 status_redraw_curbuf();
7976 #endif
7979 else if (pp == &p_window)
7981 if (p_window < 1)
7982 p_window = 1;
7983 else if (p_window >= Rows)
7984 p_window = Rows - 1;
7987 else if (pp == &curbuf->b_p_imsearch)
7989 if (curbuf->b_p_imsearch < -1 || curbuf->b_p_imsearch > B_IMODE_LAST)
7991 errmsg = e_invarg;
7992 curbuf->b_p_imsearch = B_IMODE_NONE;
7994 p_imsearch = curbuf->b_p_imsearch;
7997 #ifdef FEAT_TITLE
7998 /* if 'titlelen' has changed, redraw the title */
7999 else if (pp == &p_titlelen)
8001 if (p_titlelen < 0)
8003 errmsg = e_positive;
8004 p_titlelen = 85;
8006 if (starting != NO_SCREEN && old_value != p_titlelen)
8007 need_maketitle = TRUE;
8009 #endif
8011 /* if p_ch changed value, change the command line height */
8012 else if (pp == &p_ch)
8014 if (p_ch < 1)
8016 errmsg = e_positive;
8017 p_ch = 1;
8019 if (p_ch > Rows - min_rows() + 1)
8020 p_ch = Rows - min_rows() + 1;
8022 /* Only compute the new window layout when startup has been
8023 * completed. Otherwise the frame sizes may be wrong. */
8024 if (p_ch != old_value && full_screen
8025 #ifdef FEAT_GUI
8026 && !gui.starting
8027 #endif
8029 command_height();
8032 /* when 'updatecount' changes from zero to non-zero, open swap files */
8033 else if (pp == &p_uc)
8035 if (p_uc < 0)
8037 errmsg = e_positive;
8038 p_uc = 100;
8040 if (p_uc && !old_value)
8041 ml_open_files();
8043 #ifdef MZSCHEME_GUI_THREADS
8044 else if (pp == &p_mzq)
8045 mzvim_reset_timer();
8046 #endif
8048 /* sync undo before 'undolevels' changes */
8049 else if (pp == &p_ul)
8051 /* use the old value, otherwise u_sync() may not work properly */
8052 p_ul = old_value;
8053 u_sync(TRUE);
8054 p_ul = value;
8057 #ifdef FEAT_LINEBREAK
8058 /* 'numberwidth' must be positive */
8059 else if (pp == &curwin->w_p_nuw)
8061 if (curwin->w_p_nuw < 1)
8063 errmsg = e_positive;
8064 curwin->w_p_nuw = 1;
8066 if (curwin->w_p_nuw > 10)
8068 errmsg = e_invarg;
8069 curwin->w_p_nuw = 10;
8071 curwin->w_nrwidth_line_count = 0;
8073 #endif
8076 * Check the bounds for numeric options here
8078 if (Rows < min_rows() && full_screen)
8080 if (errbuf != NULL)
8082 vim_snprintf((char *)errbuf, errbuflen,
8083 _("E593: Need at least %d lines"), min_rows());
8084 errmsg = errbuf;
8086 Rows = min_rows();
8088 if (Columns < MIN_COLUMNS && full_screen)
8090 if (errbuf != NULL)
8092 vim_snprintf((char *)errbuf, errbuflen,
8093 _("E594: Need at least %d columns"), MIN_COLUMNS);
8094 errmsg = errbuf;
8096 Columns = MIN_COLUMNS;
8098 /* Limit the values to avoid an overflow in Rows * Columns. */
8099 if (Columns > 10000)
8100 Columns = 10000;
8101 if (Rows > 1000)
8102 Rows = 1000;
8104 #ifdef DJGPP
8105 /* avoid a crash by checking for a too large value of 'columns' */
8106 if (old_Columns != Columns && full_screen && term_console)
8107 mch_check_columns();
8108 #endif
8111 * If the screen (shell) height has been changed, assume it is the
8112 * physical screenheight.
8114 if (old_Rows != Rows || old_Columns != Columns)
8116 /* Changing the screen size is not allowed while updating the screen. */
8117 if (updating_screen)
8118 *pp = old_value;
8119 else if (full_screen
8120 #ifdef FEAT_GUI
8121 && !gui.starting
8122 #endif
8124 set_shellsize((int)Columns, (int)Rows, TRUE);
8125 else
8127 /* Postpone the resizing; check the size and cmdline position for
8128 * messages. */
8129 check_shellsize();
8130 if (cmdline_row > Rows - p_ch && Rows > p_ch)
8131 cmdline_row = Rows - p_ch;
8133 if (p_window >= Rows || !option_was_set((char_u *)"window"))
8134 p_window = Rows - 1;
8137 if (curbuf->b_p_sts < 0)
8139 errmsg = e_positive;
8140 curbuf->b_p_sts = 0;
8142 if (curbuf->b_p_ts <= 0)
8144 errmsg = e_positive;
8145 curbuf->b_p_ts = 8;
8147 if (curbuf->b_p_tw < 0)
8149 errmsg = e_positive;
8150 curbuf->b_p_tw = 0;
8152 if (p_tm < 0)
8154 errmsg = e_positive;
8155 p_tm = 0;
8157 if ((curwin->w_p_scr <= 0
8158 || (curwin->w_p_scr > curwin->w_height
8159 && curwin->w_height > 0))
8160 && full_screen)
8162 if (pp == &(curwin->w_p_scr))
8164 if (curwin->w_p_scr != 0)
8165 errmsg = e_scroll;
8166 win_comp_scroll(curwin);
8168 /* If 'scroll' became invalid because of a side effect silently adjust
8169 * it. */
8170 else if (curwin->w_p_scr <= 0)
8171 curwin->w_p_scr = 1;
8172 else /* curwin->w_p_scr > curwin->w_height */
8173 curwin->w_p_scr = curwin->w_height;
8175 if (p_hi < 0)
8177 errmsg = e_positive;
8178 p_hi = 0;
8180 if (p_report < 0)
8182 errmsg = e_positive;
8183 p_report = 1;
8185 if ((p_sj < -100 || p_sj >= Rows) && full_screen)
8187 if (Rows != old_Rows) /* Rows changed, just adjust p_sj */
8188 p_sj = Rows / 2;
8189 else
8191 errmsg = e_scroll;
8192 p_sj = 1;
8195 if (p_so < 0 && full_screen)
8197 errmsg = e_scroll;
8198 p_so = 0;
8200 if (p_siso < 0 && full_screen)
8202 errmsg = e_positive;
8203 p_siso = 0;
8205 #ifdef FEAT_CMDWIN
8206 if (p_cwh < 1)
8208 errmsg = e_positive;
8209 p_cwh = 1;
8211 #endif
8212 if (p_ut < 0)
8214 errmsg = e_positive;
8215 p_ut = 2000;
8217 if (p_ss < 0)
8219 errmsg = e_positive;
8220 p_ss = 0;
8223 /* May set global value for local option. */
8224 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0)
8225 *(long *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) = *pp;
8227 options[opt_idx].flags |= P_WAS_SET;
8229 comp_col(); /* in case 'columns' or 'ls' changed */
8230 if (curwin->w_curswant != MAXCOL)
8231 curwin->w_set_curswant = TRUE; /* in case 'tabstop' changed */
8232 check_redraw(options[opt_idx].flags);
8234 return errmsg;
8238 * Called after an option changed: check if something needs to be redrawn.
8240 static void
8241 check_redraw(flags)
8242 long_u flags;
8244 /* Careful: P_RCLR and P_RALL are a combination of other P_ flags */
8245 int clear = (flags & P_RCLR) == P_RCLR;
8246 int all = ((flags & P_RALL) == P_RALL || clear);
8248 #ifdef FEAT_WINDOWS
8249 if ((flags & P_RSTAT) || all) /* mark all status lines dirty */
8250 status_redraw_all();
8251 #endif
8253 if ((flags & P_RBUF) || (flags & P_RWIN) || all)
8254 changed_window_setting();
8255 if (flags & P_RBUF)
8256 redraw_curbuf_later(NOT_VALID);
8257 if (clear)
8258 redraw_all_later(CLEAR);
8259 else if (all)
8260 redraw_all_later(NOT_VALID);
8264 * Find index for option 'arg'.
8265 * Return -1 if not found.
8267 static int
8268 findoption(arg)
8269 char_u *arg;
8271 int opt_idx;
8272 char *s, *p;
8273 static short quick_tab[27] = {0, 0}; /* quick access table */
8274 int is_term_opt;
8277 * For first call: Initialize the quick-access table.
8278 * It contains the index for the first option that starts with a certain
8279 * letter. There are 26 letters, plus the first "t_" option.
8281 if (quick_tab[1] == 0)
8283 p = options[0].fullname;
8284 for (opt_idx = 1; (s = options[opt_idx].fullname) != NULL; opt_idx++)
8286 if (s[0] != p[0])
8288 if (s[0] == 't' && s[1] == '_')
8289 quick_tab[26] = opt_idx;
8290 else
8291 quick_tab[CharOrdLow(s[0])] = opt_idx;
8293 p = s;
8298 * Check for name starting with an illegal character.
8300 #ifdef EBCDIC
8301 if (!islower(arg[0]))
8302 #else
8303 if (arg[0] < 'a' || arg[0] > 'z')
8304 #endif
8305 return -1;
8307 is_term_opt = (arg[0] == 't' && arg[1] == '_');
8308 if (is_term_opt)
8309 opt_idx = quick_tab[26];
8310 else
8311 opt_idx = quick_tab[CharOrdLow(arg[0])];
8312 for ( ; (s = options[opt_idx].fullname) != NULL; opt_idx++)
8314 if (STRCMP(arg, s) == 0) /* match full name */
8315 break;
8317 if (s == NULL && !is_term_opt)
8319 opt_idx = quick_tab[CharOrdLow(arg[0])];
8320 for ( ; options[opt_idx].fullname != NULL; opt_idx++)
8322 s = options[opt_idx].shortname;
8323 if (s != NULL && STRCMP(arg, s) == 0) /* match short name */
8324 break;
8325 s = NULL;
8328 if (s == NULL)
8329 opt_idx = -1;
8330 return opt_idx;
8333 #if defined(FEAT_EVAL) || defined(FEAT_TCL) || defined(FEAT_MZSCHEME)
8335 * Get the value for an option.
8337 * Returns:
8338 * Number or Toggle option: 1, *numval gets value.
8339 * String option: 0, *stringval gets allocated string.
8340 * Hidden Number or Toggle option: -1.
8341 * hidden String option: -2.
8342 * unknown option: -3.
8345 get_option_value(name, numval, stringval, opt_flags)
8346 char_u *name;
8347 long *numval;
8348 char_u **stringval; /* NULL when only checking existance */
8349 int opt_flags;
8351 int opt_idx;
8352 char_u *varp;
8354 opt_idx = findoption(name);
8355 if (opt_idx < 0) /* unknown option */
8356 return -3;
8358 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
8360 if (options[opt_idx].flags & P_STRING)
8362 if (varp == NULL) /* hidden option */
8363 return -2;
8364 if (stringval != NULL)
8366 #ifdef FEAT_CRYPT
8367 /* never return the value of the crypt key */
8368 if ((char_u **)varp == &curbuf->b_p_key
8369 && **(char_u **)(varp) != NUL)
8370 *stringval = vim_strsave((char_u *)"*****");
8371 else
8372 #endif
8373 *stringval = vim_strsave(*(char_u **)(varp));
8375 return 0;
8378 if (varp == NULL) /* hidden option */
8379 return -1;
8380 if (options[opt_idx].flags & P_NUM)
8381 *numval = *(long *)varp;
8382 else
8384 /* Special case: 'modified' is b_changed, but we also want to consider
8385 * it set when 'ff' or 'fenc' changed. */
8386 if ((int *)varp == &curbuf->b_changed)
8387 *numval = curbufIsChanged();
8388 else
8389 *numval = *(int *)varp;
8391 return 1;
8393 #endif
8396 * Set the value of option "name".
8397 * Use "string" for string options, use "number" for other options.
8399 void
8400 set_option_value(name, number, string, opt_flags)
8401 char_u *name;
8402 long number;
8403 char_u *string;
8404 int opt_flags; /* OPT_LOCAL or 0 (both) */
8406 int opt_idx;
8407 char_u *varp;
8408 long_u flags;
8410 opt_idx = findoption(name);
8411 if (opt_idx < 0)
8412 EMSG2(_("E355: Unknown option: %s"), name);
8413 else
8415 flags = options[opt_idx].flags;
8416 #ifdef HAVE_SANDBOX
8417 /* Disallow changing some options in the sandbox */
8418 if (sandbox > 0 && (flags & P_SECURE))
8420 EMSG(_(e_sandbox));
8421 return;
8423 #endif
8424 if (flags & P_STRING)
8425 set_string_option(opt_idx, string, opt_flags);
8426 else
8428 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
8429 if (varp != NULL) /* hidden option is not changed */
8431 if (number == 0 && string != NULL)
8433 int idx;
8435 /* Either we are given a string or we are setting option
8436 * to zero. */
8437 for (idx = 0; string[idx] == '0'; ++idx)
8439 if (string[idx] != NUL || idx == 0)
8441 /* There's another character after zeros or the string
8442 * is empty. In both cases, we are trying to set a
8443 * num option using a string. */
8444 EMSG3(_("E521: Number required: &%s = '%s'"),
8445 name, string);
8446 return; /* do nothing as we hit an error */
8450 if (flags & P_NUM)
8451 (void)set_num_option(opt_idx, varp, number,
8452 NULL, 0, opt_flags);
8453 else
8454 (void)set_bool_option(opt_idx, varp, (int)number,
8455 opt_flags);
8462 * Get the terminal code for a terminal option.
8463 * Returns NULL when not found.
8465 char_u *
8466 get_term_code(tname)
8467 char_u *tname;
8469 int opt_idx;
8470 char_u *varp;
8472 if (tname[0] != 't' || tname[1] != '_' ||
8473 tname[2] == NUL || tname[3] == NUL)
8474 return NULL;
8475 if ((opt_idx = findoption(tname)) >= 0)
8477 varp = get_varp(&(options[opt_idx]));
8478 if (varp != NULL)
8479 varp = *(char_u **)(varp);
8480 return varp;
8482 return find_termcode(tname + 2);
8485 char_u *
8486 get_highlight_default()
8488 int i;
8490 i = findoption((char_u *)"hl");
8491 if (i >= 0)
8492 return options[i].def_val[VI_DEFAULT];
8493 return (char_u *)NULL;
8496 #if defined(FEAT_MBYTE) || defined(PROTO)
8497 char_u *
8498 get_encoding_default()
8500 int i;
8502 i = findoption((char_u *)"enc");
8503 if (i >= 0)
8504 return options[i].def_val[VI_DEFAULT];
8505 return (char_u *)NULL;
8507 #endif
8510 * Translate a string like "t_xx", "<t_xx>" or "<S-Tab>" to a key number.
8512 static int
8513 find_key_option(arg)
8514 char_u *arg;
8516 int key;
8517 int modifiers;
8520 * Don't use get_special_key_code() for t_xx, we don't want it to call
8521 * add_termcap_entry().
8523 if (arg[0] == 't' && arg[1] == '_' && arg[2] && arg[3])
8524 key = TERMCAP2KEY(arg[2], arg[3]);
8525 else
8527 --arg; /* put arg at the '<' */
8528 modifiers = 0;
8529 key = find_special_key(&arg, &modifiers, TRUE, TRUE);
8530 if (modifiers) /* can't handle modifiers here */
8531 key = 0;
8533 return key;
8537 * if 'all' == 0: show changed options
8538 * if 'all' == 1: show all normal options
8539 * if 'all' == 2: show all terminal options
8541 static void
8542 showoptions(all, opt_flags)
8543 int all;
8544 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
8546 struct vimoption *p;
8547 int col;
8548 int isterm;
8549 char_u *varp;
8550 struct vimoption **items;
8551 int item_count;
8552 int run;
8553 int row, rows;
8554 int cols;
8555 int i;
8556 int len;
8558 #define INC 20
8559 #define GAP 3
8561 items = (struct vimoption **)alloc((unsigned)(sizeof(struct vimoption *) *
8562 PARAM_COUNT));
8563 if (items == NULL)
8564 return;
8566 /* Highlight title */
8567 if (all == 2)
8568 MSG_PUTS_TITLE(_("\n--- Terminal codes ---"));
8569 else if (opt_flags & OPT_GLOBAL)
8570 MSG_PUTS_TITLE(_("\n--- Global option values ---"));
8571 else if (opt_flags & OPT_LOCAL)
8572 MSG_PUTS_TITLE(_("\n--- Local option values ---"));
8573 else
8574 MSG_PUTS_TITLE(_("\n--- Options ---"));
8577 * do the loop two times:
8578 * 1. display the short items
8579 * 2. display the long items (only strings and numbers)
8581 for (run = 1; run <= 2 && !got_int; ++run)
8584 * collect the items in items[]
8586 item_count = 0;
8587 for (p = &options[0]; p->fullname != NULL; p++)
8589 varp = NULL;
8590 isterm = istermoption(p);
8591 if (opt_flags != 0)
8593 if (p->indir != PV_NONE && !isterm)
8594 varp = get_varp_scope(p, opt_flags);
8596 else
8597 varp = get_varp(p);
8598 if (varp != NULL
8599 && ((all == 2 && isterm)
8600 || (all == 1 && !isterm)
8601 || (all == 0 && !optval_default(p, varp))))
8603 if (p->flags & P_BOOL)
8604 len = 1; /* a toggle option fits always */
8605 else
8607 option_value2string(p, opt_flags);
8608 len = (int)STRLEN(p->fullname) + vim_strsize(NameBuff) + 1;
8610 if ((len <= INC - GAP && run == 1) ||
8611 (len > INC - GAP && run == 2))
8612 items[item_count++] = p;
8617 * display the items
8619 if (run == 1)
8621 cols = (Columns + GAP - 3) / INC;
8622 if (cols == 0)
8623 cols = 1;
8624 rows = (item_count + cols - 1) / cols;
8626 else /* run == 2 */
8627 rows = item_count;
8628 for (row = 0; row < rows && !got_int; ++row)
8630 msg_putchar('\n'); /* go to next line */
8631 if (got_int) /* 'q' typed in more */
8632 break;
8633 col = 0;
8634 for (i = row; i < item_count; i += rows)
8636 msg_col = col; /* make columns */
8637 showoneopt(items[i], opt_flags);
8638 col += INC;
8640 out_flush();
8641 ui_breakcheck();
8644 vim_free(items);
8648 * Return TRUE if option "p" has its default value.
8650 static int
8651 optval_default(p, varp)
8652 struct vimoption *p;
8653 char_u *varp;
8655 int dvi;
8657 if (varp == NULL)
8658 return TRUE; /* hidden option is always at default */
8659 dvi = ((p->flags & P_VI_DEF) || p_cp) ? VI_DEFAULT : VIM_DEFAULT;
8660 if (p->flags & P_NUM)
8661 return (*(long *)varp == (long)(long_i)p->def_val[dvi]);
8662 if (p->flags & P_BOOL)
8663 /* the cast to long is required for Manx C, long_i is
8664 * needed for MSVC */
8665 return (*(int *)varp == (int)(long)(long_i)p->def_val[dvi]);
8666 /* P_STRING */
8667 return (STRCMP(*(char_u **)varp, p->def_val[dvi]) == 0);
8671 * showoneopt: show the value of one option
8672 * must not be called with a hidden option!
8674 static void
8675 showoneopt(p, opt_flags)
8676 struct vimoption *p;
8677 int opt_flags; /* OPT_LOCAL or OPT_GLOBAL */
8679 char_u *varp;
8680 int save_silent = silent_mode;
8682 silent_mode = FALSE;
8683 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
8685 varp = get_varp_scope(p, opt_flags);
8687 /* for 'modified' we also need to check if 'ff' or 'fenc' changed. */
8688 if ((p->flags & P_BOOL) && ((int *)varp == &curbuf->b_changed
8689 ? !curbufIsChanged() : !*(int *)varp))
8690 MSG_PUTS("no");
8691 else if ((p->flags & P_BOOL) && *(int *)varp < 0)
8692 MSG_PUTS("--");
8693 else
8694 MSG_PUTS(" ");
8695 MSG_PUTS(p->fullname);
8696 if (!(p->flags & P_BOOL))
8698 msg_putchar('=');
8699 /* put value string in NameBuff */
8700 option_value2string(p, opt_flags);
8701 msg_outtrans(NameBuff);
8704 silent_mode = save_silent;
8705 info_message = FALSE;
8709 * Write modified options as ":set" commands to a file.
8711 * There are three values for "opt_flags":
8712 * OPT_GLOBAL: Write global option values and fresh values of
8713 * buffer-local options (used for start of a session
8714 * file).
8715 * OPT_GLOBAL + OPT_LOCAL: Idem, add fresh values of window-local options for
8716 * curwin (used for a vimrc file).
8717 * OPT_LOCAL: Write buffer-local option values for curbuf, fresh
8718 * and local values for window-local options of
8719 * curwin. Local values are also written when at the
8720 * default value, because a modeline or autocommand
8721 * may have set them when doing ":edit file" and the
8722 * user has set them back at the default or fresh
8723 * value.
8724 * When "local_only" is TRUE, don't write fresh
8725 * values, only local values (for ":mkview").
8726 * (fresh value = value used for a new buffer or window for a local option).
8728 * Return FAIL on error, OK otherwise.
8731 makeset(fd, opt_flags, local_only)
8732 FILE *fd;
8733 int opt_flags;
8734 int local_only;
8736 struct vimoption *p;
8737 char_u *varp; /* currently used value */
8738 char_u *varp_fresh; /* local value */
8739 char_u *varp_local = NULL; /* fresh value */
8740 char *cmd;
8741 int round;
8742 int pri;
8745 * The options that don't have a default (terminal name, columns, lines)
8746 * are never written. Terminal options are also not written.
8747 * Do the loop over "options[]" twice: once for options with the
8748 * P_PRI_MKRC flag and once without.
8750 for (pri = 1; pri >= 0; --pri)
8752 for (p = &options[0]; !istermoption(p); p++)
8753 if (!(p->flags & P_NO_MKRC)
8754 && !istermoption(p)
8755 && ((pri == 1) == ((p->flags & P_PRI_MKRC) != 0)))
8757 /* skip global option when only doing locals */
8758 if (p->indir == PV_NONE && !(opt_flags & OPT_GLOBAL))
8759 continue;
8761 /* Do not store options like 'bufhidden' and 'syntax' in a vimrc
8762 * file, they are always buffer-specific. */
8763 if ((opt_flags & OPT_GLOBAL) && (p->flags & P_NOGLOB))
8764 continue;
8766 /* Global values are only written when not at the default value. */
8767 varp = get_varp_scope(p, opt_flags);
8768 if ((opt_flags & OPT_GLOBAL) && optval_default(p, varp))
8769 continue;
8771 round = 2;
8772 if (p->indir != PV_NONE)
8774 if (p->var == VAR_WIN)
8776 /* skip window-local option when only doing globals */
8777 if (!(opt_flags & OPT_LOCAL))
8778 continue;
8779 /* When fresh value of window-local option is not at the
8780 * default, need to write it too. */
8781 if (!(opt_flags & OPT_GLOBAL) && !local_only)
8783 varp_fresh = get_varp_scope(p, OPT_GLOBAL);
8784 if (!optval_default(p, varp_fresh))
8786 round = 1;
8787 varp_local = varp;
8788 varp = varp_fresh;
8794 /* Round 1: fresh value for window-local options.
8795 * Round 2: other values */
8796 for ( ; round <= 2; varp = varp_local, ++round)
8798 if (round == 1 || (opt_flags & OPT_GLOBAL))
8799 cmd = "set";
8800 else
8801 cmd = "setlocal";
8803 if (p->flags & P_BOOL)
8805 if (put_setbool(fd, cmd, p->fullname, *(int *)varp) == FAIL)
8806 return FAIL;
8808 else if (p->flags & P_NUM)
8810 if (put_setnum(fd, cmd, p->fullname, (long *)varp) == FAIL)
8811 return FAIL;
8813 else /* P_STRING */
8815 #if defined(FEAT_SYN_HL) || defined(FEAT_AUTOCMD)
8816 int do_endif = FALSE;
8818 /* Don't set 'syntax' and 'filetype' again if the value is
8819 * already right, avoids reloading the syntax file. */
8820 if (
8821 # if defined(FEAT_SYN_HL)
8822 p->indir == PV_SYN
8823 # if defined(FEAT_AUTOCMD)
8825 # endif
8826 # endif
8827 # if defined(FEAT_AUTOCMD)
8828 p->indir == PV_FT
8829 # endif
8832 if (fprintf(fd, "if &%s != '%s'", p->fullname,
8833 *(char_u **)(varp)) < 0
8834 || put_eol(fd) < 0)
8835 return FAIL;
8836 do_endif = TRUE;
8838 #endif
8839 if (put_setstring(fd, cmd, p->fullname, (char_u **)varp,
8840 (p->flags & P_EXPAND) != 0) == FAIL)
8841 return FAIL;
8842 #if defined(FEAT_SYN_HL) || defined(FEAT_AUTOCMD)
8843 if (do_endif)
8845 if (put_line(fd, "endif") == FAIL)
8846 return FAIL;
8848 #endif
8853 return OK;
8856 #if defined(FEAT_FOLDING) || defined(PROTO)
8858 * Generate set commands for the local fold options only. Used when
8859 * 'sessionoptions' or 'viewoptions' contains "folds" but not "options".
8862 makefoldset(fd)
8863 FILE *fd;
8865 if (put_setstring(fd, "setlocal", "fdm", &curwin->w_p_fdm, FALSE) == FAIL
8866 # ifdef FEAT_EVAL
8867 || put_setstring(fd, "setlocal", "fde", &curwin->w_p_fde, FALSE)
8868 == FAIL
8869 # endif
8870 || put_setstring(fd, "setlocal", "fmr", &curwin->w_p_fmr, FALSE)
8871 == FAIL
8872 || put_setstring(fd, "setlocal", "fdi", &curwin->w_p_fdi, FALSE)
8873 == FAIL
8874 || put_setnum(fd, "setlocal", "fdl", &curwin->w_p_fdl) == FAIL
8875 || put_setnum(fd, "setlocal", "fml", &curwin->w_p_fml) == FAIL
8876 || put_setnum(fd, "setlocal", "fdn", &curwin->w_p_fdn) == FAIL
8877 || put_setbool(fd, "setlocal", "fen", curwin->w_p_fen) == FAIL
8879 return FAIL;
8881 return OK;
8883 #endif
8885 static int
8886 put_setstring(fd, cmd, name, valuep, expand)
8887 FILE *fd;
8888 char *cmd;
8889 char *name;
8890 char_u **valuep;
8891 int expand;
8893 char_u *s;
8894 char_u buf[MAXPATHL];
8896 if (fprintf(fd, "%s %s=", cmd, name) < 0)
8897 return FAIL;
8898 if (*valuep != NULL)
8900 /* Output 'pastetoggle' as key names. For other
8901 * options some characters have to be escaped with
8902 * CTRL-V or backslash */
8903 if (valuep == &p_pt)
8905 s = *valuep;
8906 while (*s != NUL)
8907 if (put_escstr(fd, str2special(&s, FALSE), 2) == FAIL)
8908 return FAIL;
8910 else if (expand)
8912 home_replace(NULL, *valuep, buf, MAXPATHL, FALSE);
8913 if (put_escstr(fd, buf, 2) == FAIL)
8914 return FAIL;
8916 else if (put_escstr(fd, *valuep, 2) == FAIL)
8917 return FAIL;
8919 if (put_eol(fd) < 0)
8920 return FAIL;
8921 return OK;
8924 static int
8925 put_setnum(fd, cmd, name, valuep)
8926 FILE *fd;
8927 char *cmd;
8928 char *name;
8929 long *valuep;
8931 long wc;
8933 if (fprintf(fd, "%s %s=", cmd, name) < 0)
8934 return FAIL;
8935 if (wc_use_keyname((char_u *)valuep, &wc))
8937 /* print 'wildchar' and 'wildcharm' as a key name */
8938 if (fputs((char *)get_special_key_name((int)wc, 0), fd) < 0)
8939 return FAIL;
8941 else if (fprintf(fd, "%ld", *valuep) < 0)
8942 return FAIL;
8943 if (put_eol(fd) < 0)
8944 return FAIL;
8945 return OK;
8948 static int
8949 put_setbool(fd, cmd, name, value)
8950 FILE *fd;
8951 char *cmd;
8952 char *name;
8953 int value;
8955 if (value < 0) /* global/local option using global value */
8956 return OK;
8957 if (fprintf(fd, "%s %s%s", cmd, value ? "" : "no", name) < 0
8958 || put_eol(fd) < 0)
8959 return FAIL;
8960 return OK;
8964 * Clear all the terminal options.
8965 * If the option has been allocated, free the memory.
8966 * Terminal options are never hidden or indirect.
8968 void
8969 clear_termoptions()
8972 * Reset a few things before clearing the old options. This may cause
8973 * outputting a few things that the terminal doesn't understand, but the
8974 * screen will be cleared later, so this is OK.
8976 #ifdef FEAT_MOUSE_TTY
8977 mch_setmouse(FALSE); /* switch mouse off */
8978 #endif
8979 #ifdef FEAT_TITLE
8980 mch_restore_title(3); /* restore window titles */
8981 #endif
8982 #if defined(FEAT_XCLIPBOARD) && defined(FEAT_GUI)
8983 /* When starting the GUI close the display opened for the clipboard.
8984 * After restoring the title, because that will need the display. */
8985 if (gui.starting)
8986 clear_xterm_clip();
8987 #endif
8988 #ifdef WIN3264
8990 * Check if this is allowed now.
8992 if (can_end_termcap_mode(FALSE) == TRUE)
8993 #endif
8994 stoptermcap(); /* stop termcap mode */
8996 free_termoptions();
8999 void
9000 free_termoptions()
9002 struct vimoption *p;
9004 for (p = &options[0]; p->fullname != NULL; p++)
9005 if (istermoption(p))
9007 if (p->flags & P_ALLOCED)
9008 free_string_option(*(char_u **)(p->var));
9009 if (p->flags & P_DEF_ALLOCED)
9010 free_string_option(p->def_val[VI_DEFAULT]);
9011 *(char_u **)(p->var) = empty_option;
9012 p->def_val[VI_DEFAULT] = empty_option;
9013 p->flags &= ~(P_ALLOCED|P_DEF_ALLOCED);
9015 clear_termcodes();
9019 * Free the string for one term option, if it was allocated.
9020 * Set the string to empty_option and clear allocated flag.
9021 * "var" points to the option value.
9023 void
9024 free_one_termoption(var)
9025 char_u *var;
9027 struct vimoption *p;
9029 for (p = &options[0]; p->fullname != NULL; p++)
9030 if (p->var == var)
9032 if (p->flags & P_ALLOCED)
9033 free_string_option(*(char_u **)(p->var));
9034 *(char_u **)(p->var) = empty_option;
9035 p->flags &= ~P_ALLOCED;
9036 break;
9041 * Set the terminal option defaults to the current value.
9042 * Used after setting the terminal name.
9044 void
9045 set_term_defaults()
9047 struct vimoption *p;
9049 for (p = &options[0]; p->fullname != NULL; p++)
9051 if (istermoption(p) && p->def_val[VI_DEFAULT] != *(char_u **)(p->var))
9053 if (p->flags & P_DEF_ALLOCED)
9055 free_string_option(p->def_val[VI_DEFAULT]);
9056 p->flags &= ~P_DEF_ALLOCED;
9058 p->def_val[VI_DEFAULT] = *(char_u **)(p->var);
9059 if (p->flags & P_ALLOCED)
9061 p->flags |= P_DEF_ALLOCED;
9062 p->flags &= ~P_ALLOCED; /* don't free the value now */
9069 * return TRUE if 'p' starts with 't_'
9071 static int
9072 istermoption(p)
9073 struct vimoption *p;
9075 return (p->fullname[0] == 't' && p->fullname[1] == '_');
9079 * Compute columns for ruler and shown command. 'sc_col' is also used to
9080 * decide what the maximum length of a message on the status line can be.
9081 * If there is a status line for the last window, 'sc_col' is independent
9082 * of 'ru_col'.
9085 #define COL_RULER 17 /* columns needed by standard ruler */
9087 void
9088 comp_col()
9090 #if defined(FEAT_CMDL_INFO) && defined(FEAT_WINDOWS)
9091 int last_has_status = (p_ls == 2 || (p_ls == 1 && firstwin != lastwin));
9093 sc_col = 0;
9094 ru_col = 0;
9095 if (p_ru)
9097 #ifdef FEAT_STL_OPT
9098 ru_col = (ru_wid ? ru_wid : COL_RULER) + 1;
9099 #else
9100 ru_col = COL_RULER + 1;
9101 #endif
9102 /* no last status line, adjust sc_col */
9103 if (!last_has_status)
9104 sc_col = ru_col;
9106 if (p_sc)
9108 sc_col += SHOWCMD_COLS;
9109 if (!p_ru || last_has_status) /* no need for separating space */
9110 ++sc_col;
9112 sc_col = Columns - sc_col;
9113 ru_col = Columns - ru_col;
9114 if (sc_col <= 0) /* screen too narrow, will become a mess */
9115 sc_col = 1;
9116 if (ru_col <= 0)
9117 ru_col = 1;
9118 #else
9119 sc_col = Columns;
9120 ru_col = Columns;
9121 #endif
9125 * Get pointer to option variable, depending on local or global scope.
9127 static char_u *
9128 get_varp_scope(p, opt_flags)
9129 struct vimoption *p;
9130 int opt_flags;
9132 if ((opt_flags & OPT_GLOBAL) && p->indir != PV_NONE)
9134 if (p->var == VAR_WIN)
9135 return (char_u *)GLOBAL_WO(get_varp(p));
9136 return p->var;
9138 if ((opt_flags & OPT_LOCAL) && ((int)p->indir & PV_BOTH))
9140 switch ((int)p->indir)
9142 #ifdef FEAT_QUICKFIX
9143 case PV_EFM: return (char_u *)&(curbuf->b_p_efm);
9144 case PV_GP: return (char_u *)&(curbuf->b_p_gp);
9145 case PV_MP: return (char_u *)&(curbuf->b_p_mp);
9146 #endif
9147 case PV_EP: return (char_u *)&(curbuf->b_p_ep);
9148 case PV_KP: return (char_u *)&(curbuf->b_p_kp);
9149 case PV_PATH: return (char_u *)&(curbuf->b_p_path);
9150 case PV_AR: return (char_u *)&(curbuf->b_p_ar);
9151 case PV_TAGS: return (char_u *)&(curbuf->b_p_tags);
9152 #ifdef FEAT_FIND_ID
9153 case PV_DEF: return (char_u *)&(curbuf->b_p_def);
9154 case PV_INC: return (char_u *)&(curbuf->b_p_inc);
9155 #endif
9156 #ifdef FEAT_INS_EXPAND
9157 case PV_DICT: return (char_u *)&(curbuf->b_p_dict);
9158 case PV_TSR: return (char_u *)&(curbuf->b_p_tsr);
9159 #endif
9160 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9161 case PV_BEXPR: return (char_u *)&(curbuf->b_p_bexpr);
9162 #endif
9163 #ifdef FEAT_STL_OPT
9164 case PV_STL: return (char_u *)&(curwin->w_p_stl);
9165 #endif
9167 return NULL; /* "cannot happen" */
9169 return get_varp(p);
9173 * Get pointer to option variable.
9175 static char_u *
9176 get_varp(p)
9177 struct vimoption *p;
9179 /* hidden option, always return NULL */
9180 if (p->var == NULL)
9181 return NULL;
9183 switch ((int)p->indir)
9185 case PV_NONE: return p->var;
9187 /* global option with local value: use local value if it's been set */
9188 case PV_EP: return *curbuf->b_p_ep != NUL
9189 ? (char_u *)&curbuf->b_p_ep : p->var;
9190 case PV_KP: return *curbuf->b_p_kp != NUL
9191 ? (char_u *)&curbuf->b_p_kp : p->var;
9192 case PV_PATH: return *curbuf->b_p_path != NUL
9193 ? (char_u *)&(curbuf->b_p_path) : p->var;
9194 case PV_AR: return curbuf->b_p_ar >= 0
9195 ? (char_u *)&(curbuf->b_p_ar) : p->var;
9196 case PV_TAGS: return *curbuf->b_p_tags != NUL
9197 ? (char_u *)&(curbuf->b_p_tags) : p->var;
9198 #ifdef FEAT_FIND_ID
9199 case PV_DEF: return *curbuf->b_p_def != NUL
9200 ? (char_u *)&(curbuf->b_p_def) : p->var;
9201 case PV_INC: return *curbuf->b_p_inc != NUL
9202 ? (char_u *)&(curbuf->b_p_inc) : p->var;
9203 #endif
9204 #ifdef FEAT_INS_EXPAND
9205 case PV_DICT: return *curbuf->b_p_dict != NUL
9206 ? (char_u *)&(curbuf->b_p_dict) : p->var;
9207 case PV_TSR: return *curbuf->b_p_tsr != NUL
9208 ? (char_u *)&(curbuf->b_p_tsr) : p->var;
9209 #endif
9210 #ifdef FEAT_QUICKFIX
9211 case PV_EFM: return *curbuf->b_p_efm != NUL
9212 ? (char_u *)&(curbuf->b_p_efm) : p->var;
9213 case PV_GP: return *curbuf->b_p_gp != NUL
9214 ? (char_u *)&(curbuf->b_p_gp) : p->var;
9215 case PV_MP: return *curbuf->b_p_mp != NUL
9216 ? (char_u *)&(curbuf->b_p_mp) : p->var;
9217 #endif
9218 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9219 case PV_BEXPR: return *curbuf->b_p_bexpr != NUL
9220 ? (char_u *)&(curbuf->b_p_bexpr) : p->var;
9221 #endif
9222 #ifdef FEAT_STL_OPT
9223 case PV_STL: return *curwin->w_p_stl != NUL
9224 ? (char_u *)&(curwin->w_p_stl) : p->var;
9225 #endif
9227 #ifdef FEAT_ARABIC
9228 case PV_ARAB: return (char_u *)&(curwin->w_p_arab);
9229 #endif
9230 case PV_LIST: return (char_u *)&(curwin->w_p_list);
9231 #ifdef FEAT_SPELL
9232 case PV_SPELL: return (char_u *)&(curwin->w_p_spell);
9233 #endif
9234 #ifdef FEAT_SYN_HL
9235 case PV_CUC: return (char_u *)&(curwin->w_p_cuc);
9236 case PV_CUL: return (char_u *)&(curwin->w_p_cul);
9237 #endif
9238 #ifdef FEAT_DIFF
9239 case PV_DIFF: return (char_u *)&(curwin->w_p_diff);
9240 #endif
9241 #ifdef FEAT_FOLDING
9242 case PV_FDC: return (char_u *)&(curwin->w_p_fdc);
9243 case PV_FEN: return (char_u *)&(curwin->w_p_fen);
9244 case PV_FDI: return (char_u *)&(curwin->w_p_fdi);
9245 case PV_FDL: return (char_u *)&(curwin->w_p_fdl);
9246 case PV_FDM: return (char_u *)&(curwin->w_p_fdm);
9247 case PV_FML: return (char_u *)&(curwin->w_p_fml);
9248 case PV_FDN: return (char_u *)&(curwin->w_p_fdn);
9249 # ifdef FEAT_EVAL
9250 case PV_FDE: return (char_u *)&(curwin->w_p_fde);
9251 case PV_FDT: return (char_u *)&(curwin->w_p_fdt);
9252 # endif
9253 case PV_FMR: return (char_u *)&(curwin->w_p_fmr);
9254 #endif
9255 case PV_NU: return (char_u *)&(curwin->w_p_nu);
9256 #ifdef FEAT_LINEBREAK
9257 case PV_NUW: return (char_u *)&(curwin->w_p_nuw);
9258 #endif
9259 #ifdef FEAT_WINDOWS
9260 case PV_WFH: return (char_u *)&(curwin->w_p_wfh);
9261 #endif
9262 #ifdef FEAT_VERTSPLIT
9263 case PV_WFW: return (char_u *)&(curwin->w_p_wfw);
9264 #endif
9265 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
9266 case PV_PVW: return (char_u *)&(curwin->w_p_pvw);
9267 #endif
9268 #ifdef FEAT_RIGHTLEFT
9269 case PV_RL: return (char_u *)&(curwin->w_p_rl);
9270 case PV_RLC: return (char_u *)&(curwin->w_p_rlc);
9271 #endif
9272 case PV_SCROLL: return (char_u *)&(curwin->w_p_scr);
9273 case PV_WRAP: return (char_u *)&(curwin->w_p_wrap);
9274 #ifdef FEAT_LINEBREAK
9275 case PV_LBR: return (char_u *)&(curwin->w_p_lbr);
9276 #endif
9277 #ifdef FEAT_SCROLLBIND
9278 case PV_SCBIND: return (char_u *)&(curwin->w_p_scb);
9279 #endif
9281 case PV_AI: return (char_u *)&(curbuf->b_p_ai);
9282 case PV_BIN: return (char_u *)&(curbuf->b_p_bin);
9283 #ifdef FEAT_MBYTE
9284 case PV_BOMB: return (char_u *)&(curbuf->b_p_bomb);
9285 #endif
9286 #if defined(FEAT_QUICKFIX)
9287 case PV_BH: return (char_u *)&(curbuf->b_p_bh);
9288 case PV_BT: return (char_u *)&(curbuf->b_p_bt);
9289 #endif
9290 case PV_BL: return (char_u *)&(curbuf->b_p_bl);
9291 case PV_CI: return (char_u *)&(curbuf->b_p_ci);
9292 #ifdef FEAT_CINDENT
9293 case PV_CIN: return (char_u *)&(curbuf->b_p_cin);
9294 case PV_CINK: return (char_u *)&(curbuf->b_p_cink);
9295 case PV_CINO: return (char_u *)&(curbuf->b_p_cino);
9296 #endif
9297 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
9298 case PV_CINW: return (char_u *)&(curbuf->b_p_cinw);
9299 #endif
9300 #ifdef FEAT_COMMENTS
9301 case PV_COM: return (char_u *)&(curbuf->b_p_com);
9302 #endif
9303 #ifdef FEAT_FOLDING
9304 case PV_CMS: return (char_u *)&(curbuf->b_p_cms);
9305 #endif
9306 #ifdef FEAT_INS_EXPAND
9307 case PV_CPT: return (char_u *)&(curbuf->b_p_cpt);
9308 #endif
9309 #ifdef FEAT_COMPL_FUNC
9310 case PV_CFU: return (char_u *)&(curbuf->b_p_cfu);
9311 case PV_OFU: return (char_u *)&(curbuf->b_p_ofu);
9312 #endif
9313 case PV_EOL: return (char_u *)&(curbuf->b_p_eol);
9314 case PV_ET: return (char_u *)&(curbuf->b_p_et);
9315 #ifdef FEAT_MBYTE
9316 case PV_FENC: return (char_u *)&(curbuf->b_p_fenc);
9317 #endif
9318 case PV_FF: return (char_u *)&(curbuf->b_p_ff);
9319 #ifdef FEAT_AUTOCMD
9320 case PV_FT: return (char_u *)&(curbuf->b_p_ft);
9321 #endif
9322 case PV_FO: return (char_u *)&(curbuf->b_p_fo);
9323 case PV_FLP: return (char_u *)&(curbuf->b_p_flp);
9324 case PV_IMI: return (char_u *)&(curbuf->b_p_iminsert);
9325 case PV_IMS: return (char_u *)&(curbuf->b_p_imsearch);
9326 case PV_INF: return (char_u *)&(curbuf->b_p_inf);
9327 case PV_ISK: return (char_u *)&(curbuf->b_p_isk);
9328 #ifdef FEAT_FIND_ID
9329 # ifdef FEAT_EVAL
9330 case PV_INEX: return (char_u *)&(curbuf->b_p_inex);
9331 # endif
9332 #endif
9333 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
9334 case PV_INDE: return (char_u *)&(curbuf->b_p_inde);
9335 case PV_INDK: return (char_u *)&(curbuf->b_p_indk);
9336 #endif
9337 #ifdef FEAT_EVAL
9338 case PV_FEX: return (char_u *)&(curbuf->b_p_fex);
9339 #endif
9340 #ifdef FEAT_CRYPT
9341 case PV_KEY: return (char_u *)&(curbuf->b_p_key);
9342 #endif
9343 #ifdef FEAT_LISP
9344 case PV_LISP: return (char_u *)&(curbuf->b_p_lisp);
9345 #endif
9346 case PV_ML: return (char_u *)&(curbuf->b_p_ml);
9347 case PV_MPS: return (char_u *)&(curbuf->b_p_mps);
9348 case PV_MA: return (char_u *)&(curbuf->b_p_ma);
9349 case PV_MOD: return (char_u *)&(curbuf->b_changed);
9350 case PV_NF: return (char_u *)&(curbuf->b_p_nf);
9351 #ifdef FEAT_OSFILETYPE
9352 case PV_OFT: return (char_u *)&(curbuf->b_p_oft);
9353 #endif
9354 case PV_PI: return (char_u *)&(curbuf->b_p_pi);
9355 #ifdef FEAT_TEXTOBJ
9356 case PV_QE: return (char_u *)&(curbuf->b_p_qe);
9357 #endif
9358 case PV_RO: return (char_u *)&(curbuf->b_p_ro);
9359 #ifdef FEAT_SMARTINDENT
9360 case PV_SI: return (char_u *)&(curbuf->b_p_si);
9361 #endif
9362 #ifndef SHORT_FNAME
9363 case PV_SN: return (char_u *)&(curbuf->b_p_sn);
9364 #endif
9365 case PV_STS: return (char_u *)&(curbuf->b_p_sts);
9366 #ifdef FEAT_SEARCHPATH
9367 case PV_SUA: return (char_u *)&(curbuf->b_p_sua);
9368 #endif
9369 case PV_SWF: return (char_u *)&(curbuf->b_p_swf);
9370 #ifdef FEAT_SYN_HL
9371 case PV_SMC: return (char_u *)&(curbuf->b_p_smc);
9372 case PV_SYN: return (char_u *)&(curbuf->b_p_syn);
9373 #endif
9374 #ifdef FEAT_SPELL
9375 case PV_SPC: return (char_u *)&(curbuf->b_p_spc);
9376 case PV_SPF: return (char_u *)&(curbuf->b_p_spf);
9377 case PV_SPL: return (char_u *)&(curbuf->b_p_spl);
9378 #endif
9379 case PV_SW: return (char_u *)&(curbuf->b_p_sw);
9380 case PV_TS: return (char_u *)&(curbuf->b_p_ts);
9381 case PV_TW: return (char_u *)&(curbuf->b_p_tw);
9382 case PV_TX: return (char_u *)&(curbuf->b_p_tx);
9383 #ifdef FEAT_PERSISTENT_UNDO
9384 case PV_UDF: return (char_u *)&(curbuf->b_p_udf);
9385 #endif
9386 case PV_WM: return (char_u *)&(curbuf->b_p_wm);
9387 #ifdef FEAT_KEYMAP
9388 case PV_KMAP: return (char_u *)&(curbuf->b_p_keymap);
9389 #endif
9390 default: EMSG(_("E356: get_varp ERROR"));
9392 /* always return a valid pointer to avoid a crash! */
9393 return (char_u *)&(curbuf->b_p_wm);
9397 * Get the value of 'equalprg', either the buffer-local one or the global one.
9399 char_u *
9400 get_equalprg()
9402 if (*curbuf->b_p_ep == NUL)
9403 return p_ep;
9404 return curbuf->b_p_ep;
9407 #if defined(FEAT_WINDOWS) || defined(PROTO)
9409 * Copy options from one window to another.
9410 * Used when splitting a window.
9412 void
9413 win_copy_options(wp_from, wp_to)
9414 win_T *wp_from;
9415 win_T *wp_to;
9417 copy_winopt(&wp_from->w_onebuf_opt, &wp_to->w_onebuf_opt);
9418 copy_winopt(&wp_from->w_allbuf_opt, &wp_to->w_allbuf_opt);
9419 # ifdef FEAT_RIGHTLEFT
9420 # ifdef FEAT_FKMAP
9421 /* Is this right? */
9422 wp_to->w_farsi = wp_from->w_farsi;
9423 # endif
9424 # endif
9426 #endif
9429 * Copy the options from one winopt_T to another.
9430 * Doesn't free the old option values in "to", use clear_winopt() for that.
9431 * The 'scroll' option is not copied, because it depends on the window height.
9432 * The 'previewwindow' option is reset, there can be only one preview window.
9434 void
9435 copy_winopt(from, to)
9436 winopt_T *from;
9437 winopt_T *to;
9439 #ifdef FEAT_ARABIC
9440 to->wo_arab = from->wo_arab;
9441 #endif
9442 to->wo_list = from->wo_list;
9443 to->wo_nu = from->wo_nu;
9444 #ifdef FEAT_LINEBREAK
9445 to->wo_nuw = from->wo_nuw;
9446 #endif
9447 #ifdef FEAT_RIGHTLEFT
9448 to->wo_rl = from->wo_rl;
9449 to->wo_rlc = vim_strsave(from->wo_rlc);
9450 #endif
9451 #ifdef FEAT_STL_OPT
9452 to->wo_stl = vim_strsave(from->wo_stl);
9453 #endif
9454 to->wo_wrap = from->wo_wrap;
9455 #ifdef FEAT_LINEBREAK
9456 to->wo_lbr = from->wo_lbr;
9457 #endif
9458 #ifdef FEAT_SCROLLBIND
9459 to->wo_scb = from->wo_scb;
9460 #endif
9461 #ifdef FEAT_SPELL
9462 to->wo_spell = from->wo_spell;
9463 #endif
9464 #ifdef FEAT_SYN_HL
9465 to->wo_cuc = from->wo_cuc;
9466 to->wo_cul = from->wo_cul;
9467 #endif
9468 #ifdef FEAT_DIFF
9469 to->wo_diff = from->wo_diff;
9470 #endif
9471 #ifdef FEAT_FOLDING
9472 to->wo_fdc = from->wo_fdc;
9473 to->wo_fen = from->wo_fen;
9474 to->wo_fdi = vim_strsave(from->wo_fdi);
9475 to->wo_fml = from->wo_fml;
9476 to->wo_fdl = from->wo_fdl;
9477 to->wo_fdm = vim_strsave(from->wo_fdm);
9478 to->wo_fdn = from->wo_fdn;
9479 # ifdef FEAT_EVAL
9480 to->wo_fde = vim_strsave(from->wo_fde);
9481 to->wo_fdt = vim_strsave(from->wo_fdt);
9482 # endif
9483 to->wo_fmr = vim_strsave(from->wo_fmr);
9484 #endif
9485 check_winopt(to); /* don't want NULL pointers */
9489 * Check string options in a window for a NULL value.
9491 void
9492 check_win_options(win)
9493 win_T *win;
9495 check_winopt(&win->w_onebuf_opt);
9496 check_winopt(&win->w_allbuf_opt);
9500 * Check for NULL pointers in a winopt_T and replace them with empty_option.
9502 void
9503 check_winopt(wop)
9504 winopt_T *wop UNUSED;
9506 #ifdef FEAT_FOLDING
9507 check_string_option(&wop->wo_fdi);
9508 check_string_option(&wop->wo_fdm);
9509 # ifdef FEAT_EVAL
9510 check_string_option(&wop->wo_fde);
9511 check_string_option(&wop->wo_fdt);
9512 # endif
9513 check_string_option(&wop->wo_fmr);
9514 #endif
9515 #ifdef FEAT_RIGHTLEFT
9516 check_string_option(&wop->wo_rlc);
9517 #endif
9518 #ifdef FEAT_STL_OPT
9519 check_string_option(&wop->wo_stl);
9520 #endif
9524 * Free the allocated memory inside a winopt_T.
9526 void
9527 clear_winopt(wop)
9528 winopt_T *wop UNUSED;
9530 #ifdef FEAT_FOLDING
9531 clear_string_option(&wop->wo_fdi);
9532 clear_string_option(&wop->wo_fdm);
9533 # ifdef FEAT_EVAL
9534 clear_string_option(&wop->wo_fde);
9535 clear_string_option(&wop->wo_fdt);
9536 # endif
9537 clear_string_option(&wop->wo_fmr);
9538 #endif
9539 #ifdef FEAT_RIGHTLEFT
9540 clear_string_option(&wop->wo_rlc);
9541 #endif
9542 #ifdef FEAT_STL_OPT
9543 clear_string_option(&wop->wo_stl);
9544 #endif
9548 * Copy global option values to local options for one buffer.
9549 * Used when creating a new buffer and sometimes when entering a buffer.
9550 * flags:
9551 * BCO_ENTER We will enter the buf buffer.
9552 * BCO_ALWAYS Always copy the options, but only set b_p_initialized when
9553 * appropriate.
9554 * BCO_NOHELP Don't copy the values to a help buffer.
9556 void
9557 buf_copy_options(buf, flags)
9558 buf_T *buf;
9559 int flags;
9561 int should_copy = TRUE;
9562 char_u *save_p_isk = NULL; /* init for GCC */
9563 int dont_do_help;
9564 int did_isk = FALSE;
9567 * Don't do anything of the buffer is invalid.
9569 if (buf == NULL || !buf_valid(buf))
9570 return;
9573 * Skip this when the option defaults have not been set yet. Happens when
9574 * main() allocates the first buffer.
9576 if (p_cpo != NULL)
9579 * Always copy when entering and 'cpo' contains 'S'.
9580 * Don't copy when already initialized.
9581 * Don't copy when 'cpo' contains 's' and not entering.
9582 * 'S' BCO_ENTER initialized 's' should_copy
9583 * yes yes X X TRUE
9584 * yes no yes X FALSE
9585 * no X yes X FALSE
9586 * X no no yes FALSE
9587 * X no no no TRUE
9588 * no yes no X TRUE
9590 if ((vim_strchr(p_cpo, CPO_BUFOPTGLOB) == NULL || !(flags & BCO_ENTER))
9591 && (buf->b_p_initialized
9592 || (!(flags & BCO_ENTER)
9593 && vim_strchr(p_cpo, CPO_BUFOPT) != NULL)))
9594 should_copy = FALSE;
9596 if (should_copy || (flags & BCO_ALWAYS))
9598 /* Don't copy the options specific to a help buffer when
9599 * BCO_NOHELP is given or the options were initialized already
9600 * (jumping back to a help file with CTRL-T or CTRL-O) */
9601 dont_do_help = ((flags & BCO_NOHELP) && buf->b_help)
9602 || buf->b_p_initialized;
9603 if (dont_do_help) /* don't free b_p_isk */
9605 save_p_isk = buf->b_p_isk;
9606 buf->b_p_isk = NULL;
9609 * Always free the allocated strings.
9610 * If not already initialized, set 'readonly' and copy 'fileformat'.
9612 if (!buf->b_p_initialized)
9614 free_buf_options(buf, TRUE);
9615 buf->b_p_ro = FALSE; /* don't copy readonly */
9616 buf->b_p_tx = p_tx;
9617 #ifdef FEAT_MBYTE
9618 buf->b_p_fenc = vim_strsave(p_fenc);
9619 #endif
9620 buf->b_p_ff = vim_strsave(p_ff);
9621 #if defined(FEAT_QUICKFIX)
9622 buf->b_p_bh = empty_option;
9623 buf->b_p_bt = empty_option;
9624 #endif
9626 else
9627 free_buf_options(buf, FALSE);
9629 buf->b_p_ai = p_ai;
9630 buf->b_p_ai_nopaste = p_ai_nopaste;
9631 buf->b_p_sw = p_sw;
9632 buf->b_p_tw = p_tw;
9633 buf->b_p_tw_nopaste = p_tw_nopaste;
9634 buf->b_p_tw_nobin = p_tw_nobin;
9635 buf->b_p_wm = p_wm;
9636 buf->b_p_wm_nopaste = p_wm_nopaste;
9637 buf->b_p_wm_nobin = p_wm_nobin;
9638 buf->b_p_bin = p_bin;
9639 #ifdef FEAT_MBYTE
9640 buf->b_p_bomb = p_bomb;
9641 #endif
9642 buf->b_p_et = p_et;
9643 buf->b_p_et_nobin = p_et_nobin;
9644 buf->b_p_ml = p_ml;
9645 buf->b_p_ml_nobin = p_ml_nobin;
9646 buf->b_p_inf = p_inf;
9647 buf->b_p_swf = p_swf;
9648 #ifdef FEAT_INS_EXPAND
9649 buf->b_p_cpt = vim_strsave(p_cpt);
9650 #endif
9651 #ifdef FEAT_COMPL_FUNC
9652 buf->b_p_cfu = vim_strsave(p_cfu);
9653 buf->b_p_ofu = vim_strsave(p_ofu);
9654 #endif
9655 buf->b_p_sts = p_sts;
9656 buf->b_p_sts_nopaste = p_sts_nopaste;
9657 #ifndef SHORT_FNAME
9658 buf->b_p_sn = p_sn;
9659 #endif
9660 #ifdef FEAT_COMMENTS
9661 buf->b_p_com = vim_strsave(p_com);
9662 #endif
9663 #ifdef FEAT_FOLDING
9664 buf->b_p_cms = vim_strsave(p_cms);
9665 #endif
9666 buf->b_p_fo = vim_strsave(p_fo);
9667 buf->b_p_flp = vim_strsave(p_flp);
9668 buf->b_p_nf = vim_strsave(p_nf);
9669 buf->b_p_mps = vim_strsave(p_mps);
9670 #ifdef FEAT_SMARTINDENT
9671 buf->b_p_si = p_si;
9672 #endif
9673 buf->b_p_ci = p_ci;
9674 #ifdef FEAT_CINDENT
9675 buf->b_p_cin = p_cin;
9676 buf->b_p_cink = vim_strsave(p_cink);
9677 buf->b_p_cino = vim_strsave(p_cino);
9678 #endif
9679 #ifdef FEAT_AUTOCMD
9680 /* Don't copy 'filetype', it must be detected */
9681 buf->b_p_ft = empty_option;
9682 #endif
9683 #ifdef FEAT_OSFILETYPE
9684 buf->b_p_oft = vim_strsave(p_oft);
9685 #endif
9686 buf->b_p_pi = p_pi;
9687 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
9688 buf->b_p_cinw = vim_strsave(p_cinw);
9689 #endif
9690 #ifdef FEAT_LISP
9691 buf->b_p_lisp = p_lisp;
9692 #endif
9693 #ifdef FEAT_SYN_HL
9694 /* Don't copy 'syntax', it must be set */
9695 buf->b_p_syn = empty_option;
9696 buf->b_p_smc = p_smc;
9697 #endif
9698 #ifdef FEAT_SPELL
9699 buf->b_p_spc = vim_strsave(p_spc);
9700 (void)compile_cap_prog(buf);
9701 buf->b_p_spf = vim_strsave(p_spf);
9702 buf->b_p_spl = vim_strsave(p_spl);
9703 #endif
9704 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
9705 buf->b_p_inde = vim_strsave(p_inde);
9706 buf->b_p_indk = vim_strsave(p_indk);
9707 #endif
9708 #if defined(FEAT_EVAL)
9709 buf->b_p_fex = vim_strsave(p_fex);
9710 #endif
9711 #ifdef FEAT_CRYPT
9712 buf->b_p_key = vim_strsave(p_key);
9713 #endif
9714 #ifdef FEAT_SEARCHPATH
9715 buf->b_p_sua = vim_strsave(p_sua);
9716 #endif
9717 #ifdef FEAT_KEYMAP
9718 buf->b_p_keymap = vim_strsave(p_keymap);
9719 buf->b_kmap_state |= KEYMAP_INIT;
9720 #endif
9721 /* This isn't really an option, but copying the langmap and IME
9722 * state from the current buffer is better than resetting it. */
9723 buf->b_p_iminsert = p_iminsert;
9724 buf->b_p_imsearch = p_imsearch;
9726 /* options that are normally global but also have a local value
9727 * are not copied, start using the global value */
9728 buf->b_p_ar = -1;
9729 #ifdef FEAT_QUICKFIX
9730 buf->b_p_gp = empty_option;
9731 buf->b_p_mp = empty_option;
9732 buf->b_p_efm = empty_option;
9733 #endif
9734 buf->b_p_ep = empty_option;
9735 buf->b_p_kp = empty_option;
9736 buf->b_p_path = empty_option;
9737 buf->b_p_tags = empty_option;
9738 #ifdef FEAT_FIND_ID
9739 buf->b_p_def = empty_option;
9740 buf->b_p_inc = empty_option;
9741 # ifdef FEAT_EVAL
9742 buf->b_p_inex = vim_strsave(p_inex);
9743 # endif
9744 #endif
9745 #ifdef FEAT_INS_EXPAND
9746 buf->b_p_dict = empty_option;
9747 buf->b_p_tsr = empty_option;
9748 #endif
9749 #ifdef FEAT_TEXTOBJ
9750 buf->b_p_qe = vim_strsave(p_qe);
9751 #endif
9752 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9753 buf->b_p_bexpr = empty_option;
9754 #endif
9755 #ifdef FEAT_PERSISTENT_UNDO
9756 buf->b_p_udf = p_udf;
9757 #endif
9760 * Don't copy the options set by ex_help(), use the saved values,
9761 * when going from a help buffer to a non-help buffer.
9762 * Don't touch these at all when BCO_NOHELP is used and going from
9763 * or to a help buffer.
9765 if (dont_do_help)
9766 buf->b_p_isk = save_p_isk;
9767 else
9769 buf->b_p_isk = vim_strsave(p_isk);
9770 did_isk = TRUE;
9771 buf->b_p_ts = p_ts;
9772 buf->b_help = FALSE;
9773 #ifdef FEAT_QUICKFIX
9774 if (buf->b_p_bt[0] == 'h')
9775 clear_string_option(&buf->b_p_bt);
9776 #endif
9777 buf->b_p_ma = p_ma;
9782 * When the options should be copied (ignoring BCO_ALWAYS), set the
9783 * flag that indicates that the options have been initialized.
9785 if (should_copy)
9786 buf->b_p_initialized = TRUE;
9789 check_buf_options(buf); /* make sure we don't have NULLs */
9790 if (did_isk)
9791 (void)buf_init_chartab(buf, FALSE);
9795 * Reset the 'modifiable' option and its default value.
9797 void
9798 reset_modifiable()
9800 int opt_idx;
9802 curbuf->b_p_ma = FALSE;
9803 p_ma = FALSE;
9804 opt_idx = findoption((char_u *)"ma");
9805 if (opt_idx >= 0)
9806 options[opt_idx].def_val[VI_DEFAULT] = FALSE;
9810 * Set the global value for 'iminsert' to the local value.
9812 void
9813 set_iminsert_global()
9815 p_iminsert = curbuf->b_p_iminsert;
9819 * Set the global value for 'imsearch' to the local value.
9821 void
9822 set_imsearch_global()
9824 p_imsearch = curbuf->b_p_imsearch;
9827 #if defined(FEAT_CMDL_COMPL) || defined(PROTO)
9828 static int expand_option_idx = -1;
9829 static char_u expand_option_name[5] = {'t', '_', NUL, NUL, NUL};
9830 static int expand_option_flags = 0;
9832 void
9833 set_context_in_set_cmd(xp, arg, opt_flags)
9834 expand_T *xp;
9835 char_u *arg;
9836 int opt_flags; /* OPT_GLOBAL and/or OPT_LOCAL */
9838 int nextchar;
9839 long_u flags = 0; /* init for GCC */
9840 int opt_idx = 0; /* init for GCC */
9841 char_u *p;
9842 char_u *s;
9843 int is_term_option = FALSE;
9844 int key;
9846 expand_option_flags = opt_flags;
9848 xp->xp_context = EXPAND_SETTINGS;
9849 if (*arg == NUL)
9851 xp->xp_pattern = arg;
9852 return;
9854 p = arg + STRLEN(arg) - 1;
9855 if (*p == ' ' && *(p - 1) != '\\')
9857 xp->xp_pattern = p + 1;
9858 return;
9860 while (p > arg)
9862 s = p;
9863 /* count number of backslashes before ' ' or ',' */
9864 if (*p == ' ' || *p == ',')
9866 while (s > arg && *(s - 1) == '\\')
9867 --s;
9869 /* break at a space with an even number of backslashes */
9870 if (*p == ' ' && ((p - s) & 1) == 0)
9872 ++p;
9873 break;
9875 --p;
9877 if (STRNCMP(p, "no", 2) == 0 && STRNCMP(p, "novice", 6) != 0)
9879 xp->xp_context = EXPAND_BOOL_SETTINGS;
9880 p += 2;
9882 if (STRNCMP(p, "inv", 3) == 0)
9884 xp->xp_context = EXPAND_BOOL_SETTINGS;
9885 p += 3;
9887 xp->xp_pattern = arg = p;
9888 if (*arg == '<')
9890 while (*p != '>')
9891 if (*p++ == NUL) /* expand terminal option name */
9892 return;
9893 key = get_special_key_code(arg + 1);
9894 if (key == 0) /* unknown name */
9896 xp->xp_context = EXPAND_NOTHING;
9897 return;
9899 nextchar = *++p;
9900 is_term_option = TRUE;
9901 expand_option_name[2] = KEY2TERMCAP0(key);
9902 expand_option_name[3] = KEY2TERMCAP1(key);
9904 else
9906 if (p[0] == 't' && p[1] == '_')
9908 p += 2;
9909 if (*p != NUL)
9910 ++p;
9911 if (*p == NUL)
9912 return; /* expand option name */
9913 nextchar = *++p;
9914 is_term_option = TRUE;
9915 expand_option_name[2] = p[-2];
9916 expand_option_name[3] = p[-1];
9918 else
9920 /* Allow * wildcard */
9921 while (ASCII_ISALNUM(*p) || *p == '_' || *p == '*')
9922 p++;
9923 if (*p == NUL)
9924 return;
9925 nextchar = *p;
9926 *p = NUL;
9927 opt_idx = findoption(arg);
9928 *p = nextchar;
9929 if (opt_idx == -1 || options[opt_idx].var == NULL)
9931 xp->xp_context = EXPAND_NOTHING;
9932 return;
9934 flags = options[opt_idx].flags;
9935 if (flags & P_BOOL)
9937 xp->xp_context = EXPAND_NOTHING;
9938 return;
9942 /* handle "-=" and "+=" */
9943 if ((nextchar == '-' || nextchar == '+' || nextchar == '^') && p[1] == '=')
9945 ++p;
9946 nextchar = '=';
9948 if ((nextchar != '=' && nextchar != ':')
9949 || xp->xp_context == EXPAND_BOOL_SETTINGS)
9951 xp->xp_context = EXPAND_UNSUCCESSFUL;
9952 return;
9954 if (xp->xp_context != EXPAND_BOOL_SETTINGS && p[1] == NUL)
9956 xp->xp_context = EXPAND_OLD_SETTING;
9957 if (is_term_option)
9958 expand_option_idx = -1;
9959 else
9960 expand_option_idx = opt_idx;
9961 xp->xp_pattern = p + 1;
9962 return;
9964 xp->xp_context = EXPAND_NOTHING;
9965 if (is_term_option || (flags & P_NUM))
9966 return;
9968 xp->xp_pattern = p + 1;
9970 if (flags & P_EXPAND)
9972 p = options[opt_idx].var;
9973 if (p == (char_u *)&p_bdir
9974 || p == (char_u *)&p_dir
9975 || p == (char_u *)&p_path
9976 || p == (char_u *)&p_rtp
9977 #ifdef FEAT_SEARCHPATH
9978 || p == (char_u *)&p_cdpath
9979 #endif
9980 #ifdef FEAT_SESSION
9981 || p == (char_u *)&p_vdir
9982 #endif
9985 xp->xp_context = EXPAND_DIRECTORIES;
9986 if (p == (char_u *)&p_path
9987 #ifdef FEAT_SEARCHPATH
9988 || p == (char_u *)&p_cdpath
9989 #endif
9991 xp->xp_backslash = XP_BS_THREE;
9992 else
9993 xp->xp_backslash = XP_BS_ONE;
9995 else
9997 xp->xp_context = EXPAND_FILES;
9998 /* for 'tags' need three backslashes for a space */
9999 if (p == (char_u *)&p_tags)
10000 xp->xp_backslash = XP_BS_THREE;
10001 else
10002 xp->xp_backslash = XP_BS_ONE;
10006 /* For an option that is a list of file names, find the start of the
10007 * last file name. */
10008 for (p = arg + STRLEN(arg) - 1; p > xp->xp_pattern; --p)
10010 /* count number of backslashes before ' ' or ',' */
10011 if (*p == ' ' || *p == ',')
10013 s = p;
10014 while (s > xp->xp_pattern && *(s - 1) == '\\')
10015 --s;
10016 if ((*p == ' ' && (xp->xp_backslash == XP_BS_THREE && (p - s) < 3))
10017 || (*p == ',' && (flags & P_COMMA) && ((p - s) & 1) == 0))
10019 xp->xp_pattern = p + 1;
10020 break;
10024 #ifdef FEAT_SPELL
10025 /* for 'spellsuggest' start at "file:" */
10026 if (options[opt_idx].var == (char_u *)&p_sps
10027 && STRNCMP(p, "file:", 5) == 0)
10029 xp->xp_pattern = p + 5;
10030 break;
10032 #endif
10035 return;
10039 ExpandSettings(xp, regmatch, num_file, file)
10040 expand_T *xp;
10041 regmatch_T *regmatch;
10042 int *num_file;
10043 char_u ***file;
10045 int num_normal = 0; /* Nr of matching non-term-code settings */
10046 int num_term = 0; /* Nr of matching terminal code settings */
10047 int opt_idx;
10048 int match;
10049 int count = 0;
10050 char_u *str;
10051 int loop;
10052 int is_term_opt;
10053 char_u name_buf[MAX_KEY_NAME_LEN];
10054 static char *(names[]) = {"all", "termcap"};
10055 int ic = regmatch->rm_ic; /* remember the ignore-case flag */
10057 /* do this loop twice:
10058 * loop == 0: count the number of matching options
10059 * loop == 1: copy the matching options into allocated memory
10061 for (loop = 0; loop <= 1; ++loop)
10063 regmatch->rm_ic = ic;
10064 if (xp->xp_context != EXPAND_BOOL_SETTINGS)
10066 for (match = 0; match < (int)(sizeof(names) / sizeof(char *));
10067 ++match)
10068 if (vim_regexec(regmatch, (char_u *)names[match], (colnr_T)0))
10070 if (loop == 0)
10071 num_normal++;
10072 else
10073 (*file)[count++] = vim_strsave((char_u *)names[match]);
10076 for (opt_idx = 0; (str = (char_u *)options[opt_idx].fullname) != NULL;
10077 opt_idx++)
10079 if (options[opt_idx].var == NULL)
10080 continue;
10081 if (xp->xp_context == EXPAND_BOOL_SETTINGS
10082 && !(options[opt_idx].flags & P_BOOL))
10083 continue;
10084 is_term_opt = istermoption(&options[opt_idx]);
10085 if (is_term_opt && num_normal > 0)
10086 continue;
10087 match = FALSE;
10088 if (vim_regexec(regmatch, str, (colnr_T)0)
10089 || (options[opt_idx].shortname != NULL
10090 && vim_regexec(regmatch,
10091 (char_u *)options[opt_idx].shortname, (colnr_T)0)))
10092 match = TRUE;
10093 else if (is_term_opt)
10095 name_buf[0] = '<';
10096 name_buf[1] = 't';
10097 name_buf[2] = '_';
10098 name_buf[3] = str[2];
10099 name_buf[4] = str[3];
10100 name_buf[5] = '>';
10101 name_buf[6] = NUL;
10102 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10104 match = TRUE;
10105 str = name_buf;
10108 if (match)
10110 if (loop == 0)
10112 if (is_term_opt)
10113 num_term++;
10114 else
10115 num_normal++;
10117 else
10118 (*file)[count++] = vim_strsave(str);
10122 * Check terminal key codes, these are not in the option table
10124 if (xp->xp_context != EXPAND_BOOL_SETTINGS && num_normal == 0)
10126 for (opt_idx = 0; (str = get_termcode(opt_idx)) != NULL; opt_idx++)
10128 if (!isprint(str[0]) || !isprint(str[1]))
10129 continue;
10131 name_buf[0] = 't';
10132 name_buf[1] = '_';
10133 name_buf[2] = str[0];
10134 name_buf[3] = str[1];
10135 name_buf[4] = NUL;
10137 match = FALSE;
10138 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10139 match = TRUE;
10140 else
10142 name_buf[0] = '<';
10143 name_buf[1] = 't';
10144 name_buf[2] = '_';
10145 name_buf[3] = str[0];
10146 name_buf[4] = str[1];
10147 name_buf[5] = '>';
10148 name_buf[6] = NUL;
10150 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10151 match = TRUE;
10153 if (match)
10155 if (loop == 0)
10156 num_term++;
10157 else
10158 (*file)[count++] = vim_strsave(name_buf);
10163 * Check special key names.
10165 regmatch->rm_ic = TRUE; /* ignore case here */
10166 for (opt_idx = 0; (str = get_key_name(opt_idx)) != NULL; opt_idx++)
10168 name_buf[0] = '<';
10169 STRCPY(name_buf + 1, str);
10170 STRCAT(name_buf, ">");
10172 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10174 if (loop == 0)
10175 num_term++;
10176 else
10177 (*file)[count++] = vim_strsave(name_buf);
10181 if (loop == 0)
10183 if (num_normal > 0)
10184 *num_file = num_normal;
10185 else if (num_term > 0)
10186 *num_file = num_term;
10187 else
10188 return OK;
10189 *file = (char_u **)alloc((unsigned)(*num_file * sizeof(char_u *)));
10190 if (*file == NULL)
10192 *file = (char_u **)"";
10193 return FAIL;
10197 return OK;
10201 ExpandOldSetting(num_file, file)
10202 int *num_file;
10203 char_u ***file;
10205 char_u *var = NULL; /* init for GCC */
10206 char_u *buf;
10208 *num_file = 0;
10209 *file = (char_u **)alloc((unsigned)sizeof(char_u *));
10210 if (*file == NULL)
10211 return FAIL;
10214 * For a terminal key code expand_option_idx is < 0.
10216 if (expand_option_idx < 0)
10218 var = find_termcode(expand_option_name + 2);
10219 if (var == NULL)
10220 expand_option_idx = findoption(expand_option_name);
10223 if (expand_option_idx >= 0)
10225 /* put string of option value in NameBuff */
10226 option_value2string(&options[expand_option_idx], expand_option_flags);
10227 var = NameBuff;
10229 else if (var == NULL)
10230 var = (char_u *)"";
10232 /* A backslash is required before some characters. This is the reverse of
10233 * what happens in do_set(). */
10234 buf = vim_strsave_escaped(var, escape_chars);
10236 if (buf == NULL)
10238 vim_free(*file);
10239 *file = NULL;
10240 return FAIL;
10243 #ifdef BACKSLASH_IN_FILENAME
10244 /* For MS-Windows et al. we don't double backslashes at the start and
10245 * before a file name character. */
10246 for (var = buf; *var != NUL; mb_ptr_adv(var))
10247 if (var[0] == '\\' && var[1] == '\\'
10248 && expand_option_idx >= 0
10249 && (options[expand_option_idx].flags & P_EXPAND)
10250 && vim_isfilec(var[2])
10251 && (var[2] != '\\' || (var == buf && var[4] != '\\')))
10252 STRMOVE(var, var + 1);
10253 #endif
10255 *file[0] = buf;
10256 *num_file = 1;
10257 return OK;
10259 #endif
10262 * Get the value for the numeric or string option *opp in a nice format into
10263 * NameBuff[]. Must not be called with a hidden option!
10265 static void
10266 option_value2string(opp, opt_flags)
10267 struct vimoption *opp;
10268 int opt_flags; /* OPT_GLOBAL and/or OPT_LOCAL */
10270 char_u *varp;
10272 varp = get_varp_scope(opp, opt_flags);
10274 if (opp->flags & P_NUM)
10276 long wc = 0;
10278 if (wc_use_keyname(varp, &wc))
10279 STRCPY(NameBuff, get_special_key_name((int)wc, 0));
10280 else if (wc != 0)
10281 STRCPY(NameBuff, transchar((int)wc));
10282 else
10283 sprintf((char *)NameBuff, "%ld", *(long *)varp);
10285 else /* P_STRING */
10287 varp = *(char_u **)(varp);
10288 if (varp == NULL) /* just in case */
10289 NameBuff[0] = NUL;
10290 #ifdef FEAT_CRYPT
10291 /* don't show the actual value of 'key', only that it's set */
10292 else if (opp->var == (char_u *)&p_key && *varp)
10293 STRCPY(NameBuff, "*****");
10294 #endif
10295 else if (opp->flags & P_EXPAND)
10296 home_replace(NULL, varp, NameBuff, MAXPATHL, FALSE);
10297 /* Translate 'pastetoggle' into special key names */
10298 else if ((char_u **)opp->var == &p_pt)
10299 str2specialbuf(p_pt, NameBuff, MAXPATHL);
10300 else
10301 vim_strncpy(NameBuff, varp, MAXPATHL - 1);
10306 * Return TRUE if "varp" points to 'wildchar' or 'wildcharm' and it can be
10307 * printed as a keyname.
10308 * "*wcp" is set to the value of the option if it's 'wildchar' or 'wildcharm'.
10310 static int
10311 wc_use_keyname(varp, wcp)
10312 char_u *varp;
10313 long *wcp;
10315 if (((long *)varp == &p_wc) || ((long *)varp == &p_wcm))
10317 *wcp = *(long *)varp;
10318 if (IS_SPECIAL(*wcp) || find_special_key_in_table((int)*wcp) >= 0)
10319 return TRUE;
10321 return FALSE;
10324 #ifdef FEAT_LANGMAP
10326 * Any character has an equivalent 'langmap' character. This is used for
10327 * keyboards that have a special language mode that sends characters above
10328 * 128 (although other characters can be translated too). The "to" field is a
10329 * Vim command character. This avoids having to switch the keyboard back to
10330 * ASCII mode when leaving Insert mode.
10332 * langmap_mapchar[] maps any of 256 chars to an ASCII char used for Vim
10333 * commands.
10334 * When FEAT_MBYTE is defined langmap_mapga.ga_data is a sorted table of
10335 * langmap_entry_T. This does the same as langmap_mapchar[] for characters >=
10336 * 256.
10338 # ifdef FEAT_MBYTE
10340 * With multi-byte support use growarray for 'langmap' chars >= 256
10342 typedef struct
10344 int from;
10345 int to;
10346 } langmap_entry_T;
10348 static garray_T langmap_mapga;
10349 static void langmap_set_entry __ARGS((int from, int to));
10352 * Search for an entry in "langmap_mapga" for "from". If found set the "to"
10353 * field. If not found insert a new entry at the appropriate location.
10355 static void
10356 langmap_set_entry(from, to)
10357 int from;
10358 int to;
10360 langmap_entry_T *entries = (langmap_entry_T *)(langmap_mapga.ga_data);
10361 int a = 0;
10362 int b = langmap_mapga.ga_len;
10364 /* Do a binary search for an existing entry. */
10365 while (a != b)
10367 int i = (a + b) / 2;
10368 int d = entries[i].from - from;
10370 if (d == 0)
10372 entries[i].to = to;
10373 return;
10375 if (d < 0)
10376 a = i + 1;
10377 else
10378 b = i;
10381 if (ga_grow(&langmap_mapga, 1) != OK)
10382 return; /* out of memory */
10384 /* insert new entry at position "a" */
10385 entries = (langmap_entry_T *)(langmap_mapga.ga_data) + a;
10386 mch_memmove(entries + 1, entries,
10387 (langmap_mapga.ga_len - a) * sizeof(langmap_entry_T));
10388 ++langmap_mapga.ga_len;
10389 entries[0].from = from;
10390 entries[0].to = to;
10394 * Apply 'langmap' to multi-byte character "c" and return the result.
10397 langmap_adjust_mb(c)
10398 int c;
10400 langmap_entry_T *entries = (langmap_entry_T *)(langmap_mapga.ga_data);
10401 int a = 0;
10402 int b = langmap_mapga.ga_len;
10404 while (a != b)
10406 int i = (a + b) / 2;
10407 int d = entries[i].from - c;
10409 if (d == 0)
10410 return entries[i].to; /* found matching entry */
10411 if (d < 0)
10412 a = i + 1;
10413 else
10414 b = i;
10416 return c; /* no entry found, return "c" unmodified */
10418 # endif
10420 static void
10421 langmap_init()
10423 int i;
10425 for (i = 0; i < 256; i++)
10426 langmap_mapchar[i] = i; /* we init with a one-to-one map */
10427 # ifdef FEAT_MBYTE
10428 ga_init2(&langmap_mapga, sizeof(langmap_entry_T), 8);
10429 # endif
10433 * Called when langmap option is set; the language map can be
10434 * changed at any time!
10436 static void
10437 langmap_set()
10439 char_u *p;
10440 char_u *p2;
10441 int from, to;
10443 #ifdef FEAT_MBYTE
10444 ga_clear(&langmap_mapga); /* clear the previous map first */
10445 #endif
10446 langmap_init(); /* back to one-to-one map */
10448 for (p = p_langmap; p[0] != NUL; )
10450 for (p2 = p; p2[0] != NUL && p2[0] != ',' && p2[0] != ';';
10451 mb_ptr_adv(p2))
10453 if (p2[0] == '\\' && p2[1] != NUL)
10454 ++p2;
10456 if (p2[0] == ';')
10457 ++p2; /* abcd;ABCD form, p2 points to A */
10458 else
10459 p2 = NULL; /* aAbBcCdD form, p2 is NULL */
10460 while (p[0])
10462 if (p[0] == ',')
10464 ++p;
10465 break;
10467 if (p[0] == '\\' && p[1] != NUL)
10468 ++p;
10469 #ifdef FEAT_MBYTE
10470 from = (*mb_ptr2char)(p);
10471 #else
10472 from = p[0];
10473 #endif
10474 to = NUL;
10475 if (p2 == NULL)
10477 mb_ptr_adv(p);
10478 if (p[0] != ',')
10480 if (p[0] == '\\')
10481 ++p;
10482 #ifdef FEAT_MBYTE
10483 to = (*mb_ptr2char)(p);
10484 #else
10485 to = p[0];
10486 #endif
10489 else
10491 if (p2[0] != ',')
10493 if (p2[0] == '\\')
10494 ++p2;
10495 #ifdef FEAT_MBYTE
10496 to = (*mb_ptr2char)(p2);
10497 #else
10498 to = p2[0];
10499 #endif
10502 if (to == NUL)
10504 EMSG2(_("E357: 'langmap': Matching character missing for %s"),
10505 transchar(from));
10506 return;
10509 #ifdef FEAT_MBYTE
10510 if (from >= 256)
10511 langmap_set_entry(from, to);
10512 else
10513 #endif
10514 langmap_mapchar[from & 255] = to;
10516 /* Advance to next pair */
10517 mb_ptr_adv(p);
10518 if (p2 != NULL)
10520 mb_ptr_adv(p2);
10521 if (*p == ';')
10523 p = p2;
10524 if (p[0] != NUL)
10526 if (p[0] != ',')
10528 EMSG2(_("E358: 'langmap': Extra characters after semicolon: %s"), p);
10529 return;
10531 ++p;
10533 break;
10539 #endif
10542 * Return TRUE if format option 'x' is in effect.
10543 * Take care of no formatting when 'paste' is set.
10546 has_format_option(x)
10547 int x;
10549 if (p_paste)
10550 return FALSE;
10551 return (vim_strchr(curbuf->b_p_fo, x) != NULL);
10555 * Return TRUE if "x" is present in 'shortmess' option, or
10556 * 'shortmess' contains 'a' and "x" is present in SHM_A.
10559 shortmess(x)
10560 int x;
10562 return ( vim_strchr(p_shm, x) != NULL
10563 || (vim_strchr(p_shm, 'a') != NULL
10564 && vim_strchr((char_u *)SHM_A, x) != NULL));
10568 * paste_option_changed() - Called after p_paste was set or reset.
10570 static void
10571 paste_option_changed()
10573 static int old_p_paste = FALSE;
10574 static int save_sm = 0;
10575 #ifdef FEAT_CMDL_INFO
10576 static int save_ru = 0;
10577 #endif
10578 #ifdef FEAT_RIGHTLEFT
10579 static int save_ri = 0;
10580 static int save_hkmap = 0;
10581 #endif
10582 buf_T *buf;
10584 if (p_paste)
10587 * Paste switched from off to on.
10588 * Save the current values, so they can be restored later.
10590 if (!old_p_paste)
10592 /* save options for each buffer */
10593 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10595 buf->b_p_tw_nopaste = buf->b_p_tw;
10596 buf->b_p_wm_nopaste = buf->b_p_wm;
10597 buf->b_p_sts_nopaste = buf->b_p_sts;
10598 buf->b_p_ai_nopaste = buf->b_p_ai;
10601 /* save global options */
10602 save_sm = p_sm;
10603 #ifdef FEAT_CMDL_INFO
10604 save_ru = p_ru;
10605 #endif
10606 #ifdef FEAT_RIGHTLEFT
10607 save_ri = p_ri;
10608 save_hkmap = p_hkmap;
10609 #endif
10610 /* save global values for local buffer options */
10611 p_tw_nopaste = p_tw;
10612 p_wm_nopaste = p_wm;
10613 p_sts_nopaste = p_sts;
10614 p_ai_nopaste = p_ai;
10618 * Always set the option values, also when 'paste' is set when it is
10619 * already on.
10621 /* set options for each buffer */
10622 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10624 buf->b_p_tw = 0; /* textwidth is 0 */
10625 buf->b_p_wm = 0; /* wrapmargin is 0 */
10626 buf->b_p_sts = 0; /* softtabstop is 0 */
10627 buf->b_p_ai = 0; /* no auto-indent */
10630 /* set global options */
10631 p_sm = 0; /* no showmatch */
10632 #ifdef FEAT_CMDL_INFO
10633 # ifdef FEAT_WINDOWS
10634 if (p_ru)
10635 status_redraw_all(); /* redraw to remove the ruler */
10636 # endif
10637 p_ru = 0; /* no ruler */
10638 #endif
10639 #ifdef FEAT_RIGHTLEFT
10640 p_ri = 0; /* no reverse insert */
10641 p_hkmap = 0; /* no Hebrew keyboard */
10642 #endif
10643 /* set global values for local buffer options */
10644 p_tw = 0;
10645 p_wm = 0;
10646 p_sts = 0;
10647 p_ai = 0;
10651 * Paste switched from on to off: Restore saved values.
10653 else if (old_p_paste)
10655 /* restore options for each buffer */
10656 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10658 buf->b_p_tw = buf->b_p_tw_nopaste;
10659 buf->b_p_wm = buf->b_p_wm_nopaste;
10660 buf->b_p_sts = buf->b_p_sts_nopaste;
10661 buf->b_p_ai = buf->b_p_ai_nopaste;
10664 /* restore global options */
10665 p_sm = save_sm;
10666 #ifdef FEAT_CMDL_INFO
10667 # ifdef FEAT_WINDOWS
10668 if (p_ru != save_ru)
10669 status_redraw_all(); /* redraw to draw the ruler */
10670 # endif
10671 p_ru = save_ru;
10672 #endif
10673 #ifdef FEAT_RIGHTLEFT
10674 p_ri = save_ri;
10675 p_hkmap = save_hkmap;
10676 #endif
10677 /* set global values for local buffer options */
10678 p_tw = p_tw_nopaste;
10679 p_wm = p_wm_nopaste;
10680 p_sts = p_sts_nopaste;
10681 p_ai = p_ai_nopaste;
10684 old_p_paste = p_paste;
10688 * vimrc_found() - Called when a ".vimrc" or "VIMINIT" has been found.
10690 * Reset 'compatible' and set the values for options that didn't get set yet
10691 * to the Vim defaults.
10692 * Don't do this if the 'compatible' option has been set or reset before.
10693 * When "fname" is not NULL, use it to set $"envname" when it wasn't set yet.
10695 void
10696 vimrc_found(fname, envname)
10697 char_u *fname;
10698 char_u *envname;
10700 int opt_idx;
10701 int dofree = FALSE;
10702 char_u *p;
10704 if (!option_was_set((char_u *)"cp"))
10706 p_cp = FALSE;
10707 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
10708 if (!(options[opt_idx].flags & (P_WAS_SET|P_VI_DEF)))
10709 set_option_default(opt_idx, OPT_FREE, FALSE);
10710 didset_options();
10713 if (fname != NULL)
10715 p = vim_getenv(envname, &dofree);
10716 if (p == NULL)
10718 /* Set $MYVIMRC to the first vimrc file found. */
10719 p = FullName_save(fname, FALSE);
10720 if (p != NULL)
10722 vim_setenv(envname, p);
10723 vim_free(p);
10726 else if (dofree)
10727 vim_free(p);
10732 * Set 'compatible' on or off. Called for "-C" and "-N" command line arg.
10734 void
10735 change_compatible(on)
10736 int on;
10738 int opt_idx;
10740 if (p_cp != on)
10742 p_cp = on;
10743 compatible_set();
10745 opt_idx = findoption((char_u *)"cp");
10746 if (opt_idx >= 0)
10747 options[opt_idx].flags |= P_WAS_SET;
10751 * Return TRUE when option "name" has been set.
10754 option_was_set(name)
10755 char_u *name;
10757 int idx;
10759 idx = findoption(name);
10760 if (idx < 0) /* unknown option */
10761 return FALSE;
10762 if (options[idx].flags & P_WAS_SET)
10763 return TRUE;
10764 return FALSE;
10768 * compatible_set() - Called when 'compatible' has been set or unset.
10770 * When 'compatible' set: Set all relevant options (those that have the P_VIM)
10771 * flag) to a Vi compatible value.
10772 * When 'compatible' is unset: Set all options that have a different default
10773 * for Vim (without the P_VI_DEF flag) to that default.
10775 static void
10776 compatible_set()
10778 int opt_idx;
10780 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
10781 if ( ((options[opt_idx].flags & P_VIM) && p_cp)
10782 || (!(options[opt_idx].flags & P_VI_DEF) && !p_cp))
10783 set_option_default(opt_idx, OPT_FREE, p_cp);
10784 didset_options();
10787 #ifdef FEAT_LINEBREAK
10789 # if defined(__BORLANDC__) && (__BORLANDC__ < 0x500)
10790 /* Borland C++ screws up loop optimisation here (negri) */
10791 #pragma option -O-l
10792 # endif
10795 * fill_breakat_flags() -- called when 'breakat' changes value.
10797 static void
10798 fill_breakat_flags()
10800 char_u *p;
10801 int i;
10803 for (i = 0; i < 256; i++)
10804 breakat_flags[i] = FALSE;
10806 if (p_breakat != NULL)
10807 for (p = p_breakat; *p; p++)
10808 breakat_flags[*p] = TRUE;
10811 # if defined(__BORLANDC__) && (__BORLANDC__ < 0x500)
10812 #pragma option -O.l
10813 # endif
10815 #endif
10818 * Check an option that can be a range of string values.
10820 * Return OK for correct value, FAIL otherwise.
10821 * Empty is always OK.
10823 static int
10824 check_opt_strings(val, values, list)
10825 char_u *val;
10826 char **values;
10827 int list; /* when TRUE: accept a list of values */
10829 return opt_strings_flags(val, values, NULL, list);
10833 * Handle an option that can be a range of string values.
10834 * Set a flag in "*flagp" for each string present.
10836 * Return OK for correct value, FAIL otherwise.
10837 * Empty is always OK.
10839 static int
10840 opt_strings_flags(val, values, flagp, list)
10841 char_u *val; /* new value */
10842 char **values; /* array of valid string values */
10843 unsigned *flagp;
10844 int list; /* when TRUE: accept a list of values */
10846 int i;
10847 int len;
10848 unsigned new_flags = 0;
10850 while (*val)
10852 for (i = 0; ; ++i)
10854 if (values[i] == NULL) /* val not found in values[] */
10855 return FAIL;
10857 len = (int)STRLEN(values[i]);
10858 if (STRNCMP(values[i], val, len) == 0
10859 && ((list && val[len] == ',') || val[len] == NUL))
10861 val += len + (val[len] == ',');
10862 new_flags |= (1 << i);
10863 break; /* check next item in val list */
10867 if (flagp != NULL)
10868 *flagp = new_flags;
10870 return OK;
10874 * Read the 'wildmode' option, fill wim_flags[].
10876 static int
10877 check_opt_wim()
10879 char_u new_wim_flags[4];
10880 char_u *p;
10881 int i;
10882 int idx = 0;
10884 for (i = 0; i < 4; ++i)
10885 new_wim_flags[i] = 0;
10887 for (p = p_wim; *p; ++p)
10889 for (i = 0; ASCII_ISALPHA(p[i]); ++i)
10891 if (p[i] != NUL && p[i] != ',' && p[i] != ':')
10892 return FAIL;
10893 if (i == 7 && STRNCMP(p, "longest", 7) == 0)
10894 new_wim_flags[idx] |= WIM_LONGEST;
10895 else if (i == 4 && STRNCMP(p, "full", 4) == 0)
10896 new_wim_flags[idx] |= WIM_FULL;
10897 else if (i == 4 && STRNCMP(p, "list", 4) == 0)
10898 new_wim_flags[idx] |= WIM_LIST;
10899 else
10900 return FAIL;
10901 p += i;
10902 if (*p == NUL)
10903 break;
10904 if (*p == ',')
10906 if (idx == 3)
10907 return FAIL;
10908 ++idx;
10912 /* fill remaining entries with last flag */
10913 while (idx < 3)
10915 new_wim_flags[idx + 1] = new_wim_flags[idx];
10916 ++idx;
10919 /* only when there are no errors, wim_flags[] is changed */
10920 for (i = 0; i < 4; ++i)
10921 wim_flags[i] = new_wim_flags[i];
10922 return OK;
10926 * Check if backspacing over something is allowed.
10929 can_bs(what)
10930 int what; /* BS_INDENT, BS_EOL or BS_START */
10932 switch (*p_bs)
10934 case '2': return TRUE;
10935 case '1': return (what != BS_START);
10936 case '0': return FALSE;
10938 return vim_strchr(p_bs, what) != NULL;
10942 * Save the current values of 'fileformat' and 'fileencoding', so that we know
10943 * the file must be considered changed when the value is different.
10945 void
10946 save_file_ff(buf)
10947 buf_T *buf;
10949 buf->b_start_ffc = *buf->b_p_ff;
10950 buf->b_start_eol = buf->b_p_eol;
10951 #ifdef FEAT_MBYTE
10952 buf->b_start_bomb = buf->b_p_bomb;
10954 /* Only use free/alloc when necessary, they take time. */
10955 if (buf->b_start_fenc == NULL
10956 || STRCMP(buf->b_start_fenc, buf->b_p_fenc) != 0)
10958 vim_free(buf->b_start_fenc);
10959 buf->b_start_fenc = vim_strsave(buf->b_p_fenc);
10961 #endif
10965 * Return TRUE if 'fileformat' and/or 'fileencoding' has a different value
10966 * from when editing started (save_file_ff() called).
10967 * Also when 'endofline' was changed and 'binary' is set, or when 'bomb' was
10968 * changed and 'binary' is not set.
10969 * Don't consider a new, empty buffer to be changed.
10972 file_ff_differs(buf)
10973 buf_T *buf;
10975 /* In a buffer that was never loaded the options are not valid. */
10976 if (buf->b_flags & BF_NEVERLOADED)
10977 return FALSE;
10978 if ((buf->b_flags & BF_NEW)
10979 && buf->b_ml.ml_line_count == 1
10980 && *ml_get_buf(buf, (linenr_T)1, FALSE) == NUL)
10981 return FALSE;
10982 if (buf->b_start_ffc != *buf->b_p_ff)
10983 return TRUE;
10984 if (buf->b_p_bin && buf->b_start_eol != buf->b_p_eol)
10985 return TRUE;
10986 #ifdef FEAT_MBYTE
10987 if (!buf->b_p_bin && buf->b_start_bomb != buf->b_p_bomb)
10988 return TRUE;
10989 if (buf->b_start_fenc == NULL)
10990 return (*buf->b_p_fenc != NUL);
10991 return (STRCMP(buf->b_start_fenc, buf->b_p_fenc) != 0);
10992 #else
10993 return FALSE;
10994 #endif
10998 * return OK if "p" is a valid fileformat name, FAIL otherwise.
11001 check_ff_value(p)
11002 char_u *p;
11004 return check_opt_strings(p, p_ff_values, FALSE);