relativenumber: initialize vimoption.scriptID
[vim_extended.git] / src / option.c
blobadef15676d68eeb0e362fbb4af97966413d9b563
1 /* vi:set ts=8 sts=4 sw=4:
3 * VIM - Vi IMproved by Bram Moolenaar
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
11 * Code to handle user-settable options. This is all pretty much table-
12 * driven. Checklist for adding a new option:
13 * - Put it in the options array below (copy an existing entry).
14 * - For a global option: Add a variable for it in option.h.
15 * - For a buffer or window local option:
16 * - Add a PV_XX entry to the enum below.
17 * - Add a variable to the window or buffer struct in structs.h.
18 * - For a window option, add some code to copy_winopt().
19 * - For a buffer option, add some code to buf_copy_options().
20 * - For a buffer string option, add code to check_buf_options().
21 * - If it's a numeric option, add any necessary bounds checks to do_set().
22 * - If it's a list of flags, add some code in do_set(), search for WW_ALL.
23 * - When adding an option with expansion (P_EXPAND), but with a different
24 * default for Vi and Vim (no P_VI_DEF), add some code at VIMEXP.
25 * - Add documentation! One line in doc/help.txt, full description in
26 * options.txt, and any other related places.
27 * - Add an entry in runtime/optwin.vim.
28 * When making changes:
29 * - Adjust the help for the option in doc/option.txt.
30 * - When an entry has the P_VIM flag, or is lacking the P_VI_DEF flag, add a
31 * comment at the help for the 'compatible' option.
34 #define IN_OPTION_C
35 #include "vim.h"
38 * The options that are local to a window or buffer have "indir" set to one of
39 * these values. Special values:
40 * PV_NONE: global option.
41 * PV_WIN is added: window-local option
42 * PV_BUF is added: buffer-local option
43 * PV_BOTH is added: global option which also has a local value.
45 #define PV_BOTH 0x1000
46 #define PV_WIN 0x2000
47 #define PV_BUF 0x4000
48 #define PV_MASK 0x0fff
49 #define OPT_WIN(x) (idopt_T)(PV_WIN + (int)(x))
50 #define OPT_BUF(x) (idopt_T)(PV_BUF + (int)(x))
51 #define OPT_BOTH(x) (idopt_T)(PV_BOTH + (int)(x))
54 * Definition of the PV_ values for buffer-local options.
55 * The BV_ values are defined in option.h.
57 #define PV_AI OPT_BUF(BV_AI)
58 #define PV_AR OPT_BOTH(OPT_BUF(BV_AR))
59 #ifdef FEAT_QUICKFIX
60 # define PV_BH OPT_BUF(BV_BH)
61 # define PV_BT OPT_BUF(BV_BT)
62 # define PV_EFM OPT_BOTH(OPT_BUF(BV_EFM))
63 # define PV_GP OPT_BOTH(OPT_BUF(BV_GP))
64 # define PV_MP OPT_BOTH(OPT_BUF(BV_MP))
65 #endif
66 #define PV_BIN OPT_BUF(BV_BIN)
67 #define PV_BL OPT_BUF(BV_BL)
68 #ifdef FEAT_MBYTE
69 # define PV_BOMB OPT_BUF(BV_BOMB)
70 #endif
71 #define PV_CI OPT_BUF(BV_CI)
72 #ifdef FEAT_CINDENT
73 # define PV_CIN OPT_BUF(BV_CIN)
74 # define PV_CINK OPT_BUF(BV_CINK)
75 # define PV_CINO OPT_BUF(BV_CINO)
76 #endif
77 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
78 # define PV_CINW OPT_BUF(BV_CINW)
79 #endif
80 #ifdef FEAT_FOLDING
81 # define PV_CMS OPT_BUF(BV_CMS)
82 #endif
83 #ifdef FEAT_COMMENTS
84 # define PV_COM OPT_BUF(BV_COM)
85 #endif
86 #ifdef FEAT_INS_EXPAND
87 # define PV_CPT OPT_BUF(BV_CPT)
88 # define PV_DICT OPT_BOTH(OPT_BUF(BV_DICT))
89 # define PV_TSR OPT_BOTH(OPT_BUF(BV_TSR))
90 #endif
91 #ifdef FEAT_COMPL_FUNC
92 # define PV_CFU OPT_BUF(BV_CFU)
93 #endif
94 #ifdef FEAT_FIND_ID
95 # define PV_DEF OPT_BOTH(OPT_BUF(BV_DEF))
96 # define PV_INC OPT_BOTH(OPT_BUF(BV_INC))
97 #endif
98 #define PV_EOL OPT_BUF(BV_EOL)
99 #define PV_EP OPT_BOTH(OPT_BUF(BV_EP))
100 #define PV_ET OPT_BUF(BV_ET)
101 #ifdef FEAT_MBYTE
102 # define PV_FENC OPT_BUF(BV_FENC)
103 #endif
104 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
105 # define PV_BEXPR OPT_BOTH(OPT_BUF(BV_BEXPR))
106 #endif
107 #ifdef FEAT_EVAL
108 # define PV_FEX OPT_BUF(BV_FEX)
109 #endif
110 #define PV_FF OPT_BUF(BV_FF)
111 #define PV_FLP OPT_BUF(BV_FLP)
112 #define PV_FO OPT_BUF(BV_FO)
113 #ifdef FEAT_AUTOCMD
114 # define PV_FT OPT_BUF(BV_FT)
115 #endif
116 #define PV_IMI OPT_BUF(BV_IMI)
117 #define PV_IMS OPT_BUF(BV_IMS)
118 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
119 # define PV_INDE OPT_BUF(BV_INDE)
120 # define PV_INDK OPT_BUF(BV_INDK)
121 #endif
122 #if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
123 # define PV_INEX OPT_BUF(BV_INEX)
124 #endif
125 #define PV_INF OPT_BUF(BV_INF)
126 #define PV_ISK OPT_BUF(BV_ISK)
127 #ifdef FEAT_CRYPT
128 # define PV_KEY OPT_BUF(BV_KEY)
129 #endif
130 #ifdef FEAT_KEYMAP
131 # define PV_KMAP OPT_BUF(BV_KMAP)
132 #endif
133 #define PV_KP OPT_BOTH(OPT_BUF(BV_KP))
134 #ifdef FEAT_LISP
135 # define PV_LISP OPT_BUF(BV_LISP)
136 #endif
137 #define PV_MA OPT_BUF(BV_MA)
138 #define PV_ML OPT_BUF(BV_ML)
139 #define PV_MOD OPT_BUF(BV_MOD)
140 #define PV_MPS OPT_BUF(BV_MPS)
141 #define PV_NF OPT_BUF(BV_NF)
142 #ifdef FEAT_OSFILETYPE
143 # define PV_OFT OPT_BUF(BV_OFT)
144 #endif
145 #ifdef FEAT_COMPL_FUNC
146 # define PV_OFU OPT_BUF(BV_OFU)
147 #endif
148 #define PV_PATH OPT_BOTH(OPT_BUF(BV_PATH))
149 #define PV_PI OPT_BUF(BV_PI)
150 #ifdef FEAT_TEXTOBJ
151 # define PV_QE OPT_BUF(BV_QE)
152 #endif
153 #define PV_RO OPT_BUF(BV_RO)
154 #ifdef FEAT_SMARTINDENT
155 # define PV_SI OPT_BUF(BV_SI)
156 #endif
157 #ifndef SHORT_FNAME
158 # define PV_SN OPT_BUF(BV_SN)
159 #endif
160 #ifdef FEAT_SYN_HL
161 # define PV_SMC OPT_BUF(BV_SMC)
162 # define PV_SYN OPT_BUF(BV_SYN)
163 #endif
164 #ifdef FEAT_SPELL
165 # define PV_SPC OPT_BUF(BV_SPC)
166 # define PV_SPF OPT_BUF(BV_SPF)
167 # define PV_SPL OPT_BUF(BV_SPL)
168 #endif
169 #define PV_STS OPT_BUF(BV_STS)
170 #ifdef FEAT_SEARCHPATH
171 # define PV_SUA OPT_BUF(BV_SUA)
172 #endif
173 #define PV_SW OPT_BUF(BV_SW)
174 #define PV_SWF OPT_BUF(BV_SWF)
175 #define PV_TAGS OPT_BOTH(OPT_BUF(BV_TAGS))
176 #define PV_TS OPT_BUF(BV_TS)
177 #define PV_TW OPT_BUF(BV_TW)
178 #define PV_TX OPT_BUF(BV_TX)
179 #define PV_WM OPT_BUF(BV_WM)
182 * Definition of the PV_ values for window-local options.
183 * The WV_ values are defined in option.h.
185 #define PV_LIST OPT_WIN(WV_LIST)
186 #ifdef FEAT_ARABIC
187 # define PV_ARAB OPT_WIN(WV_ARAB)
188 #endif
189 #ifdef FEAT_DIFF
190 # define PV_DIFF OPT_WIN(WV_DIFF)
191 #endif
192 #ifdef FEAT_FOLDING
193 # define PV_FDC OPT_WIN(WV_FDC)
194 # define PV_FEN OPT_WIN(WV_FEN)
195 # define PV_FDI OPT_WIN(WV_FDI)
196 # define PV_FDL OPT_WIN(WV_FDL)
197 # define PV_FDM OPT_WIN(WV_FDM)
198 # define PV_FML OPT_WIN(WV_FML)
199 # define PV_FDN OPT_WIN(WV_FDN)
200 # ifdef FEAT_EVAL
201 # define PV_FDE OPT_WIN(WV_FDE)
202 # define PV_FDT OPT_WIN(WV_FDT)
203 # endif
204 # define PV_FMR OPT_WIN(WV_FMR)
205 #endif
206 #ifdef FEAT_LINEBREAK
207 # define PV_LBR OPT_WIN(WV_LBR)
208 #endif
209 #define PV_NU OPT_WIN(WV_NU)
210 #define PV_RNU OPT_WIN(WV_RNU)
211 #ifdef FEAT_LINEBREAK
212 # define PV_NUW OPT_WIN(WV_NUW)
213 #endif
214 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
215 # define PV_PVW OPT_WIN(WV_PVW)
216 #endif
217 #ifdef FEAT_RIGHTLEFT
218 # define PV_RL OPT_WIN(WV_RL)
219 # define PV_RLC OPT_WIN(WV_RLC)
220 #endif
221 #ifdef FEAT_SCROLLBIND
222 # define PV_SCBIND OPT_WIN(WV_SCBIND)
223 #endif
224 #define PV_SCROLL OPT_WIN(WV_SCROLL)
225 #ifdef FEAT_SPELL
226 # define PV_SPELL OPT_WIN(WV_SPELL)
227 #endif
228 #ifdef FEAT_SYN_HL
229 # define PV_CUC OPT_WIN(WV_CUC)
230 # define PV_CUL OPT_WIN(WV_CUL)
231 #endif
232 #ifdef FEAT_STL_OPT
233 # define PV_STL OPT_BOTH(OPT_WIN(WV_STL))
234 #endif
235 #ifdef FEAT_WINDOWS
236 # define PV_WFH OPT_WIN(WV_WFH)
237 #endif
238 #ifdef FEAT_VERTSPLIT
239 # define PV_WFW OPT_WIN(WV_WFW)
240 #endif
241 #define PV_WRAP OPT_WIN(WV_WRAP)
244 /* WV_ and BV_ values get typecasted to this for the "indir" field */
245 typedef enum
247 PV_NONE = 0,
248 PV_MAXVAL = 0xffff /* to avoid warnings for value out of range */
249 } idopt_T;
252 * Options local to a window have a value local to a buffer and global to all
253 * buffers. Indicate this by setting "var" to VAR_WIN.
255 #define VAR_WIN ((char_u *)-1)
258 * These are the global values for options which are also local to a buffer.
259 * Only to be used in option.c!
261 static int p_ai;
262 static int p_bin;
263 #ifdef FEAT_MBYTE
264 static int p_bomb;
265 #endif
266 #if defined(FEAT_QUICKFIX)
267 static char_u *p_bh;
268 static char_u *p_bt;
269 #endif
270 static int p_bl;
271 static int p_ci;
272 #ifdef FEAT_CINDENT
273 static int p_cin;
274 static char_u *p_cink;
275 static char_u *p_cino;
276 #endif
277 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
278 static char_u *p_cinw;
279 #endif
280 #ifdef FEAT_COMMENTS
281 static char_u *p_com;
282 #endif
283 #ifdef FEAT_FOLDING
284 static char_u *p_cms;
285 #endif
286 #ifdef FEAT_INS_EXPAND
287 static char_u *p_cpt;
288 #endif
289 #ifdef FEAT_COMPL_FUNC
290 static char_u *p_cfu;
291 static char_u *p_ofu;
292 #endif
293 static int p_eol;
294 static int p_et;
295 #ifdef FEAT_MBYTE
296 static char_u *p_fenc;
297 #endif
298 static char_u *p_ff;
299 static char_u *p_fo;
300 static char_u *p_flp;
301 #ifdef FEAT_AUTOCMD
302 static char_u *p_ft;
303 #endif
304 static long p_iminsert;
305 static long p_imsearch;
306 #if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
307 static char_u *p_inex;
308 #endif
309 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
310 static char_u *p_inde;
311 static char_u *p_indk;
312 #endif
313 #if defined(FEAT_EVAL)
314 static char_u *p_fex;
315 #endif
316 static int p_inf;
317 static char_u *p_isk;
318 #ifdef FEAT_CRYPT
319 static char_u *p_key;
320 #endif
321 #ifdef FEAT_LISP
322 static int p_lisp;
323 #endif
324 static int p_ml;
325 static int p_ma;
326 static int p_mod;
327 static char_u *p_mps;
328 static char_u *p_nf;
329 #ifdef FEAT_OSFILETYPE
330 static char_u *p_oft;
331 #endif
332 static int p_pi;
333 #ifdef FEAT_TEXTOBJ
334 static char_u *p_qe;
335 #endif
336 static int p_ro;
337 #ifdef FEAT_SMARTINDENT
338 static int p_si;
339 #endif
340 #ifndef SHORT_FNAME
341 static int p_sn;
342 #endif
343 static long p_sts;
344 #if defined(FEAT_SEARCHPATH)
345 static char_u *p_sua;
346 #endif
347 static long p_sw;
348 static int p_swf;
349 #ifdef FEAT_SYN_HL
350 static long p_smc;
351 static char_u *p_syn;
352 #endif
353 #ifdef FEAT_SPELL
354 static char_u *p_spc;
355 static char_u *p_spf;
356 static char_u *p_spl;
357 #endif
358 static long p_ts;
359 static long p_tw;
360 static int p_tx;
361 static long p_wm;
362 #ifdef FEAT_KEYMAP
363 static char_u *p_keymap;
364 #endif
366 /* Saved values for when 'bin' is set. */
367 static int p_et_nobin;
368 static int p_ml_nobin;
369 static long p_tw_nobin;
370 static long p_wm_nobin;
372 /* Saved values for when 'paste' is set */
373 static long p_tw_nopaste;
374 static long p_wm_nopaste;
375 static long p_sts_nopaste;
376 static int p_ai_nopaste;
378 struct vimoption
380 char *fullname; /* full option name */
381 char *shortname; /* permissible abbreviation */
382 long_u flags; /* see below */
383 char_u *var; /* global option: pointer to variable;
384 * window-local option: VAR_WIN;
385 * buffer-local option: global value */
386 idopt_T indir; /* global option: PV_NONE;
387 * local option: indirect option index */
388 char_u *def_val[2]; /* default values for variable (vi and vim) */
389 #ifdef FEAT_EVAL
390 scid_T scriptID; /* script in which the option was last set */
391 # define SCRIPTID_INIT , 0
392 #else
393 # define SCRIPTID_INIT
394 #endif
397 #define VI_DEFAULT 0 /* def_val[VI_DEFAULT] is Vi default value */
398 #define VIM_DEFAULT 1 /* def_val[VIM_DEFAULT] is Vim default value */
401 * Flags
403 #define P_BOOL 0x01 /* the option is boolean */
404 #define P_NUM 0x02 /* the option is numeric */
405 #define P_STRING 0x04 /* the option is a string */
406 #define P_ALLOCED 0x08 /* the string option is in allocated memory,
407 must use vim_free() when assigning new
408 value. Not set if default is the same. */
409 #define P_EXPAND 0x10 /* environment expansion. NOTE: P_EXPAND can
410 never be used for local or hidden options! */
411 #define P_NODEFAULT 0x40 /* don't set to default value */
412 #define P_DEF_ALLOCED 0x80 /* default value is in allocated memory, must
413 use vim_free() when assigning new value */
414 #define P_WAS_SET 0x100 /* option has been set/reset */
415 #define P_NO_MKRC 0x200 /* don't include in :mkvimrc output */
416 #define P_VI_DEF 0x400 /* Use Vi default for Vim */
417 #define P_VIM 0x800 /* Vim option, reset when 'cp' set */
419 /* when option changed, what to display: */
420 #define P_RSTAT 0x1000 /* redraw status lines */
421 #define P_RWIN 0x2000 /* redraw current window */
422 #define P_RBUF 0x4000 /* redraw current buffer */
423 #define P_RALL 0x6000 /* redraw all windows */
424 #define P_RCLR 0x7000 /* clear and redraw all */
426 #define P_COMMA 0x8000 /* comma separated list */
427 #define P_NODUP 0x10000L/* don't allow duplicate strings */
428 #define P_FLAGLIST 0x20000L/* list of single-char flags */
430 #define P_SECURE 0x40000L/* cannot change in modeline or secure mode */
431 #define P_GETTEXT 0x80000L/* expand default value with _() */
432 #define P_NOGLOB 0x100000L/* do not use local value for global vimrc */
433 #define P_NFNAME 0x200000L/* only normal file name chars allowed */
434 #define P_INSECURE 0x400000L/* option was set from a modeline */
435 #define P_PRI_MKRC 0x800000L/* priority for :mkvimrc (setting option has
436 side effects) */
438 #define ISK_LATIN1 (char_u *)"@,48-57,_,192-255"
440 /* 'isprint' for latin1 is also used for MS-Windows cp1252, where 0x80 is used
441 * for the currency sign. */
442 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
443 # define ISP_LATIN1 (char_u *)"@,~-255"
444 #else
445 # define ISP_LATIN1 (char_u *)"@,161-255"
446 #endif
448 /* The 16 bit MS-DOS version is low on space, make the string as short as
449 * possible when compiling with few features. */
450 #if defined(FEAT_DIFF) || defined(FEAT_FOLDING) || defined(FEAT_SPELL) \
451 || defined(FEAT_VERTSPLIT) || defined(FEAT_CLIPBOARD) \
452 || defined(FEAT_INS_EXPAND) || defined(FEAT_SYN_HL)
453 # 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"
454 #else
455 # define HIGHLIGHT_INIT "8:SpecialKey,@:NonText,d:Directory,e:ErrorMsg,i:IncSearch,l:Search,m:MoreMsg,M:ModeMsg,n:LineNr,r:Question,s:StatusLine,S:StatusLineNC,t:Title,v:Visual,w:WarningMsg,W:WildMenu,>:SignColumn,*:TabLine,#:TabLineSel,_:TabLineFill"
456 #endif
459 * options[] is initialized here.
460 * The order of the options MUST be alphabetic for ":set all" and findoption().
461 * All option names MUST start with a lowercase letter (for findoption()).
462 * Exception: "t_" options are at the end.
463 * The options with a NULL variable are 'hidden': a set command for them is
464 * ignored and they are not printed.
466 static struct vimoption
467 #ifdef FEAT_GUI_W16
468 _far
469 #endif
470 options[] =
472 {"aleph", "al", P_NUM|P_VI_DEF,
473 #ifdef FEAT_RIGHTLEFT
474 (char_u *)&p_aleph, PV_NONE,
475 #else
476 (char_u *)NULL, PV_NONE,
477 #endif
479 #if (defined(MSDOS) || defined(WIN3264) || defined(OS2)) && !defined(FEAT_GUI_W32)
480 (char_u *)128L,
481 #else
482 (char_u *)224L,
483 #endif
484 (char_u *)0L} SCRIPTID_INIT},
485 {"antialias", "anti", P_BOOL|P_VI_DEF|P_VIM|P_RCLR,
486 #if defined(FEAT_GUI) && defined(MACOS_X)
487 (char_u *)&p_antialias, PV_NONE,
488 {(char_u *)FALSE, (char_u *)FALSE}
489 #else
490 (char_u *)NULL, PV_NONE,
491 {(char_u *)FALSE, (char_u *)FALSE}
492 #endif
493 SCRIPTID_INIT},
494 {"arabic", "arab", P_BOOL|P_VI_DEF|P_VIM,
495 #ifdef FEAT_ARABIC
496 (char_u *)VAR_WIN, PV_ARAB,
497 #else
498 (char_u *)NULL, PV_NONE,
499 #endif
500 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
501 {"arabicshape", "arshape", P_BOOL|P_VI_DEF|P_VIM|P_RCLR,
502 #ifdef FEAT_ARABIC
503 (char_u *)&p_arshape, PV_NONE,
504 #else
505 (char_u *)NULL, PV_NONE,
506 #endif
507 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
508 {"allowrevins", "ari", P_BOOL|P_VI_DEF|P_VIM,
509 #ifdef FEAT_RIGHTLEFT
510 (char_u *)&p_ari, PV_NONE,
511 #else
512 (char_u *)NULL, PV_NONE,
513 #endif
514 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
515 {"altkeymap", "akm", P_BOOL|P_VI_DEF,
516 #ifdef FEAT_FKMAP
517 (char_u *)&p_altkeymap, PV_NONE,
518 #else
519 (char_u *)NULL, PV_NONE,
520 #endif
521 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
522 {"ambiwidth", "ambw", P_STRING|P_VI_DEF|P_RCLR,
523 #if defined(FEAT_MBYTE)
524 (char_u *)&p_ambw, PV_NONE,
525 {(char_u *)"single", (char_u *)0L}
526 #else
527 (char_u *)NULL, PV_NONE,
528 {(char_u *)0L, (char_u *)0L}
529 #endif
530 SCRIPTID_INIT},
531 #ifdef FEAT_AUTOCHDIR
532 {"autochdir", "acd", P_BOOL|P_VI_DEF,
533 (char_u *)&p_acd, PV_NONE,
534 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
535 #endif
536 {"autoindent", "ai", P_BOOL|P_VI_DEF,
537 (char_u *)&p_ai, PV_AI,
538 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
539 {"autoprint", "ap", P_BOOL|P_VI_DEF,
540 (char_u *)NULL, PV_NONE,
541 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
542 {"autoread", "ar", P_BOOL|P_VI_DEF,
543 (char_u *)&p_ar, PV_AR,
544 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
545 {"autowrite", "aw", P_BOOL|P_VI_DEF,
546 (char_u *)&p_aw, PV_NONE,
547 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
548 {"autowriteall","awa", P_BOOL|P_VI_DEF,
549 (char_u *)&p_awa, PV_NONE,
550 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
551 {"background", "bg", P_STRING|P_VI_DEF|P_RCLR,
552 (char_u *)&p_bg, PV_NONE,
554 #if (defined(MSDOS) || defined(OS2) || defined(WIN3264)) && !defined(FEAT_GUI)
555 (char_u *)"dark",
556 #else
557 (char_u *)"light",
558 #endif
559 (char_u *)0L} SCRIPTID_INIT},
560 {"backspace", "bs", P_STRING|P_VI_DEF|P_VIM|P_COMMA|P_NODUP,
561 (char_u *)&p_bs, PV_NONE,
562 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
563 {"backup", "bk", P_BOOL|P_VI_DEF|P_VIM,
564 (char_u *)&p_bk, PV_NONE,
565 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
566 {"backupcopy", "bkc", P_STRING|P_VIM|P_COMMA|P_NODUP,
567 (char_u *)&p_bkc, PV_NONE,
568 #ifdef UNIX
569 {(char_u *)"yes", (char_u *)"auto"}
570 #else
571 {(char_u *)"auto", (char_u *)"auto"}
572 #endif
573 SCRIPTID_INIT},
574 {"backupdir", "bdir", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP|P_SECURE,
575 (char_u *)&p_bdir, PV_NONE,
576 {(char_u *)DFLT_BDIR, (char_u *)0L} SCRIPTID_INIT},
577 {"backupext", "bex", P_STRING|P_VI_DEF|P_NFNAME,
578 (char_u *)&p_bex, PV_NONE,
580 #ifdef VMS
581 (char_u *)"_",
582 #else
583 (char_u *)"~",
584 #endif
585 (char_u *)0L} SCRIPTID_INIT},
586 {"backupskip", "bsk", P_STRING|P_VI_DEF|P_COMMA,
587 #ifdef FEAT_WILDIGN
588 (char_u *)&p_bsk, PV_NONE,
589 {(char_u *)"", (char_u *)0L}
590 #else
591 (char_u *)NULL, PV_NONE,
592 {(char_u *)0L, (char_u *)0L}
593 #endif
594 SCRIPTID_INIT},
595 #ifdef FEAT_BEVAL
596 {"balloondelay","bdlay",P_NUM|P_VI_DEF,
597 (char_u *)&p_bdlay, PV_NONE,
598 {(char_u *)600L, (char_u *)0L} SCRIPTID_INIT},
599 {"ballooneval", "beval",P_BOOL|P_VI_DEF|P_NO_MKRC,
600 (char_u *)&p_beval, PV_NONE,
601 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
602 # ifdef FEAT_EVAL
603 {"balloonexpr", "bexpr", P_STRING|P_ALLOCED|P_VI_DEF|P_VIM,
604 (char_u *)&p_bexpr, PV_BEXPR,
605 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
606 # endif
607 #endif
608 {"beautify", "bf", P_BOOL|P_VI_DEF,
609 (char_u *)NULL, PV_NONE,
610 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
611 {"binary", "bin", P_BOOL|P_VI_DEF|P_RSTAT,
612 (char_u *)&p_bin, PV_BIN,
613 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
614 {"bioskey", "biosk",P_BOOL|P_VI_DEF,
615 #ifdef MSDOS
616 (char_u *)&p_biosk, PV_NONE,
617 #else
618 (char_u *)NULL, PV_NONE,
619 #endif
620 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
621 {"bomb", NULL, P_BOOL|P_NO_MKRC|P_VI_DEF|P_RSTAT,
622 #ifdef FEAT_MBYTE
623 (char_u *)&p_bomb, PV_BOMB,
624 #else
625 (char_u *)NULL, PV_NONE,
626 #endif
627 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
628 {"breakat", "brk", P_STRING|P_VI_DEF|P_RALL|P_FLAGLIST,
629 #ifdef FEAT_LINEBREAK
630 (char_u *)&p_breakat, PV_NONE,
631 {(char_u *)" \t!@*-+;:,./?", (char_u *)0L}
632 #else
633 (char_u *)NULL, PV_NONE,
634 {(char_u *)0L, (char_u *)0L}
635 #endif
636 SCRIPTID_INIT},
637 {"browsedir", "bsdir",P_STRING|P_VI_DEF,
638 #ifdef FEAT_BROWSE
639 (char_u *)&p_bsdir, PV_NONE,
640 {(char_u *)"last", (char_u *)0L}
641 #else
642 (char_u *)NULL, PV_NONE,
643 {(char_u *)0L, (char_u *)0L}
644 #endif
645 SCRIPTID_INIT},
646 {"bufhidden", "bh", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB,
647 #if defined(FEAT_QUICKFIX)
648 (char_u *)&p_bh, PV_BH,
649 {(char_u *)"", (char_u *)0L}
650 #else
651 (char_u *)NULL, PV_NONE,
652 {(char_u *)0L, (char_u *)0L}
653 #endif
654 SCRIPTID_INIT},
655 {"buflisted", "bl", P_BOOL|P_VI_DEF|P_NOGLOB,
656 (char_u *)&p_bl, PV_BL,
657 {(char_u *)1L, (char_u *)0L}
658 SCRIPTID_INIT},
659 {"buftype", "bt", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB,
660 #if defined(FEAT_QUICKFIX)
661 (char_u *)&p_bt, PV_BT,
662 {(char_u *)"", (char_u *)0L}
663 #else
664 (char_u *)NULL, PV_NONE,
665 {(char_u *)0L, (char_u *)0L}
666 #endif
667 SCRIPTID_INIT},
668 {"casemap", "cmp", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
669 #ifdef FEAT_MBYTE
670 (char_u *)&p_cmp, PV_NONE,
671 {(char_u *)"internal,keepascii", (char_u *)0L}
672 #else
673 (char_u *)NULL, PV_NONE,
674 {(char_u *)0L, (char_u *)0L}
675 #endif
676 SCRIPTID_INIT},
677 {"cdpath", "cd", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
678 #ifdef FEAT_SEARCHPATH
679 (char_u *)&p_cdpath, PV_NONE,
680 {(char_u *)",,", (char_u *)0L}
681 #else
682 (char_u *)NULL, PV_NONE,
683 {(char_u *)0L, (char_u *)0L}
684 #endif
685 SCRIPTID_INIT},
686 {"cedit", NULL, P_STRING,
687 #ifdef FEAT_CMDWIN
688 (char_u *)&p_cedit, PV_NONE,
689 {(char_u *)"", (char_u *)CTRL_F_STR}
690 #else
691 (char_u *)NULL, PV_NONE,
692 {(char_u *)0L, (char_u *)0L}
693 #endif
694 SCRIPTID_INIT},
695 {"charconvert", "ccv", P_STRING|P_VI_DEF|P_SECURE,
696 #if defined(FEAT_MBYTE) && defined(FEAT_EVAL)
697 (char_u *)&p_ccv, PV_NONE,
698 {(char_u *)"", (char_u *)0L}
699 #else
700 (char_u *)NULL, PV_NONE,
701 {(char_u *)0L, (char_u *)0L}
702 #endif
703 SCRIPTID_INIT},
704 {"cindent", "cin", P_BOOL|P_VI_DEF|P_VIM,
705 #ifdef FEAT_CINDENT
706 (char_u *)&p_cin, PV_CIN,
707 #else
708 (char_u *)NULL, PV_NONE,
709 #endif
710 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
711 {"cinkeys", "cink", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
712 #ifdef FEAT_CINDENT
713 (char_u *)&p_cink, PV_CINK,
714 {(char_u *)"0{,0},0),:,0#,!^F,o,O,e", (char_u *)0L}
715 #else
716 (char_u *)NULL, PV_NONE,
717 {(char_u *)0L, (char_u *)0L}
718 #endif
719 SCRIPTID_INIT},
720 {"cinoptions", "cino", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
721 #ifdef FEAT_CINDENT
722 (char_u *)&p_cino, PV_CINO,
723 #else
724 (char_u *)NULL, PV_NONE,
725 #endif
726 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
727 {"cinwords", "cinw", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
728 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
729 (char_u *)&p_cinw, PV_CINW,
730 {(char_u *)"if,else,while,do,for,switch",
731 (char_u *)0L}
732 #else
733 (char_u *)NULL, PV_NONE,
734 {(char_u *)0L, (char_u *)0L}
735 #endif
736 SCRIPTID_INIT},
737 {"clipboard", "cb", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
738 #ifdef FEAT_CLIPBOARD
739 (char_u *)&p_cb, PV_NONE,
740 # ifdef FEAT_XCLIPBOARD
741 {(char_u *)"autoselect,exclude:cons\\|linux",
742 (char_u *)0L}
743 # else
744 {(char_u *)"", (char_u *)0L}
745 # endif
746 #else
747 (char_u *)NULL, PV_NONE,
748 {(char_u *)"", (char_u *)0L}
749 #endif
750 SCRIPTID_INIT},
751 {"cmdheight", "ch", P_NUM|P_VI_DEF|P_RALL,
752 (char_u *)&p_ch, PV_NONE,
753 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
754 {"cmdwinheight", "cwh", P_NUM|P_VI_DEF,
755 #ifdef FEAT_CMDWIN
756 (char_u *)&p_cwh, PV_NONE,
757 #else
758 (char_u *)NULL, PV_NONE,
759 #endif
760 {(char_u *)7L, (char_u *)0L} SCRIPTID_INIT},
761 {"columns", "co", P_NUM|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RCLR,
762 (char_u *)&Columns, PV_NONE,
763 {(char_u *)80L, (char_u *)0L} SCRIPTID_INIT},
764 {"comments", "com", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
765 #ifdef FEAT_COMMENTS
766 (char_u *)&p_com, PV_COM,
767 {(char_u *)"s1:/*,mb:*,ex:*/,://,b:#,:%,:XCOMM,n:>,fb:-",
768 (char_u *)0L}
769 #else
770 (char_u *)NULL, PV_NONE,
771 {(char_u *)0L, (char_u *)0L}
772 #endif
773 SCRIPTID_INIT},
774 {"commentstring", "cms", P_STRING|P_ALLOCED|P_VI_DEF,
775 #ifdef FEAT_FOLDING
776 (char_u *)&p_cms, PV_CMS,
777 {(char_u *)"/*%s*/", (char_u *)0L}
778 #else
779 (char_u *)NULL, PV_NONE,
780 {(char_u *)0L, (char_u *)0L}
781 #endif
782 SCRIPTID_INIT},
783 /* P_PRI_MKRC isn't needed here, optval_default()
784 * always returns TRUE for 'compatible' */
785 {"compatible", "cp", P_BOOL|P_RALL,
786 (char_u *)&p_cp, PV_NONE,
787 {(char_u *)TRUE, (char_u *)FALSE} SCRIPTID_INIT},
788 {"complete", "cpt", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
789 #ifdef FEAT_INS_EXPAND
790 (char_u *)&p_cpt, PV_CPT,
791 {(char_u *)".,w,b,u,t,i", (char_u *)0L}
792 #else
793 (char_u *)NULL, PV_NONE,
794 {(char_u *)0L, (char_u *)0L}
795 #endif
796 SCRIPTID_INIT},
797 {"completefunc", "cfu", P_STRING|P_ALLOCED|P_VI_DEF|P_SECURE,
798 #ifdef FEAT_COMPL_FUNC
799 (char_u *)&p_cfu, PV_CFU,
800 {(char_u *)"", (char_u *)0L}
801 #else
802 (char_u *)NULL, PV_NONE,
803 {(char_u *)0L, (char_u *)0L}
804 #endif
805 SCRIPTID_INIT},
806 {"completeopt", "cot", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
807 #ifdef FEAT_INS_EXPAND
808 (char_u *)&p_cot, PV_NONE,
809 {(char_u *)"menu,preview", (char_u *)0L}
810 #else
811 (char_u *)NULL, PV_NONE,
812 {(char_u *)0L, (char_u *)0L}
813 #endif
814 SCRIPTID_INIT},
815 {"confirm", "cf", P_BOOL|P_VI_DEF,
816 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
817 (char_u *)&p_confirm, PV_NONE,
818 #else
819 (char_u *)NULL, PV_NONE,
820 #endif
821 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
822 {"conskey", "consk",P_BOOL|P_VI_DEF,
823 #ifdef MSDOS
824 (char_u *)&p_consk, PV_NONE,
825 #else
826 (char_u *)NULL, PV_NONE,
827 #endif
828 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
829 {"copyindent", "ci", P_BOOL|P_VI_DEF|P_VIM,
830 (char_u *)&p_ci, PV_CI,
831 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
832 {"cpoptions", "cpo", P_STRING|P_VIM|P_RALL|P_FLAGLIST,
833 (char_u *)&p_cpo, PV_NONE,
834 {(char_u *)CPO_VI, (char_u *)CPO_VIM}
835 SCRIPTID_INIT},
836 {"cscopepathcomp", "cspc", P_NUM|P_VI_DEF|P_VIM,
837 #ifdef FEAT_CSCOPE
838 (char_u *)&p_cspc, PV_NONE,
839 #else
840 (char_u *)NULL, PV_NONE,
841 #endif
842 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
843 {"cscopeprg", "csprg", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
844 #ifdef FEAT_CSCOPE
845 (char_u *)&p_csprg, PV_NONE,
846 {(char_u *)"cscope", (char_u *)0L}
847 #else
848 (char_u *)NULL, PV_NONE,
849 {(char_u *)0L, (char_u *)0L}
850 #endif
851 SCRIPTID_INIT},
852 {"cscopequickfix", "csqf", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
853 #if defined(FEAT_CSCOPE) && defined(FEAT_QUICKFIX)
854 (char_u *)&p_csqf, PV_NONE,
855 {(char_u *)"", (char_u *)0L}
856 #else
857 (char_u *)NULL, PV_NONE,
858 {(char_u *)0L, (char_u *)0L}
859 #endif
860 SCRIPTID_INIT},
861 {"cscopetag", "cst", P_BOOL|P_VI_DEF|P_VIM,
862 #ifdef FEAT_CSCOPE
863 (char_u *)&p_cst, PV_NONE,
864 #else
865 (char_u *)NULL, PV_NONE,
866 #endif
867 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
868 {"cscopetagorder", "csto", P_NUM|P_VI_DEF|P_VIM,
869 #ifdef FEAT_CSCOPE
870 (char_u *)&p_csto, PV_NONE,
871 #else
872 (char_u *)NULL, PV_NONE,
873 #endif
874 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
875 {"cscopeverbose", "csverb", P_BOOL|P_VI_DEF|P_VIM,
876 #ifdef FEAT_CSCOPE
877 (char_u *)&p_csverbose, PV_NONE,
878 #else
879 (char_u *)NULL, PV_NONE,
880 #endif
881 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
882 {"cursorcolumn", "cuc", P_BOOL|P_VI_DEF|P_RWIN,
883 #ifdef FEAT_SYN_HL
884 (char_u *)VAR_WIN, PV_CUC,
885 #else
886 (char_u *)NULL, PV_NONE,
887 #endif
888 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
889 {"cursorline", "cul", P_BOOL|P_VI_DEF|P_RWIN,
890 #ifdef FEAT_SYN_HL
891 (char_u *)VAR_WIN, PV_CUL,
892 #else
893 (char_u *)NULL, PV_NONE,
894 #endif
895 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
896 {"debug", NULL, P_STRING|P_VI_DEF,
897 (char_u *)&p_debug, PV_NONE,
898 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
899 {"define", "def", P_STRING|P_ALLOCED|P_VI_DEF,
900 #ifdef FEAT_FIND_ID
901 (char_u *)&p_def, PV_DEF,
902 {(char_u *)"^\\s*#\\s*define", (char_u *)0L}
903 #else
904 (char_u *)NULL, PV_NONE,
905 {(char_u *)NULL, (char_u *)0L}
906 #endif
907 SCRIPTID_INIT},
908 {"delcombine", "deco", P_BOOL|P_VI_DEF|P_VIM,
909 #ifdef FEAT_MBYTE
910 (char_u *)&p_deco, PV_NONE,
911 #else
912 (char_u *)NULL, PV_NONE,
913 #endif
914 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
915 {"dictionary", "dict", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
916 #ifdef FEAT_INS_EXPAND
917 (char_u *)&p_dict, PV_DICT,
918 #else
919 (char_u *)NULL, PV_NONE,
920 #endif
921 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
922 {"diff", NULL, P_BOOL|P_VI_DEF|P_RWIN|P_NOGLOB,
923 #ifdef FEAT_DIFF
924 (char_u *)VAR_WIN, PV_DIFF,
925 #else
926 (char_u *)NULL, PV_NONE,
927 #endif
928 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
929 {"diffexpr", "dex", P_STRING|P_VI_DEF|P_SECURE,
930 #if defined(FEAT_DIFF) && defined(FEAT_EVAL)
931 (char_u *)&p_dex, PV_NONE,
932 {(char_u *)"", (char_u *)0L}
933 #else
934 (char_u *)NULL, PV_NONE,
935 {(char_u *)0L, (char_u *)0L}
936 #endif
937 SCRIPTID_INIT},
938 {"diffopt", "dip", P_STRING|P_ALLOCED|P_VI_DEF|P_RWIN|P_COMMA|P_NODUP,
939 #ifdef FEAT_DIFF
940 (char_u *)&p_dip, PV_NONE,
941 {(char_u *)"filler", (char_u *)NULL}
942 #else
943 (char_u *)NULL, PV_NONE,
944 {(char_u *)"", (char_u *)NULL}
945 #endif
946 SCRIPTID_INIT},
947 {"digraph", "dg", P_BOOL|P_VI_DEF|P_VIM,
948 #ifdef FEAT_DIGRAPHS
949 (char_u *)&p_dg, PV_NONE,
950 #else
951 (char_u *)NULL, PV_NONE,
952 #endif
953 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
954 {"directory", "dir", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP|P_SECURE,
955 (char_u *)&p_dir, PV_NONE,
956 {(char_u *)DFLT_DIR, (char_u *)0L} SCRIPTID_INIT},
957 {"display", "dy", P_STRING|P_VI_DEF|P_COMMA|P_RALL|P_NODUP,
958 (char_u *)&p_dy, PV_NONE,
959 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
960 {"eadirection", "ead", P_STRING|P_VI_DEF,
961 #ifdef FEAT_VERTSPLIT
962 (char_u *)&p_ead, PV_NONE,
963 {(char_u *)"both", (char_u *)0L}
964 #else
965 (char_u *)NULL, PV_NONE,
966 {(char_u *)NULL, (char_u *)0L}
967 #endif
968 SCRIPTID_INIT},
969 {"edcompatible","ed", P_BOOL|P_VI_DEF,
970 (char_u *)&p_ed, PV_NONE,
971 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
972 {"encoding", "enc", P_STRING|P_VI_DEF|P_RCLR,
973 #ifdef FEAT_MBYTE
974 (char_u *)&p_enc, PV_NONE,
975 {(char_u *)ENC_DFLT, (char_u *)0L}
976 #else
977 (char_u *)NULL, PV_NONE,
978 {(char_u *)0L, (char_u *)0L}
979 #endif
980 SCRIPTID_INIT},
981 {"endofline", "eol", P_BOOL|P_NO_MKRC|P_VI_DEF|P_RSTAT,
982 (char_u *)&p_eol, PV_EOL,
983 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
984 {"equalalways", "ea", P_BOOL|P_VI_DEF|P_RALL,
985 (char_u *)&p_ea, PV_NONE,
986 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
987 {"equalprg", "ep", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
988 (char_u *)&p_ep, PV_EP,
989 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
990 {"errorbells", "eb", P_BOOL|P_VI_DEF,
991 (char_u *)&p_eb, PV_NONE,
992 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
993 {"errorfile", "ef", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
994 #ifdef FEAT_QUICKFIX
995 (char_u *)&p_ef, PV_NONE,
996 {(char_u *)DFLT_ERRORFILE, (char_u *)0L}
997 #else
998 (char_u *)NULL, PV_NONE,
999 {(char_u *)NULL, (char_u *)0L}
1000 #endif
1001 SCRIPTID_INIT},
1002 {"errorformat", "efm", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1003 #ifdef FEAT_QUICKFIX
1004 (char_u *)&p_efm, PV_EFM,
1005 {(char_u *)DFLT_EFM, (char_u *)0L}
1006 #else
1007 (char_u *)NULL, PV_NONE,
1008 {(char_u *)NULL, (char_u *)0L}
1009 #endif
1010 SCRIPTID_INIT},
1011 {"esckeys", "ek", P_BOOL|P_VIM,
1012 (char_u *)&p_ek, PV_NONE,
1013 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
1014 {"eventignore", "ei", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1015 #ifdef FEAT_AUTOCMD
1016 (char_u *)&p_ei, PV_NONE,
1017 #else
1018 (char_u *)NULL, PV_NONE,
1019 #endif
1020 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1021 {"expandtab", "et", P_BOOL|P_VI_DEF|P_VIM,
1022 (char_u *)&p_et, PV_ET,
1023 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1024 {"exrc", "ex", P_BOOL|P_VI_DEF|P_SECURE,
1025 (char_u *)&p_exrc, PV_NONE,
1026 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1027 {"fileencoding","fenc", P_STRING|P_ALLOCED|P_VI_DEF|P_RSTAT|P_RBUF|P_NO_MKRC,
1028 #ifdef FEAT_MBYTE
1029 (char_u *)&p_fenc, PV_FENC,
1030 {(char_u *)"", (char_u *)0L}
1031 #else
1032 (char_u *)NULL, PV_NONE,
1033 {(char_u *)0L, (char_u *)0L}
1034 #endif
1035 SCRIPTID_INIT},
1036 {"fileencodings","fencs", P_STRING|P_VI_DEF|P_COMMA,
1037 #ifdef FEAT_MBYTE
1038 (char_u *)&p_fencs, PV_NONE,
1039 {(char_u *)"ucs-bom", (char_u *)0L}
1040 #else
1041 (char_u *)NULL, PV_NONE,
1042 {(char_u *)0L, (char_u *)0L}
1043 #endif
1044 SCRIPTID_INIT},
1045 {"fileformat", "ff", P_STRING|P_ALLOCED|P_VI_DEF|P_RSTAT|P_NO_MKRC,
1046 (char_u *)&p_ff, PV_FF,
1047 {(char_u *)DFLT_FF, (char_u *)0L} SCRIPTID_INIT},
1048 {"fileformats", "ffs", P_STRING|P_VIM|P_COMMA|P_NODUP,
1049 (char_u *)&p_ffs, PV_NONE,
1050 {(char_u *)DFLT_FFS_VI, (char_u *)DFLT_FFS_VIM}
1051 SCRIPTID_INIT},
1052 {"filetype", "ft", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB|P_NFNAME,
1053 #ifdef FEAT_AUTOCMD
1054 (char_u *)&p_ft, PV_FT,
1055 {(char_u *)"", (char_u *)0L}
1056 #else
1057 (char_u *)NULL, PV_NONE,
1058 {(char_u *)0L, (char_u *)0L}
1059 #endif
1060 SCRIPTID_INIT},
1061 {"fillchars", "fcs", P_STRING|P_VI_DEF|P_RALL|P_COMMA|P_NODUP,
1062 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
1063 (char_u *)&p_fcs, PV_NONE,
1064 {(char_u *)"vert:|,fold:-", (char_u *)0L}
1065 #else
1066 (char_u *)NULL, PV_NONE,
1067 {(char_u *)"", (char_u *)0L}
1068 #endif
1069 SCRIPTID_INIT},
1070 {"fkmap", "fk", P_BOOL|P_VI_DEF,
1071 #ifdef FEAT_FKMAP
1072 (char_u *)&p_fkmap, PV_NONE,
1073 #else
1074 (char_u *)NULL, PV_NONE,
1075 #endif
1076 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1077 {"flash", "fl", P_BOOL|P_VI_DEF,
1078 (char_u *)NULL, PV_NONE,
1079 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1080 #ifdef FEAT_FOLDING
1081 {"foldclose", "fcl", P_STRING|P_VI_DEF|P_COMMA|P_NODUP|P_RWIN,
1082 (char_u *)&p_fcl, PV_NONE,
1083 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1084 {"foldcolumn", "fdc", P_NUM|P_VI_DEF|P_RWIN,
1085 (char_u *)VAR_WIN, PV_FDC,
1086 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1087 {"foldenable", "fen", P_BOOL|P_VI_DEF|P_RWIN,
1088 (char_u *)VAR_WIN, PV_FEN,
1089 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1090 {"foldexpr", "fde", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1091 # ifdef FEAT_EVAL
1092 (char_u *)VAR_WIN, PV_FDE,
1093 {(char_u *)"0", (char_u *)NULL}
1094 # else
1095 (char_u *)NULL, PV_NONE,
1096 {(char_u *)NULL, (char_u *)0L}
1097 # endif
1098 SCRIPTID_INIT},
1099 {"foldignore", "fdi", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1100 (char_u *)VAR_WIN, PV_FDI,
1101 {(char_u *)"#", (char_u *)NULL} SCRIPTID_INIT},
1102 {"foldlevel", "fdl", P_NUM|P_VI_DEF|P_RWIN,
1103 (char_u *)VAR_WIN, PV_FDL,
1104 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
1105 {"foldlevelstart","fdls", P_NUM|P_VI_DEF,
1106 (char_u *)&p_fdls, PV_NONE,
1107 {(char_u *)-1L, (char_u *)0L} SCRIPTID_INIT},
1108 {"foldmarker", "fmr", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|
1109 P_RWIN|P_COMMA|P_NODUP,
1110 (char_u *)VAR_WIN, PV_FMR,
1111 {(char_u *)"{{{,}}}", (char_u *)NULL}
1112 SCRIPTID_INIT},
1113 {"foldmethod", "fdm", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1114 (char_u *)VAR_WIN, PV_FDM,
1115 {(char_u *)"manual", (char_u *)NULL} SCRIPTID_INIT},
1116 {"foldminlines","fml", P_NUM|P_VI_DEF|P_RWIN,
1117 (char_u *)VAR_WIN, PV_FML,
1118 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
1119 {"foldnestmax", "fdn", P_NUM|P_VI_DEF|P_RWIN,
1120 (char_u *)VAR_WIN, PV_FDN,
1121 {(char_u *)20L, (char_u *)0L} SCRIPTID_INIT},
1122 {"foldopen", "fdo", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1123 (char_u *)&p_fdo, PV_NONE,
1124 {(char_u *)"block,hor,mark,percent,quickfix,search,tag,undo",
1125 (char_u *)0L} SCRIPTID_INIT},
1126 {"foldtext", "fdt", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1127 # ifdef FEAT_EVAL
1128 (char_u *)VAR_WIN, PV_FDT,
1129 {(char_u *)"foldtext()", (char_u *)NULL}
1130 # else
1131 (char_u *)NULL, PV_NONE,
1132 {(char_u *)NULL, (char_u *)0L}
1133 # endif
1134 SCRIPTID_INIT},
1135 #endif
1136 {"formatexpr", "fex", P_STRING|P_ALLOCED|P_VI_DEF|P_VIM,
1137 #ifdef FEAT_EVAL
1138 (char_u *)&p_fex, PV_FEX,
1139 {(char_u *)"", (char_u *)0L}
1140 #else
1141 (char_u *)NULL, PV_NONE,
1142 {(char_u *)0L, (char_u *)0L}
1143 #endif
1144 SCRIPTID_INIT},
1145 {"formatoptions","fo", P_STRING|P_ALLOCED|P_VIM|P_FLAGLIST,
1146 (char_u *)&p_fo, PV_FO,
1147 {(char_u *)DFLT_FO_VI, (char_u *)DFLT_FO_VIM}
1148 SCRIPTID_INIT},
1149 {"formatlistpat","flp", P_STRING|P_ALLOCED|P_VI_DEF,
1150 (char_u *)&p_flp, PV_FLP,
1151 {(char_u *)"^\\s*\\d\\+[\\]:.)}\\t ]\\s*",
1152 (char_u *)0L} SCRIPTID_INIT},
1153 {"formatprg", "fp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1154 (char_u *)&p_fp, PV_NONE,
1155 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1156 {"fsync", "fs", P_BOOL|P_SECURE|P_VI_DEF,
1157 #ifdef HAVE_FSYNC
1158 (char_u *)&p_fs, PV_NONE,
1159 {(char_u *)TRUE, (char_u *)0L}
1160 #else
1161 (char_u *)NULL, PV_NONE,
1162 {(char_u *)FALSE, (char_u *)0L}
1163 #endif
1164 SCRIPTID_INIT},
1165 {"gdefault", "gd", P_BOOL|P_VI_DEF|P_VIM,
1166 (char_u *)&p_gd, PV_NONE,
1167 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1168 {"graphic", "gr", P_BOOL|P_VI_DEF,
1169 (char_u *)NULL, PV_NONE,
1170 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1171 {"grepformat", "gfm", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1172 #ifdef FEAT_QUICKFIX
1173 (char_u *)&p_gefm, PV_NONE,
1174 {(char_u *)DFLT_GREPFORMAT, (char_u *)0L}
1175 #else
1176 (char_u *)NULL, PV_NONE,
1177 {(char_u *)NULL, (char_u *)0L}
1178 #endif
1179 SCRIPTID_INIT},
1180 {"grepprg", "gp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1181 #ifdef FEAT_QUICKFIX
1182 (char_u *)&p_gp, PV_GP,
1184 # ifdef WIN3264
1185 /* may be changed to "grep -n" in os_win32.c */
1186 (char_u *)"findstr /n",
1187 # else
1188 # ifdef UNIX
1189 /* Add an extra file name so that grep will always
1190 * insert a file name in the match line. */
1191 (char_u *)"grep -n $* /dev/null",
1192 # else
1193 # ifdef VMS
1194 (char_u *)"SEARCH/NUMBERS ",
1195 # else
1196 (char_u *)"grep -n ",
1197 # endif
1198 # endif
1199 # endif
1200 (char_u *)0L}
1201 #else
1202 (char_u *)NULL, PV_NONE,
1203 {(char_u *)NULL, (char_u *)0L}
1204 #endif
1205 SCRIPTID_INIT},
1206 {"guicursor", "gcr", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1207 #ifdef CURSOR_SHAPE
1208 (char_u *)&p_guicursor, PV_NONE,
1210 # ifdef FEAT_GUI
1211 (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",
1212 # else /* MSDOS or Win32 console */
1213 (char_u *)"n-v-c:block,o:hor50,i-ci:hor15,r-cr:hor30,sm:block",
1214 # endif
1215 (char_u *)0L}
1216 #else
1217 (char_u *)NULL, PV_NONE,
1218 {(char_u *)NULL, (char_u *)0L}
1219 #endif
1220 SCRIPTID_INIT},
1221 {"guifont", "gfn", P_STRING|P_VI_DEF|P_RCLR|P_COMMA|P_NODUP,
1222 #ifdef FEAT_GUI
1223 (char_u *)&p_guifont, PV_NONE,
1224 {(char_u *)"", (char_u *)0L}
1225 #else
1226 (char_u *)NULL, PV_NONE,
1227 {(char_u *)NULL, (char_u *)0L}
1228 #endif
1229 SCRIPTID_INIT},
1230 {"guifontset", "gfs", P_STRING|P_VI_DEF|P_RCLR|P_COMMA,
1231 #if defined(FEAT_GUI) && defined(FEAT_XFONTSET)
1232 (char_u *)&p_guifontset, PV_NONE,
1233 {(char_u *)"", (char_u *)0L}
1234 #else
1235 (char_u *)NULL, PV_NONE,
1236 {(char_u *)NULL, (char_u *)0L}
1237 #endif
1238 SCRIPTID_INIT},
1239 {"guifontwide", "gfw", P_STRING|P_VI_DEF|P_RCLR|P_COMMA|P_NODUP,
1240 #if defined(FEAT_GUI) && defined(FEAT_MBYTE)
1241 (char_u *)&p_guifontwide, PV_NONE,
1242 {(char_u *)"", (char_u *)0L}
1243 #else
1244 (char_u *)NULL, PV_NONE,
1245 {(char_u *)NULL, (char_u *)0L}
1246 #endif
1247 SCRIPTID_INIT},
1248 {"guiheadroom", "ghr", P_NUM|P_VI_DEF,
1249 #if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11)
1250 (char_u *)&p_ghr, PV_NONE,
1251 #else
1252 (char_u *)NULL, PV_NONE,
1253 #endif
1254 {(char_u *)50L, (char_u *)0L} SCRIPTID_INIT},
1255 {"guioptions", "go", P_STRING|P_VI_DEF|P_RALL|P_FLAGLIST,
1256 #if defined(FEAT_GUI)
1257 (char_u *)&p_go, PV_NONE,
1258 # if defined(UNIX) && !defined(MACOS)
1259 {(char_u *)"aegimrLtT", (char_u *)0L}
1260 # else
1261 {(char_u *)"egmrLtT", (char_u *)0L}
1262 # endif
1263 #else
1264 (char_u *)NULL, PV_NONE,
1265 {(char_u *)NULL, (char_u *)0L}
1266 #endif
1267 SCRIPTID_INIT},
1268 {"guipty", NULL, P_BOOL|P_VI_DEF,
1269 #if defined(FEAT_GUI)
1270 (char_u *)&p_guipty, PV_NONE,
1271 #else
1272 (char_u *)NULL, PV_NONE,
1273 #endif
1274 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1275 {"guitablabel", "gtl", P_STRING|P_VI_DEF|P_RWIN,
1276 #if defined(FEAT_GUI_TABLINE)
1277 (char_u *)&p_gtl, PV_NONE,
1278 {(char_u *)"", (char_u *)0L}
1279 #else
1280 (char_u *)NULL, PV_NONE,
1281 {(char_u *)NULL, (char_u *)0L}
1282 #endif
1283 SCRIPTID_INIT},
1284 {"guitabtooltip", "gtt", P_STRING|P_VI_DEF|P_RWIN,
1285 #if defined(FEAT_GUI_TABLINE)
1286 (char_u *)&p_gtt, PV_NONE,
1287 {(char_u *)"", (char_u *)0L}
1288 #else
1289 (char_u *)NULL, PV_NONE,
1290 {(char_u *)NULL, (char_u *)0L}
1291 #endif
1292 SCRIPTID_INIT},
1293 {"hardtabs", "ht", P_NUM|P_VI_DEF,
1294 (char_u *)NULL, PV_NONE,
1295 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
1296 {"helpfile", "hf", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1297 (char_u *)&p_hf, PV_NONE,
1298 {(char_u *)DFLT_HELPFILE, (char_u *)0L}
1299 SCRIPTID_INIT},
1300 {"helpheight", "hh", P_NUM|P_VI_DEF,
1301 #ifdef FEAT_WINDOWS
1302 (char_u *)&p_hh, PV_NONE,
1303 #else
1304 (char_u *)NULL, PV_NONE,
1305 #endif
1306 {(char_u *)20L, (char_u *)0L} SCRIPTID_INIT},
1307 {"helplang", "hlg", P_STRING|P_VI_DEF|P_COMMA,
1308 #ifdef FEAT_MULTI_LANG
1309 (char_u *)&p_hlg, PV_NONE,
1310 {(char_u *)"", (char_u *)0L}
1311 #else
1312 (char_u *)NULL, PV_NONE,
1313 {(char_u *)0L, (char_u *)0L}
1314 #endif
1315 SCRIPTID_INIT},
1316 {"hidden", "hid", P_BOOL|P_VI_DEF,
1317 (char_u *)&p_hid, PV_NONE,
1318 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1319 {"highlight", "hl", P_STRING|P_VI_DEF|P_RCLR|P_COMMA|P_NODUP,
1320 (char_u *)&p_hl, PV_NONE,
1321 {(char_u *)HIGHLIGHT_INIT, (char_u *)0L}
1322 SCRIPTID_INIT},
1323 {"history", "hi", P_NUM|P_VIM,
1324 (char_u *)&p_hi, PV_NONE,
1325 {(char_u *)0L, (char_u *)20L} SCRIPTID_INIT},
1326 {"hkmap", "hk", P_BOOL|P_VI_DEF|P_VIM,
1327 #ifdef FEAT_RIGHTLEFT
1328 (char_u *)&p_hkmap, PV_NONE,
1329 #else
1330 (char_u *)NULL, PV_NONE,
1331 #endif
1332 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1333 {"hkmapp", "hkp", P_BOOL|P_VI_DEF|P_VIM,
1334 #ifdef FEAT_RIGHTLEFT
1335 (char_u *)&p_hkmapp, PV_NONE,
1336 #else
1337 (char_u *)NULL, PV_NONE,
1338 #endif
1339 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1340 {"hlsearch", "hls", P_BOOL|P_VI_DEF|P_VIM|P_RALL,
1341 (char_u *)&p_hls, PV_NONE,
1342 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1343 {"icon", NULL, P_BOOL|P_VI_DEF,
1344 #ifdef FEAT_TITLE
1345 (char_u *)&p_icon, PV_NONE,
1346 #else
1347 (char_u *)NULL, PV_NONE,
1348 #endif
1349 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1350 {"iconstring", NULL, P_STRING|P_VI_DEF,
1351 #ifdef FEAT_TITLE
1352 (char_u *)&p_iconstring, PV_NONE,
1353 #else
1354 (char_u *)NULL, PV_NONE,
1355 #endif
1356 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1357 {"ignorecase", "ic", P_BOOL|P_VI_DEF,
1358 (char_u *)&p_ic, PV_NONE,
1359 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1360 {"imactivatekey","imak",P_STRING|P_VI_DEF,
1361 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
1362 (char_u *)&p_imak, PV_NONE,
1363 #else
1364 (char_u *)NULL, PV_NONE,
1365 #endif
1366 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1367 {"imcmdline", "imc", P_BOOL|P_VI_DEF,
1368 #ifdef USE_IM_CONTROL
1369 (char_u *)&p_imcmdline, PV_NONE,
1370 #else
1371 (char_u *)NULL, PV_NONE,
1372 #endif
1373 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1374 {"imdisable", "imd", P_BOOL|P_VI_DEF,
1375 #ifdef USE_IM_CONTROL
1376 (char_u *)&p_imdisable, PV_NONE,
1377 #else
1378 (char_u *)NULL, PV_NONE,
1379 #endif
1380 #ifdef __sgi
1381 {(char_u *)TRUE, (char_u *)0L}
1382 #else
1383 {(char_u *)FALSE, (char_u *)0L}
1384 #endif
1385 SCRIPTID_INIT},
1386 {"iminsert", "imi", P_NUM|P_VI_DEF,
1387 (char_u *)&p_iminsert, PV_IMI,
1388 #ifdef B_IMODE_IM
1389 {(char_u *)B_IMODE_IM, (char_u *)0L}
1390 #else
1391 {(char_u *)B_IMODE_NONE, (char_u *)0L}
1392 #endif
1393 SCRIPTID_INIT},
1394 {"imsearch", "ims", P_NUM|P_VI_DEF,
1395 (char_u *)&p_imsearch, PV_IMS,
1396 #ifdef B_IMODE_IM
1397 {(char_u *)B_IMODE_IM, (char_u *)0L}
1398 #else
1399 {(char_u *)B_IMODE_NONE, (char_u *)0L}
1400 #endif
1401 SCRIPTID_INIT},
1402 {"include", "inc", P_STRING|P_ALLOCED|P_VI_DEF,
1403 #ifdef FEAT_FIND_ID
1404 (char_u *)&p_inc, PV_INC,
1405 {(char_u *)"^\\s*#\\s*include", (char_u *)0L}
1406 #else
1407 (char_u *)NULL, PV_NONE,
1408 {(char_u *)0L, (char_u *)0L}
1409 #endif
1410 SCRIPTID_INIT},
1411 {"includeexpr", "inex", P_STRING|P_ALLOCED|P_VI_DEF,
1412 #if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
1413 (char_u *)&p_inex, PV_INEX,
1414 {(char_u *)"", (char_u *)0L}
1415 #else
1416 (char_u *)NULL, PV_NONE,
1417 {(char_u *)0L, (char_u *)0L}
1418 #endif
1419 SCRIPTID_INIT},
1420 {"incsearch", "is", P_BOOL|P_VI_DEF|P_VIM,
1421 (char_u *)&p_is, PV_NONE,
1422 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1423 {"indentexpr", "inde", P_STRING|P_ALLOCED|P_VI_DEF|P_VIM,
1424 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
1425 (char_u *)&p_inde, PV_INDE,
1426 {(char_u *)"", (char_u *)0L}
1427 #else
1428 (char_u *)NULL, PV_NONE,
1429 {(char_u *)0L, (char_u *)0L}
1430 #endif
1431 SCRIPTID_INIT},
1432 {"indentkeys", "indk", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
1433 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
1434 (char_u *)&p_indk, PV_INDK,
1435 {(char_u *)"0{,0},:,0#,!^F,o,O,e", (char_u *)0L}
1436 #else
1437 (char_u *)NULL, PV_NONE,
1438 {(char_u *)0L, (char_u *)0L}
1439 #endif
1440 SCRIPTID_INIT},
1441 {"infercase", "inf", P_BOOL|P_VI_DEF,
1442 (char_u *)&p_inf, PV_INF,
1443 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1444 {"insertmode", "im", P_BOOL|P_VI_DEF|P_VIM,
1445 (char_u *)&p_im, PV_NONE,
1446 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1447 {"isfname", "isf", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1448 (char_u *)&p_isf, PV_NONE,
1450 #ifdef BACKSLASH_IN_FILENAME
1451 /* Excluded are: & and ^ are special in cmd.exe
1452 * ( and ) are used in text separating fnames */
1453 (char_u *)"@,48-57,/,\\,.,-,_,+,,,#,$,%,{,},[,],:,@-@,!,~,=",
1454 #else
1455 # ifdef AMIGA
1456 (char_u *)"@,48-57,/,.,-,_,+,,,$,:",
1457 # else
1458 # ifdef VMS
1459 (char_u *)"@,48-57,/,.,-,_,+,,,#,$,%,<,>,[,],:,;,~",
1460 # else /* UNIX et al. */
1461 # ifdef EBCDIC
1462 (char_u *)"@,240-249,/,.,-,_,+,,,#,$,%,~,=",
1463 # else
1464 (char_u *)"@,48-57,/,.,-,_,+,,,#,$,%,~,=",
1465 # endif
1466 # endif
1467 # endif
1468 #endif
1469 (char_u *)0L} SCRIPTID_INIT},
1470 {"isident", "isi", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1471 (char_u *)&p_isi, PV_NONE,
1473 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
1474 (char_u *)"@,48-57,_,128-167,224-235",
1475 #else
1476 # ifdef EBCDIC
1477 /* TODO: EBCDIC Check this! @ == isalpha()*/
1478 (char_u *)"@,240-249,_,66-73,81-89,98-105,"
1479 "112-120,128,140-142,156,158,172,"
1480 "174,186,191,203-207,219-225,235-239,"
1481 "251-254",
1482 # else
1483 (char_u *)"@,48-57,_,192-255",
1484 # endif
1485 #endif
1486 (char_u *)0L} SCRIPTID_INIT},
1487 {"iskeyword", "isk", P_STRING|P_ALLOCED|P_VIM|P_COMMA|P_NODUP,
1488 (char_u *)&p_isk, PV_ISK,
1490 #ifdef EBCDIC
1491 (char_u *)"@,240-249,_",
1492 /* TODO: EBCDIC Check this! @ == isalpha()*/
1493 (char_u *)"@,240-249,_,66-73,81-89,98-105,"
1494 "112-120,128,140-142,156,158,172,"
1495 "174,186,191,203-207,219-225,235-239,"
1496 "251-254",
1497 #else
1498 (char_u *)"@,48-57,_",
1499 # if defined(MSDOS) || defined(MSWIN) || defined(OS2)
1500 (char_u *)"@,48-57,_,128-167,224-235"
1501 # else
1502 ISK_LATIN1
1503 # endif
1504 #endif
1505 } SCRIPTID_INIT},
1506 {"isprint", "isp", P_STRING|P_VI_DEF|P_RALL|P_COMMA|P_NODUP,
1507 (char_u *)&p_isp, PV_NONE,
1509 #if defined(MSDOS) || defined(MSWIN) || defined(OS2) \
1510 || (defined(MACOS) && !defined(MACOS_X)) \
1511 || defined(VMS)
1512 (char_u *)"@,~-255",
1513 #else
1514 # ifdef EBCDIC
1515 /* all chars above 63 are printable */
1516 (char_u *)"63-255",
1517 # else
1518 ISP_LATIN1,
1519 # endif
1520 #endif
1521 (char_u *)0L} SCRIPTID_INIT},
1522 {"joinspaces", "js", P_BOOL|P_VI_DEF|P_VIM,
1523 (char_u *)&p_js, PV_NONE,
1524 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1525 {"key", NULL, P_STRING|P_ALLOCED|P_VI_DEF|P_NO_MKRC,
1526 #ifdef FEAT_CRYPT
1527 (char_u *)&p_key, PV_KEY,
1528 {(char_u *)"", (char_u *)0L}
1529 #else
1530 (char_u *)NULL, PV_NONE,
1531 {(char_u *)0L, (char_u *)0L}
1532 #endif
1533 SCRIPTID_INIT},
1534 {"keymap", "kmp", P_STRING|P_ALLOCED|P_VI_DEF|P_RBUF|P_RSTAT|P_NFNAME|P_PRI_MKRC,
1535 #ifdef FEAT_KEYMAP
1536 (char_u *)&p_keymap, PV_KMAP,
1537 {(char_u *)"", (char_u *)0L}
1538 #else
1539 (char_u *)NULL, PV_NONE,
1540 {(char_u *)"", (char_u *)0L}
1541 #endif
1542 SCRIPTID_INIT},
1543 {"keymodel", "km", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1544 #ifdef FEAT_VISUAL
1545 (char_u *)&p_km, PV_NONE,
1546 #else
1547 (char_u *)NULL, PV_NONE,
1548 #endif
1549 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1550 {"keywordprg", "kp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1551 (char_u *)&p_kp, PV_KP,
1553 #if defined(MSDOS) || defined(MSWIN)
1554 (char_u *)":help",
1555 #else
1556 #ifdef VMS
1557 (char_u *)"help",
1558 #else
1559 # if defined(OS2)
1560 (char_u *)"view /",
1561 # else
1562 # ifdef USEMAN_S
1563 (char_u *)"man -s",
1564 # else
1565 (char_u *)"man",
1566 # endif
1567 # endif
1568 #endif
1569 #endif
1570 (char_u *)0L} SCRIPTID_INIT},
1571 {"langmap", "lmap", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1572 #ifdef FEAT_LANGMAP
1573 (char_u *)&p_langmap, PV_NONE,
1574 {(char_u *)"", /* unmatched } */
1575 #else
1576 (char_u *)NULL, PV_NONE,
1577 {(char_u *)NULL,
1578 #endif
1579 (char_u *)0L} SCRIPTID_INIT},
1580 {"langmenu", "lm", P_STRING|P_VI_DEF|P_NFNAME,
1581 #if defined(FEAT_MENU) && defined(FEAT_MULTI_LANG)
1582 (char_u *)&p_lm, PV_NONE,
1583 #else
1584 (char_u *)NULL, PV_NONE,
1585 #endif
1586 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1587 {"laststatus", "ls", P_NUM|P_VI_DEF|P_RALL,
1588 #ifdef FEAT_WINDOWS
1589 (char_u *)&p_ls, PV_NONE,
1590 #else
1591 (char_u *)NULL, PV_NONE,
1592 #endif
1593 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
1594 {"lazyredraw", "lz", P_BOOL|P_VI_DEF,
1595 (char_u *)&p_lz, PV_NONE,
1596 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1597 {"linebreak", "lbr", P_BOOL|P_VI_DEF|P_RWIN,
1598 #ifdef FEAT_LINEBREAK
1599 (char_u *)VAR_WIN, PV_LBR,
1600 #else
1601 (char_u *)NULL, PV_NONE,
1602 #endif
1603 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1604 {"lines", NULL, P_NUM|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RCLR,
1605 (char_u *)&Rows, PV_NONE,
1607 #if defined(MSDOS) || defined(WIN3264) || defined(OS2)
1608 (char_u *)25L,
1609 #else
1610 (char_u *)24L,
1611 #endif
1612 (char_u *)0L} SCRIPTID_INIT},
1613 {"linespace", "lsp", P_NUM|P_VI_DEF|P_RCLR,
1614 #ifdef FEAT_GUI
1615 (char_u *)&p_linespace, PV_NONE,
1616 #else
1617 (char_u *)NULL, PV_NONE,
1618 #endif
1619 #ifdef FEAT_GUI_W32
1620 {(char_u *)1L, (char_u *)0L}
1621 #else
1622 {(char_u *)0L, (char_u *)0L}
1623 #endif
1624 SCRIPTID_INIT},
1625 {"lisp", NULL, P_BOOL|P_VI_DEF,
1626 #ifdef FEAT_LISP
1627 (char_u *)&p_lisp, PV_LISP,
1628 #else
1629 (char_u *)NULL, PV_NONE,
1630 #endif
1631 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1632 {"lispwords", "lw", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1633 #ifdef FEAT_LISP
1634 (char_u *)&p_lispwords, PV_NONE,
1635 {(char_u *)LISPWORD_VALUE, (char_u *)0L}
1636 #else
1637 (char_u *)NULL, PV_NONE,
1638 {(char_u *)"", (char_u *)0L}
1639 #endif
1640 SCRIPTID_INIT},
1641 {"list", NULL, P_BOOL|P_VI_DEF|P_RWIN,
1642 (char_u *)VAR_WIN, PV_LIST,
1643 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1644 {"listchars", "lcs", P_STRING|P_VI_DEF|P_RALL|P_COMMA|P_NODUP,
1645 (char_u *)&p_lcs, PV_NONE,
1646 {(char_u *)"eol:$", (char_u *)0L} SCRIPTID_INIT},
1647 {"loadplugins", "lpl", P_BOOL|P_VI_DEF,
1648 (char_u *)&p_lpl, PV_NONE,
1649 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1650 #ifdef FEAT_GUI_MAC
1651 {"macatsui", NULL, P_BOOL|P_VI_DEF|P_RCLR,
1652 (char_u *)&p_macatsui, PV_NONE,
1653 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1654 #endif
1655 {"magic", NULL, P_BOOL|P_VI_DEF,
1656 (char_u *)&p_magic, PV_NONE,
1657 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1658 {"makeef", "mef", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1659 #ifdef FEAT_QUICKFIX
1660 (char_u *)&p_mef, PV_NONE,
1661 {(char_u *)"", (char_u *)0L}
1662 #else
1663 (char_u *)NULL, PV_NONE,
1664 {(char_u *)NULL, (char_u *)0L}
1665 #endif
1666 SCRIPTID_INIT},
1667 {"makeprg", "mp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1668 #ifdef FEAT_QUICKFIX
1669 (char_u *)&p_mp, PV_MP,
1670 # ifdef VMS
1671 {(char_u *)"MMS", (char_u *)0L}
1672 # else
1673 {(char_u *)"make", (char_u *)0L}
1674 # endif
1675 #else
1676 (char_u *)NULL, PV_NONE,
1677 {(char_u *)NULL, (char_u *)0L}
1678 #endif
1679 SCRIPTID_INIT},
1680 {"matchpairs", "mps", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
1681 (char_u *)&p_mps, PV_MPS,
1682 {(char_u *)"(:),{:},[:]", (char_u *)0L}
1683 SCRIPTID_INIT},
1684 {"matchtime", "mat", P_NUM|P_VI_DEF,
1685 (char_u *)&p_mat, PV_NONE,
1686 {(char_u *)5L, (char_u *)0L} SCRIPTID_INIT},
1687 {"maxcombine", "mco", P_NUM|P_VI_DEF,
1688 #ifdef FEAT_MBYTE
1689 (char_u *)&p_mco, PV_NONE,
1690 #else
1691 (char_u *)NULL, PV_NONE,
1692 #endif
1693 {(char_u *)2, (char_u *)0L} SCRIPTID_INIT},
1694 {"maxfuncdepth", "mfd", P_NUM|P_VI_DEF,
1695 #ifdef FEAT_EVAL
1696 (char_u *)&p_mfd, PV_NONE,
1697 #else
1698 (char_u *)NULL, PV_NONE,
1699 #endif
1700 {(char_u *)100L, (char_u *)0L} SCRIPTID_INIT},
1701 {"maxmapdepth", "mmd", P_NUM|P_VI_DEF,
1702 (char_u *)&p_mmd, PV_NONE,
1703 {(char_u *)1000L, (char_u *)0L} SCRIPTID_INIT},
1704 {"maxmem", "mm", P_NUM|P_VI_DEF,
1705 (char_u *)&p_mm, PV_NONE,
1706 {(char_u *)DFLT_MAXMEM, (char_u *)0L}
1707 SCRIPTID_INIT},
1708 {"maxmempattern","mmp", P_NUM|P_VI_DEF,
1709 (char_u *)&p_mmp, PV_NONE,
1710 {(char_u *)1000L, (char_u *)0L} SCRIPTID_INIT},
1711 {"maxmemtot", "mmt", P_NUM|P_VI_DEF,
1712 (char_u *)&p_mmt, PV_NONE,
1713 {(char_u *)DFLT_MAXMEMTOT, (char_u *)0L}
1714 SCRIPTID_INIT},
1715 {"menuitems", "mis", P_NUM|P_VI_DEF,
1716 #ifdef FEAT_MENU
1717 (char_u *)&p_mis, PV_NONE,
1718 #else
1719 (char_u *)NULL, PV_NONE,
1720 #endif
1721 {(char_u *)25L, (char_u *)0L} SCRIPTID_INIT},
1722 {"mesg", NULL, P_BOOL|P_VI_DEF,
1723 (char_u *)NULL, PV_NONE,
1724 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1725 {"mkspellmem", "msm", P_STRING|P_VI_DEF|P_EXPAND|P_SECURE,
1726 #ifdef FEAT_SPELL
1727 (char_u *)&p_msm, PV_NONE,
1728 {(char_u *)"460000,2000,500", (char_u *)0L}
1729 #else
1730 (char_u *)NULL, PV_NONE,
1731 {(char_u *)0L, (char_u *)0L}
1732 #endif
1733 SCRIPTID_INIT},
1734 {"modeline", "ml", P_BOOL|P_VIM,
1735 (char_u *)&p_ml, PV_ML,
1736 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
1737 {"modelines", "mls", P_NUM|P_VI_DEF,
1738 (char_u *)&p_mls, PV_NONE,
1739 {(char_u *)5L, (char_u *)0L} SCRIPTID_INIT},
1740 {"modifiable", "ma", P_BOOL|P_VI_DEF|P_NOGLOB,
1741 (char_u *)&p_ma, PV_MA,
1742 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1743 {"modified", "mod", P_BOOL|P_NO_MKRC|P_VI_DEF|P_RSTAT,
1744 (char_u *)&p_mod, PV_MOD,
1745 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1746 {"more", NULL, P_BOOL|P_VIM,
1747 (char_u *)&p_more, PV_NONE,
1748 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
1749 {"mouse", NULL, P_STRING|P_VI_DEF|P_FLAGLIST,
1750 (char_u *)&p_mouse, PV_NONE,
1752 #if defined(MSDOS) || defined(WIN3264)
1753 (char_u *)"a",
1754 #else
1755 (char_u *)"",
1756 #endif
1757 (char_u *)0L} SCRIPTID_INIT},
1758 {"mousefocus", "mousef", P_BOOL|P_VI_DEF,
1759 #ifdef FEAT_GUI
1760 (char_u *)&p_mousef, PV_NONE,
1761 #else
1762 (char_u *)NULL, PV_NONE,
1763 #endif
1764 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1765 {"mousehide", "mh", P_BOOL|P_VI_DEF,
1766 #ifdef FEAT_GUI
1767 (char_u *)&p_mh, PV_NONE,
1768 #else
1769 (char_u *)NULL, PV_NONE,
1770 #endif
1771 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1772 {"mousemodel", "mousem", P_STRING|P_VI_DEF,
1773 (char_u *)&p_mousem, PV_NONE,
1775 #if defined(MSDOS) || defined(MSWIN)
1776 (char_u *)"popup",
1777 #else
1778 # if defined(MACOS)
1779 (char_u *)"popup_setpos",
1780 # else
1781 (char_u *)"extend",
1782 # endif
1783 #endif
1784 (char_u *)0L} SCRIPTID_INIT},
1785 {"mouseshape", "mouses", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1786 #ifdef FEAT_MOUSESHAPE
1787 (char_u *)&p_mouseshape, PV_NONE,
1788 {(char_u *)"i-r:beam,s:updown,sd:udsizing,vs:leftright,vd:lrsizing,m:no,ml:up-arrow,v:rightup-arrow", (char_u *)0L}
1789 #else
1790 (char_u *)NULL, PV_NONE,
1791 {(char_u *)NULL, (char_u *)0L}
1792 #endif
1793 SCRIPTID_INIT},
1794 {"mousetime", "mouset", P_NUM|P_VI_DEF,
1795 (char_u *)&p_mouset, PV_NONE,
1796 {(char_u *)500L, (char_u *)0L} SCRIPTID_INIT},
1797 {"mzquantum", "mzq", P_NUM,
1798 #ifdef FEAT_MZSCHEME
1799 (char_u *)&p_mzq, PV_NONE,
1800 #else
1801 (char_u *)NULL, PV_NONE,
1802 #endif
1803 {(char_u *)100L, (char_u *)100L} SCRIPTID_INIT},
1804 {"novice", NULL, P_BOOL|P_VI_DEF,
1805 (char_u *)NULL, PV_NONE,
1806 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1807 {"nrformats", "nf", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
1808 (char_u *)&p_nf, PV_NF,
1809 {(char_u *)"octal,hex", (char_u *)0L}
1810 SCRIPTID_INIT},
1811 {"number", "nu", P_BOOL|P_VI_DEF|P_RWIN,
1812 (char_u *)VAR_WIN, PV_NU,
1813 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1814 {"numberwidth", "nuw", P_NUM|P_RWIN|P_VIM,
1815 #ifdef FEAT_LINEBREAK
1816 (char_u *)VAR_WIN, PV_NUW,
1817 #else
1818 (char_u *)NULL, PV_NONE,
1819 #endif
1820 {(char_u *)8L, (char_u *)4L} SCRIPTID_INIT},
1821 {"omnifunc", "ofu", P_STRING|P_ALLOCED|P_VI_DEF|P_SECURE,
1822 #ifdef FEAT_COMPL_FUNC
1823 (char_u *)&p_ofu, PV_OFU,
1824 {(char_u *)"", (char_u *)0L}
1825 #else
1826 (char_u *)NULL, PV_NONE,
1827 {(char_u *)0L, (char_u *)0L}
1828 #endif
1829 SCRIPTID_INIT},
1830 {"open", NULL, P_BOOL|P_VI_DEF,
1831 (char_u *)NULL, PV_NONE,
1832 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1833 {"opendevice", "odev", P_BOOL|P_VI_DEF,
1834 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
1835 (char_u *)&p_odev, PV_NONE,
1836 #else
1837 (char_u *)NULL, PV_NONE,
1838 #endif
1839 {(char_u *)FALSE, (char_u *)FALSE}
1840 SCRIPTID_INIT},
1841 {"operatorfunc", "opfunc", P_STRING|P_VI_DEF|P_SECURE,
1842 (char_u *)&p_opfunc, PV_NONE,
1843 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1844 {"optimize", "opt", P_BOOL|P_VI_DEF,
1845 (char_u *)NULL, PV_NONE,
1846 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1847 {"osfiletype", "oft", P_STRING|P_ALLOCED|P_VI_DEF,
1848 #ifdef FEAT_OSFILETYPE
1849 (char_u *)&p_oft, PV_OFT,
1850 {(char_u *)DFLT_OFT, (char_u *)0L}
1851 #else
1852 (char_u *)NULL, PV_NONE,
1853 {(char_u *)0L, (char_u *)0L}
1854 #endif
1855 SCRIPTID_INIT},
1856 {"paragraphs", "para", P_STRING|P_VI_DEF,
1857 (char_u *)&p_para, PV_NONE,
1858 {(char_u *)"IPLPPPQPP TPHPLIPpLpItpplpipbp",
1859 (char_u *)0L} SCRIPTID_INIT},
1860 {"paste", NULL, P_BOOL|P_VI_DEF|P_PRI_MKRC,
1861 (char_u *)&p_paste, PV_NONE,
1862 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1863 {"pastetoggle", "pt", P_STRING|P_VI_DEF,
1864 (char_u *)&p_pt, PV_NONE,
1865 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1866 {"patchexpr", "pex", P_STRING|P_VI_DEF|P_SECURE,
1867 #if defined(FEAT_DIFF) && defined(FEAT_EVAL)
1868 (char_u *)&p_pex, PV_NONE,
1869 {(char_u *)"", (char_u *)0L}
1870 #else
1871 (char_u *)NULL, PV_NONE,
1872 {(char_u *)0L, (char_u *)0L}
1873 #endif
1874 SCRIPTID_INIT},
1875 {"patchmode", "pm", P_STRING|P_VI_DEF|P_NFNAME,
1876 (char_u *)&p_pm, PV_NONE,
1877 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1878 {"path", "pa", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
1879 (char_u *)&p_path, PV_PATH,
1881 #if defined AMIGA || defined MSDOS || defined MSWIN
1882 (char_u *)".,,",
1883 #else
1884 # if defined(__EMX__)
1885 (char_u *)".,/emx/include,,",
1886 # else /* Unix, probably */
1887 (char_u *)".,/usr/include,,",
1888 # endif
1889 #endif
1890 (char_u *)0L} SCRIPTID_INIT},
1891 {"preserveindent", "pi", P_BOOL|P_VI_DEF|P_VIM,
1892 (char_u *)&p_pi, PV_PI,
1893 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1894 {"previewheight", "pvh", P_NUM|P_VI_DEF,
1895 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
1896 (char_u *)&p_pvh, PV_NONE,
1897 #else
1898 (char_u *)NULL, PV_NONE,
1899 #endif
1900 {(char_u *)12L, (char_u *)0L} SCRIPTID_INIT},
1901 {"previewwindow", "pvw", P_BOOL|P_VI_DEF|P_RSTAT|P_NOGLOB,
1902 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
1903 (char_u *)VAR_WIN, PV_PVW,
1904 #else
1905 (char_u *)NULL, PV_NONE,
1906 #endif
1907 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1908 {"printdevice", "pdev", P_STRING|P_VI_DEF|P_SECURE,
1909 #ifdef FEAT_PRINTER
1910 (char_u *)&p_pdev, PV_NONE,
1911 {(char_u *)"", (char_u *)0L}
1912 #else
1913 (char_u *)NULL, PV_NONE,
1914 {(char_u *)NULL, (char_u *)0L}
1915 #endif
1916 SCRIPTID_INIT},
1917 {"printencoding", "penc", P_STRING|P_VI_DEF,
1918 #ifdef FEAT_POSTSCRIPT
1919 (char_u *)&p_penc, PV_NONE,
1920 {(char_u *)"", (char_u *)0L}
1921 #else
1922 (char_u *)NULL, PV_NONE,
1923 {(char_u *)NULL, (char_u *)0L}
1924 #endif
1925 SCRIPTID_INIT},
1926 {"printexpr", "pexpr", P_STRING|P_VI_DEF,
1927 #ifdef FEAT_POSTSCRIPT
1928 (char_u *)&p_pexpr, PV_NONE,
1929 {(char_u *)"", (char_u *)0L}
1930 #else
1931 (char_u *)NULL, PV_NONE,
1932 {(char_u *)NULL, (char_u *)0L}
1933 #endif
1934 SCRIPTID_INIT},
1935 {"printfont", "pfn", P_STRING|P_VI_DEF,
1936 #ifdef FEAT_PRINTER
1937 (char_u *)&p_pfn, PV_NONE,
1939 # ifdef MSWIN
1940 (char_u *)"Courier_New:h10",
1941 # else
1942 (char_u *)"courier",
1943 # endif
1944 (char_u *)0L}
1945 #else
1946 (char_u *)NULL, PV_NONE,
1947 {(char_u *)NULL, (char_u *)0L}
1948 #endif
1949 SCRIPTID_INIT},
1950 {"printheader", "pheader", P_STRING|P_VI_DEF|P_GETTEXT,
1951 #ifdef FEAT_PRINTER
1952 (char_u *)&p_header, PV_NONE,
1953 {(char_u *)N_("%<%f%h%m%=Page %N"), (char_u *)0L}
1954 #else
1955 (char_u *)NULL, PV_NONE,
1956 {(char_u *)NULL, (char_u *)0L}
1957 #endif
1958 SCRIPTID_INIT},
1959 {"printmbcharset", "pmbcs", P_STRING|P_VI_DEF,
1960 #if defined(FEAT_POSTSCRIPT) && defined(FEAT_MBYTE)
1961 (char_u *)&p_pmcs, PV_NONE,
1962 {(char_u *)"", (char_u *)0L}
1963 #else
1964 (char_u *)NULL, PV_NONE,
1965 {(char_u *)NULL, (char_u *)0L}
1966 #endif
1967 SCRIPTID_INIT},
1968 {"printmbfont", "pmbfn", P_STRING|P_VI_DEF,
1969 #if defined(FEAT_POSTSCRIPT) && defined(FEAT_MBYTE)
1970 (char_u *)&p_pmfn, PV_NONE,
1971 {(char_u *)"", (char_u *)0L}
1972 #else
1973 (char_u *)NULL, PV_NONE,
1974 {(char_u *)NULL, (char_u *)0L}
1975 #endif
1976 SCRIPTID_INIT},
1977 {"printoptions", "popt", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1978 #ifdef FEAT_PRINTER
1979 (char_u *)&p_popt, PV_NONE,
1980 {(char_u *)"", (char_u *)0L}
1981 #else
1982 (char_u *)NULL, PV_NONE,
1983 {(char_u *)NULL, (char_u *)0L}
1984 #endif
1985 SCRIPTID_INIT},
1986 {"prompt", NULL, P_BOOL|P_VI_DEF,
1987 (char_u *)&p_prompt, PV_NONE,
1988 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1989 {"pumheight", "ph", P_NUM|P_VI_DEF,
1990 #ifdef FEAT_INS_EXPAND
1991 (char_u *)&p_ph, PV_NONE,
1992 #else
1993 (char_u *)NULL, PV_NONE,
1994 #endif
1995 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
1996 {"quoteescape", "qe", P_STRING|P_ALLOCED|P_VI_DEF,
1997 #ifdef FEAT_TEXTOBJ
1998 (char_u *)&p_qe, PV_QE,
1999 {(char_u *)"\\", (char_u *)0L}
2000 #else
2001 (char_u *)NULL, PV_NONE,
2002 {(char_u *)NULL, (char_u *)0L}
2003 #endif
2004 SCRIPTID_INIT},
2005 {"readonly", "ro", P_BOOL|P_VI_DEF|P_RSTAT|P_NOGLOB,
2006 (char_u *)&p_ro, PV_RO,
2007 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2008 {"redraw", NULL, P_BOOL|P_VI_DEF,
2009 (char_u *)NULL, PV_NONE,
2010 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2011 {"redrawtime", "rdt", P_NUM|P_VI_DEF,
2012 #ifdef FEAT_RELTIME
2013 (char_u *)&p_rdt, PV_NONE,
2014 #else
2015 (char_u *)NULL, PV_NONE,
2016 #endif
2017 {(char_u *)2000L, (char_u *)0L} SCRIPTID_INIT},
2018 {"relativenumber", "rnu", P_BOOL|P_VI_DEF|P_RWIN,
2019 (char_u *)VAR_WIN, PV_RNU,
2020 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2021 {"remap", NULL, P_BOOL|P_VI_DEF,
2022 (char_u *)&p_remap, PV_NONE,
2023 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2024 {"report", NULL, P_NUM|P_VI_DEF,
2025 (char_u *)&p_report, PV_NONE,
2026 {(char_u *)2L, (char_u *)0L} SCRIPTID_INIT},
2027 {"restorescreen", "rs", P_BOOL|P_VI_DEF,
2028 #ifdef WIN3264
2029 (char_u *)&p_rs, PV_NONE,
2030 #else
2031 (char_u *)NULL, PV_NONE,
2032 #endif
2033 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2034 {"revins", "ri", P_BOOL|P_VI_DEF|P_VIM,
2035 #ifdef FEAT_RIGHTLEFT
2036 (char_u *)&p_ri, PV_NONE,
2037 #else
2038 (char_u *)NULL, PV_NONE,
2039 #endif
2040 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2041 {"rightleft", "rl", P_BOOL|P_VI_DEF|P_RWIN,
2042 #ifdef FEAT_RIGHTLEFT
2043 (char_u *)VAR_WIN, PV_RL,
2044 #else
2045 (char_u *)NULL, PV_NONE,
2046 #endif
2047 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2048 {"rightleftcmd", "rlc", P_STRING|P_ALLOCED|P_VI_DEF|P_RWIN,
2049 #ifdef FEAT_RIGHTLEFT
2050 (char_u *)VAR_WIN, PV_RLC,
2051 {(char_u *)"search", (char_u *)NULL}
2052 #else
2053 (char_u *)NULL, PV_NONE,
2054 {(char_u *)NULL, (char_u *)0L}
2055 #endif
2056 SCRIPTID_INIT},
2057 {"ruler", "ru", P_BOOL|P_VI_DEF|P_VIM|P_RSTAT,
2058 #ifdef FEAT_CMDL_INFO
2059 (char_u *)&p_ru, PV_NONE,
2060 #else
2061 (char_u *)NULL, PV_NONE,
2062 #endif
2063 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2064 {"rulerformat", "ruf", P_STRING|P_VI_DEF|P_ALLOCED|P_RSTAT,
2065 #ifdef FEAT_STL_OPT
2066 (char_u *)&p_ruf, PV_NONE,
2067 #else
2068 (char_u *)NULL, PV_NONE,
2069 #endif
2070 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2071 {"runtimepath", "rtp", P_STRING|P_VI_DEF|P_EXPAND|P_COMMA|P_NODUP|P_SECURE,
2072 (char_u *)&p_rtp, PV_NONE,
2073 {(char_u *)DFLT_RUNTIMEPATH, (char_u *)0L}
2074 SCRIPTID_INIT},
2075 {"scroll", "scr", P_NUM|P_NO_MKRC|P_VI_DEF,
2076 (char_u *)VAR_WIN, PV_SCROLL,
2077 {(char_u *)12L, (char_u *)0L} SCRIPTID_INIT},
2078 {"scrollbind", "scb", P_BOOL|P_VI_DEF,
2079 #ifdef FEAT_SCROLLBIND
2080 (char_u *)VAR_WIN, PV_SCBIND,
2081 #else
2082 (char_u *)NULL, PV_NONE,
2083 #endif
2084 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2085 {"scrolljump", "sj", P_NUM|P_VI_DEF|P_VIM,
2086 (char_u *)&p_sj, PV_NONE,
2087 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
2088 {"scrolloff", "so", P_NUM|P_VI_DEF|P_VIM|P_RALL,
2089 (char_u *)&p_so, PV_NONE,
2090 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2091 {"scrollopt", "sbo", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2092 #ifdef FEAT_SCROLLBIND
2093 (char_u *)&p_sbo, PV_NONE,
2094 {(char_u *)"ver,jump", (char_u *)0L}
2095 #else
2096 (char_u *)NULL, PV_NONE,
2097 {(char_u *)0L, (char_u *)0L}
2098 #endif
2099 SCRIPTID_INIT},
2100 {"sections", "sect", P_STRING|P_VI_DEF,
2101 (char_u *)&p_sections, PV_NONE,
2102 {(char_u *)"SHNHH HUnhsh", (char_u *)0L}
2103 SCRIPTID_INIT},
2104 {"secure", NULL, P_BOOL|P_VI_DEF|P_SECURE,
2105 (char_u *)&p_secure, PV_NONE,
2106 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2107 {"selection", "sel", P_STRING|P_VI_DEF,
2108 #ifdef FEAT_VISUAL
2109 (char_u *)&p_sel, PV_NONE,
2110 #else
2111 (char_u *)NULL, PV_NONE,
2112 #endif
2113 {(char_u *)"inclusive", (char_u *)0L}
2114 SCRIPTID_INIT},
2115 {"selectmode", "slm", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2116 #ifdef FEAT_VISUAL
2117 (char_u *)&p_slm, PV_NONE,
2118 #else
2119 (char_u *)NULL, PV_NONE,
2120 #endif
2121 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2122 {"sessionoptions", "ssop", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2123 #ifdef FEAT_SESSION
2124 (char_u *)&p_ssop, PV_NONE,
2125 {(char_u *)"blank,buffers,curdir,folds,help,options,tabpages,winsize",
2126 (char_u *)0L}
2127 #else
2128 (char_u *)NULL, PV_NONE,
2129 {(char_u *)0L, (char_u *)0L}
2130 #endif
2131 SCRIPTID_INIT},
2132 {"shell", "sh", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
2133 (char_u *)&p_sh, PV_NONE,
2135 #ifdef VMS
2136 (char_u *)"-",
2137 #else
2138 # if defined(MSDOS)
2139 (char_u *)"command",
2140 # else
2141 # if defined(WIN16)
2142 (char_u *)"command.com",
2143 # else
2144 # if defined(WIN3264)
2145 (char_u *)"", /* set in set_init_1() */
2146 # else
2147 # if defined(OS2)
2148 (char_u *)"cmd.exe",
2149 # else
2150 # if defined(ARCHIE)
2151 (char_u *)"gos",
2152 # else
2153 (char_u *)"sh",
2154 # endif
2155 # endif
2156 # endif
2157 # endif
2158 # endif
2159 #endif /* VMS */
2160 (char_u *)0L} SCRIPTID_INIT},
2161 {"shellcmdflag","shcf", P_STRING|P_VI_DEF|P_SECURE,
2162 (char_u *)&p_shcf, PV_NONE,
2164 #if defined(MSDOS) || defined(MSWIN)
2165 (char_u *)"/c",
2166 #else
2167 # if defined(OS2)
2168 (char_u *)"/c",
2169 # else
2170 (char_u *)"-c",
2171 # endif
2172 #endif
2173 (char_u *)0L} SCRIPTID_INIT},
2174 {"shellpipe", "sp", P_STRING|P_VI_DEF|P_SECURE,
2175 #ifdef FEAT_QUICKFIX
2176 (char_u *)&p_sp, PV_NONE,
2178 #if defined(UNIX) || defined(OS2)
2179 # ifdef ARCHIE
2180 (char_u *)"2>",
2181 # else
2182 (char_u *)"| tee",
2183 # endif
2184 #else
2185 (char_u *)">",
2186 #endif
2187 (char_u *)0L}
2188 #else
2189 (char_u *)NULL, PV_NONE,
2190 {(char_u *)0L, (char_u *)0L}
2191 #endif
2192 SCRIPTID_INIT},
2193 {"shellquote", "shq", P_STRING|P_VI_DEF|P_SECURE,
2194 (char_u *)&p_shq, PV_NONE,
2195 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2196 {"shellredir", "srr", P_STRING|P_VI_DEF|P_SECURE,
2197 (char_u *)&p_srr, PV_NONE,
2198 {(char_u *)">", (char_u *)0L} SCRIPTID_INIT},
2199 {"shellslash", "ssl", P_BOOL|P_VI_DEF,
2200 #ifdef BACKSLASH_IN_FILENAME
2201 (char_u *)&p_ssl, PV_NONE,
2202 #else
2203 (char_u *)NULL, PV_NONE,
2204 #endif
2205 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2206 {"shelltemp", "stmp", P_BOOL,
2207 (char_u *)&p_stmp, PV_NONE,
2208 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
2209 {"shelltype", "st", P_NUM|P_VI_DEF,
2210 #ifdef AMIGA
2211 (char_u *)&p_st, PV_NONE,
2212 #else
2213 (char_u *)NULL, PV_NONE,
2214 #endif
2215 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2216 {"shellxquote", "sxq", P_STRING|P_VI_DEF|P_SECURE,
2217 (char_u *)&p_sxq, PV_NONE,
2219 #if defined(UNIX) && defined(USE_SYSTEM) && !defined(__EMX__)
2220 (char_u *)"\"",
2221 #else
2222 (char_u *)"",
2223 #endif
2224 (char_u *)0L} SCRIPTID_INIT},
2225 {"shiftround", "sr", P_BOOL|P_VI_DEF|P_VIM,
2226 (char_u *)&p_sr, PV_NONE,
2227 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2228 {"shiftwidth", "sw", P_NUM|P_VI_DEF,
2229 (char_u *)&p_sw, PV_SW,
2230 {(char_u *)8L, (char_u *)0L} SCRIPTID_INIT},
2231 {"shortmess", "shm", P_STRING|P_VIM|P_FLAGLIST,
2232 (char_u *)&p_shm, PV_NONE,
2233 {(char_u *)"", (char_u *)"filnxtToO"}
2234 SCRIPTID_INIT},
2235 {"shortname", "sn", P_BOOL|P_VI_DEF,
2236 #ifdef SHORT_FNAME
2237 (char_u *)NULL, PV_NONE,
2238 #else
2239 (char_u *)&p_sn, PV_SN,
2240 #endif
2241 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2242 {"showbreak", "sbr", P_STRING|P_VI_DEF|P_RALL,
2243 #ifdef FEAT_LINEBREAK
2244 (char_u *)&p_sbr, PV_NONE,
2245 #else
2246 (char_u *)NULL, PV_NONE,
2247 #endif
2248 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2249 {"showcmd", "sc", P_BOOL|P_VIM,
2250 #ifdef FEAT_CMDL_INFO
2251 (char_u *)&p_sc, PV_NONE,
2252 #else
2253 (char_u *)NULL, PV_NONE,
2254 #endif
2255 {(char_u *)FALSE,
2256 #ifdef UNIX
2257 (char_u *)FALSE
2258 #else
2259 (char_u *)TRUE
2260 #endif
2261 } SCRIPTID_INIT},
2262 {"showfulltag", "sft", P_BOOL|P_VI_DEF,
2263 (char_u *)&p_sft, PV_NONE,
2264 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2265 {"showmatch", "sm", P_BOOL|P_VI_DEF,
2266 (char_u *)&p_sm, PV_NONE,
2267 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2268 {"showmode", "smd", P_BOOL|P_VIM,
2269 (char_u *)&p_smd, PV_NONE,
2270 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
2271 {"showtabline", "stal", P_NUM|P_VI_DEF|P_RALL,
2272 #ifdef FEAT_WINDOWS
2273 (char_u *)&p_stal, PV_NONE,
2274 #else
2275 (char_u *)NULL, PV_NONE,
2276 #endif
2277 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
2278 {"sidescroll", "ss", P_NUM|P_VI_DEF,
2279 (char_u *)&p_ss, PV_NONE,
2280 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2281 {"sidescrolloff", "siso", P_NUM|P_VI_DEF|P_VIM|P_RBUF,
2282 (char_u *)&p_siso, PV_NONE,
2283 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2284 {"slowopen", "slow", P_BOOL|P_VI_DEF,
2285 (char_u *)NULL, PV_NONE,
2286 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2287 {"smartcase", "scs", P_BOOL|P_VI_DEF|P_VIM,
2288 (char_u *)&p_scs, PV_NONE,
2289 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2290 {"smartindent", "si", P_BOOL|P_VI_DEF|P_VIM,
2291 #ifdef FEAT_SMARTINDENT
2292 (char_u *)&p_si, PV_SI,
2293 #else
2294 (char_u *)NULL, PV_NONE,
2295 #endif
2296 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2297 {"smarttab", "sta", P_BOOL|P_VI_DEF|P_VIM,
2298 (char_u *)&p_sta, PV_NONE,
2299 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2300 {"softtabstop", "sts", P_NUM|P_VI_DEF|P_VIM,
2301 (char_u *)&p_sts, PV_STS,
2302 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2303 {"sourceany", NULL, P_BOOL|P_VI_DEF,
2304 (char_u *)NULL, PV_NONE,
2305 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2306 {"spell", NULL, P_BOOL|P_VI_DEF|P_RWIN,
2307 #ifdef FEAT_SPELL
2308 (char_u *)VAR_WIN, PV_SPELL,
2309 #else
2310 (char_u *)NULL, PV_NONE,
2311 #endif
2312 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2313 {"spellcapcheck", "spc", P_STRING|P_ALLOCED|P_VI_DEF|P_RBUF,
2314 #ifdef FEAT_SPELL
2315 (char_u *)&p_spc, PV_SPC,
2316 {(char_u *)"[.?!]\\_[\\])'\" ]\\+", (char_u *)0L}
2317 #else
2318 (char_u *)NULL, PV_NONE,
2319 {(char_u *)0L, (char_u *)0L}
2320 #endif
2321 SCRIPTID_INIT},
2322 {"spellfile", "spf", P_STRING|P_EXPAND|P_ALLOCED|P_VI_DEF|P_SECURE|P_COMMA,
2323 #ifdef FEAT_SPELL
2324 (char_u *)&p_spf, PV_SPF,
2325 {(char_u *)"", (char_u *)0L}
2326 #else
2327 (char_u *)NULL, PV_NONE,
2328 {(char_u *)0L, (char_u *)0L}
2329 #endif
2330 SCRIPTID_INIT},
2331 {"spelllang", "spl", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_RBUF|P_EXPAND,
2332 #ifdef FEAT_SPELL
2333 (char_u *)&p_spl, PV_SPL,
2334 {(char_u *)"en", (char_u *)0L}
2335 #else
2336 (char_u *)NULL, PV_NONE,
2337 {(char_u *)0L, (char_u *)0L}
2338 #endif
2339 SCRIPTID_INIT},
2340 {"spellsuggest", "sps", P_STRING|P_VI_DEF|P_EXPAND|P_SECURE|P_COMMA,
2341 #ifdef FEAT_SPELL
2342 (char_u *)&p_sps, PV_NONE,
2343 {(char_u *)"best", (char_u *)0L}
2344 #else
2345 (char_u *)NULL, PV_NONE,
2346 {(char_u *)0L, (char_u *)0L}
2347 #endif
2348 SCRIPTID_INIT},
2349 {"splitbelow", "sb", P_BOOL|P_VI_DEF,
2350 #ifdef FEAT_WINDOWS
2351 (char_u *)&p_sb, PV_NONE,
2352 #else
2353 (char_u *)NULL, PV_NONE,
2354 #endif
2355 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2356 {"splitright", "spr", P_BOOL|P_VI_DEF,
2357 #ifdef FEAT_VERTSPLIT
2358 (char_u *)&p_spr, PV_NONE,
2359 #else
2360 (char_u *)NULL, PV_NONE,
2361 #endif
2362 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2363 {"startofline", "sol", P_BOOL|P_VI_DEF|P_VIM,
2364 (char_u *)&p_sol, PV_NONE,
2365 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2366 {"statusline" ,"stl", P_STRING|P_VI_DEF|P_ALLOCED|P_RSTAT,
2367 #ifdef FEAT_STL_OPT
2368 (char_u *)&p_stl, PV_STL,
2369 #else
2370 (char_u *)NULL, PV_NONE,
2371 #endif
2372 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2373 {"suffixes", "su", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2374 (char_u *)&p_su, PV_NONE,
2375 {(char_u *)".bak,~,.o,.h,.info,.swp,.obj",
2376 (char_u *)0L} SCRIPTID_INIT},
2377 {"suffixesadd", "sua", P_STRING|P_VI_DEF|P_ALLOCED|P_COMMA|P_NODUP,
2378 #ifdef FEAT_SEARCHPATH
2379 (char_u *)&p_sua, PV_SUA,
2380 {(char_u *)"", (char_u *)0L}
2381 #else
2382 (char_u *)NULL, PV_NONE,
2383 {(char_u *)0L, (char_u *)0L}
2384 #endif
2385 SCRIPTID_INIT},
2386 {"swapfile", "swf", P_BOOL|P_VI_DEF|P_RSTAT,
2387 (char_u *)&p_swf, PV_SWF,
2388 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2389 {"swapsync", "sws", P_STRING|P_VI_DEF,
2390 (char_u *)&p_sws, PV_NONE,
2391 {(char_u *)"fsync", (char_u *)0L} SCRIPTID_INIT},
2392 {"switchbuf", "swb", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2393 (char_u *)&p_swb, PV_NONE,
2394 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2395 {"synmaxcol", "smc", P_NUM|P_VI_DEF|P_RBUF,
2396 #ifdef FEAT_SYN_HL
2397 (char_u *)&p_smc, PV_SMC,
2398 {(char_u *)3000L, (char_u *)0L}
2399 #else
2400 (char_u *)NULL, PV_NONE,
2401 {(char_u *)0L, (char_u *)0L}
2402 #endif
2403 SCRIPTID_INIT},
2404 {"syntax", "syn", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB|P_NFNAME,
2405 #ifdef FEAT_SYN_HL
2406 (char_u *)&p_syn, PV_SYN,
2407 {(char_u *)"", (char_u *)0L}
2408 #else
2409 (char_u *)NULL, PV_NONE,
2410 {(char_u *)0L, (char_u *)0L}
2411 #endif
2412 SCRIPTID_INIT},
2413 {"tabline", "tal", P_STRING|P_VI_DEF|P_RALL,
2414 #ifdef FEAT_STL_OPT
2415 (char_u *)&p_tal, PV_NONE,
2416 #else
2417 (char_u *)NULL, PV_NONE,
2418 #endif
2419 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2420 {"tabpagemax", "tpm", P_NUM|P_VI_DEF,
2421 #ifdef FEAT_WINDOWS
2422 (char_u *)&p_tpm, PV_NONE,
2423 #else
2424 (char_u *)NULL, PV_NONE,
2425 #endif
2426 {(char_u *)10L, (char_u *)0L} SCRIPTID_INIT},
2427 {"tabstop", "ts", P_NUM|P_VI_DEF|P_RBUF,
2428 (char_u *)&p_ts, PV_TS,
2429 {(char_u *)8L, (char_u *)0L} SCRIPTID_INIT},
2430 {"tagbsearch", "tbs", P_BOOL|P_VI_DEF,
2431 (char_u *)&p_tbs, PV_NONE,
2432 #ifdef VMS /* binary searching doesn't appear to work on VMS */
2433 {(char_u *)0L, (char_u *)0L}
2434 #else
2435 {(char_u *)TRUE, (char_u *)0L}
2436 #endif
2437 SCRIPTID_INIT},
2438 {"taglength", "tl", P_NUM|P_VI_DEF,
2439 (char_u *)&p_tl, PV_NONE,
2440 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2441 {"tagrelative", "tr", P_BOOL|P_VIM,
2442 (char_u *)&p_tr, PV_NONE,
2443 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
2444 {"tags", "tag", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
2445 (char_u *)&p_tags, PV_TAGS,
2447 #if defined(FEAT_EMACS_TAGS) && !defined(CASE_INSENSITIVE_FILENAME)
2448 (char_u *)"./tags,./TAGS,tags,TAGS",
2449 #else
2450 (char_u *)"./tags,tags",
2451 #endif
2452 (char_u *)0L} SCRIPTID_INIT},
2453 {"tagstack", "tgst", P_BOOL|P_VI_DEF,
2454 (char_u *)&p_tgst, PV_NONE,
2455 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2456 {"term", NULL, P_STRING|P_EXPAND|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RALL,
2457 (char_u *)&T_NAME, PV_NONE,
2458 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2459 {"termbidi", "tbidi", P_BOOL|P_VI_DEF,
2460 #ifdef FEAT_ARABIC
2461 (char_u *)&p_tbidi, PV_NONE,
2462 #else
2463 (char_u *)NULL, PV_NONE,
2464 #endif
2465 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2466 {"termencoding", "tenc", P_STRING|P_VI_DEF|P_RCLR,
2467 #ifdef FEAT_MBYTE
2468 (char_u *)&p_tenc, PV_NONE,
2469 {(char_u *)"", (char_u *)0L}
2470 #else
2471 (char_u *)NULL, PV_NONE,
2472 {(char_u *)0L, (char_u *)0L}
2473 #endif
2474 SCRIPTID_INIT},
2475 {"terse", NULL, P_BOOL|P_VI_DEF,
2476 (char_u *)&p_terse, PV_NONE,
2477 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2478 {"textauto", "ta", P_BOOL|P_VIM,
2479 (char_u *)&p_ta, PV_NONE,
2480 {(char_u *)DFLT_TEXTAUTO, (char_u *)TRUE}
2481 SCRIPTID_INIT},
2482 {"textmode", "tx", P_BOOL|P_VI_DEF|P_NO_MKRC,
2483 (char_u *)&p_tx, PV_TX,
2485 #ifdef USE_CRNL
2486 (char_u *)TRUE,
2487 #else
2488 (char_u *)FALSE,
2489 #endif
2490 (char_u *)0L} SCRIPTID_INIT},
2491 {"textwidth", "tw", P_NUM|P_VI_DEF|P_VIM,
2492 (char_u *)&p_tw, PV_TW,
2493 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2494 {"thesaurus", "tsr", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
2495 #ifdef FEAT_INS_EXPAND
2496 (char_u *)&p_tsr, PV_TSR,
2497 #else
2498 (char_u *)NULL, PV_NONE,
2499 #endif
2500 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2501 {"tildeop", "top", P_BOOL|P_VI_DEF|P_VIM,
2502 (char_u *)&p_to, PV_NONE,
2503 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2504 {"timeout", "to", P_BOOL|P_VI_DEF,
2505 (char_u *)&p_timeout, PV_NONE,
2506 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2507 {"timeoutlen", "tm", P_NUM|P_VI_DEF,
2508 (char_u *)&p_tm, PV_NONE,
2509 {(char_u *)1000L, (char_u *)0L} SCRIPTID_INIT},
2510 {"title", NULL, P_BOOL|P_VI_DEF,
2511 #ifdef FEAT_TITLE
2512 (char_u *)&p_title, PV_NONE,
2513 #else
2514 (char_u *)NULL, PV_NONE,
2515 #endif
2516 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2517 {"titlelen", NULL, P_NUM|P_VI_DEF,
2518 #ifdef FEAT_TITLE
2519 (char_u *)&p_titlelen, PV_NONE,
2520 #else
2521 (char_u *)NULL, PV_NONE,
2522 #endif
2523 {(char_u *)85L, (char_u *)0L} SCRIPTID_INIT},
2524 {"titleold", NULL, P_STRING|P_VI_DEF|P_GETTEXT|P_SECURE|P_NO_MKRC,
2525 #ifdef FEAT_TITLE
2526 (char_u *)&p_titleold, PV_NONE,
2527 {(char_u *)N_("Thanks for flying Vim"),
2528 (char_u *)0L}
2529 #else
2530 (char_u *)NULL, PV_NONE,
2531 {(char_u *)0L, (char_u *)0L}
2532 #endif
2533 SCRIPTID_INIT},
2534 {"titlestring", NULL, P_STRING|P_VI_DEF,
2535 #ifdef FEAT_TITLE
2536 (char_u *)&p_titlestring, PV_NONE,
2537 #else
2538 (char_u *)NULL, PV_NONE,
2539 #endif
2540 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2541 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
2542 {"toolbar", "tb", P_STRING|P_COMMA|P_VI_DEF|P_NODUP,
2543 (char_u *)&p_toolbar, PV_NONE,
2544 {(char_u *)"icons,tooltips", (char_u *)0L}
2545 SCRIPTID_INIT},
2546 #endif
2547 #if defined(FEAT_TOOLBAR) && defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)
2548 {"toolbariconsize", "tbis", P_STRING|P_VI_DEF,
2549 (char_u *)&p_tbis, PV_NONE,
2550 {(char_u *)"small", (char_u *)0L} SCRIPTID_INIT},
2551 #endif
2552 {"ttimeout", NULL, P_BOOL|P_VI_DEF|P_VIM,
2553 (char_u *)&p_ttimeout, PV_NONE,
2554 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2555 {"ttimeoutlen", "ttm", P_NUM|P_VI_DEF,
2556 (char_u *)&p_ttm, PV_NONE,
2557 {(char_u *)-1L, (char_u *)0L} SCRIPTID_INIT},
2558 {"ttybuiltin", "tbi", P_BOOL|P_VI_DEF,
2559 (char_u *)&p_tbi, PV_NONE,
2560 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2561 {"ttyfast", "tf", P_BOOL|P_NO_MKRC|P_VI_DEF,
2562 (char_u *)&p_tf, PV_NONE,
2563 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2564 {"ttymouse", "ttym", P_STRING|P_NODEFAULT|P_NO_MKRC|P_VI_DEF,
2565 #if defined(FEAT_MOUSE) && (defined(UNIX) || defined(VMS))
2566 (char_u *)&p_ttym, PV_NONE,
2567 #else
2568 (char_u *)NULL, PV_NONE,
2569 #endif
2570 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2571 {"ttyscroll", "tsl", P_NUM|P_VI_DEF,
2572 (char_u *)&p_ttyscroll, PV_NONE,
2573 {(char_u *)999L, (char_u *)0L} SCRIPTID_INIT},
2574 {"ttytype", "tty", P_STRING|P_EXPAND|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RALL,
2575 (char_u *)&T_NAME, PV_NONE,
2576 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2577 {"undolevels", "ul", P_NUM|P_VI_DEF,
2578 (char_u *)&p_ul, PV_NONE,
2580 #if defined(UNIX) || defined(WIN3264) || defined(OS2) || defined(VMS)
2581 (char_u *)1000L,
2582 #else
2583 (char_u *)100L,
2584 #endif
2585 (char_u *)0L} SCRIPTID_INIT},
2586 {"updatecount", "uc", P_NUM|P_VI_DEF,
2587 (char_u *)&p_uc, PV_NONE,
2588 {(char_u *)200L, (char_u *)0L} SCRIPTID_INIT},
2589 {"updatetime", "ut", P_NUM|P_VI_DEF,
2590 (char_u *)&p_ut, PV_NONE,
2591 {(char_u *)4000L, (char_u *)0L} SCRIPTID_INIT},
2592 {"verbose", "vbs", P_NUM|P_VI_DEF,
2593 (char_u *)&p_verbose, PV_NONE,
2594 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2595 {"verbosefile", "vfile", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
2596 (char_u *)&p_vfile, PV_NONE,
2597 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2598 {"viewdir", "vdir", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
2599 #ifdef FEAT_SESSION
2600 (char_u *)&p_vdir, PV_NONE,
2601 {(char_u *)DFLT_VDIR, (char_u *)0L}
2602 #else
2603 (char_u *)NULL, PV_NONE,
2604 {(char_u *)0L, (char_u *)0L}
2605 #endif
2606 SCRIPTID_INIT},
2607 {"viewoptions", "vop", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2608 #ifdef FEAT_SESSION
2609 (char_u *)&p_vop, PV_NONE,
2610 {(char_u *)"folds,options,cursor", (char_u *)0L}
2611 #else
2612 (char_u *)NULL, PV_NONE,
2613 {(char_u *)0L, (char_u *)0L}
2614 #endif
2615 SCRIPTID_INIT},
2616 {"viminfo", "vi", P_STRING|P_COMMA|P_NODUP|P_SECURE,
2617 #ifdef FEAT_VIMINFO
2618 (char_u *)&p_viminfo, PV_NONE,
2619 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
2620 {(char_u *)"", (char_u *)"'100,<50,s10,h,rA:,rB:"}
2621 #else
2622 # ifdef AMIGA
2623 {(char_u *)"",
2624 (char_u *)"'100,<50,s10,h,rdf0:,rdf1:,rdf2:"}
2625 # else
2626 {(char_u *)"", (char_u *)"'100,<50,s10,h"}
2627 # endif
2628 #endif
2629 #else
2630 (char_u *)NULL, PV_NONE,
2631 {(char_u *)0L, (char_u *)0L}
2632 #endif
2633 SCRIPTID_INIT},
2634 {"virtualedit", "ve", P_STRING|P_COMMA|P_NODUP|P_VI_DEF|P_VIM,
2635 #ifdef FEAT_VIRTUALEDIT
2636 (char_u *)&p_ve, PV_NONE,
2637 {(char_u *)"", (char_u *)""}
2638 #else
2639 (char_u *)NULL, PV_NONE,
2640 {(char_u *)0L, (char_u *)0L}
2641 #endif
2642 SCRIPTID_INIT},
2643 {"visualbell", "vb", P_BOOL|P_VI_DEF,
2644 (char_u *)&p_vb, PV_NONE,
2645 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2646 {"w300", NULL, P_NUM|P_VI_DEF,
2647 (char_u *)NULL, PV_NONE,
2648 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2649 {"w1200", NULL, P_NUM|P_VI_DEF,
2650 (char_u *)NULL, PV_NONE,
2651 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2652 {"w9600", NULL, P_NUM|P_VI_DEF,
2653 (char_u *)NULL, PV_NONE,
2654 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2655 {"warn", NULL, P_BOOL|P_VI_DEF,
2656 (char_u *)&p_warn, PV_NONE,
2657 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2658 {"weirdinvert", "wiv", P_BOOL|P_VI_DEF|P_RCLR,
2659 (char_u *)&p_wiv, PV_NONE,
2660 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2661 {"whichwrap", "ww", P_STRING|P_VIM|P_COMMA|P_FLAGLIST,
2662 (char_u *)&p_ww, PV_NONE,
2663 {(char_u *)"", (char_u *)"b,s"} SCRIPTID_INIT},
2664 {"wildchar", "wc", P_NUM|P_VIM,
2665 (char_u *)&p_wc, PV_NONE,
2666 {(char_u *)(long)Ctrl_E, (char_u *)(long)TAB}
2667 SCRIPTID_INIT},
2668 {"wildcharm", "wcm", P_NUM|P_VI_DEF,
2669 (char_u *)&p_wcm, PV_NONE,
2670 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2671 {"wildignore", "wig", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2672 #ifdef FEAT_WILDIGN
2673 (char_u *)&p_wig, PV_NONE,
2674 #else
2675 (char_u *)NULL, PV_NONE,
2676 #endif
2677 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2678 {"wildmenu", "wmnu", P_BOOL|P_VI_DEF,
2679 #ifdef FEAT_WILDMENU
2680 (char_u *)&p_wmnu, PV_NONE,
2681 #else
2682 (char_u *)NULL, PV_NONE,
2683 #endif
2684 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2685 {"wildmode", "wim", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2686 (char_u *)&p_wim, PV_NONE,
2687 {(char_u *)"full", (char_u *)0L} SCRIPTID_INIT},
2688 {"wildoptions", "wop", P_STRING|P_VI_DEF,
2689 #ifdef FEAT_CMDL_COMPL
2690 (char_u *)&p_wop, PV_NONE,
2691 {(char_u *)"", (char_u *)0L}
2692 #else
2693 (char_u *)NULL, PV_NONE,
2694 {(char_u *)NULL, (char_u *)0L}
2695 #endif
2696 SCRIPTID_INIT},
2697 {"winaltkeys", "wak", P_STRING|P_VI_DEF,
2698 #ifdef FEAT_WAK
2699 (char_u *)&p_wak, PV_NONE,
2700 {(char_u *)"menu", (char_u *)0L}
2701 #else
2702 (char_u *)NULL, PV_NONE,
2703 {(char_u *)NULL, (char_u *)0L}
2704 #endif
2705 SCRIPTID_INIT},
2706 {"window", "wi", P_NUM|P_VI_DEF,
2707 (char_u *)&p_window, PV_NONE,
2708 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2709 {"winheight", "wh", P_NUM|P_VI_DEF,
2710 #ifdef FEAT_WINDOWS
2711 (char_u *)&p_wh, PV_NONE,
2712 #else
2713 (char_u *)NULL, PV_NONE,
2714 #endif
2715 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
2716 {"winfixheight", "wfh", P_BOOL|P_VI_DEF|P_RSTAT,
2717 #ifdef FEAT_WINDOWS
2718 (char_u *)VAR_WIN, PV_WFH,
2719 #else
2720 (char_u *)NULL, PV_NONE,
2721 #endif
2722 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2723 {"winfixwidth", "wfw", P_BOOL|P_VI_DEF|P_RSTAT,
2724 #ifdef FEAT_VERTSPLIT
2725 (char_u *)VAR_WIN, PV_WFW,
2726 #else
2727 (char_u *)NULL, PV_NONE,
2728 #endif
2729 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2730 {"winminheight", "wmh", P_NUM|P_VI_DEF,
2731 #ifdef FEAT_WINDOWS
2732 (char_u *)&p_wmh, PV_NONE,
2733 #else
2734 (char_u *)NULL, PV_NONE,
2735 #endif
2736 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
2737 {"winminwidth", "wmw", P_NUM|P_VI_DEF,
2738 #ifdef FEAT_VERTSPLIT
2739 (char_u *)&p_wmw, PV_NONE,
2740 #else
2741 (char_u *)NULL, PV_NONE,
2742 #endif
2743 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
2744 {"winwidth", "wiw", P_NUM|P_VI_DEF,
2745 #ifdef FEAT_VERTSPLIT
2746 (char_u *)&p_wiw, PV_NONE,
2747 #else
2748 (char_u *)NULL, PV_NONE,
2749 #endif
2750 {(char_u *)20L, (char_u *)0L} SCRIPTID_INIT},
2751 {"wrap", NULL, P_BOOL|P_VI_DEF|P_RWIN,
2752 (char_u *)VAR_WIN, PV_WRAP,
2753 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2754 {"wrapmargin", "wm", P_NUM|P_VI_DEF,
2755 (char_u *)&p_wm, PV_WM,
2756 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2757 {"wrapscan", "ws", P_BOOL|P_VI_DEF,
2758 (char_u *)&p_ws, PV_NONE,
2759 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2760 {"write", NULL, P_BOOL|P_VI_DEF,
2761 (char_u *)&p_write, PV_NONE,
2762 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2763 {"writeany", "wa", P_BOOL|P_VI_DEF,
2764 (char_u *)&p_wa, PV_NONE,
2765 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2766 {"writebackup", "wb", P_BOOL|P_VI_DEF|P_VIM,
2767 (char_u *)&p_wb, PV_NONE,
2769 #ifdef FEAT_WRITEBACKUP
2770 (char_u *)TRUE,
2771 #else
2772 (char_u *)FALSE,
2773 #endif
2774 (char_u *)0L} SCRIPTID_INIT},
2775 {"writedelay", "wd", P_NUM|P_VI_DEF,
2776 (char_u *)&p_wd, PV_NONE,
2777 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2779 /* terminal output codes */
2780 #define p_term(sss, vvv) {sss, NULL, P_STRING|P_VI_DEF|P_RALL|P_SECURE, \
2781 (char_u *)&vvv, PV_NONE, \
2782 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2784 p_term("t_AB", T_CAB)
2785 p_term("t_AF", T_CAF)
2786 p_term("t_AL", T_CAL)
2787 p_term("t_al", T_AL)
2788 p_term("t_bc", T_BC)
2789 p_term("t_cd", T_CD)
2790 p_term("t_ce", T_CE)
2791 p_term("t_cl", T_CL)
2792 p_term("t_cm", T_CM)
2793 p_term("t_Co", T_CCO)
2794 p_term("t_CS", T_CCS)
2795 p_term("t_cs", T_CS)
2796 #ifdef FEAT_VERTSPLIT
2797 p_term("t_CV", T_CSV)
2798 #endif
2799 p_term("t_ut", T_UT)
2800 p_term("t_da", T_DA)
2801 p_term("t_db", T_DB)
2802 p_term("t_DL", T_CDL)
2803 p_term("t_dl", T_DL)
2804 p_term("t_fs", T_FS)
2805 p_term("t_IE", T_CIE)
2806 p_term("t_IS", T_CIS)
2807 p_term("t_ke", T_KE)
2808 p_term("t_ks", T_KS)
2809 p_term("t_le", T_LE)
2810 p_term("t_mb", T_MB)
2811 p_term("t_md", T_MD)
2812 p_term("t_me", T_ME)
2813 p_term("t_mr", T_MR)
2814 p_term("t_ms", T_MS)
2815 p_term("t_nd", T_ND)
2816 p_term("t_op", T_OP)
2817 p_term("t_RI", T_CRI)
2818 p_term("t_RV", T_CRV)
2819 p_term("t_Sb", T_CSB)
2820 p_term("t_Sf", T_CSF)
2821 p_term("t_se", T_SE)
2822 p_term("t_so", T_SO)
2823 p_term("t_sr", T_SR)
2824 p_term("t_ts", T_TS)
2825 p_term("t_te", T_TE)
2826 p_term("t_ti", T_TI)
2827 p_term("t_ue", T_UE)
2828 p_term("t_us", T_US)
2829 p_term("t_vb", T_VB)
2830 p_term("t_ve", T_VE)
2831 p_term("t_vi", T_VI)
2832 p_term("t_vs", T_VS)
2833 p_term("t_WP", T_CWP)
2834 p_term("t_WS", T_CWS)
2835 p_term("t_SI", T_CSI)
2836 p_term("t_EI", T_CEI)
2837 p_term("t_xs", T_XS)
2838 p_term("t_ZH", T_CZH)
2839 p_term("t_ZR", T_CZR)
2841 /* terminal key codes are not in here */
2843 /* end marker */
2844 {NULL, NULL, 0, NULL, PV_NONE, {NULL, NULL} SCRIPTID_INIT}
2847 #define PARAM_COUNT (sizeof(options) / sizeof(struct vimoption))
2849 #ifdef FEAT_MBYTE
2850 static char *(p_ambw_values[]) = {"single", "double", NULL};
2851 #endif
2852 static char *(p_bg_values[]) = {"light", "dark", NULL};
2853 static char *(p_nf_values[]) = {"octal", "hex", "alpha", NULL};
2854 static char *(p_ff_values[]) = {FF_UNIX, FF_DOS, FF_MAC, NULL};
2855 #ifdef FEAT_CMDL_COMPL
2856 static char *(p_wop_values[]) = {"tagfile", NULL};
2857 #endif
2858 #ifdef FEAT_WAK
2859 static char *(p_wak_values[]) = {"yes", "menu", "no", NULL};
2860 #endif
2861 static char *(p_mousem_values[]) = {"extend", "popup", "popup_setpos", "mac", NULL};
2862 #ifdef FEAT_VISUAL
2863 static char *(p_sel_values[]) = {"inclusive", "exclusive", "old", NULL};
2864 static char *(p_slm_values[]) = {"mouse", "key", "cmd", NULL};
2865 #endif
2866 #ifdef FEAT_VISUAL
2867 static char *(p_km_values[]) = {"startsel", "stopsel", NULL};
2868 #endif
2869 #ifdef FEAT_BROWSE
2870 static char *(p_bsdir_values[]) = {"current", "last", "buffer", NULL};
2871 #endif
2872 #ifdef FEAT_SCROLLBIND
2873 static char *(p_scbopt_values[]) = {"ver", "hor", "jump", NULL};
2874 #endif
2875 static char *(p_debug_values[]) = {"msg", "throw", "beep", NULL};
2876 #ifdef FEAT_VERTSPLIT
2877 static char *(p_ead_values[]) = {"both", "ver", "hor", NULL};
2878 #endif
2879 #if defined(FEAT_QUICKFIX)
2880 # ifdef FEAT_AUTOCMD
2881 static char *(p_buftype_values[]) = {"nofile", "nowrite", "quickfix", "help", "acwrite", NULL};
2882 # else
2883 static char *(p_buftype_values[]) = {"nofile", "nowrite", "quickfix", "help", NULL};
2884 # endif
2885 static char *(p_bufhidden_values[]) = {"hide", "unload", "delete", "wipe", NULL};
2886 #endif
2887 static char *(p_bs_values[]) = {"indent", "eol", "start", NULL};
2888 #ifdef FEAT_FOLDING
2889 static char *(p_fdm_values[]) = {"manual", "expr", "marker", "indent", "syntax",
2890 # ifdef FEAT_DIFF
2891 "diff",
2892 # endif
2893 NULL};
2894 static char *(p_fcl_values[]) = {"all", NULL};
2895 #endif
2896 #ifdef FEAT_INS_EXPAND
2897 static char *(p_cot_values[]) = {"menu", "menuone", "longest", "preview", NULL};
2898 #endif
2900 static void set_option_default __ARGS((int, int opt_flags, int compatible));
2901 static void set_options_default __ARGS((int opt_flags));
2902 static char_u *term_bg_default __ARGS((void));
2903 static void did_set_option __ARGS((int opt_idx, int opt_flags, int new_value));
2904 static char_u *illegal_char __ARGS((char_u *, int));
2905 static int string_to_key __ARGS((char_u *arg));
2906 #ifdef FEAT_CMDWIN
2907 static char_u *check_cedit __ARGS((void));
2908 #endif
2909 #ifdef FEAT_TITLE
2910 static void did_set_title __ARGS((int icon));
2911 #endif
2912 static char_u *option_expand __ARGS((int opt_idx, char_u *val));
2913 static void didset_options __ARGS((void));
2914 static void check_string_option __ARGS((char_u **pp));
2915 #if defined(FEAT_EVAL) || defined(PROTO)
2916 static long_u *insecure_flag __ARGS((int opt_idx, int opt_flags));
2917 #else
2918 # define insecure_flag(opt_idx, opt_flags) (&options[opt_idx].flags)
2919 #endif
2920 static void set_string_option_global __ARGS((int opt_idx, char_u **varp));
2921 static void set_string_option __ARGS((int opt_idx, char_u *value, int opt_flags));
2922 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));
2923 static char_u *set_chars_option __ARGS((char_u **varp));
2924 #ifdef FEAT_CLIPBOARD
2925 static char_u *check_clipboard_option __ARGS((void));
2926 #endif
2927 #ifdef FEAT_SPELL
2928 static char_u *compile_cap_prog __ARGS((buf_T *buf));
2929 #endif
2930 #ifdef FEAT_EVAL
2931 static void set_option_scriptID_idx __ARGS((int opt_idx, int opt_flags, int id));
2932 #endif
2933 static char_u *set_bool_option __ARGS((int opt_idx, char_u *varp, int value, int opt_flags));
2934 static char_u *set_num_option __ARGS((int opt_idx, char_u *varp, long value, char_u *errbuf, size_t errbuflen, int opt_flags));
2935 static void check_redraw __ARGS((long_u flags));
2936 static int findoption __ARGS((char_u *));
2937 static int find_key_option __ARGS((char_u *));
2938 static void showoptions __ARGS((int all, int opt_flags));
2939 static int optval_default __ARGS((struct vimoption *, char_u *varp));
2940 static void showoneopt __ARGS((struct vimoption *, int opt_flags));
2941 static int put_setstring __ARGS((FILE *fd, char *cmd, char *name, char_u **valuep, int expand));
2942 static int put_setnum __ARGS((FILE *fd, char *cmd, char *name, long *valuep));
2943 static int put_setbool __ARGS((FILE *fd, char *cmd, char *name, int value));
2944 static int istermoption __ARGS((struct vimoption *));
2945 static char_u *get_varp_scope __ARGS((struct vimoption *p, int opt_flags));
2946 static char_u *get_varp __ARGS((struct vimoption *));
2947 static void option_value2string __ARGS((struct vimoption *, int opt_flags));
2948 static int wc_use_keyname __ARGS((char_u *varp, long *wcp));
2949 #ifdef FEAT_LANGMAP
2950 static void langmap_init __ARGS((void));
2951 static void langmap_set __ARGS((void));
2952 #endif
2953 static void paste_option_changed __ARGS((void));
2954 static void compatible_set __ARGS((void));
2955 #ifdef FEAT_LINEBREAK
2956 static void fill_breakat_flags __ARGS((void));
2957 #endif
2958 static int opt_strings_flags __ARGS((char_u *val, char **values, unsigned *flagp, int list));
2959 static int check_opt_strings __ARGS((char_u *val, char **values, int));
2960 static int check_opt_wim __ARGS((void));
2963 * Initialize the options, first part.
2965 * Called only once from main(), just after creating the first buffer.
2967 void
2968 set_init_1()
2970 char_u *p;
2971 int opt_idx;
2972 long_u n;
2974 #ifdef FEAT_LANGMAP
2975 langmap_init();
2976 #endif
2978 /* Be Vi compatible by default */
2979 p_cp = TRUE;
2981 /* Use POSIX compatibility when $VIM_POSIX is set. */
2982 if (mch_getenv((char_u *)"VIM_POSIX") != NULL)
2984 set_string_default("cpo", (char_u *)CPO_ALL);
2985 set_string_default("shm", (char_u *)"A");
2989 * Find default value for 'shell' option.
2990 * Don't use it if it is empty.
2992 if (((p = mch_getenv((char_u *)"SHELL")) != NULL && *p != NUL)
2993 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
2994 # ifdef __EMX__
2995 || ((p = mch_getenv((char_u *)"EMXSHELL")) != NULL && *p != NUL)
2996 # endif
2997 || ((p = mch_getenv((char_u *)"COMSPEC")) != NULL && *p != NUL)
2998 # ifdef WIN3264
2999 || ((p = default_shell()) != NULL && *p != NUL)
3000 # endif
3001 #endif
3003 set_string_default("sh", p);
3005 #ifdef FEAT_WILDIGN
3007 * Set the default for 'backupskip' to include environment variables for
3008 * temp files.
3011 # ifdef UNIX
3012 static char *(names[4]) = {"", "TMPDIR", "TEMP", "TMP"};
3013 # else
3014 static char *(names[3]) = {"TMPDIR", "TEMP", "TMP"};
3015 # endif
3016 int len;
3017 garray_T ga;
3018 int mustfree;
3020 ga_init2(&ga, 1, 100);
3021 for (n = 0; n < (long)(sizeof(names) / sizeof(char *)); ++n)
3023 mustfree = FALSE;
3024 # ifdef UNIX
3025 if (*names[n] == NUL)
3026 p = (char_u *)"/tmp";
3027 else
3028 # endif
3029 p = vim_getenv((char_u *)names[n], &mustfree);
3030 if (p != NULL && *p != NUL)
3032 /* First time count the NUL, otherwise count the ','. */
3033 len = (int)STRLEN(p) + 3;
3034 if (ga_grow(&ga, len) == OK)
3036 if (ga.ga_len > 0)
3037 STRCAT(ga.ga_data, ",");
3038 STRCAT(ga.ga_data, p);
3039 add_pathsep(ga.ga_data);
3040 STRCAT(ga.ga_data, "*");
3041 ga.ga_len += len;
3044 if (mustfree)
3045 vim_free(p);
3047 if (ga.ga_data != NULL)
3049 set_string_default("bsk", ga.ga_data);
3050 vim_free(ga.ga_data);
3053 #endif
3056 * 'maxmemtot' and 'maxmem' may have to be adjusted for available memory
3058 opt_idx = findoption((char_u *)"maxmemtot");
3059 if (opt_idx >= 0)
3061 #if !defined(HAVE_AVAIL_MEM) && !defined(HAVE_TOTAL_MEM)
3062 if (options[opt_idx].def_val[VI_DEFAULT] == (char_u *)0L)
3063 #endif
3065 #ifdef HAVE_AVAIL_MEM
3066 /* Use amount of memory available at this moment. */
3067 n = (mch_avail_mem(FALSE) >> 11);
3068 #else
3069 # ifdef HAVE_TOTAL_MEM
3070 /* Use amount of memory available to Vim. */
3071 n = (mch_total_mem(FALSE) >> 1);
3072 # else
3073 n = (0x7fffffff >> 11);
3074 # endif
3075 #endif
3076 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)n;
3077 opt_idx = findoption((char_u *)"maxmem");
3078 if (opt_idx >= 0)
3080 #if !defined(HAVE_AVAIL_MEM) && !defined(HAVE_TOTAL_MEM)
3081 if ((long)options[opt_idx].def_val[VI_DEFAULT] > n
3082 || (long)options[opt_idx].def_val[VI_DEFAULT] == 0L)
3083 #endif
3084 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)n;
3089 #ifdef FEAT_GUI_W32
3090 /* force 'shortname' for Win32s */
3091 if (gui_is_win32s())
3093 opt_idx = findoption((char_u *)"shortname");
3094 if (opt_idx >= 0)
3095 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)TRUE;
3097 #endif
3099 #ifdef FEAT_SEARCHPATH
3101 char_u *cdpath;
3102 char_u *buf;
3103 int i;
3104 int j;
3105 int mustfree = FALSE;
3107 /* Initialize the 'cdpath' option's default value. */
3108 cdpath = vim_getenv((char_u *)"CDPATH", &mustfree);
3109 if (cdpath != NULL)
3111 buf = alloc((unsigned)((STRLEN(cdpath) << 1) + 2));
3112 if (buf != NULL)
3114 buf[0] = ','; /* start with ",", current dir first */
3115 j = 1;
3116 for (i = 0; cdpath[i] != NUL; ++i)
3118 if (vim_ispathlistsep(cdpath[i]))
3119 buf[j++] = ',';
3120 else
3122 if (cdpath[i] == ' ' || cdpath[i] == ',')
3123 buf[j++] = '\\';
3124 buf[j++] = cdpath[i];
3127 buf[j] = NUL;
3128 opt_idx = findoption((char_u *)"cdpath");
3129 if (opt_idx >= 0)
3131 options[opt_idx].def_val[VI_DEFAULT] = buf;
3132 options[opt_idx].flags |= P_DEF_ALLOCED;
3135 if (mustfree)
3136 vim_free(cdpath);
3139 #endif
3141 #if defined(FEAT_POSTSCRIPT) && (defined(MSWIN) || defined(OS2) || defined(VMS) || defined(EBCDIC) || defined(MAC) || defined(hpux))
3142 /* Set print encoding on platforms that don't default to latin1 */
3143 set_string_default("penc",
3144 # if defined(MSWIN) || defined(OS2)
3145 (char_u *)"cp1252"
3146 # else
3147 # ifdef VMS
3148 (char_u *)"dec-mcs"
3149 # else
3150 # ifdef EBCDIC
3151 (char_u *)"ebcdic-uk"
3152 # else
3153 # ifdef MAC
3154 (char_u *)"mac-roman"
3155 # else /* HPUX */
3156 (char_u *)"hp-roman8"
3157 # endif
3158 # endif
3159 # endif
3160 # endif
3162 #endif
3164 #ifdef FEAT_POSTSCRIPT
3165 /* 'printexpr' must be allocated to be able to evaluate it. */
3166 set_string_default("pexpr",
3167 # if defined(MSWIN) || defined(MSDOS) || defined(OS2)
3168 (char_u *)"system('copy' . ' ' . v:fname_in . (&printdevice == '' ? ' LPT1:' : (' \"' . &printdevice . '\"'))) . delete(v:fname_in)"
3169 # else
3170 # ifdef VMS
3171 (char_u *)"system('print/delete' . (&printdevice == '' ? '' : ' /queue=' . &printdevice) . ' ' . v:fname_in)"
3173 # else
3174 (char_u *)"system('lpr' . (&printdevice == '' ? '' : ' -P' . &printdevice) . ' ' . v:fname_in) . delete(v:fname_in) + v:shell_error"
3175 # endif
3176 # endif
3178 #endif
3181 * Set all the options (except the terminal options) to their default
3182 * value. Also set the global value for local options.
3184 set_options_default(0);
3186 #ifdef FEAT_GUI
3187 if (found_reverse_arg)
3188 set_option_value((char_u *)"bg", 0L, (char_u *)"dark", 0);
3189 #endif
3191 curbuf->b_p_initialized = TRUE;
3192 curbuf->b_p_ar = -1; /* no local 'autoread' value */
3193 check_buf_options(curbuf);
3194 check_win_options(curwin);
3195 check_options();
3197 /* Must be before option_expand(), because that one needs vim_isIDc() */
3198 didset_options();
3200 #ifdef FEAT_SPELL
3201 /* Use the current chartab for the generic chartab. */
3202 init_spell_chartab();
3203 #endif
3205 #ifdef FEAT_LINEBREAK
3207 * initialize the table for 'breakat'.
3209 fill_breakat_flags();
3210 #endif
3213 * Expand environment variables and things like "~" for the defaults.
3214 * If option_expand() returns non-NULL the variable is expanded. This can
3215 * only happen for non-indirect options.
3216 * Also set the default to the expanded value, so ":set" does not list
3217 * them.
3218 * Don't set the P_ALLOCED flag, because we don't want to free the
3219 * default.
3221 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
3223 if ((options[opt_idx].flags & P_GETTEXT)
3224 && options[opt_idx].var != NULL)
3225 p = (char_u *)_(*(char **)options[opt_idx].var);
3226 else
3227 p = option_expand(opt_idx, NULL);
3228 if (p != NULL && (p = vim_strsave(p)) != NULL)
3230 *(char_u **)options[opt_idx].var = p;
3231 /* VIMEXP
3232 * Defaults for all expanded options are currently the same for Vi
3233 * and Vim. When this changes, add some code here! Also need to
3234 * split P_DEF_ALLOCED in two.
3236 if (options[opt_idx].flags & P_DEF_ALLOCED)
3237 vim_free(options[opt_idx].def_val[VI_DEFAULT]);
3238 options[opt_idx].def_val[VI_DEFAULT] = p;
3239 options[opt_idx].flags |= P_DEF_ALLOCED;
3243 /* Initialize the highlight_attr[] table. */
3244 highlight_changed();
3246 save_file_ff(curbuf); /* Buffer is unchanged */
3248 /* Parse default for 'wildmode' */
3249 check_opt_wim();
3251 #if defined(FEAT_ARABIC)
3252 /* Detect use of mlterm.
3253 * Mlterm is a terminal emulator akin to xterm that has some special
3254 * abilities (bidi namely).
3255 * NOTE: mlterm's author is being asked to 'set' a variable
3256 * instead of an environment variable due to inheritance.
3258 if (mch_getenv((char_u *)"MLTERM") != NULL)
3259 set_option_value((char_u *)"tbidi", 1L, NULL, 0);
3260 #endif
3262 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
3263 /* Parse default for 'fillchars'. */
3264 (void)set_chars_option(&p_fcs);
3265 #endif
3267 #ifdef FEAT_CLIPBOARD
3268 /* Parse default for 'clipboard' */
3269 (void)check_clipboard_option();
3270 #endif
3272 #ifdef FEAT_MBYTE
3273 # if defined(WIN3264) && defined(FEAT_GETTEXT)
3275 * If $LANG isn't set, try to get a good value for it. This makes the
3276 * right language be used automatically. Don't do this for English.
3278 if (mch_getenv((char_u *)"LANG") == NULL)
3280 char buf[20];
3282 /* Could use LOCALE_SISO639LANGNAME, but it's not in Win95.
3283 * LOCALE_SABBREVLANGNAME gives us three letters, like "enu", we use
3284 * only the first two. */
3285 n = GetLocaleInfo(LOCALE_USER_DEFAULT, LOCALE_SABBREVLANGNAME,
3286 (LPTSTR)buf, 20);
3287 if (n >= 2 && STRNICMP(buf, "en", 2) != 0)
3289 /* There are a few exceptions (probably more) */
3290 if (STRNICMP(buf, "cht", 3) == 0 || STRNICMP(buf, "zht", 3) == 0)
3291 STRCPY(buf, "zh_TW");
3292 else if (STRNICMP(buf, "chs", 3) == 0
3293 || STRNICMP(buf, "zhc", 3) == 0)
3294 STRCPY(buf, "zh_CN");
3295 else if (STRNICMP(buf, "jp", 2) == 0)
3296 STRCPY(buf, "ja");
3297 else
3298 buf[2] = NUL; /* truncate to two-letter code */
3299 vim_setenv("LANG", buf);
3302 # else
3303 # ifdef MACOS_CONVERT
3304 /* Moved to os_mac_conv.c to avoid dependency problems. */
3305 mac_lang_init();
3306 # endif
3307 # endif
3309 /* enc_locale() will try to find the encoding of the current locale. */
3310 p = enc_locale();
3311 if (p != NULL)
3313 char_u *save_enc;
3315 /* Try setting 'encoding' and check if the value is valid.
3316 * If not, go back to the default "latin1". */
3317 save_enc = p_enc;
3318 p_enc = p;
3319 if (STRCMP(p_enc, "gb18030") == 0)
3321 /* We don't support "gb18030", but "cp936" is a good substitute
3322 * for practical purposes, thus use that. It's not an alias to
3323 * still support conversion between gb18030 and utf-8. */
3324 p_enc = vim_strsave((char_u *)"cp936");
3325 vim_free(p);
3327 if (mb_init() == NULL)
3329 opt_idx = findoption((char_u *)"encoding");
3330 if (opt_idx >= 0)
3332 options[opt_idx].def_val[VI_DEFAULT] = p_enc;
3333 options[opt_idx].flags |= P_DEF_ALLOCED;
3336 #if defined(MSDOS) || defined(MSWIN) || defined(OS2) || defined(MACOS) \
3337 || defined(VMS)
3338 if (STRCMP(p_enc, "latin1") == 0
3339 # ifdef FEAT_MBYTE
3340 || enc_utf8
3341 # endif
3344 /* Adjust the default for 'isprint' and 'iskeyword' to match
3345 * latin1. Also set the defaults for when 'nocompatible' is
3346 * set. */
3347 set_string_option_direct((char_u *)"isp", -1,
3348 ISP_LATIN1, OPT_FREE, SID_NONE);
3349 set_string_option_direct((char_u *)"isk", -1,
3350 ISK_LATIN1, OPT_FREE, SID_NONE);
3351 opt_idx = findoption((char_u *)"isp");
3352 if (opt_idx >= 0)
3353 options[opt_idx].def_val[VIM_DEFAULT] = ISP_LATIN1;
3354 opt_idx = findoption((char_u *)"isk");
3355 if (opt_idx >= 0)
3356 options[opt_idx].def_val[VIM_DEFAULT] = ISK_LATIN1;
3357 (void)init_chartab();
3359 #endif
3361 # if defined(WIN3264) && !defined(FEAT_GUI)
3362 /* Win32 console: When GetACP() returns a different value from
3363 * GetConsoleCP() set 'termencoding'. */
3364 if (GetACP() != GetConsoleCP())
3366 char buf[50];
3368 sprintf(buf, "cp%ld", (long)GetConsoleCP());
3369 p_tenc = vim_strsave((char_u *)buf);
3370 if (p_tenc != NULL)
3372 opt_idx = findoption((char_u *)"termencoding");
3373 if (opt_idx >= 0)
3375 options[opt_idx].def_val[VI_DEFAULT] = p_tenc;
3376 options[opt_idx].flags |= P_DEF_ALLOCED;
3378 convert_setup(&input_conv, p_tenc, p_enc);
3379 convert_setup(&output_conv, p_enc, p_tenc);
3381 else
3382 p_tenc = empty_option;
3384 # endif
3385 # if defined(WIN3264) && defined(FEAT_MBYTE)
3386 /* $HOME may have characters in active code page. */
3387 init_homedir();
3388 # endif
3390 else
3392 vim_free(p_enc);
3393 p_enc = save_enc;
3396 #endif
3398 #ifdef FEAT_MULTI_LANG
3399 /* Set the default for 'helplang'. */
3400 set_helplang_default(get_mess_lang());
3401 #endif
3405 * Set an option to its default value.
3406 * This does not take care of side effects!
3408 static void
3409 set_option_default(opt_idx, opt_flags, compatible)
3410 int opt_idx;
3411 int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */
3412 int compatible; /* use Vi default value */
3414 char_u *varp; /* pointer to variable for current option */
3415 int dvi; /* index in def_val[] */
3416 long_u flags;
3417 long_u *flagsp;
3418 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
3420 varp = get_varp_scope(&(options[opt_idx]), both ? OPT_LOCAL : opt_flags);
3421 flags = options[opt_idx].flags;
3422 if (varp != NULL) /* skip hidden option, nothing to do for it */
3424 dvi = ((flags & P_VI_DEF) || compatible) ? VI_DEFAULT : VIM_DEFAULT;
3425 if (flags & P_STRING)
3427 /* Use set_string_option_direct() for local options to handle
3428 * freeing and allocating the value. */
3429 if (options[opt_idx].indir != PV_NONE)
3430 set_string_option_direct(NULL, opt_idx,
3431 options[opt_idx].def_val[dvi], opt_flags, 0);
3432 else
3434 if ((opt_flags & OPT_FREE) && (flags & P_ALLOCED))
3435 free_string_option(*(char_u **)(varp));
3436 *(char_u **)varp = options[opt_idx].def_val[dvi];
3437 options[opt_idx].flags &= ~P_ALLOCED;
3440 else if (flags & P_NUM)
3442 if (options[opt_idx].indir == PV_SCROLL)
3443 win_comp_scroll(curwin);
3444 else
3446 *(long *)varp = (long)(long_i)options[opt_idx].def_val[dvi];
3447 /* May also set global value for local option. */
3448 if (both)
3449 *(long *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) =
3450 *(long *)varp;
3453 else /* P_BOOL */
3455 /* the cast to long is required for Manx C, long_i is needed for
3456 * MSVC */
3457 *(int *)varp = (int)(long)(long_i)options[opt_idx].def_val[dvi];
3458 #ifdef UNIX
3459 /* 'modeline' defaults to off for root */
3460 if (options[opt_idx].indir == PV_ML && getuid() == ROOT_UID)
3461 *(int *)varp = FALSE;
3462 #endif
3463 /* May also set global value for local option. */
3464 if (both)
3465 *(int *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) =
3466 *(int *)varp;
3469 /* The default value is not insecure. */
3470 flagsp = insecure_flag(opt_idx, opt_flags);
3471 *flagsp = *flagsp & ~P_INSECURE;
3474 #ifdef FEAT_EVAL
3475 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
3476 #endif
3480 * Set all options (except terminal options) to their default value.
3482 static void
3483 set_options_default(opt_flags)
3484 int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */
3486 int i;
3487 #ifdef FEAT_WINDOWS
3488 win_T *wp;
3489 tabpage_T *tp;
3490 #endif
3492 for (i = 0; !istermoption(&options[i]); i++)
3493 if (!(options[i].flags & P_NODEFAULT))
3494 set_option_default(i, opt_flags, p_cp);
3496 #ifdef FEAT_WINDOWS
3497 /* The 'scroll' option must be computed for all windows. */
3498 FOR_ALL_TAB_WINDOWS(tp, wp)
3499 win_comp_scroll(wp);
3500 #else
3501 win_comp_scroll(curwin);
3502 #endif
3506 * Set the Vi-default value of a string option.
3507 * Used for 'sh', 'backupskip' and 'term'.
3509 void
3510 set_string_default(name, val)
3511 char *name;
3512 char_u *val;
3514 char_u *p;
3515 int opt_idx;
3517 p = vim_strsave(val);
3518 if (p != NULL) /* we don't want a NULL */
3520 opt_idx = findoption((char_u *)name);
3521 if (opt_idx >= 0)
3523 if (options[opt_idx].flags & P_DEF_ALLOCED)
3524 vim_free(options[opt_idx].def_val[VI_DEFAULT]);
3525 options[opt_idx].def_val[VI_DEFAULT] = p;
3526 options[opt_idx].flags |= P_DEF_ALLOCED;
3532 * Set the Vi-default value of a number option.
3533 * Used for 'lines' and 'columns'.
3535 void
3536 set_number_default(name, val)
3537 char *name;
3538 long val;
3540 int opt_idx;
3542 opt_idx = findoption((char_u *)name);
3543 if (opt_idx >= 0)
3544 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
3547 #if defined(EXITFREE) || defined(PROTO)
3549 * Free all options.
3551 void
3552 free_all_options()
3554 int i;
3556 for (i = 0; !istermoption(&options[i]); i++)
3558 if (options[i].indir == PV_NONE)
3560 /* global option: free value and default value. */
3561 if (options[i].flags & P_ALLOCED && options[i].var != NULL)
3562 free_string_option(*(char_u **)options[i].var);
3563 if (options[i].flags & P_DEF_ALLOCED)
3564 free_string_option(options[i].def_val[VI_DEFAULT]);
3566 else if (options[i].var != VAR_WIN
3567 && (options[i].flags & P_STRING))
3568 /* buffer-local option: free global value */
3569 free_string_option(*(char_u **)options[i].var);
3572 #endif
3576 * Initialize the options, part two: After getting Rows and Columns and
3577 * setting 'term'.
3579 void
3580 set_init_2()
3582 int idx;
3585 * 'scroll' defaults to half the window height. Note that this default is
3586 * wrong when the window height changes.
3588 set_number_default("scroll", (long)((long_u)Rows >> 1));
3589 idx = findoption((char_u *)"scroll");
3590 if (idx >= 0 && !(options[idx].flags & P_WAS_SET))
3591 set_option_default(idx, OPT_LOCAL, p_cp);
3592 comp_col();
3595 * 'window' is only for backwards compatibility with Vi.
3596 * Default is Rows - 1.
3598 if (!option_was_set((char_u *)"window"))
3599 p_window = Rows - 1;
3600 set_number_default("window", Rows - 1);
3602 /* For DOS console the default is always black. */
3603 #if !((defined(MSDOS) || defined(OS2) || defined(WIN3264)) && !defined(FEAT_GUI))
3605 * If 'background' wasn't set by the user, try guessing the value,
3606 * depending on the terminal name. Only need to check for terminals
3607 * with a dark background, that can handle color.
3609 idx = findoption((char_u *)"bg");
3610 if (idx >= 0 && !(options[idx].flags & P_WAS_SET)
3611 && *term_bg_default() == 'd')
3613 set_string_option_direct(NULL, idx, (char_u *)"dark", OPT_FREE, 0);
3614 /* don't mark it as set, when starting the GUI it may be
3615 * changed again */
3616 options[idx].flags &= ~P_WAS_SET;
3618 #endif
3620 #ifdef CURSOR_SHAPE
3621 parse_shape_opt(SHAPE_CURSOR); /* set cursor shapes from 'guicursor' */
3622 #endif
3623 #ifdef FEAT_MOUSESHAPE
3624 parse_shape_opt(SHAPE_MOUSE); /* set mouse shapes from 'mouseshape' */
3625 #endif
3626 #ifdef FEAT_PRINTER
3627 (void)parse_printoptions(); /* parse 'printoptions' default value */
3628 #endif
3632 * Return "dark" or "light" depending on the kind of terminal.
3633 * This is just guessing! Recognized are:
3634 * "linux" Linux console
3635 * "screen.linux" Linux console with screen
3636 * "cygwin" Cygwin shell
3637 * "putty" Putty program
3638 * We also check the COLORFGBG environment variable, which is set by
3639 * rxvt and derivatives. This variable contains either two or three
3640 * values separated by semicolons; we want the last value in either
3641 * case. If this value is 0-6 or 8, our background is dark.
3643 static char_u *
3644 term_bg_default()
3646 #if defined(MSDOS) || defined(OS2) || defined(WIN3264)
3647 /* DOS console nearly always black */
3648 return (char_u *)"dark";
3649 #else
3650 char_u *p;
3652 if (STRCMP(T_NAME, "linux") == 0
3653 || STRCMP(T_NAME, "screen.linux") == 0
3654 || STRCMP(T_NAME, "cygwin") == 0
3655 || STRCMP(T_NAME, "putty") == 0
3656 || ((p = mch_getenv((char_u *)"COLORFGBG")) != NULL
3657 && (p = vim_strrchr(p, ';')) != NULL
3658 && ((p[1] >= '0' && p[1] <= '6') || p[1] == '8')
3659 && p[2] == NUL))
3660 return (char_u *)"dark";
3661 return (char_u *)"light";
3662 #endif
3666 * Initialize the options, part three: After reading the .vimrc
3668 void
3669 set_init_3()
3671 #if defined(UNIX) || defined(OS2) || defined(WIN3264)
3673 * Set 'shellpipe' and 'shellredir', depending on the 'shell' option.
3674 * This is done after other initializations, where 'shell' might have been
3675 * set, but only if they have not been set before.
3677 char_u *p;
3678 int idx_srr;
3679 int do_srr;
3680 #ifdef FEAT_QUICKFIX
3681 int idx_sp;
3682 int do_sp;
3683 #endif
3685 idx_srr = findoption((char_u *)"srr");
3686 if (idx_srr < 0)
3687 do_srr = FALSE;
3688 else
3689 do_srr = !(options[idx_srr].flags & P_WAS_SET);
3690 #ifdef FEAT_QUICKFIX
3691 idx_sp = findoption((char_u *)"sp");
3692 if (idx_sp < 0)
3693 do_sp = FALSE;
3694 else
3695 do_sp = !(options[idx_sp].flags & P_WAS_SET);
3696 #endif
3699 * Isolate the name of the shell:
3700 * - Skip beyond any path. E.g., "/usr/bin/csh -f" -> "csh -f".
3701 * - Remove any argument. E.g., "csh -f" -> "csh".
3703 p = gettail(p_sh);
3704 p = vim_strnsave(p, (int)(skiptowhite(p) - p));
3705 if (p != NULL)
3708 * Default for p_sp is "| tee", for p_srr is ">".
3709 * For known shells it is changed here to include stderr.
3711 if ( fnamecmp(p, "csh") == 0
3712 || fnamecmp(p, "tcsh") == 0
3713 # if defined(OS2) || defined(WIN3264) /* also check with .exe extension */
3714 || fnamecmp(p, "csh.exe") == 0
3715 || fnamecmp(p, "tcsh.exe") == 0
3716 # endif
3719 #if defined(FEAT_QUICKFIX)
3720 if (do_sp)
3722 # ifdef WIN3264
3723 p_sp = (char_u *)">&";
3724 # else
3725 p_sp = (char_u *)"|& tee";
3726 # endif
3727 options[idx_sp].def_val[VI_DEFAULT] = p_sp;
3729 #endif
3730 if (do_srr)
3732 p_srr = (char_u *)">&";
3733 options[idx_srr].def_val[VI_DEFAULT] = p_srr;
3736 else
3737 # ifndef OS2 /* Always use bourne shell style redirection if we reach this */
3738 if ( fnamecmp(p, "sh") == 0
3739 || fnamecmp(p, "ksh") == 0
3740 || fnamecmp(p, "zsh") == 0
3741 || fnamecmp(p, "zsh-beta") == 0
3742 || fnamecmp(p, "bash") == 0
3743 # ifdef WIN3264
3744 || fnamecmp(p, "cmd") == 0
3745 || fnamecmp(p, "sh.exe") == 0
3746 || fnamecmp(p, "ksh.exe") == 0
3747 || fnamecmp(p, "zsh.exe") == 0
3748 || fnamecmp(p, "zsh-beta.exe") == 0
3749 || fnamecmp(p, "bash.exe") == 0
3750 || fnamecmp(p, "cmd.exe") == 0
3751 # endif
3753 # endif
3755 #if defined(FEAT_QUICKFIX)
3756 if (do_sp)
3758 # ifdef WIN3264
3759 p_sp = (char_u *)">%s 2>&1";
3760 # else
3761 p_sp = (char_u *)"2>&1| tee";
3762 # endif
3763 options[idx_sp].def_val[VI_DEFAULT] = p_sp;
3765 #endif
3766 if (do_srr)
3768 p_srr = (char_u *)">%s 2>&1";
3769 options[idx_srr].def_val[VI_DEFAULT] = p_srr;
3772 vim_free(p);
3774 #endif
3776 #if defined(MSDOS) || defined(WIN3264) || defined(OS2)
3778 * Set 'shellcmdflag and 'shellquote' depending on the 'shell' option.
3779 * This is done after other initializations, where 'shell' might have been
3780 * set, but only if they have not been set before. Default for p_shcf is
3781 * "/c", for p_shq is "". For "sh" like shells it is changed here to
3782 * "-c" and "\"", but not for DJGPP, because it starts the shell without
3783 * command.com. And for Win32 we need to set p_sxq instead.
3785 if (strstr((char *)gettail(p_sh), "sh") != NULL)
3787 int idx3;
3789 idx3 = findoption((char_u *)"shcf");
3790 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
3792 p_shcf = (char_u *)"-c";
3793 options[idx3].def_val[VI_DEFAULT] = p_shcf;
3796 # ifndef DJGPP
3797 # ifdef WIN3264
3798 /* Somehow Win32 requires the quotes around the redirection too */
3799 idx3 = findoption((char_u *)"sxq");
3800 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
3802 p_sxq = (char_u *)"\"";
3803 options[idx3].def_val[VI_DEFAULT] = p_sxq;
3805 # else
3806 idx3 = findoption((char_u *)"shq");
3807 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
3809 p_shq = (char_u *)"\"";
3810 options[idx3].def_val[VI_DEFAULT] = p_shq;
3812 # endif
3813 # endif
3815 #endif
3817 #ifdef FEAT_TITLE
3818 set_title_defaults();
3819 #endif
3822 #if defined(FEAT_MULTI_LANG) || defined(PROTO)
3824 * When 'helplang' is still at its default value, set it to "lang".
3825 * Only the first two characters of "lang" are used.
3827 void
3828 set_helplang_default(lang)
3829 char_u *lang;
3831 int idx;
3833 if (lang == NULL || STRLEN(lang) < 2) /* safety check */
3834 return;
3835 idx = findoption((char_u *)"hlg");
3836 if (idx >= 0 && !(options[idx].flags & P_WAS_SET))
3838 if (options[idx].flags & P_ALLOCED)
3839 free_string_option(p_hlg);
3840 p_hlg = vim_strsave(lang);
3841 if (p_hlg == NULL)
3842 p_hlg = empty_option;
3843 else
3845 /* zh_CN becomes "cn", zh_TW becomes "tw". */
3846 if (STRNICMP(p_hlg, "zh_", 3) == 0 && STRLEN(p_hlg) >= 5)
3848 p_hlg[0] = TOLOWER_ASC(p_hlg[3]);
3849 p_hlg[1] = TOLOWER_ASC(p_hlg[4]);
3851 p_hlg[2] = NUL;
3853 options[idx].flags |= P_ALLOCED;
3856 #endif
3858 #ifdef FEAT_GUI
3859 static char_u *gui_bg_default __ARGS((void));
3861 static char_u *
3862 gui_bg_default()
3864 if (gui_get_lightness(gui.back_pixel) < 127)
3865 return (char_u *)"dark";
3866 return (char_u *)"light";
3870 * Option initializations that can only be done after opening the GUI window.
3872 void
3873 init_gui_options()
3875 /* Set the 'background' option according to the lightness of the
3876 * background color, unless the user has set it already. */
3877 if (!option_was_set((char_u *)"bg") && STRCMP(p_bg, gui_bg_default()) != 0)
3879 set_option_value((char_u *)"bg", 0L, gui_bg_default(), 0);
3880 highlight_changed();
3883 #endif
3885 #ifdef FEAT_TITLE
3887 * 'title' and 'icon' only default to true if they have not been set or reset
3888 * in .vimrc and we can read the old value.
3889 * When 'title' and 'icon' have been reset in .vimrc, we won't even check if
3890 * they can be reset. This reduces startup time when using X on a remote
3891 * machine.
3893 void
3894 set_title_defaults()
3896 int idx1;
3897 long val;
3900 * If GUI is (going to be) used, we can always set the window title and
3901 * icon name. Saves a bit of time, because the X11 display server does
3902 * not need to be contacted.
3904 idx1 = findoption((char_u *)"title");
3905 if (idx1 >= 0 && !(options[idx1].flags & P_WAS_SET))
3907 #ifdef FEAT_GUI
3908 if (gui.starting || gui.in_use)
3909 val = TRUE;
3910 else
3911 #endif
3912 val = mch_can_restore_title();
3913 options[idx1].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
3914 p_title = val;
3916 idx1 = findoption((char_u *)"icon");
3917 if (idx1 >= 0 && !(options[idx1].flags & P_WAS_SET))
3919 #ifdef FEAT_GUI
3920 if (gui.starting || gui.in_use)
3921 val = TRUE;
3922 else
3923 #endif
3924 val = mch_can_restore_icon();
3925 options[idx1].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
3926 p_icon = val;
3929 #endif
3932 * Parse 'arg' for option settings.
3934 * 'arg' may be IObuff, but only when no errors can be present and option
3935 * does not need to be expanded with option_expand().
3936 * "opt_flags":
3937 * 0 for ":set"
3938 * OPT_GLOBAL for ":setglobal"
3939 * OPT_LOCAL for ":setlocal" and a modeline
3940 * OPT_MODELINE for a modeline
3941 * OPT_WINONLY to only set window-local options
3942 * OPT_NOWIN to skip setting window-local options
3944 * returns FAIL if an error is detected, OK otherwise
3947 do_set(arg, opt_flags)
3948 char_u *arg; /* option string (may be written to!) */
3949 int opt_flags;
3951 int opt_idx;
3952 char_u *errmsg;
3953 char_u errbuf[80];
3954 char_u *startarg;
3955 int prefix; /* 1: nothing, 0: "no", 2: "inv" in front of name */
3956 int nextchar; /* next non-white char after option name */
3957 int afterchar; /* character just after option name */
3958 int len;
3959 int i;
3960 long value;
3961 int key;
3962 long_u flags; /* flags for current option */
3963 char_u *varp = NULL; /* pointer to variable for current option */
3964 int did_show = FALSE; /* already showed one value */
3965 int adding; /* "opt+=arg" */
3966 int prepending; /* "opt^=arg" */
3967 int removing; /* "opt-=arg" */
3968 int cp_val = 0;
3969 char_u key_name[2];
3971 if (*arg == NUL)
3973 showoptions(0, opt_flags);
3974 did_show = TRUE;
3975 goto theend;
3978 while (*arg != NUL) /* loop to process all options */
3980 errmsg = NULL;
3981 startarg = arg; /* remember for error message */
3983 if (STRNCMP(arg, "all", 3) == 0 && !isalpha(arg[3])
3984 && !(opt_flags & OPT_MODELINE))
3987 * ":set all" show all options.
3988 * ":set all&" set all options to their default value.
3990 arg += 3;
3991 if (*arg == '&')
3993 ++arg;
3994 /* Only for :set command set global value of local options. */
3995 set_options_default(OPT_FREE | opt_flags);
3997 else
3999 showoptions(1, opt_flags);
4000 did_show = TRUE;
4003 else if (STRNCMP(arg, "termcap", 7) == 0 && !(opt_flags & OPT_MODELINE))
4005 showoptions(2, opt_flags);
4006 show_termcodes();
4007 did_show = TRUE;
4008 arg += 7;
4010 else
4012 prefix = 1;
4013 if (STRNCMP(arg, "no", 2) == 0)
4015 prefix = 0;
4016 arg += 2;
4018 else if (STRNCMP(arg, "inv", 3) == 0)
4020 prefix = 2;
4021 arg += 3;
4024 /* find end of name */
4025 key = 0;
4026 if (*arg == '<')
4028 nextchar = 0;
4029 opt_idx = -1;
4030 /* look out for <t_>;> */
4031 if (arg[1] == 't' && arg[2] == '_' && arg[3] && arg[4])
4032 len = 5;
4033 else
4035 len = 1;
4036 while (arg[len] != NUL && arg[len] != '>')
4037 ++len;
4039 if (arg[len] != '>')
4041 errmsg = e_invarg;
4042 goto skip;
4044 arg[len] = NUL; /* put NUL after name */
4045 if (arg[1] == 't' && arg[2] == '_') /* could be term code */
4046 opt_idx = findoption(arg + 1);
4047 arg[len++] = '>'; /* restore '>' */
4048 if (opt_idx == -1)
4049 key = find_key_option(arg + 1);
4051 else
4053 len = 0;
4055 * The two characters after "t_" may not be alphanumeric.
4057 if (arg[0] == 't' && arg[1] == '_' && arg[2] && arg[3])
4058 len = 4;
4059 else
4060 while (ASCII_ISALNUM(arg[len]) || arg[len] == '_')
4061 ++len;
4062 nextchar = arg[len];
4063 arg[len] = NUL; /* put NUL after name */
4064 opt_idx = findoption(arg);
4065 arg[len] = nextchar; /* restore nextchar */
4066 if (opt_idx == -1)
4067 key = find_key_option(arg);
4070 /* remember character after option name */
4071 afterchar = arg[len];
4073 /* skip white space, allow ":set ai ?" */
4074 while (vim_iswhite(arg[len]))
4075 ++len;
4077 adding = FALSE;
4078 prepending = FALSE;
4079 removing = FALSE;
4080 if (arg[len] != NUL && arg[len + 1] == '=')
4082 if (arg[len] == '+')
4084 adding = TRUE; /* "+=" */
4085 ++len;
4087 else if (arg[len] == '^')
4089 prepending = TRUE; /* "^=" */
4090 ++len;
4092 else if (arg[len] == '-')
4094 removing = TRUE; /* "-=" */
4095 ++len;
4098 nextchar = arg[len];
4100 if (opt_idx == -1 && key == 0) /* found a mismatch: skip */
4102 errmsg = (char_u *)N_("E518: Unknown option");
4103 goto skip;
4106 if (opt_idx >= 0)
4108 if (options[opt_idx].var == NULL) /* hidden option: skip */
4110 /* Only give an error message when requesting the value of
4111 * a hidden option, ignore setting it. */
4112 if (vim_strchr((char_u *)"=:!&<", nextchar) == NULL
4113 && (!(options[opt_idx].flags & P_BOOL)
4114 || nextchar == '?'))
4115 errmsg = (char_u *)N_("E519: Option not supported");
4116 goto skip;
4119 flags = options[opt_idx].flags;
4120 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
4122 else
4124 flags = P_STRING;
4125 if (key < 0)
4127 key_name[0] = KEY2TERMCAP0(key);
4128 key_name[1] = KEY2TERMCAP1(key);
4130 else
4132 key_name[0] = KS_KEY;
4133 key_name[1] = (key & 0xff);
4137 /* Skip all options that are not window-local (used when showing
4138 * an already loaded buffer in a window). */
4139 if ((opt_flags & OPT_WINONLY)
4140 && (opt_idx < 0 || options[opt_idx].var != VAR_WIN))
4141 goto skip;
4143 /* Skip all options that are window-local (used for :vimgrep). */
4144 if ((opt_flags & OPT_NOWIN) && opt_idx >= 0
4145 && options[opt_idx].var == VAR_WIN)
4146 goto skip;
4148 /* Disallow changing some options from modelines. */
4149 if (opt_flags & OPT_MODELINE)
4151 if (flags & P_SECURE)
4153 errmsg = (char_u *)_("E520: Not allowed in a modeline");
4154 goto skip;
4156 #ifdef FEAT_DIFF
4157 /* In diff mode some options are overruled. This avoids that
4158 * 'foldmethod' becomes "marker" instead of "diff" and that
4159 * "wrap" gets set. */
4160 if (curwin->w_p_diff
4161 && (options[opt_idx].indir == PV_FDM
4162 || options[opt_idx].indir == PV_WRAP))
4163 goto skip;
4164 #endif
4167 #ifdef HAVE_SANDBOX
4168 /* Disallow changing some options in the sandbox */
4169 if (sandbox != 0 && (flags & P_SECURE))
4171 errmsg = (char_u *)_(e_sandbox);
4172 goto skip;
4174 #endif
4176 if (vim_strchr((char_u *)"?=:!&<", nextchar) != NULL)
4178 arg += len;
4179 cp_val = p_cp;
4180 if (nextchar == '&' && arg[1] == 'v' && arg[2] == 'i')
4182 if (arg[3] == 'm') /* "opt&vim": set to Vim default */
4184 cp_val = FALSE;
4185 arg += 3;
4187 else /* "opt&vi": set to Vi default */
4189 cp_val = TRUE;
4190 arg += 2;
4193 if (vim_strchr((char_u *)"?!&<", nextchar) != NULL
4194 && arg[1] != NUL && !vim_iswhite(arg[1]))
4196 errmsg = e_trailing;
4197 goto skip;
4202 * allow '=' and ':' as MSDOS command.com allows only one
4203 * '=' character per "set" command line. grrr. (jw)
4205 if (nextchar == '?'
4206 || (prefix == 1
4207 && vim_strchr((char_u *)"=:&<", nextchar) == NULL
4208 && !(flags & P_BOOL)))
4211 * print value
4213 if (did_show)
4214 msg_putchar('\n'); /* cursor below last one */
4215 else
4217 gotocmdline(TRUE); /* cursor at status line */
4218 did_show = TRUE; /* remember that we did a line */
4220 if (opt_idx >= 0)
4222 showoneopt(&options[opt_idx], opt_flags);
4223 #ifdef FEAT_EVAL
4224 if (p_verbose > 0)
4226 /* Mention where the option was last set. */
4227 if (varp == options[opt_idx].var)
4228 last_set_msg(options[opt_idx].scriptID);
4229 else if ((int)options[opt_idx].indir & PV_WIN)
4230 last_set_msg(curwin->w_p_scriptID[
4231 (int)options[opt_idx].indir & PV_MASK]);
4232 else if ((int)options[opt_idx].indir & PV_BUF)
4233 last_set_msg(curbuf->b_p_scriptID[
4234 (int)options[opt_idx].indir & PV_MASK]);
4236 #endif
4238 else
4240 char_u *p;
4242 p = find_termcode(key_name);
4243 if (p == NULL)
4245 errmsg = (char_u *)N_("E518: Unknown option");
4246 goto skip;
4248 else
4249 (void)show_one_termcode(key_name, p, TRUE);
4251 if (nextchar != '?'
4252 && nextchar != NUL && !vim_iswhite(afterchar))
4253 errmsg = e_trailing;
4255 else
4257 if (flags & P_BOOL) /* boolean */
4259 if (nextchar == '=' || nextchar == ':')
4261 errmsg = e_invarg;
4262 goto skip;
4266 * ":set opt!": invert
4267 * ":set opt&": reset to default value
4268 * ":set opt<": reset to global value
4270 if (nextchar == '!')
4271 value = *(int *)(varp) ^ 1;
4272 else if (nextchar == '&')
4273 value = (int)(long)(long_i)options[opt_idx].def_val[
4274 ((flags & P_VI_DEF) || cp_val)
4275 ? VI_DEFAULT : VIM_DEFAULT];
4276 else if (nextchar == '<')
4278 /* For 'autoread' -1 means to use global value. */
4279 if ((int *)varp == &curbuf->b_p_ar
4280 && opt_flags == OPT_LOCAL)
4281 value = -1;
4282 else
4283 value = *(int *)get_varp_scope(&(options[opt_idx]),
4284 OPT_GLOBAL);
4286 else
4289 * ":set invopt": invert
4290 * ":set opt" or ":set noopt": set or reset
4292 if (nextchar != NUL && !vim_iswhite(afterchar))
4294 errmsg = e_trailing;
4295 goto skip;
4297 if (prefix == 2) /* inv */
4298 value = *(int *)(varp) ^ 1;
4299 else
4300 value = prefix;
4303 errmsg = set_bool_option(opt_idx, varp, (int)value,
4304 opt_flags);
4306 else /* numeric or string */
4308 if (vim_strchr((char_u *)"=:&<", nextchar) == NULL
4309 || prefix != 1)
4311 errmsg = e_invarg;
4312 goto skip;
4315 if (flags & P_NUM) /* numeric */
4318 * Different ways to set a number option:
4319 * & set to default value
4320 * < set to global value
4321 * <xx> accept special key codes for 'wildchar'
4322 * c accept any non-digit for 'wildchar'
4323 * [-]0-9 set number
4324 * other error
4326 ++arg;
4327 if (nextchar == '&')
4328 value = (long)(long_i)options[opt_idx].def_val[
4329 ((flags & P_VI_DEF) || cp_val)
4330 ? VI_DEFAULT : VIM_DEFAULT];
4331 else if (nextchar == '<')
4332 value = *(long *)get_varp_scope(&(options[opt_idx]),
4333 OPT_GLOBAL);
4334 else if (((long *)varp == &p_wc
4335 || (long *)varp == &p_wcm)
4336 && (*arg == '<'
4337 || *arg == '^'
4338 || ((!arg[1] || vim_iswhite(arg[1]))
4339 && !VIM_ISDIGIT(*arg))))
4341 value = string_to_key(arg);
4342 if (value == 0 && (long *)varp != &p_wcm)
4344 errmsg = e_invarg;
4345 goto skip;
4348 /* allow negative numbers (for 'undolevels') */
4349 else if (*arg == '-' || VIM_ISDIGIT(*arg))
4351 i = 0;
4352 if (*arg == '-')
4353 i = 1;
4354 #ifdef HAVE_STRTOL
4355 value = strtol((char *)arg, NULL, 0);
4356 if (arg[i] == '0' && TOLOWER_ASC(arg[i + 1]) == 'x')
4357 i += 2;
4358 #else
4359 value = atol((char *)arg);
4360 #endif
4361 while (VIM_ISDIGIT(arg[i]))
4362 ++i;
4363 if (arg[i] != NUL && !vim_iswhite(arg[i]))
4365 errmsg = e_invarg;
4366 goto skip;
4369 else
4371 errmsg = (char_u *)N_("E521: Number required after =");
4372 goto skip;
4375 if (adding)
4376 value = *(long *)varp + value;
4377 if (prepending)
4378 value = *(long *)varp * value;
4379 if (removing)
4380 value = *(long *)varp - value;
4381 errmsg = set_num_option(opt_idx, varp, value,
4382 errbuf, sizeof(errbuf), opt_flags);
4384 else if (opt_idx >= 0) /* string */
4386 char_u *save_arg = NULL;
4387 char_u *s = NULL;
4388 char_u *oldval; /* previous value if *varp */
4389 char_u *newval;
4390 char_u *origval;
4391 unsigned newlen;
4392 int comma;
4393 int bs;
4394 int new_value_alloced; /* new string option
4395 was allocated */
4397 /* When using ":set opt=val" for a global option
4398 * with a local value the local value will be
4399 * reset, use the global value here. */
4400 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
4401 && ((int)options[opt_idx].indir & PV_BOTH))
4402 varp = options[opt_idx].var;
4404 /* The old value is kept until we are sure that the
4405 * new value is valid. */
4406 oldval = *(char_u **)varp;
4407 if (nextchar == '&') /* set to default val */
4409 newval = options[opt_idx].def_val[
4410 ((flags & P_VI_DEF) || cp_val)
4411 ? VI_DEFAULT : VIM_DEFAULT];
4412 if ((char_u **)varp == &p_bg)
4414 /* guess the value of 'background' */
4415 #ifdef FEAT_GUI
4416 if (gui.in_use)
4417 newval = gui_bg_default();
4418 else
4419 #endif
4420 newval = term_bg_default();
4423 /* expand environment variables and ~ (since the
4424 * default value was already expanded, only
4425 * required when an environment variable was set
4426 * later */
4427 if (newval == NULL)
4428 newval = empty_option;
4429 else
4431 s = option_expand(opt_idx, newval);
4432 if (s == NULL)
4433 s = newval;
4434 newval = vim_strsave(s);
4436 new_value_alloced = TRUE;
4438 else if (nextchar == '<') /* set to global val */
4440 newval = vim_strsave(*(char_u **)get_varp_scope(
4441 &(options[opt_idx]), OPT_GLOBAL));
4442 new_value_alloced = TRUE;
4444 else
4446 ++arg; /* jump to after the '=' or ':' */
4449 * Set 'keywordprg' to ":help" if an empty
4450 * value was passed to :set by the user.
4451 * Misuse errbuf[] for the resulting string.
4453 if (varp == (char_u *)&p_kp
4454 && (*arg == NUL || *arg == ' '))
4456 STRCPY(errbuf, ":help");
4457 save_arg = arg;
4458 arg = errbuf;
4461 * Convert 'whichwrap' number to string, for
4462 * backwards compatibility with Vim 3.0.
4463 * Misuse errbuf[] for the resulting string.
4465 else if (varp == (char_u *)&p_ww
4466 && VIM_ISDIGIT(*arg))
4468 *errbuf = NUL;
4469 i = getdigits(&arg);
4470 if (i & 1)
4471 STRCAT(errbuf, "b,");
4472 if (i & 2)
4473 STRCAT(errbuf, "s,");
4474 if (i & 4)
4475 STRCAT(errbuf, "h,l,");
4476 if (i & 8)
4477 STRCAT(errbuf, "<,>,");
4478 if (i & 16)
4479 STRCAT(errbuf, "[,],");
4480 if (*errbuf != NUL) /* remove trailing , */
4481 errbuf[STRLEN(errbuf) - 1] = NUL;
4482 save_arg = arg;
4483 arg = errbuf;
4486 * Remove '>' before 'dir' and 'bdir', for
4487 * backwards compatibility with version 3.0
4489 else if ( *arg == '>'
4490 && (varp == (char_u *)&p_dir
4491 || varp == (char_u *)&p_bdir))
4493 ++arg;
4496 /* When setting the local value of a global
4497 * option, the old value may be the global value. */
4498 if (((int)options[opt_idx].indir & PV_BOTH)
4499 && (opt_flags & OPT_LOCAL))
4500 origval = *(char_u **)get_varp(
4501 &options[opt_idx]);
4502 else
4503 origval = oldval;
4506 * Copy the new string into allocated memory.
4507 * Can't use set_string_option_direct(), because
4508 * we need to remove the backslashes.
4510 /* get a bit too much */
4511 newlen = (unsigned)STRLEN(arg) + 1;
4512 if (adding || prepending || removing)
4513 newlen += (unsigned)STRLEN(origval) + 1;
4514 newval = alloc(newlen);
4515 if (newval == NULL) /* out of mem, don't change */
4516 break;
4517 s = newval;
4520 * Copy the string, skip over escaped chars.
4521 * For MS-DOS and WIN32 backslashes before normal
4522 * file name characters are not removed, and keep
4523 * backslash at start, for "\\machine\path", but
4524 * do remove it for "\\\\machine\\path".
4525 * The reverse is found in ExpandOldSetting().
4527 while (*arg && !vim_iswhite(*arg))
4529 if (*arg == '\\' && arg[1] != NUL
4530 #ifdef BACKSLASH_IN_FILENAME
4531 && !((flags & P_EXPAND)
4532 && vim_isfilec(arg[1])
4533 && (arg[1] != '\\'
4534 || (s == newval
4535 && arg[2] != '\\')))
4536 #endif
4538 ++arg; /* remove backslash */
4539 #ifdef FEAT_MBYTE
4540 if (has_mbyte
4541 && (i = (*mb_ptr2len)(arg)) > 1)
4543 /* copy multibyte char */
4544 mch_memmove(s, arg, (size_t)i);
4545 arg += i;
4546 s += i;
4548 else
4549 #endif
4550 *s++ = *arg++;
4552 *s = NUL;
4555 * Expand environment variables and ~.
4556 * Don't do it when adding without inserting a
4557 * comma.
4559 if (!(adding || prepending || removing)
4560 || (flags & P_COMMA))
4562 s = option_expand(opt_idx, newval);
4563 if (s != NULL)
4565 vim_free(newval);
4566 newlen = (unsigned)STRLEN(s) + 1;
4567 if (adding || prepending || removing)
4568 newlen += (unsigned)STRLEN(origval) + 1;
4569 newval = alloc(newlen);
4570 if (newval == NULL)
4571 break;
4572 STRCPY(newval, s);
4576 /* locate newval[] in origval[] when removing it
4577 * and when adding to avoid duplicates */
4578 i = 0; /* init for GCC */
4579 if (removing || (flags & P_NODUP))
4581 i = (int)STRLEN(newval);
4582 bs = 0;
4583 for (s = origval; *s; ++s)
4585 if ((!(flags & P_COMMA)
4586 || s == origval
4587 || (s[-1] == ',' && !(bs & 1)))
4588 && STRNCMP(s, newval, i) == 0
4589 && (!(flags & P_COMMA)
4590 || s[i] == ','
4591 || s[i] == NUL))
4592 break;
4593 /* Count backspaces. Only a comma with an
4594 * even number of backspaces before it is
4595 * recognized as a separator */
4596 if (s > origval && s[-1] == '\\')
4597 ++bs;
4598 else
4599 bs = 0;
4602 /* do not add if already there */
4603 if ((adding || prepending) && *s)
4605 prepending = FALSE;
4606 adding = FALSE;
4607 STRCPY(newval, origval);
4611 /* concatenate the two strings; add a ',' if
4612 * needed */
4613 if (adding || prepending)
4615 comma = ((flags & P_COMMA) && *origval != NUL
4616 && *newval != NUL);
4617 if (adding)
4619 i = (int)STRLEN(origval);
4620 mch_memmove(newval + i + comma, newval,
4621 STRLEN(newval) + 1);
4622 mch_memmove(newval, origval, (size_t)i);
4624 else
4626 i = (int)STRLEN(newval);
4627 STRMOVE(newval + i + comma, origval);
4629 if (comma)
4630 newval[i] = ',';
4633 /* Remove newval[] from origval[]. (Note: "i" has
4634 * been set above and is used here). */
4635 if (removing)
4637 STRCPY(newval, origval);
4638 if (*s)
4640 /* may need to remove a comma */
4641 if (flags & P_COMMA)
4643 if (s == origval)
4645 /* include comma after string */
4646 if (s[i] == ',')
4647 ++i;
4649 else
4651 /* include comma before string */
4652 --s;
4653 ++i;
4656 STRMOVE(newval + (s - origval), s + i);
4660 if (flags & P_FLAGLIST)
4662 /* Remove flags that appear twice. */
4663 for (s = newval; *s; ++s)
4664 if ((!(flags & P_COMMA) || *s != ',')
4665 && vim_strchr(s + 1, *s) != NULL)
4667 STRMOVE(s, s + 1);
4668 --s;
4672 if (save_arg != NULL) /* number for 'whichwrap' */
4673 arg = save_arg;
4674 new_value_alloced = TRUE;
4677 /* Set the new value. */
4678 *(char_u **)(varp) = newval;
4680 /* Handle side effects, and set the global value for
4681 * ":set" on local options. */
4682 errmsg = did_set_string_option(opt_idx, (char_u **)varp,
4683 new_value_alloced, oldval, errbuf, opt_flags);
4685 /* If error detected, print the error message. */
4686 if (errmsg != NULL)
4687 goto skip;
4689 else /* key code option */
4691 char_u *p;
4693 if (nextchar == '&')
4695 if (add_termcap_entry(key_name, TRUE) == FAIL)
4696 errmsg = (char_u *)N_("E522: Not found in termcap");
4698 else
4700 ++arg; /* jump to after the '=' or ':' */
4701 for (p = arg; *p && !vim_iswhite(*p); ++p)
4702 if (*p == '\\' && p[1] != NUL)
4703 ++p;
4704 nextchar = *p;
4705 *p = NUL;
4706 add_termcode(key_name, arg, FALSE);
4707 *p = nextchar;
4709 if (full_screen)
4710 ttest(FALSE);
4711 redraw_all_later(CLEAR);
4715 if (opt_idx >= 0)
4716 did_set_option(opt_idx, opt_flags,
4717 !prepending && !adding && !removing);
4720 skip:
4722 * Advance to next argument.
4723 * - skip until a blank found, taking care of backslashes
4724 * - skip blanks
4725 * - skip one "=val" argument (for hidden options ":set gfn =xx")
4727 for (i = 0; i < 2 ; ++i)
4729 while (*arg != NUL && !vim_iswhite(*arg))
4730 if (*arg++ == '\\' && *arg != NUL)
4731 ++arg;
4732 arg = skipwhite(arg);
4733 if (*arg != '=')
4734 break;
4738 if (errmsg != NULL)
4740 vim_strncpy(IObuff, (char_u *)_(errmsg), IOSIZE - 1);
4741 i = (int)STRLEN(IObuff) + 2;
4742 if (i + (arg - startarg) < IOSIZE)
4744 /* append the argument with the error */
4745 STRCAT(IObuff, ": ");
4746 mch_memmove(IObuff + i, startarg, (arg - startarg));
4747 IObuff[i + (arg - startarg)] = NUL;
4749 /* make sure all characters are printable */
4750 trans_characters(IObuff, IOSIZE);
4752 ++no_wait_return; /* wait_return done later */
4753 emsg(IObuff); /* show error highlighted */
4754 --no_wait_return;
4756 return FAIL;
4759 arg = skipwhite(arg);
4762 theend:
4763 if (silent_mode && did_show)
4765 /* After displaying option values in silent mode. */
4766 silent_mode = FALSE;
4767 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
4768 msg_putchar('\n');
4769 cursor_on(); /* msg_start() switches it off */
4770 out_flush();
4771 silent_mode = TRUE;
4772 info_message = FALSE; /* use mch_msg(), not mch_errmsg() */
4775 return OK;
4779 * Call this when an option has been given a new value through a user command.
4780 * Sets the P_WAS_SET flag and takes care of the P_INSECURE flag.
4782 static void
4783 did_set_option(opt_idx, opt_flags, new_value)
4784 int opt_idx;
4785 int opt_flags; /* possibly with OPT_MODELINE */
4786 int new_value; /* value was replaced completely */
4788 long_u *p;
4790 options[opt_idx].flags |= P_WAS_SET;
4792 /* When an option is set in the sandbox, from a modeline or in secure mode
4793 * set the P_INSECURE flag. Otherwise, if a new value is stored reset the
4794 * flag. */
4795 p = insecure_flag(opt_idx, opt_flags);
4796 if (secure
4797 #ifdef HAVE_SANDBOX
4798 || sandbox != 0
4799 #endif
4800 || (opt_flags & OPT_MODELINE))
4801 *p = *p | P_INSECURE;
4802 else if (new_value)
4803 *p = *p & ~P_INSECURE;
4806 static char_u *
4807 illegal_char(errbuf, c)
4808 char_u *errbuf;
4809 int c;
4811 if (errbuf == NULL)
4812 return (char_u *)"";
4813 sprintf((char *)errbuf, _("E539: Illegal character <%s>"),
4814 (char *)transchar(c));
4815 return errbuf;
4819 * Convert a key name or string into a key value.
4820 * Used for 'wildchar' and 'cedit' options.
4822 static int
4823 string_to_key(arg)
4824 char_u *arg;
4826 if (*arg == '<')
4827 return find_key_option(arg + 1);
4828 if (*arg == '^')
4829 return Ctrl_chr(arg[1]);
4830 return *arg;
4833 #ifdef FEAT_CMDWIN
4835 * Check value of 'cedit' and set cedit_key.
4836 * Returns NULL if value is OK, error message otherwise.
4838 static char_u *
4839 check_cedit()
4841 int n;
4843 if (*p_cedit == NUL)
4844 cedit_key = -1;
4845 else
4847 n = string_to_key(p_cedit);
4848 if (vim_isprintc(n))
4849 return e_invarg;
4850 cedit_key = n;
4852 return NULL;
4854 #endif
4856 #ifdef FEAT_TITLE
4858 * When changing 'title', 'titlestring', 'icon' or 'iconstring', call
4859 * maketitle() to create and display it.
4860 * When switching the title or icon off, call mch_restore_title() to get
4861 * the old value back.
4863 static void
4864 did_set_title(icon)
4865 int icon; /* Did set icon instead of title */
4867 if (starting != NO_SCREEN
4868 #ifdef FEAT_GUI
4869 && !gui.starting
4870 #endif
4873 maketitle();
4874 if (icon)
4876 if (!p_icon)
4877 mch_restore_title(2);
4879 else
4881 if (!p_title)
4882 mch_restore_title(1);
4886 #endif
4889 * set_options_bin - called when 'bin' changes value.
4891 void
4892 set_options_bin(oldval, newval, opt_flags)
4893 int oldval;
4894 int newval;
4895 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
4898 * The option values that are changed when 'bin' changes are
4899 * copied when 'bin is set and restored when 'bin' is reset.
4901 if (newval)
4903 if (!oldval) /* switched on */
4905 if (!(opt_flags & OPT_GLOBAL))
4907 curbuf->b_p_tw_nobin = curbuf->b_p_tw;
4908 curbuf->b_p_wm_nobin = curbuf->b_p_wm;
4909 curbuf->b_p_ml_nobin = curbuf->b_p_ml;
4910 curbuf->b_p_et_nobin = curbuf->b_p_et;
4912 if (!(opt_flags & OPT_LOCAL))
4914 p_tw_nobin = p_tw;
4915 p_wm_nobin = p_wm;
4916 p_ml_nobin = p_ml;
4917 p_et_nobin = p_et;
4921 if (!(opt_flags & OPT_GLOBAL))
4923 curbuf->b_p_tw = 0; /* no automatic line wrap */
4924 curbuf->b_p_wm = 0; /* no automatic line wrap */
4925 curbuf->b_p_ml = 0; /* no modelines */
4926 curbuf->b_p_et = 0; /* no expandtab */
4928 if (!(opt_flags & OPT_LOCAL))
4930 p_tw = 0;
4931 p_wm = 0;
4932 p_ml = FALSE;
4933 p_et = FALSE;
4934 p_bin = TRUE; /* needed when called for the "-b" argument */
4937 else if (oldval) /* switched off */
4939 if (!(opt_flags & OPT_GLOBAL))
4941 curbuf->b_p_tw = curbuf->b_p_tw_nobin;
4942 curbuf->b_p_wm = curbuf->b_p_wm_nobin;
4943 curbuf->b_p_ml = curbuf->b_p_ml_nobin;
4944 curbuf->b_p_et = curbuf->b_p_et_nobin;
4946 if (!(opt_flags & OPT_LOCAL))
4948 p_tw = p_tw_nobin;
4949 p_wm = p_wm_nobin;
4950 p_ml = p_ml_nobin;
4951 p_et = p_et_nobin;
4956 #ifdef FEAT_VIMINFO
4958 * Find the parameter represented by the given character (eg ', :, ", or /),
4959 * and return its associated value in the 'viminfo' string.
4960 * Only works for number parameters, not for 'r' or 'n'.
4961 * If the parameter is not specified in the string or there is no following
4962 * number, return -1.
4965 get_viminfo_parameter(type)
4966 int type;
4968 char_u *p;
4970 p = find_viminfo_parameter(type);
4971 if (p != NULL && VIM_ISDIGIT(*p))
4972 return atoi((char *)p);
4973 return -1;
4977 * Find the parameter represented by the given character (eg ''', ':', '"', or
4978 * '/') in the 'viminfo' option and return a pointer to the string after it.
4979 * Return NULL if the parameter is not specified in the string.
4981 char_u *
4982 find_viminfo_parameter(type)
4983 int type;
4985 char_u *p;
4987 for (p = p_viminfo; *p; ++p)
4989 if (*p == type)
4990 return p + 1;
4991 if (*p == 'n') /* 'n' is always the last one */
4992 break;
4993 p = vim_strchr(p, ','); /* skip until next ',' */
4994 if (p == NULL) /* hit the end without finding parameter */
4995 break;
4997 return NULL;
4999 #endif
5002 * Expand environment variables for some string options.
5003 * These string options cannot be indirect!
5004 * If "val" is NULL expand the current value of the option.
5005 * Return pointer to NameBuff, or NULL when not expanded.
5007 static char_u *
5008 option_expand(opt_idx, val)
5009 int opt_idx;
5010 char_u *val;
5012 /* if option doesn't need expansion nothing to do */
5013 if (!(options[opt_idx].flags & P_EXPAND) || options[opt_idx].var == NULL)
5014 return NULL;
5016 /* If val is longer than MAXPATHL no meaningful expansion can be done,
5017 * expand_env() would truncate the string. */
5018 if (val != NULL && STRLEN(val) > MAXPATHL)
5019 return NULL;
5021 if (val == NULL)
5022 val = *(char_u **)options[opt_idx].var;
5025 * Expanding this with NameBuff, expand_env() must not be passed IObuff.
5026 * Escape spaces when expanding 'tags', they are used to separate file
5027 * names.
5028 * For 'spellsuggest' expand after "file:".
5030 expand_env_esc(val, NameBuff, MAXPATHL,
5031 (char_u **)options[opt_idx].var == &p_tags, FALSE,
5032 #ifdef FEAT_SPELL
5033 (char_u **)options[opt_idx].var == &p_sps ? (char_u *)"file:" :
5034 #endif
5035 NULL);
5036 if (STRCMP(NameBuff, val) == 0) /* they are the same */
5037 return NULL;
5039 return NameBuff;
5043 * After setting various option values: recompute variables that depend on
5044 * option values.
5046 static void
5047 didset_options()
5049 /* initialize the table for 'iskeyword' et.al. */
5050 (void)init_chartab();
5052 #ifdef FEAT_MBYTE
5053 (void)opt_strings_flags(p_cmp, p_cmp_values, &cmp_flags, TRUE);
5054 #endif
5055 (void)opt_strings_flags(p_bkc, p_bkc_values, &bkc_flags, TRUE);
5056 #ifdef FEAT_SESSION
5057 (void)opt_strings_flags(p_ssop, p_ssop_values, &ssop_flags, TRUE);
5058 (void)opt_strings_flags(p_vop, p_ssop_values, &vop_flags, TRUE);
5059 #endif
5060 #ifdef FEAT_FOLDING
5061 (void)opt_strings_flags(p_fdo, p_fdo_values, &fdo_flags, TRUE);
5062 #endif
5063 (void)opt_strings_flags(p_dy, p_dy_values, &dy_flags, TRUE);
5064 #ifdef FEAT_VIRTUALEDIT
5065 (void)opt_strings_flags(p_ve, p_ve_values, &ve_flags, TRUE);
5066 #endif
5067 #if defined(FEAT_MOUSE) && (defined(UNIX) || defined(VMS))
5068 (void)opt_strings_flags(p_ttym, p_ttym_values, &ttym_flags, FALSE);
5069 #endif
5070 #ifdef FEAT_SPELL
5071 (void)spell_check_msm();
5072 (void)spell_check_sps();
5073 (void)compile_cap_prog(curbuf);
5074 #endif
5075 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
5076 (void)opt_strings_flags(p_toolbar, p_toolbar_values, &toolbar_flags, TRUE);
5077 #endif
5078 #if defined(FEAT_TOOLBAR) && defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)
5079 (void)opt_strings_flags(p_tbis, p_tbis_values, &tbis_flags, FALSE);
5080 #endif
5081 #ifdef FEAT_CMDWIN
5082 /* set cedit_key */
5083 (void)check_cedit();
5084 #endif
5088 * Check for string options that are NULL (normally only termcap options).
5090 void
5091 check_options()
5093 int opt_idx;
5095 for (opt_idx = 0; options[opt_idx].fullname != NULL; opt_idx++)
5096 if ((options[opt_idx].flags & P_STRING) && options[opt_idx].var != NULL)
5097 check_string_option((char_u **)get_varp(&(options[opt_idx])));
5101 * Check string options in a buffer for NULL value.
5103 void
5104 check_buf_options(buf)
5105 buf_T *buf;
5107 #if defined(FEAT_QUICKFIX)
5108 check_string_option(&buf->b_p_bh);
5109 check_string_option(&buf->b_p_bt);
5110 #endif
5111 #ifdef FEAT_MBYTE
5112 check_string_option(&buf->b_p_fenc);
5113 #endif
5114 check_string_option(&buf->b_p_ff);
5115 #ifdef FEAT_FIND_ID
5116 check_string_option(&buf->b_p_def);
5117 check_string_option(&buf->b_p_inc);
5118 # ifdef FEAT_EVAL
5119 check_string_option(&buf->b_p_inex);
5120 # endif
5121 #endif
5122 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
5123 check_string_option(&buf->b_p_inde);
5124 check_string_option(&buf->b_p_indk);
5125 #endif
5126 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
5127 check_string_option(&buf->b_p_bexpr);
5128 #endif
5129 #if defined(FEAT_EVAL)
5130 check_string_option(&buf->b_p_fex);
5131 #endif
5132 #ifdef FEAT_CRYPT
5133 check_string_option(&buf->b_p_key);
5134 #endif
5135 check_string_option(&buf->b_p_kp);
5136 check_string_option(&buf->b_p_mps);
5137 check_string_option(&buf->b_p_fo);
5138 check_string_option(&buf->b_p_flp);
5139 check_string_option(&buf->b_p_isk);
5140 #ifdef FEAT_COMMENTS
5141 check_string_option(&buf->b_p_com);
5142 #endif
5143 #ifdef FEAT_FOLDING
5144 check_string_option(&buf->b_p_cms);
5145 #endif
5146 check_string_option(&buf->b_p_nf);
5147 #ifdef FEAT_TEXTOBJ
5148 check_string_option(&buf->b_p_qe);
5149 #endif
5150 #ifdef FEAT_SYN_HL
5151 check_string_option(&buf->b_p_syn);
5152 #endif
5153 #ifdef FEAT_SPELL
5154 check_string_option(&buf->b_p_spc);
5155 check_string_option(&buf->b_p_spf);
5156 check_string_option(&buf->b_p_spl);
5157 #endif
5158 #ifdef FEAT_SEARCHPATH
5159 check_string_option(&buf->b_p_sua);
5160 #endif
5161 #ifdef FEAT_CINDENT
5162 check_string_option(&buf->b_p_cink);
5163 check_string_option(&buf->b_p_cino);
5164 #endif
5165 #ifdef FEAT_AUTOCMD
5166 check_string_option(&buf->b_p_ft);
5167 #endif
5168 #ifdef FEAT_OSFILETYPE
5169 check_string_option(&buf->b_p_oft);
5170 #endif
5171 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
5172 check_string_option(&buf->b_p_cinw);
5173 #endif
5174 #ifdef FEAT_INS_EXPAND
5175 check_string_option(&buf->b_p_cpt);
5176 #endif
5177 #ifdef FEAT_COMPL_FUNC
5178 check_string_option(&buf->b_p_cfu);
5179 check_string_option(&buf->b_p_ofu);
5180 #endif
5181 #ifdef FEAT_KEYMAP
5182 check_string_option(&buf->b_p_keymap);
5183 #endif
5184 #ifdef FEAT_QUICKFIX
5185 check_string_option(&buf->b_p_gp);
5186 check_string_option(&buf->b_p_mp);
5187 check_string_option(&buf->b_p_efm);
5188 #endif
5189 check_string_option(&buf->b_p_ep);
5190 check_string_option(&buf->b_p_path);
5191 check_string_option(&buf->b_p_tags);
5192 #ifdef FEAT_INS_EXPAND
5193 check_string_option(&buf->b_p_dict);
5194 check_string_option(&buf->b_p_tsr);
5195 #endif
5199 * Free the string allocated for an option.
5200 * Checks for the string being empty_option. This may happen if we're out of
5201 * memory, vim_strsave() returned NULL, which was replaced by empty_option by
5202 * check_options().
5203 * Does NOT check for P_ALLOCED flag!
5205 void
5206 free_string_option(p)
5207 char_u *p;
5209 if (p != empty_option)
5210 vim_free(p);
5213 void
5214 clear_string_option(pp)
5215 char_u **pp;
5217 if (*pp != empty_option)
5218 vim_free(*pp);
5219 *pp = empty_option;
5222 static void
5223 check_string_option(pp)
5224 char_u **pp;
5226 if (*pp == NULL)
5227 *pp = empty_option;
5231 * Mark a terminal option as allocated, found by a pointer into term_strings[].
5233 void
5234 set_term_option_alloced(p)
5235 char_u **p;
5237 int opt_idx;
5239 for (opt_idx = 1; options[opt_idx].fullname != NULL; opt_idx++)
5240 if (options[opt_idx].var == (char_u *)p)
5242 options[opt_idx].flags |= P_ALLOCED;
5243 return;
5245 return; /* cannot happen: didn't find it! */
5248 #if defined(FEAT_EVAL) || defined(PROTO)
5250 * Return TRUE when option "opt" was set from a modeline or in secure mode.
5251 * Return FALSE when it wasn't.
5252 * Return -1 for an unknown option.
5255 was_set_insecurely(opt, opt_flags)
5256 char_u *opt;
5257 int opt_flags;
5259 int idx = findoption(opt);
5260 long_u *flagp;
5262 if (idx >= 0)
5264 flagp = insecure_flag(idx, opt_flags);
5265 return (*flagp & P_INSECURE) != 0;
5267 EMSG2(_(e_intern2), "was_set_insecurely()");
5268 return -1;
5272 * Get a pointer to the flags used for the P_INSECURE flag of option
5273 * "opt_idx". For some local options a local flags field is used.
5275 static long_u *
5276 insecure_flag(opt_idx, opt_flags)
5277 int opt_idx;
5278 int opt_flags;
5280 if (opt_flags & OPT_LOCAL)
5281 switch ((int)options[opt_idx].indir)
5283 #ifdef FEAT_STL_OPT
5284 case PV_STL: return &curwin->w_p_stl_flags;
5285 #endif
5286 #ifdef FEAT_EVAL
5287 # ifdef FEAT_FOLDING
5288 case PV_FDE: return &curwin->w_p_fde_flags;
5289 case PV_FDT: return &curwin->w_p_fdt_flags;
5290 # endif
5291 # ifdef FEAT_BEVAL
5292 case PV_BEXPR: return &curbuf->b_p_bexpr_flags;
5293 # endif
5294 # if defined(FEAT_CINDENT)
5295 case PV_INDE: return &curbuf->b_p_inde_flags;
5296 # endif
5297 case PV_FEX: return &curbuf->b_p_fex_flags;
5298 # ifdef FEAT_FIND_ID
5299 case PV_INEX: return &curbuf->b_p_inex_flags;
5300 # endif
5301 #endif
5304 /* Nothing special, return global flags field. */
5305 return &options[opt_idx].flags;
5307 #endif
5309 #ifdef FEAT_TITLE
5310 static void redraw_titles __ARGS((void));
5313 * Redraw the window title and/or tab page text later.
5315 static void redraw_titles()
5317 need_maketitle = TRUE;
5318 # ifdef FEAT_WINDOWS
5319 redraw_tabline = TRUE;
5320 # endif
5322 #endif
5325 * Set a string option to a new value (without checking the effect).
5326 * The string is copied into allocated memory.
5327 * if ("opt_idx" == -1) "name" is used, otherwise "opt_idx" is used.
5328 * When "set_sid" is zero set the scriptID to current_SID. When "set_sid" is
5329 * SID_NONE don't set the scriptID. Otherwise set the scriptID to "set_sid".
5331 void
5332 set_string_option_direct(name, opt_idx, val, opt_flags, set_sid)
5333 char_u *name;
5334 int opt_idx;
5335 char_u *val;
5336 int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */
5337 int set_sid UNUSED;
5339 char_u *s;
5340 char_u **varp;
5341 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
5342 int idx = opt_idx;
5344 if (idx == -1) /* use name */
5346 idx = findoption(name);
5347 if (idx < 0) /* not found (should not happen) */
5349 EMSG2(_(e_intern2), "set_string_option_direct()");
5350 return;
5354 if (options[idx].var == NULL) /* can't set hidden option */
5355 return;
5357 s = vim_strsave(val);
5358 if (s != NULL)
5360 varp = (char_u **)get_varp_scope(&(options[idx]),
5361 both ? OPT_LOCAL : opt_flags);
5362 if ((opt_flags & OPT_FREE) && (options[idx].flags & P_ALLOCED))
5363 free_string_option(*varp);
5364 *varp = s;
5366 /* For buffer/window local option may also set the global value. */
5367 if (both)
5368 set_string_option_global(idx, varp);
5370 options[idx].flags |= P_ALLOCED;
5372 /* When setting both values of a global option with a local value,
5373 * make the local value empty, so that the global value is used. */
5374 if (((int)options[idx].indir & PV_BOTH) && both)
5376 free_string_option(*varp);
5377 *varp = empty_option;
5379 # ifdef FEAT_EVAL
5380 if (set_sid != SID_NONE)
5381 set_option_scriptID_idx(idx, opt_flags,
5382 set_sid == 0 ? current_SID : set_sid);
5383 # endif
5388 * Set global value for string option when it's a local option.
5390 static void
5391 set_string_option_global(opt_idx, varp)
5392 int opt_idx; /* option index */
5393 char_u **varp; /* pointer to option variable */
5395 char_u **p, *s;
5397 /* the global value is always allocated */
5398 if (options[opt_idx].var == VAR_WIN)
5399 p = (char_u **)GLOBAL_WO(varp);
5400 else
5401 p = (char_u **)options[opt_idx].var;
5402 if (options[opt_idx].indir != PV_NONE
5403 && p != varp
5404 && (s = vim_strsave(*varp)) != NULL)
5406 free_string_option(*p);
5407 *p = s;
5412 * Set a string option to a new value, and handle the effects.
5414 static void
5415 set_string_option(opt_idx, value, opt_flags)
5416 int opt_idx;
5417 char_u *value;
5418 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
5420 char_u *s;
5421 char_u **varp;
5422 char_u *oldval;
5424 if (options[opt_idx].var == NULL) /* don't set hidden option */
5425 return;
5427 s = vim_strsave(value);
5428 if (s != NULL)
5430 varp = (char_u **)get_varp_scope(&(options[opt_idx]),
5431 (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
5432 ? (((int)options[opt_idx].indir & PV_BOTH)
5433 ? OPT_GLOBAL : OPT_LOCAL)
5434 : opt_flags);
5435 oldval = *varp;
5436 *varp = s;
5437 if (did_set_string_option(opt_idx, varp, TRUE, oldval, NULL,
5438 opt_flags) == NULL)
5439 did_set_option(opt_idx, opt_flags, TRUE);
5444 * Handle string options that need some action to perform when changed.
5445 * Returns NULL for success, or an error message for an error.
5447 static char_u *
5448 did_set_string_option(opt_idx, varp, new_value_alloced, oldval, errbuf,
5449 opt_flags)
5450 int opt_idx; /* index in options[] table */
5451 char_u **varp; /* pointer to the option variable */
5452 int new_value_alloced; /* new value was allocated */
5453 char_u *oldval; /* previous value of the option */
5454 char_u *errbuf; /* buffer for errors, or NULL */
5455 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
5457 char_u *errmsg = NULL;
5458 char_u *s, *p;
5459 int did_chartab = FALSE;
5460 char_u **gvarp;
5461 long_u free_oldval = (options[opt_idx].flags & P_ALLOCED);
5462 #ifdef FEAT_GUI
5463 /* set when changing an option that only requires a redraw in the GUI */
5464 int redraw_gui_only = FALSE;
5465 #endif
5467 /* Get the global option to compare with, otherwise we would have to check
5468 * two values for all local options. */
5469 gvarp = (char_u **)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL);
5471 /* Disallow changing some options from secure mode */
5472 if ((secure
5473 #ifdef HAVE_SANDBOX
5474 || sandbox != 0
5475 #endif
5476 ) && (options[opt_idx].flags & P_SECURE))
5478 errmsg = e_secure;
5481 /* Check for a "normal" file name in some options. Disallow a path
5482 * separator (slash and/or backslash), wildcards and characters that are
5483 * often illegal in a file name. */
5484 else if ((options[opt_idx].flags & P_NFNAME)
5485 && vim_strpbrk(*varp, (char_u *)"/\\*?[|<>") != NULL)
5487 errmsg = e_invarg;
5490 /* 'term' */
5491 else if (varp == &T_NAME)
5493 if (T_NAME[0] == NUL)
5494 errmsg = (char_u *)N_("E529: Cannot set 'term' to empty string");
5495 #ifdef FEAT_GUI
5496 if (gui.in_use)
5497 errmsg = (char_u *)N_("E530: Cannot change term in GUI");
5498 else if (term_is_gui(T_NAME))
5499 errmsg = (char_u *)N_("E531: Use \":gui\" to start the GUI");
5500 #endif
5501 else if (set_termname(T_NAME) == FAIL)
5502 errmsg = (char_u *)N_("E522: Not found in termcap");
5503 else
5504 /* Screen colors may have changed. */
5505 redraw_later_clear();
5508 /* 'backupcopy' */
5509 else if (varp == &p_bkc)
5511 if (opt_strings_flags(p_bkc, p_bkc_values, &bkc_flags, TRUE) != OK)
5512 errmsg = e_invarg;
5513 if (((bkc_flags & BKC_AUTO) != 0)
5514 + ((bkc_flags & BKC_YES) != 0)
5515 + ((bkc_flags & BKC_NO) != 0) != 1)
5517 /* Must have exactly one of "auto", "yes" and "no". */
5518 (void)opt_strings_flags(oldval, p_bkc_values, &bkc_flags, TRUE);
5519 errmsg = e_invarg;
5523 /* 'backupext' and 'patchmode' */
5524 else if (varp == &p_bex || varp == &p_pm)
5526 if (STRCMP(*p_bex == '.' ? p_bex + 1 : p_bex,
5527 *p_pm == '.' ? p_pm + 1 : p_pm) == 0)
5528 errmsg = (char_u *)N_("E589: 'backupext' and 'patchmode' are equal");
5532 * 'isident', 'iskeyword', 'isprint or 'isfname' option: refill chartab[]
5533 * If the new option is invalid, use old value. 'lisp' option: refill
5534 * chartab[] for '-' char
5536 else if ( varp == &p_isi
5537 || varp == &(curbuf->b_p_isk)
5538 || varp == &p_isp
5539 || varp == &p_isf)
5541 if (init_chartab() == FAIL)
5543 did_chartab = TRUE; /* need to restore it below */
5544 errmsg = e_invarg; /* error in value */
5548 /* 'helpfile' */
5549 else if (varp == &p_hf)
5551 /* May compute new values for $VIM and $VIMRUNTIME */
5552 if (didset_vim)
5554 vim_setenv((char_u *)"VIM", (char_u *)"");
5555 didset_vim = FALSE;
5557 if (didset_vimruntime)
5559 vim_setenv((char_u *)"VIMRUNTIME", (char_u *)"");
5560 didset_vimruntime = FALSE;
5564 #ifdef FEAT_MULTI_LANG
5565 /* 'helplang' */
5566 else if (varp == &p_hlg)
5568 /* Check for "", "ab", "ab,cd", etc. */
5569 for (s = p_hlg; *s != NUL; s += 3)
5571 if (s[1] == NUL || ((s[2] != ',' || s[3] == NUL) && s[2] != NUL))
5573 errmsg = e_invarg;
5574 break;
5576 if (s[2] == NUL)
5577 break;
5580 #endif
5582 /* 'highlight' */
5583 else if (varp == &p_hl)
5585 if (highlight_changed() == FAIL)
5586 errmsg = e_invarg; /* invalid flags */
5589 /* 'nrformats' */
5590 else if (gvarp == &p_nf)
5592 if (check_opt_strings(*varp, p_nf_values, TRUE) != OK)
5593 errmsg = e_invarg;
5596 #ifdef FEAT_SESSION
5597 /* 'sessionoptions' */
5598 else if (varp == &p_ssop)
5600 if (opt_strings_flags(p_ssop, p_ssop_values, &ssop_flags, TRUE) != OK)
5601 errmsg = e_invarg;
5602 if ((ssop_flags & SSOP_CURDIR) && (ssop_flags & SSOP_SESDIR))
5604 /* Don't allow both "sesdir" and "curdir". */
5605 (void)opt_strings_flags(oldval, p_ssop_values, &ssop_flags, TRUE);
5606 errmsg = e_invarg;
5609 /* 'viewoptions' */
5610 else if (varp == &p_vop)
5612 if (opt_strings_flags(p_vop, p_ssop_values, &vop_flags, TRUE) != OK)
5613 errmsg = e_invarg;
5615 #endif
5617 /* 'scrollopt' */
5618 #ifdef FEAT_SCROLLBIND
5619 else if (varp == &p_sbo)
5621 if (check_opt_strings(p_sbo, p_scbopt_values, TRUE) != OK)
5622 errmsg = e_invarg;
5624 #endif
5626 /* 'ambiwidth' */
5627 #ifdef FEAT_MBYTE
5628 else if (varp == &p_ambw)
5630 if (check_opt_strings(p_ambw, p_ambw_values, FALSE) != OK)
5631 errmsg = e_invarg;
5633 #endif
5635 /* 'background' */
5636 else if (varp == &p_bg)
5638 if (check_opt_strings(p_bg, p_bg_values, FALSE) == OK)
5640 #ifdef FEAT_EVAL
5641 int dark = (*p_bg == 'd');
5642 #endif
5644 init_highlight(FALSE, FALSE);
5646 #ifdef FEAT_EVAL
5647 if (dark != (*p_bg == 'd')
5648 && get_var_value((char_u *)"g:colors_name") != NULL)
5650 /* The color scheme must have set 'background' back to another
5651 * value, that's not what we want here. Disable the color
5652 * scheme and set the colors again. */
5653 do_unlet((char_u *)"g:colors_name", TRUE);
5654 free_string_option(p_bg);
5655 p_bg = vim_strsave((char_u *)(dark ? "dark" : "light"));
5656 check_string_option(&p_bg);
5657 init_highlight(FALSE, FALSE);
5659 #endif
5661 else
5662 errmsg = e_invarg;
5665 /* 'wildmode' */
5666 else if (varp == &p_wim)
5668 if (check_opt_wim() == FAIL)
5669 errmsg = e_invarg;
5672 #ifdef FEAT_CMDL_COMPL
5673 /* 'wildoptions' */
5674 else if (varp == &p_wop)
5676 if (check_opt_strings(p_wop, p_wop_values, TRUE) != OK)
5677 errmsg = e_invarg;
5679 #endif
5681 #ifdef FEAT_WAK
5682 /* 'winaltkeys' */
5683 else if (varp == &p_wak)
5685 if (*p_wak == NUL
5686 || check_opt_strings(p_wak, p_wak_values, FALSE) != OK)
5687 errmsg = e_invarg;
5688 # ifdef FEAT_MENU
5689 # ifdef FEAT_GUI_MOTIF
5690 else if (gui.in_use)
5691 gui_motif_set_mnemonics(p_wak[0] == 'y' || p_wak[0] == 'm');
5692 # else
5693 # ifdef FEAT_GUI_GTK
5694 else if (gui.in_use)
5695 gui_gtk_set_mnemonics(p_wak[0] == 'y' || p_wak[0] == 'm');
5696 # endif
5697 # endif
5698 # endif
5700 #endif
5702 #ifdef FEAT_AUTOCMD
5703 /* 'eventignore' */
5704 else if (varp == &p_ei)
5706 if (check_ei() == FAIL)
5707 errmsg = e_invarg;
5709 #endif
5711 #ifdef FEAT_MBYTE
5712 /* 'encoding' and 'fileencoding' */
5713 else if (varp == &p_enc || gvarp == &p_fenc || varp == &p_tenc)
5715 if (gvarp == &p_fenc)
5717 if (!curbuf->b_p_ma && opt_flags != OPT_GLOBAL)
5718 errmsg = e_modifiable;
5719 else if (vim_strchr(*varp, ',') != NULL)
5720 /* No comma allowed in 'fileencoding'; catches confusing it
5721 * with 'fileencodings'. */
5722 errmsg = e_invarg;
5723 else
5725 # ifdef FEAT_TITLE
5726 /* May show a "+" in the title now. */
5727 redraw_titles();
5728 # endif
5729 /* Add 'fileencoding' to the swap file. */
5730 ml_setflags(curbuf);
5733 if (errmsg == NULL)
5735 /* canonize the value, so that STRCMP() can be used on it */
5736 p = enc_canonize(*varp);
5737 if (p != NULL)
5739 vim_free(*varp);
5740 *varp = p;
5742 if (varp == &p_enc)
5744 errmsg = mb_init();
5745 # ifdef FEAT_TITLE
5746 redraw_titles();
5747 # endif
5751 # if defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)
5752 if (errmsg == NULL && varp == &p_tenc && gui.in_use)
5754 /* GTK+ 2 uses only a single encoding, and that is UTF-8. */
5755 if (STRCMP(p_tenc, "utf-8") != 0)
5756 errmsg = (char_u *)N_("E617: Cannot be changed in the GTK+ 2 GUI");
5758 # endif
5760 if (errmsg == NULL)
5762 # ifdef FEAT_KEYMAP
5763 /* When 'keymap' is used and 'encoding' changes, reload the keymap
5764 * (with another encoding). */
5765 if (varp == &p_enc && *curbuf->b_p_keymap != NUL)
5766 (void)keymap_init();
5767 # endif
5769 /* When 'termencoding' is not empty and 'encoding' changes or when
5770 * 'termencoding' changes, need to setup for keyboard input and
5771 * display output conversion. */
5772 if (((varp == &p_enc && *p_tenc != NUL) || varp == &p_tenc))
5774 convert_setup(&input_conv, p_tenc, p_enc);
5775 convert_setup(&output_conv, p_enc, p_tenc);
5778 # if defined(WIN3264) && defined(FEAT_MBYTE)
5779 /* $HOME may have characters in active code page. */
5780 if (varp == &p_enc)
5781 init_homedir();
5782 # endif
5785 #endif
5787 #if defined(FEAT_POSTSCRIPT)
5788 else if (varp == &p_penc)
5790 /* Canonize printencoding if VIM standard one */
5791 p = enc_canonize(p_penc);
5792 if (p != NULL)
5794 vim_free(p_penc);
5795 p_penc = p;
5797 else
5799 /* Ensure lower case and '-' for '_' */
5800 for (s = p_penc; *s != NUL; s++)
5802 if (*s == '_')
5803 *s = '-';
5804 else
5805 *s = TOLOWER_ASC(*s);
5809 #endif
5811 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
5812 else if (varp == &p_imak)
5814 if (gui.in_use && !im_xim_isvalid_imactivate())
5815 errmsg = e_invarg;
5817 #endif
5819 #ifdef FEAT_KEYMAP
5820 else if (varp == &curbuf->b_p_keymap)
5822 /* load or unload key mapping tables */
5823 errmsg = keymap_init();
5825 if (errmsg == NULL)
5827 if (*curbuf->b_p_keymap != NUL)
5829 /* Installed a new keymap, switch on using it. */
5830 curbuf->b_p_iminsert = B_IMODE_LMAP;
5831 if (curbuf->b_p_imsearch != B_IMODE_USE_INSERT)
5832 curbuf->b_p_imsearch = B_IMODE_LMAP;
5834 else
5836 /* Cleared the keymap, may reset 'iminsert' and 'imsearch'. */
5837 if (curbuf->b_p_iminsert == B_IMODE_LMAP)
5838 curbuf->b_p_iminsert = B_IMODE_NONE;
5839 if (curbuf->b_p_imsearch == B_IMODE_LMAP)
5840 curbuf->b_p_imsearch = B_IMODE_USE_INSERT;
5842 if ((opt_flags & OPT_LOCAL) == 0)
5844 set_iminsert_global();
5845 set_imsearch_global();
5847 # ifdef FEAT_WINDOWS
5848 status_redraw_curbuf();
5849 # endif
5852 #endif
5854 /* 'fileformat' */
5855 else if (gvarp == &p_ff)
5857 if (!curbuf->b_p_ma && !(opt_flags & OPT_GLOBAL))
5858 errmsg = e_modifiable;
5859 else if (check_opt_strings(*varp, p_ff_values, FALSE) != OK)
5860 errmsg = e_invarg;
5861 else
5863 /* may also change 'textmode' */
5864 if (get_fileformat(curbuf) == EOL_DOS)
5865 curbuf->b_p_tx = TRUE;
5866 else
5867 curbuf->b_p_tx = FALSE;
5868 #ifdef FEAT_TITLE
5869 redraw_titles();
5870 #endif
5871 /* update flag in swap file */
5872 ml_setflags(curbuf);
5876 /* 'fileformats' */
5877 else if (varp == &p_ffs)
5879 if (check_opt_strings(p_ffs, p_ff_values, TRUE) != OK)
5880 errmsg = e_invarg;
5881 else
5883 /* also change 'textauto' */
5884 if (*p_ffs == NUL)
5885 p_ta = FALSE;
5886 else
5887 p_ta = TRUE;
5891 #if defined(FEAT_CRYPT) && defined(FEAT_CMDHIST)
5892 /* 'cryptkey' */
5893 else if (gvarp == &p_key)
5895 /* Make sure the ":set" command doesn't show the new value in the
5896 * history. */
5897 remove_key_from_history();
5899 #endif
5901 /* 'matchpairs' */
5902 else if (gvarp == &p_mps)
5904 /* Check for "x:y,x:y" */
5905 for (p = *varp; *p != NUL; p += 4)
5907 if (p[1] != ':' || p[2] == NUL || (p[3] != NUL && p[3] != ','))
5909 errmsg = e_invarg;
5910 break;
5912 if (p[3] == NUL)
5913 break;
5917 #ifdef FEAT_COMMENTS
5918 /* 'comments' */
5919 else if (gvarp == &p_com)
5921 for (s = *varp; *s; )
5923 while (*s && *s != ':')
5925 if (vim_strchr((char_u *)COM_ALL, *s) == NULL
5926 && !VIM_ISDIGIT(*s) && *s != '-')
5928 errmsg = illegal_char(errbuf, *s);
5929 break;
5931 ++s;
5933 if (*s++ == NUL)
5934 errmsg = (char_u *)N_("E524: Missing colon");
5935 else if (*s == ',' || *s == NUL)
5936 errmsg = (char_u *)N_("E525: Zero length string");
5937 if (errmsg != NULL)
5938 break;
5939 while (*s && *s != ',')
5941 if (*s == '\\' && s[1] != NUL)
5942 ++s;
5943 ++s;
5945 s = skip_to_option_part(s);
5948 #endif
5950 /* 'listchars' */
5951 else if (varp == &p_lcs)
5953 errmsg = set_chars_option(varp);
5956 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
5957 /* 'fillchars' */
5958 else if (varp == &p_fcs)
5960 errmsg = set_chars_option(varp);
5962 #endif
5964 #ifdef FEAT_CMDWIN
5965 /* 'cedit' */
5966 else if (varp == &p_cedit)
5968 errmsg = check_cedit();
5970 #endif
5972 /* 'verbosefile' */
5973 else if (varp == &p_vfile)
5975 verbose_stop();
5976 if (*p_vfile != NUL && verbose_open() == FAIL)
5977 errmsg = e_invarg;
5980 #ifdef FEAT_VIMINFO
5981 /* 'viminfo' */
5982 else if (varp == &p_viminfo)
5984 for (s = p_viminfo; *s;)
5986 /* Check it's a valid character */
5987 if (vim_strchr((char_u *)"!\"%'/:<@cfhnrs", *s) == NULL)
5989 errmsg = illegal_char(errbuf, *s);
5990 break;
5992 if (*s == 'n') /* name is always last one */
5994 break;
5996 else if (*s == 'r') /* skip until next ',' */
5998 while (*++s && *s != ',')
6001 else if (*s == '%')
6003 /* optional number */
6004 while (vim_isdigit(*++s))
6007 else if (*s == '!' || *s == 'h' || *s == 'c')
6008 ++s; /* no extra chars */
6009 else /* must have a number */
6011 while (vim_isdigit(*++s))
6014 if (!VIM_ISDIGIT(*(s - 1)))
6016 if (errbuf != NULL)
6018 sprintf((char *)errbuf,
6019 _("E526: Missing number after <%s>"),
6020 transchar_byte(*(s - 1)));
6021 errmsg = errbuf;
6023 else
6024 errmsg = (char_u *)"";
6025 break;
6028 if (*s == ',')
6029 ++s;
6030 else if (*s)
6032 if (errbuf != NULL)
6033 errmsg = (char_u *)N_("E527: Missing comma");
6034 else
6035 errmsg = (char_u *)"";
6036 break;
6039 if (*p_viminfo && errmsg == NULL && get_viminfo_parameter('\'') < 0)
6040 errmsg = (char_u *)N_("E528: Must specify a ' value");
6042 #endif /* FEAT_VIMINFO */
6044 /* terminal options */
6045 else if (istermoption(&options[opt_idx]) && full_screen)
6047 /* ":set t_Co=0" and ":set t_Co=1" do ":set t_Co=" */
6048 if (varp == &T_CCO)
6050 int colors = atoi((char *)T_CCO);
6052 /* Only reinitialize colors if t_Co value has really changed to
6053 * avoid expensive reload of colorscheme if t_Co is set to the
6054 * same value multiple times. */
6055 if (colors != t_colors)
6057 t_colors = colors;
6058 if (t_colors <= 1)
6060 if (new_value_alloced)
6061 vim_free(T_CCO);
6062 T_CCO = empty_option;
6064 /* We now have a different color setup, initialize it again. */
6065 init_highlight(TRUE, FALSE);
6068 ttest(FALSE);
6069 if (varp == &T_ME)
6071 out_str(T_ME);
6072 redraw_later(CLEAR);
6073 #if defined(MSDOS) || (defined(WIN3264) && !defined(FEAT_GUI_W32))
6074 /* Since t_me has been set, this probably means that the user
6075 * wants to use this as default colors. Need to reset default
6076 * background/foreground colors. */
6077 mch_set_normal_colors();
6078 #endif
6082 #ifdef FEAT_LINEBREAK
6083 /* 'showbreak' */
6084 else if (varp == &p_sbr)
6086 for (s = p_sbr; *s; )
6088 if (ptr2cells(s) != 1)
6089 errmsg = (char_u *)N_("E595: contains unprintable or wide character");
6090 mb_ptr_adv(s);
6093 #endif
6095 #ifdef FEAT_GUI
6096 /* 'guifont' */
6097 else if (varp == &p_guifont)
6099 if (gui.in_use)
6101 p = p_guifont;
6102 # if defined(FEAT_GUI_GTK)
6104 * Put up a font dialog and let the user select a new value.
6105 * If this is cancelled go back to the old value but don't
6106 * give an error message.
6108 if (STRCMP(p, "*") == 0)
6110 p = gui_mch_font_dialog(oldval);
6112 if (new_value_alloced)
6113 free_string_option(p_guifont);
6115 p_guifont = (p != NULL) ? p : vim_strsave(oldval);
6116 new_value_alloced = TRUE;
6118 # endif
6119 if (p != NULL && gui_init_font(p_guifont, FALSE) != OK)
6121 # if defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_PHOTON)
6122 if (STRCMP(p_guifont, "*") == 0)
6124 /* Dialog was cancelled: Keep the old value without giving
6125 * an error message. */
6126 if (new_value_alloced)
6127 free_string_option(p_guifont);
6128 p_guifont = vim_strsave(oldval);
6129 new_value_alloced = TRUE;
6131 else
6132 # endif
6133 errmsg = (char_u *)N_("E596: Invalid font(s)");
6136 redraw_gui_only = TRUE;
6138 # ifdef FEAT_XFONTSET
6139 else if (varp == &p_guifontset)
6141 if (STRCMP(p_guifontset, "*") == 0)
6142 errmsg = (char_u *)N_("E597: can't select fontset");
6143 else if (gui.in_use && gui_init_font(p_guifontset, TRUE) != OK)
6144 errmsg = (char_u *)N_("E598: Invalid fontset");
6145 redraw_gui_only = TRUE;
6147 # endif
6148 # ifdef FEAT_MBYTE
6149 else if (varp == &p_guifontwide)
6151 if (STRCMP(p_guifontwide, "*") == 0)
6152 errmsg = (char_u *)N_("E533: can't select wide font");
6153 else if (gui_get_wide_font() == FAIL)
6154 errmsg = (char_u *)N_("E534: Invalid wide font");
6155 redraw_gui_only = TRUE;
6157 # endif
6158 #endif
6160 #ifdef CURSOR_SHAPE
6161 /* 'guicursor' */
6162 else if (varp == &p_guicursor)
6163 errmsg = parse_shape_opt(SHAPE_CURSOR);
6164 #endif
6166 #ifdef FEAT_MOUSESHAPE
6167 /* 'mouseshape' */
6168 else if (varp == &p_mouseshape)
6170 errmsg = parse_shape_opt(SHAPE_MOUSE);
6171 update_mouseshape(-1);
6173 #endif
6175 #ifdef FEAT_PRINTER
6176 else if (varp == &p_popt)
6177 errmsg = parse_printoptions();
6178 # if defined(FEAT_MBYTE) && defined(FEAT_POSTSCRIPT)
6179 else if (varp == &p_pmfn)
6180 errmsg = parse_printmbfont();
6181 # endif
6182 #endif
6184 #ifdef FEAT_LANGMAP
6185 /* 'langmap' */
6186 else if (varp == &p_langmap)
6187 langmap_set();
6188 #endif
6190 #ifdef FEAT_LINEBREAK
6191 /* 'breakat' */
6192 else if (varp == &p_breakat)
6193 fill_breakat_flags();
6194 #endif
6196 #ifdef FEAT_TITLE
6197 /* 'titlestring' and 'iconstring' */
6198 else if (varp == &p_titlestring || varp == &p_iconstring)
6200 # ifdef FEAT_STL_OPT
6201 int flagval = (varp == &p_titlestring) ? STL_IN_TITLE : STL_IN_ICON;
6203 /* NULL => statusline syntax */
6204 if (vim_strchr(*varp, '%') && check_stl_option(*varp) == NULL)
6205 stl_syntax |= flagval;
6206 else
6207 stl_syntax &= ~flagval;
6208 # endif
6209 did_set_title(varp == &p_iconstring);
6212 #endif
6214 #ifdef FEAT_GUI
6215 /* 'guioptions' */
6216 else if (varp == &p_go)
6218 gui_init_which_components(oldval);
6219 redraw_gui_only = TRUE;
6221 #endif
6223 #if defined(FEAT_GUI_TABLINE)
6224 /* 'guitablabel' */
6225 else if (varp == &p_gtl)
6227 redraw_tabline = TRUE;
6228 redraw_gui_only = TRUE;
6230 /* 'guitabtooltip' */
6231 else if (varp == &p_gtt)
6233 redraw_gui_only = TRUE;
6235 #endif
6237 #if defined(FEAT_MOUSE_TTY) && (defined(UNIX) || defined(VMS))
6238 /* 'ttymouse' */
6239 else if (varp == &p_ttym)
6241 /* Switch the mouse off before changing the escape sequences used for
6242 * that. */
6243 mch_setmouse(FALSE);
6244 if (opt_strings_flags(p_ttym, p_ttym_values, &ttym_flags, FALSE) != OK)
6245 errmsg = e_invarg;
6246 else
6247 check_mouse_termcode();
6248 if (termcap_active)
6249 setmouse(); /* may switch it on again */
6251 #endif
6253 #ifdef FEAT_VISUAL
6254 /* 'selection' */
6255 else if (varp == &p_sel)
6257 if (*p_sel == NUL
6258 || check_opt_strings(p_sel, p_sel_values, FALSE) != OK)
6259 errmsg = e_invarg;
6262 /* 'selectmode' */
6263 else if (varp == &p_slm)
6265 if (check_opt_strings(p_slm, p_slm_values, TRUE) != OK)
6266 errmsg = e_invarg;
6268 #endif
6270 #ifdef FEAT_BROWSE
6271 /* 'browsedir' */
6272 else if (varp == &p_bsdir)
6274 if (check_opt_strings(p_bsdir, p_bsdir_values, FALSE) != OK
6275 && !mch_isdir(p_bsdir))
6276 errmsg = e_invarg;
6278 #endif
6280 #ifdef FEAT_VISUAL
6281 /* 'keymodel' */
6282 else if (varp == &p_km)
6284 if (check_opt_strings(p_km, p_km_values, TRUE) != OK)
6285 errmsg = e_invarg;
6286 else
6288 km_stopsel = (vim_strchr(p_km, 'o') != NULL);
6289 km_startsel = (vim_strchr(p_km, 'a') != NULL);
6292 #endif
6294 /* 'mousemodel' */
6295 else if (varp == &p_mousem)
6297 if (check_opt_strings(p_mousem, p_mousem_values, FALSE) != OK)
6298 errmsg = e_invarg;
6299 #if defined(FEAT_GUI_MOTIF) && defined(FEAT_MENU) && (XmVersion <= 1002)
6300 else if (*p_mousem != *oldval)
6301 /* Changed from "extend" to "popup" or "popup_setpos" or vv: need
6302 * to create or delete the popup menus. */
6303 gui_motif_update_mousemodel(root_menu);
6304 #endif
6307 /* 'switchbuf' */
6308 else if (varp == &p_swb)
6310 if (opt_strings_flags(p_swb, p_swb_values, &swb_flags, TRUE) != OK)
6311 errmsg = e_invarg;
6314 /* 'debug' */
6315 else if (varp == &p_debug)
6317 if (check_opt_strings(p_debug, p_debug_values, TRUE) != OK)
6318 errmsg = e_invarg;
6321 /* 'display' */
6322 else if (varp == &p_dy)
6324 if (opt_strings_flags(p_dy, p_dy_values, &dy_flags, TRUE) != OK)
6325 errmsg = e_invarg;
6326 else
6327 (void)init_chartab();
6331 #ifdef FEAT_VERTSPLIT
6332 /* 'eadirection' */
6333 else if (varp == &p_ead)
6335 if (check_opt_strings(p_ead, p_ead_values, FALSE) != OK)
6336 errmsg = e_invarg;
6338 #endif
6340 #ifdef FEAT_CLIPBOARD
6341 /* 'clipboard' */
6342 else if (varp == &p_cb)
6343 errmsg = check_clipboard_option();
6344 #endif
6346 #ifdef FEAT_SPELL
6347 /* When 'spelllang' or 'spellfile' is set and there is a window for this
6348 * buffer in which 'spell' is set load the wordlists. */
6349 else if (varp == &(curbuf->b_p_spl) || varp == &(curbuf->b_p_spf))
6351 win_T *wp;
6352 int l;
6354 if (varp == &(curbuf->b_p_spf))
6356 l = (int)STRLEN(curbuf->b_p_spf);
6357 if (l > 0 && (l < 4 || STRCMP(curbuf->b_p_spf + l - 4,
6358 ".add") != 0))
6359 errmsg = e_invarg;
6362 if (errmsg == NULL)
6364 FOR_ALL_WINDOWS(wp)
6365 if (wp->w_buffer == curbuf && wp->w_p_spell)
6367 errmsg = did_set_spelllang(curbuf);
6368 # ifdef FEAT_WINDOWS
6369 break;
6370 # endif
6374 /* When 'spellcapcheck' is set compile the regexp program. */
6375 else if (varp == &(curbuf->b_p_spc))
6377 errmsg = compile_cap_prog(curbuf);
6379 /* 'spellsuggest' */
6380 else if (varp == &p_sps)
6382 if (spell_check_sps() != OK)
6383 errmsg = e_invarg;
6385 /* 'mkspellmem' */
6386 else if (varp == &p_msm)
6388 if (spell_check_msm() != OK)
6389 errmsg = e_invarg;
6391 #endif
6393 #ifdef FEAT_QUICKFIX
6394 /* When 'bufhidden' is set, check for valid value. */
6395 else if (gvarp == &p_bh)
6397 if (check_opt_strings(curbuf->b_p_bh, p_bufhidden_values, FALSE) != OK)
6398 errmsg = e_invarg;
6401 /* When 'buftype' is set, check for valid value. */
6402 else if (gvarp == &p_bt)
6404 if (check_opt_strings(curbuf->b_p_bt, p_buftype_values, FALSE) != OK)
6405 errmsg = e_invarg;
6406 else
6408 # ifdef FEAT_WINDOWS
6409 if (curwin->w_status_height)
6411 curwin->w_redr_status = TRUE;
6412 redraw_later(VALID);
6414 # endif
6415 curbuf->b_help = (curbuf->b_p_bt[0] == 'h');
6418 #endif
6420 #ifdef FEAT_STL_OPT
6421 /* 'statusline' or 'rulerformat' */
6422 else if (gvarp == &p_stl || varp == &p_ruf)
6424 int wid;
6426 if (varp == &p_ruf) /* reset ru_wid first */
6427 ru_wid = 0;
6428 s = *varp;
6429 if (varp == &p_ruf && *s == '%')
6431 /* set ru_wid if 'ruf' starts with "%99(" */
6432 if (*++s == '-') /* ignore a '-' */
6433 s++;
6434 wid = getdigits(&s);
6435 if (wid && *s == '(' && (errmsg = check_stl_option(p_ruf)) == NULL)
6436 ru_wid = wid;
6437 else
6438 errmsg = check_stl_option(p_ruf);
6440 /* check 'statusline' only if it doesn't start with "%!" */
6441 else if (varp == &p_ruf || s[0] != '%' || s[1] != '!')
6442 errmsg = check_stl_option(s);
6443 if (varp == &p_ruf && errmsg == NULL)
6444 comp_col();
6446 #endif
6448 #ifdef FEAT_INS_EXPAND
6449 /* check if it is a valid value for 'complete' -- Acevedo */
6450 else if (gvarp == &p_cpt)
6452 for (s = *varp; *s;)
6454 while(*s == ',' || *s == ' ')
6455 s++;
6456 if (!*s)
6457 break;
6458 if (vim_strchr((char_u *)".wbuksid]tU", *s) == NULL)
6460 errmsg = illegal_char(errbuf, *s);
6461 break;
6463 if (*++s != NUL && *s != ',' && *s != ' ')
6465 if (s[-1] == 'k' || s[-1] == 's')
6467 /* skip optional filename after 'k' and 's' */
6468 while (*s && *s != ',' && *s != ' ')
6470 if (*s == '\\')
6471 ++s;
6472 ++s;
6475 else
6477 if (errbuf != NULL)
6479 sprintf((char *)errbuf,
6480 _("E535: Illegal character after <%c>"),
6481 *--s);
6482 errmsg = errbuf;
6484 else
6485 errmsg = (char_u *)"";
6486 break;
6492 /* 'completeopt' */
6493 else if (varp == &p_cot)
6495 if (check_opt_strings(p_cot, p_cot_values, TRUE) != OK)
6496 errmsg = e_invarg;
6498 #endif /* FEAT_INS_EXPAND */
6501 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
6502 else if (varp == &p_toolbar)
6504 if (opt_strings_flags(p_toolbar, p_toolbar_values,
6505 &toolbar_flags, TRUE) != OK)
6506 errmsg = e_invarg;
6507 else
6509 out_flush();
6510 gui_mch_show_toolbar((toolbar_flags &
6511 (TOOLBAR_TEXT | TOOLBAR_ICONS)) != 0);
6514 #endif
6516 #if defined(FEAT_TOOLBAR) && defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)
6517 /* 'toolbariconsize': GTK+ 2 only */
6518 else if (varp == &p_tbis)
6520 if (opt_strings_flags(p_tbis, p_tbis_values, &tbis_flags, FALSE) != OK)
6521 errmsg = e_invarg;
6522 else
6524 out_flush();
6525 gui_mch_show_toolbar((toolbar_flags &
6526 (TOOLBAR_TEXT | TOOLBAR_ICONS)) != 0);
6529 #endif
6531 /* 'pastetoggle': translate key codes like in a mapping */
6532 else if (varp == &p_pt)
6534 if (*p_pt)
6536 (void)replace_termcodes(p_pt, &p, TRUE, TRUE, FALSE);
6537 if (p != NULL)
6539 if (new_value_alloced)
6540 free_string_option(p_pt);
6541 p_pt = p;
6542 new_value_alloced = TRUE;
6547 /* 'backspace' */
6548 else if (varp == &p_bs)
6550 if (VIM_ISDIGIT(*p_bs))
6552 if (*p_bs >'2' || p_bs[1] != NUL)
6553 errmsg = e_invarg;
6555 else if (check_opt_strings(p_bs, p_bs_values, TRUE) != OK)
6556 errmsg = e_invarg;
6559 #ifdef FEAT_MBYTE
6560 /* 'casemap' */
6561 else if (varp == &p_cmp)
6563 if (opt_strings_flags(p_cmp, p_cmp_values, &cmp_flags, TRUE) != OK)
6564 errmsg = e_invarg;
6566 #endif
6568 #ifdef FEAT_DIFF
6569 /* 'diffopt' */
6570 else if (varp == &p_dip)
6572 if (diffopt_changed() == FAIL)
6573 errmsg = e_invarg;
6575 #endif
6577 #ifdef FEAT_FOLDING
6578 /* 'foldmethod' */
6579 else if (gvarp == &curwin->w_allbuf_opt.wo_fdm)
6581 if (check_opt_strings(*varp, p_fdm_values, FALSE) != OK
6582 || *curwin->w_p_fdm == NUL)
6583 errmsg = e_invarg;
6584 else
6585 foldUpdateAll(curwin);
6587 # ifdef FEAT_EVAL
6588 /* 'foldexpr' */
6589 else if (varp == &curwin->w_p_fde)
6591 if (foldmethodIsExpr(curwin))
6592 foldUpdateAll(curwin);
6594 # endif
6595 /* 'foldmarker' */
6596 else if (gvarp == &curwin->w_allbuf_opt.wo_fmr)
6598 p = vim_strchr(*varp, ',');
6599 if (p == NULL)
6600 errmsg = (char_u *)N_("E536: comma required");
6601 else if (p == *varp || p[1] == NUL)
6602 errmsg = e_invarg;
6603 else if (foldmethodIsMarker(curwin))
6604 foldUpdateAll(curwin);
6606 /* 'commentstring' */
6607 else if (gvarp == &p_cms)
6609 if (**varp != NUL && strstr((char *)*varp, "%s") == NULL)
6610 errmsg = (char_u *)N_("E537: 'commentstring' must be empty or contain %s");
6612 /* 'foldopen' */
6613 else if (varp == &p_fdo)
6615 if (opt_strings_flags(p_fdo, p_fdo_values, &fdo_flags, TRUE) != OK)
6616 errmsg = e_invarg;
6618 /* 'foldclose' */
6619 else if (varp == &p_fcl)
6621 if (check_opt_strings(p_fcl, p_fcl_values, TRUE) != OK)
6622 errmsg = e_invarg;
6624 /* 'foldignore' */
6625 else if (gvarp == &curwin->w_allbuf_opt.wo_fdi)
6627 if (foldmethodIsIndent(curwin))
6628 foldUpdateAll(curwin);
6630 #endif
6632 #ifdef FEAT_VIRTUALEDIT
6633 /* 'virtualedit' */
6634 else if (varp == &p_ve)
6636 if (opt_strings_flags(p_ve, p_ve_values, &ve_flags, TRUE) != OK)
6637 errmsg = e_invarg;
6638 else if (STRCMP(p_ve, oldval) != 0)
6640 /* Recompute cursor position in case the new 've' setting
6641 * changes something. */
6642 validate_virtcol();
6643 coladvance(curwin->w_virtcol);
6646 #endif
6648 #if defined(FEAT_CSCOPE) && defined(FEAT_QUICKFIX)
6649 else if (varp == &p_csqf)
6651 if (p_csqf != NULL)
6653 p = p_csqf;
6654 while (*p != NUL)
6656 if (vim_strchr((char_u *)CSQF_CMDS, *p) == NULL
6657 || p[1] == NUL
6658 || vim_strchr((char_u *)CSQF_FLAGS, p[1]) == NULL
6659 || (p[2] != NUL && p[2] != ','))
6661 errmsg = e_invarg;
6662 break;
6664 else if (p[2] == NUL)
6665 break;
6666 else
6667 p += 3;
6671 #endif
6673 /* Options that are a list of flags. */
6674 else
6676 p = NULL;
6677 if (varp == &p_ww)
6678 p = (char_u *)WW_ALL;
6679 if (varp == &p_shm)
6680 p = (char_u *)SHM_ALL;
6681 else if (varp == &(p_cpo))
6682 p = (char_u *)CPO_ALL;
6683 else if (varp == &(curbuf->b_p_fo))
6684 p = (char_u *)FO_ALL;
6685 else if (varp == &p_mouse)
6687 #ifdef FEAT_MOUSE
6688 p = (char_u *)MOUSE_ALL;
6689 #else
6690 if (*p_mouse != NUL)
6691 errmsg = (char_u *)N_("E538: No mouse support");
6692 #endif
6694 #if defined(FEAT_GUI)
6695 else if (varp == &p_go)
6696 p = (char_u *)GO_ALL;
6697 #endif
6698 if (p != NULL)
6700 for (s = *varp; *s; ++s)
6701 if (vim_strchr(p, *s) == NULL)
6703 errmsg = illegal_char(errbuf, *s);
6704 break;
6710 * If error detected, restore the previous value.
6712 if (errmsg != NULL)
6714 if (new_value_alloced)
6715 free_string_option(*varp);
6716 *varp = oldval;
6718 * When resetting some values, need to act on it.
6720 if (did_chartab)
6721 (void)init_chartab();
6722 if (varp == &p_hl)
6723 (void)highlight_changed();
6725 else
6727 #ifdef FEAT_EVAL
6728 /* Remember where the option was set. */
6729 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
6730 #endif
6732 * Free string options that are in allocated memory.
6733 * Use "free_oldval", because recursiveness may change the flags under
6734 * our fingers (esp. init_highlight()).
6736 if (free_oldval)
6737 free_string_option(oldval);
6738 if (new_value_alloced)
6739 options[opt_idx].flags |= P_ALLOCED;
6740 else
6741 options[opt_idx].flags &= ~P_ALLOCED;
6743 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
6744 && ((int)options[opt_idx].indir & PV_BOTH))
6746 /* global option with local value set to use global value; free
6747 * the local value and make it empty */
6748 p = get_varp_scope(&(options[opt_idx]), OPT_LOCAL);
6749 free_string_option(*(char_u **)p);
6750 *(char_u **)p = empty_option;
6753 /* May set global value for local option. */
6754 else if (!(opt_flags & OPT_LOCAL) && opt_flags != OPT_GLOBAL)
6755 set_string_option_global(opt_idx, varp);
6757 #ifdef FEAT_AUTOCMD
6759 * Trigger the autocommand only after setting the flags.
6761 # ifdef FEAT_SYN_HL
6762 /* When 'syntax' is set, load the syntax of that name */
6763 if (varp == &(curbuf->b_p_syn))
6765 apply_autocmds(EVENT_SYNTAX, curbuf->b_p_syn,
6766 curbuf->b_fname, TRUE, curbuf);
6768 # endif
6769 else if (varp == &(curbuf->b_p_ft))
6771 /* 'filetype' is set, trigger the FileType autocommand */
6772 did_filetype = TRUE;
6773 apply_autocmds(EVENT_FILETYPE, curbuf->b_p_ft,
6774 curbuf->b_fname, TRUE, curbuf);
6776 #endif
6777 #ifdef FEAT_SPELL
6778 if (varp == &(curbuf->b_p_spl))
6780 char_u fname[200];
6783 * Source the spell/LANG.vim in 'runtimepath'.
6784 * They could set 'spellcapcheck' depending on the language.
6785 * Use the first name in 'spelllang' up to '_region' or
6786 * '.encoding'.
6788 for (p = curbuf->b_p_spl; *p != NUL; ++p)
6789 if (vim_strchr((char_u *)"_.,", *p) != NULL)
6790 break;
6791 vim_snprintf((char *)fname, 200, "spell/%.*s.vim",
6792 (int)(p - curbuf->b_p_spl), curbuf->b_p_spl);
6793 source_runtime(fname, TRUE);
6795 #endif
6798 #ifdef FEAT_MOUSE
6799 if (varp == &p_mouse)
6801 # ifdef FEAT_MOUSE_TTY
6802 if (*p_mouse == NUL)
6803 mch_setmouse(FALSE); /* switch mouse off */
6804 else
6805 # endif
6806 setmouse(); /* in case 'mouse' changed */
6808 #endif
6810 if (curwin->w_curswant != MAXCOL)
6811 curwin->w_set_curswant = TRUE; /* in case 'showbreak' changed */
6812 #ifdef FEAT_GUI
6813 /* check redraw when it's not a GUI option or the GUI is active. */
6814 if (!redraw_gui_only || gui.in_use)
6815 #endif
6816 check_redraw(options[opt_idx].flags);
6818 return errmsg;
6822 * Handle setting 'listchars' or 'fillchars'.
6823 * Returns error message, NULL if it's OK.
6825 static char_u *
6826 set_chars_option(varp)
6827 char_u **varp;
6829 int round, i, len, entries;
6830 char_u *p, *s;
6831 int c1, c2 = 0;
6832 struct charstab
6834 int *cp;
6835 char *name;
6837 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6838 static struct charstab filltab[] =
6840 {&fill_stl, "stl"},
6841 {&fill_stlnc, "stlnc"},
6842 {&fill_vert, "vert"},
6843 {&fill_fold, "fold"},
6844 {&fill_diff, "diff"},
6846 #endif
6847 static struct charstab lcstab[] =
6849 {&lcs_eol, "eol"},
6850 {&lcs_ext, "extends"},
6851 {&lcs_nbsp, "nbsp"},
6852 {&lcs_prec, "precedes"},
6853 {&lcs_tab2, "tab"},
6854 {&lcs_trail, "trail"},
6856 struct charstab *tab;
6858 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6859 if (varp == &p_lcs)
6860 #endif
6862 tab = lcstab;
6863 entries = sizeof(lcstab) / sizeof(struct charstab);
6865 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6866 else
6868 tab = filltab;
6869 entries = sizeof(filltab) / sizeof(struct charstab);
6871 #endif
6873 /* first round: check for valid value, second round: assign values */
6874 for (round = 0; round <= 1; ++round)
6876 if (round)
6878 /* After checking that the value is valid: set defaults: space for
6879 * 'fillchars', NUL for 'listchars' */
6880 for (i = 0; i < entries; ++i)
6881 *(tab[i].cp) = (varp == &p_lcs ? NUL : ' ');
6882 if (varp == &p_lcs)
6883 lcs_tab1 = NUL;
6884 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6885 else
6886 fill_diff = '-';
6887 #endif
6889 p = *varp;
6890 while (*p)
6892 for (i = 0; i < entries; ++i)
6894 len = (int)STRLEN(tab[i].name);
6895 if (STRNCMP(p, tab[i].name, len) == 0
6896 && p[len] == ':'
6897 && p[len + 1] != NUL)
6899 s = p + len + 1;
6900 #ifdef FEAT_MBYTE
6901 c1 = mb_ptr2char_adv(&s);
6902 if (mb_char2cells(c1) > 1)
6903 continue;
6904 #else
6905 c1 = *s++;
6906 #endif
6907 if (tab[i].cp == &lcs_tab2)
6909 if (*s == NUL)
6910 continue;
6911 #ifdef FEAT_MBYTE
6912 c2 = mb_ptr2char_adv(&s);
6913 if (mb_char2cells(c2) > 1)
6914 continue;
6915 #else
6916 c2 = *s++;
6917 #endif
6919 if (*s == ',' || *s == NUL)
6921 if (round)
6923 if (tab[i].cp == &lcs_tab2)
6925 lcs_tab1 = c1;
6926 lcs_tab2 = c2;
6928 else
6929 *(tab[i].cp) = c1;
6932 p = s;
6933 break;
6938 if (i == entries)
6939 return e_invarg;
6940 if (*p == ',')
6941 ++p;
6945 return NULL; /* no error */
6948 #ifdef FEAT_STL_OPT
6950 * Check validity of options with the 'statusline' format.
6951 * Return error message or NULL.
6953 char_u *
6954 check_stl_option(s)
6955 char_u *s;
6957 int itemcnt = 0;
6958 int groupdepth = 0;
6959 static char_u errbuf[80];
6961 while (*s && itemcnt < STL_MAX_ITEM)
6963 /* Check for valid keys after % sequences */
6964 while (*s && *s != '%')
6965 s++;
6966 if (!*s)
6967 break;
6968 s++;
6969 if (*s != '%' && *s != ')')
6970 ++itemcnt;
6971 if (*s == '%' || *s == STL_TRUNCMARK || *s == STL_MIDDLEMARK)
6973 s++;
6974 continue;
6976 if (*s == ')')
6978 s++;
6979 if (--groupdepth < 0)
6980 break;
6981 continue;
6983 if (*s == '-')
6984 s++;
6985 while (VIM_ISDIGIT(*s))
6986 s++;
6987 if (*s == STL_USER_HL)
6988 continue;
6989 if (*s == '.')
6991 s++;
6992 while (*s && VIM_ISDIGIT(*s))
6993 s++;
6995 if (*s == '(')
6997 groupdepth++;
6998 continue;
7000 if (vim_strchr(STL_ALL, *s) == NULL)
7002 return illegal_char(errbuf, *s);
7004 if (*s == '{')
7006 s++;
7007 while (*s != '}' && *s)
7008 s++;
7009 if (*s != '}')
7010 return (char_u *)N_("E540: Unclosed expression sequence");
7013 if (itemcnt >= STL_MAX_ITEM)
7014 return (char_u *)N_("E541: too many items");
7015 if (groupdepth != 0)
7016 return (char_u *)N_("E542: unbalanced groups");
7017 return NULL;
7019 #endif
7021 #ifdef FEAT_CLIPBOARD
7023 * Extract the items in the 'clipboard' option and set global values.
7025 static char_u *
7026 check_clipboard_option()
7028 int new_unnamed = FALSE;
7029 int new_autoselect = FALSE;
7030 int new_autoselectml = FALSE;
7031 regprog_T *new_exclude_prog = NULL;
7032 char_u *errmsg = NULL;
7033 char_u *p;
7035 for (p = p_cb; *p != NUL; )
7037 if (STRNCMP(p, "unnamed", 7) == 0 && (p[7] == ',' || p[7] == NUL))
7039 new_unnamed = TRUE;
7040 p += 7;
7042 else if (STRNCMP(p, "autoselect", 10) == 0
7043 && (p[10] == ',' || p[10] == NUL))
7045 new_autoselect = TRUE;
7046 p += 10;
7048 else if (STRNCMP(p, "autoselectml", 12) == 0
7049 && (p[12] == ',' || p[12] == NUL))
7051 new_autoselectml = TRUE;
7052 p += 12;
7054 else if (STRNCMP(p, "exclude:", 8) == 0 && new_exclude_prog == NULL)
7056 p += 8;
7057 new_exclude_prog = vim_regcomp(p, RE_MAGIC);
7058 if (new_exclude_prog == NULL)
7059 errmsg = e_invarg;
7060 break;
7062 else
7064 errmsg = e_invarg;
7065 break;
7067 if (*p == ',')
7068 ++p;
7070 if (errmsg == NULL)
7072 clip_unnamed = new_unnamed;
7073 clip_autoselect = new_autoselect;
7074 clip_autoselectml = new_autoselectml;
7075 vim_free(clip_exclude_prog);
7076 clip_exclude_prog = new_exclude_prog;
7078 else
7079 vim_free(new_exclude_prog);
7081 return errmsg;
7083 #endif
7085 #ifdef FEAT_SPELL
7087 * Set curbuf->b_cap_prog to the regexp program for 'spellcapcheck'.
7088 * Return error message when failed, NULL when OK.
7090 static char_u *
7091 compile_cap_prog(buf)
7092 buf_T *buf;
7094 regprog_T *rp = buf->b_cap_prog;
7095 char_u *re;
7097 if (*buf->b_p_spc == NUL)
7098 buf->b_cap_prog = NULL;
7099 else
7101 /* Prepend a ^ so that we only match at one column */
7102 re = concat_str((char_u *)"^", buf->b_p_spc);
7103 if (re != NULL)
7105 buf->b_cap_prog = vim_regcomp(re, RE_MAGIC);
7106 if (buf->b_cap_prog == NULL)
7108 buf->b_cap_prog = rp; /* restore the previous program */
7109 return e_invarg;
7111 vim_free(re);
7115 vim_free(rp);
7116 return NULL;
7118 #endif
7120 #if defined(FEAT_EVAL) || defined(PROTO)
7122 * Set the scriptID for an option, taking care of setting the buffer- or
7123 * window-local value.
7125 static void
7126 set_option_scriptID_idx(opt_idx, opt_flags, id)
7127 int opt_idx;
7128 int opt_flags;
7129 int id;
7131 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
7132 int indir = (int)options[opt_idx].indir;
7134 /* Remember where the option was set. For local options need to do that
7135 * in the buffer or window structure. */
7136 if (both || (opt_flags & OPT_GLOBAL) || (indir & (PV_BUF|PV_WIN)) == 0)
7137 options[opt_idx].scriptID = id;
7138 if (both || (opt_flags & OPT_LOCAL))
7140 if (indir & PV_BUF)
7141 curbuf->b_p_scriptID[indir & PV_MASK] = id;
7142 else if (indir & PV_WIN)
7143 curwin->w_p_scriptID[indir & PV_MASK] = id;
7146 #endif
7149 * Set the value of a boolean option, and take care of side effects.
7150 * Returns NULL for success, or an error message for an error.
7152 static char_u *
7153 set_bool_option(opt_idx, varp, value, opt_flags)
7154 int opt_idx; /* index in options[] table */
7155 char_u *varp; /* pointer to the option variable */
7156 int value; /* new value */
7157 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
7159 int old_value = *(int *)varp;
7161 /* Disallow changing some options from secure mode */
7162 if ((secure
7163 #ifdef HAVE_SANDBOX
7164 || sandbox != 0
7165 #endif
7166 ) && (options[opt_idx].flags & P_SECURE))
7167 return e_secure;
7169 *(int *)varp = value; /* set the new value */
7170 #ifdef FEAT_EVAL
7171 /* Remember where the option was set. */
7172 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
7173 #endif
7175 #ifdef FEAT_GUI
7176 need_mouse_correct = TRUE;
7177 #endif
7179 /* May set global value for local option. */
7180 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0)
7181 *(int *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) = value;
7184 * Handle side effects of changing a bool option.
7187 /* 'compatible' */
7188 if ((int *)varp == &p_cp)
7190 compatible_set();
7193 else if ((int *)varp == &curbuf->b_p_ro)
7195 /* when 'readonly' is reset globally, also reset readonlymode */
7196 if (!curbuf->b_p_ro && (opt_flags & OPT_LOCAL) == 0)
7197 readonlymode = FALSE;
7199 /* when 'readonly' is set may give W10 again */
7200 if (curbuf->b_p_ro)
7201 curbuf->b_did_warn = FALSE;
7203 #ifdef FEAT_TITLE
7204 redraw_titles();
7205 #endif
7208 #ifdef FEAT_TITLE
7209 /* when 'modifiable' is changed, redraw the window title */
7210 else if ((int *)varp == &curbuf->b_p_ma)
7212 redraw_titles();
7214 /* when 'endofline' is changed, redraw the window title */
7215 else if ((int *)varp == &curbuf->b_p_eol)
7217 redraw_titles();
7219 # ifdef FEAT_MBYTE
7220 /* when 'bomb' is changed, redraw the window title and tab page text */
7221 else if ((int *)varp == &curbuf->b_p_bomb)
7223 redraw_titles();
7225 # endif
7226 #endif
7228 /* when 'bin' is set also set some other options */
7229 else if ((int *)varp == &curbuf->b_p_bin)
7231 set_options_bin(old_value, curbuf->b_p_bin, opt_flags);
7232 #ifdef FEAT_TITLE
7233 redraw_titles();
7234 #endif
7237 #ifdef FEAT_AUTOCMD
7238 /* when 'buflisted' changes, trigger autocommands */
7239 else if ((int *)varp == &curbuf->b_p_bl && old_value != curbuf->b_p_bl)
7241 apply_autocmds(curbuf->b_p_bl ? EVENT_BUFADD : EVENT_BUFDELETE,
7242 NULL, NULL, TRUE, curbuf);
7244 #endif
7246 /* when 'swf' is set, create swapfile, when reset remove swapfile */
7247 else if ((int *)varp == &curbuf->b_p_swf)
7249 if (curbuf->b_p_swf && p_uc)
7250 ml_open_file(curbuf); /* create the swap file */
7251 else
7252 /* no need to reset curbuf->b_may_swap, ml_open_file() will check
7253 * buf->b_p_swf */
7254 mf_close_file(curbuf, TRUE); /* remove the swap file */
7257 /* when 'terse' is set change 'shortmess' */
7258 else if ((int *)varp == &p_terse)
7260 char_u *p;
7262 p = vim_strchr(p_shm, SHM_SEARCH);
7264 /* insert 's' in p_shm */
7265 if (p_terse && p == NULL)
7267 STRCPY(IObuff, p_shm);
7268 STRCAT(IObuff, "s");
7269 set_string_option_direct((char_u *)"shm", -1, IObuff, OPT_FREE, 0);
7271 /* remove 's' from p_shm */
7272 else if (!p_terse && p != NULL)
7273 STRMOVE(p, p + 1);
7276 /* when 'paste' is set or reset also change other options */
7277 else if ((int *)varp == &p_paste)
7279 paste_option_changed();
7282 /* when 'insertmode' is set from an autocommand need to do work here */
7283 else if ((int *)varp == &p_im)
7285 if (p_im)
7287 if ((State & INSERT) == 0)
7288 need_start_insertmode = TRUE;
7289 stop_insert_mode = FALSE;
7291 else
7293 need_start_insertmode = FALSE;
7294 stop_insert_mode = TRUE;
7295 if (restart_edit != 0 && mode_displayed)
7296 clear_cmdline = TRUE; /* remove "(insert)" */
7297 restart_edit = 0;
7301 /* when 'ignorecase' is set or reset and 'hlsearch' is set, redraw */
7302 else if ((int *)varp == &p_ic && p_hls)
7304 redraw_all_later(SOME_VALID);
7307 #ifdef FEAT_SEARCH_EXTRA
7308 /* when 'hlsearch' is set or reset: reset no_hlsearch */
7309 else if ((int *)varp == &p_hls)
7311 no_hlsearch = FALSE;
7313 #endif
7315 #ifdef FEAT_SCROLLBIND
7316 /* when 'scrollbind' is set: snapshot the current position to avoid a jump
7317 * at the end of normal_cmd() */
7318 else if ((int *)varp == &curwin->w_p_scb)
7320 if (curwin->w_p_scb)
7321 do_check_scrollbind(FALSE);
7323 #endif
7325 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
7326 /* There can be only one window with 'previewwindow' set. */
7327 else if ((int *)varp == &curwin->w_p_pvw)
7329 if (curwin->w_p_pvw)
7331 win_T *win;
7333 for (win = firstwin; win != NULL; win = win->w_next)
7334 if (win->w_p_pvw && win != curwin)
7336 curwin->w_p_pvw = FALSE;
7337 return (char_u *)N_("E590: A preview window already exists");
7341 #endif
7343 /* when 'textmode' is set or reset also change 'fileformat' */
7344 else if ((int *)varp == &curbuf->b_p_tx)
7346 set_fileformat(curbuf->b_p_tx ? EOL_DOS : EOL_UNIX, opt_flags);
7349 /* when 'textauto' is set or reset also change 'fileformats' */
7350 else if ((int *)varp == &p_ta)
7351 set_string_option_direct((char_u *)"ffs", -1,
7352 p_ta ? (char_u *)DFLT_FFS_VIM : (char_u *)"",
7353 OPT_FREE | opt_flags, 0);
7356 * When 'lisp' option changes include/exclude '-' in
7357 * keyword characters.
7359 #ifdef FEAT_LISP
7360 else if (varp == (char_u *)&(curbuf->b_p_lisp))
7362 (void)buf_init_chartab(curbuf, FALSE); /* ignore errors */
7364 #endif
7366 #ifdef FEAT_TITLE
7367 /* when 'title' changed, may need to change the title; same for 'icon' */
7368 else if ((int *)varp == &p_title)
7370 did_set_title(FALSE);
7373 else if ((int *)varp == &p_icon)
7375 did_set_title(TRUE);
7377 #endif
7379 else if ((int *)varp == &curbuf->b_changed)
7381 if (!value)
7382 save_file_ff(curbuf); /* Buffer is unchanged */
7383 #ifdef FEAT_TITLE
7384 redraw_titles();
7385 #endif
7386 #ifdef FEAT_AUTOCMD
7387 modified_was_set = value;
7388 #endif
7391 #ifdef BACKSLASH_IN_FILENAME
7392 else if ((int *)varp == &p_ssl)
7394 if (p_ssl)
7396 psepc = '/';
7397 psepcN = '\\';
7398 pseps[0] = '/';
7400 else
7402 psepc = '\\';
7403 psepcN = '/';
7404 pseps[0] = '\\';
7407 /* need to adjust the file name arguments and buffer names. */
7408 buflist_slash_adjust();
7409 alist_slash_adjust();
7410 # ifdef FEAT_EVAL
7411 scriptnames_slash_adjust();
7412 # endif
7414 #endif
7416 /* If 'wrap' is set, set w_leftcol to zero. */
7417 else if ((int *)varp == &curwin->w_p_wrap)
7419 if (curwin->w_p_wrap)
7420 curwin->w_leftcol = 0;
7423 /* If 'number' is set, reset 'relativenumber'. */
7424 else if ((int *)varp == &curwin->w_p_nu)
7426 if (curwin->w_p_nu)
7427 curwin->w_p_rnu = FALSE;
7429 /* If 'relativenumber' is set, reset 'number'. */
7430 else if ((int *)varp == &curwin->w_p_rnu)
7432 if (curwin->w_p_rnu)
7433 curwin->w_p_nu = FALSE;
7436 #ifdef FEAT_WINDOWS
7437 else if ((int *)varp == &p_ea)
7439 if (p_ea && !old_value)
7440 win_equal(curwin, FALSE, 0);
7442 #endif
7444 else if ((int *)varp == &p_wiv)
7447 * When 'weirdinvert' changed, set/reset 't_xs'.
7448 * Then set 'weirdinvert' according to value of 't_xs'.
7450 if (p_wiv && !old_value)
7451 T_XS = (char_u *)"y";
7452 else if (!p_wiv && old_value)
7453 T_XS = empty_option;
7454 p_wiv = (*T_XS != NUL);
7457 #ifdef FEAT_BEVAL
7458 else if ((int *)varp == &p_beval)
7460 if (p_beval == TRUE)
7461 gui_mch_enable_beval_area(balloonEval);
7462 else
7463 gui_mch_disable_beval_area(balloonEval);
7465 #endif
7467 #ifdef FEAT_AUTOCHDIR
7468 else if ((int *)varp == &p_acd)
7470 /* Change directories when the 'acd' option is set now. */
7471 DO_AUTOCHDIR
7473 #endif
7475 #ifdef FEAT_DIFF
7476 /* 'diff' */
7477 else if ((int *)varp == &curwin->w_p_diff)
7479 /* May add or remove the buffer from the list of diff buffers. */
7480 diff_buf_adjust(curwin);
7481 # ifdef FEAT_FOLDING
7482 if (foldmethodIsDiff(curwin))
7483 foldUpdateAll(curwin);
7484 # endif
7486 #endif
7488 #ifdef USE_IM_CONTROL
7489 /* 'imdisable' */
7490 else if ((int *)varp == &p_imdisable)
7492 /* Only de-activate it here, it will be enabled when changing mode. */
7493 if (p_imdisable)
7494 im_set_active(FALSE);
7496 #endif
7498 #ifdef FEAT_SPELL
7499 /* 'spell' */
7500 else if ((int *)varp == &curwin->w_p_spell)
7502 if (curwin->w_p_spell)
7504 char_u *errmsg = did_set_spelllang(curbuf);
7506 if (errmsg != NULL)
7507 EMSG(_(errmsg));
7510 #endif
7512 #ifdef FEAT_FKMAP
7513 else if ((int *)varp == &p_altkeymap)
7515 if (old_value != p_altkeymap)
7517 if (!p_altkeymap)
7519 p_hkmap = p_fkmap;
7520 p_fkmap = 0;
7522 else
7524 p_fkmap = p_hkmap;
7525 p_hkmap = 0;
7527 (void)init_chartab();
7532 * In case some second language keymapping options have changed, check
7533 * and correct the setting in a consistent way.
7537 * If hkmap or fkmap are set, reset Arabic keymapping.
7539 if ((p_hkmap || p_fkmap) && p_altkeymap)
7541 p_altkeymap = p_fkmap;
7542 # ifdef FEAT_ARABIC
7543 curwin->w_p_arab = FALSE;
7544 # endif
7545 (void)init_chartab();
7549 * If hkmap set, reset Farsi keymapping.
7551 if (p_hkmap && p_altkeymap)
7553 p_altkeymap = 0;
7554 p_fkmap = 0;
7555 # ifdef FEAT_ARABIC
7556 curwin->w_p_arab = FALSE;
7557 # endif
7558 (void)init_chartab();
7562 * If fkmap set, reset Hebrew keymapping.
7564 if (p_fkmap && !p_altkeymap)
7566 p_altkeymap = 1;
7567 p_hkmap = 0;
7568 # ifdef FEAT_ARABIC
7569 curwin->w_p_arab = FALSE;
7570 # endif
7571 (void)init_chartab();
7573 #endif
7575 #ifdef FEAT_ARABIC
7576 if ((int *)varp == &curwin->w_p_arab)
7578 if (curwin->w_p_arab)
7581 * 'arabic' is set, handle various sub-settings.
7583 if (!p_tbidi)
7585 /* set rightleft mode */
7586 if (!curwin->w_p_rl)
7588 curwin->w_p_rl = TRUE;
7589 changed_window_setting();
7592 /* Enable Arabic shaping (major part of what Arabic requires) */
7593 if (!p_arshape)
7595 p_arshape = TRUE;
7596 redraw_later_clear();
7600 /* Arabic requires a utf-8 encoding, inform the user if its not
7601 * set. */
7602 if (STRCMP(p_enc, "utf-8") != 0)
7604 static char *w_arabic = N_("W17: Arabic requires UTF-8, do ':set encoding=utf-8'");
7606 msg_source(hl_attr(HLF_W));
7607 MSG_ATTR(_(w_arabic), hl_attr(HLF_W));
7608 #ifdef FEAT_EVAL
7609 set_vim_var_string(VV_WARNINGMSG, (char_u *)_(w_arabic), -1);
7610 #endif
7613 # ifdef FEAT_MBYTE
7614 /* set 'delcombine' */
7615 p_deco = TRUE;
7616 # endif
7618 # ifdef FEAT_KEYMAP
7619 /* Force-set the necessary keymap for arabic */
7620 set_option_value((char_u *)"keymap", 0L, (char_u *)"arabic",
7621 OPT_LOCAL);
7622 # endif
7623 # ifdef FEAT_FKMAP
7624 p_altkeymap = 0;
7625 p_hkmap = 0;
7626 p_fkmap = 0;
7627 (void)init_chartab();
7628 # endif
7630 else
7633 * 'arabic' is reset, handle various sub-settings.
7635 if (!p_tbidi)
7637 /* reset rightleft mode */
7638 if (curwin->w_p_rl)
7640 curwin->w_p_rl = FALSE;
7641 changed_window_setting();
7644 /* 'arabicshape' isn't reset, it is a global option and
7645 * another window may still need it "on". */
7648 /* 'delcombine' isn't reset, it is a global option and another
7649 * window may still want it "on". */
7651 # ifdef FEAT_KEYMAP
7652 /* Revert to the default keymap */
7653 curbuf->b_p_iminsert = B_IMODE_NONE;
7654 curbuf->b_p_imsearch = B_IMODE_USE_INSERT;
7655 # endif
7658 #endif
7661 * End of handling side effects for bool options.
7664 options[opt_idx].flags |= P_WAS_SET;
7666 comp_col(); /* in case 'ruler' or 'showcmd' changed */
7667 if (curwin->w_curswant != MAXCOL)
7668 curwin->w_set_curswant = TRUE; /* in case 'list' changed */
7669 check_redraw(options[opt_idx].flags);
7671 return NULL;
7675 * Set the value of a number option, and take care of side effects.
7676 * Returns NULL for success, or an error message for an error.
7678 static char_u *
7679 set_num_option(opt_idx, varp, value, errbuf, errbuflen, opt_flags)
7680 int opt_idx; /* index in options[] table */
7681 char_u *varp; /* pointer to the option variable */
7682 long value; /* new value */
7683 char_u *errbuf; /* buffer for error messages */
7684 size_t errbuflen; /* length of "errbuf" */
7685 int opt_flags; /* OPT_LOCAL, OPT_GLOBAL and
7686 OPT_MODELINE */
7688 char_u *errmsg = NULL;
7689 long old_value = *(long *)varp;
7690 long old_Rows = Rows; /* remember old Rows */
7691 long old_Columns = Columns; /* remember old Columns */
7692 long *pp = (long *)varp;
7694 /* Disallow changing some options from secure mode. */
7695 if ((secure
7696 #ifdef HAVE_SANDBOX
7697 || sandbox != 0
7698 #endif
7699 ) && (options[opt_idx].flags & P_SECURE))
7700 return e_secure;
7702 *pp = value;
7703 #ifdef FEAT_EVAL
7704 /* Remember where the option was set. */
7705 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
7706 #endif
7707 #ifdef FEAT_GUI
7708 need_mouse_correct = TRUE;
7709 #endif
7711 if (curbuf->b_p_sw <= 0)
7713 errmsg = e_positive;
7714 curbuf->b_p_sw = curbuf->b_p_ts;
7718 * Number options that need some action when changed
7720 #ifdef FEAT_WINDOWS
7721 if (pp == &p_wh || pp == &p_hh)
7723 if (p_wh < 1)
7725 errmsg = e_positive;
7726 p_wh = 1;
7728 if (p_wmh > p_wh)
7730 errmsg = e_winheight;
7731 p_wh = p_wmh;
7733 if (p_hh < 0)
7735 errmsg = e_positive;
7736 p_hh = 0;
7739 /* Change window height NOW */
7740 if (lastwin != firstwin)
7742 if (pp == &p_wh && curwin->w_height < p_wh)
7743 win_setheight((int)p_wh);
7744 if (pp == &p_hh && curbuf->b_help && curwin->w_height < p_hh)
7745 win_setheight((int)p_hh);
7749 /* 'winminheight' */
7750 else if (pp == &p_wmh)
7752 if (p_wmh < 0)
7754 errmsg = e_positive;
7755 p_wmh = 0;
7757 if (p_wmh > p_wh)
7759 errmsg = e_winheight;
7760 p_wmh = p_wh;
7762 win_setminheight();
7765 # ifdef FEAT_VERTSPLIT
7766 else if (pp == &p_wiw)
7768 if (p_wiw < 1)
7770 errmsg = e_positive;
7771 p_wiw = 1;
7773 if (p_wmw > p_wiw)
7775 errmsg = e_winwidth;
7776 p_wiw = p_wmw;
7779 /* Change window width NOW */
7780 if (lastwin != firstwin && curwin->w_width < p_wiw)
7781 win_setwidth((int)p_wiw);
7784 /* 'winminwidth' */
7785 else if (pp == &p_wmw)
7787 if (p_wmw < 0)
7789 errmsg = e_positive;
7790 p_wmw = 0;
7792 if (p_wmw > p_wiw)
7794 errmsg = e_winwidth;
7795 p_wmw = p_wiw;
7797 win_setminheight();
7799 # endif
7801 #endif
7803 #ifdef FEAT_WINDOWS
7804 /* (re)set last window status line */
7805 else if (pp == &p_ls)
7807 last_status(FALSE);
7810 /* (re)set tab page line */
7811 else if (pp == &p_stal)
7813 shell_new_rows(); /* recompute window positions and heights */
7815 #endif
7817 #ifdef FEAT_GUI
7818 else if (pp == &p_linespace)
7820 /* Recompute gui.char_height and resize the Vim window to keep the
7821 * same number of lines. */
7822 if (gui.in_use && gui_mch_adjust_charheight() == OK)
7823 gui_set_shellsize(FALSE, FALSE, RESIZE_VERT);
7825 #endif
7827 #ifdef FEAT_FOLDING
7828 /* 'foldlevel' */
7829 else if (pp == &curwin->w_p_fdl)
7831 if (curwin->w_p_fdl < 0)
7832 curwin->w_p_fdl = 0;
7833 newFoldLevel();
7836 /* 'foldminlines' */
7837 else if (pp == &curwin->w_p_fml)
7839 foldUpdateAll(curwin);
7842 /* 'foldnestmax' */
7843 else if (pp == &curwin->w_p_fdn)
7845 if (foldmethodIsSyntax(curwin) || foldmethodIsIndent(curwin))
7846 foldUpdateAll(curwin);
7849 /* 'foldcolumn' */
7850 else if (pp == &curwin->w_p_fdc)
7852 if (curwin->w_p_fdc < 0)
7854 errmsg = e_positive;
7855 curwin->w_p_fdc = 0;
7857 else if (curwin->w_p_fdc > 12)
7859 errmsg = e_invarg;
7860 curwin->w_p_fdc = 12;
7864 /* 'shiftwidth' or 'tabstop' */
7865 else if (pp == &curbuf->b_p_sw || pp == &curbuf->b_p_ts)
7867 if (foldmethodIsIndent(curwin))
7868 foldUpdateAll(curwin);
7870 #endif /* FEAT_FOLDING */
7872 #ifdef FEAT_MBYTE
7873 /* 'maxcombine' */
7874 else if (pp == &p_mco)
7876 if (p_mco > MAX_MCO)
7877 p_mco = MAX_MCO;
7878 else if (p_mco < 0)
7879 p_mco = 0;
7880 screenclear(); /* will re-allocate the screen */
7882 #endif
7884 else if (pp == &curbuf->b_p_iminsert)
7886 if (curbuf->b_p_iminsert < 0 || curbuf->b_p_iminsert > B_IMODE_LAST)
7888 errmsg = e_invarg;
7889 curbuf->b_p_iminsert = B_IMODE_NONE;
7891 p_iminsert = curbuf->b_p_iminsert;
7892 if (termcap_active) /* don't do this in the alternate screen */
7893 showmode();
7894 #if defined(FEAT_WINDOWS) && defined(FEAT_KEYMAP)
7895 /* Show/unshow value of 'keymap' in status lines. */
7896 status_redraw_curbuf();
7897 #endif
7900 else if (pp == &p_window)
7902 if (p_window < 1)
7903 p_window = 1;
7904 else if (p_window >= Rows)
7905 p_window = Rows - 1;
7908 else if (pp == &curbuf->b_p_imsearch)
7910 if (curbuf->b_p_imsearch < -1 || curbuf->b_p_imsearch > B_IMODE_LAST)
7912 errmsg = e_invarg;
7913 curbuf->b_p_imsearch = B_IMODE_NONE;
7915 p_imsearch = curbuf->b_p_imsearch;
7918 #ifdef FEAT_TITLE
7919 /* if 'titlelen' has changed, redraw the title */
7920 else if (pp == &p_titlelen)
7922 if (p_titlelen < 0)
7924 errmsg = e_positive;
7925 p_titlelen = 85;
7927 if (starting != NO_SCREEN && old_value != p_titlelen)
7928 need_maketitle = TRUE;
7930 #endif
7932 /* if p_ch changed value, change the command line height */
7933 else if (pp == &p_ch)
7935 if (p_ch < 1)
7937 errmsg = e_positive;
7938 p_ch = 1;
7940 if (p_ch > Rows - min_rows() + 1)
7941 p_ch = Rows - min_rows() + 1;
7943 /* Only compute the new window layout when startup has been
7944 * completed. Otherwise the frame sizes may be wrong. */
7945 if (p_ch != old_value && full_screen
7946 #ifdef FEAT_GUI
7947 && !gui.starting
7948 #endif
7950 command_height();
7953 /* when 'updatecount' changes from zero to non-zero, open swap files */
7954 else if (pp == &p_uc)
7956 if (p_uc < 0)
7958 errmsg = e_positive;
7959 p_uc = 100;
7961 if (p_uc && !old_value)
7962 ml_open_files();
7964 #ifdef MZSCHEME_GUI_THREADS
7965 else if (pp == &p_mzq)
7966 mzvim_reset_timer();
7967 #endif
7969 /* sync undo before 'undolevels' changes */
7970 else if (pp == &p_ul)
7972 /* use the old value, otherwise u_sync() may not work properly */
7973 p_ul = old_value;
7974 u_sync(TRUE);
7975 p_ul = value;
7978 #ifdef FEAT_LINEBREAK
7979 /* 'numberwidth' must be positive */
7980 else if (pp == &curwin->w_p_nuw)
7982 if (curwin->w_p_nuw < 1)
7984 errmsg = e_positive;
7985 curwin->w_p_nuw = 1;
7987 if (curwin->w_p_nuw > 10)
7989 errmsg = e_invarg;
7990 curwin->w_p_nuw = 10;
7992 curwin->w_nrwidth_line_count = 0;
7994 #endif
7997 * Check the bounds for numeric options here
7999 if (Rows < min_rows() && full_screen)
8001 if (errbuf != NULL)
8003 vim_snprintf((char *)errbuf, errbuflen,
8004 _("E593: Need at least %d lines"), min_rows());
8005 errmsg = errbuf;
8007 Rows = min_rows();
8009 if (Columns < MIN_COLUMNS && full_screen)
8011 if (errbuf != NULL)
8013 vim_snprintf((char *)errbuf, errbuflen,
8014 _("E594: Need at least %d columns"), MIN_COLUMNS);
8015 errmsg = errbuf;
8017 Columns = MIN_COLUMNS;
8019 /* Limit the values to avoid an overflow in Rows * Columns. */
8020 if (Columns > 10000)
8021 Columns = 10000;
8022 if (Rows > 1000)
8023 Rows = 1000;
8025 #ifdef DJGPP
8026 /* avoid a crash by checking for a too large value of 'columns' */
8027 if (old_Columns != Columns && full_screen && term_console)
8028 mch_check_columns();
8029 #endif
8032 * If the screen (shell) height has been changed, assume it is the
8033 * physical screenheight.
8035 if (old_Rows != Rows || old_Columns != Columns)
8037 /* Changing the screen size is not allowed while updating the screen. */
8038 if (updating_screen)
8039 *pp = old_value;
8040 else if (full_screen
8041 #ifdef FEAT_GUI
8042 && !gui.starting
8043 #endif
8045 set_shellsize((int)Columns, (int)Rows, TRUE);
8046 else
8048 /* Postpone the resizing; check the size and cmdline position for
8049 * messages. */
8050 check_shellsize();
8051 if (cmdline_row > Rows - p_ch && Rows > p_ch)
8052 cmdline_row = Rows - p_ch;
8054 if (p_window >= Rows || !option_was_set((char_u *)"window"))
8055 p_window = Rows - 1;
8058 if (curbuf->b_p_sts < 0)
8060 errmsg = e_positive;
8061 curbuf->b_p_sts = 0;
8063 if (curbuf->b_p_ts <= 0)
8065 errmsg = e_positive;
8066 curbuf->b_p_ts = 8;
8068 if (curbuf->b_p_tw < 0)
8070 errmsg = e_positive;
8071 curbuf->b_p_tw = 0;
8073 if (p_tm < 0)
8075 errmsg = e_positive;
8076 p_tm = 0;
8078 if ((curwin->w_p_scr <= 0
8079 || (curwin->w_p_scr > curwin->w_height
8080 && curwin->w_height > 0))
8081 && full_screen)
8083 if (pp == &(curwin->w_p_scr))
8085 if (curwin->w_p_scr != 0)
8086 errmsg = e_scroll;
8087 win_comp_scroll(curwin);
8089 /* If 'scroll' became invalid because of a side effect silently adjust
8090 * it. */
8091 else if (curwin->w_p_scr <= 0)
8092 curwin->w_p_scr = 1;
8093 else /* curwin->w_p_scr > curwin->w_height */
8094 curwin->w_p_scr = curwin->w_height;
8096 if (p_hi < 0)
8098 errmsg = e_positive;
8099 p_hi = 0;
8101 if (p_report < 0)
8103 errmsg = e_positive;
8104 p_report = 1;
8106 if ((p_sj < -100 || p_sj >= Rows) && full_screen)
8108 if (Rows != old_Rows) /* Rows changed, just adjust p_sj */
8109 p_sj = Rows / 2;
8110 else
8112 errmsg = e_scroll;
8113 p_sj = 1;
8116 if (p_so < 0 && full_screen)
8118 errmsg = e_scroll;
8119 p_so = 0;
8121 if (p_siso < 0 && full_screen)
8123 errmsg = e_positive;
8124 p_siso = 0;
8126 #ifdef FEAT_CMDWIN
8127 if (p_cwh < 1)
8129 errmsg = e_positive;
8130 p_cwh = 1;
8132 #endif
8133 if (p_ut < 0)
8135 errmsg = e_positive;
8136 p_ut = 2000;
8138 if (p_ss < 0)
8140 errmsg = e_positive;
8141 p_ss = 0;
8144 /* May set global value for local option. */
8145 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0)
8146 *(long *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) = *pp;
8148 options[opt_idx].flags |= P_WAS_SET;
8150 comp_col(); /* in case 'columns' or 'ls' changed */
8151 if (curwin->w_curswant != MAXCOL)
8152 curwin->w_set_curswant = TRUE; /* in case 'tabstop' changed */
8153 check_redraw(options[opt_idx].flags);
8155 return errmsg;
8159 * Called after an option changed: check if something needs to be redrawn.
8161 static void
8162 check_redraw(flags)
8163 long_u flags;
8165 /* Careful: P_RCLR and P_RALL are a combination of other P_ flags */
8166 int clear = (flags & P_RCLR) == P_RCLR;
8167 int all = ((flags & P_RALL) == P_RALL || clear);
8169 #ifdef FEAT_WINDOWS
8170 if ((flags & P_RSTAT) || all) /* mark all status lines dirty */
8171 status_redraw_all();
8172 #endif
8174 if ((flags & P_RBUF) || (flags & P_RWIN) || all)
8175 changed_window_setting();
8176 if (flags & P_RBUF)
8177 redraw_curbuf_later(NOT_VALID);
8178 if (clear)
8179 redraw_all_later(CLEAR);
8180 else if (all)
8181 redraw_all_later(NOT_VALID);
8185 * Find index for option 'arg'.
8186 * Return -1 if not found.
8188 static int
8189 findoption(arg)
8190 char_u *arg;
8192 int opt_idx;
8193 char *s, *p;
8194 static short quick_tab[27] = {0, 0}; /* quick access table */
8195 int is_term_opt;
8198 * For first call: Initialize the quick-access table.
8199 * It contains the index for the first option that starts with a certain
8200 * letter. There are 26 letters, plus the first "t_" option.
8202 if (quick_tab[1] == 0)
8204 p = options[0].fullname;
8205 for (opt_idx = 1; (s = options[opt_idx].fullname) != NULL; opt_idx++)
8207 if (s[0] != p[0])
8209 if (s[0] == 't' && s[1] == '_')
8210 quick_tab[26] = opt_idx;
8211 else
8212 quick_tab[CharOrdLow(s[0])] = opt_idx;
8214 p = s;
8219 * Check for name starting with an illegal character.
8221 #ifdef EBCDIC
8222 if (!islower(arg[0]))
8223 #else
8224 if (arg[0] < 'a' || arg[0] > 'z')
8225 #endif
8226 return -1;
8228 is_term_opt = (arg[0] == 't' && arg[1] == '_');
8229 if (is_term_opt)
8230 opt_idx = quick_tab[26];
8231 else
8232 opt_idx = quick_tab[CharOrdLow(arg[0])];
8233 for ( ; (s = options[opt_idx].fullname) != NULL; opt_idx++)
8235 if (STRCMP(arg, s) == 0) /* match full name */
8236 break;
8238 if (s == NULL && !is_term_opt)
8240 opt_idx = quick_tab[CharOrdLow(arg[0])];
8241 for ( ; options[opt_idx].fullname != NULL; opt_idx++)
8243 s = options[opt_idx].shortname;
8244 if (s != NULL && STRCMP(arg, s) == 0) /* match short name */
8245 break;
8246 s = NULL;
8249 if (s == NULL)
8250 opt_idx = -1;
8251 return opt_idx;
8254 #if defined(FEAT_EVAL) || defined(FEAT_TCL) || defined(FEAT_MZSCHEME)
8256 * Get the value for an option.
8258 * Returns:
8259 * Number or Toggle option: 1, *numval gets value.
8260 * String option: 0, *stringval gets allocated string.
8261 * Hidden Number or Toggle option: -1.
8262 * hidden String option: -2.
8263 * unknown option: -3.
8266 get_option_value(name, numval, stringval, opt_flags)
8267 char_u *name;
8268 long *numval;
8269 char_u **stringval; /* NULL when only checking existance */
8270 int opt_flags;
8272 int opt_idx;
8273 char_u *varp;
8275 opt_idx = findoption(name);
8276 if (opt_idx < 0) /* unknown option */
8277 return -3;
8279 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
8281 if (options[opt_idx].flags & P_STRING)
8283 if (varp == NULL) /* hidden option */
8284 return -2;
8285 if (stringval != NULL)
8287 #ifdef FEAT_CRYPT
8288 /* never return the value of the crypt key */
8289 if ((char_u **)varp == &curbuf->b_p_key
8290 && **(char_u **)(varp) != NUL)
8291 *stringval = vim_strsave((char_u *)"*****");
8292 else
8293 #endif
8294 *stringval = vim_strsave(*(char_u **)(varp));
8296 return 0;
8299 if (varp == NULL) /* hidden option */
8300 return -1;
8301 if (options[opt_idx].flags & P_NUM)
8302 *numval = *(long *)varp;
8303 else
8305 /* Special case: 'modified' is b_changed, but we also want to consider
8306 * it set when 'ff' or 'fenc' changed. */
8307 if ((int *)varp == &curbuf->b_changed)
8308 *numval = curbufIsChanged();
8309 else
8310 *numval = *(int *)varp;
8312 return 1;
8314 #endif
8317 * Set the value of option "name".
8318 * Use "string" for string options, use "number" for other options.
8320 void
8321 set_option_value(name, number, string, opt_flags)
8322 char_u *name;
8323 long number;
8324 char_u *string;
8325 int opt_flags; /* OPT_LOCAL or 0 (both) */
8327 int opt_idx;
8328 char_u *varp;
8329 long_u flags;
8331 opt_idx = findoption(name);
8332 if (opt_idx < 0)
8333 EMSG2(_("E355: Unknown option: %s"), name);
8334 else
8336 flags = options[opt_idx].flags;
8337 #ifdef HAVE_SANDBOX
8338 /* Disallow changing some options in the sandbox */
8339 if (sandbox > 0 && (flags & P_SECURE))
8341 EMSG(_(e_sandbox));
8342 return;
8344 #endif
8345 if (flags & P_STRING)
8346 set_string_option(opt_idx, string, opt_flags);
8347 else
8349 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
8350 if (varp != NULL) /* hidden option is not changed */
8352 if (number == 0 && string != NULL)
8354 int idx;
8356 /* Either we are given a string or we are setting option
8357 * to zero. */
8358 for (idx = 0; string[idx] == '0'; ++idx)
8360 if (string[idx] != NUL || idx == 0)
8362 /* There's another character after zeros or the string
8363 * is empty. In both cases, we are trying to set a
8364 * num option using a string. */
8365 EMSG3(_("E521: Number required: &%s = '%s'"),
8366 name, string);
8367 return; /* do nothing as we hit an error */
8371 if (flags & P_NUM)
8372 (void)set_num_option(opt_idx, varp, number,
8373 NULL, 0, opt_flags);
8374 else
8375 (void)set_bool_option(opt_idx, varp, (int)number,
8376 opt_flags);
8383 * Get the terminal code for a terminal option.
8384 * Returns NULL when not found.
8386 char_u *
8387 get_term_code(tname)
8388 char_u *tname;
8390 int opt_idx;
8391 char_u *varp;
8393 if (tname[0] != 't' || tname[1] != '_' ||
8394 tname[2] == NUL || tname[3] == NUL)
8395 return NULL;
8396 if ((opt_idx = findoption(tname)) >= 0)
8398 varp = get_varp(&(options[opt_idx]));
8399 if (varp != NULL)
8400 varp = *(char_u **)(varp);
8401 return varp;
8403 return find_termcode(tname + 2);
8406 char_u *
8407 get_highlight_default()
8409 int i;
8411 i = findoption((char_u *)"hl");
8412 if (i >= 0)
8413 return options[i].def_val[VI_DEFAULT];
8414 return (char_u *)NULL;
8417 #if defined(FEAT_MBYTE) || defined(PROTO)
8418 char_u *
8419 get_encoding_default()
8421 int i;
8423 i = findoption((char_u *)"enc");
8424 if (i >= 0)
8425 return options[i].def_val[VI_DEFAULT];
8426 return (char_u *)NULL;
8428 #endif
8431 * Translate a string like "t_xx", "<t_xx>" or "<S-Tab>" to a key number.
8433 static int
8434 find_key_option(arg)
8435 char_u *arg;
8437 int key;
8438 int modifiers;
8441 * Don't use get_special_key_code() for t_xx, we don't want it to call
8442 * add_termcap_entry().
8444 if (arg[0] == 't' && arg[1] == '_' && arg[2] && arg[3])
8445 key = TERMCAP2KEY(arg[2], arg[3]);
8446 else
8448 --arg; /* put arg at the '<' */
8449 modifiers = 0;
8450 key = find_special_key(&arg, &modifiers, TRUE, TRUE);
8451 if (modifiers) /* can't handle modifiers here */
8452 key = 0;
8454 return key;
8458 * if 'all' == 0: show changed options
8459 * if 'all' == 1: show all normal options
8460 * if 'all' == 2: show all terminal options
8462 static void
8463 showoptions(all, opt_flags)
8464 int all;
8465 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
8467 struct vimoption *p;
8468 int col;
8469 int isterm;
8470 char_u *varp;
8471 struct vimoption **items;
8472 int item_count;
8473 int run;
8474 int row, rows;
8475 int cols;
8476 int i;
8477 int len;
8479 #define INC 20
8480 #define GAP 3
8482 items = (struct vimoption **)alloc((unsigned)(sizeof(struct vimoption *) *
8483 PARAM_COUNT));
8484 if (items == NULL)
8485 return;
8487 /* Highlight title */
8488 if (all == 2)
8489 MSG_PUTS_TITLE(_("\n--- Terminal codes ---"));
8490 else if (opt_flags & OPT_GLOBAL)
8491 MSG_PUTS_TITLE(_("\n--- Global option values ---"));
8492 else if (opt_flags & OPT_LOCAL)
8493 MSG_PUTS_TITLE(_("\n--- Local option values ---"));
8494 else
8495 MSG_PUTS_TITLE(_("\n--- Options ---"));
8498 * do the loop two times:
8499 * 1. display the short items
8500 * 2. display the long items (only strings and numbers)
8502 for (run = 1; run <= 2 && !got_int; ++run)
8505 * collect the items in items[]
8507 item_count = 0;
8508 for (p = &options[0]; p->fullname != NULL; p++)
8510 varp = NULL;
8511 isterm = istermoption(p);
8512 if (opt_flags != 0)
8514 if (p->indir != PV_NONE && !isterm)
8515 varp = get_varp_scope(p, opt_flags);
8517 else
8518 varp = get_varp(p);
8519 if (varp != NULL
8520 && ((all == 2 && isterm)
8521 || (all == 1 && !isterm)
8522 || (all == 0 && !optval_default(p, varp))))
8524 if (p->flags & P_BOOL)
8525 len = 1; /* a toggle option fits always */
8526 else
8528 option_value2string(p, opt_flags);
8529 len = (int)STRLEN(p->fullname) + vim_strsize(NameBuff) + 1;
8531 if ((len <= INC - GAP && run == 1) ||
8532 (len > INC - GAP && run == 2))
8533 items[item_count++] = p;
8538 * display the items
8540 if (run == 1)
8542 cols = (Columns + GAP - 3) / INC;
8543 if (cols == 0)
8544 cols = 1;
8545 rows = (item_count + cols - 1) / cols;
8547 else /* run == 2 */
8548 rows = item_count;
8549 for (row = 0; row < rows && !got_int; ++row)
8551 msg_putchar('\n'); /* go to next line */
8552 if (got_int) /* 'q' typed in more */
8553 break;
8554 col = 0;
8555 for (i = row; i < item_count; i += rows)
8557 msg_col = col; /* make columns */
8558 showoneopt(items[i], opt_flags);
8559 col += INC;
8561 out_flush();
8562 ui_breakcheck();
8565 vim_free(items);
8569 * Return TRUE if option "p" has its default value.
8571 static int
8572 optval_default(p, varp)
8573 struct vimoption *p;
8574 char_u *varp;
8576 int dvi;
8578 if (varp == NULL)
8579 return TRUE; /* hidden option is always at default */
8580 dvi = ((p->flags & P_VI_DEF) || p_cp) ? VI_DEFAULT : VIM_DEFAULT;
8581 if (p->flags & P_NUM)
8582 return (*(long *)varp == (long)(long_i)p->def_val[dvi]);
8583 if (p->flags & P_BOOL)
8584 /* the cast to long is required for Manx C, long_i is
8585 * needed for MSVC */
8586 return (*(int *)varp == (int)(long)(long_i)p->def_val[dvi]);
8587 /* P_STRING */
8588 return (STRCMP(*(char_u **)varp, p->def_val[dvi]) == 0);
8592 * showoneopt: show the value of one option
8593 * must not be called with a hidden option!
8595 static void
8596 showoneopt(p, opt_flags)
8597 struct vimoption *p;
8598 int opt_flags; /* OPT_LOCAL or OPT_GLOBAL */
8600 char_u *varp;
8601 int save_silent = silent_mode;
8603 silent_mode = FALSE;
8604 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
8606 varp = get_varp_scope(p, opt_flags);
8608 /* for 'modified' we also need to check if 'ff' or 'fenc' changed. */
8609 if ((p->flags & P_BOOL) && ((int *)varp == &curbuf->b_changed
8610 ? !curbufIsChanged() : !*(int *)varp))
8611 MSG_PUTS("no");
8612 else if ((p->flags & P_BOOL) && *(int *)varp < 0)
8613 MSG_PUTS("--");
8614 else
8615 MSG_PUTS(" ");
8616 MSG_PUTS(p->fullname);
8617 if (!(p->flags & P_BOOL))
8619 msg_putchar('=');
8620 /* put value string in NameBuff */
8621 option_value2string(p, opt_flags);
8622 msg_outtrans(NameBuff);
8625 silent_mode = save_silent;
8626 info_message = FALSE;
8630 * Write modified options as ":set" commands to a file.
8632 * There are three values for "opt_flags":
8633 * OPT_GLOBAL: Write global option values and fresh values of
8634 * buffer-local options (used for start of a session
8635 * file).
8636 * OPT_GLOBAL + OPT_LOCAL: Idem, add fresh values of window-local options for
8637 * curwin (used for a vimrc file).
8638 * OPT_LOCAL: Write buffer-local option values for curbuf, fresh
8639 * and local values for window-local options of
8640 * curwin. Local values are also written when at the
8641 * default value, because a modeline or autocommand
8642 * may have set them when doing ":edit file" and the
8643 * user has set them back at the default or fresh
8644 * value.
8645 * When "local_only" is TRUE, don't write fresh
8646 * values, only local values (for ":mkview").
8647 * (fresh value = value used for a new buffer or window for a local option).
8649 * Return FAIL on error, OK otherwise.
8652 makeset(fd, opt_flags, local_only)
8653 FILE *fd;
8654 int opt_flags;
8655 int local_only;
8657 struct vimoption *p;
8658 char_u *varp; /* currently used value */
8659 char_u *varp_fresh; /* local value */
8660 char_u *varp_local = NULL; /* fresh value */
8661 char *cmd;
8662 int round;
8663 int pri;
8666 * The options that don't have a default (terminal name, columns, lines)
8667 * are never written. Terminal options are also not written.
8668 * Do the loop over "options[]" twice: once for options with the
8669 * P_PRI_MKRC flag and once without.
8671 for (pri = 1; pri >= 0; --pri)
8673 for (p = &options[0]; !istermoption(p); p++)
8674 if (!(p->flags & P_NO_MKRC)
8675 && !istermoption(p)
8676 && ((pri == 1) == ((p->flags & P_PRI_MKRC) != 0)))
8678 /* skip global option when only doing locals */
8679 if (p->indir == PV_NONE && !(opt_flags & OPT_GLOBAL))
8680 continue;
8682 /* Do not store options like 'bufhidden' and 'syntax' in a vimrc
8683 * file, they are always buffer-specific. */
8684 if ((opt_flags & OPT_GLOBAL) && (p->flags & P_NOGLOB))
8685 continue;
8687 /* Global values are only written when not at the default value. */
8688 varp = get_varp_scope(p, opt_flags);
8689 if ((opt_flags & OPT_GLOBAL) && optval_default(p, varp))
8690 continue;
8692 round = 2;
8693 if (p->indir != PV_NONE)
8695 if (p->var == VAR_WIN)
8697 /* skip window-local option when only doing globals */
8698 if (!(opt_flags & OPT_LOCAL))
8699 continue;
8700 /* When fresh value of window-local option is not at the
8701 * default, need to write it too. */
8702 if (!(opt_flags & OPT_GLOBAL) && !local_only)
8704 varp_fresh = get_varp_scope(p, OPT_GLOBAL);
8705 if (!optval_default(p, varp_fresh))
8707 round = 1;
8708 varp_local = varp;
8709 varp = varp_fresh;
8715 /* Round 1: fresh value for window-local options.
8716 * Round 2: other values */
8717 for ( ; round <= 2; varp = varp_local, ++round)
8719 if (round == 1 || (opt_flags & OPT_GLOBAL))
8720 cmd = "set";
8721 else
8722 cmd = "setlocal";
8724 if (p->flags & P_BOOL)
8726 if (put_setbool(fd, cmd, p->fullname, *(int *)varp) == FAIL)
8727 return FAIL;
8729 else if (p->flags & P_NUM)
8731 if (put_setnum(fd, cmd, p->fullname, (long *)varp) == FAIL)
8732 return FAIL;
8734 else /* P_STRING */
8736 #if defined(FEAT_SYN_HL) || defined(FEAT_AUTOCMD)
8737 int do_endif = FALSE;
8739 /* Don't set 'syntax' and 'filetype' again if the value is
8740 * already right, avoids reloading the syntax file. */
8741 if (
8742 # if defined(FEAT_SYN_HL)
8743 p->indir == PV_SYN
8744 # if defined(FEAT_AUTOCMD)
8746 # endif
8747 # endif
8748 # if defined(FEAT_AUTOCMD)
8749 p->indir == PV_FT
8750 # endif
8753 if (fprintf(fd, "if &%s != '%s'", p->fullname,
8754 *(char_u **)(varp)) < 0
8755 || put_eol(fd) < 0)
8756 return FAIL;
8757 do_endif = TRUE;
8759 #endif
8760 if (put_setstring(fd, cmd, p->fullname, (char_u **)varp,
8761 (p->flags & P_EXPAND) != 0) == FAIL)
8762 return FAIL;
8763 #if defined(FEAT_SYN_HL) || defined(FEAT_AUTOCMD)
8764 if (do_endif)
8766 if (put_line(fd, "endif") == FAIL)
8767 return FAIL;
8769 #endif
8774 return OK;
8777 #if defined(FEAT_FOLDING) || defined(PROTO)
8779 * Generate set commands for the local fold options only. Used when
8780 * 'sessionoptions' or 'viewoptions' contains "folds" but not "options".
8783 makefoldset(fd)
8784 FILE *fd;
8786 if (put_setstring(fd, "setlocal", "fdm", &curwin->w_p_fdm, FALSE) == FAIL
8787 # ifdef FEAT_EVAL
8788 || put_setstring(fd, "setlocal", "fde", &curwin->w_p_fde, FALSE)
8789 == FAIL
8790 # endif
8791 || put_setstring(fd, "setlocal", "fmr", &curwin->w_p_fmr, FALSE)
8792 == FAIL
8793 || put_setstring(fd, "setlocal", "fdi", &curwin->w_p_fdi, FALSE)
8794 == FAIL
8795 || put_setnum(fd, "setlocal", "fdl", &curwin->w_p_fdl) == FAIL
8796 || put_setnum(fd, "setlocal", "fml", &curwin->w_p_fml) == FAIL
8797 || put_setnum(fd, "setlocal", "fdn", &curwin->w_p_fdn) == FAIL
8798 || put_setbool(fd, "setlocal", "fen", curwin->w_p_fen) == FAIL
8800 return FAIL;
8802 return OK;
8804 #endif
8806 static int
8807 put_setstring(fd, cmd, name, valuep, expand)
8808 FILE *fd;
8809 char *cmd;
8810 char *name;
8811 char_u **valuep;
8812 int expand;
8814 char_u *s;
8815 char_u buf[MAXPATHL];
8817 if (fprintf(fd, "%s %s=", cmd, name) < 0)
8818 return FAIL;
8819 if (*valuep != NULL)
8821 /* Output 'pastetoggle' as key names. For other
8822 * options some characters have to be escaped with
8823 * CTRL-V or backslash */
8824 if (valuep == &p_pt)
8826 s = *valuep;
8827 while (*s != NUL)
8828 if (put_escstr(fd, str2special(&s, FALSE), 2) == FAIL)
8829 return FAIL;
8831 else if (expand)
8833 home_replace(NULL, *valuep, buf, MAXPATHL, FALSE);
8834 if (put_escstr(fd, buf, 2) == FAIL)
8835 return FAIL;
8837 else if (put_escstr(fd, *valuep, 2) == FAIL)
8838 return FAIL;
8840 if (put_eol(fd) < 0)
8841 return FAIL;
8842 return OK;
8845 static int
8846 put_setnum(fd, cmd, name, valuep)
8847 FILE *fd;
8848 char *cmd;
8849 char *name;
8850 long *valuep;
8852 long wc;
8854 if (fprintf(fd, "%s %s=", cmd, name) < 0)
8855 return FAIL;
8856 if (wc_use_keyname((char_u *)valuep, &wc))
8858 /* print 'wildchar' and 'wildcharm' as a key name */
8859 if (fputs((char *)get_special_key_name((int)wc, 0), fd) < 0)
8860 return FAIL;
8862 else if (fprintf(fd, "%ld", *valuep) < 0)
8863 return FAIL;
8864 if (put_eol(fd) < 0)
8865 return FAIL;
8866 return OK;
8869 static int
8870 put_setbool(fd, cmd, name, value)
8871 FILE *fd;
8872 char *cmd;
8873 char *name;
8874 int value;
8876 if (value < 0) /* global/local option using global value */
8877 return OK;
8878 if (fprintf(fd, "%s %s%s", cmd, value ? "" : "no", name) < 0
8879 || put_eol(fd) < 0)
8880 return FAIL;
8881 return OK;
8885 * Clear all the terminal options.
8886 * If the option has been allocated, free the memory.
8887 * Terminal options are never hidden or indirect.
8889 void
8890 clear_termoptions()
8893 * Reset a few things before clearing the old options. This may cause
8894 * outputting a few things that the terminal doesn't understand, but the
8895 * screen will be cleared later, so this is OK.
8897 #ifdef FEAT_MOUSE_TTY
8898 mch_setmouse(FALSE); /* switch mouse off */
8899 #endif
8900 #ifdef FEAT_TITLE
8901 mch_restore_title(3); /* restore window titles */
8902 #endif
8903 #if defined(FEAT_XCLIPBOARD) && defined(FEAT_GUI)
8904 /* When starting the GUI close the display opened for the clipboard.
8905 * After restoring the title, because that will need the display. */
8906 if (gui.starting)
8907 clear_xterm_clip();
8908 #endif
8909 #ifdef WIN3264
8911 * Check if this is allowed now.
8913 if (can_end_termcap_mode(FALSE) == TRUE)
8914 #endif
8915 stoptermcap(); /* stop termcap mode */
8917 free_termoptions();
8920 void
8921 free_termoptions()
8923 struct vimoption *p;
8925 for (p = &options[0]; p->fullname != NULL; p++)
8926 if (istermoption(p))
8928 if (p->flags & P_ALLOCED)
8929 free_string_option(*(char_u **)(p->var));
8930 if (p->flags & P_DEF_ALLOCED)
8931 free_string_option(p->def_val[VI_DEFAULT]);
8932 *(char_u **)(p->var) = empty_option;
8933 p->def_val[VI_DEFAULT] = empty_option;
8934 p->flags &= ~(P_ALLOCED|P_DEF_ALLOCED);
8936 clear_termcodes();
8940 * Set the terminal option defaults to the current value.
8941 * Used after setting the terminal name.
8943 void
8944 set_term_defaults()
8946 struct vimoption *p;
8948 for (p = &options[0]; p->fullname != NULL; p++)
8950 if (istermoption(p) && p->def_val[VI_DEFAULT] != *(char_u **)(p->var))
8952 if (p->flags & P_DEF_ALLOCED)
8954 free_string_option(p->def_val[VI_DEFAULT]);
8955 p->flags &= ~P_DEF_ALLOCED;
8957 p->def_val[VI_DEFAULT] = *(char_u **)(p->var);
8958 if (p->flags & P_ALLOCED)
8960 p->flags |= P_DEF_ALLOCED;
8961 p->flags &= ~P_ALLOCED; /* don't free the value now */
8968 * return TRUE if 'p' starts with 't_'
8970 static int
8971 istermoption(p)
8972 struct vimoption *p;
8974 return (p->fullname[0] == 't' && p->fullname[1] == '_');
8978 * Compute columns for ruler and shown command. 'sc_col' is also used to
8979 * decide what the maximum length of a message on the status line can be.
8980 * If there is a status line for the last window, 'sc_col' is independent
8981 * of 'ru_col'.
8984 #define COL_RULER 17 /* columns needed by standard ruler */
8986 void
8987 comp_col()
8989 #if defined(FEAT_CMDL_INFO) && defined(FEAT_WINDOWS)
8990 int last_has_status = (p_ls == 2 || (p_ls == 1 && firstwin != lastwin));
8992 sc_col = 0;
8993 ru_col = 0;
8994 if (p_ru)
8996 #ifdef FEAT_STL_OPT
8997 ru_col = (ru_wid ? ru_wid : COL_RULER) + 1;
8998 #else
8999 ru_col = COL_RULER + 1;
9000 #endif
9001 /* no last status line, adjust sc_col */
9002 if (!last_has_status)
9003 sc_col = ru_col;
9005 if (p_sc)
9007 sc_col += SHOWCMD_COLS;
9008 if (!p_ru || last_has_status) /* no need for separating space */
9009 ++sc_col;
9011 sc_col = Columns - sc_col;
9012 ru_col = Columns - ru_col;
9013 if (sc_col <= 0) /* screen too narrow, will become a mess */
9014 sc_col = 1;
9015 if (ru_col <= 0)
9016 ru_col = 1;
9017 #else
9018 sc_col = Columns;
9019 ru_col = Columns;
9020 #endif
9024 * Get pointer to option variable, depending on local or global scope.
9026 static char_u *
9027 get_varp_scope(p, opt_flags)
9028 struct vimoption *p;
9029 int opt_flags;
9031 if ((opt_flags & OPT_GLOBAL) && p->indir != PV_NONE)
9033 if (p->var == VAR_WIN)
9034 return (char_u *)GLOBAL_WO(get_varp(p));
9035 return p->var;
9037 if ((opt_flags & OPT_LOCAL) && ((int)p->indir & PV_BOTH))
9039 switch ((int)p->indir)
9041 #ifdef FEAT_QUICKFIX
9042 case PV_EFM: return (char_u *)&(curbuf->b_p_efm);
9043 case PV_GP: return (char_u *)&(curbuf->b_p_gp);
9044 case PV_MP: return (char_u *)&(curbuf->b_p_mp);
9045 #endif
9046 case PV_EP: return (char_u *)&(curbuf->b_p_ep);
9047 case PV_KP: return (char_u *)&(curbuf->b_p_kp);
9048 case PV_PATH: return (char_u *)&(curbuf->b_p_path);
9049 case PV_AR: return (char_u *)&(curbuf->b_p_ar);
9050 case PV_TAGS: return (char_u *)&(curbuf->b_p_tags);
9051 #ifdef FEAT_FIND_ID
9052 case PV_DEF: return (char_u *)&(curbuf->b_p_def);
9053 case PV_INC: return (char_u *)&(curbuf->b_p_inc);
9054 #endif
9055 #ifdef FEAT_INS_EXPAND
9056 case PV_DICT: return (char_u *)&(curbuf->b_p_dict);
9057 case PV_TSR: return (char_u *)&(curbuf->b_p_tsr);
9058 #endif
9059 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9060 case PV_BEXPR: return (char_u *)&(curbuf->b_p_bexpr);
9061 #endif
9062 #ifdef FEAT_STL_OPT
9063 case PV_STL: return (char_u *)&(curwin->w_p_stl);
9064 #endif
9066 return NULL; /* "cannot happen" */
9068 return get_varp(p);
9072 * Get pointer to option variable.
9074 static char_u *
9075 get_varp(p)
9076 struct vimoption *p;
9078 /* hidden option, always return NULL */
9079 if (p->var == NULL)
9080 return NULL;
9082 switch ((int)p->indir)
9084 case PV_NONE: return p->var;
9086 /* global option with local value: use local value if it's been set */
9087 case PV_EP: return *curbuf->b_p_ep != NUL
9088 ? (char_u *)&curbuf->b_p_ep : p->var;
9089 case PV_KP: return *curbuf->b_p_kp != NUL
9090 ? (char_u *)&curbuf->b_p_kp : p->var;
9091 case PV_PATH: return *curbuf->b_p_path != NUL
9092 ? (char_u *)&(curbuf->b_p_path) : p->var;
9093 case PV_AR: return curbuf->b_p_ar >= 0
9094 ? (char_u *)&(curbuf->b_p_ar) : p->var;
9095 case PV_TAGS: return *curbuf->b_p_tags != NUL
9096 ? (char_u *)&(curbuf->b_p_tags) : p->var;
9097 #ifdef FEAT_FIND_ID
9098 case PV_DEF: return *curbuf->b_p_def != NUL
9099 ? (char_u *)&(curbuf->b_p_def) : p->var;
9100 case PV_INC: return *curbuf->b_p_inc != NUL
9101 ? (char_u *)&(curbuf->b_p_inc) : p->var;
9102 #endif
9103 #ifdef FEAT_INS_EXPAND
9104 case PV_DICT: return *curbuf->b_p_dict != NUL
9105 ? (char_u *)&(curbuf->b_p_dict) : p->var;
9106 case PV_TSR: return *curbuf->b_p_tsr != NUL
9107 ? (char_u *)&(curbuf->b_p_tsr) : p->var;
9108 #endif
9109 #ifdef FEAT_QUICKFIX
9110 case PV_EFM: return *curbuf->b_p_efm != NUL
9111 ? (char_u *)&(curbuf->b_p_efm) : p->var;
9112 case PV_GP: return *curbuf->b_p_gp != NUL
9113 ? (char_u *)&(curbuf->b_p_gp) : p->var;
9114 case PV_MP: return *curbuf->b_p_mp != NUL
9115 ? (char_u *)&(curbuf->b_p_mp) : p->var;
9116 #endif
9117 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9118 case PV_BEXPR: return *curbuf->b_p_bexpr != NUL
9119 ? (char_u *)&(curbuf->b_p_bexpr) : p->var;
9120 #endif
9121 #ifdef FEAT_STL_OPT
9122 case PV_STL: return *curwin->w_p_stl != NUL
9123 ? (char_u *)&(curwin->w_p_stl) : p->var;
9124 #endif
9126 #ifdef FEAT_ARABIC
9127 case PV_ARAB: return (char_u *)&(curwin->w_p_arab);
9128 #endif
9129 case PV_LIST: return (char_u *)&(curwin->w_p_list);
9130 #ifdef FEAT_SPELL
9131 case PV_SPELL: return (char_u *)&(curwin->w_p_spell);
9132 #endif
9133 #ifdef FEAT_SYN_HL
9134 case PV_CUC: return (char_u *)&(curwin->w_p_cuc);
9135 case PV_CUL: return (char_u *)&(curwin->w_p_cul);
9136 #endif
9137 #ifdef FEAT_DIFF
9138 case PV_DIFF: return (char_u *)&(curwin->w_p_diff);
9139 #endif
9140 #ifdef FEAT_FOLDING
9141 case PV_FDC: return (char_u *)&(curwin->w_p_fdc);
9142 case PV_FEN: return (char_u *)&(curwin->w_p_fen);
9143 case PV_FDI: return (char_u *)&(curwin->w_p_fdi);
9144 case PV_FDL: return (char_u *)&(curwin->w_p_fdl);
9145 case PV_FDM: return (char_u *)&(curwin->w_p_fdm);
9146 case PV_FML: return (char_u *)&(curwin->w_p_fml);
9147 case PV_FDN: return (char_u *)&(curwin->w_p_fdn);
9148 # ifdef FEAT_EVAL
9149 case PV_FDE: return (char_u *)&(curwin->w_p_fde);
9150 case PV_FDT: return (char_u *)&(curwin->w_p_fdt);
9151 # endif
9152 case PV_FMR: return (char_u *)&(curwin->w_p_fmr);
9153 #endif
9154 case PV_NU: return (char_u *)&(curwin->w_p_nu);
9155 case PV_RNU: return (char_u *)&(curwin->w_p_rnu);
9156 #ifdef FEAT_LINEBREAK
9157 case PV_NUW: return (char_u *)&(curwin->w_p_nuw);
9158 #endif
9159 #ifdef FEAT_WINDOWS
9160 case PV_WFH: return (char_u *)&(curwin->w_p_wfh);
9161 #endif
9162 #ifdef FEAT_VERTSPLIT
9163 case PV_WFW: return (char_u *)&(curwin->w_p_wfw);
9164 #endif
9165 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
9166 case PV_PVW: return (char_u *)&(curwin->w_p_pvw);
9167 #endif
9168 #ifdef FEAT_RIGHTLEFT
9169 case PV_RL: return (char_u *)&(curwin->w_p_rl);
9170 case PV_RLC: return (char_u *)&(curwin->w_p_rlc);
9171 #endif
9172 case PV_SCROLL: return (char_u *)&(curwin->w_p_scr);
9173 case PV_WRAP: return (char_u *)&(curwin->w_p_wrap);
9174 #ifdef FEAT_LINEBREAK
9175 case PV_LBR: return (char_u *)&(curwin->w_p_lbr);
9176 #endif
9177 #ifdef FEAT_SCROLLBIND
9178 case PV_SCBIND: return (char_u *)&(curwin->w_p_scb);
9179 #endif
9181 case PV_AI: return (char_u *)&(curbuf->b_p_ai);
9182 case PV_BIN: return (char_u *)&(curbuf->b_p_bin);
9183 #ifdef FEAT_MBYTE
9184 case PV_BOMB: return (char_u *)&(curbuf->b_p_bomb);
9185 #endif
9186 #if defined(FEAT_QUICKFIX)
9187 case PV_BH: return (char_u *)&(curbuf->b_p_bh);
9188 case PV_BT: return (char_u *)&(curbuf->b_p_bt);
9189 #endif
9190 case PV_BL: return (char_u *)&(curbuf->b_p_bl);
9191 case PV_CI: return (char_u *)&(curbuf->b_p_ci);
9192 #ifdef FEAT_CINDENT
9193 case PV_CIN: return (char_u *)&(curbuf->b_p_cin);
9194 case PV_CINK: return (char_u *)&(curbuf->b_p_cink);
9195 case PV_CINO: return (char_u *)&(curbuf->b_p_cino);
9196 #endif
9197 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
9198 case PV_CINW: return (char_u *)&(curbuf->b_p_cinw);
9199 #endif
9200 #ifdef FEAT_COMMENTS
9201 case PV_COM: return (char_u *)&(curbuf->b_p_com);
9202 #endif
9203 #ifdef FEAT_FOLDING
9204 case PV_CMS: return (char_u *)&(curbuf->b_p_cms);
9205 #endif
9206 #ifdef FEAT_INS_EXPAND
9207 case PV_CPT: return (char_u *)&(curbuf->b_p_cpt);
9208 #endif
9209 #ifdef FEAT_COMPL_FUNC
9210 case PV_CFU: return (char_u *)&(curbuf->b_p_cfu);
9211 case PV_OFU: return (char_u *)&(curbuf->b_p_ofu);
9212 #endif
9213 case PV_EOL: return (char_u *)&(curbuf->b_p_eol);
9214 case PV_ET: return (char_u *)&(curbuf->b_p_et);
9215 #ifdef FEAT_MBYTE
9216 case PV_FENC: return (char_u *)&(curbuf->b_p_fenc);
9217 #endif
9218 case PV_FF: return (char_u *)&(curbuf->b_p_ff);
9219 #ifdef FEAT_AUTOCMD
9220 case PV_FT: return (char_u *)&(curbuf->b_p_ft);
9221 #endif
9222 case PV_FO: return (char_u *)&(curbuf->b_p_fo);
9223 case PV_FLP: return (char_u *)&(curbuf->b_p_flp);
9224 case PV_IMI: return (char_u *)&(curbuf->b_p_iminsert);
9225 case PV_IMS: return (char_u *)&(curbuf->b_p_imsearch);
9226 case PV_INF: return (char_u *)&(curbuf->b_p_inf);
9227 case PV_ISK: return (char_u *)&(curbuf->b_p_isk);
9228 #ifdef FEAT_FIND_ID
9229 # ifdef FEAT_EVAL
9230 case PV_INEX: return (char_u *)&(curbuf->b_p_inex);
9231 # endif
9232 #endif
9233 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
9234 case PV_INDE: return (char_u *)&(curbuf->b_p_inde);
9235 case PV_INDK: return (char_u *)&(curbuf->b_p_indk);
9236 #endif
9237 #ifdef FEAT_EVAL
9238 case PV_FEX: return (char_u *)&(curbuf->b_p_fex);
9239 #endif
9240 #ifdef FEAT_CRYPT
9241 case PV_KEY: return (char_u *)&(curbuf->b_p_key);
9242 #endif
9243 #ifdef FEAT_LISP
9244 case PV_LISP: return (char_u *)&(curbuf->b_p_lisp);
9245 #endif
9246 case PV_ML: return (char_u *)&(curbuf->b_p_ml);
9247 case PV_MPS: return (char_u *)&(curbuf->b_p_mps);
9248 case PV_MA: return (char_u *)&(curbuf->b_p_ma);
9249 case PV_MOD: return (char_u *)&(curbuf->b_changed);
9250 case PV_NF: return (char_u *)&(curbuf->b_p_nf);
9251 #ifdef FEAT_OSFILETYPE
9252 case PV_OFT: return (char_u *)&(curbuf->b_p_oft);
9253 #endif
9254 case PV_PI: return (char_u *)&(curbuf->b_p_pi);
9255 #ifdef FEAT_TEXTOBJ
9256 case PV_QE: return (char_u *)&(curbuf->b_p_qe);
9257 #endif
9258 case PV_RO: return (char_u *)&(curbuf->b_p_ro);
9259 #ifdef FEAT_SMARTINDENT
9260 case PV_SI: return (char_u *)&(curbuf->b_p_si);
9261 #endif
9262 #ifndef SHORT_FNAME
9263 case PV_SN: return (char_u *)&(curbuf->b_p_sn);
9264 #endif
9265 case PV_STS: return (char_u *)&(curbuf->b_p_sts);
9266 #ifdef FEAT_SEARCHPATH
9267 case PV_SUA: return (char_u *)&(curbuf->b_p_sua);
9268 #endif
9269 case PV_SWF: return (char_u *)&(curbuf->b_p_swf);
9270 #ifdef FEAT_SYN_HL
9271 case PV_SMC: return (char_u *)&(curbuf->b_p_smc);
9272 case PV_SYN: return (char_u *)&(curbuf->b_p_syn);
9273 #endif
9274 #ifdef FEAT_SPELL
9275 case PV_SPC: return (char_u *)&(curbuf->b_p_spc);
9276 case PV_SPF: return (char_u *)&(curbuf->b_p_spf);
9277 case PV_SPL: return (char_u *)&(curbuf->b_p_spl);
9278 #endif
9279 case PV_SW: return (char_u *)&(curbuf->b_p_sw);
9280 case PV_TS: return (char_u *)&(curbuf->b_p_ts);
9281 case PV_TW: return (char_u *)&(curbuf->b_p_tw);
9282 case PV_TX: return (char_u *)&(curbuf->b_p_tx);
9283 case PV_WM: return (char_u *)&(curbuf->b_p_wm);
9284 #ifdef FEAT_KEYMAP
9285 case PV_KMAP: return (char_u *)&(curbuf->b_p_keymap);
9286 #endif
9287 default: EMSG(_("E356: get_varp ERROR"));
9289 /* always return a valid pointer to avoid a crash! */
9290 return (char_u *)&(curbuf->b_p_wm);
9294 * Get the value of 'equalprg', either the buffer-local one or the global one.
9296 char_u *
9297 get_equalprg()
9299 if (*curbuf->b_p_ep == NUL)
9300 return p_ep;
9301 return curbuf->b_p_ep;
9304 #if defined(FEAT_WINDOWS) || defined(PROTO)
9306 * Copy options from one window to another.
9307 * Used when splitting a window.
9309 void
9310 win_copy_options(wp_from, wp_to)
9311 win_T *wp_from;
9312 win_T *wp_to;
9314 copy_winopt(&wp_from->w_onebuf_opt, &wp_to->w_onebuf_opt);
9315 copy_winopt(&wp_from->w_allbuf_opt, &wp_to->w_allbuf_opt);
9316 # ifdef FEAT_RIGHTLEFT
9317 # ifdef FEAT_FKMAP
9318 /* Is this right? */
9319 wp_to->w_farsi = wp_from->w_farsi;
9320 # endif
9321 # endif
9323 #endif
9326 * Copy the options from one winopt_T to another.
9327 * Doesn't free the old option values in "to", use clear_winopt() for that.
9328 * The 'scroll' option is not copied, because it depends on the window height.
9329 * The 'previewwindow' option is reset, there can be only one preview window.
9331 void
9332 copy_winopt(from, to)
9333 winopt_T *from;
9334 winopt_T *to;
9336 #ifdef FEAT_ARABIC
9337 to->wo_arab = from->wo_arab;
9338 #endif
9339 to->wo_list = from->wo_list;
9340 to->wo_nu = from->wo_nu;
9341 to->wo_rnu = from->wo_rnu;
9342 #ifdef FEAT_LINEBREAK
9343 to->wo_nuw = from->wo_nuw;
9344 #endif
9345 #ifdef FEAT_RIGHTLEFT
9346 to->wo_rl = from->wo_rl;
9347 to->wo_rlc = vim_strsave(from->wo_rlc);
9348 #endif
9349 #ifdef FEAT_STL_OPT
9350 to->wo_stl = vim_strsave(from->wo_stl);
9351 #endif
9352 to->wo_wrap = from->wo_wrap;
9353 #ifdef FEAT_LINEBREAK
9354 to->wo_lbr = from->wo_lbr;
9355 #endif
9356 #ifdef FEAT_SCROLLBIND
9357 to->wo_scb = from->wo_scb;
9358 #endif
9359 #ifdef FEAT_SPELL
9360 to->wo_spell = from->wo_spell;
9361 #endif
9362 #ifdef FEAT_SYN_HL
9363 to->wo_cuc = from->wo_cuc;
9364 to->wo_cul = from->wo_cul;
9365 #endif
9366 #ifdef FEAT_DIFF
9367 to->wo_diff = from->wo_diff;
9368 #endif
9369 #ifdef FEAT_FOLDING
9370 to->wo_fdc = from->wo_fdc;
9371 to->wo_fen = from->wo_fen;
9372 to->wo_fdi = vim_strsave(from->wo_fdi);
9373 to->wo_fml = from->wo_fml;
9374 to->wo_fdl = from->wo_fdl;
9375 to->wo_fdm = vim_strsave(from->wo_fdm);
9376 to->wo_fdn = from->wo_fdn;
9377 # ifdef FEAT_EVAL
9378 to->wo_fde = vim_strsave(from->wo_fde);
9379 to->wo_fdt = vim_strsave(from->wo_fdt);
9380 # endif
9381 to->wo_fmr = vim_strsave(from->wo_fmr);
9382 #endif
9383 check_winopt(to); /* don't want NULL pointers */
9387 * Check string options in a window for a NULL value.
9389 void
9390 check_win_options(win)
9391 win_T *win;
9393 check_winopt(&win->w_onebuf_opt);
9394 check_winopt(&win->w_allbuf_opt);
9398 * Check for NULL pointers in a winopt_T and replace them with empty_option.
9400 void
9401 check_winopt(wop)
9402 winopt_T *wop UNUSED;
9404 #ifdef FEAT_FOLDING
9405 check_string_option(&wop->wo_fdi);
9406 check_string_option(&wop->wo_fdm);
9407 # ifdef FEAT_EVAL
9408 check_string_option(&wop->wo_fde);
9409 check_string_option(&wop->wo_fdt);
9410 # endif
9411 check_string_option(&wop->wo_fmr);
9412 #endif
9413 #ifdef FEAT_RIGHTLEFT
9414 check_string_option(&wop->wo_rlc);
9415 #endif
9416 #ifdef FEAT_STL_OPT
9417 check_string_option(&wop->wo_stl);
9418 #endif
9422 * Free the allocated memory inside a winopt_T.
9424 void
9425 clear_winopt(wop)
9426 winopt_T *wop UNUSED;
9428 #ifdef FEAT_FOLDING
9429 clear_string_option(&wop->wo_fdi);
9430 clear_string_option(&wop->wo_fdm);
9431 # ifdef FEAT_EVAL
9432 clear_string_option(&wop->wo_fde);
9433 clear_string_option(&wop->wo_fdt);
9434 # endif
9435 clear_string_option(&wop->wo_fmr);
9436 #endif
9437 #ifdef FEAT_RIGHTLEFT
9438 clear_string_option(&wop->wo_rlc);
9439 #endif
9440 #ifdef FEAT_STL_OPT
9441 clear_string_option(&wop->wo_stl);
9442 #endif
9446 * Copy global option values to local options for one buffer.
9447 * Used when creating a new buffer and sometimes when entering a buffer.
9448 * flags:
9449 * BCO_ENTER We will enter the buf buffer.
9450 * BCO_ALWAYS Always copy the options, but only set b_p_initialized when
9451 * appropriate.
9452 * BCO_NOHELP Don't copy the values to a help buffer.
9454 void
9455 buf_copy_options(buf, flags)
9456 buf_T *buf;
9457 int flags;
9459 int should_copy = TRUE;
9460 char_u *save_p_isk = NULL; /* init for GCC */
9461 int dont_do_help;
9462 int did_isk = FALSE;
9465 * Don't do anything of the buffer is invalid.
9467 if (buf == NULL || !buf_valid(buf))
9468 return;
9471 * Skip this when the option defaults have not been set yet. Happens when
9472 * main() allocates the first buffer.
9474 if (p_cpo != NULL)
9477 * Always copy when entering and 'cpo' contains 'S'.
9478 * Don't copy when already initialized.
9479 * Don't copy when 'cpo' contains 's' and not entering.
9480 * 'S' BCO_ENTER initialized 's' should_copy
9481 * yes yes X X TRUE
9482 * yes no yes X FALSE
9483 * no X yes X FALSE
9484 * X no no yes FALSE
9485 * X no no no TRUE
9486 * no yes no X TRUE
9488 if ((vim_strchr(p_cpo, CPO_BUFOPTGLOB) == NULL || !(flags & BCO_ENTER))
9489 && (buf->b_p_initialized
9490 || (!(flags & BCO_ENTER)
9491 && vim_strchr(p_cpo, CPO_BUFOPT) != NULL)))
9492 should_copy = FALSE;
9494 if (should_copy || (flags & BCO_ALWAYS))
9496 /* Don't copy the options specific to a help buffer when
9497 * BCO_NOHELP is given or the options were initialized already
9498 * (jumping back to a help file with CTRL-T or CTRL-O) */
9499 dont_do_help = ((flags & BCO_NOHELP) && buf->b_help)
9500 || buf->b_p_initialized;
9501 if (dont_do_help) /* don't free b_p_isk */
9503 save_p_isk = buf->b_p_isk;
9504 buf->b_p_isk = NULL;
9507 * Always free the allocated strings.
9508 * If not already initialized, set 'readonly' and copy 'fileformat'.
9510 if (!buf->b_p_initialized)
9512 free_buf_options(buf, TRUE);
9513 buf->b_p_ro = FALSE; /* don't copy readonly */
9514 buf->b_p_tx = p_tx;
9515 #ifdef FEAT_MBYTE
9516 buf->b_p_fenc = vim_strsave(p_fenc);
9517 #endif
9518 buf->b_p_ff = vim_strsave(p_ff);
9519 #if defined(FEAT_QUICKFIX)
9520 buf->b_p_bh = empty_option;
9521 buf->b_p_bt = empty_option;
9522 #endif
9524 else
9525 free_buf_options(buf, FALSE);
9527 buf->b_p_ai = p_ai;
9528 buf->b_p_ai_nopaste = p_ai_nopaste;
9529 buf->b_p_sw = p_sw;
9530 buf->b_p_tw = p_tw;
9531 buf->b_p_tw_nopaste = p_tw_nopaste;
9532 buf->b_p_tw_nobin = p_tw_nobin;
9533 buf->b_p_wm = p_wm;
9534 buf->b_p_wm_nopaste = p_wm_nopaste;
9535 buf->b_p_wm_nobin = p_wm_nobin;
9536 buf->b_p_bin = p_bin;
9537 #ifdef FEAT_MBYTE
9538 buf->b_p_bomb = p_bomb;
9539 #endif
9540 buf->b_p_et = p_et;
9541 buf->b_p_et_nobin = p_et_nobin;
9542 buf->b_p_ml = p_ml;
9543 buf->b_p_ml_nobin = p_ml_nobin;
9544 buf->b_p_inf = p_inf;
9545 buf->b_p_swf = p_swf;
9546 #ifdef FEAT_INS_EXPAND
9547 buf->b_p_cpt = vim_strsave(p_cpt);
9548 #endif
9549 #ifdef FEAT_COMPL_FUNC
9550 buf->b_p_cfu = vim_strsave(p_cfu);
9551 buf->b_p_ofu = vim_strsave(p_ofu);
9552 #endif
9553 buf->b_p_sts = p_sts;
9554 buf->b_p_sts_nopaste = p_sts_nopaste;
9555 #ifndef SHORT_FNAME
9556 buf->b_p_sn = p_sn;
9557 #endif
9558 #ifdef FEAT_COMMENTS
9559 buf->b_p_com = vim_strsave(p_com);
9560 #endif
9561 #ifdef FEAT_FOLDING
9562 buf->b_p_cms = vim_strsave(p_cms);
9563 #endif
9564 buf->b_p_fo = vim_strsave(p_fo);
9565 buf->b_p_flp = vim_strsave(p_flp);
9566 buf->b_p_nf = vim_strsave(p_nf);
9567 buf->b_p_mps = vim_strsave(p_mps);
9568 #ifdef FEAT_SMARTINDENT
9569 buf->b_p_si = p_si;
9570 #endif
9571 buf->b_p_ci = p_ci;
9572 #ifdef FEAT_CINDENT
9573 buf->b_p_cin = p_cin;
9574 buf->b_p_cink = vim_strsave(p_cink);
9575 buf->b_p_cino = vim_strsave(p_cino);
9576 #endif
9577 #ifdef FEAT_AUTOCMD
9578 /* Don't copy 'filetype', it must be detected */
9579 buf->b_p_ft = empty_option;
9580 #endif
9581 #ifdef FEAT_OSFILETYPE
9582 buf->b_p_oft = vim_strsave(p_oft);
9583 #endif
9584 buf->b_p_pi = p_pi;
9585 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
9586 buf->b_p_cinw = vim_strsave(p_cinw);
9587 #endif
9588 #ifdef FEAT_LISP
9589 buf->b_p_lisp = p_lisp;
9590 #endif
9591 #ifdef FEAT_SYN_HL
9592 /* Don't copy 'syntax', it must be set */
9593 buf->b_p_syn = empty_option;
9594 buf->b_p_smc = p_smc;
9595 #endif
9596 #ifdef FEAT_SPELL
9597 buf->b_p_spc = vim_strsave(p_spc);
9598 (void)compile_cap_prog(buf);
9599 buf->b_p_spf = vim_strsave(p_spf);
9600 buf->b_p_spl = vim_strsave(p_spl);
9601 #endif
9602 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
9603 buf->b_p_inde = vim_strsave(p_inde);
9604 buf->b_p_indk = vim_strsave(p_indk);
9605 #endif
9606 #if defined(FEAT_EVAL)
9607 buf->b_p_fex = vim_strsave(p_fex);
9608 #endif
9609 #ifdef FEAT_CRYPT
9610 buf->b_p_key = vim_strsave(p_key);
9611 #endif
9612 #ifdef FEAT_SEARCHPATH
9613 buf->b_p_sua = vim_strsave(p_sua);
9614 #endif
9615 #ifdef FEAT_KEYMAP
9616 buf->b_p_keymap = vim_strsave(p_keymap);
9617 buf->b_kmap_state |= KEYMAP_INIT;
9618 #endif
9619 /* This isn't really an option, but copying the langmap and IME
9620 * state from the current buffer is better than resetting it. */
9621 buf->b_p_iminsert = p_iminsert;
9622 buf->b_p_imsearch = p_imsearch;
9624 /* options that are normally global but also have a local value
9625 * are not copied, start using the global value */
9626 buf->b_p_ar = -1;
9627 #ifdef FEAT_QUICKFIX
9628 buf->b_p_gp = empty_option;
9629 buf->b_p_mp = empty_option;
9630 buf->b_p_efm = empty_option;
9631 #endif
9632 buf->b_p_ep = empty_option;
9633 buf->b_p_kp = empty_option;
9634 buf->b_p_path = empty_option;
9635 buf->b_p_tags = empty_option;
9636 #ifdef FEAT_FIND_ID
9637 buf->b_p_def = empty_option;
9638 buf->b_p_inc = empty_option;
9639 # ifdef FEAT_EVAL
9640 buf->b_p_inex = vim_strsave(p_inex);
9641 # endif
9642 #endif
9643 #ifdef FEAT_INS_EXPAND
9644 buf->b_p_dict = empty_option;
9645 buf->b_p_tsr = empty_option;
9646 #endif
9647 #ifdef FEAT_TEXTOBJ
9648 buf->b_p_qe = vim_strsave(p_qe);
9649 #endif
9650 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9651 buf->b_p_bexpr = empty_option;
9652 #endif
9655 * Don't copy the options set by ex_help(), use the saved values,
9656 * when going from a help buffer to a non-help buffer.
9657 * Don't touch these at all when BCO_NOHELP is used and going from
9658 * or to a help buffer.
9660 if (dont_do_help)
9661 buf->b_p_isk = save_p_isk;
9662 else
9664 buf->b_p_isk = vim_strsave(p_isk);
9665 did_isk = TRUE;
9666 buf->b_p_ts = p_ts;
9667 buf->b_help = FALSE;
9668 #ifdef FEAT_QUICKFIX
9669 if (buf->b_p_bt[0] == 'h')
9670 clear_string_option(&buf->b_p_bt);
9671 #endif
9672 buf->b_p_ma = p_ma;
9677 * When the options should be copied (ignoring BCO_ALWAYS), set the
9678 * flag that indicates that the options have been initialized.
9680 if (should_copy)
9681 buf->b_p_initialized = TRUE;
9684 check_buf_options(buf); /* make sure we don't have NULLs */
9685 if (did_isk)
9686 (void)buf_init_chartab(buf, FALSE);
9690 * Reset the 'modifiable' option and its default value.
9692 void
9693 reset_modifiable()
9695 int opt_idx;
9697 curbuf->b_p_ma = FALSE;
9698 p_ma = FALSE;
9699 opt_idx = findoption((char_u *)"ma");
9700 if (opt_idx >= 0)
9701 options[opt_idx].def_val[VI_DEFAULT] = FALSE;
9705 * Set the global value for 'iminsert' to the local value.
9707 void
9708 set_iminsert_global()
9710 p_iminsert = curbuf->b_p_iminsert;
9714 * Set the global value for 'imsearch' to the local value.
9716 void
9717 set_imsearch_global()
9719 p_imsearch = curbuf->b_p_imsearch;
9722 #if defined(FEAT_CMDL_COMPL) || defined(PROTO)
9723 static int expand_option_idx = -1;
9724 static char_u expand_option_name[5] = {'t', '_', NUL, NUL, NUL};
9725 static int expand_option_flags = 0;
9727 void
9728 set_context_in_set_cmd(xp, arg, opt_flags)
9729 expand_T *xp;
9730 char_u *arg;
9731 int opt_flags; /* OPT_GLOBAL and/or OPT_LOCAL */
9733 int nextchar;
9734 long_u flags = 0; /* init for GCC */
9735 int opt_idx = 0; /* init for GCC */
9736 char_u *p;
9737 char_u *s;
9738 int is_term_option = FALSE;
9739 int key;
9741 expand_option_flags = opt_flags;
9743 xp->xp_context = EXPAND_SETTINGS;
9744 if (*arg == NUL)
9746 xp->xp_pattern = arg;
9747 return;
9749 p = arg + STRLEN(arg) - 1;
9750 if (*p == ' ' && *(p - 1) != '\\')
9752 xp->xp_pattern = p + 1;
9753 return;
9755 while (p > arg)
9757 s = p;
9758 /* count number of backslashes before ' ' or ',' */
9759 if (*p == ' ' || *p == ',')
9761 while (s > arg && *(s - 1) == '\\')
9762 --s;
9764 /* break at a space with an even number of backslashes */
9765 if (*p == ' ' && ((p - s) & 1) == 0)
9767 ++p;
9768 break;
9770 --p;
9772 if (STRNCMP(p, "no", 2) == 0)
9774 xp->xp_context = EXPAND_BOOL_SETTINGS;
9775 p += 2;
9777 if (STRNCMP(p, "inv", 3) == 0)
9779 xp->xp_context = EXPAND_BOOL_SETTINGS;
9780 p += 3;
9782 xp->xp_pattern = arg = p;
9783 if (*arg == '<')
9785 while (*p != '>')
9786 if (*p++ == NUL) /* expand terminal option name */
9787 return;
9788 key = get_special_key_code(arg + 1);
9789 if (key == 0) /* unknown name */
9791 xp->xp_context = EXPAND_NOTHING;
9792 return;
9794 nextchar = *++p;
9795 is_term_option = TRUE;
9796 expand_option_name[2] = KEY2TERMCAP0(key);
9797 expand_option_name[3] = KEY2TERMCAP1(key);
9799 else
9801 if (p[0] == 't' && p[1] == '_')
9803 p += 2;
9804 if (*p != NUL)
9805 ++p;
9806 if (*p == NUL)
9807 return; /* expand option name */
9808 nextchar = *++p;
9809 is_term_option = TRUE;
9810 expand_option_name[2] = p[-2];
9811 expand_option_name[3] = p[-1];
9813 else
9815 /* Allow * wildcard */
9816 while (ASCII_ISALNUM(*p) || *p == '_' || *p == '*')
9817 p++;
9818 if (*p == NUL)
9819 return;
9820 nextchar = *p;
9821 *p = NUL;
9822 opt_idx = findoption(arg);
9823 *p = nextchar;
9824 if (opt_idx == -1 || options[opt_idx].var == NULL)
9826 xp->xp_context = EXPAND_NOTHING;
9827 return;
9829 flags = options[opt_idx].flags;
9830 if (flags & P_BOOL)
9832 xp->xp_context = EXPAND_NOTHING;
9833 return;
9837 /* handle "-=" and "+=" */
9838 if ((nextchar == '-' || nextchar == '+' || nextchar == '^') && p[1] == '=')
9840 ++p;
9841 nextchar = '=';
9843 if ((nextchar != '=' && nextchar != ':')
9844 || xp->xp_context == EXPAND_BOOL_SETTINGS)
9846 xp->xp_context = EXPAND_UNSUCCESSFUL;
9847 return;
9849 if (xp->xp_context != EXPAND_BOOL_SETTINGS && p[1] == NUL)
9851 xp->xp_context = EXPAND_OLD_SETTING;
9852 if (is_term_option)
9853 expand_option_idx = -1;
9854 else
9855 expand_option_idx = opt_idx;
9856 xp->xp_pattern = p + 1;
9857 return;
9859 xp->xp_context = EXPAND_NOTHING;
9860 if (is_term_option || (flags & P_NUM))
9861 return;
9863 xp->xp_pattern = p + 1;
9865 if (flags & P_EXPAND)
9867 p = options[opt_idx].var;
9868 if (p == (char_u *)&p_bdir
9869 || p == (char_u *)&p_dir
9870 || p == (char_u *)&p_path
9871 || p == (char_u *)&p_rtp
9872 #ifdef FEAT_SEARCHPATH
9873 || p == (char_u *)&p_cdpath
9874 #endif
9875 #ifdef FEAT_SESSION
9876 || p == (char_u *)&p_vdir
9877 #endif
9880 xp->xp_context = EXPAND_DIRECTORIES;
9881 if (p == (char_u *)&p_path
9882 #ifdef FEAT_SEARCHPATH
9883 || p == (char_u *)&p_cdpath
9884 #endif
9886 xp->xp_backslash = XP_BS_THREE;
9887 else
9888 xp->xp_backslash = XP_BS_ONE;
9890 else
9892 xp->xp_context = EXPAND_FILES;
9893 /* for 'tags' need three backslashes for a space */
9894 if (p == (char_u *)&p_tags)
9895 xp->xp_backslash = XP_BS_THREE;
9896 else
9897 xp->xp_backslash = XP_BS_ONE;
9901 /* For an option that is a list of file names, find the start of the
9902 * last file name. */
9903 for (p = arg + STRLEN(arg) - 1; p > xp->xp_pattern; --p)
9905 /* count number of backslashes before ' ' or ',' */
9906 if (*p == ' ' || *p == ',')
9908 s = p;
9909 while (s > xp->xp_pattern && *(s - 1) == '\\')
9910 --s;
9911 if ((*p == ' ' && (xp->xp_backslash == XP_BS_THREE && (p - s) < 3))
9912 || (*p == ',' && (flags & P_COMMA) && ((p - s) & 1) == 0))
9914 xp->xp_pattern = p + 1;
9915 break;
9919 #ifdef FEAT_SPELL
9920 /* for 'spellsuggest' start at "file:" */
9921 if (options[opt_idx].var == (char_u *)&p_sps
9922 && STRNCMP(p, "file:", 5) == 0)
9924 xp->xp_pattern = p + 5;
9925 break;
9927 #endif
9930 return;
9934 ExpandSettings(xp, regmatch, num_file, file)
9935 expand_T *xp;
9936 regmatch_T *regmatch;
9937 int *num_file;
9938 char_u ***file;
9940 int num_normal = 0; /* Nr of matching non-term-code settings */
9941 int num_term = 0; /* Nr of matching terminal code settings */
9942 int opt_idx;
9943 int match;
9944 int count = 0;
9945 char_u *str;
9946 int loop;
9947 int is_term_opt;
9948 char_u name_buf[MAX_KEY_NAME_LEN];
9949 static char *(names[]) = {"all", "termcap"};
9950 int ic = regmatch->rm_ic; /* remember the ignore-case flag */
9952 /* do this loop twice:
9953 * loop == 0: count the number of matching options
9954 * loop == 1: copy the matching options into allocated memory
9956 for (loop = 0; loop <= 1; ++loop)
9958 regmatch->rm_ic = ic;
9959 if (xp->xp_context != EXPAND_BOOL_SETTINGS)
9961 for (match = 0; match < (int)(sizeof(names) / sizeof(char *));
9962 ++match)
9963 if (vim_regexec(regmatch, (char_u *)names[match], (colnr_T)0))
9965 if (loop == 0)
9966 num_normal++;
9967 else
9968 (*file)[count++] = vim_strsave((char_u *)names[match]);
9971 for (opt_idx = 0; (str = (char_u *)options[opt_idx].fullname) != NULL;
9972 opt_idx++)
9974 if (options[opt_idx].var == NULL)
9975 continue;
9976 if (xp->xp_context == EXPAND_BOOL_SETTINGS
9977 && !(options[opt_idx].flags & P_BOOL))
9978 continue;
9979 is_term_opt = istermoption(&options[opt_idx]);
9980 if (is_term_opt && num_normal > 0)
9981 continue;
9982 match = FALSE;
9983 if (vim_regexec(regmatch, str, (colnr_T)0)
9984 || (options[opt_idx].shortname != NULL
9985 && vim_regexec(regmatch,
9986 (char_u *)options[opt_idx].shortname, (colnr_T)0)))
9987 match = TRUE;
9988 else if (is_term_opt)
9990 name_buf[0] = '<';
9991 name_buf[1] = 't';
9992 name_buf[2] = '_';
9993 name_buf[3] = str[2];
9994 name_buf[4] = str[3];
9995 name_buf[5] = '>';
9996 name_buf[6] = NUL;
9997 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
9999 match = TRUE;
10000 str = name_buf;
10003 if (match)
10005 if (loop == 0)
10007 if (is_term_opt)
10008 num_term++;
10009 else
10010 num_normal++;
10012 else
10013 (*file)[count++] = vim_strsave(str);
10017 * Check terminal key codes, these are not in the option table
10019 if (xp->xp_context != EXPAND_BOOL_SETTINGS && num_normal == 0)
10021 for (opt_idx = 0; (str = get_termcode(opt_idx)) != NULL; opt_idx++)
10023 if (!isprint(str[0]) || !isprint(str[1]))
10024 continue;
10026 name_buf[0] = 't';
10027 name_buf[1] = '_';
10028 name_buf[2] = str[0];
10029 name_buf[3] = str[1];
10030 name_buf[4] = NUL;
10032 match = FALSE;
10033 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10034 match = TRUE;
10035 else
10037 name_buf[0] = '<';
10038 name_buf[1] = 't';
10039 name_buf[2] = '_';
10040 name_buf[3] = str[0];
10041 name_buf[4] = str[1];
10042 name_buf[5] = '>';
10043 name_buf[6] = NUL;
10045 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10046 match = TRUE;
10048 if (match)
10050 if (loop == 0)
10051 num_term++;
10052 else
10053 (*file)[count++] = vim_strsave(name_buf);
10058 * Check special key names.
10060 regmatch->rm_ic = TRUE; /* ignore case here */
10061 for (opt_idx = 0; (str = get_key_name(opt_idx)) != NULL; opt_idx++)
10063 name_buf[0] = '<';
10064 STRCPY(name_buf + 1, str);
10065 STRCAT(name_buf, ">");
10067 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10069 if (loop == 0)
10070 num_term++;
10071 else
10072 (*file)[count++] = vim_strsave(name_buf);
10076 if (loop == 0)
10078 if (num_normal > 0)
10079 *num_file = num_normal;
10080 else if (num_term > 0)
10081 *num_file = num_term;
10082 else
10083 return OK;
10084 *file = (char_u **)alloc((unsigned)(*num_file * sizeof(char_u *)));
10085 if (*file == NULL)
10087 *file = (char_u **)"";
10088 return FAIL;
10092 return OK;
10096 ExpandOldSetting(num_file, file)
10097 int *num_file;
10098 char_u ***file;
10100 char_u *var = NULL; /* init for GCC */
10101 char_u *buf;
10103 *num_file = 0;
10104 *file = (char_u **)alloc((unsigned)sizeof(char_u *));
10105 if (*file == NULL)
10106 return FAIL;
10109 * For a terminal key code expand_option_idx is < 0.
10111 if (expand_option_idx < 0)
10113 var = find_termcode(expand_option_name + 2);
10114 if (var == NULL)
10115 expand_option_idx = findoption(expand_option_name);
10118 if (expand_option_idx >= 0)
10120 /* put string of option value in NameBuff */
10121 option_value2string(&options[expand_option_idx], expand_option_flags);
10122 var = NameBuff;
10124 else if (var == NULL)
10125 var = (char_u *)"";
10127 /* A backslash is required before some characters. This is the reverse of
10128 * what happens in do_set(). */
10129 buf = vim_strsave_escaped(var, escape_chars);
10131 if (buf == NULL)
10133 vim_free(*file);
10134 *file = NULL;
10135 return FAIL;
10138 #ifdef BACKSLASH_IN_FILENAME
10139 /* For MS-Windows et al. we don't double backslashes at the start and
10140 * before a file name character. */
10141 for (var = buf; *var != NUL; mb_ptr_adv(var))
10142 if (var[0] == '\\' && var[1] == '\\'
10143 && expand_option_idx >= 0
10144 && (options[expand_option_idx].flags & P_EXPAND)
10145 && vim_isfilec(var[2])
10146 && (var[2] != '\\' || (var == buf && var[4] != '\\')))
10147 STRMOVE(var, var + 1);
10148 #endif
10150 *file[0] = buf;
10151 *num_file = 1;
10152 return OK;
10154 #endif
10157 * Get the value for the numeric or string option *opp in a nice format into
10158 * NameBuff[]. Must not be called with a hidden option!
10160 static void
10161 option_value2string(opp, opt_flags)
10162 struct vimoption *opp;
10163 int opt_flags; /* OPT_GLOBAL and/or OPT_LOCAL */
10165 char_u *varp;
10167 varp = get_varp_scope(opp, opt_flags);
10169 if (opp->flags & P_NUM)
10171 long wc = 0;
10173 if (wc_use_keyname(varp, &wc))
10174 STRCPY(NameBuff, get_special_key_name((int)wc, 0));
10175 else if (wc != 0)
10176 STRCPY(NameBuff, transchar((int)wc));
10177 else
10178 sprintf((char *)NameBuff, "%ld", *(long *)varp);
10180 else /* P_STRING */
10182 varp = *(char_u **)(varp);
10183 if (varp == NULL) /* just in case */
10184 NameBuff[0] = NUL;
10185 #ifdef FEAT_CRYPT
10186 /* don't show the actual value of 'key', only that it's set */
10187 else if (opp->var == (char_u *)&p_key && *varp)
10188 STRCPY(NameBuff, "*****");
10189 #endif
10190 else if (opp->flags & P_EXPAND)
10191 home_replace(NULL, varp, NameBuff, MAXPATHL, FALSE);
10192 /* Translate 'pastetoggle' into special key names */
10193 else if ((char_u **)opp->var == &p_pt)
10194 str2specialbuf(p_pt, NameBuff, MAXPATHL);
10195 else
10196 vim_strncpy(NameBuff, varp, MAXPATHL - 1);
10201 * Return TRUE if "varp" points to 'wildchar' or 'wildcharm' and it can be
10202 * printed as a keyname.
10203 * "*wcp" is set to the value of the option if it's 'wildchar' or 'wildcharm'.
10205 static int
10206 wc_use_keyname(varp, wcp)
10207 char_u *varp;
10208 long *wcp;
10210 if (((long *)varp == &p_wc) || ((long *)varp == &p_wcm))
10212 *wcp = *(long *)varp;
10213 if (IS_SPECIAL(*wcp) || find_special_key_in_table((int)*wcp) >= 0)
10214 return TRUE;
10216 return FALSE;
10219 #ifdef FEAT_LANGMAP
10221 * Any character has an equivalent 'langmap' character. This is used for
10222 * keyboards that have a special language mode that sends characters above
10223 * 128 (although other characters can be translated too). The "to" field is a
10224 * Vim command character. This avoids having to switch the keyboard back to
10225 * ASCII mode when leaving Insert mode.
10227 * langmap_mapchar[] maps any of 256 chars to an ASCII char used for Vim
10228 * commands.
10229 * When FEAT_MBYTE is defined langmap_mapga.ga_data is a sorted table of
10230 * langmap_entry_T. This does the same as langmap_mapchar[] for characters >=
10231 * 256.
10233 # ifdef FEAT_MBYTE
10235 * With multi-byte support use growarray for 'langmap' chars >= 256
10237 typedef struct
10239 int from;
10240 int to;
10241 } langmap_entry_T;
10243 static garray_T langmap_mapga;
10244 static void langmap_set_entry __ARGS((int from, int to));
10247 * Search for an entry in "langmap_mapga" for "from". If found set the "to"
10248 * field. If not found insert a new entry at the appropriate location.
10250 static void
10251 langmap_set_entry(from, to)
10252 int from;
10253 int to;
10255 langmap_entry_T *entries = (langmap_entry_T *)(langmap_mapga.ga_data);
10256 int a = 0;
10257 int b = langmap_mapga.ga_len;
10259 /* Do a binary search for an existing entry. */
10260 while (a != b)
10262 int i = (a + b) / 2;
10263 int d = entries[i].from - from;
10265 if (d == 0)
10267 entries[i].to = to;
10268 return;
10270 if (d < 0)
10271 a = i + 1;
10272 else
10273 b = i;
10276 if (ga_grow(&langmap_mapga, 1) != OK)
10277 return; /* out of memory */
10279 /* insert new entry at position "a" */
10280 entries = (langmap_entry_T *)(langmap_mapga.ga_data) + a;
10281 mch_memmove(entries + 1, entries,
10282 (langmap_mapga.ga_len - a) * sizeof(langmap_entry_T));
10283 ++langmap_mapga.ga_len;
10284 entries[0].from = from;
10285 entries[0].to = to;
10289 * Apply 'langmap' to multi-byte character "c" and return the result.
10292 langmap_adjust_mb(c)
10293 int c;
10295 langmap_entry_T *entries = (langmap_entry_T *)(langmap_mapga.ga_data);
10296 int a = 0;
10297 int b = langmap_mapga.ga_len;
10299 while (a != b)
10301 int i = (a + b) / 2;
10302 int d = entries[i].from - c;
10304 if (d == 0)
10305 return entries[i].to; /* found matching entry */
10306 if (d < 0)
10307 a = i + 1;
10308 else
10309 b = i;
10311 return c; /* no entry found, return "c" unmodified */
10313 # endif
10315 static void
10316 langmap_init()
10318 int i;
10320 for (i = 0; i < 256; i++)
10321 langmap_mapchar[i] = i; /* we init with a one-to-one map */
10322 # ifdef FEAT_MBYTE
10323 ga_init2(&langmap_mapga, sizeof(langmap_entry_T), 8);
10324 # endif
10328 * Called when langmap option is set; the language map can be
10329 * changed at any time!
10331 static void
10332 langmap_set()
10334 char_u *p;
10335 char_u *p2;
10336 int from, to;
10338 #ifdef FEAT_MBYTE
10339 ga_clear(&langmap_mapga); /* clear the previous map first */
10340 #endif
10341 langmap_init(); /* back to one-to-one map */
10343 for (p = p_langmap; p[0] != NUL; )
10345 for (p2 = p; p2[0] != NUL && p2[0] != ',' && p2[0] != ';';
10346 mb_ptr_adv(p2))
10348 if (p2[0] == '\\' && p2[1] != NUL)
10349 ++p2;
10351 if (p2[0] == ';')
10352 ++p2; /* abcd;ABCD form, p2 points to A */
10353 else
10354 p2 = NULL; /* aAbBcCdD form, p2 is NULL */
10355 while (p[0])
10357 if (p[0] == '\\' && p[1] != NUL)
10358 ++p;
10359 #ifdef FEAT_MBYTE
10360 from = (*mb_ptr2char)(p);
10361 #else
10362 from = p[0];
10363 #endif
10364 if (p2 == NULL)
10366 mb_ptr_adv(p);
10367 if (p[0] == '\\')
10368 ++p;
10369 #ifdef FEAT_MBYTE
10370 to = (*mb_ptr2char)(p);
10371 #else
10372 to = p[0];
10373 #endif
10375 else
10377 if (p2[0] == '\\')
10378 ++p2;
10379 #ifdef FEAT_MBYTE
10380 to = (*mb_ptr2char)(p2);
10381 #else
10382 to = p2[0];
10383 #endif
10385 if (to == NUL)
10387 EMSG2(_("E357: 'langmap': Matching character missing for %s"),
10388 transchar(from));
10389 return;
10392 #ifdef FEAT_MBYTE
10393 if (from >= 256)
10394 langmap_set_entry(from, to);
10395 else
10396 #endif
10397 langmap_mapchar[from & 255] = to;
10399 /* Advance to next pair */
10400 mb_ptr_adv(p);
10401 if (p2 == NULL)
10403 if (p[0] == ',')
10405 ++p;
10406 break;
10409 else
10411 mb_ptr_adv(p2);
10412 if (*p == ';')
10414 p = p2;
10415 if (p[0] != NUL)
10417 if (p[0] != ',')
10419 EMSG2(_("E358: 'langmap': Extra characters after semicolon: %s"), p);
10420 return;
10422 ++p;
10424 break;
10430 #endif
10433 * Return TRUE if format option 'x' is in effect.
10434 * Take care of no formatting when 'paste' is set.
10437 has_format_option(x)
10438 int x;
10440 if (p_paste)
10441 return FALSE;
10442 return (vim_strchr(curbuf->b_p_fo, x) != NULL);
10446 * Return TRUE if "x" is present in 'shortmess' option, or
10447 * 'shortmess' contains 'a' and "x" is present in SHM_A.
10450 shortmess(x)
10451 int x;
10453 return ( vim_strchr(p_shm, x) != NULL
10454 || (vim_strchr(p_shm, 'a') != NULL
10455 && vim_strchr((char_u *)SHM_A, x) != NULL));
10459 * paste_option_changed() - Called after p_paste was set or reset.
10461 static void
10462 paste_option_changed()
10464 static int old_p_paste = FALSE;
10465 static int save_sm = 0;
10466 #ifdef FEAT_CMDL_INFO
10467 static int save_ru = 0;
10468 #endif
10469 #ifdef FEAT_RIGHTLEFT
10470 static int save_ri = 0;
10471 static int save_hkmap = 0;
10472 #endif
10473 buf_T *buf;
10475 if (p_paste)
10478 * Paste switched from off to on.
10479 * Save the current values, so they can be restored later.
10481 if (!old_p_paste)
10483 /* save options for each buffer */
10484 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10486 buf->b_p_tw_nopaste = buf->b_p_tw;
10487 buf->b_p_wm_nopaste = buf->b_p_wm;
10488 buf->b_p_sts_nopaste = buf->b_p_sts;
10489 buf->b_p_ai_nopaste = buf->b_p_ai;
10492 /* save global options */
10493 save_sm = p_sm;
10494 #ifdef FEAT_CMDL_INFO
10495 save_ru = p_ru;
10496 #endif
10497 #ifdef FEAT_RIGHTLEFT
10498 save_ri = p_ri;
10499 save_hkmap = p_hkmap;
10500 #endif
10501 /* save global values for local buffer options */
10502 p_tw_nopaste = p_tw;
10503 p_wm_nopaste = p_wm;
10504 p_sts_nopaste = p_sts;
10505 p_ai_nopaste = p_ai;
10509 * Always set the option values, also when 'paste' is set when it is
10510 * already on.
10512 /* set options for each buffer */
10513 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10515 buf->b_p_tw = 0; /* textwidth is 0 */
10516 buf->b_p_wm = 0; /* wrapmargin is 0 */
10517 buf->b_p_sts = 0; /* softtabstop is 0 */
10518 buf->b_p_ai = 0; /* no auto-indent */
10521 /* set global options */
10522 p_sm = 0; /* no showmatch */
10523 #ifdef FEAT_CMDL_INFO
10524 # ifdef FEAT_WINDOWS
10525 if (p_ru)
10526 status_redraw_all(); /* redraw to remove the ruler */
10527 # endif
10528 p_ru = 0; /* no ruler */
10529 #endif
10530 #ifdef FEAT_RIGHTLEFT
10531 p_ri = 0; /* no reverse insert */
10532 p_hkmap = 0; /* no Hebrew keyboard */
10533 #endif
10534 /* set global values for local buffer options */
10535 p_tw = 0;
10536 p_wm = 0;
10537 p_sts = 0;
10538 p_ai = 0;
10542 * Paste switched from on to off: Restore saved values.
10544 else if (old_p_paste)
10546 /* restore options for each buffer */
10547 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10549 buf->b_p_tw = buf->b_p_tw_nopaste;
10550 buf->b_p_wm = buf->b_p_wm_nopaste;
10551 buf->b_p_sts = buf->b_p_sts_nopaste;
10552 buf->b_p_ai = buf->b_p_ai_nopaste;
10555 /* restore global options */
10556 p_sm = save_sm;
10557 #ifdef FEAT_CMDL_INFO
10558 # ifdef FEAT_WINDOWS
10559 if (p_ru != save_ru)
10560 status_redraw_all(); /* redraw to draw the ruler */
10561 # endif
10562 p_ru = save_ru;
10563 #endif
10564 #ifdef FEAT_RIGHTLEFT
10565 p_ri = save_ri;
10566 p_hkmap = save_hkmap;
10567 #endif
10568 /* set global values for local buffer options */
10569 p_tw = p_tw_nopaste;
10570 p_wm = p_wm_nopaste;
10571 p_sts = p_sts_nopaste;
10572 p_ai = p_ai_nopaste;
10575 old_p_paste = p_paste;
10579 * vimrc_found() - Called when a ".vimrc" or "VIMINIT" has been found.
10581 * Reset 'compatible' and set the values for options that didn't get set yet
10582 * to the Vim defaults.
10583 * Don't do this if the 'compatible' option has been set or reset before.
10584 * When "fname" is not NULL, use it to set $"envname" when it wasn't set yet.
10586 void
10587 vimrc_found(fname, envname)
10588 char_u *fname;
10589 char_u *envname;
10591 int opt_idx;
10592 int dofree = FALSE;
10593 char_u *p;
10595 if (!option_was_set((char_u *)"cp"))
10597 p_cp = FALSE;
10598 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
10599 if (!(options[opt_idx].flags & (P_WAS_SET|P_VI_DEF)))
10600 set_option_default(opt_idx, OPT_FREE, FALSE);
10601 didset_options();
10604 if (fname != NULL)
10606 p = vim_getenv(envname, &dofree);
10607 if (p == NULL)
10609 /* Set $MYVIMRC to the first vimrc file found. */
10610 p = FullName_save(fname, FALSE);
10611 if (p != NULL)
10613 vim_setenv(envname, p);
10614 vim_free(p);
10617 else if (dofree)
10618 vim_free(p);
10623 * Set 'compatible' on or off. Called for "-C" and "-N" command line arg.
10625 void
10626 change_compatible(on)
10627 int on;
10629 int opt_idx;
10631 if (p_cp != on)
10633 p_cp = on;
10634 compatible_set();
10636 opt_idx = findoption((char_u *)"cp");
10637 if (opt_idx >= 0)
10638 options[opt_idx].flags |= P_WAS_SET;
10642 * Return TRUE when option "name" has been set.
10645 option_was_set(name)
10646 char_u *name;
10648 int idx;
10650 idx = findoption(name);
10651 if (idx < 0) /* unknown option */
10652 return FALSE;
10653 if (options[idx].flags & P_WAS_SET)
10654 return TRUE;
10655 return FALSE;
10659 * compatible_set() - Called when 'compatible' has been set or unset.
10661 * When 'compatible' set: Set all relevant options (those that have the P_VIM)
10662 * flag) to a Vi compatible value.
10663 * When 'compatible' is unset: Set all options that have a different default
10664 * for Vim (without the P_VI_DEF flag) to that default.
10666 static void
10667 compatible_set()
10669 int opt_idx;
10671 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
10672 if ( ((options[opt_idx].flags & P_VIM) && p_cp)
10673 || (!(options[opt_idx].flags & P_VI_DEF) && !p_cp))
10674 set_option_default(opt_idx, OPT_FREE, p_cp);
10675 didset_options();
10678 #ifdef FEAT_LINEBREAK
10680 # if defined(__BORLANDC__) && (__BORLANDC__ < 0x500)
10681 /* Borland C++ screws up loop optimisation here (negri) */
10682 #pragma option -O-l
10683 # endif
10686 * fill_breakat_flags() -- called when 'breakat' changes value.
10688 static void
10689 fill_breakat_flags()
10691 char_u *p;
10692 int i;
10694 for (i = 0; i < 256; i++)
10695 breakat_flags[i] = FALSE;
10697 if (p_breakat != NULL)
10698 for (p = p_breakat; *p; p++)
10699 breakat_flags[*p] = TRUE;
10702 # if defined(__BORLANDC__) && (__BORLANDC__ < 0x500)
10703 #pragma option -O.l
10704 # endif
10706 #endif
10709 * Check an option that can be a range of string values.
10711 * Return OK for correct value, FAIL otherwise.
10712 * Empty is always OK.
10714 static int
10715 check_opt_strings(val, values, list)
10716 char_u *val;
10717 char **values;
10718 int list; /* when TRUE: accept a list of values */
10720 return opt_strings_flags(val, values, NULL, list);
10724 * Handle an option that can be a range of string values.
10725 * Set a flag in "*flagp" for each string present.
10727 * Return OK for correct value, FAIL otherwise.
10728 * Empty is always OK.
10730 static int
10731 opt_strings_flags(val, values, flagp, list)
10732 char_u *val; /* new value */
10733 char **values; /* array of valid string values */
10734 unsigned *flagp;
10735 int list; /* when TRUE: accept a list of values */
10737 int i;
10738 int len;
10739 unsigned new_flags = 0;
10741 while (*val)
10743 for (i = 0; ; ++i)
10745 if (values[i] == NULL) /* val not found in values[] */
10746 return FAIL;
10748 len = (int)STRLEN(values[i]);
10749 if (STRNCMP(values[i], val, len) == 0
10750 && ((list && val[len] == ',') || val[len] == NUL))
10752 val += len + (val[len] == ',');
10753 new_flags |= (1 << i);
10754 break; /* check next item in val list */
10758 if (flagp != NULL)
10759 *flagp = new_flags;
10761 return OK;
10765 * Read the 'wildmode' option, fill wim_flags[].
10767 static int
10768 check_opt_wim()
10770 char_u new_wim_flags[4];
10771 char_u *p;
10772 int i;
10773 int idx = 0;
10775 for (i = 0; i < 4; ++i)
10776 new_wim_flags[i] = 0;
10778 for (p = p_wim; *p; ++p)
10780 for (i = 0; ASCII_ISALPHA(p[i]); ++i)
10782 if (p[i] != NUL && p[i] != ',' && p[i] != ':')
10783 return FAIL;
10784 if (i == 7 && STRNCMP(p, "longest", 7) == 0)
10785 new_wim_flags[idx] |= WIM_LONGEST;
10786 else if (i == 4 && STRNCMP(p, "full", 4) == 0)
10787 new_wim_flags[idx] |= WIM_FULL;
10788 else if (i == 4 && STRNCMP(p, "list", 4) == 0)
10789 new_wim_flags[idx] |= WIM_LIST;
10790 else
10791 return FAIL;
10792 p += i;
10793 if (*p == NUL)
10794 break;
10795 if (*p == ',')
10797 if (idx == 3)
10798 return FAIL;
10799 ++idx;
10803 /* fill remaining entries with last flag */
10804 while (idx < 3)
10806 new_wim_flags[idx + 1] = new_wim_flags[idx];
10807 ++idx;
10810 /* only when there are no errors, wim_flags[] is changed */
10811 for (i = 0; i < 4; ++i)
10812 wim_flags[i] = new_wim_flags[i];
10813 return OK;
10817 * Check if backspacing over something is allowed.
10820 can_bs(what)
10821 int what; /* BS_INDENT, BS_EOL or BS_START */
10823 switch (*p_bs)
10825 case '2': return TRUE;
10826 case '1': return (what != BS_START);
10827 case '0': return FALSE;
10829 return vim_strchr(p_bs, what) != NULL;
10833 * Save the current values of 'fileformat' and 'fileencoding', so that we know
10834 * the file must be considered changed when the value is different.
10836 void
10837 save_file_ff(buf)
10838 buf_T *buf;
10840 buf->b_start_ffc = *buf->b_p_ff;
10841 buf->b_start_eol = buf->b_p_eol;
10842 #ifdef FEAT_MBYTE
10843 buf->b_start_bomb = buf->b_p_bomb;
10845 /* Only use free/alloc when necessary, they take time. */
10846 if (buf->b_start_fenc == NULL
10847 || STRCMP(buf->b_start_fenc, buf->b_p_fenc) != 0)
10849 vim_free(buf->b_start_fenc);
10850 buf->b_start_fenc = vim_strsave(buf->b_p_fenc);
10852 #endif
10856 * Return TRUE if 'fileformat' and/or 'fileencoding' has a different value
10857 * from when editing started (save_file_ff() called).
10858 * Also when 'endofline' was changed and 'binary' is set, or when 'bomb' was
10859 * changed and 'binary' is not set.
10860 * Don't consider a new, empty buffer to be changed.
10863 file_ff_differs(buf)
10864 buf_T *buf;
10866 /* In a buffer that was never loaded the options are not valid. */
10867 if (buf->b_flags & BF_NEVERLOADED)
10868 return FALSE;
10869 if ((buf->b_flags & BF_NEW)
10870 && buf->b_ml.ml_line_count == 1
10871 && *ml_get_buf(buf, (linenr_T)1, FALSE) == NUL)
10872 return FALSE;
10873 if (buf->b_start_ffc != *buf->b_p_ff)
10874 return TRUE;
10875 if (buf->b_p_bin && buf->b_start_eol != buf->b_p_eol)
10876 return TRUE;
10877 #ifdef FEAT_MBYTE
10878 if (!buf->b_p_bin && buf->b_start_bomb != buf->b_p_bomb)
10879 return TRUE;
10880 if (buf->b_start_fenc == NULL)
10881 return (*buf->b_p_fenc != NUL);
10882 return (STRCMP(buf->b_start_fenc, buf->b_p_fenc) != 0);
10883 #else
10884 return FALSE;
10885 #endif
10889 * return OK if "p" is a valid fileformat name, FAIL otherwise.
10892 check_ff_value(p)
10893 char_u *p;
10895 return check_opt_strings(p, p_ff_values, FALSE);