Merge branch 'vim-with-runtime' into feat/rel-line-numbers
[vim_extended.git] / src / option.c
blobf59ee224fc6333102643dd677470e64e0b7af7cc
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 free_string_option() when
408 assigning new value. Not set if default is
409 the same. */
410 #define P_EXPAND 0x10 /* environment expansion. NOTE: P_EXPAND can
411 never be used for local or hidden options! */
412 #define P_NODEFAULT 0x40 /* don't set to default value */
413 #define P_DEF_ALLOCED 0x80 /* default value is in allocated memory, must
414 use vim_free() when assigning new value */
415 #define P_WAS_SET 0x100 /* option has been set/reset */
416 #define P_NO_MKRC 0x200 /* don't include in :mkvimrc output */
417 #define P_VI_DEF 0x400 /* Use Vi default for Vim */
418 #define P_VIM 0x800 /* Vim option, reset when 'cp' set */
420 /* when option changed, what to display: */
421 #define P_RSTAT 0x1000 /* redraw status lines */
422 #define P_RWIN 0x2000 /* redraw current window */
423 #define P_RBUF 0x4000 /* redraw current buffer */
424 #define P_RALL 0x6000 /* redraw all windows */
425 #define P_RCLR 0x7000 /* clear and redraw all */
427 #define P_COMMA 0x8000 /* comma separated list */
428 #define P_NODUP 0x10000L/* don't allow duplicate strings */
429 #define P_FLAGLIST 0x20000L/* list of single-char flags */
431 #define P_SECURE 0x40000L/* cannot change in modeline or secure mode */
432 #define P_GETTEXT 0x80000L/* expand default value with _() */
433 #define P_NOGLOB 0x100000L/* do not use local value for global vimrc */
434 #define P_NFNAME 0x200000L/* only normal file name chars allowed */
435 #define P_INSECURE 0x400000L/* option was set from a modeline */
436 #define P_PRI_MKRC 0x800000L/* priority for :mkvimrc (setting option has
437 side effects) */
439 #define ISK_LATIN1 (char_u *)"@,48-57,_,192-255"
441 /* 'isprint' for latin1 is also used for MS-Windows cp1252, where 0x80 is used
442 * for the currency sign. */
443 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
444 # define ISP_LATIN1 (char_u *)"@,~-255"
445 #else
446 # define ISP_LATIN1 (char_u *)"@,161-255"
447 #endif
449 /* The 16 bit MS-DOS version is low on space, make the string as short as
450 * possible when compiling with few features. */
451 #if defined(FEAT_DIFF) || defined(FEAT_FOLDING) || defined(FEAT_SPELL) \
452 || defined(FEAT_VERTSPLIT) || defined(FEAT_CLIPBOARD) \
453 || defined(FEAT_INS_EXPAND) || defined(FEAT_SYN_HL)
454 # 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"
455 #else
456 # 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"
457 #endif
460 * options[] is initialized here.
461 * The order of the options MUST be alphabetic for ":set all" and findoption().
462 * All option names MUST start with a lowercase letter (for findoption()).
463 * Exception: "t_" options are at the end.
464 * The options with a NULL variable are 'hidden': a set command for them is
465 * ignored and they are not printed.
467 static struct vimoption
468 #ifdef FEAT_GUI_W16
469 _far
470 #endif
471 options[] =
473 {"aleph", "al", P_NUM|P_VI_DEF,
474 #ifdef FEAT_RIGHTLEFT
475 (char_u *)&p_aleph, PV_NONE,
476 #else
477 (char_u *)NULL, PV_NONE,
478 #endif
480 #if (defined(MSDOS) || defined(WIN3264) || defined(OS2)) && !defined(FEAT_GUI_W32)
481 (char_u *)128L,
482 #else
483 (char_u *)224L,
484 #endif
485 (char_u *)0L} SCRIPTID_INIT},
486 {"antialias", "anti", P_BOOL|P_VI_DEF|P_VIM|P_RCLR,
487 #if defined(FEAT_GUI) && defined(MACOS_X)
488 (char_u *)&p_antialias, PV_NONE,
489 {(char_u *)FALSE, (char_u *)FALSE}
490 #else
491 (char_u *)NULL, PV_NONE,
492 {(char_u *)FALSE, (char_u *)FALSE}
493 #endif
494 SCRIPTID_INIT},
495 {"arabic", "arab", P_BOOL|P_VI_DEF|P_VIM,
496 #ifdef FEAT_ARABIC
497 (char_u *)VAR_WIN, PV_ARAB,
498 #else
499 (char_u *)NULL, PV_NONE,
500 #endif
501 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
502 {"arabicshape", "arshape", P_BOOL|P_VI_DEF|P_VIM|P_RCLR,
503 #ifdef FEAT_ARABIC
504 (char_u *)&p_arshape, PV_NONE,
505 #else
506 (char_u *)NULL, PV_NONE,
507 #endif
508 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
509 {"allowrevins", "ari", P_BOOL|P_VI_DEF|P_VIM,
510 #ifdef FEAT_RIGHTLEFT
511 (char_u *)&p_ari, PV_NONE,
512 #else
513 (char_u *)NULL, PV_NONE,
514 #endif
515 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
516 {"altkeymap", "akm", P_BOOL|P_VI_DEF,
517 #ifdef FEAT_FKMAP
518 (char_u *)&p_altkeymap, PV_NONE,
519 #else
520 (char_u *)NULL, PV_NONE,
521 #endif
522 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
523 {"ambiwidth", "ambw", P_STRING|P_VI_DEF|P_RCLR,
524 #if defined(FEAT_MBYTE)
525 (char_u *)&p_ambw, PV_NONE,
526 {(char_u *)"single", (char_u *)0L}
527 #else
528 (char_u *)NULL, PV_NONE,
529 {(char_u *)0L, (char_u *)0L}
530 #endif
531 SCRIPTID_INIT},
532 #ifdef FEAT_AUTOCHDIR
533 {"autochdir", "acd", P_BOOL|P_VI_DEF,
534 (char_u *)&p_acd, PV_NONE,
535 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
536 #endif
537 {"autoindent", "ai", P_BOOL|P_VI_DEF,
538 (char_u *)&p_ai, PV_AI,
539 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
540 {"autoprint", "ap", P_BOOL|P_VI_DEF,
541 (char_u *)NULL, PV_NONE,
542 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
543 {"autoread", "ar", P_BOOL|P_VI_DEF,
544 (char_u *)&p_ar, PV_AR,
545 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
546 {"autowrite", "aw", P_BOOL|P_VI_DEF,
547 (char_u *)&p_aw, PV_NONE,
548 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
549 {"autowriteall","awa", P_BOOL|P_VI_DEF,
550 (char_u *)&p_awa, PV_NONE,
551 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
552 {"background", "bg", P_STRING|P_VI_DEF|P_RCLR,
553 (char_u *)&p_bg, PV_NONE,
555 #if (defined(MSDOS) || defined(OS2) || defined(WIN3264)) && !defined(FEAT_GUI)
556 (char_u *)"dark",
557 #else
558 (char_u *)"light",
559 #endif
560 (char_u *)0L} SCRIPTID_INIT},
561 {"backspace", "bs", P_STRING|P_VI_DEF|P_VIM|P_COMMA|P_NODUP,
562 (char_u *)&p_bs, PV_NONE,
563 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
564 {"backup", "bk", P_BOOL|P_VI_DEF|P_VIM,
565 (char_u *)&p_bk, PV_NONE,
566 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
567 {"backupcopy", "bkc", P_STRING|P_VIM|P_COMMA|P_NODUP,
568 (char_u *)&p_bkc, PV_NONE,
569 #ifdef UNIX
570 {(char_u *)"yes", (char_u *)"auto"}
571 #else
572 {(char_u *)"auto", (char_u *)"auto"}
573 #endif
574 SCRIPTID_INIT},
575 {"backupdir", "bdir", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP|P_SECURE,
576 (char_u *)&p_bdir, PV_NONE,
577 {(char_u *)DFLT_BDIR, (char_u *)0L} SCRIPTID_INIT},
578 {"backupext", "bex", P_STRING|P_VI_DEF|P_NFNAME,
579 (char_u *)&p_bex, PV_NONE,
581 #ifdef VMS
582 (char_u *)"_",
583 #else
584 (char_u *)"~",
585 #endif
586 (char_u *)0L} SCRIPTID_INIT},
587 {"backupskip", "bsk", P_STRING|P_VI_DEF|P_COMMA,
588 #ifdef FEAT_WILDIGN
589 (char_u *)&p_bsk, PV_NONE,
590 {(char_u *)"", (char_u *)0L}
591 #else
592 (char_u *)NULL, PV_NONE,
593 {(char_u *)0L, (char_u *)0L}
594 #endif
595 SCRIPTID_INIT},
596 #ifdef FEAT_BEVAL
597 {"balloondelay","bdlay",P_NUM|P_VI_DEF,
598 (char_u *)&p_bdlay, PV_NONE,
599 {(char_u *)600L, (char_u *)0L} SCRIPTID_INIT},
600 {"ballooneval", "beval",P_BOOL|P_VI_DEF|P_NO_MKRC,
601 (char_u *)&p_beval, PV_NONE,
602 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
603 # ifdef FEAT_EVAL
604 {"balloonexpr", "bexpr", P_STRING|P_ALLOCED|P_VI_DEF|P_VIM,
605 (char_u *)&p_bexpr, PV_BEXPR,
606 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
607 # endif
608 #endif
609 {"beautify", "bf", P_BOOL|P_VI_DEF,
610 (char_u *)NULL, PV_NONE,
611 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
612 {"binary", "bin", P_BOOL|P_VI_DEF|P_RSTAT,
613 (char_u *)&p_bin, PV_BIN,
614 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
615 {"bioskey", "biosk",P_BOOL|P_VI_DEF,
616 #ifdef MSDOS
617 (char_u *)&p_biosk, PV_NONE,
618 #else
619 (char_u *)NULL, PV_NONE,
620 #endif
621 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
622 {"bomb", NULL, P_BOOL|P_NO_MKRC|P_VI_DEF|P_RSTAT,
623 #ifdef FEAT_MBYTE
624 (char_u *)&p_bomb, PV_BOMB,
625 #else
626 (char_u *)NULL, PV_NONE,
627 #endif
628 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
629 {"breakat", "brk", P_STRING|P_VI_DEF|P_RALL|P_FLAGLIST,
630 #ifdef FEAT_LINEBREAK
631 (char_u *)&p_breakat, PV_NONE,
632 {(char_u *)" \t!@*-+;:,./?", (char_u *)0L}
633 #else
634 (char_u *)NULL, PV_NONE,
635 {(char_u *)0L, (char_u *)0L}
636 #endif
637 SCRIPTID_INIT},
638 {"browsedir", "bsdir",P_STRING|P_VI_DEF,
639 #ifdef FEAT_BROWSE
640 (char_u *)&p_bsdir, PV_NONE,
641 {(char_u *)"last", (char_u *)0L}
642 #else
643 (char_u *)NULL, PV_NONE,
644 {(char_u *)0L, (char_u *)0L}
645 #endif
646 SCRIPTID_INIT},
647 {"bufhidden", "bh", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB,
648 #if defined(FEAT_QUICKFIX)
649 (char_u *)&p_bh, PV_BH,
650 {(char_u *)"", (char_u *)0L}
651 #else
652 (char_u *)NULL, PV_NONE,
653 {(char_u *)0L, (char_u *)0L}
654 #endif
655 SCRIPTID_INIT},
656 {"buflisted", "bl", P_BOOL|P_VI_DEF|P_NOGLOB,
657 (char_u *)&p_bl, PV_BL,
658 {(char_u *)1L, (char_u *)0L}
659 SCRIPTID_INIT},
660 {"buftype", "bt", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB,
661 #if defined(FEAT_QUICKFIX)
662 (char_u *)&p_bt, PV_BT,
663 {(char_u *)"", (char_u *)0L}
664 #else
665 (char_u *)NULL, PV_NONE,
666 {(char_u *)0L, (char_u *)0L}
667 #endif
668 SCRIPTID_INIT},
669 {"casemap", "cmp", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
670 #ifdef FEAT_MBYTE
671 (char_u *)&p_cmp, PV_NONE,
672 {(char_u *)"internal,keepascii", (char_u *)0L}
673 #else
674 (char_u *)NULL, PV_NONE,
675 {(char_u *)0L, (char_u *)0L}
676 #endif
677 SCRIPTID_INIT},
678 {"cdpath", "cd", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
679 #ifdef FEAT_SEARCHPATH
680 (char_u *)&p_cdpath, PV_NONE,
681 {(char_u *)",,", (char_u *)0L}
682 #else
683 (char_u *)NULL, PV_NONE,
684 {(char_u *)0L, (char_u *)0L}
685 #endif
686 SCRIPTID_INIT},
687 {"cedit", NULL, P_STRING,
688 #ifdef FEAT_CMDWIN
689 (char_u *)&p_cedit, PV_NONE,
690 {(char_u *)"", (char_u *)CTRL_F_STR}
691 #else
692 (char_u *)NULL, PV_NONE,
693 {(char_u *)0L, (char_u *)0L}
694 #endif
695 SCRIPTID_INIT},
696 {"charconvert", "ccv", P_STRING|P_VI_DEF|P_SECURE,
697 #if defined(FEAT_MBYTE) && defined(FEAT_EVAL)
698 (char_u *)&p_ccv, PV_NONE,
699 {(char_u *)"", (char_u *)0L}
700 #else
701 (char_u *)NULL, PV_NONE,
702 {(char_u *)0L, (char_u *)0L}
703 #endif
704 SCRIPTID_INIT},
705 {"cindent", "cin", P_BOOL|P_VI_DEF|P_VIM,
706 #ifdef FEAT_CINDENT
707 (char_u *)&p_cin, PV_CIN,
708 #else
709 (char_u *)NULL, PV_NONE,
710 #endif
711 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
712 {"cinkeys", "cink", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
713 #ifdef FEAT_CINDENT
714 (char_u *)&p_cink, PV_CINK,
715 {(char_u *)"0{,0},0),:,0#,!^F,o,O,e", (char_u *)0L}
716 #else
717 (char_u *)NULL, PV_NONE,
718 {(char_u *)0L, (char_u *)0L}
719 #endif
720 SCRIPTID_INIT},
721 {"cinoptions", "cino", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
722 #ifdef FEAT_CINDENT
723 (char_u *)&p_cino, PV_CINO,
724 #else
725 (char_u *)NULL, PV_NONE,
726 #endif
727 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
728 {"cinwords", "cinw", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
729 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
730 (char_u *)&p_cinw, PV_CINW,
731 {(char_u *)"if,else,while,do,for,switch",
732 (char_u *)0L}
733 #else
734 (char_u *)NULL, PV_NONE,
735 {(char_u *)0L, (char_u *)0L}
736 #endif
737 SCRIPTID_INIT},
738 {"clipboard", "cb", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
739 #ifdef FEAT_CLIPBOARD
740 (char_u *)&p_cb, PV_NONE,
741 # ifdef FEAT_XCLIPBOARD
742 {(char_u *)"autoselect,exclude:cons\\|linux",
743 (char_u *)0L}
744 # else
745 {(char_u *)"", (char_u *)0L}
746 # endif
747 #else
748 (char_u *)NULL, PV_NONE,
749 {(char_u *)"", (char_u *)0L}
750 #endif
751 SCRIPTID_INIT},
752 {"cmdheight", "ch", P_NUM|P_VI_DEF|P_RALL,
753 (char_u *)&p_ch, PV_NONE,
754 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
755 {"cmdwinheight", "cwh", P_NUM|P_VI_DEF,
756 #ifdef FEAT_CMDWIN
757 (char_u *)&p_cwh, PV_NONE,
758 #else
759 (char_u *)NULL, PV_NONE,
760 #endif
761 {(char_u *)7L, (char_u *)0L} SCRIPTID_INIT},
762 {"columns", "co", P_NUM|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RCLR,
763 (char_u *)&Columns, PV_NONE,
764 {(char_u *)80L, (char_u *)0L} SCRIPTID_INIT},
765 {"comments", "com", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
766 #ifdef FEAT_COMMENTS
767 (char_u *)&p_com, PV_COM,
768 {(char_u *)"s1:/*,mb:*,ex:*/,://,b:#,:%,:XCOMM,n:>,fb:-",
769 (char_u *)0L}
770 #else
771 (char_u *)NULL, PV_NONE,
772 {(char_u *)0L, (char_u *)0L}
773 #endif
774 SCRIPTID_INIT},
775 {"commentstring", "cms", P_STRING|P_ALLOCED|P_VI_DEF,
776 #ifdef FEAT_FOLDING
777 (char_u *)&p_cms, PV_CMS,
778 {(char_u *)"/*%s*/", (char_u *)0L}
779 #else
780 (char_u *)NULL, PV_NONE,
781 {(char_u *)0L, (char_u *)0L}
782 #endif
783 SCRIPTID_INIT},
784 /* P_PRI_MKRC isn't needed here, optval_default()
785 * always returns TRUE for 'compatible' */
786 {"compatible", "cp", P_BOOL|P_RALL,
787 (char_u *)&p_cp, PV_NONE,
788 {(char_u *)TRUE, (char_u *)FALSE} SCRIPTID_INIT},
789 {"complete", "cpt", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
790 #ifdef FEAT_INS_EXPAND
791 (char_u *)&p_cpt, PV_CPT,
792 {(char_u *)".,w,b,u,t,i", (char_u *)0L}
793 #else
794 (char_u *)NULL, PV_NONE,
795 {(char_u *)0L, (char_u *)0L}
796 #endif
797 SCRIPTID_INIT},
798 {"completefunc", "cfu", P_STRING|P_ALLOCED|P_VI_DEF|P_SECURE,
799 #ifdef FEAT_COMPL_FUNC
800 (char_u *)&p_cfu, PV_CFU,
801 {(char_u *)"", (char_u *)0L}
802 #else
803 (char_u *)NULL, PV_NONE,
804 {(char_u *)0L, (char_u *)0L}
805 #endif
806 SCRIPTID_INIT},
807 {"completeopt", "cot", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
808 #ifdef FEAT_INS_EXPAND
809 (char_u *)&p_cot, PV_NONE,
810 {(char_u *)"menu,preview", (char_u *)0L}
811 #else
812 (char_u *)NULL, PV_NONE,
813 {(char_u *)0L, (char_u *)0L}
814 #endif
815 SCRIPTID_INIT},
816 {"confirm", "cf", P_BOOL|P_VI_DEF,
817 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
818 (char_u *)&p_confirm, PV_NONE,
819 #else
820 (char_u *)NULL, PV_NONE,
821 #endif
822 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
823 {"conskey", "consk",P_BOOL|P_VI_DEF,
824 #ifdef MSDOS
825 (char_u *)&p_consk, PV_NONE,
826 #else
827 (char_u *)NULL, PV_NONE,
828 #endif
829 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
830 {"copyindent", "ci", P_BOOL|P_VI_DEF|P_VIM,
831 (char_u *)&p_ci, PV_CI,
832 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
833 {"cpoptions", "cpo", P_STRING|P_VIM|P_RALL|P_FLAGLIST,
834 (char_u *)&p_cpo, PV_NONE,
835 {(char_u *)CPO_VI, (char_u *)CPO_VIM}
836 SCRIPTID_INIT},
837 {"cscopepathcomp", "cspc", P_NUM|P_VI_DEF|P_VIM,
838 #ifdef FEAT_CSCOPE
839 (char_u *)&p_cspc, PV_NONE,
840 #else
841 (char_u *)NULL, PV_NONE,
842 #endif
843 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
844 {"cscopeprg", "csprg", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
845 #ifdef FEAT_CSCOPE
846 (char_u *)&p_csprg, PV_NONE,
847 {(char_u *)"cscope", (char_u *)0L}
848 #else
849 (char_u *)NULL, PV_NONE,
850 {(char_u *)0L, (char_u *)0L}
851 #endif
852 SCRIPTID_INIT},
853 {"cscopequickfix", "csqf", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
854 #if defined(FEAT_CSCOPE) && defined(FEAT_QUICKFIX)
855 (char_u *)&p_csqf, PV_NONE,
856 {(char_u *)"", (char_u *)0L}
857 #else
858 (char_u *)NULL, PV_NONE,
859 {(char_u *)0L, (char_u *)0L}
860 #endif
861 SCRIPTID_INIT},
862 {"cscopetag", "cst", P_BOOL|P_VI_DEF|P_VIM,
863 #ifdef FEAT_CSCOPE
864 (char_u *)&p_cst, PV_NONE,
865 #else
866 (char_u *)NULL, PV_NONE,
867 #endif
868 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
869 {"cscopetagorder", "csto", P_NUM|P_VI_DEF|P_VIM,
870 #ifdef FEAT_CSCOPE
871 (char_u *)&p_csto, PV_NONE,
872 #else
873 (char_u *)NULL, PV_NONE,
874 #endif
875 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
876 {"cscopeverbose", "csverb", P_BOOL|P_VI_DEF|P_VIM,
877 #ifdef FEAT_CSCOPE
878 (char_u *)&p_csverbose, PV_NONE,
879 #else
880 (char_u *)NULL, PV_NONE,
881 #endif
882 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
883 {"cursorcolumn", "cuc", P_BOOL|P_VI_DEF|P_RWIN,
884 #ifdef FEAT_SYN_HL
885 (char_u *)VAR_WIN, PV_CUC,
886 #else
887 (char_u *)NULL, PV_NONE,
888 #endif
889 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
890 {"cursorline", "cul", P_BOOL|P_VI_DEF|P_RWIN,
891 #ifdef FEAT_SYN_HL
892 (char_u *)VAR_WIN, PV_CUL,
893 #else
894 (char_u *)NULL, PV_NONE,
895 #endif
896 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
897 {"debug", NULL, P_STRING|P_VI_DEF,
898 (char_u *)&p_debug, PV_NONE,
899 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
900 {"define", "def", P_STRING|P_ALLOCED|P_VI_DEF,
901 #ifdef FEAT_FIND_ID
902 (char_u *)&p_def, PV_DEF,
903 {(char_u *)"^\\s*#\\s*define", (char_u *)0L}
904 #else
905 (char_u *)NULL, PV_NONE,
906 {(char_u *)NULL, (char_u *)0L}
907 #endif
908 SCRIPTID_INIT},
909 {"delcombine", "deco", P_BOOL|P_VI_DEF|P_VIM,
910 #ifdef FEAT_MBYTE
911 (char_u *)&p_deco, PV_NONE,
912 #else
913 (char_u *)NULL, PV_NONE,
914 #endif
915 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
916 {"dictionary", "dict", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
917 #ifdef FEAT_INS_EXPAND
918 (char_u *)&p_dict, PV_DICT,
919 #else
920 (char_u *)NULL, PV_NONE,
921 #endif
922 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
923 {"diff", NULL, P_BOOL|P_VI_DEF|P_RWIN|P_NOGLOB,
924 #ifdef FEAT_DIFF
925 (char_u *)VAR_WIN, PV_DIFF,
926 #else
927 (char_u *)NULL, PV_NONE,
928 #endif
929 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
930 {"diffexpr", "dex", P_STRING|P_VI_DEF|P_SECURE,
931 #if defined(FEAT_DIFF) && defined(FEAT_EVAL)
932 (char_u *)&p_dex, PV_NONE,
933 {(char_u *)"", (char_u *)0L}
934 #else
935 (char_u *)NULL, PV_NONE,
936 {(char_u *)0L, (char_u *)0L}
937 #endif
938 SCRIPTID_INIT},
939 {"diffopt", "dip", P_STRING|P_ALLOCED|P_VI_DEF|P_RWIN|P_COMMA|P_NODUP,
940 #ifdef FEAT_DIFF
941 (char_u *)&p_dip, PV_NONE,
942 {(char_u *)"filler", (char_u *)NULL}
943 #else
944 (char_u *)NULL, PV_NONE,
945 {(char_u *)"", (char_u *)NULL}
946 #endif
947 SCRIPTID_INIT},
948 {"digraph", "dg", P_BOOL|P_VI_DEF|P_VIM,
949 #ifdef FEAT_DIGRAPHS
950 (char_u *)&p_dg, PV_NONE,
951 #else
952 (char_u *)NULL, PV_NONE,
953 #endif
954 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
955 {"directory", "dir", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP|P_SECURE,
956 (char_u *)&p_dir, PV_NONE,
957 {(char_u *)DFLT_DIR, (char_u *)0L} SCRIPTID_INIT},
958 {"display", "dy", P_STRING|P_VI_DEF|P_COMMA|P_RALL|P_NODUP,
959 (char_u *)&p_dy, PV_NONE,
960 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
961 {"eadirection", "ead", P_STRING|P_VI_DEF,
962 #ifdef FEAT_VERTSPLIT
963 (char_u *)&p_ead, PV_NONE,
964 {(char_u *)"both", (char_u *)0L}
965 #else
966 (char_u *)NULL, PV_NONE,
967 {(char_u *)NULL, (char_u *)0L}
968 #endif
969 SCRIPTID_INIT},
970 {"edcompatible","ed", P_BOOL|P_VI_DEF,
971 (char_u *)&p_ed, PV_NONE,
972 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
973 {"encoding", "enc", P_STRING|P_VI_DEF|P_RCLR,
974 #ifdef FEAT_MBYTE
975 (char_u *)&p_enc, PV_NONE,
976 {(char_u *)ENC_DFLT, (char_u *)0L}
977 #else
978 (char_u *)NULL, PV_NONE,
979 {(char_u *)0L, (char_u *)0L}
980 #endif
981 SCRIPTID_INIT},
982 {"endofline", "eol", P_BOOL|P_NO_MKRC|P_VI_DEF|P_RSTAT,
983 (char_u *)&p_eol, PV_EOL,
984 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
985 {"equalalways", "ea", P_BOOL|P_VI_DEF|P_RALL,
986 (char_u *)&p_ea, PV_NONE,
987 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
988 {"equalprg", "ep", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
989 (char_u *)&p_ep, PV_EP,
990 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
991 {"errorbells", "eb", P_BOOL|P_VI_DEF,
992 (char_u *)&p_eb, PV_NONE,
993 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
994 {"errorfile", "ef", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
995 #ifdef FEAT_QUICKFIX
996 (char_u *)&p_ef, PV_NONE,
997 {(char_u *)DFLT_ERRORFILE, (char_u *)0L}
998 #else
999 (char_u *)NULL, PV_NONE,
1000 {(char_u *)NULL, (char_u *)0L}
1001 #endif
1002 SCRIPTID_INIT},
1003 {"errorformat", "efm", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1004 #ifdef FEAT_QUICKFIX
1005 (char_u *)&p_efm, PV_EFM,
1006 {(char_u *)DFLT_EFM, (char_u *)0L}
1007 #else
1008 (char_u *)NULL, PV_NONE,
1009 {(char_u *)NULL, (char_u *)0L}
1010 #endif
1011 SCRIPTID_INIT},
1012 {"esckeys", "ek", P_BOOL|P_VIM,
1013 (char_u *)&p_ek, PV_NONE,
1014 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
1015 {"eventignore", "ei", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1016 #ifdef FEAT_AUTOCMD
1017 (char_u *)&p_ei, PV_NONE,
1018 #else
1019 (char_u *)NULL, PV_NONE,
1020 #endif
1021 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1022 {"expandtab", "et", P_BOOL|P_VI_DEF|P_VIM,
1023 (char_u *)&p_et, PV_ET,
1024 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1025 {"exrc", "ex", P_BOOL|P_VI_DEF|P_SECURE,
1026 (char_u *)&p_exrc, PV_NONE,
1027 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1028 {"fileencoding","fenc", P_STRING|P_ALLOCED|P_VI_DEF|P_RSTAT|P_RBUF|P_NO_MKRC,
1029 #ifdef FEAT_MBYTE
1030 (char_u *)&p_fenc, PV_FENC,
1031 {(char_u *)"", (char_u *)0L}
1032 #else
1033 (char_u *)NULL, PV_NONE,
1034 {(char_u *)0L, (char_u *)0L}
1035 #endif
1036 SCRIPTID_INIT},
1037 {"fileencodings","fencs", P_STRING|P_VI_DEF|P_COMMA,
1038 #ifdef FEAT_MBYTE
1039 (char_u *)&p_fencs, PV_NONE,
1040 {(char_u *)"ucs-bom", (char_u *)0L}
1041 #else
1042 (char_u *)NULL, PV_NONE,
1043 {(char_u *)0L, (char_u *)0L}
1044 #endif
1045 SCRIPTID_INIT},
1046 {"fileformat", "ff", P_STRING|P_ALLOCED|P_VI_DEF|P_RSTAT|P_NO_MKRC,
1047 (char_u *)&p_ff, PV_FF,
1048 {(char_u *)DFLT_FF, (char_u *)0L} SCRIPTID_INIT},
1049 {"fileformats", "ffs", P_STRING|P_VIM|P_COMMA|P_NODUP,
1050 (char_u *)&p_ffs, PV_NONE,
1051 {(char_u *)DFLT_FFS_VI, (char_u *)DFLT_FFS_VIM}
1052 SCRIPTID_INIT},
1053 {"filetype", "ft", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB|P_NFNAME,
1054 #ifdef FEAT_AUTOCMD
1055 (char_u *)&p_ft, PV_FT,
1056 {(char_u *)"", (char_u *)0L}
1057 #else
1058 (char_u *)NULL, PV_NONE,
1059 {(char_u *)0L, (char_u *)0L}
1060 #endif
1061 SCRIPTID_INIT},
1062 {"fillchars", "fcs", P_STRING|P_VI_DEF|P_RALL|P_COMMA|P_NODUP,
1063 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
1064 (char_u *)&p_fcs, PV_NONE,
1065 {(char_u *)"vert:|,fold:-", (char_u *)0L}
1066 #else
1067 (char_u *)NULL, PV_NONE,
1068 {(char_u *)"", (char_u *)0L}
1069 #endif
1070 SCRIPTID_INIT},
1071 {"fkmap", "fk", P_BOOL|P_VI_DEF,
1072 #ifdef FEAT_FKMAP
1073 (char_u *)&p_fkmap, PV_NONE,
1074 #else
1075 (char_u *)NULL, PV_NONE,
1076 #endif
1077 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1078 {"flash", "fl", P_BOOL|P_VI_DEF,
1079 (char_u *)NULL, PV_NONE,
1080 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1081 #ifdef FEAT_FOLDING
1082 {"foldclose", "fcl", P_STRING|P_VI_DEF|P_COMMA|P_NODUP|P_RWIN,
1083 (char_u *)&p_fcl, PV_NONE,
1084 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1085 {"foldcolumn", "fdc", P_NUM|P_VI_DEF|P_RWIN,
1086 (char_u *)VAR_WIN, PV_FDC,
1087 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1088 {"foldenable", "fen", P_BOOL|P_VI_DEF|P_RWIN,
1089 (char_u *)VAR_WIN, PV_FEN,
1090 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1091 {"foldexpr", "fde", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1092 # ifdef FEAT_EVAL
1093 (char_u *)VAR_WIN, PV_FDE,
1094 {(char_u *)"0", (char_u *)NULL}
1095 # else
1096 (char_u *)NULL, PV_NONE,
1097 {(char_u *)NULL, (char_u *)0L}
1098 # endif
1099 SCRIPTID_INIT},
1100 {"foldignore", "fdi", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1101 (char_u *)VAR_WIN, PV_FDI,
1102 {(char_u *)"#", (char_u *)NULL} SCRIPTID_INIT},
1103 {"foldlevel", "fdl", P_NUM|P_VI_DEF|P_RWIN,
1104 (char_u *)VAR_WIN, PV_FDL,
1105 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
1106 {"foldlevelstart","fdls", P_NUM|P_VI_DEF,
1107 (char_u *)&p_fdls, PV_NONE,
1108 {(char_u *)-1L, (char_u *)0L} SCRIPTID_INIT},
1109 {"foldmarker", "fmr", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|
1110 P_RWIN|P_COMMA|P_NODUP,
1111 (char_u *)VAR_WIN, PV_FMR,
1112 {(char_u *)"{{{,}}}", (char_u *)NULL}
1113 SCRIPTID_INIT},
1114 {"foldmethod", "fdm", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1115 (char_u *)VAR_WIN, PV_FDM,
1116 {(char_u *)"manual", (char_u *)NULL} SCRIPTID_INIT},
1117 {"foldminlines","fml", P_NUM|P_VI_DEF|P_RWIN,
1118 (char_u *)VAR_WIN, PV_FML,
1119 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
1120 {"foldnestmax", "fdn", P_NUM|P_VI_DEF|P_RWIN,
1121 (char_u *)VAR_WIN, PV_FDN,
1122 {(char_u *)20L, (char_u *)0L} SCRIPTID_INIT},
1123 {"foldopen", "fdo", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1124 (char_u *)&p_fdo, PV_NONE,
1125 {(char_u *)"block,hor,mark,percent,quickfix,search,tag,undo",
1126 (char_u *)0L} SCRIPTID_INIT},
1127 {"foldtext", "fdt", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1128 # ifdef FEAT_EVAL
1129 (char_u *)VAR_WIN, PV_FDT,
1130 {(char_u *)"foldtext()", (char_u *)NULL}
1131 # else
1132 (char_u *)NULL, PV_NONE,
1133 {(char_u *)NULL, (char_u *)0L}
1134 # endif
1135 SCRIPTID_INIT},
1136 #endif
1137 {"formatexpr", "fex", P_STRING|P_ALLOCED|P_VI_DEF|P_VIM,
1138 #ifdef FEAT_EVAL
1139 (char_u *)&p_fex, PV_FEX,
1140 {(char_u *)"", (char_u *)0L}
1141 #else
1142 (char_u *)NULL, PV_NONE,
1143 {(char_u *)0L, (char_u *)0L}
1144 #endif
1145 SCRIPTID_INIT},
1146 {"formatoptions","fo", P_STRING|P_ALLOCED|P_VIM|P_FLAGLIST,
1147 (char_u *)&p_fo, PV_FO,
1148 {(char_u *)DFLT_FO_VI, (char_u *)DFLT_FO_VIM}
1149 SCRIPTID_INIT},
1150 {"formatlistpat","flp", P_STRING|P_ALLOCED|P_VI_DEF,
1151 (char_u *)&p_flp, PV_FLP,
1152 {(char_u *)"^\\s*\\d\\+[\\]:.)}\\t ]\\s*",
1153 (char_u *)0L} SCRIPTID_INIT},
1154 {"formatprg", "fp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1155 (char_u *)&p_fp, PV_NONE,
1156 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1157 {"fsync", "fs", P_BOOL|P_SECURE|P_VI_DEF,
1158 #ifdef HAVE_FSYNC
1159 (char_u *)&p_fs, PV_NONE,
1160 {(char_u *)TRUE, (char_u *)0L}
1161 #else
1162 (char_u *)NULL, PV_NONE,
1163 {(char_u *)FALSE, (char_u *)0L}
1164 #endif
1165 SCRIPTID_INIT},
1166 {"gdefault", "gd", P_BOOL|P_VI_DEF|P_VIM,
1167 (char_u *)&p_gd, PV_NONE,
1168 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1169 {"graphic", "gr", P_BOOL|P_VI_DEF,
1170 (char_u *)NULL, PV_NONE,
1171 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1172 {"grepformat", "gfm", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1173 #ifdef FEAT_QUICKFIX
1174 (char_u *)&p_gefm, PV_NONE,
1175 {(char_u *)DFLT_GREPFORMAT, (char_u *)0L}
1176 #else
1177 (char_u *)NULL, PV_NONE,
1178 {(char_u *)NULL, (char_u *)0L}
1179 #endif
1180 SCRIPTID_INIT},
1181 {"grepprg", "gp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1182 #ifdef FEAT_QUICKFIX
1183 (char_u *)&p_gp, PV_GP,
1185 # ifdef WIN3264
1186 /* may be changed to "grep -n" in os_win32.c */
1187 (char_u *)"findstr /n",
1188 # else
1189 # ifdef UNIX
1190 /* Add an extra file name so that grep will always
1191 * insert a file name in the match line. */
1192 (char_u *)"grep -n $* /dev/null",
1193 # else
1194 # ifdef VMS
1195 (char_u *)"SEARCH/NUMBERS ",
1196 # else
1197 (char_u *)"grep -n ",
1198 # endif
1199 # endif
1200 # endif
1201 (char_u *)0L}
1202 #else
1203 (char_u *)NULL, PV_NONE,
1204 {(char_u *)NULL, (char_u *)0L}
1205 #endif
1206 SCRIPTID_INIT},
1207 {"guicursor", "gcr", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1208 #ifdef CURSOR_SHAPE
1209 (char_u *)&p_guicursor, PV_NONE,
1211 # ifdef FEAT_GUI
1212 (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",
1213 # else /* MSDOS or Win32 console */
1214 (char_u *)"n-v-c:block,o:hor50,i-ci:hor15,r-cr:hor30,sm:block",
1215 # endif
1216 (char_u *)0L}
1217 #else
1218 (char_u *)NULL, PV_NONE,
1219 {(char_u *)NULL, (char_u *)0L}
1220 #endif
1221 SCRIPTID_INIT},
1222 {"guifont", "gfn", P_STRING|P_VI_DEF|P_RCLR|P_COMMA|P_NODUP,
1223 #ifdef FEAT_GUI
1224 (char_u *)&p_guifont, PV_NONE,
1225 {(char_u *)"", (char_u *)0L}
1226 #else
1227 (char_u *)NULL, PV_NONE,
1228 {(char_u *)NULL, (char_u *)0L}
1229 #endif
1230 SCRIPTID_INIT},
1231 {"guifontset", "gfs", P_STRING|P_VI_DEF|P_RCLR|P_COMMA,
1232 #if defined(FEAT_GUI) && defined(FEAT_XFONTSET)
1233 (char_u *)&p_guifontset, PV_NONE,
1234 {(char_u *)"", (char_u *)0L}
1235 #else
1236 (char_u *)NULL, PV_NONE,
1237 {(char_u *)NULL, (char_u *)0L}
1238 #endif
1239 SCRIPTID_INIT},
1240 {"guifontwide", "gfw", P_STRING|P_VI_DEF|P_RCLR|P_COMMA|P_NODUP,
1241 #if defined(FEAT_GUI) && defined(FEAT_MBYTE)
1242 (char_u *)&p_guifontwide, PV_NONE,
1243 {(char_u *)"", (char_u *)0L}
1244 #else
1245 (char_u *)NULL, PV_NONE,
1246 {(char_u *)NULL, (char_u *)0L}
1247 #endif
1248 SCRIPTID_INIT},
1249 {"guiheadroom", "ghr", P_NUM|P_VI_DEF,
1250 #if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11)
1251 (char_u *)&p_ghr, PV_NONE,
1252 #else
1253 (char_u *)NULL, PV_NONE,
1254 #endif
1255 {(char_u *)50L, (char_u *)0L} SCRIPTID_INIT},
1256 {"guioptions", "go", P_STRING|P_VI_DEF|P_RALL|P_FLAGLIST,
1257 #if defined(FEAT_GUI)
1258 (char_u *)&p_go, PV_NONE,
1259 # if defined(UNIX) && !defined(MACOS)
1260 {(char_u *)"aegimrLtT", (char_u *)0L}
1261 # else
1262 {(char_u *)"egmrLtT", (char_u *)0L}
1263 # endif
1264 #else
1265 (char_u *)NULL, PV_NONE,
1266 {(char_u *)NULL, (char_u *)0L}
1267 #endif
1268 SCRIPTID_INIT},
1269 {"guipty", NULL, P_BOOL|P_VI_DEF,
1270 #if defined(FEAT_GUI)
1271 (char_u *)&p_guipty, PV_NONE,
1272 #else
1273 (char_u *)NULL, PV_NONE,
1274 #endif
1275 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1276 {"guitablabel", "gtl", P_STRING|P_VI_DEF|P_RWIN,
1277 #if defined(FEAT_GUI_TABLINE)
1278 (char_u *)&p_gtl, PV_NONE,
1279 {(char_u *)"", (char_u *)0L}
1280 #else
1281 (char_u *)NULL, PV_NONE,
1282 {(char_u *)NULL, (char_u *)0L}
1283 #endif
1284 SCRIPTID_INIT},
1285 {"guitabtooltip", "gtt", P_STRING|P_VI_DEF|P_RWIN,
1286 #if defined(FEAT_GUI_TABLINE)
1287 (char_u *)&p_gtt, PV_NONE,
1288 {(char_u *)"", (char_u *)0L}
1289 #else
1290 (char_u *)NULL, PV_NONE,
1291 {(char_u *)NULL, (char_u *)0L}
1292 #endif
1293 SCRIPTID_INIT},
1294 {"hardtabs", "ht", P_NUM|P_VI_DEF,
1295 (char_u *)NULL, PV_NONE,
1296 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
1297 {"helpfile", "hf", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1298 (char_u *)&p_hf, PV_NONE,
1299 {(char_u *)DFLT_HELPFILE, (char_u *)0L}
1300 SCRIPTID_INIT},
1301 {"helpheight", "hh", P_NUM|P_VI_DEF,
1302 #ifdef FEAT_WINDOWS
1303 (char_u *)&p_hh, PV_NONE,
1304 #else
1305 (char_u *)NULL, PV_NONE,
1306 #endif
1307 {(char_u *)20L, (char_u *)0L} SCRIPTID_INIT},
1308 {"helplang", "hlg", P_STRING|P_VI_DEF|P_COMMA,
1309 #ifdef FEAT_MULTI_LANG
1310 (char_u *)&p_hlg, PV_NONE,
1311 {(char_u *)"", (char_u *)0L}
1312 #else
1313 (char_u *)NULL, PV_NONE,
1314 {(char_u *)0L, (char_u *)0L}
1315 #endif
1316 SCRIPTID_INIT},
1317 {"hidden", "hid", P_BOOL|P_VI_DEF,
1318 (char_u *)&p_hid, PV_NONE,
1319 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1320 {"highlight", "hl", P_STRING|P_VI_DEF|P_RCLR|P_COMMA|P_NODUP,
1321 (char_u *)&p_hl, PV_NONE,
1322 {(char_u *)HIGHLIGHT_INIT, (char_u *)0L}
1323 SCRIPTID_INIT},
1324 {"history", "hi", P_NUM|P_VIM,
1325 (char_u *)&p_hi, PV_NONE,
1326 {(char_u *)0L, (char_u *)20L} SCRIPTID_INIT},
1327 {"hkmap", "hk", P_BOOL|P_VI_DEF|P_VIM,
1328 #ifdef FEAT_RIGHTLEFT
1329 (char_u *)&p_hkmap, PV_NONE,
1330 #else
1331 (char_u *)NULL, PV_NONE,
1332 #endif
1333 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1334 {"hkmapp", "hkp", P_BOOL|P_VI_DEF|P_VIM,
1335 #ifdef FEAT_RIGHTLEFT
1336 (char_u *)&p_hkmapp, PV_NONE,
1337 #else
1338 (char_u *)NULL, PV_NONE,
1339 #endif
1340 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1341 {"hlsearch", "hls", P_BOOL|P_VI_DEF|P_VIM|P_RALL,
1342 (char_u *)&p_hls, PV_NONE,
1343 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1344 {"icon", NULL, P_BOOL|P_VI_DEF,
1345 #ifdef FEAT_TITLE
1346 (char_u *)&p_icon, PV_NONE,
1347 #else
1348 (char_u *)NULL, PV_NONE,
1349 #endif
1350 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1351 {"iconstring", NULL, P_STRING|P_VI_DEF,
1352 #ifdef FEAT_TITLE
1353 (char_u *)&p_iconstring, PV_NONE,
1354 #else
1355 (char_u *)NULL, PV_NONE,
1356 #endif
1357 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1358 {"ignorecase", "ic", P_BOOL|P_VI_DEF,
1359 (char_u *)&p_ic, PV_NONE,
1360 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1361 {"imactivatekey","imak",P_STRING|P_VI_DEF,
1362 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
1363 (char_u *)&p_imak, PV_NONE,
1364 #else
1365 (char_u *)NULL, PV_NONE,
1366 #endif
1367 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1368 {"imcmdline", "imc", P_BOOL|P_VI_DEF,
1369 #ifdef USE_IM_CONTROL
1370 (char_u *)&p_imcmdline, PV_NONE,
1371 #else
1372 (char_u *)NULL, PV_NONE,
1373 #endif
1374 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1375 {"imdisable", "imd", P_BOOL|P_VI_DEF,
1376 #ifdef USE_IM_CONTROL
1377 (char_u *)&p_imdisable, PV_NONE,
1378 #else
1379 (char_u *)NULL, PV_NONE,
1380 #endif
1381 #ifdef __sgi
1382 {(char_u *)TRUE, (char_u *)0L}
1383 #else
1384 {(char_u *)FALSE, (char_u *)0L}
1385 #endif
1386 SCRIPTID_INIT},
1387 {"iminsert", "imi", P_NUM|P_VI_DEF,
1388 (char_u *)&p_iminsert, PV_IMI,
1389 #ifdef B_IMODE_IM
1390 {(char_u *)B_IMODE_IM, (char_u *)0L}
1391 #else
1392 {(char_u *)B_IMODE_NONE, (char_u *)0L}
1393 #endif
1394 SCRIPTID_INIT},
1395 {"imsearch", "ims", P_NUM|P_VI_DEF,
1396 (char_u *)&p_imsearch, PV_IMS,
1397 #ifdef B_IMODE_IM
1398 {(char_u *)B_IMODE_IM, (char_u *)0L}
1399 #else
1400 {(char_u *)B_IMODE_NONE, (char_u *)0L}
1401 #endif
1402 SCRIPTID_INIT},
1403 {"include", "inc", P_STRING|P_ALLOCED|P_VI_DEF,
1404 #ifdef FEAT_FIND_ID
1405 (char_u *)&p_inc, PV_INC,
1406 {(char_u *)"^\\s*#\\s*include", (char_u *)0L}
1407 #else
1408 (char_u *)NULL, PV_NONE,
1409 {(char_u *)0L, (char_u *)0L}
1410 #endif
1411 SCRIPTID_INIT},
1412 {"includeexpr", "inex", P_STRING|P_ALLOCED|P_VI_DEF,
1413 #if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
1414 (char_u *)&p_inex, PV_INEX,
1415 {(char_u *)"", (char_u *)0L}
1416 #else
1417 (char_u *)NULL, PV_NONE,
1418 {(char_u *)0L, (char_u *)0L}
1419 #endif
1420 SCRIPTID_INIT},
1421 {"incsearch", "is", P_BOOL|P_VI_DEF|P_VIM,
1422 (char_u *)&p_is, PV_NONE,
1423 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1424 {"indentexpr", "inde", P_STRING|P_ALLOCED|P_VI_DEF|P_VIM,
1425 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
1426 (char_u *)&p_inde, PV_INDE,
1427 {(char_u *)"", (char_u *)0L}
1428 #else
1429 (char_u *)NULL, PV_NONE,
1430 {(char_u *)0L, (char_u *)0L}
1431 #endif
1432 SCRIPTID_INIT},
1433 {"indentkeys", "indk", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
1434 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
1435 (char_u *)&p_indk, PV_INDK,
1436 {(char_u *)"0{,0},:,0#,!^F,o,O,e", (char_u *)0L}
1437 #else
1438 (char_u *)NULL, PV_NONE,
1439 {(char_u *)0L, (char_u *)0L}
1440 #endif
1441 SCRIPTID_INIT},
1442 {"infercase", "inf", P_BOOL|P_VI_DEF,
1443 (char_u *)&p_inf, PV_INF,
1444 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1445 {"insertmode", "im", P_BOOL|P_VI_DEF|P_VIM,
1446 (char_u *)&p_im, PV_NONE,
1447 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1448 {"isfname", "isf", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1449 (char_u *)&p_isf, PV_NONE,
1451 #ifdef BACKSLASH_IN_FILENAME
1452 /* Excluded are: & and ^ are special in cmd.exe
1453 * ( and ) are used in text separating fnames */
1454 (char_u *)"@,48-57,/,\\,.,-,_,+,,,#,$,%,{,},[,],:,@-@,!,~,=",
1455 #else
1456 # ifdef AMIGA
1457 (char_u *)"@,48-57,/,.,-,_,+,,,$,:",
1458 # else
1459 # ifdef VMS
1460 (char_u *)"@,48-57,/,.,-,_,+,,,#,$,%,<,>,[,],:,;,~",
1461 # else /* UNIX et al. */
1462 # ifdef EBCDIC
1463 (char_u *)"@,240-249,/,.,-,_,+,,,#,$,%,~,=",
1464 # else
1465 (char_u *)"@,48-57,/,.,-,_,+,,,#,$,%,~,=",
1466 # endif
1467 # endif
1468 # endif
1469 #endif
1470 (char_u *)0L} SCRIPTID_INIT},
1471 {"isident", "isi", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1472 (char_u *)&p_isi, PV_NONE,
1474 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
1475 (char_u *)"@,48-57,_,128-167,224-235",
1476 #else
1477 # ifdef EBCDIC
1478 /* TODO: EBCDIC Check this! @ == isalpha()*/
1479 (char_u *)"@,240-249,_,66-73,81-89,98-105,"
1480 "112-120,128,140-142,156,158,172,"
1481 "174,186,191,203-207,219-225,235-239,"
1482 "251-254",
1483 # else
1484 (char_u *)"@,48-57,_,192-255",
1485 # endif
1486 #endif
1487 (char_u *)0L} SCRIPTID_INIT},
1488 {"iskeyword", "isk", P_STRING|P_ALLOCED|P_VIM|P_COMMA|P_NODUP,
1489 (char_u *)&p_isk, PV_ISK,
1491 #ifdef EBCDIC
1492 (char_u *)"@,240-249,_",
1493 /* TODO: EBCDIC Check this! @ == isalpha()*/
1494 (char_u *)"@,240-249,_,66-73,81-89,98-105,"
1495 "112-120,128,140-142,156,158,172,"
1496 "174,186,191,203-207,219-225,235-239,"
1497 "251-254",
1498 #else
1499 (char_u *)"@,48-57,_",
1500 # if defined(MSDOS) || defined(MSWIN) || defined(OS2)
1501 (char_u *)"@,48-57,_,128-167,224-235"
1502 # else
1503 ISK_LATIN1
1504 # endif
1505 #endif
1506 } SCRIPTID_INIT},
1507 {"isprint", "isp", P_STRING|P_VI_DEF|P_RALL|P_COMMA|P_NODUP,
1508 (char_u *)&p_isp, PV_NONE,
1510 #if defined(MSDOS) || defined(MSWIN) || defined(OS2) \
1511 || (defined(MACOS) && !defined(MACOS_X)) \
1512 || defined(VMS)
1513 (char_u *)"@,~-255",
1514 #else
1515 # ifdef EBCDIC
1516 /* all chars above 63 are printable */
1517 (char_u *)"63-255",
1518 # else
1519 ISP_LATIN1,
1520 # endif
1521 #endif
1522 (char_u *)0L} SCRIPTID_INIT},
1523 {"joinspaces", "js", P_BOOL|P_VI_DEF|P_VIM,
1524 (char_u *)&p_js, PV_NONE,
1525 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1526 {"key", NULL, P_STRING|P_ALLOCED|P_VI_DEF|P_NO_MKRC,
1527 #ifdef FEAT_CRYPT
1528 (char_u *)&p_key, PV_KEY,
1529 {(char_u *)"", (char_u *)0L}
1530 #else
1531 (char_u *)NULL, PV_NONE,
1532 {(char_u *)0L, (char_u *)0L}
1533 #endif
1534 SCRIPTID_INIT},
1535 {"keymap", "kmp", P_STRING|P_ALLOCED|P_VI_DEF|P_RBUF|P_RSTAT|P_NFNAME|P_PRI_MKRC,
1536 #ifdef FEAT_KEYMAP
1537 (char_u *)&p_keymap, PV_KMAP,
1538 {(char_u *)"", (char_u *)0L}
1539 #else
1540 (char_u *)NULL, PV_NONE,
1541 {(char_u *)"", (char_u *)0L}
1542 #endif
1543 SCRIPTID_INIT},
1544 {"keymodel", "km", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1545 #ifdef FEAT_VISUAL
1546 (char_u *)&p_km, PV_NONE,
1547 #else
1548 (char_u *)NULL, PV_NONE,
1549 #endif
1550 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1551 {"keywordprg", "kp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1552 (char_u *)&p_kp, PV_KP,
1554 #if defined(MSDOS) || defined(MSWIN)
1555 (char_u *)":help",
1556 #else
1557 #ifdef VMS
1558 (char_u *)"help",
1559 #else
1560 # if defined(OS2)
1561 (char_u *)"view /",
1562 # else
1563 # ifdef USEMAN_S
1564 (char_u *)"man -s",
1565 # else
1566 (char_u *)"man",
1567 # endif
1568 # endif
1569 #endif
1570 #endif
1571 (char_u *)0L} SCRIPTID_INIT},
1572 {"langmap", "lmap", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1573 #ifdef FEAT_LANGMAP
1574 (char_u *)&p_langmap, PV_NONE,
1575 {(char_u *)"", /* unmatched } */
1576 #else
1577 (char_u *)NULL, PV_NONE,
1578 {(char_u *)NULL,
1579 #endif
1580 (char_u *)0L} SCRIPTID_INIT},
1581 {"langmenu", "lm", P_STRING|P_VI_DEF|P_NFNAME,
1582 #if defined(FEAT_MENU) && defined(FEAT_MULTI_LANG)
1583 (char_u *)&p_lm, PV_NONE,
1584 #else
1585 (char_u *)NULL, PV_NONE,
1586 #endif
1587 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1588 {"laststatus", "ls", P_NUM|P_VI_DEF|P_RALL,
1589 #ifdef FEAT_WINDOWS
1590 (char_u *)&p_ls, PV_NONE,
1591 #else
1592 (char_u *)NULL, PV_NONE,
1593 #endif
1594 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
1595 {"lazyredraw", "lz", P_BOOL|P_VI_DEF,
1596 (char_u *)&p_lz, PV_NONE,
1597 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1598 {"linebreak", "lbr", P_BOOL|P_VI_DEF|P_RWIN,
1599 #ifdef FEAT_LINEBREAK
1600 (char_u *)VAR_WIN, PV_LBR,
1601 #else
1602 (char_u *)NULL, PV_NONE,
1603 #endif
1604 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1605 {"lines", NULL, P_NUM|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RCLR,
1606 (char_u *)&Rows, PV_NONE,
1608 #if defined(MSDOS) || defined(WIN3264) || defined(OS2)
1609 (char_u *)25L,
1610 #else
1611 (char_u *)24L,
1612 #endif
1613 (char_u *)0L} SCRIPTID_INIT},
1614 {"linespace", "lsp", P_NUM|P_VI_DEF|P_RCLR,
1615 #ifdef FEAT_GUI
1616 (char_u *)&p_linespace, PV_NONE,
1617 #else
1618 (char_u *)NULL, PV_NONE,
1619 #endif
1620 #ifdef FEAT_GUI_W32
1621 {(char_u *)1L, (char_u *)0L}
1622 #else
1623 {(char_u *)0L, (char_u *)0L}
1624 #endif
1625 SCRIPTID_INIT},
1626 {"lisp", NULL, P_BOOL|P_VI_DEF,
1627 #ifdef FEAT_LISP
1628 (char_u *)&p_lisp, PV_LISP,
1629 #else
1630 (char_u *)NULL, PV_NONE,
1631 #endif
1632 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1633 {"lispwords", "lw", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1634 #ifdef FEAT_LISP
1635 (char_u *)&p_lispwords, PV_NONE,
1636 {(char_u *)LISPWORD_VALUE, (char_u *)0L}
1637 #else
1638 (char_u *)NULL, PV_NONE,
1639 {(char_u *)"", (char_u *)0L}
1640 #endif
1641 SCRIPTID_INIT},
1642 {"list", NULL, P_BOOL|P_VI_DEF|P_RWIN,
1643 (char_u *)VAR_WIN, PV_LIST,
1644 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1645 {"listchars", "lcs", P_STRING|P_VI_DEF|P_RALL|P_COMMA|P_NODUP,
1646 (char_u *)&p_lcs, PV_NONE,
1647 {(char_u *)"eol:$", (char_u *)0L} SCRIPTID_INIT},
1648 {"loadplugins", "lpl", P_BOOL|P_VI_DEF,
1649 (char_u *)&p_lpl, PV_NONE,
1650 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1651 #ifdef FEAT_GUI_MAC
1652 {"macatsui", NULL, P_BOOL|P_VI_DEF|P_RCLR,
1653 (char_u *)&p_macatsui, PV_NONE,
1654 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1655 #endif
1656 {"magic", NULL, P_BOOL|P_VI_DEF,
1657 (char_u *)&p_magic, PV_NONE,
1658 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1659 {"makeef", "mef", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1660 #ifdef FEAT_QUICKFIX
1661 (char_u *)&p_mef, PV_NONE,
1662 {(char_u *)"", (char_u *)0L}
1663 #else
1664 (char_u *)NULL, PV_NONE,
1665 {(char_u *)NULL, (char_u *)0L}
1666 #endif
1667 SCRIPTID_INIT},
1668 {"makeprg", "mp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1669 #ifdef FEAT_QUICKFIX
1670 (char_u *)&p_mp, PV_MP,
1671 # ifdef VMS
1672 {(char_u *)"MMS", (char_u *)0L}
1673 # else
1674 {(char_u *)"make", (char_u *)0L}
1675 # endif
1676 #else
1677 (char_u *)NULL, PV_NONE,
1678 {(char_u *)NULL, (char_u *)0L}
1679 #endif
1680 SCRIPTID_INIT},
1681 {"matchpairs", "mps", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
1682 (char_u *)&p_mps, PV_MPS,
1683 {(char_u *)"(:),{:},[:]", (char_u *)0L}
1684 SCRIPTID_INIT},
1685 {"matchtime", "mat", P_NUM|P_VI_DEF,
1686 (char_u *)&p_mat, PV_NONE,
1687 {(char_u *)5L, (char_u *)0L} SCRIPTID_INIT},
1688 {"maxcombine", "mco", P_NUM|P_VI_DEF,
1689 #ifdef FEAT_MBYTE
1690 (char_u *)&p_mco, PV_NONE,
1691 #else
1692 (char_u *)NULL, PV_NONE,
1693 #endif
1694 {(char_u *)2, (char_u *)0L} SCRIPTID_INIT},
1695 {"maxfuncdepth", "mfd", P_NUM|P_VI_DEF,
1696 #ifdef FEAT_EVAL
1697 (char_u *)&p_mfd, PV_NONE,
1698 #else
1699 (char_u *)NULL, PV_NONE,
1700 #endif
1701 {(char_u *)100L, (char_u *)0L} SCRIPTID_INIT},
1702 {"maxmapdepth", "mmd", P_NUM|P_VI_DEF,
1703 (char_u *)&p_mmd, PV_NONE,
1704 {(char_u *)1000L, (char_u *)0L} SCRIPTID_INIT},
1705 {"maxmem", "mm", P_NUM|P_VI_DEF,
1706 (char_u *)&p_mm, PV_NONE,
1707 {(char_u *)DFLT_MAXMEM, (char_u *)0L}
1708 SCRIPTID_INIT},
1709 {"maxmempattern","mmp", P_NUM|P_VI_DEF,
1710 (char_u *)&p_mmp, PV_NONE,
1711 {(char_u *)1000L, (char_u *)0L} SCRIPTID_INIT},
1712 {"maxmemtot", "mmt", P_NUM|P_VI_DEF,
1713 (char_u *)&p_mmt, PV_NONE,
1714 {(char_u *)DFLT_MAXMEMTOT, (char_u *)0L}
1715 SCRIPTID_INIT},
1716 {"menuitems", "mis", P_NUM|P_VI_DEF,
1717 #ifdef FEAT_MENU
1718 (char_u *)&p_mis, PV_NONE,
1719 #else
1720 (char_u *)NULL, PV_NONE,
1721 #endif
1722 {(char_u *)25L, (char_u *)0L} SCRIPTID_INIT},
1723 {"mesg", NULL, P_BOOL|P_VI_DEF,
1724 (char_u *)NULL, PV_NONE,
1725 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1726 {"mkspellmem", "msm", P_STRING|P_VI_DEF|P_EXPAND|P_SECURE,
1727 #ifdef FEAT_SPELL
1728 (char_u *)&p_msm, PV_NONE,
1729 {(char_u *)"460000,2000,500", (char_u *)0L}
1730 #else
1731 (char_u *)NULL, PV_NONE,
1732 {(char_u *)0L, (char_u *)0L}
1733 #endif
1734 SCRIPTID_INIT},
1735 {"modeline", "ml", P_BOOL|P_VIM,
1736 (char_u *)&p_ml, PV_ML,
1737 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
1738 {"modelines", "mls", P_NUM|P_VI_DEF,
1739 (char_u *)&p_mls, PV_NONE,
1740 {(char_u *)5L, (char_u *)0L} SCRIPTID_INIT},
1741 {"modifiable", "ma", P_BOOL|P_VI_DEF|P_NOGLOB,
1742 (char_u *)&p_ma, PV_MA,
1743 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1744 {"modified", "mod", P_BOOL|P_NO_MKRC|P_VI_DEF|P_RSTAT,
1745 (char_u *)&p_mod, PV_MOD,
1746 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1747 {"more", NULL, P_BOOL|P_VIM,
1748 (char_u *)&p_more, PV_NONE,
1749 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
1750 {"mouse", NULL, P_STRING|P_VI_DEF|P_FLAGLIST,
1751 (char_u *)&p_mouse, PV_NONE,
1753 #if defined(MSDOS) || defined(WIN3264)
1754 (char_u *)"a",
1755 #else
1756 (char_u *)"",
1757 #endif
1758 (char_u *)0L} SCRIPTID_INIT},
1759 {"mousefocus", "mousef", P_BOOL|P_VI_DEF,
1760 #ifdef FEAT_GUI
1761 (char_u *)&p_mousef, PV_NONE,
1762 #else
1763 (char_u *)NULL, PV_NONE,
1764 #endif
1765 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1766 {"mousehide", "mh", P_BOOL|P_VI_DEF,
1767 #ifdef FEAT_GUI
1768 (char_u *)&p_mh, PV_NONE,
1769 #else
1770 (char_u *)NULL, PV_NONE,
1771 #endif
1772 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1773 {"mousemodel", "mousem", P_STRING|P_VI_DEF,
1774 (char_u *)&p_mousem, PV_NONE,
1776 #if defined(MSDOS) || defined(MSWIN)
1777 (char_u *)"popup",
1778 #else
1779 # if defined(MACOS)
1780 (char_u *)"popup_setpos",
1781 # else
1782 (char_u *)"extend",
1783 # endif
1784 #endif
1785 (char_u *)0L} SCRIPTID_INIT},
1786 {"mouseshape", "mouses", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1787 #ifdef FEAT_MOUSESHAPE
1788 (char_u *)&p_mouseshape, PV_NONE,
1789 {(char_u *)"i-r:beam,s:updown,sd:udsizing,vs:leftright,vd:lrsizing,m:no,ml:up-arrow,v:rightup-arrow", (char_u *)0L}
1790 #else
1791 (char_u *)NULL, PV_NONE,
1792 {(char_u *)NULL, (char_u *)0L}
1793 #endif
1794 SCRIPTID_INIT},
1795 {"mousetime", "mouset", P_NUM|P_VI_DEF,
1796 (char_u *)&p_mouset, PV_NONE,
1797 {(char_u *)500L, (char_u *)0L} SCRIPTID_INIT},
1798 {"mzquantum", "mzq", P_NUM,
1799 #ifdef FEAT_MZSCHEME
1800 (char_u *)&p_mzq, PV_NONE,
1801 #else
1802 (char_u *)NULL, PV_NONE,
1803 #endif
1804 {(char_u *)100L, (char_u *)100L} SCRIPTID_INIT},
1805 {"novice", NULL, P_BOOL|P_VI_DEF,
1806 (char_u *)NULL, PV_NONE,
1807 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1808 {"nrformats", "nf", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
1809 (char_u *)&p_nf, PV_NF,
1810 {(char_u *)"octal,hex", (char_u *)0L}
1811 SCRIPTID_INIT},
1812 {"number", "nu", P_BOOL|P_VI_DEF|P_RWIN,
1813 (char_u *)VAR_WIN, PV_NU,
1814 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1815 {"numberwidth", "nuw", P_NUM|P_RWIN|P_VIM,
1816 #ifdef FEAT_LINEBREAK
1817 (char_u *)VAR_WIN, PV_NUW,
1818 #else
1819 (char_u *)NULL, PV_NONE,
1820 #endif
1821 {(char_u *)8L, (char_u *)4L} SCRIPTID_INIT},
1822 {"omnifunc", "ofu", P_STRING|P_ALLOCED|P_VI_DEF|P_SECURE,
1823 #ifdef FEAT_COMPL_FUNC
1824 (char_u *)&p_ofu, PV_OFU,
1825 {(char_u *)"", (char_u *)0L}
1826 #else
1827 (char_u *)NULL, PV_NONE,
1828 {(char_u *)0L, (char_u *)0L}
1829 #endif
1830 SCRIPTID_INIT},
1831 {"open", NULL, P_BOOL|P_VI_DEF,
1832 (char_u *)NULL, PV_NONE,
1833 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1834 {"opendevice", "odev", P_BOOL|P_VI_DEF,
1835 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
1836 (char_u *)&p_odev, PV_NONE,
1837 #else
1838 (char_u *)NULL, PV_NONE,
1839 #endif
1840 {(char_u *)FALSE, (char_u *)FALSE}
1841 SCRIPTID_INIT},
1842 {"operatorfunc", "opfunc", P_STRING|P_VI_DEF|P_SECURE,
1843 (char_u *)&p_opfunc, PV_NONE,
1844 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1845 {"optimize", "opt", P_BOOL|P_VI_DEF,
1846 (char_u *)NULL, PV_NONE,
1847 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1848 {"osfiletype", "oft", P_STRING|P_ALLOCED|P_VI_DEF,
1849 #ifdef FEAT_OSFILETYPE
1850 (char_u *)&p_oft, PV_OFT,
1851 {(char_u *)DFLT_OFT, (char_u *)0L}
1852 #else
1853 (char_u *)NULL, PV_NONE,
1854 {(char_u *)0L, (char_u *)0L}
1855 #endif
1856 SCRIPTID_INIT},
1857 {"paragraphs", "para", P_STRING|P_VI_DEF,
1858 (char_u *)&p_para, PV_NONE,
1859 {(char_u *)"IPLPPPQPP TPHPLIPpLpItpplpipbp",
1860 (char_u *)0L} SCRIPTID_INIT},
1861 {"paste", NULL, P_BOOL|P_VI_DEF|P_PRI_MKRC,
1862 (char_u *)&p_paste, PV_NONE,
1863 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1864 {"pastetoggle", "pt", P_STRING|P_VI_DEF,
1865 (char_u *)&p_pt, PV_NONE,
1866 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1867 {"patchexpr", "pex", P_STRING|P_VI_DEF|P_SECURE,
1868 #if defined(FEAT_DIFF) && defined(FEAT_EVAL)
1869 (char_u *)&p_pex, PV_NONE,
1870 {(char_u *)"", (char_u *)0L}
1871 #else
1872 (char_u *)NULL, PV_NONE,
1873 {(char_u *)0L, (char_u *)0L}
1874 #endif
1875 SCRIPTID_INIT},
1876 {"patchmode", "pm", P_STRING|P_VI_DEF|P_NFNAME,
1877 (char_u *)&p_pm, PV_NONE,
1878 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1879 {"path", "pa", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
1880 (char_u *)&p_path, PV_PATH,
1882 #if defined AMIGA || defined MSDOS || defined MSWIN
1883 (char_u *)".,,",
1884 #else
1885 # if defined(__EMX__)
1886 (char_u *)".,/emx/include,,",
1887 # else /* Unix, probably */
1888 (char_u *)".,/usr/include,,",
1889 # endif
1890 #endif
1891 (char_u *)0L} SCRIPTID_INIT},
1892 {"preserveindent", "pi", P_BOOL|P_VI_DEF|P_VIM,
1893 (char_u *)&p_pi, PV_PI,
1894 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1895 {"previewheight", "pvh", P_NUM|P_VI_DEF,
1896 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
1897 (char_u *)&p_pvh, PV_NONE,
1898 #else
1899 (char_u *)NULL, PV_NONE,
1900 #endif
1901 {(char_u *)12L, (char_u *)0L} SCRIPTID_INIT},
1902 {"previewwindow", "pvw", P_BOOL|P_VI_DEF|P_RSTAT|P_NOGLOB,
1903 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
1904 (char_u *)VAR_WIN, PV_PVW,
1905 #else
1906 (char_u *)NULL, PV_NONE,
1907 #endif
1908 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1909 {"printdevice", "pdev", P_STRING|P_VI_DEF|P_SECURE,
1910 #ifdef FEAT_PRINTER
1911 (char_u *)&p_pdev, PV_NONE,
1912 {(char_u *)"", (char_u *)0L}
1913 #else
1914 (char_u *)NULL, PV_NONE,
1915 {(char_u *)NULL, (char_u *)0L}
1916 #endif
1917 SCRIPTID_INIT},
1918 {"printencoding", "penc", P_STRING|P_VI_DEF,
1919 #ifdef FEAT_POSTSCRIPT
1920 (char_u *)&p_penc, PV_NONE,
1921 {(char_u *)"", (char_u *)0L}
1922 #else
1923 (char_u *)NULL, PV_NONE,
1924 {(char_u *)NULL, (char_u *)0L}
1925 #endif
1926 SCRIPTID_INIT},
1927 {"printexpr", "pexpr", P_STRING|P_VI_DEF,
1928 #ifdef FEAT_POSTSCRIPT
1929 (char_u *)&p_pexpr, PV_NONE,
1930 {(char_u *)"", (char_u *)0L}
1931 #else
1932 (char_u *)NULL, PV_NONE,
1933 {(char_u *)NULL, (char_u *)0L}
1934 #endif
1935 SCRIPTID_INIT},
1936 {"printfont", "pfn", P_STRING|P_VI_DEF,
1937 #ifdef FEAT_PRINTER
1938 (char_u *)&p_pfn, PV_NONE,
1940 # ifdef MSWIN
1941 (char_u *)"Courier_New:h10",
1942 # else
1943 (char_u *)"courier",
1944 # endif
1945 (char_u *)0L}
1946 #else
1947 (char_u *)NULL, PV_NONE,
1948 {(char_u *)NULL, (char_u *)0L}
1949 #endif
1950 SCRIPTID_INIT},
1951 {"printheader", "pheader", P_STRING|P_VI_DEF|P_GETTEXT,
1952 #ifdef FEAT_PRINTER
1953 (char_u *)&p_header, PV_NONE,
1954 {(char_u *)N_("%<%f%h%m%=Page %N"), (char_u *)0L}
1955 #else
1956 (char_u *)NULL, PV_NONE,
1957 {(char_u *)NULL, (char_u *)0L}
1958 #endif
1959 SCRIPTID_INIT},
1960 {"printmbcharset", "pmbcs", P_STRING|P_VI_DEF,
1961 #if defined(FEAT_POSTSCRIPT) && defined(FEAT_MBYTE)
1962 (char_u *)&p_pmcs, PV_NONE,
1963 {(char_u *)"", (char_u *)0L}
1964 #else
1965 (char_u *)NULL, PV_NONE,
1966 {(char_u *)NULL, (char_u *)0L}
1967 #endif
1968 SCRIPTID_INIT},
1969 {"printmbfont", "pmbfn", P_STRING|P_VI_DEF,
1970 #if defined(FEAT_POSTSCRIPT) && defined(FEAT_MBYTE)
1971 (char_u *)&p_pmfn, PV_NONE,
1972 {(char_u *)"", (char_u *)0L}
1973 #else
1974 (char_u *)NULL, PV_NONE,
1975 {(char_u *)NULL, (char_u *)0L}
1976 #endif
1977 SCRIPTID_INIT},
1978 {"printoptions", "popt", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1979 #ifdef FEAT_PRINTER
1980 (char_u *)&p_popt, PV_NONE,
1981 {(char_u *)"", (char_u *)0L}
1982 #else
1983 (char_u *)NULL, PV_NONE,
1984 {(char_u *)NULL, (char_u *)0L}
1985 #endif
1986 SCRIPTID_INIT},
1987 {"prompt", NULL, P_BOOL|P_VI_DEF,
1988 (char_u *)&p_prompt, PV_NONE,
1989 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1990 {"pumheight", "ph", P_NUM|P_VI_DEF,
1991 #ifdef FEAT_INS_EXPAND
1992 (char_u *)&p_ph, PV_NONE,
1993 #else
1994 (char_u *)NULL, PV_NONE,
1995 #endif
1996 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
1997 {"quoteescape", "qe", P_STRING|P_ALLOCED|P_VI_DEF,
1998 #ifdef FEAT_TEXTOBJ
1999 (char_u *)&p_qe, PV_QE,
2000 {(char_u *)"\\", (char_u *)0L}
2001 #else
2002 (char_u *)NULL, PV_NONE,
2003 {(char_u *)NULL, (char_u *)0L}
2004 #endif
2005 SCRIPTID_INIT},
2006 {"readonly", "ro", P_BOOL|P_VI_DEF|P_RSTAT|P_NOGLOB,
2007 (char_u *)&p_ro, PV_RO,
2008 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2009 {"redraw", NULL, P_BOOL|P_VI_DEF,
2010 (char_u *)NULL, PV_NONE,
2011 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2012 {"redrawtime", "rdt", P_NUM|P_VI_DEF,
2013 #ifdef FEAT_RELTIME
2014 (char_u *)&p_rdt, PV_NONE,
2015 #else
2016 (char_u *)NULL, PV_NONE,
2017 #endif
2018 {(char_u *)2000L, (char_u *)0L} SCRIPTID_INIT},
2019 {"relativenumber", "rnu", P_BOOL|P_VI_DEF|P_RWIN,
2020 (char_u *)VAR_WIN, PV_RNU,
2021 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2022 {"remap", NULL, P_BOOL|P_VI_DEF,
2023 (char_u *)&p_remap, PV_NONE,
2024 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2025 {"report", NULL, P_NUM|P_VI_DEF,
2026 (char_u *)&p_report, PV_NONE,
2027 {(char_u *)2L, (char_u *)0L} SCRIPTID_INIT},
2028 {"restorescreen", "rs", P_BOOL|P_VI_DEF,
2029 #ifdef WIN3264
2030 (char_u *)&p_rs, PV_NONE,
2031 #else
2032 (char_u *)NULL, PV_NONE,
2033 #endif
2034 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2035 {"revins", "ri", P_BOOL|P_VI_DEF|P_VIM,
2036 #ifdef FEAT_RIGHTLEFT
2037 (char_u *)&p_ri, PV_NONE,
2038 #else
2039 (char_u *)NULL, PV_NONE,
2040 #endif
2041 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2042 {"rightleft", "rl", P_BOOL|P_VI_DEF|P_RWIN,
2043 #ifdef FEAT_RIGHTLEFT
2044 (char_u *)VAR_WIN, PV_RL,
2045 #else
2046 (char_u *)NULL, PV_NONE,
2047 #endif
2048 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2049 {"rightleftcmd", "rlc", P_STRING|P_ALLOCED|P_VI_DEF|P_RWIN,
2050 #ifdef FEAT_RIGHTLEFT
2051 (char_u *)VAR_WIN, PV_RLC,
2052 {(char_u *)"search", (char_u *)NULL}
2053 #else
2054 (char_u *)NULL, PV_NONE,
2055 {(char_u *)NULL, (char_u *)0L}
2056 #endif
2057 SCRIPTID_INIT},
2058 {"ruler", "ru", P_BOOL|P_VI_DEF|P_VIM|P_RSTAT,
2059 #ifdef FEAT_CMDL_INFO
2060 (char_u *)&p_ru, PV_NONE,
2061 #else
2062 (char_u *)NULL, PV_NONE,
2063 #endif
2064 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2065 {"rulerformat", "ruf", P_STRING|P_VI_DEF|P_ALLOCED|P_RSTAT,
2066 #ifdef FEAT_STL_OPT
2067 (char_u *)&p_ruf, PV_NONE,
2068 #else
2069 (char_u *)NULL, PV_NONE,
2070 #endif
2071 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2072 {"runtimepath", "rtp", P_STRING|P_VI_DEF|P_EXPAND|P_COMMA|P_NODUP|P_SECURE,
2073 (char_u *)&p_rtp, PV_NONE,
2074 {(char_u *)DFLT_RUNTIMEPATH, (char_u *)0L}
2075 SCRIPTID_INIT},
2076 {"scroll", "scr", P_NUM|P_NO_MKRC|P_VI_DEF,
2077 (char_u *)VAR_WIN, PV_SCROLL,
2078 {(char_u *)12L, (char_u *)0L} SCRIPTID_INIT},
2079 {"scrollbind", "scb", P_BOOL|P_VI_DEF,
2080 #ifdef FEAT_SCROLLBIND
2081 (char_u *)VAR_WIN, PV_SCBIND,
2082 #else
2083 (char_u *)NULL, PV_NONE,
2084 #endif
2085 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2086 {"scrolljump", "sj", P_NUM|P_VI_DEF|P_VIM,
2087 (char_u *)&p_sj, PV_NONE,
2088 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
2089 {"scrolloff", "so", P_NUM|P_VI_DEF|P_VIM|P_RALL,
2090 (char_u *)&p_so, PV_NONE,
2091 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2092 {"scrollopt", "sbo", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2093 #ifdef FEAT_SCROLLBIND
2094 (char_u *)&p_sbo, PV_NONE,
2095 {(char_u *)"ver,jump", (char_u *)0L}
2096 #else
2097 (char_u *)NULL, PV_NONE,
2098 {(char_u *)0L, (char_u *)0L}
2099 #endif
2100 SCRIPTID_INIT},
2101 {"sections", "sect", P_STRING|P_VI_DEF,
2102 (char_u *)&p_sections, PV_NONE,
2103 {(char_u *)"SHNHH HUnhsh", (char_u *)0L}
2104 SCRIPTID_INIT},
2105 {"secure", NULL, P_BOOL|P_VI_DEF|P_SECURE,
2106 (char_u *)&p_secure, PV_NONE,
2107 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2108 {"selection", "sel", P_STRING|P_VI_DEF,
2109 #ifdef FEAT_VISUAL
2110 (char_u *)&p_sel, PV_NONE,
2111 #else
2112 (char_u *)NULL, PV_NONE,
2113 #endif
2114 {(char_u *)"inclusive", (char_u *)0L}
2115 SCRIPTID_INIT},
2116 {"selectmode", "slm", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2117 #ifdef FEAT_VISUAL
2118 (char_u *)&p_slm, PV_NONE,
2119 #else
2120 (char_u *)NULL, PV_NONE,
2121 #endif
2122 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2123 {"sessionoptions", "ssop", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2124 #ifdef FEAT_SESSION
2125 (char_u *)&p_ssop, PV_NONE,
2126 {(char_u *)"blank,buffers,curdir,folds,help,options,tabpages,winsize",
2127 (char_u *)0L}
2128 #else
2129 (char_u *)NULL, PV_NONE,
2130 {(char_u *)0L, (char_u *)0L}
2131 #endif
2132 SCRIPTID_INIT},
2133 {"shell", "sh", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
2134 (char_u *)&p_sh, PV_NONE,
2136 #ifdef VMS
2137 (char_u *)"-",
2138 #else
2139 # if defined(MSDOS)
2140 (char_u *)"command",
2141 # else
2142 # if defined(WIN16)
2143 (char_u *)"command.com",
2144 # else
2145 # if defined(WIN3264)
2146 (char_u *)"", /* set in set_init_1() */
2147 # else
2148 # if defined(OS2)
2149 (char_u *)"cmd.exe",
2150 # else
2151 # if defined(ARCHIE)
2152 (char_u *)"gos",
2153 # else
2154 (char_u *)"sh",
2155 # endif
2156 # endif
2157 # endif
2158 # endif
2159 # endif
2160 #endif /* VMS */
2161 (char_u *)0L} SCRIPTID_INIT},
2162 {"shellcmdflag","shcf", P_STRING|P_VI_DEF|P_SECURE,
2163 (char_u *)&p_shcf, PV_NONE,
2165 #if defined(MSDOS) || defined(MSWIN)
2166 (char_u *)"/c",
2167 #else
2168 # if defined(OS2)
2169 (char_u *)"/c",
2170 # else
2171 (char_u *)"-c",
2172 # endif
2173 #endif
2174 (char_u *)0L} SCRIPTID_INIT},
2175 {"shellpipe", "sp", P_STRING|P_VI_DEF|P_SECURE,
2176 #ifdef FEAT_QUICKFIX
2177 (char_u *)&p_sp, PV_NONE,
2179 #if defined(UNIX) || defined(OS2)
2180 # ifdef ARCHIE
2181 (char_u *)"2>",
2182 # else
2183 (char_u *)"| tee",
2184 # endif
2185 #else
2186 (char_u *)">",
2187 #endif
2188 (char_u *)0L}
2189 #else
2190 (char_u *)NULL, PV_NONE,
2191 {(char_u *)0L, (char_u *)0L}
2192 #endif
2193 SCRIPTID_INIT},
2194 {"shellquote", "shq", P_STRING|P_VI_DEF|P_SECURE,
2195 (char_u *)&p_shq, PV_NONE,
2196 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2197 {"shellredir", "srr", P_STRING|P_VI_DEF|P_SECURE,
2198 (char_u *)&p_srr, PV_NONE,
2199 {(char_u *)">", (char_u *)0L} SCRIPTID_INIT},
2200 {"shellslash", "ssl", P_BOOL|P_VI_DEF,
2201 #ifdef BACKSLASH_IN_FILENAME
2202 (char_u *)&p_ssl, PV_NONE,
2203 #else
2204 (char_u *)NULL, PV_NONE,
2205 #endif
2206 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2207 {"shelltemp", "stmp", P_BOOL,
2208 (char_u *)&p_stmp, PV_NONE,
2209 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
2210 {"shelltype", "st", P_NUM|P_VI_DEF,
2211 #ifdef AMIGA
2212 (char_u *)&p_st, PV_NONE,
2213 #else
2214 (char_u *)NULL, PV_NONE,
2215 #endif
2216 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2217 {"shellxquote", "sxq", P_STRING|P_VI_DEF|P_SECURE,
2218 (char_u *)&p_sxq, PV_NONE,
2220 #if defined(UNIX) && defined(USE_SYSTEM) && !defined(__EMX__)
2221 (char_u *)"\"",
2222 #else
2223 (char_u *)"",
2224 #endif
2225 (char_u *)0L} SCRIPTID_INIT},
2226 {"shiftround", "sr", P_BOOL|P_VI_DEF|P_VIM,
2227 (char_u *)&p_sr, PV_NONE,
2228 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2229 {"shiftwidth", "sw", P_NUM|P_VI_DEF,
2230 (char_u *)&p_sw, PV_SW,
2231 {(char_u *)8L, (char_u *)0L} SCRIPTID_INIT},
2232 {"shortmess", "shm", P_STRING|P_VIM|P_FLAGLIST,
2233 (char_u *)&p_shm, PV_NONE,
2234 {(char_u *)"", (char_u *)"filnxtToO"}
2235 SCRIPTID_INIT},
2236 {"shortname", "sn", P_BOOL|P_VI_DEF,
2237 #ifdef SHORT_FNAME
2238 (char_u *)NULL, PV_NONE,
2239 #else
2240 (char_u *)&p_sn, PV_SN,
2241 #endif
2242 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2243 {"showbreak", "sbr", P_STRING|P_VI_DEF|P_RALL,
2244 #ifdef FEAT_LINEBREAK
2245 (char_u *)&p_sbr, PV_NONE,
2246 #else
2247 (char_u *)NULL, PV_NONE,
2248 #endif
2249 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2250 {"showcmd", "sc", P_BOOL|P_VIM,
2251 #ifdef FEAT_CMDL_INFO
2252 (char_u *)&p_sc, PV_NONE,
2253 #else
2254 (char_u *)NULL, PV_NONE,
2255 #endif
2256 {(char_u *)FALSE,
2257 #ifdef UNIX
2258 (char_u *)FALSE
2259 #else
2260 (char_u *)TRUE
2261 #endif
2262 } SCRIPTID_INIT},
2263 {"showfulltag", "sft", P_BOOL|P_VI_DEF,
2264 (char_u *)&p_sft, PV_NONE,
2265 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2266 {"showmatch", "sm", P_BOOL|P_VI_DEF,
2267 (char_u *)&p_sm, PV_NONE,
2268 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2269 {"showmode", "smd", P_BOOL|P_VIM,
2270 (char_u *)&p_smd, PV_NONE,
2271 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
2272 {"showtabline", "stal", P_NUM|P_VI_DEF|P_RALL,
2273 #ifdef FEAT_WINDOWS
2274 (char_u *)&p_stal, PV_NONE,
2275 #else
2276 (char_u *)NULL, PV_NONE,
2277 #endif
2278 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
2279 {"sidescroll", "ss", P_NUM|P_VI_DEF,
2280 (char_u *)&p_ss, PV_NONE,
2281 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2282 {"sidescrolloff", "siso", P_NUM|P_VI_DEF|P_VIM|P_RBUF,
2283 (char_u *)&p_siso, PV_NONE,
2284 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2285 {"slowopen", "slow", P_BOOL|P_VI_DEF,
2286 (char_u *)NULL, PV_NONE,
2287 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2288 {"smartcase", "scs", P_BOOL|P_VI_DEF|P_VIM,
2289 (char_u *)&p_scs, PV_NONE,
2290 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2291 {"smartindent", "si", P_BOOL|P_VI_DEF|P_VIM,
2292 #ifdef FEAT_SMARTINDENT
2293 (char_u *)&p_si, PV_SI,
2294 #else
2295 (char_u *)NULL, PV_NONE,
2296 #endif
2297 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2298 {"smarttab", "sta", P_BOOL|P_VI_DEF|P_VIM,
2299 (char_u *)&p_sta, PV_NONE,
2300 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2301 {"softtabstop", "sts", P_NUM|P_VI_DEF|P_VIM,
2302 (char_u *)&p_sts, PV_STS,
2303 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2304 {"sourceany", NULL, P_BOOL|P_VI_DEF,
2305 (char_u *)NULL, PV_NONE,
2306 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2307 {"spell", NULL, P_BOOL|P_VI_DEF|P_RWIN,
2308 #ifdef FEAT_SPELL
2309 (char_u *)VAR_WIN, PV_SPELL,
2310 #else
2311 (char_u *)NULL, PV_NONE,
2312 #endif
2313 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2314 {"spellcapcheck", "spc", P_STRING|P_ALLOCED|P_VI_DEF|P_RBUF,
2315 #ifdef FEAT_SPELL
2316 (char_u *)&p_spc, PV_SPC,
2317 {(char_u *)"[.?!]\\_[\\])'\" ]\\+", (char_u *)0L}
2318 #else
2319 (char_u *)NULL, PV_NONE,
2320 {(char_u *)0L, (char_u *)0L}
2321 #endif
2322 SCRIPTID_INIT},
2323 {"spellfile", "spf", P_STRING|P_EXPAND|P_ALLOCED|P_VI_DEF|P_SECURE|P_COMMA,
2324 #ifdef FEAT_SPELL
2325 (char_u *)&p_spf, PV_SPF,
2326 {(char_u *)"", (char_u *)0L}
2327 #else
2328 (char_u *)NULL, PV_NONE,
2329 {(char_u *)0L, (char_u *)0L}
2330 #endif
2331 SCRIPTID_INIT},
2332 {"spelllang", "spl", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_RBUF|P_EXPAND,
2333 #ifdef FEAT_SPELL
2334 (char_u *)&p_spl, PV_SPL,
2335 {(char_u *)"en", (char_u *)0L}
2336 #else
2337 (char_u *)NULL, PV_NONE,
2338 {(char_u *)0L, (char_u *)0L}
2339 #endif
2340 SCRIPTID_INIT},
2341 {"spellsuggest", "sps", P_STRING|P_VI_DEF|P_EXPAND|P_SECURE|P_COMMA,
2342 #ifdef FEAT_SPELL
2343 (char_u *)&p_sps, PV_NONE,
2344 {(char_u *)"best", (char_u *)0L}
2345 #else
2346 (char_u *)NULL, PV_NONE,
2347 {(char_u *)0L, (char_u *)0L}
2348 #endif
2349 SCRIPTID_INIT},
2350 {"splitbelow", "sb", P_BOOL|P_VI_DEF,
2351 #ifdef FEAT_WINDOWS
2352 (char_u *)&p_sb, PV_NONE,
2353 #else
2354 (char_u *)NULL, PV_NONE,
2355 #endif
2356 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2357 {"splitright", "spr", P_BOOL|P_VI_DEF,
2358 #ifdef FEAT_VERTSPLIT
2359 (char_u *)&p_spr, PV_NONE,
2360 #else
2361 (char_u *)NULL, PV_NONE,
2362 #endif
2363 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2364 {"startofline", "sol", P_BOOL|P_VI_DEF|P_VIM,
2365 (char_u *)&p_sol, PV_NONE,
2366 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2367 {"statusline" ,"stl", P_STRING|P_VI_DEF|P_ALLOCED|P_RSTAT,
2368 #ifdef FEAT_STL_OPT
2369 (char_u *)&p_stl, PV_STL,
2370 #else
2371 (char_u *)NULL, PV_NONE,
2372 #endif
2373 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2374 {"suffixes", "su", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2375 (char_u *)&p_su, PV_NONE,
2376 {(char_u *)".bak,~,.o,.h,.info,.swp,.obj",
2377 (char_u *)0L} SCRIPTID_INIT},
2378 {"suffixesadd", "sua", P_STRING|P_VI_DEF|P_ALLOCED|P_COMMA|P_NODUP,
2379 #ifdef FEAT_SEARCHPATH
2380 (char_u *)&p_sua, PV_SUA,
2381 {(char_u *)"", (char_u *)0L}
2382 #else
2383 (char_u *)NULL, PV_NONE,
2384 {(char_u *)0L, (char_u *)0L}
2385 #endif
2386 SCRIPTID_INIT},
2387 {"swapfile", "swf", P_BOOL|P_VI_DEF|P_RSTAT,
2388 (char_u *)&p_swf, PV_SWF,
2389 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2390 {"swapsync", "sws", P_STRING|P_VI_DEF,
2391 (char_u *)&p_sws, PV_NONE,
2392 {(char_u *)"fsync", (char_u *)0L} SCRIPTID_INIT},
2393 {"switchbuf", "swb", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2394 (char_u *)&p_swb, PV_NONE,
2395 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2396 {"synmaxcol", "smc", P_NUM|P_VI_DEF|P_RBUF,
2397 #ifdef FEAT_SYN_HL
2398 (char_u *)&p_smc, PV_SMC,
2399 {(char_u *)3000L, (char_u *)0L}
2400 #else
2401 (char_u *)NULL, PV_NONE,
2402 {(char_u *)0L, (char_u *)0L}
2403 #endif
2404 SCRIPTID_INIT},
2405 {"syntax", "syn", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB|P_NFNAME,
2406 #ifdef FEAT_SYN_HL
2407 (char_u *)&p_syn, PV_SYN,
2408 {(char_u *)"", (char_u *)0L}
2409 #else
2410 (char_u *)NULL, PV_NONE,
2411 {(char_u *)0L, (char_u *)0L}
2412 #endif
2413 SCRIPTID_INIT},
2414 {"tabline", "tal", P_STRING|P_VI_DEF|P_RALL,
2415 #ifdef FEAT_STL_OPT
2416 (char_u *)&p_tal, PV_NONE,
2417 #else
2418 (char_u *)NULL, PV_NONE,
2419 #endif
2420 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2421 {"tabpagemax", "tpm", P_NUM|P_VI_DEF,
2422 #ifdef FEAT_WINDOWS
2423 (char_u *)&p_tpm, PV_NONE,
2424 #else
2425 (char_u *)NULL, PV_NONE,
2426 #endif
2427 {(char_u *)10L, (char_u *)0L} SCRIPTID_INIT},
2428 {"tabstop", "ts", P_NUM|P_VI_DEF|P_RBUF,
2429 (char_u *)&p_ts, PV_TS,
2430 {(char_u *)8L, (char_u *)0L} SCRIPTID_INIT},
2431 {"tagbsearch", "tbs", P_BOOL|P_VI_DEF,
2432 (char_u *)&p_tbs, PV_NONE,
2433 #ifdef VMS /* binary searching doesn't appear to work on VMS */
2434 {(char_u *)0L, (char_u *)0L}
2435 #else
2436 {(char_u *)TRUE, (char_u *)0L}
2437 #endif
2438 SCRIPTID_INIT},
2439 {"taglength", "tl", P_NUM|P_VI_DEF,
2440 (char_u *)&p_tl, PV_NONE,
2441 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2442 {"tagrelative", "tr", P_BOOL|P_VIM,
2443 (char_u *)&p_tr, PV_NONE,
2444 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
2445 {"tags", "tag", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
2446 (char_u *)&p_tags, PV_TAGS,
2448 #if defined(FEAT_EMACS_TAGS) && !defined(CASE_INSENSITIVE_FILENAME)
2449 (char_u *)"./tags,./TAGS,tags,TAGS",
2450 #else
2451 (char_u *)"./tags,tags",
2452 #endif
2453 (char_u *)0L} SCRIPTID_INIT},
2454 {"tagstack", "tgst", P_BOOL|P_VI_DEF,
2455 (char_u *)&p_tgst, PV_NONE,
2456 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2457 {"term", NULL, P_STRING|P_EXPAND|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RALL,
2458 (char_u *)&T_NAME, PV_NONE,
2459 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2460 {"termbidi", "tbidi", P_BOOL|P_VI_DEF,
2461 #ifdef FEAT_ARABIC
2462 (char_u *)&p_tbidi, PV_NONE,
2463 #else
2464 (char_u *)NULL, PV_NONE,
2465 #endif
2466 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2467 {"termencoding", "tenc", P_STRING|P_VI_DEF|P_RCLR,
2468 #ifdef FEAT_MBYTE
2469 (char_u *)&p_tenc, PV_NONE,
2470 {(char_u *)"", (char_u *)0L}
2471 #else
2472 (char_u *)NULL, PV_NONE,
2473 {(char_u *)0L, (char_u *)0L}
2474 #endif
2475 SCRIPTID_INIT},
2476 {"terse", NULL, P_BOOL|P_VI_DEF,
2477 (char_u *)&p_terse, PV_NONE,
2478 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2479 {"textauto", "ta", P_BOOL|P_VIM,
2480 (char_u *)&p_ta, PV_NONE,
2481 {(char_u *)DFLT_TEXTAUTO, (char_u *)TRUE}
2482 SCRIPTID_INIT},
2483 {"textmode", "tx", P_BOOL|P_VI_DEF|P_NO_MKRC,
2484 (char_u *)&p_tx, PV_TX,
2486 #ifdef USE_CRNL
2487 (char_u *)TRUE,
2488 #else
2489 (char_u *)FALSE,
2490 #endif
2491 (char_u *)0L} SCRIPTID_INIT},
2492 {"textwidth", "tw", P_NUM|P_VI_DEF|P_VIM,
2493 (char_u *)&p_tw, PV_TW,
2494 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2495 {"thesaurus", "tsr", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
2496 #ifdef FEAT_INS_EXPAND
2497 (char_u *)&p_tsr, PV_TSR,
2498 #else
2499 (char_u *)NULL, PV_NONE,
2500 #endif
2501 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2502 {"tildeop", "top", P_BOOL|P_VI_DEF|P_VIM,
2503 (char_u *)&p_to, PV_NONE,
2504 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2505 {"timeout", "to", P_BOOL|P_VI_DEF,
2506 (char_u *)&p_timeout, PV_NONE,
2507 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2508 {"timeoutlen", "tm", P_NUM|P_VI_DEF,
2509 (char_u *)&p_tm, PV_NONE,
2510 {(char_u *)1000L, (char_u *)0L} SCRIPTID_INIT},
2511 {"title", NULL, P_BOOL|P_VI_DEF,
2512 #ifdef FEAT_TITLE
2513 (char_u *)&p_title, PV_NONE,
2514 #else
2515 (char_u *)NULL, PV_NONE,
2516 #endif
2517 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2518 {"titlelen", NULL, P_NUM|P_VI_DEF,
2519 #ifdef FEAT_TITLE
2520 (char_u *)&p_titlelen, PV_NONE,
2521 #else
2522 (char_u *)NULL, PV_NONE,
2523 #endif
2524 {(char_u *)85L, (char_u *)0L} SCRIPTID_INIT},
2525 {"titleold", NULL, P_STRING|P_VI_DEF|P_GETTEXT|P_SECURE|P_NO_MKRC,
2526 #ifdef FEAT_TITLE
2527 (char_u *)&p_titleold, PV_NONE,
2528 {(char_u *)N_("Thanks for flying Vim"),
2529 (char_u *)0L}
2530 #else
2531 (char_u *)NULL, PV_NONE,
2532 {(char_u *)0L, (char_u *)0L}
2533 #endif
2534 SCRIPTID_INIT},
2535 {"titlestring", NULL, P_STRING|P_VI_DEF,
2536 #ifdef FEAT_TITLE
2537 (char_u *)&p_titlestring, PV_NONE,
2538 #else
2539 (char_u *)NULL, PV_NONE,
2540 #endif
2541 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2542 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
2543 {"toolbar", "tb", P_STRING|P_COMMA|P_VI_DEF|P_NODUP,
2544 (char_u *)&p_toolbar, PV_NONE,
2545 {(char_u *)"icons,tooltips", (char_u *)0L}
2546 SCRIPTID_INIT},
2547 #endif
2548 #if defined(FEAT_TOOLBAR) && defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)
2549 {"toolbariconsize", "tbis", P_STRING|P_VI_DEF,
2550 (char_u *)&p_tbis, PV_NONE,
2551 {(char_u *)"small", (char_u *)0L} SCRIPTID_INIT},
2552 #endif
2553 {"ttimeout", NULL, P_BOOL|P_VI_DEF|P_VIM,
2554 (char_u *)&p_ttimeout, PV_NONE,
2555 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2556 {"ttimeoutlen", "ttm", P_NUM|P_VI_DEF,
2557 (char_u *)&p_ttm, PV_NONE,
2558 {(char_u *)-1L, (char_u *)0L} SCRIPTID_INIT},
2559 {"ttybuiltin", "tbi", P_BOOL|P_VI_DEF,
2560 (char_u *)&p_tbi, PV_NONE,
2561 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2562 {"ttyfast", "tf", P_BOOL|P_NO_MKRC|P_VI_DEF,
2563 (char_u *)&p_tf, PV_NONE,
2564 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2565 {"ttymouse", "ttym", P_STRING|P_NODEFAULT|P_NO_MKRC|P_VI_DEF,
2566 #if defined(FEAT_MOUSE) && (defined(UNIX) || defined(VMS))
2567 (char_u *)&p_ttym, PV_NONE,
2568 #else
2569 (char_u *)NULL, PV_NONE,
2570 #endif
2571 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2572 {"ttyscroll", "tsl", P_NUM|P_VI_DEF,
2573 (char_u *)&p_ttyscroll, PV_NONE,
2574 {(char_u *)999L, (char_u *)0L} SCRIPTID_INIT},
2575 {"ttytype", "tty", P_STRING|P_EXPAND|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RALL,
2576 (char_u *)&T_NAME, PV_NONE,
2577 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2578 {"undolevels", "ul", P_NUM|P_VI_DEF,
2579 (char_u *)&p_ul, PV_NONE,
2581 #if defined(UNIX) || defined(WIN3264) || defined(OS2) || defined(VMS)
2582 (char_u *)1000L,
2583 #else
2584 (char_u *)100L,
2585 #endif
2586 (char_u *)0L} SCRIPTID_INIT},
2587 {"updatecount", "uc", P_NUM|P_VI_DEF,
2588 (char_u *)&p_uc, PV_NONE,
2589 {(char_u *)200L, (char_u *)0L} SCRIPTID_INIT},
2590 {"updatetime", "ut", P_NUM|P_VI_DEF,
2591 (char_u *)&p_ut, PV_NONE,
2592 {(char_u *)4000L, (char_u *)0L} SCRIPTID_INIT},
2593 {"verbose", "vbs", P_NUM|P_VI_DEF,
2594 (char_u *)&p_verbose, PV_NONE,
2595 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2596 {"verbosefile", "vfile", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
2597 (char_u *)&p_vfile, PV_NONE,
2598 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2599 {"viewdir", "vdir", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
2600 #ifdef FEAT_SESSION
2601 (char_u *)&p_vdir, PV_NONE,
2602 {(char_u *)DFLT_VDIR, (char_u *)0L}
2603 #else
2604 (char_u *)NULL, PV_NONE,
2605 {(char_u *)0L, (char_u *)0L}
2606 #endif
2607 SCRIPTID_INIT},
2608 {"viewoptions", "vop", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2609 #ifdef FEAT_SESSION
2610 (char_u *)&p_vop, PV_NONE,
2611 {(char_u *)"folds,options,cursor", (char_u *)0L}
2612 #else
2613 (char_u *)NULL, PV_NONE,
2614 {(char_u *)0L, (char_u *)0L}
2615 #endif
2616 SCRIPTID_INIT},
2617 {"viminfo", "vi", P_STRING|P_COMMA|P_NODUP|P_SECURE,
2618 #ifdef FEAT_VIMINFO
2619 (char_u *)&p_viminfo, PV_NONE,
2620 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
2621 {(char_u *)"", (char_u *)"'100,<50,s10,h,rA:,rB:"}
2622 #else
2623 # ifdef AMIGA
2624 {(char_u *)"",
2625 (char_u *)"'100,<50,s10,h,rdf0:,rdf1:,rdf2:"}
2626 # else
2627 {(char_u *)"", (char_u *)"'100,<50,s10,h"}
2628 # endif
2629 #endif
2630 #else
2631 (char_u *)NULL, PV_NONE,
2632 {(char_u *)0L, (char_u *)0L}
2633 #endif
2634 SCRIPTID_INIT},
2635 {"virtualedit", "ve", P_STRING|P_COMMA|P_NODUP|P_VI_DEF|P_VIM,
2636 #ifdef FEAT_VIRTUALEDIT
2637 (char_u *)&p_ve, PV_NONE,
2638 {(char_u *)"", (char_u *)""}
2639 #else
2640 (char_u *)NULL, PV_NONE,
2641 {(char_u *)0L, (char_u *)0L}
2642 #endif
2643 SCRIPTID_INIT},
2644 {"visualbell", "vb", P_BOOL|P_VI_DEF,
2645 (char_u *)&p_vb, PV_NONE,
2646 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2647 {"w300", NULL, P_NUM|P_VI_DEF,
2648 (char_u *)NULL, PV_NONE,
2649 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2650 {"w1200", NULL, P_NUM|P_VI_DEF,
2651 (char_u *)NULL, PV_NONE,
2652 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2653 {"w9600", NULL, P_NUM|P_VI_DEF,
2654 (char_u *)NULL, PV_NONE,
2655 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2656 {"warn", NULL, P_BOOL|P_VI_DEF,
2657 (char_u *)&p_warn, PV_NONE,
2658 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2659 {"weirdinvert", "wiv", P_BOOL|P_VI_DEF|P_RCLR,
2660 (char_u *)&p_wiv, PV_NONE,
2661 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2662 {"whichwrap", "ww", P_STRING|P_VIM|P_COMMA|P_FLAGLIST,
2663 (char_u *)&p_ww, PV_NONE,
2664 {(char_u *)"", (char_u *)"b,s"} SCRIPTID_INIT},
2665 {"wildchar", "wc", P_NUM|P_VIM,
2666 (char_u *)&p_wc, PV_NONE,
2667 {(char_u *)(long)Ctrl_E, (char_u *)(long)TAB}
2668 SCRIPTID_INIT},
2669 {"wildcharm", "wcm", P_NUM|P_VI_DEF,
2670 (char_u *)&p_wcm, PV_NONE,
2671 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2672 {"wildignore", "wig", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2673 #ifdef FEAT_WILDIGN
2674 (char_u *)&p_wig, PV_NONE,
2675 #else
2676 (char_u *)NULL, PV_NONE,
2677 #endif
2678 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2679 {"wildmenu", "wmnu", P_BOOL|P_VI_DEF,
2680 #ifdef FEAT_WILDMENU
2681 (char_u *)&p_wmnu, PV_NONE,
2682 #else
2683 (char_u *)NULL, PV_NONE,
2684 #endif
2685 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2686 {"wildmode", "wim", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2687 (char_u *)&p_wim, PV_NONE,
2688 {(char_u *)"full", (char_u *)0L} SCRIPTID_INIT},
2689 {"wildoptions", "wop", P_STRING|P_VI_DEF,
2690 #ifdef FEAT_CMDL_COMPL
2691 (char_u *)&p_wop, PV_NONE,
2692 {(char_u *)"", (char_u *)0L}
2693 #else
2694 (char_u *)NULL, PV_NONE,
2695 {(char_u *)NULL, (char_u *)0L}
2696 #endif
2697 SCRIPTID_INIT},
2698 {"winaltkeys", "wak", P_STRING|P_VI_DEF,
2699 #ifdef FEAT_WAK
2700 (char_u *)&p_wak, PV_NONE,
2701 {(char_u *)"menu", (char_u *)0L}
2702 #else
2703 (char_u *)NULL, PV_NONE,
2704 {(char_u *)NULL, (char_u *)0L}
2705 #endif
2706 SCRIPTID_INIT},
2707 {"window", "wi", P_NUM|P_VI_DEF,
2708 (char_u *)&p_window, PV_NONE,
2709 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2710 {"winheight", "wh", P_NUM|P_VI_DEF,
2711 #ifdef FEAT_WINDOWS
2712 (char_u *)&p_wh, PV_NONE,
2713 #else
2714 (char_u *)NULL, PV_NONE,
2715 #endif
2716 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
2717 {"winfixheight", "wfh", P_BOOL|P_VI_DEF|P_RSTAT,
2718 #ifdef FEAT_WINDOWS
2719 (char_u *)VAR_WIN, PV_WFH,
2720 #else
2721 (char_u *)NULL, PV_NONE,
2722 #endif
2723 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2724 {"winfixwidth", "wfw", P_BOOL|P_VI_DEF|P_RSTAT,
2725 #ifdef FEAT_VERTSPLIT
2726 (char_u *)VAR_WIN, PV_WFW,
2727 #else
2728 (char_u *)NULL, PV_NONE,
2729 #endif
2730 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2731 {"winminheight", "wmh", P_NUM|P_VI_DEF,
2732 #ifdef FEAT_WINDOWS
2733 (char_u *)&p_wmh, PV_NONE,
2734 #else
2735 (char_u *)NULL, PV_NONE,
2736 #endif
2737 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
2738 {"winminwidth", "wmw", P_NUM|P_VI_DEF,
2739 #ifdef FEAT_VERTSPLIT
2740 (char_u *)&p_wmw, PV_NONE,
2741 #else
2742 (char_u *)NULL, PV_NONE,
2743 #endif
2744 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
2745 {"winwidth", "wiw", P_NUM|P_VI_DEF,
2746 #ifdef FEAT_VERTSPLIT
2747 (char_u *)&p_wiw, PV_NONE,
2748 #else
2749 (char_u *)NULL, PV_NONE,
2750 #endif
2751 {(char_u *)20L, (char_u *)0L} SCRIPTID_INIT},
2752 {"wrap", NULL, P_BOOL|P_VI_DEF|P_RWIN,
2753 (char_u *)VAR_WIN, PV_WRAP,
2754 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2755 {"wrapmargin", "wm", P_NUM|P_VI_DEF,
2756 (char_u *)&p_wm, PV_WM,
2757 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2758 {"wrapscan", "ws", P_BOOL|P_VI_DEF,
2759 (char_u *)&p_ws, PV_NONE,
2760 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2761 {"write", NULL, P_BOOL|P_VI_DEF,
2762 (char_u *)&p_write, PV_NONE,
2763 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2764 {"writeany", "wa", P_BOOL|P_VI_DEF,
2765 (char_u *)&p_wa, PV_NONE,
2766 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2767 {"writebackup", "wb", P_BOOL|P_VI_DEF|P_VIM,
2768 (char_u *)&p_wb, PV_NONE,
2770 #ifdef FEAT_WRITEBACKUP
2771 (char_u *)TRUE,
2772 #else
2773 (char_u *)FALSE,
2774 #endif
2775 (char_u *)0L} SCRIPTID_INIT},
2776 {"writedelay", "wd", P_NUM|P_VI_DEF,
2777 (char_u *)&p_wd, PV_NONE,
2778 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2780 /* terminal output codes */
2781 #define p_term(sss, vvv) {sss, NULL, P_STRING|P_VI_DEF|P_RALL|P_SECURE, \
2782 (char_u *)&vvv, PV_NONE, \
2783 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2785 p_term("t_AB", T_CAB)
2786 p_term("t_AF", T_CAF)
2787 p_term("t_AL", T_CAL)
2788 p_term("t_al", T_AL)
2789 p_term("t_bc", T_BC)
2790 p_term("t_cd", T_CD)
2791 p_term("t_ce", T_CE)
2792 p_term("t_cl", T_CL)
2793 p_term("t_cm", T_CM)
2794 p_term("t_Co", T_CCO)
2795 p_term("t_CS", T_CCS)
2796 p_term("t_cs", T_CS)
2797 #ifdef FEAT_VERTSPLIT
2798 p_term("t_CV", T_CSV)
2799 #endif
2800 p_term("t_ut", T_UT)
2801 p_term("t_da", T_DA)
2802 p_term("t_db", T_DB)
2803 p_term("t_DL", T_CDL)
2804 p_term("t_dl", T_DL)
2805 p_term("t_fs", T_FS)
2806 p_term("t_IE", T_CIE)
2807 p_term("t_IS", T_CIS)
2808 p_term("t_ke", T_KE)
2809 p_term("t_ks", T_KS)
2810 p_term("t_le", T_LE)
2811 p_term("t_mb", T_MB)
2812 p_term("t_md", T_MD)
2813 p_term("t_me", T_ME)
2814 p_term("t_mr", T_MR)
2815 p_term("t_ms", T_MS)
2816 p_term("t_nd", T_ND)
2817 p_term("t_op", T_OP)
2818 p_term("t_RI", T_CRI)
2819 p_term("t_RV", T_CRV)
2820 p_term("t_Sb", T_CSB)
2821 p_term("t_Sf", T_CSF)
2822 p_term("t_se", T_SE)
2823 p_term("t_so", T_SO)
2824 p_term("t_sr", T_SR)
2825 p_term("t_ts", T_TS)
2826 p_term("t_te", T_TE)
2827 p_term("t_ti", T_TI)
2828 p_term("t_ue", T_UE)
2829 p_term("t_us", T_US)
2830 p_term("t_vb", T_VB)
2831 p_term("t_ve", T_VE)
2832 p_term("t_vi", T_VI)
2833 p_term("t_vs", T_VS)
2834 p_term("t_WP", T_CWP)
2835 p_term("t_WS", T_CWS)
2836 p_term("t_SI", T_CSI)
2837 p_term("t_EI", T_CEI)
2838 p_term("t_xs", T_XS)
2839 p_term("t_ZH", T_CZH)
2840 p_term("t_ZR", T_CZR)
2842 /* terminal key codes are not in here */
2844 /* end marker */
2845 {NULL, NULL, 0, NULL, PV_NONE, {NULL, NULL} SCRIPTID_INIT}
2848 #define PARAM_COUNT (sizeof(options) / sizeof(struct vimoption))
2850 #ifdef FEAT_MBYTE
2851 static char *(p_ambw_values[]) = {"single", "double", NULL};
2852 #endif
2853 static char *(p_bg_values[]) = {"light", "dark", NULL};
2854 static char *(p_nf_values[]) = {"octal", "hex", "alpha", NULL};
2855 static char *(p_ff_values[]) = {FF_UNIX, FF_DOS, FF_MAC, NULL};
2856 #ifdef FEAT_CMDL_COMPL
2857 static char *(p_wop_values[]) = {"tagfile", NULL};
2858 #endif
2859 #ifdef FEAT_WAK
2860 static char *(p_wak_values[]) = {"yes", "menu", "no", NULL};
2861 #endif
2862 static char *(p_mousem_values[]) = {"extend", "popup", "popup_setpos", "mac", NULL};
2863 #ifdef FEAT_VISUAL
2864 static char *(p_sel_values[]) = {"inclusive", "exclusive", "old", NULL};
2865 static char *(p_slm_values[]) = {"mouse", "key", "cmd", NULL};
2866 #endif
2867 #ifdef FEAT_VISUAL
2868 static char *(p_km_values[]) = {"startsel", "stopsel", NULL};
2869 #endif
2870 #ifdef FEAT_BROWSE
2871 static char *(p_bsdir_values[]) = {"current", "last", "buffer", NULL};
2872 #endif
2873 #ifdef FEAT_SCROLLBIND
2874 static char *(p_scbopt_values[]) = {"ver", "hor", "jump", NULL};
2875 #endif
2876 static char *(p_debug_values[]) = {"msg", "throw", "beep", NULL};
2877 #ifdef FEAT_VERTSPLIT
2878 static char *(p_ead_values[]) = {"both", "ver", "hor", NULL};
2879 #endif
2880 #if defined(FEAT_QUICKFIX)
2881 # ifdef FEAT_AUTOCMD
2882 static char *(p_buftype_values[]) = {"nofile", "nowrite", "quickfix", "help", "acwrite", NULL};
2883 # else
2884 static char *(p_buftype_values[]) = {"nofile", "nowrite", "quickfix", "help", NULL};
2885 # endif
2886 static char *(p_bufhidden_values[]) = {"hide", "unload", "delete", "wipe", NULL};
2887 #endif
2888 static char *(p_bs_values[]) = {"indent", "eol", "start", NULL};
2889 #ifdef FEAT_FOLDING
2890 static char *(p_fdm_values[]) = {"manual", "expr", "marker", "indent", "syntax",
2891 # ifdef FEAT_DIFF
2892 "diff",
2893 # endif
2894 NULL};
2895 static char *(p_fcl_values[]) = {"all", NULL};
2896 #endif
2897 #ifdef FEAT_INS_EXPAND
2898 static char *(p_cot_values[]) = {"menu", "menuone", "longest", "preview", NULL};
2899 #endif
2901 static void set_option_default __ARGS((int, int opt_flags, int compatible));
2902 static void set_options_default __ARGS((int opt_flags));
2903 static char_u *term_bg_default __ARGS((void));
2904 static void did_set_option __ARGS((int opt_idx, int opt_flags, int new_value));
2905 static char_u *illegal_char __ARGS((char_u *, int));
2906 static int string_to_key __ARGS((char_u *arg));
2907 #ifdef FEAT_CMDWIN
2908 static char_u *check_cedit __ARGS((void));
2909 #endif
2910 #ifdef FEAT_TITLE
2911 static void did_set_title __ARGS((int icon));
2912 #endif
2913 static char_u *option_expand __ARGS((int opt_idx, char_u *val));
2914 static void didset_options __ARGS((void));
2915 static void check_string_option __ARGS((char_u **pp));
2916 #if defined(FEAT_EVAL) || defined(PROTO)
2917 static long_u *insecure_flag __ARGS((int opt_idx, int opt_flags));
2918 #else
2919 # define insecure_flag(opt_idx, opt_flags) (&options[opt_idx].flags)
2920 #endif
2921 static void set_string_option_global __ARGS((int opt_idx, char_u **varp));
2922 static void set_string_option __ARGS((int opt_idx, char_u *value, int opt_flags));
2923 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));
2924 static char_u *set_chars_option __ARGS((char_u **varp));
2925 #ifdef FEAT_CLIPBOARD
2926 static char_u *check_clipboard_option __ARGS((void));
2927 #endif
2928 #ifdef FEAT_SPELL
2929 static char_u *compile_cap_prog __ARGS((buf_T *buf));
2930 #endif
2931 #ifdef FEAT_EVAL
2932 static void set_option_scriptID_idx __ARGS((int opt_idx, int opt_flags, int id));
2933 #endif
2934 static char_u *set_bool_option __ARGS((int opt_idx, char_u *varp, int value, int opt_flags));
2935 static char_u *set_num_option __ARGS((int opt_idx, char_u *varp, long value, char_u *errbuf, size_t errbuflen, int opt_flags));
2936 static void check_redraw __ARGS((long_u flags));
2937 static int findoption __ARGS((char_u *));
2938 static int find_key_option __ARGS((char_u *));
2939 static void showoptions __ARGS((int all, int opt_flags));
2940 static int optval_default __ARGS((struct vimoption *, char_u *varp));
2941 static void showoneopt __ARGS((struct vimoption *, int opt_flags));
2942 static int put_setstring __ARGS((FILE *fd, char *cmd, char *name, char_u **valuep, int expand));
2943 static int put_setnum __ARGS((FILE *fd, char *cmd, char *name, long *valuep));
2944 static int put_setbool __ARGS((FILE *fd, char *cmd, char *name, int value));
2945 static int istermoption __ARGS((struct vimoption *));
2946 static char_u *get_varp_scope __ARGS((struct vimoption *p, int opt_flags));
2947 static char_u *get_varp __ARGS((struct vimoption *));
2948 static void option_value2string __ARGS((struct vimoption *, int opt_flags));
2949 static int wc_use_keyname __ARGS((char_u *varp, long *wcp));
2950 #ifdef FEAT_LANGMAP
2951 static void langmap_init __ARGS((void));
2952 static void langmap_set __ARGS((void));
2953 #endif
2954 static void paste_option_changed __ARGS((void));
2955 static void compatible_set __ARGS((void));
2956 #ifdef FEAT_LINEBREAK
2957 static void fill_breakat_flags __ARGS((void));
2958 #endif
2959 static int opt_strings_flags __ARGS((char_u *val, char **values, unsigned *flagp, int list));
2960 static int check_opt_strings __ARGS((char_u *val, char **values, int));
2961 static int check_opt_wim __ARGS((void));
2964 * Initialize the options, first part.
2966 * Called only once from main(), just after creating the first buffer.
2968 void
2969 set_init_1()
2971 char_u *p;
2972 int opt_idx;
2973 long_u n;
2975 #ifdef FEAT_LANGMAP
2976 langmap_init();
2977 #endif
2979 /* Be Vi compatible by default */
2980 p_cp = TRUE;
2982 /* Use POSIX compatibility when $VIM_POSIX is set. */
2983 if (mch_getenv((char_u *)"VIM_POSIX") != NULL)
2985 set_string_default("cpo", (char_u *)CPO_ALL);
2986 set_string_default("shm", (char_u *)"A");
2990 * Find default value for 'shell' option.
2991 * Don't use it if it is empty.
2993 if (((p = mch_getenv((char_u *)"SHELL")) != NULL && *p != NUL)
2994 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
2995 # ifdef __EMX__
2996 || ((p = mch_getenv((char_u *)"EMXSHELL")) != NULL && *p != NUL)
2997 # endif
2998 || ((p = mch_getenv((char_u *)"COMSPEC")) != NULL && *p != NUL)
2999 # ifdef WIN3264
3000 || ((p = default_shell()) != NULL && *p != NUL)
3001 # endif
3002 #endif
3004 set_string_default("sh", p);
3006 #ifdef FEAT_WILDIGN
3008 * Set the default for 'backupskip' to include environment variables for
3009 * temp files.
3012 # ifdef UNIX
3013 static char *(names[4]) = {"", "TMPDIR", "TEMP", "TMP"};
3014 # else
3015 static char *(names[3]) = {"TMPDIR", "TEMP", "TMP"};
3016 # endif
3017 int len;
3018 garray_T ga;
3019 int mustfree;
3021 ga_init2(&ga, 1, 100);
3022 for (n = 0; n < (long)(sizeof(names) / sizeof(char *)); ++n)
3024 mustfree = FALSE;
3025 # ifdef UNIX
3026 if (*names[n] == NUL)
3027 p = (char_u *)"/tmp";
3028 else
3029 # endif
3030 p = vim_getenv((char_u *)names[n], &mustfree);
3031 if (p != NULL && *p != NUL)
3033 /* First time count the NUL, otherwise count the ','. */
3034 len = (int)STRLEN(p) + 3;
3035 if (ga_grow(&ga, len) == OK)
3037 if (ga.ga_len > 0)
3038 STRCAT(ga.ga_data, ",");
3039 STRCAT(ga.ga_data, p);
3040 add_pathsep(ga.ga_data);
3041 STRCAT(ga.ga_data, "*");
3042 ga.ga_len += len;
3045 if (mustfree)
3046 vim_free(p);
3048 if (ga.ga_data != NULL)
3050 set_string_default("bsk", ga.ga_data);
3051 vim_free(ga.ga_data);
3054 #endif
3057 * 'maxmemtot' and 'maxmem' may have to be adjusted for available memory
3059 opt_idx = findoption((char_u *)"maxmemtot");
3060 if (opt_idx >= 0)
3062 #if !defined(HAVE_AVAIL_MEM) && !defined(HAVE_TOTAL_MEM)
3063 if (options[opt_idx].def_val[VI_DEFAULT] == (char_u *)0L)
3064 #endif
3066 #ifdef HAVE_AVAIL_MEM
3067 /* Use amount of memory available at this moment. */
3068 n = (mch_avail_mem(FALSE) >> 11);
3069 #else
3070 # ifdef HAVE_TOTAL_MEM
3071 /* Use amount of memory available to Vim. */
3072 n = (mch_total_mem(FALSE) >> 1);
3073 # else
3074 n = (0x7fffffff >> 11);
3075 # endif
3076 #endif
3077 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)n;
3078 opt_idx = findoption((char_u *)"maxmem");
3079 if (opt_idx >= 0)
3081 #if !defined(HAVE_AVAIL_MEM) && !defined(HAVE_TOTAL_MEM)
3082 if ((long)options[opt_idx].def_val[VI_DEFAULT] > n
3083 || (long)options[opt_idx].def_val[VI_DEFAULT] == 0L)
3084 #endif
3085 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)n;
3090 #ifdef FEAT_GUI_W32
3091 /* force 'shortname' for Win32s */
3092 if (gui_is_win32s())
3094 opt_idx = findoption((char_u *)"shortname");
3095 if (opt_idx >= 0)
3096 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)TRUE;
3098 #endif
3100 #ifdef FEAT_SEARCHPATH
3102 char_u *cdpath;
3103 char_u *buf;
3104 int i;
3105 int j;
3106 int mustfree = FALSE;
3108 /* Initialize the 'cdpath' option's default value. */
3109 cdpath = vim_getenv((char_u *)"CDPATH", &mustfree);
3110 if (cdpath != NULL)
3112 buf = alloc((unsigned)((STRLEN(cdpath) << 1) + 2));
3113 if (buf != NULL)
3115 buf[0] = ','; /* start with ",", current dir first */
3116 j = 1;
3117 for (i = 0; cdpath[i] != NUL; ++i)
3119 if (vim_ispathlistsep(cdpath[i]))
3120 buf[j++] = ',';
3121 else
3123 if (cdpath[i] == ' ' || cdpath[i] == ',')
3124 buf[j++] = '\\';
3125 buf[j++] = cdpath[i];
3128 buf[j] = NUL;
3129 opt_idx = findoption((char_u *)"cdpath");
3130 if (opt_idx >= 0)
3132 options[opt_idx].def_val[VI_DEFAULT] = buf;
3133 options[opt_idx].flags |= P_DEF_ALLOCED;
3136 if (mustfree)
3137 vim_free(cdpath);
3140 #endif
3142 #if defined(FEAT_POSTSCRIPT) && (defined(MSWIN) || defined(OS2) || defined(VMS) || defined(EBCDIC) || defined(MAC) || defined(hpux))
3143 /* Set print encoding on platforms that don't default to latin1 */
3144 set_string_default("penc",
3145 # if defined(MSWIN) || defined(OS2)
3146 (char_u *)"cp1252"
3147 # else
3148 # ifdef VMS
3149 (char_u *)"dec-mcs"
3150 # else
3151 # ifdef EBCDIC
3152 (char_u *)"ebcdic-uk"
3153 # else
3154 # ifdef MAC
3155 (char_u *)"mac-roman"
3156 # else /* HPUX */
3157 (char_u *)"hp-roman8"
3158 # endif
3159 # endif
3160 # endif
3161 # endif
3163 #endif
3165 #ifdef FEAT_POSTSCRIPT
3166 /* 'printexpr' must be allocated to be able to evaluate it. */
3167 set_string_default("pexpr",
3168 # if defined(MSWIN) || defined(MSDOS) || defined(OS2)
3169 (char_u *)"system('copy' . ' ' . v:fname_in . (&printdevice == '' ? ' LPT1:' : (' \"' . &printdevice . '\"'))) . delete(v:fname_in)"
3170 # else
3171 # ifdef VMS
3172 (char_u *)"system('print/delete' . (&printdevice == '' ? '' : ' /queue=' . &printdevice) . ' ' . v:fname_in)"
3174 # else
3175 (char_u *)"system('lpr' . (&printdevice == '' ? '' : ' -P' . &printdevice) . ' ' . v:fname_in) . delete(v:fname_in) + v:shell_error"
3176 # endif
3177 # endif
3179 #endif
3182 * Set all the options (except the terminal options) to their default
3183 * value. Also set the global value for local options.
3185 set_options_default(0);
3187 #ifdef FEAT_GUI
3188 if (found_reverse_arg)
3189 set_option_value((char_u *)"bg", 0L, (char_u *)"dark", 0);
3190 #endif
3192 curbuf->b_p_initialized = TRUE;
3193 curbuf->b_p_ar = -1; /* no local 'autoread' value */
3194 check_buf_options(curbuf);
3195 check_win_options(curwin);
3196 check_options();
3198 /* Must be before option_expand(), because that one needs vim_isIDc() */
3199 didset_options();
3201 #ifdef FEAT_SPELL
3202 /* Use the current chartab for the generic chartab. */
3203 init_spell_chartab();
3204 #endif
3206 #ifdef FEAT_LINEBREAK
3208 * initialize the table for 'breakat'.
3210 fill_breakat_flags();
3211 #endif
3214 * Expand environment variables and things like "~" for the defaults.
3215 * If option_expand() returns non-NULL the variable is expanded. This can
3216 * only happen for non-indirect options.
3217 * Also set the default to the expanded value, so ":set" does not list
3218 * them.
3219 * Don't set the P_ALLOCED flag, because we don't want to free the
3220 * default.
3222 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
3224 if ((options[opt_idx].flags & P_GETTEXT)
3225 && options[opt_idx].var != NULL)
3226 p = (char_u *)_(*(char **)options[opt_idx].var);
3227 else
3228 p = option_expand(opt_idx, NULL);
3229 if (p != NULL && (p = vim_strsave(p)) != NULL)
3231 *(char_u **)options[opt_idx].var = p;
3232 /* VIMEXP
3233 * Defaults for all expanded options are currently the same for Vi
3234 * and Vim. When this changes, add some code here! Also need to
3235 * split P_DEF_ALLOCED in two.
3237 if (options[opt_idx].flags & P_DEF_ALLOCED)
3238 vim_free(options[opt_idx].def_val[VI_DEFAULT]);
3239 options[opt_idx].def_val[VI_DEFAULT] = p;
3240 options[opt_idx].flags |= P_DEF_ALLOCED;
3244 /* Initialize the highlight_attr[] table. */
3245 highlight_changed();
3247 save_file_ff(curbuf); /* Buffer is unchanged */
3249 /* Parse default for 'wildmode' */
3250 check_opt_wim();
3252 #if defined(FEAT_ARABIC)
3253 /* Detect use of mlterm.
3254 * Mlterm is a terminal emulator akin to xterm that has some special
3255 * abilities (bidi namely).
3256 * NOTE: mlterm's author is being asked to 'set' a variable
3257 * instead of an environment variable due to inheritance.
3259 if (mch_getenv((char_u *)"MLTERM") != NULL)
3260 set_option_value((char_u *)"tbidi", 1L, NULL, 0);
3261 #endif
3263 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
3264 /* Parse default for 'fillchars'. */
3265 (void)set_chars_option(&p_fcs);
3266 #endif
3268 #ifdef FEAT_CLIPBOARD
3269 /* Parse default for 'clipboard' */
3270 (void)check_clipboard_option();
3271 #endif
3273 #ifdef FEAT_MBYTE
3274 # if defined(WIN3264) && defined(FEAT_GETTEXT)
3276 * If $LANG isn't set, try to get a good value for it. This makes the
3277 * right language be used automatically. Don't do this for English.
3279 if (mch_getenv((char_u *)"LANG") == NULL)
3281 char buf[20];
3283 /* Could use LOCALE_SISO639LANGNAME, but it's not in Win95.
3284 * LOCALE_SABBREVLANGNAME gives us three letters, like "enu", we use
3285 * only the first two. */
3286 n = GetLocaleInfo(LOCALE_USER_DEFAULT, LOCALE_SABBREVLANGNAME,
3287 (LPTSTR)buf, 20);
3288 if (n >= 2 && STRNICMP(buf, "en", 2) != 0)
3290 /* There are a few exceptions (probably more) */
3291 if (STRNICMP(buf, "cht", 3) == 0 || STRNICMP(buf, "zht", 3) == 0)
3292 STRCPY(buf, "zh_TW");
3293 else if (STRNICMP(buf, "chs", 3) == 0
3294 || STRNICMP(buf, "zhc", 3) == 0)
3295 STRCPY(buf, "zh_CN");
3296 else if (STRNICMP(buf, "jp", 2) == 0)
3297 STRCPY(buf, "ja");
3298 else
3299 buf[2] = NUL; /* truncate to two-letter code */
3300 vim_setenv("LANG", buf);
3303 # else
3304 # ifdef MACOS_CONVERT
3305 /* Moved to os_mac_conv.c to avoid dependency problems. */
3306 mac_lang_init();
3307 # endif
3308 # endif
3310 /* enc_locale() will try to find the encoding of the current locale. */
3311 p = enc_locale();
3312 if (p != NULL)
3314 char_u *save_enc;
3316 /* Try setting 'encoding' and check if the value is valid.
3317 * If not, go back to the default "latin1". */
3318 save_enc = p_enc;
3319 p_enc = p;
3320 if (STRCMP(p_enc, "gb18030") == 0)
3322 /* We don't support "gb18030", but "cp936" is a good substitute
3323 * for practical purposes, thus use that. It's not an alias to
3324 * still support conversion between gb18030 and utf-8. */
3325 p_enc = vim_strsave((char_u *)"cp936");
3326 vim_free(p);
3328 if (mb_init() == NULL)
3330 opt_idx = findoption((char_u *)"encoding");
3331 if (opt_idx >= 0)
3333 options[opt_idx].def_val[VI_DEFAULT] = p_enc;
3334 options[opt_idx].flags |= P_DEF_ALLOCED;
3337 #if defined(MSDOS) || defined(MSWIN) || defined(OS2) || defined(MACOS) \
3338 || defined(VMS)
3339 if (STRCMP(p_enc, "latin1") == 0
3340 # ifdef FEAT_MBYTE
3341 || enc_utf8
3342 # endif
3345 /* Adjust the default for 'isprint' and 'iskeyword' to match
3346 * latin1. Also set the defaults for when 'nocompatible' is
3347 * set. */
3348 set_string_option_direct((char_u *)"isp", -1,
3349 ISP_LATIN1, OPT_FREE, SID_NONE);
3350 set_string_option_direct((char_u *)"isk", -1,
3351 ISK_LATIN1, OPT_FREE, SID_NONE);
3352 opt_idx = findoption((char_u *)"isp");
3353 if (opt_idx >= 0)
3354 options[opt_idx].def_val[VIM_DEFAULT] = ISP_LATIN1;
3355 opt_idx = findoption((char_u *)"isk");
3356 if (opt_idx >= 0)
3357 options[opt_idx].def_val[VIM_DEFAULT] = ISK_LATIN1;
3358 (void)init_chartab();
3360 #endif
3362 # if defined(WIN3264) && !defined(FEAT_GUI)
3363 /* Win32 console: When GetACP() returns a different value from
3364 * GetConsoleCP() set 'termencoding'. */
3365 if (GetACP() != GetConsoleCP())
3367 char buf[50];
3369 sprintf(buf, "cp%ld", (long)GetConsoleCP());
3370 p_tenc = vim_strsave((char_u *)buf);
3371 if (p_tenc != NULL)
3373 opt_idx = findoption((char_u *)"termencoding");
3374 if (opt_idx >= 0)
3376 options[opt_idx].def_val[VI_DEFAULT] = p_tenc;
3377 options[opt_idx].flags |= P_DEF_ALLOCED;
3379 convert_setup(&input_conv, p_tenc, p_enc);
3380 convert_setup(&output_conv, p_enc, p_tenc);
3382 else
3383 p_tenc = empty_option;
3385 # endif
3386 # if defined(WIN3264) && defined(FEAT_MBYTE)
3387 /* $HOME may have characters in active code page. */
3388 init_homedir();
3389 # endif
3391 else
3393 vim_free(p_enc);
3394 p_enc = save_enc;
3397 #endif
3399 #ifdef FEAT_MULTI_LANG
3400 /* Set the default for 'helplang'. */
3401 set_helplang_default(get_mess_lang());
3402 #endif
3406 * Set an option to its default value.
3407 * This does not take care of side effects!
3409 static void
3410 set_option_default(opt_idx, opt_flags, compatible)
3411 int opt_idx;
3412 int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */
3413 int compatible; /* use Vi default value */
3415 char_u *varp; /* pointer to variable for current option */
3416 int dvi; /* index in def_val[] */
3417 long_u flags;
3418 long_u *flagsp;
3419 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
3421 varp = get_varp_scope(&(options[opt_idx]), both ? OPT_LOCAL : opt_flags);
3422 flags = options[opt_idx].flags;
3423 if (varp != NULL) /* skip hidden option, nothing to do for it */
3425 dvi = ((flags & P_VI_DEF) || compatible) ? VI_DEFAULT : VIM_DEFAULT;
3426 if (flags & P_STRING)
3428 /* Use set_string_option_direct() for local options to handle
3429 * freeing and allocating the value. */
3430 if (options[opt_idx].indir != PV_NONE)
3431 set_string_option_direct(NULL, opt_idx,
3432 options[opt_idx].def_val[dvi], opt_flags, 0);
3433 else
3435 if ((opt_flags & OPT_FREE) && (flags & P_ALLOCED))
3436 free_string_option(*(char_u **)(varp));
3437 *(char_u **)varp = options[opt_idx].def_val[dvi];
3438 options[opt_idx].flags &= ~P_ALLOCED;
3441 else if (flags & P_NUM)
3443 if (options[opt_idx].indir == PV_SCROLL)
3444 win_comp_scroll(curwin);
3445 else
3447 *(long *)varp = (long)(long_i)options[opt_idx].def_val[dvi];
3448 /* May also set global value for local option. */
3449 if (both)
3450 *(long *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) =
3451 *(long *)varp;
3454 else /* P_BOOL */
3456 /* the cast to long is required for Manx C, long_i is needed for
3457 * MSVC */
3458 *(int *)varp = (int)(long)(long_i)options[opt_idx].def_val[dvi];
3459 #ifdef UNIX
3460 /* 'modeline' defaults to off for root */
3461 if (options[opt_idx].indir == PV_ML && getuid() == ROOT_UID)
3462 *(int *)varp = FALSE;
3463 #endif
3464 /* May also set global value for local option. */
3465 if (both)
3466 *(int *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) =
3467 *(int *)varp;
3470 /* The default value is not insecure. */
3471 flagsp = insecure_flag(opt_idx, opt_flags);
3472 *flagsp = *flagsp & ~P_INSECURE;
3475 #ifdef FEAT_EVAL
3476 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
3477 #endif
3481 * Set all options (except terminal options) to their default value.
3483 static void
3484 set_options_default(opt_flags)
3485 int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */
3487 int i;
3488 #ifdef FEAT_WINDOWS
3489 win_T *wp;
3490 tabpage_T *tp;
3491 #endif
3493 for (i = 0; !istermoption(&options[i]); i++)
3494 if (!(options[i].flags & P_NODEFAULT))
3495 set_option_default(i, opt_flags, p_cp);
3497 #ifdef FEAT_WINDOWS
3498 /* The 'scroll' option must be computed for all windows. */
3499 FOR_ALL_TAB_WINDOWS(tp, wp)
3500 win_comp_scroll(wp);
3501 #else
3502 win_comp_scroll(curwin);
3503 #endif
3507 * Set the Vi-default value of a string option.
3508 * Used for 'sh', 'backupskip' and 'term'.
3510 void
3511 set_string_default(name, val)
3512 char *name;
3513 char_u *val;
3515 char_u *p;
3516 int opt_idx;
3518 p = vim_strsave(val);
3519 if (p != NULL) /* we don't want a NULL */
3521 opt_idx = findoption((char_u *)name);
3522 if (opt_idx >= 0)
3524 if (options[opt_idx].flags & P_DEF_ALLOCED)
3525 vim_free(options[opt_idx].def_val[VI_DEFAULT]);
3526 options[opt_idx].def_val[VI_DEFAULT] = p;
3527 options[opt_idx].flags |= P_DEF_ALLOCED;
3533 * Set the Vi-default value of a number option.
3534 * Used for 'lines' and 'columns'.
3536 void
3537 set_number_default(name, val)
3538 char *name;
3539 long val;
3541 int opt_idx;
3543 opt_idx = findoption((char_u *)name);
3544 if (opt_idx >= 0)
3545 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
3548 #if defined(EXITFREE) || defined(PROTO)
3550 * Free all options.
3552 void
3553 free_all_options()
3555 int i;
3557 for (i = 0; !istermoption(&options[i]); i++)
3559 if (options[i].indir == PV_NONE)
3561 /* global option: free value and default value. */
3562 if (options[i].flags & P_ALLOCED && options[i].var != NULL)
3563 free_string_option(*(char_u **)options[i].var);
3564 if (options[i].flags & P_DEF_ALLOCED)
3565 free_string_option(options[i].def_val[VI_DEFAULT]);
3567 else if (options[i].var != VAR_WIN
3568 && (options[i].flags & P_STRING))
3569 /* buffer-local option: free global value */
3570 free_string_option(*(char_u **)options[i].var);
3573 #endif
3577 * Initialize the options, part two: After getting Rows and Columns and
3578 * setting 'term'.
3580 void
3581 set_init_2()
3583 int idx;
3586 * 'scroll' defaults to half the window height. Note that this default is
3587 * wrong when the window height changes.
3589 set_number_default("scroll", (long)((long_u)Rows >> 1));
3590 idx = findoption((char_u *)"scroll");
3591 if (idx >= 0 && !(options[idx].flags & P_WAS_SET))
3592 set_option_default(idx, OPT_LOCAL, p_cp);
3593 comp_col();
3596 * 'window' is only for backwards compatibility with Vi.
3597 * Default is Rows - 1.
3599 if (!option_was_set((char_u *)"window"))
3600 p_window = Rows - 1;
3601 set_number_default("window", Rows - 1);
3603 /* For DOS console the default is always black. */
3604 #if !((defined(MSDOS) || defined(OS2) || defined(WIN3264)) && !defined(FEAT_GUI))
3606 * If 'background' wasn't set by the user, try guessing the value,
3607 * depending on the terminal name. Only need to check for terminals
3608 * with a dark background, that can handle color.
3610 idx = findoption((char_u *)"bg");
3611 if (idx >= 0 && !(options[idx].flags & P_WAS_SET)
3612 && *term_bg_default() == 'd')
3614 set_string_option_direct(NULL, idx, (char_u *)"dark", OPT_FREE, 0);
3615 /* don't mark it as set, when starting the GUI it may be
3616 * changed again */
3617 options[idx].flags &= ~P_WAS_SET;
3619 #endif
3621 #ifdef CURSOR_SHAPE
3622 parse_shape_opt(SHAPE_CURSOR); /* set cursor shapes from 'guicursor' */
3623 #endif
3624 #ifdef FEAT_MOUSESHAPE
3625 parse_shape_opt(SHAPE_MOUSE); /* set mouse shapes from 'mouseshape' */
3626 #endif
3627 #ifdef FEAT_PRINTER
3628 (void)parse_printoptions(); /* parse 'printoptions' default value */
3629 #endif
3633 * Return "dark" or "light" depending on the kind of terminal.
3634 * This is just guessing! Recognized are:
3635 * "linux" Linux console
3636 * "screen.linux" Linux console with screen
3637 * "cygwin" Cygwin shell
3638 * "putty" Putty program
3639 * We also check the COLORFGBG environment variable, which is set by
3640 * rxvt and derivatives. This variable contains either two or three
3641 * values separated by semicolons; we want the last value in either
3642 * case. If this value is 0-6 or 8, our background is dark.
3644 static char_u *
3645 term_bg_default()
3647 #if defined(MSDOS) || defined(OS2) || defined(WIN3264)
3648 /* DOS console nearly always black */
3649 return (char_u *)"dark";
3650 #else
3651 char_u *p;
3653 if (STRCMP(T_NAME, "linux") == 0
3654 || STRCMP(T_NAME, "screen.linux") == 0
3655 || STRCMP(T_NAME, "cygwin") == 0
3656 || STRCMP(T_NAME, "putty") == 0
3657 || ((p = mch_getenv((char_u *)"COLORFGBG")) != NULL
3658 && (p = vim_strrchr(p, ';')) != NULL
3659 && ((p[1] >= '0' && p[1] <= '6') || p[1] == '8')
3660 && p[2] == NUL))
3661 return (char_u *)"dark";
3662 return (char_u *)"light";
3663 #endif
3667 * Initialize the options, part three: After reading the .vimrc
3669 void
3670 set_init_3()
3672 #if defined(UNIX) || defined(OS2) || defined(WIN3264)
3674 * Set 'shellpipe' and 'shellredir', depending on the 'shell' option.
3675 * This is done after other initializations, where 'shell' might have been
3676 * set, but only if they have not been set before.
3678 char_u *p;
3679 int idx_srr;
3680 int do_srr;
3681 #ifdef FEAT_QUICKFIX
3682 int idx_sp;
3683 int do_sp;
3684 #endif
3686 idx_srr = findoption((char_u *)"srr");
3687 if (idx_srr < 0)
3688 do_srr = FALSE;
3689 else
3690 do_srr = !(options[idx_srr].flags & P_WAS_SET);
3691 #ifdef FEAT_QUICKFIX
3692 idx_sp = findoption((char_u *)"sp");
3693 if (idx_sp < 0)
3694 do_sp = FALSE;
3695 else
3696 do_sp = !(options[idx_sp].flags & P_WAS_SET);
3697 #endif
3700 * Isolate the name of the shell:
3701 * - Skip beyond any path. E.g., "/usr/bin/csh -f" -> "csh -f".
3702 * - Remove any argument. E.g., "csh -f" -> "csh".
3703 * But don't allow a space in the path, so that this works:
3704 * "/usr/bin/csh --rcfile ~/.cshrc"
3705 * But don't do that for Windows, it's common to have a space in the path.
3707 #ifdef WIN3264
3708 p = gettail(p_sh);
3709 p = vim_strnsave(p, (int)(skiptowhite(p) - p));
3710 #else
3711 p = skiptowhite(p_sh);
3712 if (*p == NUL)
3714 /* No white space, use the tail. */
3715 p = vim_strsave(gettail(p_sh));
3717 else
3719 char_u *p1, *p2;
3721 /* Find the last path separator before the space. */
3722 p1 = p_sh;
3723 for (p2 = p_sh; p2 < p; mb_ptr_adv(p2))
3724 if (vim_ispathsep(*p2))
3725 p1 = p2 + 1;
3726 p = vim_strnsave(p1, (int)(p - p1));
3728 #endif
3729 if (p != NULL)
3732 * Default for p_sp is "| tee", for p_srr is ">".
3733 * For known shells it is changed here to include stderr.
3735 if ( fnamecmp(p, "csh") == 0
3736 || fnamecmp(p, "tcsh") == 0
3737 # if defined(OS2) || defined(WIN3264) /* also check with .exe extension */
3738 || fnamecmp(p, "csh.exe") == 0
3739 || fnamecmp(p, "tcsh.exe") == 0
3740 # endif
3743 #if defined(FEAT_QUICKFIX)
3744 if (do_sp)
3746 # ifdef WIN3264
3747 p_sp = (char_u *)">&";
3748 # else
3749 p_sp = (char_u *)"|& tee";
3750 # endif
3751 options[idx_sp].def_val[VI_DEFAULT] = p_sp;
3753 #endif
3754 if (do_srr)
3756 p_srr = (char_u *)">&";
3757 options[idx_srr].def_val[VI_DEFAULT] = p_srr;
3760 else
3761 # ifndef OS2 /* Always use bourne shell style redirection if we reach this */
3762 if ( fnamecmp(p, "sh") == 0
3763 || fnamecmp(p, "ksh") == 0
3764 || fnamecmp(p, "zsh") == 0
3765 || fnamecmp(p, "zsh-beta") == 0
3766 || fnamecmp(p, "bash") == 0
3767 # ifdef WIN3264
3768 || fnamecmp(p, "cmd") == 0
3769 || fnamecmp(p, "sh.exe") == 0
3770 || fnamecmp(p, "ksh.exe") == 0
3771 || fnamecmp(p, "zsh.exe") == 0
3772 || fnamecmp(p, "zsh-beta.exe") == 0
3773 || fnamecmp(p, "bash.exe") == 0
3774 || fnamecmp(p, "cmd.exe") == 0
3775 # endif
3777 # endif
3779 #if defined(FEAT_QUICKFIX)
3780 if (do_sp)
3782 # ifdef WIN3264
3783 p_sp = (char_u *)">%s 2>&1";
3784 # else
3785 p_sp = (char_u *)"2>&1| tee";
3786 # endif
3787 options[idx_sp].def_val[VI_DEFAULT] = p_sp;
3789 #endif
3790 if (do_srr)
3792 p_srr = (char_u *)">%s 2>&1";
3793 options[idx_srr].def_val[VI_DEFAULT] = p_srr;
3796 vim_free(p);
3798 #endif
3800 #if defined(MSDOS) || defined(WIN3264) || defined(OS2)
3802 * Set 'shellcmdflag and 'shellquote' depending on the 'shell' option.
3803 * This is done after other initializations, where 'shell' might have been
3804 * set, but only if they have not been set before. Default for p_shcf is
3805 * "/c", for p_shq is "". For "sh" like shells it is changed here to
3806 * "-c" and "\"", but not for DJGPP, because it starts the shell without
3807 * command.com. And for Win32 we need to set p_sxq instead.
3809 if (strstr((char *)gettail(p_sh), "sh") != NULL)
3811 int idx3;
3813 idx3 = findoption((char_u *)"shcf");
3814 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
3816 p_shcf = (char_u *)"-c";
3817 options[idx3].def_val[VI_DEFAULT] = p_shcf;
3820 # ifndef DJGPP
3821 # ifdef WIN3264
3822 /* Somehow Win32 requires the quotes around the redirection too */
3823 idx3 = findoption((char_u *)"sxq");
3824 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
3826 p_sxq = (char_u *)"\"";
3827 options[idx3].def_val[VI_DEFAULT] = p_sxq;
3829 # else
3830 idx3 = findoption((char_u *)"shq");
3831 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
3833 p_shq = (char_u *)"\"";
3834 options[idx3].def_val[VI_DEFAULT] = p_shq;
3836 # endif
3837 # endif
3839 #endif
3841 #ifdef FEAT_TITLE
3842 set_title_defaults();
3843 #endif
3846 #if defined(FEAT_MULTI_LANG) || defined(PROTO)
3848 * When 'helplang' is still at its default value, set it to "lang".
3849 * Only the first two characters of "lang" are used.
3851 void
3852 set_helplang_default(lang)
3853 char_u *lang;
3855 int idx;
3857 if (lang == NULL || STRLEN(lang) < 2) /* safety check */
3858 return;
3859 idx = findoption((char_u *)"hlg");
3860 if (idx >= 0 && !(options[idx].flags & P_WAS_SET))
3862 if (options[idx].flags & P_ALLOCED)
3863 free_string_option(p_hlg);
3864 p_hlg = vim_strsave(lang);
3865 if (p_hlg == NULL)
3866 p_hlg = empty_option;
3867 else
3869 /* zh_CN becomes "cn", zh_TW becomes "tw". */
3870 if (STRNICMP(p_hlg, "zh_", 3) == 0 && STRLEN(p_hlg) >= 5)
3872 p_hlg[0] = TOLOWER_ASC(p_hlg[3]);
3873 p_hlg[1] = TOLOWER_ASC(p_hlg[4]);
3875 p_hlg[2] = NUL;
3877 options[idx].flags |= P_ALLOCED;
3880 #endif
3882 #ifdef FEAT_GUI
3883 static char_u *gui_bg_default __ARGS((void));
3885 static char_u *
3886 gui_bg_default()
3888 if (gui_get_lightness(gui.back_pixel) < 127)
3889 return (char_u *)"dark";
3890 return (char_u *)"light";
3894 * Option initializations that can only be done after opening the GUI window.
3896 void
3897 init_gui_options()
3899 /* Set the 'background' option according to the lightness of the
3900 * background color, unless the user has set it already. */
3901 if (!option_was_set((char_u *)"bg") && STRCMP(p_bg, gui_bg_default()) != 0)
3903 set_option_value((char_u *)"bg", 0L, gui_bg_default(), 0);
3904 highlight_changed();
3907 #endif
3909 #ifdef FEAT_TITLE
3911 * 'title' and 'icon' only default to true if they have not been set or reset
3912 * in .vimrc and we can read the old value.
3913 * When 'title' and 'icon' have been reset in .vimrc, we won't even check if
3914 * they can be reset. This reduces startup time when using X on a remote
3915 * machine.
3917 void
3918 set_title_defaults()
3920 int idx1;
3921 long val;
3924 * If GUI is (going to be) used, we can always set the window title and
3925 * icon name. Saves a bit of time, because the X11 display server does
3926 * not need to be contacted.
3928 idx1 = findoption((char_u *)"title");
3929 if (idx1 >= 0 && !(options[idx1].flags & P_WAS_SET))
3931 #ifdef FEAT_GUI
3932 if (gui.starting || gui.in_use)
3933 val = TRUE;
3934 else
3935 #endif
3936 val = mch_can_restore_title();
3937 options[idx1].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
3938 p_title = val;
3940 idx1 = findoption((char_u *)"icon");
3941 if (idx1 >= 0 && !(options[idx1].flags & P_WAS_SET))
3943 #ifdef FEAT_GUI
3944 if (gui.starting || gui.in_use)
3945 val = TRUE;
3946 else
3947 #endif
3948 val = mch_can_restore_icon();
3949 options[idx1].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
3950 p_icon = val;
3953 #endif
3956 * Parse 'arg' for option settings.
3958 * 'arg' may be IObuff, but only when no errors can be present and option
3959 * does not need to be expanded with option_expand().
3960 * "opt_flags":
3961 * 0 for ":set"
3962 * OPT_GLOBAL for ":setglobal"
3963 * OPT_LOCAL for ":setlocal" and a modeline
3964 * OPT_MODELINE for a modeline
3965 * OPT_WINONLY to only set window-local options
3966 * OPT_NOWIN to skip setting window-local options
3968 * returns FAIL if an error is detected, OK otherwise
3971 do_set(arg, opt_flags)
3972 char_u *arg; /* option string (may be written to!) */
3973 int opt_flags;
3975 int opt_idx;
3976 char_u *errmsg;
3977 char_u errbuf[80];
3978 char_u *startarg;
3979 int prefix; /* 1: nothing, 0: "no", 2: "inv" in front of name */
3980 int nextchar; /* next non-white char after option name */
3981 int afterchar; /* character just after option name */
3982 int len;
3983 int i;
3984 long value;
3985 int key;
3986 long_u flags; /* flags for current option */
3987 char_u *varp = NULL; /* pointer to variable for current option */
3988 int did_show = FALSE; /* already showed one value */
3989 int adding; /* "opt+=arg" */
3990 int prepending; /* "opt^=arg" */
3991 int removing; /* "opt-=arg" */
3992 int cp_val = 0;
3993 char_u key_name[2];
3995 if (*arg == NUL)
3997 showoptions(0, opt_flags);
3998 did_show = TRUE;
3999 goto theend;
4002 while (*arg != NUL) /* loop to process all options */
4004 errmsg = NULL;
4005 startarg = arg; /* remember for error message */
4007 if (STRNCMP(arg, "all", 3) == 0 && !isalpha(arg[3])
4008 && !(opt_flags & OPT_MODELINE))
4011 * ":set all" show all options.
4012 * ":set all&" set all options to their default value.
4014 arg += 3;
4015 if (*arg == '&')
4017 ++arg;
4018 /* Only for :set command set global value of local options. */
4019 set_options_default(OPT_FREE | opt_flags);
4021 else
4023 showoptions(1, opt_flags);
4024 did_show = TRUE;
4027 else if (STRNCMP(arg, "termcap", 7) == 0 && !(opt_flags & OPT_MODELINE))
4029 showoptions(2, opt_flags);
4030 show_termcodes();
4031 did_show = TRUE;
4032 arg += 7;
4034 else
4036 prefix = 1;
4037 if (STRNCMP(arg, "no", 2) == 0 && STRNCMP(arg, "novice", 6) != 0)
4039 prefix = 0;
4040 arg += 2;
4042 else if (STRNCMP(arg, "inv", 3) == 0)
4044 prefix = 2;
4045 arg += 3;
4048 /* find end of name */
4049 key = 0;
4050 if (*arg == '<')
4052 nextchar = 0;
4053 opt_idx = -1;
4054 /* look out for <t_>;> */
4055 if (arg[1] == 't' && arg[2] == '_' && arg[3] && arg[4])
4056 len = 5;
4057 else
4059 len = 1;
4060 while (arg[len] != NUL && arg[len] != '>')
4061 ++len;
4063 if (arg[len] != '>')
4065 errmsg = e_invarg;
4066 goto skip;
4068 arg[len] = NUL; /* put NUL after name */
4069 if (arg[1] == 't' && arg[2] == '_') /* could be term code */
4070 opt_idx = findoption(arg + 1);
4071 arg[len++] = '>'; /* restore '>' */
4072 if (opt_idx == -1)
4073 key = find_key_option(arg + 1);
4075 else
4077 len = 0;
4079 * The two characters after "t_" may not be alphanumeric.
4081 if (arg[0] == 't' && arg[1] == '_' && arg[2] && arg[3])
4082 len = 4;
4083 else
4084 while (ASCII_ISALNUM(arg[len]) || arg[len] == '_')
4085 ++len;
4086 nextchar = arg[len];
4087 arg[len] = NUL; /* put NUL after name */
4088 opt_idx = findoption(arg);
4089 arg[len] = nextchar; /* restore nextchar */
4090 if (opt_idx == -1)
4091 key = find_key_option(arg);
4094 /* remember character after option name */
4095 afterchar = arg[len];
4097 /* skip white space, allow ":set ai ?" */
4098 while (vim_iswhite(arg[len]))
4099 ++len;
4101 adding = FALSE;
4102 prepending = FALSE;
4103 removing = FALSE;
4104 if (arg[len] != NUL && arg[len + 1] == '=')
4106 if (arg[len] == '+')
4108 adding = TRUE; /* "+=" */
4109 ++len;
4111 else if (arg[len] == '^')
4113 prepending = TRUE; /* "^=" */
4114 ++len;
4116 else if (arg[len] == '-')
4118 removing = TRUE; /* "-=" */
4119 ++len;
4122 nextchar = arg[len];
4124 if (opt_idx == -1 && key == 0) /* found a mismatch: skip */
4126 errmsg = (char_u *)N_("E518: Unknown option");
4127 goto skip;
4130 if (opt_idx >= 0)
4132 if (options[opt_idx].var == NULL) /* hidden option: skip */
4134 /* Only give an error message when requesting the value of
4135 * a hidden option, ignore setting it. */
4136 if (vim_strchr((char_u *)"=:!&<", nextchar) == NULL
4137 && (!(options[opt_idx].flags & P_BOOL)
4138 || nextchar == '?'))
4139 errmsg = (char_u *)N_("E519: Option not supported");
4140 goto skip;
4143 flags = options[opt_idx].flags;
4144 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
4146 else
4148 flags = P_STRING;
4149 if (key < 0)
4151 key_name[0] = KEY2TERMCAP0(key);
4152 key_name[1] = KEY2TERMCAP1(key);
4154 else
4156 key_name[0] = KS_KEY;
4157 key_name[1] = (key & 0xff);
4161 /* Skip all options that are not window-local (used when showing
4162 * an already loaded buffer in a window). */
4163 if ((opt_flags & OPT_WINONLY)
4164 && (opt_idx < 0 || options[opt_idx].var != VAR_WIN))
4165 goto skip;
4167 /* Skip all options that are window-local (used for :vimgrep). */
4168 if ((opt_flags & OPT_NOWIN) && opt_idx >= 0
4169 && options[opt_idx].var == VAR_WIN)
4170 goto skip;
4172 /* Disallow changing some options from modelines. */
4173 if (opt_flags & OPT_MODELINE)
4175 if (flags & P_SECURE)
4177 errmsg = (char_u *)_("E520: Not allowed in a modeline");
4178 goto skip;
4180 #ifdef FEAT_DIFF
4181 /* In diff mode some options are overruled. This avoids that
4182 * 'foldmethod' becomes "marker" instead of "diff" and that
4183 * "wrap" gets set. */
4184 if (curwin->w_p_diff
4185 && (options[opt_idx].indir == PV_FDM
4186 || options[opt_idx].indir == PV_WRAP))
4187 goto skip;
4188 #endif
4191 #ifdef HAVE_SANDBOX
4192 /* Disallow changing some options in the sandbox */
4193 if (sandbox != 0 && (flags & P_SECURE))
4195 errmsg = (char_u *)_(e_sandbox);
4196 goto skip;
4198 #endif
4200 if (vim_strchr((char_u *)"?=:!&<", nextchar) != NULL)
4202 arg += len;
4203 cp_val = p_cp;
4204 if (nextchar == '&' && arg[1] == 'v' && arg[2] == 'i')
4206 if (arg[3] == 'm') /* "opt&vim": set to Vim default */
4208 cp_val = FALSE;
4209 arg += 3;
4211 else /* "opt&vi": set to Vi default */
4213 cp_val = TRUE;
4214 arg += 2;
4217 if (vim_strchr((char_u *)"?!&<", nextchar) != NULL
4218 && arg[1] != NUL && !vim_iswhite(arg[1]))
4220 errmsg = e_trailing;
4221 goto skip;
4226 * allow '=' and ':' as MSDOS command.com allows only one
4227 * '=' character per "set" command line. grrr. (jw)
4229 if (nextchar == '?'
4230 || (prefix == 1
4231 && vim_strchr((char_u *)"=:&<", nextchar) == NULL
4232 && !(flags & P_BOOL)))
4235 * print value
4237 if (did_show)
4238 msg_putchar('\n'); /* cursor below last one */
4239 else
4241 gotocmdline(TRUE); /* cursor at status line */
4242 did_show = TRUE; /* remember that we did a line */
4244 if (opt_idx >= 0)
4246 showoneopt(&options[opt_idx], opt_flags);
4247 #ifdef FEAT_EVAL
4248 if (p_verbose > 0)
4250 /* Mention where the option was last set. */
4251 if (varp == options[opt_idx].var)
4252 last_set_msg(options[opt_idx].scriptID);
4253 else if ((int)options[opt_idx].indir & PV_WIN)
4254 last_set_msg(curwin->w_p_scriptID[
4255 (int)options[opt_idx].indir & PV_MASK]);
4256 else if ((int)options[opt_idx].indir & PV_BUF)
4257 last_set_msg(curbuf->b_p_scriptID[
4258 (int)options[opt_idx].indir & PV_MASK]);
4260 #endif
4262 else
4264 char_u *p;
4266 p = find_termcode(key_name);
4267 if (p == NULL)
4269 errmsg = (char_u *)N_("E518: Unknown option");
4270 goto skip;
4272 else
4273 (void)show_one_termcode(key_name, p, TRUE);
4275 if (nextchar != '?'
4276 && nextchar != NUL && !vim_iswhite(afterchar))
4277 errmsg = e_trailing;
4279 else
4281 if (flags & P_BOOL) /* boolean */
4283 if (nextchar == '=' || nextchar == ':')
4285 errmsg = e_invarg;
4286 goto skip;
4290 * ":set opt!": invert
4291 * ":set opt&": reset to default value
4292 * ":set opt<": reset to global value
4294 if (nextchar == '!')
4295 value = *(int *)(varp) ^ 1;
4296 else if (nextchar == '&')
4297 value = (int)(long)(long_i)options[opt_idx].def_val[
4298 ((flags & P_VI_DEF) || cp_val)
4299 ? VI_DEFAULT : VIM_DEFAULT];
4300 else if (nextchar == '<')
4302 /* For 'autoread' -1 means to use global value. */
4303 if ((int *)varp == &curbuf->b_p_ar
4304 && opt_flags == OPT_LOCAL)
4305 value = -1;
4306 else
4307 value = *(int *)get_varp_scope(&(options[opt_idx]),
4308 OPT_GLOBAL);
4310 else
4313 * ":set invopt": invert
4314 * ":set opt" or ":set noopt": set or reset
4316 if (nextchar != NUL && !vim_iswhite(afterchar))
4318 errmsg = e_trailing;
4319 goto skip;
4321 if (prefix == 2) /* inv */
4322 value = *(int *)(varp) ^ 1;
4323 else
4324 value = prefix;
4327 errmsg = set_bool_option(opt_idx, varp, (int)value,
4328 opt_flags);
4330 else /* numeric or string */
4332 if (vim_strchr((char_u *)"=:&<", nextchar) == NULL
4333 || prefix != 1)
4335 errmsg = e_invarg;
4336 goto skip;
4339 if (flags & P_NUM) /* numeric */
4342 * Different ways to set a number option:
4343 * & set to default value
4344 * < set to global value
4345 * <xx> accept special key codes for 'wildchar'
4346 * c accept any non-digit for 'wildchar'
4347 * [-]0-9 set number
4348 * other error
4350 ++arg;
4351 if (nextchar == '&')
4352 value = (long)(long_i)options[opt_idx].def_val[
4353 ((flags & P_VI_DEF) || cp_val)
4354 ? VI_DEFAULT : VIM_DEFAULT];
4355 else if (nextchar == '<')
4356 value = *(long *)get_varp_scope(&(options[opt_idx]),
4357 OPT_GLOBAL);
4358 else if (((long *)varp == &p_wc
4359 || (long *)varp == &p_wcm)
4360 && (*arg == '<'
4361 || *arg == '^'
4362 || ((!arg[1] || vim_iswhite(arg[1]))
4363 && !VIM_ISDIGIT(*arg))))
4365 value = string_to_key(arg);
4366 if (value == 0 && (long *)varp != &p_wcm)
4368 errmsg = e_invarg;
4369 goto skip;
4372 /* allow negative numbers (for 'undolevels') */
4373 else if (*arg == '-' || VIM_ISDIGIT(*arg))
4375 i = 0;
4376 if (*arg == '-')
4377 i = 1;
4378 #ifdef HAVE_STRTOL
4379 value = strtol((char *)arg, NULL, 0);
4380 if (arg[i] == '0' && TOLOWER_ASC(arg[i + 1]) == 'x')
4381 i += 2;
4382 #else
4383 value = atol((char *)arg);
4384 #endif
4385 while (VIM_ISDIGIT(arg[i]))
4386 ++i;
4387 if (arg[i] != NUL && !vim_iswhite(arg[i]))
4389 errmsg = e_invarg;
4390 goto skip;
4393 else
4395 errmsg = (char_u *)N_("E521: Number required after =");
4396 goto skip;
4399 if (adding)
4400 value = *(long *)varp + value;
4401 if (prepending)
4402 value = *(long *)varp * value;
4403 if (removing)
4404 value = *(long *)varp - value;
4405 errmsg = set_num_option(opt_idx, varp, value,
4406 errbuf, sizeof(errbuf), opt_flags);
4408 else if (opt_idx >= 0) /* string */
4410 char_u *save_arg = NULL;
4411 char_u *s = NULL;
4412 char_u *oldval; /* previous value if *varp */
4413 char_u *newval;
4414 char_u *origval;
4415 unsigned newlen;
4416 int comma;
4417 int bs;
4418 int new_value_alloced; /* new string option
4419 was allocated */
4421 /* When using ":set opt=val" for a global option
4422 * with a local value the local value will be
4423 * reset, use the global value here. */
4424 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
4425 && ((int)options[opt_idx].indir & PV_BOTH))
4426 varp = options[opt_idx].var;
4428 /* The old value is kept until we are sure that the
4429 * new value is valid. */
4430 oldval = *(char_u **)varp;
4431 if (nextchar == '&') /* set to default val */
4433 newval = options[opt_idx].def_val[
4434 ((flags & P_VI_DEF) || cp_val)
4435 ? VI_DEFAULT : VIM_DEFAULT];
4436 if ((char_u **)varp == &p_bg)
4438 /* guess the value of 'background' */
4439 #ifdef FEAT_GUI
4440 if (gui.in_use)
4441 newval = gui_bg_default();
4442 else
4443 #endif
4444 newval = term_bg_default();
4447 /* expand environment variables and ~ (since the
4448 * default value was already expanded, only
4449 * required when an environment variable was set
4450 * later */
4451 if (newval == NULL)
4452 newval = empty_option;
4453 else
4455 s = option_expand(opt_idx, newval);
4456 if (s == NULL)
4457 s = newval;
4458 newval = vim_strsave(s);
4460 new_value_alloced = TRUE;
4462 else if (nextchar == '<') /* set to global val */
4464 newval = vim_strsave(*(char_u **)get_varp_scope(
4465 &(options[opt_idx]), OPT_GLOBAL));
4466 new_value_alloced = TRUE;
4468 else
4470 ++arg; /* jump to after the '=' or ':' */
4473 * Set 'keywordprg' to ":help" if an empty
4474 * value was passed to :set by the user.
4475 * Misuse errbuf[] for the resulting string.
4477 if (varp == (char_u *)&p_kp
4478 && (*arg == NUL || *arg == ' '))
4480 STRCPY(errbuf, ":help");
4481 save_arg = arg;
4482 arg = errbuf;
4485 * Convert 'whichwrap' number to string, for
4486 * backwards compatibility with Vim 3.0.
4487 * Misuse errbuf[] for the resulting string.
4489 else if (varp == (char_u *)&p_ww
4490 && VIM_ISDIGIT(*arg))
4492 *errbuf = NUL;
4493 i = getdigits(&arg);
4494 if (i & 1)
4495 STRCAT(errbuf, "b,");
4496 if (i & 2)
4497 STRCAT(errbuf, "s,");
4498 if (i & 4)
4499 STRCAT(errbuf, "h,l,");
4500 if (i & 8)
4501 STRCAT(errbuf, "<,>,");
4502 if (i & 16)
4503 STRCAT(errbuf, "[,],");
4504 if (*errbuf != NUL) /* remove trailing , */
4505 errbuf[STRLEN(errbuf) - 1] = NUL;
4506 save_arg = arg;
4507 arg = errbuf;
4510 * Remove '>' before 'dir' and 'bdir', for
4511 * backwards compatibility with version 3.0
4513 else if ( *arg == '>'
4514 && (varp == (char_u *)&p_dir
4515 || varp == (char_u *)&p_bdir))
4517 ++arg;
4520 /* When setting the local value of a global
4521 * option, the old value may be the global value. */
4522 if (((int)options[opt_idx].indir & PV_BOTH)
4523 && (opt_flags & OPT_LOCAL))
4524 origval = *(char_u **)get_varp(
4525 &options[opt_idx]);
4526 else
4527 origval = oldval;
4530 * Copy the new string into allocated memory.
4531 * Can't use set_string_option_direct(), because
4532 * we need to remove the backslashes.
4534 /* get a bit too much */
4535 newlen = (unsigned)STRLEN(arg) + 1;
4536 if (adding || prepending || removing)
4537 newlen += (unsigned)STRLEN(origval) + 1;
4538 newval = alloc(newlen);
4539 if (newval == NULL) /* out of mem, don't change */
4540 break;
4541 s = newval;
4544 * Copy the string, skip over escaped chars.
4545 * For MS-DOS and WIN32 backslashes before normal
4546 * file name characters are not removed, and keep
4547 * backslash at start, for "\\machine\path", but
4548 * do remove it for "\\\\machine\\path".
4549 * The reverse is found in ExpandOldSetting().
4551 while (*arg && !vim_iswhite(*arg))
4553 if (*arg == '\\' && arg[1] != NUL
4554 #ifdef BACKSLASH_IN_FILENAME
4555 && !((flags & P_EXPAND)
4556 && vim_isfilec(arg[1])
4557 && (arg[1] != '\\'
4558 || (s == newval
4559 && arg[2] != '\\')))
4560 #endif
4562 ++arg; /* remove backslash */
4563 #ifdef FEAT_MBYTE
4564 if (has_mbyte
4565 && (i = (*mb_ptr2len)(arg)) > 1)
4567 /* copy multibyte char */
4568 mch_memmove(s, arg, (size_t)i);
4569 arg += i;
4570 s += i;
4572 else
4573 #endif
4574 *s++ = *arg++;
4576 *s = NUL;
4579 * Expand environment variables and ~.
4580 * Don't do it when adding without inserting a
4581 * comma.
4583 if (!(adding || prepending || removing)
4584 || (flags & P_COMMA))
4586 s = option_expand(opt_idx, newval);
4587 if (s != NULL)
4589 vim_free(newval);
4590 newlen = (unsigned)STRLEN(s) + 1;
4591 if (adding || prepending || removing)
4592 newlen += (unsigned)STRLEN(origval) + 1;
4593 newval = alloc(newlen);
4594 if (newval == NULL)
4595 break;
4596 STRCPY(newval, s);
4600 /* locate newval[] in origval[] when removing it
4601 * and when adding to avoid duplicates */
4602 i = 0; /* init for GCC */
4603 if (removing || (flags & P_NODUP))
4605 i = (int)STRLEN(newval);
4606 bs = 0;
4607 for (s = origval; *s; ++s)
4609 if ((!(flags & P_COMMA)
4610 || s == origval
4611 || (s[-1] == ',' && !(bs & 1)))
4612 && STRNCMP(s, newval, i) == 0
4613 && (!(flags & P_COMMA)
4614 || s[i] == ','
4615 || s[i] == NUL))
4616 break;
4617 /* Count backspaces. Only a comma with an
4618 * even number of backspaces before it is
4619 * recognized as a separator */
4620 if (s > origval && s[-1] == '\\')
4621 ++bs;
4622 else
4623 bs = 0;
4626 /* do not add if already there */
4627 if ((adding || prepending) && *s)
4629 prepending = FALSE;
4630 adding = FALSE;
4631 STRCPY(newval, origval);
4635 /* concatenate the two strings; add a ',' if
4636 * needed */
4637 if (adding || prepending)
4639 comma = ((flags & P_COMMA) && *origval != NUL
4640 && *newval != NUL);
4641 if (adding)
4643 i = (int)STRLEN(origval);
4644 mch_memmove(newval + i + comma, newval,
4645 STRLEN(newval) + 1);
4646 mch_memmove(newval, origval, (size_t)i);
4648 else
4650 i = (int)STRLEN(newval);
4651 STRMOVE(newval + i + comma, origval);
4653 if (comma)
4654 newval[i] = ',';
4657 /* Remove newval[] from origval[]. (Note: "i" has
4658 * been set above and is used here). */
4659 if (removing)
4661 STRCPY(newval, origval);
4662 if (*s)
4664 /* may need to remove a comma */
4665 if (flags & P_COMMA)
4667 if (s == origval)
4669 /* include comma after string */
4670 if (s[i] == ',')
4671 ++i;
4673 else
4675 /* include comma before string */
4676 --s;
4677 ++i;
4680 STRMOVE(newval + (s - origval), s + i);
4684 if (flags & P_FLAGLIST)
4686 /* Remove flags that appear twice. */
4687 for (s = newval; *s; ++s)
4688 if ((!(flags & P_COMMA) || *s != ',')
4689 && vim_strchr(s + 1, *s) != NULL)
4691 STRMOVE(s, s + 1);
4692 --s;
4696 if (save_arg != NULL) /* number for 'whichwrap' */
4697 arg = save_arg;
4698 new_value_alloced = TRUE;
4701 /* Set the new value. */
4702 *(char_u **)(varp) = newval;
4704 /* Handle side effects, and set the global value for
4705 * ":set" on local options. */
4706 errmsg = did_set_string_option(opt_idx, (char_u **)varp,
4707 new_value_alloced, oldval, errbuf, opt_flags);
4709 /* If error detected, print the error message. */
4710 if (errmsg != NULL)
4711 goto skip;
4713 else /* key code option */
4715 char_u *p;
4717 if (nextchar == '&')
4719 if (add_termcap_entry(key_name, TRUE) == FAIL)
4720 errmsg = (char_u *)N_("E522: Not found in termcap");
4722 else
4724 ++arg; /* jump to after the '=' or ':' */
4725 for (p = arg; *p && !vim_iswhite(*p); ++p)
4726 if (*p == '\\' && p[1] != NUL)
4727 ++p;
4728 nextchar = *p;
4729 *p = NUL;
4730 add_termcode(key_name, arg, FALSE);
4731 *p = nextchar;
4733 if (full_screen)
4734 ttest(FALSE);
4735 redraw_all_later(CLEAR);
4739 if (opt_idx >= 0)
4740 did_set_option(opt_idx, opt_flags,
4741 !prepending && !adding && !removing);
4744 skip:
4746 * Advance to next argument.
4747 * - skip until a blank found, taking care of backslashes
4748 * - skip blanks
4749 * - skip one "=val" argument (for hidden options ":set gfn =xx")
4751 for (i = 0; i < 2 ; ++i)
4753 while (*arg != NUL && !vim_iswhite(*arg))
4754 if (*arg++ == '\\' && *arg != NUL)
4755 ++arg;
4756 arg = skipwhite(arg);
4757 if (*arg != '=')
4758 break;
4762 if (errmsg != NULL)
4764 vim_strncpy(IObuff, (char_u *)_(errmsg), IOSIZE - 1);
4765 i = (int)STRLEN(IObuff) + 2;
4766 if (i + (arg - startarg) < IOSIZE)
4768 /* append the argument with the error */
4769 STRCAT(IObuff, ": ");
4770 mch_memmove(IObuff + i, startarg, (arg - startarg));
4771 IObuff[i + (arg - startarg)] = NUL;
4773 /* make sure all characters are printable */
4774 trans_characters(IObuff, IOSIZE);
4776 ++no_wait_return; /* wait_return done later */
4777 emsg(IObuff); /* show error highlighted */
4778 --no_wait_return;
4780 return FAIL;
4783 arg = skipwhite(arg);
4786 theend:
4787 if (silent_mode && did_show)
4789 /* After displaying option values in silent mode. */
4790 silent_mode = FALSE;
4791 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
4792 msg_putchar('\n');
4793 cursor_on(); /* msg_start() switches it off */
4794 out_flush();
4795 silent_mode = TRUE;
4796 info_message = FALSE; /* use mch_msg(), not mch_errmsg() */
4799 return OK;
4803 * Call this when an option has been given a new value through a user command.
4804 * Sets the P_WAS_SET flag and takes care of the P_INSECURE flag.
4806 static void
4807 did_set_option(opt_idx, opt_flags, new_value)
4808 int opt_idx;
4809 int opt_flags; /* possibly with OPT_MODELINE */
4810 int new_value; /* value was replaced completely */
4812 long_u *p;
4814 options[opt_idx].flags |= P_WAS_SET;
4816 /* When an option is set in the sandbox, from a modeline or in secure mode
4817 * set the P_INSECURE flag. Otherwise, if a new value is stored reset the
4818 * flag. */
4819 p = insecure_flag(opt_idx, opt_flags);
4820 if (secure
4821 #ifdef HAVE_SANDBOX
4822 || sandbox != 0
4823 #endif
4824 || (opt_flags & OPT_MODELINE))
4825 *p = *p | P_INSECURE;
4826 else if (new_value)
4827 *p = *p & ~P_INSECURE;
4830 static char_u *
4831 illegal_char(errbuf, c)
4832 char_u *errbuf;
4833 int c;
4835 if (errbuf == NULL)
4836 return (char_u *)"";
4837 sprintf((char *)errbuf, _("E539: Illegal character <%s>"),
4838 (char *)transchar(c));
4839 return errbuf;
4843 * Convert a key name or string into a key value.
4844 * Used for 'wildchar' and 'cedit' options.
4846 static int
4847 string_to_key(arg)
4848 char_u *arg;
4850 if (*arg == '<')
4851 return find_key_option(arg + 1);
4852 if (*arg == '^')
4853 return Ctrl_chr(arg[1]);
4854 return *arg;
4857 #ifdef FEAT_CMDWIN
4859 * Check value of 'cedit' and set cedit_key.
4860 * Returns NULL if value is OK, error message otherwise.
4862 static char_u *
4863 check_cedit()
4865 int n;
4867 if (*p_cedit == NUL)
4868 cedit_key = -1;
4869 else
4871 n = string_to_key(p_cedit);
4872 if (vim_isprintc(n))
4873 return e_invarg;
4874 cedit_key = n;
4876 return NULL;
4878 #endif
4880 #ifdef FEAT_TITLE
4882 * When changing 'title', 'titlestring', 'icon' or 'iconstring', call
4883 * maketitle() to create and display it.
4884 * When switching the title or icon off, call mch_restore_title() to get
4885 * the old value back.
4887 static void
4888 did_set_title(icon)
4889 int icon; /* Did set icon instead of title */
4891 if (starting != NO_SCREEN
4892 #ifdef FEAT_GUI
4893 && !gui.starting
4894 #endif
4897 maketitle();
4898 if (icon)
4900 if (!p_icon)
4901 mch_restore_title(2);
4903 else
4905 if (!p_title)
4906 mch_restore_title(1);
4910 #endif
4913 * set_options_bin - called when 'bin' changes value.
4915 void
4916 set_options_bin(oldval, newval, opt_flags)
4917 int oldval;
4918 int newval;
4919 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
4922 * The option values that are changed when 'bin' changes are
4923 * copied when 'bin is set and restored when 'bin' is reset.
4925 if (newval)
4927 if (!oldval) /* switched on */
4929 if (!(opt_flags & OPT_GLOBAL))
4931 curbuf->b_p_tw_nobin = curbuf->b_p_tw;
4932 curbuf->b_p_wm_nobin = curbuf->b_p_wm;
4933 curbuf->b_p_ml_nobin = curbuf->b_p_ml;
4934 curbuf->b_p_et_nobin = curbuf->b_p_et;
4936 if (!(opt_flags & OPT_LOCAL))
4938 p_tw_nobin = p_tw;
4939 p_wm_nobin = p_wm;
4940 p_ml_nobin = p_ml;
4941 p_et_nobin = p_et;
4945 if (!(opt_flags & OPT_GLOBAL))
4947 curbuf->b_p_tw = 0; /* no automatic line wrap */
4948 curbuf->b_p_wm = 0; /* no automatic line wrap */
4949 curbuf->b_p_ml = 0; /* no modelines */
4950 curbuf->b_p_et = 0; /* no expandtab */
4952 if (!(opt_flags & OPT_LOCAL))
4954 p_tw = 0;
4955 p_wm = 0;
4956 p_ml = FALSE;
4957 p_et = FALSE;
4958 p_bin = TRUE; /* needed when called for the "-b" argument */
4961 else if (oldval) /* switched off */
4963 if (!(opt_flags & OPT_GLOBAL))
4965 curbuf->b_p_tw = curbuf->b_p_tw_nobin;
4966 curbuf->b_p_wm = curbuf->b_p_wm_nobin;
4967 curbuf->b_p_ml = curbuf->b_p_ml_nobin;
4968 curbuf->b_p_et = curbuf->b_p_et_nobin;
4970 if (!(opt_flags & OPT_LOCAL))
4972 p_tw = p_tw_nobin;
4973 p_wm = p_wm_nobin;
4974 p_ml = p_ml_nobin;
4975 p_et = p_et_nobin;
4980 #ifdef FEAT_VIMINFO
4982 * Find the parameter represented by the given character (eg ', :, ", or /),
4983 * and return its associated value in the 'viminfo' string.
4984 * Only works for number parameters, not for 'r' or 'n'.
4985 * If the parameter is not specified in the string or there is no following
4986 * number, return -1.
4989 get_viminfo_parameter(type)
4990 int type;
4992 char_u *p;
4994 p = find_viminfo_parameter(type);
4995 if (p != NULL && VIM_ISDIGIT(*p))
4996 return atoi((char *)p);
4997 return -1;
5001 * Find the parameter represented by the given character (eg ''', ':', '"', or
5002 * '/') in the 'viminfo' option and return a pointer to the string after it.
5003 * Return NULL if the parameter is not specified in the string.
5005 char_u *
5006 find_viminfo_parameter(type)
5007 int type;
5009 char_u *p;
5011 for (p = p_viminfo; *p; ++p)
5013 if (*p == type)
5014 return p + 1;
5015 if (*p == 'n') /* 'n' is always the last one */
5016 break;
5017 p = vim_strchr(p, ','); /* skip until next ',' */
5018 if (p == NULL) /* hit the end without finding parameter */
5019 break;
5021 return NULL;
5023 #endif
5026 * Expand environment variables for some string options.
5027 * These string options cannot be indirect!
5028 * If "val" is NULL expand the current value of the option.
5029 * Return pointer to NameBuff, or NULL when not expanded.
5031 static char_u *
5032 option_expand(opt_idx, val)
5033 int opt_idx;
5034 char_u *val;
5036 /* if option doesn't need expansion nothing to do */
5037 if (!(options[opt_idx].flags & P_EXPAND) || options[opt_idx].var == NULL)
5038 return NULL;
5040 /* If val is longer than MAXPATHL no meaningful expansion can be done,
5041 * expand_env() would truncate the string. */
5042 if (val != NULL && STRLEN(val) > MAXPATHL)
5043 return NULL;
5045 if (val == NULL)
5046 val = *(char_u **)options[opt_idx].var;
5049 * Expanding this with NameBuff, expand_env() must not be passed IObuff.
5050 * Escape spaces when expanding 'tags', they are used to separate file
5051 * names.
5052 * For 'spellsuggest' expand after "file:".
5054 expand_env_esc(val, NameBuff, MAXPATHL,
5055 (char_u **)options[opt_idx].var == &p_tags, FALSE,
5056 #ifdef FEAT_SPELL
5057 (char_u **)options[opt_idx].var == &p_sps ? (char_u *)"file:" :
5058 #endif
5059 NULL);
5060 if (STRCMP(NameBuff, val) == 0) /* they are the same */
5061 return NULL;
5063 return NameBuff;
5067 * After setting various option values: recompute variables that depend on
5068 * option values.
5070 static void
5071 didset_options()
5073 /* initialize the table for 'iskeyword' et.al. */
5074 (void)init_chartab();
5076 #ifdef FEAT_MBYTE
5077 (void)opt_strings_flags(p_cmp, p_cmp_values, &cmp_flags, TRUE);
5078 #endif
5079 (void)opt_strings_flags(p_bkc, p_bkc_values, &bkc_flags, TRUE);
5080 #ifdef FEAT_SESSION
5081 (void)opt_strings_flags(p_ssop, p_ssop_values, &ssop_flags, TRUE);
5082 (void)opt_strings_flags(p_vop, p_ssop_values, &vop_flags, TRUE);
5083 #endif
5084 #ifdef FEAT_FOLDING
5085 (void)opt_strings_flags(p_fdo, p_fdo_values, &fdo_flags, TRUE);
5086 #endif
5087 (void)opt_strings_flags(p_dy, p_dy_values, &dy_flags, TRUE);
5088 #ifdef FEAT_VIRTUALEDIT
5089 (void)opt_strings_flags(p_ve, p_ve_values, &ve_flags, TRUE);
5090 #endif
5091 #if defined(FEAT_MOUSE) && (defined(UNIX) || defined(VMS))
5092 (void)opt_strings_flags(p_ttym, p_ttym_values, &ttym_flags, FALSE);
5093 #endif
5094 #ifdef FEAT_SPELL
5095 (void)spell_check_msm();
5096 (void)spell_check_sps();
5097 (void)compile_cap_prog(curbuf);
5098 #endif
5099 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
5100 (void)opt_strings_flags(p_toolbar, p_toolbar_values, &toolbar_flags, TRUE);
5101 #endif
5102 #if defined(FEAT_TOOLBAR) && defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)
5103 (void)opt_strings_flags(p_tbis, p_tbis_values, &tbis_flags, FALSE);
5104 #endif
5105 #ifdef FEAT_CMDWIN
5106 /* set cedit_key */
5107 (void)check_cedit();
5108 #endif
5112 * Check for string options that are NULL (normally only termcap options).
5114 void
5115 check_options()
5117 int opt_idx;
5119 for (opt_idx = 0; options[opt_idx].fullname != NULL; opt_idx++)
5120 if ((options[opt_idx].flags & P_STRING) && options[opt_idx].var != NULL)
5121 check_string_option((char_u **)get_varp(&(options[opt_idx])));
5125 * Check string options in a buffer for NULL value.
5127 void
5128 check_buf_options(buf)
5129 buf_T *buf;
5131 #if defined(FEAT_QUICKFIX)
5132 check_string_option(&buf->b_p_bh);
5133 check_string_option(&buf->b_p_bt);
5134 #endif
5135 #ifdef FEAT_MBYTE
5136 check_string_option(&buf->b_p_fenc);
5137 #endif
5138 check_string_option(&buf->b_p_ff);
5139 #ifdef FEAT_FIND_ID
5140 check_string_option(&buf->b_p_def);
5141 check_string_option(&buf->b_p_inc);
5142 # ifdef FEAT_EVAL
5143 check_string_option(&buf->b_p_inex);
5144 # endif
5145 #endif
5146 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
5147 check_string_option(&buf->b_p_inde);
5148 check_string_option(&buf->b_p_indk);
5149 #endif
5150 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
5151 check_string_option(&buf->b_p_bexpr);
5152 #endif
5153 #if defined(FEAT_EVAL)
5154 check_string_option(&buf->b_p_fex);
5155 #endif
5156 #ifdef FEAT_CRYPT
5157 check_string_option(&buf->b_p_key);
5158 #endif
5159 check_string_option(&buf->b_p_kp);
5160 check_string_option(&buf->b_p_mps);
5161 check_string_option(&buf->b_p_fo);
5162 check_string_option(&buf->b_p_flp);
5163 check_string_option(&buf->b_p_isk);
5164 #ifdef FEAT_COMMENTS
5165 check_string_option(&buf->b_p_com);
5166 #endif
5167 #ifdef FEAT_FOLDING
5168 check_string_option(&buf->b_p_cms);
5169 #endif
5170 check_string_option(&buf->b_p_nf);
5171 #ifdef FEAT_TEXTOBJ
5172 check_string_option(&buf->b_p_qe);
5173 #endif
5174 #ifdef FEAT_SYN_HL
5175 check_string_option(&buf->b_p_syn);
5176 #endif
5177 #ifdef FEAT_SPELL
5178 check_string_option(&buf->b_p_spc);
5179 check_string_option(&buf->b_p_spf);
5180 check_string_option(&buf->b_p_spl);
5181 #endif
5182 #ifdef FEAT_SEARCHPATH
5183 check_string_option(&buf->b_p_sua);
5184 #endif
5185 #ifdef FEAT_CINDENT
5186 check_string_option(&buf->b_p_cink);
5187 check_string_option(&buf->b_p_cino);
5188 #endif
5189 #ifdef FEAT_AUTOCMD
5190 check_string_option(&buf->b_p_ft);
5191 #endif
5192 #ifdef FEAT_OSFILETYPE
5193 check_string_option(&buf->b_p_oft);
5194 #endif
5195 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
5196 check_string_option(&buf->b_p_cinw);
5197 #endif
5198 #ifdef FEAT_INS_EXPAND
5199 check_string_option(&buf->b_p_cpt);
5200 #endif
5201 #ifdef FEAT_COMPL_FUNC
5202 check_string_option(&buf->b_p_cfu);
5203 check_string_option(&buf->b_p_ofu);
5204 #endif
5205 #ifdef FEAT_KEYMAP
5206 check_string_option(&buf->b_p_keymap);
5207 #endif
5208 #ifdef FEAT_QUICKFIX
5209 check_string_option(&buf->b_p_gp);
5210 check_string_option(&buf->b_p_mp);
5211 check_string_option(&buf->b_p_efm);
5212 #endif
5213 check_string_option(&buf->b_p_ep);
5214 check_string_option(&buf->b_p_path);
5215 check_string_option(&buf->b_p_tags);
5216 #ifdef FEAT_INS_EXPAND
5217 check_string_option(&buf->b_p_dict);
5218 check_string_option(&buf->b_p_tsr);
5219 #endif
5223 * Free the string allocated for an option.
5224 * Checks for the string being empty_option. This may happen if we're out of
5225 * memory, vim_strsave() returned NULL, which was replaced by empty_option by
5226 * check_options().
5227 * Does NOT check for P_ALLOCED flag!
5229 void
5230 free_string_option(p)
5231 char_u *p;
5233 if (p != empty_option)
5234 vim_free(p);
5237 void
5238 clear_string_option(pp)
5239 char_u **pp;
5241 if (*pp != empty_option)
5242 vim_free(*pp);
5243 *pp = empty_option;
5246 static void
5247 check_string_option(pp)
5248 char_u **pp;
5250 if (*pp == NULL)
5251 *pp = empty_option;
5255 * Mark a terminal option as allocated, found by a pointer into term_strings[].
5257 void
5258 set_term_option_alloced(p)
5259 char_u **p;
5261 int opt_idx;
5263 for (opt_idx = 1; options[opt_idx].fullname != NULL; opt_idx++)
5264 if (options[opt_idx].var == (char_u *)p)
5266 options[opt_idx].flags |= P_ALLOCED;
5267 return;
5269 return; /* cannot happen: didn't find it! */
5272 #if defined(FEAT_EVAL) || defined(PROTO)
5274 * Return TRUE when option "opt" was set from a modeline or in secure mode.
5275 * Return FALSE when it wasn't.
5276 * Return -1 for an unknown option.
5279 was_set_insecurely(opt, opt_flags)
5280 char_u *opt;
5281 int opt_flags;
5283 int idx = findoption(opt);
5284 long_u *flagp;
5286 if (idx >= 0)
5288 flagp = insecure_flag(idx, opt_flags);
5289 return (*flagp & P_INSECURE) != 0;
5291 EMSG2(_(e_intern2), "was_set_insecurely()");
5292 return -1;
5296 * Get a pointer to the flags used for the P_INSECURE flag of option
5297 * "opt_idx". For some local options a local flags field is used.
5299 static long_u *
5300 insecure_flag(opt_idx, opt_flags)
5301 int opt_idx;
5302 int opt_flags;
5304 if (opt_flags & OPT_LOCAL)
5305 switch ((int)options[opt_idx].indir)
5307 #ifdef FEAT_STL_OPT
5308 case PV_STL: return &curwin->w_p_stl_flags;
5309 #endif
5310 #ifdef FEAT_EVAL
5311 # ifdef FEAT_FOLDING
5312 case PV_FDE: return &curwin->w_p_fde_flags;
5313 case PV_FDT: return &curwin->w_p_fdt_flags;
5314 # endif
5315 # ifdef FEAT_BEVAL
5316 case PV_BEXPR: return &curbuf->b_p_bexpr_flags;
5317 # endif
5318 # if defined(FEAT_CINDENT)
5319 case PV_INDE: return &curbuf->b_p_inde_flags;
5320 # endif
5321 case PV_FEX: return &curbuf->b_p_fex_flags;
5322 # ifdef FEAT_FIND_ID
5323 case PV_INEX: return &curbuf->b_p_inex_flags;
5324 # endif
5325 #endif
5328 /* Nothing special, return global flags field. */
5329 return &options[opt_idx].flags;
5331 #endif
5333 #ifdef FEAT_TITLE
5334 static void redraw_titles __ARGS((void));
5337 * Redraw the window title and/or tab page text later.
5339 static void redraw_titles()
5341 need_maketitle = TRUE;
5342 # ifdef FEAT_WINDOWS
5343 redraw_tabline = TRUE;
5344 # endif
5346 #endif
5349 * Set a string option to a new value (without checking the effect).
5350 * The string is copied into allocated memory.
5351 * if ("opt_idx" == -1) "name" is used, otherwise "opt_idx" is used.
5352 * When "set_sid" is zero set the scriptID to current_SID. When "set_sid" is
5353 * SID_NONE don't set the scriptID. Otherwise set the scriptID to "set_sid".
5355 void
5356 set_string_option_direct(name, opt_idx, val, opt_flags, set_sid)
5357 char_u *name;
5358 int opt_idx;
5359 char_u *val;
5360 int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */
5361 int set_sid UNUSED;
5363 char_u *s;
5364 char_u **varp;
5365 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
5366 int idx = opt_idx;
5368 if (idx == -1) /* use name */
5370 idx = findoption(name);
5371 if (idx < 0) /* not found (should not happen) */
5373 EMSG2(_(e_intern2), "set_string_option_direct()");
5374 return;
5378 if (options[idx].var == NULL) /* can't set hidden option */
5379 return;
5381 s = vim_strsave(val);
5382 if (s != NULL)
5384 varp = (char_u **)get_varp_scope(&(options[idx]),
5385 both ? OPT_LOCAL : opt_flags);
5386 if ((opt_flags & OPT_FREE) && (options[idx].flags & P_ALLOCED))
5387 free_string_option(*varp);
5388 *varp = s;
5390 /* For buffer/window local option may also set the global value. */
5391 if (both)
5392 set_string_option_global(idx, varp);
5394 options[idx].flags |= P_ALLOCED;
5396 /* When setting both values of a global option with a local value,
5397 * make the local value empty, so that the global value is used. */
5398 if (((int)options[idx].indir & PV_BOTH) && both)
5400 free_string_option(*varp);
5401 *varp = empty_option;
5403 # ifdef FEAT_EVAL
5404 if (set_sid != SID_NONE)
5405 set_option_scriptID_idx(idx, opt_flags,
5406 set_sid == 0 ? current_SID : set_sid);
5407 # endif
5412 * Set global value for string option when it's a local option.
5414 static void
5415 set_string_option_global(opt_idx, varp)
5416 int opt_idx; /* option index */
5417 char_u **varp; /* pointer to option variable */
5419 char_u **p, *s;
5421 /* the global value is always allocated */
5422 if (options[opt_idx].var == VAR_WIN)
5423 p = (char_u **)GLOBAL_WO(varp);
5424 else
5425 p = (char_u **)options[opt_idx].var;
5426 if (options[opt_idx].indir != PV_NONE
5427 && p != varp
5428 && (s = vim_strsave(*varp)) != NULL)
5430 free_string_option(*p);
5431 *p = s;
5436 * Set a string option to a new value, and handle the effects.
5438 static void
5439 set_string_option(opt_idx, value, opt_flags)
5440 int opt_idx;
5441 char_u *value;
5442 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
5444 char_u *s;
5445 char_u **varp;
5446 char_u *oldval;
5448 if (options[opt_idx].var == NULL) /* don't set hidden option */
5449 return;
5451 s = vim_strsave(value);
5452 if (s != NULL)
5454 varp = (char_u **)get_varp_scope(&(options[opt_idx]),
5455 (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
5456 ? (((int)options[opt_idx].indir & PV_BOTH)
5457 ? OPT_GLOBAL : OPT_LOCAL)
5458 : opt_flags);
5459 oldval = *varp;
5460 *varp = s;
5461 if (did_set_string_option(opt_idx, varp, TRUE, oldval, NULL,
5462 opt_flags) == NULL)
5463 did_set_option(opt_idx, opt_flags, TRUE);
5468 * Handle string options that need some action to perform when changed.
5469 * Returns NULL for success, or an error message for an error.
5471 static char_u *
5472 did_set_string_option(opt_idx, varp, new_value_alloced, oldval, errbuf,
5473 opt_flags)
5474 int opt_idx; /* index in options[] table */
5475 char_u **varp; /* pointer to the option variable */
5476 int new_value_alloced; /* new value was allocated */
5477 char_u *oldval; /* previous value of the option */
5478 char_u *errbuf; /* buffer for errors, or NULL */
5479 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
5481 char_u *errmsg = NULL;
5482 char_u *s, *p;
5483 int did_chartab = FALSE;
5484 char_u **gvarp;
5485 long_u free_oldval = (options[opt_idx].flags & P_ALLOCED);
5486 #ifdef FEAT_GUI
5487 /* set when changing an option that only requires a redraw in the GUI */
5488 int redraw_gui_only = FALSE;
5489 #endif
5491 /* Get the global option to compare with, otherwise we would have to check
5492 * two values for all local options. */
5493 gvarp = (char_u **)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL);
5495 /* Disallow changing some options from secure mode */
5496 if ((secure
5497 #ifdef HAVE_SANDBOX
5498 || sandbox != 0
5499 #endif
5500 ) && (options[opt_idx].flags & P_SECURE))
5502 errmsg = e_secure;
5505 /* Check for a "normal" file name in some options. Disallow a path
5506 * separator (slash and/or backslash), wildcards and characters that are
5507 * often illegal in a file name. */
5508 else if ((options[opt_idx].flags & P_NFNAME)
5509 && vim_strpbrk(*varp, (char_u *)"/\\*?[|<>") != NULL)
5511 errmsg = e_invarg;
5514 /* 'term' */
5515 else if (varp == &T_NAME)
5517 if (T_NAME[0] == NUL)
5518 errmsg = (char_u *)N_("E529: Cannot set 'term' to empty string");
5519 #ifdef FEAT_GUI
5520 if (gui.in_use)
5521 errmsg = (char_u *)N_("E530: Cannot change term in GUI");
5522 else if (term_is_gui(T_NAME))
5523 errmsg = (char_u *)N_("E531: Use \":gui\" to start the GUI");
5524 #endif
5525 else if (set_termname(T_NAME) == FAIL)
5526 errmsg = (char_u *)N_("E522: Not found in termcap");
5527 else
5528 /* Screen colors may have changed. */
5529 redraw_later_clear();
5532 /* 'backupcopy' */
5533 else if (varp == &p_bkc)
5535 if (opt_strings_flags(p_bkc, p_bkc_values, &bkc_flags, TRUE) != OK)
5536 errmsg = e_invarg;
5537 if (((bkc_flags & BKC_AUTO) != 0)
5538 + ((bkc_flags & BKC_YES) != 0)
5539 + ((bkc_flags & BKC_NO) != 0) != 1)
5541 /* Must have exactly one of "auto", "yes" and "no". */
5542 (void)opt_strings_flags(oldval, p_bkc_values, &bkc_flags, TRUE);
5543 errmsg = e_invarg;
5547 /* 'backupext' and 'patchmode' */
5548 else if (varp == &p_bex || varp == &p_pm)
5550 if (STRCMP(*p_bex == '.' ? p_bex + 1 : p_bex,
5551 *p_pm == '.' ? p_pm + 1 : p_pm) == 0)
5552 errmsg = (char_u *)N_("E589: 'backupext' and 'patchmode' are equal");
5556 * 'isident', 'iskeyword', 'isprint or 'isfname' option: refill chartab[]
5557 * If the new option is invalid, use old value. 'lisp' option: refill
5558 * chartab[] for '-' char
5560 else if ( varp == &p_isi
5561 || varp == &(curbuf->b_p_isk)
5562 || varp == &p_isp
5563 || varp == &p_isf)
5565 if (init_chartab() == FAIL)
5567 did_chartab = TRUE; /* need to restore it below */
5568 errmsg = e_invarg; /* error in value */
5572 /* 'helpfile' */
5573 else if (varp == &p_hf)
5575 /* May compute new values for $VIM and $VIMRUNTIME */
5576 if (didset_vim)
5578 vim_setenv((char_u *)"VIM", (char_u *)"");
5579 didset_vim = FALSE;
5581 if (didset_vimruntime)
5583 vim_setenv((char_u *)"VIMRUNTIME", (char_u *)"");
5584 didset_vimruntime = FALSE;
5588 #ifdef FEAT_MULTI_LANG
5589 /* 'helplang' */
5590 else if (varp == &p_hlg)
5592 /* Check for "", "ab", "ab,cd", etc. */
5593 for (s = p_hlg; *s != NUL; s += 3)
5595 if (s[1] == NUL || ((s[2] != ',' || s[3] == NUL) && s[2] != NUL))
5597 errmsg = e_invarg;
5598 break;
5600 if (s[2] == NUL)
5601 break;
5604 #endif
5606 /* 'highlight' */
5607 else if (varp == &p_hl)
5609 if (highlight_changed() == FAIL)
5610 errmsg = e_invarg; /* invalid flags */
5613 /* 'nrformats' */
5614 else if (gvarp == &p_nf)
5616 if (check_opt_strings(*varp, p_nf_values, TRUE) != OK)
5617 errmsg = e_invarg;
5620 #ifdef FEAT_SESSION
5621 /* 'sessionoptions' */
5622 else if (varp == &p_ssop)
5624 if (opt_strings_flags(p_ssop, p_ssop_values, &ssop_flags, TRUE) != OK)
5625 errmsg = e_invarg;
5626 if ((ssop_flags & SSOP_CURDIR) && (ssop_flags & SSOP_SESDIR))
5628 /* Don't allow both "sesdir" and "curdir". */
5629 (void)opt_strings_flags(oldval, p_ssop_values, &ssop_flags, TRUE);
5630 errmsg = e_invarg;
5633 /* 'viewoptions' */
5634 else if (varp == &p_vop)
5636 if (opt_strings_flags(p_vop, p_ssop_values, &vop_flags, TRUE) != OK)
5637 errmsg = e_invarg;
5639 #endif
5641 /* 'scrollopt' */
5642 #ifdef FEAT_SCROLLBIND
5643 else if (varp == &p_sbo)
5645 if (check_opt_strings(p_sbo, p_scbopt_values, TRUE) != OK)
5646 errmsg = e_invarg;
5648 #endif
5650 /* 'ambiwidth' */
5651 #ifdef FEAT_MBYTE
5652 else if (varp == &p_ambw)
5654 if (check_opt_strings(p_ambw, p_ambw_values, FALSE) != OK)
5655 errmsg = e_invarg;
5657 #endif
5659 /* 'background' */
5660 else if (varp == &p_bg)
5662 if (check_opt_strings(p_bg, p_bg_values, FALSE) == OK)
5664 #ifdef FEAT_EVAL
5665 int dark = (*p_bg == 'd');
5666 #endif
5668 init_highlight(FALSE, FALSE);
5670 #ifdef FEAT_EVAL
5671 if (dark != (*p_bg == 'd')
5672 && get_var_value((char_u *)"g:colors_name") != NULL)
5674 /* The color scheme must have set 'background' back to another
5675 * value, that's not what we want here. Disable the color
5676 * scheme and set the colors again. */
5677 do_unlet((char_u *)"g:colors_name", TRUE);
5678 free_string_option(p_bg);
5679 p_bg = vim_strsave((char_u *)(dark ? "dark" : "light"));
5680 check_string_option(&p_bg);
5681 init_highlight(FALSE, FALSE);
5683 #endif
5685 else
5686 errmsg = e_invarg;
5689 /* 'wildmode' */
5690 else if (varp == &p_wim)
5692 if (check_opt_wim() == FAIL)
5693 errmsg = e_invarg;
5696 #ifdef FEAT_CMDL_COMPL
5697 /* 'wildoptions' */
5698 else if (varp == &p_wop)
5700 if (check_opt_strings(p_wop, p_wop_values, TRUE) != OK)
5701 errmsg = e_invarg;
5703 #endif
5705 #ifdef FEAT_WAK
5706 /* 'winaltkeys' */
5707 else if (varp == &p_wak)
5709 if (*p_wak == NUL
5710 || check_opt_strings(p_wak, p_wak_values, FALSE) != OK)
5711 errmsg = e_invarg;
5712 # ifdef FEAT_MENU
5713 # ifdef FEAT_GUI_MOTIF
5714 else if (gui.in_use)
5715 gui_motif_set_mnemonics(p_wak[0] == 'y' || p_wak[0] == 'm');
5716 # else
5717 # ifdef FEAT_GUI_GTK
5718 else if (gui.in_use)
5719 gui_gtk_set_mnemonics(p_wak[0] == 'y' || p_wak[0] == 'm');
5720 # endif
5721 # endif
5722 # endif
5724 #endif
5726 #ifdef FEAT_AUTOCMD
5727 /* 'eventignore' */
5728 else if (varp == &p_ei)
5730 if (check_ei() == FAIL)
5731 errmsg = e_invarg;
5733 #endif
5735 #ifdef FEAT_MBYTE
5736 /* 'encoding' and 'fileencoding' */
5737 else if (varp == &p_enc || gvarp == &p_fenc || varp == &p_tenc)
5739 if (gvarp == &p_fenc)
5741 if (!curbuf->b_p_ma && opt_flags != OPT_GLOBAL)
5742 errmsg = e_modifiable;
5743 else if (vim_strchr(*varp, ',') != NULL)
5744 /* No comma allowed in 'fileencoding'; catches confusing it
5745 * with 'fileencodings'. */
5746 errmsg = e_invarg;
5747 else
5749 # ifdef FEAT_TITLE
5750 /* May show a "+" in the title now. */
5751 redraw_titles();
5752 # endif
5753 /* Add 'fileencoding' to the swap file. */
5754 ml_setflags(curbuf);
5757 if (errmsg == NULL)
5759 /* canonize the value, so that STRCMP() can be used on it */
5760 p = enc_canonize(*varp);
5761 if (p != NULL)
5763 vim_free(*varp);
5764 *varp = p;
5766 if (varp == &p_enc)
5768 errmsg = mb_init();
5769 # ifdef FEAT_TITLE
5770 redraw_titles();
5771 # endif
5775 # if defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)
5776 if (errmsg == NULL && varp == &p_tenc && gui.in_use)
5778 /* GTK+ 2 uses only a single encoding, and that is UTF-8. */
5779 if (STRCMP(p_tenc, "utf-8") != 0)
5780 errmsg = (char_u *)N_("E617: Cannot be changed in the GTK+ 2 GUI");
5782 # endif
5784 if (errmsg == NULL)
5786 # ifdef FEAT_KEYMAP
5787 /* When 'keymap' is used and 'encoding' changes, reload the keymap
5788 * (with another encoding). */
5789 if (varp == &p_enc && *curbuf->b_p_keymap != NUL)
5790 (void)keymap_init();
5791 # endif
5793 /* When 'termencoding' is not empty and 'encoding' changes or when
5794 * 'termencoding' changes, need to setup for keyboard input and
5795 * display output conversion. */
5796 if (((varp == &p_enc && *p_tenc != NUL) || varp == &p_tenc))
5798 convert_setup(&input_conv, p_tenc, p_enc);
5799 convert_setup(&output_conv, p_enc, p_tenc);
5802 # if defined(WIN3264) && defined(FEAT_MBYTE)
5803 /* $HOME may have characters in active code page. */
5804 if (varp == &p_enc)
5805 init_homedir();
5806 # endif
5809 #endif
5811 #if defined(FEAT_POSTSCRIPT)
5812 else if (varp == &p_penc)
5814 /* Canonize printencoding if VIM standard one */
5815 p = enc_canonize(p_penc);
5816 if (p != NULL)
5818 vim_free(p_penc);
5819 p_penc = p;
5821 else
5823 /* Ensure lower case and '-' for '_' */
5824 for (s = p_penc; *s != NUL; s++)
5826 if (*s == '_')
5827 *s = '-';
5828 else
5829 *s = TOLOWER_ASC(*s);
5833 #endif
5835 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
5836 else if (varp == &p_imak)
5838 if (gui.in_use && !im_xim_isvalid_imactivate())
5839 errmsg = e_invarg;
5841 #endif
5843 #ifdef FEAT_KEYMAP
5844 else if (varp == &curbuf->b_p_keymap)
5846 /* load or unload key mapping tables */
5847 errmsg = keymap_init();
5849 if (errmsg == NULL)
5851 if (*curbuf->b_p_keymap != NUL)
5853 /* Installed a new keymap, switch on using it. */
5854 curbuf->b_p_iminsert = B_IMODE_LMAP;
5855 if (curbuf->b_p_imsearch != B_IMODE_USE_INSERT)
5856 curbuf->b_p_imsearch = B_IMODE_LMAP;
5858 else
5860 /* Cleared the keymap, may reset 'iminsert' and 'imsearch'. */
5861 if (curbuf->b_p_iminsert == B_IMODE_LMAP)
5862 curbuf->b_p_iminsert = B_IMODE_NONE;
5863 if (curbuf->b_p_imsearch == B_IMODE_LMAP)
5864 curbuf->b_p_imsearch = B_IMODE_USE_INSERT;
5866 if ((opt_flags & OPT_LOCAL) == 0)
5868 set_iminsert_global();
5869 set_imsearch_global();
5871 # ifdef FEAT_WINDOWS
5872 status_redraw_curbuf();
5873 # endif
5876 #endif
5878 /* 'fileformat' */
5879 else if (gvarp == &p_ff)
5881 if (!curbuf->b_p_ma && !(opt_flags & OPT_GLOBAL))
5882 errmsg = e_modifiable;
5883 else if (check_opt_strings(*varp, p_ff_values, FALSE) != OK)
5884 errmsg = e_invarg;
5885 else
5887 /* may also change 'textmode' */
5888 if (get_fileformat(curbuf) == EOL_DOS)
5889 curbuf->b_p_tx = TRUE;
5890 else
5891 curbuf->b_p_tx = FALSE;
5892 #ifdef FEAT_TITLE
5893 redraw_titles();
5894 #endif
5895 /* update flag in swap file */
5896 ml_setflags(curbuf);
5897 /* Redraw needed when switching to/from "mac": a CR in the text
5898 * will be displayed differently. */
5899 if (get_fileformat(curbuf) == EOL_MAC || *oldval == 'm')
5900 redraw_curbuf_later(NOT_VALID);
5904 /* 'fileformats' */
5905 else if (varp == &p_ffs)
5907 if (check_opt_strings(p_ffs, p_ff_values, TRUE) != OK)
5908 errmsg = e_invarg;
5909 else
5911 /* also change 'textauto' */
5912 if (*p_ffs == NUL)
5913 p_ta = FALSE;
5914 else
5915 p_ta = TRUE;
5919 #if defined(FEAT_CRYPT) && defined(FEAT_CMDHIST)
5920 /* 'cryptkey' */
5921 else if (gvarp == &p_key)
5923 /* Make sure the ":set" command doesn't show the new value in the
5924 * history. */
5925 remove_key_from_history();
5927 #endif
5929 /* 'matchpairs' */
5930 else if (gvarp == &p_mps)
5932 /* Check for "x:y,x:y" */
5933 for (p = *varp; *p != NUL; p += 4)
5935 if (p[1] != ':' || p[2] == NUL || (p[3] != NUL && p[3] != ','))
5937 errmsg = e_invarg;
5938 break;
5940 if (p[3] == NUL)
5941 break;
5945 #ifdef FEAT_COMMENTS
5946 /* 'comments' */
5947 else if (gvarp == &p_com)
5949 for (s = *varp; *s; )
5951 while (*s && *s != ':')
5953 if (vim_strchr((char_u *)COM_ALL, *s) == NULL
5954 && !VIM_ISDIGIT(*s) && *s != '-')
5956 errmsg = illegal_char(errbuf, *s);
5957 break;
5959 ++s;
5961 if (*s++ == NUL)
5962 errmsg = (char_u *)N_("E524: Missing colon");
5963 else if (*s == ',' || *s == NUL)
5964 errmsg = (char_u *)N_("E525: Zero length string");
5965 if (errmsg != NULL)
5966 break;
5967 while (*s && *s != ',')
5969 if (*s == '\\' && s[1] != NUL)
5970 ++s;
5971 ++s;
5973 s = skip_to_option_part(s);
5976 #endif
5978 /* 'listchars' */
5979 else if (varp == &p_lcs)
5981 errmsg = set_chars_option(varp);
5984 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
5985 /* 'fillchars' */
5986 else if (varp == &p_fcs)
5988 errmsg = set_chars_option(varp);
5990 #endif
5992 #ifdef FEAT_CMDWIN
5993 /* 'cedit' */
5994 else if (varp == &p_cedit)
5996 errmsg = check_cedit();
5998 #endif
6000 /* 'verbosefile' */
6001 else if (varp == &p_vfile)
6003 verbose_stop();
6004 if (*p_vfile != NUL && verbose_open() == FAIL)
6005 errmsg = e_invarg;
6008 #ifdef FEAT_VIMINFO
6009 /* 'viminfo' */
6010 else if (varp == &p_viminfo)
6012 for (s = p_viminfo; *s;)
6014 /* Check it's a valid character */
6015 if (vim_strchr((char_u *)"!\"%'/:<@cfhnrs", *s) == NULL)
6017 errmsg = illegal_char(errbuf, *s);
6018 break;
6020 if (*s == 'n') /* name is always last one */
6022 break;
6024 else if (*s == 'r') /* skip until next ',' */
6026 while (*++s && *s != ',')
6029 else if (*s == '%')
6031 /* optional number */
6032 while (vim_isdigit(*++s))
6035 else if (*s == '!' || *s == 'h' || *s == 'c')
6036 ++s; /* no extra chars */
6037 else /* must have a number */
6039 while (vim_isdigit(*++s))
6042 if (!VIM_ISDIGIT(*(s - 1)))
6044 if (errbuf != NULL)
6046 sprintf((char *)errbuf,
6047 _("E526: Missing number after <%s>"),
6048 transchar_byte(*(s - 1)));
6049 errmsg = errbuf;
6051 else
6052 errmsg = (char_u *)"";
6053 break;
6056 if (*s == ',')
6057 ++s;
6058 else if (*s)
6060 if (errbuf != NULL)
6061 errmsg = (char_u *)N_("E527: Missing comma");
6062 else
6063 errmsg = (char_u *)"";
6064 break;
6067 if (*p_viminfo && errmsg == NULL && get_viminfo_parameter('\'') < 0)
6068 errmsg = (char_u *)N_("E528: Must specify a ' value");
6070 #endif /* FEAT_VIMINFO */
6072 /* terminal options */
6073 else if (istermoption(&options[opt_idx]) && full_screen)
6075 /* ":set t_Co=0" and ":set t_Co=1" do ":set t_Co=" */
6076 if (varp == &T_CCO)
6078 int colors = atoi((char *)T_CCO);
6080 /* Only reinitialize colors if t_Co value has really changed to
6081 * avoid expensive reload of colorscheme if t_Co is set to the
6082 * same value multiple times. */
6083 if (colors != t_colors)
6085 t_colors = colors;
6086 if (t_colors <= 1)
6088 if (new_value_alloced)
6089 vim_free(T_CCO);
6090 T_CCO = empty_option;
6092 /* We now have a different color setup, initialize it again. */
6093 init_highlight(TRUE, FALSE);
6096 ttest(FALSE);
6097 if (varp == &T_ME)
6099 out_str(T_ME);
6100 redraw_later(CLEAR);
6101 #if defined(MSDOS) || (defined(WIN3264) && !defined(FEAT_GUI_W32))
6102 /* Since t_me has been set, this probably means that the user
6103 * wants to use this as default colors. Need to reset default
6104 * background/foreground colors. */
6105 mch_set_normal_colors();
6106 #endif
6110 #ifdef FEAT_LINEBREAK
6111 /* 'showbreak' */
6112 else if (varp == &p_sbr)
6114 for (s = p_sbr; *s; )
6116 if (ptr2cells(s) != 1)
6117 errmsg = (char_u *)N_("E595: contains unprintable or wide character");
6118 mb_ptr_adv(s);
6121 #endif
6123 #ifdef FEAT_GUI
6124 /* 'guifont' */
6125 else if (varp == &p_guifont)
6127 if (gui.in_use)
6129 p = p_guifont;
6130 # if defined(FEAT_GUI_GTK)
6132 * Put up a font dialog and let the user select a new value.
6133 * If this is cancelled go back to the old value but don't
6134 * give an error message.
6136 if (STRCMP(p, "*") == 0)
6138 p = gui_mch_font_dialog(oldval);
6140 if (new_value_alloced)
6141 free_string_option(p_guifont);
6143 p_guifont = (p != NULL) ? p : vim_strsave(oldval);
6144 new_value_alloced = TRUE;
6146 # endif
6147 if (p != NULL && gui_init_font(p_guifont, FALSE) != OK)
6149 # if defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_PHOTON)
6150 if (STRCMP(p_guifont, "*") == 0)
6152 /* Dialog was cancelled: Keep the old value without giving
6153 * an error message. */
6154 if (new_value_alloced)
6155 free_string_option(p_guifont);
6156 p_guifont = vim_strsave(oldval);
6157 new_value_alloced = TRUE;
6159 else
6160 # endif
6161 errmsg = (char_u *)N_("E596: Invalid font(s)");
6164 redraw_gui_only = TRUE;
6166 # ifdef FEAT_XFONTSET
6167 else if (varp == &p_guifontset)
6169 if (STRCMP(p_guifontset, "*") == 0)
6170 errmsg = (char_u *)N_("E597: can't select fontset");
6171 else if (gui.in_use && gui_init_font(p_guifontset, TRUE) != OK)
6172 errmsg = (char_u *)N_("E598: Invalid fontset");
6173 redraw_gui_only = TRUE;
6175 # endif
6176 # ifdef FEAT_MBYTE
6177 else if (varp == &p_guifontwide)
6179 if (STRCMP(p_guifontwide, "*") == 0)
6180 errmsg = (char_u *)N_("E533: can't select wide font");
6181 else if (gui_get_wide_font() == FAIL)
6182 errmsg = (char_u *)N_("E534: Invalid wide font");
6183 redraw_gui_only = TRUE;
6185 # endif
6186 #endif
6188 #ifdef CURSOR_SHAPE
6189 /* 'guicursor' */
6190 else if (varp == &p_guicursor)
6191 errmsg = parse_shape_opt(SHAPE_CURSOR);
6192 #endif
6194 #ifdef FEAT_MOUSESHAPE
6195 /* 'mouseshape' */
6196 else if (varp == &p_mouseshape)
6198 errmsg = parse_shape_opt(SHAPE_MOUSE);
6199 update_mouseshape(-1);
6201 #endif
6203 #ifdef FEAT_PRINTER
6204 else if (varp == &p_popt)
6205 errmsg = parse_printoptions();
6206 # if defined(FEAT_MBYTE) && defined(FEAT_POSTSCRIPT)
6207 else if (varp == &p_pmfn)
6208 errmsg = parse_printmbfont();
6209 # endif
6210 #endif
6212 #ifdef FEAT_LANGMAP
6213 /* 'langmap' */
6214 else if (varp == &p_langmap)
6215 langmap_set();
6216 #endif
6218 #ifdef FEAT_LINEBREAK
6219 /* 'breakat' */
6220 else if (varp == &p_breakat)
6221 fill_breakat_flags();
6222 #endif
6224 #ifdef FEAT_TITLE
6225 /* 'titlestring' and 'iconstring' */
6226 else if (varp == &p_titlestring || varp == &p_iconstring)
6228 # ifdef FEAT_STL_OPT
6229 int flagval = (varp == &p_titlestring) ? STL_IN_TITLE : STL_IN_ICON;
6231 /* NULL => statusline syntax */
6232 if (vim_strchr(*varp, '%') && check_stl_option(*varp) == NULL)
6233 stl_syntax |= flagval;
6234 else
6235 stl_syntax &= ~flagval;
6236 # endif
6237 did_set_title(varp == &p_iconstring);
6240 #endif
6242 #ifdef FEAT_GUI
6243 /* 'guioptions' */
6244 else if (varp == &p_go)
6246 gui_init_which_components(oldval);
6247 redraw_gui_only = TRUE;
6249 #endif
6251 #if defined(FEAT_GUI_TABLINE)
6252 /* 'guitablabel' */
6253 else if (varp == &p_gtl)
6255 redraw_tabline = TRUE;
6256 redraw_gui_only = TRUE;
6258 /* 'guitabtooltip' */
6259 else if (varp == &p_gtt)
6261 redraw_gui_only = TRUE;
6263 #endif
6265 #if defined(FEAT_MOUSE_TTY) && (defined(UNIX) || defined(VMS))
6266 /* 'ttymouse' */
6267 else if (varp == &p_ttym)
6269 /* Switch the mouse off before changing the escape sequences used for
6270 * that. */
6271 mch_setmouse(FALSE);
6272 if (opt_strings_flags(p_ttym, p_ttym_values, &ttym_flags, FALSE) != OK)
6273 errmsg = e_invarg;
6274 else
6275 check_mouse_termcode();
6276 if (termcap_active)
6277 setmouse(); /* may switch it on again */
6279 #endif
6281 #ifdef FEAT_VISUAL
6282 /* 'selection' */
6283 else if (varp == &p_sel)
6285 if (*p_sel == NUL
6286 || check_opt_strings(p_sel, p_sel_values, FALSE) != OK)
6287 errmsg = e_invarg;
6290 /* 'selectmode' */
6291 else if (varp == &p_slm)
6293 if (check_opt_strings(p_slm, p_slm_values, TRUE) != OK)
6294 errmsg = e_invarg;
6296 #endif
6298 #ifdef FEAT_BROWSE
6299 /* 'browsedir' */
6300 else if (varp == &p_bsdir)
6302 if (check_opt_strings(p_bsdir, p_bsdir_values, FALSE) != OK
6303 && !mch_isdir(p_bsdir))
6304 errmsg = e_invarg;
6306 #endif
6308 #ifdef FEAT_VISUAL
6309 /* 'keymodel' */
6310 else if (varp == &p_km)
6312 if (check_opt_strings(p_km, p_km_values, TRUE) != OK)
6313 errmsg = e_invarg;
6314 else
6316 km_stopsel = (vim_strchr(p_km, 'o') != NULL);
6317 km_startsel = (vim_strchr(p_km, 'a') != NULL);
6320 #endif
6322 /* 'mousemodel' */
6323 else if (varp == &p_mousem)
6325 if (check_opt_strings(p_mousem, p_mousem_values, FALSE) != OK)
6326 errmsg = e_invarg;
6327 #if defined(FEAT_GUI_MOTIF) && defined(FEAT_MENU) && (XmVersion <= 1002)
6328 else if (*p_mousem != *oldval)
6329 /* Changed from "extend" to "popup" or "popup_setpos" or vv: need
6330 * to create or delete the popup menus. */
6331 gui_motif_update_mousemodel(root_menu);
6332 #endif
6335 /* 'switchbuf' */
6336 else if (varp == &p_swb)
6338 if (opt_strings_flags(p_swb, p_swb_values, &swb_flags, TRUE) != OK)
6339 errmsg = e_invarg;
6342 /* 'debug' */
6343 else if (varp == &p_debug)
6345 if (check_opt_strings(p_debug, p_debug_values, TRUE) != OK)
6346 errmsg = e_invarg;
6349 /* 'display' */
6350 else if (varp == &p_dy)
6352 if (opt_strings_flags(p_dy, p_dy_values, &dy_flags, TRUE) != OK)
6353 errmsg = e_invarg;
6354 else
6355 (void)init_chartab();
6359 #ifdef FEAT_VERTSPLIT
6360 /* 'eadirection' */
6361 else if (varp == &p_ead)
6363 if (check_opt_strings(p_ead, p_ead_values, FALSE) != OK)
6364 errmsg = e_invarg;
6366 #endif
6368 #ifdef FEAT_CLIPBOARD
6369 /* 'clipboard' */
6370 else if (varp == &p_cb)
6371 errmsg = check_clipboard_option();
6372 #endif
6374 #ifdef FEAT_SPELL
6375 /* When 'spelllang' or 'spellfile' is set and there is a window for this
6376 * buffer in which 'spell' is set load the wordlists. */
6377 else if (varp == &(curbuf->b_p_spl) || varp == &(curbuf->b_p_spf))
6379 win_T *wp;
6380 int l;
6382 if (varp == &(curbuf->b_p_spf))
6384 l = (int)STRLEN(curbuf->b_p_spf);
6385 if (l > 0 && (l < 4 || STRCMP(curbuf->b_p_spf + l - 4,
6386 ".add") != 0))
6387 errmsg = e_invarg;
6390 if (errmsg == NULL)
6392 FOR_ALL_WINDOWS(wp)
6393 if (wp->w_buffer == curbuf && wp->w_p_spell)
6395 errmsg = did_set_spelllang(curbuf);
6396 # ifdef FEAT_WINDOWS
6397 break;
6398 # endif
6402 /* When 'spellcapcheck' is set compile the regexp program. */
6403 else if (varp == &(curbuf->b_p_spc))
6405 errmsg = compile_cap_prog(curbuf);
6407 /* 'spellsuggest' */
6408 else if (varp == &p_sps)
6410 if (spell_check_sps() != OK)
6411 errmsg = e_invarg;
6413 /* 'mkspellmem' */
6414 else if (varp == &p_msm)
6416 if (spell_check_msm() != OK)
6417 errmsg = e_invarg;
6419 #endif
6421 #ifdef FEAT_QUICKFIX
6422 /* When 'bufhidden' is set, check for valid value. */
6423 else if (gvarp == &p_bh)
6425 if (check_opt_strings(curbuf->b_p_bh, p_bufhidden_values, FALSE) != OK)
6426 errmsg = e_invarg;
6429 /* When 'buftype' is set, check for valid value. */
6430 else if (gvarp == &p_bt)
6432 if (check_opt_strings(curbuf->b_p_bt, p_buftype_values, FALSE) != OK)
6433 errmsg = e_invarg;
6434 else
6436 # ifdef FEAT_WINDOWS
6437 if (curwin->w_status_height)
6439 curwin->w_redr_status = TRUE;
6440 redraw_later(VALID);
6442 # endif
6443 curbuf->b_help = (curbuf->b_p_bt[0] == 'h');
6444 # ifdef FEAT_TITLE
6445 redraw_titles();
6446 # endif
6449 #endif
6451 #ifdef FEAT_STL_OPT
6452 /* 'statusline' or 'rulerformat' */
6453 else if (gvarp == &p_stl || varp == &p_ruf)
6455 int wid;
6457 if (varp == &p_ruf) /* reset ru_wid first */
6458 ru_wid = 0;
6459 s = *varp;
6460 if (varp == &p_ruf && *s == '%')
6462 /* set ru_wid if 'ruf' starts with "%99(" */
6463 if (*++s == '-') /* ignore a '-' */
6464 s++;
6465 wid = getdigits(&s);
6466 if (wid && *s == '(' && (errmsg = check_stl_option(p_ruf)) == NULL)
6467 ru_wid = wid;
6468 else
6469 errmsg = check_stl_option(p_ruf);
6471 /* check 'statusline' only if it doesn't start with "%!" */
6472 else if (varp == &p_ruf || s[0] != '%' || s[1] != '!')
6473 errmsg = check_stl_option(s);
6474 if (varp == &p_ruf && errmsg == NULL)
6475 comp_col();
6477 #endif
6479 #ifdef FEAT_INS_EXPAND
6480 /* check if it is a valid value for 'complete' -- Acevedo */
6481 else if (gvarp == &p_cpt)
6483 for (s = *varp; *s;)
6485 while(*s == ',' || *s == ' ')
6486 s++;
6487 if (!*s)
6488 break;
6489 if (vim_strchr((char_u *)".wbuksid]tU", *s) == NULL)
6491 errmsg = illegal_char(errbuf, *s);
6492 break;
6494 if (*++s != NUL && *s != ',' && *s != ' ')
6496 if (s[-1] == 'k' || s[-1] == 's')
6498 /* skip optional filename after 'k' and 's' */
6499 while (*s && *s != ',' && *s != ' ')
6501 if (*s == '\\')
6502 ++s;
6503 ++s;
6506 else
6508 if (errbuf != NULL)
6510 sprintf((char *)errbuf,
6511 _("E535: Illegal character after <%c>"),
6512 *--s);
6513 errmsg = errbuf;
6515 else
6516 errmsg = (char_u *)"";
6517 break;
6523 /* 'completeopt' */
6524 else if (varp == &p_cot)
6526 if (check_opt_strings(p_cot, p_cot_values, TRUE) != OK)
6527 errmsg = e_invarg;
6529 #endif /* FEAT_INS_EXPAND */
6532 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
6533 else if (varp == &p_toolbar)
6535 if (opt_strings_flags(p_toolbar, p_toolbar_values,
6536 &toolbar_flags, TRUE) != OK)
6537 errmsg = e_invarg;
6538 else
6540 out_flush();
6541 gui_mch_show_toolbar((toolbar_flags &
6542 (TOOLBAR_TEXT | TOOLBAR_ICONS)) != 0);
6545 #endif
6547 #if defined(FEAT_TOOLBAR) && defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)
6548 /* 'toolbariconsize': GTK+ 2 only */
6549 else if (varp == &p_tbis)
6551 if (opt_strings_flags(p_tbis, p_tbis_values, &tbis_flags, FALSE) != OK)
6552 errmsg = e_invarg;
6553 else
6555 out_flush();
6556 gui_mch_show_toolbar((toolbar_flags &
6557 (TOOLBAR_TEXT | TOOLBAR_ICONS)) != 0);
6560 #endif
6562 /* 'pastetoggle': translate key codes like in a mapping */
6563 else if (varp == &p_pt)
6565 if (*p_pt)
6567 (void)replace_termcodes(p_pt, &p, TRUE, TRUE, FALSE);
6568 if (p != NULL)
6570 if (new_value_alloced)
6571 free_string_option(p_pt);
6572 p_pt = p;
6573 new_value_alloced = TRUE;
6578 /* 'backspace' */
6579 else if (varp == &p_bs)
6581 if (VIM_ISDIGIT(*p_bs))
6583 if (*p_bs >'2' || p_bs[1] != NUL)
6584 errmsg = e_invarg;
6586 else if (check_opt_strings(p_bs, p_bs_values, TRUE) != OK)
6587 errmsg = e_invarg;
6590 #ifdef FEAT_MBYTE
6591 /* 'casemap' */
6592 else if (varp == &p_cmp)
6594 if (opt_strings_flags(p_cmp, p_cmp_values, &cmp_flags, TRUE) != OK)
6595 errmsg = e_invarg;
6597 #endif
6599 #ifdef FEAT_DIFF
6600 /* 'diffopt' */
6601 else if (varp == &p_dip)
6603 if (diffopt_changed() == FAIL)
6604 errmsg = e_invarg;
6606 #endif
6608 #ifdef FEAT_FOLDING
6609 /* 'foldmethod' */
6610 else if (gvarp == &curwin->w_allbuf_opt.wo_fdm)
6612 if (check_opt_strings(*varp, p_fdm_values, FALSE) != OK
6613 || *curwin->w_p_fdm == NUL)
6614 errmsg = e_invarg;
6615 else
6617 foldUpdateAll(curwin);
6618 if (foldmethodIsDiff(curwin))
6619 newFoldLevel();
6622 # ifdef FEAT_EVAL
6623 /* 'foldexpr' */
6624 else if (varp == &curwin->w_p_fde)
6626 if (foldmethodIsExpr(curwin))
6627 foldUpdateAll(curwin);
6629 # endif
6630 /* 'foldmarker' */
6631 else if (gvarp == &curwin->w_allbuf_opt.wo_fmr)
6633 p = vim_strchr(*varp, ',');
6634 if (p == NULL)
6635 errmsg = (char_u *)N_("E536: comma required");
6636 else if (p == *varp || p[1] == NUL)
6637 errmsg = e_invarg;
6638 else if (foldmethodIsMarker(curwin))
6639 foldUpdateAll(curwin);
6641 /* 'commentstring' */
6642 else if (gvarp == &p_cms)
6644 if (**varp != NUL && strstr((char *)*varp, "%s") == NULL)
6645 errmsg = (char_u *)N_("E537: 'commentstring' must be empty or contain %s");
6647 /* 'foldopen' */
6648 else if (varp == &p_fdo)
6650 if (opt_strings_flags(p_fdo, p_fdo_values, &fdo_flags, TRUE) != OK)
6651 errmsg = e_invarg;
6653 /* 'foldclose' */
6654 else if (varp == &p_fcl)
6656 if (check_opt_strings(p_fcl, p_fcl_values, TRUE) != OK)
6657 errmsg = e_invarg;
6659 /* 'foldignore' */
6660 else if (gvarp == &curwin->w_allbuf_opt.wo_fdi)
6662 if (foldmethodIsIndent(curwin))
6663 foldUpdateAll(curwin);
6665 #endif
6667 #ifdef FEAT_VIRTUALEDIT
6668 /* 'virtualedit' */
6669 else if (varp == &p_ve)
6671 if (opt_strings_flags(p_ve, p_ve_values, &ve_flags, TRUE) != OK)
6672 errmsg = e_invarg;
6673 else if (STRCMP(p_ve, oldval) != 0)
6675 /* Recompute cursor position in case the new 've' setting
6676 * changes something. */
6677 validate_virtcol();
6678 coladvance(curwin->w_virtcol);
6681 #endif
6683 #if defined(FEAT_CSCOPE) && defined(FEAT_QUICKFIX)
6684 else if (varp == &p_csqf)
6686 if (p_csqf != NULL)
6688 p = p_csqf;
6689 while (*p != NUL)
6691 if (vim_strchr((char_u *)CSQF_CMDS, *p) == NULL
6692 || p[1] == NUL
6693 || vim_strchr((char_u *)CSQF_FLAGS, p[1]) == NULL
6694 || (p[2] != NUL && p[2] != ','))
6696 errmsg = e_invarg;
6697 break;
6699 else if (p[2] == NUL)
6700 break;
6701 else
6702 p += 3;
6706 #endif
6708 /* Options that are a list of flags. */
6709 else
6711 p = NULL;
6712 if (varp == &p_ww)
6713 p = (char_u *)WW_ALL;
6714 if (varp == &p_shm)
6715 p = (char_u *)SHM_ALL;
6716 else if (varp == &(p_cpo))
6717 p = (char_u *)CPO_ALL;
6718 else if (varp == &(curbuf->b_p_fo))
6719 p = (char_u *)FO_ALL;
6720 else if (varp == &p_mouse)
6722 #ifdef FEAT_MOUSE
6723 p = (char_u *)MOUSE_ALL;
6724 #else
6725 if (*p_mouse != NUL)
6726 errmsg = (char_u *)N_("E538: No mouse support");
6727 #endif
6729 #if defined(FEAT_GUI)
6730 else if (varp == &p_go)
6731 p = (char_u *)GO_ALL;
6732 #endif
6733 if (p != NULL)
6735 for (s = *varp; *s; ++s)
6736 if (vim_strchr(p, *s) == NULL)
6738 errmsg = illegal_char(errbuf, *s);
6739 break;
6745 * If error detected, restore the previous value.
6747 if (errmsg != NULL)
6749 if (new_value_alloced)
6750 free_string_option(*varp);
6751 *varp = oldval;
6753 * When resetting some values, need to act on it.
6755 if (did_chartab)
6756 (void)init_chartab();
6757 if (varp == &p_hl)
6758 (void)highlight_changed();
6760 else
6762 #ifdef FEAT_EVAL
6763 /* Remember where the option was set. */
6764 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
6765 #endif
6767 * Free string options that are in allocated memory.
6768 * Use "free_oldval", because recursiveness may change the flags under
6769 * our fingers (esp. init_highlight()).
6771 if (free_oldval)
6772 free_string_option(oldval);
6773 if (new_value_alloced)
6774 options[opt_idx].flags |= P_ALLOCED;
6775 else
6776 options[opt_idx].flags &= ~P_ALLOCED;
6778 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
6779 && ((int)options[opt_idx].indir & PV_BOTH))
6781 /* global option with local value set to use global value; free
6782 * the local value and make it empty */
6783 p = get_varp_scope(&(options[opt_idx]), OPT_LOCAL);
6784 free_string_option(*(char_u **)p);
6785 *(char_u **)p = empty_option;
6788 /* May set global value for local option. */
6789 else if (!(opt_flags & OPT_LOCAL) && opt_flags != OPT_GLOBAL)
6790 set_string_option_global(opt_idx, varp);
6792 #ifdef FEAT_AUTOCMD
6794 * Trigger the autocommand only after setting the flags.
6796 # ifdef FEAT_SYN_HL
6797 /* When 'syntax' is set, load the syntax of that name */
6798 if (varp == &(curbuf->b_p_syn))
6800 apply_autocmds(EVENT_SYNTAX, curbuf->b_p_syn,
6801 curbuf->b_fname, TRUE, curbuf);
6803 # endif
6804 else if (varp == &(curbuf->b_p_ft))
6806 /* 'filetype' is set, trigger the FileType autocommand */
6807 did_filetype = TRUE;
6808 apply_autocmds(EVENT_FILETYPE, curbuf->b_p_ft,
6809 curbuf->b_fname, TRUE, curbuf);
6811 #endif
6812 #ifdef FEAT_SPELL
6813 if (varp == &(curbuf->b_p_spl))
6815 char_u fname[200];
6818 * Source the spell/LANG.vim in 'runtimepath'.
6819 * They could set 'spellcapcheck' depending on the language.
6820 * Use the first name in 'spelllang' up to '_region' or
6821 * '.encoding'.
6823 for (p = curbuf->b_p_spl; *p != NUL; ++p)
6824 if (vim_strchr((char_u *)"_.,", *p) != NULL)
6825 break;
6826 vim_snprintf((char *)fname, 200, "spell/%.*s.vim",
6827 (int)(p - curbuf->b_p_spl), curbuf->b_p_spl);
6828 source_runtime(fname, TRUE);
6830 #endif
6833 #ifdef FEAT_MOUSE
6834 if (varp == &p_mouse)
6836 # ifdef FEAT_MOUSE_TTY
6837 if (*p_mouse == NUL)
6838 mch_setmouse(FALSE); /* switch mouse off */
6839 else
6840 # endif
6841 setmouse(); /* in case 'mouse' changed */
6843 #endif
6845 if (curwin->w_curswant != MAXCOL)
6846 curwin->w_set_curswant = TRUE; /* in case 'showbreak' changed */
6847 #ifdef FEAT_GUI
6848 /* check redraw when it's not a GUI option or the GUI is active. */
6849 if (!redraw_gui_only || gui.in_use)
6850 #endif
6851 check_redraw(options[opt_idx].flags);
6853 return errmsg;
6857 * Handle setting 'listchars' or 'fillchars'.
6858 * Returns error message, NULL if it's OK.
6860 static char_u *
6861 set_chars_option(varp)
6862 char_u **varp;
6864 int round, i, len, entries;
6865 char_u *p, *s;
6866 int c1, c2 = 0;
6867 struct charstab
6869 int *cp;
6870 char *name;
6872 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6873 static struct charstab filltab[] =
6875 {&fill_stl, "stl"},
6876 {&fill_stlnc, "stlnc"},
6877 {&fill_vert, "vert"},
6878 {&fill_fold, "fold"},
6879 {&fill_diff, "diff"},
6881 #endif
6882 static struct charstab lcstab[] =
6884 {&lcs_eol, "eol"},
6885 {&lcs_ext, "extends"},
6886 {&lcs_nbsp, "nbsp"},
6887 {&lcs_prec, "precedes"},
6888 {&lcs_tab2, "tab"},
6889 {&lcs_trail, "trail"},
6891 struct charstab *tab;
6893 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6894 if (varp == &p_lcs)
6895 #endif
6897 tab = lcstab;
6898 entries = sizeof(lcstab) / sizeof(struct charstab);
6900 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6901 else
6903 tab = filltab;
6904 entries = sizeof(filltab) / sizeof(struct charstab);
6906 #endif
6908 /* first round: check for valid value, second round: assign values */
6909 for (round = 0; round <= 1; ++round)
6911 if (round)
6913 /* After checking that the value is valid: set defaults: space for
6914 * 'fillchars', NUL for 'listchars' */
6915 for (i = 0; i < entries; ++i)
6916 *(tab[i].cp) = (varp == &p_lcs ? NUL : ' ');
6917 if (varp == &p_lcs)
6918 lcs_tab1 = NUL;
6919 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6920 else
6921 fill_diff = '-';
6922 #endif
6924 p = *varp;
6925 while (*p)
6927 for (i = 0; i < entries; ++i)
6929 len = (int)STRLEN(tab[i].name);
6930 if (STRNCMP(p, tab[i].name, len) == 0
6931 && p[len] == ':'
6932 && p[len + 1] != NUL)
6934 s = p + len + 1;
6935 #ifdef FEAT_MBYTE
6936 c1 = mb_ptr2char_adv(&s);
6937 if (mb_char2cells(c1) > 1)
6938 continue;
6939 #else
6940 c1 = *s++;
6941 #endif
6942 if (tab[i].cp == &lcs_tab2)
6944 if (*s == NUL)
6945 continue;
6946 #ifdef FEAT_MBYTE
6947 c2 = mb_ptr2char_adv(&s);
6948 if (mb_char2cells(c2) > 1)
6949 continue;
6950 #else
6951 c2 = *s++;
6952 #endif
6954 if (*s == ',' || *s == NUL)
6956 if (round)
6958 if (tab[i].cp == &lcs_tab2)
6960 lcs_tab1 = c1;
6961 lcs_tab2 = c2;
6963 else
6964 *(tab[i].cp) = c1;
6967 p = s;
6968 break;
6973 if (i == entries)
6974 return e_invarg;
6975 if (*p == ',')
6976 ++p;
6980 return NULL; /* no error */
6983 #ifdef FEAT_STL_OPT
6985 * Check validity of options with the 'statusline' format.
6986 * Return error message or NULL.
6988 char_u *
6989 check_stl_option(s)
6990 char_u *s;
6992 int itemcnt = 0;
6993 int groupdepth = 0;
6994 static char_u errbuf[80];
6996 while (*s && itemcnt < STL_MAX_ITEM)
6998 /* Check for valid keys after % sequences */
6999 while (*s && *s != '%')
7000 s++;
7001 if (!*s)
7002 break;
7003 s++;
7004 if (*s != '%' && *s != ')')
7005 ++itemcnt;
7006 if (*s == '%' || *s == STL_TRUNCMARK || *s == STL_MIDDLEMARK)
7008 s++;
7009 continue;
7011 if (*s == ')')
7013 s++;
7014 if (--groupdepth < 0)
7015 break;
7016 continue;
7018 if (*s == '-')
7019 s++;
7020 while (VIM_ISDIGIT(*s))
7021 s++;
7022 if (*s == STL_USER_HL)
7023 continue;
7024 if (*s == '.')
7026 s++;
7027 while (*s && VIM_ISDIGIT(*s))
7028 s++;
7030 if (*s == '(')
7032 groupdepth++;
7033 continue;
7035 if (vim_strchr(STL_ALL, *s) == NULL)
7037 return illegal_char(errbuf, *s);
7039 if (*s == '{')
7041 s++;
7042 while (*s != '}' && *s)
7043 s++;
7044 if (*s != '}')
7045 return (char_u *)N_("E540: Unclosed expression sequence");
7048 if (itemcnt >= STL_MAX_ITEM)
7049 return (char_u *)N_("E541: too many items");
7050 if (groupdepth != 0)
7051 return (char_u *)N_("E542: unbalanced groups");
7052 return NULL;
7054 #endif
7056 #ifdef FEAT_CLIPBOARD
7058 * Extract the items in the 'clipboard' option and set global values.
7060 static char_u *
7061 check_clipboard_option()
7063 int new_unnamed = FALSE;
7064 int new_autoselect = FALSE;
7065 int new_autoselectml = FALSE;
7066 int new_html = FALSE;
7067 regprog_T *new_exclude_prog = NULL;
7068 char_u *errmsg = NULL;
7069 char_u *p;
7071 for (p = p_cb; *p != NUL; )
7073 if (STRNCMP(p, "unnamed", 7) == 0 && (p[7] == ',' || p[7] == NUL))
7075 new_unnamed = TRUE;
7076 p += 7;
7078 else if (STRNCMP(p, "autoselect", 10) == 0
7079 && (p[10] == ',' || p[10] == NUL))
7081 new_autoselect = TRUE;
7082 p += 10;
7084 else if (STRNCMP(p, "autoselectml", 12) == 0
7085 && (p[12] == ',' || p[12] == NUL))
7087 new_autoselectml = TRUE;
7088 p += 12;
7090 else if (STRNCMP(p, "html", 4) == 0 && (p[4] == ',' || p[4] == NUL))
7092 new_html = TRUE;
7093 p += 4;
7095 else if (STRNCMP(p, "exclude:", 8) == 0 && new_exclude_prog == NULL)
7097 p += 8;
7098 new_exclude_prog = vim_regcomp(p, RE_MAGIC);
7099 if (new_exclude_prog == NULL)
7100 errmsg = e_invarg;
7101 break;
7103 else
7105 errmsg = e_invarg;
7106 break;
7108 if (*p == ',')
7109 ++p;
7111 if (errmsg == NULL)
7113 clip_unnamed = new_unnamed;
7114 clip_autoselect = new_autoselect;
7115 clip_autoselectml = new_autoselectml;
7116 clip_html = new_html;
7117 vim_free(clip_exclude_prog);
7118 clip_exclude_prog = new_exclude_prog;
7120 else
7121 vim_free(new_exclude_prog);
7123 return errmsg;
7125 #endif
7127 #ifdef FEAT_SPELL
7129 * Set curbuf->b_cap_prog to the regexp program for 'spellcapcheck'.
7130 * Return error message when failed, NULL when OK.
7132 static char_u *
7133 compile_cap_prog(buf)
7134 buf_T *buf;
7136 regprog_T *rp = buf->b_cap_prog;
7137 char_u *re;
7139 if (*buf->b_p_spc == NUL)
7140 buf->b_cap_prog = NULL;
7141 else
7143 /* Prepend a ^ so that we only match at one column */
7144 re = concat_str((char_u *)"^", buf->b_p_spc);
7145 if (re != NULL)
7147 buf->b_cap_prog = vim_regcomp(re, RE_MAGIC);
7148 if (buf->b_cap_prog == NULL)
7150 buf->b_cap_prog = rp; /* restore the previous program */
7151 return e_invarg;
7153 vim_free(re);
7157 vim_free(rp);
7158 return NULL;
7160 #endif
7162 #if defined(FEAT_EVAL) || defined(PROTO)
7164 * Set the scriptID for an option, taking care of setting the buffer- or
7165 * window-local value.
7167 static void
7168 set_option_scriptID_idx(opt_idx, opt_flags, id)
7169 int opt_idx;
7170 int opt_flags;
7171 int id;
7173 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
7174 int indir = (int)options[opt_idx].indir;
7176 /* Remember where the option was set. For local options need to do that
7177 * in the buffer or window structure. */
7178 if (both || (opt_flags & OPT_GLOBAL) || (indir & (PV_BUF|PV_WIN)) == 0)
7179 options[opt_idx].scriptID = id;
7180 if (both || (opt_flags & OPT_LOCAL))
7182 if (indir & PV_BUF)
7183 curbuf->b_p_scriptID[indir & PV_MASK] = id;
7184 else if (indir & PV_WIN)
7185 curwin->w_p_scriptID[indir & PV_MASK] = id;
7188 #endif
7191 * Set the value of a boolean option, and take care of side effects.
7192 * Returns NULL for success, or an error message for an error.
7194 static char_u *
7195 set_bool_option(opt_idx, varp, value, opt_flags)
7196 int opt_idx; /* index in options[] table */
7197 char_u *varp; /* pointer to the option variable */
7198 int value; /* new value */
7199 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
7201 int old_value = *(int *)varp;
7203 /* Disallow changing some options from secure mode */
7204 if ((secure
7205 #ifdef HAVE_SANDBOX
7206 || sandbox != 0
7207 #endif
7208 ) && (options[opt_idx].flags & P_SECURE))
7209 return e_secure;
7211 *(int *)varp = value; /* set the new value */
7212 #ifdef FEAT_EVAL
7213 /* Remember where the option was set. */
7214 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
7215 #endif
7217 #ifdef FEAT_GUI
7218 need_mouse_correct = TRUE;
7219 #endif
7221 /* May set global value for local option. */
7222 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0)
7223 *(int *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) = value;
7226 * Handle side effects of changing a bool option.
7229 /* 'compatible' */
7230 if ((int *)varp == &p_cp)
7232 compatible_set();
7235 /* 'list', 'number' */
7236 else if ((int *)varp == &curwin->w_p_list
7237 || (int *)varp == &curwin->w_p_nu)
7239 if (curwin->w_curswant != MAXCOL)
7240 curwin->w_set_curswant = TRUE;
7243 else if ((int *)varp == &curbuf->b_p_ro)
7245 /* when 'readonly' is reset globally, also reset readonlymode */
7246 if (!curbuf->b_p_ro && (opt_flags & OPT_LOCAL) == 0)
7247 readonlymode = FALSE;
7249 /* when 'readonly' is set may give W10 again */
7250 if (curbuf->b_p_ro)
7251 curbuf->b_did_warn = FALSE;
7253 #ifdef FEAT_TITLE
7254 redraw_titles();
7255 #endif
7258 #ifdef FEAT_TITLE
7259 /* when 'modifiable' is changed, redraw the window title */
7260 else if ((int *)varp == &curbuf->b_p_ma)
7262 redraw_titles();
7264 /* when 'endofline' is changed, redraw the window title */
7265 else if ((int *)varp == &curbuf->b_p_eol)
7267 redraw_titles();
7269 # ifdef FEAT_MBYTE
7270 /* when 'bomb' is changed, redraw the window title and tab page text */
7271 else if ((int *)varp == &curbuf->b_p_bomb)
7273 redraw_titles();
7275 # endif
7276 #endif
7278 /* when 'bin' is set also set some other options */
7279 else if ((int *)varp == &curbuf->b_p_bin)
7281 set_options_bin(old_value, curbuf->b_p_bin, opt_flags);
7282 #ifdef FEAT_TITLE
7283 redraw_titles();
7284 #endif
7287 #ifdef FEAT_AUTOCMD
7288 /* when 'buflisted' changes, trigger autocommands */
7289 else if ((int *)varp == &curbuf->b_p_bl && old_value != curbuf->b_p_bl)
7291 apply_autocmds(curbuf->b_p_bl ? EVENT_BUFADD : EVENT_BUFDELETE,
7292 NULL, NULL, TRUE, curbuf);
7294 #endif
7296 /* when 'swf' is set, create swapfile, when reset remove swapfile */
7297 else if ((int *)varp == &curbuf->b_p_swf)
7299 if (curbuf->b_p_swf && p_uc)
7300 ml_open_file(curbuf); /* create the swap file */
7301 else
7302 /* no need to reset curbuf->b_may_swap, ml_open_file() will check
7303 * buf->b_p_swf */
7304 mf_close_file(curbuf, TRUE); /* remove the swap file */
7307 /* when 'terse' is set change 'shortmess' */
7308 else if ((int *)varp == &p_terse)
7310 char_u *p;
7312 p = vim_strchr(p_shm, SHM_SEARCH);
7314 /* insert 's' in p_shm */
7315 if (p_terse && p == NULL)
7317 STRCPY(IObuff, p_shm);
7318 STRCAT(IObuff, "s");
7319 set_string_option_direct((char_u *)"shm", -1, IObuff, OPT_FREE, 0);
7321 /* remove 's' from p_shm */
7322 else if (!p_terse && p != NULL)
7323 STRMOVE(p, p + 1);
7326 /* when 'paste' is set or reset also change other options */
7327 else if ((int *)varp == &p_paste)
7329 paste_option_changed();
7332 /* when 'insertmode' is set from an autocommand need to do work here */
7333 else if ((int *)varp == &p_im)
7335 if (p_im)
7337 if ((State & INSERT) == 0)
7338 need_start_insertmode = TRUE;
7339 stop_insert_mode = FALSE;
7341 else
7343 need_start_insertmode = FALSE;
7344 stop_insert_mode = TRUE;
7345 if (restart_edit != 0 && mode_displayed)
7346 clear_cmdline = TRUE; /* remove "(insert)" */
7347 restart_edit = 0;
7351 /* when 'ignorecase' is set or reset and 'hlsearch' is set, redraw */
7352 else if ((int *)varp == &p_ic && p_hls)
7354 redraw_all_later(SOME_VALID);
7357 #ifdef FEAT_SEARCH_EXTRA
7358 /* when 'hlsearch' is set or reset: reset no_hlsearch */
7359 else if ((int *)varp == &p_hls)
7361 no_hlsearch = FALSE;
7363 #endif
7365 #ifdef FEAT_SCROLLBIND
7366 /* when 'scrollbind' is set: snapshot the current position to avoid a jump
7367 * at the end of normal_cmd() */
7368 else if ((int *)varp == &curwin->w_p_scb)
7370 if (curwin->w_p_scb)
7371 do_check_scrollbind(FALSE);
7373 #endif
7375 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
7376 /* There can be only one window with 'previewwindow' set. */
7377 else if ((int *)varp == &curwin->w_p_pvw)
7379 if (curwin->w_p_pvw)
7381 win_T *win;
7383 for (win = firstwin; win != NULL; win = win->w_next)
7384 if (win->w_p_pvw && win != curwin)
7386 curwin->w_p_pvw = FALSE;
7387 return (char_u *)N_("E590: A preview window already exists");
7391 #endif
7393 /* when 'textmode' is set or reset also change 'fileformat' */
7394 else if ((int *)varp == &curbuf->b_p_tx)
7396 set_fileformat(curbuf->b_p_tx ? EOL_DOS : EOL_UNIX, opt_flags);
7399 /* when 'textauto' is set or reset also change 'fileformats' */
7400 else if ((int *)varp == &p_ta)
7401 set_string_option_direct((char_u *)"ffs", -1,
7402 p_ta ? (char_u *)DFLT_FFS_VIM : (char_u *)"",
7403 OPT_FREE | opt_flags, 0);
7406 * When 'lisp' option changes include/exclude '-' in
7407 * keyword characters.
7409 #ifdef FEAT_LISP
7410 else if (varp == (char_u *)&(curbuf->b_p_lisp))
7412 (void)buf_init_chartab(curbuf, FALSE); /* ignore errors */
7414 #endif
7416 #ifdef FEAT_TITLE
7417 /* when 'title' changed, may need to change the title; same for 'icon' */
7418 else if ((int *)varp == &p_title)
7420 did_set_title(FALSE);
7423 else if ((int *)varp == &p_icon)
7425 did_set_title(TRUE);
7427 #endif
7429 else if ((int *)varp == &curbuf->b_changed)
7431 if (!value)
7432 save_file_ff(curbuf); /* Buffer is unchanged */
7433 #ifdef FEAT_TITLE
7434 redraw_titles();
7435 #endif
7436 #ifdef FEAT_AUTOCMD
7437 modified_was_set = value;
7438 #endif
7441 #ifdef BACKSLASH_IN_FILENAME
7442 else if ((int *)varp == &p_ssl)
7444 if (p_ssl)
7446 psepc = '/';
7447 psepcN = '\\';
7448 pseps[0] = '/';
7450 else
7452 psepc = '\\';
7453 psepcN = '/';
7454 pseps[0] = '\\';
7457 /* need to adjust the file name arguments and buffer names. */
7458 buflist_slash_adjust();
7459 alist_slash_adjust();
7460 # ifdef FEAT_EVAL
7461 scriptnames_slash_adjust();
7462 # endif
7464 #endif
7466 /* If 'wrap' is set, set w_leftcol to zero. */
7467 else if ((int *)varp == &curwin->w_p_wrap)
7469 if (curwin->w_p_wrap)
7470 curwin->w_leftcol = 0;
7471 if (curwin->w_curswant != MAXCOL)
7472 curwin->w_set_curswant = TRUE;
7475 /* If 'number' is set, reset 'relativenumber'. */
7476 else if ((int *)varp == &curwin->w_p_nu)
7478 if (curwin->w_p_nu)
7479 curwin->w_p_rnu = FALSE;
7481 /* If 'relativenumber' is set, reset 'number'. */
7482 else if ((int *)varp == &curwin->w_p_rnu)
7484 if (curwin->w_p_rnu)
7485 curwin->w_p_nu = FALSE;
7488 #ifdef FEAT_WINDOWS
7489 else if ((int *)varp == &p_ea)
7491 if (p_ea && !old_value)
7492 win_equal(curwin, FALSE, 0);
7494 #endif
7496 else if ((int *)varp == &p_wiv)
7499 * When 'weirdinvert' changed, set/reset 't_xs'.
7500 * Then set 'weirdinvert' according to value of 't_xs'.
7502 if (p_wiv && !old_value)
7503 T_XS = (char_u *)"y";
7504 else if (!p_wiv && old_value)
7505 T_XS = empty_option;
7506 p_wiv = (*T_XS != NUL);
7509 #ifdef FEAT_BEVAL
7510 else if ((int *)varp == &p_beval)
7512 if (p_beval == TRUE)
7513 gui_mch_enable_beval_area(balloonEval);
7514 else
7515 gui_mch_disable_beval_area(balloonEval);
7517 #endif
7519 #ifdef FEAT_AUTOCHDIR
7520 else if ((int *)varp == &p_acd)
7522 /* Change directories when the 'acd' option is set now. */
7523 DO_AUTOCHDIR
7525 #endif
7527 #ifdef FEAT_DIFF
7528 /* 'diff' */
7529 else if ((int *)varp == &curwin->w_p_diff)
7531 /* May add or remove the buffer from the list of diff buffers. */
7532 diff_buf_adjust(curwin);
7533 # ifdef FEAT_FOLDING
7534 if (foldmethodIsDiff(curwin))
7535 foldUpdateAll(curwin);
7536 # endif
7538 #endif
7540 #ifdef USE_IM_CONTROL
7541 /* 'imdisable' */
7542 else if ((int *)varp == &p_imdisable)
7544 /* Only de-activate it here, it will be enabled when changing mode. */
7545 if (p_imdisable)
7546 im_set_active(FALSE);
7548 #endif
7550 #ifdef FEAT_SPELL
7551 /* 'spell' */
7552 else if ((int *)varp == &curwin->w_p_spell)
7554 if (curwin->w_p_spell)
7556 char_u *errmsg = did_set_spelllang(curbuf);
7558 if (errmsg != NULL)
7559 EMSG(_(errmsg));
7562 #endif
7564 #ifdef FEAT_FKMAP
7565 else if ((int *)varp == &p_altkeymap)
7567 if (old_value != p_altkeymap)
7569 if (!p_altkeymap)
7571 p_hkmap = p_fkmap;
7572 p_fkmap = 0;
7574 else
7576 p_fkmap = p_hkmap;
7577 p_hkmap = 0;
7579 (void)init_chartab();
7584 * In case some second language keymapping options have changed, check
7585 * and correct the setting in a consistent way.
7589 * If hkmap or fkmap are set, reset Arabic keymapping.
7591 if ((p_hkmap || p_fkmap) && p_altkeymap)
7593 p_altkeymap = p_fkmap;
7594 # ifdef FEAT_ARABIC
7595 curwin->w_p_arab = FALSE;
7596 # endif
7597 (void)init_chartab();
7601 * If hkmap set, reset Farsi keymapping.
7603 if (p_hkmap && p_altkeymap)
7605 p_altkeymap = 0;
7606 p_fkmap = 0;
7607 # ifdef FEAT_ARABIC
7608 curwin->w_p_arab = FALSE;
7609 # endif
7610 (void)init_chartab();
7614 * If fkmap set, reset Hebrew keymapping.
7616 if (p_fkmap && !p_altkeymap)
7618 p_altkeymap = 1;
7619 p_hkmap = 0;
7620 # ifdef FEAT_ARABIC
7621 curwin->w_p_arab = FALSE;
7622 # endif
7623 (void)init_chartab();
7625 #endif
7627 #ifdef FEAT_ARABIC
7628 if ((int *)varp == &curwin->w_p_arab)
7630 if (curwin->w_p_arab)
7633 * 'arabic' is set, handle various sub-settings.
7635 if (!p_tbidi)
7637 /* set rightleft mode */
7638 if (!curwin->w_p_rl)
7640 curwin->w_p_rl = TRUE;
7641 changed_window_setting();
7644 /* Enable Arabic shaping (major part of what Arabic requires) */
7645 if (!p_arshape)
7647 p_arshape = TRUE;
7648 redraw_later_clear();
7652 /* Arabic requires a utf-8 encoding, inform the user if its not
7653 * set. */
7654 if (STRCMP(p_enc, "utf-8") != 0)
7656 static char *w_arabic = N_("W17: Arabic requires UTF-8, do ':set encoding=utf-8'");
7658 msg_source(hl_attr(HLF_W));
7659 MSG_ATTR(_(w_arabic), hl_attr(HLF_W));
7660 #ifdef FEAT_EVAL
7661 set_vim_var_string(VV_WARNINGMSG, (char_u *)_(w_arabic), -1);
7662 #endif
7665 # ifdef FEAT_MBYTE
7666 /* set 'delcombine' */
7667 p_deco = TRUE;
7668 # endif
7670 # ifdef FEAT_KEYMAP
7671 /* Force-set the necessary keymap for arabic */
7672 set_option_value((char_u *)"keymap", 0L, (char_u *)"arabic",
7673 OPT_LOCAL);
7674 # endif
7675 # ifdef FEAT_FKMAP
7676 p_altkeymap = 0;
7677 p_hkmap = 0;
7678 p_fkmap = 0;
7679 (void)init_chartab();
7680 # endif
7682 else
7685 * 'arabic' is reset, handle various sub-settings.
7687 if (!p_tbidi)
7689 /* reset rightleft mode */
7690 if (curwin->w_p_rl)
7692 curwin->w_p_rl = FALSE;
7693 changed_window_setting();
7696 /* 'arabicshape' isn't reset, it is a global option and
7697 * another window may still need it "on". */
7700 /* 'delcombine' isn't reset, it is a global option and another
7701 * window may still want it "on". */
7703 # ifdef FEAT_KEYMAP
7704 /* Revert to the default keymap */
7705 curbuf->b_p_iminsert = B_IMODE_NONE;
7706 curbuf->b_p_imsearch = B_IMODE_USE_INSERT;
7707 # endif
7709 if (curwin->w_curswant != MAXCOL)
7710 curwin->w_set_curswant = TRUE;
7713 else if ((int *)varp == &p_arshape)
7715 if (curwin->w_curswant != MAXCOL)
7716 curwin->w_set_curswant = TRUE;
7718 #endif
7720 #ifdef FEAT_LINEBREAK
7721 if ((int *)varp == &curwin->w_p_lbr)
7723 if (curwin->w_curswant != MAXCOL)
7724 curwin->w_set_curswant = TRUE;
7726 #endif
7728 #ifdef FEAT_RIGHTLEFT
7729 if ((int *)varp == &curwin->w_p_rl)
7731 if (curwin->w_curswant != MAXCOL)
7732 curwin->w_set_curswant = TRUE;
7734 #endif
7737 * End of handling side effects for bool options.
7740 options[opt_idx].flags |= P_WAS_SET;
7742 comp_col(); /* in case 'ruler' or 'showcmd' changed */
7744 check_redraw(options[opt_idx].flags);
7746 return NULL;
7750 * Set the value of a number option, and take care of side effects.
7751 * Returns NULL for success, or an error message for an error.
7753 static char_u *
7754 set_num_option(opt_idx, varp, value, errbuf, errbuflen, opt_flags)
7755 int opt_idx; /* index in options[] table */
7756 char_u *varp; /* pointer to the option variable */
7757 long value; /* new value */
7758 char_u *errbuf; /* buffer for error messages */
7759 size_t errbuflen; /* length of "errbuf" */
7760 int opt_flags; /* OPT_LOCAL, OPT_GLOBAL and
7761 OPT_MODELINE */
7763 char_u *errmsg = NULL;
7764 long old_value = *(long *)varp;
7765 long old_Rows = Rows; /* remember old Rows */
7766 long old_Columns = Columns; /* remember old Columns */
7767 long *pp = (long *)varp;
7769 /* Disallow changing some options from secure mode. */
7770 if ((secure
7771 #ifdef HAVE_SANDBOX
7772 || sandbox != 0
7773 #endif
7774 ) && (options[opt_idx].flags & P_SECURE))
7775 return e_secure;
7777 *pp = value;
7778 #ifdef FEAT_EVAL
7779 /* Remember where the option was set. */
7780 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
7781 #endif
7782 #ifdef FEAT_GUI
7783 need_mouse_correct = TRUE;
7784 #endif
7786 if (curbuf->b_p_sw <= 0)
7788 errmsg = e_positive;
7789 curbuf->b_p_sw = curbuf->b_p_ts;
7793 * Number options that need some action when changed
7795 #ifdef FEAT_WINDOWS
7796 if (pp == &p_wh || pp == &p_hh)
7798 if (p_wh < 1)
7800 errmsg = e_positive;
7801 p_wh = 1;
7803 if (p_wmh > p_wh)
7805 errmsg = e_winheight;
7806 p_wh = p_wmh;
7808 if (p_hh < 0)
7810 errmsg = e_positive;
7811 p_hh = 0;
7814 /* Change window height NOW */
7815 if (lastwin != firstwin)
7817 if (pp == &p_wh && curwin->w_height < p_wh)
7818 win_setheight((int)p_wh);
7819 if (pp == &p_hh && curbuf->b_help && curwin->w_height < p_hh)
7820 win_setheight((int)p_hh);
7824 /* 'winminheight' */
7825 else if (pp == &p_wmh)
7827 if (p_wmh < 0)
7829 errmsg = e_positive;
7830 p_wmh = 0;
7832 if (p_wmh > p_wh)
7834 errmsg = e_winheight;
7835 p_wmh = p_wh;
7837 win_setminheight();
7840 # ifdef FEAT_VERTSPLIT
7841 else if (pp == &p_wiw)
7843 if (p_wiw < 1)
7845 errmsg = e_positive;
7846 p_wiw = 1;
7848 if (p_wmw > p_wiw)
7850 errmsg = e_winwidth;
7851 p_wiw = p_wmw;
7854 /* Change window width NOW */
7855 if (lastwin != firstwin && curwin->w_width < p_wiw)
7856 win_setwidth((int)p_wiw);
7859 /* 'winminwidth' */
7860 else if (pp == &p_wmw)
7862 if (p_wmw < 0)
7864 errmsg = e_positive;
7865 p_wmw = 0;
7867 if (p_wmw > p_wiw)
7869 errmsg = e_winwidth;
7870 p_wmw = p_wiw;
7872 win_setminheight();
7874 # endif
7876 #endif
7878 #ifdef FEAT_WINDOWS
7879 /* (re)set last window status line */
7880 else if (pp == &p_ls)
7882 last_status(FALSE);
7885 /* (re)set tab page line */
7886 else if (pp == &p_stal)
7888 shell_new_rows(); /* recompute window positions and heights */
7890 #endif
7892 #ifdef FEAT_GUI
7893 else if (pp == &p_linespace)
7895 /* Recompute gui.char_height and resize the Vim window to keep the
7896 * same number of lines. */
7897 if (gui.in_use && gui_mch_adjust_charheight() == OK)
7898 gui_set_shellsize(FALSE, FALSE, RESIZE_VERT);
7900 #endif
7902 #ifdef FEAT_FOLDING
7903 /* 'foldlevel' */
7904 else if (pp == &curwin->w_p_fdl)
7906 if (curwin->w_p_fdl < 0)
7907 curwin->w_p_fdl = 0;
7908 newFoldLevel();
7911 /* 'foldminlines' */
7912 else if (pp == &curwin->w_p_fml)
7914 foldUpdateAll(curwin);
7917 /* 'foldnestmax' */
7918 else if (pp == &curwin->w_p_fdn)
7920 if (foldmethodIsSyntax(curwin) || foldmethodIsIndent(curwin))
7921 foldUpdateAll(curwin);
7924 /* 'foldcolumn' */
7925 else if (pp == &curwin->w_p_fdc)
7927 if (curwin->w_p_fdc < 0)
7929 errmsg = e_positive;
7930 curwin->w_p_fdc = 0;
7932 else if (curwin->w_p_fdc > 12)
7934 errmsg = e_invarg;
7935 curwin->w_p_fdc = 12;
7939 /* 'shiftwidth' or 'tabstop' */
7940 else if (pp == &curbuf->b_p_sw || pp == &curbuf->b_p_ts)
7942 if (foldmethodIsIndent(curwin))
7943 foldUpdateAll(curwin);
7945 #endif /* FEAT_FOLDING */
7947 #ifdef FEAT_MBYTE
7948 /* 'maxcombine' */
7949 else if (pp == &p_mco)
7951 if (p_mco > MAX_MCO)
7952 p_mco = MAX_MCO;
7953 else if (p_mco < 0)
7954 p_mco = 0;
7955 screenclear(); /* will re-allocate the screen */
7957 #endif
7959 else if (pp == &curbuf->b_p_iminsert)
7961 if (curbuf->b_p_iminsert < 0 || curbuf->b_p_iminsert > B_IMODE_LAST)
7963 errmsg = e_invarg;
7964 curbuf->b_p_iminsert = B_IMODE_NONE;
7966 p_iminsert = curbuf->b_p_iminsert;
7967 if (termcap_active) /* don't do this in the alternate screen */
7968 showmode();
7969 #if defined(FEAT_WINDOWS) && defined(FEAT_KEYMAP)
7970 /* Show/unshow value of 'keymap' in status lines. */
7971 status_redraw_curbuf();
7972 #endif
7975 else if (pp == &p_window)
7977 if (p_window < 1)
7978 p_window = 1;
7979 else if (p_window >= Rows)
7980 p_window = Rows - 1;
7983 else if (pp == &curbuf->b_p_imsearch)
7985 if (curbuf->b_p_imsearch < -1 || curbuf->b_p_imsearch > B_IMODE_LAST)
7987 errmsg = e_invarg;
7988 curbuf->b_p_imsearch = B_IMODE_NONE;
7990 p_imsearch = curbuf->b_p_imsearch;
7993 #ifdef FEAT_TITLE
7994 /* if 'titlelen' has changed, redraw the title */
7995 else if (pp == &p_titlelen)
7997 if (p_titlelen < 0)
7999 errmsg = e_positive;
8000 p_titlelen = 85;
8002 if (starting != NO_SCREEN && old_value != p_titlelen)
8003 need_maketitle = TRUE;
8005 #endif
8007 /* if p_ch changed value, change the command line height */
8008 else if (pp == &p_ch)
8010 if (p_ch < 1)
8012 errmsg = e_positive;
8013 p_ch = 1;
8015 if (p_ch > Rows - min_rows() + 1)
8016 p_ch = Rows - min_rows() + 1;
8018 /* Only compute the new window layout when startup has been
8019 * completed. Otherwise the frame sizes may be wrong. */
8020 if (p_ch != old_value && full_screen
8021 #ifdef FEAT_GUI
8022 && !gui.starting
8023 #endif
8025 command_height();
8028 /* when 'updatecount' changes from zero to non-zero, open swap files */
8029 else if (pp == &p_uc)
8031 if (p_uc < 0)
8033 errmsg = e_positive;
8034 p_uc = 100;
8036 if (p_uc && !old_value)
8037 ml_open_files();
8039 #ifdef MZSCHEME_GUI_THREADS
8040 else if (pp == &p_mzq)
8041 mzvim_reset_timer();
8042 #endif
8044 /* sync undo before 'undolevels' changes */
8045 else if (pp == &p_ul)
8047 /* use the old value, otherwise u_sync() may not work properly */
8048 p_ul = old_value;
8049 u_sync(TRUE);
8050 p_ul = value;
8053 #ifdef FEAT_LINEBREAK
8054 /* 'numberwidth' must be positive */
8055 else if (pp == &curwin->w_p_nuw)
8057 if (curwin->w_p_nuw < 1)
8059 errmsg = e_positive;
8060 curwin->w_p_nuw = 1;
8062 if (curwin->w_p_nuw > 10)
8064 errmsg = e_invarg;
8065 curwin->w_p_nuw = 10;
8067 curwin->w_nrwidth_line_count = 0;
8069 #endif
8072 * Check the bounds for numeric options here
8074 if (Rows < min_rows() && full_screen)
8076 if (errbuf != NULL)
8078 vim_snprintf((char *)errbuf, errbuflen,
8079 _("E593: Need at least %d lines"), min_rows());
8080 errmsg = errbuf;
8082 Rows = min_rows();
8084 if (Columns < MIN_COLUMNS && full_screen)
8086 if (errbuf != NULL)
8088 vim_snprintf((char *)errbuf, errbuflen,
8089 _("E594: Need at least %d columns"), MIN_COLUMNS);
8090 errmsg = errbuf;
8092 Columns = MIN_COLUMNS;
8094 /* Limit the values to avoid an overflow in Rows * Columns. */
8095 if (Columns > 10000)
8096 Columns = 10000;
8097 if (Rows > 1000)
8098 Rows = 1000;
8100 #ifdef DJGPP
8101 /* avoid a crash by checking for a too large value of 'columns' */
8102 if (old_Columns != Columns && full_screen && term_console)
8103 mch_check_columns();
8104 #endif
8107 * If the screen (shell) height has been changed, assume it is the
8108 * physical screenheight.
8110 if (old_Rows != Rows || old_Columns != Columns)
8112 /* Changing the screen size is not allowed while updating the screen. */
8113 if (updating_screen)
8114 *pp = old_value;
8115 else if (full_screen
8116 #ifdef FEAT_GUI
8117 && !gui.starting
8118 #endif
8120 set_shellsize((int)Columns, (int)Rows, TRUE);
8121 else
8123 /* Postpone the resizing; check the size and cmdline position for
8124 * messages. */
8125 check_shellsize();
8126 if (cmdline_row > Rows - p_ch && Rows > p_ch)
8127 cmdline_row = Rows - p_ch;
8129 if (p_window >= Rows || !option_was_set((char_u *)"window"))
8130 p_window = Rows - 1;
8133 if (curbuf->b_p_sts < 0)
8135 errmsg = e_positive;
8136 curbuf->b_p_sts = 0;
8138 if (curbuf->b_p_ts <= 0)
8140 errmsg = e_positive;
8141 curbuf->b_p_ts = 8;
8143 if (curbuf->b_p_tw < 0)
8145 errmsg = e_positive;
8146 curbuf->b_p_tw = 0;
8148 if (p_tm < 0)
8150 errmsg = e_positive;
8151 p_tm = 0;
8153 if ((curwin->w_p_scr <= 0
8154 || (curwin->w_p_scr > curwin->w_height
8155 && curwin->w_height > 0))
8156 && full_screen)
8158 if (pp == &(curwin->w_p_scr))
8160 if (curwin->w_p_scr != 0)
8161 errmsg = e_scroll;
8162 win_comp_scroll(curwin);
8164 /* If 'scroll' became invalid because of a side effect silently adjust
8165 * it. */
8166 else if (curwin->w_p_scr <= 0)
8167 curwin->w_p_scr = 1;
8168 else /* curwin->w_p_scr > curwin->w_height */
8169 curwin->w_p_scr = curwin->w_height;
8171 if (p_hi < 0)
8173 errmsg = e_positive;
8174 p_hi = 0;
8176 if (p_report < 0)
8178 errmsg = e_positive;
8179 p_report = 1;
8181 if ((p_sj < -100 || p_sj >= Rows) && full_screen)
8183 if (Rows != old_Rows) /* Rows changed, just adjust p_sj */
8184 p_sj = Rows / 2;
8185 else
8187 errmsg = e_scroll;
8188 p_sj = 1;
8191 if (p_so < 0 && full_screen)
8193 errmsg = e_scroll;
8194 p_so = 0;
8196 if (p_siso < 0 && full_screen)
8198 errmsg = e_positive;
8199 p_siso = 0;
8201 #ifdef FEAT_CMDWIN
8202 if (p_cwh < 1)
8204 errmsg = e_positive;
8205 p_cwh = 1;
8207 #endif
8208 if (p_ut < 0)
8210 errmsg = e_positive;
8211 p_ut = 2000;
8213 if (p_ss < 0)
8215 errmsg = e_positive;
8216 p_ss = 0;
8219 /* May set global value for local option. */
8220 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0)
8221 *(long *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) = *pp;
8223 options[opt_idx].flags |= P_WAS_SET;
8225 comp_col(); /* in case 'columns' or 'ls' changed */
8226 if (curwin->w_curswant != MAXCOL)
8227 curwin->w_set_curswant = TRUE; /* in case 'tabstop' changed */
8228 check_redraw(options[opt_idx].flags);
8230 return errmsg;
8234 * Called after an option changed: check if something needs to be redrawn.
8236 static void
8237 check_redraw(flags)
8238 long_u flags;
8240 /* Careful: P_RCLR and P_RALL are a combination of other P_ flags */
8241 int clear = (flags & P_RCLR) == P_RCLR;
8242 int all = ((flags & P_RALL) == P_RALL || clear);
8244 #ifdef FEAT_WINDOWS
8245 if ((flags & P_RSTAT) || all) /* mark all status lines dirty */
8246 status_redraw_all();
8247 #endif
8249 if ((flags & P_RBUF) || (flags & P_RWIN) || all)
8250 changed_window_setting();
8251 if (flags & P_RBUF)
8252 redraw_curbuf_later(NOT_VALID);
8253 if (clear)
8254 redraw_all_later(CLEAR);
8255 else if (all)
8256 redraw_all_later(NOT_VALID);
8260 * Find index for option 'arg'.
8261 * Return -1 if not found.
8263 static int
8264 findoption(arg)
8265 char_u *arg;
8267 int opt_idx;
8268 char *s, *p;
8269 static short quick_tab[27] = {0, 0}; /* quick access table */
8270 int is_term_opt;
8273 * For first call: Initialize the quick-access table.
8274 * It contains the index for the first option that starts with a certain
8275 * letter. There are 26 letters, plus the first "t_" option.
8277 if (quick_tab[1] == 0)
8279 p = options[0].fullname;
8280 for (opt_idx = 1; (s = options[opt_idx].fullname) != NULL; opt_idx++)
8282 if (s[0] != p[0])
8284 if (s[0] == 't' && s[1] == '_')
8285 quick_tab[26] = opt_idx;
8286 else
8287 quick_tab[CharOrdLow(s[0])] = opt_idx;
8289 p = s;
8294 * Check for name starting with an illegal character.
8296 #ifdef EBCDIC
8297 if (!islower(arg[0]))
8298 #else
8299 if (arg[0] < 'a' || arg[0] > 'z')
8300 #endif
8301 return -1;
8303 is_term_opt = (arg[0] == 't' && arg[1] == '_');
8304 if (is_term_opt)
8305 opt_idx = quick_tab[26];
8306 else
8307 opt_idx = quick_tab[CharOrdLow(arg[0])];
8308 for ( ; (s = options[opt_idx].fullname) != NULL; opt_idx++)
8310 if (STRCMP(arg, s) == 0) /* match full name */
8311 break;
8313 if (s == NULL && !is_term_opt)
8315 opt_idx = quick_tab[CharOrdLow(arg[0])];
8316 for ( ; options[opt_idx].fullname != NULL; opt_idx++)
8318 s = options[opt_idx].shortname;
8319 if (s != NULL && STRCMP(arg, s) == 0) /* match short name */
8320 break;
8321 s = NULL;
8324 if (s == NULL)
8325 opt_idx = -1;
8326 return opt_idx;
8329 #if defined(FEAT_EVAL) || defined(FEAT_TCL) || defined(FEAT_MZSCHEME)
8331 * Get the value for an option.
8333 * Returns:
8334 * Number or Toggle option: 1, *numval gets value.
8335 * String option: 0, *stringval gets allocated string.
8336 * Hidden Number or Toggle option: -1.
8337 * hidden String option: -2.
8338 * unknown option: -3.
8341 get_option_value(name, numval, stringval, opt_flags)
8342 char_u *name;
8343 long *numval;
8344 char_u **stringval; /* NULL when only checking existance */
8345 int opt_flags;
8347 int opt_idx;
8348 char_u *varp;
8350 opt_idx = findoption(name);
8351 if (opt_idx < 0) /* unknown option */
8352 return -3;
8354 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
8356 if (options[opt_idx].flags & P_STRING)
8358 if (varp == NULL) /* hidden option */
8359 return -2;
8360 if (stringval != NULL)
8362 #ifdef FEAT_CRYPT
8363 /* never return the value of the crypt key */
8364 if ((char_u **)varp == &curbuf->b_p_key
8365 && **(char_u **)(varp) != NUL)
8366 *stringval = vim_strsave((char_u *)"*****");
8367 else
8368 #endif
8369 *stringval = vim_strsave(*(char_u **)(varp));
8371 return 0;
8374 if (varp == NULL) /* hidden option */
8375 return -1;
8376 if (options[opt_idx].flags & P_NUM)
8377 *numval = *(long *)varp;
8378 else
8380 /* Special case: 'modified' is b_changed, but we also want to consider
8381 * it set when 'ff' or 'fenc' changed. */
8382 if ((int *)varp == &curbuf->b_changed)
8383 *numval = curbufIsChanged();
8384 else
8385 *numval = *(int *)varp;
8387 return 1;
8389 #endif
8392 * Set the value of option "name".
8393 * Use "string" for string options, use "number" for other options.
8395 void
8396 set_option_value(name, number, string, opt_flags)
8397 char_u *name;
8398 long number;
8399 char_u *string;
8400 int opt_flags; /* OPT_LOCAL or 0 (both) */
8402 int opt_idx;
8403 char_u *varp;
8404 long_u flags;
8406 opt_idx = findoption(name);
8407 if (opt_idx < 0)
8408 EMSG2(_("E355: Unknown option: %s"), name);
8409 else
8411 flags = options[opt_idx].flags;
8412 #ifdef HAVE_SANDBOX
8413 /* Disallow changing some options in the sandbox */
8414 if (sandbox > 0 && (flags & P_SECURE))
8416 EMSG(_(e_sandbox));
8417 return;
8419 #endif
8420 if (flags & P_STRING)
8421 set_string_option(opt_idx, string, opt_flags);
8422 else
8424 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
8425 if (varp != NULL) /* hidden option is not changed */
8427 if (number == 0 && string != NULL)
8429 int idx;
8431 /* Either we are given a string or we are setting option
8432 * to zero. */
8433 for (idx = 0; string[idx] == '0'; ++idx)
8435 if (string[idx] != NUL || idx == 0)
8437 /* There's another character after zeros or the string
8438 * is empty. In both cases, we are trying to set a
8439 * num option using a string. */
8440 EMSG3(_("E521: Number required: &%s = '%s'"),
8441 name, string);
8442 return; /* do nothing as we hit an error */
8446 if (flags & P_NUM)
8447 (void)set_num_option(opt_idx, varp, number,
8448 NULL, 0, opt_flags);
8449 else
8450 (void)set_bool_option(opt_idx, varp, (int)number,
8451 opt_flags);
8458 * Get the terminal code for a terminal option.
8459 * Returns NULL when not found.
8461 char_u *
8462 get_term_code(tname)
8463 char_u *tname;
8465 int opt_idx;
8466 char_u *varp;
8468 if (tname[0] != 't' || tname[1] != '_' ||
8469 tname[2] == NUL || tname[3] == NUL)
8470 return NULL;
8471 if ((opt_idx = findoption(tname)) >= 0)
8473 varp = get_varp(&(options[opt_idx]));
8474 if (varp != NULL)
8475 varp = *(char_u **)(varp);
8476 return varp;
8478 return find_termcode(tname + 2);
8481 char_u *
8482 get_highlight_default()
8484 int i;
8486 i = findoption((char_u *)"hl");
8487 if (i >= 0)
8488 return options[i].def_val[VI_DEFAULT];
8489 return (char_u *)NULL;
8492 #if defined(FEAT_MBYTE) || defined(PROTO)
8493 char_u *
8494 get_encoding_default()
8496 int i;
8498 i = findoption((char_u *)"enc");
8499 if (i >= 0)
8500 return options[i].def_val[VI_DEFAULT];
8501 return (char_u *)NULL;
8503 #endif
8506 * Translate a string like "t_xx", "<t_xx>" or "<S-Tab>" to a key number.
8508 static int
8509 find_key_option(arg)
8510 char_u *arg;
8512 int key;
8513 int modifiers;
8516 * Don't use get_special_key_code() for t_xx, we don't want it to call
8517 * add_termcap_entry().
8519 if (arg[0] == 't' && arg[1] == '_' && arg[2] && arg[3])
8520 key = TERMCAP2KEY(arg[2], arg[3]);
8521 else
8523 --arg; /* put arg at the '<' */
8524 modifiers = 0;
8525 key = find_special_key(&arg, &modifiers, TRUE, TRUE);
8526 if (modifiers) /* can't handle modifiers here */
8527 key = 0;
8529 return key;
8533 * if 'all' == 0: show changed options
8534 * if 'all' == 1: show all normal options
8535 * if 'all' == 2: show all terminal options
8537 static void
8538 showoptions(all, opt_flags)
8539 int all;
8540 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
8542 struct vimoption *p;
8543 int col;
8544 int isterm;
8545 char_u *varp;
8546 struct vimoption **items;
8547 int item_count;
8548 int run;
8549 int row, rows;
8550 int cols;
8551 int i;
8552 int len;
8554 #define INC 20
8555 #define GAP 3
8557 items = (struct vimoption **)alloc((unsigned)(sizeof(struct vimoption *) *
8558 PARAM_COUNT));
8559 if (items == NULL)
8560 return;
8562 /* Highlight title */
8563 if (all == 2)
8564 MSG_PUTS_TITLE(_("\n--- Terminal codes ---"));
8565 else if (opt_flags & OPT_GLOBAL)
8566 MSG_PUTS_TITLE(_("\n--- Global option values ---"));
8567 else if (opt_flags & OPT_LOCAL)
8568 MSG_PUTS_TITLE(_("\n--- Local option values ---"));
8569 else
8570 MSG_PUTS_TITLE(_("\n--- Options ---"));
8573 * do the loop two times:
8574 * 1. display the short items
8575 * 2. display the long items (only strings and numbers)
8577 for (run = 1; run <= 2 && !got_int; ++run)
8580 * collect the items in items[]
8582 item_count = 0;
8583 for (p = &options[0]; p->fullname != NULL; p++)
8585 varp = NULL;
8586 isterm = istermoption(p);
8587 if (opt_flags != 0)
8589 if (p->indir != PV_NONE && !isterm)
8590 varp = get_varp_scope(p, opt_flags);
8592 else
8593 varp = get_varp(p);
8594 if (varp != NULL
8595 && ((all == 2 && isterm)
8596 || (all == 1 && !isterm)
8597 || (all == 0 && !optval_default(p, varp))))
8599 if (p->flags & P_BOOL)
8600 len = 1; /* a toggle option fits always */
8601 else
8603 option_value2string(p, opt_flags);
8604 len = (int)STRLEN(p->fullname) + vim_strsize(NameBuff) + 1;
8606 if ((len <= INC - GAP && run == 1) ||
8607 (len > INC - GAP && run == 2))
8608 items[item_count++] = p;
8613 * display the items
8615 if (run == 1)
8617 cols = (Columns + GAP - 3) / INC;
8618 if (cols == 0)
8619 cols = 1;
8620 rows = (item_count + cols - 1) / cols;
8622 else /* run == 2 */
8623 rows = item_count;
8624 for (row = 0; row < rows && !got_int; ++row)
8626 msg_putchar('\n'); /* go to next line */
8627 if (got_int) /* 'q' typed in more */
8628 break;
8629 col = 0;
8630 for (i = row; i < item_count; i += rows)
8632 msg_col = col; /* make columns */
8633 showoneopt(items[i], opt_flags);
8634 col += INC;
8636 out_flush();
8637 ui_breakcheck();
8640 vim_free(items);
8644 * Return TRUE if option "p" has its default value.
8646 static int
8647 optval_default(p, varp)
8648 struct vimoption *p;
8649 char_u *varp;
8651 int dvi;
8653 if (varp == NULL)
8654 return TRUE; /* hidden option is always at default */
8655 dvi = ((p->flags & P_VI_DEF) || p_cp) ? VI_DEFAULT : VIM_DEFAULT;
8656 if (p->flags & P_NUM)
8657 return (*(long *)varp == (long)(long_i)p->def_val[dvi]);
8658 if (p->flags & P_BOOL)
8659 /* the cast to long is required for Manx C, long_i is
8660 * needed for MSVC */
8661 return (*(int *)varp == (int)(long)(long_i)p->def_val[dvi]);
8662 /* P_STRING */
8663 return (STRCMP(*(char_u **)varp, p->def_val[dvi]) == 0);
8667 * showoneopt: show the value of one option
8668 * must not be called with a hidden option!
8670 static void
8671 showoneopt(p, opt_flags)
8672 struct vimoption *p;
8673 int opt_flags; /* OPT_LOCAL or OPT_GLOBAL */
8675 char_u *varp;
8676 int save_silent = silent_mode;
8678 silent_mode = FALSE;
8679 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
8681 varp = get_varp_scope(p, opt_flags);
8683 /* for 'modified' we also need to check if 'ff' or 'fenc' changed. */
8684 if ((p->flags & P_BOOL) && ((int *)varp == &curbuf->b_changed
8685 ? !curbufIsChanged() : !*(int *)varp))
8686 MSG_PUTS("no");
8687 else if ((p->flags & P_BOOL) && *(int *)varp < 0)
8688 MSG_PUTS("--");
8689 else
8690 MSG_PUTS(" ");
8691 MSG_PUTS(p->fullname);
8692 if (!(p->flags & P_BOOL))
8694 msg_putchar('=');
8695 /* put value string in NameBuff */
8696 option_value2string(p, opt_flags);
8697 msg_outtrans(NameBuff);
8700 silent_mode = save_silent;
8701 info_message = FALSE;
8705 * Write modified options as ":set" commands to a file.
8707 * There are three values for "opt_flags":
8708 * OPT_GLOBAL: Write global option values and fresh values of
8709 * buffer-local options (used for start of a session
8710 * file).
8711 * OPT_GLOBAL + OPT_LOCAL: Idem, add fresh values of window-local options for
8712 * curwin (used for a vimrc file).
8713 * OPT_LOCAL: Write buffer-local option values for curbuf, fresh
8714 * and local values for window-local options of
8715 * curwin. Local values are also written when at the
8716 * default value, because a modeline or autocommand
8717 * may have set them when doing ":edit file" and the
8718 * user has set them back at the default or fresh
8719 * value.
8720 * When "local_only" is TRUE, don't write fresh
8721 * values, only local values (for ":mkview").
8722 * (fresh value = value used for a new buffer or window for a local option).
8724 * Return FAIL on error, OK otherwise.
8727 makeset(fd, opt_flags, local_only)
8728 FILE *fd;
8729 int opt_flags;
8730 int local_only;
8732 struct vimoption *p;
8733 char_u *varp; /* currently used value */
8734 char_u *varp_fresh; /* local value */
8735 char_u *varp_local = NULL; /* fresh value */
8736 char *cmd;
8737 int round;
8738 int pri;
8741 * The options that don't have a default (terminal name, columns, lines)
8742 * are never written. Terminal options are also not written.
8743 * Do the loop over "options[]" twice: once for options with the
8744 * P_PRI_MKRC flag and once without.
8746 for (pri = 1; pri >= 0; --pri)
8748 for (p = &options[0]; !istermoption(p); p++)
8749 if (!(p->flags & P_NO_MKRC)
8750 && !istermoption(p)
8751 && ((pri == 1) == ((p->flags & P_PRI_MKRC) != 0)))
8753 /* skip global option when only doing locals */
8754 if (p->indir == PV_NONE && !(opt_flags & OPT_GLOBAL))
8755 continue;
8757 /* Do not store options like 'bufhidden' and 'syntax' in a vimrc
8758 * file, they are always buffer-specific. */
8759 if ((opt_flags & OPT_GLOBAL) && (p->flags & P_NOGLOB))
8760 continue;
8762 /* Global values are only written when not at the default value. */
8763 varp = get_varp_scope(p, opt_flags);
8764 if ((opt_flags & OPT_GLOBAL) && optval_default(p, varp))
8765 continue;
8767 round = 2;
8768 if (p->indir != PV_NONE)
8770 if (p->var == VAR_WIN)
8772 /* skip window-local option when only doing globals */
8773 if (!(opt_flags & OPT_LOCAL))
8774 continue;
8775 /* When fresh value of window-local option is not at the
8776 * default, need to write it too. */
8777 if (!(opt_flags & OPT_GLOBAL) && !local_only)
8779 varp_fresh = get_varp_scope(p, OPT_GLOBAL);
8780 if (!optval_default(p, varp_fresh))
8782 round = 1;
8783 varp_local = varp;
8784 varp = varp_fresh;
8790 /* Round 1: fresh value for window-local options.
8791 * Round 2: other values */
8792 for ( ; round <= 2; varp = varp_local, ++round)
8794 if (round == 1 || (opt_flags & OPT_GLOBAL))
8795 cmd = "set";
8796 else
8797 cmd = "setlocal";
8799 if (p->flags & P_BOOL)
8801 if (put_setbool(fd, cmd, p->fullname, *(int *)varp) == FAIL)
8802 return FAIL;
8804 else if (p->flags & P_NUM)
8806 if (put_setnum(fd, cmd, p->fullname, (long *)varp) == FAIL)
8807 return FAIL;
8809 else /* P_STRING */
8811 #if defined(FEAT_SYN_HL) || defined(FEAT_AUTOCMD)
8812 int do_endif = FALSE;
8814 /* Don't set 'syntax' and 'filetype' again if the value is
8815 * already right, avoids reloading the syntax file. */
8816 if (
8817 # if defined(FEAT_SYN_HL)
8818 p->indir == PV_SYN
8819 # if defined(FEAT_AUTOCMD)
8821 # endif
8822 # endif
8823 # if defined(FEAT_AUTOCMD)
8824 p->indir == PV_FT
8825 # endif
8828 if (fprintf(fd, "if &%s != '%s'", p->fullname,
8829 *(char_u **)(varp)) < 0
8830 || put_eol(fd) < 0)
8831 return FAIL;
8832 do_endif = TRUE;
8834 #endif
8835 if (put_setstring(fd, cmd, p->fullname, (char_u **)varp,
8836 (p->flags & P_EXPAND) != 0) == FAIL)
8837 return FAIL;
8838 #if defined(FEAT_SYN_HL) || defined(FEAT_AUTOCMD)
8839 if (do_endif)
8841 if (put_line(fd, "endif") == FAIL)
8842 return FAIL;
8844 #endif
8849 return OK;
8852 #if defined(FEAT_FOLDING) || defined(PROTO)
8854 * Generate set commands for the local fold options only. Used when
8855 * 'sessionoptions' or 'viewoptions' contains "folds" but not "options".
8858 makefoldset(fd)
8859 FILE *fd;
8861 if (put_setstring(fd, "setlocal", "fdm", &curwin->w_p_fdm, FALSE) == FAIL
8862 # ifdef FEAT_EVAL
8863 || put_setstring(fd, "setlocal", "fde", &curwin->w_p_fde, FALSE)
8864 == FAIL
8865 # endif
8866 || put_setstring(fd, "setlocal", "fmr", &curwin->w_p_fmr, FALSE)
8867 == FAIL
8868 || put_setstring(fd, "setlocal", "fdi", &curwin->w_p_fdi, FALSE)
8869 == FAIL
8870 || put_setnum(fd, "setlocal", "fdl", &curwin->w_p_fdl) == FAIL
8871 || put_setnum(fd, "setlocal", "fml", &curwin->w_p_fml) == FAIL
8872 || put_setnum(fd, "setlocal", "fdn", &curwin->w_p_fdn) == FAIL
8873 || put_setbool(fd, "setlocal", "fen", curwin->w_p_fen) == FAIL
8875 return FAIL;
8877 return OK;
8879 #endif
8881 static int
8882 put_setstring(fd, cmd, name, valuep, expand)
8883 FILE *fd;
8884 char *cmd;
8885 char *name;
8886 char_u **valuep;
8887 int expand;
8889 char_u *s;
8890 char_u buf[MAXPATHL];
8892 if (fprintf(fd, "%s %s=", cmd, name) < 0)
8893 return FAIL;
8894 if (*valuep != NULL)
8896 /* Output 'pastetoggle' as key names. For other
8897 * options some characters have to be escaped with
8898 * CTRL-V or backslash */
8899 if (valuep == &p_pt)
8901 s = *valuep;
8902 while (*s != NUL)
8903 if (put_escstr(fd, str2special(&s, FALSE), 2) == FAIL)
8904 return FAIL;
8906 else if (expand)
8908 home_replace(NULL, *valuep, buf, MAXPATHL, FALSE);
8909 if (put_escstr(fd, buf, 2) == FAIL)
8910 return FAIL;
8912 else if (put_escstr(fd, *valuep, 2) == FAIL)
8913 return FAIL;
8915 if (put_eol(fd) < 0)
8916 return FAIL;
8917 return OK;
8920 static int
8921 put_setnum(fd, cmd, name, valuep)
8922 FILE *fd;
8923 char *cmd;
8924 char *name;
8925 long *valuep;
8927 long wc;
8929 if (fprintf(fd, "%s %s=", cmd, name) < 0)
8930 return FAIL;
8931 if (wc_use_keyname((char_u *)valuep, &wc))
8933 /* print 'wildchar' and 'wildcharm' as a key name */
8934 if (fputs((char *)get_special_key_name((int)wc, 0), fd) < 0)
8935 return FAIL;
8937 else if (fprintf(fd, "%ld", *valuep) < 0)
8938 return FAIL;
8939 if (put_eol(fd) < 0)
8940 return FAIL;
8941 return OK;
8944 static int
8945 put_setbool(fd, cmd, name, value)
8946 FILE *fd;
8947 char *cmd;
8948 char *name;
8949 int value;
8951 if (value < 0) /* global/local option using global value */
8952 return OK;
8953 if (fprintf(fd, "%s %s%s", cmd, value ? "" : "no", name) < 0
8954 || put_eol(fd) < 0)
8955 return FAIL;
8956 return OK;
8960 * Clear all the terminal options.
8961 * If the option has been allocated, free the memory.
8962 * Terminal options are never hidden or indirect.
8964 void
8965 clear_termoptions()
8968 * Reset a few things before clearing the old options. This may cause
8969 * outputting a few things that the terminal doesn't understand, but the
8970 * screen will be cleared later, so this is OK.
8972 #ifdef FEAT_MOUSE_TTY
8973 mch_setmouse(FALSE); /* switch mouse off */
8974 #endif
8975 #ifdef FEAT_TITLE
8976 mch_restore_title(3); /* restore window titles */
8977 #endif
8978 #if defined(FEAT_XCLIPBOARD) && defined(FEAT_GUI)
8979 /* When starting the GUI close the display opened for the clipboard.
8980 * After restoring the title, because that will need the display. */
8981 if (gui.starting)
8982 clear_xterm_clip();
8983 #endif
8984 #ifdef WIN3264
8986 * Check if this is allowed now.
8988 if (can_end_termcap_mode(FALSE) == TRUE)
8989 #endif
8990 stoptermcap(); /* stop termcap mode */
8992 free_termoptions();
8995 void
8996 free_termoptions()
8998 struct vimoption *p;
9000 for (p = &options[0]; p->fullname != NULL; p++)
9001 if (istermoption(p))
9003 if (p->flags & P_ALLOCED)
9004 free_string_option(*(char_u **)(p->var));
9005 if (p->flags & P_DEF_ALLOCED)
9006 free_string_option(p->def_val[VI_DEFAULT]);
9007 *(char_u **)(p->var) = empty_option;
9008 p->def_val[VI_DEFAULT] = empty_option;
9009 p->flags &= ~(P_ALLOCED|P_DEF_ALLOCED);
9011 clear_termcodes();
9015 * Free the string for one term option, if it was allocated.
9016 * Set the string to empty_option and clear allocated flag.
9017 * "var" points to the option value.
9019 void
9020 free_one_termoption(var)
9021 char_u *var;
9023 struct vimoption *p;
9025 for (p = &options[0]; p->fullname != NULL; p++)
9026 if (p->var == var)
9028 if (p->flags & P_ALLOCED)
9029 free_string_option(*(char_u **)(p->var));
9030 *(char_u **)(p->var) = empty_option;
9031 p->flags &= ~P_ALLOCED;
9032 break;
9037 * Set the terminal option defaults to the current value.
9038 * Used after setting the terminal name.
9040 void
9041 set_term_defaults()
9043 struct vimoption *p;
9045 for (p = &options[0]; p->fullname != NULL; p++)
9047 if (istermoption(p) && p->def_val[VI_DEFAULT] != *(char_u **)(p->var))
9049 if (p->flags & P_DEF_ALLOCED)
9051 free_string_option(p->def_val[VI_DEFAULT]);
9052 p->flags &= ~P_DEF_ALLOCED;
9054 p->def_val[VI_DEFAULT] = *(char_u **)(p->var);
9055 if (p->flags & P_ALLOCED)
9057 p->flags |= P_DEF_ALLOCED;
9058 p->flags &= ~P_ALLOCED; /* don't free the value now */
9065 * return TRUE if 'p' starts with 't_'
9067 static int
9068 istermoption(p)
9069 struct vimoption *p;
9071 return (p->fullname[0] == 't' && p->fullname[1] == '_');
9075 * Compute columns for ruler and shown command. 'sc_col' is also used to
9076 * decide what the maximum length of a message on the status line can be.
9077 * If there is a status line for the last window, 'sc_col' is independent
9078 * of 'ru_col'.
9081 #define COL_RULER 17 /* columns needed by standard ruler */
9083 void
9084 comp_col()
9086 #if defined(FEAT_CMDL_INFO) && defined(FEAT_WINDOWS)
9087 int last_has_status = (p_ls == 2 || (p_ls == 1 && firstwin != lastwin));
9089 sc_col = 0;
9090 ru_col = 0;
9091 if (p_ru)
9093 #ifdef FEAT_STL_OPT
9094 ru_col = (ru_wid ? ru_wid : COL_RULER) + 1;
9095 #else
9096 ru_col = COL_RULER + 1;
9097 #endif
9098 /* no last status line, adjust sc_col */
9099 if (!last_has_status)
9100 sc_col = ru_col;
9102 if (p_sc)
9104 sc_col += SHOWCMD_COLS;
9105 if (!p_ru || last_has_status) /* no need for separating space */
9106 ++sc_col;
9108 sc_col = Columns - sc_col;
9109 ru_col = Columns - ru_col;
9110 if (sc_col <= 0) /* screen too narrow, will become a mess */
9111 sc_col = 1;
9112 if (ru_col <= 0)
9113 ru_col = 1;
9114 #else
9115 sc_col = Columns;
9116 ru_col = Columns;
9117 #endif
9121 * Get pointer to option variable, depending on local or global scope.
9123 static char_u *
9124 get_varp_scope(p, opt_flags)
9125 struct vimoption *p;
9126 int opt_flags;
9128 if ((opt_flags & OPT_GLOBAL) && p->indir != PV_NONE)
9130 if (p->var == VAR_WIN)
9131 return (char_u *)GLOBAL_WO(get_varp(p));
9132 return p->var;
9134 if ((opt_flags & OPT_LOCAL) && ((int)p->indir & PV_BOTH))
9136 switch ((int)p->indir)
9138 #ifdef FEAT_QUICKFIX
9139 case PV_EFM: return (char_u *)&(curbuf->b_p_efm);
9140 case PV_GP: return (char_u *)&(curbuf->b_p_gp);
9141 case PV_MP: return (char_u *)&(curbuf->b_p_mp);
9142 #endif
9143 case PV_EP: return (char_u *)&(curbuf->b_p_ep);
9144 case PV_KP: return (char_u *)&(curbuf->b_p_kp);
9145 case PV_PATH: return (char_u *)&(curbuf->b_p_path);
9146 case PV_AR: return (char_u *)&(curbuf->b_p_ar);
9147 case PV_TAGS: return (char_u *)&(curbuf->b_p_tags);
9148 #ifdef FEAT_FIND_ID
9149 case PV_DEF: return (char_u *)&(curbuf->b_p_def);
9150 case PV_INC: return (char_u *)&(curbuf->b_p_inc);
9151 #endif
9152 #ifdef FEAT_INS_EXPAND
9153 case PV_DICT: return (char_u *)&(curbuf->b_p_dict);
9154 case PV_TSR: return (char_u *)&(curbuf->b_p_tsr);
9155 #endif
9156 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9157 case PV_BEXPR: return (char_u *)&(curbuf->b_p_bexpr);
9158 #endif
9159 #ifdef FEAT_STL_OPT
9160 case PV_STL: return (char_u *)&(curwin->w_p_stl);
9161 #endif
9163 return NULL; /* "cannot happen" */
9165 return get_varp(p);
9169 * Get pointer to option variable.
9171 static char_u *
9172 get_varp(p)
9173 struct vimoption *p;
9175 /* hidden option, always return NULL */
9176 if (p->var == NULL)
9177 return NULL;
9179 switch ((int)p->indir)
9181 case PV_NONE: return p->var;
9183 /* global option with local value: use local value if it's been set */
9184 case PV_EP: return *curbuf->b_p_ep != NUL
9185 ? (char_u *)&curbuf->b_p_ep : p->var;
9186 case PV_KP: return *curbuf->b_p_kp != NUL
9187 ? (char_u *)&curbuf->b_p_kp : p->var;
9188 case PV_PATH: return *curbuf->b_p_path != NUL
9189 ? (char_u *)&(curbuf->b_p_path) : p->var;
9190 case PV_AR: return curbuf->b_p_ar >= 0
9191 ? (char_u *)&(curbuf->b_p_ar) : p->var;
9192 case PV_TAGS: return *curbuf->b_p_tags != NUL
9193 ? (char_u *)&(curbuf->b_p_tags) : p->var;
9194 #ifdef FEAT_FIND_ID
9195 case PV_DEF: return *curbuf->b_p_def != NUL
9196 ? (char_u *)&(curbuf->b_p_def) : p->var;
9197 case PV_INC: return *curbuf->b_p_inc != NUL
9198 ? (char_u *)&(curbuf->b_p_inc) : p->var;
9199 #endif
9200 #ifdef FEAT_INS_EXPAND
9201 case PV_DICT: return *curbuf->b_p_dict != NUL
9202 ? (char_u *)&(curbuf->b_p_dict) : p->var;
9203 case PV_TSR: return *curbuf->b_p_tsr != NUL
9204 ? (char_u *)&(curbuf->b_p_tsr) : p->var;
9205 #endif
9206 #ifdef FEAT_QUICKFIX
9207 case PV_EFM: return *curbuf->b_p_efm != NUL
9208 ? (char_u *)&(curbuf->b_p_efm) : p->var;
9209 case PV_GP: return *curbuf->b_p_gp != NUL
9210 ? (char_u *)&(curbuf->b_p_gp) : p->var;
9211 case PV_MP: return *curbuf->b_p_mp != NUL
9212 ? (char_u *)&(curbuf->b_p_mp) : p->var;
9213 #endif
9214 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9215 case PV_BEXPR: return *curbuf->b_p_bexpr != NUL
9216 ? (char_u *)&(curbuf->b_p_bexpr) : p->var;
9217 #endif
9218 #ifdef FEAT_STL_OPT
9219 case PV_STL: return *curwin->w_p_stl != NUL
9220 ? (char_u *)&(curwin->w_p_stl) : p->var;
9221 #endif
9223 #ifdef FEAT_ARABIC
9224 case PV_ARAB: return (char_u *)&(curwin->w_p_arab);
9225 #endif
9226 case PV_LIST: return (char_u *)&(curwin->w_p_list);
9227 #ifdef FEAT_SPELL
9228 case PV_SPELL: return (char_u *)&(curwin->w_p_spell);
9229 #endif
9230 #ifdef FEAT_SYN_HL
9231 case PV_CUC: return (char_u *)&(curwin->w_p_cuc);
9232 case PV_CUL: return (char_u *)&(curwin->w_p_cul);
9233 #endif
9234 #ifdef FEAT_DIFF
9235 case PV_DIFF: return (char_u *)&(curwin->w_p_diff);
9236 #endif
9237 #ifdef FEAT_FOLDING
9238 case PV_FDC: return (char_u *)&(curwin->w_p_fdc);
9239 case PV_FEN: return (char_u *)&(curwin->w_p_fen);
9240 case PV_FDI: return (char_u *)&(curwin->w_p_fdi);
9241 case PV_FDL: return (char_u *)&(curwin->w_p_fdl);
9242 case PV_FDM: return (char_u *)&(curwin->w_p_fdm);
9243 case PV_FML: return (char_u *)&(curwin->w_p_fml);
9244 case PV_FDN: return (char_u *)&(curwin->w_p_fdn);
9245 # ifdef FEAT_EVAL
9246 case PV_FDE: return (char_u *)&(curwin->w_p_fde);
9247 case PV_FDT: return (char_u *)&(curwin->w_p_fdt);
9248 # endif
9249 case PV_FMR: return (char_u *)&(curwin->w_p_fmr);
9250 #endif
9251 case PV_NU: return (char_u *)&(curwin->w_p_nu);
9252 case PV_RNU: return (char_u *)&(curwin->w_p_rnu);
9253 #ifdef FEAT_LINEBREAK
9254 case PV_NUW: return (char_u *)&(curwin->w_p_nuw);
9255 #endif
9256 #ifdef FEAT_WINDOWS
9257 case PV_WFH: return (char_u *)&(curwin->w_p_wfh);
9258 #endif
9259 #ifdef FEAT_VERTSPLIT
9260 case PV_WFW: return (char_u *)&(curwin->w_p_wfw);
9261 #endif
9262 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
9263 case PV_PVW: return (char_u *)&(curwin->w_p_pvw);
9264 #endif
9265 #ifdef FEAT_RIGHTLEFT
9266 case PV_RL: return (char_u *)&(curwin->w_p_rl);
9267 case PV_RLC: return (char_u *)&(curwin->w_p_rlc);
9268 #endif
9269 case PV_SCROLL: return (char_u *)&(curwin->w_p_scr);
9270 case PV_WRAP: return (char_u *)&(curwin->w_p_wrap);
9271 #ifdef FEAT_LINEBREAK
9272 case PV_LBR: return (char_u *)&(curwin->w_p_lbr);
9273 #endif
9274 #ifdef FEAT_SCROLLBIND
9275 case PV_SCBIND: return (char_u *)&(curwin->w_p_scb);
9276 #endif
9278 case PV_AI: return (char_u *)&(curbuf->b_p_ai);
9279 case PV_BIN: return (char_u *)&(curbuf->b_p_bin);
9280 #ifdef FEAT_MBYTE
9281 case PV_BOMB: return (char_u *)&(curbuf->b_p_bomb);
9282 #endif
9283 #if defined(FEAT_QUICKFIX)
9284 case PV_BH: return (char_u *)&(curbuf->b_p_bh);
9285 case PV_BT: return (char_u *)&(curbuf->b_p_bt);
9286 #endif
9287 case PV_BL: return (char_u *)&(curbuf->b_p_bl);
9288 case PV_CI: return (char_u *)&(curbuf->b_p_ci);
9289 #ifdef FEAT_CINDENT
9290 case PV_CIN: return (char_u *)&(curbuf->b_p_cin);
9291 case PV_CINK: return (char_u *)&(curbuf->b_p_cink);
9292 case PV_CINO: return (char_u *)&(curbuf->b_p_cino);
9293 #endif
9294 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
9295 case PV_CINW: return (char_u *)&(curbuf->b_p_cinw);
9296 #endif
9297 #ifdef FEAT_COMMENTS
9298 case PV_COM: return (char_u *)&(curbuf->b_p_com);
9299 #endif
9300 #ifdef FEAT_FOLDING
9301 case PV_CMS: return (char_u *)&(curbuf->b_p_cms);
9302 #endif
9303 #ifdef FEAT_INS_EXPAND
9304 case PV_CPT: return (char_u *)&(curbuf->b_p_cpt);
9305 #endif
9306 #ifdef FEAT_COMPL_FUNC
9307 case PV_CFU: return (char_u *)&(curbuf->b_p_cfu);
9308 case PV_OFU: return (char_u *)&(curbuf->b_p_ofu);
9309 #endif
9310 case PV_EOL: return (char_u *)&(curbuf->b_p_eol);
9311 case PV_ET: return (char_u *)&(curbuf->b_p_et);
9312 #ifdef FEAT_MBYTE
9313 case PV_FENC: return (char_u *)&(curbuf->b_p_fenc);
9314 #endif
9315 case PV_FF: return (char_u *)&(curbuf->b_p_ff);
9316 #ifdef FEAT_AUTOCMD
9317 case PV_FT: return (char_u *)&(curbuf->b_p_ft);
9318 #endif
9319 case PV_FO: return (char_u *)&(curbuf->b_p_fo);
9320 case PV_FLP: return (char_u *)&(curbuf->b_p_flp);
9321 case PV_IMI: return (char_u *)&(curbuf->b_p_iminsert);
9322 case PV_IMS: return (char_u *)&(curbuf->b_p_imsearch);
9323 case PV_INF: return (char_u *)&(curbuf->b_p_inf);
9324 case PV_ISK: return (char_u *)&(curbuf->b_p_isk);
9325 #ifdef FEAT_FIND_ID
9326 # ifdef FEAT_EVAL
9327 case PV_INEX: return (char_u *)&(curbuf->b_p_inex);
9328 # endif
9329 #endif
9330 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
9331 case PV_INDE: return (char_u *)&(curbuf->b_p_inde);
9332 case PV_INDK: return (char_u *)&(curbuf->b_p_indk);
9333 #endif
9334 #ifdef FEAT_EVAL
9335 case PV_FEX: return (char_u *)&(curbuf->b_p_fex);
9336 #endif
9337 #ifdef FEAT_CRYPT
9338 case PV_KEY: return (char_u *)&(curbuf->b_p_key);
9339 #endif
9340 #ifdef FEAT_LISP
9341 case PV_LISP: return (char_u *)&(curbuf->b_p_lisp);
9342 #endif
9343 case PV_ML: return (char_u *)&(curbuf->b_p_ml);
9344 case PV_MPS: return (char_u *)&(curbuf->b_p_mps);
9345 case PV_MA: return (char_u *)&(curbuf->b_p_ma);
9346 case PV_MOD: return (char_u *)&(curbuf->b_changed);
9347 case PV_NF: return (char_u *)&(curbuf->b_p_nf);
9348 #ifdef FEAT_OSFILETYPE
9349 case PV_OFT: return (char_u *)&(curbuf->b_p_oft);
9350 #endif
9351 case PV_PI: return (char_u *)&(curbuf->b_p_pi);
9352 #ifdef FEAT_TEXTOBJ
9353 case PV_QE: return (char_u *)&(curbuf->b_p_qe);
9354 #endif
9355 case PV_RO: return (char_u *)&(curbuf->b_p_ro);
9356 #ifdef FEAT_SMARTINDENT
9357 case PV_SI: return (char_u *)&(curbuf->b_p_si);
9358 #endif
9359 #ifndef SHORT_FNAME
9360 case PV_SN: return (char_u *)&(curbuf->b_p_sn);
9361 #endif
9362 case PV_STS: return (char_u *)&(curbuf->b_p_sts);
9363 #ifdef FEAT_SEARCHPATH
9364 case PV_SUA: return (char_u *)&(curbuf->b_p_sua);
9365 #endif
9366 case PV_SWF: return (char_u *)&(curbuf->b_p_swf);
9367 #ifdef FEAT_SYN_HL
9368 case PV_SMC: return (char_u *)&(curbuf->b_p_smc);
9369 case PV_SYN: return (char_u *)&(curbuf->b_p_syn);
9370 #endif
9371 #ifdef FEAT_SPELL
9372 case PV_SPC: return (char_u *)&(curbuf->b_p_spc);
9373 case PV_SPF: return (char_u *)&(curbuf->b_p_spf);
9374 case PV_SPL: return (char_u *)&(curbuf->b_p_spl);
9375 #endif
9376 case PV_SW: return (char_u *)&(curbuf->b_p_sw);
9377 case PV_TS: return (char_u *)&(curbuf->b_p_ts);
9378 case PV_TW: return (char_u *)&(curbuf->b_p_tw);
9379 case PV_TX: return (char_u *)&(curbuf->b_p_tx);
9380 case PV_WM: return (char_u *)&(curbuf->b_p_wm);
9381 #ifdef FEAT_KEYMAP
9382 case PV_KMAP: return (char_u *)&(curbuf->b_p_keymap);
9383 #endif
9384 default: EMSG(_("E356: get_varp ERROR"));
9386 /* always return a valid pointer to avoid a crash! */
9387 return (char_u *)&(curbuf->b_p_wm);
9391 * Get the value of 'equalprg', either the buffer-local one or the global one.
9393 char_u *
9394 get_equalprg()
9396 if (*curbuf->b_p_ep == NUL)
9397 return p_ep;
9398 return curbuf->b_p_ep;
9401 #if defined(FEAT_WINDOWS) || defined(PROTO)
9403 * Copy options from one window to another.
9404 * Used when splitting a window.
9406 void
9407 win_copy_options(wp_from, wp_to)
9408 win_T *wp_from;
9409 win_T *wp_to;
9411 copy_winopt(&wp_from->w_onebuf_opt, &wp_to->w_onebuf_opt);
9412 copy_winopt(&wp_from->w_allbuf_opt, &wp_to->w_allbuf_opt);
9413 # ifdef FEAT_RIGHTLEFT
9414 # ifdef FEAT_FKMAP
9415 /* Is this right? */
9416 wp_to->w_farsi = wp_from->w_farsi;
9417 # endif
9418 # endif
9420 #endif
9423 * Copy the options from one winopt_T to another.
9424 * Doesn't free the old option values in "to", use clear_winopt() for that.
9425 * The 'scroll' option is not copied, because it depends on the window height.
9426 * The 'previewwindow' option is reset, there can be only one preview window.
9428 void
9429 copy_winopt(from, to)
9430 winopt_T *from;
9431 winopt_T *to;
9433 #ifdef FEAT_ARABIC
9434 to->wo_arab = from->wo_arab;
9435 #endif
9436 to->wo_list = from->wo_list;
9437 to->wo_nu = from->wo_nu;
9438 to->wo_rnu = from->wo_rnu;
9439 #ifdef FEAT_LINEBREAK
9440 to->wo_nuw = from->wo_nuw;
9441 #endif
9442 #ifdef FEAT_RIGHTLEFT
9443 to->wo_rl = from->wo_rl;
9444 to->wo_rlc = vim_strsave(from->wo_rlc);
9445 #endif
9446 #ifdef FEAT_STL_OPT
9447 to->wo_stl = vim_strsave(from->wo_stl);
9448 #endif
9449 to->wo_wrap = from->wo_wrap;
9450 #ifdef FEAT_LINEBREAK
9451 to->wo_lbr = from->wo_lbr;
9452 #endif
9453 #ifdef FEAT_SCROLLBIND
9454 to->wo_scb = from->wo_scb;
9455 #endif
9456 #ifdef FEAT_SPELL
9457 to->wo_spell = from->wo_spell;
9458 #endif
9459 #ifdef FEAT_SYN_HL
9460 to->wo_cuc = from->wo_cuc;
9461 to->wo_cul = from->wo_cul;
9462 #endif
9463 #ifdef FEAT_DIFF
9464 to->wo_diff = from->wo_diff;
9465 #endif
9466 #ifdef FEAT_FOLDING
9467 to->wo_fdc = from->wo_fdc;
9468 to->wo_fen = from->wo_fen;
9469 to->wo_fdi = vim_strsave(from->wo_fdi);
9470 to->wo_fml = from->wo_fml;
9471 to->wo_fdl = from->wo_fdl;
9472 to->wo_fdm = vim_strsave(from->wo_fdm);
9473 to->wo_fdn = from->wo_fdn;
9474 # ifdef FEAT_EVAL
9475 to->wo_fde = vim_strsave(from->wo_fde);
9476 to->wo_fdt = vim_strsave(from->wo_fdt);
9477 # endif
9478 to->wo_fmr = vim_strsave(from->wo_fmr);
9479 #endif
9480 check_winopt(to); /* don't want NULL pointers */
9484 * Check string options in a window for a NULL value.
9486 void
9487 check_win_options(win)
9488 win_T *win;
9490 check_winopt(&win->w_onebuf_opt);
9491 check_winopt(&win->w_allbuf_opt);
9495 * Check for NULL pointers in a winopt_T and replace them with empty_option.
9497 void
9498 check_winopt(wop)
9499 winopt_T *wop UNUSED;
9501 #ifdef FEAT_FOLDING
9502 check_string_option(&wop->wo_fdi);
9503 check_string_option(&wop->wo_fdm);
9504 # ifdef FEAT_EVAL
9505 check_string_option(&wop->wo_fde);
9506 check_string_option(&wop->wo_fdt);
9507 # endif
9508 check_string_option(&wop->wo_fmr);
9509 #endif
9510 #ifdef FEAT_RIGHTLEFT
9511 check_string_option(&wop->wo_rlc);
9512 #endif
9513 #ifdef FEAT_STL_OPT
9514 check_string_option(&wop->wo_stl);
9515 #endif
9519 * Free the allocated memory inside a winopt_T.
9521 void
9522 clear_winopt(wop)
9523 winopt_T *wop UNUSED;
9525 #ifdef FEAT_FOLDING
9526 clear_string_option(&wop->wo_fdi);
9527 clear_string_option(&wop->wo_fdm);
9528 # ifdef FEAT_EVAL
9529 clear_string_option(&wop->wo_fde);
9530 clear_string_option(&wop->wo_fdt);
9531 # endif
9532 clear_string_option(&wop->wo_fmr);
9533 #endif
9534 #ifdef FEAT_RIGHTLEFT
9535 clear_string_option(&wop->wo_rlc);
9536 #endif
9537 #ifdef FEAT_STL_OPT
9538 clear_string_option(&wop->wo_stl);
9539 #endif
9543 * Copy global option values to local options for one buffer.
9544 * Used when creating a new buffer and sometimes when entering a buffer.
9545 * flags:
9546 * BCO_ENTER We will enter the buf buffer.
9547 * BCO_ALWAYS Always copy the options, but only set b_p_initialized when
9548 * appropriate.
9549 * BCO_NOHELP Don't copy the values to a help buffer.
9551 void
9552 buf_copy_options(buf, flags)
9553 buf_T *buf;
9554 int flags;
9556 int should_copy = TRUE;
9557 char_u *save_p_isk = NULL; /* init for GCC */
9558 int dont_do_help;
9559 int did_isk = FALSE;
9562 * Don't do anything of the buffer is invalid.
9564 if (buf == NULL || !buf_valid(buf))
9565 return;
9568 * Skip this when the option defaults have not been set yet. Happens when
9569 * main() allocates the first buffer.
9571 if (p_cpo != NULL)
9574 * Always copy when entering and 'cpo' contains 'S'.
9575 * Don't copy when already initialized.
9576 * Don't copy when 'cpo' contains 's' and not entering.
9577 * 'S' BCO_ENTER initialized 's' should_copy
9578 * yes yes X X TRUE
9579 * yes no yes X FALSE
9580 * no X yes X FALSE
9581 * X no no yes FALSE
9582 * X no no no TRUE
9583 * no yes no X TRUE
9585 if ((vim_strchr(p_cpo, CPO_BUFOPTGLOB) == NULL || !(flags & BCO_ENTER))
9586 && (buf->b_p_initialized
9587 || (!(flags & BCO_ENTER)
9588 && vim_strchr(p_cpo, CPO_BUFOPT) != NULL)))
9589 should_copy = FALSE;
9591 if (should_copy || (flags & BCO_ALWAYS))
9593 /* Don't copy the options specific to a help buffer when
9594 * BCO_NOHELP is given or the options were initialized already
9595 * (jumping back to a help file with CTRL-T or CTRL-O) */
9596 dont_do_help = ((flags & BCO_NOHELP) && buf->b_help)
9597 || buf->b_p_initialized;
9598 if (dont_do_help) /* don't free b_p_isk */
9600 save_p_isk = buf->b_p_isk;
9601 buf->b_p_isk = NULL;
9604 * Always free the allocated strings.
9605 * If not already initialized, set 'readonly' and copy 'fileformat'.
9607 if (!buf->b_p_initialized)
9609 free_buf_options(buf, TRUE);
9610 buf->b_p_ro = FALSE; /* don't copy readonly */
9611 buf->b_p_tx = p_tx;
9612 #ifdef FEAT_MBYTE
9613 buf->b_p_fenc = vim_strsave(p_fenc);
9614 #endif
9615 buf->b_p_ff = vim_strsave(p_ff);
9616 #if defined(FEAT_QUICKFIX)
9617 buf->b_p_bh = empty_option;
9618 buf->b_p_bt = empty_option;
9619 #endif
9621 else
9622 free_buf_options(buf, FALSE);
9624 buf->b_p_ai = p_ai;
9625 buf->b_p_ai_nopaste = p_ai_nopaste;
9626 buf->b_p_sw = p_sw;
9627 buf->b_p_tw = p_tw;
9628 buf->b_p_tw_nopaste = p_tw_nopaste;
9629 buf->b_p_tw_nobin = p_tw_nobin;
9630 buf->b_p_wm = p_wm;
9631 buf->b_p_wm_nopaste = p_wm_nopaste;
9632 buf->b_p_wm_nobin = p_wm_nobin;
9633 buf->b_p_bin = p_bin;
9634 #ifdef FEAT_MBYTE
9635 buf->b_p_bomb = p_bomb;
9636 #endif
9637 buf->b_p_et = p_et;
9638 buf->b_p_et_nobin = p_et_nobin;
9639 buf->b_p_ml = p_ml;
9640 buf->b_p_ml_nobin = p_ml_nobin;
9641 buf->b_p_inf = p_inf;
9642 buf->b_p_swf = p_swf;
9643 #ifdef FEAT_INS_EXPAND
9644 buf->b_p_cpt = vim_strsave(p_cpt);
9645 #endif
9646 #ifdef FEAT_COMPL_FUNC
9647 buf->b_p_cfu = vim_strsave(p_cfu);
9648 buf->b_p_ofu = vim_strsave(p_ofu);
9649 #endif
9650 buf->b_p_sts = p_sts;
9651 buf->b_p_sts_nopaste = p_sts_nopaste;
9652 #ifndef SHORT_FNAME
9653 buf->b_p_sn = p_sn;
9654 #endif
9655 #ifdef FEAT_COMMENTS
9656 buf->b_p_com = vim_strsave(p_com);
9657 #endif
9658 #ifdef FEAT_FOLDING
9659 buf->b_p_cms = vim_strsave(p_cms);
9660 #endif
9661 buf->b_p_fo = vim_strsave(p_fo);
9662 buf->b_p_flp = vim_strsave(p_flp);
9663 buf->b_p_nf = vim_strsave(p_nf);
9664 buf->b_p_mps = vim_strsave(p_mps);
9665 #ifdef FEAT_SMARTINDENT
9666 buf->b_p_si = p_si;
9667 #endif
9668 buf->b_p_ci = p_ci;
9669 #ifdef FEAT_CINDENT
9670 buf->b_p_cin = p_cin;
9671 buf->b_p_cink = vim_strsave(p_cink);
9672 buf->b_p_cino = vim_strsave(p_cino);
9673 #endif
9674 #ifdef FEAT_AUTOCMD
9675 /* Don't copy 'filetype', it must be detected */
9676 buf->b_p_ft = empty_option;
9677 #endif
9678 #ifdef FEAT_OSFILETYPE
9679 buf->b_p_oft = vim_strsave(p_oft);
9680 #endif
9681 buf->b_p_pi = p_pi;
9682 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
9683 buf->b_p_cinw = vim_strsave(p_cinw);
9684 #endif
9685 #ifdef FEAT_LISP
9686 buf->b_p_lisp = p_lisp;
9687 #endif
9688 #ifdef FEAT_SYN_HL
9689 /* Don't copy 'syntax', it must be set */
9690 buf->b_p_syn = empty_option;
9691 buf->b_p_smc = p_smc;
9692 #endif
9693 #ifdef FEAT_SPELL
9694 buf->b_p_spc = vim_strsave(p_spc);
9695 (void)compile_cap_prog(buf);
9696 buf->b_p_spf = vim_strsave(p_spf);
9697 buf->b_p_spl = vim_strsave(p_spl);
9698 #endif
9699 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
9700 buf->b_p_inde = vim_strsave(p_inde);
9701 buf->b_p_indk = vim_strsave(p_indk);
9702 #endif
9703 #if defined(FEAT_EVAL)
9704 buf->b_p_fex = vim_strsave(p_fex);
9705 #endif
9706 #ifdef FEAT_CRYPT
9707 buf->b_p_key = vim_strsave(p_key);
9708 #endif
9709 #ifdef FEAT_SEARCHPATH
9710 buf->b_p_sua = vim_strsave(p_sua);
9711 #endif
9712 #ifdef FEAT_KEYMAP
9713 buf->b_p_keymap = vim_strsave(p_keymap);
9714 buf->b_kmap_state |= KEYMAP_INIT;
9715 #endif
9716 /* This isn't really an option, but copying the langmap and IME
9717 * state from the current buffer is better than resetting it. */
9718 buf->b_p_iminsert = p_iminsert;
9719 buf->b_p_imsearch = p_imsearch;
9721 /* options that are normally global but also have a local value
9722 * are not copied, start using the global value */
9723 buf->b_p_ar = -1;
9724 #ifdef FEAT_QUICKFIX
9725 buf->b_p_gp = empty_option;
9726 buf->b_p_mp = empty_option;
9727 buf->b_p_efm = empty_option;
9728 #endif
9729 buf->b_p_ep = empty_option;
9730 buf->b_p_kp = empty_option;
9731 buf->b_p_path = empty_option;
9732 buf->b_p_tags = empty_option;
9733 #ifdef FEAT_FIND_ID
9734 buf->b_p_def = empty_option;
9735 buf->b_p_inc = empty_option;
9736 # ifdef FEAT_EVAL
9737 buf->b_p_inex = vim_strsave(p_inex);
9738 # endif
9739 #endif
9740 #ifdef FEAT_INS_EXPAND
9741 buf->b_p_dict = empty_option;
9742 buf->b_p_tsr = empty_option;
9743 #endif
9744 #ifdef FEAT_TEXTOBJ
9745 buf->b_p_qe = vim_strsave(p_qe);
9746 #endif
9747 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9748 buf->b_p_bexpr = empty_option;
9749 #endif
9752 * Don't copy the options set by ex_help(), use the saved values,
9753 * when going from a help buffer to a non-help buffer.
9754 * Don't touch these at all when BCO_NOHELP is used and going from
9755 * or to a help buffer.
9757 if (dont_do_help)
9758 buf->b_p_isk = save_p_isk;
9759 else
9761 buf->b_p_isk = vim_strsave(p_isk);
9762 did_isk = TRUE;
9763 buf->b_p_ts = p_ts;
9764 buf->b_help = FALSE;
9765 #ifdef FEAT_QUICKFIX
9766 if (buf->b_p_bt[0] == 'h')
9767 clear_string_option(&buf->b_p_bt);
9768 #endif
9769 buf->b_p_ma = p_ma;
9774 * When the options should be copied (ignoring BCO_ALWAYS), set the
9775 * flag that indicates that the options have been initialized.
9777 if (should_copy)
9778 buf->b_p_initialized = TRUE;
9781 check_buf_options(buf); /* make sure we don't have NULLs */
9782 if (did_isk)
9783 (void)buf_init_chartab(buf, FALSE);
9787 * Reset the 'modifiable' option and its default value.
9789 void
9790 reset_modifiable()
9792 int opt_idx;
9794 curbuf->b_p_ma = FALSE;
9795 p_ma = FALSE;
9796 opt_idx = findoption((char_u *)"ma");
9797 if (opt_idx >= 0)
9798 options[opt_idx].def_val[VI_DEFAULT] = FALSE;
9802 * Set the global value for 'iminsert' to the local value.
9804 void
9805 set_iminsert_global()
9807 p_iminsert = curbuf->b_p_iminsert;
9811 * Set the global value for 'imsearch' to the local value.
9813 void
9814 set_imsearch_global()
9816 p_imsearch = curbuf->b_p_imsearch;
9819 #if defined(FEAT_CMDL_COMPL) || defined(PROTO)
9820 static int expand_option_idx = -1;
9821 static char_u expand_option_name[5] = {'t', '_', NUL, NUL, NUL};
9822 static int expand_option_flags = 0;
9824 void
9825 set_context_in_set_cmd(xp, arg, opt_flags)
9826 expand_T *xp;
9827 char_u *arg;
9828 int opt_flags; /* OPT_GLOBAL and/or OPT_LOCAL */
9830 int nextchar;
9831 long_u flags = 0; /* init for GCC */
9832 int opt_idx = 0; /* init for GCC */
9833 char_u *p;
9834 char_u *s;
9835 int is_term_option = FALSE;
9836 int key;
9838 expand_option_flags = opt_flags;
9840 xp->xp_context = EXPAND_SETTINGS;
9841 if (*arg == NUL)
9843 xp->xp_pattern = arg;
9844 return;
9846 p = arg + STRLEN(arg) - 1;
9847 if (*p == ' ' && *(p - 1) != '\\')
9849 xp->xp_pattern = p + 1;
9850 return;
9852 while (p > arg)
9854 s = p;
9855 /* count number of backslashes before ' ' or ',' */
9856 if (*p == ' ' || *p == ',')
9858 while (s > arg && *(s - 1) == '\\')
9859 --s;
9861 /* break at a space with an even number of backslashes */
9862 if (*p == ' ' && ((p - s) & 1) == 0)
9864 ++p;
9865 break;
9867 --p;
9869 if (STRNCMP(p, "no", 2) == 0 && STRNCMP(p, "novice", 6) != 0)
9871 xp->xp_context = EXPAND_BOOL_SETTINGS;
9872 p += 2;
9874 if (STRNCMP(p, "inv", 3) == 0)
9876 xp->xp_context = EXPAND_BOOL_SETTINGS;
9877 p += 3;
9879 xp->xp_pattern = arg = p;
9880 if (*arg == '<')
9882 while (*p != '>')
9883 if (*p++ == NUL) /* expand terminal option name */
9884 return;
9885 key = get_special_key_code(arg + 1);
9886 if (key == 0) /* unknown name */
9888 xp->xp_context = EXPAND_NOTHING;
9889 return;
9891 nextchar = *++p;
9892 is_term_option = TRUE;
9893 expand_option_name[2] = KEY2TERMCAP0(key);
9894 expand_option_name[3] = KEY2TERMCAP1(key);
9896 else
9898 if (p[0] == 't' && p[1] == '_')
9900 p += 2;
9901 if (*p != NUL)
9902 ++p;
9903 if (*p == NUL)
9904 return; /* expand option name */
9905 nextchar = *++p;
9906 is_term_option = TRUE;
9907 expand_option_name[2] = p[-2];
9908 expand_option_name[3] = p[-1];
9910 else
9912 /* Allow * wildcard */
9913 while (ASCII_ISALNUM(*p) || *p == '_' || *p == '*')
9914 p++;
9915 if (*p == NUL)
9916 return;
9917 nextchar = *p;
9918 *p = NUL;
9919 opt_idx = findoption(arg);
9920 *p = nextchar;
9921 if (opt_idx == -1 || options[opt_idx].var == NULL)
9923 xp->xp_context = EXPAND_NOTHING;
9924 return;
9926 flags = options[opt_idx].flags;
9927 if (flags & P_BOOL)
9929 xp->xp_context = EXPAND_NOTHING;
9930 return;
9934 /* handle "-=" and "+=" */
9935 if ((nextchar == '-' || nextchar == '+' || nextchar == '^') && p[1] == '=')
9937 ++p;
9938 nextchar = '=';
9940 if ((nextchar != '=' && nextchar != ':')
9941 || xp->xp_context == EXPAND_BOOL_SETTINGS)
9943 xp->xp_context = EXPAND_UNSUCCESSFUL;
9944 return;
9946 if (xp->xp_context != EXPAND_BOOL_SETTINGS && p[1] == NUL)
9948 xp->xp_context = EXPAND_OLD_SETTING;
9949 if (is_term_option)
9950 expand_option_idx = -1;
9951 else
9952 expand_option_idx = opt_idx;
9953 xp->xp_pattern = p + 1;
9954 return;
9956 xp->xp_context = EXPAND_NOTHING;
9957 if (is_term_option || (flags & P_NUM))
9958 return;
9960 xp->xp_pattern = p + 1;
9962 if (flags & P_EXPAND)
9964 p = options[opt_idx].var;
9965 if (p == (char_u *)&p_bdir
9966 || p == (char_u *)&p_dir
9967 || p == (char_u *)&p_path
9968 || p == (char_u *)&p_rtp
9969 #ifdef FEAT_SEARCHPATH
9970 || p == (char_u *)&p_cdpath
9971 #endif
9972 #ifdef FEAT_SESSION
9973 || p == (char_u *)&p_vdir
9974 #endif
9977 xp->xp_context = EXPAND_DIRECTORIES;
9978 if (p == (char_u *)&p_path
9979 #ifdef FEAT_SEARCHPATH
9980 || p == (char_u *)&p_cdpath
9981 #endif
9983 xp->xp_backslash = XP_BS_THREE;
9984 else
9985 xp->xp_backslash = XP_BS_ONE;
9987 else
9989 xp->xp_context = EXPAND_FILES;
9990 /* for 'tags' need three backslashes for a space */
9991 if (p == (char_u *)&p_tags)
9992 xp->xp_backslash = XP_BS_THREE;
9993 else
9994 xp->xp_backslash = XP_BS_ONE;
9998 /* For an option that is a list of file names, find the start of the
9999 * last file name. */
10000 for (p = arg + STRLEN(arg) - 1; p > xp->xp_pattern; --p)
10002 /* count number of backslashes before ' ' or ',' */
10003 if (*p == ' ' || *p == ',')
10005 s = p;
10006 while (s > xp->xp_pattern && *(s - 1) == '\\')
10007 --s;
10008 if ((*p == ' ' && (xp->xp_backslash == XP_BS_THREE && (p - s) < 3))
10009 || (*p == ',' && (flags & P_COMMA) && ((p - s) & 1) == 0))
10011 xp->xp_pattern = p + 1;
10012 break;
10016 #ifdef FEAT_SPELL
10017 /* for 'spellsuggest' start at "file:" */
10018 if (options[opt_idx].var == (char_u *)&p_sps
10019 && STRNCMP(p, "file:", 5) == 0)
10021 xp->xp_pattern = p + 5;
10022 break;
10024 #endif
10027 return;
10031 ExpandSettings(xp, regmatch, num_file, file)
10032 expand_T *xp;
10033 regmatch_T *regmatch;
10034 int *num_file;
10035 char_u ***file;
10037 int num_normal = 0; /* Nr of matching non-term-code settings */
10038 int num_term = 0; /* Nr of matching terminal code settings */
10039 int opt_idx;
10040 int match;
10041 int count = 0;
10042 char_u *str;
10043 int loop;
10044 int is_term_opt;
10045 char_u name_buf[MAX_KEY_NAME_LEN];
10046 static char *(names[]) = {"all", "termcap"};
10047 int ic = regmatch->rm_ic; /* remember the ignore-case flag */
10049 /* do this loop twice:
10050 * loop == 0: count the number of matching options
10051 * loop == 1: copy the matching options into allocated memory
10053 for (loop = 0; loop <= 1; ++loop)
10055 regmatch->rm_ic = ic;
10056 if (xp->xp_context != EXPAND_BOOL_SETTINGS)
10058 for (match = 0; match < (int)(sizeof(names) / sizeof(char *));
10059 ++match)
10060 if (vim_regexec(regmatch, (char_u *)names[match], (colnr_T)0))
10062 if (loop == 0)
10063 num_normal++;
10064 else
10065 (*file)[count++] = vim_strsave((char_u *)names[match]);
10068 for (opt_idx = 0; (str = (char_u *)options[opt_idx].fullname) != NULL;
10069 opt_idx++)
10071 if (options[opt_idx].var == NULL)
10072 continue;
10073 if (xp->xp_context == EXPAND_BOOL_SETTINGS
10074 && !(options[opt_idx].flags & P_BOOL))
10075 continue;
10076 is_term_opt = istermoption(&options[opt_idx]);
10077 if (is_term_opt && num_normal > 0)
10078 continue;
10079 match = FALSE;
10080 if (vim_regexec(regmatch, str, (colnr_T)0)
10081 || (options[opt_idx].shortname != NULL
10082 && vim_regexec(regmatch,
10083 (char_u *)options[opt_idx].shortname, (colnr_T)0)))
10084 match = TRUE;
10085 else if (is_term_opt)
10087 name_buf[0] = '<';
10088 name_buf[1] = 't';
10089 name_buf[2] = '_';
10090 name_buf[3] = str[2];
10091 name_buf[4] = str[3];
10092 name_buf[5] = '>';
10093 name_buf[6] = NUL;
10094 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10096 match = TRUE;
10097 str = name_buf;
10100 if (match)
10102 if (loop == 0)
10104 if (is_term_opt)
10105 num_term++;
10106 else
10107 num_normal++;
10109 else
10110 (*file)[count++] = vim_strsave(str);
10114 * Check terminal key codes, these are not in the option table
10116 if (xp->xp_context != EXPAND_BOOL_SETTINGS && num_normal == 0)
10118 for (opt_idx = 0; (str = get_termcode(opt_idx)) != NULL; opt_idx++)
10120 if (!isprint(str[0]) || !isprint(str[1]))
10121 continue;
10123 name_buf[0] = 't';
10124 name_buf[1] = '_';
10125 name_buf[2] = str[0];
10126 name_buf[3] = str[1];
10127 name_buf[4] = NUL;
10129 match = FALSE;
10130 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10131 match = TRUE;
10132 else
10134 name_buf[0] = '<';
10135 name_buf[1] = 't';
10136 name_buf[2] = '_';
10137 name_buf[3] = str[0];
10138 name_buf[4] = str[1];
10139 name_buf[5] = '>';
10140 name_buf[6] = NUL;
10142 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10143 match = TRUE;
10145 if (match)
10147 if (loop == 0)
10148 num_term++;
10149 else
10150 (*file)[count++] = vim_strsave(name_buf);
10155 * Check special key names.
10157 regmatch->rm_ic = TRUE; /* ignore case here */
10158 for (opt_idx = 0; (str = get_key_name(opt_idx)) != NULL; opt_idx++)
10160 name_buf[0] = '<';
10161 STRCPY(name_buf + 1, str);
10162 STRCAT(name_buf, ">");
10164 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10166 if (loop == 0)
10167 num_term++;
10168 else
10169 (*file)[count++] = vim_strsave(name_buf);
10173 if (loop == 0)
10175 if (num_normal > 0)
10176 *num_file = num_normal;
10177 else if (num_term > 0)
10178 *num_file = num_term;
10179 else
10180 return OK;
10181 *file = (char_u **)alloc((unsigned)(*num_file * sizeof(char_u *)));
10182 if (*file == NULL)
10184 *file = (char_u **)"";
10185 return FAIL;
10189 return OK;
10193 ExpandOldSetting(num_file, file)
10194 int *num_file;
10195 char_u ***file;
10197 char_u *var = NULL; /* init for GCC */
10198 char_u *buf;
10200 *num_file = 0;
10201 *file = (char_u **)alloc((unsigned)sizeof(char_u *));
10202 if (*file == NULL)
10203 return FAIL;
10206 * For a terminal key code expand_option_idx is < 0.
10208 if (expand_option_idx < 0)
10210 var = find_termcode(expand_option_name + 2);
10211 if (var == NULL)
10212 expand_option_idx = findoption(expand_option_name);
10215 if (expand_option_idx >= 0)
10217 /* put string of option value in NameBuff */
10218 option_value2string(&options[expand_option_idx], expand_option_flags);
10219 var = NameBuff;
10221 else if (var == NULL)
10222 var = (char_u *)"";
10224 /* A backslash is required before some characters. This is the reverse of
10225 * what happens in do_set(). */
10226 buf = vim_strsave_escaped(var, escape_chars);
10228 if (buf == NULL)
10230 vim_free(*file);
10231 *file = NULL;
10232 return FAIL;
10235 #ifdef BACKSLASH_IN_FILENAME
10236 /* For MS-Windows et al. we don't double backslashes at the start and
10237 * before a file name character. */
10238 for (var = buf; *var != NUL; mb_ptr_adv(var))
10239 if (var[0] == '\\' && var[1] == '\\'
10240 && expand_option_idx >= 0
10241 && (options[expand_option_idx].flags & P_EXPAND)
10242 && vim_isfilec(var[2])
10243 && (var[2] != '\\' || (var == buf && var[4] != '\\')))
10244 STRMOVE(var, var + 1);
10245 #endif
10247 *file[0] = buf;
10248 *num_file = 1;
10249 return OK;
10251 #endif
10254 * Get the value for the numeric or string option *opp in a nice format into
10255 * NameBuff[]. Must not be called with a hidden option!
10257 static void
10258 option_value2string(opp, opt_flags)
10259 struct vimoption *opp;
10260 int opt_flags; /* OPT_GLOBAL and/or OPT_LOCAL */
10262 char_u *varp;
10264 varp = get_varp_scope(opp, opt_flags);
10266 if (opp->flags & P_NUM)
10268 long wc = 0;
10270 if (wc_use_keyname(varp, &wc))
10271 STRCPY(NameBuff, get_special_key_name((int)wc, 0));
10272 else if (wc != 0)
10273 STRCPY(NameBuff, transchar((int)wc));
10274 else
10275 sprintf((char *)NameBuff, "%ld", *(long *)varp);
10277 else /* P_STRING */
10279 varp = *(char_u **)(varp);
10280 if (varp == NULL) /* just in case */
10281 NameBuff[0] = NUL;
10282 #ifdef FEAT_CRYPT
10283 /* don't show the actual value of 'key', only that it's set */
10284 else if (opp->var == (char_u *)&p_key && *varp)
10285 STRCPY(NameBuff, "*****");
10286 #endif
10287 else if (opp->flags & P_EXPAND)
10288 home_replace(NULL, varp, NameBuff, MAXPATHL, FALSE);
10289 /* Translate 'pastetoggle' into special key names */
10290 else if ((char_u **)opp->var == &p_pt)
10291 str2specialbuf(p_pt, NameBuff, MAXPATHL);
10292 else
10293 vim_strncpy(NameBuff, varp, MAXPATHL - 1);
10298 * Return TRUE if "varp" points to 'wildchar' or 'wildcharm' and it can be
10299 * printed as a keyname.
10300 * "*wcp" is set to the value of the option if it's 'wildchar' or 'wildcharm'.
10302 static int
10303 wc_use_keyname(varp, wcp)
10304 char_u *varp;
10305 long *wcp;
10307 if (((long *)varp == &p_wc) || ((long *)varp == &p_wcm))
10309 *wcp = *(long *)varp;
10310 if (IS_SPECIAL(*wcp) || find_special_key_in_table((int)*wcp) >= 0)
10311 return TRUE;
10313 return FALSE;
10316 #ifdef FEAT_LANGMAP
10318 * Any character has an equivalent 'langmap' character. This is used for
10319 * keyboards that have a special language mode that sends characters above
10320 * 128 (although other characters can be translated too). The "to" field is a
10321 * Vim command character. This avoids having to switch the keyboard back to
10322 * ASCII mode when leaving Insert mode.
10324 * langmap_mapchar[] maps any of 256 chars to an ASCII char used for Vim
10325 * commands.
10326 * When FEAT_MBYTE is defined langmap_mapga.ga_data is a sorted table of
10327 * langmap_entry_T. This does the same as langmap_mapchar[] for characters >=
10328 * 256.
10330 # ifdef FEAT_MBYTE
10332 * With multi-byte support use growarray for 'langmap' chars >= 256
10334 typedef struct
10336 int from;
10337 int to;
10338 } langmap_entry_T;
10340 static garray_T langmap_mapga;
10341 static void langmap_set_entry __ARGS((int from, int to));
10344 * Search for an entry in "langmap_mapga" for "from". If found set the "to"
10345 * field. If not found insert a new entry at the appropriate location.
10347 static void
10348 langmap_set_entry(from, to)
10349 int from;
10350 int to;
10352 langmap_entry_T *entries = (langmap_entry_T *)(langmap_mapga.ga_data);
10353 int a = 0;
10354 int b = langmap_mapga.ga_len;
10356 /* Do a binary search for an existing entry. */
10357 while (a != b)
10359 int i = (a + b) / 2;
10360 int d = entries[i].from - from;
10362 if (d == 0)
10364 entries[i].to = to;
10365 return;
10367 if (d < 0)
10368 a = i + 1;
10369 else
10370 b = i;
10373 if (ga_grow(&langmap_mapga, 1) != OK)
10374 return; /* out of memory */
10376 /* insert new entry at position "a" */
10377 entries = (langmap_entry_T *)(langmap_mapga.ga_data) + a;
10378 mch_memmove(entries + 1, entries,
10379 (langmap_mapga.ga_len - a) * sizeof(langmap_entry_T));
10380 ++langmap_mapga.ga_len;
10381 entries[0].from = from;
10382 entries[0].to = to;
10386 * Apply 'langmap' to multi-byte character "c" and return the result.
10389 langmap_adjust_mb(c)
10390 int c;
10392 langmap_entry_T *entries = (langmap_entry_T *)(langmap_mapga.ga_data);
10393 int a = 0;
10394 int b = langmap_mapga.ga_len;
10396 while (a != b)
10398 int i = (a + b) / 2;
10399 int d = entries[i].from - c;
10401 if (d == 0)
10402 return entries[i].to; /* found matching entry */
10403 if (d < 0)
10404 a = i + 1;
10405 else
10406 b = i;
10408 return c; /* no entry found, return "c" unmodified */
10410 # endif
10412 static void
10413 langmap_init()
10415 int i;
10417 for (i = 0; i < 256; i++)
10418 langmap_mapchar[i] = i; /* we init with a one-to-one map */
10419 # ifdef FEAT_MBYTE
10420 ga_init2(&langmap_mapga, sizeof(langmap_entry_T), 8);
10421 # endif
10425 * Called when langmap option is set; the language map can be
10426 * changed at any time!
10428 static void
10429 langmap_set()
10431 char_u *p;
10432 char_u *p2;
10433 int from, to;
10435 #ifdef FEAT_MBYTE
10436 ga_clear(&langmap_mapga); /* clear the previous map first */
10437 #endif
10438 langmap_init(); /* back to one-to-one map */
10440 for (p = p_langmap; p[0] != NUL; )
10442 for (p2 = p; p2[0] != NUL && p2[0] != ',' && p2[0] != ';';
10443 mb_ptr_adv(p2))
10445 if (p2[0] == '\\' && p2[1] != NUL)
10446 ++p2;
10448 if (p2[0] == ';')
10449 ++p2; /* abcd;ABCD form, p2 points to A */
10450 else
10451 p2 = NULL; /* aAbBcCdD form, p2 is NULL */
10452 while (p[0])
10454 if (p[0] == '\\' && p[1] != NUL)
10455 ++p;
10456 #ifdef FEAT_MBYTE
10457 from = (*mb_ptr2char)(p);
10458 #else
10459 from = p[0];
10460 #endif
10461 if (p2 == NULL)
10463 mb_ptr_adv(p);
10464 if (p[0] == '\\')
10465 ++p;
10466 #ifdef FEAT_MBYTE
10467 to = (*mb_ptr2char)(p);
10468 #else
10469 to = p[0];
10470 #endif
10472 else
10474 if (p2[0] == '\\')
10475 ++p2;
10476 #ifdef FEAT_MBYTE
10477 to = (*mb_ptr2char)(p2);
10478 #else
10479 to = p2[0];
10480 #endif
10482 if (to == NUL)
10484 EMSG2(_("E357: 'langmap': Matching character missing for %s"),
10485 transchar(from));
10486 return;
10489 #ifdef FEAT_MBYTE
10490 if (from >= 256)
10491 langmap_set_entry(from, to);
10492 else
10493 #endif
10494 langmap_mapchar[from & 255] = to;
10496 /* Advance to next pair */
10497 mb_ptr_adv(p);
10498 if (p2 == NULL)
10500 if (p[0] == ',')
10502 ++p;
10503 break;
10506 else
10508 mb_ptr_adv(p2);
10509 if (*p == ';')
10511 p = p2;
10512 if (p[0] != NUL)
10514 if (p[0] != ',')
10516 EMSG2(_("E358: 'langmap': Extra characters after semicolon: %s"), p);
10517 return;
10519 ++p;
10521 break;
10527 #endif
10530 * Return TRUE if format option 'x' is in effect.
10531 * Take care of no formatting when 'paste' is set.
10534 has_format_option(x)
10535 int x;
10537 if (p_paste)
10538 return FALSE;
10539 return (vim_strchr(curbuf->b_p_fo, x) != NULL);
10543 * Return TRUE if "x" is present in 'shortmess' option, or
10544 * 'shortmess' contains 'a' and "x" is present in SHM_A.
10547 shortmess(x)
10548 int x;
10550 return ( vim_strchr(p_shm, x) != NULL
10551 || (vim_strchr(p_shm, 'a') != NULL
10552 && vim_strchr((char_u *)SHM_A, x) != NULL));
10556 * paste_option_changed() - Called after p_paste was set or reset.
10558 static void
10559 paste_option_changed()
10561 static int old_p_paste = FALSE;
10562 static int save_sm = 0;
10563 #ifdef FEAT_CMDL_INFO
10564 static int save_ru = 0;
10565 #endif
10566 #ifdef FEAT_RIGHTLEFT
10567 static int save_ri = 0;
10568 static int save_hkmap = 0;
10569 #endif
10570 buf_T *buf;
10572 if (p_paste)
10575 * Paste switched from off to on.
10576 * Save the current values, so they can be restored later.
10578 if (!old_p_paste)
10580 /* save options for each buffer */
10581 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10583 buf->b_p_tw_nopaste = buf->b_p_tw;
10584 buf->b_p_wm_nopaste = buf->b_p_wm;
10585 buf->b_p_sts_nopaste = buf->b_p_sts;
10586 buf->b_p_ai_nopaste = buf->b_p_ai;
10589 /* save global options */
10590 save_sm = p_sm;
10591 #ifdef FEAT_CMDL_INFO
10592 save_ru = p_ru;
10593 #endif
10594 #ifdef FEAT_RIGHTLEFT
10595 save_ri = p_ri;
10596 save_hkmap = p_hkmap;
10597 #endif
10598 /* save global values for local buffer options */
10599 p_tw_nopaste = p_tw;
10600 p_wm_nopaste = p_wm;
10601 p_sts_nopaste = p_sts;
10602 p_ai_nopaste = p_ai;
10606 * Always set the option values, also when 'paste' is set when it is
10607 * already on.
10609 /* set options for each buffer */
10610 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10612 buf->b_p_tw = 0; /* textwidth is 0 */
10613 buf->b_p_wm = 0; /* wrapmargin is 0 */
10614 buf->b_p_sts = 0; /* softtabstop is 0 */
10615 buf->b_p_ai = 0; /* no auto-indent */
10618 /* set global options */
10619 p_sm = 0; /* no showmatch */
10620 #ifdef FEAT_CMDL_INFO
10621 # ifdef FEAT_WINDOWS
10622 if (p_ru)
10623 status_redraw_all(); /* redraw to remove the ruler */
10624 # endif
10625 p_ru = 0; /* no ruler */
10626 #endif
10627 #ifdef FEAT_RIGHTLEFT
10628 p_ri = 0; /* no reverse insert */
10629 p_hkmap = 0; /* no Hebrew keyboard */
10630 #endif
10631 /* set global values for local buffer options */
10632 p_tw = 0;
10633 p_wm = 0;
10634 p_sts = 0;
10635 p_ai = 0;
10639 * Paste switched from on to off: Restore saved values.
10641 else if (old_p_paste)
10643 /* restore options for each buffer */
10644 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10646 buf->b_p_tw = buf->b_p_tw_nopaste;
10647 buf->b_p_wm = buf->b_p_wm_nopaste;
10648 buf->b_p_sts = buf->b_p_sts_nopaste;
10649 buf->b_p_ai = buf->b_p_ai_nopaste;
10652 /* restore global options */
10653 p_sm = save_sm;
10654 #ifdef FEAT_CMDL_INFO
10655 # ifdef FEAT_WINDOWS
10656 if (p_ru != save_ru)
10657 status_redraw_all(); /* redraw to draw the ruler */
10658 # endif
10659 p_ru = save_ru;
10660 #endif
10661 #ifdef FEAT_RIGHTLEFT
10662 p_ri = save_ri;
10663 p_hkmap = save_hkmap;
10664 #endif
10665 /* set global values for local buffer options */
10666 p_tw = p_tw_nopaste;
10667 p_wm = p_wm_nopaste;
10668 p_sts = p_sts_nopaste;
10669 p_ai = p_ai_nopaste;
10672 old_p_paste = p_paste;
10676 * vimrc_found() - Called when a ".vimrc" or "VIMINIT" has been found.
10678 * Reset 'compatible' and set the values for options that didn't get set yet
10679 * to the Vim defaults.
10680 * Don't do this if the 'compatible' option has been set or reset before.
10681 * When "fname" is not NULL, use it to set $"envname" when it wasn't set yet.
10683 void
10684 vimrc_found(fname, envname)
10685 char_u *fname;
10686 char_u *envname;
10688 int opt_idx;
10689 int dofree = FALSE;
10690 char_u *p;
10692 if (!option_was_set((char_u *)"cp"))
10694 p_cp = FALSE;
10695 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
10696 if (!(options[opt_idx].flags & (P_WAS_SET|P_VI_DEF)))
10697 set_option_default(opt_idx, OPT_FREE, FALSE);
10698 didset_options();
10701 if (fname != NULL)
10703 p = vim_getenv(envname, &dofree);
10704 if (p == NULL)
10706 /* Set $MYVIMRC to the first vimrc file found. */
10707 p = FullName_save(fname, FALSE);
10708 if (p != NULL)
10710 vim_setenv(envname, p);
10711 vim_free(p);
10714 else if (dofree)
10715 vim_free(p);
10720 * Set 'compatible' on or off. Called for "-C" and "-N" command line arg.
10722 void
10723 change_compatible(on)
10724 int on;
10726 int opt_idx;
10728 if (p_cp != on)
10730 p_cp = on;
10731 compatible_set();
10733 opt_idx = findoption((char_u *)"cp");
10734 if (opt_idx >= 0)
10735 options[opt_idx].flags |= P_WAS_SET;
10739 * Return TRUE when option "name" has been set.
10742 option_was_set(name)
10743 char_u *name;
10745 int idx;
10747 idx = findoption(name);
10748 if (idx < 0) /* unknown option */
10749 return FALSE;
10750 if (options[idx].flags & P_WAS_SET)
10751 return TRUE;
10752 return FALSE;
10756 * compatible_set() - Called when 'compatible' has been set or unset.
10758 * When 'compatible' set: Set all relevant options (those that have the P_VIM)
10759 * flag) to a Vi compatible value.
10760 * When 'compatible' is unset: Set all options that have a different default
10761 * for Vim (without the P_VI_DEF flag) to that default.
10763 static void
10764 compatible_set()
10766 int opt_idx;
10768 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
10769 if ( ((options[opt_idx].flags & P_VIM) && p_cp)
10770 || (!(options[opt_idx].flags & P_VI_DEF) && !p_cp))
10771 set_option_default(opt_idx, OPT_FREE, p_cp);
10772 didset_options();
10775 #ifdef FEAT_LINEBREAK
10777 # if defined(__BORLANDC__) && (__BORLANDC__ < 0x500)
10778 /* Borland C++ screws up loop optimisation here (negri) */
10779 #pragma option -O-l
10780 # endif
10783 * fill_breakat_flags() -- called when 'breakat' changes value.
10785 static void
10786 fill_breakat_flags()
10788 char_u *p;
10789 int i;
10791 for (i = 0; i < 256; i++)
10792 breakat_flags[i] = FALSE;
10794 if (p_breakat != NULL)
10795 for (p = p_breakat; *p; p++)
10796 breakat_flags[*p] = TRUE;
10799 # if defined(__BORLANDC__) && (__BORLANDC__ < 0x500)
10800 #pragma option -O.l
10801 # endif
10803 #endif
10806 * Check an option that can be a range of string values.
10808 * Return OK for correct value, FAIL otherwise.
10809 * Empty is always OK.
10811 static int
10812 check_opt_strings(val, values, list)
10813 char_u *val;
10814 char **values;
10815 int list; /* when TRUE: accept a list of values */
10817 return opt_strings_flags(val, values, NULL, list);
10821 * Handle an option that can be a range of string values.
10822 * Set a flag in "*flagp" for each string present.
10824 * Return OK for correct value, FAIL otherwise.
10825 * Empty is always OK.
10827 static int
10828 opt_strings_flags(val, values, flagp, list)
10829 char_u *val; /* new value */
10830 char **values; /* array of valid string values */
10831 unsigned *flagp;
10832 int list; /* when TRUE: accept a list of values */
10834 int i;
10835 int len;
10836 unsigned new_flags = 0;
10838 while (*val)
10840 for (i = 0; ; ++i)
10842 if (values[i] == NULL) /* val not found in values[] */
10843 return FAIL;
10845 len = (int)STRLEN(values[i]);
10846 if (STRNCMP(values[i], val, len) == 0
10847 && ((list && val[len] == ',') || val[len] == NUL))
10849 val += len + (val[len] == ',');
10850 new_flags |= (1 << i);
10851 break; /* check next item in val list */
10855 if (flagp != NULL)
10856 *flagp = new_flags;
10858 return OK;
10862 * Read the 'wildmode' option, fill wim_flags[].
10864 static int
10865 check_opt_wim()
10867 char_u new_wim_flags[4];
10868 char_u *p;
10869 int i;
10870 int idx = 0;
10872 for (i = 0; i < 4; ++i)
10873 new_wim_flags[i] = 0;
10875 for (p = p_wim; *p; ++p)
10877 for (i = 0; ASCII_ISALPHA(p[i]); ++i)
10879 if (p[i] != NUL && p[i] != ',' && p[i] != ':')
10880 return FAIL;
10881 if (i == 7 && STRNCMP(p, "longest", 7) == 0)
10882 new_wim_flags[idx] |= WIM_LONGEST;
10883 else if (i == 4 && STRNCMP(p, "full", 4) == 0)
10884 new_wim_flags[idx] |= WIM_FULL;
10885 else if (i == 4 && STRNCMP(p, "list", 4) == 0)
10886 new_wim_flags[idx] |= WIM_LIST;
10887 else
10888 return FAIL;
10889 p += i;
10890 if (*p == NUL)
10891 break;
10892 if (*p == ',')
10894 if (idx == 3)
10895 return FAIL;
10896 ++idx;
10900 /* fill remaining entries with last flag */
10901 while (idx < 3)
10903 new_wim_flags[idx + 1] = new_wim_flags[idx];
10904 ++idx;
10907 /* only when there are no errors, wim_flags[] is changed */
10908 for (i = 0; i < 4; ++i)
10909 wim_flags[i] = new_wim_flags[i];
10910 return OK;
10914 * Check if backspacing over something is allowed.
10917 can_bs(what)
10918 int what; /* BS_INDENT, BS_EOL or BS_START */
10920 switch (*p_bs)
10922 case '2': return TRUE;
10923 case '1': return (what != BS_START);
10924 case '0': return FALSE;
10926 return vim_strchr(p_bs, what) != NULL;
10930 * Save the current values of 'fileformat' and 'fileencoding', so that we know
10931 * the file must be considered changed when the value is different.
10933 void
10934 save_file_ff(buf)
10935 buf_T *buf;
10937 buf->b_start_ffc = *buf->b_p_ff;
10938 buf->b_start_eol = buf->b_p_eol;
10939 #ifdef FEAT_MBYTE
10940 buf->b_start_bomb = buf->b_p_bomb;
10942 /* Only use free/alloc when necessary, they take time. */
10943 if (buf->b_start_fenc == NULL
10944 || STRCMP(buf->b_start_fenc, buf->b_p_fenc) != 0)
10946 vim_free(buf->b_start_fenc);
10947 buf->b_start_fenc = vim_strsave(buf->b_p_fenc);
10949 #endif
10953 * Return TRUE if 'fileformat' and/or 'fileencoding' has a different value
10954 * from when editing started (save_file_ff() called).
10955 * Also when 'endofline' was changed and 'binary' is set, or when 'bomb' was
10956 * changed and 'binary' is not set.
10957 * Don't consider a new, empty buffer to be changed.
10960 file_ff_differs(buf)
10961 buf_T *buf;
10963 /* In a buffer that was never loaded the options are not valid. */
10964 if (buf->b_flags & BF_NEVERLOADED)
10965 return FALSE;
10966 if ((buf->b_flags & BF_NEW)
10967 && buf->b_ml.ml_line_count == 1
10968 && *ml_get_buf(buf, (linenr_T)1, FALSE) == NUL)
10969 return FALSE;
10970 if (buf->b_start_ffc != *buf->b_p_ff)
10971 return TRUE;
10972 if (buf->b_p_bin && buf->b_start_eol != buf->b_p_eol)
10973 return TRUE;
10974 #ifdef FEAT_MBYTE
10975 if (!buf->b_p_bin && buf->b_start_bomb != buf->b_p_bomb)
10976 return TRUE;
10977 if (buf->b_start_fenc == NULL)
10978 return (*buf->b_p_fenc != NUL);
10979 return (STRCMP(buf->b_start_fenc, buf->b_p_fenc) != 0);
10980 #else
10981 return FALSE;
10982 #endif
10986 * return OK if "p" is a valid fileformat name, FAIL otherwise.
10989 check_ff_value(p)
10990 char_u *p;
10992 return check_opt_strings(p, p_ff_values, FALSE);