vimdoc_ja-snapshot 2009-05-18
[MacVim/KaoriYa.git] / src / option.c
blob3373a91acbd23321d546f26f20eb05b385ec9248
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 #ifdef USE_MIGEMO
139 # define PV_MIG OPT_BUF(BV_MIG)
140 #endif
141 #define PV_ML OPT_BUF(BV_ML)
142 #define PV_MOD OPT_BUF(BV_MOD)
143 #define PV_MPS OPT_BUF(BV_MPS)
144 #ifdef FEAT_GUI_MACVIM
145 #define PV_MMTA OPT_BUF(BV_MMTA)
146 #endif
147 #define PV_NF OPT_BUF(BV_NF)
148 #ifdef FEAT_OSFILETYPE
149 # define PV_OFT OPT_BUF(BV_OFT)
150 #endif
151 #ifdef FEAT_COMPL_FUNC
152 # define PV_OFU OPT_BUF(BV_OFU)
153 #endif
154 #define PV_PATH OPT_BOTH(OPT_BUF(BV_PATH))
155 #define PV_PI OPT_BUF(BV_PI)
156 #ifdef FEAT_TEXTOBJ
157 # define PV_QE OPT_BUF(BV_QE)
158 #endif
159 #define PV_RO OPT_BUF(BV_RO)
160 #ifdef FEAT_SMARTINDENT
161 # define PV_SI OPT_BUF(BV_SI)
162 #endif
163 #ifndef SHORT_FNAME
164 # define PV_SN OPT_BUF(BV_SN)
165 #endif
166 #ifdef FEAT_SYN_HL
167 # define PV_SMC OPT_BUF(BV_SMC)
168 # define PV_SYN OPT_BUF(BV_SYN)
169 #endif
170 #ifdef FEAT_SPELL
171 # define PV_SPC OPT_BUF(BV_SPC)
172 # define PV_SPF OPT_BUF(BV_SPF)
173 # define PV_SPL OPT_BUF(BV_SPL)
174 #endif
175 #define PV_STS OPT_BUF(BV_STS)
176 #ifdef FEAT_SEARCHPATH
177 # define PV_SUA OPT_BUF(BV_SUA)
178 #endif
179 #define PV_SW OPT_BUF(BV_SW)
180 #define PV_SWF OPT_BUF(BV_SWF)
181 #define PV_TAGS OPT_BOTH(OPT_BUF(BV_TAGS))
182 #define PV_TS OPT_BUF(BV_TS)
183 #define PV_TW OPT_BUF(BV_TW)
184 #define PV_TX OPT_BUF(BV_TX)
185 #define PV_WM OPT_BUF(BV_WM)
188 * Definition of the PV_ values for window-local options.
189 * The WV_ values are defined in option.h.
191 #define PV_LIST OPT_WIN(WV_LIST)
192 #ifdef FEAT_ARABIC
193 # define PV_ARAB OPT_WIN(WV_ARAB)
194 #endif
195 #ifdef FEAT_DIFF
196 # define PV_DIFF OPT_WIN(WV_DIFF)
197 #endif
198 #ifdef FEAT_FOLDING
199 # define PV_FDC OPT_WIN(WV_FDC)
200 # define PV_FEN OPT_WIN(WV_FEN)
201 # define PV_FDI OPT_WIN(WV_FDI)
202 # define PV_FDL OPT_WIN(WV_FDL)
203 # define PV_FDM OPT_WIN(WV_FDM)
204 # define PV_FML OPT_WIN(WV_FML)
205 # define PV_FDN OPT_WIN(WV_FDN)
206 # ifdef FEAT_EVAL
207 # define PV_FDE OPT_WIN(WV_FDE)
208 # define PV_FDT OPT_WIN(WV_FDT)
209 # endif
210 # define PV_FMR OPT_WIN(WV_FMR)
211 #endif
212 #ifdef FEAT_LINEBREAK
213 # define PV_LBR OPT_WIN(WV_LBR)
214 #endif
215 #define PV_NU OPT_WIN(WV_NU)
216 #ifdef FEAT_LINEBREAK
217 # define PV_NUW OPT_WIN(WV_NUW)
218 #endif
219 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
220 # define PV_PVW OPT_WIN(WV_PVW)
221 #endif
222 #ifdef FEAT_RIGHTLEFT
223 # define PV_RL OPT_WIN(WV_RL)
224 # define PV_RLC OPT_WIN(WV_RLC)
225 #endif
226 #ifdef FEAT_SCROLLBIND
227 # define PV_SCBIND OPT_WIN(WV_SCBIND)
228 #endif
229 #define PV_SCROLL OPT_WIN(WV_SCROLL)
230 #ifdef FEAT_SPELL
231 # define PV_SPELL OPT_WIN(WV_SPELL)
232 #endif
233 #ifdef FEAT_SYN_HL
234 # define PV_CUC OPT_WIN(WV_CUC)
235 # define PV_CUL OPT_WIN(WV_CUL)
236 #endif
237 #ifdef FEAT_STL_OPT
238 # define PV_STL OPT_BOTH(OPT_WIN(WV_STL))
239 #endif
240 #ifdef FEAT_WINDOWS
241 # define PV_WFH OPT_WIN(WV_WFH)
242 #endif
243 #ifdef FEAT_VERTSPLIT
244 # define PV_WFW OPT_WIN(WV_WFW)
245 #endif
246 #define PV_WRAP OPT_WIN(WV_WRAP)
249 /* WV_ and BV_ values get typecasted to this for the "indir" field */
250 typedef enum
252 PV_NONE = 0,
253 PV_MAXVAL = 0xffff /* to avoid warnings for value out of range */
254 } idopt_T;
257 * Options local to a window have a value local to a buffer and global to all
258 * buffers. Indicate this by setting "var" to VAR_WIN.
260 #define VAR_WIN ((char_u *)-1)
263 * These are the global values for options which are also local to a buffer.
264 * Only to be used in option.c!
266 static int p_ai;
267 static int p_bin;
268 #ifdef FEAT_MBYTE
269 static int p_bomb;
270 #endif
271 #if defined(FEAT_QUICKFIX)
272 static char_u *p_bh;
273 static char_u *p_bt;
274 #endif
275 static int p_bl;
276 static int p_ci;
277 #ifdef FEAT_CINDENT
278 static int p_cin;
279 static char_u *p_cink;
280 static char_u *p_cino;
281 #endif
282 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
283 static char_u *p_cinw;
284 #endif
285 #ifdef FEAT_COMMENTS
286 static char_u *p_com;
287 #endif
288 #ifdef FEAT_FOLDING
289 static char_u *p_cms;
290 #endif
291 #ifdef FEAT_INS_EXPAND
292 static char_u *p_cpt;
293 #endif
294 #ifdef FEAT_COMPL_FUNC
295 static char_u *p_cfu;
296 static char_u *p_ofu;
297 #endif
298 static int p_eol;
299 static int p_et;
300 #ifdef FEAT_MBYTE
301 static char_u *p_fenc;
302 #endif
303 static char_u *p_ff;
304 static char_u *p_fo;
305 static char_u *p_flp;
306 #ifdef FEAT_AUTOCMD
307 static char_u *p_ft;
308 #endif
309 static long p_iminsert;
310 static long p_imsearch;
311 #if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
312 static char_u *p_inex;
313 #endif
314 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
315 static char_u *p_inde;
316 static char_u *p_indk;
317 #endif
318 #if defined(FEAT_EVAL)
319 static char_u *p_fex;
320 #endif
321 static int p_inf;
322 static char_u *p_isk;
323 #ifdef FEAT_CRYPT
324 static char_u *p_key;
325 #endif
326 #ifdef FEAT_LISP
327 static int p_lisp;
328 #endif
329 static int p_ml;
330 static int p_ma;
331 #ifdef FEAT_GUI_MACVIM
332 static int p_mmta;
333 #endif
334 static int p_mod;
335 static char_u *p_mps;
336 static char_u *p_nf;
337 #ifdef FEAT_OSFILETYPE
338 static char_u *p_oft;
339 #endif
340 static int p_pi;
341 #ifdef FEAT_TEXTOBJ
342 static char_u *p_qe;
343 #endif
344 static int p_ro;
345 #ifdef FEAT_SMARTINDENT
346 static int p_si;
347 #endif
348 #ifndef SHORT_FNAME
349 static int p_sn;
350 #endif
351 static long p_sts;
352 #if defined(FEAT_SEARCHPATH)
353 static char_u *p_sua;
354 #endif
355 static long p_sw;
356 static int p_swf;
357 #ifdef FEAT_SYN_HL
358 static long p_smc;
359 static char_u *p_syn;
360 #endif
361 #ifdef FEAT_SPELL
362 static char_u *p_spc;
363 static char_u *p_spf;
364 static char_u *p_spl;
365 #endif
366 static long p_ts;
367 static long p_tw;
368 static int p_tx;
369 static long p_wm;
370 #ifdef FEAT_KEYMAP
371 static char_u *p_keymap;
372 #endif
374 /* Saved values for when 'bin' is set. */
375 static int p_et_nobin;
376 static int p_ml_nobin;
377 static long p_tw_nobin;
378 static long p_wm_nobin;
380 /* Saved values for when 'paste' is set */
381 static long p_tw_nopaste;
382 static long p_wm_nopaste;
383 static long p_sts_nopaste;
384 static int p_ai_nopaste;
386 struct vimoption
388 char *fullname; /* full option name */
389 char *shortname; /* permissible abbreviation */
390 long_u flags; /* see below */
391 char_u *var; /* global option: pointer to variable;
392 * window-local option: VAR_WIN;
393 * buffer-local option: global value */
394 idopt_T indir; /* global option: PV_NONE;
395 * local option: indirect option index */
396 char_u *def_val[2]; /* default values for variable (vi and vim) */
397 #ifdef FEAT_EVAL
398 scid_T scriptID; /* script in which the option was last set */
399 # define SCRIPTID_INIT , 0
400 #else
401 # define SCRIPTID_INIT
402 #endif
405 #define VI_DEFAULT 0 /* def_val[VI_DEFAULT] is Vi default value */
406 #define VIM_DEFAULT 1 /* def_val[VIM_DEFAULT] is Vim default value */
409 * Flags
411 #define P_BOOL 0x01 /* the option is boolean */
412 #define P_NUM 0x02 /* the option is numeric */
413 #define P_STRING 0x04 /* the option is a string */
414 #define P_ALLOCED 0x08 /* the string option is in allocated memory,
415 must use vim_free() when assigning new
416 value. Not set if default is the same. */
417 #define P_EXPAND 0x10 /* environment expansion. NOTE: P_EXPAND can
418 never be used for local or hidden options! */
419 #define P_NODEFAULT 0x40 /* don't set to default value */
420 #define P_DEF_ALLOCED 0x80 /* default value is in allocated memory, must
421 use vim_free() when assigning new value */
422 #define P_WAS_SET 0x100 /* option has been set/reset */
423 #define P_NO_MKRC 0x200 /* don't include in :mkvimrc output */
424 #define P_VI_DEF 0x400 /* Use Vi default for Vim */
425 #define P_VIM 0x800 /* Vim option, reset when 'cp' set */
427 /* when option changed, what to display: */
428 #define P_RSTAT 0x1000 /* redraw status lines */
429 #define P_RWIN 0x2000 /* redraw current window */
430 #define P_RBUF 0x4000 /* redraw current buffer */
431 #define P_RALL 0x6000 /* redraw all windows */
432 #define P_RCLR 0x7000 /* clear and redraw all */
434 #define P_COMMA 0x8000 /* comma separated list */
435 #define P_NODUP 0x10000L/* don't allow duplicate strings */
436 #define P_FLAGLIST 0x20000L/* list of single-char flags */
438 #define P_SECURE 0x40000L/* cannot change in modeline or secure mode */
439 #define P_GETTEXT 0x80000L/* expand default value with _() */
440 #define P_NOGLOB 0x100000L/* do not use local value for global vimrc */
441 #define P_NFNAME 0x200000L/* only normal file name chars allowed */
442 #define P_INSECURE 0x400000L/* option was set from a modeline */
443 #define P_PRI_MKRC 0x800000L/* priority for :mkvimrc (setting option has
444 side effects) */
446 #define ISK_LATIN1 (char_u *)"@,48-57,_,192-255"
448 /* 'isprint' for latin1 is also used for MS-Windows cp1252, where 0x80 is used
449 * for the currency sign. */
450 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
451 # define ISP_LATIN1 (char_u *)"@,~-255"
452 #else
453 # define ISP_LATIN1 (char_u *)"@,161-255"
454 #endif
456 /* The 16 bit MS-DOS version is low on space, make the string as short as
457 * possible when compiling with few features. */
458 #if defined(FEAT_DIFF) || defined(FEAT_FOLDING) || defined(FEAT_SPELL) \
459 || defined(FEAT_VERTSPLIT) || defined(FEAT_CLIPBOARD) \
460 || defined(FEAT_INS_EXPAND) || defined(FEAT_SYN_HL)
461 # define HIGHLIGHT_INIT "8:SpecialKey,@:NonText,d:Directory,e:ErrorMsg,i:IncSearch,l:Search,m:MoreMsg,M:ModeMsg,n:LineNr,r:Question,s:StatusLine,S:StatusLineNC,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"
462 #else
463 # 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"
464 #endif
467 * options[] is initialized here.
468 * The order of the options MUST be alphabetic for ":set all" and findoption().
469 * All option names MUST start with a lowercase letter (for findoption()).
470 * Exception: "t_" options are at the end.
471 * The options with a NULL variable are 'hidden': a set command for them is
472 * ignored and they are not printed.
474 static struct vimoption
475 #ifdef FEAT_GUI_W16
476 _far
477 #endif
478 options[] =
480 {"aleph", "al", P_NUM|P_VI_DEF,
481 #ifdef FEAT_RIGHTLEFT
482 (char_u *)&p_aleph, PV_NONE,
483 #else
484 (char_u *)NULL, PV_NONE,
485 #endif
487 #if (defined(MSDOS) || defined(WIN3264) || defined(OS2)) && !defined(FEAT_GUI_W32)
488 (char_u *)128L,
489 #else
490 (char_u *)224L,
491 #endif
492 (char_u *)0L} SCRIPTID_INIT},
493 {"antialias", "anti", P_BOOL|P_VI_DEF|P_VIM|P_RCLR,
494 #ifdef FEAT_ANTIALIAS
495 (char_u *)&p_antialias, PV_NONE,
496 #else
497 (char_u *)NULL, PV_NONE,
498 #endif
500 #if FEAT_GUI_MACVIM
501 (char_u *)TRUE,
502 #else
503 (char_u *)FALSE,
504 #endif
505 (char_u *)0L} SCRIPTID_INIT},
506 {"arabic", "arab", P_BOOL|P_VI_DEF|P_VIM,
507 #ifdef FEAT_ARABIC
508 (char_u *)VAR_WIN, PV_ARAB,
509 #else
510 (char_u *)NULL, PV_NONE,
511 #endif
512 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
513 {"arabicshape", "arshape", P_BOOL|P_VI_DEF|P_VIM|P_RCLR,
514 #ifdef FEAT_ARABIC
515 (char_u *)&p_arshape, PV_NONE,
516 #else
517 (char_u *)NULL, PV_NONE,
518 #endif
519 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
520 {"allowrevins", "ari", P_BOOL|P_VI_DEF|P_VIM,
521 #ifdef FEAT_RIGHTLEFT
522 (char_u *)&p_ari, PV_NONE,
523 #else
524 (char_u *)NULL, PV_NONE,
525 #endif
526 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
527 {"altkeymap", "akm", P_BOOL|P_VI_DEF,
528 #ifdef FEAT_FKMAP
529 (char_u *)&p_altkeymap, PV_NONE,
530 #else
531 (char_u *)NULL, PV_NONE,
532 #endif
533 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
534 {"ambiwidth", "ambw", P_STRING|P_VI_DEF|P_RCLR,
535 #if defined(FEAT_MBYTE)
536 (char_u *)&p_ambw, PV_NONE,
537 {(char_u *)"single", (char_u *)0L}
538 #else
539 (char_u *)NULL, PV_NONE,
540 {(char_u *)0L, (char_u *)0L}
541 #endif
542 SCRIPTID_INIT},
543 #ifdef FEAT_AUTOCHDIR
544 {"autochdir", "acd", P_BOOL|P_VI_DEF,
545 (char_u *)&p_acd, PV_NONE,
546 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
547 #endif
548 {"autoindent", "ai", P_BOOL|P_VI_DEF,
549 (char_u *)&p_ai, PV_AI,
550 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
551 {"autoprint", "ap", P_BOOL|P_VI_DEF,
552 (char_u *)NULL, PV_NONE,
553 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
554 {"autoread", "ar", P_BOOL|P_VI_DEF,
555 (char_u *)&p_ar, PV_AR,
556 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
557 {"autowrite", "aw", P_BOOL|P_VI_DEF,
558 (char_u *)&p_aw, PV_NONE,
559 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
560 {"autowriteall","awa", P_BOOL|P_VI_DEF,
561 (char_u *)&p_awa, PV_NONE,
562 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
563 {"background", "bg", P_STRING|P_VI_DEF|P_RCLR,
564 (char_u *)&p_bg, PV_NONE,
566 #if (defined(MSDOS) || defined(OS2) || defined(WIN3264)) && !defined(FEAT_GUI)
567 (char_u *)"dark",
568 #else
569 (char_u *)"light",
570 #endif
571 (char_u *)0L} SCRIPTID_INIT},
572 {"backspace", "bs", P_STRING|P_VI_DEF|P_VIM|P_COMMA|P_NODUP,
573 (char_u *)&p_bs, PV_NONE,
574 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
575 {"backup", "bk", P_BOOL|P_VI_DEF|P_VIM,
576 (char_u *)&p_bk, PV_NONE,
577 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
578 {"backupcopy", "bkc", P_STRING|P_VIM|P_COMMA|P_NODUP,
579 (char_u *)&p_bkc, PV_NONE,
580 #ifdef UNIX
581 {(char_u *)"yes", (char_u *)"auto"}
582 #else
583 {(char_u *)"auto", (char_u *)"auto"}
584 #endif
585 SCRIPTID_INIT},
586 {"backupdir", "bdir", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP|P_SECURE,
587 (char_u *)&p_bdir, PV_NONE,
588 {(char_u *)DFLT_BDIR, (char_u *)0L} SCRIPTID_INIT},
589 {"backupext", "bex", P_STRING|P_VI_DEF|P_NFNAME,
590 (char_u *)&p_bex, PV_NONE,
592 #ifdef VMS
593 (char_u *)"_",
594 #else
595 (char_u *)"~",
596 #endif
597 (char_u *)0L} SCRIPTID_INIT},
598 {"backupskip", "bsk", P_STRING|P_VI_DEF|P_COMMA,
599 #ifdef FEAT_WILDIGN
600 (char_u *)&p_bsk, PV_NONE,
601 {(char_u *)"", (char_u *)0L}
602 #else
603 (char_u *)NULL, PV_NONE,
604 {(char_u *)0L, (char_u *)0L}
605 #endif
606 SCRIPTID_INIT},
607 #ifdef FEAT_BEVAL
608 {"balloondelay","bdlay",P_NUM|P_VI_DEF,
609 (char_u *)&p_bdlay, PV_NONE,
610 {(char_u *)600L, (char_u *)0L} SCRIPTID_INIT},
611 {"ballooneval", "beval",P_BOOL|P_VI_DEF|P_NO_MKRC,
612 (char_u *)&p_beval, PV_NONE,
613 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
614 # ifdef FEAT_EVAL
615 {"balloonexpr", "bexpr", P_STRING|P_ALLOCED|P_VI_DEF|P_VIM,
616 (char_u *)&p_bexpr, PV_BEXPR,
617 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
618 # endif
619 #endif
620 {"beautify", "bf", P_BOOL|P_VI_DEF,
621 (char_u *)NULL, PV_NONE,
622 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
623 {"binary", "bin", P_BOOL|P_VI_DEF|P_RSTAT,
624 (char_u *)&p_bin, PV_BIN,
625 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
626 {"bioskey", "biosk",P_BOOL|P_VI_DEF,
627 #ifdef MSDOS
628 (char_u *)&p_biosk, PV_NONE,
629 #else
630 (char_u *)NULL, PV_NONE,
631 #endif
632 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
633 {"bomb", NULL, P_BOOL|P_NO_MKRC|P_VI_DEF|P_RSTAT,
634 #ifdef FEAT_MBYTE
635 (char_u *)&p_bomb, PV_BOMB,
636 #else
637 (char_u *)NULL, PV_NONE,
638 #endif
639 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
640 {"breakat", "brk", P_STRING|P_VI_DEF|P_RALL|P_FLAGLIST,
641 #ifdef FEAT_LINEBREAK
642 (char_u *)&p_breakat, PV_NONE,
643 {(char_u *)" \t!@*-+;:,./?", (char_u *)0L}
644 #else
645 (char_u *)NULL, PV_NONE,
646 {(char_u *)0L, (char_u *)0L}
647 #endif
648 SCRIPTID_INIT},
649 {"browsedir", "bsdir",P_STRING|P_VI_DEF,
650 #ifdef FEAT_BROWSE
651 (char_u *)&p_bsdir, PV_NONE,
652 {(char_u *)"last", (char_u *)0L}
653 #else
654 (char_u *)NULL, PV_NONE,
655 {(char_u *)0L, (char_u *)0L}
656 #endif
657 SCRIPTID_INIT},
658 {"bufhidden", "bh", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB,
659 #if defined(FEAT_QUICKFIX)
660 (char_u *)&p_bh, PV_BH,
661 {(char_u *)"", (char_u *)0L}
662 #else
663 (char_u *)NULL, PV_NONE,
664 {(char_u *)0L, (char_u *)0L}
665 #endif
666 SCRIPTID_INIT},
667 {"buflisted", "bl", P_BOOL|P_VI_DEF|P_NOGLOB,
668 (char_u *)&p_bl, PV_BL,
669 {(char_u *)1L, (char_u *)0L}
670 SCRIPTID_INIT},
671 {"buftype", "bt", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB,
672 #if defined(FEAT_QUICKFIX)
673 (char_u *)&p_bt, PV_BT,
674 {(char_u *)"", (char_u *)0L}
675 #else
676 (char_u *)NULL, PV_NONE,
677 {(char_u *)0L, (char_u *)0L}
678 #endif
679 SCRIPTID_INIT},
680 {"casemap", "cmp", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
681 #ifdef FEAT_MBYTE
682 (char_u *)&p_cmp, PV_NONE,
683 {(char_u *)"internal,keepascii", (char_u *)0L}
684 #else
685 (char_u *)NULL, PV_NONE,
686 {(char_u *)0L, (char_u *)0L}
687 #endif
688 SCRIPTID_INIT},
689 {"cdpath", "cd", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
690 #ifdef FEAT_SEARCHPATH
691 (char_u *)&p_cdpath, PV_NONE,
692 {(char_u *)",,", (char_u *)0L}
693 #else
694 (char_u *)NULL, PV_NONE,
695 {(char_u *)0L, (char_u *)0L}
696 #endif
697 SCRIPTID_INIT},
698 {"cedit", NULL, P_STRING,
699 #ifdef FEAT_CMDWIN
700 (char_u *)&p_cedit, PV_NONE,
701 {(char_u *)"", (char_u *)CTRL_F_STR}
702 #else
703 (char_u *)NULL, PV_NONE,
704 {(char_u *)0L, (char_u *)0L}
705 #endif
706 SCRIPTID_INIT},
707 {"charconvert", "ccv", P_STRING|P_VI_DEF|P_SECURE,
708 #if defined(FEAT_MBYTE) && defined(FEAT_EVAL)
709 (char_u *)&p_ccv, PV_NONE,
710 {(char_u *)"", (char_u *)0L}
711 #else
712 (char_u *)NULL, PV_NONE,
713 {(char_u *)0L, (char_u *)0L}
714 #endif
715 SCRIPTID_INIT},
716 {"charspace", "csp", P_NUM|P_NODEFAULT|P_VIM|P_RCLR,
717 #ifdef FEAT_GUI
718 (char_u *)&p_charspace, PV_NONE,
719 #else
720 (char_u *)NULL, PV_NONE,
721 #endif
722 {(char_u *)0L, (char_u *)0L}
724 {"cindent", "cin", P_BOOL|P_VI_DEF|P_VIM,
725 #ifdef FEAT_CINDENT
726 (char_u *)&p_cin, PV_CIN,
727 #else
728 (char_u *)NULL, PV_NONE,
729 #endif
730 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
731 {"cinkeys", "cink", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
732 #ifdef FEAT_CINDENT
733 (char_u *)&p_cink, PV_CINK,
734 {(char_u *)"0{,0},0),:,0#,!^F,o,O,e", (char_u *)0L}
735 #else
736 (char_u *)NULL, PV_NONE,
737 {(char_u *)0L, (char_u *)0L}
738 #endif
739 SCRIPTID_INIT},
740 {"cinoptions", "cino", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
741 #ifdef FEAT_CINDENT
742 (char_u *)&p_cino, PV_CINO,
743 #else
744 (char_u *)NULL, PV_NONE,
745 #endif
746 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
747 {"cinwords", "cinw", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
748 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
749 (char_u *)&p_cinw, PV_CINW,
750 {(char_u *)"if,else,while,do,for,switch",
751 (char_u *)0L}
752 #else
753 (char_u *)NULL, PV_NONE,
754 {(char_u *)0L, (char_u *)0L}
755 #endif
756 SCRIPTID_INIT},
757 {"clipboard", "cb", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
758 #ifdef FEAT_CLIPBOARD
759 (char_u *)&p_cb, PV_NONE,
760 # ifdef FEAT_XCLIPBOARD
761 {(char_u *)"autoselect,exclude:cons\\|linux",
762 (char_u *)0L}
763 # else
764 {(char_u *)"", (char_u *)0L}
765 # endif
766 #else
767 (char_u *)NULL, PV_NONE,
768 {(char_u *)"", (char_u *)0L}
769 #endif
770 SCRIPTID_INIT},
771 {"cmdheight", "ch", P_NUM|P_VI_DEF|P_RALL,
772 (char_u *)&p_ch, PV_NONE,
773 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
774 {"cmdwinheight", "cwh", P_NUM|P_VI_DEF,
775 #ifdef FEAT_CMDWIN
776 (char_u *)&p_cwh, PV_NONE,
777 #else
778 (char_u *)NULL, PV_NONE,
779 #endif
780 {(char_u *)7L, (char_u *)0L} SCRIPTID_INIT},
781 {"columns", "co", P_NUM|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RCLR,
782 (char_u *)&Columns, PV_NONE,
783 {(char_u *)80L, (char_u *)0L} SCRIPTID_INIT},
784 {"comments", "com", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
785 #ifdef FEAT_COMMENTS
786 (char_u *)&p_com, PV_COM,
787 {(char_u *)"s1:/*,mb:*,ex:*/,://,b:#,:%,:XCOMM,n:>,fb:-",
788 (char_u *)0L}
789 #else
790 (char_u *)NULL, PV_NONE,
791 {(char_u *)0L, (char_u *)0L}
792 #endif
793 SCRIPTID_INIT},
794 {"commentstring", "cms", P_STRING|P_ALLOCED|P_VI_DEF,
795 #ifdef FEAT_FOLDING
796 (char_u *)&p_cms, PV_CMS,
797 {(char_u *)"/*%s*/", (char_u *)0L}
798 #else
799 (char_u *)NULL, PV_NONE,
800 {(char_u *)0L, (char_u *)0L}
801 #endif
802 SCRIPTID_INIT},
803 /* P_PRI_MKRC isn't needed here, optval_default()
804 * always returns TRUE for 'compatible' */
805 {"compatible", "cp", P_BOOL|P_RALL,
806 (char_u *)&p_cp, PV_NONE,
807 {(char_u *)TRUE, (char_u *)FALSE} SCRIPTID_INIT},
808 {"complete", "cpt", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
809 #ifdef FEAT_INS_EXPAND
810 (char_u *)&p_cpt, PV_CPT,
811 {(char_u *)".,w,b,u,t,i", (char_u *)0L}
812 #else
813 (char_u *)NULL, PV_NONE,
814 {(char_u *)0L, (char_u *)0L}
815 #endif
816 SCRIPTID_INIT},
817 {"completefunc", "cfu", P_STRING|P_ALLOCED|P_VI_DEF|P_SECURE,
818 #ifdef FEAT_COMPL_FUNC
819 (char_u *)&p_cfu, PV_CFU,
820 {(char_u *)"", (char_u *)0L}
821 #else
822 (char_u *)NULL, PV_NONE,
823 {(char_u *)0L, (char_u *)0L}
824 #endif
825 SCRIPTID_INIT},
826 {"completeopt", "cot", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
827 #ifdef FEAT_INS_EXPAND
828 (char_u *)&p_cot, PV_NONE,
829 {(char_u *)"menu,preview", (char_u *)0L}
830 #else
831 (char_u *)NULL, PV_NONE,
832 {(char_u *)0L, (char_u *)0L}
833 #endif
834 SCRIPTID_INIT},
835 {"confirm", "cf", P_BOOL|P_VI_DEF,
836 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
837 (char_u *)&p_confirm, PV_NONE,
838 #else
839 (char_u *)NULL, PV_NONE,
840 #endif
841 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
842 {"conskey", "consk",P_BOOL|P_VI_DEF,
843 #ifdef MSDOS
844 (char_u *)&p_consk, PV_NONE,
845 #else
846 (char_u *)NULL, PV_NONE,
847 #endif
848 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
849 {"copyindent", "ci", P_BOOL|P_VI_DEF|P_VIM,
850 (char_u *)&p_ci, PV_CI,
851 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
852 {"cpoptions", "cpo", P_STRING|P_VIM|P_RALL|P_FLAGLIST,
853 (char_u *)&p_cpo, PV_NONE,
854 {(char_u *)CPO_VI, (char_u *)CPO_VIM}
855 SCRIPTID_INIT},
856 {"cscopepathcomp", "cspc", P_NUM|P_VI_DEF|P_VIM,
857 #ifdef FEAT_CSCOPE
858 (char_u *)&p_cspc, PV_NONE,
859 #else
860 (char_u *)NULL, PV_NONE,
861 #endif
862 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
863 {"cscopeprg", "csprg", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
864 #ifdef FEAT_CSCOPE
865 (char_u *)&p_csprg, PV_NONE,
866 {(char_u *)"cscope", (char_u *)0L}
867 #else
868 (char_u *)NULL, PV_NONE,
869 {(char_u *)0L, (char_u *)0L}
870 #endif
871 SCRIPTID_INIT},
872 {"cscopequickfix", "csqf", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
873 #if defined(FEAT_CSCOPE) && defined(FEAT_QUICKFIX)
874 (char_u *)&p_csqf, PV_NONE,
875 {(char_u *)"", (char_u *)0L}
876 #else
877 (char_u *)NULL, PV_NONE,
878 {(char_u *)0L, (char_u *)0L}
879 #endif
880 SCRIPTID_INIT},
881 {"cscopetag", "cst", P_BOOL|P_VI_DEF|P_VIM,
882 #ifdef FEAT_CSCOPE
883 (char_u *)&p_cst, PV_NONE,
884 #else
885 (char_u *)NULL, PV_NONE,
886 #endif
887 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
888 {"cscopetagorder", "csto", P_NUM|P_VI_DEF|P_VIM,
889 #ifdef FEAT_CSCOPE
890 (char_u *)&p_csto, PV_NONE,
891 #else
892 (char_u *)NULL, PV_NONE,
893 #endif
894 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
895 {"cscopeverbose", "csverb", P_BOOL|P_VI_DEF|P_VIM,
896 #ifdef FEAT_CSCOPE
897 (char_u *)&p_csverbose, PV_NONE,
898 #else
899 (char_u *)NULL, PV_NONE,
900 #endif
901 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
902 {"cursorcolumn", "cuc", P_BOOL|P_VI_DEF|P_RWIN,
903 #ifdef FEAT_SYN_HL
904 (char_u *)VAR_WIN, PV_CUC,
905 #else
906 (char_u *)NULL, PV_NONE,
907 #endif
908 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
909 {"cursorline", "cul", P_BOOL|P_VI_DEF|P_RWIN,
910 #ifdef FEAT_SYN_HL
911 (char_u *)VAR_WIN, PV_CUL,
912 #else
913 (char_u *)NULL, PV_NONE,
914 #endif
915 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
916 {"debug", NULL, P_STRING|P_VI_DEF,
917 (char_u *)&p_debug, PV_NONE,
918 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
919 {"define", "def", P_STRING|P_ALLOCED|P_VI_DEF,
920 #ifdef FEAT_FIND_ID
921 (char_u *)&p_def, PV_DEF,
922 {(char_u *)"^\\s*#\\s*define", (char_u *)0L}
923 #else
924 (char_u *)NULL, PV_NONE,
925 {(char_u *)NULL, (char_u *)0L}
926 #endif
927 SCRIPTID_INIT},
928 {"delcombine", "deco", P_BOOL|P_VI_DEF|P_VIM,
929 #ifdef FEAT_MBYTE
930 (char_u *)&p_deco, PV_NONE,
931 #else
932 (char_u *)NULL, PV_NONE,
933 #endif
934 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
935 {"dictionary", "dict", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
936 #ifdef FEAT_INS_EXPAND
937 (char_u *)&p_dict, PV_DICT,
938 #else
939 (char_u *)NULL, PV_NONE,
940 #endif
941 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
942 {"diff", NULL, P_BOOL|P_VI_DEF|P_RWIN|P_NOGLOB,
943 #ifdef FEAT_DIFF
944 (char_u *)VAR_WIN, PV_DIFF,
945 #else
946 (char_u *)NULL, PV_NONE,
947 #endif
948 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
949 {"diffexpr", "dex", P_STRING|P_VI_DEF|P_SECURE,
950 #if defined(FEAT_DIFF) && defined(FEAT_EVAL)
951 (char_u *)&p_dex, PV_NONE,
952 {(char_u *)"", (char_u *)0L}
953 #else
954 (char_u *)NULL, PV_NONE,
955 {(char_u *)0L, (char_u *)0L}
956 #endif
957 SCRIPTID_INIT},
958 {"diffopt", "dip", P_STRING|P_ALLOCED|P_VI_DEF|P_RWIN|P_COMMA|P_NODUP,
959 #ifdef FEAT_DIFF
960 (char_u *)&p_dip, PV_NONE,
961 {(char_u *)"filler", (char_u *)NULL}
962 #else
963 (char_u *)NULL, PV_NONE,
964 {(char_u *)"", (char_u *)NULL}
965 #endif
966 SCRIPTID_INIT},
967 {"digraph", "dg", P_BOOL|P_VI_DEF|P_VIM,
968 #ifdef FEAT_DIGRAPHS
969 (char_u *)&p_dg, PV_NONE,
970 #else
971 (char_u *)NULL, PV_NONE,
972 #endif
973 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
974 {"directory", "dir", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP|P_SECURE,
975 (char_u *)&p_dir, PV_NONE,
976 {(char_u *)DFLT_DIR, (char_u *)0L} SCRIPTID_INIT},
977 {"display", "dy", P_STRING|P_VI_DEF|P_COMMA|P_RALL|P_NODUP,
978 (char_u *)&p_dy, PV_NONE,
979 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
980 {"eadirection", "ead", P_STRING|P_VI_DEF,
981 #ifdef FEAT_VERTSPLIT
982 (char_u *)&p_ead, PV_NONE,
983 {(char_u *)"both", (char_u *)0L}
984 #else
985 (char_u *)NULL, PV_NONE,
986 {(char_u *)NULL, (char_u *)0L}
987 #endif
988 SCRIPTID_INIT},
989 {"edcompatible","ed", P_BOOL|P_VI_DEF,
990 (char_u *)&p_ed, PV_NONE,
991 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
992 {"encoding", "enc", P_STRING|P_VI_DEF|P_RCLR,
993 #ifdef FEAT_MBYTE
994 (char_u *)&p_enc, PV_NONE,
995 {(char_u *)ENC_DFLT, (char_u *)0L}
996 #else
997 (char_u *)NULL, PV_NONE,
998 {(char_u *)0L, (char_u *)0L}
999 #endif
1000 SCRIPTID_INIT},
1001 {"endofline", "eol", P_BOOL|P_NO_MKRC|P_VI_DEF|P_RSTAT,
1002 (char_u *)&p_eol, PV_EOL,
1003 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1004 {"equalalways", "ea", P_BOOL|P_VI_DEF|P_RALL,
1005 (char_u *)&p_ea, PV_NONE,
1006 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1007 {"equalprg", "ep", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1008 (char_u *)&p_ep, PV_EP,
1009 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1010 {"errorbells", "eb", P_BOOL|P_VI_DEF,
1011 (char_u *)&p_eb, PV_NONE,
1012 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1013 {"errorfile", "ef", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1014 #ifdef FEAT_QUICKFIX
1015 (char_u *)&p_ef, PV_NONE,
1016 {(char_u *)DFLT_ERRORFILE, (char_u *)0L}
1017 #else
1018 (char_u *)NULL, PV_NONE,
1019 {(char_u *)NULL, (char_u *)0L}
1020 #endif
1021 SCRIPTID_INIT},
1022 {"errorformat", "efm", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1023 #ifdef FEAT_QUICKFIX
1024 (char_u *)&p_efm, PV_EFM,
1025 {(char_u *)DFLT_EFM, (char_u *)0L}
1026 #else
1027 (char_u *)NULL, PV_NONE,
1028 {(char_u *)NULL, (char_u *)0L}
1029 #endif
1030 SCRIPTID_INIT},
1031 {"esckeys", "ek", P_BOOL|P_VIM,
1032 (char_u *)&p_ek, PV_NONE,
1033 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
1034 {"eventignore", "ei", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1035 #ifdef FEAT_AUTOCMD
1036 (char_u *)&p_ei, PV_NONE,
1037 #else
1038 (char_u *)NULL, PV_NONE,
1039 #endif
1040 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1041 {"expandtab", "et", P_BOOL|P_VI_DEF|P_VIM,
1042 (char_u *)&p_et, PV_ET,
1043 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1044 {"exrc", "ex", P_BOOL|P_VI_DEF|P_SECURE,
1045 (char_u *)&p_exrc, PV_NONE,
1046 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1047 {"fileencoding","fenc", P_STRING|P_ALLOCED|P_VI_DEF|P_RSTAT|P_RBUF|P_NO_MKRC,
1048 #ifdef FEAT_MBYTE
1049 (char_u *)&p_fenc, PV_FENC,
1050 {(char_u *)"", (char_u *)0L}
1051 #else
1052 (char_u *)NULL, PV_NONE,
1053 {(char_u *)0L, (char_u *)0L}
1054 #endif
1055 SCRIPTID_INIT},
1056 {"fileencodings","fencs", P_STRING|P_VI_DEF|P_COMMA,
1057 #ifdef FEAT_MBYTE
1058 (char_u *)&p_fencs, PV_NONE,
1059 {(char_u *)"ucs-bom", (char_u *)0L}
1060 #else
1061 (char_u *)NULL, PV_NONE,
1062 {(char_u *)0L, (char_u *)0L}
1063 #endif
1064 SCRIPTID_INIT},
1065 {"fileformat", "ff", P_STRING|P_ALLOCED|P_VI_DEF|P_RSTAT|P_NO_MKRC,
1066 (char_u *)&p_ff, PV_FF,
1067 {(char_u *)DFLT_FF, (char_u *)0L} SCRIPTID_INIT},
1068 {"fileformats", "ffs", P_STRING|P_VIM|P_COMMA|P_NODUP,
1069 (char_u *)&p_ffs, PV_NONE,
1070 {(char_u *)DFLT_FFS_VI, (char_u *)DFLT_FFS_VIM}
1071 SCRIPTID_INIT},
1072 {"filetype", "ft", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB|P_NFNAME,
1073 #ifdef FEAT_AUTOCMD
1074 (char_u *)&p_ft, PV_FT,
1075 {(char_u *)"", (char_u *)0L}
1076 #else
1077 (char_u *)NULL, PV_NONE,
1078 {(char_u *)0L, (char_u *)0L}
1079 #endif
1080 SCRIPTID_INIT},
1081 {"fillchars", "fcs", P_STRING|P_VI_DEF|P_RALL|P_COMMA|P_NODUP,
1082 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
1083 (char_u *)&p_fcs, PV_NONE,
1084 {(char_u *)"vert:|,fold:-", (char_u *)0L}
1085 #else
1086 (char_u *)NULL, PV_NONE,
1087 {(char_u *)"", (char_u *)0L}
1088 #endif
1089 SCRIPTID_INIT},
1090 {"fkmap", "fk", P_BOOL|P_VI_DEF,
1091 #ifdef FEAT_FKMAP
1092 (char_u *)&p_fkmap, PV_NONE,
1093 #else
1094 (char_u *)NULL, PV_NONE,
1095 #endif
1096 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1097 {"flash", "fl", P_BOOL|P_VI_DEF,
1098 (char_u *)NULL, PV_NONE,
1099 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1100 #ifdef FEAT_FOLDING
1101 {"foldclose", "fcl", P_STRING|P_VI_DEF|P_COMMA|P_NODUP|P_RWIN,
1102 (char_u *)&p_fcl, PV_NONE,
1103 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1104 {"foldcolumn", "fdc", P_NUM|P_VI_DEF|P_RWIN,
1105 (char_u *)VAR_WIN, PV_FDC,
1106 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1107 {"foldenable", "fen", P_BOOL|P_VI_DEF|P_RWIN,
1108 (char_u *)VAR_WIN, PV_FEN,
1109 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1110 {"foldexpr", "fde", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1111 # ifdef FEAT_EVAL
1112 (char_u *)VAR_WIN, PV_FDE,
1113 {(char_u *)"0", (char_u *)NULL}
1114 # else
1115 (char_u *)NULL, PV_NONE,
1116 {(char_u *)NULL, (char_u *)0L}
1117 # endif
1118 SCRIPTID_INIT},
1119 {"foldignore", "fdi", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1120 (char_u *)VAR_WIN, PV_FDI,
1121 {(char_u *)"#", (char_u *)NULL} SCRIPTID_INIT},
1122 {"foldlevel", "fdl", P_NUM|P_VI_DEF|P_RWIN,
1123 (char_u *)VAR_WIN, PV_FDL,
1124 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
1125 {"foldlevelstart","fdls", P_NUM|P_VI_DEF,
1126 (char_u *)&p_fdls, PV_NONE,
1127 {(char_u *)-1L, (char_u *)0L} SCRIPTID_INIT},
1128 {"foldmarker", "fmr", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|
1129 P_RWIN|P_COMMA|P_NODUP,
1130 (char_u *)VAR_WIN, PV_FMR,
1131 {(char_u *)"{{{,}}}", (char_u *)NULL}
1132 SCRIPTID_INIT},
1133 {"foldmethod", "fdm", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1134 (char_u *)VAR_WIN, PV_FDM,
1135 {(char_u *)"manual", (char_u *)NULL} SCRIPTID_INIT},
1136 {"foldminlines","fml", P_NUM|P_VI_DEF|P_RWIN,
1137 (char_u *)VAR_WIN, PV_FML,
1138 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
1139 {"foldnestmax", "fdn", P_NUM|P_VI_DEF|P_RWIN,
1140 (char_u *)VAR_WIN, PV_FDN,
1141 {(char_u *)20L, (char_u *)0L} SCRIPTID_INIT},
1142 {"foldopen", "fdo", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1143 (char_u *)&p_fdo, PV_NONE,
1144 {(char_u *)"block,hor,mark,percent,quickfix,search,tag,undo",
1145 (char_u *)0L} SCRIPTID_INIT},
1146 {"foldtext", "fdt", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1147 # ifdef FEAT_EVAL
1148 (char_u *)VAR_WIN, PV_FDT,
1149 {(char_u *)"foldtext()", (char_u *)NULL}
1150 # else
1151 (char_u *)NULL, PV_NONE,
1152 {(char_u *)NULL, (char_u *)0L}
1153 # endif
1154 SCRIPTID_INIT},
1155 #endif
1156 {"formatexpr", "fex", P_STRING|P_ALLOCED|P_VI_DEF|P_VIM,
1157 #ifdef FEAT_EVAL
1158 (char_u *)&p_fex, PV_FEX,
1159 {(char_u *)"", (char_u *)0L}
1160 #else
1161 (char_u *)NULL, PV_NONE,
1162 {(char_u *)0L, (char_u *)0L}
1163 #endif
1164 SCRIPTID_INIT},
1165 {"formatoptions","fo", P_STRING|P_ALLOCED|P_VIM|P_FLAGLIST,
1166 (char_u *)&p_fo, PV_FO,
1167 {(char_u *)DFLT_FO_VI, (char_u *)DFLT_FO_VIM}
1168 SCRIPTID_INIT},
1169 {"formatlistpat","flp", P_STRING|P_ALLOCED|P_VI_DEF,
1170 (char_u *)&p_flp, PV_FLP,
1171 {(char_u *)"^\\s*\\d\\+[\\]:.)}\\t ]\\s*",
1172 (char_u *)0L} SCRIPTID_INIT},
1173 {"formatprg", "fp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1174 (char_u *)&p_fp, PV_NONE,
1175 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1176 {"fsync", "fs", P_BOOL|P_SECURE|P_VI_DEF,
1177 #ifdef HAVE_FSYNC
1178 (char_u *)&p_fs, PV_NONE,
1179 {(char_u *)TRUE, (char_u *)0L}
1180 #else
1181 (char_u *)NULL, PV_NONE,
1182 {(char_u *)FALSE, (char_u *)0L}
1183 #endif
1184 SCRIPTID_INIT},
1185 {"fullscreen", "fu", P_BOOL|P_NO_MKRC,
1186 #ifdef FEAT_FULLSCREEN
1187 (char_u *)&p_fullscreen, PV_NONE,
1188 #else
1189 (char_u *)NULL, PV_NONE,
1190 #endif
1191 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1192 {"fuoptions", "fuopt", P_STRING|P_COMMA|P_NODUP|P_VI_DEF,
1193 #ifdef FEAT_FULLSCREEN
1194 (char_u *)&p_fuoptions, PV_NONE,
1195 {(char_u *)"maxvert", (char_u *)0L}
1196 #else
1197 (char_u *)NULL, PV_NONE,
1198 {(char_u *)NULL, (char_u *)0L}
1199 #endif
1200 SCRIPTID_INIT},
1201 {"gdefault", "gd", P_BOOL|P_VI_DEF|P_VIM,
1202 (char_u *)&p_gd, PV_NONE,
1203 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1204 {"graphic", "gr", P_BOOL|P_VI_DEF,
1205 (char_u *)NULL, PV_NONE,
1206 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1207 {"grepformat", "gfm", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1208 #ifdef FEAT_QUICKFIX
1209 (char_u *)&p_gefm, PV_NONE,
1210 {(char_u *)DFLT_GREPFORMAT, (char_u *)0L}
1211 #else
1212 (char_u *)NULL, PV_NONE,
1213 {(char_u *)NULL, (char_u *)0L}
1214 #endif
1215 SCRIPTID_INIT},
1216 {"grepprg", "gp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1217 #ifdef FEAT_QUICKFIX
1218 (char_u *)&p_gp, PV_GP,
1220 # ifdef WIN3264
1221 /* may be changed to "grep -n" in os_win32.c */
1222 (char_u *)"findstr /n",
1223 # else
1224 # ifdef UNIX
1225 /* Add an extra file name so that grep will always
1226 * insert a file name in the match line. */
1227 (char_u *)"grep -n $* /dev/null",
1228 # else
1229 # ifdef VMS
1230 (char_u *)"SEARCH/NUMBERS ",
1231 # else
1232 (char_u *)"grep -n ",
1233 # endif
1234 # endif
1235 # endif
1236 (char_u *)0L}
1237 #else
1238 (char_u *)NULL, PV_NONE,
1239 {(char_u *)NULL, (char_u *)0L}
1240 #endif
1241 SCRIPTID_INIT},
1242 {"guicursor", "gcr", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1243 #ifdef CURSOR_SHAPE
1244 (char_u *)&p_guicursor, PV_NONE,
1246 # ifdef FEAT_GUI
1247 (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",
1248 # else /* MSDOS or Win32 console */
1249 (char_u *)"n-v-c:block,o:hor50,i-ci:hor15,r-cr:hor30,sm:block",
1250 # endif
1251 (char_u *)0L}
1252 #else
1253 (char_u *)NULL, PV_NONE,
1254 {(char_u *)NULL, (char_u *)0L}
1255 #endif
1256 SCRIPTID_INIT},
1257 {"guifont", "gfn", P_STRING|P_VI_DEF|P_RCLR|P_COMMA|P_NODUP,
1258 #ifdef FEAT_GUI
1259 (char_u *)&p_guifont, PV_NONE,
1260 {(char_u *)"", (char_u *)0L}
1261 #else
1262 (char_u *)NULL, PV_NONE,
1263 {(char_u *)NULL, (char_u *)0L}
1264 #endif
1265 SCRIPTID_INIT},
1266 {"guifontset", "gfs", P_STRING|P_VI_DEF|P_RCLR|P_COMMA,
1267 #if defined(FEAT_GUI) && defined(FEAT_XFONTSET)
1268 (char_u *)&p_guifontset, PV_NONE,
1269 {(char_u *)"", (char_u *)0L}
1270 #else
1271 (char_u *)NULL, PV_NONE,
1272 {(char_u *)NULL, (char_u *)0L}
1273 #endif
1274 SCRIPTID_INIT},
1275 {"guifontwide", "gfw", P_STRING|P_VI_DEF|P_RCLR|P_COMMA|P_NODUP,
1276 #if defined(FEAT_GUI) && defined(FEAT_MBYTE)
1277 (char_u *)&p_guifontwide, PV_NONE,
1278 {(char_u *)"", (char_u *)0L}
1279 #else
1280 (char_u *)NULL, PV_NONE,
1281 {(char_u *)NULL, (char_u *)0L}
1282 #endif
1283 SCRIPTID_INIT},
1284 {"guiheadroom", "ghr", P_NUM|P_VI_DEF,
1285 #if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11)
1286 (char_u *)&p_ghr, PV_NONE,
1287 #else
1288 (char_u *)NULL, PV_NONE,
1289 #endif
1290 {(char_u *)50L, (char_u *)0L} SCRIPTID_INIT},
1291 {"guioptions", "go", P_STRING|P_VI_DEF|P_RALL|P_FLAGLIST,
1292 #if defined(FEAT_GUI)
1293 (char_u *)&p_go, PV_NONE,
1294 # if defined(UNIX) && !defined(MACOS)
1295 {(char_u *)"aegimrLtT", (char_u *)0L}
1296 # else
1297 {(char_u *)"egmrLtT", (char_u *)0L}
1298 # endif
1299 #else
1300 (char_u *)NULL, PV_NONE,
1301 {(char_u *)NULL, (char_u *)0L}
1302 #endif
1303 SCRIPTID_INIT},
1304 {"guipty", NULL, P_BOOL|P_VI_DEF,
1305 #if defined(FEAT_GUI)
1306 (char_u *)&p_guipty, PV_NONE,
1307 #else
1308 (char_u *)NULL, PV_NONE,
1309 #endif
1310 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1311 {"guitablabel", "gtl", P_STRING|P_VI_DEF|P_RWIN,
1312 #if defined(FEAT_GUI_TABLINE)
1313 (char_u *)&p_gtl, PV_NONE,
1314 {(char_u *)"", (char_u *)0L}
1315 #else
1316 (char_u *)NULL, PV_NONE,
1317 {(char_u *)NULL, (char_u *)0L}
1318 #endif
1319 SCRIPTID_INIT},
1320 {"guitabtooltip", "gtt", P_STRING|P_VI_DEF|P_RWIN,
1321 #if defined(FEAT_GUI_TABLINE)
1322 (char_u *)&p_gtt, PV_NONE,
1323 {(char_u *)"", (char_u *)0L}
1324 #else
1325 (char_u *)NULL, PV_NONE,
1326 {(char_u *)NULL, (char_u *)0L}
1327 #endif
1328 SCRIPTID_INIT},
1329 {"hardtabs", "ht", P_NUM|P_VI_DEF,
1330 (char_u *)NULL, PV_NONE,
1331 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
1332 {"helpfile", "hf", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1333 (char_u *)&p_hf, PV_NONE,
1334 {(char_u *)DFLT_HELPFILE, (char_u *)0L}
1335 SCRIPTID_INIT},
1336 {"helpheight", "hh", P_NUM|P_VI_DEF,
1337 #ifdef FEAT_WINDOWS
1338 (char_u *)&p_hh, PV_NONE,
1339 #else
1340 (char_u *)NULL, PV_NONE,
1341 #endif
1342 {(char_u *)20L, (char_u *)0L} SCRIPTID_INIT},
1343 {"helplang", "hlg", P_STRING|P_VI_DEF|P_COMMA,
1344 #ifdef FEAT_MULTI_LANG
1345 (char_u *)&p_hlg, PV_NONE,
1346 {(char_u *)"", (char_u *)0L}
1347 #else
1348 (char_u *)NULL, PV_NONE,
1349 {(char_u *)0L, (char_u *)0L}
1350 #endif
1351 SCRIPTID_INIT},
1352 {"hidden", "hid", P_BOOL|P_VI_DEF,
1353 (char_u *)&p_hid, PV_NONE,
1354 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1355 {"highlight", "hl", P_STRING|P_VI_DEF|P_RCLR|P_COMMA|P_NODUP,
1356 (char_u *)&p_hl, PV_NONE,
1357 {(char_u *)HIGHLIGHT_INIT, (char_u *)0L}
1358 SCRIPTID_INIT},
1359 {"history", "hi", P_NUM|P_VIM,
1360 (char_u *)&p_hi, PV_NONE,
1361 {(char_u *)0L, (char_u *)20L} SCRIPTID_INIT},
1362 {"hkmap", "hk", P_BOOL|P_VI_DEF|P_VIM,
1363 #ifdef FEAT_RIGHTLEFT
1364 (char_u *)&p_hkmap, PV_NONE,
1365 #else
1366 (char_u *)NULL, PV_NONE,
1367 #endif
1368 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1369 {"hkmapp", "hkp", P_BOOL|P_VI_DEF|P_VIM,
1370 #ifdef FEAT_RIGHTLEFT
1371 (char_u *)&p_hkmapp, PV_NONE,
1372 #else
1373 (char_u *)NULL, PV_NONE,
1374 #endif
1375 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1376 {"hlsearch", "hls", P_BOOL|P_VI_DEF|P_VIM|P_RALL,
1377 (char_u *)&p_hls, PV_NONE,
1378 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1379 {"icon", NULL, P_BOOL|P_VI_DEF,
1380 #ifdef FEAT_TITLE
1381 (char_u *)&p_icon, PV_NONE,
1382 #else
1383 (char_u *)NULL, PV_NONE,
1384 #endif
1385 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1386 {"iconstring", NULL, P_STRING|P_VI_DEF,
1387 #ifdef FEAT_TITLE
1388 (char_u *)&p_iconstring, PV_NONE,
1389 #else
1390 (char_u *)NULL, PV_NONE,
1391 #endif
1392 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1393 {"ignorecase", "ic", P_BOOL|P_VI_DEF,
1394 (char_u *)&p_ic, PV_NONE,
1395 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1396 {"imactivatekey","imak",P_STRING|P_VI_DEF,
1397 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
1398 (char_u *)&p_imak, PV_NONE,
1399 #else
1400 (char_u *)NULL, PV_NONE,
1401 #endif
1402 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1403 {"imcmdline", "imc", P_BOOL|P_VI_DEF,
1404 #ifdef USE_IM_CONTROL
1405 (char_u *)&p_imcmdline, PV_NONE,
1406 #else
1407 (char_u *)NULL, PV_NONE,
1408 #endif
1409 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1410 {"imdisable", "imd", P_BOOL|P_VI_DEF,
1411 #ifdef USE_IM_CONTROL
1412 (char_u *)&p_imdisable, PV_NONE,
1413 #else
1414 (char_u *)NULL, PV_NONE,
1415 #endif
1416 #if defined(__sgi) || defined(FEAT_GUI_MACVIM)
1417 {(char_u *)TRUE, (char_u *)0L}
1418 #else
1419 {(char_u *)FALSE, (char_u *)0L}
1420 #endif
1421 SCRIPTID_INIT},
1422 {"iminsert", "imi", P_NUM|P_VI_DEF,
1423 (char_u *)&p_iminsert, PV_IMI,
1424 #ifdef B_IMODE_IM
1425 {(char_u *)B_IMODE_IM, (char_u *)0L}
1426 #else
1427 {(char_u *)B_IMODE_NONE, (char_u *)0L}
1428 #endif
1429 SCRIPTID_INIT},
1430 {"imsearch", "ims", P_NUM|P_VI_DEF,
1431 (char_u *)&p_imsearch, PV_IMS,
1432 #ifdef B_IMODE_IM
1433 {(char_u *)B_IMODE_IM, (char_u *)0L}
1434 #else
1435 {(char_u *)B_IMODE_NONE, (char_u *)0L}
1436 #endif
1437 SCRIPTID_INIT},
1438 {"include", "inc", P_STRING|P_ALLOCED|P_VI_DEF,
1439 #ifdef FEAT_FIND_ID
1440 (char_u *)&p_inc, PV_INC,
1441 {(char_u *)"^\\s*#\\s*include", (char_u *)0L}
1442 #else
1443 (char_u *)NULL, PV_NONE,
1444 {(char_u *)0L, (char_u *)0L}
1445 #endif
1446 SCRIPTID_INIT},
1447 {"includeexpr", "inex", P_STRING|P_ALLOCED|P_VI_DEF,
1448 #if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
1449 (char_u *)&p_inex, PV_INEX,
1450 {(char_u *)"", (char_u *)0L}
1451 #else
1452 (char_u *)NULL, PV_NONE,
1453 {(char_u *)0L, (char_u *)0L}
1454 #endif
1455 SCRIPTID_INIT},
1456 {"incsearch", "is", P_BOOL|P_VI_DEF|P_VIM,
1457 (char_u *)&p_is, PV_NONE,
1458 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1459 {"indentexpr", "inde", P_STRING|P_ALLOCED|P_VI_DEF|P_VIM,
1460 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
1461 (char_u *)&p_inde, PV_INDE,
1462 {(char_u *)"", (char_u *)0L}
1463 #else
1464 (char_u *)NULL, PV_NONE,
1465 {(char_u *)0L, (char_u *)0L}
1466 #endif
1467 SCRIPTID_INIT},
1468 {"indentkeys", "indk", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
1469 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
1470 (char_u *)&p_indk, PV_INDK,
1471 {(char_u *)"0{,0},:,0#,!^F,o,O,e", (char_u *)0L}
1472 #else
1473 (char_u *)NULL, PV_NONE,
1474 {(char_u *)0L, (char_u *)0L}
1475 #endif
1476 SCRIPTID_INIT},
1477 {"infercase", "inf", P_BOOL|P_VI_DEF,
1478 (char_u *)&p_inf, PV_INF,
1479 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1480 {"insertmode", "im", P_BOOL|P_VI_DEF|P_VIM,
1481 (char_u *)&p_im, PV_NONE,
1482 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1483 {"isfname", "isf", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1484 (char_u *)&p_isf, PV_NONE,
1486 #ifdef BACKSLASH_IN_FILENAME
1487 /* Excluded are: & and ^ are special in cmd.exe
1488 * ( and ) are used in text separating fnames */
1489 (char_u *)"@,48-57,/,\\,.,-,_,+,,,#,$,%,{,},[,],:,@-@,!,~,=",
1490 #else
1491 # ifdef AMIGA
1492 (char_u *)"@,48-57,/,.,-,_,+,,,$,:",
1493 # else
1494 # ifdef VMS
1495 (char_u *)"@,48-57,/,.,-,_,+,,,#,$,%,<,>,[,],:,;,~",
1496 # else /* UNIX et al. */
1497 # ifdef EBCDIC
1498 (char_u *)"@,240-249,/,.,-,_,+,,,#,$,%,~,=",
1499 # else
1500 (char_u *)"@,48-57,/,.,-,_,+,,,#,$,%,~,=",
1501 # endif
1502 # endif
1503 # endif
1504 #endif
1505 (char_u *)0L} SCRIPTID_INIT},
1506 {"isident", "isi", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1507 (char_u *)&p_isi, PV_NONE,
1509 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
1510 (char_u *)"@,48-57,_,128-167,224-235",
1511 #else
1512 # ifdef EBCDIC
1513 /* TODO: EBCDIC Check this! @ == isalpha()*/
1514 (char_u *)"@,240-249,_,66-73,81-89,98-105,"
1515 "112-120,128,140-142,156,158,172,"
1516 "174,186,191,203-207,219-225,235-239,"
1517 "251-254",
1518 # else
1519 (char_u *)"@,48-57,_,192-255",
1520 # endif
1521 #endif
1522 (char_u *)0L} SCRIPTID_INIT},
1523 {"iskeyword", "isk", P_STRING|P_ALLOCED|P_VIM|P_COMMA|P_NODUP,
1524 (char_u *)&p_isk, PV_ISK,
1526 #ifdef EBCDIC
1527 (char_u *)"@,240-249,_",
1528 /* TODO: EBCDIC Check this! @ == isalpha()*/
1529 (char_u *)"@,240-249,_,66-73,81-89,98-105,"
1530 "112-120,128,140-142,156,158,172,"
1531 "174,186,191,203-207,219-225,235-239,"
1532 "251-254",
1533 #else
1534 (char_u *)"@,48-57,_",
1535 # if defined(MSDOS) || defined(MSWIN) || defined(OS2)
1536 (char_u *)"@,48-57,_,128-167,224-235"
1537 # else
1538 ISK_LATIN1
1539 # endif
1540 #endif
1541 } SCRIPTID_INIT},
1542 {"isprint", "isp", P_STRING|P_VI_DEF|P_RALL|P_COMMA|P_NODUP,
1543 (char_u *)&p_isp, PV_NONE,
1545 #if defined(MSDOS) || defined(MSWIN) || defined(OS2) \
1546 || (defined(MACOS) && !defined(MACOS_X)) \
1547 || defined(VMS)
1548 (char_u *)"@,~-255",
1549 #else
1550 # ifdef EBCDIC
1551 /* all chars above 63 are printable */
1552 (char_u *)"63-255",
1553 # else
1554 ISP_LATIN1,
1555 # endif
1556 #endif
1557 (char_u *)0L} SCRIPTID_INIT},
1558 {"joinspaces", "js", P_BOOL|P_VI_DEF|P_VIM,
1559 (char_u *)&p_js, PV_NONE,
1560 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1561 {"key", NULL, P_STRING|P_ALLOCED|P_VI_DEF|P_NO_MKRC,
1562 #ifdef FEAT_CRYPT
1563 (char_u *)&p_key, PV_KEY,
1564 {(char_u *)"", (char_u *)0L}
1565 #else
1566 (char_u *)NULL, PV_NONE,
1567 {(char_u *)0L, (char_u *)0L}
1568 #endif
1569 SCRIPTID_INIT},
1570 {"keymap", "kmp", P_STRING|P_ALLOCED|P_VI_DEF|P_RBUF|P_RSTAT|P_NFNAME|P_PRI_MKRC,
1571 #ifdef FEAT_KEYMAP
1572 (char_u *)&p_keymap, PV_KMAP,
1573 {(char_u *)"", (char_u *)0L}
1574 #else
1575 (char_u *)NULL, PV_NONE,
1576 {(char_u *)"", (char_u *)0L}
1577 #endif
1578 SCRIPTID_INIT},
1579 {"keymodel", "km", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1580 #ifdef FEAT_VISUAL
1581 (char_u *)&p_km, PV_NONE,
1582 #else
1583 (char_u *)NULL, PV_NONE,
1584 #endif
1585 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1586 {"keywordprg", "kp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1587 (char_u *)&p_kp, PV_KP,
1589 #if defined(MSDOS) || defined(MSWIN)
1590 (char_u *)":help",
1591 #else
1592 #ifdef VMS
1593 (char_u *)"help",
1594 #else
1595 # if defined(OS2)
1596 (char_u *)"view /",
1597 # else
1598 # ifdef USEMAN_S
1599 (char_u *)"man -s",
1600 # else
1601 (char_u *)"man",
1602 # endif
1603 # endif
1604 #endif
1605 #endif
1606 (char_u *)0L} SCRIPTID_INIT},
1607 {"langmap", "lmap", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1608 #ifdef FEAT_LANGMAP
1609 (char_u *)&p_langmap, PV_NONE,
1610 {(char_u *)"", /* unmatched } */
1611 #else
1612 (char_u *)NULL, PV_NONE,
1613 {(char_u *)NULL,
1614 #endif
1615 (char_u *)0L} SCRIPTID_INIT},
1616 {"langmenu", "lm", P_STRING|P_VI_DEF|P_NFNAME,
1617 #if defined(FEAT_MENU) && defined(FEAT_MULTI_LANG)
1618 (char_u *)&p_lm, PV_NONE,
1619 #else
1620 (char_u *)NULL, PV_NONE,
1621 #endif
1622 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1623 {"laststatus", "ls", P_NUM|P_VI_DEF|P_RALL,
1624 #ifdef FEAT_WINDOWS
1625 (char_u *)&p_ls, PV_NONE,
1626 #else
1627 (char_u *)NULL, PV_NONE,
1628 #endif
1629 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
1630 {"lazyredraw", "lz", P_BOOL|P_VI_DEF,
1631 (char_u *)&p_lz, PV_NONE,
1632 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1633 {"linebreak", "lbr", P_BOOL|P_VI_DEF|P_RWIN,
1634 #ifdef FEAT_LINEBREAK
1635 (char_u *)VAR_WIN, PV_LBR,
1636 #else
1637 (char_u *)NULL, PV_NONE,
1638 #endif
1639 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1640 {"lines", NULL, P_NUM|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RCLR,
1641 (char_u *)&Rows, PV_NONE,
1643 #if defined(MSDOS) || defined(WIN3264) || defined(OS2)
1644 (char_u *)25L,
1645 #else
1646 (char_u *)24L,
1647 #endif
1648 (char_u *)0L} SCRIPTID_INIT},
1649 {"linespace", "lsp", P_NUM|P_VI_DEF|P_RCLR,
1650 #ifdef FEAT_GUI
1651 (char_u *)&p_linespace, PV_NONE,
1652 #else
1653 (char_u *)NULL, PV_NONE,
1654 #endif
1655 #ifdef FEAT_GUI_W32
1656 {(char_u *)1L, (char_u *)0L}
1657 #else
1658 {(char_u *)0L, (char_u *)0L}
1659 #endif
1660 SCRIPTID_INIT},
1661 {"lisp", NULL, P_BOOL|P_VI_DEF,
1662 #ifdef FEAT_LISP
1663 (char_u *)&p_lisp, PV_LISP,
1664 #else
1665 (char_u *)NULL, PV_NONE,
1666 #endif
1667 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1668 {"lispwords", "lw", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1669 #ifdef FEAT_LISP
1670 (char_u *)&p_lispwords, PV_NONE,
1671 {(char_u *)LISPWORD_VALUE, (char_u *)0L}
1672 #else
1673 (char_u *)NULL, PV_NONE,
1674 {(char_u *)"", (char_u *)0L}
1675 #endif
1676 SCRIPTID_INIT},
1677 {"list", NULL, P_BOOL|P_VI_DEF|P_RWIN,
1678 (char_u *)VAR_WIN, PV_LIST,
1679 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1680 {"listchars", "lcs", P_STRING|P_VI_DEF|P_RALL|P_COMMA|P_NODUP,
1681 (char_u *)&p_lcs, PV_NONE,
1682 {(char_u *)"eol:$", (char_u *)0L} SCRIPTID_INIT},
1683 {"loadplugins", "lpl", P_BOOL|P_VI_DEF,
1684 (char_u *)&p_lpl, PV_NONE,
1685 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1686 #ifdef FEAT_GUI_MAC
1687 {"macatsui", NULL, P_BOOL|P_VI_DEF|P_RCLR,
1688 (char_u *)&p_macatsui, PV_NONE,
1689 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1690 #endif
1691 {"macmeta", "mmta", P_BOOL|P_VI_DEF,
1692 #ifdef FEAT_GUI_MACVIM
1693 (char_u *)&p_mmta, PV_MMTA,
1694 #else
1695 (char_u *)NULL, PV_NONE,
1696 #endif
1697 {(char_u *)FALSE, (char_u *)0L}},
1698 {"magic", NULL, P_BOOL|P_VI_DEF,
1699 (char_u *)&p_magic, PV_NONE,
1700 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1701 {"makeef", "mef", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1702 #ifdef FEAT_QUICKFIX
1703 (char_u *)&p_mef, PV_NONE,
1704 {(char_u *)"", (char_u *)0L}
1705 #else
1706 (char_u *)NULL, PV_NONE,
1707 {(char_u *)NULL, (char_u *)0L}
1708 #endif
1709 SCRIPTID_INIT},
1710 {"makeprg", "mp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1711 #ifdef FEAT_QUICKFIX
1712 (char_u *)&p_mp, PV_MP,
1713 # ifdef VMS
1714 {(char_u *)"MMS", (char_u *)0L}
1715 # else
1716 {(char_u *)"make", (char_u *)0L}
1717 # endif
1718 #else
1719 (char_u *)NULL, PV_NONE,
1720 {(char_u *)NULL, (char_u *)0L}
1721 #endif
1722 SCRIPTID_INIT},
1723 {"matchpairs", "mps", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
1724 (char_u *)&p_mps, PV_MPS,
1725 {(char_u *)"(:),{:},[:]", (char_u *)0L}
1726 SCRIPTID_INIT},
1727 {"matchtime", "mat", P_NUM|P_VI_DEF,
1728 (char_u *)&p_mat, PV_NONE,
1729 {(char_u *)5L, (char_u *)0L} SCRIPTID_INIT},
1730 {"maxcombine", "mco", P_NUM|P_VI_DEF,
1731 #ifdef FEAT_MBYTE
1732 (char_u *)&p_mco, PV_NONE,
1733 #else
1734 (char_u *)NULL, PV_NONE,
1735 #endif
1736 {(char_u *)2, (char_u *)0L} SCRIPTID_INIT},
1737 {"maxfuncdepth", "mfd", P_NUM|P_VI_DEF,
1738 #ifdef FEAT_EVAL
1739 (char_u *)&p_mfd, PV_NONE,
1740 #else
1741 (char_u *)NULL, PV_NONE,
1742 #endif
1743 {(char_u *)100L, (char_u *)0L} SCRIPTID_INIT},
1744 {"maxmapdepth", "mmd", P_NUM|P_VI_DEF,
1745 (char_u *)&p_mmd, PV_NONE,
1746 {(char_u *)1000L, (char_u *)0L} SCRIPTID_INIT},
1747 {"maxmem", "mm", P_NUM|P_VI_DEF,
1748 (char_u *)&p_mm, PV_NONE,
1749 {(char_u *)DFLT_MAXMEM, (char_u *)0L}
1750 SCRIPTID_INIT},
1751 {"maxmempattern","mmp", P_NUM|P_VI_DEF,
1752 (char_u *)&p_mmp, PV_NONE,
1753 {(char_u *)1000L, (char_u *)0L} SCRIPTID_INIT},
1754 {"maxmemtot", "mmt", P_NUM|P_VI_DEF,
1755 (char_u *)&p_mmt, PV_NONE,
1756 {(char_u *)DFLT_MAXMEMTOT, (char_u *)0L}
1757 SCRIPTID_INIT},
1758 {"menuitems", "mis", P_NUM|P_VI_DEF,
1759 #ifdef FEAT_MENU
1760 (char_u *)&p_mis, PV_NONE,
1761 #else
1762 (char_u *)NULL, PV_NONE,
1763 #endif
1764 {(char_u *)25L, (char_u *)0L} SCRIPTID_INIT},
1765 {"mesg", NULL, P_BOOL|P_VI_DEF,
1766 (char_u *)NULL, PV_NONE,
1767 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1768 #ifdef USE_MIGEMO
1769 {"migemo", "mgm", P_BOOL|P_VI_DEF|P_VIM,
1770 (char_u *)&p_migemo, PV_MIG,
1771 {(char_u *)FALSE, (char_u *)0L}},
1772 {"migemodict", "mgd", P_STRING|P_EXPAND|P_VI_DEF|P_VIM,
1773 (char_u *)&p_migdict, PV_NONE,
1774 {(char_u *)"", (char_u *)0L}},
1775 #endif /* USE_MIGEMO */
1776 {"mkspellmem", "msm", P_STRING|P_VI_DEF|P_EXPAND|P_SECURE,
1777 #ifdef FEAT_SPELL
1778 (char_u *)&p_msm, PV_NONE,
1779 {(char_u *)"460000,2000,500", (char_u *)0L}
1780 #else
1781 (char_u *)NULL, PV_NONE,
1782 {(char_u *)0L, (char_u *)0L}
1783 #endif
1784 SCRIPTID_INIT},
1785 {"modeline", "ml", P_BOOL|P_VIM,
1786 (char_u *)&p_ml, PV_ML,
1787 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
1788 {"modelines", "mls", P_NUM|P_VI_DEF,
1789 (char_u *)&p_mls, PV_NONE,
1790 {(char_u *)5L, (char_u *)0L} SCRIPTID_INIT},
1791 {"modifiable", "ma", P_BOOL|P_VI_DEF|P_NOGLOB,
1792 (char_u *)&p_ma, PV_MA,
1793 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1794 {"modified", "mod", P_BOOL|P_NO_MKRC|P_VI_DEF|P_RSTAT,
1795 (char_u *)&p_mod, PV_MOD,
1796 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1797 {"more", NULL, P_BOOL|P_VIM,
1798 (char_u *)&p_more, PV_NONE,
1799 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
1800 {"mouse", NULL, P_STRING|P_VI_DEF|P_FLAGLIST,
1801 (char_u *)&p_mouse, PV_NONE,
1803 #if defined(MSDOS) || defined(WIN3264)
1804 (char_u *)"a",
1805 #else
1806 (char_u *)"",
1807 #endif
1808 (char_u *)0L} SCRIPTID_INIT},
1809 {"mousefocus", "mousef", P_BOOL|P_VI_DEF,
1810 #ifdef FEAT_GUI
1811 (char_u *)&p_mousef, PV_NONE,
1812 #else
1813 (char_u *)NULL, PV_NONE,
1814 #endif
1815 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1816 {"mousehide", "mh", P_BOOL|P_VI_DEF,
1817 #ifdef FEAT_GUI
1818 (char_u *)&p_mh, PV_NONE,
1819 #else
1820 (char_u *)NULL, PV_NONE,
1821 #endif
1822 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1823 {"mousemodel", "mousem", P_STRING|P_VI_DEF,
1824 (char_u *)&p_mousem, PV_NONE,
1826 #if defined(MSDOS) || defined(MSWIN)
1827 (char_u *)"popup",
1828 #else
1829 # if defined(MACOS)
1830 (char_u *)"popup_setpos",
1831 # else
1832 (char_u *)"extend",
1833 # endif
1834 #endif
1835 (char_u *)0L} SCRIPTID_INIT},
1836 {"mouseshape", "mouses", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1837 #ifdef FEAT_MOUSESHAPE
1838 (char_u *)&p_mouseshape, PV_NONE,
1839 {(char_u *)"i-r:beam,s:updown,sd:udsizing,vs:leftright,vd:lrsizing,m:no,ml:up-arrow,v:rightup-arrow", (char_u *)0L}
1840 #else
1841 (char_u *)NULL, PV_NONE,
1842 {(char_u *)NULL, (char_u *)0L}
1843 #endif
1844 SCRIPTID_INIT},
1845 {"mousetime", "mouset", P_NUM|P_VI_DEF,
1846 (char_u *)&p_mouset, PV_NONE,
1847 {(char_u *)500L, (char_u *)0L} SCRIPTID_INIT},
1848 {"mzquantum", "mzq", P_NUM,
1849 #ifdef FEAT_MZSCHEME
1850 (char_u *)&p_mzq, PV_NONE,
1851 #else
1852 (char_u *)NULL, PV_NONE,
1853 #endif
1854 {(char_u *)100L, (char_u *)100L} SCRIPTID_INIT},
1855 {"novice", NULL, P_BOOL|P_VI_DEF,
1856 (char_u *)NULL, PV_NONE,
1857 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1858 {"nrformats", "nf", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
1859 (char_u *)&p_nf, PV_NF,
1860 {(char_u *)"octal,hex", (char_u *)0L}
1861 SCRIPTID_INIT},
1862 {"number", "nu", P_BOOL|P_VI_DEF|P_RWIN,
1863 (char_u *)VAR_WIN, PV_NU,
1864 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1865 {"numberwidth", "nuw", P_NUM|P_RWIN|P_VIM,
1866 #ifdef FEAT_LINEBREAK
1867 (char_u *)VAR_WIN, PV_NUW,
1868 #else
1869 (char_u *)NULL, PV_NONE,
1870 #endif
1871 {(char_u *)8L, (char_u *)4L} SCRIPTID_INIT},
1872 {"omnifunc", "ofu", P_STRING|P_ALLOCED|P_VI_DEF|P_SECURE,
1873 #ifdef FEAT_COMPL_FUNC
1874 (char_u *)&p_ofu, PV_OFU,
1875 {(char_u *)"", (char_u *)0L}
1876 #else
1877 (char_u *)NULL, PV_NONE,
1878 {(char_u *)0L, (char_u *)0L}
1879 #endif
1880 SCRIPTID_INIT},
1881 {"open", NULL, P_BOOL|P_VI_DEF,
1882 (char_u *)NULL, PV_NONE,
1883 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1884 {"opendevice", "odev", P_BOOL|P_VI_DEF,
1885 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
1886 (char_u *)&p_odev, PV_NONE,
1887 #else
1888 (char_u *)NULL, PV_NONE,
1889 #endif
1890 {(char_u *)FALSE, (char_u *)FALSE}
1891 SCRIPTID_INIT},
1892 {"operatorfunc", "opfunc", P_STRING|P_VI_DEF|P_SECURE,
1893 (char_u *)&p_opfunc, PV_NONE,
1894 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1895 {"optimize", "opt", P_BOOL|P_VI_DEF,
1896 (char_u *)NULL, PV_NONE,
1897 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1898 {"osfiletype", "oft", P_STRING|P_ALLOCED|P_VI_DEF,
1899 #ifdef FEAT_OSFILETYPE
1900 (char_u *)&p_oft, PV_OFT,
1901 {(char_u *)DFLT_OFT, (char_u *)0L}
1902 #else
1903 (char_u *)NULL, PV_NONE,
1904 {(char_u *)0L, (char_u *)0L}
1905 #endif
1906 SCRIPTID_INIT},
1907 {"paragraphs", "para", P_STRING|P_VI_DEF,
1908 (char_u *)&p_para, PV_NONE,
1909 {(char_u *)"IPLPPPQPP TPHPLIPpLpItpplpipbp",
1910 (char_u *)0L} SCRIPTID_INIT},
1911 {"paste", NULL, P_BOOL|P_VI_DEF|P_PRI_MKRC,
1912 (char_u *)&p_paste, PV_NONE,
1913 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1914 {"pastetoggle", "pt", P_STRING|P_VI_DEF,
1915 (char_u *)&p_pt, PV_NONE,
1916 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1917 {"patchexpr", "pex", P_STRING|P_VI_DEF|P_SECURE,
1918 #if defined(FEAT_DIFF) && defined(FEAT_EVAL)
1919 (char_u *)&p_pex, PV_NONE,
1920 {(char_u *)"", (char_u *)0L}
1921 #else
1922 (char_u *)NULL, PV_NONE,
1923 {(char_u *)0L, (char_u *)0L}
1924 #endif
1925 SCRIPTID_INIT},
1926 {"patchmode", "pm", P_STRING|P_VI_DEF|P_NFNAME,
1927 (char_u *)&p_pm, PV_NONE,
1928 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1929 {"path", "pa", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
1930 (char_u *)&p_path, PV_PATH,
1932 #if defined AMIGA || defined MSDOS || defined MSWIN
1933 (char_u *)".,,",
1934 #else
1935 # if defined(__EMX__)
1936 (char_u *)".,/emx/include,,",
1937 # else /* Unix, probably */
1938 (char_u *)".,/usr/include,,",
1939 # endif
1940 #endif
1941 (char_u *)0L} SCRIPTID_INIT},
1942 {"preserveindent", "pi", P_BOOL|P_VI_DEF|P_VIM,
1943 (char_u *)&p_pi, PV_PI,
1944 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1945 {"previewheight", "pvh", P_NUM|P_VI_DEF,
1946 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
1947 (char_u *)&p_pvh, PV_NONE,
1948 #else
1949 (char_u *)NULL, PV_NONE,
1950 #endif
1951 {(char_u *)12L, (char_u *)0L} SCRIPTID_INIT},
1952 {"previewwindow", "pvw", P_BOOL|P_VI_DEF|P_RSTAT|P_NOGLOB,
1953 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
1954 (char_u *)VAR_WIN, PV_PVW,
1955 #else
1956 (char_u *)NULL, PV_NONE,
1957 #endif
1958 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1959 {"printdevice", "pdev", P_STRING|P_VI_DEF|P_SECURE,
1960 #ifdef FEAT_PRINTER
1961 (char_u *)&p_pdev, PV_NONE,
1962 {(char_u *)"", (char_u *)0L}
1963 #else
1964 (char_u *)NULL, PV_NONE,
1965 {(char_u *)NULL, (char_u *)0L}
1966 #endif
1967 SCRIPTID_INIT},
1968 {"printencoding", "penc", P_STRING|P_VI_DEF,
1969 #ifdef FEAT_POSTSCRIPT
1970 (char_u *)&p_penc, PV_NONE,
1971 {(char_u *)"", (char_u *)0L}
1972 #else
1973 (char_u *)NULL, PV_NONE,
1974 {(char_u *)NULL, (char_u *)0L}
1975 #endif
1976 SCRIPTID_INIT},
1977 {"printexpr", "pexpr", P_STRING|P_VI_DEF,
1978 #ifdef FEAT_POSTSCRIPT
1979 (char_u *)&p_pexpr, PV_NONE,
1980 {(char_u *)"", (char_u *)0L}
1981 #else
1982 (char_u *)NULL, PV_NONE,
1983 {(char_u *)NULL, (char_u *)0L}
1984 #endif
1985 SCRIPTID_INIT},
1986 {"printfont", "pfn", P_STRING|P_VI_DEF,
1987 #ifdef FEAT_PRINTER
1988 (char_u *)&p_pfn, PV_NONE,
1990 # ifdef MSWIN
1991 (char_u *)"Courier_New:h10",
1992 # else
1993 (char_u *)"courier",
1994 # endif
1995 (char_u *)0L}
1996 #else
1997 (char_u *)NULL, PV_NONE,
1998 {(char_u *)NULL, (char_u *)0L}
1999 #endif
2000 SCRIPTID_INIT},
2001 {"printheader", "pheader", P_STRING|P_VI_DEF|P_GETTEXT,
2002 #ifdef FEAT_PRINTER
2003 (char_u *)&p_header, PV_NONE,
2004 {(char_u *)N_("%<%f%h%m%=Page %N"), (char_u *)0L}
2005 #else
2006 (char_u *)NULL, PV_NONE,
2007 {(char_u *)NULL, (char_u *)0L}
2008 #endif
2009 SCRIPTID_INIT},
2010 {"printmbcharset", "pmbcs", P_STRING|P_VI_DEF,
2011 #if defined(FEAT_POSTSCRIPT) && defined(FEAT_MBYTE)
2012 (char_u *)&p_pmcs, PV_NONE,
2013 {(char_u *)"", (char_u *)0L}
2014 #else
2015 (char_u *)NULL, PV_NONE,
2016 {(char_u *)NULL, (char_u *)0L}
2017 #endif
2018 SCRIPTID_INIT},
2019 {"printmbfont", "pmbfn", P_STRING|P_VI_DEF,
2020 #if defined(FEAT_POSTSCRIPT) && defined(FEAT_MBYTE)
2021 (char_u *)&p_pmfn, PV_NONE,
2022 {(char_u *)"", (char_u *)0L}
2023 #else
2024 (char_u *)NULL, PV_NONE,
2025 {(char_u *)NULL, (char_u *)0L}
2026 #endif
2027 SCRIPTID_INIT},
2028 {"printoptions", "popt", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2029 #ifdef FEAT_PRINTER
2030 (char_u *)&p_popt, PV_NONE,
2031 {(char_u *)"", (char_u *)0L}
2032 #else
2033 (char_u *)NULL, PV_NONE,
2034 {(char_u *)NULL, (char_u *)0L}
2035 #endif
2036 SCRIPTID_INIT},
2037 {"prompt", NULL, P_BOOL|P_VI_DEF,
2038 (char_u *)&p_prompt, PV_NONE,
2039 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2040 {"pumheight", "ph", P_NUM|P_VI_DEF,
2041 #ifdef FEAT_INS_EXPAND
2042 (char_u *)&p_ph, PV_NONE,
2043 #else
2044 (char_u *)NULL, PV_NONE,
2045 #endif
2046 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2047 {"quoteescape", "qe", P_STRING|P_ALLOCED|P_VI_DEF,
2048 #ifdef FEAT_TEXTOBJ
2049 (char_u *)&p_qe, PV_QE,
2050 {(char_u *)"\\", (char_u *)0L}
2051 #else
2052 (char_u *)NULL, PV_NONE,
2053 {(char_u *)NULL, (char_u *)0L}
2054 #endif
2055 SCRIPTID_INIT},
2056 {"readonly", "ro", P_BOOL|P_VI_DEF|P_RSTAT|P_NOGLOB,
2057 (char_u *)&p_ro, PV_RO,
2058 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2059 {"redraw", NULL, P_BOOL|P_VI_DEF,
2060 (char_u *)NULL, PV_NONE,
2061 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2062 {"redrawtime", "rdt", P_NUM|P_VI_DEF,
2063 #ifdef FEAT_RELTIME
2064 (char_u *)&p_rdt, PV_NONE,
2065 #else
2066 (char_u *)NULL, PV_NONE,
2067 #endif
2068 {(char_u *)2000L, (char_u *)0L} SCRIPTID_INIT},
2069 {"remap", NULL, P_BOOL|P_VI_DEF,
2070 (char_u *)&p_remap, PV_NONE,
2071 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2072 {"report", NULL, P_NUM|P_VI_DEF,
2073 (char_u *)&p_report, PV_NONE,
2074 {(char_u *)2L, (char_u *)0L} SCRIPTID_INIT},
2075 {"restorescreen", "rs", P_BOOL|P_VI_DEF,
2076 #ifdef WIN3264
2077 (char_u *)&p_rs, PV_NONE,
2078 #else
2079 (char_u *)NULL, PV_NONE,
2080 #endif
2081 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2082 {"revins", "ri", P_BOOL|P_VI_DEF|P_VIM,
2083 #ifdef FEAT_RIGHTLEFT
2084 (char_u *)&p_ri, PV_NONE,
2085 #else
2086 (char_u *)NULL, PV_NONE,
2087 #endif
2088 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2089 {"rightleft", "rl", P_BOOL|P_VI_DEF|P_RWIN,
2090 #ifdef FEAT_RIGHTLEFT
2091 (char_u *)VAR_WIN, PV_RL,
2092 #else
2093 (char_u *)NULL, PV_NONE,
2094 #endif
2095 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2096 {"rightleftcmd", "rlc", P_STRING|P_ALLOCED|P_VI_DEF|P_RWIN,
2097 #ifdef FEAT_RIGHTLEFT
2098 (char_u *)VAR_WIN, PV_RLC,
2099 {(char_u *)"search", (char_u *)NULL}
2100 #else
2101 (char_u *)NULL, PV_NONE,
2102 {(char_u *)NULL, (char_u *)0L}
2103 #endif
2104 SCRIPTID_INIT},
2105 {"ruler", "ru", P_BOOL|P_VI_DEF|P_VIM|P_RSTAT,
2106 #ifdef FEAT_CMDL_INFO
2107 (char_u *)&p_ru, PV_NONE,
2108 #else
2109 (char_u *)NULL, PV_NONE,
2110 #endif
2111 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2112 {"rulerformat", "ruf", P_STRING|P_VI_DEF|P_ALLOCED|P_RSTAT,
2113 #ifdef FEAT_STL_OPT
2114 (char_u *)&p_ruf, PV_NONE,
2115 #else
2116 (char_u *)NULL, PV_NONE,
2117 #endif
2118 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2119 {"runtimepath", "rtp", P_STRING|P_VI_DEF|P_EXPAND|P_COMMA|P_NODUP|P_SECURE,
2120 (char_u *)&p_rtp, PV_NONE,
2121 {(char_u *)DFLT_RUNTIMEPATH, (char_u *)0L}
2122 SCRIPTID_INIT},
2123 {"scroll", "scr", P_NUM|P_NO_MKRC|P_VI_DEF,
2124 (char_u *)VAR_WIN, PV_SCROLL,
2125 {(char_u *)12L, (char_u *)0L} SCRIPTID_INIT},
2126 {"scrollbind", "scb", P_BOOL|P_VI_DEF,
2127 #ifdef FEAT_SCROLLBIND
2128 (char_u *)VAR_WIN, PV_SCBIND,
2129 #else
2130 (char_u *)NULL, PV_NONE,
2131 #endif
2132 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2133 {"scrolljump", "sj", P_NUM|P_VI_DEF|P_VIM,
2134 (char_u *)&p_sj, PV_NONE,
2135 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
2136 {"scrolloff", "so", P_NUM|P_VI_DEF|P_VIM|P_RALL,
2137 (char_u *)&p_so, PV_NONE,
2138 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2139 {"scrollopt", "sbo", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2140 #ifdef FEAT_SCROLLBIND
2141 (char_u *)&p_sbo, PV_NONE,
2142 {(char_u *)"ver,jump", (char_u *)0L}
2143 #else
2144 (char_u *)NULL, PV_NONE,
2145 {(char_u *)0L, (char_u *)0L}
2146 #endif
2147 SCRIPTID_INIT},
2148 {"sections", "sect", P_STRING|P_VI_DEF,
2149 (char_u *)&p_sections, PV_NONE,
2150 {(char_u *)"SHNHH HUnhsh", (char_u *)0L}
2151 SCRIPTID_INIT},
2152 {"secure", NULL, P_BOOL|P_VI_DEF|P_SECURE,
2153 (char_u *)&p_secure, PV_NONE,
2154 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2155 {"selection", "sel", P_STRING|P_VI_DEF,
2156 #ifdef FEAT_VISUAL
2157 (char_u *)&p_sel, PV_NONE,
2158 #else
2159 (char_u *)NULL, PV_NONE,
2160 #endif
2161 {(char_u *)"inclusive", (char_u *)0L}
2162 SCRIPTID_INIT},
2163 {"selectmode", "slm", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2164 #ifdef FEAT_VISUAL
2165 (char_u *)&p_slm, PV_NONE,
2166 #else
2167 (char_u *)NULL, PV_NONE,
2168 #endif
2169 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2170 {"sessionoptions", "ssop", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2171 #ifdef FEAT_SESSION
2172 (char_u *)&p_ssop, PV_NONE,
2173 {(char_u *)"blank,buffers,curdir,folds,help,options,tabpages,winsize",
2174 (char_u *)0L}
2175 #else
2176 (char_u *)NULL, PV_NONE,
2177 {(char_u *)0L, (char_u *)0L}
2178 #endif
2179 SCRIPTID_INIT},
2180 {"shell", "sh", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
2181 (char_u *)&p_sh, PV_NONE,
2183 #ifdef VMS
2184 (char_u *)"-",
2185 #else
2186 # if defined(MSDOS)
2187 (char_u *)"command",
2188 # else
2189 # if defined(WIN16)
2190 (char_u *)"command.com",
2191 # else
2192 # if defined(WIN3264)
2193 (char_u *)"", /* set in set_init_1() */
2194 # else
2195 # if defined(OS2)
2196 (char_u *)"cmd.exe",
2197 # else
2198 # if defined(ARCHIE)
2199 (char_u *)"gos",
2200 # else
2201 (char_u *)"sh",
2202 # endif
2203 # endif
2204 # endif
2205 # endif
2206 # endif
2207 #endif /* VMS */
2208 (char_u *)0L} SCRIPTID_INIT},
2209 {"shellcmdflag","shcf", P_STRING|P_VI_DEF|P_SECURE,
2210 (char_u *)&p_shcf, PV_NONE,
2212 #if defined(MSDOS) || defined(MSWIN)
2213 (char_u *)"/c",
2214 #else
2215 # if defined(OS2)
2216 (char_u *)"/c",
2217 # else
2218 (char_u *)"-c",
2219 # endif
2220 #endif
2221 (char_u *)0L} SCRIPTID_INIT},
2222 {"shellpipe", "sp", P_STRING|P_VI_DEF|P_SECURE,
2223 #ifdef FEAT_QUICKFIX
2224 (char_u *)&p_sp, PV_NONE,
2226 #if defined(UNIX) || defined(OS2)
2227 # ifdef ARCHIE
2228 (char_u *)"2>",
2229 # else
2230 (char_u *)"| tee",
2231 # endif
2232 #else
2233 (char_u *)">",
2234 #endif
2235 (char_u *)0L}
2236 #else
2237 (char_u *)NULL, PV_NONE,
2238 {(char_u *)0L, (char_u *)0L}
2239 #endif
2240 SCRIPTID_INIT},
2241 {"shellquote", "shq", P_STRING|P_VI_DEF|P_SECURE,
2242 (char_u *)&p_shq, PV_NONE,
2243 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2244 {"shellredir", "srr", P_STRING|P_VI_DEF|P_SECURE,
2245 (char_u *)&p_srr, PV_NONE,
2246 {(char_u *)">", (char_u *)0L} SCRIPTID_INIT},
2247 {"shellslash", "ssl", P_BOOL|P_VI_DEF,
2248 #ifdef BACKSLASH_IN_FILENAME
2249 (char_u *)&p_ssl, PV_NONE,
2250 #else
2251 (char_u *)NULL, PV_NONE,
2252 #endif
2253 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2254 {"shelltemp", "stmp", P_BOOL,
2255 (char_u *)&p_stmp, PV_NONE,
2256 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
2257 {"shelltype", "st", P_NUM|P_VI_DEF,
2258 #ifdef AMIGA
2259 (char_u *)&p_st, PV_NONE,
2260 #else
2261 (char_u *)NULL, PV_NONE,
2262 #endif
2263 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2264 {"shellxquote", "sxq", P_STRING|P_VI_DEF|P_SECURE,
2265 (char_u *)&p_sxq, PV_NONE,
2267 #if defined(UNIX) && defined(USE_SYSTEM) && !defined(__EMX__)
2268 (char_u *)"\"",
2269 #else
2270 (char_u *)"",
2271 #endif
2272 (char_u *)0L} SCRIPTID_INIT},
2273 {"shiftround", "sr", P_BOOL|P_VI_DEF|P_VIM,
2274 (char_u *)&p_sr, PV_NONE,
2275 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2276 {"shiftwidth", "sw", P_NUM|P_VI_DEF,
2277 (char_u *)&p_sw, PV_SW,
2278 {(char_u *)8L, (char_u *)0L} SCRIPTID_INIT},
2279 {"shortmess", "shm", P_STRING|P_VIM|P_FLAGLIST,
2280 (char_u *)&p_shm, PV_NONE,
2281 {(char_u *)"", (char_u *)"filnxtToO"}
2282 SCRIPTID_INIT},
2283 {"shortname", "sn", P_BOOL|P_VI_DEF,
2284 #ifdef SHORT_FNAME
2285 (char_u *)NULL, PV_NONE,
2286 #else
2287 (char_u *)&p_sn, PV_SN,
2288 #endif
2289 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2290 {"showbreak", "sbr", P_STRING|P_VI_DEF|P_RALL,
2291 #ifdef FEAT_LINEBREAK
2292 (char_u *)&p_sbr, PV_NONE,
2293 #else
2294 (char_u *)NULL, PV_NONE,
2295 #endif
2296 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2297 {"showcmd", "sc", P_BOOL|P_VIM,
2298 #ifdef FEAT_CMDL_INFO
2299 (char_u *)&p_sc, PV_NONE,
2300 #else
2301 (char_u *)NULL, PV_NONE,
2302 #endif
2303 {(char_u *)FALSE,
2304 #ifdef UNIX
2305 (char_u *)FALSE
2306 #else
2307 (char_u *)TRUE
2308 #endif
2309 } SCRIPTID_INIT},
2310 {"showfulltag", "sft", P_BOOL|P_VI_DEF,
2311 (char_u *)&p_sft, PV_NONE,
2312 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2313 {"showmatch", "sm", P_BOOL|P_VI_DEF,
2314 (char_u *)&p_sm, PV_NONE,
2315 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2316 {"showmode", "smd", P_BOOL|P_VIM,
2317 (char_u *)&p_smd, PV_NONE,
2318 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
2319 {"showtabline", "stal", P_NUM|P_VI_DEF|P_RALL,
2320 #ifdef FEAT_WINDOWS
2321 (char_u *)&p_stal, PV_NONE,
2322 #else
2323 (char_u *)NULL, PV_NONE,
2324 #endif
2325 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
2326 {"sidescroll", "ss", P_NUM|P_VI_DEF,
2327 (char_u *)&p_ss, PV_NONE,
2328 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2329 {"sidescrolloff", "siso", P_NUM|P_VI_DEF|P_VIM|P_RBUF,
2330 (char_u *)&p_siso, PV_NONE,
2331 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2332 {"slowopen", "slow", P_BOOL|P_VI_DEF,
2333 (char_u *)NULL, PV_NONE,
2334 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2335 {"smartcase", "scs", P_BOOL|P_VI_DEF|P_VIM,
2336 (char_u *)&p_scs, PV_NONE,
2337 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2338 {"smartindent", "si", P_BOOL|P_VI_DEF|P_VIM,
2339 #ifdef FEAT_SMARTINDENT
2340 (char_u *)&p_si, PV_SI,
2341 #else
2342 (char_u *)NULL, PV_NONE,
2343 #endif
2344 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2345 {"smarttab", "sta", P_BOOL|P_VI_DEF|P_VIM,
2346 (char_u *)&p_sta, PV_NONE,
2347 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2348 {"softtabstop", "sts", P_NUM|P_VI_DEF|P_VIM,
2349 (char_u *)&p_sts, PV_STS,
2350 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2351 {"sourceany", NULL, P_BOOL|P_VI_DEF,
2352 (char_u *)NULL, PV_NONE,
2353 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2354 {"spell", NULL, P_BOOL|P_VI_DEF|P_RWIN,
2355 #ifdef FEAT_SPELL
2356 (char_u *)VAR_WIN, PV_SPELL,
2357 #else
2358 (char_u *)NULL, PV_NONE,
2359 #endif
2360 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2361 {"spellcapcheck", "spc", P_STRING|P_ALLOCED|P_VI_DEF|P_RBUF,
2362 #ifdef FEAT_SPELL
2363 (char_u *)&p_spc, PV_SPC,
2364 {(char_u *)"[.?!]\\_[\\])'\" ]\\+", (char_u *)0L}
2365 #else
2366 (char_u *)NULL, PV_NONE,
2367 {(char_u *)0L, (char_u *)0L}
2368 #endif
2369 SCRIPTID_INIT},
2370 {"spellfile", "spf", P_STRING|P_EXPAND|P_ALLOCED|P_VI_DEF|P_SECURE|P_COMMA,
2371 #ifdef FEAT_SPELL
2372 (char_u *)&p_spf, PV_SPF,
2373 {(char_u *)"", (char_u *)0L}
2374 #else
2375 (char_u *)NULL, PV_NONE,
2376 {(char_u *)0L, (char_u *)0L}
2377 #endif
2378 SCRIPTID_INIT},
2379 {"spelllang", "spl", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_RBUF|P_EXPAND,
2380 #ifdef FEAT_SPELL
2381 (char_u *)&p_spl, PV_SPL,
2382 {(char_u *)"en", (char_u *)0L}
2383 #else
2384 (char_u *)NULL, PV_NONE,
2385 {(char_u *)0L, (char_u *)0L}
2386 #endif
2387 SCRIPTID_INIT},
2388 {"spellsuggest", "sps", P_STRING|P_VI_DEF|P_EXPAND|P_SECURE|P_COMMA,
2389 #ifdef FEAT_SPELL
2390 (char_u *)&p_sps, PV_NONE,
2391 {(char_u *)"best", (char_u *)0L}
2392 #else
2393 (char_u *)NULL, PV_NONE,
2394 {(char_u *)0L, (char_u *)0L}
2395 #endif
2396 SCRIPTID_INIT},
2397 {"splitbelow", "sb", P_BOOL|P_VI_DEF,
2398 #ifdef FEAT_WINDOWS
2399 (char_u *)&p_sb, PV_NONE,
2400 #else
2401 (char_u *)NULL, PV_NONE,
2402 #endif
2403 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2404 {"splitright", "spr", P_BOOL|P_VI_DEF,
2405 #ifdef FEAT_VERTSPLIT
2406 (char_u *)&p_spr, PV_NONE,
2407 #else
2408 (char_u *)NULL, PV_NONE,
2409 #endif
2410 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2411 {"startofline", "sol", P_BOOL|P_VI_DEF|P_VIM,
2412 (char_u *)&p_sol, PV_NONE,
2413 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2414 {"statusline" ,"stl", P_STRING|P_VI_DEF|P_ALLOCED|P_RSTAT,
2415 #ifdef FEAT_STL_OPT
2416 (char_u *)&p_stl, PV_STL,
2417 #else
2418 (char_u *)NULL, PV_NONE,
2419 #endif
2420 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2421 {"suffixes", "su", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2422 (char_u *)&p_su, PV_NONE,
2423 {(char_u *)".bak,~,.o,.h,.info,.swp,.obj",
2424 (char_u *)0L} SCRIPTID_INIT},
2425 {"suffixesadd", "sua", P_STRING|P_VI_DEF|P_ALLOCED|P_COMMA|P_NODUP,
2426 #ifdef FEAT_SEARCHPATH
2427 (char_u *)&p_sua, PV_SUA,
2428 {(char_u *)"", (char_u *)0L}
2429 #else
2430 (char_u *)NULL, PV_NONE,
2431 {(char_u *)0L, (char_u *)0L}
2432 #endif
2433 SCRIPTID_INIT},
2434 {"swapfile", "swf", P_BOOL|P_VI_DEF|P_RSTAT,
2435 (char_u *)&p_swf, PV_SWF,
2436 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2437 {"swapsync", "sws", P_STRING|P_VI_DEF,
2438 (char_u *)&p_sws, PV_NONE,
2439 {(char_u *)"fsync", (char_u *)0L} SCRIPTID_INIT},
2440 {"switchbuf", "swb", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2441 (char_u *)&p_swb, PV_NONE,
2442 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2443 {"synmaxcol", "smc", P_NUM|P_VI_DEF|P_RBUF,
2444 #ifdef FEAT_SYN_HL
2445 (char_u *)&p_smc, PV_SMC,
2446 {(char_u *)3000L, (char_u *)0L}
2447 #else
2448 (char_u *)NULL, PV_NONE,
2449 {(char_u *)0L, (char_u *)0L}
2450 #endif
2451 SCRIPTID_INIT},
2452 {"syntax", "syn", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB|P_NFNAME,
2453 #ifdef FEAT_SYN_HL
2454 (char_u *)&p_syn, PV_SYN,
2455 {(char_u *)"", (char_u *)0L}
2456 #else
2457 (char_u *)NULL, PV_NONE,
2458 {(char_u *)0L, (char_u *)0L}
2459 #endif
2460 SCRIPTID_INIT},
2461 {"tabline", "tal", P_STRING|P_VI_DEF|P_RALL,
2462 #ifdef FEAT_STL_OPT
2463 (char_u *)&p_tal, PV_NONE,
2464 #else
2465 (char_u *)NULL, PV_NONE,
2466 #endif
2467 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2468 {"tabpagemax", "tpm", P_NUM|P_VI_DEF,
2469 #ifdef FEAT_WINDOWS
2470 (char_u *)&p_tpm, PV_NONE,
2471 #else
2472 (char_u *)NULL, PV_NONE,
2473 #endif
2474 {(char_u *)10L, (char_u *)0L} SCRIPTID_INIT},
2475 {"tabstop", "ts", P_NUM|P_VI_DEF|P_RBUF,
2476 (char_u *)&p_ts, PV_TS,
2477 {(char_u *)8L, (char_u *)0L} SCRIPTID_INIT},
2478 {"tagbsearch", "tbs", P_BOOL|P_VI_DEF,
2479 (char_u *)&p_tbs, PV_NONE,
2480 #ifdef VMS /* binary searching doesn't appear to work on VMS */
2481 {(char_u *)0L, (char_u *)0L}
2482 #else
2483 {(char_u *)TRUE, (char_u *)0L}
2484 #endif
2485 SCRIPTID_INIT},
2486 {"taglength", "tl", P_NUM|P_VI_DEF,
2487 (char_u *)&p_tl, PV_NONE,
2488 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2489 {"tagrelative", "tr", P_BOOL|P_VIM,
2490 (char_u *)&p_tr, PV_NONE,
2491 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
2492 {"tags", "tag", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
2493 (char_u *)&p_tags, PV_TAGS,
2495 #if defined(FEAT_EMACS_TAGS) && !defined(CASE_INSENSITIVE_FILENAME)
2496 (char_u *)"./tags,./TAGS,tags,TAGS",
2497 #else
2498 (char_u *)"./tags,tags",
2499 #endif
2500 (char_u *)0L} SCRIPTID_INIT},
2501 {"tagstack", "tgst", P_BOOL|P_VI_DEF,
2502 (char_u *)&p_tgst, PV_NONE,
2503 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2504 {"term", NULL, P_STRING|P_EXPAND|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RALL,
2505 (char_u *)&T_NAME, PV_NONE,
2506 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2507 {"termbidi", "tbidi", P_BOOL|P_VI_DEF,
2508 #ifdef FEAT_ARABIC
2509 (char_u *)&p_tbidi, PV_NONE,
2510 #else
2511 (char_u *)NULL, PV_NONE,
2512 #endif
2513 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2514 {"termencoding", "tenc", P_STRING|P_VI_DEF|P_RCLR,
2515 #ifdef FEAT_MBYTE
2516 (char_u *)&p_tenc, PV_NONE,
2517 {(char_u *)"", (char_u *)0L}
2518 #else
2519 (char_u *)NULL, PV_NONE,
2520 {(char_u *)0L, (char_u *)0L}
2521 #endif
2522 SCRIPTID_INIT},
2523 {"terse", NULL, P_BOOL|P_VI_DEF,
2524 (char_u *)&p_terse, PV_NONE,
2525 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2526 {"textauto", "ta", P_BOOL|P_VIM,
2527 (char_u *)&p_ta, PV_NONE,
2528 {(char_u *)DFLT_TEXTAUTO, (char_u *)TRUE}
2529 SCRIPTID_INIT},
2530 {"textmode", "tx", P_BOOL|P_VI_DEF|P_NO_MKRC,
2531 (char_u *)&p_tx, PV_TX,
2533 #ifdef USE_CRNL
2534 (char_u *)TRUE,
2535 #else
2536 (char_u *)FALSE,
2537 #endif
2538 (char_u *)0L} SCRIPTID_INIT},
2539 {"textwidth", "tw", P_NUM|P_VI_DEF|P_VIM,
2540 (char_u *)&p_tw, PV_TW,
2541 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2542 {"thesaurus", "tsr", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
2543 #ifdef FEAT_INS_EXPAND
2544 (char_u *)&p_tsr, PV_TSR,
2545 #else
2546 (char_u *)NULL, PV_NONE,
2547 #endif
2548 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2549 {"tildeop", "top", P_BOOL|P_VI_DEF|P_VIM,
2550 (char_u *)&p_to, PV_NONE,
2551 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2552 {"timeout", "to", P_BOOL|P_VI_DEF,
2553 (char_u *)&p_timeout, PV_NONE,
2554 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2555 {"timeoutlen", "tm", P_NUM|P_VI_DEF,
2556 (char_u *)&p_tm, PV_NONE,
2557 {(char_u *)1000L, (char_u *)0L} SCRIPTID_INIT},
2558 {"title", NULL, P_BOOL|P_VI_DEF,
2559 #ifdef FEAT_TITLE
2560 (char_u *)&p_title, PV_NONE,
2561 #else
2562 (char_u *)NULL, PV_NONE,
2563 #endif
2564 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2565 {"titlelen", NULL, P_NUM|P_VI_DEF,
2566 #ifdef FEAT_TITLE
2567 (char_u *)&p_titlelen, PV_NONE,
2568 #else
2569 (char_u *)NULL, PV_NONE,
2570 #endif
2571 {(char_u *)85L, (char_u *)0L} SCRIPTID_INIT},
2572 {"titleold", NULL, P_STRING|P_VI_DEF|P_GETTEXT|P_SECURE|P_NO_MKRC,
2573 #ifdef FEAT_TITLE
2574 (char_u *)&p_titleold, PV_NONE,
2575 {(char_u *)N_("Thanks for flying Vim"),
2576 (char_u *)0L}
2577 #else
2578 (char_u *)NULL, PV_NONE,
2579 {(char_u *)0L, (char_u *)0L}
2580 #endif
2581 SCRIPTID_INIT},
2582 {"titlestring", NULL, P_STRING|P_VI_DEF,
2583 #ifdef FEAT_TITLE
2584 (char_u *)&p_titlestring, PV_NONE,
2585 #else
2586 (char_u *)NULL, PV_NONE,
2587 #endif
2588 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2589 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
2590 {"toolbar", "tb", P_STRING|P_COMMA|P_VI_DEF|P_NODUP,
2591 (char_u *)&p_toolbar, PV_NONE,
2592 {(char_u *)"icons,tooltips", (char_u *)0L}
2593 SCRIPTID_INIT},
2594 #endif
2595 #if defined(FEAT_TOOLBAR) && ((defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)) \
2596 || defined(FEAT_GUI_MACVIM))
2597 {"toolbariconsize", "tbis", P_STRING|P_VI_DEF,
2598 (char_u *)&p_tbis, PV_NONE,
2599 {(char_u *)"small", (char_u *)0L} SCRIPTID_INIT},
2600 #endif
2601 {"transparency", "transp", P_NUM|P_VIM|P_RCLR,
2602 #ifdef FEAT_TRANSPARENCY
2603 (char_u *)&p_transp, PV_NONE,
2604 #else
2605 (char_u *)NULL, PV_NONE,
2606 #endif
2607 {(char_u *)0L, (char_u *)0L} },
2608 {"ttimeout", NULL, P_BOOL|P_VI_DEF|P_VIM,
2609 (char_u *)&p_ttimeout, PV_NONE,
2610 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2611 {"ttimeoutlen", "ttm", P_NUM|P_VI_DEF,
2612 (char_u *)&p_ttm, PV_NONE,
2613 {(char_u *)-1L, (char_u *)0L} SCRIPTID_INIT},
2614 {"ttybuiltin", "tbi", P_BOOL|P_VI_DEF,
2615 (char_u *)&p_tbi, PV_NONE,
2616 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2617 {"ttyfast", "tf", P_BOOL|P_NO_MKRC|P_VI_DEF,
2618 (char_u *)&p_tf, PV_NONE,
2619 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2620 {"ttymouse", "ttym", P_STRING|P_NODEFAULT|P_NO_MKRC|P_VI_DEF,
2621 #if defined(FEAT_MOUSE) && (defined(UNIX) || defined(VMS))
2622 (char_u *)&p_ttym, PV_NONE,
2623 #else
2624 (char_u *)NULL, PV_NONE,
2625 #endif
2626 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2627 {"ttyscroll", "tsl", P_NUM|P_VI_DEF,
2628 (char_u *)&p_ttyscroll, PV_NONE,
2629 {(char_u *)999L, (char_u *)0L} SCRIPTID_INIT},
2630 {"ttytype", "tty", P_STRING|P_EXPAND|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RALL,
2631 (char_u *)&T_NAME, PV_NONE,
2632 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2633 {"undolevels", "ul", P_NUM|P_VI_DEF,
2634 (char_u *)&p_ul, PV_NONE,
2636 #if defined(UNIX) || defined(WIN3264) || defined(OS2) || defined(VMS)
2637 (char_u *)1000L,
2638 #else
2639 (char_u *)100L,
2640 #endif
2641 (char_u *)0L} SCRIPTID_INIT},
2642 {"updatecount", "uc", P_NUM|P_VI_DEF,
2643 (char_u *)&p_uc, PV_NONE,
2644 {(char_u *)200L, (char_u *)0L} SCRIPTID_INIT},
2645 {"updatetime", "ut", P_NUM|P_VI_DEF,
2646 (char_u *)&p_ut, PV_NONE,
2647 {(char_u *)4000L, (char_u *)0L} SCRIPTID_INIT},
2648 {"verbose", "vbs", P_NUM|P_VI_DEF,
2649 (char_u *)&p_verbose, PV_NONE,
2650 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2651 {"verbosefile", "vfile", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
2652 (char_u *)&p_vfile, PV_NONE,
2653 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2654 {"viewdir", "vdir", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
2655 #ifdef FEAT_SESSION
2656 (char_u *)&p_vdir, PV_NONE,
2657 {(char_u *)DFLT_VDIR, (char_u *)0L}
2658 #else
2659 (char_u *)NULL, PV_NONE,
2660 {(char_u *)0L, (char_u *)0L}
2661 #endif
2662 SCRIPTID_INIT},
2663 {"viewoptions", "vop", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2664 #ifdef FEAT_SESSION
2665 (char_u *)&p_vop, PV_NONE,
2666 {(char_u *)"folds,options,cursor", (char_u *)0L}
2667 #else
2668 (char_u *)NULL, PV_NONE,
2669 {(char_u *)0L, (char_u *)0L}
2670 #endif
2671 SCRIPTID_INIT},
2672 {"viminfo", "vi", P_STRING|P_COMMA|P_NODUP|P_SECURE,
2673 #ifdef FEAT_VIMINFO
2674 (char_u *)&p_viminfo, PV_NONE,
2675 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
2676 {(char_u *)"", (char_u *)"'100,<50,s10,h,rA:,rB:"}
2677 #else
2678 # ifdef AMIGA
2679 {(char_u *)"",
2680 (char_u *)"'100,<50,s10,h,rdf0:,rdf1:,rdf2:"}
2681 # else
2682 {(char_u *)"", (char_u *)"'100,<50,s10,h"}
2683 # endif
2684 #endif
2685 #else
2686 (char_u *)NULL, PV_NONE,
2687 {(char_u *)0L, (char_u *)0L}
2688 #endif
2689 SCRIPTID_INIT},
2690 {"virtualedit", "ve", P_STRING|P_COMMA|P_NODUP|P_VI_DEF|P_VIM,
2691 #ifdef FEAT_VIRTUALEDIT
2692 (char_u *)&p_ve, PV_NONE,
2693 {(char_u *)"", (char_u *)""}
2694 #else
2695 (char_u *)NULL, PV_NONE,
2696 {(char_u *)0L, (char_u *)0L}
2697 #endif
2698 SCRIPTID_INIT},
2699 {"visualbell", "vb", P_BOOL|P_VI_DEF,
2700 (char_u *)&p_vb, PV_NONE,
2701 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2702 {"w300", NULL, P_NUM|P_VI_DEF,
2703 (char_u *)NULL, PV_NONE,
2704 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2705 {"w1200", NULL, P_NUM|P_VI_DEF,
2706 (char_u *)NULL, PV_NONE,
2707 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2708 {"w9600", NULL, P_NUM|P_VI_DEF,
2709 (char_u *)NULL, PV_NONE,
2710 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2711 {"warn", NULL, P_BOOL|P_VI_DEF,
2712 (char_u *)&p_warn, PV_NONE,
2713 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2714 {"weirdinvert", "wiv", P_BOOL|P_VI_DEF|P_RCLR,
2715 (char_u *)&p_wiv, PV_NONE,
2716 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2717 {"whichwrap", "ww", P_STRING|P_VIM|P_COMMA|P_FLAGLIST,
2718 (char_u *)&p_ww, PV_NONE,
2719 {(char_u *)"", (char_u *)"b,s"} SCRIPTID_INIT},
2720 {"wildchar", "wc", P_NUM|P_VIM,
2721 (char_u *)&p_wc, PV_NONE,
2722 {(char_u *)(long)Ctrl_E, (char_u *)(long)TAB}
2723 SCRIPTID_INIT},
2724 {"wildcharm", "wcm", P_NUM|P_VI_DEF,
2725 (char_u *)&p_wcm, PV_NONE,
2726 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2727 {"wildignore", "wig", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2728 #ifdef FEAT_WILDIGN
2729 (char_u *)&p_wig, PV_NONE,
2730 #else
2731 (char_u *)NULL, PV_NONE,
2732 #endif
2733 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2734 {"wildmenu", "wmnu", P_BOOL|P_VI_DEF,
2735 #ifdef FEAT_WILDMENU
2736 (char_u *)&p_wmnu, PV_NONE,
2737 #else
2738 (char_u *)NULL, PV_NONE,
2739 #endif
2740 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2741 {"wildmode", "wim", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2742 (char_u *)&p_wim, PV_NONE,
2743 {(char_u *)"full", (char_u *)0L} SCRIPTID_INIT},
2744 {"wildoptions", "wop", P_STRING|P_VI_DEF,
2745 #ifdef FEAT_CMDL_COMPL
2746 (char_u *)&p_wop, PV_NONE,
2747 {(char_u *)"", (char_u *)0L}
2748 #else
2749 (char_u *)NULL, PV_NONE,
2750 {(char_u *)NULL, (char_u *)0L}
2751 #endif
2752 SCRIPTID_INIT},
2753 {"winaltkeys", "wak", P_STRING|P_VI_DEF,
2754 #ifdef FEAT_WAK
2755 (char_u *)&p_wak, PV_NONE,
2756 {(char_u *)"menu", (char_u *)0L}
2757 #else
2758 (char_u *)NULL, PV_NONE,
2759 {(char_u *)NULL, (char_u *)0L}
2760 #endif
2761 SCRIPTID_INIT},
2762 {"window", "wi", P_NUM|P_VI_DEF,
2763 (char_u *)&p_window, PV_NONE,
2764 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2765 {"winheight", "wh", P_NUM|P_VI_DEF,
2766 #ifdef FEAT_WINDOWS
2767 (char_u *)&p_wh, PV_NONE,
2768 #else
2769 (char_u *)NULL, PV_NONE,
2770 #endif
2771 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
2772 {"winfixheight", "wfh", P_BOOL|P_VI_DEF|P_RSTAT,
2773 #ifdef FEAT_WINDOWS
2774 (char_u *)VAR_WIN, PV_WFH,
2775 #else
2776 (char_u *)NULL, PV_NONE,
2777 #endif
2778 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2779 {"winfixwidth", "wfw", P_BOOL|P_VI_DEF|P_RSTAT,
2780 #ifdef FEAT_VERTSPLIT
2781 (char_u *)VAR_WIN, PV_WFW,
2782 #else
2783 (char_u *)NULL, PV_NONE,
2784 #endif
2785 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2786 {"winminheight", "wmh", P_NUM|P_VI_DEF,
2787 #ifdef FEAT_WINDOWS
2788 (char_u *)&p_wmh, PV_NONE,
2789 #else
2790 (char_u *)NULL, PV_NONE,
2791 #endif
2792 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
2793 {"winminwidth", "wmw", P_NUM|P_VI_DEF,
2794 #ifdef FEAT_VERTSPLIT
2795 (char_u *)&p_wmw, PV_NONE,
2796 #else
2797 (char_u *)NULL, PV_NONE,
2798 #endif
2799 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
2800 {"winwidth", "wiw", P_NUM|P_VI_DEF,
2801 #ifdef FEAT_VERTSPLIT
2802 (char_u *)&p_wiw, PV_NONE,
2803 #else
2804 (char_u *)NULL, PV_NONE,
2805 #endif
2806 {(char_u *)20L, (char_u *)0L} SCRIPTID_INIT},
2807 {"wrap", NULL, P_BOOL|P_VI_DEF|P_RWIN,
2808 (char_u *)VAR_WIN, PV_WRAP,
2809 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2810 {"wrapmargin", "wm", P_NUM|P_VI_DEF,
2811 (char_u *)&p_wm, PV_WM,
2812 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2813 {"wrapscan", "ws", P_BOOL|P_VI_DEF,
2814 (char_u *)&p_ws, PV_NONE,
2815 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2816 {"write", NULL, P_BOOL|P_VI_DEF,
2817 (char_u *)&p_write, PV_NONE,
2818 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2819 {"writeany", "wa", P_BOOL|P_VI_DEF,
2820 (char_u *)&p_wa, PV_NONE,
2821 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2822 {"writebackup", "wb", P_BOOL|P_VI_DEF|P_VIM,
2823 (char_u *)&p_wb, PV_NONE,
2825 #ifdef FEAT_WRITEBACKUP
2826 (char_u *)TRUE,
2827 #else
2828 (char_u *)FALSE,
2829 #endif
2830 (char_u *)0L} SCRIPTID_INIT},
2831 {"writedelay", "wd", P_NUM|P_VI_DEF,
2832 (char_u *)&p_wd, PV_NONE,
2833 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2835 /* terminal output codes */
2836 #define p_term(sss, vvv) {sss, NULL, P_STRING|P_VI_DEF|P_RALL|P_SECURE, \
2837 (char_u *)&vvv, PV_NONE, \
2838 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2840 p_term("t_AB", T_CAB)
2841 p_term("t_AF", T_CAF)
2842 p_term("t_AL", T_CAL)
2843 p_term("t_al", T_AL)
2844 p_term("t_bc", T_BC)
2845 p_term("t_cd", T_CD)
2846 p_term("t_ce", T_CE)
2847 p_term("t_cl", T_CL)
2848 p_term("t_cm", T_CM)
2849 p_term("t_Co", T_CCO)
2850 p_term("t_CS", T_CCS)
2851 p_term("t_cs", T_CS)
2852 #ifdef FEAT_VERTSPLIT
2853 p_term("t_CV", T_CSV)
2854 #endif
2855 p_term("t_ut", T_UT)
2856 p_term("t_da", T_DA)
2857 p_term("t_db", T_DB)
2858 p_term("t_DL", T_CDL)
2859 p_term("t_dl", T_DL)
2860 p_term("t_fs", T_FS)
2861 p_term("t_IE", T_CIE)
2862 p_term("t_IS", T_CIS)
2863 p_term("t_ke", T_KE)
2864 p_term("t_ks", T_KS)
2865 p_term("t_le", T_LE)
2866 p_term("t_mb", T_MB)
2867 p_term("t_md", T_MD)
2868 p_term("t_me", T_ME)
2869 p_term("t_mr", T_MR)
2870 p_term("t_ms", T_MS)
2871 p_term("t_nd", T_ND)
2872 p_term("t_op", T_OP)
2873 p_term("t_RI", T_CRI)
2874 p_term("t_RV", T_CRV)
2875 p_term("t_Sb", T_CSB)
2876 p_term("t_Sf", T_CSF)
2877 p_term("t_se", T_SE)
2878 p_term("t_so", T_SO)
2879 p_term("t_sr", T_SR)
2880 p_term("t_ts", T_TS)
2881 p_term("t_te", T_TE)
2882 p_term("t_ti", T_TI)
2883 p_term("t_ue", T_UE)
2884 p_term("t_us", T_US)
2885 p_term("t_vb", T_VB)
2886 p_term("t_ve", T_VE)
2887 p_term("t_vi", T_VI)
2888 p_term("t_vs", T_VS)
2889 p_term("t_WP", T_CWP)
2890 p_term("t_WS", T_CWS)
2891 p_term("t_SI", T_CSI)
2892 p_term("t_EI", T_CEI)
2893 p_term("t_xs", T_XS)
2894 p_term("t_ZH", T_CZH)
2895 p_term("t_ZR", T_CZR)
2897 /* terminal key codes are not in here */
2899 /* end marker */
2900 {NULL, NULL, 0, NULL, PV_NONE, {NULL, NULL} SCRIPTID_INIT}
2903 #define PARAM_COUNT (sizeof(options) / sizeof(struct vimoption))
2905 #ifdef FEAT_MBYTE
2906 static char *(p_ambw_values[]) = {"single", "double",
2907 # ifdef USE_AMBIWIDTH_AUTO
2908 "auto",
2909 # endif
2910 NULL};
2911 #endif
2912 static char *(p_bg_values[]) = {"light", "dark", NULL};
2913 static char *(p_nf_values[]) = {"octal", "hex", "alpha", NULL};
2914 static char *(p_ff_values[]) = {FF_UNIX, FF_DOS, FF_MAC, NULL};
2915 #ifdef FEAT_CMDL_COMPL
2916 static char *(p_wop_values[]) = {"tagfile", NULL};
2917 #endif
2918 #ifdef FEAT_WAK
2919 static char *(p_wak_values[]) = {"yes", "menu", "no", NULL};
2920 #endif
2921 static char *(p_mousem_values[]) = {"extend", "popup", "popup_setpos", "mac", NULL};
2922 #ifdef FEAT_VISUAL
2923 static char *(p_sel_values[]) = {"inclusive", "exclusive", "old", NULL};
2924 static char *(p_slm_values[]) = {"mouse", "key", "cmd", NULL};
2925 #endif
2926 #ifdef FEAT_VISUAL
2927 static char *(p_km_values[]) = {"startsel", "stopsel", NULL};
2928 #endif
2929 #ifdef FEAT_BROWSE
2930 static char *(p_bsdir_values[]) = {"current", "last", "buffer", NULL};
2931 #endif
2932 #ifdef FEAT_SCROLLBIND
2933 static char *(p_scbopt_values[]) = {"ver", "hor", "jump", NULL};
2934 #endif
2935 static char *(p_debug_values[]) = {"msg", "throw", "beep", NULL};
2936 #ifdef FEAT_VERTSPLIT
2937 static char *(p_ead_values[]) = {"both", "ver", "hor", NULL};
2938 #endif
2939 #if defined(FEAT_QUICKFIX)
2940 # ifdef FEAT_AUTOCMD
2941 static char *(p_buftype_values[]) = {"nofile", "nowrite", "quickfix", "help", "acwrite", NULL};
2942 # else
2943 static char *(p_buftype_values[]) = {"nofile", "nowrite", "quickfix", "help", NULL};
2944 # endif
2945 static char *(p_bufhidden_values[]) = {"hide", "unload", "delete", "wipe", NULL};
2946 #endif
2947 static char *(p_bs_values[]) = {"indent", "eol", "start", NULL};
2948 #ifdef FEAT_FOLDING
2949 static char *(p_fdm_values[]) = {"manual", "expr", "marker", "indent", "syntax",
2950 # ifdef FEAT_DIFF
2951 "diff",
2952 # endif
2953 NULL};
2954 static char *(p_fcl_values[]) = {"all", NULL};
2955 #endif
2956 #ifdef FEAT_INS_EXPAND
2957 static char *(p_cot_values[]) = {"menu", "menuone", "longest", "preview", NULL};
2958 #endif
2960 static void set_option_default __ARGS((int, int opt_flags, int compatible));
2961 static void set_options_default __ARGS((int opt_flags));
2962 static char_u *term_bg_default __ARGS((void));
2963 static void did_set_option __ARGS((int opt_idx, int opt_flags, int new_value));
2964 static char_u *illegal_char __ARGS((char_u *, int));
2965 static int string_to_key __ARGS((char_u *arg));
2966 #ifdef FEAT_CMDWIN
2967 static char_u *check_cedit __ARGS((void));
2968 #endif
2969 #ifdef FEAT_TITLE
2970 static void did_set_title __ARGS((int icon));
2971 #endif
2972 static char_u *option_expand __ARGS((int opt_idx, char_u *val));
2973 static void didset_options __ARGS((void));
2974 static void check_string_option __ARGS((char_u **pp));
2975 #if defined(FEAT_EVAL) || defined(PROTO)
2976 static long_u *insecure_flag __ARGS((int opt_idx, int opt_flags));
2977 #else
2978 # define insecure_flag(opt_idx, opt_flags) (&options[opt_idx].flags)
2979 #endif
2980 static void set_string_option_global __ARGS((int opt_idx, char_u **varp));
2981 static void set_string_option __ARGS((int opt_idx, char_u *value, int opt_flags));
2982 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));
2983 static char_u *set_chars_option __ARGS((char_u **varp));
2984 #ifdef FEAT_CLIPBOARD
2985 static char_u *check_clipboard_option __ARGS((void));
2986 #endif
2987 #ifdef FEAT_SPELL
2988 static char_u *compile_cap_prog __ARGS((buf_T *buf));
2989 #endif
2990 #ifdef FEAT_EVAL
2991 static void set_option_scriptID_idx __ARGS((int opt_idx, int opt_flags, int id));
2992 #endif
2993 static char_u *set_bool_option __ARGS((int opt_idx, char_u *varp, int value, int opt_flags));
2994 static char_u *set_num_option __ARGS((int opt_idx, char_u *varp, long value, char_u *errbuf, size_t errbuflen, int opt_flags));
2995 static void check_redraw __ARGS((long_u flags));
2996 static int findoption __ARGS((char_u *));
2997 static int find_key_option __ARGS((char_u *));
2998 static void showoptions __ARGS((int all, int opt_flags));
2999 static int optval_default __ARGS((struct vimoption *, char_u *varp));
3000 static void showoneopt __ARGS((struct vimoption *, int opt_flags));
3001 static int put_setstring __ARGS((FILE *fd, char *cmd, char *name, char_u **valuep, int expand));
3002 static int put_setnum __ARGS((FILE *fd, char *cmd, char *name, long *valuep));
3003 static int put_setbool __ARGS((FILE *fd, char *cmd, char *name, int value));
3004 static int istermoption __ARGS((struct vimoption *));
3005 static char_u *get_varp_scope __ARGS((struct vimoption *p, int opt_flags));
3006 static char_u *get_varp __ARGS((struct vimoption *));
3007 static void option_value2string __ARGS((struct vimoption *, int opt_flags));
3008 static int wc_use_keyname __ARGS((char_u *varp, long *wcp));
3009 #ifdef FEAT_LANGMAP
3010 static void langmap_init __ARGS((void));
3011 static void langmap_set __ARGS((void));
3012 #endif
3013 static void paste_option_changed __ARGS((void));
3014 static void compatible_set __ARGS((void));
3015 #ifdef FEAT_LINEBREAK
3016 static void fill_breakat_flags __ARGS((void));
3017 #endif
3018 static int opt_strings_flags __ARGS((char_u *val, char **values, unsigned *flagp, int list));
3019 static int check_opt_strings __ARGS((char_u *val, char **values, int));
3020 static int check_opt_wim __ARGS((void));
3021 #ifdef FEAT_FULLSCREEN
3022 static int check_fuoptions __ARGS((char_u *, unsigned *, int *));
3023 #endif
3026 * Initialize the options, first part.
3028 * Called only once from main(), just after creating the first buffer.
3030 void
3031 set_init_1()
3033 char_u *p;
3034 int opt_idx;
3035 long_u n;
3036 #if defined(FEAT_GUI_MACVIM) && defined(FEAT_MBYTE)
3037 int did_mb_init;
3038 #endif
3040 #ifdef FEAT_LANGMAP
3041 langmap_init();
3042 #endif
3044 /* Be Vi compatible by default */
3045 p_cp = TRUE;
3047 /* Use POSIX compatibility when $VIM_POSIX is set. */
3048 if (mch_getenv((char_u *)"VIM_POSIX") != NULL)
3050 set_string_default("cpo", (char_u *)CPO_ALL);
3051 set_string_default("shm", (char_u *)"A");
3055 * Find default value for 'shell' option.
3056 * Don't use it if it is empty.
3058 if (((p = mch_getenv((char_u *)"SHELL")) != NULL && *p != NUL)
3059 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
3060 # ifdef __EMX__
3061 || ((p = mch_getenv((char_u *)"EMXSHELL")) != NULL && *p != NUL)
3062 # endif
3063 || ((p = mch_getenv((char_u *)"COMSPEC")) != NULL && *p != NUL)
3064 # ifdef WIN3264
3065 || ((p = default_shell()) != NULL && *p != NUL)
3066 # endif
3067 #endif
3069 set_string_default("sh", p);
3071 #ifdef FEAT_WILDIGN
3073 * Set the default for 'backupskip' to include environment variables for
3074 * temp files.
3077 # ifdef UNIX
3078 static char *(names[4]) = {"", "TMPDIR", "TEMP", "TMP"};
3079 # else
3080 static char *(names[3]) = {"TMPDIR", "TEMP", "TMP"};
3081 # endif
3082 int len;
3083 garray_T ga;
3084 int mustfree;
3086 ga_init2(&ga, 1, 100);
3087 for (n = 0; n < (long)(sizeof(names) / sizeof(char *)); ++n)
3089 mustfree = FALSE;
3090 # ifdef UNIX
3091 if (*names[n] == NUL)
3092 p = (char_u *)"/tmp";
3093 else
3094 # endif
3095 p = vim_getenv((char_u *)names[n], &mustfree);
3096 if (p != NULL && *p != NUL)
3098 /* First time count the NUL, otherwise count the ','. */
3099 len = (int)STRLEN(p) + 3;
3100 if (ga_grow(&ga, len) == OK)
3102 if (ga.ga_len > 0)
3103 STRCAT(ga.ga_data, ",");
3104 STRCAT(ga.ga_data, p);
3105 add_pathsep(ga.ga_data);
3106 STRCAT(ga.ga_data, "*");
3107 ga.ga_len += len;
3110 if (mustfree)
3111 vim_free(p);
3113 if (ga.ga_data != NULL)
3115 set_string_default("bsk", ga.ga_data);
3116 vim_free(ga.ga_data);
3119 #endif
3122 * 'maxmemtot' and 'maxmem' may have to be adjusted for available memory
3124 opt_idx = findoption((char_u *)"maxmemtot");
3125 if (opt_idx >= 0)
3127 #if !defined(HAVE_AVAIL_MEM) && !defined(HAVE_TOTAL_MEM)
3128 if (options[opt_idx].def_val[VI_DEFAULT] == (char_u *)0L)
3129 #endif
3131 #ifdef HAVE_AVAIL_MEM
3132 /* Use amount of memory available at this moment. */
3133 n = (mch_avail_mem(FALSE) >> 11);
3134 #else
3135 # ifdef HAVE_TOTAL_MEM
3136 /* Use amount of memory available to Vim. */
3137 n = (mch_total_mem(FALSE) >> 1);
3138 # else
3139 n = (0x7fffffff >> 11);
3140 # endif
3141 #endif
3142 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)n;
3143 opt_idx = findoption((char_u *)"maxmem");
3144 if (opt_idx >= 0)
3146 #if !defined(HAVE_AVAIL_MEM) && !defined(HAVE_TOTAL_MEM)
3147 if ((long)options[opt_idx].def_val[VI_DEFAULT] > n
3148 || (long)options[opt_idx].def_val[VI_DEFAULT] == 0L)
3149 #endif
3150 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)n;
3155 #ifdef FEAT_GUI_W32
3156 /* force 'shortname' for Win32s */
3157 if (gui_is_win32s())
3159 opt_idx = findoption((char_u *)"shortname");
3160 if (opt_idx >= 0)
3161 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)TRUE;
3163 #endif
3165 #ifdef FEAT_SEARCHPATH
3167 char_u *cdpath;
3168 char_u *buf;
3169 int i;
3170 int j;
3171 int mustfree = FALSE;
3173 /* Initialize the 'cdpath' option's default value. */
3174 cdpath = vim_getenv((char_u *)"CDPATH", &mustfree);
3175 if (cdpath != NULL)
3177 buf = alloc((unsigned)((STRLEN(cdpath) << 1) + 2));
3178 if (buf != NULL)
3180 buf[0] = ','; /* start with ",", current dir first */
3181 j = 1;
3182 for (i = 0; cdpath[i] != NUL; ++i)
3184 if (vim_ispathlistsep(cdpath[i]))
3185 buf[j++] = ',';
3186 else
3188 if (cdpath[i] == ' ' || cdpath[i] == ',')
3189 buf[j++] = '\\';
3190 buf[j++] = cdpath[i];
3193 buf[j] = NUL;
3194 opt_idx = findoption((char_u *)"cdpath");
3195 if (opt_idx >= 0)
3197 options[opt_idx].def_val[VI_DEFAULT] = buf;
3198 options[opt_idx].flags |= P_DEF_ALLOCED;
3201 if (mustfree)
3202 vim_free(cdpath);
3205 #endif
3207 #if defined(FEAT_POSTSCRIPT) && (defined(MSWIN) || defined(OS2) || defined(VMS) || defined(EBCDIC) || defined(MAC) || defined(hpux))
3208 /* Set print encoding on platforms that don't default to latin1 */
3209 set_string_default("penc",
3210 # if defined(MSWIN) || defined(OS2)
3211 (char_u *)"cp1252"
3212 # else
3213 # ifdef VMS
3214 (char_u *)"dec-mcs"
3215 # else
3216 # ifdef EBCDIC
3217 (char_u *)"ebcdic-uk"
3218 # else
3219 # ifdef MAC
3220 (char_u *)"mac-roman"
3221 # else /* HPUX */
3222 (char_u *)"hp-roman8"
3223 # endif
3224 # endif
3225 # endif
3226 # endif
3228 #endif
3230 #ifdef FEAT_POSTSCRIPT
3231 /* 'printexpr' must be allocated to be able to evaluate it. */
3232 set_string_default("pexpr",
3233 # if defined(MSWIN) || defined(MSDOS) || defined(OS2)
3234 (char_u *)"system('copy' . ' ' . v:fname_in . (&printdevice == '' ? ' LPT1:' : (' \"' . &printdevice . '\"'))) . delete(v:fname_in)"
3235 # else
3236 # ifdef VMS
3237 (char_u *)"system('print/delete' . (&printdevice == '' ? '' : ' /queue=' . &printdevice) . ' ' . v:fname_in)"
3239 # else
3240 (char_u *)"system('lpr' . (&printdevice == '' ? '' : ' -P' . &printdevice) . ' ' . v:fname_in) . delete(v:fname_in) + v:shell_error"
3241 # endif
3242 # endif
3244 #endif
3247 * Set all the options (except the terminal options) to their default
3248 * value. Also set the global value for local options.
3250 set_options_default(0);
3252 #ifdef FEAT_GUI
3253 if (found_reverse_arg)
3254 set_option_value((char_u *)"bg", 0L, (char_u *)"dark", 0);
3255 #endif
3257 curbuf->b_p_initialized = TRUE;
3258 curbuf->b_p_ar = -1; /* no local 'autoread' value */
3259 check_buf_options(curbuf);
3260 check_win_options(curwin);
3261 check_options();
3263 /* Must be before option_expand(), because that one needs vim_isIDc() */
3264 didset_options();
3266 #ifdef FEAT_SPELL
3267 /* Use the current chartab for the generic chartab. */
3268 init_spell_chartab();
3269 #endif
3271 #ifdef FEAT_LINEBREAK
3273 * initialize the table for 'breakat'.
3275 fill_breakat_flags();
3276 #endif
3279 * Expand environment variables and things like "~" for the defaults.
3280 * If option_expand() returns non-NULL the variable is expanded. This can
3281 * only happen for non-indirect options.
3282 * Also set the default to the expanded value, so ":set" does not list
3283 * them.
3284 * Don't set the P_ALLOCED flag, because we don't want to free the
3285 * default.
3287 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
3289 if ((options[opt_idx].flags & P_GETTEXT)
3290 && options[opt_idx].var != NULL)
3291 p = (char_u *)_(*(char **)options[opt_idx].var);
3292 else
3293 p = option_expand(opt_idx, NULL);
3294 if (p != NULL && (p = vim_strsave(p)) != NULL)
3296 *(char_u **)options[opt_idx].var = p;
3297 /* VIMEXP
3298 * Defaults for all expanded options are currently the same for Vi
3299 * and Vim. When this changes, add some code here! Also need to
3300 * split P_DEF_ALLOCED in two.
3302 if (options[opt_idx].flags & P_DEF_ALLOCED)
3303 vim_free(options[opt_idx].def_val[VI_DEFAULT]);
3304 options[opt_idx].def_val[VI_DEFAULT] = p;
3305 options[opt_idx].flags |= P_DEF_ALLOCED;
3309 /* Initialize the highlight_attr[] table. */
3310 highlight_changed();
3312 save_file_ff(curbuf); /* Buffer is unchanged */
3314 /* Parse default for 'wildmode' */
3315 check_opt_wim();
3317 #if defined(FEAT_ARABIC)
3318 /* Detect use of mlterm.
3319 * Mlterm is a terminal emulator akin to xterm that has some special
3320 * abilities (bidi namely).
3321 * NOTE: mlterm's author is being asked to 'set' a variable
3322 * instead of an environment variable due to inheritance.
3324 if (mch_getenv((char_u *)"MLTERM") != NULL)
3325 set_option_value((char_u *)"tbidi", 1L, NULL, 0);
3326 #endif
3328 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
3329 /* Parse default for 'fillchars'. */
3330 (void)set_chars_option(&p_fcs);
3331 #endif
3333 #ifdef FEAT_CLIPBOARD
3334 /* Parse default for 'clipboard' */
3335 (void)check_clipboard_option();
3336 #endif
3338 #ifdef FEAT_MBYTE
3339 # if defined(WIN3264) && defined(FEAT_GETTEXT)
3341 * If $LANG isn't set, try to get a good value for it. This makes the
3342 * right language be used automatically. Don't do this for English.
3344 if (mch_getenv((char_u *)"LANG") == NULL)
3346 char buf[20];
3348 /* Could use LOCALE_SISO639LANGNAME, but it's not in Win95.
3349 * LOCALE_SABBREVLANGNAME gives us three letters, like "enu", we use
3350 * only the first two. */
3351 n = GetLocaleInfo(LOCALE_USER_DEFAULT, LOCALE_SABBREVLANGNAME,
3352 (LPTSTR)buf, 20);
3353 if (n >= 2 && STRNICMP(buf, "en", 2) != 0)
3355 /* There are a few exceptions (probably more) */
3356 if (STRNICMP(buf, "cht", 3) == 0 || STRNICMP(buf, "zht", 3) == 0)
3357 STRCPY(buf, "zh_TW");
3358 else if (STRNICMP(buf, "chs", 3) == 0
3359 || STRNICMP(buf, "zhc", 3) == 0)
3360 STRCPY(buf, "zh_CN");
3361 else if (STRNICMP(buf, "jp", 2) == 0)
3362 STRCPY(buf, "ja");
3363 else
3364 buf[2] = NUL; /* truncate to two-letter code */
3365 vim_setenv("LANG", buf);
3368 # else
3369 # ifdef MACOS_CONVERT
3370 /* Moved to os_mac_conv.c to avoid dependency problems. */
3371 mac_lang_init();
3372 # endif
3373 # endif
3375 /* enc_locale() will try to find the encoding of the current locale. */
3376 p = enc_locale();
3377 if (p != NULL)
3379 char_u *save_enc;
3381 /* Try setting 'encoding' and check if the value is valid.
3382 * If not, go back to the default "latin1". */
3383 save_enc = p_enc;
3384 p_enc = p;
3385 if (STRCMP(p_enc, "gb18030") == 0)
3387 /* We don't support "gb18030", but "cp936" is a good substitute
3388 * for practical purposes, thus use that. It's not an alias to
3389 * still support conversion between gb18030 and utf-8. */
3390 p_enc = vim_strsave((char_u *)"cp936");
3391 vim_free(p);
3393 #if defined(FEAT_GUI_MACVIM)
3394 did_mb_init = (mb_init() == NULL);
3395 if (!did_mb_init)
3397 /* The encoding returned by enc_locale() was invalid, so fall back
3398 * on using utf-8 as the default encoding in MacVim. */
3399 vim_free(p_enc);
3400 p_enc = vim_strsave((char_u *)"utf-8");
3401 did_mb_init = (mb_init() == NULL);
3404 /* did_mb_init should always be TRUE, but check just in case. */
3405 if (did_mb_init)
3406 #else
3407 if (mb_init() == NULL)
3408 #endif
3410 opt_idx = findoption((char_u *)"encoding");
3411 if (opt_idx >= 0)
3413 options[opt_idx].def_val[VI_DEFAULT] = p_enc;
3414 options[opt_idx].flags |= P_DEF_ALLOCED;
3417 #if defined(MSDOS) || defined(MSWIN) || defined(OS2) || defined(MACOS) \
3418 || defined(VMS)
3419 if (STRCMP(p_enc, "latin1") == 0
3420 # ifdef FEAT_MBYTE
3421 || enc_utf8
3422 # endif
3425 /* Adjust the default for 'isprint' and 'iskeyword' to match
3426 * latin1. Also set the defaults for when 'nocompatible' is
3427 * set. */
3428 set_string_option_direct((char_u *)"isp", -1,
3429 ISP_LATIN1, OPT_FREE, SID_NONE);
3430 set_string_option_direct((char_u *)"isk", -1,
3431 ISK_LATIN1, OPT_FREE, SID_NONE);
3432 opt_idx = findoption((char_u *)"isp");
3433 if (opt_idx >= 0)
3434 options[opt_idx].def_val[VIM_DEFAULT] = ISP_LATIN1;
3435 opt_idx = findoption((char_u *)"isk");
3436 if (opt_idx >= 0)
3437 options[opt_idx].def_val[VIM_DEFAULT] = ISK_LATIN1;
3438 (void)init_chartab();
3440 #endif
3442 # if defined(WIN3264) && !defined(FEAT_GUI)
3443 /* Win32 console: When GetACP() returns a different value from
3444 * GetConsoleCP() set 'termencoding'. */
3445 if (GetACP() != GetConsoleCP())
3447 char buf[50];
3449 sprintf(buf, "cp%ld", (long)GetConsoleCP());
3450 p_tenc = vim_strsave((char_u *)buf);
3451 if (p_tenc != NULL)
3453 opt_idx = findoption((char_u *)"termencoding");
3454 if (opt_idx >= 0)
3456 options[opt_idx].def_val[VI_DEFAULT] = p_tenc;
3457 options[opt_idx].flags |= P_DEF_ALLOCED;
3459 convert_setup(&input_conv, p_tenc, p_enc);
3460 convert_setup(&output_conv, p_enc, p_tenc);
3462 else
3463 p_tenc = empty_option;
3465 # endif
3466 # if defined(WIN3264) && defined(FEAT_MBYTE)
3467 /* $HOME may have characters in active code page. */
3468 init_homedir();
3469 # endif
3471 else
3473 vim_free(p_enc);
3474 p_enc = save_enc;
3477 #endif
3479 #ifdef FEAT_MULTI_LANG
3480 /* Set the default for 'helplang'. */
3481 set_helplang_default(get_mess_lang());
3482 #endif
3486 * Set an option to its default value.
3487 * This does not take care of side effects!
3489 static void
3490 set_option_default(opt_idx, opt_flags, compatible)
3491 int opt_idx;
3492 int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */
3493 int compatible; /* use Vi default value */
3495 char_u *varp; /* pointer to variable for current option */
3496 int dvi; /* index in def_val[] */
3497 long_u flags;
3498 long_u *flagsp;
3499 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
3501 varp = get_varp_scope(&(options[opt_idx]), both ? OPT_LOCAL : opt_flags);
3502 flags = options[opt_idx].flags;
3503 if (varp != NULL) /* skip hidden option, nothing to do for it */
3505 dvi = ((flags & P_VI_DEF) || compatible) ? VI_DEFAULT : VIM_DEFAULT;
3506 if (flags & P_STRING)
3508 /* Use set_string_option_direct() for local options to handle
3509 * freeing and allocating the value. */
3510 if (options[opt_idx].indir != PV_NONE)
3511 set_string_option_direct(NULL, opt_idx,
3512 options[opt_idx].def_val[dvi], opt_flags, 0);
3513 else
3515 if ((opt_flags & OPT_FREE) && (flags & P_ALLOCED))
3516 free_string_option(*(char_u **)(varp));
3517 *(char_u **)varp = options[opt_idx].def_val[dvi];
3518 options[opt_idx].flags &= ~P_ALLOCED;
3521 else if (flags & P_NUM)
3523 if (options[opt_idx].indir == PV_SCROLL)
3524 win_comp_scroll(curwin);
3525 else
3527 *(long *)varp = (long)(long_i)options[opt_idx].def_val[dvi];
3528 /* May also set global value for local option. */
3529 if (both)
3530 *(long *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) =
3531 *(long *)varp;
3534 else /* P_BOOL */
3536 /* the cast to long is required for Manx C, long_i is needed for
3537 * MSVC */
3538 *(int *)varp = (int)(long)(long_i)options[opt_idx].def_val[dvi];
3539 #ifdef UNIX
3540 /* 'modeline' defaults to off for root */
3541 if (options[opt_idx].indir == PV_ML && getuid() == ROOT_UID)
3542 *(int *)varp = FALSE;
3543 #endif
3544 /* May also set global value for local option. */
3545 if (both)
3546 *(int *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) =
3547 *(int *)varp;
3550 /* The default value is not insecure. */
3551 flagsp = insecure_flag(opt_idx, opt_flags);
3552 *flagsp = *flagsp & ~P_INSECURE;
3555 #ifdef FEAT_EVAL
3556 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
3557 #endif
3561 * Set all options (except terminal options) to their default value.
3563 static void
3564 set_options_default(opt_flags)
3565 int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */
3567 int i;
3568 #ifdef FEAT_WINDOWS
3569 win_T *wp;
3570 tabpage_T *tp;
3571 #endif
3573 for (i = 0; !istermoption(&options[i]); i++)
3574 if (!(options[i].flags & P_NODEFAULT))
3575 set_option_default(i, opt_flags, p_cp);
3577 #ifdef FEAT_WINDOWS
3578 /* The 'scroll' option must be computed for all windows. */
3579 FOR_ALL_TAB_WINDOWS(tp, wp)
3580 win_comp_scroll(wp);
3581 #else
3582 win_comp_scroll(curwin);
3583 #endif
3587 * Set the Vi-default value of a string option.
3588 * Used for 'sh', 'backupskip' and 'term'.
3590 void
3591 set_string_default(name, val)
3592 char *name;
3593 char_u *val;
3595 char_u *p;
3596 int opt_idx;
3598 p = vim_strsave(val);
3599 if (p != NULL) /* we don't want a NULL */
3601 opt_idx = findoption((char_u *)name);
3602 if (opt_idx >= 0)
3604 if (options[opt_idx].flags & P_DEF_ALLOCED)
3605 vim_free(options[opt_idx].def_val[VI_DEFAULT]);
3606 options[opt_idx].def_val[VI_DEFAULT] = p;
3607 options[opt_idx].flags |= P_DEF_ALLOCED;
3613 * Set the Vi-default value of a number option.
3614 * Used for 'lines' and 'columns'.
3616 void
3617 set_number_default(name, val)
3618 char *name;
3619 long val;
3621 int opt_idx;
3623 opt_idx = findoption((char_u *)name);
3624 if (opt_idx >= 0)
3625 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
3628 #if defined(EXITFREE) || defined(PROTO)
3630 * Free all options.
3632 void
3633 free_all_options()
3635 int i;
3637 for (i = 0; !istermoption(&options[i]); i++)
3639 if (options[i].indir == PV_NONE)
3641 /* global option: free value and default value. */
3642 if (options[i].flags & P_ALLOCED && options[i].var != NULL)
3643 free_string_option(*(char_u **)options[i].var);
3644 if (options[i].flags & P_DEF_ALLOCED)
3645 free_string_option(options[i].def_val[VI_DEFAULT]);
3647 else if (options[i].var != VAR_WIN
3648 && (options[i].flags & P_STRING))
3649 /* buffer-local option: free global value */
3650 free_string_option(*(char_u **)options[i].var);
3653 #endif
3657 * Initialize the options, part two: After getting Rows and Columns and
3658 * setting 'term'.
3660 void
3661 set_init_2()
3663 int idx;
3666 * 'scroll' defaults to half the window height. Note that this default is
3667 * wrong when the window height changes.
3669 set_number_default("scroll", (long)((long_u)Rows >> 1));
3670 idx = findoption((char_u *)"scroll");
3671 if (idx >= 0 && !(options[idx].flags & P_WAS_SET))
3672 set_option_default(idx, OPT_LOCAL, p_cp);
3673 comp_col();
3676 * 'window' is only for backwards compatibility with Vi.
3677 * Default is Rows - 1.
3679 if (!option_was_set((char_u *)"window"))
3680 p_window = Rows - 1;
3681 set_number_default("window", Rows - 1);
3683 /* For DOS console the default is always black. */
3684 #if !((defined(MSDOS) || defined(OS2) || defined(WIN3264)) && !defined(FEAT_GUI))
3686 * If 'background' wasn't set by the user, try guessing the value,
3687 * depending on the terminal name. Only need to check for terminals
3688 * with a dark background, that can handle color.
3690 idx = findoption((char_u *)"bg");
3691 if (idx >= 0 && !(options[idx].flags & P_WAS_SET)
3692 && *term_bg_default() == 'd')
3694 set_string_option_direct(NULL, idx, (char_u *)"dark", OPT_FREE, 0);
3695 /* don't mark it as set, when starting the GUI it may be
3696 * changed again */
3697 options[idx].flags &= ~P_WAS_SET;
3699 #endif
3701 #ifdef CURSOR_SHAPE
3702 parse_shape_opt(SHAPE_CURSOR); /* set cursor shapes from 'guicursor' */
3703 #endif
3704 #ifdef FEAT_MOUSESHAPE
3705 parse_shape_opt(SHAPE_MOUSE); /* set mouse shapes from 'mouseshape' */
3706 #endif
3707 #ifdef FEAT_PRINTER
3708 (void)parse_printoptions(); /* parse 'printoptions' default value */
3709 #endif
3713 * Return "dark" or "light" depending on the kind of terminal.
3714 * This is just guessing! Recognized are:
3715 * "linux" Linux console
3716 * "screen.linux" Linux console with screen
3717 * "cygwin" Cygwin shell
3718 * "putty" Putty program
3719 * We also check the COLORFGBG environment variable, which is set by
3720 * rxvt and derivatives. This variable contains either two or three
3721 * values separated by semicolons; we want the last value in either
3722 * case. If this value is 0-6 or 8, our background is dark.
3724 static char_u *
3725 term_bg_default()
3727 #if defined(MSDOS) || defined(OS2) || defined(WIN3264)
3728 /* DOS console nearly always black */
3729 return (char_u *)"dark";
3730 #else
3731 char_u *p;
3733 if (STRCMP(T_NAME, "linux") == 0
3734 || STRCMP(T_NAME, "screen.linux") == 0
3735 || STRCMP(T_NAME, "cygwin") == 0
3736 || STRCMP(T_NAME, "putty") == 0
3737 || ((p = mch_getenv((char_u *)"COLORFGBG")) != NULL
3738 && (p = vim_strrchr(p, ';')) != NULL
3739 && ((p[1] >= '0' && p[1] <= '6') || p[1] == '8')
3740 && p[2] == NUL))
3741 return (char_u *)"dark";
3742 return (char_u *)"light";
3743 #endif
3747 * Initialize the options, part three: After reading the .vimrc
3749 void
3750 set_init_3()
3752 #if defined(UNIX) || defined(OS2) || defined(WIN3264)
3754 * Set 'shellpipe' and 'shellredir', depending on the 'shell' option.
3755 * This is done after other initializations, where 'shell' might have been
3756 * set, but only if they have not been set before.
3758 char_u *p;
3759 int idx_srr;
3760 int do_srr;
3761 #ifdef FEAT_QUICKFIX
3762 int idx_sp;
3763 int do_sp;
3764 #endif
3766 idx_srr = findoption((char_u *)"srr");
3767 if (idx_srr < 0)
3768 do_srr = FALSE;
3769 else
3770 do_srr = !(options[idx_srr].flags & P_WAS_SET);
3771 #ifdef FEAT_QUICKFIX
3772 idx_sp = findoption((char_u *)"sp");
3773 if (idx_sp < 0)
3774 do_sp = FALSE;
3775 else
3776 do_sp = !(options[idx_sp].flags & P_WAS_SET);
3777 #endif
3780 * Isolate the name of the shell:
3781 * - Skip beyond any path. E.g., "/usr/bin/csh -f" -> "csh -f".
3782 * - Remove any argument. E.g., "csh -f" -> "csh".
3784 p = gettail(p_sh);
3785 p = vim_strnsave(p, (int)(skiptowhite(p) - p));
3786 if (p != NULL)
3789 * Default for p_sp is "| tee", for p_srr is ">".
3790 * For known shells it is changed here to include stderr.
3792 if ( fnamecmp(p, "csh") == 0
3793 || fnamecmp(p, "tcsh") == 0
3794 # if defined(OS2) || defined(WIN3264) /* also check with .exe extension */
3795 || fnamecmp(p, "csh.exe") == 0
3796 || fnamecmp(p, "tcsh.exe") == 0
3797 # endif
3800 #if defined(FEAT_QUICKFIX)
3801 if (do_sp)
3803 # ifdef WIN3264
3804 p_sp = (char_u *)">&";
3805 # else
3806 p_sp = (char_u *)"|& tee";
3807 # endif
3808 options[idx_sp].def_val[VI_DEFAULT] = p_sp;
3810 #endif
3811 if (do_srr)
3813 p_srr = (char_u *)">&";
3814 options[idx_srr].def_val[VI_DEFAULT] = p_srr;
3817 else
3818 # ifndef OS2 /* Always use bourne shell style redirection if we reach this */
3819 if ( fnamecmp(p, "sh") == 0
3820 || fnamecmp(p, "ksh") == 0
3821 || fnamecmp(p, "zsh") == 0
3822 || fnamecmp(p, "zsh-beta") == 0
3823 || fnamecmp(p, "bash") == 0
3824 # ifdef WIN3264
3825 || fnamecmp(p, "cmd") == 0
3826 || fnamecmp(p, "sh.exe") == 0
3827 || fnamecmp(p, "ksh.exe") == 0
3828 || fnamecmp(p, "zsh.exe") == 0
3829 || fnamecmp(p, "zsh-beta.exe") == 0
3830 || fnamecmp(p, "bash.exe") == 0
3831 || fnamecmp(p, "cmd.exe") == 0
3832 # endif
3834 # endif
3836 #if defined(FEAT_QUICKFIX)
3837 if (do_sp)
3839 # ifdef WIN3264
3840 p_sp = (char_u *)">%s 2>&1";
3841 # else
3842 p_sp = (char_u *)"2>&1| tee";
3843 # endif
3844 options[idx_sp].def_val[VI_DEFAULT] = p_sp;
3846 #endif
3847 if (do_srr)
3849 p_srr = (char_u *)">%s 2>&1";
3850 options[idx_srr].def_val[VI_DEFAULT] = p_srr;
3853 vim_free(p);
3855 #endif
3857 #if defined(MSDOS) || defined(WIN3264) || defined(OS2)
3859 * Set 'shellcmdflag and 'shellquote' depending on the 'shell' option.
3860 * This is done after other initializations, where 'shell' might have been
3861 * set, but only if they have not been set before. Default for p_shcf is
3862 * "/c", for p_shq is "". For "sh" like shells it is changed here to
3863 * "-c" and "\"", but not for DJGPP, because it starts the shell without
3864 * command.com. And for Win32 we need to set p_sxq instead.
3866 if (strstr((char *)gettail(p_sh), "sh") != NULL)
3868 int idx3;
3870 idx3 = findoption((char_u *)"shcf");
3871 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
3873 p_shcf = (char_u *)"-c";
3874 options[idx3].def_val[VI_DEFAULT] = p_shcf;
3877 # ifndef DJGPP
3878 # ifdef WIN3264
3879 /* Somehow Win32 requires the quotes around the redirection too */
3880 idx3 = findoption((char_u *)"sxq");
3881 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
3883 p_sxq = (char_u *)"\"";
3884 options[idx3].def_val[VI_DEFAULT] = p_sxq;
3886 # else
3887 idx3 = findoption((char_u *)"shq");
3888 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
3890 p_shq = (char_u *)"\"";
3891 options[idx3].def_val[VI_DEFAULT] = p_shq;
3893 # endif
3894 # endif
3896 #endif
3898 #ifdef FEAT_TITLE
3899 set_title_defaults();
3900 #endif
3903 #if defined(FEAT_MULTI_LANG) || defined(PROTO)
3905 * When 'helplang' is still at its default value, set it to "lang".
3906 * Only the first two characters of "lang" are used.
3908 void
3909 set_helplang_default(lang)
3910 char_u *lang;
3912 int idx;
3914 if (lang == NULL || STRLEN(lang) < 2) /* safety check */
3915 return;
3916 idx = findoption((char_u *)"hlg");
3917 if (idx >= 0 && !(options[idx].flags & P_WAS_SET))
3919 if (options[idx].flags & P_ALLOCED)
3920 free_string_option(p_hlg);
3921 p_hlg = vim_strsave(lang);
3922 if (p_hlg == NULL)
3923 p_hlg = empty_option;
3924 else
3926 /* zh_CN becomes "cn", zh_TW becomes "tw". */
3927 if (STRNICMP(p_hlg, "zh_", 3) == 0 && STRLEN(p_hlg) >= 5)
3929 p_hlg[0] = TOLOWER_ASC(p_hlg[3]);
3930 p_hlg[1] = TOLOWER_ASC(p_hlg[4]);
3932 p_hlg[2] = NUL;
3934 options[idx].flags |= P_ALLOCED;
3937 #endif
3939 #ifdef FEAT_GUI
3940 static char_u *gui_bg_default __ARGS((void));
3942 static char_u *
3943 gui_bg_default()
3945 if (gui_get_lightness(gui.back_pixel) < 127)
3946 return (char_u *)"dark";
3947 return (char_u *)"light";
3951 * Option initializations that can only be done after opening the GUI window.
3953 void
3954 init_gui_options()
3956 /* Set the 'background' option according to the lightness of the
3957 * background color, unless the user has set it already. */
3958 if (!option_was_set((char_u *)"bg") && STRCMP(p_bg, gui_bg_default()) != 0)
3960 set_option_value((char_u *)"bg", 0L, gui_bg_default(), 0);
3961 highlight_changed();
3964 #endif
3966 #ifdef FEAT_TITLE
3968 * 'title' and 'icon' only default to true if they have not been set or reset
3969 * in .vimrc and we can read the old value.
3970 * When 'title' and 'icon' have been reset in .vimrc, we won't even check if
3971 * they can be reset. This reduces startup time when using X on a remote
3972 * machine.
3974 void
3975 set_title_defaults()
3977 int idx1;
3978 long val;
3981 * If GUI is (going to be) used, we can always set the window title and
3982 * icon name. Saves a bit of time, because the X11 display server does
3983 * not need to be contacted.
3985 idx1 = findoption((char_u *)"title");
3986 if (idx1 >= 0 && !(options[idx1].flags & P_WAS_SET))
3988 #ifdef FEAT_GUI
3989 if (gui.starting || gui.in_use)
3990 val = TRUE;
3991 else
3992 #endif
3993 val = mch_can_restore_title();
3994 options[idx1].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
3995 p_title = val;
3997 idx1 = findoption((char_u *)"icon");
3998 if (idx1 >= 0 && !(options[idx1].flags & P_WAS_SET))
4000 #ifdef FEAT_GUI
4001 if (gui.starting || gui.in_use)
4002 val = TRUE;
4003 else
4004 #endif
4005 val = mch_can_restore_icon();
4006 options[idx1].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
4007 p_icon = val;
4010 #endif
4013 * Parse 'arg' for option settings.
4015 * 'arg' may be IObuff, but only when no errors can be present and option
4016 * does not need to be expanded with option_expand().
4017 * "opt_flags":
4018 * 0 for ":set"
4019 * OPT_GLOBAL for ":setglobal"
4020 * OPT_LOCAL for ":setlocal" and a modeline
4021 * OPT_MODELINE for a modeline
4022 * OPT_WINONLY to only set window-local options
4023 * OPT_NOWIN to skip setting window-local options
4025 * returns FAIL if an error is detected, OK otherwise
4028 do_set(arg, opt_flags)
4029 char_u *arg; /* option string (may be written to!) */
4030 int opt_flags;
4032 int opt_idx;
4033 char_u *errmsg;
4034 char_u errbuf[80];
4035 char_u *startarg;
4036 int prefix; /* 1: nothing, 0: "no", 2: "inv" in front of name */
4037 int nextchar; /* next non-white char after option name */
4038 int afterchar; /* character just after option name */
4039 int len;
4040 int i;
4041 long value;
4042 int key;
4043 long_u flags; /* flags for current option */
4044 char_u *varp = NULL; /* pointer to variable for current option */
4045 int did_show = FALSE; /* already showed one value */
4046 int adding; /* "opt+=arg" */
4047 int prepending; /* "opt^=arg" */
4048 int removing; /* "opt-=arg" */
4049 int cp_val = 0;
4050 char_u key_name[2];
4052 if (*arg == NUL)
4054 showoptions(0, opt_flags);
4055 did_show = TRUE;
4056 goto theend;
4059 while (*arg != NUL) /* loop to process all options */
4061 errmsg = NULL;
4062 startarg = arg; /* remember for error message */
4064 if (STRNCMP(arg, "all", 3) == 0 && !isalpha(arg[3])
4065 && !(opt_flags & OPT_MODELINE))
4068 * ":set all" show all options.
4069 * ":set all&" set all options to their default value.
4071 arg += 3;
4072 if (*arg == '&')
4074 ++arg;
4075 /* Only for :set command set global value of local options. */
4076 set_options_default(OPT_FREE | opt_flags);
4078 else
4080 showoptions(1, opt_flags);
4081 did_show = TRUE;
4084 else if (STRNCMP(arg, "termcap", 7) == 0 && !(opt_flags & OPT_MODELINE))
4086 showoptions(2, opt_flags);
4087 show_termcodes();
4088 did_show = TRUE;
4089 arg += 7;
4091 else
4093 prefix = 1;
4094 if (STRNCMP(arg, "no", 2) == 0 && STRNCMP(arg, "novice", 6) != 0)
4096 prefix = 0;
4097 arg += 2;
4099 else if (STRNCMP(arg, "inv", 3) == 0)
4101 prefix = 2;
4102 arg += 3;
4105 /* find end of name */
4106 key = 0;
4107 if (*arg == '<')
4109 nextchar = 0;
4110 opt_idx = -1;
4111 /* look out for <t_>;> */
4112 if (arg[1] == 't' && arg[2] == '_' && arg[3] && arg[4])
4113 len = 5;
4114 else
4116 len = 1;
4117 while (arg[len] != NUL && arg[len] != '>')
4118 ++len;
4120 if (arg[len] != '>')
4122 errmsg = e_invarg;
4123 goto skip;
4125 arg[len] = NUL; /* put NUL after name */
4126 if (arg[1] == 't' && arg[2] == '_') /* could be term code */
4127 opt_idx = findoption(arg + 1);
4128 arg[len++] = '>'; /* restore '>' */
4129 if (opt_idx == -1)
4130 key = find_key_option(arg + 1);
4132 else
4134 len = 0;
4136 * The two characters after "t_" may not be alphanumeric.
4138 if (arg[0] == 't' && arg[1] == '_' && arg[2] && arg[3])
4139 len = 4;
4140 else
4141 while (ASCII_ISALNUM(arg[len]) || arg[len] == '_')
4142 ++len;
4143 nextchar = arg[len];
4144 arg[len] = NUL; /* put NUL after name */
4145 opt_idx = findoption(arg);
4146 arg[len] = nextchar; /* restore nextchar */
4147 if (opt_idx == -1)
4148 key = find_key_option(arg);
4151 /* remember character after option name */
4152 afterchar = arg[len];
4154 /* skip white space, allow ":set ai ?" */
4155 while (vim_iswhite(arg[len]))
4156 ++len;
4158 adding = FALSE;
4159 prepending = FALSE;
4160 removing = FALSE;
4161 if (arg[len] != NUL && arg[len + 1] == '=')
4163 if (arg[len] == '+')
4165 adding = TRUE; /* "+=" */
4166 ++len;
4168 else if (arg[len] == '^')
4170 prepending = TRUE; /* "^=" */
4171 ++len;
4173 else if (arg[len] == '-')
4175 removing = TRUE; /* "-=" */
4176 ++len;
4179 nextchar = arg[len];
4181 if (opt_idx == -1 && key == 0) /* found a mismatch: skip */
4183 errmsg = (char_u *)N_("E518: Unknown option");
4184 goto skip;
4187 if (opt_idx >= 0)
4189 if (options[opt_idx].var == NULL) /* hidden option: skip */
4191 /* Only give an error message when requesting the value of
4192 * a hidden option, ignore setting it. */
4193 if (vim_strchr((char_u *)"=:!&<", nextchar) == NULL
4194 && (!(options[opt_idx].flags & P_BOOL)
4195 || nextchar == '?'))
4196 errmsg = (char_u *)N_("E519: Option not supported");
4197 goto skip;
4200 flags = options[opt_idx].flags;
4201 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
4203 else
4205 flags = P_STRING;
4206 if (key < 0)
4208 key_name[0] = KEY2TERMCAP0(key);
4209 key_name[1] = KEY2TERMCAP1(key);
4211 else
4213 key_name[0] = KS_KEY;
4214 key_name[1] = (key & 0xff);
4218 /* Skip all options that are not window-local (used when showing
4219 * an already loaded buffer in a window). */
4220 if ((opt_flags & OPT_WINONLY)
4221 && (opt_idx < 0 || options[opt_idx].var != VAR_WIN))
4222 goto skip;
4224 /* Skip all options that are window-local (used for :vimgrep). */
4225 if ((opt_flags & OPT_NOWIN) && opt_idx >= 0
4226 && options[opt_idx].var == VAR_WIN)
4227 goto skip;
4229 /* Disallow changing some options from modelines. */
4230 if (opt_flags & OPT_MODELINE)
4232 if (flags & P_SECURE)
4234 errmsg = (char_u *)_("E520: Not allowed in a modeline");
4235 goto skip;
4237 #ifdef FEAT_DIFF
4238 /* In diff mode some options are overruled. This avoids that
4239 * 'foldmethod' becomes "marker" instead of "diff" and that
4240 * "wrap" gets set. */
4241 if (curwin->w_p_diff
4242 && (options[opt_idx].indir == PV_FDM
4243 || options[opt_idx].indir == PV_WRAP))
4244 goto skip;
4245 #endif
4248 #ifdef HAVE_SANDBOX
4249 /* Disallow changing some options in the sandbox */
4250 if (sandbox != 0 && (flags & P_SECURE))
4252 errmsg = (char_u *)_(e_sandbox);
4253 goto skip;
4255 #endif
4257 if (vim_strchr((char_u *)"?=:!&<", nextchar) != NULL)
4259 arg += len;
4260 cp_val = p_cp;
4261 if (nextchar == '&' && arg[1] == 'v' && arg[2] == 'i')
4263 if (arg[3] == 'm') /* "opt&vim": set to Vim default */
4265 cp_val = FALSE;
4266 arg += 3;
4268 else /* "opt&vi": set to Vi default */
4270 cp_val = TRUE;
4271 arg += 2;
4274 if (vim_strchr((char_u *)"?!&<", nextchar) != NULL
4275 && arg[1] != NUL && !vim_iswhite(arg[1]))
4277 errmsg = e_trailing;
4278 goto skip;
4283 * allow '=' and ':' as MSDOS command.com allows only one
4284 * '=' character per "set" command line. grrr. (jw)
4286 if (nextchar == '?'
4287 || (prefix == 1
4288 && vim_strchr((char_u *)"=:&<", nextchar) == NULL
4289 && !(flags & P_BOOL)))
4292 * print value
4294 if (did_show)
4295 msg_putchar('\n'); /* cursor below last one */
4296 else
4298 gotocmdline(TRUE); /* cursor at status line */
4299 did_show = TRUE; /* remember that we did a line */
4301 if (opt_idx >= 0)
4303 showoneopt(&options[opt_idx], opt_flags);
4304 #ifdef FEAT_EVAL
4305 if (p_verbose > 0)
4307 /* Mention where the option was last set. */
4308 if (varp == options[opt_idx].var)
4309 last_set_msg(options[opt_idx].scriptID);
4310 else if ((int)options[opt_idx].indir & PV_WIN)
4311 last_set_msg(curwin->w_p_scriptID[
4312 (int)options[opt_idx].indir & PV_MASK]);
4313 else if ((int)options[opt_idx].indir & PV_BUF)
4314 last_set_msg(curbuf->b_p_scriptID[
4315 (int)options[opt_idx].indir & PV_MASK]);
4317 #endif
4319 else
4321 char_u *p;
4323 p = find_termcode(key_name);
4324 if (p == NULL)
4326 errmsg = (char_u *)N_("E518: Unknown option");
4327 goto skip;
4329 else
4330 (void)show_one_termcode(key_name, p, TRUE);
4332 if (nextchar != '?'
4333 && nextchar != NUL && !vim_iswhite(afterchar))
4334 errmsg = e_trailing;
4336 else
4338 if (flags & P_BOOL) /* boolean */
4340 if (nextchar == '=' || nextchar == ':')
4342 errmsg = e_invarg;
4343 goto skip;
4347 * ":set opt!": invert
4348 * ":set opt&": reset to default value
4349 * ":set opt<": reset to global value
4351 if (nextchar == '!')
4352 value = *(int *)(varp) ^ 1;
4353 else if (nextchar == '&')
4354 value = (int)(long)(long_i)options[opt_idx].def_val[
4355 ((flags & P_VI_DEF) || cp_val)
4356 ? VI_DEFAULT : VIM_DEFAULT];
4357 else if (nextchar == '<')
4359 /* For 'autoread' -1 means to use global value. */
4360 if ((int *)varp == &curbuf->b_p_ar
4361 && opt_flags == OPT_LOCAL)
4362 value = -1;
4363 else
4364 value = *(int *)get_varp_scope(&(options[opt_idx]),
4365 OPT_GLOBAL);
4367 else
4370 * ":set invopt": invert
4371 * ":set opt" or ":set noopt": set or reset
4373 if (nextchar != NUL && !vim_iswhite(afterchar))
4375 errmsg = e_trailing;
4376 goto skip;
4378 if (prefix == 2) /* inv */
4379 value = *(int *)(varp) ^ 1;
4380 else
4381 value = prefix;
4384 errmsg = set_bool_option(opt_idx, varp, (int)value,
4385 opt_flags);
4387 else /* numeric or string */
4389 if (vim_strchr((char_u *)"=:&<", nextchar) == NULL
4390 || prefix != 1)
4392 errmsg = e_invarg;
4393 goto skip;
4396 if (flags & P_NUM) /* numeric */
4399 * Different ways to set a number option:
4400 * & set to default value
4401 * < set to global value
4402 * <xx> accept special key codes for 'wildchar'
4403 * c accept any non-digit for 'wildchar'
4404 * [-]0-9 set number
4405 * other error
4407 ++arg;
4408 if (nextchar == '&')
4409 value = (long)(long_i)options[opt_idx].def_val[
4410 ((flags & P_VI_DEF) || cp_val)
4411 ? VI_DEFAULT : VIM_DEFAULT];
4412 else if (nextchar == '<')
4413 value = *(long *)get_varp_scope(&(options[opt_idx]),
4414 OPT_GLOBAL);
4415 else if (((long *)varp == &p_wc
4416 || (long *)varp == &p_wcm)
4417 && (*arg == '<'
4418 || *arg == '^'
4419 || ((!arg[1] || vim_iswhite(arg[1]))
4420 && !VIM_ISDIGIT(*arg))))
4422 value = string_to_key(arg);
4423 if (value == 0 && (long *)varp != &p_wcm)
4425 errmsg = e_invarg;
4426 goto skip;
4429 /* allow negative numbers (for 'undolevels') */
4430 else if (*arg == '-' || VIM_ISDIGIT(*arg))
4432 i = 0;
4433 if (*arg == '-')
4434 i = 1;
4435 #ifdef HAVE_STRTOL
4436 value = strtol((char *)arg, NULL, 0);
4437 if (arg[i] == '0' && TOLOWER_ASC(arg[i + 1]) == 'x')
4438 i += 2;
4439 #else
4440 value = atol((char *)arg);
4441 #endif
4442 while (VIM_ISDIGIT(arg[i]))
4443 ++i;
4444 if (arg[i] != NUL && !vim_iswhite(arg[i]))
4446 errmsg = e_invarg;
4447 goto skip;
4450 else
4452 errmsg = (char_u *)N_("E521: Number required after =");
4453 goto skip;
4456 if (adding)
4457 value = *(long *)varp + value;
4458 if (prepending)
4459 value = *(long *)varp * value;
4460 if (removing)
4461 value = *(long *)varp - value;
4462 errmsg = set_num_option(opt_idx, varp, value,
4463 errbuf, sizeof(errbuf), opt_flags);
4465 else if (opt_idx >= 0) /* string */
4467 char_u *save_arg = NULL;
4468 char_u *s = NULL;
4469 char_u *oldval; /* previous value if *varp */
4470 char_u *newval;
4471 char_u *origval;
4472 unsigned newlen;
4473 int comma;
4474 int bs;
4475 int new_value_alloced; /* new string option
4476 was allocated */
4478 /* When using ":set opt=val" for a global option
4479 * with a local value the local value will be
4480 * reset, use the global value here. */
4481 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
4482 && ((int)options[opt_idx].indir & PV_BOTH))
4483 varp = options[opt_idx].var;
4485 /* The old value is kept until we are sure that the
4486 * new value is valid. */
4487 oldval = *(char_u **)varp;
4488 if (nextchar == '&') /* set to default val */
4490 newval = options[opt_idx].def_val[
4491 ((flags & P_VI_DEF) || cp_val)
4492 ? VI_DEFAULT : VIM_DEFAULT];
4493 if ((char_u **)varp == &p_bg)
4495 /* guess the value of 'background' */
4496 #ifdef FEAT_GUI
4497 if (gui.in_use)
4498 newval = gui_bg_default();
4499 else
4500 #endif
4501 newval = term_bg_default();
4504 /* expand environment variables and ~ (since the
4505 * default value was already expanded, only
4506 * required when an environment variable was set
4507 * later */
4508 if (newval == NULL)
4509 newval = empty_option;
4510 else
4512 s = option_expand(opt_idx, newval);
4513 if (s == NULL)
4514 s = newval;
4515 newval = vim_strsave(s);
4517 new_value_alloced = TRUE;
4519 else if (nextchar == '<') /* set to global val */
4521 newval = vim_strsave(*(char_u **)get_varp_scope(
4522 &(options[opt_idx]), OPT_GLOBAL));
4523 new_value_alloced = TRUE;
4525 else
4527 ++arg; /* jump to after the '=' or ':' */
4530 * Set 'keywordprg' to ":help" if an empty
4531 * value was passed to :set by the user.
4532 * Misuse errbuf[] for the resulting string.
4534 if (varp == (char_u *)&p_kp
4535 && (*arg == NUL || *arg == ' '))
4537 STRCPY(errbuf, ":help");
4538 save_arg = arg;
4539 arg = errbuf;
4542 * Convert 'whichwrap' number to string, for
4543 * backwards compatibility with Vim 3.0.
4544 * Misuse errbuf[] for the resulting string.
4546 else if (varp == (char_u *)&p_ww
4547 && VIM_ISDIGIT(*arg))
4549 *errbuf = NUL;
4550 i = getdigits(&arg);
4551 if (i & 1)
4552 STRCAT(errbuf, "b,");
4553 if (i & 2)
4554 STRCAT(errbuf, "s,");
4555 if (i & 4)
4556 STRCAT(errbuf, "h,l,");
4557 if (i & 8)
4558 STRCAT(errbuf, "<,>,");
4559 if (i & 16)
4560 STRCAT(errbuf, "[,],");
4561 if (*errbuf != NUL) /* remove trailing , */
4562 errbuf[STRLEN(errbuf) - 1] = NUL;
4563 save_arg = arg;
4564 arg = errbuf;
4567 * Remove '>' before 'dir' and 'bdir', for
4568 * backwards compatibility with version 3.0
4570 else if ( *arg == '>'
4571 && (varp == (char_u *)&p_dir
4572 || varp == (char_u *)&p_bdir))
4574 ++arg;
4577 /* When setting the local value of a global
4578 * option, the old value may be the global value. */
4579 if (((int)options[opt_idx].indir & PV_BOTH)
4580 && (opt_flags & OPT_LOCAL))
4581 origval = *(char_u **)get_varp(
4582 &options[opt_idx]);
4583 else
4584 origval = oldval;
4587 * Copy the new string into allocated memory.
4588 * Can't use set_string_option_direct(), because
4589 * we need to remove the backslashes.
4591 /* get a bit too much */
4592 newlen = (unsigned)STRLEN(arg) + 1;
4593 if (adding || prepending || removing)
4594 newlen += (unsigned)STRLEN(origval) + 1;
4595 newval = alloc(newlen);
4596 if (newval == NULL) /* out of mem, don't change */
4597 break;
4598 s = newval;
4601 * Copy the string, skip over escaped chars.
4602 * For MS-DOS and WIN32 backslashes before normal
4603 * file name characters are not removed, and keep
4604 * backslash at start, for "\\machine\path", but
4605 * do remove it for "\\\\machine\\path".
4606 * The reverse is found in ExpandOldSetting().
4608 while (*arg && !vim_iswhite(*arg))
4610 if (*arg == '\\' && arg[1] != NUL
4611 #ifdef BACKSLASH_IN_FILENAME
4612 && !((flags & P_EXPAND)
4613 && vim_isfilec(arg[1])
4614 && (arg[1] != '\\'
4615 || (s == newval
4616 && arg[2] != '\\')))
4617 #endif
4619 ++arg; /* remove backslash */
4620 #ifdef FEAT_MBYTE
4621 if (has_mbyte
4622 && (i = (*mb_ptr2len)(arg)) > 1)
4624 /* copy multibyte char */
4625 mch_memmove(s, arg, (size_t)i);
4626 arg += i;
4627 s += i;
4629 else
4630 #endif
4631 *s++ = *arg++;
4633 *s = NUL;
4636 * Expand environment variables and ~.
4637 * Don't do it when adding without inserting a
4638 * comma.
4640 if (!(adding || prepending || removing)
4641 || (flags & P_COMMA))
4643 s = option_expand(opt_idx, newval);
4644 if (s != NULL)
4646 vim_free(newval);
4647 newlen = (unsigned)STRLEN(s) + 1;
4648 if (adding || prepending || removing)
4649 newlen += (unsigned)STRLEN(origval) + 1;
4650 newval = alloc(newlen);
4651 if (newval == NULL)
4652 break;
4653 STRCPY(newval, s);
4657 /* locate newval[] in origval[] when removing it
4658 * and when adding to avoid duplicates */
4659 i = 0; /* init for GCC */
4660 if (removing || (flags & P_NODUP))
4662 i = (int)STRLEN(newval);
4663 bs = 0;
4664 for (s = origval; *s; ++s)
4666 if ((!(flags & P_COMMA)
4667 || s == origval
4668 || (s[-1] == ',' && !(bs & 1)))
4669 && STRNCMP(s, newval, i) == 0
4670 && (!(flags & P_COMMA)
4671 || s[i] == ','
4672 || s[i] == NUL))
4673 break;
4674 /* Count backspaces. Only a comma with an
4675 * even number of backspaces before it is
4676 * recognized as a separator */
4677 if (s > origval && s[-1] == '\\')
4678 ++bs;
4679 else
4680 bs = 0;
4683 /* do not add if already there */
4684 if ((adding || prepending) && *s)
4686 prepending = FALSE;
4687 adding = FALSE;
4688 STRCPY(newval, origval);
4692 /* concatenate the two strings; add a ',' if
4693 * needed */
4694 if (adding || prepending)
4696 comma = ((flags & P_COMMA) && *origval != NUL
4697 && *newval != NUL);
4698 if (adding)
4700 i = (int)STRLEN(origval);
4701 mch_memmove(newval + i + comma, newval,
4702 STRLEN(newval) + 1);
4703 mch_memmove(newval, origval, (size_t)i);
4705 else
4707 i = (int)STRLEN(newval);
4708 STRMOVE(newval + i + comma, origval);
4710 if (comma)
4711 newval[i] = ',';
4714 /* Remove newval[] from origval[]. (Note: "i" has
4715 * been set above and is used here). */
4716 if (removing)
4718 STRCPY(newval, origval);
4719 if (*s)
4721 /* may need to remove a comma */
4722 if (flags & P_COMMA)
4724 if (s == origval)
4726 /* include comma after string */
4727 if (s[i] == ',')
4728 ++i;
4730 else
4732 /* include comma before string */
4733 --s;
4734 ++i;
4737 STRMOVE(newval + (s - origval), s + i);
4741 if (flags & P_FLAGLIST)
4743 /* Remove flags that appear twice. */
4744 for (s = newval; *s; ++s)
4745 if ((!(flags & P_COMMA) || *s != ',')
4746 && vim_strchr(s + 1, *s) != NULL)
4748 STRMOVE(s, s + 1);
4749 --s;
4753 if (save_arg != NULL) /* number for 'whichwrap' */
4754 arg = save_arg;
4755 new_value_alloced = TRUE;
4758 /* Set the new value. */
4759 *(char_u **)(varp) = newval;
4761 /* Handle side effects, and set the global value for
4762 * ":set" on local options. */
4763 errmsg = did_set_string_option(opt_idx, (char_u **)varp,
4764 new_value_alloced, oldval, errbuf, opt_flags);
4766 /* If error detected, print the error message. */
4767 if (errmsg != NULL)
4768 goto skip;
4770 else /* key code option */
4772 char_u *p;
4774 if (nextchar == '&')
4776 if (add_termcap_entry(key_name, TRUE) == FAIL)
4777 errmsg = (char_u *)N_("E522: Not found in termcap");
4779 else
4781 ++arg; /* jump to after the '=' or ':' */
4782 for (p = arg; *p && !vim_iswhite(*p); ++p)
4783 if (*p == '\\' && p[1] != NUL)
4784 ++p;
4785 nextchar = *p;
4786 *p = NUL;
4787 add_termcode(key_name, arg, FALSE);
4788 *p = nextchar;
4790 if (full_screen)
4791 ttest(FALSE);
4792 redraw_all_later(CLEAR);
4796 if (opt_idx >= 0)
4797 did_set_option(opt_idx, opt_flags,
4798 !prepending && !adding && !removing);
4801 skip:
4803 * Advance to next argument.
4804 * - skip until a blank found, taking care of backslashes
4805 * - skip blanks
4806 * - skip one "=val" argument (for hidden options ":set gfn =xx")
4808 for (i = 0; i < 2 ; ++i)
4810 while (*arg != NUL && !vim_iswhite(*arg))
4811 if (*arg++ == '\\' && *arg != NUL)
4812 ++arg;
4813 arg = skipwhite(arg);
4814 if (*arg != '=')
4815 break;
4819 if (errmsg != NULL)
4821 vim_strncpy(IObuff, (char_u *)_(errmsg), IOSIZE - 1);
4822 i = (int)STRLEN(IObuff) + 2;
4823 if (i + (arg - startarg) < IOSIZE)
4825 /* append the argument with the error */
4826 STRCAT(IObuff, ": ");
4827 mch_memmove(IObuff + i, startarg, (arg - startarg));
4828 IObuff[i + (arg - startarg)] = NUL;
4830 /* make sure all characters are printable */
4831 trans_characters(IObuff, IOSIZE);
4833 ++no_wait_return; /* wait_return done later */
4834 emsg(IObuff); /* show error highlighted */
4835 --no_wait_return;
4837 return FAIL;
4840 arg = skipwhite(arg);
4843 theend:
4844 if (silent_mode && did_show)
4846 /* After displaying option values in silent mode. */
4847 silent_mode = FALSE;
4848 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
4849 msg_putchar('\n');
4850 cursor_on(); /* msg_start() switches it off */
4851 out_flush();
4852 silent_mode = TRUE;
4853 info_message = FALSE; /* use mch_msg(), not mch_errmsg() */
4856 return OK;
4860 * Call this when an option has been given a new value through a user command.
4861 * Sets the P_WAS_SET flag and takes care of the P_INSECURE flag.
4863 static void
4864 did_set_option(opt_idx, opt_flags, new_value)
4865 int opt_idx;
4866 int opt_flags; /* possibly with OPT_MODELINE */
4867 int new_value; /* value was replaced completely */
4869 long_u *p;
4871 options[opt_idx].flags |= P_WAS_SET;
4873 /* When an option is set in the sandbox, from a modeline or in secure mode
4874 * set the P_INSECURE flag. Otherwise, if a new value is stored reset the
4875 * flag. */
4876 p = insecure_flag(opt_idx, opt_flags);
4877 if (secure
4878 #ifdef HAVE_SANDBOX
4879 || sandbox != 0
4880 #endif
4881 || (opt_flags & OPT_MODELINE))
4882 *p = *p | P_INSECURE;
4883 else if (new_value)
4884 *p = *p & ~P_INSECURE;
4887 static char_u *
4888 illegal_char(errbuf, c)
4889 char_u *errbuf;
4890 int c;
4892 if (errbuf == NULL)
4893 return (char_u *)"";
4894 sprintf((char *)errbuf, _("E539: Illegal character <%s>"),
4895 (char *)transchar(c));
4896 return errbuf;
4900 * Convert a key name or string into a key value.
4901 * Used for 'wildchar' and 'cedit' options.
4903 static int
4904 string_to_key(arg)
4905 char_u *arg;
4907 if (*arg == '<')
4908 return find_key_option(arg + 1);
4909 if (*arg == '^')
4910 return Ctrl_chr(arg[1]);
4911 return *arg;
4914 #ifdef FEAT_CMDWIN
4916 * Check value of 'cedit' and set cedit_key.
4917 * Returns NULL if value is OK, error message otherwise.
4919 static char_u *
4920 check_cedit()
4922 int n;
4924 if (*p_cedit == NUL)
4925 cedit_key = -1;
4926 else
4928 n = string_to_key(p_cedit);
4929 if (vim_isprintc(n))
4930 return e_invarg;
4931 cedit_key = n;
4933 return NULL;
4935 #endif
4937 #ifdef FEAT_TITLE
4939 * When changing 'title', 'titlestring', 'icon' or 'iconstring', call
4940 * maketitle() to create and display it.
4941 * When switching the title or icon off, call mch_restore_title() to get
4942 * the old value back.
4944 static void
4945 did_set_title(icon)
4946 int icon; /* Did set icon instead of title */
4948 if (starting != NO_SCREEN
4949 #ifdef FEAT_GUI
4950 && !gui.starting
4951 #endif
4954 maketitle();
4955 if (icon)
4957 if (!p_icon)
4958 mch_restore_title(2);
4960 else
4962 if (!p_title)
4963 mch_restore_title(1);
4967 #endif
4970 * set_options_bin - called when 'bin' changes value.
4972 void
4973 set_options_bin(oldval, newval, opt_flags)
4974 int oldval;
4975 int newval;
4976 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
4979 * The option values that are changed when 'bin' changes are
4980 * copied when 'bin is set and restored when 'bin' is reset.
4982 if (newval)
4984 if (!oldval) /* switched on */
4986 if (!(opt_flags & OPT_GLOBAL))
4988 curbuf->b_p_tw_nobin = curbuf->b_p_tw;
4989 curbuf->b_p_wm_nobin = curbuf->b_p_wm;
4990 curbuf->b_p_ml_nobin = curbuf->b_p_ml;
4991 curbuf->b_p_et_nobin = curbuf->b_p_et;
4993 if (!(opt_flags & OPT_LOCAL))
4995 p_tw_nobin = p_tw;
4996 p_wm_nobin = p_wm;
4997 p_ml_nobin = p_ml;
4998 p_et_nobin = p_et;
5002 if (!(opt_flags & OPT_GLOBAL))
5004 curbuf->b_p_tw = 0; /* no automatic line wrap */
5005 curbuf->b_p_wm = 0; /* no automatic line wrap */
5006 curbuf->b_p_ml = 0; /* no modelines */
5007 curbuf->b_p_et = 0; /* no expandtab */
5009 if (!(opt_flags & OPT_LOCAL))
5011 p_tw = 0;
5012 p_wm = 0;
5013 p_ml = FALSE;
5014 p_et = FALSE;
5015 p_bin = TRUE; /* needed when called for the "-b" argument */
5018 else if (oldval) /* switched off */
5020 if (!(opt_flags & OPT_GLOBAL))
5022 curbuf->b_p_tw = curbuf->b_p_tw_nobin;
5023 curbuf->b_p_wm = curbuf->b_p_wm_nobin;
5024 curbuf->b_p_ml = curbuf->b_p_ml_nobin;
5025 curbuf->b_p_et = curbuf->b_p_et_nobin;
5027 if (!(opt_flags & OPT_LOCAL))
5029 p_tw = p_tw_nobin;
5030 p_wm = p_wm_nobin;
5031 p_ml = p_ml_nobin;
5032 p_et = p_et_nobin;
5037 #ifdef FEAT_VIMINFO
5039 * Find the parameter represented by the given character (eg ', :, ", or /),
5040 * and return its associated value in the 'viminfo' string.
5041 * Only works for number parameters, not for 'r' or 'n'.
5042 * If the parameter is not specified in the string or there is no following
5043 * number, return -1.
5046 get_viminfo_parameter(type)
5047 int type;
5049 char_u *p;
5051 p = find_viminfo_parameter(type);
5052 if (p != NULL && VIM_ISDIGIT(*p))
5053 return atoi((char *)p);
5054 return -1;
5058 * Find the parameter represented by the given character (eg ''', ':', '"', or
5059 * '/') in the 'viminfo' option and return a pointer to the string after it.
5060 * Return NULL if the parameter is not specified in the string.
5062 char_u *
5063 find_viminfo_parameter(type)
5064 int type;
5066 char_u *p;
5068 for (p = p_viminfo; *p; ++p)
5070 if (*p == type)
5071 return p + 1;
5072 if (*p == 'n') /* 'n' is always the last one */
5073 break;
5074 p = vim_strchr(p, ','); /* skip until next ',' */
5075 if (p == NULL) /* hit the end without finding parameter */
5076 break;
5078 return NULL;
5080 #endif
5083 * Expand environment variables for some string options.
5084 * These string options cannot be indirect!
5085 * If "val" is NULL expand the current value of the option.
5086 * Return pointer to NameBuff, or NULL when not expanded.
5088 static char_u *
5089 option_expand(opt_idx, val)
5090 int opt_idx;
5091 char_u *val;
5093 /* if option doesn't need expansion nothing to do */
5094 if (!(options[opt_idx].flags & P_EXPAND) || options[opt_idx].var == NULL)
5095 return NULL;
5097 /* If val is longer than MAXPATHL no meaningful expansion can be done,
5098 * expand_env() would truncate the string. */
5099 if (val != NULL && STRLEN(val) > MAXPATHL)
5100 return NULL;
5102 if (val == NULL)
5103 val = *(char_u **)options[opt_idx].var;
5106 * Expanding this with NameBuff, expand_env() must not be passed IObuff.
5107 * Escape spaces when expanding 'tags', they are used to separate file
5108 * names.
5109 * For 'spellsuggest' expand after "file:".
5111 expand_env_esc(val, NameBuff, MAXPATHL,
5112 (char_u **)options[opt_idx].var == &p_tags, FALSE,
5113 #ifdef FEAT_SPELL
5114 (char_u **)options[opt_idx].var == &p_sps ? (char_u *)"file:" :
5115 #endif
5116 NULL);
5117 if (STRCMP(NameBuff, val) == 0) /* they are the same */
5118 return NULL;
5120 return NameBuff;
5124 * After setting various option values: recompute variables that depend on
5125 * option values.
5127 static void
5128 didset_options()
5130 /* initialize the table for 'iskeyword' et.al. */
5131 (void)init_chartab();
5133 #ifdef FEAT_MBYTE
5134 (void)opt_strings_flags(p_cmp, p_cmp_values, &cmp_flags, TRUE);
5135 #endif
5136 (void)opt_strings_flags(p_bkc, p_bkc_values, &bkc_flags, TRUE);
5137 #ifdef FEAT_SESSION
5138 (void)opt_strings_flags(p_ssop, p_ssop_values, &ssop_flags, TRUE);
5139 (void)opt_strings_flags(p_vop, p_ssop_values, &vop_flags, TRUE);
5140 #endif
5141 #ifdef FEAT_FOLDING
5142 (void)opt_strings_flags(p_fdo, p_fdo_values, &fdo_flags, TRUE);
5143 #endif
5144 #ifdef FEAT_FULLSCREEN
5145 (void)check_fuoptions(p_fuoptions, &fuoptions_flags,
5146 &fuoptions_bgcolor);
5147 #endif
5148 (void)opt_strings_flags(p_dy, p_dy_values, &dy_flags, TRUE);
5149 #ifdef FEAT_VIRTUALEDIT
5150 (void)opt_strings_flags(p_ve, p_ve_values, &ve_flags, TRUE);
5151 #endif
5152 #if defined(FEAT_MOUSE) && (defined(UNIX) || defined(VMS))
5153 (void)opt_strings_flags(p_ttym, p_ttym_values, &ttym_flags, FALSE);
5154 #endif
5155 #ifdef FEAT_SPELL
5156 (void)spell_check_msm();
5157 (void)spell_check_sps();
5158 (void)compile_cap_prog(curbuf);
5159 #endif
5160 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
5161 (void)opt_strings_flags(p_toolbar, p_toolbar_values, &toolbar_flags, TRUE);
5162 #endif
5163 #if defined(FEAT_TOOLBAR) && ((defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)) \
5164 || defined(FEAT_GUI_MACVIM))
5165 (void)opt_strings_flags(p_tbis, p_tbis_values, &tbis_flags, FALSE);
5166 #endif
5167 #ifdef FEAT_CMDWIN
5168 /* set cedit_key */
5169 (void)check_cedit();
5170 #endif
5174 * Check for string options that are NULL (normally only termcap options).
5176 void
5177 check_options()
5179 int opt_idx;
5181 for (opt_idx = 0; options[opt_idx].fullname != NULL; opt_idx++)
5182 if ((options[opt_idx].flags & P_STRING) && options[opt_idx].var != NULL)
5183 check_string_option((char_u **)get_varp(&(options[opt_idx])));
5187 * Check string options in a buffer for NULL value.
5189 void
5190 check_buf_options(buf)
5191 buf_T *buf;
5193 #if defined(FEAT_QUICKFIX)
5194 check_string_option(&buf->b_p_bh);
5195 check_string_option(&buf->b_p_bt);
5196 #endif
5197 #ifdef FEAT_MBYTE
5198 check_string_option(&buf->b_p_fenc);
5199 #endif
5200 check_string_option(&buf->b_p_ff);
5201 #ifdef FEAT_FIND_ID
5202 check_string_option(&buf->b_p_def);
5203 check_string_option(&buf->b_p_inc);
5204 # ifdef FEAT_EVAL
5205 check_string_option(&buf->b_p_inex);
5206 # endif
5207 #endif
5208 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
5209 check_string_option(&buf->b_p_inde);
5210 check_string_option(&buf->b_p_indk);
5211 #endif
5212 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
5213 check_string_option(&buf->b_p_bexpr);
5214 #endif
5215 #if defined(FEAT_EVAL)
5216 check_string_option(&buf->b_p_fex);
5217 #endif
5218 #ifdef FEAT_CRYPT
5219 check_string_option(&buf->b_p_key);
5220 #endif
5221 check_string_option(&buf->b_p_kp);
5222 check_string_option(&buf->b_p_mps);
5223 check_string_option(&buf->b_p_fo);
5224 check_string_option(&buf->b_p_flp);
5225 check_string_option(&buf->b_p_isk);
5226 #ifdef FEAT_COMMENTS
5227 check_string_option(&buf->b_p_com);
5228 #endif
5229 #ifdef FEAT_FOLDING
5230 check_string_option(&buf->b_p_cms);
5231 #endif
5232 check_string_option(&buf->b_p_nf);
5233 #ifdef FEAT_TEXTOBJ
5234 check_string_option(&buf->b_p_qe);
5235 #endif
5236 #ifdef FEAT_SYN_HL
5237 check_string_option(&buf->b_p_syn);
5238 #endif
5239 #ifdef FEAT_SPELL
5240 check_string_option(&buf->b_p_spc);
5241 check_string_option(&buf->b_p_spf);
5242 check_string_option(&buf->b_p_spl);
5243 #endif
5244 #ifdef FEAT_SEARCHPATH
5245 check_string_option(&buf->b_p_sua);
5246 #endif
5247 #ifdef FEAT_CINDENT
5248 check_string_option(&buf->b_p_cink);
5249 check_string_option(&buf->b_p_cino);
5250 #endif
5251 #ifdef FEAT_AUTOCMD
5252 check_string_option(&buf->b_p_ft);
5253 #endif
5254 #ifdef FEAT_OSFILETYPE
5255 check_string_option(&buf->b_p_oft);
5256 #endif
5257 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
5258 check_string_option(&buf->b_p_cinw);
5259 #endif
5260 #ifdef FEAT_INS_EXPAND
5261 check_string_option(&buf->b_p_cpt);
5262 #endif
5263 #ifdef FEAT_COMPL_FUNC
5264 check_string_option(&buf->b_p_cfu);
5265 check_string_option(&buf->b_p_ofu);
5266 #endif
5267 #ifdef FEAT_KEYMAP
5268 check_string_option(&buf->b_p_keymap);
5269 #endif
5270 #ifdef FEAT_QUICKFIX
5271 check_string_option(&buf->b_p_gp);
5272 check_string_option(&buf->b_p_mp);
5273 check_string_option(&buf->b_p_efm);
5274 #endif
5275 check_string_option(&buf->b_p_ep);
5276 check_string_option(&buf->b_p_path);
5277 check_string_option(&buf->b_p_tags);
5278 #ifdef FEAT_INS_EXPAND
5279 check_string_option(&buf->b_p_dict);
5280 check_string_option(&buf->b_p_tsr);
5281 #endif
5285 * Free the string allocated for an option.
5286 * Checks for the string being empty_option. This may happen if we're out of
5287 * memory, vim_strsave() returned NULL, which was replaced by empty_option by
5288 * check_options().
5289 * Does NOT check for P_ALLOCED flag!
5291 void
5292 free_string_option(p)
5293 char_u *p;
5295 if (p != empty_option)
5296 vim_free(p);
5299 void
5300 clear_string_option(pp)
5301 char_u **pp;
5303 if (*pp != empty_option)
5304 vim_free(*pp);
5305 *pp = empty_option;
5308 static void
5309 check_string_option(pp)
5310 char_u **pp;
5312 if (*pp == NULL)
5313 *pp = empty_option;
5317 * Mark a terminal option as allocated, found by a pointer into term_strings[].
5319 void
5320 set_term_option_alloced(p)
5321 char_u **p;
5323 int opt_idx;
5325 for (opt_idx = 1; options[opt_idx].fullname != NULL; opt_idx++)
5326 if (options[opt_idx].var == (char_u *)p)
5328 options[opt_idx].flags |= P_ALLOCED;
5329 return;
5331 return; /* cannot happen: didn't find it! */
5334 #if defined(FEAT_EVAL) || defined(PROTO)
5336 * Return TRUE when option "opt" was set from a modeline or in secure mode.
5337 * Return FALSE when it wasn't.
5338 * Return -1 for an unknown option.
5341 was_set_insecurely(opt, opt_flags)
5342 char_u *opt;
5343 int opt_flags;
5345 int idx = findoption(opt);
5346 long_u *flagp;
5348 if (idx >= 0)
5350 flagp = insecure_flag(idx, opt_flags);
5351 return (*flagp & P_INSECURE) != 0;
5353 EMSG2(_(e_intern2), "was_set_insecurely()");
5354 return -1;
5358 * Get a pointer to the flags used for the P_INSECURE flag of option
5359 * "opt_idx". For some local options a local flags field is used.
5361 static long_u *
5362 insecure_flag(opt_idx, opt_flags)
5363 int opt_idx;
5364 int opt_flags;
5366 if (opt_flags & OPT_LOCAL)
5367 switch ((int)options[opt_idx].indir)
5369 #ifdef FEAT_STL_OPT
5370 case PV_STL: return &curwin->w_p_stl_flags;
5371 #endif
5372 #ifdef FEAT_EVAL
5373 # ifdef FEAT_FOLDING
5374 case PV_FDE: return &curwin->w_p_fde_flags;
5375 case PV_FDT: return &curwin->w_p_fdt_flags;
5376 # endif
5377 # ifdef FEAT_BEVAL
5378 case PV_BEXPR: return &curbuf->b_p_bexpr_flags;
5379 # endif
5380 # if defined(FEAT_CINDENT)
5381 case PV_INDE: return &curbuf->b_p_inde_flags;
5382 # endif
5383 case PV_FEX: return &curbuf->b_p_fex_flags;
5384 # ifdef FEAT_FIND_ID
5385 case PV_INEX: return &curbuf->b_p_inex_flags;
5386 # endif
5387 #endif
5390 /* Nothing special, return global flags field. */
5391 return &options[opt_idx].flags;
5393 #endif
5395 #ifdef FEAT_TITLE
5396 static void redraw_titles __ARGS((void));
5399 * Redraw the window title and/or tab page text later.
5401 static void redraw_titles()
5403 need_maketitle = TRUE;
5404 # ifdef FEAT_WINDOWS
5405 redraw_tabline = TRUE;
5406 # endif
5408 #endif
5411 * Set a string option to a new value (without checking the effect).
5412 * The string is copied into allocated memory.
5413 * if ("opt_idx" == -1) "name" is used, otherwise "opt_idx" is used.
5414 * When "set_sid" is zero set the scriptID to current_SID. When "set_sid" is
5415 * SID_NONE don't set the scriptID. Otherwise set the scriptID to "set_sid".
5417 void
5418 set_string_option_direct(name, opt_idx, val, opt_flags, set_sid)
5419 char_u *name;
5420 int opt_idx;
5421 char_u *val;
5422 int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */
5423 int set_sid UNUSED;
5425 char_u *s;
5426 char_u **varp;
5427 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
5428 int idx = opt_idx;
5430 if (idx == -1) /* use name */
5432 idx = findoption(name);
5433 if (idx < 0) /* not found (should not happen) */
5435 EMSG2(_(e_intern2), "set_string_option_direct()");
5436 return;
5440 if (options[idx].var == NULL) /* can't set hidden option */
5441 return;
5443 s = vim_strsave(val);
5444 if (s != NULL)
5446 varp = (char_u **)get_varp_scope(&(options[idx]),
5447 both ? OPT_LOCAL : opt_flags);
5448 if ((opt_flags & OPT_FREE) && (options[idx].flags & P_ALLOCED))
5449 free_string_option(*varp);
5450 *varp = s;
5452 /* For buffer/window local option may also set the global value. */
5453 if (both)
5454 set_string_option_global(idx, varp);
5456 options[idx].flags |= P_ALLOCED;
5458 /* When setting both values of a global option with a local value,
5459 * make the local value empty, so that the global value is used. */
5460 if (((int)options[idx].indir & PV_BOTH) && both)
5462 free_string_option(*varp);
5463 *varp = empty_option;
5465 # ifdef FEAT_EVAL
5466 if (set_sid != SID_NONE)
5467 set_option_scriptID_idx(idx, opt_flags,
5468 set_sid == 0 ? current_SID : set_sid);
5469 # endif
5474 * Set global value for string option when it's a local option.
5476 static void
5477 set_string_option_global(opt_idx, varp)
5478 int opt_idx; /* option index */
5479 char_u **varp; /* pointer to option variable */
5481 char_u **p, *s;
5483 /* the global value is always allocated */
5484 if (options[opt_idx].var == VAR_WIN)
5485 p = (char_u **)GLOBAL_WO(varp);
5486 else
5487 p = (char_u **)options[opt_idx].var;
5488 if (options[opt_idx].indir != PV_NONE
5489 && p != varp
5490 && (s = vim_strsave(*varp)) != NULL)
5492 free_string_option(*p);
5493 *p = s;
5496 #ifdef USE_MIGEMO
5497 if (varp == &p_migdict)
5498 reset_migemo(FALSE);
5499 #endif
5503 * Set a string option to a new value, and handle the effects.
5505 static void
5506 set_string_option(opt_idx, value, opt_flags)
5507 int opt_idx;
5508 char_u *value;
5509 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
5511 char_u *s;
5512 char_u **varp;
5513 char_u *oldval;
5515 if (options[opt_idx].var == NULL) /* don't set hidden option */
5516 return;
5518 s = vim_strsave(value);
5519 if (s != NULL)
5521 varp = (char_u **)get_varp_scope(&(options[opt_idx]),
5522 (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
5523 ? (((int)options[opt_idx].indir & PV_BOTH)
5524 ? OPT_GLOBAL : OPT_LOCAL)
5525 : opt_flags);
5526 oldval = *varp;
5527 *varp = s;
5528 if (did_set_string_option(opt_idx, varp, TRUE, oldval, NULL,
5529 opt_flags) == NULL)
5530 did_set_option(opt_idx, opt_flags, TRUE);
5535 * Handle string options that need some action to perform when changed.
5536 * Returns NULL for success, or an error message for an error.
5538 static char_u *
5539 did_set_string_option(opt_idx, varp, new_value_alloced, oldval, errbuf,
5540 opt_flags)
5541 int opt_idx; /* index in options[] table */
5542 char_u **varp; /* pointer to the option variable */
5543 int new_value_alloced; /* new value was allocated */
5544 char_u *oldval; /* previous value of the option */
5545 char_u *errbuf; /* buffer for errors, or NULL */
5546 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
5548 char_u *errmsg = NULL;
5549 char_u *s, *p;
5550 int did_chartab = FALSE;
5551 char_u **gvarp;
5552 long_u free_oldval = (options[opt_idx].flags & P_ALLOCED);
5553 #ifdef FEAT_GUI
5554 /* set when changing an option that only requires a redraw in the GUI */
5555 int redraw_gui_only = FALSE;
5556 #endif
5558 /* Get the global option to compare with, otherwise we would have to check
5559 * two values for all local options. */
5560 gvarp = (char_u **)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL);
5562 /* Disallow changing some options from secure mode */
5563 if ((secure
5564 #ifdef HAVE_SANDBOX
5565 || sandbox != 0
5566 #endif
5567 ) && (options[opt_idx].flags & P_SECURE))
5569 errmsg = e_secure;
5572 /* Check for a "normal" file name in some options. Disallow a path
5573 * separator (slash and/or backslash), wildcards and characters that are
5574 * often illegal in a file name. */
5575 else if ((options[opt_idx].flags & P_NFNAME)
5576 && vim_strpbrk(*varp, (char_u *)"/\\*?[|<>") != NULL)
5578 errmsg = e_invarg;
5581 /* 'term' */
5582 else if (varp == &T_NAME)
5584 if (T_NAME[0] == NUL)
5585 errmsg = (char_u *)N_("E529: Cannot set 'term' to empty string");
5586 #ifdef FEAT_GUI
5587 if (gui.in_use)
5588 errmsg = (char_u *)N_("E530: Cannot change term in GUI");
5589 else if (term_is_gui(T_NAME))
5590 errmsg = (char_u *)N_("E531: Use \":gui\" to start the GUI");
5591 #endif
5592 else if (set_termname(T_NAME) == FAIL)
5593 errmsg = (char_u *)N_("E522: Not found in termcap");
5594 else
5595 /* Screen colors may have changed. */
5596 redraw_later_clear();
5599 /* 'backupcopy' */
5600 else if (varp == &p_bkc)
5602 if (opt_strings_flags(p_bkc, p_bkc_values, &bkc_flags, TRUE) != OK)
5603 errmsg = e_invarg;
5604 if (((bkc_flags & BKC_AUTO) != 0)
5605 + ((bkc_flags & BKC_YES) != 0)
5606 + ((bkc_flags & BKC_NO) != 0) != 1)
5608 /* Must have exactly one of "auto", "yes" and "no". */
5609 (void)opt_strings_flags(oldval, p_bkc_values, &bkc_flags, TRUE);
5610 errmsg = e_invarg;
5614 /* 'backupext' and 'patchmode' */
5615 else if (varp == &p_bex || varp == &p_pm)
5617 if (STRCMP(*p_bex == '.' ? p_bex + 1 : p_bex,
5618 *p_pm == '.' ? p_pm + 1 : p_pm) == 0)
5619 errmsg = (char_u *)N_("E589: 'backupext' and 'patchmode' are equal");
5623 * 'isident', 'iskeyword', 'isprint or 'isfname' option: refill chartab[]
5624 * If the new option is invalid, use old value. 'lisp' option: refill
5625 * chartab[] for '-' char
5627 else if ( varp == &p_isi
5628 || varp == &(curbuf->b_p_isk)
5629 || varp == &p_isp
5630 || varp == &p_isf)
5632 if (init_chartab() == FAIL)
5634 did_chartab = TRUE; /* need to restore it below */
5635 errmsg = e_invarg; /* error in value */
5639 /* 'helpfile' */
5640 else if (varp == &p_hf)
5642 /* May compute new values for $VIM and $VIMRUNTIME */
5643 if (didset_vim)
5645 vim_setenv((char_u *)"VIM", (char_u *)"");
5646 didset_vim = FALSE;
5648 if (didset_vimruntime)
5650 vim_setenv((char_u *)"VIMRUNTIME", (char_u *)"");
5651 didset_vimruntime = FALSE;
5655 #ifdef FEAT_MULTI_LANG
5656 /* 'helplang' */
5657 else if (varp == &p_hlg)
5659 /* Check for "", "ab", "ab,cd", etc. */
5660 for (s = p_hlg; *s != NUL; s += 3)
5662 if (s[1] == NUL || ((s[2] != ',' || s[3] == NUL) && s[2] != NUL))
5664 errmsg = e_invarg;
5665 break;
5667 if (s[2] == NUL)
5668 break;
5671 #endif
5673 /* 'highlight' */
5674 else if (varp == &p_hl)
5676 if (highlight_changed() == FAIL)
5677 errmsg = e_invarg; /* invalid flags */
5680 /* 'nrformats' */
5681 else if (gvarp == &p_nf)
5683 if (check_opt_strings(*varp, p_nf_values, TRUE) != OK)
5684 errmsg = e_invarg;
5687 #ifdef FEAT_SESSION
5688 /* 'sessionoptions' */
5689 else if (varp == &p_ssop)
5691 if (opt_strings_flags(p_ssop, p_ssop_values, &ssop_flags, TRUE) != OK)
5692 errmsg = e_invarg;
5693 if ((ssop_flags & SSOP_CURDIR) && (ssop_flags & SSOP_SESDIR))
5695 /* Don't allow both "sesdir" and "curdir". */
5696 (void)opt_strings_flags(oldval, p_ssop_values, &ssop_flags, TRUE);
5697 errmsg = e_invarg;
5700 /* 'viewoptions' */
5701 else if (varp == &p_vop)
5703 if (opt_strings_flags(p_vop, p_ssop_values, &vop_flags, TRUE) != OK)
5704 errmsg = e_invarg;
5706 #endif
5708 /* 'scrollopt' */
5709 #ifdef FEAT_SCROLLBIND
5710 else if (varp == &p_sbo)
5712 if (check_opt_strings(p_sbo, p_scbopt_values, TRUE) != OK)
5713 errmsg = e_invarg;
5715 #endif
5717 /* 'ambiwidth' */
5718 #ifdef FEAT_MBYTE
5719 else if (varp == &p_ambw)
5721 if (check_opt_strings(p_ambw, p_ambw_values, FALSE) != OK)
5722 errmsg = e_invarg;
5724 #endif
5726 /* 'background' */
5727 else if (varp == &p_bg)
5729 if (check_opt_strings(p_bg, p_bg_values, FALSE) == OK)
5731 #ifdef FEAT_EVAL
5732 int dark = (*p_bg == 'd');
5733 #endif
5735 init_highlight(FALSE, FALSE);
5737 #ifdef FEAT_EVAL
5738 if (dark != (*p_bg == 'd')
5739 && get_var_value((char_u *)"g:colors_name") != NULL)
5741 /* The color scheme must have set 'background' back to another
5742 * value, that's not what we want here. Disable the color
5743 * scheme and set the colors again. */
5744 do_unlet((char_u *)"g:colors_name", TRUE);
5745 free_string_option(p_bg);
5746 p_bg = vim_strsave((char_u *)(dark ? "dark" : "light"));
5747 check_string_option(&p_bg);
5748 init_highlight(FALSE, FALSE);
5750 #endif
5752 else
5753 errmsg = e_invarg;
5756 /* 'wildmode' */
5757 else if (varp == &p_wim)
5759 if (check_opt_wim() == FAIL)
5760 errmsg = e_invarg;
5763 #ifdef FEAT_CMDL_COMPL
5764 /* 'wildoptions' */
5765 else if (varp == &p_wop)
5767 if (check_opt_strings(p_wop, p_wop_values, TRUE) != OK)
5768 errmsg = e_invarg;
5770 #endif
5772 #ifdef FEAT_WAK
5773 /* 'winaltkeys' */
5774 else if (varp == &p_wak)
5776 if (*p_wak == NUL
5777 || check_opt_strings(p_wak, p_wak_values, FALSE) != OK)
5778 errmsg = e_invarg;
5779 # ifdef FEAT_MENU
5780 # ifdef FEAT_GUI_MOTIF
5781 else if (gui.in_use)
5782 gui_motif_set_mnemonics(p_wak[0] == 'y' || p_wak[0] == 'm');
5783 # else
5784 # ifdef FEAT_GUI_GTK
5785 else if (gui.in_use)
5786 gui_gtk_set_mnemonics(p_wak[0] == 'y' || p_wak[0] == 'm');
5787 # endif
5788 # endif
5789 # endif
5791 #endif
5793 #ifdef FEAT_AUTOCMD
5794 /* 'eventignore' */
5795 else if (varp == &p_ei)
5797 if (check_ei() == FAIL)
5798 errmsg = e_invarg;
5800 #endif
5802 #ifdef FEAT_MBYTE
5803 /* 'encoding' and 'fileencoding' */
5804 else if (varp == &p_enc || gvarp == &p_fenc || varp == &p_tenc)
5806 if (gvarp == &p_fenc)
5808 if (!curbuf->b_p_ma && opt_flags != OPT_GLOBAL)
5809 errmsg = e_modifiable;
5810 else if (vim_strchr(*varp, ',') != NULL)
5811 /* No comma allowed in 'fileencoding'; catches confusing it
5812 * with 'fileencodings'. */
5813 errmsg = e_invarg;
5814 else
5816 # ifdef FEAT_TITLE
5817 /* May show a "+" in the title now. */
5818 redraw_titles();
5819 # endif
5820 /* Add 'fileencoding' to the swap file. */
5821 ml_setflags(curbuf);
5824 if (errmsg == NULL)
5826 /* canonize the value, so that STRCMP() can be used on it */
5827 p = enc_canonize(*varp);
5828 if (p != NULL)
5830 vim_free(*varp);
5831 *varp = p;
5833 if (varp == &p_enc)
5835 errmsg = mb_init();
5836 # ifdef FEAT_TITLE
5837 redraw_titles();
5838 # endif
5842 # if (defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)) || defined(FEAT_GUI_MACVIM)
5843 if (errmsg == NULL && varp == &p_tenc && gui.in_use)
5845 /* MacVim and GTK+ 2 GUIs force 'tenc' to UTF-8. */
5846 if (STRCMP(p_tenc, "utf-8") != 0)
5847 # if defined(FEAT_GUI_MACVIM)
5848 errmsg = (char_u *)N_("E617: Cannot be changed in MacVim");
5849 # else
5850 errmsg = (char_u *)N_("E617: Cannot be changed in the GTK+ 2 GUI");
5851 # endif
5853 # endif
5855 if (errmsg == NULL)
5857 # ifdef FEAT_KEYMAP
5858 /* When 'keymap' is used and 'encoding' changes, reload the keymap
5859 * (with another encoding). */
5860 if (varp == &p_enc && *curbuf->b_p_keymap != NUL)
5861 (void)keymap_init();
5862 # endif
5864 /* When 'termencoding' is not empty and 'encoding' changes or when
5865 * 'termencoding' changes, need to setup for keyboard input and
5866 * display output conversion. */
5867 if (((varp == &p_enc && *p_tenc != NUL) || varp == &p_tenc))
5869 convert_setup(&input_conv, p_tenc, p_enc);
5870 convert_setup(&output_conv, p_enc, p_tenc);
5873 # if defined(WIN3264) && defined(FEAT_MBYTE)
5874 /* $HOME may have characters in active code page. */
5875 if (varp == &p_enc)
5876 init_homedir();
5877 # endif
5880 #endif
5882 #if defined(FEAT_POSTSCRIPT)
5883 else if (varp == &p_penc)
5885 /* Canonize printencoding if VIM standard one */
5886 p = enc_canonize(p_penc);
5887 if (p != NULL)
5889 vim_free(p_penc);
5890 p_penc = p;
5892 else
5894 /* Ensure lower case and '-' for '_' */
5895 for (s = p_penc; *s != NUL; s++)
5897 if (*s == '_')
5898 *s = '-';
5899 else
5900 *s = TOLOWER_ASC(*s);
5904 #endif
5906 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
5907 else if (varp == &p_imak)
5909 if (gui.in_use && !im_xim_isvalid_imactivate())
5910 errmsg = e_invarg;
5912 #endif
5914 #ifdef FEAT_KEYMAP
5915 else if (varp == &curbuf->b_p_keymap)
5917 /* load or unload key mapping tables */
5918 errmsg = keymap_init();
5920 if (errmsg == NULL)
5922 if (*curbuf->b_p_keymap != NUL)
5924 /* Installed a new keymap, switch on using it. */
5925 curbuf->b_p_iminsert = B_IMODE_LMAP;
5926 if (curbuf->b_p_imsearch != B_IMODE_USE_INSERT)
5927 curbuf->b_p_imsearch = B_IMODE_LMAP;
5929 else
5931 /* Cleared the keymap, may reset 'iminsert' and 'imsearch'. */
5932 if (curbuf->b_p_iminsert == B_IMODE_LMAP)
5933 curbuf->b_p_iminsert = B_IMODE_NONE;
5934 if (curbuf->b_p_imsearch == B_IMODE_LMAP)
5935 curbuf->b_p_imsearch = B_IMODE_USE_INSERT;
5937 if ((opt_flags & OPT_LOCAL) == 0)
5939 set_iminsert_global();
5940 set_imsearch_global();
5942 # ifdef FEAT_WINDOWS
5943 status_redraw_curbuf();
5944 # endif
5947 #endif
5949 /* 'fileformat' */
5950 else if (gvarp == &p_ff)
5952 if (!curbuf->b_p_ma && !(opt_flags & OPT_GLOBAL))
5953 errmsg = e_modifiable;
5954 else if (check_opt_strings(*varp, p_ff_values, FALSE) != OK)
5955 errmsg = e_invarg;
5956 else
5958 /* may also change 'textmode' */
5959 if (get_fileformat(curbuf) == EOL_DOS)
5960 curbuf->b_p_tx = TRUE;
5961 else
5962 curbuf->b_p_tx = FALSE;
5963 #ifdef FEAT_TITLE
5964 redraw_titles();
5965 #endif
5966 /* update flag in swap file */
5967 ml_setflags(curbuf);
5971 /* 'fileformats' */
5972 else if (varp == &p_ffs)
5974 if (check_opt_strings(p_ffs, p_ff_values, TRUE) != OK)
5975 errmsg = e_invarg;
5976 else
5978 /* also change 'textauto' */
5979 if (*p_ffs == NUL)
5980 p_ta = FALSE;
5981 else
5982 p_ta = TRUE;
5986 #if defined(FEAT_CRYPT) && defined(FEAT_CMDHIST)
5987 /* 'cryptkey' */
5988 else if (gvarp == &p_key)
5990 /* Make sure the ":set" command doesn't show the new value in the
5991 * history. */
5992 remove_key_from_history();
5994 #endif
5996 /* 'matchpairs' */
5997 else if (gvarp == &p_mps)
5999 /* Check for "x:y,x:y" */
6000 for (p = *varp; *p != NUL; p += 4)
6002 if (p[1] != ':' || p[2] == NUL || (p[3] != NUL && p[3] != ','))
6004 errmsg = e_invarg;
6005 break;
6007 if (p[3] == NUL)
6008 break;
6012 #ifdef FEAT_COMMENTS
6013 /* 'comments' */
6014 else if (gvarp == &p_com)
6016 for (s = *varp; *s; )
6018 while (*s && *s != ':')
6020 if (vim_strchr((char_u *)COM_ALL, *s) == NULL
6021 && !VIM_ISDIGIT(*s) && *s != '-')
6023 errmsg = illegal_char(errbuf, *s);
6024 break;
6026 ++s;
6028 if (*s++ == NUL)
6029 errmsg = (char_u *)N_("E524: Missing colon");
6030 else if (*s == ',' || *s == NUL)
6031 errmsg = (char_u *)N_("E525: Zero length string");
6032 if (errmsg != NULL)
6033 break;
6034 while (*s && *s != ',')
6036 if (*s == '\\' && s[1] != NUL)
6037 ++s;
6038 ++s;
6040 s = skip_to_option_part(s);
6043 #endif
6045 /* 'listchars' */
6046 else if (varp == &p_lcs)
6048 errmsg = set_chars_option(varp);
6051 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6052 /* 'fillchars' */
6053 else if (varp == &p_fcs)
6055 errmsg = set_chars_option(varp);
6057 #endif
6059 #ifdef FEAT_CMDWIN
6060 /* 'cedit' */
6061 else if (varp == &p_cedit)
6063 errmsg = check_cedit();
6065 #endif
6067 /* 'verbosefile' */
6068 else if (varp == &p_vfile)
6070 verbose_stop();
6071 if (*p_vfile != NUL && verbose_open() == FAIL)
6072 errmsg = e_invarg;
6075 #ifdef FEAT_VIMINFO
6076 /* 'viminfo' */
6077 else if (varp == &p_viminfo)
6079 for (s = p_viminfo; *s;)
6081 /* Check it's a valid character */
6082 if (vim_strchr((char_u *)"!\"%'/:<@cfhnrs", *s) == NULL)
6084 errmsg = illegal_char(errbuf, *s);
6085 break;
6087 if (*s == 'n') /* name is always last one */
6089 break;
6091 else if (*s == 'r') /* skip until next ',' */
6093 while (*++s && *s != ',')
6096 else if (*s == '%')
6098 /* optional number */
6099 while (vim_isdigit(*++s))
6102 else if (*s == '!' || *s == 'h' || *s == 'c')
6103 ++s; /* no extra chars */
6104 else /* must have a number */
6106 while (vim_isdigit(*++s))
6109 if (!VIM_ISDIGIT(*(s - 1)))
6111 if (errbuf != NULL)
6113 sprintf((char *)errbuf,
6114 _("E526: Missing number after <%s>"),
6115 transchar_byte(*(s - 1)));
6116 errmsg = errbuf;
6118 else
6119 errmsg = (char_u *)"";
6120 break;
6123 if (*s == ',')
6124 ++s;
6125 else if (*s)
6127 if (errbuf != NULL)
6128 errmsg = (char_u *)N_("E527: Missing comma");
6129 else
6130 errmsg = (char_u *)"";
6131 break;
6134 if (*p_viminfo && errmsg == NULL && get_viminfo_parameter('\'') < 0)
6135 errmsg = (char_u *)N_("E528: Must specify a ' value");
6137 #endif /* FEAT_VIMINFO */
6139 /* terminal options */
6140 else if (istermoption(&options[opt_idx]) && full_screen)
6142 /* ":set t_Co=0" and ":set t_Co=1" do ":set t_Co=" */
6143 if (varp == &T_CCO)
6145 int colors = atoi((char *)T_CCO);
6147 /* Only reinitialize colors if t_Co value has really changed to
6148 * avoid expensive reload of colorscheme if t_Co is set to the
6149 * same value multiple times. */
6150 if (colors != t_colors)
6152 t_colors = colors;
6153 if (t_colors <= 1)
6155 if (new_value_alloced)
6156 vim_free(T_CCO);
6157 T_CCO = empty_option;
6159 /* We now have a different color setup, initialize it again. */
6160 init_highlight(TRUE, FALSE);
6163 ttest(FALSE);
6164 if (varp == &T_ME)
6166 out_str(T_ME);
6167 redraw_later(CLEAR);
6168 #if defined(MSDOS) || (defined(WIN3264) && !defined(FEAT_GUI_W32))
6169 /* Since t_me has been set, this probably means that the user
6170 * wants to use this as default colors. Need to reset default
6171 * background/foreground colors. */
6172 mch_set_normal_colors();
6173 #endif
6177 #ifdef FEAT_LINEBREAK
6178 /* 'showbreak' */
6179 else if (varp == &p_sbr)
6181 for (s = p_sbr; *s; )
6183 if (ptr2cells(s) != 1)
6184 errmsg = (char_u *)N_("E595: contains unprintable or wide character");
6185 mb_ptr_adv(s);
6188 #endif
6190 #ifdef FEAT_GUI
6191 /* 'guifont' */
6192 else if (varp == &p_guifont)
6194 if (gui.in_use)
6196 p = p_guifont;
6197 # if defined(FEAT_GUI_GTK)
6199 * Put up a font dialog and let the user select a new value.
6200 * If this is cancelled go back to the old value but don't
6201 * give an error message.
6203 if (STRCMP(p, "*") == 0)
6205 p = gui_mch_font_dialog(oldval);
6207 if (new_value_alloced)
6208 free_string_option(p_guifont);
6210 p_guifont = (p != NULL) ? p : vim_strsave(oldval);
6211 new_value_alloced = TRUE;
6213 # endif
6214 if (p != NULL && gui_init_font(p_guifont, FALSE) != OK)
6216 # if defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_PHOTON) \
6217 || defined(FEAT_GUI_MACVIM)
6218 if (STRCMP(p_guifont, "*") == 0)
6220 /* Dialog was cancelled: Keep the old value without giving
6221 * an error message. */
6222 if (new_value_alloced)
6223 free_string_option(p_guifont);
6224 p_guifont = vim_strsave(oldval);
6225 new_value_alloced = TRUE;
6227 else
6228 # endif
6229 errmsg = (char_u *)N_("E596: Invalid font(s)");
6232 redraw_gui_only = TRUE;
6234 # ifdef FEAT_XFONTSET
6235 else if (varp == &p_guifontset)
6237 if (STRCMP(p_guifontset, "*") == 0)
6238 errmsg = (char_u *)N_("E597: can't select fontset");
6239 else if (gui.in_use && gui_init_font(p_guifontset, TRUE) != OK)
6240 errmsg = (char_u *)N_("E598: Invalid fontset");
6241 redraw_gui_only = TRUE;
6243 # endif
6244 # ifdef FEAT_MBYTE
6245 else if (varp == &p_guifontwide)
6247 if (STRCMP(p_guifontwide, "*") == 0)
6248 errmsg = (char_u *)N_("E533: can't select wide font");
6249 else if (gui_get_wide_font() == FAIL)
6250 errmsg = (char_u *)N_("E534: Invalid wide font");
6251 redraw_gui_only = TRUE;
6253 # endif
6254 #endif
6256 #ifdef CURSOR_SHAPE
6257 /* 'guicursor' */
6258 else if (varp == &p_guicursor)
6259 errmsg = parse_shape_opt(SHAPE_CURSOR);
6260 #endif
6262 #ifdef FEAT_MOUSESHAPE
6263 /* 'mouseshape' */
6264 else if (varp == &p_mouseshape)
6266 errmsg = parse_shape_opt(SHAPE_MOUSE);
6267 update_mouseshape(-1);
6269 #endif
6271 #ifdef FEAT_PRINTER
6272 else if (varp == &p_popt)
6273 errmsg = parse_printoptions();
6274 # if defined(FEAT_MBYTE) && defined(FEAT_POSTSCRIPT)
6275 else if (varp == &p_pmfn)
6276 errmsg = parse_printmbfont();
6277 # endif
6278 #endif
6280 #ifdef FEAT_LANGMAP
6281 /* 'langmap' */
6282 else if (varp == &p_langmap)
6283 langmap_set();
6284 #endif
6286 #ifdef FEAT_LINEBREAK
6287 /* 'breakat' */
6288 else if (varp == &p_breakat)
6289 fill_breakat_flags();
6290 #endif
6292 #ifdef FEAT_TITLE
6293 /* 'titlestring' and 'iconstring' */
6294 else if (varp == &p_titlestring || varp == &p_iconstring)
6296 # ifdef FEAT_STL_OPT
6297 int flagval = (varp == &p_titlestring) ? STL_IN_TITLE : STL_IN_ICON;
6299 /* NULL => statusline syntax */
6300 if (vim_strchr(*varp, '%') && check_stl_option(*varp) == NULL)
6301 stl_syntax |= flagval;
6302 else
6303 stl_syntax &= ~flagval;
6304 # endif
6305 did_set_title(varp == &p_iconstring);
6308 #endif
6310 #ifdef FEAT_GUI
6311 /* 'guioptions' */
6312 else if (varp == &p_go)
6314 gui_init_which_components(oldval);
6315 redraw_gui_only = TRUE;
6317 #endif
6319 #if defined(FEAT_GUI_TABLINE)
6320 /* 'guitablabel' */
6321 else if (varp == &p_gtl)
6323 redraw_tabline = TRUE;
6324 redraw_gui_only = TRUE;
6326 /* 'guitabtooltip' */
6327 else if (varp == &p_gtt)
6329 redraw_gui_only = TRUE;
6331 #endif
6333 #if defined(FEAT_MOUSE_TTY) && (defined(UNIX) || defined(VMS))
6334 /* 'ttymouse' */
6335 else if (varp == &p_ttym)
6337 /* Switch the mouse off before changing the escape sequences used for
6338 * that. */
6339 mch_setmouse(FALSE);
6340 if (opt_strings_flags(p_ttym, p_ttym_values, &ttym_flags, FALSE) != OK)
6341 errmsg = e_invarg;
6342 else
6343 check_mouse_termcode();
6344 if (termcap_active)
6345 setmouse(); /* may switch it on again */
6347 #endif
6349 #ifdef FEAT_VISUAL
6350 /* 'selection' */
6351 else if (varp == &p_sel)
6353 if (*p_sel == NUL
6354 || check_opt_strings(p_sel, p_sel_values, FALSE) != OK)
6355 errmsg = e_invarg;
6358 /* 'selectmode' */
6359 else if (varp == &p_slm)
6361 if (check_opt_strings(p_slm, p_slm_values, TRUE) != OK)
6362 errmsg = e_invarg;
6364 #endif
6366 #ifdef FEAT_BROWSE
6367 /* 'browsedir' */
6368 else if (varp == &p_bsdir)
6370 if (check_opt_strings(p_bsdir, p_bsdir_values, FALSE) != OK
6371 && !mch_isdir(p_bsdir))
6372 errmsg = e_invarg;
6374 #endif
6376 #ifdef FEAT_VISUAL
6377 /* 'keymodel' */
6378 else if (varp == &p_km)
6380 if (check_opt_strings(p_km, p_km_values, TRUE) != OK)
6381 errmsg = e_invarg;
6382 else
6384 km_stopsel = (vim_strchr(p_km, 'o') != NULL);
6385 km_startsel = (vim_strchr(p_km, 'a') != NULL);
6388 #endif
6390 /* 'mousemodel' */
6391 else if (varp == &p_mousem)
6393 if (check_opt_strings(p_mousem, p_mousem_values, FALSE) != OK)
6394 errmsg = e_invarg;
6395 #if defined(FEAT_GUI_MOTIF) && defined(FEAT_MENU) && (XmVersion <= 1002)
6396 else if (*p_mousem != *oldval)
6397 /* Changed from "extend" to "popup" or "popup_setpos" or vv: need
6398 * to create or delete the popup menus. */
6399 gui_motif_update_mousemodel(root_menu);
6400 #endif
6403 /* 'switchbuf' */
6404 else if (varp == &p_swb)
6406 if (opt_strings_flags(p_swb, p_swb_values, &swb_flags, TRUE) != OK)
6407 errmsg = e_invarg;
6410 /* 'debug' */
6411 else if (varp == &p_debug)
6413 if (check_opt_strings(p_debug, p_debug_values, TRUE) != OK)
6414 errmsg = e_invarg;
6417 /* 'display' */
6418 else if (varp == &p_dy)
6420 if (opt_strings_flags(p_dy, p_dy_values, &dy_flags, TRUE) != OK)
6421 errmsg = e_invarg;
6422 else
6423 (void)init_chartab();
6427 #ifdef FEAT_VERTSPLIT
6428 /* 'eadirection' */
6429 else if (varp == &p_ead)
6431 if (check_opt_strings(p_ead, p_ead_values, FALSE) != OK)
6432 errmsg = e_invarg;
6434 #endif
6436 #ifdef FEAT_CLIPBOARD
6437 /* 'clipboard' */
6438 else if (varp == &p_cb)
6439 errmsg = check_clipboard_option();
6440 #endif
6442 #ifdef FEAT_SPELL
6443 /* When 'spelllang' or 'spellfile' is set and there is a window for this
6444 * buffer in which 'spell' is set load the wordlists. */
6445 else if (varp == &(curbuf->b_p_spl) || varp == &(curbuf->b_p_spf))
6447 win_T *wp;
6448 int l;
6450 if (varp == &(curbuf->b_p_spf))
6452 l = (int)STRLEN(curbuf->b_p_spf);
6453 if (l > 0 && (l < 4 || STRCMP(curbuf->b_p_spf + l - 4,
6454 ".add") != 0))
6455 errmsg = e_invarg;
6458 if (errmsg == NULL)
6460 FOR_ALL_WINDOWS(wp)
6461 if (wp->w_buffer == curbuf && wp->w_p_spell)
6463 errmsg = did_set_spelllang(curbuf);
6464 # ifdef FEAT_WINDOWS
6465 break;
6466 # endif
6470 /* When 'spellcapcheck' is set compile the regexp program. */
6471 else if (varp == &(curbuf->b_p_spc))
6473 errmsg = compile_cap_prog(curbuf);
6475 /* 'spellsuggest' */
6476 else if (varp == &p_sps)
6478 if (spell_check_sps() != OK)
6479 errmsg = e_invarg;
6481 /* 'mkspellmem' */
6482 else if (varp == &p_msm)
6484 if (spell_check_msm() != OK)
6485 errmsg = e_invarg;
6487 #endif
6489 #ifdef FEAT_QUICKFIX
6490 /* When 'bufhidden' is set, check for valid value. */
6491 else if (gvarp == &p_bh)
6493 if (check_opt_strings(curbuf->b_p_bh, p_bufhidden_values, FALSE) != OK)
6494 errmsg = e_invarg;
6497 /* When 'buftype' is set, check for valid value. */
6498 else if (gvarp == &p_bt)
6500 if (check_opt_strings(curbuf->b_p_bt, p_buftype_values, FALSE) != OK)
6501 errmsg = e_invarg;
6502 else
6504 # ifdef FEAT_WINDOWS
6505 if (curwin->w_status_height)
6507 curwin->w_redr_status = TRUE;
6508 redraw_later(VALID);
6510 # endif
6511 curbuf->b_help = (curbuf->b_p_bt[0] == 'h');
6514 #endif
6516 #ifdef FEAT_STL_OPT
6517 /* 'statusline' or 'rulerformat' */
6518 else if (gvarp == &p_stl || varp == &p_ruf)
6520 int wid;
6522 if (varp == &p_ruf) /* reset ru_wid first */
6523 ru_wid = 0;
6524 s = *varp;
6525 if (varp == &p_ruf && *s == '%')
6527 /* set ru_wid if 'ruf' starts with "%99(" */
6528 if (*++s == '-') /* ignore a '-' */
6529 s++;
6530 wid = getdigits(&s);
6531 if (wid && *s == '(' && (errmsg = check_stl_option(p_ruf)) == NULL)
6532 ru_wid = wid;
6533 else
6534 errmsg = check_stl_option(p_ruf);
6536 /* check 'statusline' only if it doesn't start with "%!" */
6537 else if (varp == &p_ruf || s[0] != '%' || s[1] != '!')
6538 errmsg = check_stl_option(s);
6539 if (varp == &p_ruf && errmsg == NULL)
6540 comp_col();
6542 #endif
6544 #ifdef FEAT_INS_EXPAND
6545 /* check if it is a valid value for 'complete' -- Acevedo */
6546 else if (gvarp == &p_cpt)
6548 for (s = *varp; *s;)
6550 while(*s == ',' || *s == ' ')
6551 s++;
6552 if (!*s)
6553 break;
6554 if (vim_strchr((char_u *)".wbuksid]tU", *s) == NULL)
6556 errmsg = illegal_char(errbuf, *s);
6557 break;
6559 if (*++s != NUL && *s != ',' && *s != ' ')
6561 if (s[-1] == 'k' || s[-1] == 's')
6563 /* skip optional filename after 'k' and 's' */
6564 while (*s && *s != ',' && *s != ' ')
6566 if (*s == '\\')
6567 ++s;
6568 ++s;
6571 else
6573 if (errbuf != NULL)
6575 sprintf((char *)errbuf,
6576 _("E535: Illegal character after <%c>"),
6577 *--s);
6578 errmsg = errbuf;
6580 else
6581 errmsg = (char_u *)"";
6582 break;
6588 /* 'completeopt' */
6589 else if (varp == &p_cot)
6591 if (check_opt_strings(p_cot, p_cot_values, TRUE) != OK)
6592 errmsg = e_invarg;
6594 #endif /* FEAT_INS_EXPAND */
6597 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
6598 else if (varp == &p_toolbar)
6600 if (opt_strings_flags(p_toolbar, p_toolbar_values,
6601 &toolbar_flags, TRUE) != OK)
6602 errmsg = e_invarg;
6603 else
6605 out_flush();
6606 gui_mch_show_toolbar((toolbar_flags &
6607 (TOOLBAR_TEXT | TOOLBAR_ICONS)) != 0);
6610 #endif
6612 #if defined(FEAT_TOOLBAR) && ((defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)) \
6613 || defined(FEAT_GUI_MACVIM))
6614 /* 'toolbariconsize': GTK+ 2 and MacVim only */
6615 else if (varp == &p_tbis)
6617 if (opt_strings_flags(p_tbis, p_tbis_values, &tbis_flags, FALSE) != OK)
6618 errmsg = e_invarg;
6619 else
6621 out_flush();
6622 gui_mch_show_toolbar((toolbar_flags &
6623 (TOOLBAR_TEXT | TOOLBAR_ICONS)) != 0);
6626 #endif
6628 /* 'pastetoggle': translate key codes like in a mapping */
6629 else if (varp == &p_pt)
6631 if (*p_pt)
6633 (void)replace_termcodes(p_pt, &p, TRUE, TRUE, FALSE);
6634 if (p != NULL)
6636 if (new_value_alloced)
6637 free_string_option(p_pt);
6638 p_pt = p;
6639 new_value_alloced = TRUE;
6644 /* 'backspace' */
6645 else if (varp == &p_bs)
6647 if (VIM_ISDIGIT(*p_bs))
6649 if (*p_bs >'2' || p_bs[1] != NUL)
6650 errmsg = e_invarg;
6652 else if (check_opt_strings(p_bs, p_bs_values, TRUE) != OK)
6653 errmsg = e_invarg;
6656 #ifdef FEAT_MBYTE
6657 /* 'casemap' */
6658 else if (varp == &p_cmp)
6660 if (opt_strings_flags(p_cmp, p_cmp_values, &cmp_flags, TRUE) != OK)
6661 errmsg = e_invarg;
6663 #endif
6665 #ifdef FEAT_DIFF
6666 /* 'diffopt' */
6667 else if (varp == &p_dip)
6669 if (diffopt_changed() == FAIL)
6670 errmsg = e_invarg;
6672 #endif
6674 #ifdef FEAT_FOLDING
6675 /* 'foldmethod' */
6676 else if (gvarp == &curwin->w_allbuf_opt.wo_fdm)
6678 if (check_opt_strings(*varp, p_fdm_values, FALSE) != OK
6679 || *curwin->w_p_fdm == NUL)
6680 errmsg = e_invarg;
6681 else
6682 foldUpdateAll(curwin);
6684 # ifdef FEAT_EVAL
6685 /* 'foldexpr' */
6686 else if (varp == &curwin->w_p_fde)
6688 if (foldmethodIsExpr(curwin))
6689 foldUpdateAll(curwin);
6691 # endif
6692 /* 'foldmarker' */
6693 else if (gvarp == &curwin->w_allbuf_opt.wo_fmr)
6695 p = vim_strchr(*varp, ',');
6696 if (p == NULL)
6697 errmsg = (char_u *)N_("E536: comma required");
6698 else if (p == *varp || p[1] == NUL)
6699 errmsg = e_invarg;
6700 else if (foldmethodIsMarker(curwin))
6701 foldUpdateAll(curwin);
6703 /* 'commentstring' */
6704 else if (gvarp == &p_cms)
6706 if (**varp != NUL && strstr((char *)*varp, "%s") == NULL)
6707 errmsg = (char_u *)N_("E537: 'commentstring' must be empty or contain %s");
6709 /* 'foldopen' */
6710 else if (varp == &p_fdo)
6712 if (opt_strings_flags(p_fdo, p_fdo_values, &fdo_flags, TRUE) != OK)
6713 errmsg = e_invarg;
6715 /* 'foldclose' */
6716 else if (varp == &p_fcl)
6718 if (check_opt_strings(p_fcl, p_fcl_values, TRUE) != OK)
6719 errmsg = e_invarg;
6721 /* 'foldignore' */
6722 else if (gvarp == &curwin->w_allbuf_opt.wo_fdi)
6724 if (foldmethodIsIndent(curwin))
6725 foldUpdateAll(curwin);
6727 #endif
6729 #ifdef FEAT_FULLSCREEN
6730 /* 'fuoptions' */
6731 else if (varp == &p_fuoptions)
6733 if (check_fuoptions(p_fuoptions, &fuoptions_flags,
6734 &fuoptions_bgcolor) != OK)
6735 errmsg = e_invarg;
6737 #endif
6739 #ifdef FEAT_VIRTUALEDIT
6740 /* 'virtualedit' */
6741 else if (varp == &p_ve)
6743 if (opt_strings_flags(p_ve, p_ve_values, &ve_flags, TRUE) != OK)
6744 errmsg = e_invarg;
6745 else if (STRCMP(p_ve, oldval) != 0)
6747 /* Recompute cursor position in case the new 've' setting
6748 * changes something. */
6749 validate_virtcol();
6750 coladvance(curwin->w_virtcol);
6753 #endif
6755 #if defined(FEAT_CSCOPE) && defined(FEAT_QUICKFIX)
6756 else if (varp == &p_csqf)
6758 if (p_csqf != NULL)
6760 p = p_csqf;
6761 while (*p != NUL)
6763 if (vim_strchr((char_u *)CSQF_CMDS, *p) == NULL
6764 || p[1] == NUL
6765 || vim_strchr((char_u *)CSQF_FLAGS, p[1]) == NULL
6766 || (p[2] != NUL && p[2] != ','))
6768 errmsg = e_invarg;
6769 break;
6771 else if (p[2] == NUL)
6772 break;
6773 else
6774 p += 3;
6778 #endif
6780 /* Options that are a list of flags. */
6781 else
6783 p = NULL;
6784 if (varp == &p_ww)
6785 p = (char_u *)WW_ALL;
6786 if (varp == &p_shm)
6787 p = (char_u *)SHM_ALL;
6788 else if (varp == &(p_cpo))
6789 p = (char_u *)CPO_ALL;
6790 else if (varp == &(curbuf->b_p_fo))
6791 p = (char_u *)FO_ALL;
6792 else if (varp == &p_mouse)
6794 #ifdef FEAT_MOUSE
6795 p = (char_u *)MOUSE_ALL;
6796 #else
6797 if (*p_mouse != NUL)
6798 errmsg = (char_u *)N_("E538: No mouse support");
6799 #endif
6801 #if defined(FEAT_GUI)
6802 else if (varp == &p_go)
6803 p = (char_u *)GO_ALL;
6804 #endif
6805 if (p != NULL)
6807 for (s = *varp; *s; ++s)
6808 if (vim_strchr(p, *s) == NULL)
6810 errmsg = illegal_char(errbuf, *s);
6811 break;
6817 * If error detected, restore the previous value.
6819 if (errmsg != NULL)
6821 if (new_value_alloced)
6822 free_string_option(*varp);
6823 *varp = oldval;
6825 * When resetting some values, need to act on it.
6827 if (did_chartab)
6828 (void)init_chartab();
6829 if (varp == &p_hl)
6830 (void)highlight_changed();
6832 else
6834 #ifdef FEAT_EVAL
6835 /* Remember where the option was set. */
6836 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
6837 #endif
6839 * Free string options that are in allocated memory.
6840 * Use "free_oldval", because recursiveness may change the flags under
6841 * our fingers (esp. init_highlight()).
6843 if (free_oldval)
6844 free_string_option(oldval);
6845 if (new_value_alloced)
6846 options[opt_idx].flags |= P_ALLOCED;
6847 else
6848 options[opt_idx].flags &= ~P_ALLOCED;
6850 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
6851 && ((int)options[opt_idx].indir & PV_BOTH))
6853 /* global option with local value set to use global value; free
6854 * the local value and make it empty */
6855 p = get_varp_scope(&(options[opt_idx]), OPT_LOCAL);
6856 free_string_option(*(char_u **)p);
6857 *(char_u **)p = empty_option;
6860 /* May set global value for local option. */
6861 else if (!(opt_flags & OPT_LOCAL) && opt_flags != OPT_GLOBAL)
6862 set_string_option_global(opt_idx, varp);
6864 #ifdef FEAT_AUTOCMD
6866 * Trigger the autocommand only after setting the flags.
6868 # ifdef FEAT_SYN_HL
6869 /* When 'syntax' is set, load the syntax of that name */
6870 if (varp == &(curbuf->b_p_syn))
6872 apply_autocmds(EVENT_SYNTAX, curbuf->b_p_syn,
6873 curbuf->b_fname, TRUE, curbuf);
6875 # endif
6876 else if (varp == &(curbuf->b_p_ft))
6878 /* 'filetype' is set, trigger the FileType autocommand */
6879 did_filetype = TRUE;
6880 apply_autocmds(EVENT_FILETYPE, curbuf->b_p_ft,
6881 curbuf->b_fname, TRUE, curbuf);
6883 #endif
6884 #ifdef FEAT_SPELL
6885 if (varp == &(curbuf->b_p_spl))
6887 char_u fname[200];
6890 * Source the spell/LANG.vim in 'runtimepath'.
6891 * They could set 'spellcapcheck' depending on the language.
6892 * Use the first name in 'spelllang' up to '_region' or
6893 * '.encoding'.
6895 for (p = curbuf->b_p_spl; *p != NUL; ++p)
6896 if (vim_strchr((char_u *)"_.,", *p) != NULL)
6897 break;
6898 vim_snprintf((char *)fname, 200, "spell/%.*s.vim",
6899 (int)(p - curbuf->b_p_spl), curbuf->b_p_spl);
6900 source_runtime(fname, TRUE);
6902 #endif
6905 #ifdef FEAT_MOUSE
6906 if (varp == &p_mouse)
6908 # ifdef FEAT_MOUSE_TTY
6909 if (*p_mouse == NUL)
6910 mch_setmouse(FALSE); /* switch mouse off */
6911 else
6912 # endif
6913 setmouse(); /* in case 'mouse' changed */
6915 #endif
6917 if (curwin->w_curswant != MAXCOL)
6918 curwin->w_set_curswant = TRUE; /* in case 'showbreak' changed */
6919 #ifdef FEAT_GUI
6920 /* check redraw when it's not a GUI option or the GUI is active. */
6921 if (!redraw_gui_only || gui.in_use)
6922 #endif
6923 check_redraw(options[opt_idx].flags);
6925 return errmsg;
6929 * Handle setting 'listchars' or 'fillchars'.
6930 * Returns error message, NULL if it's OK.
6932 static char_u *
6933 set_chars_option(varp)
6934 char_u **varp;
6936 int round, i, len, entries;
6937 char_u *p, *s;
6938 int c1, c2 = 0;
6939 struct charstab
6941 int *cp;
6942 char *name;
6944 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6945 static struct charstab filltab[] =
6947 {&fill_stl, "stl"},
6948 {&fill_stlnc, "stlnc"},
6949 {&fill_vert, "vert"},
6950 {&fill_fold, "fold"},
6951 {&fill_diff, "diff"},
6953 #endif
6954 static struct charstab lcstab[] =
6956 {&lcs_eol, "eol"},
6957 {&lcs_ext, "extends"},
6958 {&lcs_nbsp, "nbsp"},
6959 {&lcs_prec, "precedes"},
6960 {&lcs_tab2, "tab"},
6961 {&lcs_trail, "trail"},
6963 struct charstab *tab;
6965 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6966 if (varp == &p_lcs)
6967 #endif
6969 tab = lcstab;
6970 entries = sizeof(lcstab) / sizeof(struct charstab);
6972 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6973 else
6975 tab = filltab;
6976 entries = sizeof(filltab) / sizeof(struct charstab);
6978 #endif
6980 /* first round: check for valid value, second round: assign values */
6981 for (round = 0; round <= 1; ++round)
6983 if (round)
6985 /* After checking that the value is valid: set defaults: space for
6986 * 'fillchars', NUL for 'listchars' */
6987 for (i = 0; i < entries; ++i)
6988 *(tab[i].cp) = (varp == &p_lcs ? NUL : ' ');
6989 if (varp == &p_lcs)
6990 lcs_tab1 = NUL;
6991 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6992 else
6993 fill_diff = '-';
6994 #endif
6996 p = *varp;
6997 while (*p)
6999 for (i = 0; i < entries; ++i)
7001 len = (int)STRLEN(tab[i].name);
7002 if (STRNCMP(p, tab[i].name, len) == 0
7003 && p[len] == ':'
7004 && p[len + 1] != NUL)
7006 s = p + len + 1;
7007 #ifdef FEAT_MBYTE
7008 c1 = mb_ptr2char_adv(&s);
7009 if (mb_char2cells(c1) > 1)
7010 continue;
7011 #else
7012 c1 = *s++;
7013 #endif
7014 if (tab[i].cp == &lcs_tab2)
7016 if (*s == NUL)
7017 continue;
7018 #ifdef FEAT_MBYTE
7019 c2 = mb_ptr2char_adv(&s);
7020 if (mb_char2cells(c2) > 1)
7021 continue;
7022 #else
7023 c2 = *s++;
7024 #endif
7026 if (*s == ',' || *s == NUL)
7028 if (round)
7030 if (tab[i].cp == &lcs_tab2)
7032 lcs_tab1 = c1;
7033 lcs_tab2 = c2;
7035 else
7036 *(tab[i].cp) = c1;
7039 p = s;
7040 break;
7045 if (i == entries)
7046 return e_invarg;
7047 if (*p == ',')
7048 ++p;
7052 return NULL; /* no error */
7055 #ifdef FEAT_STL_OPT
7057 * Check validity of options with the 'statusline' format.
7058 * Return error message or NULL.
7060 char_u *
7061 check_stl_option(s)
7062 char_u *s;
7064 int itemcnt = 0;
7065 int groupdepth = 0;
7066 static char_u errbuf[80];
7068 while (*s && itemcnt < STL_MAX_ITEM)
7070 /* Check for valid keys after % sequences */
7071 while (*s && *s != '%')
7072 s++;
7073 if (!*s)
7074 break;
7075 s++;
7076 if (*s != '%' && *s != ')')
7077 ++itemcnt;
7078 if (*s == '%' || *s == STL_TRUNCMARK || *s == STL_MIDDLEMARK)
7080 s++;
7081 continue;
7083 if (*s == ')')
7085 s++;
7086 if (--groupdepth < 0)
7087 break;
7088 continue;
7090 if (*s == '-')
7091 s++;
7092 while (VIM_ISDIGIT(*s))
7093 s++;
7094 if (*s == STL_USER_HL)
7095 continue;
7096 if (*s == '.')
7098 s++;
7099 while (*s && VIM_ISDIGIT(*s))
7100 s++;
7102 if (*s == '(')
7104 groupdepth++;
7105 continue;
7107 if (vim_strchr(STL_ALL, *s) == NULL)
7109 return illegal_char(errbuf, *s);
7111 if (*s == '{')
7113 s++;
7114 while (*s != '}' && *s)
7115 s++;
7116 if (*s != '}')
7117 return (char_u *)N_("E540: Unclosed expression sequence");
7120 if (itemcnt >= STL_MAX_ITEM)
7121 return (char_u *)N_("E541: too many items");
7122 if (groupdepth != 0)
7123 return (char_u *)N_("E542: unbalanced groups");
7124 return NULL;
7126 #endif
7128 #ifdef FEAT_CLIPBOARD
7130 * Extract the items in the 'clipboard' option and set global values.
7132 static char_u *
7133 check_clipboard_option()
7135 int new_unnamed = FALSE;
7136 int new_autoselect = FALSE;
7137 int new_autoselectml = FALSE;
7138 int new_html = FALSE;
7139 regprog_T *new_exclude_prog = NULL;
7140 char_u *errmsg = NULL;
7141 char_u *p;
7143 for (p = p_cb; *p != NUL; )
7145 if (STRNCMP(p, "unnamed", 7) == 0 && (p[7] == ',' || p[7] == NUL))
7147 new_unnamed = TRUE;
7148 p += 7;
7150 else if (STRNCMP(p, "autoselect", 10) == 0
7151 && (p[10] == ',' || p[10] == NUL))
7153 new_autoselect = TRUE;
7154 p += 10;
7156 else if (STRNCMP(p, "autoselectml", 12) == 0
7157 && (p[12] == ',' || p[12] == NUL))
7159 new_autoselectml = TRUE;
7160 p += 12;
7162 else if (STRNCMP(p, "html", 4) == 0 && (p[4] == ',' || p[4] == NUL))
7164 new_html = TRUE;
7165 p += 4;
7167 else if (STRNCMP(p, "exclude:", 8) == 0 && new_exclude_prog == NULL)
7169 p += 8;
7170 new_exclude_prog = vim_regcomp(p, RE_MAGIC);
7171 if (new_exclude_prog == NULL)
7172 errmsg = e_invarg;
7173 break;
7175 else
7177 errmsg = e_invarg;
7178 break;
7180 if (*p == ',')
7181 ++p;
7183 if (errmsg == NULL)
7185 clip_unnamed = new_unnamed;
7186 clip_autoselect = new_autoselect;
7187 clip_autoselectml = new_autoselectml;
7188 clip_html = new_html;
7189 vim_free(clip_exclude_prog);
7190 clip_exclude_prog = new_exclude_prog;
7192 else
7193 vim_free(new_exclude_prog);
7195 return errmsg;
7197 #endif
7199 #ifdef FEAT_SPELL
7201 * Set curbuf->b_cap_prog to the regexp program for 'spellcapcheck'.
7202 * Return error message when failed, NULL when OK.
7204 static char_u *
7205 compile_cap_prog(buf)
7206 buf_T *buf;
7208 regprog_T *rp = buf->b_cap_prog;
7209 char_u *re;
7211 if (*buf->b_p_spc == NUL)
7212 buf->b_cap_prog = NULL;
7213 else
7215 /* Prepend a ^ so that we only match at one column */
7216 re = concat_str((char_u *)"^", buf->b_p_spc);
7217 if (re != NULL)
7219 buf->b_cap_prog = vim_regcomp(re, RE_MAGIC);
7220 if (buf->b_cap_prog == NULL)
7222 buf->b_cap_prog = rp; /* restore the previous program */
7223 return e_invarg;
7225 vim_free(re);
7229 vim_free(rp);
7230 return NULL;
7232 #endif
7234 #if defined(FEAT_EVAL) || defined(PROTO)
7236 * Set the scriptID for an option, taking care of setting the buffer- or
7237 * window-local value.
7239 static void
7240 set_option_scriptID_idx(opt_idx, opt_flags, id)
7241 int opt_idx;
7242 int opt_flags;
7243 int id;
7245 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
7246 int indir = (int)options[opt_idx].indir;
7248 /* Remember where the option was set. For local options need to do that
7249 * in the buffer or window structure. */
7250 if (both || (opt_flags & OPT_GLOBAL) || (indir & (PV_BUF|PV_WIN)) == 0)
7251 options[opt_idx].scriptID = id;
7252 if (both || (opt_flags & OPT_LOCAL))
7254 if (indir & PV_BUF)
7255 curbuf->b_p_scriptID[indir & PV_MASK] = id;
7256 else if (indir & PV_WIN)
7257 curwin->w_p_scriptID[indir & PV_MASK] = id;
7260 #endif
7263 * Set the value of a boolean option, and take care of side effects.
7264 * Returns NULL for success, or an error message for an error.
7266 static char_u *
7267 set_bool_option(opt_idx, varp, value, opt_flags)
7268 int opt_idx; /* index in options[] table */
7269 char_u *varp; /* pointer to the option variable */
7270 int value; /* new value */
7271 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
7273 int old_value = *(int *)varp;
7275 /* Disallow changing some options from secure mode */
7276 if ((secure
7277 #ifdef HAVE_SANDBOX
7278 || sandbox != 0
7279 #endif
7280 ) && (options[opt_idx].flags & P_SECURE))
7281 return e_secure;
7283 *(int *)varp = value; /* set the new value */
7284 #ifdef FEAT_EVAL
7285 /* Remember where the option was set. */
7286 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
7287 #endif
7289 #ifdef FEAT_GUI
7290 need_mouse_correct = TRUE;
7291 #endif
7293 /* May set global value for local option. */
7294 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0)
7295 *(int *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) = value;
7298 * Handle side effects of changing a bool option.
7301 /* 'compatible' */
7302 if ((int *)varp == &p_cp)
7304 compatible_set();
7307 else if ((int *)varp == &curbuf->b_p_ro)
7309 /* when 'readonly' is reset globally, also reset readonlymode */
7310 if (!curbuf->b_p_ro && (opt_flags & OPT_LOCAL) == 0)
7311 readonlymode = FALSE;
7313 /* when 'readonly' is set may give W10 again */
7314 if (curbuf->b_p_ro)
7315 curbuf->b_did_warn = FALSE;
7317 #ifdef FEAT_TITLE
7318 redraw_titles();
7319 #endif
7322 #ifdef FEAT_TITLE
7323 /* when 'modifiable' is changed, redraw the window title */
7324 else if ((int *)varp == &curbuf->b_p_ma)
7326 redraw_titles();
7328 /* when 'endofline' is changed, redraw the window title */
7329 else if ((int *)varp == &curbuf->b_p_eol)
7331 redraw_titles();
7333 # ifdef FEAT_MBYTE
7334 /* when 'bomb' is changed, redraw the window title and tab page text */
7335 else if ((int *)varp == &curbuf->b_p_bomb)
7337 redraw_titles();
7339 # endif
7340 #endif
7342 /* when 'bin' is set also set some other options */
7343 else if ((int *)varp == &curbuf->b_p_bin)
7345 set_options_bin(old_value, curbuf->b_p_bin, opt_flags);
7346 #ifdef FEAT_TITLE
7347 redraw_titles();
7348 #endif
7351 #ifdef FEAT_AUTOCMD
7352 /* when 'buflisted' changes, trigger autocommands */
7353 else if ((int *)varp == &curbuf->b_p_bl && old_value != curbuf->b_p_bl)
7355 apply_autocmds(curbuf->b_p_bl ? EVENT_BUFADD : EVENT_BUFDELETE,
7356 NULL, NULL, TRUE, curbuf);
7358 #endif
7360 /* when 'swf' is set, create swapfile, when reset remove swapfile */
7361 else if ((int *)varp == &curbuf->b_p_swf)
7363 if (curbuf->b_p_swf && p_uc)
7364 ml_open_file(curbuf); /* create the swap file */
7365 else
7366 /* no need to reset curbuf->b_may_swap, ml_open_file() will check
7367 * buf->b_p_swf */
7368 mf_close_file(curbuf, TRUE); /* remove the swap file */
7371 /* when 'terse' is set change 'shortmess' */
7372 else if ((int *)varp == &p_terse)
7374 char_u *p;
7376 p = vim_strchr(p_shm, SHM_SEARCH);
7378 /* insert 's' in p_shm */
7379 if (p_terse && p == NULL)
7381 STRCPY(IObuff, p_shm);
7382 STRCAT(IObuff, "s");
7383 set_string_option_direct((char_u *)"shm", -1, IObuff, OPT_FREE, 0);
7385 /* remove 's' from p_shm */
7386 else if (!p_terse && p != NULL)
7387 STRMOVE(p, p + 1);
7390 /* when 'paste' is set or reset also change other options */
7391 else if ((int *)varp == &p_paste)
7393 paste_option_changed();
7396 /* when 'insertmode' is set from an autocommand need to do work here */
7397 else if ((int *)varp == &p_im)
7399 if (p_im)
7401 if ((State & INSERT) == 0)
7402 need_start_insertmode = TRUE;
7403 stop_insert_mode = FALSE;
7405 else
7407 need_start_insertmode = FALSE;
7408 stop_insert_mode = TRUE;
7409 if (restart_edit != 0 && mode_displayed)
7410 clear_cmdline = TRUE; /* remove "(insert)" */
7411 restart_edit = 0;
7415 /* when 'ignorecase' is set or reset and 'hlsearch' is set, redraw */
7416 else if ((int *)varp == &p_ic && p_hls)
7418 redraw_all_later(SOME_VALID);
7421 #ifdef FEAT_SEARCH_EXTRA
7422 /* when 'hlsearch' is set or reset: reset no_hlsearch */
7423 else if ((int *)varp == &p_hls)
7425 no_hlsearch = FALSE;
7427 #endif
7429 #ifdef FEAT_SCROLLBIND
7430 /* when 'scrollbind' is set: snapshot the current position to avoid a jump
7431 * at the end of normal_cmd() */
7432 else if ((int *)varp == &curwin->w_p_scb)
7434 if (curwin->w_p_scb)
7435 do_check_scrollbind(FALSE);
7437 #endif
7439 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
7440 /* There can be only one window with 'previewwindow' set. */
7441 else if ((int *)varp == &curwin->w_p_pvw)
7443 if (curwin->w_p_pvw)
7445 win_T *win;
7447 for (win = firstwin; win != NULL; win = win->w_next)
7448 if (win->w_p_pvw && win != curwin)
7450 curwin->w_p_pvw = FALSE;
7451 return (char_u *)N_("E590: A preview window already exists");
7455 #endif
7457 /* when 'textmode' is set or reset also change 'fileformat' */
7458 else if ((int *)varp == &curbuf->b_p_tx)
7460 set_fileformat(curbuf->b_p_tx ? EOL_DOS : EOL_UNIX, opt_flags);
7463 #ifdef FEAT_FULLSCREEN
7464 /* when 'fullscreen' changes, forward it to the gui */
7465 else if ((int *)varp == &p_fullscreen && gui.in_use)
7467 if (p_fullscreen && !old_value)
7469 guicolor_T fg, bg;
7470 if (fuoptions_flags & FUOPT_BGCOLOR_HLGROUP)
7472 /* Find out background color from colorscheme
7473 * via highlight group id */
7474 syn_id2colors(fuoptions_bgcolor, &fg, &bg);
7476 else
7478 /* set explicit background color */
7479 bg = fuoptions_bgcolor;
7481 gui_mch_enter_fullscreen(fuoptions_flags, bg);
7483 else if (!p_fullscreen && old_value)
7485 gui_mch_leave_fullscreen();
7488 #endif
7490 #if defined(FEAT_ANTIALIAS) && defined(FEAT_GUI_MACVIM)
7491 else if ((int *)varp == &p_antialias)
7493 gui_macvim_set_antialias(p_antialias);
7495 #endif
7497 /* when 'textauto' is set or reset also change 'fileformats' */
7498 else if ((int *)varp == &p_ta)
7499 set_string_option_direct((char_u *)"ffs", -1,
7500 p_ta ? (char_u *)DFLT_FFS_VIM : (char_u *)"",
7501 OPT_FREE | opt_flags, 0);
7504 * When 'lisp' option changes include/exclude '-' in
7505 * keyword characters.
7507 #ifdef FEAT_LISP
7508 else if (varp == (char_u *)&(curbuf->b_p_lisp))
7510 (void)buf_init_chartab(curbuf, FALSE); /* ignore errors */
7512 #endif
7514 #ifdef FEAT_TITLE
7515 /* when 'title' changed, may need to change the title; same for 'icon' */
7516 else if ((int *)varp == &p_title)
7518 did_set_title(FALSE);
7521 else if ((int *)varp == &p_icon)
7523 did_set_title(TRUE);
7525 #endif
7527 else if ((int *)varp == &curbuf->b_changed)
7529 if (!value)
7530 save_file_ff(curbuf); /* Buffer is unchanged */
7531 #ifdef FEAT_TITLE
7532 redraw_titles();
7533 #endif
7534 #ifdef FEAT_AUTOCMD
7535 modified_was_set = value;
7536 #endif
7539 #ifdef BACKSLASH_IN_FILENAME
7540 else if ((int *)varp == &p_ssl)
7542 if (p_ssl)
7544 psepc = '/';
7545 psepcN = '\\';
7546 pseps[0] = '/';
7548 else
7550 psepc = '\\';
7551 psepcN = '/';
7552 pseps[0] = '\\';
7555 /* need to adjust the file name arguments and buffer names. */
7556 buflist_slash_adjust();
7557 alist_slash_adjust();
7558 # ifdef FEAT_EVAL
7559 scriptnames_slash_adjust();
7560 # endif
7562 #endif
7564 /* If 'wrap' is set, set w_leftcol to zero. */
7565 else if ((int *)varp == &curwin->w_p_wrap)
7567 if (curwin->w_p_wrap)
7568 curwin->w_leftcol = 0;
7571 #ifdef FEAT_WINDOWS
7572 else if ((int *)varp == &p_ea)
7574 if (p_ea && !old_value)
7575 win_equal(curwin, FALSE, 0);
7577 #endif
7579 else if ((int *)varp == &p_wiv)
7582 * When 'weirdinvert' changed, set/reset 't_xs'.
7583 * Then set 'weirdinvert' according to value of 't_xs'.
7585 if (p_wiv && !old_value)
7586 T_XS = (char_u *)"y";
7587 else if (!p_wiv && old_value)
7588 T_XS = empty_option;
7589 p_wiv = (*T_XS != NUL);
7592 #ifdef FEAT_BEVAL
7593 else if ((int *)varp == &p_beval)
7595 if (p_beval == TRUE)
7596 gui_mch_enable_beval_area(balloonEval);
7597 else
7598 gui_mch_disable_beval_area(balloonEval);
7600 #endif
7602 #ifdef FEAT_AUTOCHDIR
7603 else if ((int *)varp == &p_acd)
7605 /* Change directories when the 'acd' option is set now. */
7606 DO_AUTOCHDIR
7608 #endif
7610 #ifdef FEAT_DIFF
7611 /* 'diff' */
7612 else if ((int *)varp == &curwin->w_p_diff)
7614 /* May add or remove the buffer from the list of diff buffers. */
7615 diff_buf_adjust(curwin);
7616 # ifdef FEAT_FOLDING
7617 if (foldmethodIsDiff(curwin))
7618 foldUpdateAll(curwin);
7619 # endif
7621 #endif
7623 #ifdef USE_IM_CONTROL
7624 /* 'imdisable' */
7625 else if ((int *)varp == &p_imdisable)
7627 /* Only de-activate it here, it will be enabled when changing mode. */
7628 if (p_imdisable)
7629 im_set_active(FALSE);
7630 #ifdef FEAT_GUI_MACVIM
7631 im_set_control(!p_imdisable);
7632 #endif
7634 #endif
7636 #ifdef FEAT_SPELL
7637 /* 'spell' */
7638 else if ((int *)varp == &curwin->w_p_spell)
7640 if (curwin->w_p_spell)
7642 char_u *errmsg = did_set_spelllang(curbuf);
7644 if (errmsg != NULL)
7645 EMSG(_(errmsg));
7648 #endif
7650 #ifdef FEAT_FKMAP
7651 else if ((int *)varp == &p_altkeymap)
7653 if (old_value != p_altkeymap)
7655 if (!p_altkeymap)
7657 p_hkmap = p_fkmap;
7658 p_fkmap = 0;
7660 else
7662 p_fkmap = p_hkmap;
7663 p_hkmap = 0;
7665 (void)init_chartab();
7670 * In case some second language keymapping options have changed, check
7671 * and correct the setting in a consistent way.
7675 * If hkmap or fkmap are set, reset Arabic keymapping.
7677 if ((p_hkmap || p_fkmap) && p_altkeymap)
7679 p_altkeymap = p_fkmap;
7680 # ifdef FEAT_ARABIC
7681 curwin->w_p_arab = FALSE;
7682 # endif
7683 (void)init_chartab();
7687 * If hkmap set, reset Farsi keymapping.
7689 if (p_hkmap && p_altkeymap)
7691 p_altkeymap = 0;
7692 p_fkmap = 0;
7693 # ifdef FEAT_ARABIC
7694 curwin->w_p_arab = FALSE;
7695 # endif
7696 (void)init_chartab();
7700 * If fkmap set, reset Hebrew keymapping.
7702 if (p_fkmap && !p_altkeymap)
7704 p_altkeymap = 1;
7705 p_hkmap = 0;
7706 # ifdef FEAT_ARABIC
7707 curwin->w_p_arab = FALSE;
7708 # endif
7709 (void)init_chartab();
7711 #endif
7713 #ifdef FEAT_ARABIC
7714 if ((int *)varp == &curwin->w_p_arab)
7716 if (curwin->w_p_arab)
7719 * 'arabic' is set, handle various sub-settings.
7721 if (!p_tbidi)
7723 /* set rightleft mode */
7724 if (!curwin->w_p_rl)
7726 curwin->w_p_rl = TRUE;
7727 changed_window_setting();
7730 /* Enable Arabic shaping (major part of what Arabic requires) */
7731 if (!p_arshape)
7733 p_arshape = TRUE;
7734 redraw_later_clear();
7738 /* Arabic requires a utf-8 encoding, inform the user if its not
7739 * set. */
7740 if (STRCMP(p_enc, "utf-8") != 0)
7742 static char *w_arabic = N_("W17: Arabic requires UTF-8, do ':set encoding=utf-8'");
7744 msg_source(hl_attr(HLF_W));
7745 MSG_ATTR(_(w_arabic), hl_attr(HLF_W));
7746 #ifdef FEAT_EVAL
7747 set_vim_var_string(VV_WARNINGMSG, (char_u *)_(w_arabic), -1);
7748 #endif
7751 # ifdef FEAT_MBYTE
7752 /* set 'delcombine' */
7753 p_deco = TRUE;
7754 # endif
7756 # ifdef FEAT_KEYMAP
7757 /* Force-set the necessary keymap for arabic */
7758 set_option_value((char_u *)"keymap", 0L, (char_u *)"arabic",
7759 OPT_LOCAL);
7760 # endif
7761 # ifdef FEAT_FKMAP
7762 p_altkeymap = 0;
7763 p_hkmap = 0;
7764 p_fkmap = 0;
7765 (void)init_chartab();
7766 # endif
7768 else
7771 * 'arabic' is reset, handle various sub-settings.
7773 if (!p_tbidi)
7775 /* reset rightleft mode */
7776 if (curwin->w_p_rl)
7778 curwin->w_p_rl = FALSE;
7779 changed_window_setting();
7782 /* 'arabicshape' isn't reset, it is a global option and
7783 * another window may still need it "on". */
7786 /* 'delcombine' isn't reset, it is a global option and another
7787 * window may still want it "on". */
7789 # ifdef FEAT_KEYMAP
7790 /* Revert to the default keymap */
7791 curbuf->b_p_iminsert = B_IMODE_NONE;
7792 curbuf->b_p_imsearch = B_IMODE_USE_INSERT;
7793 # endif
7796 #endif
7799 * End of handling side effects for bool options.
7802 options[opt_idx].flags |= P_WAS_SET;
7804 comp_col(); /* in case 'ruler' or 'showcmd' changed */
7805 if (curwin->w_curswant != MAXCOL)
7806 curwin->w_set_curswant = TRUE; /* in case 'list' changed */
7807 check_redraw(options[opt_idx].flags);
7809 return NULL;
7813 * Set the value of a number option, and take care of side effects.
7814 * Returns NULL for success, or an error message for an error.
7816 static char_u *
7817 set_num_option(opt_idx, varp, value, errbuf, errbuflen, opt_flags)
7818 int opt_idx; /* index in options[] table */
7819 char_u *varp; /* pointer to the option variable */
7820 long value; /* new value */
7821 char_u *errbuf; /* buffer for error messages */
7822 size_t errbuflen; /* length of "errbuf" */
7823 int opt_flags; /* OPT_LOCAL, OPT_GLOBAL and
7824 OPT_MODELINE */
7826 char_u *errmsg = NULL;
7827 long old_value = *(long *)varp;
7828 long old_Rows = Rows; /* remember old Rows */
7829 long old_Columns = Columns; /* remember old Columns */
7830 long *pp = (long *)varp;
7832 /* Disallow changing some options from secure mode. */
7833 if ((secure
7834 #ifdef HAVE_SANDBOX
7835 || sandbox != 0
7836 #endif
7837 ) && (options[opt_idx].flags & P_SECURE))
7838 return e_secure;
7840 *pp = value;
7841 #ifdef FEAT_EVAL
7842 /* Remember where the option was set. */
7843 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
7844 #endif
7845 #ifdef FEAT_GUI
7846 need_mouse_correct = TRUE;
7847 #endif
7849 if (curbuf->b_p_sw <= 0)
7851 errmsg = e_positive;
7852 curbuf->b_p_sw = curbuf->b_p_ts;
7856 * Number options that need some action when changed
7858 #ifdef FEAT_WINDOWS
7859 if (pp == &p_wh || pp == &p_hh)
7861 if (p_wh < 1)
7863 errmsg = e_positive;
7864 p_wh = 1;
7866 if (p_wmh > p_wh)
7868 errmsg = e_winheight;
7869 p_wh = p_wmh;
7871 if (p_hh < 0)
7873 errmsg = e_positive;
7874 p_hh = 0;
7877 /* Change window height NOW */
7878 if (lastwin != firstwin)
7880 if (pp == &p_wh && curwin->w_height < p_wh)
7881 win_setheight((int)p_wh);
7882 if (pp == &p_hh && curbuf->b_help && curwin->w_height < p_hh)
7883 win_setheight((int)p_hh);
7887 /* 'winminheight' */
7888 else if (pp == &p_wmh)
7890 if (p_wmh < 0)
7892 errmsg = e_positive;
7893 p_wmh = 0;
7895 if (p_wmh > p_wh)
7897 errmsg = e_winheight;
7898 p_wmh = p_wh;
7900 win_setminheight();
7903 # ifdef FEAT_VERTSPLIT
7904 else if (pp == &p_wiw)
7906 if (p_wiw < 1)
7908 errmsg = e_positive;
7909 p_wiw = 1;
7911 if (p_wmw > p_wiw)
7913 errmsg = e_winwidth;
7914 p_wiw = p_wmw;
7917 /* Change window width NOW */
7918 if (lastwin != firstwin && curwin->w_width < p_wiw)
7919 win_setwidth((int)p_wiw);
7922 /* 'winminwidth' */
7923 else if (pp == &p_wmw)
7925 if (p_wmw < 0)
7927 errmsg = e_positive;
7928 p_wmw = 0;
7930 if (p_wmw > p_wiw)
7932 errmsg = e_winwidth;
7933 p_wmw = p_wiw;
7935 win_setminheight();
7937 # endif
7939 #endif
7941 #ifdef FEAT_WINDOWS
7942 /* (re)set last window status line */
7943 else if (pp == &p_ls)
7945 last_status(FALSE);
7948 /* (re)set tab page line */
7949 else if (pp == &p_stal)
7951 shell_new_rows(); /* recompute window positions and heights */
7953 #endif
7955 #ifdef FEAT_GUI
7956 else if (pp == &p_linespace || pp == &p_charspace)
7958 /* Recompute gui.char_height and resize the Vim window to keep the
7959 * same number of lines. */
7960 if (gui.in_use && gui_mch_adjust_charheight() == OK)
7961 gui_set_shellsize(FALSE, FALSE, RESIZE_VERT);
7963 #endif
7965 #ifdef FEAT_FOLDING
7966 /* 'foldlevel' */
7967 else if (pp == &curwin->w_p_fdl)
7969 if (curwin->w_p_fdl < 0)
7970 curwin->w_p_fdl = 0;
7971 newFoldLevel();
7974 /* 'foldminlines' */
7975 else if (pp == &curwin->w_p_fml)
7977 foldUpdateAll(curwin);
7980 /* 'foldnestmax' */
7981 else if (pp == &curwin->w_p_fdn)
7983 if (foldmethodIsSyntax(curwin) || foldmethodIsIndent(curwin))
7984 foldUpdateAll(curwin);
7987 /* 'foldcolumn' */
7988 else if (pp == &curwin->w_p_fdc)
7990 if (curwin->w_p_fdc < 0)
7992 errmsg = e_positive;
7993 curwin->w_p_fdc = 0;
7995 else if (curwin->w_p_fdc > 12)
7997 errmsg = e_invarg;
7998 curwin->w_p_fdc = 12;
8002 /* 'shiftwidth' or 'tabstop' */
8003 else if (pp == &curbuf->b_p_sw || pp == &curbuf->b_p_ts)
8005 if (foldmethodIsIndent(curwin))
8006 foldUpdateAll(curwin);
8008 #endif /* FEAT_FOLDING */
8010 #ifdef FEAT_MBYTE
8011 /* 'maxcombine' */
8012 else if (pp == &p_mco)
8014 if (p_mco > MAX_MCO)
8015 p_mco = MAX_MCO;
8016 else if (p_mco < 0)
8017 p_mco = 0;
8018 screenclear(); /* will re-allocate the screen */
8020 #endif
8022 else if (pp == &curbuf->b_p_iminsert)
8024 if (curbuf->b_p_iminsert < 0 || curbuf->b_p_iminsert > B_IMODE_LAST)
8026 errmsg = e_invarg;
8027 curbuf->b_p_iminsert = B_IMODE_NONE;
8029 p_iminsert = curbuf->b_p_iminsert;
8030 if (termcap_active) /* don't do this in the alternate screen */
8031 showmode();
8032 #if defined(FEAT_WINDOWS) && defined(FEAT_KEYMAP)
8033 /* Show/unshow value of 'keymap' in status lines. */
8034 status_redraw_curbuf();
8035 #endif
8038 else if (pp == &p_window)
8040 if (p_window < 1)
8041 p_window = 1;
8042 else if (p_window >= Rows)
8043 p_window = Rows - 1;
8046 else if (pp == &curbuf->b_p_imsearch)
8048 if (curbuf->b_p_imsearch < -1 || curbuf->b_p_imsearch > B_IMODE_LAST)
8050 errmsg = e_invarg;
8051 curbuf->b_p_imsearch = B_IMODE_NONE;
8053 p_imsearch = curbuf->b_p_imsearch;
8056 #ifdef FEAT_TITLE
8057 /* if 'titlelen' has changed, redraw the title */
8058 else if (pp == &p_titlelen)
8060 if (p_titlelen < 0)
8062 errmsg = e_positive;
8063 p_titlelen = 85;
8065 if (starting != NO_SCREEN && old_value != p_titlelen)
8066 need_maketitle = TRUE;
8068 #endif
8070 /* if p_ch changed value, change the command line height */
8071 else if (pp == &p_ch)
8073 if (p_ch < 1)
8075 errmsg = e_positive;
8076 p_ch = 1;
8078 if (p_ch > Rows - min_rows() + 1)
8079 p_ch = Rows - min_rows() + 1;
8081 /* Only compute the new window layout when startup has been
8082 * completed. Otherwise the frame sizes may be wrong. */
8083 if (p_ch != old_value && full_screen
8084 #ifdef FEAT_GUI
8085 && !gui.starting
8086 #endif
8088 command_height();
8091 /* when 'updatecount' changes from zero to non-zero, open swap files */
8092 else if (pp == &p_uc)
8094 if (p_uc < 0)
8096 errmsg = e_positive;
8097 p_uc = 100;
8099 if (p_uc && !old_value)
8100 ml_open_files();
8102 #ifdef MZSCHEME_GUI_THREADS
8103 else if (pp == &p_mzq)
8104 mzvim_reset_timer();
8105 #endif
8107 /* sync undo before 'undolevels' changes */
8108 else if (pp == &p_ul)
8110 /* use the old value, otherwise u_sync() may not work properly */
8111 p_ul = old_value;
8112 u_sync(TRUE);
8113 p_ul = value;
8116 #ifdef FEAT_LINEBREAK
8117 /* 'numberwidth' must be positive */
8118 else if (pp == &curwin->w_p_nuw)
8120 if (curwin->w_p_nuw < 1)
8122 errmsg = e_positive;
8123 curwin->w_p_nuw = 1;
8125 if (curwin->w_p_nuw > 10)
8127 errmsg = e_invarg;
8128 curwin->w_p_nuw = 10;
8130 curwin->w_nrwidth_line_count = 0;
8132 #endif
8134 #if defined(FEAT_TRANSPARENCY)
8135 /* 'transparency' is a number between 0 and 100 */
8136 else if (pp == &p_transp)
8138 if (p_transp < 0 || p_transp > 100)
8140 errmsg = e_invarg;
8141 p_transp = old_value;
8143 else if (gui.in_use)
8144 gui_mch_new_colors();
8146 #endif
8149 * Check the bounds for numeric options here
8151 if (Rows < min_rows() && full_screen)
8153 if (errbuf != NULL)
8155 vim_snprintf((char *)errbuf, errbuflen,
8156 _("E593: Need at least %d lines"), min_rows());
8157 errmsg = errbuf;
8159 Rows = min_rows();
8161 if (Columns < MIN_COLUMNS && full_screen)
8163 if (errbuf != NULL)
8165 vim_snprintf((char *)errbuf, errbuflen,
8166 _("E594: Need at least %d columns"), MIN_COLUMNS);
8167 errmsg = errbuf;
8169 Columns = MIN_COLUMNS;
8171 /* Limit the values to avoid an overflow in Rows * Columns. */
8172 if (Columns > 10000)
8173 Columns = 10000;
8174 if (Rows > 1000)
8175 Rows = 1000;
8177 #ifdef DJGPP
8178 /* avoid a crash by checking for a too large value of 'columns' */
8179 if (old_Columns != Columns && full_screen && term_console)
8180 mch_check_columns();
8181 #endif
8184 * If the screen (shell) height has been changed, assume it is the
8185 * physical screenheight.
8187 if (old_Rows != Rows || old_Columns != Columns)
8189 /* Changing the screen size is not allowed while updating the screen. */
8190 if (updating_screen)
8191 *pp = old_value;
8192 else if (full_screen
8193 #ifdef FEAT_GUI
8194 && !gui.starting
8195 #endif
8197 set_shellsize((int)Columns, (int)Rows, TRUE);
8198 else
8200 /* Postpone the resizing; check the size and cmdline position for
8201 * messages. */
8202 check_shellsize();
8203 if (cmdline_row > Rows - p_ch && Rows > p_ch)
8204 cmdline_row = Rows - p_ch;
8206 if (p_window >= Rows || !option_was_set((char_u *)"window"))
8207 p_window = Rows - 1;
8210 if (curbuf->b_p_sts < 0)
8212 errmsg = e_positive;
8213 curbuf->b_p_sts = 0;
8215 if (curbuf->b_p_ts <= 0)
8217 errmsg = e_positive;
8218 curbuf->b_p_ts = 8;
8220 if (curbuf->b_p_tw < 0)
8222 errmsg = e_positive;
8223 curbuf->b_p_tw = 0;
8225 if (p_tm < 0)
8227 errmsg = e_positive;
8228 p_tm = 0;
8230 if ((curwin->w_p_scr <= 0
8231 || (curwin->w_p_scr > curwin->w_height
8232 && curwin->w_height > 0))
8233 && full_screen)
8235 if (pp == &(curwin->w_p_scr))
8237 if (curwin->w_p_scr != 0)
8238 errmsg = e_scroll;
8239 win_comp_scroll(curwin);
8241 /* If 'scroll' became invalid because of a side effect silently adjust
8242 * it. */
8243 else if (curwin->w_p_scr <= 0)
8244 curwin->w_p_scr = 1;
8245 else /* curwin->w_p_scr > curwin->w_height */
8246 curwin->w_p_scr = curwin->w_height;
8248 if (p_hi < 0)
8250 errmsg = e_positive;
8251 p_hi = 0;
8253 if (p_report < 0)
8255 errmsg = e_positive;
8256 p_report = 1;
8258 if ((p_sj < -100 || p_sj >= Rows) && full_screen)
8260 if (Rows != old_Rows) /* Rows changed, just adjust p_sj */
8261 p_sj = Rows / 2;
8262 else
8264 errmsg = e_scroll;
8265 p_sj = 1;
8268 if (p_so < 0 && full_screen)
8270 errmsg = e_scroll;
8271 p_so = 0;
8273 if (p_siso < 0 && full_screen)
8275 errmsg = e_positive;
8276 p_siso = 0;
8278 #ifdef FEAT_CMDWIN
8279 if (p_cwh < 1)
8281 errmsg = e_positive;
8282 p_cwh = 1;
8284 #endif
8285 if (p_ut < 0)
8287 errmsg = e_positive;
8288 p_ut = 2000;
8290 if (p_ss < 0)
8292 errmsg = e_positive;
8293 p_ss = 0;
8296 /* May set global value for local option. */
8297 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0)
8298 *(long *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) = *pp;
8300 options[opt_idx].flags |= P_WAS_SET;
8302 comp_col(); /* in case 'columns' or 'ls' changed */
8303 if (curwin->w_curswant != MAXCOL)
8304 curwin->w_set_curswant = TRUE; /* in case 'tabstop' changed */
8305 check_redraw(options[opt_idx].flags);
8307 return errmsg;
8311 * Called after an option changed: check if something needs to be redrawn.
8313 static void
8314 check_redraw(flags)
8315 long_u flags;
8317 /* Careful: P_RCLR and P_RALL are a combination of other P_ flags */
8318 int clear = (flags & P_RCLR) == P_RCLR;
8319 int all = ((flags & P_RALL) == P_RALL || clear);
8321 #ifdef FEAT_WINDOWS
8322 if ((flags & P_RSTAT) || all) /* mark all status lines dirty */
8323 status_redraw_all();
8324 #endif
8326 if ((flags & P_RBUF) || (flags & P_RWIN) || all)
8327 changed_window_setting();
8328 if (flags & P_RBUF)
8329 redraw_curbuf_later(NOT_VALID);
8330 if (clear)
8331 redraw_all_later(CLEAR);
8332 else if (all)
8333 redraw_all_later(NOT_VALID);
8337 * Find index for option 'arg'.
8338 * Return -1 if not found.
8340 static int
8341 findoption(arg)
8342 char_u *arg;
8344 int opt_idx;
8345 char *s, *p;
8346 static short quick_tab[27] = {0, 0}; /* quick access table */
8347 int is_term_opt;
8350 * For first call: Initialize the quick-access table.
8351 * It contains the index for the first option that starts with a certain
8352 * letter. There are 26 letters, plus the first "t_" option.
8354 if (quick_tab[1] == 0)
8356 p = options[0].fullname;
8357 for (opt_idx = 1; (s = options[opt_idx].fullname) != NULL; opt_idx++)
8359 if (s[0] != p[0])
8361 if (s[0] == 't' && s[1] == '_')
8362 quick_tab[26] = opt_idx;
8363 else
8364 quick_tab[CharOrdLow(s[0])] = opt_idx;
8366 p = s;
8371 * Check for name starting with an illegal character.
8373 #ifdef EBCDIC
8374 if (!islower(arg[0]))
8375 #else
8376 if (arg[0] < 'a' || arg[0] > 'z')
8377 #endif
8378 return -1;
8380 is_term_opt = (arg[0] == 't' && arg[1] == '_');
8381 if (is_term_opt)
8382 opt_idx = quick_tab[26];
8383 else
8384 opt_idx = quick_tab[CharOrdLow(arg[0])];
8385 for ( ; (s = options[opt_idx].fullname) != NULL; opt_idx++)
8387 if (STRCMP(arg, s) == 0) /* match full name */
8388 break;
8390 if (s == NULL && !is_term_opt)
8392 opt_idx = quick_tab[CharOrdLow(arg[0])];
8393 for ( ; options[opt_idx].fullname != NULL; opt_idx++)
8395 s = options[opt_idx].shortname;
8396 if (s != NULL && STRCMP(arg, s) == 0) /* match short name */
8397 break;
8398 s = NULL;
8401 if (s == NULL)
8402 opt_idx = -1;
8403 return opt_idx;
8406 #if defined(FEAT_EVAL) || defined(FEAT_TCL) || defined(FEAT_MZSCHEME)
8408 * Get the value for an option.
8410 * Returns:
8411 * Number or Toggle option: 1, *numval gets value.
8412 * String option: 0, *stringval gets allocated string.
8413 * Hidden Number or Toggle option: -1.
8414 * hidden String option: -2.
8415 * unknown option: -3.
8418 get_option_value(name, numval, stringval, opt_flags)
8419 char_u *name;
8420 long *numval;
8421 char_u **stringval; /* NULL when only checking existance */
8422 int opt_flags;
8424 int opt_idx;
8425 char_u *varp;
8427 opt_idx = findoption(name);
8428 if (opt_idx < 0) /* unknown option */
8429 return -3;
8431 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
8433 if (options[opt_idx].flags & P_STRING)
8435 if (varp == NULL) /* hidden option */
8436 return -2;
8437 if (stringval != NULL)
8439 #ifdef FEAT_CRYPT
8440 /* never return the value of the crypt key */
8441 if ((char_u **)varp == &curbuf->b_p_key
8442 && **(char_u **)(varp) != NUL)
8443 *stringval = vim_strsave((char_u *)"*****");
8444 else
8445 #endif
8446 *stringval = vim_strsave(*(char_u **)(varp));
8448 return 0;
8451 if (varp == NULL) /* hidden option */
8452 return -1;
8453 if (options[opt_idx].flags & P_NUM)
8454 *numval = *(long *)varp;
8455 else
8457 /* Special case: 'modified' is b_changed, but we also want to consider
8458 * it set when 'ff' or 'fenc' changed. */
8459 if ((int *)varp == &curbuf->b_changed)
8460 *numval = curbufIsChanged();
8461 else
8462 *numval = *(int *)varp;
8464 return 1;
8466 #endif
8469 * Set the value of option "name".
8470 * Use "string" for string options, use "number" for other options.
8472 void
8473 set_option_value(name, number, string, opt_flags)
8474 char_u *name;
8475 long number;
8476 char_u *string;
8477 int opt_flags; /* OPT_LOCAL or 0 (both) */
8479 int opt_idx;
8480 char_u *varp;
8481 long_u flags;
8483 opt_idx = findoption(name);
8484 if (opt_idx < 0)
8485 EMSG2(_("E355: Unknown option: %s"), name);
8486 else
8488 flags = options[opt_idx].flags;
8489 #ifdef HAVE_SANDBOX
8490 /* Disallow changing some options in the sandbox */
8491 if (sandbox > 0 && (flags & P_SECURE))
8493 EMSG(_(e_sandbox));
8494 return;
8496 #endif
8497 if (flags & P_STRING)
8498 set_string_option(opt_idx, string, opt_flags);
8499 else
8501 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
8502 if (varp != NULL) /* hidden option is not changed */
8504 if (number == 0 && string != NULL)
8506 int idx;
8508 /* Either we are given a string or we are setting option
8509 * to zero. */
8510 for (idx = 0; string[idx] == '0'; ++idx)
8512 if (string[idx] != NUL || idx == 0)
8514 /* There's another character after zeros or the string
8515 * is empty. In both cases, we are trying to set a
8516 * num option using a string. */
8517 EMSG3(_("E521: Number required: &%s = '%s'"),
8518 name, string);
8519 return; /* do nothing as we hit an error */
8523 if (flags & P_NUM)
8524 (void)set_num_option(opt_idx, varp, number,
8525 NULL, 0, opt_flags);
8526 else
8527 (void)set_bool_option(opt_idx, varp, (int)number,
8528 opt_flags);
8535 * Get the terminal code for a terminal option.
8536 * Returns NULL when not found.
8538 char_u *
8539 get_term_code(tname)
8540 char_u *tname;
8542 int opt_idx;
8543 char_u *varp;
8545 if (tname[0] != 't' || tname[1] != '_' ||
8546 tname[2] == NUL || tname[3] == NUL)
8547 return NULL;
8548 if ((opt_idx = findoption(tname)) >= 0)
8550 varp = get_varp(&(options[opt_idx]));
8551 if (varp != NULL)
8552 varp = *(char_u **)(varp);
8553 return varp;
8555 return find_termcode(tname + 2);
8558 char_u *
8559 get_highlight_default()
8561 int i;
8563 i = findoption((char_u *)"hl");
8564 if (i >= 0)
8565 return options[i].def_val[VI_DEFAULT];
8566 return (char_u *)NULL;
8569 #if defined(FEAT_MBYTE) || defined(PROTO)
8570 char_u *
8571 get_encoding_default()
8573 int i;
8575 i = findoption((char_u *)"enc");
8576 if (i >= 0)
8577 return options[i].def_val[VI_DEFAULT];
8578 return (char_u *)NULL;
8580 #endif
8583 * Translate a string like "t_xx", "<t_xx>" or "<S-Tab>" to a key number.
8585 static int
8586 find_key_option(arg)
8587 char_u *arg;
8589 int key;
8590 int modifiers;
8593 * Don't use get_special_key_code() for t_xx, we don't want it to call
8594 * add_termcap_entry().
8596 if (arg[0] == 't' && arg[1] == '_' && arg[2] && arg[3])
8597 key = TERMCAP2KEY(arg[2], arg[3]);
8598 else
8600 --arg; /* put arg at the '<' */
8601 modifiers = 0;
8602 key = find_special_key(&arg, &modifiers, TRUE, TRUE);
8603 if (modifiers) /* can't handle modifiers here */
8604 key = 0;
8606 return key;
8610 * if 'all' == 0: show changed options
8611 * if 'all' == 1: show all normal options
8612 * if 'all' == 2: show all terminal options
8614 static void
8615 showoptions(all, opt_flags)
8616 int all;
8617 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
8619 struct vimoption *p;
8620 int col;
8621 int isterm;
8622 char_u *varp;
8623 struct vimoption **items;
8624 int item_count;
8625 int run;
8626 int row, rows;
8627 int cols;
8628 int i;
8629 int len;
8631 #define INC 20
8632 #define GAP 3
8634 items = (struct vimoption **)alloc((unsigned)(sizeof(struct vimoption *) *
8635 PARAM_COUNT));
8636 if (items == NULL)
8637 return;
8639 /* Highlight title */
8640 if (all == 2)
8641 MSG_PUTS_TITLE(_("\n--- Terminal codes ---"));
8642 else if (opt_flags & OPT_GLOBAL)
8643 MSG_PUTS_TITLE(_("\n--- Global option values ---"));
8644 else if (opt_flags & OPT_LOCAL)
8645 MSG_PUTS_TITLE(_("\n--- Local option values ---"));
8646 else
8647 MSG_PUTS_TITLE(_("\n--- Options ---"));
8650 * do the loop two times:
8651 * 1. display the short items
8652 * 2. display the long items (only strings and numbers)
8654 for (run = 1; run <= 2 && !got_int; ++run)
8657 * collect the items in items[]
8659 item_count = 0;
8660 for (p = &options[0]; p->fullname != NULL; p++)
8662 varp = NULL;
8663 isterm = istermoption(p);
8664 if (opt_flags != 0)
8666 if (p->indir != PV_NONE && !isterm)
8667 varp = get_varp_scope(p, opt_flags);
8669 else
8670 varp = get_varp(p);
8671 if (varp != NULL
8672 && ((all == 2 && isterm)
8673 || (all == 1 && !isterm)
8674 || (all == 0 && !optval_default(p, varp))))
8676 if (p->flags & P_BOOL)
8677 len = 1; /* a toggle option fits always */
8678 else
8680 option_value2string(p, opt_flags);
8681 len = (int)STRLEN(p->fullname) + vim_strsize(NameBuff) + 1;
8683 if ((len <= INC - GAP && run == 1) ||
8684 (len > INC - GAP && run == 2))
8685 items[item_count++] = p;
8690 * display the items
8692 if (run == 1)
8694 cols = (Columns + GAP - 3) / INC;
8695 if (cols == 0)
8696 cols = 1;
8697 rows = (item_count + cols - 1) / cols;
8699 else /* run == 2 */
8700 rows = item_count;
8701 for (row = 0; row < rows && !got_int; ++row)
8703 msg_putchar('\n'); /* go to next line */
8704 if (got_int) /* 'q' typed in more */
8705 break;
8706 col = 0;
8707 for (i = row; i < item_count; i += rows)
8709 msg_col = col; /* make columns */
8710 showoneopt(items[i], opt_flags);
8711 col += INC;
8713 out_flush();
8714 ui_breakcheck();
8717 vim_free(items);
8721 * Return TRUE if option "p" has its default value.
8723 static int
8724 optval_default(p, varp)
8725 struct vimoption *p;
8726 char_u *varp;
8728 int dvi;
8730 if (varp == NULL)
8731 return TRUE; /* hidden option is always at default */
8732 dvi = ((p->flags & P_VI_DEF) || p_cp) ? VI_DEFAULT : VIM_DEFAULT;
8733 if (p->flags & P_NUM)
8734 return (*(long *)varp == (long)(long_i)p->def_val[dvi]);
8735 if (p->flags & P_BOOL)
8736 /* the cast to long is required for Manx C, long_i is
8737 * needed for MSVC */
8738 return (*(int *)varp == (int)(long)(long_i)p->def_val[dvi]);
8739 /* P_STRING */
8740 return (STRCMP(*(char_u **)varp, p->def_val[dvi]) == 0);
8744 * showoneopt: show the value of one option
8745 * must not be called with a hidden option!
8747 static void
8748 showoneopt(p, opt_flags)
8749 struct vimoption *p;
8750 int opt_flags; /* OPT_LOCAL or OPT_GLOBAL */
8752 char_u *varp;
8753 int save_silent = silent_mode;
8755 silent_mode = FALSE;
8756 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
8758 varp = get_varp_scope(p, opt_flags);
8760 /* for 'modified' we also need to check if 'ff' or 'fenc' changed. */
8761 if ((p->flags & P_BOOL) && ((int *)varp == &curbuf->b_changed
8762 ? !curbufIsChanged() : !*(int *)varp))
8763 MSG_PUTS("no");
8764 else if ((p->flags & P_BOOL) && *(int *)varp < 0)
8765 MSG_PUTS("--");
8766 else
8767 MSG_PUTS(" ");
8768 MSG_PUTS(p->fullname);
8769 if (!(p->flags & P_BOOL))
8771 msg_putchar('=');
8772 /* put value string in NameBuff */
8773 option_value2string(p, opt_flags);
8774 msg_outtrans(NameBuff);
8777 silent_mode = save_silent;
8778 info_message = FALSE;
8782 * Write modified options as ":set" commands to a file.
8784 * There are three values for "opt_flags":
8785 * OPT_GLOBAL: Write global option values and fresh values of
8786 * buffer-local options (used for start of a session
8787 * file).
8788 * OPT_GLOBAL + OPT_LOCAL: Idem, add fresh values of window-local options for
8789 * curwin (used for a vimrc file).
8790 * OPT_LOCAL: Write buffer-local option values for curbuf, fresh
8791 * and local values for window-local options of
8792 * curwin. Local values are also written when at the
8793 * default value, because a modeline or autocommand
8794 * may have set them when doing ":edit file" and the
8795 * user has set them back at the default or fresh
8796 * value.
8797 * When "local_only" is TRUE, don't write fresh
8798 * values, only local values (for ":mkview").
8799 * (fresh value = value used for a new buffer or window for a local option).
8801 * Return FAIL on error, OK otherwise.
8804 makeset(fd, opt_flags, local_only)
8805 FILE *fd;
8806 int opt_flags;
8807 int local_only;
8809 struct vimoption *p;
8810 char_u *varp; /* currently used value */
8811 char_u *varp_fresh; /* local value */
8812 char_u *varp_local = NULL; /* fresh value */
8813 char *cmd;
8814 int round;
8815 int pri;
8818 * The options that don't have a default (terminal name, columns, lines)
8819 * are never written. Terminal options are also not written.
8820 * Do the loop over "options[]" twice: once for options with the
8821 * P_PRI_MKRC flag and once without.
8823 for (pri = 1; pri >= 0; --pri)
8825 for (p = &options[0]; !istermoption(p); p++)
8826 if (!(p->flags & P_NO_MKRC)
8827 && !istermoption(p)
8828 && ((pri == 1) == ((p->flags & P_PRI_MKRC) != 0)))
8830 /* skip global option when only doing locals */
8831 if (p->indir == PV_NONE && !(opt_flags & OPT_GLOBAL))
8832 continue;
8834 /* Do not store options like 'bufhidden' and 'syntax' in a vimrc
8835 * file, they are always buffer-specific. */
8836 if ((opt_flags & OPT_GLOBAL) && (p->flags & P_NOGLOB))
8837 continue;
8839 /* Global values are only written when not at the default value. */
8840 varp = get_varp_scope(p, opt_flags);
8841 if ((opt_flags & OPT_GLOBAL) && optval_default(p, varp))
8842 continue;
8844 round = 2;
8845 if (p->indir != PV_NONE)
8847 if (p->var == VAR_WIN)
8849 /* skip window-local option when only doing globals */
8850 if (!(opt_flags & OPT_LOCAL))
8851 continue;
8852 /* When fresh value of window-local option is not at the
8853 * default, need to write it too. */
8854 if (!(opt_flags & OPT_GLOBAL) && !local_only)
8856 varp_fresh = get_varp_scope(p, OPT_GLOBAL);
8857 if (!optval_default(p, varp_fresh))
8859 round = 1;
8860 varp_local = varp;
8861 varp = varp_fresh;
8867 /* Round 1: fresh value for window-local options.
8868 * Round 2: other values */
8869 for ( ; round <= 2; varp = varp_local, ++round)
8871 if (round == 1 || (opt_flags & OPT_GLOBAL))
8872 cmd = "set";
8873 else
8874 cmd = "setlocal";
8876 if (p->flags & P_BOOL)
8878 if (put_setbool(fd, cmd, p->fullname, *(int *)varp) == FAIL)
8879 return FAIL;
8881 else if (p->flags & P_NUM)
8883 if (put_setnum(fd, cmd, p->fullname, (long *)varp) == FAIL)
8884 return FAIL;
8886 else /* P_STRING */
8888 #if defined(FEAT_SYN_HL) || defined(FEAT_AUTOCMD)
8889 int do_endif = FALSE;
8891 /* Don't set 'syntax' and 'filetype' again if the value is
8892 * already right, avoids reloading the syntax file. */
8893 if (
8894 # if defined(FEAT_SYN_HL)
8895 p->indir == PV_SYN
8896 # if defined(FEAT_AUTOCMD)
8898 # endif
8899 # endif
8900 # if defined(FEAT_AUTOCMD)
8901 p->indir == PV_FT
8902 # endif
8905 if (fprintf(fd, "if &%s != '%s'", p->fullname,
8906 *(char_u **)(varp)) < 0
8907 || put_eol(fd) < 0)
8908 return FAIL;
8909 do_endif = TRUE;
8911 #endif
8912 if (put_setstring(fd, cmd, p->fullname, (char_u **)varp,
8913 (p->flags & P_EXPAND) != 0) == FAIL)
8914 return FAIL;
8915 #if defined(FEAT_SYN_HL) || defined(FEAT_AUTOCMD)
8916 if (do_endif)
8918 if (put_line(fd, "endif") == FAIL)
8919 return FAIL;
8921 #endif
8926 return OK;
8929 #if defined(FEAT_FOLDING) || defined(PROTO)
8931 * Generate set commands for the local fold options only. Used when
8932 * 'sessionoptions' or 'viewoptions' contains "folds" but not "options".
8935 makefoldset(fd)
8936 FILE *fd;
8938 if (put_setstring(fd, "setlocal", "fdm", &curwin->w_p_fdm, FALSE) == FAIL
8939 # ifdef FEAT_EVAL
8940 || put_setstring(fd, "setlocal", "fde", &curwin->w_p_fde, FALSE)
8941 == FAIL
8942 # endif
8943 || put_setstring(fd, "setlocal", "fmr", &curwin->w_p_fmr, FALSE)
8944 == FAIL
8945 || put_setstring(fd, "setlocal", "fdi", &curwin->w_p_fdi, FALSE)
8946 == FAIL
8947 || put_setnum(fd, "setlocal", "fdl", &curwin->w_p_fdl) == FAIL
8948 || put_setnum(fd, "setlocal", "fml", &curwin->w_p_fml) == FAIL
8949 || put_setnum(fd, "setlocal", "fdn", &curwin->w_p_fdn) == FAIL
8950 || put_setbool(fd, "setlocal", "fen", curwin->w_p_fen) == FAIL
8952 return FAIL;
8954 return OK;
8956 #endif
8958 static int
8959 put_setstring(fd, cmd, name, valuep, expand)
8960 FILE *fd;
8961 char *cmd;
8962 char *name;
8963 char_u **valuep;
8964 int expand;
8966 char_u *s;
8967 char_u buf[MAXPATHL];
8969 if (fprintf(fd, "%s %s=", cmd, name) < 0)
8970 return FAIL;
8971 if (*valuep != NULL)
8973 /* Output 'pastetoggle' as key names. For other
8974 * options some characters have to be escaped with
8975 * CTRL-V or backslash */
8976 if (valuep == &p_pt)
8978 s = *valuep;
8979 while (*s != NUL)
8980 if (put_escstr(fd, str2special(&s, FALSE), 2) == FAIL)
8981 return FAIL;
8983 else if (expand)
8985 home_replace(NULL, *valuep, buf, MAXPATHL, FALSE);
8986 if (put_escstr(fd, buf, 2) == FAIL)
8987 return FAIL;
8989 else if (put_escstr(fd, *valuep, 2) == FAIL)
8990 return FAIL;
8992 if (put_eol(fd) < 0)
8993 return FAIL;
8994 return OK;
8997 static int
8998 put_setnum(fd, cmd, name, valuep)
8999 FILE *fd;
9000 char *cmd;
9001 char *name;
9002 long *valuep;
9004 long wc;
9006 if (fprintf(fd, "%s %s=", cmd, name) < 0)
9007 return FAIL;
9008 if (wc_use_keyname((char_u *)valuep, &wc))
9010 /* print 'wildchar' and 'wildcharm' as a key name */
9011 if (fputs((char *)get_special_key_name((int)wc, 0), fd) < 0)
9012 return FAIL;
9014 else if (fprintf(fd, "%ld", *valuep) < 0)
9015 return FAIL;
9016 if (put_eol(fd) < 0)
9017 return FAIL;
9018 return OK;
9021 static int
9022 put_setbool(fd, cmd, name, value)
9023 FILE *fd;
9024 char *cmd;
9025 char *name;
9026 int value;
9028 if (value < 0) /* global/local option using global value */
9029 return OK;
9030 if (fprintf(fd, "%s %s%s", cmd, value ? "" : "no", name) < 0
9031 || put_eol(fd) < 0)
9032 return FAIL;
9033 return OK;
9037 * Clear all the terminal options.
9038 * If the option has been allocated, free the memory.
9039 * Terminal options are never hidden or indirect.
9041 void
9042 clear_termoptions()
9045 * Reset a few things before clearing the old options. This may cause
9046 * outputting a few things that the terminal doesn't understand, but the
9047 * screen will be cleared later, so this is OK.
9049 #ifdef FEAT_MOUSE_TTY
9050 mch_setmouse(FALSE); /* switch mouse off */
9051 #endif
9052 #ifdef FEAT_TITLE
9053 mch_restore_title(3); /* restore window titles */
9054 #endif
9055 #if defined(FEAT_XCLIPBOARD) && defined(FEAT_GUI)
9056 /* When starting the GUI close the display opened for the clipboard.
9057 * After restoring the title, because that will need the display. */
9058 if (gui.starting)
9059 clear_xterm_clip();
9060 #endif
9061 #ifdef WIN3264
9063 * Check if this is allowed now.
9065 if (can_end_termcap_mode(FALSE) == TRUE)
9066 #endif
9067 stoptermcap(); /* stop termcap mode */
9069 free_termoptions();
9072 void
9073 free_termoptions()
9075 struct vimoption *p;
9077 for (p = &options[0]; p->fullname != NULL; p++)
9078 if (istermoption(p))
9080 if (p->flags & P_ALLOCED)
9081 free_string_option(*(char_u **)(p->var));
9082 if (p->flags & P_DEF_ALLOCED)
9083 free_string_option(p->def_val[VI_DEFAULT]);
9084 *(char_u **)(p->var) = empty_option;
9085 p->def_val[VI_DEFAULT] = empty_option;
9086 p->flags &= ~(P_ALLOCED|P_DEF_ALLOCED);
9088 clear_termcodes();
9092 * Set the terminal option defaults to the current value.
9093 * Used after setting the terminal name.
9095 void
9096 set_term_defaults()
9098 struct vimoption *p;
9100 for (p = &options[0]; p->fullname != NULL; p++)
9102 if (istermoption(p) && p->def_val[VI_DEFAULT] != *(char_u **)(p->var))
9104 if (p->flags & P_DEF_ALLOCED)
9106 free_string_option(p->def_val[VI_DEFAULT]);
9107 p->flags &= ~P_DEF_ALLOCED;
9109 p->def_val[VI_DEFAULT] = *(char_u **)(p->var);
9110 if (p->flags & P_ALLOCED)
9112 p->flags |= P_DEF_ALLOCED;
9113 p->flags &= ~P_ALLOCED; /* don't free the value now */
9120 * return TRUE if 'p' starts with 't_'
9122 static int
9123 istermoption(p)
9124 struct vimoption *p;
9126 return (p->fullname[0] == 't' && p->fullname[1] == '_');
9130 * Compute columns for ruler and shown command. 'sc_col' is also used to
9131 * decide what the maximum length of a message on the status line can be.
9132 * If there is a status line for the last window, 'sc_col' is independent
9133 * of 'ru_col'.
9136 #define COL_RULER 17 /* columns needed by standard ruler */
9138 void
9139 comp_col()
9141 #if defined(FEAT_CMDL_INFO) && defined(FEAT_WINDOWS)
9142 int last_has_status = (p_ls == 2 || (p_ls == 1 && firstwin != lastwin));
9144 sc_col = 0;
9145 ru_col = 0;
9146 if (p_ru)
9148 #ifdef FEAT_STL_OPT
9149 ru_col = (ru_wid ? ru_wid : COL_RULER) + 1;
9150 #else
9151 ru_col = COL_RULER + 1;
9152 #endif
9153 /* no last status line, adjust sc_col */
9154 if (!last_has_status)
9155 sc_col = ru_col;
9157 if (p_sc)
9159 sc_col += SHOWCMD_COLS;
9160 if (!p_ru || last_has_status) /* no need for separating space */
9161 ++sc_col;
9163 sc_col = Columns - sc_col;
9164 ru_col = Columns - ru_col;
9165 if (sc_col <= 0) /* screen too narrow, will become a mess */
9166 sc_col = 1;
9167 if (ru_col <= 0)
9168 ru_col = 1;
9169 #else
9170 sc_col = Columns;
9171 ru_col = Columns;
9172 #endif
9176 * Get pointer to option variable, depending on local or global scope.
9178 static char_u *
9179 get_varp_scope(p, opt_flags)
9180 struct vimoption *p;
9181 int opt_flags;
9183 if ((opt_flags & OPT_GLOBAL) && p->indir != PV_NONE)
9185 if (p->var == VAR_WIN)
9186 return (char_u *)GLOBAL_WO(get_varp(p));
9187 return p->var;
9189 if ((opt_flags & OPT_LOCAL) && ((int)p->indir & PV_BOTH))
9191 switch ((int)p->indir)
9193 #ifdef FEAT_QUICKFIX
9194 case PV_EFM: return (char_u *)&(curbuf->b_p_efm);
9195 case PV_GP: return (char_u *)&(curbuf->b_p_gp);
9196 case PV_MP: return (char_u *)&(curbuf->b_p_mp);
9197 #endif
9198 case PV_EP: return (char_u *)&(curbuf->b_p_ep);
9199 case PV_KP: return (char_u *)&(curbuf->b_p_kp);
9200 case PV_PATH: return (char_u *)&(curbuf->b_p_path);
9201 case PV_AR: return (char_u *)&(curbuf->b_p_ar);
9202 case PV_TAGS: return (char_u *)&(curbuf->b_p_tags);
9203 #ifdef FEAT_FIND_ID
9204 case PV_DEF: return (char_u *)&(curbuf->b_p_def);
9205 case PV_INC: return (char_u *)&(curbuf->b_p_inc);
9206 #endif
9207 #ifdef FEAT_INS_EXPAND
9208 case PV_DICT: return (char_u *)&(curbuf->b_p_dict);
9209 case PV_TSR: return (char_u *)&(curbuf->b_p_tsr);
9210 #endif
9211 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9212 case PV_BEXPR: return (char_u *)&(curbuf->b_p_bexpr);
9213 #endif
9214 #ifdef FEAT_STL_OPT
9215 case PV_STL: return (char_u *)&(curwin->w_p_stl);
9216 #endif
9218 return NULL; /* "cannot happen" */
9220 return get_varp(p);
9224 * Get pointer to option variable.
9226 static char_u *
9227 get_varp(p)
9228 struct vimoption *p;
9230 /* hidden option, always return NULL */
9231 if (p->var == NULL)
9232 return NULL;
9234 switch ((int)p->indir)
9236 case PV_NONE: return p->var;
9238 /* global option with local value: use local value if it's been set */
9239 case PV_EP: return *curbuf->b_p_ep != NUL
9240 ? (char_u *)&curbuf->b_p_ep : p->var;
9241 case PV_KP: return *curbuf->b_p_kp != NUL
9242 ? (char_u *)&curbuf->b_p_kp : p->var;
9243 case PV_PATH: return *curbuf->b_p_path != NUL
9244 ? (char_u *)&(curbuf->b_p_path) : p->var;
9245 case PV_AR: return curbuf->b_p_ar >= 0
9246 ? (char_u *)&(curbuf->b_p_ar) : p->var;
9247 case PV_TAGS: return *curbuf->b_p_tags != NUL
9248 ? (char_u *)&(curbuf->b_p_tags) : p->var;
9249 #ifdef FEAT_FIND_ID
9250 case PV_DEF: return *curbuf->b_p_def != NUL
9251 ? (char_u *)&(curbuf->b_p_def) : p->var;
9252 case PV_INC: return *curbuf->b_p_inc != NUL
9253 ? (char_u *)&(curbuf->b_p_inc) : p->var;
9254 #endif
9255 #ifdef FEAT_INS_EXPAND
9256 case PV_DICT: return *curbuf->b_p_dict != NUL
9257 ? (char_u *)&(curbuf->b_p_dict) : p->var;
9258 case PV_TSR: return *curbuf->b_p_tsr != NUL
9259 ? (char_u *)&(curbuf->b_p_tsr) : p->var;
9260 #endif
9261 #ifdef FEAT_QUICKFIX
9262 case PV_EFM: return *curbuf->b_p_efm != NUL
9263 ? (char_u *)&(curbuf->b_p_efm) : p->var;
9264 case PV_GP: return *curbuf->b_p_gp != NUL
9265 ? (char_u *)&(curbuf->b_p_gp) : p->var;
9266 case PV_MP: return *curbuf->b_p_mp != NUL
9267 ? (char_u *)&(curbuf->b_p_mp) : p->var;
9268 #endif
9269 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9270 case PV_BEXPR: return *curbuf->b_p_bexpr != NUL
9271 ? (char_u *)&(curbuf->b_p_bexpr) : p->var;
9272 #endif
9273 #ifdef FEAT_STL_OPT
9274 case PV_STL: return *curwin->w_p_stl != NUL
9275 ? (char_u *)&(curwin->w_p_stl) : p->var;
9276 #endif
9278 #ifdef FEAT_ARABIC
9279 case PV_ARAB: return (char_u *)&(curwin->w_p_arab);
9280 #endif
9281 case PV_LIST: return (char_u *)&(curwin->w_p_list);
9282 #ifdef FEAT_SPELL
9283 case PV_SPELL: return (char_u *)&(curwin->w_p_spell);
9284 #endif
9285 #ifdef FEAT_SYN_HL
9286 case PV_CUC: return (char_u *)&(curwin->w_p_cuc);
9287 case PV_CUL: return (char_u *)&(curwin->w_p_cul);
9288 #endif
9289 #ifdef FEAT_DIFF
9290 case PV_DIFF: return (char_u *)&(curwin->w_p_diff);
9291 #endif
9292 #ifdef FEAT_FOLDING
9293 case PV_FDC: return (char_u *)&(curwin->w_p_fdc);
9294 case PV_FEN: return (char_u *)&(curwin->w_p_fen);
9295 case PV_FDI: return (char_u *)&(curwin->w_p_fdi);
9296 case PV_FDL: return (char_u *)&(curwin->w_p_fdl);
9297 case PV_FDM: return (char_u *)&(curwin->w_p_fdm);
9298 case PV_FML: return (char_u *)&(curwin->w_p_fml);
9299 case PV_FDN: return (char_u *)&(curwin->w_p_fdn);
9300 # ifdef FEAT_EVAL
9301 case PV_FDE: return (char_u *)&(curwin->w_p_fde);
9302 case PV_FDT: return (char_u *)&(curwin->w_p_fdt);
9303 # endif
9304 case PV_FMR: return (char_u *)&(curwin->w_p_fmr);
9305 #endif
9306 case PV_NU: return (char_u *)&(curwin->w_p_nu);
9307 #ifdef FEAT_LINEBREAK
9308 case PV_NUW: return (char_u *)&(curwin->w_p_nuw);
9309 #endif
9310 #ifdef FEAT_WINDOWS
9311 case PV_WFH: return (char_u *)&(curwin->w_p_wfh);
9312 #endif
9313 #ifdef FEAT_VERTSPLIT
9314 case PV_WFW: return (char_u *)&(curwin->w_p_wfw);
9315 #endif
9316 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
9317 case PV_PVW: return (char_u *)&(curwin->w_p_pvw);
9318 #endif
9319 #ifdef FEAT_RIGHTLEFT
9320 case PV_RL: return (char_u *)&(curwin->w_p_rl);
9321 case PV_RLC: return (char_u *)&(curwin->w_p_rlc);
9322 #endif
9323 case PV_SCROLL: return (char_u *)&(curwin->w_p_scr);
9324 case PV_WRAP: return (char_u *)&(curwin->w_p_wrap);
9325 #ifdef FEAT_LINEBREAK
9326 case PV_LBR: return (char_u *)&(curwin->w_p_lbr);
9327 #endif
9328 #ifdef FEAT_SCROLLBIND
9329 case PV_SCBIND: return (char_u *)&(curwin->w_p_scb);
9330 #endif
9332 case PV_AI: return (char_u *)&(curbuf->b_p_ai);
9333 case PV_BIN: return (char_u *)&(curbuf->b_p_bin);
9334 #ifdef FEAT_MBYTE
9335 case PV_BOMB: return (char_u *)&(curbuf->b_p_bomb);
9336 #endif
9337 #if defined(FEAT_QUICKFIX)
9338 case PV_BH: return (char_u *)&(curbuf->b_p_bh);
9339 case PV_BT: return (char_u *)&(curbuf->b_p_bt);
9340 #endif
9341 case PV_BL: return (char_u *)&(curbuf->b_p_bl);
9342 case PV_CI: return (char_u *)&(curbuf->b_p_ci);
9343 #ifdef FEAT_CINDENT
9344 case PV_CIN: return (char_u *)&(curbuf->b_p_cin);
9345 case PV_CINK: return (char_u *)&(curbuf->b_p_cink);
9346 case PV_CINO: return (char_u *)&(curbuf->b_p_cino);
9347 #endif
9348 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
9349 case PV_CINW: return (char_u *)&(curbuf->b_p_cinw);
9350 #endif
9351 #ifdef FEAT_COMMENTS
9352 case PV_COM: return (char_u *)&(curbuf->b_p_com);
9353 #endif
9354 #ifdef FEAT_FOLDING
9355 case PV_CMS: return (char_u *)&(curbuf->b_p_cms);
9356 #endif
9357 #ifdef FEAT_INS_EXPAND
9358 case PV_CPT: return (char_u *)&(curbuf->b_p_cpt);
9359 #endif
9360 #ifdef FEAT_COMPL_FUNC
9361 case PV_CFU: return (char_u *)&(curbuf->b_p_cfu);
9362 case PV_OFU: return (char_u *)&(curbuf->b_p_ofu);
9363 #endif
9364 case PV_EOL: return (char_u *)&(curbuf->b_p_eol);
9365 case PV_ET: return (char_u *)&(curbuf->b_p_et);
9366 #ifdef FEAT_MBYTE
9367 case PV_FENC: return (char_u *)&(curbuf->b_p_fenc);
9368 #endif
9369 case PV_FF: return (char_u *)&(curbuf->b_p_ff);
9370 #ifdef FEAT_AUTOCMD
9371 case PV_FT: return (char_u *)&(curbuf->b_p_ft);
9372 #endif
9373 case PV_FO: return (char_u *)&(curbuf->b_p_fo);
9374 case PV_FLP: return (char_u *)&(curbuf->b_p_flp);
9375 case PV_IMI: return (char_u *)&(curbuf->b_p_iminsert);
9376 case PV_IMS: return (char_u *)&(curbuf->b_p_imsearch);
9377 case PV_INF: return (char_u *)&(curbuf->b_p_inf);
9378 case PV_ISK: return (char_u *)&(curbuf->b_p_isk);
9379 #ifdef FEAT_FIND_ID
9380 # ifdef FEAT_EVAL
9381 case PV_INEX: return (char_u *)&(curbuf->b_p_inex);
9382 # endif
9383 #endif
9384 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
9385 case PV_INDE: return (char_u *)&(curbuf->b_p_inde);
9386 case PV_INDK: return (char_u *)&(curbuf->b_p_indk);
9387 #endif
9388 #ifdef FEAT_EVAL
9389 case PV_FEX: return (char_u *)&(curbuf->b_p_fex);
9390 #endif
9391 #ifdef FEAT_CRYPT
9392 case PV_KEY: return (char_u *)&(curbuf->b_p_key);
9393 #endif
9394 #ifdef FEAT_LISP
9395 case PV_LISP: return (char_u *)&(curbuf->b_p_lisp);
9396 #endif
9397 case PV_ML: return (char_u *)&(curbuf->b_p_ml);
9398 case PV_MPS: return (char_u *)&(curbuf->b_p_mps);
9399 #ifdef FEAT_GUI_MACVIM
9400 case PV_MMTA: return (char_u *)&(curbuf->b_p_mmta);
9401 #endif
9402 case PV_MA: return (char_u *)&(curbuf->b_p_ma);
9403 #ifdef USE_MIGEMO
9404 case PV_MIG: return (char_u *)&(curbuf->b_p_migemo);
9405 #endif
9406 case PV_MOD: return (char_u *)&(curbuf->b_changed);
9407 case PV_NF: return (char_u *)&(curbuf->b_p_nf);
9408 #ifdef FEAT_OSFILETYPE
9409 case PV_OFT: return (char_u *)&(curbuf->b_p_oft);
9410 #endif
9411 case PV_PI: return (char_u *)&(curbuf->b_p_pi);
9412 #ifdef FEAT_TEXTOBJ
9413 case PV_QE: return (char_u *)&(curbuf->b_p_qe);
9414 #endif
9415 case PV_RO: return (char_u *)&(curbuf->b_p_ro);
9416 #ifdef FEAT_SMARTINDENT
9417 case PV_SI: return (char_u *)&(curbuf->b_p_si);
9418 #endif
9419 #ifndef SHORT_FNAME
9420 case PV_SN: return (char_u *)&(curbuf->b_p_sn);
9421 #endif
9422 case PV_STS: return (char_u *)&(curbuf->b_p_sts);
9423 #ifdef FEAT_SEARCHPATH
9424 case PV_SUA: return (char_u *)&(curbuf->b_p_sua);
9425 #endif
9426 case PV_SWF: return (char_u *)&(curbuf->b_p_swf);
9427 #ifdef FEAT_SYN_HL
9428 case PV_SMC: return (char_u *)&(curbuf->b_p_smc);
9429 case PV_SYN: return (char_u *)&(curbuf->b_p_syn);
9430 #endif
9431 #ifdef FEAT_SPELL
9432 case PV_SPC: return (char_u *)&(curbuf->b_p_spc);
9433 case PV_SPF: return (char_u *)&(curbuf->b_p_spf);
9434 case PV_SPL: return (char_u *)&(curbuf->b_p_spl);
9435 #endif
9436 case PV_SW: return (char_u *)&(curbuf->b_p_sw);
9437 case PV_TS: return (char_u *)&(curbuf->b_p_ts);
9438 case PV_TW: return (char_u *)&(curbuf->b_p_tw);
9439 case PV_TX: return (char_u *)&(curbuf->b_p_tx);
9440 case PV_WM: return (char_u *)&(curbuf->b_p_wm);
9441 #ifdef FEAT_KEYMAP
9442 case PV_KMAP: return (char_u *)&(curbuf->b_p_keymap);
9443 #endif
9444 default: EMSG(_("E356: get_varp ERROR"));
9446 /* always return a valid pointer to avoid a crash! */
9447 return (char_u *)&(curbuf->b_p_wm);
9451 * Get the value of 'equalprg', either the buffer-local one or the global one.
9453 char_u *
9454 get_equalprg()
9456 if (*curbuf->b_p_ep == NUL)
9457 return p_ep;
9458 return curbuf->b_p_ep;
9461 #if defined(FEAT_WINDOWS) || defined(PROTO)
9463 * Copy options from one window to another.
9464 * Used when splitting a window.
9466 void
9467 win_copy_options(wp_from, wp_to)
9468 win_T *wp_from;
9469 win_T *wp_to;
9471 copy_winopt(&wp_from->w_onebuf_opt, &wp_to->w_onebuf_opt);
9472 copy_winopt(&wp_from->w_allbuf_opt, &wp_to->w_allbuf_opt);
9473 # ifdef FEAT_RIGHTLEFT
9474 # ifdef FEAT_FKMAP
9475 /* Is this right? */
9476 wp_to->w_farsi = wp_from->w_farsi;
9477 # endif
9478 # endif
9480 #endif
9483 * Copy the options from one winopt_T to another.
9484 * Doesn't free the old option values in "to", use clear_winopt() for that.
9485 * The 'scroll' option is not copied, because it depends on the window height.
9486 * The 'previewwindow' option is reset, there can be only one preview window.
9488 void
9489 copy_winopt(from, to)
9490 winopt_T *from;
9491 winopt_T *to;
9493 #ifdef FEAT_ARABIC
9494 to->wo_arab = from->wo_arab;
9495 #endif
9496 to->wo_list = from->wo_list;
9497 to->wo_nu = from->wo_nu;
9498 #ifdef FEAT_LINEBREAK
9499 to->wo_nuw = from->wo_nuw;
9500 #endif
9501 #ifdef FEAT_RIGHTLEFT
9502 to->wo_rl = from->wo_rl;
9503 to->wo_rlc = vim_strsave(from->wo_rlc);
9504 #endif
9505 #ifdef FEAT_STL_OPT
9506 to->wo_stl = vim_strsave(from->wo_stl);
9507 #endif
9508 to->wo_wrap = from->wo_wrap;
9509 #ifdef FEAT_LINEBREAK
9510 to->wo_lbr = from->wo_lbr;
9511 #endif
9512 #ifdef FEAT_SCROLLBIND
9513 to->wo_scb = from->wo_scb;
9514 #endif
9515 #ifdef FEAT_SPELL
9516 to->wo_spell = from->wo_spell;
9517 #endif
9518 #ifdef FEAT_SYN_HL
9519 to->wo_cuc = from->wo_cuc;
9520 to->wo_cul = from->wo_cul;
9521 #endif
9522 #ifdef FEAT_DIFF
9523 to->wo_diff = from->wo_diff;
9524 #endif
9525 #ifdef FEAT_FOLDING
9526 to->wo_fdc = from->wo_fdc;
9527 to->wo_fen = from->wo_fen;
9528 to->wo_fdi = vim_strsave(from->wo_fdi);
9529 to->wo_fml = from->wo_fml;
9530 to->wo_fdl = from->wo_fdl;
9531 to->wo_fdm = vim_strsave(from->wo_fdm);
9532 to->wo_fdn = from->wo_fdn;
9533 # ifdef FEAT_EVAL
9534 to->wo_fde = vim_strsave(from->wo_fde);
9535 to->wo_fdt = vim_strsave(from->wo_fdt);
9536 # endif
9537 to->wo_fmr = vim_strsave(from->wo_fmr);
9538 #endif
9539 check_winopt(to); /* don't want NULL pointers */
9543 * Check string options in a window for a NULL value.
9545 void
9546 check_win_options(win)
9547 win_T *win;
9549 check_winopt(&win->w_onebuf_opt);
9550 check_winopt(&win->w_allbuf_opt);
9554 * Check for NULL pointers in a winopt_T and replace them with empty_option.
9556 void
9557 check_winopt(wop)
9558 winopt_T *wop UNUSED;
9560 #ifdef FEAT_FOLDING
9561 check_string_option(&wop->wo_fdi);
9562 check_string_option(&wop->wo_fdm);
9563 # ifdef FEAT_EVAL
9564 check_string_option(&wop->wo_fde);
9565 check_string_option(&wop->wo_fdt);
9566 # endif
9567 check_string_option(&wop->wo_fmr);
9568 #endif
9569 #ifdef FEAT_RIGHTLEFT
9570 check_string_option(&wop->wo_rlc);
9571 #endif
9572 #ifdef FEAT_STL_OPT
9573 check_string_option(&wop->wo_stl);
9574 #endif
9578 * Free the allocated memory inside a winopt_T.
9580 void
9581 clear_winopt(wop)
9582 winopt_T *wop UNUSED;
9584 #ifdef FEAT_FOLDING
9585 clear_string_option(&wop->wo_fdi);
9586 clear_string_option(&wop->wo_fdm);
9587 # ifdef FEAT_EVAL
9588 clear_string_option(&wop->wo_fde);
9589 clear_string_option(&wop->wo_fdt);
9590 # endif
9591 clear_string_option(&wop->wo_fmr);
9592 #endif
9593 #ifdef FEAT_RIGHTLEFT
9594 clear_string_option(&wop->wo_rlc);
9595 #endif
9596 #ifdef FEAT_STL_OPT
9597 clear_string_option(&wop->wo_stl);
9598 #endif
9602 * Copy global option values to local options for one buffer.
9603 * Used when creating a new buffer and sometimes when entering a buffer.
9604 * flags:
9605 * BCO_ENTER We will enter the buf buffer.
9606 * BCO_ALWAYS Always copy the options, but only set b_p_initialized when
9607 * appropriate.
9608 * BCO_NOHELP Don't copy the values to a help buffer.
9610 void
9611 buf_copy_options(buf, flags)
9612 buf_T *buf;
9613 int flags;
9615 int should_copy = TRUE;
9616 char_u *save_p_isk = NULL; /* init for GCC */
9617 int dont_do_help;
9618 int did_isk = FALSE;
9621 * Don't do anything of the buffer is invalid.
9623 if (buf == NULL || !buf_valid(buf))
9624 return;
9627 * Skip this when the option defaults have not been set yet. Happens when
9628 * main() allocates the first buffer.
9630 if (p_cpo != NULL)
9633 * Always copy when entering and 'cpo' contains 'S'.
9634 * Don't copy when already initialized.
9635 * Don't copy when 'cpo' contains 's' and not entering.
9636 * 'S' BCO_ENTER initialized 's' should_copy
9637 * yes yes X X TRUE
9638 * yes no yes X FALSE
9639 * no X yes X FALSE
9640 * X no no yes FALSE
9641 * X no no no TRUE
9642 * no yes no X TRUE
9644 if ((vim_strchr(p_cpo, CPO_BUFOPTGLOB) == NULL || !(flags & BCO_ENTER))
9645 && (buf->b_p_initialized
9646 || (!(flags & BCO_ENTER)
9647 && vim_strchr(p_cpo, CPO_BUFOPT) != NULL)))
9648 should_copy = FALSE;
9650 if (should_copy || (flags & BCO_ALWAYS))
9652 /* Don't copy the options specific to a help buffer when
9653 * BCO_NOHELP is given or the options were initialized already
9654 * (jumping back to a help file with CTRL-T or CTRL-O) */
9655 dont_do_help = ((flags & BCO_NOHELP) && buf->b_help)
9656 || buf->b_p_initialized;
9657 if (dont_do_help) /* don't free b_p_isk */
9659 save_p_isk = buf->b_p_isk;
9660 buf->b_p_isk = NULL;
9663 * Always free the allocated strings.
9664 * If not already initialized, set 'readonly' and copy 'fileformat'.
9666 if (!buf->b_p_initialized)
9668 free_buf_options(buf, TRUE);
9669 buf->b_p_ro = FALSE; /* don't copy readonly */
9670 buf->b_p_tx = p_tx;
9671 #ifdef FEAT_MBYTE
9672 buf->b_p_fenc = vim_strsave(p_fenc);
9673 #endif
9674 buf->b_p_ff = vim_strsave(p_ff);
9675 #if defined(FEAT_QUICKFIX)
9676 buf->b_p_bh = empty_option;
9677 buf->b_p_bt = empty_option;
9678 #endif
9680 else
9681 free_buf_options(buf, FALSE);
9683 buf->b_p_ai = p_ai;
9684 buf->b_p_ai_nopaste = p_ai_nopaste;
9685 buf->b_p_sw = p_sw;
9686 buf->b_p_tw = p_tw;
9687 buf->b_p_tw_nopaste = p_tw_nopaste;
9688 buf->b_p_tw_nobin = p_tw_nobin;
9689 buf->b_p_wm = p_wm;
9690 buf->b_p_wm_nopaste = p_wm_nopaste;
9691 buf->b_p_wm_nobin = p_wm_nobin;
9692 buf->b_p_bin = p_bin;
9693 #ifdef FEAT_MBYTE
9694 buf->b_p_bomb = p_bomb;
9695 #endif
9696 buf->b_p_et = p_et;
9697 buf->b_p_et_nobin = p_et_nobin;
9698 buf->b_p_ml = p_ml;
9699 buf->b_p_ml_nobin = p_ml_nobin;
9700 buf->b_p_inf = p_inf;
9701 buf->b_p_swf = p_swf;
9702 #ifdef FEAT_INS_EXPAND
9703 buf->b_p_cpt = vim_strsave(p_cpt);
9704 #endif
9705 #ifdef FEAT_COMPL_FUNC
9706 buf->b_p_cfu = vim_strsave(p_cfu);
9707 buf->b_p_ofu = vim_strsave(p_ofu);
9708 #endif
9709 buf->b_p_sts = p_sts;
9710 buf->b_p_sts_nopaste = p_sts_nopaste;
9711 #ifndef SHORT_FNAME
9712 buf->b_p_sn = p_sn;
9713 #endif
9714 #ifdef FEAT_COMMENTS
9715 buf->b_p_com = vim_strsave(p_com);
9716 #endif
9717 #ifdef FEAT_FOLDING
9718 buf->b_p_cms = vim_strsave(p_cms);
9719 #endif
9720 buf->b_p_fo = vim_strsave(p_fo);
9721 buf->b_p_flp = vim_strsave(p_flp);
9722 buf->b_p_nf = vim_strsave(p_nf);
9723 buf->b_p_mps = vim_strsave(p_mps);
9724 #ifdef FEAT_SMARTINDENT
9725 buf->b_p_si = p_si;
9726 #endif
9727 buf->b_p_ci = p_ci;
9728 #ifdef FEAT_CINDENT
9729 buf->b_p_cin = p_cin;
9730 buf->b_p_cink = vim_strsave(p_cink);
9731 buf->b_p_cino = vim_strsave(p_cino);
9732 #endif
9733 #ifdef FEAT_AUTOCMD
9734 /* Don't copy 'filetype', it must be detected */
9735 buf->b_p_ft = empty_option;
9736 #endif
9737 #ifdef FEAT_OSFILETYPE
9738 buf->b_p_oft = vim_strsave(p_oft);
9739 #endif
9740 buf->b_p_pi = p_pi;
9741 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
9742 buf->b_p_cinw = vim_strsave(p_cinw);
9743 #endif
9744 #ifdef FEAT_LISP
9745 buf->b_p_lisp = p_lisp;
9746 #endif
9747 #ifdef FEAT_SYN_HL
9748 /* Don't copy 'syntax', it must be set */
9749 buf->b_p_syn = empty_option;
9750 buf->b_p_smc = p_smc;
9751 #endif
9752 #ifdef FEAT_SPELL
9753 buf->b_p_spc = vim_strsave(p_spc);
9754 (void)compile_cap_prog(buf);
9755 buf->b_p_spf = vim_strsave(p_spf);
9756 buf->b_p_spl = vim_strsave(p_spl);
9757 #endif
9758 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
9759 buf->b_p_inde = vim_strsave(p_inde);
9760 buf->b_p_indk = vim_strsave(p_indk);
9761 #endif
9762 #if defined(FEAT_EVAL)
9763 buf->b_p_fex = vim_strsave(p_fex);
9764 #endif
9765 #ifdef FEAT_CRYPT
9766 buf->b_p_key = vim_strsave(p_key);
9767 #endif
9768 #ifdef FEAT_SEARCHPATH
9769 buf->b_p_sua = vim_strsave(p_sua);
9770 #endif
9771 #ifdef FEAT_KEYMAP
9772 buf->b_p_keymap = vim_strsave(p_keymap);
9773 buf->b_kmap_state |= KEYMAP_INIT;
9774 #endif
9775 #ifdef FEAT_GUI_MACVIM
9776 buf->b_p_mmta = p_mmta;
9777 #endif
9778 /* This isn't really an option, but copying the langmap and IME
9779 * state from the current buffer is better than resetting it. */
9780 buf->b_p_iminsert = p_iminsert;
9781 buf->b_p_imsearch = p_imsearch;
9783 #ifdef USE_MIGEMO
9784 /* This is migemo extension */
9785 buf->b_p_migemo = p_migemo;
9786 #endif
9788 /* options that are normally global but also have a local value
9789 * are not copied, start using the global value */
9790 buf->b_p_ar = -1;
9791 #ifdef FEAT_QUICKFIX
9792 buf->b_p_gp = empty_option;
9793 buf->b_p_mp = empty_option;
9794 buf->b_p_efm = empty_option;
9795 #endif
9796 buf->b_p_ep = empty_option;
9797 buf->b_p_kp = empty_option;
9798 buf->b_p_path = empty_option;
9799 buf->b_p_tags = empty_option;
9800 #ifdef FEAT_FIND_ID
9801 buf->b_p_def = empty_option;
9802 buf->b_p_inc = empty_option;
9803 # ifdef FEAT_EVAL
9804 buf->b_p_inex = vim_strsave(p_inex);
9805 # endif
9806 #endif
9807 #ifdef FEAT_INS_EXPAND
9808 buf->b_p_dict = empty_option;
9809 buf->b_p_tsr = empty_option;
9810 #endif
9811 #ifdef FEAT_TEXTOBJ
9812 buf->b_p_qe = vim_strsave(p_qe);
9813 #endif
9814 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9815 buf->b_p_bexpr = empty_option;
9816 #endif
9819 * Don't copy the options set by ex_help(), use the saved values,
9820 * when going from a help buffer to a non-help buffer.
9821 * Don't touch these at all when BCO_NOHELP is used and going from
9822 * or to a help buffer.
9824 if (dont_do_help)
9825 buf->b_p_isk = save_p_isk;
9826 else
9828 buf->b_p_isk = vim_strsave(p_isk);
9829 did_isk = TRUE;
9830 buf->b_p_ts = p_ts;
9831 buf->b_help = FALSE;
9832 #ifdef FEAT_QUICKFIX
9833 if (buf->b_p_bt[0] == 'h')
9834 clear_string_option(&buf->b_p_bt);
9835 #endif
9836 buf->b_p_ma = p_ma;
9841 * When the options should be copied (ignoring BCO_ALWAYS), set the
9842 * flag that indicates that the options have been initialized.
9844 if (should_copy)
9845 buf->b_p_initialized = TRUE;
9848 check_buf_options(buf); /* make sure we don't have NULLs */
9849 if (did_isk)
9850 (void)buf_init_chartab(buf, FALSE);
9854 * Reset the 'modifiable' option and its default value.
9856 void
9857 reset_modifiable()
9859 int opt_idx;
9861 curbuf->b_p_ma = FALSE;
9862 p_ma = FALSE;
9863 opt_idx = findoption((char_u *)"ma");
9864 if (opt_idx >= 0)
9865 options[opt_idx].def_val[VI_DEFAULT] = FALSE;
9869 * Set the global value for 'iminsert' to the local value.
9871 void
9872 set_iminsert_global()
9874 p_iminsert = curbuf->b_p_iminsert;
9878 * Set the global value for 'imsearch' to the local value.
9880 void
9881 set_imsearch_global()
9883 p_imsearch = curbuf->b_p_imsearch;
9886 #if defined(FEAT_CMDL_COMPL) || defined(PROTO)
9887 static int expand_option_idx = -1;
9888 static char_u expand_option_name[5] = {'t', '_', NUL, NUL, NUL};
9889 static int expand_option_flags = 0;
9891 void
9892 set_context_in_set_cmd(xp, arg, opt_flags)
9893 expand_T *xp;
9894 char_u *arg;
9895 int opt_flags; /* OPT_GLOBAL and/or OPT_LOCAL */
9897 int nextchar;
9898 long_u flags = 0; /* init for GCC */
9899 int opt_idx = 0; /* init for GCC */
9900 char_u *p;
9901 char_u *s;
9902 int is_term_option = FALSE;
9903 int key;
9905 expand_option_flags = opt_flags;
9907 xp->xp_context = EXPAND_SETTINGS;
9908 if (*arg == NUL)
9910 xp->xp_pattern = arg;
9911 return;
9913 p = arg + STRLEN(arg) - 1;
9914 if (*p == ' ' && *(p - 1) != '\\')
9916 xp->xp_pattern = p + 1;
9917 return;
9919 while (p > arg)
9921 s = p;
9922 /* count number of backslashes before ' ' or ',' */
9923 if (*p == ' ' || *p == ',')
9925 while (s > arg && *(s - 1) == '\\')
9926 --s;
9928 /* break at a space with an even number of backslashes */
9929 if (*p == ' ' && ((p - s) & 1) == 0)
9931 ++p;
9932 break;
9934 --p;
9936 if (STRNCMP(p, "no", 2) == 0 && STRNCMP(p, "novice", 6) != 0)
9938 xp->xp_context = EXPAND_BOOL_SETTINGS;
9939 p += 2;
9941 if (STRNCMP(p, "inv", 3) == 0)
9943 xp->xp_context = EXPAND_BOOL_SETTINGS;
9944 p += 3;
9946 xp->xp_pattern = arg = p;
9947 if (*arg == '<')
9949 while (*p != '>')
9950 if (*p++ == NUL) /* expand terminal option name */
9951 return;
9952 key = get_special_key_code(arg + 1);
9953 if (key == 0) /* unknown name */
9955 xp->xp_context = EXPAND_NOTHING;
9956 return;
9958 nextchar = *++p;
9959 is_term_option = TRUE;
9960 expand_option_name[2] = KEY2TERMCAP0(key);
9961 expand_option_name[3] = KEY2TERMCAP1(key);
9963 else
9965 if (p[0] == 't' && p[1] == '_')
9967 p += 2;
9968 if (*p != NUL)
9969 ++p;
9970 if (*p == NUL)
9971 return; /* expand option name */
9972 nextchar = *++p;
9973 is_term_option = TRUE;
9974 expand_option_name[2] = p[-2];
9975 expand_option_name[3] = p[-1];
9977 else
9979 /* Allow * wildcard */
9980 while (ASCII_ISALNUM(*p) || *p == '_' || *p == '*')
9981 p++;
9982 if (*p == NUL)
9983 return;
9984 nextchar = *p;
9985 *p = NUL;
9986 opt_idx = findoption(arg);
9987 *p = nextchar;
9988 if (opt_idx == -1 || options[opt_idx].var == NULL)
9990 xp->xp_context = EXPAND_NOTHING;
9991 return;
9993 flags = options[opt_idx].flags;
9994 if (flags & P_BOOL)
9996 xp->xp_context = EXPAND_NOTHING;
9997 return;
10001 /* handle "-=" and "+=" */
10002 if ((nextchar == '-' || nextchar == '+' || nextchar == '^') && p[1] == '=')
10004 ++p;
10005 nextchar = '=';
10007 if ((nextchar != '=' && nextchar != ':')
10008 || xp->xp_context == EXPAND_BOOL_SETTINGS)
10010 xp->xp_context = EXPAND_UNSUCCESSFUL;
10011 return;
10013 if (xp->xp_context != EXPAND_BOOL_SETTINGS && p[1] == NUL)
10015 xp->xp_context = EXPAND_OLD_SETTING;
10016 if (is_term_option)
10017 expand_option_idx = -1;
10018 else
10019 expand_option_idx = opt_idx;
10020 xp->xp_pattern = p + 1;
10021 return;
10023 xp->xp_context = EXPAND_NOTHING;
10024 if (is_term_option || (flags & P_NUM))
10025 return;
10027 xp->xp_pattern = p + 1;
10029 if (flags & P_EXPAND)
10031 p = options[opt_idx].var;
10032 if (p == (char_u *)&p_bdir
10033 || p == (char_u *)&p_dir
10034 || p == (char_u *)&p_path
10035 || p == (char_u *)&p_rtp
10036 #ifdef FEAT_SEARCHPATH
10037 || p == (char_u *)&p_cdpath
10038 #endif
10039 #ifdef FEAT_SESSION
10040 || p == (char_u *)&p_vdir
10041 #endif
10044 xp->xp_context = EXPAND_DIRECTORIES;
10045 if (p == (char_u *)&p_path
10046 #ifdef FEAT_SEARCHPATH
10047 || p == (char_u *)&p_cdpath
10048 #endif
10050 xp->xp_backslash = XP_BS_THREE;
10051 else
10052 xp->xp_backslash = XP_BS_ONE;
10054 else
10056 xp->xp_context = EXPAND_FILES;
10057 /* for 'tags' need three backslashes for a space */
10058 if (p == (char_u *)&p_tags)
10059 xp->xp_backslash = XP_BS_THREE;
10060 else
10061 xp->xp_backslash = XP_BS_ONE;
10065 /* For an option that is a list of file names, find the start of the
10066 * last file name. */
10067 for (p = arg + STRLEN(arg) - 1; p > xp->xp_pattern; --p)
10069 /* count number of backslashes before ' ' or ',' */
10070 if (*p == ' ' || *p == ',')
10072 s = p;
10073 while (s > xp->xp_pattern && *(s - 1) == '\\')
10074 --s;
10075 if ((*p == ' ' && (xp->xp_backslash == XP_BS_THREE && (p - s) < 3))
10076 || (*p == ',' && (flags & P_COMMA) && ((p - s) & 1) == 0))
10078 xp->xp_pattern = p + 1;
10079 break;
10083 #ifdef FEAT_SPELL
10084 /* for 'spellsuggest' start at "file:" */
10085 if (options[opt_idx].var == (char_u *)&p_sps
10086 && STRNCMP(p, "file:", 5) == 0)
10088 xp->xp_pattern = p + 5;
10089 break;
10091 #endif
10094 return;
10098 ExpandSettings(xp, regmatch, num_file, file)
10099 expand_T *xp;
10100 regmatch_T *regmatch;
10101 int *num_file;
10102 char_u ***file;
10104 int num_normal = 0; /* Nr of matching non-term-code settings */
10105 int num_term = 0; /* Nr of matching terminal code settings */
10106 int opt_idx;
10107 int match;
10108 int count = 0;
10109 char_u *str;
10110 int loop;
10111 int is_term_opt;
10112 char_u name_buf[MAX_KEY_NAME_LEN];
10113 static char *(names[]) = {"all", "termcap"};
10114 int ic = regmatch->rm_ic; /* remember the ignore-case flag */
10116 /* do this loop twice:
10117 * loop == 0: count the number of matching options
10118 * loop == 1: copy the matching options into allocated memory
10120 for (loop = 0; loop <= 1; ++loop)
10122 regmatch->rm_ic = ic;
10123 if (xp->xp_context != EXPAND_BOOL_SETTINGS)
10125 for (match = 0; match < (int)(sizeof(names) / sizeof(char *));
10126 ++match)
10127 if (vim_regexec(regmatch, (char_u *)names[match], (colnr_T)0))
10129 if (loop == 0)
10130 num_normal++;
10131 else
10132 (*file)[count++] = vim_strsave((char_u *)names[match]);
10135 for (opt_idx = 0; (str = (char_u *)options[opt_idx].fullname) != NULL;
10136 opt_idx++)
10138 if (options[opt_idx].var == NULL)
10139 continue;
10140 if (xp->xp_context == EXPAND_BOOL_SETTINGS
10141 && !(options[opt_idx].flags & P_BOOL))
10142 continue;
10143 is_term_opt = istermoption(&options[opt_idx]);
10144 if (is_term_opt && num_normal > 0)
10145 continue;
10146 match = FALSE;
10147 if (vim_regexec(regmatch, str, (colnr_T)0)
10148 || (options[opt_idx].shortname != NULL
10149 && vim_regexec(regmatch,
10150 (char_u *)options[opt_idx].shortname, (colnr_T)0)))
10151 match = TRUE;
10152 else if (is_term_opt)
10154 name_buf[0] = '<';
10155 name_buf[1] = 't';
10156 name_buf[2] = '_';
10157 name_buf[3] = str[2];
10158 name_buf[4] = str[3];
10159 name_buf[5] = '>';
10160 name_buf[6] = NUL;
10161 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10163 match = TRUE;
10164 str = name_buf;
10167 if (match)
10169 if (loop == 0)
10171 if (is_term_opt)
10172 num_term++;
10173 else
10174 num_normal++;
10176 else
10177 (*file)[count++] = vim_strsave(str);
10181 * Check terminal key codes, these are not in the option table
10183 if (xp->xp_context != EXPAND_BOOL_SETTINGS && num_normal == 0)
10185 for (opt_idx = 0; (str = get_termcode(opt_idx)) != NULL; opt_idx++)
10187 if (!isprint(str[0]) || !isprint(str[1]))
10188 continue;
10190 name_buf[0] = 't';
10191 name_buf[1] = '_';
10192 name_buf[2] = str[0];
10193 name_buf[3] = str[1];
10194 name_buf[4] = NUL;
10196 match = FALSE;
10197 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10198 match = TRUE;
10199 else
10201 name_buf[0] = '<';
10202 name_buf[1] = 't';
10203 name_buf[2] = '_';
10204 name_buf[3] = str[0];
10205 name_buf[4] = str[1];
10206 name_buf[5] = '>';
10207 name_buf[6] = NUL;
10209 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10210 match = TRUE;
10212 if (match)
10214 if (loop == 0)
10215 num_term++;
10216 else
10217 (*file)[count++] = vim_strsave(name_buf);
10222 * Check special key names.
10224 regmatch->rm_ic = TRUE; /* ignore case here */
10225 for (opt_idx = 0; (str = get_key_name(opt_idx)) != NULL; opt_idx++)
10227 name_buf[0] = '<';
10228 STRCPY(name_buf + 1, str);
10229 STRCAT(name_buf, ">");
10231 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10233 if (loop == 0)
10234 num_term++;
10235 else
10236 (*file)[count++] = vim_strsave(name_buf);
10240 if (loop == 0)
10242 if (num_normal > 0)
10243 *num_file = num_normal;
10244 else if (num_term > 0)
10245 *num_file = num_term;
10246 else
10247 return OK;
10248 *file = (char_u **)alloc((unsigned)(*num_file * sizeof(char_u *)));
10249 if (*file == NULL)
10251 *file = (char_u **)"";
10252 return FAIL;
10256 return OK;
10260 ExpandOldSetting(num_file, file)
10261 int *num_file;
10262 char_u ***file;
10264 char_u *var = NULL; /* init for GCC */
10265 char_u *buf;
10267 *num_file = 0;
10268 *file = (char_u **)alloc((unsigned)sizeof(char_u *));
10269 if (*file == NULL)
10270 return FAIL;
10273 * For a terminal key code expand_option_idx is < 0.
10275 if (expand_option_idx < 0)
10277 var = find_termcode(expand_option_name + 2);
10278 if (var == NULL)
10279 expand_option_idx = findoption(expand_option_name);
10282 if (expand_option_idx >= 0)
10284 /* put string of option value in NameBuff */
10285 option_value2string(&options[expand_option_idx], expand_option_flags);
10286 var = NameBuff;
10288 else if (var == NULL)
10289 var = (char_u *)"";
10291 /* A backslash is required before some characters. This is the reverse of
10292 * what happens in do_set(). */
10293 buf = vim_strsave_escaped(var, escape_chars);
10295 if (buf == NULL)
10297 vim_free(*file);
10298 *file = NULL;
10299 return FAIL;
10302 #ifdef BACKSLASH_IN_FILENAME
10303 /* For MS-Windows et al. we don't double backslashes at the start and
10304 * before a file name character. */
10305 for (var = buf; *var != NUL; mb_ptr_adv(var))
10306 if (var[0] == '\\' && var[1] == '\\'
10307 && expand_option_idx >= 0
10308 && (options[expand_option_idx].flags & P_EXPAND)
10309 && vim_isfilec(var[2])
10310 && (var[2] != '\\' || (var == buf && var[4] != '\\')))
10311 STRMOVE(var, var + 1);
10312 #endif
10314 *file[0] = buf;
10315 *num_file = 1;
10316 return OK;
10318 #endif
10321 * Get the value for the numeric or string option *opp in a nice format into
10322 * NameBuff[]. Must not be called with a hidden option!
10324 static void
10325 option_value2string(opp, opt_flags)
10326 struct vimoption *opp;
10327 int opt_flags; /* OPT_GLOBAL and/or OPT_LOCAL */
10329 char_u *varp;
10331 varp = get_varp_scope(opp, opt_flags);
10333 if (opp->flags & P_NUM)
10335 long wc = 0;
10337 if (wc_use_keyname(varp, &wc))
10338 STRCPY(NameBuff, get_special_key_name((int)wc, 0));
10339 else if (wc != 0)
10340 STRCPY(NameBuff, transchar((int)wc));
10341 else
10342 sprintf((char *)NameBuff, "%ld", *(long *)varp);
10344 else /* P_STRING */
10346 varp = *(char_u **)(varp);
10347 if (varp == NULL) /* just in case */
10348 NameBuff[0] = NUL;
10349 #ifdef FEAT_CRYPT
10350 /* don't show the actual value of 'key', only that it's set */
10351 else if (opp->var == (char_u *)&p_key && *varp)
10352 STRCPY(NameBuff, "*****");
10353 #endif
10354 else if (opp->flags & P_EXPAND)
10355 home_replace(NULL, varp, NameBuff, MAXPATHL, FALSE);
10356 /* Translate 'pastetoggle' into special key names */
10357 else if ((char_u **)opp->var == &p_pt)
10358 str2specialbuf(p_pt, NameBuff, MAXPATHL);
10359 else
10360 vim_strncpy(NameBuff, varp, MAXPATHL - 1);
10365 * Return TRUE if "varp" points to 'wildchar' or 'wildcharm' and it can be
10366 * printed as a keyname.
10367 * "*wcp" is set to the value of the option if it's 'wildchar' or 'wildcharm'.
10369 static int
10370 wc_use_keyname(varp, wcp)
10371 char_u *varp;
10372 long *wcp;
10374 if (((long *)varp == &p_wc) || ((long *)varp == &p_wcm))
10376 *wcp = *(long *)varp;
10377 if (IS_SPECIAL(*wcp) || find_special_key_in_table((int)*wcp) >= 0)
10378 return TRUE;
10380 return FALSE;
10383 #ifdef FEAT_LANGMAP
10385 * Any character has an equivalent 'langmap' character. This is used for
10386 * keyboards that have a special language mode that sends characters above
10387 * 128 (although other characters can be translated too). The "to" field is a
10388 * Vim command character. This avoids having to switch the keyboard back to
10389 * ASCII mode when leaving Insert mode.
10391 * langmap_mapchar[] maps any of 256 chars to an ASCII char used for Vim
10392 * commands.
10393 * When FEAT_MBYTE is defined langmap_mapga.ga_data is a sorted table of
10394 * langmap_entry_T. This does the same as langmap_mapchar[] for characters >=
10395 * 256.
10397 # ifdef FEAT_MBYTE
10399 * With multi-byte support use growarray for 'langmap' chars >= 256
10401 typedef struct
10403 int from;
10404 int to;
10405 } langmap_entry_T;
10407 static garray_T langmap_mapga;
10408 static void langmap_set_entry __ARGS((int from, int to));
10411 * Search for an entry in "langmap_mapga" for "from". If found set the "to"
10412 * field. If not found insert a new entry at the appropriate location.
10414 static void
10415 langmap_set_entry(from, to)
10416 int from;
10417 int to;
10419 langmap_entry_T *entries = (langmap_entry_T *)(langmap_mapga.ga_data);
10420 int a = 0;
10421 int b = langmap_mapga.ga_len;
10423 /* Do a binary search for an existing entry. */
10424 while (a != b)
10426 int i = (a + b) / 2;
10427 int d = entries[i].from - from;
10429 if (d == 0)
10431 entries[i].to = to;
10432 return;
10434 if (d < 0)
10435 a = i + 1;
10436 else
10437 b = i;
10440 if (ga_grow(&langmap_mapga, 1) != OK)
10441 return; /* out of memory */
10443 /* insert new entry at position "a" */
10444 entries = (langmap_entry_T *)(langmap_mapga.ga_data) + a;
10445 mch_memmove(entries + 1, entries,
10446 (langmap_mapga.ga_len - a) * sizeof(langmap_entry_T));
10447 ++langmap_mapga.ga_len;
10448 entries[0].from = from;
10449 entries[0].to = to;
10453 * Apply 'langmap' to multi-byte character "c" and return the result.
10456 langmap_adjust_mb(c)
10457 int c;
10459 langmap_entry_T *entries = (langmap_entry_T *)(langmap_mapga.ga_data);
10460 int a = 0;
10461 int b = langmap_mapga.ga_len;
10463 while (a != b)
10465 int i = (a + b) / 2;
10466 int d = entries[i].from - c;
10468 if (d == 0)
10469 return entries[i].to; /* found matching entry */
10470 if (d < 0)
10471 a = i + 1;
10472 else
10473 b = i;
10475 return c; /* no entry found, return "c" unmodified */
10477 # endif
10479 static void
10480 langmap_init()
10482 int i;
10484 for (i = 0; i < 256; i++)
10485 langmap_mapchar[i] = i; /* we init with a one-to-one map */
10486 # ifdef FEAT_MBYTE
10487 ga_init2(&langmap_mapga, sizeof(langmap_entry_T), 8);
10488 # endif
10492 * Called when langmap option is set; the language map can be
10493 * changed at any time!
10495 static void
10496 langmap_set()
10498 char_u *p;
10499 char_u *p2;
10500 int from, to;
10502 #ifdef FEAT_MBYTE
10503 ga_clear(&langmap_mapga); /* clear the previous map first */
10504 #endif
10505 langmap_init(); /* back to one-to-one map */
10507 for (p = p_langmap; p[0] != NUL; )
10509 for (p2 = p; p2[0] != NUL && p2[0] != ',' && p2[0] != ';';
10510 mb_ptr_adv(p2))
10512 if (p2[0] == '\\' && p2[1] != NUL)
10513 ++p2;
10515 if (p2[0] == ';')
10516 ++p2; /* abcd;ABCD form, p2 points to A */
10517 else
10518 p2 = NULL; /* aAbBcCdD form, p2 is NULL */
10519 while (p[0])
10521 if (p[0] == '\\' && p[1] != NUL)
10522 ++p;
10523 #ifdef FEAT_MBYTE
10524 from = (*mb_ptr2char)(p);
10525 #else
10526 from = p[0];
10527 #endif
10528 if (p2 == NULL)
10530 mb_ptr_adv(p);
10531 if (p[0] == '\\')
10532 ++p;
10533 #ifdef FEAT_MBYTE
10534 to = (*mb_ptr2char)(p);
10535 #else
10536 to = p[0];
10537 #endif
10539 else
10541 if (p2[0] == '\\')
10542 ++p2;
10543 #ifdef FEAT_MBYTE
10544 to = (*mb_ptr2char)(p2);
10545 #else
10546 to = p2[0];
10547 #endif
10549 if (to == NUL)
10551 EMSG2(_("E357: 'langmap': Matching character missing for %s"),
10552 transchar(from));
10553 return;
10556 #ifdef FEAT_MBYTE
10557 if (from >= 256)
10558 langmap_set_entry(from, to);
10559 else
10560 #endif
10561 langmap_mapchar[from & 255] = to;
10563 /* Advance to next pair */
10564 mb_ptr_adv(p);
10565 if (p2 == NULL)
10567 if (p[0] == ',')
10569 ++p;
10570 break;
10573 else
10575 mb_ptr_adv(p2);
10576 if (*p == ';')
10578 p = p2;
10579 if (p[0] != NUL)
10581 if (p[0] != ',')
10583 EMSG2(_("E358: 'langmap': Extra characters after semicolon: %s"), p);
10584 return;
10586 ++p;
10588 break;
10594 #endif
10597 * Return TRUE if format option 'x' is in effect.
10598 * Take care of no formatting when 'paste' is set.
10601 has_format_option(x)
10602 int x;
10604 if (p_paste)
10605 return FALSE;
10606 return (vim_strchr(curbuf->b_p_fo, x) != NULL);
10610 * Return TRUE if "x" is present in 'shortmess' option, or
10611 * 'shortmess' contains 'a' and "x" is present in SHM_A.
10614 shortmess(x)
10615 int x;
10617 return ( vim_strchr(p_shm, x) != NULL
10618 || (vim_strchr(p_shm, 'a') != NULL
10619 && vim_strchr((char_u *)SHM_A, x) != NULL));
10623 * paste_option_changed() - Called after p_paste was set or reset.
10625 static void
10626 paste_option_changed()
10628 static int old_p_paste = FALSE;
10629 static int save_sm = 0;
10630 #ifdef FEAT_CMDL_INFO
10631 static int save_ru = 0;
10632 #endif
10633 #ifdef FEAT_RIGHTLEFT
10634 static int save_ri = 0;
10635 static int save_hkmap = 0;
10636 #endif
10637 buf_T *buf;
10639 if (p_paste)
10642 * Paste switched from off to on.
10643 * Save the current values, so they can be restored later.
10645 if (!old_p_paste)
10647 /* save options for each buffer */
10648 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10650 buf->b_p_tw_nopaste = buf->b_p_tw;
10651 buf->b_p_wm_nopaste = buf->b_p_wm;
10652 buf->b_p_sts_nopaste = buf->b_p_sts;
10653 buf->b_p_ai_nopaste = buf->b_p_ai;
10656 /* save global options */
10657 save_sm = p_sm;
10658 #ifdef FEAT_CMDL_INFO
10659 save_ru = p_ru;
10660 #endif
10661 #ifdef FEAT_RIGHTLEFT
10662 save_ri = p_ri;
10663 save_hkmap = p_hkmap;
10664 #endif
10665 /* save global values for local buffer options */
10666 p_tw_nopaste = p_tw;
10667 p_wm_nopaste = p_wm;
10668 p_sts_nopaste = p_sts;
10669 p_ai_nopaste = p_ai;
10673 * Always set the option values, also when 'paste' is set when it is
10674 * already on.
10676 /* set options for each buffer */
10677 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10679 buf->b_p_tw = 0; /* textwidth is 0 */
10680 buf->b_p_wm = 0; /* wrapmargin is 0 */
10681 buf->b_p_sts = 0; /* softtabstop is 0 */
10682 buf->b_p_ai = 0; /* no auto-indent */
10685 /* set global options */
10686 p_sm = 0; /* no showmatch */
10687 #ifdef FEAT_CMDL_INFO
10688 # ifdef FEAT_WINDOWS
10689 if (p_ru)
10690 status_redraw_all(); /* redraw to remove the ruler */
10691 # endif
10692 p_ru = 0; /* no ruler */
10693 #endif
10694 #ifdef FEAT_RIGHTLEFT
10695 p_ri = 0; /* no reverse insert */
10696 p_hkmap = 0; /* no Hebrew keyboard */
10697 #endif
10698 /* set global values for local buffer options */
10699 p_tw = 0;
10700 p_wm = 0;
10701 p_sts = 0;
10702 p_ai = 0;
10706 * Paste switched from on to off: Restore saved values.
10708 else if (old_p_paste)
10710 /* restore options for each buffer */
10711 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10713 buf->b_p_tw = buf->b_p_tw_nopaste;
10714 buf->b_p_wm = buf->b_p_wm_nopaste;
10715 buf->b_p_sts = buf->b_p_sts_nopaste;
10716 buf->b_p_ai = buf->b_p_ai_nopaste;
10719 /* restore global options */
10720 p_sm = save_sm;
10721 #ifdef FEAT_CMDL_INFO
10722 # ifdef FEAT_WINDOWS
10723 if (p_ru != save_ru)
10724 status_redraw_all(); /* redraw to draw the ruler */
10725 # endif
10726 p_ru = save_ru;
10727 #endif
10728 #ifdef FEAT_RIGHTLEFT
10729 p_ri = save_ri;
10730 p_hkmap = save_hkmap;
10731 #endif
10732 /* set global values for local buffer options */
10733 p_tw = p_tw_nopaste;
10734 p_wm = p_wm_nopaste;
10735 p_sts = p_sts_nopaste;
10736 p_ai = p_ai_nopaste;
10739 old_p_paste = p_paste;
10743 * vimrc_found() - Called when a ".vimrc" or "VIMINIT" has been found.
10745 * Reset 'compatible' and set the values for options that didn't get set yet
10746 * to the Vim defaults.
10747 * Don't do this if the 'compatible' option has been set or reset before.
10748 * When "fname" is not NULL, use it to set $"envname" when it wasn't set yet.
10750 void
10751 vimrc_found(fname, envname)
10752 char_u *fname;
10753 char_u *envname;
10755 int opt_idx;
10756 int dofree = FALSE;
10757 char_u *p;
10759 if (!option_was_set((char_u *)"cp"))
10761 p_cp = FALSE;
10762 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
10763 if (!(options[opt_idx].flags & (P_WAS_SET|P_VI_DEF)))
10764 set_option_default(opt_idx, OPT_FREE, FALSE);
10765 didset_options();
10768 if (fname != NULL)
10770 p = vim_getenv(envname, &dofree);
10771 if (p == NULL)
10773 /* Set $MYVIMRC to the first vimrc file found. */
10774 p = FullName_save(fname, FALSE);
10775 if (p != NULL)
10777 vim_setenv(envname, p);
10778 vim_free(p);
10781 else if (dofree)
10782 vim_free(p);
10787 * Set 'compatible' on or off. Called for "-C" and "-N" command line arg.
10789 void
10790 change_compatible(on)
10791 int on;
10793 int opt_idx;
10795 if (p_cp != on)
10797 p_cp = on;
10798 compatible_set();
10800 opt_idx = findoption((char_u *)"cp");
10801 if (opt_idx >= 0)
10802 options[opt_idx].flags |= P_WAS_SET;
10806 * Return TRUE when option "name" has been set.
10809 option_was_set(name)
10810 char_u *name;
10812 int idx;
10814 idx = findoption(name);
10815 if (idx < 0) /* unknown option */
10816 return FALSE;
10817 if (options[idx].flags & P_WAS_SET)
10818 return TRUE;
10819 return FALSE;
10823 * compatible_set() - Called when 'compatible' has been set or unset.
10825 * When 'compatible' set: Set all relevant options (those that have the P_VIM)
10826 * flag) to a Vi compatible value.
10827 * When 'compatible' is unset: Set all options that have a different default
10828 * for Vim (without the P_VI_DEF flag) to that default.
10830 static void
10831 compatible_set()
10833 int opt_idx;
10835 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
10836 if ( ((options[opt_idx].flags & P_VIM) && p_cp)
10837 || (!(options[opt_idx].flags & P_VI_DEF) && !p_cp))
10838 set_option_default(opt_idx, OPT_FREE, p_cp);
10839 didset_options();
10842 #ifdef FEAT_LINEBREAK
10844 # if defined(__BORLANDC__) && (__BORLANDC__ < 0x500)
10845 /* Borland C++ screws up loop optimisation here (negri) */
10846 #pragma option -O-l
10847 # endif
10850 * fill_breakat_flags() -- called when 'breakat' changes value.
10852 static void
10853 fill_breakat_flags()
10855 char_u *p;
10856 int i;
10858 for (i = 0; i < 256; i++)
10859 breakat_flags[i] = FALSE;
10861 if (p_breakat != NULL)
10862 for (p = p_breakat; *p; p++)
10863 breakat_flags[*p] = TRUE;
10866 # if defined(__BORLANDC__) && (__BORLANDC__ < 0x500)
10867 #pragma option -O.l
10868 # endif
10870 #endif
10873 * Check an option that can be a range of string values.
10875 * Return OK for correct value, FAIL otherwise.
10876 * Empty is always OK.
10878 static int
10879 check_opt_strings(val, values, list)
10880 char_u *val;
10881 char **values;
10882 int list; /* when TRUE: accept a list of values */
10884 return opt_strings_flags(val, values, NULL, list);
10888 * Handle an option that can be a range of string values.
10889 * Set a flag in "*flagp" for each string present.
10891 * Return OK for correct value, FAIL otherwise.
10892 * Empty is always OK.
10894 static int
10895 opt_strings_flags(val, values, flagp, list)
10896 char_u *val; /* new value */
10897 char **values; /* array of valid string values */
10898 unsigned *flagp;
10899 int list; /* when TRUE: accept a list of values */
10901 int i;
10902 int len;
10903 unsigned new_flags = 0;
10905 while (*val)
10907 for (i = 0; ; ++i)
10909 if (values[i] == NULL) /* val not found in values[] */
10910 return FAIL;
10912 len = (int)STRLEN(values[i]);
10913 if (STRNCMP(values[i], val, len) == 0
10914 && ((list && val[len] == ',') || val[len] == NUL))
10916 val += len + (val[len] == ',');
10917 new_flags |= (1 << i);
10918 break; /* check next item in val list */
10922 if (flagp != NULL)
10923 *flagp = new_flags;
10925 return OK;
10929 * Read the 'wildmode' option, fill wim_flags[].
10931 static int
10932 check_opt_wim()
10934 char_u new_wim_flags[4];
10935 char_u *p;
10936 int i;
10937 int idx = 0;
10939 for (i = 0; i < 4; ++i)
10940 new_wim_flags[i] = 0;
10942 for (p = p_wim; *p; ++p)
10944 for (i = 0; ASCII_ISALPHA(p[i]); ++i)
10946 if (p[i] != NUL && p[i] != ',' && p[i] != ':')
10947 return FAIL;
10948 if (i == 7 && STRNCMP(p, "longest", 7) == 0)
10949 new_wim_flags[idx] |= WIM_LONGEST;
10950 else if (i == 4 && STRNCMP(p, "full", 4) == 0)
10951 new_wim_flags[idx] |= WIM_FULL;
10952 else if (i == 4 && STRNCMP(p, "list", 4) == 0)
10953 new_wim_flags[idx] |= WIM_LIST;
10954 else
10955 return FAIL;
10956 p += i;
10957 if (*p == NUL)
10958 break;
10959 if (*p == ',')
10961 if (idx == 3)
10962 return FAIL;
10963 ++idx;
10967 /* fill remaining entries with last flag */
10968 while (idx < 3)
10970 new_wim_flags[idx + 1] = new_wim_flags[idx];
10971 ++idx;
10974 /* only when there are no errors, wim_flags[] is changed */
10975 for (i = 0; i < 4; ++i)
10976 wim_flags[i] = new_wim_flags[i];
10977 return OK;
10981 * Check if backspacing over something is allowed.
10984 can_bs(what)
10985 int what; /* BS_INDENT, BS_EOL or BS_START */
10987 switch (*p_bs)
10989 case '2': return TRUE;
10990 case '1': return (what != BS_START);
10991 case '0': return FALSE;
10993 return vim_strchr(p_bs, what) != NULL;
10997 * Save the current values of 'fileformat' and 'fileencoding', so that we know
10998 * the file must be considered changed when the value is different.
11000 void
11001 save_file_ff(buf)
11002 buf_T *buf;
11004 buf->b_start_ffc = *buf->b_p_ff;
11005 buf->b_start_eol = buf->b_p_eol;
11006 #ifdef FEAT_MBYTE
11007 buf->b_start_bomb = buf->b_p_bomb;
11009 /* Only use free/alloc when necessary, they take time. */
11010 if (buf->b_start_fenc == NULL
11011 || STRCMP(buf->b_start_fenc, buf->b_p_fenc) != 0)
11013 vim_free(buf->b_start_fenc);
11014 buf->b_start_fenc = vim_strsave(buf->b_p_fenc);
11016 #endif
11020 * Return TRUE if 'fileformat' and/or 'fileencoding' has a different value
11021 * from when editing started (save_file_ff() called).
11022 * Also when 'endofline' was changed and 'binary' is set, or when 'bomb' was
11023 * changed and 'binary' is not set.
11024 * Don't consider a new, empty buffer to be changed.
11027 file_ff_differs(buf)
11028 buf_T *buf;
11030 /* In a buffer that was never loaded the options are not valid. */
11031 if (buf->b_flags & BF_NEVERLOADED)
11032 return FALSE;
11033 if ((buf->b_flags & BF_NEW)
11034 && buf->b_ml.ml_line_count == 1
11035 && *ml_get_buf(buf, (linenr_T)1, FALSE) == NUL)
11036 return FALSE;
11037 if (buf->b_start_ffc != *buf->b_p_ff)
11038 return TRUE;
11039 if (buf->b_p_bin && buf->b_start_eol != buf->b_p_eol)
11040 return TRUE;
11041 #ifdef FEAT_MBYTE
11042 if (!buf->b_p_bin && buf->b_start_bomb != buf->b_p_bomb)
11043 return TRUE;
11044 if (buf->b_start_fenc == NULL)
11045 return (*buf->b_p_fenc != NUL);
11046 return (STRCMP(buf->b_start_fenc, buf->b_p_fenc) != 0);
11047 #else
11048 return FALSE;
11049 #endif
11053 * return OK if "p" is a valid fileformat name, FAIL otherwise.
11056 check_ff_value(p)
11057 char_u *p;
11059 return check_opt_strings(p, p_ff_values, FALSE);
11062 #ifdef FEAT_FULLSCREEN
11064 * Read the 'fuoptions' option, set fuoptions_flags and
11065 * fuoptions_bgcolor.
11067 static int
11068 check_fuoptions(p_fuoptions, flags, bgcolor)
11069 char_u *p_fuoptions; /* fuoptions string */
11070 unsigned *flags; /* fuoptions flags */
11071 int *bgcolor; /* background highlight group id */
11073 unsigned new_fuoptions_flags;
11074 int new_fuoptions_bgcolor;
11075 char_u *p;
11076 char_u hg_term; /* character terminating
11077 highlight group string in
11078 'background' option' */
11079 int i,j,k;
11081 new_fuoptions_flags = 0;
11082 new_fuoptions_bgcolor = 0xFF000000;
11084 for (p = p_fuoptions; *p; ++p)
11086 for (i = 0; ASCII_ISALPHA(p[i]); ++i)
11088 if (p[i] != NUL && p[i] != ',' && p[i] != ':')
11089 return FAIL;
11090 if (i == 10 && STRNCMP(p, "background", 10) == 0)
11092 if (p[i] != ':') return FAIL;
11093 i++;
11094 if (p[i] == NUL) return FAIL;
11095 if (p[i] == '#')
11097 /* explicit color (#aarrggbb) */
11098 i++;
11099 for (j = i; j < i+8 && vim_isxdigit(p[j]); ++j)
11101 if (j < i+8)
11102 return FAIL; /* less than 8 digits */
11103 if (p[j] != NUL && p[j] != ',')
11104 return FAIL;
11105 new_fuoptions_bgcolor = 0;
11106 for (k = 0; k < 8; k++)
11107 new_fuoptions_bgcolor = new_fuoptions_bgcolor * 16 +
11108 hex2nr(p[i+k]);
11109 i = j;
11110 /* mark bgcolor as an explicit argb color */
11111 new_fuoptions_flags &= ~FUOPT_BGCOLOR_HLGROUP;
11113 else
11115 /* highlight group name */
11116 for (j = i; ASCII_ISALPHA(p[j]); ++j)
11118 if (p[j] != NUL && p[j] != ',')
11119 return FAIL;
11120 hg_term = p[j];
11121 p[j] = NUL; /* temporarily terminate string */
11122 new_fuoptions_bgcolor = syn_name2id((char_u*)(p+i));
11123 p[j] = hg_term; /* restore string */
11124 if (! new_fuoptions_bgcolor)
11125 return FAIL;
11126 i = j;
11127 /* mark bgcolor as highlight group id */
11128 new_fuoptions_flags |= FUOPT_BGCOLOR_HLGROUP;
11131 else if (i == 7 && STRNCMP(p, "maxhorz", 7) == 0)
11132 new_fuoptions_flags |= FUOPT_MAXHORZ;
11133 else if (i == 7 && STRNCMP(p, "maxvert", 7) == 0)
11134 new_fuoptions_flags |= FUOPT_MAXVERT;
11135 else
11136 return FAIL;
11137 p += i;
11138 if (*p == NUL)
11139 break;
11140 if (*p == ':')
11141 return FAIL;
11144 *flags = new_fuoptions_flags;
11145 *bgcolor = new_fuoptions_bgcolor;
11147 /* Let the GUI know, in case the background color has changed. */
11148 gui_mch_fuopt_update();
11150 return OK;
11152 #endif