Merge branch 'master' of git://repo.or.cz/MacVim into KaoriYa
[MacVim/KaoriYa.git] / src / option.c
blob8a0333d9a08400ee90b519f2afb7e95c666c70e7
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 free_string_option() when
416 assigning new value. Not set if default is
417 the same. */
418 #define P_EXPAND 0x10 /* environment expansion. NOTE: P_EXPAND can
419 never be used for local or hidden options! */
420 #define P_NODEFAULT 0x40 /* don't set to default value */
421 #define P_DEF_ALLOCED 0x80 /* default value is in allocated memory, must
422 use vim_free() when assigning new value */
423 #define P_WAS_SET 0x100 /* option has been set/reset */
424 #define P_NO_MKRC 0x200 /* don't include in :mkvimrc output */
425 #define P_VI_DEF 0x400 /* Use Vi default for Vim */
426 #define P_VIM 0x800 /* Vim option, reset when 'cp' set */
428 /* when option changed, what to display: */
429 #define P_RSTAT 0x1000 /* redraw status lines */
430 #define P_RWIN 0x2000 /* redraw current window */
431 #define P_RBUF 0x4000 /* redraw current buffer */
432 #define P_RALL 0x6000 /* redraw all windows */
433 #define P_RCLR 0x7000 /* clear and redraw all */
435 #define P_COMMA 0x8000 /* comma separated list */
436 #define P_NODUP 0x10000L/* don't allow duplicate strings */
437 #define P_FLAGLIST 0x20000L/* list of single-char flags */
439 #define P_SECURE 0x40000L/* cannot change in modeline or secure mode */
440 #define P_GETTEXT 0x80000L/* expand default value with _() */
441 #define P_NOGLOB 0x100000L/* do not use local value for global vimrc */
442 #define P_NFNAME 0x200000L/* only normal file name chars allowed */
443 #define P_INSECURE 0x400000L/* option was set from a modeline */
444 #define P_PRI_MKRC 0x800000L/* priority for :mkvimrc (setting option has
445 side effects) */
447 #define ISK_LATIN1 (char_u *)"@,48-57,_,192-255"
449 /* 'isprint' for latin1 is also used for MS-Windows cp1252, where 0x80 is used
450 * for the currency sign. */
451 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
452 # define ISP_LATIN1 (char_u *)"@,~-255"
453 #else
454 # define ISP_LATIN1 (char_u *)"@,161-255"
455 #endif
457 /* The 16 bit MS-DOS version is low on space, make the string as short as
458 * possible when compiling with few features. */
459 #if defined(FEAT_DIFF) || defined(FEAT_FOLDING) || defined(FEAT_SPELL) \
460 || defined(FEAT_VERTSPLIT) || defined(FEAT_CLIPBOARD) \
461 || defined(FEAT_INS_EXPAND) || defined(FEAT_SYN_HL)
462 # 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"
463 #else
464 # 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"
465 #endif
468 * options[] is initialized here.
469 * The order of the options MUST be alphabetic for ":set all" and findoption().
470 * All option names MUST start with a lowercase letter (for findoption()).
471 * Exception: "t_" options are at the end.
472 * The options with a NULL variable are 'hidden': a set command for them is
473 * ignored and they are not printed.
475 static struct vimoption
476 #ifdef FEAT_GUI_W16
477 _far
478 #endif
479 options[] =
481 {"aleph", "al", P_NUM|P_VI_DEF,
482 #ifdef FEAT_RIGHTLEFT
483 (char_u *)&p_aleph, PV_NONE,
484 #else
485 (char_u *)NULL, PV_NONE,
486 #endif
488 #if (defined(MSDOS) || defined(WIN3264) || defined(OS2)) && !defined(FEAT_GUI_W32)
489 (char_u *)128L,
490 #else
491 (char_u *)224L,
492 #endif
493 (char_u *)0L} SCRIPTID_INIT},
494 {"antialias", "anti", P_BOOL|P_VI_DEF|P_VIM|P_RCLR,
495 #ifdef FEAT_ANTIALIAS
496 (char_u *)&p_antialias, PV_NONE,
497 #else
498 (char_u *)NULL, PV_NONE,
499 #endif
501 #if FEAT_GUI_MACVIM
502 (char_u *)TRUE,
503 #else
504 (char_u *)FALSE,
505 #endif
506 (char_u *)0L} SCRIPTID_INIT},
507 {"arabic", "arab", P_BOOL|P_VI_DEF|P_VIM,
508 #ifdef FEAT_ARABIC
509 (char_u *)VAR_WIN, PV_ARAB,
510 #else
511 (char_u *)NULL, PV_NONE,
512 #endif
513 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
514 {"arabicshape", "arshape", P_BOOL|P_VI_DEF|P_VIM|P_RCLR,
515 #ifdef FEAT_ARABIC
516 (char_u *)&p_arshape, PV_NONE,
517 #else
518 (char_u *)NULL, PV_NONE,
519 #endif
520 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
521 {"allowrevins", "ari", P_BOOL|P_VI_DEF|P_VIM,
522 #ifdef FEAT_RIGHTLEFT
523 (char_u *)&p_ari, PV_NONE,
524 #else
525 (char_u *)NULL, PV_NONE,
526 #endif
527 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
528 {"altkeymap", "akm", P_BOOL|P_VI_DEF,
529 #ifdef FEAT_FKMAP
530 (char_u *)&p_altkeymap, PV_NONE,
531 #else
532 (char_u *)NULL, PV_NONE,
533 #endif
534 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
535 {"ambiwidth", "ambw", P_STRING|P_VI_DEF|P_RCLR,
536 #if defined(FEAT_MBYTE)
537 (char_u *)&p_ambw, PV_NONE,
538 {(char_u *)"single", (char_u *)0L}
539 #else
540 (char_u *)NULL, PV_NONE,
541 {(char_u *)0L, (char_u *)0L}
542 #endif
543 SCRIPTID_INIT},
544 #ifdef FEAT_AUTOCHDIR
545 {"autochdir", "acd", P_BOOL|P_VI_DEF,
546 (char_u *)&p_acd, PV_NONE,
547 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
548 #endif
549 {"autoindent", "ai", P_BOOL|P_VI_DEF,
550 (char_u *)&p_ai, PV_AI,
551 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
552 {"autoprint", "ap", P_BOOL|P_VI_DEF,
553 (char_u *)NULL, PV_NONE,
554 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
555 {"autoread", "ar", P_BOOL|P_VI_DEF,
556 (char_u *)&p_ar, PV_AR,
557 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
558 {"autowrite", "aw", P_BOOL|P_VI_DEF,
559 (char_u *)&p_aw, PV_NONE,
560 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
561 {"autowriteall","awa", P_BOOL|P_VI_DEF,
562 (char_u *)&p_awa, PV_NONE,
563 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
564 {"background", "bg", P_STRING|P_VI_DEF|P_RCLR,
565 (char_u *)&p_bg, PV_NONE,
567 #if (defined(MSDOS) || defined(OS2) || defined(WIN3264)) && !defined(FEAT_GUI)
568 (char_u *)"dark",
569 #else
570 (char_u *)"light",
571 #endif
572 (char_u *)0L} SCRIPTID_INIT},
573 {"backspace", "bs", P_STRING|P_VI_DEF|P_VIM|P_COMMA|P_NODUP,
574 (char_u *)&p_bs, PV_NONE,
575 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
576 {"backup", "bk", P_BOOL|P_VI_DEF|P_VIM,
577 (char_u *)&p_bk, PV_NONE,
578 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
579 {"backupcopy", "bkc", P_STRING|P_VIM|P_COMMA|P_NODUP,
580 (char_u *)&p_bkc, PV_NONE,
581 #ifdef UNIX
582 {(char_u *)"yes", (char_u *)"auto"}
583 #else
584 {(char_u *)"auto", (char_u *)"auto"}
585 #endif
586 SCRIPTID_INIT},
587 {"backupdir", "bdir", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP|P_SECURE,
588 (char_u *)&p_bdir, PV_NONE,
589 {(char_u *)DFLT_BDIR, (char_u *)0L} SCRIPTID_INIT},
590 {"backupext", "bex", P_STRING|P_VI_DEF|P_NFNAME,
591 (char_u *)&p_bex, PV_NONE,
593 #ifdef VMS
594 (char_u *)"_",
595 #else
596 (char_u *)"~",
597 #endif
598 (char_u *)0L} SCRIPTID_INIT},
599 {"backupskip", "bsk", P_STRING|P_VI_DEF|P_COMMA,
600 #ifdef FEAT_WILDIGN
601 (char_u *)&p_bsk, PV_NONE,
602 {(char_u *)"", (char_u *)0L}
603 #else
604 (char_u *)NULL, PV_NONE,
605 {(char_u *)0L, (char_u *)0L}
606 #endif
607 SCRIPTID_INIT},
608 #ifdef FEAT_BEVAL
609 {"balloondelay","bdlay",P_NUM|P_VI_DEF,
610 (char_u *)&p_bdlay, PV_NONE,
611 {(char_u *)600L, (char_u *)0L} SCRIPTID_INIT},
612 {"ballooneval", "beval",P_BOOL|P_VI_DEF|P_NO_MKRC,
613 (char_u *)&p_beval, PV_NONE,
614 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
615 # ifdef FEAT_EVAL
616 {"balloonexpr", "bexpr", P_STRING|P_ALLOCED|P_VI_DEF|P_VIM,
617 (char_u *)&p_bexpr, PV_BEXPR,
618 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
619 # endif
620 #endif
621 {"beautify", "bf", P_BOOL|P_VI_DEF,
622 (char_u *)NULL, PV_NONE,
623 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
624 {"binary", "bin", P_BOOL|P_VI_DEF|P_RSTAT,
625 (char_u *)&p_bin, PV_BIN,
626 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
627 {"bioskey", "biosk",P_BOOL|P_VI_DEF,
628 #ifdef MSDOS
629 (char_u *)&p_biosk, PV_NONE,
630 #else
631 (char_u *)NULL, PV_NONE,
632 #endif
633 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
634 {"bomb", NULL, P_BOOL|P_NO_MKRC|P_VI_DEF|P_RSTAT,
635 #ifdef FEAT_MBYTE
636 (char_u *)&p_bomb, PV_BOMB,
637 #else
638 (char_u *)NULL, PV_NONE,
639 #endif
640 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
641 {"breakat", "brk", P_STRING|P_VI_DEF|P_RALL|P_FLAGLIST,
642 #ifdef FEAT_LINEBREAK
643 (char_u *)&p_breakat, PV_NONE,
644 {(char_u *)" \t!@*-+;:,./?", (char_u *)0L}
645 #else
646 (char_u *)NULL, PV_NONE,
647 {(char_u *)0L, (char_u *)0L}
648 #endif
649 SCRIPTID_INIT},
650 {"browsedir", "bsdir",P_STRING|P_VI_DEF,
651 #ifdef FEAT_BROWSE
652 (char_u *)&p_bsdir, PV_NONE,
653 {(char_u *)"last", (char_u *)0L}
654 #else
655 (char_u *)NULL, PV_NONE,
656 {(char_u *)0L, (char_u *)0L}
657 #endif
658 SCRIPTID_INIT},
659 {"bufhidden", "bh", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB,
660 #if defined(FEAT_QUICKFIX)
661 (char_u *)&p_bh, PV_BH,
662 {(char_u *)"", (char_u *)0L}
663 #else
664 (char_u *)NULL, PV_NONE,
665 {(char_u *)0L, (char_u *)0L}
666 #endif
667 SCRIPTID_INIT},
668 {"buflisted", "bl", P_BOOL|P_VI_DEF|P_NOGLOB,
669 (char_u *)&p_bl, PV_BL,
670 {(char_u *)1L, (char_u *)0L}
671 SCRIPTID_INIT},
672 {"buftype", "bt", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB,
673 #if defined(FEAT_QUICKFIX)
674 (char_u *)&p_bt, PV_BT,
675 {(char_u *)"", (char_u *)0L}
676 #else
677 (char_u *)NULL, PV_NONE,
678 {(char_u *)0L, (char_u *)0L}
679 #endif
680 SCRIPTID_INIT},
681 {"casemap", "cmp", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
682 #ifdef FEAT_MBYTE
683 (char_u *)&p_cmp, PV_NONE,
684 {(char_u *)"internal,keepascii", (char_u *)0L}
685 #else
686 (char_u *)NULL, PV_NONE,
687 {(char_u *)0L, (char_u *)0L}
688 #endif
689 SCRIPTID_INIT},
690 {"cdpath", "cd", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
691 #ifdef FEAT_SEARCHPATH
692 (char_u *)&p_cdpath, PV_NONE,
693 {(char_u *)",,", (char_u *)0L}
694 #else
695 (char_u *)NULL, PV_NONE,
696 {(char_u *)0L, (char_u *)0L}
697 #endif
698 SCRIPTID_INIT},
699 {"cedit", NULL, P_STRING,
700 #ifdef FEAT_CMDWIN
701 (char_u *)&p_cedit, PV_NONE,
702 {(char_u *)"", (char_u *)CTRL_F_STR}
703 #else
704 (char_u *)NULL, PV_NONE,
705 {(char_u *)0L, (char_u *)0L}
706 #endif
707 SCRIPTID_INIT},
708 {"charconvert", "ccv", P_STRING|P_VI_DEF|P_SECURE,
709 #if defined(FEAT_MBYTE) && defined(FEAT_EVAL)
710 (char_u *)&p_ccv, PV_NONE,
711 {(char_u *)"", (char_u *)0L}
712 #else
713 (char_u *)NULL, PV_NONE,
714 {(char_u *)0L, (char_u *)0L}
715 #endif
716 SCRIPTID_INIT},
717 {"charspace", "csp", P_NUM|P_NODEFAULT|P_VIM|P_RCLR,
718 #ifdef FEAT_GUI
719 (char_u *)&p_charspace, PV_NONE,
720 #else
721 (char_u *)NULL, PV_NONE,
722 #endif
723 {(char_u *)0L, (char_u *)0L}
725 {"cindent", "cin", P_BOOL|P_VI_DEF|P_VIM,
726 #ifdef FEAT_CINDENT
727 (char_u *)&p_cin, PV_CIN,
728 #else
729 (char_u *)NULL, PV_NONE,
730 #endif
731 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
732 {"cinkeys", "cink", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
733 #ifdef FEAT_CINDENT
734 (char_u *)&p_cink, PV_CINK,
735 {(char_u *)"0{,0},0),:,0#,!^F,o,O,e", (char_u *)0L}
736 #else
737 (char_u *)NULL, PV_NONE,
738 {(char_u *)0L, (char_u *)0L}
739 #endif
740 SCRIPTID_INIT},
741 {"cinoptions", "cino", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
742 #ifdef FEAT_CINDENT
743 (char_u *)&p_cino, PV_CINO,
744 #else
745 (char_u *)NULL, PV_NONE,
746 #endif
747 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
748 {"cinwords", "cinw", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
749 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
750 (char_u *)&p_cinw, PV_CINW,
751 {(char_u *)"if,else,while,do,for,switch",
752 (char_u *)0L}
753 #else
754 (char_u *)NULL, PV_NONE,
755 {(char_u *)0L, (char_u *)0L}
756 #endif
757 SCRIPTID_INIT},
758 {"clipboard", "cb", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
759 #ifdef FEAT_CLIPBOARD
760 (char_u *)&p_cb, PV_NONE,
761 # ifdef FEAT_XCLIPBOARD
762 {(char_u *)"autoselect,exclude:cons\\|linux",
763 (char_u *)0L}
764 # else
765 {(char_u *)"", (char_u *)0L}
766 # endif
767 #else
768 (char_u *)NULL, PV_NONE,
769 {(char_u *)"", (char_u *)0L}
770 #endif
771 SCRIPTID_INIT},
772 {"cmdheight", "ch", P_NUM|P_VI_DEF|P_RALL,
773 (char_u *)&p_ch, PV_NONE,
774 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
775 {"cmdwinheight", "cwh", P_NUM|P_VI_DEF,
776 #ifdef FEAT_CMDWIN
777 (char_u *)&p_cwh, PV_NONE,
778 #else
779 (char_u *)NULL, PV_NONE,
780 #endif
781 {(char_u *)7L, (char_u *)0L} SCRIPTID_INIT},
782 {"columns", "co", P_NUM|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RCLR,
783 (char_u *)&Columns, PV_NONE,
784 {(char_u *)80L, (char_u *)0L} SCRIPTID_INIT},
785 {"comments", "com", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
786 #ifdef FEAT_COMMENTS
787 (char_u *)&p_com, PV_COM,
788 {(char_u *)"s1:/*,mb:*,ex:*/,://,b:#,:%,:XCOMM,n:>,fb:-",
789 (char_u *)0L}
790 #else
791 (char_u *)NULL, PV_NONE,
792 {(char_u *)0L, (char_u *)0L}
793 #endif
794 SCRIPTID_INIT},
795 {"commentstring", "cms", P_STRING|P_ALLOCED|P_VI_DEF,
796 #ifdef FEAT_FOLDING
797 (char_u *)&p_cms, PV_CMS,
798 {(char_u *)"/*%s*/", (char_u *)0L}
799 #else
800 (char_u *)NULL, PV_NONE,
801 {(char_u *)0L, (char_u *)0L}
802 #endif
803 SCRIPTID_INIT},
804 /* P_PRI_MKRC isn't needed here, optval_default()
805 * always returns TRUE for 'compatible' */
806 {"compatible", "cp", P_BOOL|P_RALL,
807 (char_u *)&p_cp, PV_NONE,
808 {(char_u *)TRUE, (char_u *)FALSE} SCRIPTID_INIT},
809 {"complete", "cpt", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
810 #ifdef FEAT_INS_EXPAND
811 (char_u *)&p_cpt, PV_CPT,
812 {(char_u *)".,w,b,u,t,i", (char_u *)0L}
813 #else
814 (char_u *)NULL, PV_NONE,
815 {(char_u *)0L, (char_u *)0L}
816 #endif
817 SCRIPTID_INIT},
818 {"completefunc", "cfu", P_STRING|P_ALLOCED|P_VI_DEF|P_SECURE,
819 #ifdef FEAT_COMPL_FUNC
820 (char_u *)&p_cfu, PV_CFU,
821 {(char_u *)"", (char_u *)0L}
822 #else
823 (char_u *)NULL, PV_NONE,
824 {(char_u *)0L, (char_u *)0L}
825 #endif
826 SCRIPTID_INIT},
827 {"completeopt", "cot", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
828 #ifdef FEAT_INS_EXPAND
829 (char_u *)&p_cot, PV_NONE,
830 {(char_u *)"menu,preview", (char_u *)0L}
831 #else
832 (char_u *)NULL, PV_NONE,
833 {(char_u *)0L, (char_u *)0L}
834 #endif
835 SCRIPTID_INIT},
836 {"confirm", "cf", P_BOOL|P_VI_DEF,
837 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
838 (char_u *)&p_confirm, PV_NONE,
839 #else
840 (char_u *)NULL, PV_NONE,
841 #endif
842 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
843 {"conskey", "consk",P_BOOL|P_VI_DEF,
844 #ifdef MSDOS
845 (char_u *)&p_consk, PV_NONE,
846 #else
847 (char_u *)NULL, PV_NONE,
848 #endif
849 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
850 {"copyindent", "ci", P_BOOL|P_VI_DEF|P_VIM,
851 (char_u *)&p_ci, PV_CI,
852 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
853 {"cpoptions", "cpo", P_STRING|P_VIM|P_RALL|P_FLAGLIST,
854 (char_u *)&p_cpo, PV_NONE,
855 {(char_u *)CPO_VI, (char_u *)CPO_VIM}
856 SCRIPTID_INIT},
857 {"cscopepathcomp", "cspc", P_NUM|P_VI_DEF|P_VIM,
858 #ifdef FEAT_CSCOPE
859 (char_u *)&p_cspc, PV_NONE,
860 #else
861 (char_u *)NULL, PV_NONE,
862 #endif
863 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
864 {"cscopeprg", "csprg", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
865 #ifdef FEAT_CSCOPE
866 (char_u *)&p_csprg, PV_NONE,
867 {(char_u *)"cscope", (char_u *)0L}
868 #else
869 (char_u *)NULL, PV_NONE,
870 {(char_u *)0L, (char_u *)0L}
871 #endif
872 SCRIPTID_INIT},
873 {"cscopequickfix", "csqf", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
874 #if defined(FEAT_CSCOPE) && defined(FEAT_QUICKFIX)
875 (char_u *)&p_csqf, PV_NONE,
876 {(char_u *)"", (char_u *)0L}
877 #else
878 (char_u *)NULL, PV_NONE,
879 {(char_u *)0L, (char_u *)0L}
880 #endif
881 SCRIPTID_INIT},
882 {"cscopetag", "cst", P_BOOL|P_VI_DEF|P_VIM,
883 #ifdef FEAT_CSCOPE
884 (char_u *)&p_cst, PV_NONE,
885 #else
886 (char_u *)NULL, PV_NONE,
887 #endif
888 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
889 {"cscopetagorder", "csto", P_NUM|P_VI_DEF|P_VIM,
890 #ifdef FEAT_CSCOPE
891 (char_u *)&p_csto, PV_NONE,
892 #else
893 (char_u *)NULL, PV_NONE,
894 #endif
895 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
896 {"cscopeverbose", "csverb", P_BOOL|P_VI_DEF|P_VIM,
897 #ifdef FEAT_CSCOPE
898 (char_u *)&p_csverbose, PV_NONE,
899 #else
900 (char_u *)NULL, PV_NONE,
901 #endif
902 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
903 {"cursorcolumn", "cuc", P_BOOL|P_VI_DEF|P_RWIN,
904 #ifdef FEAT_SYN_HL
905 (char_u *)VAR_WIN, PV_CUC,
906 #else
907 (char_u *)NULL, PV_NONE,
908 #endif
909 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
910 {"cursorline", "cul", P_BOOL|P_VI_DEF|P_RWIN,
911 #ifdef FEAT_SYN_HL
912 (char_u *)VAR_WIN, PV_CUL,
913 #else
914 (char_u *)NULL, PV_NONE,
915 #endif
916 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
917 {"debug", NULL, P_STRING|P_VI_DEF,
918 (char_u *)&p_debug, PV_NONE,
919 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
920 {"define", "def", P_STRING|P_ALLOCED|P_VI_DEF,
921 #ifdef FEAT_FIND_ID
922 (char_u *)&p_def, PV_DEF,
923 {(char_u *)"^\\s*#\\s*define", (char_u *)0L}
924 #else
925 (char_u *)NULL, PV_NONE,
926 {(char_u *)NULL, (char_u *)0L}
927 #endif
928 SCRIPTID_INIT},
929 {"delcombine", "deco", P_BOOL|P_VI_DEF|P_VIM,
930 #ifdef FEAT_MBYTE
931 (char_u *)&p_deco, PV_NONE,
932 #else
933 (char_u *)NULL, PV_NONE,
934 #endif
935 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
936 {"dictionary", "dict", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
937 #ifdef FEAT_INS_EXPAND
938 (char_u *)&p_dict, PV_DICT,
939 #else
940 (char_u *)NULL, PV_NONE,
941 #endif
942 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
943 {"diff", NULL, P_BOOL|P_VI_DEF|P_RWIN|P_NOGLOB,
944 #ifdef FEAT_DIFF
945 (char_u *)VAR_WIN, PV_DIFF,
946 #else
947 (char_u *)NULL, PV_NONE,
948 #endif
949 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
950 {"diffexpr", "dex", P_STRING|P_VI_DEF|P_SECURE,
951 #if defined(FEAT_DIFF) && defined(FEAT_EVAL)
952 (char_u *)&p_dex, PV_NONE,
953 {(char_u *)"", (char_u *)0L}
954 #else
955 (char_u *)NULL, PV_NONE,
956 {(char_u *)0L, (char_u *)0L}
957 #endif
958 SCRIPTID_INIT},
959 {"diffopt", "dip", P_STRING|P_ALLOCED|P_VI_DEF|P_RWIN|P_COMMA|P_NODUP,
960 #ifdef FEAT_DIFF
961 (char_u *)&p_dip, PV_NONE,
962 {(char_u *)"filler", (char_u *)NULL}
963 #else
964 (char_u *)NULL, PV_NONE,
965 {(char_u *)"", (char_u *)NULL}
966 #endif
967 SCRIPTID_INIT},
968 {"digraph", "dg", P_BOOL|P_VI_DEF|P_VIM,
969 #ifdef FEAT_DIGRAPHS
970 (char_u *)&p_dg, PV_NONE,
971 #else
972 (char_u *)NULL, PV_NONE,
973 #endif
974 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
975 {"directory", "dir", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP|P_SECURE,
976 (char_u *)&p_dir, PV_NONE,
977 {(char_u *)DFLT_DIR, (char_u *)0L} SCRIPTID_INIT},
978 {"display", "dy", P_STRING|P_VI_DEF|P_COMMA|P_RALL|P_NODUP,
979 (char_u *)&p_dy, PV_NONE,
980 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
981 {"eadirection", "ead", P_STRING|P_VI_DEF,
982 #ifdef FEAT_VERTSPLIT
983 (char_u *)&p_ead, PV_NONE,
984 {(char_u *)"both", (char_u *)0L}
985 #else
986 (char_u *)NULL, PV_NONE,
987 {(char_u *)NULL, (char_u *)0L}
988 #endif
989 SCRIPTID_INIT},
990 {"edcompatible","ed", P_BOOL|P_VI_DEF,
991 (char_u *)&p_ed, PV_NONE,
992 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
993 {"encoding", "enc", P_STRING|P_VI_DEF|P_RCLR,
994 #ifdef FEAT_MBYTE
995 (char_u *)&p_enc, PV_NONE,
996 {(char_u *)ENC_DFLT, (char_u *)0L}
997 #else
998 (char_u *)NULL, PV_NONE,
999 {(char_u *)0L, (char_u *)0L}
1000 #endif
1001 SCRIPTID_INIT},
1002 {"endofline", "eol", P_BOOL|P_NO_MKRC|P_VI_DEF|P_RSTAT,
1003 (char_u *)&p_eol, PV_EOL,
1004 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1005 {"equalalways", "ea", P_BOOL|P_VI_DEF|P_RALL,
1006 (char_u *)&p_ea, PV_NONE,
1007 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1008 {"equalprg", "ep", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1009 (char_u *)&p_ep, PV_EP,
1010 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1011 {"errorbells", "eb", P_BOOL|P_VI_DEF,
1012 (char_u *)&p_eb, PV_NONE,
1013 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1014 {"errorfile", "ef", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1015 #ifdef FEAT_QUICKFIX
1016 (char_u *)&p_ef, PV_NONE,
1017 {(char_u *)DFLT_ERRORFILE, (char_u *)0L}
1018 #else
1019 (char_u *)NULL, PV_NONE,
1020 {(char_u *)NULL, (char_u *)0L}
1021 #endif
1022 SCRIPTID_INIT},
1023 {"errorformat", "efm", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1024 #ifdef FEAT_QUICKFIX
1025 (char_u *)&p_efm, PV_EFM,
1026 {(char_u *)DFLT_EFM, (char_u *)0L}
1027 #else
1028 (char_u *)NULL, PV_NONE,
1029 {(char_u *)NULL, (char_u *)0L}
1030 #endif
1031 SCRIPTID_INIT},
1032 {"esckeys", "ek", P_BOOL|P_VIM,
1033 (char_u *)&p_ek, PV_NONE,
1034 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
1035 {"eventignore", "ei", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1036 #ifdef FEAT_AUTOCMD
1037 (char_u *)&p_ei, PV_NONE,
1038 #else
1039 (char_u *)NULL, PV_NONE,
1040 #endif
1041 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1042 {"expandtab", "et", P_BOOL|P_VI_DEF|P_VIM,
1043 (char_u *)&p_et, PV_ET,
1044 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1045 {"exrc", "ex", P_BOOL|P_VI_DEF|P_SECURE,
1046 (char_u *)&p_exrc, PV_NONE,
1047 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1048 {"fileencoding","fenc", P_STRING|P_ALLOCED|P_VI_DEF|P_RSTAT|P_RBUF|P_NO_MKRC,
1049 #ifdef FEAT_MBYTE
1050 (char_u *)&p_fenc, PV_FENC,
1051 {(char_u *)"", (char_u *)0L}
1052 #else
1053 (char_u *)NULL, PV_NONE,
1054 {(char_u *)0L, (char_u *)0L}
1055 #endif
1056 SCRIPTID_INIT},
1057 {"fileencodings","fencs", P_STRING|P_VI_DEF|P_COMMA,
1058 #ifdef FEAT_MBYTE
1059 (char_u *)&p_fencs, PV_NONE,
1060 {(char_u *)"ucs-bom", (char_u *)0L}
1061 #else
1062 (char_u *)NULL, PV_NONE,
1063 {(char_u *)0L, (char_u *)0L}
1064 #endif
1065 SCRIPTID_INIT},
1066 {"fileformat", "ff", P_STRING|P_ALLOCED|P_VI_DEF|P_RSTAT|P_NO_MKRC,
1067 (char_u *)&p_ff, PV_FF,
1068 {(char_u *)DFLT_FF, (char_u *)0L} SCRIPTID_INIT},
1069 {"fileformats", "ffs", P_STRING|P_VIM|P_COMMA|P_NODUP,
1070 (char_u *)&p_ffs, PV_NONE,
1071 {(char_u *)DFLT_FFS_VI, (char_u *)DFLT_FFS_VIM}
1072 SCRIPTID_INIT},
1073 {"filetype", "ft", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB|P_NFNAME,
1074 #ifdef FEAT_AUTOCMD
1075 (char_u *)&p_ft, PV_FT,
1076 {(char_u *)"", (char_u *)0L}
1077 #else
1078 (char_u *)NULL, PV_NONE,
1079 {(char_u *)0L, (char_u *)0L}
1080 #endif
1081 SCRIPTID_INIT},
1082 {"fillchars", "fcs", P_STRING|P_VI_DEF|P_RALL|P_COMMA|P_NODUP,
1083 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
1084 (char_u *)&p_fcs, PV_NONE,
1085 {(char_u *)"vert:|,fold:-", (char_u *)0L}
1086 #else
1087 (char_u *)NULL, PV_NONE,
1088 {(char_u *)"", (char_u *)0L}
1089 #endif
1090 SCRIPTID_INIT},
1091 {"fkmap", "fk", P_BOOL|P_VI_DEF,
1092 #ifdef FEAT_FKMAP
1093 (char_u *)&p_fkmap, PV_NONE,
1094 #else
1095 (char_u *)NULL, PV_NONE,
1096 #endif
1097 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1098 {"flash", "fl", P_BOOL|P_VI_DEF,
1099 (char_u *)NULL, PV_NONE,
1100 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1101 #ifdef FEAT_FOLDING
1102 {"foldclose", "fcl", P_STRING|P_VI_DEF|P_COMMA|P_NODUP|P_RWIN,
1103 (char_u *)&p_fcl, PV_NONE,
1104 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1105 {"foldcolumn", "fdc", P_NUM|P_VI_DEF|P_RWIN,
1106 (char_u *)VAR_WIN, PV_FDC,
1107 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1108 {"foldenable", "fen", P_BOOL|P_VI_DEF|P_RWIN,
1109 (char_u *)VAR_WIN, PV_FEN,
1110 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1111 {"foldexpr", "fde", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1112 # ifdef FEAT_EVAL
1113 (char_u *)VAR_WIN, PV_FDE,
1114 {(char_u *)"0", (char_u *)NULL}
1115 # else
1116 (char_u *)NULL, PV_NONE,
1117 {(char_u *)NULL, (char_u *)0L}
1118 # endif
1119 SCRIPTID_INIT},
1120 {"foldignore", "fdi", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1121 (char_u *)VAR_WIN, PV_FDI,
1122 {(char_u *)"#", (char_u *)NULL} SCRIPTID_INIT},
1123 {"foldlevel", "fdl", P_NUM|P_VI_DEF|P_RWIN,
1124 (char_u *)VAR_WIN, PV_FDL,
1125 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
1126 {"foldlevelstart","fdls", P_NUM|P_VI_DEF,
1127 (char_u *)&p_fdls, PV_NONE,
1128 {(char_u *)-1L, (char_u *)0L} SCRIPTID_INIT},
1129 {"foldmarker", "fmr", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|
1130 P_RWIN|P_COMMA|P_NODUP,
1131 (char_u *)VAR_WIN, PV_FMR,
1132 {(char_u *)"{{{,}}}", (char_u *)NULL}
1133 SCRIPTID_INIT},
1134 {"foldmethod", "fdm", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1135 (char_u *)VAR_WIN, PV_FDM,
1136 {(char_u *)"manual", (char_u *)NULL} SCRIPTID_INIT},
1137 {"foldminlines","fml", P_NUM|P_VI_DEF|P_RWIN,
1138 (char_u *)VAR_WIN, PV_FML,
1139 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
1140 {"foldnestmax", "fdn", P_NUM|P_VI_DEF|P_RWIN,
1141 (char_u *)VAR_WIN, PV_FDN,
1142 {(char_u *)20L, (char_u *)0L} SCRIPTID_INIT},
1143 {"foldopen", "fdo", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1144 (char_u *)&p_fdo, PV_NONE,
1145 {(char_u *)"block,hor,mark,percent,quickfix,search,tag,undo",
1146 (char_u *)0L} SCRIPTID_INIT},
1147 {"foldtext", "fdt", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1148 # ifdef FEAT_EVAL
1149 (char_u *)VAR_WIN, PV_FDT,
1150 {(char_u *)"foldtext()", (char_u *)NULL}
1151 # else
1152 (char_u *)NULL, PV_NONE,
1153 {(char_u *)NULL, (char_u *)0L}
1154 # endif
1155 SCRIPTID_INIT},
1156 #endif
1157 {"formatexpr", "fex", P_STRING|P_ALLOCED|P_VI_DEF|P_VIM,
1158 #ifdef FEAT_EVAL
1159 (char_u *)&p_fex, PV_FEX,
1160 {(char_u *)"", (char_u *)0L}
1161 #else
1162 (char_u *)NULL, PV_NONE,
1163 {(char_u *)0L, (char_u *)0L}
1164 #endif
1165 SCRIPTID_INIT},
1166 {"formatoptions","fo", P_STRING|P_ALLOCED|P_VIM|P_FLAGLIST,
1167 (char_u *)&p_fo, PV_FO,
1168 {(char_u *)DFLT_FO_VI, (char_u *)DFLT_FO_VIM}
1169 SCRIPTID_INIT},
1170 {"formatlistpat","flp", P_STRING|P_ALLOCED|P_VI_DEF,
1171 (char_u *)&p_flp, PV_FLP,
1172 {(char_u *)"^\\s*\\d\\+[\\]:.)}\\t ]\\s*",
1173 (char_u *)0L} SCRIPTID_INIT},
1174 {"formatprg", "fp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1175 (char_u *)&p_fp, PV_NONE,
1176 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1177 {"fsync", "fs", P_BOOL|P_SECURE|P_VI_DEF,
1178 #ifdef HAVE_FSYNC
1179 (char_u *)&p_fs, PV_NONE,
1180 {(char_u *)TRUE, (char_u *)0L}
1181 #else
1182 (char_u *)NULL, PV_NONE,
1183 {(char_u *)FALSE, (char_u *)0L}
1184 #endif
1185 SCRIPTID_INIT},
1186 {"fullscreen", "fu", P_BOOL|P_NO_MKRC,
1187 #ifdef FEAT_FULLSCREEN
1188 (char_u *)&p_fullscreen, PV_NONE,
1189 #else
1190 (char_u *)NULL, PV_NONE,
1191 #endif
1192 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1193 {"fuoptions", "fuopt", P_STRING|P_COMMA|P_NODUP|P_VI_DEF,
1194 #ifdef FEAT_FULLSCREEN
1195 (char_u *)&p_fuoptions, PV_NONE,
1196 {(char_u *)"maxvert", (char_u *)0L}
1197 #else
1198 (char_u *)NULL, PV_NONE,
1199 {(char_u *)NULL, (char_u *)0L}
1200 #endif
1201 SCRIPTID_INIT},
1202 {"gdefault", "gd", P_BOOL|P_VI_DEF|P_VIM,
1203 (char_u *)&p_gd, PV_NONE,
1204 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1205 {"graphic", "gr", P_BOOL|P_VI_DEF,
1206 (char_u *)NULL, PV_NONE,
1207 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1208 {"grepformat", "gfm", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1209 #ifdef FEAT_QUICKFIX
1210 (char_u *)&p_gefm, PV_NONE,
1211 {(char_u *)DFLT_GREPFORMAT, (char_u *)0L}
1212 #else
1213 (char_u *)NULL, PV_NONE,
1214 {(char_u *)NULL, (char_u *)0L}
1215 #endif
1216 SCRIPTID_INIT},
1217 {"grepprg", "gp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1218 #ifdef FEAT_QUICKFIX
1219 (char_u *)&p_gp, PV_GP,
1221 # ifdef WIN3264
1222 /* may be changed to "grep -n" in os_win32.c */
1223 (char_u *)"findstr /n",
1224 # else
1225 # ifdef UNIX
1226 /* Add an extra file name so that grep will always
1227 * insert a file name in the match line. */
1228 (char_u *)"grep -n $* /dev/null",
1229 # else
1230 # ifdef VMS
1231 (char_u *)"SEARCH/NUMBERS ",
1232 # else
1233 (char_u *)"grep -n ",
1234 # endif
1235 # endif
1236 # endif
1237 (char_u *)0L}
1238 #else
1239 (char_u *)NULL, PV_NONE,
1240 {(char_u *)NULL, (char_u *)0L}
1241 #endif
1242 SCRIPTID_INIT},
1243 {"guicursor", "gcr", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1244 #ifdef CURSOR_SHAPE
1245 (char_u *)&p_guicursor, PV_NONE,
1247 # ifdef FEAT_GUI
1248 (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",
1249 # else /* MSDOS or Win32 console */
1250 (char_u *)"n-v-c:block,o:hor50,i-ci:hor15,r-cr:hor30,sm:block",
1251 # endif
1252 (char_u *)0L}
1253 #else
1254 (char_u *)NULL, PV_NONE,
1255 {(char_u *)NULL, (char_u *)0L}
1256 #endif
1257 SCRIPTID_INIT},
1258 {"guifont", "gfn", P_STRING|P_VI_DEF|P_RCLR|P_COMMA|P_NODUP,
1259 #ifdef FEAT_GUI
1260 (char_u *)&p_guifont, PV_NONE,
1261 {(char_u *)"", (char_u *)0L}
1262 #else
1263 (char_u *)NULL, PV_NONE,
1264 {(char_u *)NULL, (char_u *)0L}
1265 #endif
1266 SCRIPTID_INIT},
1267 {"guifontset", "gfs", P_STRING|P_VI_DEF|P_RCLR|P_COMMA,
1268 #if defined(FEAT_GUI) && defined(FEAT_XFONTSET)
1269 (char_u *)&p_guifontset, PV_NONE,
1270 {(char_u *)"", (char_u *)0L}
1271 #else
1272 (char_u *)NULL, PV_NONE,
1273 {(char_u *)NULL, (char_u *)0L}
1274 #endif
1275 SCRIPTID_INIT},
1276 {"guifontwide", "gfw", P_STRING|P_VI_DEF|P_RCLR|P_COMMA|P_NODUP,
1277 #if defined(FEAT_GUI) && defined(FEAT_MBYTE)
1278 (char_u *)&p_guifontwide, PV_NONE,
1279 {(char_u *)"", (char_u *)0L}
1280 #else
1281 (char_u *)NULL, PV_NONE,
1282 {(char_u *)NULL, (char_u *)0L}
1283 #endif
1284 SCRIPTID_INIT},
1285 {"guiheadroom", "ghr", P_NUM|P_VI_DEF,
1286 #if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11)
1287 (char_u *)&p_ghr, PV_NONE,
1288 #else
1289 (char_u *)NULL, PV_NONE,
1290 #endif
1291 {(char_u *)50L, (char_u *)0L} SCRIPTID_INIT},
1292 {"guioptions", "go", P_STRING|P_VI_DEF|P_RALL|P_FLAGLIST,
1293 #if defined(FEAT_GUI)
1294 (char_u *)&p_go, PV_NONE,
1295 # if defined(UNIX) && !defined(MACOS)
1296 {(char_u *)"aegimrLtT", (char_u *)0L}
1297 # else
1298 {(char_u *)"egmrLtT", (char_u *)0L}
1299 # endif
1300 #else
1301 (char_u *)NULL, PV_NONE,
1302 {(char_u *)NULL, (char_u *)0L}
1303 #endif
1304 SCRIPTID_INIT},
1305 {"guipty", NULL, P_BOOL|P_VI_DEF,
1306 #if defined(FEAT_GUI)
1307 (char_u *)&p_guipty, PV_NONE,
1308 #else
1309 (char_u *)NULL, PV_NONE,
1310 #endif
1311 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1312 {"guitablabel", "gtl", P_STRING|P_VI_DEF|P_RWIN,
1313 #if defined(FEAT_GUI_TABLINE)
1314 (char_u *)&p_gtl, PV_NONE,
1315 {(char_u *)"", (char_u *)0L}
1316 #else
1317 (char_u *)NULL, PV_NONE,
1318 {(char_u *)NULL, (char_u *)0L}
1319 #endif
1320 SCRIPTID_INIT},
1321 {"guitabtooltip", "gtt", P_STRING|P_VI_DEF|P_RWIN,
1322 #if defined(FEAT_GUI_TABLINE)
1323 (char_u *)&p_gtt, PV_NONE,
1324 {(char_u *)"", (char_u *)0L}
1325 #else
1326 (char_u *)NULL, PV_NONE,
1327 {(char_u *)NULL, (char_u *)0L}
1328 #endif
1329 SCRIPTID_INIT},
1330 {"hardtabs", "ht", P_NUM|P_VI_DEF,
1331 (char_u *)NULL, PV_NONE,
1332 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
1333 {"helpfile", "hf", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1334 (char_u *)&p_hf, PV_NONE,
1335 {(char_u *)DFLT_HELPFILE, (char_u *)0L}
1336 SCRIPTID_INIT},
1337 {"helpheight", "hh", P_NUM|P_VI_DEF,
1338 #ifdef FEAT_WINDOWS
1339 (char_u *)&p_hh, PV_NONE,
1340 #else
1341 (char_u *)NULL, PV_NONE,
1342 #endif
1343 {(char_u *)20L, (char_u *)0L} SCRIPTID_INIT},
1344 {"helplang", "hlg", P_STRING|P_VI_DEF|P_COMMA,
1345 #ifdef FEAT_MULTI_LANG
1346 (char_u *)&p_hlg, PV_NONE,
1347 {(char_u *)"", (char_u *)0L}
1348 #else
1349 (char_u *)NULL, PV_NONE,
1350 {(char_u *)0L, (char_u *)0L}
1351 #endif
1352 SCRIPTID_INIT},
1353 {"hidden", "hid", P_BOOL|P_VI_DEF,
1354 (char_u *)&p_hid, PV_NONE,
1355 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1356 {"highlight", "hl", P_STRING|P_VI_DEF|P_RCLR|P_COMMA|P_NODUP,
1357 (char_u *)&p_hl, PV_NONE,
1358 {(char_u *)HIGHLIGHT_INIT, (char_u *)0L}
1359 SCRIPTID_INIT},
1360 {"history", "hi", P_NUM|P_VIM,
1361 (char_u *)&p_hi, PV_NONE,
1362 {(char_u *)0L, (char_u *)20L} SCRIPTID_INIT},
1363 {"hkmap", "hk", P_BOOL|P_VI_DEF|P_VIM,
1364 #ifdef FEAT_RIGHTLEFT
1365 (char_u *)&p_hkmap, PV_NONE,
1366 #else
1367 (char_u *)NULL, PV_NONE,
1368 #endif
1369 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1370 {"hkmapp", "hkp", P_BOOL|P_VI_DEF|P_VIM,
1371 #ifdef FEAT_RIGHTLEFT
1372 (char_u *)&p_hkmapp, PV_NONE,
1373 #else
1374 (char_u *)NULL, PV_NONE,
1375 #endif
1376 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1377 {"hlsearch", "hls", P_BOOL|P_VI_DEF|P_VIM|P_RALL,
1378 (char_u *)&p_hls, PV_NONE,
1379 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1380 {"icon", NULL, P_BOOL|P_VI_DEF,
1381 #ifdef FEAT_TITLE
1382 (char_u *)&p_icon, PV_NONE,
1383 #else
1384 (char_u *)NULL, PV_NONE,
1385 #endif
1386 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1387 {"iconstring", NULL, P_STRING|P_VI_DEF,
1388 #ifdef FEAT_TITLE
1389 (char_u *)&p_iconstring, PV_NONE,
1390 #else
1391 (char_u *)NULL, PV_NONE,
1392 #endif
1393 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1394 {"ignorecase", "ic", P_BOOL|P_VI_DEF,
1395 (char_u *)&p_ic, PV_NONE,
1396 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1397 {"imactivatekey","imak",P_STRING|P_VI_DEF,
1398 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
1399 (char_u *)&p_imak, PV_NONE,
1400 #else
1401 (char_u *)NULL, PV_NONE,
1402 #endif
1403 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1404 {"imcmdline", "imc", P_BOOL|P_VI_DEF,
1405 #ifdef USE_IM_CONTROL
1406 (char_u *)&p_imcmdline, PV_NONE,
1407 #else
1408 (char_u *)NULL, PV_NONE,
1409 #endif
1410 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1411 {"imdisable", "imd", P_BOOL|P_VI_DEF,
1412 #ifdef USE_IM_CONTROL
1413 (char_u *)&p_imdisable, PV_NONE,
1414 #else
1415 (char_u *)NULL, PV_NONE,
1416 #endif
1417 #if defined(__sgi) || defined(FEAT_GUI_MACVIM)
1418 {(char_u *)TRUE, (char_u *)0L}
1419 #else
1420 {(char_u *)FALSE, (char_u *)0L}
1421 #endif
1422 SCRIPTID_INIT},
1423 {"iminsert", "imi", P_NUM|P_VI_DEF,
1424 (char_u *)&p_iminsert, PV_IMI,
1425 #ifdef B_IMODE_IM
1426 {(char_u *)B_IMODE_IM, (char_u *)0L}
1427 #else
1428 {(char_u *)B_IMODE_NONE, (char_u *)0L}
1429 #endif
1430 SCRIPTID_INIT},
1431 {"imsearch", "ims", P_NUM|P_VI_DEF,
1432 (char_u *)&p_imsearch, PV_IMS,
1433 #ifdef B_IMODE_IM
1434 {(char_u *)B_IMODE_IM, (char_u *)0L}
1435 #else
1436 {(char_u *)B_IMODE_NONE, (char_u *)0L}
1437 #endif
1438 SCRIPTID_INIT},
1439 {"include", "inc", P_STRING|P_ALLOCED|P_VI_DEF,
1440 #ifdef FEAT_FIND_ID
1441 (char_u *)&p_inc, PV_INC,
1442 {(char_u *)"^\\s*#\\s*include", (char_u *)0L}
1443 #else
1444 (char_u *)NULL, PV_NONE,
1445 {(char_u *)0L, (char_u *)0L}
1446 #endif
1447 SCRIPTID_INIT},
1448 {"includeexpr", "inex", P_STRING|P_ALLOCED|P_VI_DEF,
1449 #if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
1450 (char_u *)&p_inex, PV_INEX,
1451 {(char_u *)"", (char_u *)0L}
1452 #else
1453 (char_u *)NULL, PV_NONE,
1454 {(char_u *)0L, (char_u *)0L}
1455 #endif
1456 SCRIPTID_INIT},
1457 {"incsearch", "is", P_BOOL|P_VI_DEF|P_VIM,
1458 (char_u *)&p_is, PV_NONE,
1459 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1460 {"indentexpr", "inde", P_STRING|P_ALLOCED|P_VI_DEF|P_VIM,
1461 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
1462 (char_u *)&p_inde, PV_INDE,
1463 {(char_u *)"", (char_u *)0L}
1464 #else
1465 (char_u *)NULL, PV_NONE,
1466 {(char_u *)0L, (char_u *)0L}
1467 #endif
1468 SCRIPTID_INIT},
1469 {"indentkeys", "indk", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
1470 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
1471 (char_u *)&p_indk, PV_INDK,
1472 {(char_u *)"0{,0},:,0#,!^F,o,O,e", (char_u *)0L}
1473 #else
1474 (char_u *)NULL, PV_NONE,
1475 {(char_u *)0L, (char_u *)0L}
1476 #endif
1477 SCRIPTID_INIT},
1478 {"infercase", "inf", P_BOOL|P_VI_DEF,
1479 (char_u *)&p_inf, PV_INF,
1480 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1481 {"insertmode", "im", P_BOOL|P_VI_DEF|P_VIM,
1482 (char_u *)&p_im, PV_NONE,
1483 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1484 {"isfname", "isf", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1485 (char_u *)&p_isf, PV_NONE,
1487 #ifdef BACKSLASH_IN_FILENAME
1488 /* Excluded are: & and ^ are special in cmd.exe
1489 * ( and ) are used in text separating fnames */
1490 (char_u *)"@,48-57,/,\\,.,-,_,+,,,#,$,%,{,},[,],:,@-@,!,~,=",
1491 #else
1492 # ifdef AMIGA
1493 (char_u *)"@,48-57,/,.,-,_,+,,,$,:",
1494 # else
1495 # ifdef VMS
1496 (char_u *)"@,48-57,/,.,-,_,+,,,#,$,%,<,>,[,],:,;,~",
1497 # else /* UNIX et al. */
1498 # ifdef EBCDIC
1499 (char_u *)"@,240-249,/,.,-,_,+,,,#,$,%,~,=",
1500 # else
1501 (char_u *)"@,48-57,/,.,-,_,+,,,#,$,%,~,=",
1502 # endif
1503 # endif
1504 # endif
1505 #endif
1506 (char_u *)0L} SCRIPTID_INIT},
1507 {"isident", "isi", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1508 (char_u *)&p_isi, PV_NONE,
1510 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
1511 (char_u *)"@,48-57,_,128-167,224-235",
1512 #else
1513 # ifdef EBCDIC
1514 /* TODO: EBCDIC Check this! @ == isalpha()*/
1515 (char_u *)"@,240-249,_,66-73,81-89,98-105,"
1516 "112-120,128,140-142,156,158,172,"
1517 "174,186,191,203-207,219-225,235-239,"
1518 "251-254",
1519 # else
1520 (char_u *)"@,48-57,_,192-255",
1521 # endif
1522 #endif
1523 (char_u *)0L} SCRIPTID_INIT},
1524 {"iskeyword", "isk", P_STRING|P_ALLOCED|P_VIM|P_COMMA|P_NODUP,
1525 (char_u *)&p_isk, PV_ISK,
1527 #ifdef EBCDIC
1528 (char_u *)"@,240-249,_",
1529 /* TODO: EBCDIC Check this! @ == isalpha()*/
1530 (char_u *)"@,240-249,_,66-73,81-89,98-105,"
1531 "112-120,128,140-142,156,158,172,"
1532 "174,186,191,203-207,219-225,235-239,"
1533 "251-254",
1534 #else
1535 (char_u *)"@,48-57,_",
1536 # if defined(MSDOS) || defined(MSWIN) || defined(OS2)
1537 (char_u *)"@,48-57,_,128-167,224-235"
1538 # else
1539 ISK_LATIN1
1540 # endif
1541 #endif
1542 } SCRIPTID_INIT},
1543 {"isprint", "isp", P_STRING|P_VI_DEF|P_RALL|P_COMMA|P_NODUP,
1544 (char_u *)&p_isp, PV_NONE,
1546 #if defined(MSDOS) || defined(MSWIN) || defined(OS2) \
1547 || (defined(MACOS) && !defined(MACOS_X)) \
1548 || defined(VMS)
1549 (char_u *)"@,~-255",
1550 #else
1551 # ifdef EBCDIC
1552 /* all chars above 63 are printable */
1553 (char_u *)"63-255",
1554 # else
1555 ISP_LATIN1,
1556 # endif
1557 #endif
1558 (char_u *)0L} SCRIPTID_INIT},
1559 {"joinspaces", "js", P_BOOL|P_VI_DEF|P_VIM,
1560 (char_u *)&p_js, PV_NONE,
1561 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1562 {"key", NULL, P_STRING|P_ALLOCED|P_VI_DEF|P_NO_MKRC,
1563 #ifdef FEAT_CRYPT
1564 (char_u *)&p_key, PV_KEY,
1565 {(char_u *)"", (char_u *)0L}
1566 #else
1567 (char_u *)NULL, PV_NONE,
1568 {(char_u *)0L, (char_u *)0L}
1569 #endif
1570 SCRIPTID_INIT},
1571 {"keymap", "kmp", P_STRING|P_ALLOCED|P_VI_DEF|P_RBUF|P_RSTAT|P_NFNAME|P_PRI_MKRC,
1572 #ifdef FEAT_KEYMAP
1573 (char_u *)&p_keymap, PV_KMAP,
1574 {(char_u *)"", (char_u *)0L}
1575 #else
1576 (char_u *)NULL, PV_NONE,
1577 {(char_u *)"", (char_u *)0L}
1578 #endif
1579 SCRIPTID_INIT},
1580 {"keymodel", "km", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1581 #ifdef FEAT_VISUAL
1582 (char_u *)&p_km, PV_NONE,
1583 #else
1584 (char_u *)NULL, PV_NONE,
1585 #endif
1586 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1587 {"keywordprg", "kp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1588 (char_u *)&p_kp, PV_KP,
1590 #if defined(MSDOS) || defined(MSWIN)
1591 (char_u *)":help",
1592 #else
1593 #ifdef VMS
1594 (char_u *)"help",
1595 #else
1596 # if defined(OS2)
1597 (char_u *)"view /",
1598 # else
1599 # ifdef USEMAN_S
1600 (char_u *)"man -s",
1601 # else
1602 (char_u *)"man",
1603 # endif
1604 # endif
1605 #endif
1606 #endif
1607 (char_u *)0L} SCRIPTID_INIT},
1608 {"langmap", "lmap", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1609 #ifdef FEAT_LANGMAP
1610 (char_u *)&p_langmap, PV_NONE,
1611 {(char_u *)"", /* unmatched } */
1612 #else
1613 (char_u *)NULL, PV_NONE,
1614 {(char_u *)NULL,
1615 #endif
1616 (char_u *)0L} SCRIPTID_INIT},
1617 {"langmenu", "lm", P_STRING|P_VI_DEF|P_NFNAME,
1618 #if defined(FEAT_MENU) && defined(FEAT_MULTI_LANG)
1619 (char_u *)&p_lm, PV_NONE,
1620 #else
1621 (char_u *)NULL, PV_NONE,
1622 #endif
1623 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1624 {"laststatus", "ls", P_NUM|P_VI_DEF|P_RALL,
1625 #ifdef FEAT_WINDOWS
1626 (char_u *)&p_ls, PV_NONE,
1627 #else
1628 (char_u *)NULL, PV_NONE,
1629 #endif
1630 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
1631 {"lazyredraw", "lz", P_BOOL|P_VI_DEF,
1632 (char_u *)&p_lz, PV_NONE,
1633 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1634 {"linebreak", "lbr", P_BOOL|P_VI_DEF|P_RWIN,
1635 #ifdef FEAT_LINEBREAK
1636 (char_u *)VAR_WIN, PV_LBR,
1637 #else
1638 (char_u *)NULL, PV_NONE,
1639 #endif
1640 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1641 {"lines", NULL, P_NUM|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RCLR,
1642 (char_u *)&Rows, PV_NONE,
1644 #if defined(MSDOS) || defined(WIN3264) || defined(OS2)
1645 (char_u *)25L,
1646 #else
1647 (char_u *)24L,
1648 #endif
1649 (char_u *)0L} SCRIPTID_INIT},
1650 {"linespace", "lsp", P_NUM|P_VI_DEF|P_RCLR,
1651 #ifdef FEAT_GUI
1652 (char_u *)&p_linespace, PV_NONE,
1653 #else
1654 (char_u *)NULL, PV_NONE,
1655 #endif
1656 #ifdef FEAT_GUI_W32
1657 {(char_u *)1L, (char_u *)0L}
1658 #else
1659 {(char_u *)0L, (char_u *)0L}
1660 #endif
1661 SCRIPTID_INIT},
1662 {"lisp", NULL, P_BOOL|P_VI_DEF,
1663 #ifdef FEAT_LISP
1664 (char_u *)&p_lisp, PV_LISP,
1665 #else
1666 (char_u *)NULL, PV_NONE,
1667 #endif
1668 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1669 {"lispwords", "lw", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1670 #ifdef FEAT_LISP
1671 (char_u *)&p_lispwords, PV_NONE,
1672 {(char_u *)LISPWORD_VALUE, (char_u *)0L}
1673 #else
1674 (char_u *)NULL, PV_NONE,
1675 {(char_u *)"", (char_u *)0L}
1676 #endif
1677 SCRIPTID_INIT},
1678 {"list", NULL, P_BOOL|P_VI_DEF|P_RWIN,
1679 (char_u *)VAR_WIN, PV_LIST,
1680 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1681 {"listchars", "lcs", P_STRING|P_VI_DEF|P_RALL|P_COMMA|P_NODUP,
1682 (char_u *)&p_lcs, PV_NONE,
1683 {(char_u *)"eol:$", (char_u *)0L} SCRIPTID_INIT},
1684 {"loadplugins", "lpl", P_BOOL|P_VI_DEF,
1685 (char_u *)&p_lpl, PV_NONE,
1686 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1687 #ifdef FEAT_GUI_MAC
1688 {"macatsui", NULL, P_BOOL|P_VI_DEF|P_RCLR,
1689 (char_u *)&p_macatsui, PV_NONE,
1690 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1691 #endif
1692 {"macmeta", "mmta", P_BOOL|P_VI_DEF,
1693 #ifdef FEAT_GUI_MACVIM
1694 (char_u *)&p_mmta, PV_MMTA,
1695 #else
1696 (char_u *)NULL, PV_NONE,
1697 #endif
1698 {(char_u *)FALSE, (char_u *)0L}},
1699 {"magic", NULL, P_BOOL|P_VI_DEF,
1700 (char_u *)&p_magic, PV_NONE,
1701 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1702 {"makeef", "mef", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1703 #ifdef FEAT_QUICKFIX
1704 (char_u *)&p_mef, PV_NONE,
1705 {(char_u *)"", (char_u *)0L}
1706 #else
1707 (char_u *)NULL, PV_NONE,
1708 {(char_u *)NULL, (char_u *)0L}
1709 #endif
1710 SCRIPTID_INIT},
1711 {"makeprg", "mp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1712 #ifdef FEAT_QUICKFIX
1713 (char_u *)&p_mp, PV_MP,
1714 # ifdef VMS
1715 {(char_u *)"MMS", (char_u *)0L}
1716 # else
1717 {(char_u *)"make", (char_u *)0L}
1718 # endif
1719 #else
1720 (char_u *)NULL, PV_NONE,
1721 {(char_u *)NULL, (char_u *)0L}
1722 #endif
1723 SCRIPTID_INIT},
1724 {"matchpairs", "mps", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
1725 (char_u *)&p_mps, PV_MPS,
1726 {(char_u *)"(:),{:},[:]", (char_u *)0L}
1727 SCRIPTID_INIT},
1728 {"matchtime", "mat", P_NUM|P_VI_DEF,
1729 (char_u *)&p_mat, PV_NONE,
1730 {(char_u *)5L, (char_u *)0L} SCRIPTID_INIT},
1731 {"maxcombine", "mco", P_NUM|P_VI_DEF,
1732 #ifdef FEAT_MBYTE
1733 (char_u *)&p_mco, PV_NONE,
1734 #else
1735 (char_u *)NULL, PV_NONE,
1736 #endif
1737 {(char_u *)2, (char_u *)0L} SCRIPTID_INIT},
1738 {"maxfuncdepth", "mfd", P_NUM|P_VI_DEF,
1739 #ifdef FEAT_EVAL
1740 (char_u *)&p_mfd, PV_NONE,
1741 #else
1742 (char_u *)NULL, PV_NONE,
1743 #endif
1744 {(char_u *)100L, (char_u *)0L} SCRIPTID_INIT},
1745 {"maxmapdepth", "mmd", P_NUM|P_VI_DEF,
1746 (char_u *)&p_mmd, PV_NONE,
1747 {(char_u *)1000L, (char_u *)0L} SCRIPTID_INIT},
1748 {"maxmem", "mm", P_NUM|P_VI_DEF,
1749 (char_u *)&p_mm, PV_NONE,
1750 {(char_u *)DFLT_MAXMEM, (char_u *)0L}
1751 SCRIPTID_INIT},
1752 {"maxmempattern","mmp", P_NUM|P_VI_DEF,
1753 (char_u *)&p_mmp, PV_NONE,
1754 {(char_u *)1000L, (char_u *)0L} SCRIPTID_INIT},
1755 {"maxmemtot", "mmt", P_NUM|P_VI_DEF,
1756 (char_u *)&p_mmt, PV_NONE,
1757 {(char_u *)DFLT_MAXMEMTOT, (char_u *)0L}
1758 SCRIPTID_INIT},
1759 {"menuitems", "mis", P_NUM|P_VI_DEF,
1760 #ifdef FEAT_MENU
1761 (char_u *)&p_mis, PV_NONE,
1762 #else
1763 (char_u *)NULL, PV_NONE,
1764 #endif
1765 {(char_u *)25L, (char_u *)0L} SCRIPTID_INIT},
1766 {"mesg", NULL, P_BOOL|P_VI_DEF,
1767 (char_u *)NULL, PV_NONE,
1768 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1769 #ifdef USE_MIGEMO
1770 {"migemo", "mgm", P_BOOL|P_VI_DEF|P_VIM,
1771 (char_u *)&p_migemo, PV_MIG,
1772 {(char_u *)FALSE, (char_u *)0L}},
1773 {"migemodict", "mgd", P_STRING|P_EXPAND|P_VI_DEF|P_VIM,
1774 (char_u *)&p_migdict, PV_NONE,
1775 {(char_u *)"", (char_u *)0L}},
1776 #endif /* USE_MIGEMO */
1777 {"mkspellmem", "msm", P_STRING|P_VI_DEF|P_EXPAND|P_SECURE,
1778 #ifdef FEAT_SPELL
1779 (char_u *)&p_msm, PV_NONE,
1780 {(char_u *)"460000,2000,500", (char_u *)0L}
1781 #else
1782 (char_u *)NULL, PV_NONE,
1783 {(char_u *)0L, (char_u *)0L}
1784 #endif
1785 SCRIPTID_INIT},
1786 {"modeline", "ml", P_BOOL|P_VIM,
1787 (char_u *)&p_ml, PV_ML,
1788 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
1789 {"modelines", "mls", P_NUM|P_VI_DEF,
1790 (char_u *)&p_mls, PV_NONE,
1791 {(char_u *)5L, (char_u *)0L} SCRIPTID_INIT},
1792 {"modifiable", "ma", P_BOOL|P_VI_DEF|P_NOGLOB,
1793 (char_u *)&p_ma, PV_MA,
1794 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1795 {"modified", "mod", P_BOOL|P_NO_MKRC|P_VI_DEF|P_RSTAT,
1796 (char_u *)&p_mod, PV_MOD,
1797 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1798 {"more", NULL, P_BOOL|P_VIM,
1799 (char_u *)&p_more, PV_NONE,
1800 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
1801 {"mouse", NULL, P_STRING|P_VI_DEF|P_FLAGLIST,
1802 (char_u *)&p_mouse, PV_NONE,
1804 #if defined(MSDOS) || defined(WIN3264)
1805 (char_u *)"a",
1806 #else
1807 (char_u *)"",
1808 #endif
1809 (char_u *)0L} SCRIPTID_INIT},
1810 {"mousefocus", "mousef", P_BOOL|P_VI_DEF,
1811 #ifdef FEAT_GUI
1812 (char_u *)&p_mousef, PV_NONE,
1813 #else
1814 (char_u *)NULL, PV_NONE,
1815 #endif
1816 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1817 {"mousehide", "mh", P_BOOL|P_VI_DEF,
1818 #ifdef FEAT_GUI
1819 (char_u *)&p_mh, PV_NONE,
1820 #else
1821 (char_u *)NULL, PV_NONE,
1822 #endif
1823 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1824 {"mousemodel", "mousem", P_STRING|P_VI_DEF,
1825 (char_u *)&p_mousem, PV_NONE,
1827 #if defined(MSDOS) || defined(MSWIN)
1828 (char_u *)"popup",
1829 #else
1830 # if defined(MACOS)
1831 (char_u *)"popup_setpos",
1832 # else
1833 (char_u *)"extend",
1834 # endif
1835 #endif
1836 (char_u *)0L} SCRIPTID_INIT},
1837 {"mouseshape", "mouses", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1838 #ifdef FEAT_MOUSESHAPE
1839 (char_u *)&p_mouseshape, PV_NONE,
1840 {(char_u *)"i-r:beam,s:updown,sd:udsizing,vs:leftright,vd:lrsizing,m:no,ml:up-arrow,v:rightup-arrow", (char_u *)0L}
1841 #else
1842 (char_u *)NULL, PV_NONE,
1843 {(char_u *)NULL, (char_u *)0L}
1844 #endif
1845 SCRIPTID_INIT},
1846 {"mousetime", "mouset", P_NUM|P_VI_DEF,
1847 (char_u *)&p_mouset, PV_NONE,
1848 {(char_u *)500L, (char_u *)0L} SCRIPTID_INIT},
1849 {"mzquantum", "mzq", P_NUM,
1850 #ifdef FEAT_MZSCHEME
1851 (char_u *)&p_mzq, PV_NONE,
1852 #else
1853 (char_u *)NULL, PV_NONE,
1854 #endif
1855 {(char_u *)100L, (char_u *)100L} SCRIPTID_INIT},
1856 {"novice", NULL, P_BOOL|P_VI_DEF,
1857 (char_u *)NULL, PV_NONE,
1858 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1859 {"nrformats", "nf", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
1860 (char_u *)&p_nf, PV_NF,
1861 {(char_u *)"octal,hex", (char_u *)0L}
1862 SCRIPTID_INIT},
1863 {"number", "nu", P_BOOL|P_VI_DEF|P_RWIN,
1864 (char_u *)VAR_WIN, PV_NU,
1865 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1866 {"numberwidth", "nuw", P_NUM|P_RWIN|P_VIM,
1867 #ifdef FEAT_LINEBREAK
1868 (char_u *)VAR_WIN, PV_NUW,
1869 #else
1870 (char_u *)NULL, PV_NONE,
1871 #endif
1872 {(char_u *)8L, (char_u *)4L} SCRIPTID_INIT},
1873 {"omnifunc", "ofu", P_STRING|P_ALLOCED|P_VI_DEF|P_SECURE,
1874 #ifdef FEAT_COMPL_FUNC
1875 (char_u *)&p_ofu, PV_OFU,
1876 {(char_u *)"", (char_u *)0L}
1877 #else
1878 (char_u *)NULL, PV_NONE,
1879 {(char_u *)0L, (char_u *)0L}
1880 #endif
1881 SCRIPTID_INIT},
1882 {"open", NULL, P_BOOL|P_VI_DEF,
1883 (char_u *)NULL, PV_NONE,
1884 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1885 {"opendevice", "odev", P_BOOL|P_VI_DEF,
1886 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
1887 (char_u *)&p_odev, PV_NONE,
1888 #else
1889 (char_u *)NULL, PV_NONE,
1890 #endif
1891 {(char_u *)FALSE, (char_u *)FALSE}
1892 SCRIPTID_INIT},
1893 {"operatorfunc", "opfunc", P_STRING|P_VI_DEF|P_SECURE,
1894 (char_u *)&p_opfunc, PV_NONE,
1895 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1896 {"optimize", "opt", P_BOOL|P_VI_DEF,
1897 (char_u *)NULL, PV_NONE,
1898 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1899 {"osfiletype", "oft", P_STRING|P_ALLOCED|P_VI_DEF,
1900 #ifdef FEAT_OSFILETYPE
1901 (char_u *)&p_oft, PV_OFT,
1902 {(char_u *)DFLT_OFT, (char_u *)0L}
1903 #else
1904 (char_u *)NULL, PV_NONE,
1905 {(char_u *)0L, (char_u *)0L}
1906 #endif
1907 SCRIPTID_INIT},
1908 {"paragraphs", "para", P_STRING|P_VI_DEF,
1909 (char_u *)&p_para, PV_NONE,
1910 {(char_u *)"IPLPPPQPP TPHPLIPpLpItpplpipbp",
1911 (char_u *)0L} SCRIPTID_INIT},
1912 {"paste", NULL, P_BOOL|P_VI_DEF|P_PRI_MKRC,
1913 (char_u *)&p_paste, PV_NONE,
1914 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1915 {"pastetoggle", "pt", P_STRING|P_VI_DEF,
1916 (char_u *)&p_pt, PV_NONE,
1917 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1918 {"patchexpr", "pex", P_STRING|P_VI_DEF|P_SECURE,
1919 #if defined(FEAT_DIFF) && defined(FEAT_EVAL)
1920 (char_u *)&p_pex, PV_NONE,
1921 {(char_u *)"", (char_u *)0L}
1922 #else
1923 (char_u *)NULL, PV_NONE,
1924 {(char_u *)0L, (char_u *)0L}
1925 #endif
1926 SCRIPTID_INIT},
1927 {"patchmode", "pm", P_STRING|P_VI_DEF|P_NFNAME,
1928 (char_u *)&p_pm, PV_NONE,
1929 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1930 {"path", "pa", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
1931 (char_u *)&p_path, PV_PATH,
1933 #if defined AMIGA || defined MSDOS || defined MSWIN
1934 (char_u *)".,,",
1935 #else
1936 # if defined(__EMX__)
1937 (char_u *)".,/emx/include,,",
1938 # else /* Unix, probably */
1939 (char_u *)".,/usr/include,,",
1940 # endif
1941 #endif
1942 (char_u *)0L} SCRIPTID_INIT},
1943 {"preserveindent", "pi", P_BOOL|P_VI_DEF|P_VIM,
1944 (char_u *)&p_pi, PV_PI,
1945 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1946 {"previewheight", "pvh", P_NUM|P_VI_DEF,
1947 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
1948 (char_u *)&p_pvh, PV_NONE,
1949 #else
1950 (char_u *)NULL, PV_NONE,
1951 #endif
1952 {(char_u *)12L, (char_u *)0L} SCRIPTID_INIT},
1953 {"previewwindow", "pvw", P_BOOL|P_VI_DEF|P_RSTAT|P_NOGLOB,
1954 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
1955 (char_u *)VAR_WIN, PV_PVW,
1956 #else
1957 (char_u *)NULL, PV_NONE,
1958 #endif
1959 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1960 {"printdevice", "pdev", P_STRING|P_VI_DEF|P_SECURE,
1961 #ifdef FEAT_PRINTER
1962 (char_u *)&p_pdev, PV_NONE,
1963 {(char_u *)"", (char_u *)0L}
1964 #else
1965 (char_u *)NULL, PV_NONE,
1966 {(char_u *)NULL, (char_u *)0L}
1967 #endif
1968 SCRIPTID_INIT},
1969 {"printencoding", "penc", P_STRING|P_VI_DEF,
1970 #ifdef FEAT_POSTSCRIPT
1971 (char_u *)&p_penc, PV_NONE,
1972 {(char_u *)"", (char_u *)0L}
1973 #else
1974 (char_u *)NULL, PV_NONE,
1975 {(char_u *)NULL, (char_u *)0L}
1976 #endif
1977 SCRIPTID_INIT},
1978 {"printexpr", "pexpr", P_STRING|P_VI_DEF,
1979 #ifdef FEAT_POSTSCRIPT
1980 (char_u *)&p_pexpr, PV_NONE,
1981 {(char_u *)"", (char_u *)0L}
1982 #else
1983 (char_u *)NULL, PV_NONE,
1984 {(char_u *)NULL, (char_u *)0L}
1985 #endif
1986 SCRIPTID_INIT},
1987 {"printfont", "pfn", P_STRING|P_VI_DEF,
1988 #ifdef FEAT_PRINTER
1989 (char_u *)&p_pfn, PV_NONE,
1991 # ifdef MSWIN
1992 (char_u *)"Courier_New:h10",
1993 # else
1994 (char_u *)"courier",
1995 # endif
1996 (char_u *)0L}
1997 #else
1998 (char_u *)NULL, PV_NONE,
1999 {(char_u *)NULL, (char_u *)0L}
2000 #endif
2001 SCRIPTID_INIT},
2002 {"printheader", "pheader", P_STRING|P_VI_DEF|P_GETTEXT,
2003 #ifdef FEAT_PRINTER
2004 (char_u *)&p_header, PV_NONE,
2005 {(char_u *)N_("%<%f%h%m%=Page %N"), (char_u *)0L}
2006 #else
2007 (char_u *)NULL, PV_NONE,
2008 {(char_u *)NULL, (char_u *)0L}
2009 #endif
2010 SCRIPTID_INIT},
2011 {"printmbcharset", "pmbcs", P_STRING|P_VI_DEF,
2012 #if defined(FEAT_POSTSCRIPT) && defined(FEAT_MBYTE)
2013 (char_u *)&p_pmcs, PV_NONE,
2014 {(char_u *)"", (char_u *)0L}
2015 #else
2016 (char_u *)NULL, PV_NONE,
2017 {(char_u *)NULL, (char_u *)0L}
2018 #endif
2019 SCRIPTID_INIT},
2020 {"printmbfont", "pmbfn", P_STRING|P_VI_DEF,
2021 #if defined(FEAT_POSTSCRIPT) && defined(FEAT_MBYTE)
2022 (char_u *)&p_pmfn, PV_NONE,
2023 {(char_u *)"", (char_u *)0L}
2024 #else
2025 (char_u *)NULL, PV_NONE,
2026 {(char_u *)NULL, (char_u *)0L}
2027 #endif
2028 SCRIPTID_INIT},
2029 {"printoptions", "popt", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2030 #ifdef FEAT_PRINTER
2031 (char_u *)&p_popt, PV_NONE,
2032 {(char_u *)"", (char_u *)0L}
2033 #else
2034 (char_u *)NULL, PV_NONE,
2035 {(char_u *)NULL, (char_u *)0L}
2036 #endif
2037 SCRIPTID_INIT},
2038 {"prompt", NULL, P_BOOL|P_VI_DEF,
2039 (char_u *)&p_prompt, PV_NONE,
2040 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2041 {"pumheight", "ph", P_NUM|P_VI_DEF,
2042 #ifdef FEAT_INS_EXPAND
2043 (char_u *)&p_ph, PV_NONE,
2044 #else
2045 (char_u *)NULL, PV_NONE,
2046 #endif
2047 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2048 {"quoteescape", "qe", P_STRING|P_ALLOCED|P_VI_DEF,
2049 #ifdef FEAT_TEXTOBJ
2050 (char_u *)&p_qe, PV_QE,
2051 {(char_u *)"\\", (char_u *)0L}
2052 #else
2053 (char_u *)NULL, PV_NONE,
2054 {(char_u *)NULL, (char_u *)0L}
2055 #endif
2056 SCRIPTID_INIT},
2057 {"readonly", "ro", P_BOOL|P_VI_DEF|P_RSTAT|P_NOGLOB,
2058 (char_u *)&p_ro, PV_RO,
2059 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2060 {"redraw", NULL, P_BOOL|P_VI_DEF,
2061 (char_u *)NULL, PV_NONE,
2062 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2063 {"redrawtime", "rdt", P_NUM|P_VI_DEF,
2064 #ifdef FEAT_RELTIME
2065 (char_u *)&p_rdt, PV_NONE,
2066 #else
2067 (char_u *)NULL, PV_NONE,
2068 #endif
2069 {(char_u *)2000L, (char_u *)0L} SCRIPTID_INIT},
2070 {"remap", NULL, P_BOOL|P_VI_DEF,
2071 (char_u *)&p_remap, PV_NONE,
2072 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2073 {"report", NULL, P_NUM|P_VI_DEF,
2074 (char_u *)&p_report, PV_NONE,
2075 {(char_u *)2L, (char_u *)0L} SCRIPTID_INIT},
2076 {"restorescreen", "rs", P_BOOL|P_VI_DEF,
2077 #ifdef WIN3264
2078 (char_u *)&p_rs, PV_NONE,
2079 #else
2080 (char_u *)NULL, PV_NONE,
2081 #endif
2082 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2083 {"revins", "ri", P_BOOL|P_VI_DEF|P_VIM,
2084 #ifdef FEAT_RIGHTLEFT
2085 (char_u *)&p_ri, PV_NONE,
2086 #else
2087 (char_u *)NULL, PV_NONE,
2088 #endif
2089 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2090 {"rightleft", "rl", P_BOOL|P_VI_DEF|P_RWIN,
2091 #ifdef FEAT_RIGHTLEFT
2092 (char_u *)VAR_WIN, PV_RL,
2093 #else
2094 (char_u *)NULL, PV_NONE,
2095 #endif
2096 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2097 {"rightleftcmd", "rlc", P_STRING|P_ALLOCED|P_VI_DEF|P_RWIN,
2098 #ifdef FEAT_RIGHTLEFT
2099 (char_u *)VAR_WIN, PV_RLC,
2100 {(char_u *)"search", (char_u *)NULL}
2101 #else
2102 (char_u *)NULL, PV_NONE,
2103 {(char_u *)NULL, (char_u *)0L}
2104 #endif
2105 SCRIPTID_INIT},
2106 {"ruler", "ru", P_BOOL|P_VI_DEF|P_VIM|P_RSTAT,
2107 #ifdef FEAT_CMDL_INFO
2108 (char_u *)&p_ru, PV_NONE,
2109 #else
2110 (char_u *)NULL, PV_NONE,
2111 #endif
2112 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2113 {"rulerformat", "ruf", P_STRING|P_VI_DEF|P_ALLOCED|P_RSTAT,
2114 #ifdef FEAT_STL_OPT
2115 (char_u *)&p_ruf, PV_NONE,
2116 #else
2117 (char_u *)NULL, PV_NONE,
2118 #endif
2119 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2120 {"runtimepath", "rtp", P_STRING|P_VI_DEF|P_EXPAND|P_COMMA|P_NODUP|P_SECURE,
2121 (char_u *)&p_rtp, PV_NONE,
2122 {(char_u *)DFLT_RUNTIMEPATH, (char_u *)0L}
2123 SCRIPTID_INIT},
2124 {"scroll", "scr", P_NUM|P_NO_MKRC|P_VI_DEF,
2125 (char_u *)VAR_WIN, PV_SCROLL,
2126 {(char_u *)12L, (char_u *)0L} SCRIPTID_INIT},
2127 {"scrollbind", "scb", P_BOOL|P_VI_DEF,
2128 #ifdef FEAT_SCROLLBIND
2129 (char_u *)VAR_WIN, PV_SCBIND,
2130 #else
2131 (char_u *)NULL, PV_NONE,
2132 #endif
2133 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2134 {"scrolljump", "sj", P_NUM|P_VI_DEF|P_VIM,
2135 (char_u *)&p_sj, PV_NONE,
2136 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
2137 {"scrolloff", "so", P_NUM|P_VI_DEF|P_VIM|P_RALL,
2138 (char_u *)&p_so, PV_NONE,
2139 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2140 {"scrollopt", "sbo", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2141 #ifdef FEAT_SCROLLBIND
2142 (char_u *)&p_sbo, PV_NONE,
2143 {(char_u *)"ver,jump", (char_u *)0L}
2144 #else
2145 (char_u *)NULL, PV_NONE,
2146 {(char_u *)0L, (char_u *)0L}
2147 #endif
2148 SCRIPTID_INIT},
2149 {"sections", "sect", P_STRING|P_VI_DEF,
2150 (char_u *)&p_sections, PV_NONE,
2151 {(char_u *)"SHNHH HUnhsh", (char_u *)0L}
2152 SCRIPTID_INIT},
2153 {"secure", NULL, P_BOOL|P_VI_DEF|P_SECURE,
2154 (char_u *)&p_secure, PV_NONE,
2155 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2156 {"selection", "sel", P_STRING|P_VI_DEF,
2157 #ifdef FEAT_VISUAL
2158 (char_u *)&p_sel, PV_NONE,
2159 #else
2160 (char_u *)NULL, PV_NONE,
2161 #endif
2162 {(char_u *)"inclusive", (char_u *)0L}
2163 SCRIPTID_INIT},
2164 {"selectmode", "slm", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2165 #ifdef FEAT_VISUAL
2166 (char_u *)&p_slm, PV_NONE,
2167 #else
2168 (char_u *)NULL, PV_NONE,
2169 #endif
2170 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2171 {"sessionoptions", "ssop", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2172 #ifdef FEAT_SESSION
2173 (char_u *)&p_ssop, PV_NONE,
2174 {(char_u *)"blank,buffers,curdir,folds,help,options,tabpages,winsize",
2175 (char_u *)0L}
2176 #else
2177 (char_u *)NULL, PV_NONE,
2178 {(char_u *)0L, (char_u *)0L}
2179 #endif
2180 SCRIPTID_INIT},
2181 {"shell", "sh", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
2182 (char_u *)&p_sh, PV_NONE,
2184 #ifdef VMS
2185 (char_u *)"-",
2186 #else
2187 # if defined(MSDOS)
2188 (char_u *)"command",
2189 # else
2190 # if defined(WIN16)
2191 (char_u *)"command.com",
2192 # else
2193 # if defined(WIN3264)
2194 (char_u *)"", /* set in set_init_1() */
2195 # else
2196 # if defined(OS2)
2197 (char_u *)"cmd.exe",
2198 # else
2199 # if defined(ARCHIE)
2200 (char_u *)"gos",
2201 # else
2202 (char_u *)"sh",
2203 # endif
2204 # endif
2205 # endif
2206 # endif
2207 # endif
2208 #endif /* VMS */
2209 (char_u *)0L} SCRIPTID_INIT},
2210 {"shellcmdflag","shcf", P_STRING|P_VI_DEF|P_SECURE,
2211 (char_u *)&p_shcf, PV_NONE,
2213 #if defined(MSDOS) || defined(MSWIN)
2214 (char_u *)"/c",
2215 #else
2216 # if defined(OS2)
2217 (char_u *)"/c",
2218 # else
2219 (char_u *)"-c",
2220 # endif
2221 #endif
2222 (char_u *)0L} SCRIPTID_INIT},
2223 {"shellpipe", "sp", P_STRING|P_VI_DEF|P_SECURE,
2224 #ifdef FEAT_QUICKFIX
2225 (char_u *)&p_sp, PV_NONE,
2227 #if defined(UNIX) || defined(OS2)
2228 # ifdef ARCHIE
2229 (char_u *)"2>",
2230 # else
2231 (char_u *)"| tee",
2232 # endif
2233 #else
2234 (char_u *)">",
2235 #endif
2236 (char_u *)0L}
2237 #else
2238 (char_u *)NULL, PV_NONE,
2239 {(char_u *)0L, (char_u *)0L}
2240 #endif
2241 SCRIPTID_INIT},
2242 {"shellquote", "shq", P_STRING|P_VI_DEF|P_SECURE,
2243 (char_u *)&p_shq, PV_NONE,
2244 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2245 {"shellredir", "srr", P_STRING|P_VI_DEF|P_SECURE,
2246 (char_u *)&p_srr, PV_NONE,
2247 {(char_u *)">", (char_u *)0L} SCRIPTID_INIT},
2248 {"shellslash", "ssl", P_BOOL|P_VI_DEF,
2249 #ifdef BACKSLASH_IN_FILENAME
2250 (char_u *)&p_ssl, PV_NONE,
2251 #else
2252 (char_u *)NULL, PV_NONE,
2253 #endif
2254 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2255 {"shelltemp", "stmp", P_BOOL,
2256 (char_u *)&p_stmp, PV_NONE,
2257 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
2258 {"shelltype", "st", P_NUM|P_VI_DEF,
2259 #ifdef AMIGA
2260 (char_u *)&p_st, PV_NONE,
2261 #else
2262 (char_u *)NULL, PV_NONE,
2263 #endif
2264 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2265 {"shellxquote", "sxq", P_STRING|P_VI_DEF|P_SECURE,
2266 (char_u *)&p_sxq, PV_NONE,
2268 #if defined(UNIX) && defined(USE_SYSTEM) && !defined(__EMX__)
2269 (char_u *)"\"",
2270 #else
2271 (char_u *)"",
2272 #endif
2273 (char_u *)0L} SCRIPTID_INIT},
2274 {"shiftround", "sr", P_BOOL|P_VI_DEF|P_VIM,
2275 (char_u *)&p_sr, PV_NONE,
2276 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2277 {"shiftwidth", "sw", P_NUM|P_VI_DEF,
2278 (char_u *)&p_sw, PV_SW,
2279 {(char_u *)8L, (char_u *)0L} SCRIPTID_INIT},
2280 {"shortmess", "shm", P_STRING|P_VIM|P_FLAGLIST,
2281 (char_u *)&p_shm, PV_NONE,
2282 {(char_u *)"", (char_u *)"filnxtToO"}
2283 SCRIPTID_INIT},
2284 {"shortname", "sn", P_BOOL|P_VI_DEF,
2285 #ifdef SHORT_FNAME
2286 (char_u *)NULL, PV_NONE,
2287 #else
2288 (char_u *)&p_sn, PV_SN,
2289 #endif
2290 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2291 {"showbreak", "sbr", P_STRING|P_VI_DEF|P_RALL,
2292 #ifdef FEAT_LINEBREAK
2293 (char_u *)&p_sbr, PV_NONE,
2294 #else
2295 (char_u *)NULL, PV_NONE,
2296 #endif
2297 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2298 {"showcmd", "sc", P_BOOL|P_VIM,
2299 #ifdef FEAT_CMDL_INFO
2300 (char_u *)&p_sc, PV_NONE,
2301 #else
2302 (char_u *)NULL, PV_NONE,
2303 #endif
2304 {(char_u *)FALSE,
2305 #ifdef UNIX
2306 (char_u *)FALSE
2307 #else
2308 (char_u *)TRUE
2309 #endif
2310 } SCRIPTID_INIT},
2311 {"showfulltag", "sft", P_BOOL|P_VI_DEF,
2312 (char_u *)&p_sft, PV_NONE,
2313 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2314 {"showmatch", "sm", P_BOOL|P_VI_DEF,
2315 (char_u *)&p_sm, PV_NONE,
2316 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2317 {"showmode", "smd", P_BOOL|P_VIM,
2318 (char_u *)&p_smd, PV_NONE,
2319 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
2320 {"showtabline", "stal", P_NUM|P_VI_DEF|P_RALL,
2321 #ifdef FEAT_WINDOWS
2322 (char_u *)&p_stal, PV_NONE,
2323 #else
2324 (char_u *)NULL, PV_NONE,
2325 #endif
2326 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
2327 {"sidescroll", "ss", P_NUM|P_VI_DEF,
2328 (char_u *)&p_ss, PV_NONE,
2329 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2330 {"sidescrolloff", "siso", P_NUM|P_VI_DEF|P_VIM|P_RBUF,
2331 (char_u *)&p_siso, PV_NONE,
2332 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2333 {"slowopen", "slow", P_BOOL|P_VI_DEF,
2334 (char_u *)NULL, PV_NONE,
2335 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2336 {"smartcase", "scs", P_BOOL|P_VI_DEF|P_VIM,
2337 (char_u *)&p_scs, PV_NONE,
2338 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2339 {"smartindent", "si", P_BOOL|P_VI_DEF|P_VIM,
2340 #ifdef FEAT_SMARTINDENT
2341 (char_u *)&p_si, PV_SI,
2342 #else
2343 (char_u *)NULL, PV_NONE,
2344 #endif
2345 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2346 {"smarttab", "sta", P_BOOL|P_VI_DEF|P_VIM,
2347 (char_u *)&p_sta, PV_NONE,
2348 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2349 {"softtabstop", "sts", P_NUM|P_VI_DEF|P_VIM,
2350 (char_u *)&p_sts, PV_STS,
2351 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2352 {"sourceany", NULL, P_BOOL|P_VI_DEF,
2353 (char_u *)NULL, PV_NONE,
2354 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2355 {"spell", NULL, P_BOOL|P_VI_DEF|P_RWIN,
2356 #ifdef FEAT_SPELL
2357 (char_u *)VAR_WIN, PV_SPELL,
2358 #else
2359 (char_u *)NULL, PV_NONE,
2360 #endif
2361 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2362 {"spellcapcheck", "spc", P_STRING|P_ALLOCED|P_VI_DEF|P_RBUF,
2363 #ifdef FEAT_SPELL
2364 (char_u *)&p_spc, PV_SPC,
2365 {(char_u *)"[.?!]\\_[\\])'\" ]\\+", (char_u *)0L}
2366 #else
2367 (char_u *)NULL, PV_NONE,
2368 {(char_u *)0L, (char_u *)0L}
2369 #endif
2370 SCRIPTID_INIT},
2371 {"spellfile", "spf", P_STRING|P_EXPAND|P_ALLOCED|P_VI_DEF|P_SECURE|P_COMMA,
2372 #ifdef FEAT_SPELL
2373 (char_u *)&p_spf, PV_SPF,
2374 {(char_u *)"", (char_u *)0L}
2375 #else
2376 (char_u *)NULL, PV_NONE,
2377 {(char_u *)0L, (char_u *)0L}
2378 #endif
2379 SCRIPTID_INIT},
2380 {"spelllang", "spl", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_RBUF|P_EXPAND,
2381 #ifdef FEAT_SPELL
2382 (char_u *)&p_spl, PV_SPL,
2383 {(char_u *)"en", (char_u *)0L}
2384 #else
2385 (char_u *)NULL, PV_NONE,
2386 {(char_u *)0L, (char_u *)0L}
2387 #endif
2388 SCRIPTID_INIT},
2389 {"spellsuggest", "sps", P_STRING|P_VI_DEF|P_EXPAND|P_SECURE|P_COMMA,
2390 #ifdef FEAT_SPELL
2391 (char_u *)&p_sps, PV_NONE,
2392 {(char_u *)"best", (char_u *)0L}
2393 #else
2394 (char_u *)NULL, PV_NONE,
2395 {(char_u *)0L, (char_u *)0L}
2396 #endif
2397 SCRIPTID_INIT},
2398 {"splitbelow", "sb", P_BOOL|P_VI_DEF,
2399 #ifdef FEAT_WINDOWS
2400 (char_u *)&p_sb, PV_NONE,
2401 #else
2402 (char_u *)NULL, PV_NONE,
2403 #endif
2404 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2405 {"splitright", "spr", P_BOOL|P_VI_DEF,
2406 #ifdef FEAT_VERTSPLIT
2407 (char_u *)&p_spr, PV_NONE,
2408 #else
2409 (char_u *)NULL, PV_NONE,
2410 #endif
2411 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2412 {"startofline", "sol", P_BOOL|P_VI_DEF|P_VIM,
2413 (char_u *)&p_sol, PV_NONE,
2414 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2415 {"statusline" ,"stl", P_STRING|P_VI_DEF|P_ALLOCED|P_RSTAT,
2416 #ifdef FEAT_STL_OPT
2417 (char_u *)&p_stl, PV_STL,
2418 #else
2419 (char_u *)NULL, PV_NONE,
2420 #endif
2421 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2422 {"suffixes", "su", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2423 (char_u *)&p_su, PV_NONE,
2424 {(char_u *)".bak,~,.o,.h,.info,.swp,.obj",
2425 (char_u *)0L} SCRIPTID_INIT},
2426 {"suffixesadd", "sua", P_STRING|P_VI_DEF|P_ALLOCED|P_COMMA|P_NODUP,
2427 #ifdef FEAT_SEARCHPATH
2428 (char_u *)&p_sua, PV_SUA,
2429 {(char_u *)"", (char_u *)0L}
2430 #else
2431 (char_u *)NULL, PV_NONE,
2432 {(char_u *)0L, (char_u *)0L}
2433 #endif
2434 SCRIPTID_INIT},
2435 {"swapfile", "swf", P_BOOL|P_VI_DEF|P_RSTAT,
2436 (char_u *)&p_swf, PV_SWF,
2437 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2438 {"swapsync", "sws", P_STRING|P_VI_DEF,
2439 (char_u *)&p_sws, PV_NONE,
2440 {(char_u *)"fsync", (char_u *)0L} SCRIPTID_INIT},
2441 {"switchbuf", "swb", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2442 (char_u *)&p_swb, PV_NONE,
2443 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2444 {"synmaxcol", "smc", P_NUM|P_VI_DEF|P_RBUF,
2445 #ifdef FEAT_SYN_HL
2446 (char_u *)&p_smc, PV_SMC,
2447 {(char_u *)3000L, (char_u *)0L}
2448 #else
2449 (char_u *)NULL, PV_NONE,
2450 {(char_u *)0L, (char_u *)0L}
2451 #endif
2452 SCRIPTID_INIT},
2453 {"syntax", "syn", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB|P_NFNAME,
2454 #ifdef FEAT_SYN_HL
2455 (char_u *)&p_syn, PV_SYN,
2456 {(char_u *)"", (char_u *)0L}
2457 #else
2458 (char_u *)NULL, PV_NONE,
2459 {(char_u *)0L, (char_u *)0L}
2460 #endif
2461 SCRIPTID_INIT},
2462 {"tabline", "tal", P_STRING|P_VI_DEF|P_RALL,
2463 #ifdef FEAT_STL_OPT
2464 (char_u *)&p_tal, PV_NONE,
2465 #else
2466 (char_u *)NULL, PV_NONE,
2467 #endif
2468 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2469 {"tabpagemax", "tpm", P_NUM|P_VI_DEF,
2470 #ifdef FEAT_WINDOWS
2471 (char_u *)&p_tpm, PV_NONE,
2472 #else
2473 (char_u *)NULL, PV_NONE,
2474 #endif
2475 {(char_u *)10L, (char_u *)0L} SCRIPTID_INIT},
2476 {"tabstop", "ts", P_NUM|P_VI_DEF|P_RBUF,
2477 (char_u *)&p_ts, PV_TS,
2478 {(char_u *)8L, (char_u *)0L} SCRIPTID_INIT},
2479 {"tagbsearch", "tbs", P_BOOL|P_VI_DEF,
2480 (char_u *)&p_tbs, PV_NONE,
2481 #ifdef VMS /* binary searching doesn't appear to work on VMS */
2482 {(char_u *)0L, (char_u *)0L}
2483 #else
2484 {(char_u *)TRUE, (char_u *)0L}
2485 #endif
2486 SCRIPTID_INIT},
2487 {"taglength", "tl", P_NUM|P_VI_DEF,
2488 (char_u *)&p_tl, PV_NONE,
2489 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2490 {"tagrelative", "tr", P_BOOL|P_VIM,
2491 (char_u *)&p_tr, PV_NONE,
2492 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
2493 {"tags", "tag", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
2494 (char_u *)&p_tags, PV_TAGS,
2496 #if defined(FEAT_EMACS_TAGS) && !defined(CASE_INSENSITIVE_FILENAME)
2497 (char_u *)"./tags,./TAGS,tags,TAGS",
2498 #else
2499 (char_u *)"./tags,tags",
2500 #endif
2501 (char_u *)0L} SCRIPTID_INIT},
2502 {"tagstack", "tgst", P_BOOL|P_VI_DEF,
2503 (char_u *)&p_tgst, PV_NONE,
2504 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2505 {"term", NULL, P_STRING|P_EXPAND|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RALL,
2506 (char_u *)&T_NAME, PV_NONE,
2507 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2508 {"termbidi", "tbidi", P_BOOL|P_VI_DEF,
2509 #ifdef FEAT_ARABIC
2510 (char_u *)&p_tbidi, PV_NONE,
2511 #else
2512 (char_u *)NULL, PV_NONE,
2513 #endif
2514 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2515 {"termencoding", "tenc", P_STRING|P_VI_DEF|P_RCLR,
2516 #ifdef FEAT_MBYTE
2517 (char_u *)&p_tenc, PV_NONE,
2518 {(char_u *)"", (char_u *)0L}
2519 #else
2520 (char_u *)NULL, PV_NONE,
2521 {(char_u *)0L, (char_u *)0L}
2522 #endif
2523 SCRIPTID_INIT},
2524 {"terse", NULL, P_BOOL|P_VI_DEF,
2525 (char_u *)&p_terse, PV_NONE,
2526 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2527 {"textauto", "ta", P_BOOL|P_VIM,
2528 (char_u *)&p_ta, PV_NONE,
2529 {(char_u *)DFLT_TEXTAUTO, (char_u *)TRUE}
2530 SCRIPTID_INIT},
2531 {"textmode", "tx", P_BOOL|P_VI_DEF|P_NO_MKRC,
2532 (char_u *)&p_tx, PV_TX,
2534 #ifdef USE_CRNL
2535 (char_u *)TRUE,
2536 #else
2537 (char_u *)FALSE,
2538 #endif
2539 (char_u *)0L} SCRIPTID_INIT},
2540 {"textwidth", "tw", P_NUM|P_VI_DEF|P_VIM,
2541 (char_u *)&p_tw, PV_TW,
2542 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2543 {"thesaurus", "tsr", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
2544 #ifdef FEAT_INS_EXPAND
2545 (char_u *)&p_tsr, PV_TSR,
2546 #else
2547 (char_u *)NULL, PV_NONE,
2548 #endif
2549 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2550 {"tildeop", "top", P_BOOL|P_VI_DEF|P_VIM,
2551 (char_u *)&p_to, PV_NONE,
2552 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2553 {"timeout", "to", P_BOOL|P_VI_DEF,
2554 (char_u *)&p_timeout, PV_NONE,
2555 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2556 {"timeoutlen", "tm", P_NUM|P_VI_DEF,
2557 (char_u *)&p_tm, PV_NONE,
2558 {(char_u *)1000L, (char_u *)0L} SCRIPTID_INIT},
2559 {"title", NULL, P_BOOL|P_VI_DEF,
2560 #ifdef FEAT_TITLE
2561 (char_u *)&p_title, PV_NONE,
2562 #else
2563 (char_u *)NULL, PV_NONE,
2564 #endif
2565 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2566 {"titlelen", NULL, P_NUM|P_VI_DEF,
2567 #ifdef FEAT_TITLE
2568 (char_u *)&p_titlelen, PV_NONE,
2569 #else
2570 (char_u *)NULL, PV_NONE,
2571 #endif
2572 {(char_u *)85L, (char_u *)0L} SCRIPTID_INIT},
2573 {"titleold", NULL, P_STRING|P_VI_DEF|P_GETTEXT|P_SECURE|P_NO_MKRC,
2574 #ifdef FEAT_TITLE
2575 (char_u *)&p_titleold, PV_NONE,
2576 {(char_u *)N_("Thanks for flying Vim"),
2577 (char_u *)0L}
2578 #else
2579 (char_u *)NULL, PV_NONE,
2580 {(char_u *)0L, (char_u *)0L}
2581 #endif
2582 SCRIPTID_INIT},
2583 {"titlestring", NULL, P_STRING|P_VI_DEF,
2584 #ifdef FEAT_TITLE
2585 (char_u *)&p_titlestring, PV_NONE,
2586 #else
2587 (char_u *)NULL, PV_NONE,
2588 #endif
2589 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2590 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
2591 {"toolbar", "tb", P_STRING|P_COMMA|P_VI_DEF|P_NODUP,
2592 (char_u *)&p_toolbar, PV_NONE,
2593 {(char_u *)"icons,tooltips", (char_u *)0L}
2594 SCRIPTID_INIT},
2595 #endif
2596 #if defined(FEAT_TOOLBAR) && ((defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)) \
2597 || defined(FEAT_GUI_MACVIM))
2598 {"toolbariconsize", "tbis", P_STRING|P_VI_DEF,
2599 (char_u *)&p_tbis, PV_NONE,
2600 {(char_u *)"small", (char_u *)0L} SCRIPTID_INIT},
2601 #endif
2602 {"transparency", "transp", P_NUM|P_VIM|P_RCLR,
2603 #ifdef FEAT_TRANSPARENCY
2604 (char_u *)&p_transp, PV_NONE,
2605 #else
2606 (char_u *)NULL, PV_NONE,
2607 #endif
2608 {(char_u *)0L, (char_u *)0L} },
2609 {"ttimeout", NULL, P_BOOL|P_VI_DEF|P_VIM,
2610 (char_u *)&p_ttimeout, PV_NONE,
2611 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2612 {"ttimeoutlen", "ttm", P_NUM|P_VI_DEF,
2613 (char_u *)&p_ttm, PV_NONE,
2614 {(char_u *)-1L, (char_u *)0L} SCRIPTID_INIT},
2615 {"ttybuiltin", "tbi", P_BOOL|P_VI_DEF,
2616 (char_u *)&p_tbi, PV_NONE,
2617 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2618 {"ttyfast", "tf", P_BOOL|P_NO_MKRC|P_VI_DEF,
2619 (char_u *)&p_tf, PV_NONE,
2620 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2621 {"ttymouse", "ttym", P_STRING|P_NODEFAULT|P_NO_MKRC|P_VI_DEF,
2622 #if defined(FEAT_MOUSE) && (defined(UNIX) || defined(VMS))
2623 (char_u *)&p_ttym, PV_NONE,
2624 #else
2625 (char_u *)NULL, PV_NONE,
2626 #endif
2627 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2628 {"ttyscroll", "tsl", P_NUM|P_VI_DEF,
2629 (char_u *)&p_ttyscroll, PV_NONE,
2630 {(char_u *)999L, (char_u *)0L} SCRIPTID_INIT},
2631 {"ttytype", "tty", P_STRING|P_EXPAND|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RALL,
2632 (char_u *)&T_NAME, PV_NONE,
2633 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2634 {"undolevels", "ul", P_NUM|P_VI_DEF,
2635 (char_u *)&p_ul, PV_NONE,
2637 #if defined(UNIX) || defined(WIN3264) || defined(OS2) || defined(VMS)
2638 (char_u *)1000L,
2639 #else
2640 (char_u *)100L,
2641 #endif
2642 (char_u *)0L} SCRIPTID_INIT},
2643 {"updatecount", "uc", P_NUM|P_VI_DEF,
2644 (char_u *)&p_uc, PV_NONE,
2645 {(char_u *)200L, (char_u *)0L} SCRIPTID_INIT},
2646 {"updatetime", "ut", P_NUM|P_VI_DEF,
2647 (char_u *)&p_ut, PV_NONE,
2648 {(char_u *)4000L, (char_u *)0L} SCRIPTID_INIT},
2649 {"verbose", "vbs", P_NUM|P_VI_DEF,
2650 (char_u *)&p_verbose, PV_NONE,
2651 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2652 {"verbosefile", "vfile", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
2653 (char_u *)&p_vfile, PV_NONE,
2654 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2655 {"viewdir", "vdir", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
2656 #ifdef FEAT_SESSION
2657 (char_u *)&p_vdir, PV_NONE,
2658 {(char_u *)DFLT_VDIR, (char_u *)0L}
2659 #else
2660 (char_u *)NULL, PV_NONE,
2661 {(char_u *)0L, (char_u *)0L}
2662 #endif
2663 SCRIPTID_INIT},
2664 {"viewoptions", "vop", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2665 #ifdef FEAT_SESSION
2666 (char_u *)&p_vop, PV_NONE,
2667 {(char_u *)"folds,options,cursor", (char_u *)0L}
2668 #else
2669 (char_u *)NULL, PV_NONE,
2670 {(char_u *)0L, (char_u *)0L}
2671 #endif
2672 SCRIPTID_INIT},
2673 {"viminfo", "vi", P_STRING|P_COMMA|P_NODUP|P_SECURE,
2674 #ifdef FEAT_VIMINFO
2675 (char_u *)&p_viminfo, PV_NONE,
2676 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
2677 {(char_u *)"", (char_u *)"'100,<50,s10,h,rA:,rB:"}
2678 #else
2679 # ifdef AMIGA
2680 {(char_u *)"",
2681 (char_u *)"'100,<50,s10,h,rdf0:,rdf1:,rdf2:"}
2682 # else
2683 {(char_u *)"", (char_u *)"'100,<50,s10,h"}
2684 # endif
2685 #endif
2686 #else
2687 (char_u *)NULL, PV_NONE,
2688 {(char_u *)0L, (char_u *)0L}
2689 #endif
2690 SCRIPTID_INIT},
2691 {"virtualedit", "ve", P_STRING|P_COMMA|P_NODUP|P_VI_DEF|P_VIM,
2692 #ifdef FEAT_VIRTUALEDIT
2693 (char_u *)&p_ve, PV_NONE,
2694 {(char_u *)"", (char_u *)""}
2695 #else
2696 (char_u *)NULL, PV_NONE,
2697 {(char_u *)0L, (char_u *)0L}
2698 #endif
2699 SCRIPTID_INIT},
2700 {"visualbell", "vb", P_BOOL|P_VI_DEF,
2701 (char_u *)&p_vb, PV_NONE,
2702 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2703 {"w300", NULL, P_NUM|P_VI_DEF,
2704 (char_u *)NULL, PV_NONE,
2705 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2706 {"w1200", NULL, P_NUM|P_VI_DEF,
2707 (char_u *)NULL, PV_NONE,
2708 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2709 {"w9600", NULL, P_NUM|P_VI_DEF,
2710 (char_u *)NULL, PV_NONE,
2711 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2712 {"warn", NULL, P_BOOL|P_VI_DEF,
2713 (char_u *)&p_warn, PV_NONE,
2714 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2715 {"weirdinvert", "wiv", P_BOOL|P_VI_DEF|P_RCLR,
2716 (char_u *)&p_wiv, PV_NONE,
2717 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2718 {"whichwrap", "ww", P_STRING|P_VIM|P_COMMA|P_FLAGLIST,
2719 (char_u *)&p_ww, PV_NONE,
2720 {(char_u *)"", (char_u *)"b,s"} SCRIPTID_INIT},
2721 {"wildchar", "wc", P_NUM|P_VIM,
2722 (char_u *)&p_wc, PV_NONE,
2723 {(char_u *)(long)Ctrl_E, (char_u *)(long)TAB}
2724 SCRIPTID_INIT},
2725 {"wildcharm", "wcm", P_NUM|P_VI_DEF,
2726 (char_u *)&p_wcm, PV_NONE,
2727 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2728 {"wildignore", "wig", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2729 #ifdef FEAT_WILDIGN
2730 (char_u *)&p_wig, PV_NONE,
2731 #else
2732 (char_u *)NULL, PV_NONE,
2733 #endif
2734 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2735 {"wildmenu", "wmnu", P_BOOL|P_VI_DEF,
2736 #ifdef FEAT_WILDMENU
2737 (char_u *)&p_wmnu, PV_NONE,
2738 #else
2739 (char_u *)NULL, PV_NONE,
2740 #endif
2741 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2742 {"wildmode", "wim", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2743 (char_u *)&p_wim, PV_NONE,
2744 {(char_u *)"full", (char_u *)0L} SCRIPTID_INIT},
2745 {"wildoptions", "wop", P_STRING|P_VI_DEF,
2746 #ifdef FEAT_CMDL_COMPL
2747 (char_u *)&p_wop, PV_NONE,
2748 {(char_u *)"", (char_u *)0L}
2749 #else
2750 (char_u *)NULL, PV_NONE,
2751 {(char_u *)NULL, (char_u *)0L}
2752 #endif
2753 SCRIPTID_INIT},
2754 {"winaltkeys", "wak", P_STRING|P_VI_DEF,
2755 #ifdef FEAT_WAK
2756 (char_u *)&p_wak, PV_NONE,
2757 {(char_u *)"menu", (char_u *)0L}
2758 #else
2759 (char_u *)NULL, PV_NONE,
2760 {(char_u *)NULL, (char_u *)0L}
2761 #endif
2762 SCRIPTID_INIT},
2763 {"window", "wi", P_NUM|P_VI_DEF,
2764 (char_u *)&p_window, PV_NONE,
2765 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2766 {"winheight", "wh", P_NUM|P_VI_DEF,
2767 #ifdef FEAT_WINDOWS
2768 (char_u *)&p_wh, PV_NONE,
2769 #else
2770 (char_u *)NULL, PV_NONE,
2771 #endif
2772 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
2773 {"winfixheight", "wfh", P_BOOL|P_VI_DEF|P_RSTAT,
2774 #ifdef FEAT_WINDOWS
2775 (char_u *)VAR_WIN, PV_WFH,
2776 #else
2777 (char_u *)NULL, PV_NONE,
2778 #endif
2779 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2780 {"winfixwidth", "wfw", P_BOOL|P_VI_DEF|P_RSTAT,
2781 #ifdef FEAT_VERTSPLIT
2782 (char_u *)VAR_WIN, PV_WFW,
2783 #else
2784 (char_u *)NULL, PV_NONE,
2785 #endif
2786 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2787 {"winminheight", "wmh", P_NUM|P_VI_DEF,
2788 #ifdef FEAT_WINDOWS
2789 (char_u *)&p_wmh, PV_NONE,
2790 #else
2791 (char_u *)NULL, PV_NONE,
2792 #endif
2793 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
2794 {"winminwidth", "wmw", P_NUM|P_VI_DEF,
2795 #ifdef FEAT_VERTSPLIT
2796 (char_u *)&p_wmw, PV_NONE,
2797 #else
2798 (char_u *)NULL, PV_NONE,
2799 #endif
2800 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
2801 {"winwidth", "wiw", P_NUM|P_VI_DEF,
2802 #ifdef FEAT_VERTSPLIT
2803 (char_u *)&p_wiw, PV_NONE,
2804 #else
2805 (char_u *)NULL, PV_NONE,
2806 #endif
2807 {(char_u *)20L, (char_u *)0L} SCRIPTID_INIT},
2808 {"wrap", NULL, P_BOOL|P_VI_DEF|P_RWIN,
2809 (char_u *)VAR_WIN, PV_WRAP,
2810 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2811 {"wrapmargin", "wm", P_NUM|P_VI_DEF,
2812 (char_u *)&p_wm, PV_WM,
2813 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2814 {"wrapscan", "ws", P_BOOL|P_VI_DEF,
2815 (char_u *)&p_ws, PV_NONE,
2816 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2817 {"write", NULL, P_BOOL|P_VI_DEF,
2818 (char_u *)&p_write, PV_NONE,
2819 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2820 {"writeany", "wa", P_BOOL|P_VI_DEF,
2821 (char_u *)&p_wa, PV_NONE,
2822 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2823 {"writebackup", "wb", P_BOOL|P_VI_DEF|P_VIM,
2824 (char_u *)&p_wb, PV_NONE,
2826 #ifdef FEAT_WRITEBACKUP
2827 (char_u *)TRUE,
2828 #else
2829 (char_u *)FALSE,
2830 #endif
2831 (char_u *)0L} SCRIPTID_INIT},
2832 {"writedelay", "wd", P_NUM|P_VI_DEF,
2833 (char_u *)&p_wd, PV_NONE,
2834 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2836 /* terminal output codes */
2837 #define p_term(sss, vvv) {sss, NULL, P_STRING|P_VI_DEF|P_RALL|P_SECURE, \
2838 (char_u *)&vvv, PV_NONE, \
2839 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2841 p_term("t_AB", T_CAB)
2842 p_term("t_AF", T_CAF)
2843 p_term("t_AL", T_CAL)
2844 p_term("t_al", T_AL)
2845 p_term("t_bc", T_BC)
2846 p_term("t_cd", T_CD)
2847 p_term("t_ce", T_CE)
2848 p_term("t_cl", T_CL)
2849 p_term("t_cm", T_CM)
2850 p_term("t_Co", T_CCO)
2851 p_term("t_CS", T_CCS)
2852 p_term("t_cs", T_CS)
2853 #ifdef FEAT_VERTSPLIT
2854 p_term("t_CV", T_CSV)
2855 #endif
2856 p_term("t_ut", T_UT)
2857 p_term("t_da", T_DA)
2858 p_term("t_db", T_DB)
2859 p_term("t_DL", T_CDL)
2860 p_term("t_dl", T_DL)
2861 p_term("t_fs", T_FS)
2862 p_term("t_IE", T_CIE)
2863 p_term("t_IS", T_CIS)
2864 p_term("t_ke", T_KE)
2865 p_term("t_ks", T_KS)
2866 p_term("t_le", T_LE)
2867 p_term("t_mb", T_MB)
2868 p_term("t_md", T_MD)
2869 p_term("t_me", T_ME)
2870 p_term("t_mr", T_MR)
2871 p_term("t_ms", T_MS)
2872 p_term("t_nd", T_ND)
2873 p_term("t_op", T_OP)
2874 p_term("t_RI", T_CRI)
2875 p_term("t_RV", T_CRV)
2876 p_term("t_Sb", T_CSB)
2877 p_term("t_Sf", T_CSF)
2878 p_term("t_se", T_SE)
2879 p_term("t_so", T_SO)
2880 p_term("t_sr", T_SR)
2881 p_term("t_ts", T_TS)
2882 p_term("t_te", T_TE)
2883 p_term("t_ti", T_TI)
2884 p_term("t_ue", T_UE)
2885 p_term("t_us", T_US)
2886 p_term("t_vb", T_VB)
2887 p_term("t_ve", T_VE)
2888 p_term("t_vi", T_VI)
2889 p_term("t_vs", T_VS)
2890 p_term("t_WP", T_CWP)
2891 p_term("t_WS", T_CWS)
2892 p_term("t_SI", T_CSI)
2893 p_term("t_EI", T_CEI)
2894 p_term("t_xs", T_XS)
2895 p_term("t_ZH", T_CZH)
2896 p_term("t_ZR", T_CZR)
2898 /* terminal key codes are not in here */
2900 /* end marker */
2901 {NULL, NULL, 0, NULL, PV_NONE, {NULL, NULL} SCRIPTID_INIT}
2904 #define PARAM_COUNT (sizeof(options) / sizeof(struct vimoption))
2906 #ifdef FEAT_MBYTE
2907 static char *(p_ambw_values[]) = {"single", "double",
2908 # ifdef USE_AMBIWIDTH_AUTO
2909 "auto",
2910 # endif
2911 NULL};
2912 #endif
2913 static char *(p_bg_values[]) = {"light", "dark", NULL};
2914 static char *(p_nf_values[]) = {"octal", "hex", "alpha", NULL};
2915 static char *(p_ff_values[]) = {FF_UNIX, FF_DOS, FF_MAC, NULL};
2916 #ifdef FEAT_CMDL_COMPL
2917 static char *(p_wop_values[]) = {"tagfile", NULL};
2918 #endif
2919 #ifdef FEAT_WAK
2920 static char *(p_wak_values[]) = {"yes", "menu", "no", NULL};
2921 #endif
2922 static char *(p_mousem_values[]) = {"extend", "popup", "popup_setpos", "mac", NULL};
2923 #ifdef FEAT_VISUAL
2924 static char *(p_sel_values[]) = {"inclusive", "exclusive", "old", NULL};
2925 static char *(p_slm_values[]) = {"mouse", "key", "cmd", NULL};
2926 #endif
2927 #ifdef FEAT_VISUAL
2928 static char *(p_km_values[]) = {"startsel", "stopsel", NULL};
2929 #endif
2930 #ifdef FEAT_BROWSE
2931 static char *(p_bsdir_values[]) = {"current", "last", "buffer", NULL};
2932 #endif
2933 #ifdef FEAT_SCROLLBIND
2934 static char *(p_scbopt_values[]) = {"ver", "hor", "jump", NULL};
2935 #endif
2936 static char *(p_debug_values[]) = {"msg", "throw", "beep", NULL};
2937 #ifdef FEAT_VERTSPLIT
2938 static char *(p_ead_values[]) = {"both", "ver", "hor", NULL};
2939 #endif
2940 #if defined(FEAT_QUICKFIX)
2941 # ifdef FEAT_AUTOCMD
2942 static char *(p_buftype_values[]) = {"nofile", "nowrite", "quickfix", "help", "acwrite", NULL};
2943 # else
2944 static char *(p_buftype_values[]) = {"nofile", "nowrite", "quickfix", "help", NULL};
2945 # endif
2946 static char *(p_bufhidden_values[]) = {"hide", "unload", "delete", "wipe", NULL};
2947 #endif
2948 static char *(p_bs_values[]) = {"indent", "eol", "start", NULL};
2949 #ifdef FEAT_FOLDING
2950 static char *(p_fdm_values[]) = {"manual", "expr", "marker", "indent", "syntax",
2951 # ifdef FEAT_DIFF
2952 "diff",
2953 # endif
2954 NULL};
2955 static char *(p_fcl_values[]) = {"all", NULL};
2956 #endif
2957 #ifdef FEAT_INS_EXPAND
2958 static char *(p_cot_values[]) = {"menu", "menuone", "longest", "preview", NULL};
2959 #endif
2961 static void set_option_default __ARGS((int, int opt_flags, int compatible));
2962 static void set_options_default __ARGS((int opt_flags));
2963 static char_u *term_bg_default __ARGS((void));
2964 static void did_set_option __ARGS((int opt_idx, int opt_flags, int new_value));
2965 static char_u *illegal_char __ARGS((char_u *, int));
2966 static int string_to_key __ARGS((char_u *arg));
2967 #ifdef FEAT_CMDWIN
2968 static char_u *check_cedit __ARGS((void));
2969 #endif
2970 #ifdef FEAT_TITLE
2971 static void did_set_title __ARGS((int icon));
2972 #endif
2973 static char_u *option_expand __ARGS((int opt_idx, char_u *val));
2974 static void didset_options __ARGS((void));
2975 static void check_string_option __ARGS((char_u **pp));
2976 #if defined(FEAT_EVAL) || defined(PROTO)
2977 static long_u *insecure_flag __ARGS((int opt_idx, int opt_flags));
2978 #else
2979 # define insecure_flag(opt_idx, opt_flags) (&options[opt_idx].flags)
2980 #endif
2981 static void set_string_option_global __ARGS((int opt_idx, char_u **varp));
2982 static void set_string_option __ARGS((int opt_idx, char_u *value, int opt_flags));
2983 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));
2984 static char_u *set_chars_option __ARGS((char_u **varp));
2985 #ifdef FEAT_CLIPBOARD
2986 static char_u *check_clipboard_option __ARGS((void));
2987 #endif
2988 #ifdef FEAT_SPELL
2989 static char_u *compile_cap_prog __ARGS((buf_T *buf));
2990 #endif
2991 #ifdef FEAT_EVAL
2992 static void set_option_scriptID_idx __ARGS((int opt_idx, int opt_flags, int id));
2993 #endif
2994 static char_u *set_bool_option __ARGS((int opt_idx, char_u *varp, int value, int opt_flags));
2995 static char_u *set_num_option __ARGS((int opt_idx, char_u *varp, long value, char_u *errbuf, size_t errbuflen, int opt_flags));
2996 static void check_redraw __ARGS((long_u flags));
2997 static int findoption __ARGS((char_u *));
2998 static int find_key_option __ARGS((char_u *));
2999 static void showoptions __ARGS((int all, int opt_flags));
3000 static int optval_default __ARGS((struct vimoption *, char_u *varp));
3001 static void showoneopt __ARGS((struct vimoption *, int opt_flags));
3002 static int put_setstring __ARGS((FILE *fd, char *cmd, char *name, char_u **valuep, int expand));
3003 static int put_setnum __ARGS((FILE *fd, char *cmd, char *name, long *valuep));
3004 static int put_setbool __ARGS((FILE *fd, char *cmd, char *name, int value));
3005 static int istermoption __ARGS((struct vimoption *));
3006 static char_u *get_varp_scope __ARGS((struct vimoption *p, int opt_flags));
3007 static char_u *get_varp __ARGS((struct vimoption *));
3008 static void option_value2string __ARGS((struct vimoption *, int opt_flags));
3009 static int wc_use_keyname __ARGS((char_u *varp, long *wcp));
3010 #ifdef FEAT_LANGMAP
3011 static void langmap_init __ARGS((void));
3012 static void langmap_set __ARGS((void));
3013 #endif
3014 static void paste_option_changed __ARGS((void));
3015 static void compatible_set __ARGS((void));
3016 #ifdef FEAT_LINEBREAK
3017 static void fill_breakat_flags __ARGS((void));
3018 #endif
3019 static int opt_strings_flags __ARGS((char_u *val, char **values, unsigned *flagp, int list));
3020 static int check_opt_strings __ARGS((char_u *val, char **values, int));
3021 static int check_opt_wim __ARGS((void));
3022 #ifdef FEAT_FULLSCREEN
3023 static int check_fuoptions __ARGS((char_u *, unsigned *, int *));
3024 #endif
3027 * Initialize the options, first part.
3029 * Called only once from main(), just after creating the first buffer.
3031 void
3032 set_init_1()
3034 char_u *p;
3035 int opt_idx;
3036 long_u n;
3037 #if defined(FEAT_GUI_MACVIM) && defined(FEAT_MBYTE)
3038 int did_mb_init;
3039 #endif
3041 #ifdef FEAT_LANGMAP
3042 langmap_init();
3043 #endif
3045 /* Be Vi compatible by default */
3046 p_cp = TRUE;
3048 /* Use POSIX compatibility when $VIM_POSIX is set. */
3049 if (mch_getenv((char_u *)"VIM_POSIX") != NULL)
3051 set_string_default("cpo", (char_u *)CPO_ALL);
3052 set_string_default("shm", (char_u *)"A");
3056 * Find default value for 'shell' option.
3057 * Don't use it if it is empty.
3059 if (((p = mch_getenv((char_u *)"SHELL")) != NULL && *p != NUL)
3060 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
3061 # ifdef __EMX__
3062 || ((p = mch_getenv((char_u *)"EMXSHELL")) != NULL && *p != NUL)
3063 # endif
3064 || ((p = mch_getenv((char_u *)"COMSPEC")) != NULL && *p != NUL)
3065 # ifdef WIN3264
3066 || ((p = default_shell()) != NULL && *p != NUL)
3067 # endif
3068 #endif
3070 set_string_default("sh", p);
3072 #ifdef FEAT_WILDIGN
3074 * Set the default for 'backupskip' to include environment variables for
3075 * temp files.
3078 # ifdef UNIX
3079 static char *(names[4]) = {"", "TMPDIR", "TEMP", "TMP"};
3080 # else
3081 static char *(names[3]) = {"TMPDIR", "TEMP", "TMP"};
3082 # endif
3083 int len;
3084 garray_T ga;
3085 int mustfree;
3087 ga_init2(&ga, 1, 100);
3088 for (n = 0; n < (long)(sizeof(names) / sizeof(char *)); ++n)
3090 mustfree = FALSE;
3091 # ifdef UNIX
3092 if (*names[n] == NUL)
3093 p = (char_u *)"/tmp";
3094 else
3095 # endif
3096 p = vim_getenv((char_u *)names[n], &mustfree);
3097 if (p != NULL && *p != NUL)
3099 /* First time count the NUL, otherwise count the ','. */
3100 len = (int)STRLEN(p) + 3;
3101 if (ga_grow(&ga, len) == OK)
3103 if (ga.ga_len > 0)
3104 STRCAT(ga.ga_data, ",");
3105 STRCAT(ga.ga_data, p);
3106 add_pathsep(ga.ga_data);
3107 STRCAT(ga.ga_data, "*");
3108 ga.ga_len += len;
3111 if (mustfree)
3112 vim_free(p);
3114 if (ga.ga_data != NULL)
3116 set_string_default("bsk", ga.ga_data);
3117 vim_free(ga.ga_data);
3120 #endif
3123 * 'maxmemtot' and 'maxmem' may have to be adjusted for available memory
3125 opt_idx = findoption((char_u *)"maxmemtot");
3126 if (opt_idx >= 0)
3128 #if !defined(HAVE_AVAIL_MEM) && !defined(HAVE_TOTAL_MEM)
3129 if (options[opt_idx].def_val[VI_DEFAULT] == (char_u *)0L)
3130 #endif
3132 #ifdef HAVE_AVAIL_MEM
3133 /* Use amount of memory available at this moment. */
3134 n = (mch_avail_mem(FALSE) >> 11);
3135 #else
3136 # ifdef HAVE_TOTAL_MEM
3137 /* Use amount of memory available to Vim. */
3138 n = (mch_total_mem(FALSE) >> 1);
3139 # else
3140 n = (0x7fffffff >> 11);
3141 # endif
3142 #endif
3143 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)n;
3144 opt_idx = findoption((char_u *)"maxmem");
3145 if (opt_idx >= 0)
3147 #if !defined(HAVE_AVAIL_MEM) && !defined(HAVE_TOTAL_MEM)
3148 if ((long)options[opt_idx].def_val[VI_DEFAULT] > n
3149 || (long)options[opt_idx].def_val[VI_DEFAULT] == 0L)
3150 #endif
3151 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)n;
3156 #ifdef FEAT_GUI_W32
3157 /* force 'shortname' for Win32s */
3158 if (gui_is_win32s())
3160 opt_idx = findoption((char_u *)"shortname");
3161 if (opt_idx >= 0)
3162 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)TRUE;
3164 #endif
3166 #ifdef FEAT_SEARCHPATH
3168 char_u *cdpath;
3169 char_u *buf;
3170 int i;
3171 int j;
3172 int mustfree = FALSE;
3174 /* Initialize the 'cdpath' option's default value. */
3175 cdpath = vim_getenv((char_u *)"CDPATH", &mustfree);
3176 if (cdpath != NULL)
3178 buf = alloc((unsigned)((STRLEN(cdpath) << 1) + 2));
3179 if (buf != NULL)
3181 buf[0] = ','; /* start with ",", current dir first */
3182 j = 1;
3183 for (i = 0; cdpath[i] != NUL; ++i)
3185 if (vim_ispathlistsep(cdpath[i]))
3186 buf[j++] = ',';
3187 else
3189 if (cdpath[i] == ' ' || cdpath[i] == ',')
3190 buf[j++] = '\\';
3191 buf[j++] = cdpath[i];
3194 buf[j] = NUL;
3195 opt_idx = findoption((char_u *)"cdpath");
3196 if (opt_idx >= 0)
3198 options[opt_idx].def_val[VI_DEFAULT] = buf;
3199 options[opt_idx].flags |= P_DEF_ALLOCED;
3202 if (mustfree)
3203 vim_free(cdpath);
3206 #endif
3208 #if defined(FEAT_POSTSCRIPT) && (defined(MSWIN) || defined(OS2) || defined(VMS) || defined(EBCDIC) || defined(MAC) || defined(hpux))
3209 /* Set print encoding on platforms that don't default to latin1 */
3210 set_string_default("penc",
3211 # if defined(MSWIN) || defined(OS2)
3212 (char_u *)"cp1252"
3213 # else
3214 # ifdef VMS
3215 (char_u *)"dec-mcs"
3216 # else
3217 # ifdef EBCDIC
3218 (char_u *)"ebcdic-uk"
3219 # else
3220 # ifdef MAC
3221 (char_u *)"mac-roman"
3222 # else /* HPUX */
3223 (char_u *)"hp-roman8"
3224 # endif
3225 # endif
3226 # endif
3227 # endif
3229 #endif
3231 #ifdef FEAT_POSTSCRIPT
3232 /* 'printexpr' must be allocated to be able to evaluate it. */
3233 set_string_default("pexpr",
3234 # if defined(MSWIN) || defined(MSDOS) || defined(OS2)
3235 (char_u *)"system('copy' . ' ' . v:fname_in . (&printdevice == '' ? ' LPT1:' : (' \"' . &printdevice . '\"'))) . delete(v:fname_in)"
3236 # else
3237 # ifdef VMS
3238 (char_u *)"system('print/delete' . (&printdevice == '' ? '' : ' /queue=' . &printdevice) . ' ' . v:fname_in)"
3240 # else
3241 (char_u *)"system('lpr' . (&printdevice == '' ? '' : ' -P' . &printdevice) . ' ' . v:fname_in) . delete(v:fname_in) + v:shell_error"
3242 # endif
3243 # endif
3245 #endif
3248 * Set all the options (except the terminal options) to their default
3249 * value. Also set the global value for local options.
3251 set_options_default(0);
3253 #ifdef FEAT_GUI
3254 if (found_reverse_arg)
3255 set_option_value((char_u *)"bg", 0L, (char_u *)"dark", 0);
3256 #endif
3258 curbuf->b_p_initialized = TRUE;
3259 curbuf->b_p_ar = -1; /* no local 'autoread' value */
3260 check_buf_options(curbuf);
3261 check_win_options(curwin);
3262 check_options();
3264 /* Must be before option_expand(), because that one needs vim_isIDc() */
3265 didset_options();
3267 #ifdef FEAT_SPELL
3268 /* Use the current chartab for the generic chartab. */
3269 init_spell_chartab();
3270 #endif
3272 #ifdef FEAT_LINEBREAK
3274 * initialize the table for 'breakat'.
3276 fill_breakat_flags();
3277 #endif
3280 * Expand environment variables and things like "~" for the defaults.
3281 * If option_expand() returns non-NULL the variable is expanded. This can
3282 * only happen for non-indirect options.
3283 * Also set the default to the expanded value, so ":set" does not list
3284 * them.
3285 * Don't set the P_ALLOCED flag, because we don't want to free the
3286 * default.
3288 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
3290 if ((options[opt_idx].flags & P_GETTEXT)
3291 && options[opt_idx].var != NULL)
3292 p = (char_u *)_(*(char **)options[opt_idx].var);
3293 else
3294 p = option_expand(opt_idx, NULL);
3295 if (p != NULL && (p = vim_strsave(p)) != NULL)
3297 *(char_u **)options[opt_idx].var = p;
3298 /* VIMEXP
3299 * Defaults for all expanded options are currently the same for Vi
3300 * and Vim. When this changes, add some code here! Also need to
3301 * split P_DEF_ALLOCED in two.
3303 if (options[opt_idx].flags & P_DEF_ALLOCED)
3304 vim_free(options[opt_idx].def_val[VI_DEFAULT]);
3305 options[opt_idx].def_val[VI_DEFAULT] = p;
3306 options[opt_idx].flags |= P_DEF_ALLOCED;
3310 /* Initialize the highlight_attr[] table. */
3311 highlight_changed();
3313 save_file_ff(curbuf); /* Buffer is unchanged */
3315 /* Parse default for 'wildmode' */
3316 check_opt_wim();
3318 #if defined(FEAT_ARABIC)
3319 /* Detect use of mlterm.
3320 * Mlterm is a terminal emulator akin to xterm that has some special
3321 * abilities (bidi namely).
3322 * NOTE: mlterm's author is being asked to 'set' a variable
3323 * instead of an environment variable due to inheritance.
3325 if (mch_getenv((char_u *)"MLTERM") != NULL)
3326 set_option_value((char_u *)"tbidi", 1L, NULL, 0);
3327 #endif
3329 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
3330 /* Parse default for 'fillchars'. */
3331 (void)set_chars_option(&p_fcs);
3332 #endif
3334 #ifdef FEAT_CLIPBOARD
3335 /* Parse default for 'clipboard' */
3336 (void)check_clipboard_option();
3337 #endif
3339 #ifdef FEAT_MBYTE
3340 # if defined(WIN3264) && defined(FEAT_GETTEXT)
3342 * If $LANG isn't set, try to get a good value for it. This makes the
3343 * right language be used automatically. Don't do this for English.
3345 if (mch_getenv((char_u *)"LANG") == NULL)
3347 char buf[20];
3349 /* Could use LOCALE_SISO639LANGNAME, but it's not in Win95.
3350 * LOCALE_SABBREVLANGNAME gives us three letters, like "enu", we use
3351 * only the first two. */
3352 n = GetLocaleInfo(LOCALE_USER_DEFAULT, LOCALE_SABBREVLANGNAME,
3353 (LPTSTR)buf, 20);
3354 if (n >= 2 && STRNICMP(buf, "en", 2) != 0)
3356 /* There are a few exceptions (probably more) */
3357 if (STRNICMP(buf, "cht", 3) == 0 || STRNICMP(buf, "zht", 3) == 0)
3358 STRCPY(buf, "zh_TW");
3359 else if (STRNICMP(buf, "chs", 3) == 0
3360 || STRNICMP(buf, "zhc", 3) == 0)
3361 STRCPY(buf, "zh_CN");
3362 else if (STRNICMP(buf, "jp", 2) == 0)
3363 STRCPY(buf, "ja");
3364 else
3365 buf[2] = NUL; /* truncate to two-letter code */
3366 vim_setenv("LANG", buf);
3369 # else
3370 # ifdef MACOS_CONVERT
3371 /* Moved to os_mac_conv.c to avoid dependency problems. */
3372 mac_lang_init();
3373 # endif
3374 # endif
3376 /* enc_locale() will try to find the encoding of the current locale. */
3377 p = enc_locale();
3378 if (p != NULL)
3380 char_u *save_enc;
3382 /* Try setting 'encoding' and check if the value is valid.
3383 * If not, go back to the default "latin1". */
3384 save_enc = p_enc;
3385 p_enc = p;
3386 if (STRCMP(p_enc, "gb18030") == 0)
3388 /* We don't support "gb18030", but "cp936" is a good substitute
3389 * for practical purposes, thus use that. It's not an alias to
3390 * still support conversion between gb18030 and utf-8. */
3391 p_enc = vim_strsave((char_u *)"cp936");
3392 vim_free(p);
3394 #if defined(FEAT_GUI_MACVIM)
3395 did_mb_init = (mb_init() == NULL);
3396 if (!did_mb_init)
3398 /* The encoding returned by enc_locale() was invalid, so fall back
3399 * on using utf-8 as the default encoding in MacVim. */
3400 vim_free(p_enc);
3401 p_enc = vim_strsave((char_u *)"utf-8");
3402 did_mb_init = (mb_init() == NULL);
3405 /* did_mb_init should always be TRUE, but check just in case. */
3406 if (did_mb_init)
3407 #else
3408 if (mb_init() == NULL)
3409 #endif
3411 opt_idx = findoption((char_u *)"encoding");
3412 if (opt_idx >= 0)
3414 options[opt_idx].def_val[VI_DEFAULT] = p_enc;
3415 options[opt_idx].flags |= P_DEF_ALLOCED;
3418 #if defined(MSDOS) || defined(MSWIN) || defined(OS2) || defined(MACOS) \
3419 || defined(VMS)
3420 if (STRCMP(p_enc, "latin1") == 0
3421 # ifdef FEAT_MBYTE
3422 || enc_utf8
3423 # endif
3426 /* Adjust the default for 'isprint' and 'iskeyword' to match
3427 * latin1. Also set the defaults for when 'nocompatible' is
3428 * set. */
3429 set_string_option_direct((char_u *)"isp", -1,
3430 ISP_LATIN1, OPT_FREE, SID_NONE);
3431 set_string_option_direct((char_u *)"isk", -1,
3432 ISK_LATIN1, OPT_FREE, SID_NONE);
3433 opt_idx = findoption((char_u *)"isp");
3434 if (opt_idx >= 0)
3435 options[opt_idx].def_val[VIM_DEFAULT] = ISP_LATIN1;
3436 opt_idx = findoption((char_u *)"isk");
3437 if (opt_idx >= 0)
3438 options[opt_idx].def_val[VIM_DEFAULT] = ISK_LATIN1;
3439 (void)init_chartab();
3441 #endif
3443 # if defined(WIN3264) && !defined(FEAT_GUI)
3444 /* Win32 console: When GetACP() returns a different value from
3445 * GetConsoleCP() set 'termencoding'. */
3446 if (GetACP() != GetConsoleCP())
3448 char buf[50];
3450 sprintf(buf, "cp%ld", (long)GetConsoleCP());
3451 p_tenc = vim_strsave((char_u *)buf);
3452 if (p_tenc != NULL)
3454 opt_idx = findoption((char_u *)"termencoding");
3455 if (opt_idx >= 0)
3457 options[opt_idx].def_val[VI_DEFAULT] = p_tenc;
3458 options[opt_idx].flags |= P_DEF_ALLOCED;
3460 convert_setup(&input_conv, p_tenc, p_enc);
3461 convert_setup(&output_conv, p_enc, p_tenc);
3463 else
3464 p_tenc = empty_option;
3466 # endif
3467 # if defined(WIN3264) && defined(FEAT_MBYTE)
3468 /* $HOME may have characters in active code page. */
3469 init_homedir();
3470 # endif
3472 else
3474 vim_free(p_enc);
3475 p_enc = save_enc;
3478 #endif
3480 #ifdef FEAT_MULTI_LANG
3481 /* Set the default for 'helplang'. */
3482 set_helplang_default(get_mess_lang());
3483 #endif
3487 * Set an option to its default value.
3488 * This does not take care of side effects!
3490 static void
3491 set_option_default(opt_idx, opt_flags, compatible)
3492 int opt_idx;
3493 int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */
3494 int compatible; /* use Vi default value */
3496 char_u *varp; /* pointer to variable for current option */
3497 int dvi; /* index in def_val[] */
3498 long_u flags;
3499 long_u *flagsp;
3500 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
3502 varp = get_varp_scope(&(options[opt_idx]), both ? OPT_LOCAL : opt_flags);
3503 flags = options[opt_idx].flags;
3504 if (varp != NULL) /* skip hidden option, nothing to do for it */
3506 dvi = ((flags & P_VI_DEF) || compatible) ? VI_DEFAULT : VIM_DEFAULT;
3507 if (flags & P_STRING)
3509 /* Use set_string_option_direct() for local options to handle
3510 * freeing and allocating the value. */
3511 if (options[opt_idx].indir != PV_NONE)
3512 set_string_option_direct(NULL, opt_idx,
3513 options[opt_idx].def_val[dvi], opt_flags, 0);
3514 else
3516 if ((opt_flags & OPT_FREE) && (flags & P_ALLOCED))
3517 free_string_option(*(char_u **)(varp));
3518 *(char_u **)varp = options[opt_idx].def_val[dvi];
3519 options[opt_idx].flags &= ~P_ALLOCED;
3522 else if (flags & P_NUM)
3524 if (options[opt_idx].indir == PV_SCROLL)
3525 win_comp_scroll(curwin);
3526 else
3528 *(long *)varp = (long)(long_i)options[opt_idx].def_val[dvi];
3529 /* May also set global value for local option. */
3530 if (both)
3531 *(long *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) =
3532 *(long *)varp;
3535 else /* P_BOOL */
3537 /* the cast to long is required for Manx C, long_i is needed for
3538 * MSVC */
3539 *(int *)varp = (int)(long)(long_i)options[opt_idx].def_val[dvi];
3540 #ifdef UNIX
3541 /* 'modeline' defaults to off for root */
3542 if (options[opt_idx].indir == PV_ML && getuid() == ROOT_UID)
3543 *(int *)varp = FALSE;
3544 #endif
3545 /* May also set global value for local option. */
3546 if (both)
3547 *(int *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) =
3548 *(int *)varp;
3551 /* The default value is not insecure. */
3552 flagsp = insecure_flag(opt_idx, opt_flags);
3553 *flagsp = *flagsp & ~P_INSECURE;
3556 #ifdef FEAT_EVAL
3557 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
3558 #endif
3562 * Set all options (except terminal options) to their default value.
3564 static void
3565 set_options_default(opt_flags)
3566 int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */
3568 int i;
3569 #ifdef FEAT_WINDOWS
3570 win_T *wp;
3571 tabpage_T *tp;
3572 #endif
3574 for (i = 0; !istermoption(&options[i]); i++)
3575 if (!(options[i].flags & P_NODEFAULT))
3576 set_option_default(i, opt_flags, p_cp);
3578 #ifdef FEAT_WINDOWS
3579 /* The 'scroll' option must be computed for all windows. */
3580 FOR_ALL_TAB_WINDOWS(tp, wp)
3581 win_comp_scroll(wp);
3582 #else
3583 win_comp_scroll(curwin);
3584 #endif
3588 * Set the Vi-default value of a string option.
3589 * Used for 'sh', 'backupskip' and 'term'.
3591 void
3592 set_string_default(name, val)
3593 char *name;
3594 char_u *val;
3596 char_u *p;
3597 int opt_idx;
3599 p = vim_strsave(val);
3600 if (p != NULL) /* we don't want a NULL */
3602 opt_idx = findoption((char_u *)name);
3603 if (opt_idx >= 0)
3605 if (options[opt_idx].flags & P_DEF_ALLOCED)
3606 vim_free(options[opt_idx].def_val[VI_DEFAULT]);
3607 options[opt_idx].def_val[VI_DEFAULT] = p;
3608 options[opt_idx].flags |= P_DEF_ALLOCED;
3614 * Set the Vi-default value of a number option.
3615 * Used for 'lines' and 'columns'.
3617 void
3618 set_number_default(name, val)
3619 char *name;
3620 long val;
3622 int opt_idx;
3624 opt_idx = findoption((char_u *)name);
3625 if (opt_idx >= 0)
3626 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
3629 #if defined(EXITFREE) || defined(PROTO)
3631 * Free all options.
3633 void
3634 free_all_options()
3636 int i;
3638 for (i = 0; !istermoption(&options[i]); i++)
3640 if (options[i].indir == PV_NONE)
3642 /* global option: free value and default value. */
3643 if (options[i].flags & P_ALLOCED && options[i].var != NULL)
3644 free_string_option(*(char_u **)options[i].var);
3645 if (options[i].flags & P_DEF_ALLOCED)
3646 free_string_option(options[i].def_val[VI_DEFAULT]);
3648 else if (options[i].var != VAR_WIN
3649 && (options[i].flags & P_STRING))
3650 /* buffer-local option: free global value */
3651 free_string_option(*(char_u **)options[i].var);
3654 #endif
3658 * Initialize the options, part two: After getting Rows and Columns and
3659 * setting 'term'.
3661 void
3662 set_init_2()
3664 int idx;
3667 * 'scroll' defaults to half the window height. Note that this default is
3668 * wrong when the window height changes.
3670 set_number_default("scroll", (long)((long_u)Rows >> 1));
3671 idx = findoption((char_u *)"scroll");
3672 if (idx >= 0 && !(options[idx].flags & P_WAS_SET))
3673 set_option_default(idx, OPT_LOCAL, p_cp);
3674 comp_col();
3677 * 'window' is only for backwards compatibility with Vi.
3678 * Default is Rows - 1.
3680 if (!option_was_set((char_u *)"window"))
3681 p_window = Rows - 1;
3682 set_number_default("window", Rows - 1);
3684 /* For DOS console the default is always black. */
3685 #if !((defined(MSDOS) || defined(OS2) || defined(WIN3264)) && !defined(FEAT_GUI))
3687 * If 'background' wasn't set by the user, try guessing the value,
3688 * depending on the terminal name. Only need to check for terminals
3689 * with a dark background, that can handle color.
3691 idx = findoption((char_u *)"bg");
3692 if (idx >= 0 && !(options[idx].flags & P_WAS_SET)
3693 && *term_bg_default() == 'd')
3695 set_string_option_direct(NULL, idx, (char_u *)"dark", OPT_FREE, 0);
3696 /* don't mark it as set, when starting the GUI it may be
3697 * changed again */
3698 options[idx].flags &= ~P_WAS_SET;
3700 #endif
3702 #ifdef CURSOR_SHAPE
3703 parse_shape_opt(SHAPE_CURSOR); /* set cursor shapes from 'guicursor' */
3704 #endif
3705 #ifdef FEAT_MOUSESHAPE
3706 parse_shape_opt(SHAPE_MOUSE); /* set mouse shapes from 'mouseshape' */
3707 #endif
3708 #ifdef FEAT_PRINTER
3709 (void)parse_printoptions(); /* parse 'printoptions' default value */
3710 #endif
3714 * Return "dark" or "light" depending on the kind of terminal.
3715 * This is just guessing! Recognized are:
3716 * "linux" Linux console
3717 * "screen.linux" Linux console with screen
3718 * "cygwin" Cygwin shell
3719 * "putty" Putty program
3720 * We also check the COLORFGBG environment variable, which is set by
3721 * rxvt and derivatives. This variable contains either two or three
3722 * values separated by semicolons; we want the last value in either
3723 * case. If this value is 0-6 or 8, our background is dark.
3725 static char_u *
3726 term_bg_default()
3728 #if defined(MSDOS) || defined(OS2) || defined(WIN3264)
3729 /* DOS console nearly always black */
3730 return (char_u *)"dark";
3731 #else
3732 char_u *p;
3734 if (STRCMP(T_NAME, "linux") == 0
3735 || STRCMP(T_NAME, "screen.linux") == 0
3736 || STRCMP(T_NAME, "cygwin") == 0
3737 || STRCMP(T_NAME, "putty") == 0
3738 || ((p = mch_getenv((char_u *)"COLORFGBG")) != NULL
3739 && (p = vim_strrchr(p, ';')) != NULL
3740 && ((p[1] >= '0' && p[1] <= '6') || p[1] == '8')
3741 && p[2] == NUL))
3742 return (char_u *)"dark";
3743 return (char_u *)"light";
3744 #endif
3748 * Initialize the options, part three: After reading the .vimrc
3750 void
3751 set_init_3()
3753 #if defined(UNIX) || defined(OS2) || defined(WIN3264)
3755 * Set 'shellpipe' and 'shellredir', depending on the 'shell' option.
3756 * This is done after other initializations, where 'shell' might have been
3757 * set, but only if they have not been set before.
3759 char_u *p;
3760 int idx_srr;
3761 int do_srr;
3762 #ifdef FEAT_QUICKFIX
3763 int idx_sp;
3764 int do_sp;
3765 #endif
3767 idx_srr = findoption((char_u *)"srr");
3768 if (idx_srr < 0)
3769 do_srr = FALSE;
3770 else
3771 do_srr = !(options[idx_srr].flags & P_WAS_SET);
3772 #ifdef FEAT_QUICKFIX
3773 idx_sp = findoption((char_u *)"sp");
3774 if (idx_sp < 0)
3775 do_sp = FALSE;
3776 else
3777 do_sp = !(options[idx_sp].flags & P_WAS_SET);
3778 #endif
3781 * Isolate the name of the shell:
3782 * - Skip beyond any path. E.g., "/usr/bin/csh -f" -> "csh -f".
3783 * - Remove any argument. E.g., "csh -f" -> "csh".
3785 p = gettail(p_sh);
3786 p = vim_strnsave(p, (int)(skiptowhite(p) - p));
3787 if (p != NULL)
3790 * Default for p_sp is "| tee", for p_srr is ">".
3791 * For known shells it is changed here to include stderr.
3793 if ( fnamecmp(p, "csh") == 0
3794 || fnamecmp(p, "tcsh") == 0
3795 # if defined(OS2) || defined(WIN3264) /* also check with .exe extension */
3796 || fnamecmp(p, "csh.exe") == 0
3797 || fnamecmp(p, "tcsh.exe") == 0
3798 # endif
3801 #if defined(FEAT_QUICKFIX)
3802 if (do_sp)
3804 # ifdef WIN3264
3805 p_sp = (char_u *)">&";
3806 # else
3807 p_sp = (char_u *)"|& tee";
3808 # endif
3809 options[idx_sp].def_val[VI_DEFAULT] = p_sp;
3811 #endif
3812 if (do_srr)
3814 p_srr = (char_u *)">&";
3815 options[idx_srr].def_val[VI_DEFAULT] = p_srr;
3818 else
3819 # ifndef OS2 /* Always use bourne shell style redirection if we reach this */
3820 if ( fnamecmp(p, "sh") == 0
3821 || fnamecmp(p, "ksh") == 0
3822 || fnamecmp(p, "zsh") == 0
3823 || fnamecmp(p, "zsh-beta") == 0
3824 || fnamecmp(p, "bash") == 0
3825 # ifdef WIN3264
3826 || fnamecmp(p, "cmd") == 0
3827 || fnamecmp(p, "sh.exe") == 0
3828 || fnamecmp(p, "ksh.exe") == 0
3829 || fnamecmp(p, "zsh.exe") == 0
3830 || fnamecmp(p, "zsh-beta.exe") == 0
3831 || fnamecmp(p, "bash.exe") == 0
3832 || fnamecmp(p, "cmd.exe") == 0
3833 # endif
3835 # endif
3837 #if defined(FEAT_QUICKFIX)
3838 if (do_sp)
3840 # ifdef WIN3264
3841 p_sp = (char_u *)">%s 2>&1";
3842 # else
3843 p_sp = (char_u *)"2>&1| tee";
3844 # endif
3845 options[idx_sp].def_val[VI_DEFAULT] = p_sp;
3847 #endif
3848 if (do_srr)
3850 p_srr = (char_u *)">%s 2>&1";
3851 options[idx_srr].def_val[VI_DEFAULT] = p_srr;
3854 vim_free(p);
3856 #endif
3858 #if defined(MSDOS) || defined(WIN3264) || defined(OS2)
3860 * Set 'shellcmdflag and 'shellquote' depending on the 'shell' option.
3861 * This is done after other initializations, where 'shell' might have been
3862 * set, but only if they have not been set before. Default for p_shcf is
3863 * "/c", for p_shq is "". For "sh" like shells it is changed here to
3864 * "-c" and "\"", but not for DJGPP, because it starts the shell without
3865 * command.com. And for Win32 we need to set p_sxq instead.
3867 if (strstr((char *)gettail(p_sh), "sh") != NULL)
3869 int idx3;
3871 idx3 = findoption((char_u *)"shcf");
3872 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
3874 p_shcf = (char_u *)"-c";
3875 options[idx3].def_val[VI_DEFAULT] = p_shcf;
3878 # ifndef DJGPP
3879 # ifdef WIN3264
3880 /* Somehow Win32 requires the quotes around the redirection too */
3881 idx3 = findoption((char_u *)"sxq");
3882 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
3884 p_sxq = (char_u *)"\"";
3885 options[idx3].def_val[VI_DEFAULT] = p_sxq;
3887 # else
3888 idx3 = findoption((char_u *)"shq");
3889 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
3891 p_shq = (char_u *)"\"";
3892 options[idx3].def_val[VI_DEFAULT] = p_shq;
3894 # endif
3895 # endif
3897 #endif
3899 #ifdef FEAT_TITLE
3900 set_title_defaults();
3901 #endif
3904 #if defined(FEAT_MULTI_LANG) || defined(PROTO)
3906 * When 'helplang' is still at its default value, set it to "lang".
3907 * Only the first two characters of "lang" are used.
3909 void
3910 set_helplang_default(lang)
3911 char_u *lang;
3913 int idx;
3915 if (lang == NULL || STRLEN(lang) < 2) /* safety check */
3916 return;
3917 idx = findoption((char_u *)"hlg");
3918 if (idx >= 0 && !(options[idx].flags & P_WAS_SET))
3920 if (options[idx].flags & P_ALLOCED)
3921 free_string_option(p_hlg);
3922 p_hlg = vim_strsave(lang);
3923 if (p_hlg == NULL)
3924 p_hlg = empty_option;
3925 else
3927 /* zh_CN becomes "cn", zh_TW becomes "tw". */
3928 if (STRNICMP(p_hlg, "zh_", 3) == 0 && STRLEN(p_hlg) >= 5)
3930 p_hlg[0] = TOLOWER_ASC(p_hlg[3]);
3931 p_hlg[1] = TOLOWER_ASC(p_hlg[4]);
3933 p_hlg[2] = NUL;
3935 options[idx].flags |= P_ALLOCED;
3938 #endif
3940 #ifdef FEAT_GUI
3941 static char_u *gui_bg_default __ARGS((void));
3943 static char_u *
3944 gui_bg_default()
3946 if (gui_get_lightness(gui.back_pixel) < 127)
3947 return (char_u *)"dark";
3948 return (char_u *)"light";
3952 * Option initializations that can only be done after opening the GUI window.
3954 void
3955 init_gui_options()
3957 /* Set the 'background' option according to the lightness of the
3958 * background color, unless the user has set it already. */
3959 if (!option_was_set((char_u *)"bg") && STRCMP(p_bg, gui_bg_default()) != 0)
3961 set_option_value((char_u *)"bg", 0L, gui_bg_default(), 0);
3962 highlight_changed();
3965 #endif
3967 #ifdef FEAT_TITLE
3969 * 'title' and 'icon' only default to true if they have not been set or reset
3970 * in .vimrc and we can read the old value.
3971 * When 'title' and 'icon' have been reset in .vimrc, we won't even check if
3972 * they can be reset. This reduces startup time when using X on a remote
3973 * machine.
3975 void
3976 set_title_defaults()
3978 int idx1;
3979 long val;
3982 * If GUI is (going to be) used, we can always set the window title and
3983 * icon name. Saves a bit of time, because the X11 display server does
3984 * not need to be contacted.
3986 idx1 = findoption((char_u *)"title");
3987 if (idx1 >= 0 && !(options[idx1].flags & P_WAS_SET))
3989 #ifdef FEAT_GUI
3990 if (gui.starting || gui.in_use)
3991 val = TRUE;
3992 else
3993 #endif
3994 val = mch_can_restore_title();
3995 options[idx1].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
3996 p_title = val;
3998 idx1 = findoption((char_u *)"icon");
3999 if (idx1 >= 0 && !(options[idx1].flags & P_WAS_SET))
4001 #ifdef FEAT_GUI
4002 if (gui.starting || gui.in_use)
4003 val = TRUE;
4004 else
4005 #endif
4006 val = mch_can_restore_icon();
4007 options[idx1].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
4008 p_icon = val;
4011 #endif
4014 * Parse 'arg' for option settings.
4016 * 'arg' may be IObuff, but only when no errors can be present and option
4017 * does not need to be expanded with option_expand().
4018 * "opt_flags":
4019 * 0 for ":set"
4020 * OPT_GLOBAL for ":setglobal"
4021 * OPT_LOCAL for ":setlocal" and a modeline
4022 * OPT_MODELINE for a modeline
4023 * OPT_WINONLY to only set window-local options
4024 * OPT_NOWIN to skip setting window-local options
4026 * returns FAIL if an error is detected, OK otherwise
4029 do_set(arg, opt_flags)
4030 char_u *arg; /* option string (may be written to!) */
4031 int opt_flags;
4033 int opt_idx;
4034 char_u *errmsg;
4035 char_u errbuf[80];
4036 char_u *startarg;
4037 int prefix; /* 1: nothing, 0: "no", 2: "inv" in front of name */
4038 int nextchar; /* next non-white char after option name */
4039 int afterchar; /* character just after option name */
4040 int len;
4041 int i;
4042 long value;
4043 int key;
4044 long_u flags; /* flags for current option */
4045 char_u *varp = NULL; /* pointer to variable for current option */
4046 int did_show = FALSE; /* already showed one value */
4047 int adding; /* "opt+=arg" */
4048 int prepending; /* "opt^=arg" */
4049 int removing; /* "opt-=arg" */
4050 int cp_val = 0;
4051 char_u key_name[2];
4053 if (*arg == NUL)
4055 showoptions(0, opt_flags);
4056 did_show = TRUE;
4057 goto theend;
4060 while (*arg != NUL) /* loop to process all options */
4062 errmsg = NULL;
4063 startarg = arg; /* remember for error message */
4065 if (STRNCMP(arg, "all", 3) == 0 && !isalpha(arg[3])
4066 && !(opt_flags & OPT_MODELINE))
4069 * ":set all" show all options.
4070 * ":set all&" set all options to their default value.
4072 arg += 3;
4073 if (*arg == '&')
4075 ++arg;
4076 /* Only for :set command set global value of local options. */
4077 set_options_default(OPT_FREE | opt_flags);
4079 else
4081 showoptions(1, opt_flags);
4082 did_show = TRUE;
4085 else if (STRNCMP(arg, "termcap", 7) == 0 && !(opt_flags & OPT_MODELINE))
4087 showoptions(2, opt_flags);
4088 show_termcodes();
4089 did_show = TRUE;
4090 arg += 7;
4092 else
4094 prefix = 1;
4095 if (STRNCMP(arg, "no", 2) == 0 && STRNCMP(arg, "novice", 6) != 0)
4097 prefix = 0;
4098 arg += 2;
4100 else if (STRNCMP(arg, "inv", 3) == 0)
4102 prefix = 2;
4103 arg += 3;
4106 /* find end of name */
4107 key = 0;
4108 if (*arg == '<')
4110 nextchar = 0;
4111 opt_idx = -1;
4112 /* look out for <t_>;> */
4113 if (arg[1] == 't' && arg[2] == '_' && arg[3] && arg[4])
4114 len = 5;
4115 else
4117 len = 1;
4118 while (arg[len] != NUL && arg[len] != '>')
4119 ++len;
4121 if (arg[len] != '>')
4123 errmsg = e_invarg;
4124 goto skip;
4126 arg[len] = NUL; /* put NUL after name */
4127 if (arg[1] == 't' && arg[2] == '_') /* could be term code */
4128 opt_idx = findoption(arg + 1);
4129 arg[len++] = '>'; /* restore '>' */
4130 if (opt_idx == -1)
4131 key = find_key_option(arg + 1);
4133 else
4135 len = 0;
4137 * The two characters after "t_" may not be alphanumeric.
4139 if (arg[0] == 't' && arg[1] == '_' && arg[2] && arg[3])
4140 len = 4;
4141 else
4142 while (ASCII_ISALNUM(arg[len]) || arg[len] == '_')
4143 ++len;
4144 nextchar = arg[len];
4145 arg[len] = NUL; /* put NUL after name */
4146 opt_idx = findoption(arg);
4147 arg[len] = nextchar; /* restore nextchar */
4148 if (opt_idx == -1)
4149 key = find_key_option(arg);
4152 /* remember character after option name */
4153 afterchar = arg[len];
4155 /* skip white space, allow ":set ai ?" */
4156 while (vim_iswhite(arg[len]))
4157 ++len;
4159 adding = FALSE;
4160 prepending = FALSE;
4161 removing = FALSE;
4162 if (arg[len] != NUL && arg[len + 1] == '=')
4164 if (arg[len] == '+')
4166 adding = TRUE; /* "+=" */
4167 ++len;
4169 else if (arg[len] == '^')
4171 prepending = TRUE; /* "^=" */
4172 ++len;
4174 else if (arg[len] == '-')
4176 removing = TRUE; /* "-=" */
4177 ++len;
4180 nextchar = arg[len];
4182 if (opt_idx == -1 && key == 0) /* found a mismatch: skip */
4184 errmsg = (char_u *)N_("E518: Unknown option");
4185 goto skip;
4188 if (opt_idx >= 0)
4190 if (options[opt_idx].var == NULL) /* hidden option: skip */
4192 /* Only give an error message when requesting the value of
4193 * a hidden option, ignore setting it. */
4194 if (vim_strchr((char_u *)"=:!&<", nextchar) == NULL
4195 && (!(options[opt_idx].flags & P_BOOL)
4196 || nextchar == '?'))
4197 errmsg = (char_u *)N_("E519: Option not supported");
4198 goto skip;
4201 flags = options[opt_idx].flags;
4202 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
4204 else
4206 flags = P_STRING;
4207 if (key < 0)
4209 key_name[0] = KEY2TERMCAP0(key);
4210 key_name[1] = KEY2TERMCAP1(key);
4212 else
4214 key_name[0] = KS_KEY;
4215 key_name[1] = (key & 0xff);
4219 /* Skip all options that are not window-local (used when showing
4220 * an already loaded buffer in a window). */
4221 if ((opt_flags & OPT_WINONLY)
4222 && (opt_idx < 0 || options[opt_idx].var != VAR_WIN))
4223 goto skip;
4225 /* Skip all options that are window-local (used for :vimgrep). */
4226 if ((opt_flags & OPT_NOWIN) && opt_idx >= 0
4227 && options[opt_idx].var == VAR_WIN)
4228 goto skip;
4230 /* Disallow changing some options from modelines. */
4231 if (opt_flags & OPT_MODELINE)
4233 if (flags & P_SECURE)
4235 errmsg = (char_u *)_("E520: Not allowed in a modeline");
4236 goto skip;
4238 #ifdef FEAT_DIFF
4239 /* In diff mode some options are overruled. This avoids that
4240 * 'foldmethod' becomes "marker" instead of "diff" and that
4241 * "wrap" gets set. */
4242 if (curwin->w_p_diff
4243 && (options[opt_idx].indir == PV_FDM
4244 || options[opt_idx].indir == PV_WRAP))
4245 goto skip;
4246 #endif
4249 #ifdef HAVE_SANDBOX
4250 /* Disallow changing some options in the sandbox */
4251 if (sandbox != 0 && (flags & P_SECURE))
4253 errmsg = (char_u *)_(e_sandbox);
4254 goto skip;
4256 #endif
4258 if (vim_strchr((char_u *)"?=:!&<", nextchar) != NULL)
4260 arg += len;
4261 cp_val = p_cp;
4262 if (nextchar == '&' && arg[1] == 'v' && arg[2] == 'i')
4264 if (arg[3] == 'm') /* "opt&vim": set to Vim default */
4266 cp_val = FALSE;
4267 arg += 3;
4269 else /* "opt&vi": set to Vi default */
4271 cp_val = TRUE;
4272 arg += 2;
4275 if (vim_strchr((char_u *)"?!&<", nextchar) != NULL
4276 && arg[1] != NUL && !vim_iswhite(arg[1]))
4278 errmsg = e_trailing;
4279 goto skip;
4284 * allow '=' and ':' as MSDOS command.com allows only one
4285 * '=' character per "set" command line. grrr. (jw)
4287 if (nextchar == '?'
4288 || (prefix == 1
4289 && vim_strchr((char_u *)"=:&<", nextchar) == NULL
4290 && !(flags & P_BOOL)))
4293 * print value
4295 if (did_show)
4296 msg_putchar('\n'); /* cursor below last one */
4297 else
4299 gotocmdline(TRUE); /* cursor at status line */
4300 did_show = TRUE; /* remember that we did a line */
4302 if (opt_idx >= 0)
4304 showoneopt(&options[opt_idx], opt_flags);
4305 #ifdef FEAT_EVAL
4306 if (p_verbose > 0)
4308 /* Mention where the option was last set. */
4309 if (varp == options[opt_idx].var)
4310 last_set_msg(options[opt_idx].scriptID);
4311 else if ((int)options[opt_idx].indir & PV_WIN)
4312 last_set_msg(curwin->w_p_scriptID[
4313 (int)options[opt_idx].indir & PV_MASK]);
4314 else if ((int)options[opt_idx].indir & PV_BUF)
4315 last_set_msg(curbuf->b_p_scriptID[
4316 (int)options[opt_idx].indir & PV_MASK]);
4318 #endif
4320 else
4322 char_u *p;
4324 p = find_termcode(key_name);
4325 if (p == NULL)
4327 errmsg = (char_u *)N_("E518: Unknown option");
4328 goto skip;
4330 else
4331 (void)show_one_termcode(key_name, p, TRUE);
4333 if (nextchar != '?'
4334 && nextchar != NUL && !vim_iswhite(afterchar))
4335 errmsg = e_trailing;
4337 else
4339 if (flags & P_BOOL) /* boolean */
4341 if (nextchar == '=' || nextchar == ':')
4343 errmsg = e_invarg;
4344 goto skip;
4348 * ":set opt!": invert
4349 * ":set opt&": reset to default value
4350 * ":set opt<": reset to global value
4352 if (nextchar == '!')
4353 value = *(int *)(varp) ^ 1;
4354 else if (nextchar == '&')
4355 value = (int)(long)(long_i)options[opt_idx].def_val[
4356 ((flags & P_VI_DEF) || cp_val)
4357 ? VI_DEFAULT : VIM_DEFAULT];
4358 else if (nextchar == '<')
4360 /* For 'autoread' -1 means to use global value. */
4361 if ((int *)varp == &curbuf->b_p_ar
4362 && opt_flags == OPT_LOCAL)
4363 value = -1;
4364 else
4365 value = *(int *)get_varp_scope(&(options[opt_idx]),
4366 OPT_GLOBAL);
4368 else
4371 * ":set invopt": invert
4372 * ":set opt" or ":set noopt": set or reset
4374 if (nextchar != NUL && !vim_iswhite(afterchar))
4376 errmsg = e_trailing;
4377 goto skip;
4379 if (prefix == 2) /* inv */
4380 value = *(int *)(varp) ^ 1;
4381 else
4382 value = prefix;
4385 errmsg = set_bool_option(opt_idx, varp, (int)value,
4386 opt_flags);
4388 else /* numeric or string */
4390 if (vim_strchr((char_u *)"=:&<", nextchar) == NULL
4391 || prefix != 1)
4393 errmsg = e_invarg;
4394 goto skip;
4397 if (flags & P_NUM) /* numeric */
4400 * Different ways to set a number option:
4401 * & set to default value
4402 * < set to global value
4403 * <xx> accept special key codes for 'wildchar'
4404 * c accept any non-digit for 'wildchar'
4405 * [-]0-9 set number
4406 * other error
4408 ++arg;
4409 if (nextchar == '&')
4410 value = (long)(long_i)options[opt_idx].def_val[
4411 ((flags & P_VI_DEF) || cp_val)
4412 ? VI_DEFAULT : VIM_DEFAULT];
4413 else if (nextchar == '<')
4414 value = *(long *)get_varp_scope(&(options[opt_idx]),
4415 OPT_GLOBAL);
4416 else if (((long *)varp == &p_wc
4417 || (long *)varp == &p_wcm)
4418 && (*arg == '<'
4419 || *arg == '^'
4420 || ((!arg[1] || vim_iswhite(arg[1]))
4421 && !VIM_ISDIGIT(*arg))))
4423 value = string_to_key(arg);
4424 if (value == 0 && (long *)varp != &p_wcm)
4426 errmsg = e_invarg;
4427 goto skip;
4430 /* allow negative numbers (for 'undolevels') */
4431 else if (*arg == '-' || VIM_ISDIGIT(*arg))
4433 i = 0;
4434 if (*arg == '-')
4435 i = 1;
4436 #ifdef HAVE_STRTOL
4437 value = strtol((char *)arg, NULL, 0);
4438 if (arg[i] == '0' && TOLOWER_ASC(arg[i + 1]) == 'x')
4439 i += 2;
4440 #else
4441 value = atol((char *)arg);
4442 #endif
4443 while (VIM_ISDIGIT(arg[i]))
4444 ++i;
4445 if (arg[i] != NUL && !vim_iswhite(arg[i]))
4447 errmsg = e_invarg;
4448 goto skip;
4451 else
4453 errmsg = (char_u *)N_("E521: Number required after =");
4454 goto skip;
4457 if (adding)
4458 value = *(long *)varp + value;
4459 if (prepending)
4460 value = *(long *)varp * value;
4461 if (removing)
4462 value = *(long *)varp - value;
4463 errmsg = set_num_option(opt_idx, varp, value,
4464 errbuf, sizeof(errbuf), opt_flags);
4466 else if (opt_idx >= 0) /* string */
4468 char_u *save_arg = NULL;
4469 char_u *s = NULL;
4470 char_u *oldval; /* previous value if *varp */
4471 char_u *newval;
4472 char_u *origval;
4473 unsigned newlen;
4474 int comma;
4475 int bs;
4476 int new_value_alloced; /* new string option
4477 was allocated */
4479 /* When using ":set opt=val" for a global option
4480 * with a local value the local value will be
4481 * reset, use the global value here. */
4482 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
4483 && ((int)options[opt_idx].indir & PV_BOTH))
4484 varp = options[opt_idx].var;
4486 /* The old value is kept until we are sure that the
4487 * new value is valid. */
4488 oldval = *(char_u **)varp;
4489 if (nextchar == '&') /* set to default val */
4491 newval = options[opt_idx].def_val[
4492 ((flags & P_VI_DEF) || cp_val)
4493 ? VI_DEFAULT : VIM_DEFAULT];
4494 if ((char_u **)varp == &p_bg)
4496 /* guess the value of 'background' */
4497 #ifdef FEAT_GUI
4498 if (gui.in_use)
4499 newval = gui_bg_default();
4500 else
4501 #endif
4502 newval = term_bg_default();
4505 /* expand environment variables and ~ (since the
4506 * default value was already expanded, only
4507 * required when an environment variable was set
4508 * later */
4509 if (newval == NULL)
4510 newval = empty_option;
4511 else
4513 s = option_expand(opt_idx, newval);
4514 if (s == NULL)
4515 s = newval;
4516 newval = vim_strsave(s);
4518 new_value_alloced = TRUE;
4520 else if (nextchar == '<') /* set to global val */
4522 newval = vim_strsave(*(char_u **)get_varp_scope(
4523 &(options[opt_idx]), OPT_GLOBAL));
4524 new_value_alloced = TRUE;
4526 else
4528 ++arg; /* jump to after the '=' or ':' */
4531 * Set 'keywordprg' to ":help" if an empty
4532 * value was passed to :set by the user.
4533 * Misuse errbuf[] for the resulting string.
4535 if (varp == (char_u *)&p_kp
4536 && (*arg == NUL || *arg == ' '))
4538 STRCPY(errbuf, ":help");
4539 save_arg = arg;
4540 arg = errbuf;
4543 * Convert 'whichwrap' number to string, for
4544 * backwards compatibility with Vim 3.0.
4545 * Misuse errbuf[] for the resulting string.
4547 else if (varp == (char_u *)&p_ww
4548 && VIM_ISDIGIT(*arg))
4550 *errbuf = NUL;
4551 i = getdigits(&arg);
4552 if (i & 1)
4553 STRCAT(errbuf, "b,");
4554 if (i & 2)
4555 STRCAT(errbuf, "s,");
4556 if (i & 4)
4557 STRCAT(errbuf, "h,l,");
4558 if (i & 8)
4559 STRCAT(errbuf, "<,>,");
4560 if (i & 16)
4561 STRCAT(errbuf, "[,],");
4562 if (*errbuf != NUL) /* remove trailing , */
4563 errbuf[STRLEN(errbuf) - 1] = NUL;
4564 save_arg = arg;
4565 arg = errbuf;
4568 * Remove '>' before 'dir' and 'bdir', for
4569 * backwards compatibility with version 3.0
4571 else if ( *arg == '>'
4572 && (varp == (char_u *)&p_dir
4573 || varp == (char_u *)&p_bdir))
4575 ++arg;
4578 /* When setting the local value of a global
4579 * option, the old value may be the global value. */
4580 if (((int)options[opt_idx].indir & PV_BOTH)
4581 && (opt_flags & OPT_LOCAL))
4582 origval = *(char_u **)get_varp(
4583 &options[opt_idx]);
4584 else
4585 origval = oldval;
4588 * Copy the new string into allocated memory.
4589 * Can't use set_string_option_direct(), because
4590 * we need to remove the backslashes.
4592 /* get a bit too much */
4593 newlen = (unsigned)STRLEN(arg) + 1;
4594 if (adding || prepending || removing)
4595 newlen += (unsigned)STRLEN(origval) + 1;
4596 newval = alloc(newlen);
4597 if (newval == NULL) /* out of mem, don't change */
4598 break;
4599 s = newval;
4602 * Copy the string, skip over escaped chars.
4603 * For MS-DOS and WIN32 backslashes before normal
4604 * file name characters are not removed, and keep
4605 * backslash at start, for "\\machine\path", but
4606 * do remove it for "\\\\machine\\path".
4607 * The reverse is found in ExpandOldSetting().
4609 while (*arg && !vim_iswhite(*arg))
4611 if (*arg == '\\' && arg[1] != NUL
4612 #ifdef BACKSLASH_IN_FILENAME
4613 && !((flags & P_EXPAND)
4614 && vim_isfilec(arg[1])
4615 && (arg[1] != '\\'
4616 || (s == newval
4617 && arg[2] != '\\')))
4618 #endif
4620 ++arg; /* remove backslash */
4621 #ifdef FEAT_MBYTE
4622 if (has_mbyte
4623 && (i = (*mb_ptr2len)(arg)) > 1)
4625 /* copy multibyte char */
4626 mch_memmove(s, arg, (size_t)i);
4627 arg += i;
4628 s += i;
4630 else
4631 #endif
4632 *s++ = *arg++;
4634 *s = NUL;
4637 * Expand environment variables and ~.
4638 * Don't do it when adding without inserting a
4639 * comma.
4641 if (!(adding || prepending || removing)
4642 || (flags & P_COMMA))
4644 s = option_expand(opt_idx, newval);
4645 if (s != NULL)
4647 vim_free(newval);
4648 newlen = (unsigned)STRLEN(s) + 1;
4649 if (adding || prepending || removing)
4650 newlen += (unsigned)STRLEN(origval) + 1;
4651 newval = alloc(newlen);
4652 if (newval == NULL)
4653 break;
4654 STRCPY(newval, s);
4658 /* locate newval[] in origval[] when removing it
4659 * and when adding to avoid duplicates */
4660 i = 0; /* init for GCC */
4661 if (removing || (flags & P_NODUP))
4663 i = (int)STRLEN(newval);
4664 bs = 0;
4665 for (s = origval; *s; ++s)
4667 if ((!(flags & P_COMMA)
4668 || s == origval
4669 || (s[-1] == ',' && !(bs & 1)))
4670 && STRNCMP(s, newval, i) == 0
4671 && (!(flags & P_COMMA)
4672 || s[i] == ','
4673 || s[i] == NUL))
4674 break;
4675 /* Count backspaces. Only a comma with an
4676 * even number of backspaces before it is
4677 * recognized as a separator */
4678 if (s > origval && s[-1] == '\\')
4679 ++bs;
4680 else
4681 bs = 0;
4684 /* do not add if already there */
4685 if ((adding || prepending) && *s)
4687 prepending = FALSE;
4688 adding = FALSE;
4689 STRCPY(newval, origval);
4693 /* concatenate the two strings; add a ',' if
4694 * needed */
4695 if (adding || prepending)
4697 comma = ((flags & P_COMMA) && *origval != NUL
4698 && *newval != NUL);
4699 if (adding)
4701 i = (int)STRLEN(origval);
4702 mch_memmove(newval + i + comma, newval,
4703 STRLEN(newval) + 1);
4704 mch_memmove(newval, origval, (size_t)i);
4706 else
4708 i = (int)STRLEN(newval);
4709 STRMOVE(newval + i + comma, origval);
4711 if (comma)
4712 newval[i] = ',';
4715 /* Remove newval[] from origval[]. (Note: "i" has
4716 * been set above and is used here). */
4717 if (removing)
4719 STRCPY(newval, origval);
4720 if (*s)
4722 /* may need to remove a comma */
4723 if (flags & P_COMMA)
4725 if (s == origval)
4727 /* include comma after string */
4728 if (s[i] == ',')
4729 ++i;
4731 else
4733 /* include comma before string */
4734 --s;
4735 ++i;
4738 STRMOVE(newval + (s - origval), s + i);
4742 if (flags & P_FLAGLIST)
4744 /* Remove flags that appear twice. */
4745 for (s = newval; *s; ++s)
4746 if ((!(flags & P_COMMA) || *s != ',')
4747 && vim_strchr(s + 1, *s) != NULL)
4749 STRMOVE(s, s + 1);
4750 --s;
4754 if (save_arg != NULL) /* number for 'whichwrap' */
4755 arg = save_arg;
4756 new_value_alloced = TRUE;
4759 /* Set the new value. */
4760 *(char_u **)(varp) = newval;
4762 /* Handle side effects, and set the global value for
4763 * ":set" on local options. */
4764 errmsg = did_set_string_option(opt_idx, (char_u **)varp,
4765 new_value_alloced, oldval, errbuf, opt_flags);
4767 /* If error detected, print the error message. */
4768 if (errmsg != NULL)
4769 goto skip;
4771 else /* key code option */
4773 char_u *p;
4775 if (nextchar == '&')
4777 if (add_termcap_entry(key_name, TRUE) == FAIL)
4778 errmsg = (char_u *)N_("E522: Not found in termcap");
4780 else
4782 ++arg; /* jump to after the '=' or ':' */
4783 for (p = arg; *p && !vim_iswhite(*p); ++p)
4784 if (*p == '\\' && p[1] != NUL)
4785 ++p;
4786 nextchar = *p;
4787 *p = NUL;
4788 add_termcode(key_name, arg, FALSE);
4789 *p = nextchar;
4791 if (full_screen)
4792 ttest(FALSE);
4793 redraw_all_later(CLEAR);
4797 if (opt_idx >= 0)
4798 did_set_option(opt_idx, opt_flags,
4799 !prepending && !adding && !removing);
4802 skip:
4804 * Advance to next argument.
4805 * - skip until a blank found, taking care of backslashes
4806 * - skip blanks
4807 * - skip one "=val" argument (for hidden options ":set gfn =xx")
4809 for (i = 0; i < 2 ; ++i)
4811 while (*arg != NUL && !vim_iswhite(*arg))
4812 if (*arg++ == '\\' && *arg != NUL)
4813 ++arg;
4814 arg = skipwhite(arg);
4815 if (*arg != '=')
4816 break;
4820 if (errmsg != NULL)
4822 vim_strncpy(IObuff, (char_u *)_(errmsg), IOSIZE - 1);
4823 i = (int)STRLEN(IObuff) + 2;
4824 if (i + (arg - startarg) < IOSIZE)
4826 /* append the argument with the error */
4827 STRCAT(IObuff, ": ");
4828 mch_memmove(IObuff + i, startarg, (arg - startarg));
4829 IObuff[i + (arg - startarg)] = NUL;
4831 /* make sure all characters are printable */
4832 trans_characters(IObuff, IOSIZE);
4834 ++no_wait_return; /* wait_return done later */
4835 emsg(IObuff); /* show error highlighted */
4836 --no_wait_return;
4838 return FAIL;
4841 arg = skipwhite(arg);
4844 theend:
4845 if (silent_mode && did_show)
4847 /* After displaying option values in silent mode. */
4848 silent_mode = FALSE;
4849 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
4850 msg_putchar('\n');
4851 cursor_on(); /* msg_start() switches it off */
4852 out_flush();
4853 silent_mode = TRUE;
4854 info_message = FALSE; /* use mch_msg(), not mch_errmsg() */
4857 return OK;
4861 * Call this when an option has been given a new value through a user command.
4862 * Sets the P_WAS_SET flag and takes care of the P_INSECURE flag.
4864 static void
4865 did_set_option(opt_idx, opt_flags, new_value)
4866 int opt_idx;
4867 int opt_flags; /* possibly with OPT_MODELINE */
4868 int new_value; /* value was replaced completely */
4870 long_u *p;
4872 options[opt_idx].flags |= P_WAS_SET;
4874 /* When an option is set in the sandbox, from a modeline or in secure mode
4875 * set the P_INSECURE flag. Otherwise, if a new value is stored reset the
4876 * flag. */
4877 p = insecure_flag(opt_idx, opt_flags);
4878 if (secure
4879 #ifdef HAVE_SANDBOX
4880 || sandbox != 0
4881 #endif
4882 || (opt_flags & OPT_MODELINE))
4883 *p = *p | P_INSECURE;
4884 else if (new_value)
4885 *p = *p & ~P_INSECURE;
4888 static char_u *
4889 illegal_char(errbuf, c)
4890 char_u *errbuf;
4891 int c;
4893 if (errbuf == NULL)
4894 return (char_u *)"";
4895 sprintf((char *)errbuf, _("E539: Illegal character <%s>"),
4896 (char *)transchar(c));
4897 return errbuf;
4901 * Convert a key name or string into a key value.
4902 * Used for 'wildchar' and 'cedit' options.
4904 static int
4905 string_to_key(arg)
4906 char_u *arg;
4908 if (*arg == '<')
4909 return find_key_option(arg + 1);
4910 if (*arg == '^')
4911 return Ctrl_chr(arg[1]);
4912 return *arg;
4915 #ifdef FEAT_CMDWIN
4917 * Check value of 'cedit' and set cedit_key.
4918 * Returns NULL if value is OK, error message otherwise.
4920 static char_u *
4921 check_cedit()
4923 int n;
4925 if (*p_cedit == NUL)
4926 cedit_key = -1;
4927 else
4929 n = string_to_key(p_cedit);
4930 if (vim_isprintc(n))
4931 return e_invarg;
4932 cedit_key = n;
4934 return NULL;
4936 #endif
4938 #ifdef FEAT_TITLE
4940 * When changing 'title', 'titlestring', 'icon' or 'iconstring', call
4941 * maketitle() to create and display it.
4942 * When switching the title or icon off, call mch_restore_title() to get
4943 * the old value back.
4945 static void
4946 did_set_title(icon)
4947 int icon; /* Did set icon instead of title */
4949 if (starting != NO_SCREEN
4950 #ifdef FEAT_GUI
4951 && !gui.starting
4952 #endif
4955 maketitle();
4956 if (icon)
4958 if (!p_icon)
4959 mch_restore_title(2);
4961 else
4963 if (!p_title)
4964 mch_restore_title(1);
4968 #endif
4971 * set_options_bin - called when 'bin' changes value.
4973 void
4974 set_options_bin(oldval, newval, opt_flags)
4975 int oldval;
4976 int newval;
4977 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
4980 * The option values that are changed when 'bin' changes are
4981 * copied when 'bin is set and restored when 'bin' is reset.
4983 if (newval)
4985 if (!oldval) /* switched on */
4987 if (!(opt_flags & OPT_GLOBAL))
4989 curbuf->b_p_tw_nobin = curbuf->b_p_tw;
4990 curbuf->b_p_wm_nobin = curbuf->b_p_wm;
4991 curbuf->b_p_ml_nobin = curbuf->b_p_ml;
4992 curbuf->b_p_et_nobin = curbuf->b_p_et;
4994 if (!(opt_flags & OPT_LOCAL))
4996 p_tw_nobin = p_tw;
4997 p_wm_nobin = p_wm;
4998 p_ml_nobin = p_ml;
4999 p_et_nobin = p_et;
5003 if (!(opt_flags & OPT_GLOBAL))
5005 curbuf->b_p_tw = 0; /* no automatic line wrap */
5006 curbuf->b_p_wm = 0; /* no automatic line wrap */
5007 curbuf->b_p_ml = 0; /* no modelines */
5008 curbuf->b_p_et = 0; /* no expandtab */
5010 if (!(opt_flags & OPT_LOCAL))
5012 p_tw = 0;
5013 p_wm = 0;
5014 p_ml = FALSE;
5015 p_et = FALSE;
5016 p_bin = TRUE; /* needed when called for the "-b" argument */
5019 else if (oldval) /* switched off */
5021 if (!(opt_flags & OPT_GLOBAL))
5023 curbuf->b_p_tw = curbuf->b_p_tw_nobin;
5024 curbuf->b_p_wm = curbuf->b_p_wm_nobin;
5025 curbuf->b_p_ml = curbuf->b_p_ml_nobin;
5026 curbuf->b_p_et = curbuf->b_p_et_nobin;
5028 if (!(opt_flags & OPT_LOCAL))
5030 p_tw = p_tw_nobin;
5031 p_wm = p_wm_nobin;
5032 p_ml = p_ml_nobin;
5033 p_et = p_et_nobin;
5038 #ifdef FEAT_VIMINFO
5040 * Find the parameter represented by the given character (eg ', :, ", or /),
5041 * and return its associated value in the 'viminfo' string.
5042 * Only works for number parameters, not for 'r' or 'n'.
5043 * If the parameter is not specified in the string or there is no following
5044 * number, return -1.
5047 get_viminfo_parameter(type)
5048 int type;
5050 char_u *p;
5052 p = find_viminfo_parameter(type);
5053 if (p != NULL && VIM_ISDIGIT(*p))
5054 return atoi((char *)p);
5055 return -1;
5059 * Find the parameter represented by the given character (eg ''', ':', '"', or
5060 * '/') in the 'viminfo' option and return a pointer to the string after it.
5061 * Return NULL if the parameter is not specified in the string.
5063 char_u *
5064 find_viminfo_parameter(type)
5065 int type;
5067 char_u *p;
5069 for (p = p_viminfo; *p; ++p)
5071 if (*p == type)
5072 return p + 1;
5073 if (*p == 'n') /* 'n' is always the last one */
5074 break;
5075 p = vim_strchr(p, ','); /* skip until next ',' */
5076 if (p == NULL) /* hit the end without finding parameter */
5077 break;
5079 return NULL;
5081 #endif
5084 * Expand environment variables for some string options.
5085 * These string options cannot be indirect!
5086 * If "val" is NULL expand the current value of the option.
5087 * Return pointer to NameBuff, or NULL when not expanded.
5089 static char_u *
5090 option_expand(opt_idx, val)
5091 int opt_idx;
5092 char_u *val;
5094 /* if option doesn't need expansion nothing to do */
5095 if (!(options[opt_idx].flags & P_EXPAND) || options[opt_idx].var == NULL)
5096 return NULL;
5098 /* If val is longer than MAXPATHL no meaningful expansion can be done,
5099 * expand_env() would truncate the string. */
5100 if (val != NULL && STRLEN(val) > MAXPATHL)
5101 return NULL;
5103 if (val == NULL)
5104 val = *(char_u **)options[opt_idx].var;
5107 * Expanding this with NameBuff, expand_env() must not be passed IObuff.
5108 * Escape spaces when expanding 'tags', they are used to separate file
5109 * names.
5110 * For 'spellsuggest' expand after "file:".
5112 expand_env_esc(val, NameBuff, MAXPATHL,
5113 (char_u **)options[opt_idx].var == &p_tags, FALSE,
5114 #ifdef FEAT_SPELL
5115 (char_u **)options[opt_idx].var == &p_sps ? (char_u *)"file:" :
5116 #endif
5117 NULL);
5118 if (STRCMP(NameBuff, val) == 0) /* they are the same */
5119 return NULL;
5121 return NameBuff;
5125 * After setting various option values: recompute variables that depend on
5126 * option values.
5128 static void
5129 didset_options()
5131 /* initialize the table for 'iskeyword' et.al. */
5132 (void)init_chartab();
5134 #ifdef FEAT_MBYTE
5135 (void)opt_strings_flags(p_cmp, p_cmp_values, &cmp_flags, TRUE);
5136 #endif
5137 (void)opt_strings_flags(p_bkc, p_bkc_values, &bkc_flags, TRUE);
5138 #ifdef FEAT_SESSION
5139 (void)opt_strings_flags(p_ssop, p_ssop_values, &ssop_flags, TRUE);
5140 (void)opt_strings_flags(p_vop, p_ssop_values, &vop_flags, TRUE);
5141 #endif
5142 #ifdef FEAT_FOLDING
5143 (void)opt_strings_flags(p_fdo, p_fdo_values, &fdo_flags, TRUE);
5144 #endif
5145 #ifdef FEAT_FULLSCREEN
5146 (void)check_fuoptions(p_fuoptions, &fuoptions_flags,
5147 &fuoptions_bgcolor);
5148 #endif
5149 (void)opt_strings_flags(p_dy, p_dy_values, &dy_flags, TRUE);
5150 #ifdef FEAT_VIRTUALEDIT
5151 (void)opt_strings_flags(p_ve, p_ve_values, &ve_flags, TRUE);
5152 #endif
5153 #if defined(FEAT_MOUSE) && (defined(UNIX) || defined(VMS))
5154 (void)opt_strings_flags(p_ttym, p_ttym_values, &ttym_flags, FALSE);
5155 #endif
5156 #ifdef FEAT_SPELL
5157 (void)spell_check_msm();
5158 (void)spell_check_sps();
5159 (void)compile_cap_prog(curbuf);
5160 #endif
5161 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
5162 (void)opt_strings_flags(p_toolbar, p_toolbar_values, &toolbar_flags, TRUE);
5163 #endif
5164 #if defined(FEAT_TOOLBAR) && ((defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)) \
5165 || defined(FEAT_GUI_MACVIM))
5166 (void)opt_strings_flags(p_tbis, p_tbis_values, &tbis_flags, FALSE);
5167 #endif
5168 #ifdef FEAT_CMDWIN
5169 /* set cedit_key */
5170 (void)check_cedit();
5171 #endif
5175 * Check for string options that are NULL (normally only termcap options).
5177 void
5178 check_options()
5180 int opt_idx;
5182 for (opt_idx = 0; options[opt_idx].fullname != NULL; opt_idx++)
5183 if ((options[opt_idx].flags & P_STRING) && options[opt_idx].var != NULL)
5184 check_string_option((char_u **)get_varp(&(options[opt_idx])));
5188 * Check string options in a buffer for NULL value.
5190 void
5191 check_buf_options(buf)
5192 buf_T *buf;
5194 #if defined(FEAT_QUICKFIX)
5195 check_string_option(&buf->b_p_bh);
5196 check_string_option(&buf->b_p_bt);
5197 #endif
5198 #ifdef FEAT_MBYTE
5199 check_string_option(&buf->b_p_fenc);
5200 #endif
5201 check_string_option(&buf->b_p_ff);
5202 #ifdef FEAT_FIND_ID
5203 check_string_option(&buf->b_p_def);
5204 check_string_option(&buf->b_p_inc);
5205 # ifdef FEAT_EVAL
5206 check_string_option(&buf->b_p_inex);
5207 # endif
5208 #endif
5209 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
5210 check_string_option(&buf->b_p_inde);
5211 check_string_option(&buf->b_p_indk);
5212 #endif
5213 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
5214 check_string_option(&buf->b_p_bexpr);
5215 #endif
5216 #if defined(FEAT_EVAL)
5217 check_string_option(&buf->b_p_fex);
5218 #endif
5219 #ifdef FEAT_CRYPT
5220 check_string_option(&buf->b_p_key);
5221 #endif
5222 check_string_option(&buf->b_p_kp);
5223 check_string_option(&buf->b_p_mps);
5224 check_string_option(&buf->b_p_fo);
5225 check_string_option(&buf->b_p_flp);
5226 check_string_option(&buf->b_p_isk);
5227 #ifdef FEAT_COMMENTS
5228 check_string_option(&buf->b_p_com);
5229 #endif
5230 #ifdef FEAT_FOLDING
5231 check_string_option(&buf->b_p_cms);
5232 #endif
5233 check_string_option(&buf->b_p_nf);
5234 #ifdef FEAT_TEXTOBJ
5235 check_string_option(&buf->b_p_qe);
5236 #endif
5237 #ifdef FEAT_SYN_HL
5238 check_string_option(&buf->b_p_syn);
5239 #endif
5240 #ifdef FEAT_SPELL
5241 check_string_option(&buf->b_p_spc);
5242 check_string_option(&buf->b_p_spf);
5243 check_string_option(&buf->b_p_spl);
5244 #endif
5245 #ifdef FEAT_SEARCHPATH
5246 check_string_option(&buf->b_p_sua);
5247 #endif
5248 #ifdef FEAT_CINDENT
5249 check_string_option(&buf->b_p_cink);
5250 check_string_option(&buf->b_p_cino);
5251 #endif
5252 #ifdef FEAT_AUTOCMD
5253 check_string_option(&buf->b_p_ft);
5254 #endif
5255 #ifdef FEAT_OSFILETYPE
5256 check_string_option(&buf->b_p_oft);
5257 #endif
5258 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
5259 check_string_option(&buf->b_p_cinw);
5260 #endif
5261 #ifdef FEAT_INS_EXPAND
5262 check_string_option(&buf->b_p_cpt);
5263 #endif
5264 #ifdef FEAT_COMPL_FUNC
5265 check_string_option(&buf->b_p_cfu);
5266 check_string_option(&buf->b_p_ofu);
5267 #endif
5268 #ifdef FEAT_KEYMAP
5269 check_string_option(&buf->b_p_keymap);
5270 #endif
5271 #ifdef FEAT_QUICKFIX
5272 check_string_option(&buf->b_p_gp);
5273 check_string_option(&buf->b_p_mp);
5274 check_string_option(&buf->b_p_efm);
5275 #endif
5276 check_string_option(&buf->b_p_ep);
5277 check_string_option(&buf->b_p_path);
5278 check_string_option(&buf->b_p_tags);
5279 #ifdef FEAT_INS_EXPAND
5280 check_string_option(&buf->b_p_dict);
5281 check_string_option(&buf->b_p_tsr);
5282 #endif
5286 * Free the string allocated for an option.
5287 * Checks for the string being empty_option. This may happen if we're out of
5288 * memory, vim_strsave() returned NULL, which was replaced by empty_option by
5289 * check_options().
5290 * Does NOT check for P_ALLOCED flag!
5292 void
5293 free_string_option(p)
5294 char_u *p;
5296 if (p != empty_option)
5297 vim_free(p);
5300 void
5301 clear_string_option(pp)
5302 char_u **pp;
5304 if (*pp != empty_option)
5305 vim_free(*pp);
5306 *pp = empty_option;
5309 static void
5310 check_string_option(pp)
5311 char_u **pp;
5313 if (*pp == NULL)
5314 *pp = empty_option;
5318 * Mark a terminal option as allocated, found by a pointer into term_strings[].
5320 void
5321 set_term_option_alloced(p)
5322 char_u **p;
5324 int opt_idx;
5326 for (opt_idx = 1; options[opt_idx].fullname != NULL; opt_idx++)
5327 if (options[opt_idx].var == (char_u *)p)
5329 options[opt_idx].flags |= P_ALLOCED;
5330 return;
5332 return; /* cannot happen: didn't find it! */
5335 #if defined(FEAT_EVAL) || defined(PROTO)
5337 * Return TRUE when option "opt" was set from a modeline or in secure mode.
5338 * Return FALSE when it wasn't.
5339 * Return -1 for an unknown option.
5342 was_set_insecurely(opt, opt_flags)
5343 char_u *opt;
5344 int opt_flags;
5346 int idx = findoption(opt);
5347 long_u *flagp;
5349 if (idx >= 0)
5351 flagp = insecure_flag(idx, opt_flags);
5352 return (*flagp & P_INSECURE) != 0;
5354 EMSG2(_(e_intern2), "was_set_insecurely()");
5355 return -1;
5359 * Get a pointer to the flags used for the P_INSECURE flag of option
5360 * "opt_idx". For some local options a local flags field is used.
5362 static long_u *
5363 insecure_flag(opt_idx, opt_flags)
5364 int opt_idx;
5365 int opt_flags;
5367 if (opt_flags & OPT_LOCAL)
5368 switch ((int)options[opt_idx].indir)
5370 #ifdef FEAT_STL_OPT
5371 case PV_STL: return &curwin->w_p_stl_flags;
5372 #endif
5373 #ifdef FEAT_EVAL
5374 # ifdef FEAT_FOLDING
5375 case PV_FDE: return &curwin->w_p_fde_flags;
5376 case PV_FDT: return &curwin->w_p_fdt_flags;
5377 # endif
5378 # ifdef FEAT_BEVAL
5379 case PV_BEXPR: return &curbuf->b_p_bexpr_flags;
5380 # endif
5381 # if defined(FEAT_CINDENT)
5382 case PV_INDE: return &curbuf->b_p_inde_flags;
5383 # endif
5384 case PV_FEX: return &curbuf->b_p_fex_flags;
5385 # ifdef FEAT_FIND_ID
5386 case PV_INEX: return &curbuf->b_p_inex_flags;
5387 # endif
5388 #endif
5391 /* Nothing special, return global flags field. */
5392 return &options[opt_idx].flags;
5394 #endif
5396 #ifdef FEAT_TITLE
5397 static void redraw_titles __ARGS((void));
5400 * Redraw the window title and/or tab page text later.
5402 static void redraw_titles()
5404 need_maketitle = TRUE;
5405 # ifdef FEAT_WINDOWS
5406 redraw_tabline = TRUE;
5407 # endif
5409 #endif
5412 * Set a string option to a new value (without checking the effect).
5413 * The string is copied into allocated memory.
5414 * if ("opt_idx" == -1) "name" is used, otherwise "opt_idx" is used.
5415 * When "set_sid" is zero set the scriptID to current_SID. When "set_sid" is
5416 * SID_NONE don't set the scriptID. Otherwise set the scriptID to "set_sid".
5418 void
5419 set_string_option_direct(name, opt_idx, val, opt_flags, set_sid)
5420 char_u *name;
5421 int opt_idx;
5422 char_u *val;
5423 int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */
5424 int set_sid UNUSED;
5426 char_u *s;
5427 char_u **varp;
5428 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
5429 int idx = opt_idx;
5431 if (idx == -1) /* use name */
5433 idx = findoption(name);
5434 if (idx < 0) /* not found (should not happen) */
5436 EMSG2(_(e_intern2), "set_string_option_direct()");
5437 return;
5441 if (options[idx].var == NULL) /* can't set hidden option */
5442 return;
5444 s = vim_strsave(val);
5445 if (s != NULL)
5447 varp = (char_u **)get_varp_scope(&(options[idx]),
5448 both ? OPT_LOCAL : opt_flags);
5449 if ((opt_flags & OPT_FREE) && (options[idx].flags & P_ALLOCED))
5450 free_string_option(*varp);
5451 *varp = s;
5453 /* For buffer/window local option may also set the global value. */
5454 if (both)
5455 set_string_option_global(idx, varp);
5457 options[idx].flags |= P_ALLOCED;
5459 /* When setting both values of a global option with a local value,
5460 * make the local value empty, so that the global value is used. */
5461 if (((int)options[idx].indir & PV_BOTH) && both)
5463 free_string_option(*varp);
5464 *varp = empty_option;
5466 # ifdef FEAT_EVAL
5467 if (set_sid != SID_NONE)
5468 set_option_scriptID_idx(idx, opt_flags,
5469 set_sid == 0 ? current_SID : set_sid);
5470 # endif
5475 * Set global value for string option when it's a local option.
5477 static void
5478 set_string_option_global(opt_idx, varp)
5479 int opt_idx; /* option index */
5480 char_u **varp; /* pointer to option variable */
5482 char_u **p, *s;
5484 /* the global value is always allocated */
5485 if (options[opt_idx].var == VAR_WIN)
5486 p = (char_u **)GLOBAL_WO(varp);
5487 else
5488 p = (char_u **)options[opt_idx].var;
5489 if (options[opt_idx].indir != PV_NONE
5490 && p != varp
5491 && (s = vim_strsave(*varp)) != NULL)
5493 free_string_option(*p);
5494 *p = s;
5497 #ifdef USE_MIGEMO
5498 if (varp == &p_migdict)
5499 reset_migemo(FALSE);
5500 #endif
5504 * Set a string option to a new value, and handle the effects.
5506 static void
5507 set_string_option(opt_idx, value, opt_flags)
5508 int opt_idx;
5509 char_u *value;
5510 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
5512 char_u *s;
5513 char_u **varp;
5514 char_u *oldval;
5516 if (options[opt_idx].var == NULL) /* don't set hidden option */
5517 return;
5519 s = vim_strsave(value);
5520 if (s != NULL)
5522 varp = (char_u **)get_varp_scope(&(options[opt_idx]),
5523 (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
5524 ? (((int)options[opt_idx].indir & PV_BOTH)
5525 ? OPT_GLOBAL : OPT_LOCAL)
5526 : opt_flags);
5527 oldval = *varp;
5528 *varp = s;
5529 if (did_set_string_option(opt_idx, varp, TRUE, oldval, NULL,
5530 opt_flags) == NULL)
5531 did_set_option(opt_idx, opt_flags, TRUE);
5536 * Handle string options that need some action to perform when changed.
5537 * Returns NULL for success, or an error message for an error.
5539 static char_u *
5540 did_set_string_option(opt_idx, varp, new_value_alloced, oldval, errbuf,
5541 opt_flags)
5542 int opt_idx; /* index in options[] table */
5543 char_u **varp; /* pointer to the option variable */
5544 int new_value_alloced; /* new value was allocated */
5545 char_u *oldval; /* previous value of the option */
5546 char_u *errbuf; /* buffer for errors, or NULL */
5547 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
5549 char_u *errmsg = NULL;
5550 char_u *s, *p;
5551 int did_chartab = FALSE;
5552 char_u **gvarp;
5553 long_u free_oldval = (options[opt_idx].flags & P_ALLOCED);
5554 #ifdef FEAT_GUI
5555 /* set when changing an option that only requires a redraw in the GUI */
5556 int redraw_gui_only = FALSE;
5557 #endif
5559 /* Get the global option to compare with, otherwise we would have to check
5560 * two values for all local options. */
5561 gvarp = (char_u **)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL);
5563 /* Disallow changing some options from secure mode */
5564 if ((secure
5565 #ifdef HAVE_SANDBOX
5566 || sandbox != 0
5567 #endif
5568 ) && (options[opt_idx].flags & P_SECURE))
5570 errmsg = e_secure;
5573 /* Check for a "normal" file name in some options. Disallow a path
5574 * separator (slash and/or backslash), wildcards and characters that are
5575 * often illegal in a file name. */
5576 else if ((options[opt_idx].flags & P_NFNAME)
5577 && vim_strpbrk(*varp, (char_u *)"/\\*?[|<>") != NULL)
5579 errmsg = e_invarg;
5582 /* 'term' */
5583 else if (varp == &T_NAME)
5585 if (T_NAME[0] == NUL)
5586 errmsg = (char_u *)N_("E529: Cannot set 'term' to empty string");
5587 #ifdef FEAT_GUI
5588 if (gui.in_use)
5589 errmsg = (char_u *)N_("E530: Cannot change term in GUI");
5590 else if (term_is_gui(T_NAME))
5591 errmsg = (char_u *)N_("E531: Use \":gui\" to start the GUI");
5592 #endif
5593 else if (set_termname(T_NAME) == FAIL)
5594 errmsg = (char_u *)N_("E522: Not found in termcap");
5595 else
5596 /* Screen colors may have changed. */
5597 redraw_later_clear();
5600 /* 'backupcopy' */
5601 else if (varp == &p_bkc)
5603 if (opt_strings_flags(p_bkc, p_bkc_values, &bkc_flags, TRUE) != OK)
5604 errmsg = e_invarg;
5605 if (((bkc_flags & BKC_AUTO) != 0)
5606 + ((bkc_flags & BKC_YES) != 0)
5607 + ((bkc_flags & BKC_NO) != 0) != 1)
5609 /* Must have exactly one of "auto", "yes" and "no". */
5610 (void)opt_strings_flags(oldval, p_bkc_values, &bkc_flags, TRUE);
5611 errmsg = e_invarg;
5615 /* 'backupext' and 'patchmode' */
5616 else if (varp == &p_bex || varp == &p_pm)
5618 if (STRCMP(*p_bex == '.' ? p_bex + 1 : p_bex,
5619 *p_pm == '.' ? p_pm + 1 : p_pm) == 0)
5620 errmsg = (char_u *)N_("E589: 'backupext' and 'patchmode' are equal");
5624 * 'isident', 'iskeyword', 'isprint or 'isfname' option: refill chartab[]
5625 * If the new option is invalid, use old value. 'lisp' option: refill
5626 * chartab[] for '-' char
5628 else if ( varp == &p_isi
5629 || varp == &(curbuf->b_p_isk)
5630 || varp == &p_isp
5631 || varp == &p_isf)
5633 if (init_chartab() == FAIL)
5635 did_chartab = TRUE; /* need to restore it below */
5636 errmsg = e_invarg; /* error in value */
5640 /* 'helpfile' */
5641 else if (varp == &p_hf)
5643 /* May compute new values for $VIM and $VIMRUNTIME */
5644 if (didset_vim)
5646 vim_setenv((char_u *)"VIM", (char_u *)"");
5647 didset_vim = FALSE;
5649 if (didset_vimruntime)
5651 vim_setenv((char_u *)"VIMRUNTIME", (char_u *)"");
5652 didset_vimruntime = FALSE;
5656 #ifdef FEAT_MULTI_LANG
5657 /* 'helplang' */
5658 else if (varp == &p_hlg)
5660 /* Check for "", "ab", "ab,cd", etc. */
5661 for (s = p_hlg; *s != NUL; s += 3)
5663 if (s[1] == NUL || ((s[2] != ',' || s[3] == NUL) && s[2] != NUL))
5665 errmsg = e_invarg;
5666 break;
5668 if (s[2] == NUL)
5669 break;
5672 #endif
5674 /* 'highlight' */
5675 else if (varp == &p_hl)
5677 if (highlight_changed() == FAIL)
5678 errmsg = e_invarg; /* invalid flags */
5681 /* 'nrformats' */
5682 else if (gvarp == &p_nf)
5684 if (check_opt_strings(*varp, p_nf_values, TRUE) != OK)
5685 errmsg = e_invarg;
5688 #ifdef FEAT_SESSION
5689 /* 'sessionoptions' */
5690 else if (varp == &p_ssop)
5692 if (opt_strings_flags(p_ssop, p_ssop_values, &ssop_flags, TRUE) != OK)
5693 errmsg = e_invarg;
5694 if ((ssop_flags & SSOP_CURDIR) && (ssop_flags & SSOP_SESDIR))
5696 /* Don't allow both "sesdir" and "curdir". */
5697 (void)opt_strings_flags(oldval, p_ssop_values, &ssop_flags, TRUE);
5698 errmsg = e_invarg;
5701 /* 'viewoptions' */
5702 else if (varp == &p_vop)
5704 if (opt_strings_flags(p_vop, p_ssop_values, &vop_flags, TRUE) != OK)
5705 errmsg = e_invarg;
5707 #endif
5709 /* 'scrollopt' */
5710 #ifdef FEAT_SCROLLBIND
5711 else if (varp == &p_sbo)
5713 if (check_opt_strings(p_sbo, p_scbopt_values, TRUE) != OK)
5714 errmsg = e_invarg;
5716 #endif
5718 /* 'ambiwidth' */
5719 #ifdef FEAT_MBYTE
5720 else if (varp == &p_ambw)
5722 if (check_opt_strings(p_ambw, p_ambw_values, FALSE) != OK)
5723 errmsg = e_invarg;
5725 #endif
5727 /* 'background' */
5728 else if (varp == &p_bg)
5730 if (check_opt_strings(p_bg, p_bg_values, FALSE) == OK)
5732 #ifdef FEAT_EVAL
5733 int dark = (*p_bg == 'd');
5734 #endif
5736 init_highlight(FALSE, FALSE);
5738 #ifdef FEAT_EVAL
5739 if (dark != (*p_bg == 'd')
5740 && get_var_value((char_u *)"g:colors_name") != NULL)
5742 /* The color scheme must have set 'background' back to another
5743 * value, that's not what we want here. Disable the color
5744 * scheme and set the colors again. */
5745 do_unlet((char_u *)"g:colors_name", TRUE);
5746 free_string_option(p_bg);
5747 p_bg = vim_strsave((char_u *)(dark ? "dark" : "light"));
5748 check_string_option(&p_bg);
5749 init_highlight(FALSE, FALSE);
5751 #endif
5753 else
5754 errmsg = e_invarg;
5757 /* 'wildmode' */
5758 else if (varp == &p_wim)
5760 if (check_opt_wim() == FAIL)
5761 errmsg = e_invarg;
5764 #ifdef FEAT_CMDL_COMPL
5765 /* 'wildoptions' */
5766 else if (varp == &p_wop)
5768 if (check_opt_strings(p_wop, p_wop_values, TRUE) != OK)
5769 errmsg = e_invarg;
5771 #endif
5773 #ifdef FEAT_WAK
5774 /* 'winaltkeys' */
5775 else if (varp == &p_wak)
5777 if (*p_wak == NUL
5778 || check_opt_strings(p_wak, p_wak_values, FALSE) != OK)
5779 errmsg = e_invarg;
5780 # ifdef FEAT_MENU
5781 # ifdef FEAT_GUI_MOTIF
5782 else if (gui.in_use)
5783 gui_motif_set_mnemonics(p_wak[0] == 'y' || p_wak[0] == 'm');
5784 # else
5785 # ifdef FEAT_GUI_GTK
5786 else if (gui.in_use)
5787 gui_gtk_set_mnemonics(p_wak[0] == 'y' || p_wak[0] == 'm');
5788 # endif
5789 # endif
5790 # endif
5792 #endif
5794 #ifdef FEAT_AUTOCMD
5795 /* 'eventignore' */
5796 else if (varp == &p_ei)
5798 if (check_ei() == FAIL)
5799 errmsg = e_invarg;
5801 #endif
5803 #ifdef FEAT_MBYTE
5804 /* 'encoding' and 'fileencoding' */
5805 else if (varp == &p_enc || gvarp == &p_fenc || varp == &p_tenc)
5807 if (gvarp == &p_fenc)
5809 if (!curbuf->b_p_ma && opt_flags != OPT_GLOBAL)
5810 errmsg = e_modifiable;
5811 else if (vim_strchr(*varp, ',') != NULL)
5812 /* No comma allowed in 'fileencoding'; catches confusing it
5813 * with 'fileencodings'. */
5814 errmsg = e_invarg;
5815 else
5817 # ifdef FEAT_TITLE
5818 /* May show a "+" in the title now. */
5819 redraw_titles();
5820 # endif
5821 /* Add 'fileencoding' to the swap file. */
5822 ml_setflags(curbuf);
5825 if (errmsg == NULL)
5827 /* canonize the value, so that STRCMP() can be used on it */
5828 p = enc_canonize(*varp);
5829 if (p != NULL)
5831 vim_free(*varp);
5832 *varp = p;
5834 if (varp == &p_enc)
5836 errmsg = mb_init();
5837 # ifdef FEAT_TITLE
5838 redraw_titles();
5839 # endif
5843 # if (defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)) || defined(FEAT_GUI_MACVIM)
5844 if (errmsg == NULL && varp == &p_tenc && gui.in_use)
5846 /* MacVim and GTK+ 2 GUIs force 'tenc' to UTF-8. */
5847 if (STRCMP(p_tenc, "utf-8") != 0)
5848 # if defined(FEAT_GUI_MACVIM)
5849 errmsg = (char_u *)N_("E617: Cannot be changed in MacVim");
5850 # else
5851 errmsg = (char_u *)N_("E617: Cannot be changed in the GTK+ 2 GUI");
5852 # endif
5854 # endif
5856 if (errmsg == NULL)
5858 # ifdef FEAT_KEYMAP
5859 /* When 'keymap' is used and 'encoding' changes, reload the keymap
5860 * (with another encoding). */
5861 if (varp == &p_enc && *curbuf->b_p_keymap != NUL)
5862 (void)keymap_init();
5863 # endif
5865 /* When 'termencoding' is not empty and 'encoding' changes or when
5866 * 'termencoding' changes, need to setup for keyboard input and
5867 * display output conversion. */
5868 if (((varp == &p_enc && *p_tenc != NUL) || varp == &p_tenc))
5870 convert_setup(&input_conv, p_tenc, p_enc);
5871 convert_setup(&output_conv, p_enc, p_tenc);
5874 # if defined(WIN3264) && defined(FEAT_MBYTE)
5875 /* $HOME may have characters in active code page. */
5876 if (varp == &p_enc)
5877 init_homedir();
5878 # endif
5881 #endif
5883 #if defined(FEAT_POSTSCRIPT)
5884 else if (varp == &p_penc)
5886 /* Canonize printencoding if VIM standard one */
5887 p = enc_canonize(p_penc);
5888 if (p != NULL)
5890 vim_free(p_penc);
5891 p_penc = p;
5893 else
5895 /* Ensure lower case and '-' for '_' */
5896 for (s = p_penc; *s != NUL; s++)
5898 if (*s == '_')
5899 *s = '-';
5900 else
5901 *s = TOLOWER_ASC(*s);
5905 #endif
5907 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
5908 else if (varp == &p_imak)
5910 if (gui.in_use && !im_xim_isvalid_imactivate())
5911 errmsg = e_invarg;
5913 #endif
5915 #ifdef FEAT_KEYMAP
5916 else if (varp == &curbuf->b_p_keymap)
5918 /* load or unload key mapping tables */
5919 errmsg = keymap_init();
5921 if (errmsg == NULL)
5923 if (*curbuf->b_p_keymap != NUL)
5925 /* Installed a new keymap, switch on using it. */
5926 curbuf->b_p_iminsert = B_IMODE_LMAP;
5927 if (curbuf->b_p_imsearch != B_IMODE_USE_INSERT)
5928 curbuf->b_p_imsearch = B_IMODE_LMAP;
5930 else
5932 /* Cleared the keymap, may reset 'iminsert' and 'imsearch'. */
5933 if (curbuf->b_p_iminsert == B_IMODE_LMAP)
5934 curbuf->b_p_iminsert = B_IMODE_NONE;
5935 if (curbuf->b_p_imsearch == B_IMODE_LMAP)
5936 curbuf->b_p_imsearch = B_IMODE_USE_INSERT;
5938 if ((opt_flags & OPT_LOCAL) == 0)
5940 set_iminsert_global();
5941 set_imsearch_global();
5943 # ifdef FEAT_WINDOWS
5944 status_redraw_curbuf();
5945 # endif
5948 #endif
5950 /* 'fileformat' */
5951 else if (gvarp == &p_ff)
5953 if (!curbuf->b_p_ma && !(opt_flags & OPT_GLOBAL))
5954 errmsg = e_modifiable;
5955 else if (check_opt_strings(*varp, p_ff_values, FALSE) != OK)
5956 errmsg = e_invarg;
5957 else
5959 /* may also change 'textmode' */
5960 if (get_fileformat(curbuf) == EOL_DOS)
5961 curbuf->b_p_tx = TRUE;
5962 else
5963 curbuf->b_p_tx = FALSE;
5964 #ifdef FEAT_TITLE
5965 redraw_titles();
5966 #endif
5967 /* update flag in swap file */
5968 ml_setflags(curbuf);
5972 /* 'fileformats' */
5973 else if (varp == &p_ffs)
5975 if (check_opt_strings(p_ffs, p_ff_values, TRUE) != OK)
5976 errmsg = e_invarg;
5977 else
5979 /* also change 'textauto' */
5980 if (*p_ffs == NUL)
5981 p_ta = FALSE;
5982 else
5983 p_ta = TRUE;
5987 #if defined(FEAT_CRYPT) && defined(FEAT_CMDHIST)
5988 /* 'cryptkey' */
5989 else if (gvarp == &p_key)
5991 /* Make sure the ":set" command doesn't show the new value in the
5992 * history. */
5993 remove_key_from_history();
5995 #endif
5997 /* 'matchpairs' */
5998 else if (gvarp == &p_mps)
6000 /* Check for "x:y,x:y" */
6001 for (p = *varp; *p != NUL; p += 4)
6003 if (p[1] != ':' || p[2] == NUL || (p[3] != NUL && p[3] != ','))
6005 errmsg = e_invarg;
6006 break;
6008 if (p[3] == NUL)
6009 break;
6013 #ifdef FEAT_COMMENTS
6014 /* 'comments' */
6015 else if (gvarp == &p_com)
6017 for (s = *varp; *s; )
6019 while (*s && *s != ':')
6021 if (vim_strchr((char_u *)COM_ALL, *s) == NULL
6022 && !VIM_ISDIGIT(*s) && *s != '-')
6024 errmsg = illegal_char(errbuf, *s);
6025 break;
6027 ++s;
6029 if (*s++ == NUL)
6030 errmsg = (char_u *)N_("E524: Missing colon");
6031 else if (*s == ',' || *s == NUL)
6032 errmsg = (char_u *)N_("E525: Zero length string");
6033 if (errmsg != NULL)
6034 break;
6035 while (*s && *s != ',')
6037 if (*s == '\\' && s[1] != NUL)
6038 ++s;
6039 ++s;
6041 s = skip_to_option_part(s);
6044 #endif
6046 /* 'listchars' */
6047 else if (varp == &p_lcs)
6049 errmsg = set_chars_option(varp);
6052 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6053 /* 'fillchars' */
6054 else if (varp == &p_fcs)
6056 errmsg = set_chars_option(varp);
6058 #endif
6060 #ifdef FEAT_CMDWIN
6061 /* 'cedit' */
6062 else if (varp == &p_cedit)
6064 errmsg = check_cedit();
6066 #endif
6068 /* 'verbosefile' */
6069 else if (varp == &p_vfile)
6071 verbose_stop();
6072 if (*p_vfile != NUL && verbose_open() == FAIL)
6073 errmsg = e_invarg;
6076 #ifdef FEAT_VIMINFO
6077 /* 'viminfo' */
6078 else if (varp == &p_viminfo)
6080 for (s = p_viminfo; *s;)
6082 /* Check it's a valid character */
6083 if (vim_strchr((char_u *)"!\"%'/:<@cfhnrs", *s) == NULL)
6085 errmsg = illegal_char(errbuf, *s);
6086 break;
6088 if (*s == 'n') /* name is always last one */
6090 break;
6092 else if (*s == 'r') /* skip until next ',' */
6094 while (*++s && *s != ',')
6097 else if (*s == '%')
6099 /* optional number */
6100 while (vim_isdigit(*++s))
6103 else if (*s == '!' || *s == 'h' || *s == 'c')
6104 ++s; /* no extra chars */
6105 else /* must have a number */
6107 while (vim_isdigit(*++s))
6110 if (!VIM_ISDIGIT(*(s - 1)))
6112 if (errbuf != NULL)
6114 sprintf((char *)errbuf,
6115 _("E526: Missing number after <%s>"),
6116 transchar_byte(*(s - 1)));
6117 errmsg = errbuf;
6119 else
6120 errmsg = (char_u *)"";
6121 break;
6124 if (*s == ',')
6125 ++s;
6126 else if (*s)
6128 if (errbuf != NULL)
6129 errmsg = (char_u *)N_("E527: Missing comma");
6130 else
6131 errmsg = (char_u *)"";
6132 break;
6135 if (*p_viminfo && errmsg == NULL && get_viminfo_parameter('\'') < 0)
6136 errmsg = (char_u *)N_("E528: Must specify a ' value");
6138 #endif /* FEAT_VIMINFO */
6140 /* terminal options */
6141 else if (istermoption(&options[opt_idx]) && full_screen)
6143 /* ":set t_Co=0" and ":set t_Co=1" do ":set t_Co=" */
6144 if (varp == &T_CCO)
6146 int colors = atoi((char *)T_CCO);
6148 /* Only reinitialize colors if t_Co value has really changed to
6149 * avoid expensive reload of colorscheme if t_Co is set to the
6150 * same value multiple times. */
6151 if (colors != t_colors)
6153 t_colors = colors;
6154 if (t_colors <= 1)
6156 if (new_value_alloced)
6157 vim_free(T_CCO);
6158 T_CCO = empty_option;
6160 /* We now have a different color setup, initialize it again. */
6161 init_highlight(TRUE, FALSE);
6164 ttest(FALSE);
6165 if (varp == &T_ME)
6167 out_str(T_ME);
6168 redraw_later(CLEAR);
6169 #if defined(MSDOS) || (defined(WIN3264) && !defined(FEAT_GUI_W32))
6170 /* Since t_me has been set, this probably means that the user
6171 * wants to use this as default colors. Need to reset default
6172 * background/foreground colors. */
6173 mch_set_normal_colors();
6174 #endif
6178 #ifdef FEAT_LINEBREAK
6179 /* 'showbreak' */
6180 else if (varp == &p_sbr)
6182 for (s = p_sbr; *s; )
6184 if (ptr2cells(s) != 1)
6185 errmsg = (char_u *)N_("E595: contains unprintable or wide character");
6186 mb_ptr_adv(s);
6189 #endif
6191 #ifdef FEAT_GUI
6192 /* 'guifont' */
6193 else if (varp == &p_guifont)
6195 if (gui.in_use)
6197 p = p_guifont;
6198 # if defined(FEAT_GUI_GTK)
6200 * Put up a font dialog and let the user select a new value.
6201 * If this is cancelled go back to the old value but don't
6202 * give an error message.
6204 if (STRCMP(p, "*") == 0)
6206 p = gui_mch_font_dialog(oldval);
6208 if (new_value_alloced)
6209 free_string_option(p_guifont);
6211 p_guifont = (p != NULL) ? p : vim_strsave(oldval);
6212 new_value_alloced = TRUE;
6214 # endif
6215 if (p != NULL && gui_init_font(p_guifont, FALSE) != OK)
6217 # if defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_PHOTON) \
6218 || defined(FEAT_GUI_MACVIM)
6219 if (STRCMP(p_guifont, "*") == 0)
6221 /* Dialog was cancelled: Keep the old value without giving
6222 * an error message. */
6223 if (new_value_alloced)
6224 free_string_option(p_guifont);
6225 p_guifont = vim_strsave(oldval);
6226 new_value_alloced = TRUE;
6228 else
6229 # endif
6230 errmsg = (char_u *)N_("E596: Invalid font(s)");
6233 redraw_gui_only = TRUE;
6235 # ifdef FEAT_XFONTSET
6236 else if (varp == &p_guifontset)
6238 if (STRCMP(p_guifontset, "*") == 0)
6239 errmsg = (char_u *)N_("E597: can't select fontset");
6240 else if (gui.in_use && gui_init_font(p_guifontset, TRUE) != OK)
6241 errmsg = (char_u *)N_("E598: Invalid fontset");
6242 redraw_gui_only = TRUE;
6244 # endif
6245 # ifdef FEAT_MBYTE
6246 else if (varp == &p_guifontwide)
6248 if (STRCMP(p_guifontwide, "*") == 0)
6249 errmsg = (char_u *)N_("E533: can't select wide font");
6250 else if (gui_get_wide_font() == FAIL)
6251 errmsg = (char_u *)N_("E534: Invalid wide font");
6252 redraw_gui_only = TRUE;
6254 # endif
6255 #endif
6257 #ifdef CURSOR_SHAPE
6258 /* 'guicursor' */
6259 else if (varp == &p_guicursor)
6260 errmsg = parse_shape_opt(SHAPE_CURSOR);
6261 #endif
6263 #ifdef FEAT_MOUSESHAPE
6264 /* 'mouseshape' */
6265 else if (varp == &p_mouseshape)
6267 errmsg = parse_shape_opt(SHAPE_MOUSE);
6268 update_mouseshape(-1);
6270 #endif
6272 #ifdef FEAT_PRINTER
6273 else if (varp == &p_popt)
6274 errmsg = parse_printoptions();
6275 # if defined(FEAT_MBYTE) && defined(FEAT_POSTSCRIPT)
6276 else if (varp == &p_pmfn)
6277 errmsg = parse_printmbfont();
6278 # endif
6279 #endif
6281 #ifdef FEAT_LANGMAP
6282 /* 'langmap' */
6283 else if (varp == &p_langmap)
6284 langmap_set();
6285 #endif
6287 #ifdef FEAT_LINEBREAK
6288 /* 'breakat' */
6289 else if (varp == &p_breakat)
6290 fill_breakat_flags();
6291 #endif
6293 #ifdef FEAT_TITLE
6294 /* 'titlestring' and 'iconstring' */
6295 else if (varp == &p_titlestring || varp == &p_iconstring)
6297 # ifdef FEAT_STL_OPT
6298 int flagval = (varp == &p_titlestring) ? STL_IN_TITLE : STL_IN_ICON;
6300 /* NULL => statusline syntax */
6301 if (vim_strchr(*varp, '%') && check_stl_option(*varp) == NULL)
6302 stl_syntax |= flagval;
6303 else
6304 stl_syntax &= ~flagval;
6305 # endif
6306 did_set_title(varp == &p_iconstring);
6309 #endif
6311 #ifdef FEAT_GUI
6312 /* 'guioptions' */
6313 else if (varp == &p_go)
6315 gui_init_which_components(oldval);
6316 redraw_gui_only = TRUE;
6318 #endif
6320 #if defined(FEAT_GUI_TABLINE)
6321 /* 'guitablabel' */
6322 else if (varp == &p_gtl)
6324 redraw_tabline = TRUE;
6325 redraw_gui_only = TRUE;
6327 /* 'guitabtooltip' */
6328 else if (varp == &p_gtt)
6330 redraw_gui_only = TRUE;
6332 #endif
6334 #if defined(FEAT_MOUSE_TTY) && (defined(UNIX) || defined(VMS))
6335 /* 'ttymouse' */
6336 else if (varp == &p_ttym)
6338 /* Switch the mouse off before changing the escape sequences used for
6339 * that. */
6340 mch_setmouse(FALSE);
6341 if (opt_strings_flags(p_ttym, p_ttym_values, &ttym_flags, FALSE) != OK)
6342 errmsg = e_invarg;
6343 else
6344 check_mouse_termcode();
6345 if (termcap_active)
6346 setmouse(); /* may switch it on again */
6348 #endif
6350 #ifdef FEAT_VISUAL
6351 /* 'selection' */
6352 else if (varp == &p_sel)
6354 if (*p_sel == NUL
6355 || check_opt_strings(p_sel, p_sel_values, FALSE) != OK)
6356 errmsg = e_invarg;
6359 /* 'selectmode' */
6360 else if (varp == &p_slm)
6362 if (check_opt_strings(p_slm, p_slm_values, TRUE) != OK)
6363 errmsg = e_invarg;
6365 #endif
6367 #ifdef FEAT_BROWSE
6368 /* 'browsedir' */
6369 else if (varp == &p_bsdir)
6371 if (check_opt_strings(p_bsdir, p_bsdir_values, FALSE) != OK
6372 && !mch_isdir(p_bsdir))
6373 errmsg = e_invarg;
6375 #endif
6377 #ifdef FEAT_VISUAL
6378 /* 'keymodel' */
6379 else if (varp == &p_km)
6381 if (check_opt_strings(p_km, p_km_values, TRUE) != OK)
6382 errmsg = e_invarg;
6383 else
6385 km_stopsel = (vim_strchr(p_km, 'o') != NULL);
6386 km_startsel = (vim_strchr(p_km, 'a') != NULL);
6389 #endif
6391 /* 'mousemodel' */
6392 else if (varp == &p_mousem)
6394 if (check_opt_strings(p_mousem, p_mousem_values, FALSE) != OK)
6395 errmsg = e_invarg;
6396 #if defined(FEAT_GUI_MOTIF) && defined(FEAT_MENU) && (XmVersion <= 1002)
6397 else if (*p_mousem != *oldval)
6398 /* Changed from "extend" to "popup" or "popup_setpos" or vv: need
6399 * to create or delete the popup menus. */
6400 gui_motif_update_mousemodel(root_menu);
6401 #endif
6404 /* 'switchbuf' */
6405 else if (varp == &p_swb)
6407 if (opt_strings_flags(p_swb, p_swb_values, &swb_flags, TRUE) != OK)
6408 errmsg = e_invarg;
6411 /* 'debug' */
6412 else if (varp == &p_debug)
6414 if (check_opt_strings(p_debug, p_debug_values, TRUE) != OK)
6415 errmsg = e_invarg;
6418 /* 'display' */
6419 else if (varp == &p_dy)
6421 if (opt_strings_flags(p_dy, p_dy_values, &dy_flags, TRUE) != OK)
6422 errmsg = e_invarg;
6423 else
6424 (void)init_chartab();
6428 #ifdef FEAT_VERTSPLIT
6429 /* 'eadirection' */
6430 else if (varp == &p_ead)
6432 if (check_opt_strings(p_ead, p_ead_values, FALSE) != OK)
6433 errmsg = e_invarg;
6435 #endif
6437 #ifdef FEAT_CLIPBOARD
6438 /* 'clipboard' */
6439 else if (varp == &p_cb)
6440 errmsg = check_clipboard_option();
6441 #endif
6443 #ifdef FEAT_SPELL
6444 /* When 'spelllang' or 'spellfile' is set and there is a window for this
6445 * buffer in which 'spell' is set load the wordlists. */
6446 else if (varp == &(curbuf->b_p_spl) || varp == &(curbuf->b_p_spf))
6448 win_T *wp;
6449 int l;
6451 if (varp == &(curbuf->b_p_spf))
6453 l = (int)STRLEN(curbuf->b_p_spf);
6454 if (l > 0 && (l < 4 || STRCMP(curbuf->b_p_spf + l - 4,
6455 ".add") != 0))
6456 errmsg = e_invarg;
6459 if (errmsg == NULL)
6461 FOR_ALL_WINDOWS(wp)
6462 if (wp->w_buffer == curbuf && wp->w_p_spell)
6464 errmsg = did_set_spelllang(curbuf);
6465 # ifdef FEAT_WINDOWS
6466 break;
6467 # endif
6471 /* When 'spellcapcheck' is set compile the regexp program. */
6472 else if (varp == &(curbuf->b_p_spc))
6474 errmsg = compile_cap_prog(curbuf);
6476 /* 'spellsuggest' */
6477 else if (varp == &p_sps)
6479 if (spell_check_sps() != OK)
6480 errmsg = e_invarg;
6482 /* 'mkspellmem' */
6483 else if (varp == &p_msm)
6485 if (spell_check_msm() != OK)
6486 errmsg = e_invarg;
6488 #endif
6490 #ifdef FEAT_QUICKFIX
6491 /* When 'bufhidden' is set, check for valid value. */
6492 else if (gvarp == &p_bh)
6494 if (check_opt_strings(curbuf->b_p_bh, p_bufhidden_values, FALSE) != OK)
6495 errmsg = e_invarg;
6498 /* When 'buftype' is set, check for valid value. */
6499 else if (gvarp == &p_bt)
6501 if (check_opt_strings(curbuf->b_p_bt, p_buftype_values, FALSE) != OK)
6502 errmsg = e_invarg;
6503 else
6505 # ifdef FEAT_WINDOWS
6506 if (curwin->w_status_height)
6508 curwin->w_redr_status = TRUE;
6509 redraw_later(VALID);
6511 # endif
6512 curbuf->b_help = (curbuf->b_p_bt[0] == 'h');
6515 #endif
6517 #ifdef FEAT_STL_OPT
6518 /* 'statusline' or 'rulerformat' */
6519 else if (gvarp == &p_stl || varp == &p_ruf)
6521 int wid;
6523 if (varp == &p_ruf) /* reset ru_wid first */
6524 ru_wid = 0;
6525 s = *varp;
6526 if (varp == &p_ruf && *s == '%')
6528 /* set ru_wid if 'ruf' starts with "%99(" */
6529 if (*++s == '-') /* ignore a '-' */
6530 s++;
6531 wid = getdigits(&s);
6532 if (wid && *s == '(' && (errmsg = check_stl_option(p_ruf)) == NULL)
6533 ru_wid = wid;
6534 else
6535 errmsg = check_stl_option(p_ruf);
6537 /* check 'statusline' only if it doesn't start with "%!" */
6538 else if (varp == &p_ruf || s[0] != '%' || s[1] != '!')
6539 errmsg = check_stl_option(s);
6540 if (varp == &p_ruf && errmsg == NULL)
6541 comp_col();
6543 #endif
6545 #ifdef FEAT_INS_EXPAND
6546 /* check if it is a valid value for 'complete' -- Acevedo */
6547 else if (gvarp == &p_cpt)
6549 for (s = *varp; *s;)
6551 while(*s == ',' || *s == ' ')
6552 s++;
6553 if (!*s)
6554 break;
6555 if (vim_strchr((char_u *)".wbuksid]tU", *s) == NULL)
6557 errmsg = illegal_char(errbuf, *s);
6558 break;
6560 if (*++s != NUL && *s != ',' && *s != ' ')
6562 if (s[-1] == 'k' || s[-1] == 's')
6564 /* skip optional filename after 'k' and 's' */
6565 while (*s && *s != ',' && *s != ' ')
6567 if (*s == '\\')
6568 ++s;
6569 ++s;
6572 else
6574 if (errbuf != NULL)
6576 sprintf((char *)errbuf,
6577 _("E535: Illegal character after <%c>"),
6578 *--s);
6579 errmsg = errbuf;
6581 else
6582 errmsg = (char_u *)"";
6583 break;
6589 /* 'completeopt' */
6590 else if (varp == &p_cot)
6592 if (check_opt_strings(p_cot, p_cot_values, TRUE) != OK)
6593 errmsg = e_invarg;
6595 #endif /* FEAT_INS_EXPAND */
6598 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
6599 else if (varp == &p_toolbar)
6601 if (opt_strings_flags(p_toolbar, p_toolbar_values,
6602 &toolbar_flags, TRUE) != OK)
6603 errmsg = e_invarg;
6604 else
6606 out_flush();
6607 gui_mch_show_toolbar((toolbar_flags &
6608 (TOOLBAR_TEXT | TOOLBAR_ICONS)) != 0);
6611 #endif
6613 #if defined(FEAT_TOOLBAR) && ((defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)) \
6614 || defined(FEAT_GUI_MACVIM))
6615 /* 'toolbariconsize': GTK+ 2 and MacVim only */
6616 else if (varp == &p_tbis)
6618 if (opt_strings_flags(p_tbis, p_tbis_values, &tbis_flags, FALSE) != OK)
6619 errmsg = e_invarg;
6620 else
6622 out_flush();
6623 gui_mch_show_toolbar((toolbar_flags &
6624 (TOOLBAR_TEXT | TOOLBAR_ICONS)) != 0);
6627 #endif
6629 /* 'pastetoggle': translate key codes like in a mapping */
6630 else if (varp == &p_pt)
6632 if (*p_pt)
6634 (void)replace_termcodes(p_pt, &p, TRUE, TRUE, FALSE);
6635 if (p != NULL)
6637 if (new_value_alloced)
6638 free_string_option(p_pt);
6639 p_pt = p;
6640 new_value_alloced = TRUE;
6645 /* 'backspace' */
6646 else if (varp == &p_bs)
6648 if (VIM_ISDIGIT(*p_bs))
6650 if (*p_bs >'2' || p_bs[1] != NUL)
6651 errmsg = e_invarg;
6653 else if (check_opt_strings(p_bs, p_bs_values, TRUE) != OK)
6654 errmsg = e_invarg;
6657 #ifdef FEAT_MBYTE
6658 /* 'casemap' */
6659 else if (varp == &p_cmp)
6661 if (opt_strings_flags(p_cmp, p_cmp_values, &cmp_flags, TRUE) != OK)
6662 errmsg = e_invarg;
6664 #endif
6666 #ifdef FEAT_DIFF
6667 /* 'diffopt' */
6668 else if (varp == &p_dip)
6670 if (diffopt_changed() == FAIL)
6671 errmsg = e_invarg;
6673 #endif
6675 #ifdef FEAT_FOLDING
6676 /* 'foldmethod' */
6677 else if (gvarp == &curwin->w_allbuf_opt.wo_fdm)
6679 if (check_opt_strings(*varp, p_fdm_values, FALSE) != OK
6680 || *curwin->w_p_fdm == NUL)
6681 errmsg = e_invarg;
6682 else
6683 foldUpdateAll(curwin);
6685 # ifdef FEAT_EVAL
6686 /* 'foldexpr' */
6687 else if (varp == &curwin->w_p_fde)
6689 if (foldmethodIsExpr(curwin))
6690 foldUpdateAll(curwin);
6692 # endif
6693 /* 'foldmarker' */
6694 else if (gvarp == &curwin->w_allbuf_opt.wo_fmr)
6696 p = vim_strchr(*varp, ',');
6697 if (p == NULL)
6698 errmsg = (char_u *)N_("E536: comma required");
6699 else if (p == *varp || p[1] == NUL)
6700 errmsg = e_invarg;
6701 else if (foldmethodIsMarker(curwin))
6702 foldUpdateAll(curwin);
6704 /* 'commentstring' */
6705 else if (gvarp == &p_cms)
6707 if (**varp != NUL && strstr((char *)*varp, "%s") == NULL)
6708 errmsg = (char_u *)N_("E537: 'commentstring' must be empty or contain %s");
6710 /* 'foldopen' */
6711 else if (varp == &p_fdo)
6713 if (opt_strings_flags(p_fdo, p_fdo_values, &fdo_flags, TRUE) != OK)
6714 errmsg = e_invarg;
6716 /* 'foldclose' */
6717 else if (varp == &p_fcl)
6719 if (check_opt_strings(p_fcl, p_fcl_values, TRUE) != OK)
6720 errmsg = e_invarg;
6722 /* 'foldignore' */
6723 else if (gvarp == &curwin->w_allbuf_opt.wo_fdi)
6725 if (foldmethodIsIndent(curwin))
6726 foldUpdateAll(curwin);
6728 #endif
6730 #ifdef FEAT_FULLSCREEN
6731 /* 'fuoptions' */
6732 else if (varp == &p_fuoptions)
6734 if (check_fuoptions(p_fuoptions, &fuoptions_flags,
6735 &fuoptions_bgcolor) != OK)
6736 errmsg = e_invarg;
6738 #endif
6740 #ifdef FEAT_VIRTUALEDIT
6741 /* 'virtualedit' */
6742 else if (varp == &p_ve)
6744 if (opt_strings_flags(p_ve, p_ve_values, &ve_flags, TRUE) != OK)
6745 errmsg = e_invarg;
6746 else if (STRCMP(p_ve, oldval) != 0)
6748 /* Recompute cursor position in case the new 've' setting
6749 * changes something. */
6750 validate_virtcol();
6751 coladvance(curwin->w_virtcol);
6754 #endif
6756 #if defined(FEAT_CSCOPE) && defined(FEAT_QUICKFIX)
6757 else if (varp == &p_csqf)
6759 if (p_csqf != NULL)
6761 p = p_csqf;
6762 while (*p != NUL)
6764 if (vim_strchr((char_u *)CSQF_CMDS, *p) == NULL
6765 || p[1] == NUL
6766 || vim_strchr((char_u *)CSQF_FLAGS, p[1]) == NULL
6767 || (p[2] != NUL && p[2] != ','))
6769 errmsg = e_invarg;
6770 break;
6772 else if (p[2] == NUL)
6773 break;
6774 else
6775 p += 3;
6779 #endif
6781 /* Options that are a list of flags. */
6782 else
6784 p = NULL;
6785 if (varp == &p_ww)
6786 p = (char_u *)WW_ALL;
6787 if (varp == &p_shm)
6788 p = (char_u *)SHM_ALL;
6789 else if (varp == &(p_cpo))
6790 p = (char_u *)CPO_ALL;
6791 else if (varp == &(curbuf->b_p_fo))
6792 p = (char_u *)FO_ALL;
6793 else if (varp == &p_mouse)
6795 #ifdef FEAT_MOUSE
6796 p = (char_u *)MOUSE_ALL;
6797 #else
6798 if (*p_mouse != NUL)
6799 errmsg = (char_u *)N_("E538: No mouse support");
6800 #endif
6802 #if defined(FEAT_GUI)
6803 else if (varp == &p_go)
6804 p = (char_u *)GO_ALL;
6805 #endif
6806 if (p != NULL)
6808 for (s = *varp; *s; ++s)
6809 if (vim_strchr(p, *s) == NULL)
6811 errmsg = illegal_char(errbuf, *s);
6812 break;
6818 * If error detected, restore the previous value.
6820 if (errmsg != NULL)
6822 if (new_value_alloced)
6823 free_string_option(*varp);
6824 *varp = oldval;
6826 * When resetting some values, need to act on it.
6828 if (did_chartab)
6829 (void)init_chartab();
6830 if (varp == &p_hl)
6831 (void)highlight_changed();
6833 else
6835 #ifdef FEAT_EVAL
6836 /* Remember where the option was set. */
6837 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
6838 #endif
6840 * Free string options that are in allocated memory.
6841 * Use "free_oldval", because recursiveness may change the flags under
6842 * our fingers (esp. init_highlight()).
6844 if (free_oldval)
6845 free_string_option(oldval);
6846 if (new_value_alloced)
6847 options[opt_idx].flags |= P_ALLOCED;
6848 else
6849 options[opt_idx].flags &= ~P_ALLOCED;
6851 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
6852 && ((int)options[opt_idx].indir & PV_BOTH))
6854 /* global option with local value set to use global value; free
6855 * the local value and make it empty */
6856 p = get_varp_scope(&(options[opt_idx]), OPT_LOCAL);
6857 free_string_option(*(char_u **)p);
6858 *(char_u **)p = empty_option;
6861 /* May set global value for local option. */
6862 else if (!(opt_flags & OPT_LOCAL) && opt_flags != OPT_GLOBAL)
6863 set_string_option_global(opt_idx, varp);
6865 #ifdef FEAT_AUTOCMD
6867 * Trigger the autocommand only after setting the flags.
6869 # ifdef FEAT_SYN_HL
6870 /* When 'syntax' is set, load the syntax of that name */
6871 if (varp == &(curbuf->b_p_syn))
6873 apply_autocmds(EVENT_SYNTAX, curbuf->b_p_syn,
6874 curbuf->b_fname, TRUE, curbuf);
6876 # endif
6877 else if (varp == &(curbuf->b_p_ft))
6879 /* 'filetype' is set, trigger the FileType autocommand */
6880 did_filetype = TRUE;
6881 apply_autocmds(EVENT_FILETYPE, curbuf->b_p_ft,
6882 curbuf->b_fname, TRUE, curbuf);
6884 #endif
6885 #ifdef FEAT_SPELL
6886 if (varp == &(curbuf->b_p_spl))
6888 char_u fname[200];
6891 * Source the spell/LANG.vim in 'runtimepath'.
6892 * They could set 'spellcapcheck' depending on the language.
6893 * Use the first name in 'spelllang' up to '_region' or
6894 * '.encoding'.
6896 for (p = curbuf->b_p_spl; *p != NUL; ++p)
6897 if (vim_strchr((char_u *)"_.,", *p) != NULL)
6898 break;
6899 vim_snprintf((char *)fname, 200, "spell/%.*s.vim",
6900 (int)(p - curbuf->b_p_spl), curbuf->b_p_spl);
6901 source_runtime(fname, TRUE);
6903 #endif
6906 #ifdef FEAT_MOUSE
6907 if (varp == &p_mouse)
6909 # ifdef FEAT_MOUSE_TTY
6910 if (*p_mouse == NUL)
6911 mch_setmouse(FALSE); /* switch mouse off */
6912 else
6913 # endif
6914 setmouse(); /* in case 'mouse' changed */
6916 #endif
6918 if (curwin->w_curswant != MAXCOL)
6919 curwin->w_set_curswant = TRUE; /* in case 'showbreak' changed */
6920 #ifdef FEAT_GUI
6921 /* check redraw when it's not a GUI option or the GUI is active. */
6922 if (!redraw_gui_only || gui.in_use)
6923 #endif
6924 check_redraw(options[opt_idx].flags);
6926 return errmsg;
6930 * Handle setting 'listchars' or 'fillchars'.
6931 * Returns error message, NULL if it's OK.
6933 static char_u *
6934 set_chars_option(varp)
6935 char_u **varp;
6937 int round, i, len, entries;
6938 char_u *p, *s;
6939 int c1, c2 = 0;
6940 struct charstab
6942 int *cp;
6943 char *name;
6945 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6946 static struct charstab filltab[] =
6948 {&fill_stl, "stl"},
6949 {&fill_stlnc, "stlnc"},
6950 {&fill_vert, "vert"},
6951 {&fill_fold, "fold"},
6952 {&fill_diff, "diff"},
6954 #endif
6955 static struct charstab lcstab[] =
6957 {&lcs_eol, "eol"},
6958 {&lcs_ext, "extends"},
6959 {&lcs_nbsp, "nbsp"},
6960 {&lcs_prec, "precedes"},
6961 {&lcs_tab2, "tab"},
6962 {&lcs_trail, "trail"},
6964 struct charstab *tab;
6966 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6967 if (varp == &p_lcs)
6968 #endif
6970 tab = lcstab;
6971 entries = sizeof(lcstab) / sizeof(struct charstab);
6973 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6974 else
6976 tab = filltab;
6977 entries = sizeof(filltab) / sizeof(struct charstab);
6979 #endif
6981 /* first round: check for valid value, second round: assign values */
6982 for (round = 0; round <= 1; ++round)
6984 if (round)
6986 /* After checking that the value is valid: set defaults: space for
6987 * 'fillchars', NUL for 'listchars' */
6988 for (i = 0; i < entries; ++i)
6989 *(tab[i].cp) = (varp == &p_lcs ? NUL : ' ');
6990 if (varp == &p_lcs)
6991 lcs_tab1 = NUL;
6992 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6993 else
6994 fill_diff = '-';
6995 #endif
6997 p = *varp;
6998 while (*p)
7000 for (i = 0; i < entries; ++i)
7002 len = (int)STRLEN(tab[i].name);
7003 if (STRNCMP(p, tab[i].name, len) == 0
7004 && p[len] == ':'
7005 && p[len + 1] != NUL)
7007 s = p + len + 1;
7008 #ifdef FEAT_MBYTE
7009 c1 = mb_ptr2char_adv(&s);
7010 if (mb_char2cells(c1) > 1)
7011 continue;
7012 #else
7013 c1 = *s++;
7014 #endif
7015 if (tab[i].cp == &lcs_tab2)
7017 if (*s == NUL)
7018 continue;
7019 #ifdef FEAT_MBYTE
7020 c2 = mb_ptr2char_adv(&s);
7021 if (mb_char2cells(c2) > 1)
7022 continue;
7023 #else
7024 c2 = *s++;
7025 #endif
7027 if (*s == ',' || *s == NUL)
7029 if (round)
7031 if (tab[i].cp == &lcs_tab2)
7033 lcs_tab1 = c1;
7034 lcs_tab2 = c2;
7036 else
7037 *(tab[i].cp) = c1;
7040 p = s;
7041 break;
7046 if (i == entries)
7047 return e_invarg;
7048 if (*p == ',')
7049 ++p;
7053 return NULL; /* no error */
7056 #ifdef FEAT_STL_OPT
7058 * Check validity of options with the 'statusline' format.
7059 * Return error message or NULL.
7061 char_u *
7062 check_stl_option(s)
7063 char_u *s;
7065 int itemcnt = 0;
7066 int groupdepth = 0;
7067 static char_u errbuf[80];
7069 while (*s && itemcnt < STL_MAX_ITEM)
7071 /* Check for valid keys after % sequences */
7072 while (*s && *s != '%')
7073 s++;
7074 if (!*s)
7075 break;
7076 s++;
7077 if (*s != '%' && *s != ')')
7078 ++itemcnt;
7079 if (*s == '%' || *s == STL_TRUNCMARK || *s == STL_MIDDLEMARK)
7081 s++;
7082 continue;
7084 if (*s == ')')
7086 s++;
7087 if (--groupdepth < 0)
7088 break;
7089 continue;
7091 if (*s == '-')
7092 s++;
7093 while (VIM_ISDIGIT(*s))
7094 s++;
7095 if (*s == STL_USER_HL)
7096 continue;
7097 if (*s == '.')
7099 s++;
7100 while (*s && VIM_ISDIGIT(*s))
7101 s++;
7103 if (*s == '(')
7105 groupdepth++;
7106 continue;
7108 if (vim_strchr(STL_ALL, *s) == NULL)
7110 return illegal_char(errbuf, *s);
7112 if (*s == '{')
7114 s++;
7115 while (*s != '}' && *s)
7116 s++;
7117 if (*s != '}')
7118 return (char_u *)N_("E540: Unclosed expression sequence");
7121 if (itemcnt >= STL_MAX_ITEM)
7122 return (char_u *)N_("E541: too many items");
7123 if (groupdepth != 0)
7124 return (char_u *)N_("E542: unbalanced groups");
7125 return NULL;
7127 #endif
7129 #ifdef FEAT_CLIPBOARD
7131 * Extract the items in the 'clipboard' option and set global values.
7133 static char_u *
7134 check_clipboard_option()
7136 int new_unnamed = FALSE;
7137 int new_autoselect = FALSE;
7138 int new_autoselectml = FALSE;
7139 int new_html = FALSE;
7140 regprog_T *new_exclude_prog = NULL;
7141 char_u *errmsg = NULL;
7142 char_u *p;
7144 for (p = p_cb; *p != NUL; )
7146 if (STRNCMP(p, "unnamed", 7) == 0 && (p[7] == ',' || p[7] == NUL))
7148 new_unnamed = TRUE;
7149 p += 7;
7151 else if (STRNCMP(p, "autoselect", 10) == 0
7152 && (p[10] == ',' || p[10] == NUL))
7154 new_autoselect = TRUE;
7155 p += 10;
7157 else if (STRNCMP(p, "autoselectml", 12) == 0
7158 && (p[12] == ',' || p[12] == NUL))
7160 new_autoselectml = TRUE;
7161 p += 12;
7163 else if (STRNCMP(p, "html", 4) == 0 && (p[4] == ',' || p[4] == NUL))
7165 new_html = TRUE;
7166 p += 4;
7168 else if (STRNCMP(p, "exclude:", 8) == 0 && new_exclude_prog == NULL)
7170 p += 8;
7171 new_exclude_prog = vim_regcomp(p, RE_MAGIC);
7172 if (new_exclude_prog == NULL)
7173 errmsg = e_invarg;
7174 break;
7176 else
7178 errmsg = e_invarg;
7179 break;
7181 if (*p == ',')
7182 ++p;
7184 if (errmsg == NULL)
7186 clip_unnamed = new_unnamed;
7187 clip_autoselect = new_autoselect;
7188 clip_autoselectml = new_autoselectml;
7189 clip_html = new_html;
7190 vim_free(clip_exclude_prog);
7191 clip_exclude_prog = new_exclude_prog;
7193 else
7194 vim_free(new_exclude_prog);
7196 return errmsg;
7198 #endif
7200 #ifdef FEAT_SPELL
7202 * Set curbuf->b_cap_prog to the regexp program for 'spellcapcheck'.
7203 * Return error message when failed, NULL when OK.
7205 static char_u *
7206 compile_cap_prog(buf)
7207 buf_T *buf;
7209 regprog_T *rp = buf->b_cap_prog;
7210 char_u *re;
7212 if (*buf->b_p_spc == NUL)
7213 buf->b_cap_prog = NULL;
7214 else
7216 /* Prepend a ^ so that we only match at one column */
7217 re = concat_str((char_u *)"^", buf->b_p_spc);
7218 if (re != NULL)
7220 buf->b_cap_prog = vim_regcomp(re, RE_MAGIC);
7221 if (buf->b_cap_prog == NULL)
7223 buf->b_cap_prog = rp; /* restore the previous program */
7224 return e_invarg;
7226 vim_free(re);
7230 vim_free(rp);
7231 return NULL;
7233 #endif
7235 #if defined(FEAT_EVAL) || defined(PROTO)
7237 * Set the scriptID for an option, taking care of setting the buffer- or
7238 * window-local value.
7240 static void
7241 set_option_scriptID_idx(opt_idx, opt_flags, id)
7242 int opt_idx;
7243 int opt_flags;
7244 int id;
7246 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
7247 int indir = (int)options[opt_idx].indir;
7249 /* Remember where the option was set. For local options need to do that
7250 * in the buffer or window structure. */
7251 if (both || (opt_flags & OPT_GLOBAL) || (indir & (PV_BUF|PV_WIN)) == 0)
7252 options[opt_idx].scriptID = id;
7253 if (both || (opt_flags & OPT_LOCAL))
7255 if (indir & PV_BUF)
7256 curbuf->b_p_scriptID[indir & PV_MASK] = id;
7257 else if (indir & PV_WIN)
7258 curwin->w_p_scriptID[indir & PV_MASK] = id;
7261 #endif
7264 * Set the value of a boolean option, and take care of side effects.
7265 * Returns NULL for success, or an error message for an error.
7267 static char_u *
7268 set_bool_option(opt_idx, varp, value, opt_flags)
7269 int opt_idx; /* index in options[] table */
7270 char_u *varp; /* pointer to the option variable */
7271 int value; /* new value */
7272 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
7274 int old_value = *(int *)varp;
7276 /* Disallow changing some options from secure mode */
7277 if ((secure
7278 #ifdef HAVE_SANDBOX
7279 || sandbox != 0
7280 #endif
7281 ) && (options[opt_idx].flags & P_SECURE))
7282 return e_secure;
7284 *(int *)varp = value; /* set the new value */
7285 #ifdef FEAT_EVAL
7286 /* Remember where the option was set. */
7287 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
7288 #endif
7290 #ifdef FEAT_GUI
7291 need_mouse_correct = TRUE;
7292 #endif
7294 /* May set global value for local option. */
7295 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0)
7296 *(int *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) = value;
7299 * Handle side effects of changing a bool option.
7302 /* 'compatible' */
7303 if ((int *)varp == &p_cp)
7305 compatible_set();
7308 /* 'list', 'number' */
7309 else if ((int *)varp == &curwin->w_p_list
7310 || (int *)varp == &curwin->w_p_nu)
7312 if (curwin->w_curswant != MAXCOL)
7313 curwin->w_set_curswant = TRUE;
7316 else if ((int *)varp == &curbuf->b_p_ro)
7318 /* when 'readonly' is reset globally, also reset readonlymode */
7319 if (!curbuf->b_p_ro && (opt_flags & OPT_LOCAL) == 0)
7320 readonlymode = FALSE;
7322 /* when 'readonly' is set may give W10 again */
7323 if (curbuf->b_p_ro)
7324 curbuf->b_did_warn = FALSE;
7326 #ifdef FEAT_TITLE
7327 redraw_titles();
7328 #endif
7331 #ifdef FEAT_TITLE
7332 /* when 'modifiable' is changed, redraw the window title */
7333 else if ((int *)varp == &curbuf->b_p_ma)
7335 redraw_titles();
7337 /* when 'endofline' is changed, redraw the window title */
7338 else if ((int *)varp == &curbuf->b_p_eol)
7340 redraw_titles();
7342 # ifdef FEAT_MBYTE
7343 /* when 'bomb' is changed, redraw the window title and tab page text */
7344 else if ((int *)varp == &curbuf->b_p_bomb)
7346 redraw_titles();
7348 # endif
7349 #endif
7351 /* when 'bin' is set also set some other options */
7352 else if ((int *)varp == &curbuf->b_p_bin)
7354 set_options_bin(old_value, curbuf->b_p_bin, opt_flags);
7355 #ifdef FEAT_TITLE
7356 redraw_titles();
7357 #endif
7360 #ifdef FEAT_AUTOCMD
7361 /* when 'buflisted' changes, trigger autocommands */
7362 else if ((int *)varp == &curbuf->b_p_bl && old_value != curbuf->b_p_bl)
7364 apply_autocmds(curbuf->b_p_bl ? EVENT_BUFADD : EVENT_BUFDELETE,
7365 NULL, NULL, TRUE, curbuf);
7367 #endif
7369 /* when 'swf' is set, create swapfile, when reset remove swapfile */
7370 else if ((int *)varp == &curbuf->b_p_swf)
7372 if (curbuf->b_p_swf && p_uc)
7373 ml_open_file(curbuf); /* create the swap file */
7374 else
7375 /* no need to reset curbuf->b_may_swap, ml_open_file() will check
7376 * buf->b_p_swf */
7377 mf_close_file(curbuf, TRUE); /* remove the swap file */
7380 /* when 'terse' is set change 'shortmess' */
7381 else if ((int *)varp == &p_terse)
7383 char_u *p;
7385 p = vim_strchr(p_shm, SHM_SEARCH);
7387 /* insert 's' in p_shm */
7388 if (p_terse && p == NULL)
7390 STRCPY(IObuff, p_shm);
7391 STRCAT(IObuff, "s");
7392 set_string_option_direct((char_u *)"shm", -1, IObuff, OPT_FREE, 0);
7394 /* remove 's' from p_shm */
7395 else if (!p_terse && p != NULL)
7396 STRMOVE(p, p + 1);
7399 /* when 'paste' is set or reset also change other options */
7400 else if ((int *)varp == &p_paste)
7402 paste_option_changed();
7405 /* when 'insertmode' is set from an autocommand need to do work here */
7406 else if ((int *)varp == &p_im)
7408 if (p_im)
7410 if ((State & INSERT) == 0)
7411 need_start_insertmode = TRUE;
7412 stop_insert_mode = FALSE;
7414 else
7416 need_start_insertmode = FALSE;
7417 stop_insert_mode = TRUE;
7418 if (restart_edit != 0 && mode_displayed)
7419 clear_cmdline = TRUE; /* remove "(insert)" */
7420 restart_edit = 0;
7424 /* when 'ignorecase' is set or reset and 'hlsearch' is set, redraw */
7425 else if ((int *)varp == &p_ic && p_hls)
7427 redraw_all_later(SOME_VALID);
7430 #ifdef FEAT_SEARCH_EXTRA
7431 /* when 'hlsearch' is set or reset: reset no_hlsearch */
7432 else if ((int *)varp == &p_hls)
7434 no_hlsearch = FALSE;
7436 #endif
7438 #ifdef FEAT_SCROLLBIND
7439 /* when 'scrollbind' is set: snapshot the current position to avoid a jump
7440 * at the end of normal_cmd() */
7441 else if ((int *)varp == &curwin->w_p_scb)
7443 if (curwin->w_p_scb)
7444 do_check_scrollbind(FALSE);
7446 #endif
7448 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
7449 /* There can be only one window with 'previewwindow' set. */
7450 else if ((int *)varp == &curwin->w_p_pvw)
7452 if (curwin->w_p_pvw)
7454 win_T *win;
7456 for (win = firstwin; win != NULL; win = win->w_next)
7457 if (win->w_p_pvw && win != curwin)
7459 curwin->w_p_pvw = FALSE;
7460 return (char_u *)N_("E590: A preview window already exists");
7464 #endif
7466 /* when 'textmode' is set or reset also change 'fileformat' */
7467 else if ((int *)varp == &curbuf->b_p_tx)
7469 set_fileformat(curbuf->b_p_tx ? EOL_DOS : EOL_UNIX, opt_flags);
7472 #ifdef FEAT_FULLSCREEN
7473 /* when 'fullscreen' changes, forward it to the gui */
7474 else if ((int *)varp == &p_fullscreen && gui.in_use)
7476 if (p_fullscreen && !old_value)
7478 guicolor_T fg, bg;
7479 if (fuoptions_flags & FUOPT_BGCOLOR_HLGROUP)
7481 /* Find out background color from colorscheme
7482 * via highlight group id */
7483 syn_id2colors(fuoptions_bgcolor, &fg, &bg);
7485 else
7487 /* set explicit background color */
7488 bg = fuoptions_bgcolor;
7490 gui_mch_enter_fullscreen(fuoptions_flags, bg);
7492 else if (!p_fullscreen && old_value)
7494 gui_mch_leave_fullscreen();
7497 #endif
7499 #if defined(FEAT_ANTIALIAS) && defined(FEAT_GUI_MACVIM)
7500 else if ((int *)varp == &p_antialias)
7502 gui_macvim_set_antialias(p_antialias);
7504 #endif
7506 /* when 'textauto' is set or reset also change 'fileformats' */
7507 else if ((int *)varp == &p_ta)
7508 set_string_option_direct((char_u *)"ffs", -1,
7509 p_ta ? (char_u *)DFLT_FFS_VIM : (char_u *)"",
7510 OPT_FREE | opt_flags, 0);
7513 * When 'lisp' option changes include/exclude '-' in
7514 * keyword characters.
7516 #ifdef FEAT_LISP
7517 else if (varp == (char_u *)&(curbuf->b_p_lisp))
7519 (void)buf_init_chartab(curbuf, FALSE); /* ignore errors */
7521 #endif
7523 #ifdef FEAT_TITLE
7524 /* when 'title' changed, may need to change the title; same for 'icon' */
7525 else if ((int *)varp == &p_title)
7527 did_set_title(FALSE);
7530 else if ((int *)varp == &p_icon)
7532 did_set_title(TRUE);
7534 #endif
7536 else if ((int *)varp == &curbuf->b_changed)
7538 if (!value)
7539 save_file_ff(curbuf); /* Buffer is unchanged */
7540 #ifdef FEAT_TITLE
7541 redraw_titles();
7542 #endif
7543 #ifdef FEAT_AUTOCMD
7544 modified_was_set = value;
7545 #endif
7548 #ifdef BACKSLASH_IN_FILENAME
7549 else if ((int *)varp == &p_ssl)
7551 if (p_ssl)
7553 psepc = '/';
7554 psepcN = '\\';
7555 pseps[0] = '/';
7557 else
7559 psepc = '\\';
7560 psepcN = '/';
7561 pseps[0] = '\\';
7564 /* need to adjust the file name arguments and buffer names. */
7565 buflist_slash_adjust();
7566 alist_slash_adjust();
7567 # ifdef FEAT_EVAL
7568 scriptnames_slash_adjust();
7569 # endif
7571 #endif
7573 /* If 'wrap' is set, set w_leftcol to zero. */
7574 else if ((int *)varp == &curwin->w_p_wrap)
7576 if (curwin->w_p_wrap)
7577 curwin->w_leftcol = 0;
7580 #ifdef FEAT_WINDOWS
7581 else if ((int *)varp == &p_ea)
7583 if (p_ea && !old_value)
7584 win_equal(curwin, FALSE, 0);
7586 #endif
7588 else if ((int *)varp == &p_wiv)
7591 * When 'weirdinvert' changed, set/reset 't_xs'.
7592 * Then set 'weirdinvert' according to value of 't_xs'.
7594 if (p_wiv && !old_value)
7595 T_XS = (char_u *)"y";
7596 else if (!p_wiv && old_value)
7597 T_XS = empty_option;
7598 p_wiv = (*T_XS != NUL);
7601 #ifdef FEAT_BEVAL
7602 else if ((int *)varp == &p_beval)
7604 if (p_beval == TRUE)
7605 gui_mch_enable_beval_area(balloonEval);
7606 else
7607 gui_mch_disable_beval_area(balloonEval);
7609 #endif
7611 #ifdef FEAT_AUTOCHDIR
7612 else if ((int *)varp == &p_acd)
7614 /* Change directories when the 'acd' option is set now. */
7615 DO_AUTOCHDIR
7617 #endif
7619 #ifdef FEAT_DIFF
7620 /* 'diff' */
7621 else if ((int *)varp == &curwin->w_p_diff)
7623 /* May add or remove the buffer from the list of diff buffers. */
7624 diff_buf_adjust(curwin);
7625 # ifdef FEAT_FOLDING
7626 if (foldmethodIsDiff(curwin))
7627 foldUpdateAll(curwin);
7628 # endif
7630 #endif
7632 #ifdef USE_IM_CONTROL
7633 /* 'imdisable' */
7634 else if ((int *)varp == &p_imdisable)
7636 /* Only de-activate it here, it will be enabled when changing mode. */
7637 if (p_imdisable)
7638 im_set_active(FALSE);
7639 #ifdef FEAT_GUI_MACVIM
7640 im_set_control(!p_imdisable);
7641 #endif
7643 #endif
7645 #ifdef FEAT_SPELL
7646 /* 'spell' */
7647 else if ((int *)varp == &curwin->w_p_spell)
7649 if (curwin->w_p_spell)
7651 char_u *errmsg = did_set_spelllang(curbuf);
7653 if (errmsg != NULL)
7654 EMSG(_(errmsg));
7657 #endif
7659 #ifdef FEAT_FKMAP
7660 else if ((int *)varp == &p_altkeymap)
7662 if (old_value != p_altkeymap)
7664 if (!p_altkeymap)
7666 p_hkmap = p_fkmap;
7667 p_fkmap = 0;
7669 else
7671 p_fkmap = p_hkmap;
7672 p_hkmap = 0;
7674 (void)init_chartab();
7679 * In case some second language keymapping options have changed, check
7680 * and correct the setting in a consistent way.
7684 * If hkmap or fkmap are set, reset Arabic keymapping.
7686 if ((p_hkmap || p_fkmap) && p_altkeymap)
7688 p_altkeymap = p_fkmap;
7689 # ifdef FEAT_ARABIC
7690 curwin->w_p_arab = FALSE;
7691 # endif
7692 (void)init_chartab();
7696 * If hkmap set, reset Farsi keymapping.
7698 if (p_hkmap && p_altkeymap)
7700 p_altkeymap = 0;
7701 p_fkmap = 0;
7702 # ifdef FEAT_ARABIC
7703 curwin->w_p_arab = FALSE;
7704 # endif
7705 (void)init_chartab();
7709 * If fkmap set, reset Hebrew keymapping.
7711 if (p_fkmap && !p_altkeymap)
7713 p_altkeymap = 1;
7714 p_hkmap = 0;
7715 # ifdef FEAT_ARABIC
7716 curwin->w_p_arab = FALSE;
7717 # endif
7718 (void)init_chartab();
7720 #endif
7722 #ifdef FEAT_ARABIC
7723 if ((int *)varp == &curwin->w_p_arab)
7725 if (curwin->w_p_arab)
7728 * 'arabic' is set, handle various sub-settings.
7730 if (!p_tbidi)
7732 /* set rightleft mode */
7733 if (!curwin->w_p_rl)
7735 curwin->w_p_rl = TRUE;
7736 changed_window_setting();
7739 /* Enable Arabic shaping (major part of what Arabic requires) */
7740 if (!p_arshape)
7742 p_arshape = TRUE;
7743 redraw_later_clear();
7747 /* Arabic requires a utf-8 encoding, inform the user if its not
7748 * set. */
7749 if (STRCMP(p_enc, "utf-8") != 0)
7751 static char *w_arabic = N_("W17: Arabic requires UTF-8, do ':set encoding=utf-8'");
7753 msg_source(hl_attr(HLF_W));
7754 MSG_ATTR(_(w_arabic), hl_attr(HLF_W));
7755 #ifdef FEAT_EVAL
7756 set_vim_var_string(VV_WARNINGMSG, (char_u *)_(w_arabic), -1);
7757 #endif
7760 # ifdef FEAT_MBYTE
7761 /* set 'delcombine' */
7762 p_deco = TRUE;
7763 # endif
7765 # ifdef FEAT_KEYMAP
7766 /* Force-set the necessary keymap for arabic */
7767 set_option_value((char_u *)"keymap", 0L, (char_u *)"arabic",
7768 OPT_LOCAL);
7769 # endif
7770 # ifdef FEAT_FKMAP
7771 p_altkeymap = 0;
7772 p_hkmap = 0;
7773 p_fkmap = 0;
7774 (void)init_chartab();
7775 # endif
7777 else
7780 * 'arabic' is reset, handle various sub-settings.
7782 if (!p_tbidi)
7784 /* reset rightleft mode */
7785 if (curwin->w_p_rl)
7787 curwin->w_p_rl = FALSE;
7788 changed_window_setting();
7791 /* 'arabicshape' isn't reset, it is a global option and
7792 * another window may still need it "on". */
7795 /* 'delcombine' isn't reset, it is a global option and another
7796 * window may still want it "on". */
7798 # ifdef FEAT_KEYMAP
7799 /* Revert to the default keymap */
7800 curbuf->b_p_iminsert = B_IMODE_NONE;
7801 curbuf->b_p_imsearch = B_IMODE_USE_INSERT;
7802 # endif
7804 if (curwin->w_curswant != MAXCOL)
7805 curwin->w_set_curswant = TRUE;
7808 else if ((int *)varp == &p_arshape)
7810 if (curwin->w_curswant != MAXCOL)
7811 curwin->w_set_curswant = TRUE;
7813 #endif
7816 * End of handling side effects for bool options.
7819 options[opt_idx].flags |= P_WAS_SET;
7821 comp_col(); /* in case 'ruler' or 'showcmd' changed */
7823 check_redraw(options[opt_idx].flags);
7825 return NULL;
7829 * Set the value of a number option, and take care of side effects.
7830 * Returns NULL for success, or an error message for an error.
7832 static char_u *
7833 set_num_option(opt_idx, varp, value, errbuf, errbuflen, opt_flags)
7834 int opt_idx; /* index in options[] table */
7835 char_u *varp; /* pointer to the option variable */
7836 long value; /* new value */
7837 char_u *errbuf; /* buffer for error messages */
7838 size_t errbuflen; /* length of "errbuf" */
7839 int opt_flags; /* OPT_LOCAL, OPT_GLOBAL and
7840 OPT_MODELINE */
7842 char_u *errmsg = NULL;
7843 long old_value = *(long *)varp;
7844 long old_Rows = Rows; /* remember old Rows */
7845 long old_Columns = Columns; /* remember old Columns */
7846 long *pp = (long *)varp;
7848 /* Disallow changing some options from secure mode. */
7849 if ((secure
7850 #ifdef HAVE_SANDBOX
7851 || sandbox != 0
7852 #endif
7853 ) && (options[opt_idx].flags & P_SECURE))
7854 return e_secure;
7856 *pp = value;
7857 #ifdef FEAT_EVAL
7858 /* Remember where the option was set. */
7859 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
7860 #endif
7861 #ifdef FEAT_GUI
7862 need_mouse_correct = TRUE;
7863 #endif
7865 if (curbuf->b_p_sw <= 0)
7867 errmsg = e_positive;
7868 curbuf->b_p_sw = curbuf->b_p_ts;
7872 * Number options that need some action when changed
7874 #ifdef FEAT_WINDOWS
7875 if (pp == &p_wh || pp == &p_hh)
7877 if (p_wh < 1)
7879 errmsg = e_positive;
7880 p_wh = 1;
7882 if (p_wmh > p_wh)
7884 errmsg = e_winheight;
7885 p_wh = p_wmh;
7887 if (p_hh < 0)
7889 errmsg = e_positive;
7890 p_hh = 0;
7893 /* Change window height NOW */
7894 if (lastwin != firstwin)
7896 if (pp == &p_wh && curwin->w_height < p_wh)
7897 win_setheight((int)p_wh);
7898 if (pp == &p_hh && curbuf->b_help && curwin->w_height < p_hh)
7899 win_setheight((int)p_hh);
7903 /* 'winminheight' */
7904 else if (pp == &p_wmh)
7906 if (p_wmh < 0)
7908 errmsg = e_positive;
7909 p_wmh = 0;
7911 if (p_wmh > p_wh)
7913 errmsg = e_winheight;
7914 p_wmh = p_wh;
7916 win_setminheight();
7919 # ifdef FEAT_VERTSPLIT
7920 else if (pp == &p_wiw)
7922 if (p_wiw < 1)
7924 errmsg = e_positive;
7925 p_wiw = 1;
7927 if (p_wmw > p_wiw)
7929 errmsg = e_winwidth;
7930 p_wiw = p_wmw;
7933 /* Change window width NOW */
7934 if (lastwin != firstwin && curwin->w_width < p_wiw)
7935 win_setwidth((int)p_wiw);
7938 /* 'winminwidth' */
7939 else if (pp == &p_wmw)
7941 if (p_wmw < 0)
7943 errmsg = e_positive;
7944 p_wmw = 0;
7946 if (p_wmw > p_wiw)
7948 errmsg = e_winwidth;
7949 p_wmw = p_wiw;
7951 win_setminheight();
7953 # endif
7955 #endif
7957 #ifdef FEAT_WINDOWS
7958 /* (re)set last window status line */
7959 else if (pp == &p_ls)
7961 last_status(FALSE);
7964 /* (re)set tab page line */
7965 else if (pp == &p_stal)
7967 shell_new_rows(); /* recompute window positions and heights */
7969 #endif
7971 #ifdef FEAT_GUI
7972 else if (pp == &p_linespace || pp == &p_charspace)
7974 /* Recompute gui.char_height and resize the Vim window to keep the
7975 * same number of lines. */
7976 if (gui.in_use && gui_mch_adjust_charheight() == OK)
7977 gui_set_shellsize(FALSE, FALSE, RESIZE_VERT);
7979 #endif
7981 #ifdef FEAT_FOLDING
7982 /* 'foldlevel' */
7983 else if (pp == &curwin->w_p_fdl)
7985 if (curwin->w_p_fdl < 0)
7986 curwin->w_p_fdl = 0;
7987 newFoldLevel();
7990 /* 'foldminlines' */
7991 else if (pp == &curwin->w_p_fml)
7993 foldUpdateAll(curwin);
7996 /* 'foldnestmax' */
7997 else if (pp == &curwin->w_p_fdn)
7999 if (foldmethodIsSyntax(curwin) || foldmethodIsIndent(curwin))
8000 foldUpdateAll(curwin);
8003 /* 'foldcolumn' */
8004 else if (pp == &curwin->w_p_fdc)
8006 if (curwin->w_p_fdc < 0)
8008 errmsg = e_positive;
8009 curwin->w_p_fdc = 0;
8011 else if (curwin->w_p_fdc > 12)
8013 errmsg = e_invarg;
8014 curwin->w_p_fdc = 12;
8018 /* 'shiftwidth' or 'tabstop' */
8019 else if (pp == &curbuf->b_p_sw || pp == &curbuf->b_p_ts)
8021 if (foldmethodIsIndent(curwin))
8022 foldUpdateAll(curwin);
8024 #endif /* FEAT_FOLDING */
8026 #ifdef FEAT_MBYTE
8027 /* 'maxcombine' */
8028 else if (pp == &p_mco)
8030 if (p_mco > MAX_MCO)
8031 p_mco = MAX_MCO;
8032 else if (p_mco < 0)
8033 p_mco = 0;
8034 screenclear(); /* will re-allocate the screen */
8036 #endif
8038 else if (pp == &curbuf->b_p_iminsert)
8040 if (curbuf->b_p_iminsert < 0 || curbuf->b_p_iminsert > B_IMODE_LAST)
8042 errmsg = e_invarg;
8043 curbuf->b_p_iminsert = B_IMODE_NONE;
8045 p_iminsert = curbuf->b_p_iminsert;
8046 if (termcap_active) /* don't do this in the alternate screen */
8047 showmode();
8048 #if defined(FEAT_WINDOWS) && defined(FEAT_KEYMAP)
8049 /* Show/unshow value of 'keymap' in status lines. */
8050 status_redraw_curbuf();
8051 #endif
8054 else if (pp == &p_window)
8056 if (p_window < 1)
8057 p_window = 1;
8058 else if (p_window >= Rows)
8059 p_window = Rows - 1;
8062 else if (pp == &curbuf->b_p_imsearch)
8064 if (curbuf->b_p_imsearch < -1 || curbuf->b_p_imsearch > B_IMODE_LAST)
8066 errmsg = e_invarg;
8067 curbuf->b_p_imsearch = B_IMODE_NONE;
8069 p_imsearch = curbuf->b_p_imsearch;
8072 #ifdef FEAT_TITLE
8073 /* if 'titlelen' has changed, redraw the title */
8074 else if (pp == &p_titlelen)
8076 if (p_titlelen < 0)
8078 errmsg = e_positive;
8079 p_titlelen = 85;
8081 if (starting != NO_SCREEN && old_value != p_titlelen)
8082 need_maketitle = TRUE;
8084 #endif
8086 /* if p_ch changed value, change the command line height */
8087 else if (pp == &p_ch)
8089 if (p_ch < 1)
8091 errmsg = e_positive;
8092 p_ch = 1;
8094 if (p_ch > Rows - min_rows() + 1)
8095 p_ch = Rows - min_rows() + 1;
8097 /* Only compute the new window layout when startup has been
8098 * completed. Otherwise the frame sizes may be wrong. */
8099 if (p_ch != old_value && full_screen
8100 #ifdef FEAT_GUI
8101 && !gui.starting
8102 #endif
8104 command_height();
8107 /* when 'updatecount' changes from zero to non-zero, open swap files */
8108 else if (pp == &p_uc)
8110 if (p_uc < 0)
8112 errmsg = e_positive;
8113 p_uc = 100;
8115 if (p_uc && !old_value)
8116 ml_open_files();
8118 #ifdef MZSCHEME_GUI_THREADS
8119 else if (pp == &p_mzq)
8120 mzvim_reset_timer();
8121 #endif
8123 /* sync undo before 'undolevels' changes */
8124 else if (pp == &p_ul)
8126 /* use the old value, otherwise u_sync() may not work properly */
8127 p_ul = old_value;
8128 u_sync(TRUE);
8129 p_ul = value;
8132 #ifdef FEAT_LINEBREAK
8133 /* 'numberwidth' must be positive */
8134 else if (pp == &curwin->w_p_nuw)
8136 if (curwin->w_p_nuw < 1)
8138 errmsg = e_positive;
8139 curwin->w_p_nuw = 1;
8141 if (curwin->w_p_nuw > 10)
8143 errmsg = e_invarg;
8144 curwin->w_p_nuw = 10;
8146 curwin->w_nrwidth_line_count = 0;
8148 #endif
8150 #if defined(FEAT_TRANSPARENCY)
8151 /* 'transparency' is a number between 0 and 100 */
8152 else if (pp == &p_transp)
8154 if (p_transp < 0 || p_transp > 100)
8156 errmsg = e_invarg;
8157 p_transp = old_value;
8159 else if (gui.in_use)
8160 gui_mch_new_colors();
8162 #endif
8165 * Check the bounds for numeric options here
8167 if (Rows < min_rows() && full_screen)
8169 if (errbuf != NULL)
8171 vim_snprintf((char *)errbuf, errbuflen,
8172 _("E593: Need at least %d lines"), min_rows());
8173 errmsg = errbuf;
8175 Rows = min_rows();
8177 if (Columns < MIN_COLUMNS && full_screen)
8179 if (errbuf != NULL)
8181 vim_snprintf((char *)errbuf, errbuflen,
8182 _("E594: Need at least %d columns"), MIN_COLUMNS);
8183 errmsg = errbuf;
8185 Columns = MIN_COLUMNS;
8187 /* Limit the values to avoid an overflow in Rows * Columns. */
8188 if (Columns > 10000)
8189 Columns = 10000;
8190 if (Rows > 1000)
8191 Rows = 1000;
8193 #ifdef DJGPP
8194 /* avoid a crash by checking for a too large value of 'columns' */
8195 if (old_Columns != Columns && full_screen && term_console)
8196 mch_check_columns();
8197 #endif
8200 * If the screen (shell) height has been changed, assume it is the
8201 * physical screenheight.
8203 if (old_Rows != Rows || old_Columns != Columns)
8205 /* Changing the screen size is not allowed while updating the screen. */
8206 if (updating_screen)
8207 *pp = old_value;
8208 else if (full_screen
8209 #ifdef FEAT_GUI
8210 && !gui.starting
8211 #endif
8213 set_shellsize((int)Columns, (int)Rows, TRUE);
8214 else
8216 /* Postpone the resizing; check the size and cmdline position for
8217 * messages. */
8218 check_shellsize();
8219 if (cmdline_row > Rows - p_ch && Rows > p_ch)
8220 cmdline_row = Rows - p_ch;
8222 if (p_window >= Rows || !option_was_set((char_u *)"window"))
8223 p_window = Rows - 1;
8226 if (curbuf->b_p_sts < 0)
8228 errmsg = e_positive;
8229 curbuf->b_p_sts = 0;
8231 if (curbuf->b_p_ts <= 0)
8233 errmsg = e_positive;
8234 curbuf->b_p_ts = 8;
8236 if (curbuf->b_p_tw < 0)
8238 errmsg = e_positive;
8239 curbuf->b_p_tw = 0;
8241 if (p_tm < 0)
8243 errmsg = e_positive;
8244 p_tm = 0;
8246 if ((curwin->w_p_scr <= 0
8247 || (curwin->w_p_scr > curwin->w_height
8248 && curwin->w_height > 0))
8249 && full_screen)
8251 if (pp == &(curwin->w_p_scr))
8253 if (curwin->w_p_scr != 0)
8254 errmsg = e_scroll;
8255 win_comp_scroll(curwin);
8257 /* If 'scroll' became invalid because of a side effect silently adjust
8258 * it. */
8259 else if (curwin->w_p_scr <= 0)
8260 curwin->w_p_scr = 1;
8261 else /* curwin->w_p_scr > curwin->w_height */
8262 curwin->w_p_scr = curwin->w_height;
8264 if (p_hi < 0)
8266 errmsg = e_positive;
8267 p_hi = 0;
8269 if (p_report < 0)
8271 errmsg = e_positive;
8272 p_report = 1;
8274 if ((p_sj < -100 || p_sj >= Rows) && full_screen)
8276 if (Rows != old_Rows) /* Rows changed, just adjust p_sj */
8277 p_sj = Rows / 2;
8278 else
8280 errmsg = e_scroll;
8281 p_sj = 1;
8284 if (p_so < 0 && full_screen)
8286 errmsg = e_scroll;
8287 p_so = 0;
8289 if (p_siso < 0 && full_screen)
8291 errmsg = e_positive;
8292 p_siso = 0;
8294 #ifdef FEAT_CMDWIN
8295 if (p_cwh < 1)
8297 errmsg = e_positive;
8298 p_cwh = 1;
8300 #endif
8301 if (p_ut < 0)
8303 errmsg = e_positive;
8304 p_ut = 2000;
8306 if (p_ss < 0)
8308 errmsg = e_positive;
8309 p_ss = 0;
8312 /* May set global value for local option. */
8313 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0)
8314 *(long *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) = *pp;
8316 options[opt_idx].flags |= P_WAS_SET;
8318 comp_col(); /* in case 'columns' or 'ls' changed */
8319 if (curwin->w_curswant != MAXCOL)
8320 curwin->w_set_curswant = TRUE; /* in case 'tabstop' changed */
8321 check_redraw(options[opt_idx].flags);
8323 return errmsg;
8327 * Called after an option changed: check if something needs to be redrawn.
8329 static void
8330 check_redraw(flags)
8331 long_u flags;
8333 /* Careful: P_RCLR and P_RALL are a combination of other P_ flags */
8334 int clear = (flags & P_RCLR) == P_RCLR;
8335 int all = ((flags & P_RALL) == P_RALL || clear);
8337 #ifdef FEAT_WINDOWS
8338 if ((flags & P_RSTAT) || all) /* mark all status lines dirty */
8339 status_redraw_all();
8340 #endif
8342 if ((flags & P_RBUF) || (flags & P_RWIN) || all)
8343 changed_window_setting();
8344 if (flags & P_RBUF)
8345 redraw_curbuf_later(NOT_VALID);
8346 if (clear)
8347 redraw_all_later(CLEAR);
8348 else if (all)
8349 redraw_all_later(NOT_VALID);
8353 * Find index for option 'arg'.
8354 * Return -1 if not found.
8356 static int
8357 findoption(arg)
8358 char_u *arg;
8360 int opt_idx;
8361 char *s, *p;
8362 static short quick_tab[27] = {0, 0}; /* quick access table */
8363 int is_term_opt;
8366 * For first call: Initialize the quick-access table.
8367 * It contains the index for the first option that starts with a certain
8368 * letter. There are 26 letters, plus the first "t_" option.
8370 if (quick_tab[1] == 0)
8372 p = options[0].fullname;
8373 for (opt_idx = 1; (s = options[opt_idx].fullname) != NULL; opt_idx++)
8375 if (s[0] != p[0])
8377 if (s[0] == 't' && s[1] == '_')
8378 quick_tab[26] = opt_idx;
8379 else
8380 quick_tab[CharOrdLow(s[0])] = opt_idx;
8382 p = s;
8387 * Check for name starting with an illegal character.
8389 #ifdef EBCDIC
8390 if (!islower(arg[0]))
8391 #else
8392 if (arg[0] < 'a' || arg[0] > 'z')
8393 #endif
8394 return -1;
8396 is_term_opt = (arg[0] == 't' && arg[1] == '_');
8397 if (is_term_opt)
8398 opt_idx = quick_tab[26];
8399 else
8400 opt_idx = quick_tab[CharOrdLow(arg[0])];
8401 for ( ; (s = options[opt_idx].fullname) != NULL; opt_idx++)
8403 if (STRCMP(arg, s) == 0) /* match full name */
8404 break;
8406 if (s == NULL && !is_term_opt)
8408 opt_idx = quick_tab[CharOrdLow(arg[0])];
8409 for ( ; options[opt_idx].fullname != NULL; opt_idx++)
8411 s = options[opt_idx].shortname;
8412 if (s != NULL && STRCMP(arg, s) == 0) /* match short name */
8413 break;
8414 s = NULL;
8417 if (s == NULL)
8418 opt_idx = -1;
8419 return opt_idx;
8422 #if defined(FEAT_EVAL) || defined(FEAT_TCL) || defined(FEAT_MZSCHEME)
8424 * Get the value for an option.
8426 * Returns:
8427 * Number or Toggle option: 1, *numval gets value.
8428 * String option: 0, *stringval gets allocated string.
8429 * Hidden Number or Toggle option: -1.
8430 * hidden String option: -2.
8431 * unknown option: -3.
8434 get_option_value(name, numval, stringval, opt_flags)
8435 char_u *name;
8436 long *numval;
8437 char_u **stringval; /* NULL when only checking existance */
8438 int opt_flags;
8440 int opt_idx;
8441 char_u *varp;
8443 opt_idx = findoption(name);
8444 if (opt_idx < 0) /* unknown option */
8445 return -3;
8447 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
8449 if (options[opt_idx].flags & P_STRING)
8451 if (varp == NULL) /* hidden option */
8452 return -2;
8453 if (stringval != NULL)
8455 #ifdef FEAT_CRYPT
8456 /* never return the value of the crypt key */
8457 if ((char_u **)varp == &curbuf->b_p_key
8458 && **(char_u **)(varp) != NUL)
8459 *stringval = vim_strsave((char_u *)"*****");
8460 else
8461 #endif
8462 *stringval = vim_strsave(*(char_u **)(varp));
8464 return 0;
8467 if (varp == NULL) /* hidden option */
8468 return -1;
8469 if (options[opt_idx].flags & P_NUM)
8470 *numval = *(long *)varp;
8471 else
8473 /* Special case: 'modified' is b_changed, but we also want to consider
8474 * it set when 'ff' or 'fenc' changed. */
8475 if ((int *)varp == &curbuf->b_changed)
8476 *numval = curbufIsChanged();
8477 else
8478 *numval = *(int *)varp;
8480 return 1;
8482 #endif
8485 * Set the value of option "name".
8486 * Use "string" for string options, use "number" for other options.
8488 void
8489 set_option_value(name, number, string, opt_flags)
8490 char_u *name;
8491 long number;
8492 char_u *string;
8493 int opt_flags; /* OPT_LOCAL or 0 (both) */
8495 int opt_idx;
8496 char_u *varp;
8497 long_u flags;
8499 opt_idx = findoption(name);
8500 if (opt_idx < 0)
8501 EMSG2(_("E355: Unknown option: %s"), name);
8502 else
8504 flags = options[opt_idx].flags;
8505 #ifdef HAVE_SANDBOX
8506 /* Disallow changing some options in the sandbox */
8507 if (sandbox > 0 && (flags & P_SECURE))
8509 EMSG(_(e_sandbox));
8510 return;
8512 #endif
8513 if (flags & P_STRING)
8514 set_string_option(opt_idx, string, opt_flags);
8515 else
8517 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
8518 if (varp != NULL) /* hidden option is not changed */
8520 if (number == 0 && string != NULL)
8522 int idx;
8524 /* Either we are given a string or we are setting option
8525 * to zero. */
8526 for (idx = 0; string[idx] == '0'; ++idx)
8528 if (string[idx] != NUL || idx == 0)
8530 /* There's another character after zeros or the string
8531 * is empty. In both cases, we are trying to set a
8532 * num option using a string. */
8533 EMSG3(_("E521: Number required: &%s = '%s'"),
8534 name, string);
8535 return; /* do nothing as we hit an error */
8539 if (flags & P_NUM)
8540 (void)set_num_option(opt_idx, varp, number,
8541 NULL, 0, opt_flags);
8542 else
8543 (void)set_bool_option(opt_idx, varp, (int)number,
8544 opt_flags);
8551 * Get the terminal code for a terminal option.
8552 * Returns NULL when not found.
8554 char_u *
8555 get_term_code(tname)
8556 char_u *tname;
8558 int opt_idx;
8559 char_u *varp;
8561 if (tname[0] != 't' || tname[1] != '_' ||
8562 tname[2] == NUL || tname[3] == NUL)
8563 return NULL;
8564 if ((opt_idx = findoption(tname)) >= 0)
8566 varp = get_varp(&(options[opt_idx]));
8567 if (varp != NULL)
8568 varp = *(char_u **)(varp);
8569 return varp;
8571 return find_termcode(tname + 2);
8574 char_u *
8575 get_highlight_default()
8577 int i;
8579 i = findoption((char_u *)"hl");
8580 if (i >= 0)
8581 return options[i].def_val[VI_DEFAULT];
8582 return (char_u *)NULL;
8585 #if defined(FEAT_MBYTE) || defined(PROTO)
8586 char_u *
8587 get_encoding_default()
8589 int i;
8591 i = findoption((char_u *)"enc");
8592 if (i >= 0)
8593 return options[i].def_val[VI_DEFAULT];
8594 return (char_u *)NULL;
8596 #endif
8599 * Translate a string like "t_xx", "<t_xx>" or "<S-Tab>" to a key number.
8601 static int
8602 find_key_option(arg)
8603 char_u *arg;
8605 int key;
8606 int modifiers;
8609 * Don't use get_special_key_code() for t_xx, we don't want it to call
8610 * add_termcap_entry().
8612 if (arg[0] == 't' && arg[1] == '_' && arg[2] && arg[3])
8613 key = TERMCAP2KEY(arg[2], arg[3]);
8614 else
8616 --arg; /* put arg at the '<' */
8617 modifiers = 0;
8618 key = find_special_key(&arg, &modifiers, TRUE, TRUE);
8619 if (modifiers) /* can't handle modifiers here */
8620 key = 0;
8622 return key;
8626 * if 'all' == 0: show changed options
8627 * if 'all' == 1: show all normal options
8628 * if 'all' == 2: show all terminal options
8630 static void
8631 showoptions(all, opt_flags)
8632 int all;
8633 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
8635 struct vimoption *p;
8636 int col;
8637 int isterm;
8638 char_u *varp;
8639 struct vimoption **items;
8640 int item_count;
8641 int run;
8642 int row, rows;
8643 int cols;
8644 int i;
8645 int len;
8647 #define INC 20
8648 #define GAP 3
8650 items = (struct vimoption **)alloc((unsigned)(sizeof(struct vimoption *) *
8651 PARAM_COUNT));
8652 if (items == NULL)
8653 return;
8655 /* Highlight title */
8656 if (all == 2)
8657 MSG_PUTS_TITLE(_("\n--- Terminal codes ---"));
8658 else if (opt_flags & OPT_GLOBAL)
8659 MSG_PUTS_TITLE(_("\n--- Global option values ---"));
8660 else if (opt_flags & OPT_LOCAL)
8661 MSG_PUTS_TITLE(_("\n--- Local option values ---"));
8662 else
8663 MSG_PUTS_TITLE(_("\n--- Options ---"));
8666 * do the loop two times:
8667 * 1. display the short items
8668 * 2. display the long items (only strings and numbers)
8670 for (run = 1; run <= 2 && !got_int; ++run)
8673 * collect the items in items[]
8675 item_count = 0;
8676 for (p = &options[0]; p->fullname != NULL; p++)
8678 varp = NULL;
8679 isterm = istermoption(p);
8680 if (opt_flags != 0)
8682 if (p->indir != PV_NONE && !isterm)
8683 varp = get_varp_scope(p, opt_flags);
8685 else
8686 varp = get_varp(p);
8687 if (varp != NULL
8688 && ((all == 2 && isterm)
8689 || (all == 1 && !isterm)
8690 || (all == 0 && !optval_default(p, varp))))
8692 if (p->flags & P_BOOL)
8693 len = 1; /* a toggle option fits always */
8694 else
8696 option_value2string(p, opt_flags);
8697 len = (int)STRLEN(p->fullname) + vim_strsize(NameBuff) + 1;
8699 if ((len <= INC - GAP && run == 1) ||
8700 (len > INC - GAP && run == 2))
8701 items[item_count++] = p;
8706 * display the items
8708 if (run == 1)
8710 cols = (Columns + GAP - 3) / INC;
8711 if (cols == 0)
8712 cols = 1;
8713 rows = (item_count + cols - 1) / cols;
8715 else /* run == 2 */
8716 rows = item_count;
8717 for (row = 0; row < rows && !got_int; ++row)
8719 msg_putchar('\n'); /* go to next line */
8720 if (got_int) /* 'q' typed in more */
8721 break;
8722 col = 0;
8723 for (i = row; i < item_count; i += rows)
8725 msg_col = col; /* make columns */
8726 showoneopt(items[i], opt_flags);
8727 col += INC;
8729 out_flush();
8730 ui_breakcheck();
8733 vim_free(items);
8737 * Return TRUE if option "p" has its default value.
8739 static int
8740 optval_default(p, varp)
8741 struct vimoption *p;
8742 char_u *varp;
8744 int dvi;
8746 if (varp == NULL)
8747 return TRUE; /* hidden option is always at default */
8748 dvi = ((p->flags & P_VI_DEF) || p_cp) ? VI_DEFAULT : VIM_DEFAULT;
8749 if (p->flags & P_NUM)
8750 return (*(long *)varp == (long)(long_i)p->def_val[dvi]);
8751 if (p->flags & P_BOOL)
8752 /* the cast to long is required for Manx C, long_i is
8753 * needed for MSVC */
8754 return (*(int *)varp == (int)(long)(long_i)p->def_val[dvi]);
8755 /* P_STRING */
8756 return (STRCMP(*(char_u **)varp, p->def_val[dvi]) == 0);
8760 * showoneopt: show the value of one option
8761 * must not be called with a hidden option!
8763 static void
8764 showoneopt(p, opt_flags)
8765 struct vimoption *p;
8766 int opt_flags; /* OPT_LOCAL or OPT_GLOBAL */
8768 char_u *varp;
8769 int save_silent = silent_mode;
8771 silent_mode = FALSE;
8772 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
8774 varp = get_varp_scope(p, opt_flags);
8776 /* for 'modified' we also need to check if 'ff' or 'fenc' changed. */
8777 if ((p->flags & P_BOOL) && ((int *)varp == &curbuf->b_changed
8778 ? !curbufIsChanged() : !*(int *)varp))
8779 MSG_PUTS("no");
8780 else if ((p->flags & P_BOOL) && *(int *)varp < 0)
8781 MSG_PUTS("--");
8782 else
8783 MSG_PUTS(" ");
8784 MSG_PUTS(p->fullname);
8785 if (!(p->flags & P_BOOL))
8787 msg_putchar('=');
8788 /* put value string in NameBuff */
8789 option_value2string(p, opt_flags);
8790 msg_outtrans(NameBuff);
8793 silent_mode = save_silent;
8794 info_message = FALSE;
8798 * Write modified options as ":set" commands to a file.
8800 * There are three values for "opt_flags":
8801 * OPT_GLOBAL: Write global option values and fresh values of
8802 * buffer-local options (used for start of a session
8803 * file).
8804 * OPT_GLOBAL + OPT_LOCAL: Idem, add fresh values of window-local options for
8805 * curwin (used for a vimrc file).
8806 * OPT_LOCAL: Write buffer-local option values for curbuf, fresh
8807 * and local values for window-local options of
8808 * curwin. Local values are also written when at the
8809 * default value, because a modeline or autocommand
8810 * may have set them when doing ":edit file" and the
8811 * user has set them back at the default or fresh
8812 * value.
8813 * When "local_only" is TRUE, don't write fresh
8814 * values, only local values (for ":mkview").
8815 * (fresh value = value used for a new buffer or window for a local option).
8817 * Return FAIL on error, OK otherwise.
8820 makeset(fd, opt_flags, local_only)
8821 FILE *fd;
8822 int opt_flags;
8823 int local_only;
8825 struct vimoption *p;
8826 char_u *varp; /* currently used value */
8827 char_u *varp_fresh; /* local value */
8828 char_u *varp_local = NULL; /* fresh value */
8829 char *cmd;
8830 int round;
8831 int pri;
8834 * The options that don't have a default (terminal name, columns, lines)
8835 * are never written. Terminal options are also not written.
8836 * Do the loop over "options[]" twice: once for options with the
8837 * P_PRI_MKRC flag and once without.
8839 for (pri = 1; pri >= 0; --pri)
8841 for (p = &options[0]; !istermoption(p); p++)
8842 if (!(p->flags & P_NO_MKRC)
8843 && !istermoption(p)
8844 && ((pri == 1) == ((p->flags & P_PRI_MKRC) != 0)))
8846 /* skip global option when only doing locals */
8847 if (p->indir == PV_NONE && !(opt_flags & OPT_GLOBAL))
8848 continue;
8850 /* Do not store options like 'bufhidden' and 'syntax' in a vimrc
8851 * file, they are always buffer-specific. */
8852 if ((opt_flags & OPT_GLOBAL) && (p->flags & P_NOGLOB))
8853 continue;
8855 /* Global values are only written when not at the default value. */
8856 varp = get_varp_scope(p, opt_flags);
8857 if ((opt_flags & OPT_GLOBAL) && optval_default(p, varp))
8858 continue;
8860 round = 2;
8861 if (p->indir != PV_NONE)
8863 if (p->var == VAR_WIN)
8865 /* skip window-local option when only doing globals */
8866 if (!(opt_flags & OPT_LOCAL))
8867 continue;
8868 /* When fresh value of window-local option is not at the
8869 * default, need to write it too. */
8870 if (!(opt_flags & OPT_GLOBAL) && !local_only)
8872 varp_fresh = get_varp_scope(p, OPT_GLOBAL);
8873 if (!optval_default(p, varp_fresh))
8875 round = 1;
8876 varp_local = varp;
8877 varp = varp_fresh;
8883 /* Round 1: fresh value for window-local options.
8884 * Round 2: other values */
8885 for ( ; round <= 2; varp = varp_local, ++round)
8887 if (round == 1 || (opt_flags & OPT_GLOBAL))
8888 cmd = "set";
8889 else
8890 cmd = "setlocal";
8892 if (p->flags & P_BOOL)
8894 if (put_setbool(fd, cmd, p->fullname, *(int *)varp) == FAIL)
8895 return FAIL;
8897 else if (p->flags & P_NUM)
8899 if (put_setnum(fd, cmd, p->fullname, (long *)varp) == FAIL)
8900 return FAIL;
8902 else /* P_STRING */
8904 #if defined(FEAT_SYN_HL) || defined(FEAT_AUTOCMD)
8905 int do_endif = FALSE;
8907 /* Don't set 'syntax' and 'filetype' again if the value is
8908 * already right, avoids reloading the syntax file. */
8909 if (
8910 # if defined(FEAT_SYN_HL)
8911 p->indir == PV_SYN
8912 # if defined(FEAT_AUTOCMD)
8914 # endif
8915 # endif
8916 # if defined(FEAT_AUTOCMD)
8917 p->indir == PV_FT
8918 # endif
8921 if (fprintf(fd, "if &%s != '%s'", p->fullname,
8922 *(char_u **)(varp)) < 0
8923 || put_eol(fd) < 0)
8924 return FAIL;
8925 do_endif = TRUE;
8927 #endif
8928 if (put_setstring(fd, cmd, p->fullname, (char_u **)varp,
8929 (p->flags & P_EXPAND) != 0) == FAIL)
8930 return FAIL;
8931 #if defined(FEAT_SYN_HL) || defined(FEAT_AUTOCMD)
8932 if (do_endif)
8934 if (put_line(fd, "endif") == FAIL)
8935 return FAIL;
8937 #endif
8942 return OK;
8945 #if defined(FEAT_FOLDING) || defined(PROTO)
8947 * Generate set commands for the local fold options only. Used when
8948 * 'sessionoptions' or 'viewoptions' contains "folds" but not "options".
8951 makefoldset(fd)
8952 FILE *fd;
8954 if (put_setstring(fd, "setlocal", "fdm", &curwin->w_p_fdm, FALSE) == FAIL
8955 # ifdef FEAT_EVAL
8956 || put_setstring(fd, "setlocal", "fde", &curwin->w_p_fde, FALSE)
8957 == FAIL
8958 # endif
8959 || put_setstring(fd, "setlocal", "fmr", &curwin->w_p_fmr, FALSE)
8960 == FAIL
8961 || put_setstring(fd, "setlocal", "fdi", &curwin->w_p_fdi, FALSE)
8962 == FAIL
8963 || put_setnum(fd, "setlocal", "fdl", &curwin->w_p_fdl) == FAIL
8964 || put_setnum(fd, "setlocal", "fml", &curwin->w_p_fml) == FAIL
8965 || put_setnum(fd, "setlocal", "fdn", &curwin->w_p_fdn) == FAIL
8966 || put_setbool(fd, "setlocal", "fen", curwin->w_p_fen) == FAIL
8968 return FAIL;
8970 return OK;
8972 #endif
8974 static int
8975 put_setstring(fd, cmd, name, valuep, expand)
8976 FILE *fd;
8977 char *cmd;
8978 char *name;
8979 char_u **valuep;
8980 int expand;
8982 char_u *s;
8983 char_u buf[MAXPATHL];
8985 if (fprintf(fd, "%s %s=", cmd, name) < 0)
8986 return FAIL;
8987 if (*valuep != NULL)
8989 /* Output 'pastetoggle' as key names. For other
8990 * options some characters have to be escaped with
8991 * CTRL-V or backslash */
8992 if (valuep == &p_pt)
8994 s = *valuep;
8995 while (*s != NUL)
8996 if (put_escstr(fd, str2special(&s, FALSE), 2) == FAIL)
8997 return FAIL;
8999 else if (expand)
9001 home_replace(NULL, *valuep, buf, MAXPATHL, FALSE);
9002 if (put_escstr(fd, buf, 2) == FAIL)
9003 return FAIL;
9005 else if (put_escstr(fd, *valuep, 2) == FAIL)
9006 return FAIL;
9008 if (put_eol(fd) < 0)
9009 return FAIL;
9010 return OK;
9013 static int
9014 put_setnum(fd, cmd, name, valuep)
9015 FILE *fd;
9016 char *cmd;
9017 char *name;
9018 long *valuep;
9020 long wc;
9022 if (fprintf(fd, "%s %s=", cmd, name) < 0)
9023 return FAIL;
9024 if (wc_use_keyname((char_u *)valuep, &wc))
9026 /* print 'wildchar' and 'wildcharm' as a key name */
9027 if (fputs((char *)get_special_key_name((int)wc, 0), fd) < 0)
9028 return FAIL;
9030 else if (fprintf(fd, "%ld", *valuep) < 0)
9031 return FAIL;
9032 if (put_eol(fd) < 0)
9033 return FAIL;
9034 return OK;
9037 static int
9038 put_setbool(fd, cmd, name, value)
9039 FILE *fd;
9040 char *cmd;
9041 char *name;
9042 int value;
9044 if (value < 0) /* global/local option using global value */
9045 return OK;
9046 if (fprintf(fd, "%s %s%s", cmd, value ? "" : "no", name) < 0
9047 || put_eol(fd) < 0)
9048 return FAIL;
9049 return OK;
9053 * Clear all the terminal options.
9054 * If the option has been allocated, free the memory.
9055 * Terminal options are never hidden or indirect.
9057 void
9058 clear_termoptions()
9061 * Reset a few things before clearing the old options. This may cause
9062 * outputting a few things that the terminal doesn't understand, but the
9063 * screen will be cleared later, so this is OK.
9065 #ifdef FEAT_MOUSE_TTY
9066 mch_setmouse(FALSE); /* switch mouse off */
9067 #endif
9068 #ifdef FEAT_TITLE
9069 mch_restore_title(3); /* restore window titles */
9070 #endif
9071 #if defined(FEAT_XCLIPBOARD) && defined(FEAT_GUI)
9072 /* When starting the GUI close the display opened for the clipboard.
9073 * After restoring the title, because that will need the display. */
9074 if (gui.starting)
9075 clear_xterm_clip();
9076 #endif
9077 #ifdef WIN3264
9079 * Check if this is allowed now.
9081 if (can_end_termcap_mode(FALSE) == TRUE)
9082 #endif
9083 stoptermcap(); /* stop termcap mode */
9085 free_termoptions();
9088 void
9089 free_termoptions()
9091 struct vimoption *p;
9093 for (p = &options[0]; p->fullname != NULL; p++)
9094 if (istermoption(p))
9096 if (p->flags & P_ALLOCED)
9097 free_string_option(*(char_u **)(p->var));
9098 if (p->flags & P_DEF_ALLOCED)
9099 free_string_option(p->def_val[VI_DEFAULT]);
9100 *(char_u **)(p->var) = empty_option;
9101 p->def_val[VI_DEFAULT] = empty_option;
9102 p->flags &= ~(P_ALLOCED|P_DEF_ALLOCED);
9104 clear_termcodes();
9108 * Free the string for one term option, if it was allocated.
9109 * Set the string to empty_option and clear allocated flag.
9110 * "var" points to the option value.
9112 void
9113 free_one_termoption(var)
9114 char_u *var;
9116 struct vimoption *p;
9118 for (p = &options[0]; p->fullname != NULL; p++)
9119 if (p->var == var)
9121 if (p->flags & P_ALLOCED)
9122 free_string_option(*(char_u **)(p->var));
9123 *(char_u **)(p->var) = empty_option;
9124 p->flags &= ~P_ALLOCED;
9125 break;
9130 * Set the terminal option defaults to the current value.
9131 * Used after setting the terminal name.
9133 void
9134 set_term_defaults()
9136 struct vimoption *p;
9138 for (p = &options[0]; p->fullname != NULL; p++)
9140 if (istermoption(p) && p->def_val[VI_DEFAULT] != *(char_u **)(p->var))
9142 if (p->flags & P_DEF_ALLOCED)
9144 free_string_option(p->def_val[VI_DEFAULT]);
9145 p->flags &= ~P_DEF_ALLOCED;
9147 p->def_val[VI_DEFAULT] = *(char_u **)(p->var);
9148 if (p->flags & P_ALLOCED)
9150 p->flags |= P_DEF_ALLOCED;
9151 p->flags &= ~P_ALLOCED; /* don't free the value now */
9158 * return TRUE if 'p' starts with 't_'
9160 static int
9161 istermoption(p)
9162 struct vimoption *p;
9164 return (p->fullname[0] == 't' && p->fullname[1] == '_');
9168 * Compute columns for ruler and shown command. 'sc_col' is also used to
9169 * decide what the maximum length of a message on the status line can be.
9170 * If there is a status line for the last window, 'sc_col' is independent
9171 * of 'ru_col'.
9174 #define COL_RULER 17 /* columns needed by standard ruler */
9176 void
9177 comp_col()
9179 #if defined(FEAT_CMDL_INFO) && defined(FEAT_WINDOWS)
9180 int last_has_status = (p_ls == 2 || (p_ls == 1 && firstwin != lastwin));
9182 sc_col = 0;
9183 ru_col = 0;
9184 if (p_ru)
9186 #ifdef FEAT_STL_OPT
9187 ru_col = (ru_wid ? ru_wid : COL_RULER) + 1;
9188 #else
9189 ru_col = COL_RULER + 1;
9190 #endif
9191 /* no last status line, adjust sc_col */
9192 if (!last_has_status)
9193 sc_col = ru_col;
9195 if (p_sc)
9197 sc_col += SHOWCMD_COLS;
9198 if (!p_ru || last_has_status) /* no need for separating space */
9199 ++sc_col;
9201 sc_col = Columns - sc_col;
9202 ru_col = Columns - ru_col;
9203 if (sc_col <= 0) /* screen too narrow, will become a mess */
9204 sc_col = 1;
9205 if (ru_col <= 0)
9206 ru_col = 1;
9207 #else
9208 sc_col = Columns;
9209 ru_col = Columns;
9210 #endif
9214 * Get pointer to option variable, depending on local or global scope.
9216 static char_u *
9217 get_varp_scope(p, opt_flags)
9218 struct vimoption *p;
9219 int opt_flags;
9221 if ((opt_flags & OPT_GLOBAL) && p->indir != PV_NONE)
9223 if (p->var == VAR_WIN)
9224 return (char_u *)GLOBAL_WO(get_varp(p));
9225 return p->var;
9227 if ((opt_flags & OPT_LOCAL) && ((int)p->indir & PV_BOTH))
9229 switch ((int)p->indir)
9231 #ifdef FEAT_QUICKFIX
9232 case PV_EFM: return (char_u *)&(curbuf->b_p_efm);
9233 case PV_GP: return (char_u *)&(curbuf->b_p_gp);
9234 case PV_MP: return (char_u *)&(curbuf->b_p_mp);
9235 #endif
9236 case PV_EP: return (char_u *)&(curbuf->b_p_ep);
9237 case PV_KP: return (char_u *)&(curbuf->b_p_kp);
9238 case PV_PATH: return (char_u *)&(curbuf->b_p_path);
9239 case PV_AR: return (char_u *)&(curbuf->b_p_ar);
9240 case PV_TAGS: return (char_u *)&(curbuf->b_p_tags);
9241 #ifdef FEAT_FIND_ID
9242 case PV_DEF: return (char_u *)&(curbuf->b_p_def);
9243 case PV_INC: return (char_u *)&(curbuf->b_p_inc);
9244 #endif
9245 #ifdef FEAT_INS_EXPAND
9246 case PV_DICT: return (char_u *)&(curbuf->b_p_dict);
9247 case PV_TSR: return (char_u *)&(curbuf->b_p_tsr);
9248 #endif
9249 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9250 case PV_BEXPR: return (char_u *)&(curbuf->b_p_bexpr);
9251 #endif
9252 #ifdef FEAT_STL_OPT
9253 case PV_STL: return (char_u *)&(curwin->w_p_stl);
9254 #endif
9256 return NULL; /* "cannot happen" */
9258 return get_varp(p);
9262 * Get pointer to option variable.
9264 static char_u *
9265 get_varp(p)
9266 struct vimoption *p;
9268 /* hidden option, always return NULL */
9269 if (p->var == NULL)
9270 return NULL;
9272 switch ((int)p->indir)
9274 case PV_NONE: return p->var;
9276 /* global option with local value: use local value if it's been set */
9277 case PV_EP: return *curbuf->b_p_ep != NUL
9278 ? (char_u *)&curbuf->b_p_ep : p->var;
9279 case PV_KP: return *curbuf->b_p_kp != NUL
9280 ? (char_u *)&curbuf->b_p_kp : p->var;
9281 case PV_PATH: return *curbuf->b_p_path != NUL
9282 ? (char_u *)&(curbuf->b_p_path) : p->var;
9283 case PV_AR: return curbuf->b_p_ar >= 0
9284 ? (char_u *)&(curbuf->b_p_ar) : p->var;
9285 case PV_TAGS: return *curbuf->b_p_tags != NUL
9286 ? (char_u *)&(curbuf->b_p_tags) : p->var;
9287 #ifdef FEAT_FIND_ID
9288 case PV_DEF: return *curbuf->b_p_def != NUL
9289 ? (char_u *)&(curbuf->b_p_def) : p->var;
9290 case PV_INC: return *curbuf->b_p_inc != NUL
9291 ? (char_u *)&(curbuf->b_p_inc) : p->var;
9292 #endif
9293 #ifdef FEAT_INS_EXPAND
9294 case PV_DICT: return *curbuf->b_p_dict != NUL
9295 ? (char_u *)&(curbuf->b_p_dict) : p->var;
9296 case PV_TSR: return *curbuf->b_p_tsr != NUL
9297 ? (char_u *)&(curbuf->b_p_tsr) : p->var;
9298 #endif
9299 #ifdef FEAT_QUICKFIX
9300 case PV_EFM: return *curbuf->b_p_efm != NUL
9301 ? (char_u *)&(curbuf->b_p_efm) : p->var;
9302 case PV_GP: return *curbuf->b_p_gp != NUL
9303 ? (char_u *)&(curbuf->b_p_gp) : p->var;
9304 case PV_MP: return *curbuf->b_p_mp != NUL
9305 ? (char_u *)&(curbuf->b_p_mp) : p->var;
9306 #endif
9307 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9308 case PV_BEXPR: return *curbuf->b_p_bexpr != NUL
9309 ? (char_u *)&(curbuf->b_p_bexpr) : p->var;
9310 #endif
9311 #ifdef FEAT_STL_OPT
9312 case PV_STL: return *curwin->w_p_stl != NUL
9313 ? (char_u *)&(curwin->w_p_stl) : p->var;
9314 #endif
9316 #ifdef FEAT_ARABIC
9317 case PV_ARAB: return (char_u *)&(curwin->w_p_arab);
9318 #endif
9319 case PV_LIST: return (char_u *)&(curwin->w_p_list);
9320 #ifdef FEAT_SPELL
9321 case PV_SPELL: return (char_u *)&(curwin->w_p_spell);
9322 #endif
9323 #ifdef FEAT_SYN_HL
9324 case PV_CUC: return (char_u *)&(curwin->w_p_cuc);
9325 case PV_CUL: return (char_u *)&(curwin->w_p_cul);
9326 #endif
9327 #ifdef FEAT_DIFF
9328 case PV_DIFF: return (char_u *)&(curwin->w_p_diff);
9329 #endif
9330 #ifdef FEAT_FOLDING
9331 case PV_FDC: return (char_u *)&(curwin->w_p_fdc);
9332 case PV_FEN: return (char_u *)&(curwin->w_p_fen);
9333 case PV_FDI: return (char_u *)&(curwin->w_p_fdi);
9334 case PV_FDL: return (char_u *)&(curwin->w_p_fdl);
9335 case PV_FDM: return (char_u *)&(curwin->w_p_fdm);
9336 case PV_FML: return (char_u *)&(curwin->w_p_fml);
9337 case PV_FDN: return (char_u *)&(curwin->w_p_fdn);
9338 # ifdef FEAT_EVAL
9339 case PV_FDE: return (char_u *)&(curwin->w_p_fde);
9340 case PV_FDT: return (char_u *)&(curwin->w_p_fdt);
9341 # endif
9342 case PV_FMR: return (char_u *)&(curwin->w_p_fmr);
9343 #endif
9344 case PV_NU: return (char_u *)&(curwin->w_p_nu);
9345 #ifdef FEAT_LINEBREAK
9346 case PV_NUW: return (char_u *)&(curwin->w_p_nuw);
9347 #endif
9348 #ifdef FEAT_WINDOWS
9349 case PV_WFH: return (char_u *)&(curwin->w_p_wfh);
9350 #endif
9351 #ifdef FEAT_VERTSPLIT
9352 case PV_WFW: return (char_u *)&(curwin->w_p_wfw);
9353 #endif
9354 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
9355 case PV_PVW: return (char_u *)&(curwin->w_p_pvw);
9356 #endif
9357 #ifdef FEAT_RIGHTLEFT
9358 case PV_RL: return (char_u *)&(curwin->w_p_rl);
9359 case PV_RLC: return (char_u *)&(curwin->w_p_rlc);
9360 #endif
9361 case PV_SCROLL: return (char_u *)&(curwin->w_p_scr);
9362 case PV_WRAP: return (char_u *)&(curwin->w_p_wrap);
9363 #ifdef FEAT_LINEBREAK
9364 case PV_LBR: return (char_u *)&(curwin->w_p_lbr);
9365 #endif
9366 #ifdef FEAT_SCROLLBIND
9367 case PV_SCBIND: return (char_u *)&(curwin->w_p_scb);
9368 #endif
9370 case PV_AI: return (char_u *)&(curbuf->b_p_ai);
9371 case PV_BIN: return (char_u *)&(curbuf->b_p_bin);
9372 #ifdef FEAT_MBYTE
9373 case PV_BOMB: return (char_u *)&(curbuf->b_p_bomb);
9374 #endif
9375 #if defined(FEAT_QUICKFIX)
9376 case PV_BH: return (char_u *)&(curbuf->b_p_bh);
9377 case PV_BT: return (char_u *)&(curbuf->b_p_bt);
9378 #endif
9379 case PV_BL: return (char_u *)&(curbuf->b_p_bl);
9380 case PV_CI: return (char_u *)&(curbuf->b_p_ci);
9381 #ifdef FEAT_CINDENT
9382 case PV_CIN: return (char_u *)&(curbuf->b_p_cin);
9383 case PV_CINK: return (char_u *)&(curbuf->b_p_cink);
9384 case PV_CINO: return (char_u *)&(curbuf->b_p_cino);
9385 #endif
9386 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
9387 case PV_CINW: return (char_u *)&(curbuf->b_p_cinw);
9388 #endif
9389 #ifdef FEAT_COMMENTS
9390 case PV_COM: return (char_u *)&(curbuf->b_p_com);
9391 #endif
9392 #ifdef FEAT_FOLDING
9393 case PV_CMS: return (char_u *)&(curbuf->b_p_cms);
9394 #endif
9395 #ifdef FEAT_INS_EXPAND
9396 case PV_CPT: return (char_u *)&(curbuf->b_p_cpt);
9397 #endif
9398 #ifdef FEAT_COMPL_FUNC
9399 case PV_CFU: return (char_u *)&(curbuf->b_p_cfu);
9400 case PV_OFU: return (char_u *)&(curbuf->b_p_ofu);
9401 #endif
9402 case PV_EOL: return (char_u *)&(curbuf->b_p_eol);
9403 case PV_ET: return (char_u *)&(curbuf->b_p_et);
9404 #ifdef FEAT_MBYTE
9405 case PV_FENC: return (char_u *)&(curbuf->b_p_fenc);
9406 #endif
9407 case PV_FF: return (char_u *)&(curbuf->b_p_ff);
9408 #ifdef FEAT_AUTOCMD
9409 case PV_FT: return (char_u *)&(curbuf->b_p_ft);
9410 #endif
9411 case PV_FO: return (char_u *)&(curbuf->b_p_fo);
9412 case PV_FLP: return (char_u *)&(curbuf->b_p_flp);
9413 case PV_IMI: return (char_u *)&(curbuf->b_p_iminsert);
9414 case PV_IMS: return (char_u *)&(curbuf->b_p_imsearch);
9415 case PV_INF: return (char_u *)&(curbuf->b_p_inf);
9416 case PV_ISK: return (char_u *)&(curbuf->b_p_isk);
9417 #ifdef FEAT_FIND_ID
9418 # ifdef FEAT_EVAL
9419 case PV_INEX: return (char_u *)&(curbuf->b_p_inex);
9420 # endif
9421 #endif
9422 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
9423 case PV_INDE: return (char_u *)&(curbuf->b_p_inde);
9424 case PV_INDK: return (char_u *)&(curbuf->b_p_indk);
9425 #endif
9426 #ifdef FEAT_EVAL
9427 case PV_FEX: return (char_u *)&(curbuf->b_p_fex);
9428 #endif
9429 #ifdef FEAT_CRYPT
9430 case PV_KEY: return (char_u *)&(curbuf->b_p_key);
9431 #endif
9432 #ifdef FEAT_LISP
9433 case PV_LISP: return (char_u *)&(curbuf->b_p_lisp);
9434 #endif
9435 case PV_ML: return (char_u *)&(curbuf->b_p_ml);
9436 case PV_MPS: return (char_u *)&(curbuf->b_p_mps);
9437 #ifdef FEAT_GUI_MACVIM
9438 case PV_MMTA: return (char_u *)&(curbuf->b_p_mmta);
9439 #endif
9440 case PV_MA: return (char_u *)&(curbuf->b_p_ma);
9441 #ifdef USE_MIGEMO
9442 case PV_MIG: return (char_u *)&(curbuf->b_p_migemo);
9443 #endif
9444 case PV_MOD: return (char_u *)&(curbuf->b_changed);
9445 case PV_NF: return (char_u *)&(curbuf->b_p_nf);
9446 #ifdef FEAT_OSFILETYPE
9447 case PV_OFT: return (char_u *)&(curbuf->b_p_oft);
9448 #endif
9449 case PV_PI: return (char_u *)&(curbuf->b_p_pi);
9450 #ifdef FEAT_TEXTOBJ
9451 case PV_QE: return (char_u *)&(curbuf->b_p_qe);
9452 #endif
9453 case PV_RO: return (char_u *)&(curbuf->b_p_ro);
9454 #ifdef FEAT_SMARTINDENT
9455 case PV_SI: return (char_u *)&(curbuf->b_p_si);
9456 #endif
9457 #ifndef SHORT_FNAME
9458 case PV_SN: return (char_u *)&(curbuf->b_p_sn);
9459 #endif
9460 case PV_STS: return (char_u *)&(curbuf->b_p_sts);
9461 #ifdef FEAT_SEARCHPATH
9462 case PV_SUA: return (char_u *)&(curbuf->b_p_sua);
9463 #endif
9464 case PV_SWF: return (char_u *)&(curbuf->b_p_swf);
9465 #ifdef FEAT_SYN_HL
9466 case PV_SMC: return (char_u *)&(curbuf->b_p_smc);
9467 case PV_SYN: return (char_u *)&(curbuf->b_p_syn);
9468 #endif
9469 #ifdef FEAT_SPELL
9470 case PV_SPC: return (char_u *)&(curbuf->b_p_spc);
9471 case PV_SPF: return (char_u *)&(curbuf->b_p_spf);
9472 case PV_SPL: return (char_u *)&(curbuf->b_p_spl);
9473 #endif
9474 case PV_SW: return (char_u *)&(curbuf->b_p_sw);
9475 case PV_TS: return (char_u *)&(curbuf->b_p_ts);
9476 case PV_TW: return (char_u *)&(curbuf->b_p_tw);
9477 case PV_TX: return (char_u *)&(curbuf->b_p_tx);
9478 case PV_WM: return (char_u *)&(curbuf->b_p_wm);
9479 #ifdef FEAT_KEYMAP
9480 case PV_KMAP: return (char_u *)&(curbuf->b_p_keymap);
9481 #endif
9482 default: EMSG(_("E356: get_varp ERROR"));
9484 /* always return a valid pointer to avoid a crash! */
9485 return (char_u *)&(curbuf->b_p_wm);
9489 * Get the value of 'equalprg', either the buffer-local one or the global one.
9491 char_u *
9492 get_equalprg()
9494 if (*curbuf->b_p_ep == NUL)
9495 return p_ep;
9496 return curbuf->b_p_ep;
9499 #if defined(FEAT_WINDOWS) || defined(PROTO)
9501 * Copy options from one window to another.
9502 * Used when splitting a window.
9504 void
9505 win_copy_options(wp_from, wp_to)
9506 win_T *wp_from;
9507 win_T *wp_to;
9509 copy_winopt(&wp_from->w_onebuf_opt, &wp_to->w_onebuf_opt);
9510 copy_winopt(&wp_from->w_allbuf_opt, &wp_to->w_allbuf_opt);
9511 # ifdef FEAT_RIGHTLEFT
9512 # ifdef FEAT_FKMAP
9513 /* Is this right? */
9514 wp_to->w_farsi = wp_from->w_farsi;
9515 # endif
9516 # endif
9518 #endif
9521 * Copy the options from one winopt_T to another.
9522 * Doesn't free the old option values in "to", use clear_winopt() for that.
9523 * The 'scroll' option is not copied, because it depends on the window height.
9524 * The 'previewwindow' option is reset, there can be only one preview window.
9526 void
9527 copy_winopt(from, to)
9528 winopt_T *from;
9529 winopt_T *to;
9531 #ifdef FEAT_ARABIC
9532 to->wo_arab = from->wo_arab;
9533 #endif
9534 to->wo_list = from->wo_list;
9535 to->wo_nu = from->wo_nu;
9536 #ifdef FEAT_LINEBREAK
9537 to->wo_nuw = from->wo_nuw;
9538 #endif
9539 #ifdef FEAT_RIGHTLEFT
9540 to->wo_rl = from->wo_rl;
9541 to->wo_rlc = vim_strsave(from->wo_rlc);
9542 #endif
9543 #ifdef FEAT_STL_OPT
9544 to->wo_stl = vim_strsave(from->wo_stl);
9545 #endif
9546 to->wo_wrap = from->wo_wrap;
9547 #ifdef FEAT_LINEBREAK
9548 to->wo_lbr = from->wo_lbr;
9549 #endif
9550 #ifdef FEAT_SCROLLBIND
9551 to->wo_scb = from->wo_scb;
9552 #endif
9553 #ifdef FEAT_SPELL
9554 to->wo_spell = from->wo_spell;
9555 #endif
9556 #ifdef FEAT_SYN_HL
9557 to->wo_cuc = from->wo_cuc;
9558 to->wo_cul = from->wo_cul;
9559 #endif
9560 #ifdef FEAT_DIFF
9561 to->wo_diff = from->wo_diff;
9562 #endif
9563 #ifdef FEAT_FOLDING
9564 to->wo_fdc = from->wo_fdc;
9565 to->wo_fen = from->wo_fen;
9566 to->wo_fdi = vim_strsave(from->wo_fdi);
9567 to->wo_fml = from->wo_fml;
9568 to->wo_fdl = from->wo_fdl;
9569 to->wo_fdm = vim_strsave(from->wo_fdm);
9570 to->wo_fdn = from->wo_fdn;
9571 # ifdef FEAT_EVAL
9572 to->wo_fde = vim_strsave(from->wo_fde);
9573 to->wo_fdt = vim_strsave(from->wo_fdt);
9574 # endif
9575 to->wo_fmr = vim_strsave(from->wo_fmr);
9576 #endif
9577 check_winopt(to); /* don't want NULL pointers */
9581 * Check string options in a window for a NULL value.
9583 void
9584 check_win_options(win)
9585 win_T *win;
9587 check_winopt(&win->w_onebuf_opt);
9588 check_winopt(&win->w_allbuf_opt);
9592 * Check for NULL pointers in a winopt_T and replace them with empty_option.
9594 void
9595 check_winopt(wop)
9596 winopt_T *wop UNUSED;
9598 #ifdef FEAT_FOLDING
9599 check_string_option(&wop->wo_fdi);
9600 check_string_option(&wop->wo_fdm);
9601 # ifdef FEAT_EVAL
9602 check_string_option(&wop->wo_fde);
9603 check_string_option(&wop->wo_fdt);
9604 # endif
9605 check_string_option(&wop->wo_fmr);
9606 #endif
9607 #ifdef FEAT_RIGHTLEFT
9608 check_string_option(&wop->wo_rlc);
9609 #endif
9610 #ifdef FEAT_STL_OPT
9611 check_string_option(&wop->wo_stl);
9612 #endif
9616 * Free the allocated memory inside a winopt_T.
9618 void
9619 clear_winopt(wop)
9620 winopt_T *wop UNUSED;
9622 #ifdef FEAT_FOLDING
9623 clear_string_option(&wop->wo_fdi);
9624 clear_string_option(&wop->wo_fdm);
9625 # ifdef FEAT_EVAL
9626 clear_string_option(&wop->wo_fde);
9627 clear_string_option(&wop->wo_fdt);
9628 # endif
9629 clear_string_option(&wop->wo_fmr);
9630 #endif
9631 #ifdef FEAT_RIGHTLEFT
9632 clear_string_option(&wop->wo_rlc);
9633 #endif
9634 #ifdef FEAT_STL_OPT
9635 clear_string_option(&wop->wo_stl);
9636 #endif
9640 * Copy global option values to local options for one buffer.
9641 * Used when creating a new buffer and sometimes when entering a buffer.
9642 * flags:
9643 * BCO_ENTER We will enter the buf buffer.
9644 * BCO_ALWAYS Always copy the options, but only set b_p_initialized when
9645 * appropriate.
9646 * BCO_NOHELP Don't copy the values to a help buffer.
9648 void
9649 buf_copy_options(buf, flags)
9650 buf_T *buf;
9651 int flags;
9653 int should_copy = TRUE;
9654 char_u *save_p_isk = NULL; /* init for GCC */
9655 int dont_do_help;
9656 int did_isk = FALSE;
9659 * Don't do anything of the buffer is invalid.
9661 if (buf == NULL || !buf_valid(buf))
9662 return;
9665 * Skip this when the option defaults have not been set yet. Happens when
9666 * main() allocates the first buffer.
9668 if (p_cpo != NULL)
9671 * Always copy when entering and 'cpo' contains 'S'.
9672 * Don't copy when already initialized.
9673 * Don't copy when 'cpo' contains 's' and not entering.
9674 * 'S' BCO_ENTER initialized 's' should_copy
9675 * yes yes X X TRUE
9676 * yes no yes X FALSE
9677 * no X yes X FALSE
9678 * X no no yes FALSE
9679 * X no no no TRUE
9680 * no yes no X TRUE
9682 if ((vim_strchr(p_cpo, CPO_BUFOPTGLOB) == NULL || !(flags & BCO_ENTER))
9683 && (buf->b_p_initialized
9684 || (!(flags & BCO_ENTER)
9685 && vim_strchr(p_cpo, CPO_BUFOPT) != NULL)))
9686 should_copy = FALSE;
9688 if (should_copy || (flags & BCO_ALWAYS))
9690 /* Don't copy the options specific to a help buffer when
9691 * BCO_NOHELP is given or the options were initialized already
9692 * (jumping back to a help file with CTRL-T or CTRL-O) */
9693 dont_do_help = ((flags & BCO_NOHELP) && buf->b_help)
9694 || buf->b_p_initialized;
9695 if (dont_do_help) /* don't free b_p_isk */
9697 save_p_isk = buf->b_p_isk;
9698 buf->b_p_isk = NULL;
9701 * Always free the allocated strings.
9702 * If not already initialized, set 'readonly' and copy 'fileformat'.
9704 if (!buf->b_p_initialized)
9706 free_buf_options(buf, TRUE);
9707 buf->b_p_ro = FALSE; /* don't copy readonly */
9708 buf->b_p_tx = p_tx;
9709 #ifdef FEAT_MBYTE
9710 buf->b_p_fenc = vim_strsave(p_fenc);
9711 #endif
9712 buf->b_p_ff = vim_strsave(p_ff);
9713 #if defined(FEAT_QUICKFIX)
9714 buf->b_p_bh = empty_option;
9715 buf->b_p_bt = empty_option;
9716 #endif
9718 else
9719 free_buf_options(buf, FALSE);
9721 buf->b_p_ai = p_ai;
9722 buf->b_p_ai_nopaste = p_ai_nopaste;
9723 buf->b_p_sw = p_sw;
9724 buf->b_p_tw = p_tw;
9725 buf->b_p_tw_nopaste = p_tw_nopaste;
9726 buf->b_p_tw_nobin = p_tw_nobin;
9727 buf->b_p_wm = p_wm;
9728 buf->b_p_wm_nopaste = p_wm_nopaste;
9729 buf->b_p_wm_nobin = p_wm_nobin;
9730 buf->b_p_bin = p_bin;
9731 #ifdef FEAT_MBYTE
9732 buf->b_p_bomb = p_bomb;
9733 #endif
9734 buf->b_p_et = p_et;
9735 buf->b_p_et_nobin = p_et_nobin;
9736 buf->b_p_ml = p_ml;
9737 buf->b_p_ml_nobin = p_ml_nobin;
9738 buf->b_p_inf = p_inf;
9739 buf->b_p_swf = p_swf;
9740 #ifdef FEAT_INS_EXPAND
9741 buf->b_p_cpt = vim_strsave(p_cpt);
9742 #endif
9743 #ifdef FEAT_COMPL_FUNC
9744 buf->b_p_cfu = vim_strsave(p_cfu);
9745 buf->b_p_ofu = vim_strsave(p_ofu);
9746 #endif
9747 buf->b_p_sts = p_sts;
9748 buf->b_p_sts_nopaste = p_sts_nopaste;
9749 #ifndef SHORT_FNAME
9750 buf->b_p_sn = p_sn;
9751 #endif
9752 #ifdef FEAT_COMMENTS
9753 buf->b_p_com = vim_strsave(p_com);
9754 #endif
9755 #ifdef FEAT_FOLDING
9756 buf->b_p_cms = vim_strsave(p_cms);
9757 #endif
9758 buf->b_p_fo = vim_strsave(p_fo);
9759 buf->b_p_flp = vim_strsave(p_flp);
9760 buf->b_p_nf = vim_strsave(p_nf);
9761 buf->b_p_mps = vim_strsave(p_mps);
9762 #ifdef FEAT_SMARTINDENT
9763 buf->b_p_si = p_si;
9764 #endif
9765 buf->b_p_ci = p_ci;
9766 #ifdef FEAT_CINDENT
9767 buf->b_p_cin = p_cin;
9768 buf->b_p_cink = vim_strsave(p_cink);
9769 buf->b_p_cino = vim_strsave(p_cino);
9770 #endif
9771 #ifdef FEAT_AUTOCMD
9772 /* Don't copy 'filetype', it must be detected */
9773 buf->b_p_ft = empty_option;
9774 #endif
9775 #ifdef FEAT_OSFILETYPE
9776 buf->b_p_oft = vim_strsave(p_oft);
9777 #endif
9778 buf->b_p_pi = p_pi;
9779 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
9780 buf->b_p_cinw = vim_strsave(p_cinw);
9781 #endif
9782 #ifdef FEAT_LISP
9783 buf->b_p_lisp = p_lisp;
9784 #endif
9785 #ifdef FEAT_SYN_HL
9786 /* Don't copy 'syntax', it must be set */
9787 buf->b_p_syn = empty_option;
9788 buf->b_p_smc = p_smc;
9789 #endif
9790 #ifdef FEAT_SPELL
9791 buf->b_p_spc = vim_strsave(p_spc);
9792 (void)compile_cap_prog(buf);
9793 buf->b_p_spf = vim_strsave(p_spf);
9794 buf->b_p_spl = vim_strsave(p_spl);
9795 #endif
9796 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
9797 buf->b_p_inde = vim_strsave(p_inde);
9798 buf->b_p_indk = vim_strsave(p_indk);
9799 #endif
9800 #if defined(FEAT_EVAL)
9801 buf->b_p_fex = vim_strsave(p_fex);
9802 #endif
9803 #ifdef FEAT_CRYPT
9804 buf->b_p_key = vim_strsave(p_key);
9805 #endif
9806 #ifdef FEAT_SEARCHPATH
9807 buf->b_p_sua = vim_strsave(p_sua);
9808 #endif
9809 #ifdef FEAT_KEYMAP
9810 buf->b_p_keymap = vim_strsave(p_keymap);
9811 buf->b_kmap_state |= KEYMAP_INIT;
9812 #endif
9813 #ifdef FEAT_GUI_MACVIM
9814 buf->b_p_mmta = p_mmta;
9815 #endif
9816 /* This isn't really an option, but copying the langmap and IME
9817 * state from the current buffer is better than resetting it. */
9818 buf->b_p_iminsert = p_iminsert;
9819 buf->b_p_imsearch = p_imsearch;
9821 #ifdef USE_MIGEMO
9822 /* This is migemo extension */
9823 buf->b_p_migemo = p_migemo;
9824 #endif
9826 /* options that are normally global but also have a local value
9827 * are not copied, start using the global value */
9828 buf->b_p_ar = -1;
9829 #ifdef FEAT_QUICKFIX
9830 buf->b_p_gp = empty_option;
9831 buf->b_p_mp = empty_option;
9832 buf->b_p_efm = empty_option;
9833 #endif
9834 buf->b_p_ep = empty_option;
9835 buf->b_p_kp = empty_option;
9836 buf->b_p_path = empty_option;
9837 buf->b_p_tags = empty_option;
9838 #ifdef FEAT_FIND_ID
9839 buf->b_p_def = empty_option;
9840 buf->b_p_inc = empty_option;
9841 # ifdef FEAT_EVAL
9842 buf->b_p_inex = vim_strsave(p_inex);
9843 # endif
9844 #endif
9845 #ifdef FEAT_INS_EXPAND
9846 buf->b_p_dict = empty_option;
9847 buf->b_p_tsr = empty_option;
9848 #endif
9849 #ifdef FEAT_TEXTOBJ
9850 buf->b_p_qe = vim_strsave(p_qe);
9851 #endif
9852 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9853 buf->b_p_bexpr = empty_option;
9854 #endif
9857 * Don't copy the options set by ex_help(), use the saved values,
9858 * when going from a help buffer to a non-help buffer.
9859 * Don't touch these at all when BCO_NOHELP is used and going from
9860 * or to a help buffer.
9862 if (dont_do_help)
9863 buf->b_p_isk = save_p_isk;
9864 else
9866 buf->b_p_isk = vim_strsave(p_isk);
9867 did_isk = TRUE;
9868 buf->b_p_ts = p_ts;
9869 buf->b_help = FALSE;
9870 #ifdef FEAT_QUICKFIX
9871 if (buf->b_p_bt[0] == 'h')
9872 clear_string_option(&buf->b_p_bt);
9873 #endif
9874 buf->b_p_ma = p_ma;
9879 * When the options should be copied (ignoring BCO_ALWAYS), set the
9880 * flag that indicates that the options have been initialized.
9882 if (should_copy)
9883 buf->b_p_initialized = TRUE;
9886 check_buf_options(buf); /* make sure we don't have NULLs */
9887 if (did_isk)
9888 (void)buf_init_chartab(buf, FALSE);
9892 * Reset the 'modifiable' option and its default value.
9894 void
9895 reset_modifiable()
9897 int opt_idx;
9899 curbuf->b_p_ma = FALSE;
9900 p_ma = FALSE;
9901 opt_idx = findoption((char_u *)"ma");
9902 if (opt_idx >= 0)
9903 options[opt_idx].def_val[VI_DEFAULT] = FALSE;
9907 * Set the global value for 'iminsert' to the local value.
9909 void
9910 set_iminsert_global()
9912 p_iminsert = curbuf->b_p_iminsert;
9916 * Set the global value for 'imsearch' to the local value.
9918 void
9919 set_imsearch_global()
9921 p_imsearch = curbuf->b_p_imsearch;
9924 #if defined(FEAT_CMDL_COMPL) || defined(PROTO)
9925 static int expand_option_idx = -1;
9926 static char_u expand_option_name[5] = {'t', '_', NUL, NUL, NUL};
9927 static int expand_option_flags = 0;
9929 void
9930 set_context_in_set_cmd(xp, arg, opt_flags)
9931 expand_T *xp;
9932 char_u *arg;
9933 int opt_flags; /* OPT_GLOBAL and/or OPT_LOCAL */
9935 int nextchar;
9936 long_u flags = 0; /* init for GCC */
9937 int opt_idx = 0; /* init for GCC */
9938 char_u *p;
9939 char_u *s;
9940 int is_term_option = FALSE;
9941 int key;
9943 expand_option_flags = opt_flags;
9945 xp->xp_context = EXPAND_SETTINGS;
9946 if (*arg == NUL)
9948 xp->xp_pattern = arg;
9949 return;
9951 p = arg + STRLEN(arg) - 1;
9952 if (*p == ' ' && *(p - 1) != '\\')
9954 xp->xp_pattern = p + 1;
9955 return;
9957 while (p > arg)
9959 s = p;
9960 /* count number of backslashes before ' ' or ',' */
9961 if (*p == ' ' || *p == ',')
9963 while (s > arg && *(s - 1) == '\\')
9964 --s;
9966 /* break at a space with an even number of backslashes */
9967 if (*p == ' ' && ((p - s) & 1) == 0)
9969 ++p;
9970 break;
9972 --p;
9974 if (STRNCMP(p, "no", 2) == 0 && STRNCMP(p, "novice", 6) != 0)
9976 xp->xp_context = EXPAND_BOOL_SETTINGS;
9977 p += 2;
9979 if (STRNCMP(p, "inv", 3) == 0)
9981 xp->xp_context = EXPAND_BOOL_SETTINGS;
9982 p += 3;
9984 xp->xp_pattern = arg = p;
9985 if (*arg == '<')
9987 while (*p != '>')
9988 if (*p++ == NUL) /* expand terminal option name */
9989 return;
9990 key = get_special_key_code(arg + 1);
9991 if (key == 0) /* unknown name */
9993 xp->xp_context = EXPAND_NOTHING;
9994 return;
9996 nextchar = *++p;
9997 is_term_option = TRUE;
9998 expand_option_name[2] = KEY2TERMCAP0(key);
9999 expand_option_name[3] = KEY2TERMCAP1(key);
10001 else
10003 if (p[0] == 't' && p[1] == '_')
10005 p += 2;
10006 if (*p != NUL)
10007 ++p;
10008 if (*p == NUL)
10009 return; /* expand option name */
10010 nextchar = *++p;
10011 is_term_option = TRUE;
10012 expand_option_name[2] = p[-2];
10013 expand_option_name[3] = p[-1];
10015 else
10017 /* Allow * wildcard */
10018 while (ASCII_ISALNUM(*p) || *p == '_' || *p == '*')
10019 p++;
10020 if (*p == NUL)
10021 return;
10022 nextchar = *p;
10023 *p = NUL;
10024 opt_idx = findoption(arg);
10025 *p = nextchar;
10026 if (opt_idx == -1 || options[opt_idx].var == NULL)
10028 xp->xp_context = EXPAND_NOTHING;
10029 return;
10031 flags = options[opt_idx].flags;
10032 if (flags & P_BOOL)
10034 xp->xp_context = EXPAND_NOTHING;
10035 return;
10039 /* handle "-=" and "+=" */
10040 if ((nextchar == '-' || nextchar == '+' || nextchar == '^') && p[1] == '=')
10042 ++p;
10043 nextchar = '=';
10045 if ((nextchar != '=' && nextchar != ':')
10046 || xp->xp_context == EXPAND_BOOL_SETTINGS)
10048 xp->xp_context = EXPAND_UNSUCCESSFUL;
10049 return;
10051 if (xp->xp_context != EXPAND_BOOL_SETTINGS && p[1] == NUL)
10053 xp->xp_context = EXPAND_OLD_SETTING;
10054 if (is_term_option)
10055 expand_option_idx = -1;
10056 else
10057 expand_option_idx = opt_idx;
10058 xp->xp_pattern = p + 1;
10059 return;
10061 xp->xp_context = EXPAND_NOTHING;
10062 if (is_term_option || (flags & P_NUM))
10063 return;
10065 xp->xp_pattern = p + 1;
10067 if (flags & P_EXPAND)
10069 p = options[opt_idx].var;
10070 if (p == (char_u *)&p_bdir
10071 || p == (char_u *)&p_dir
10072 || p == (char_u *)&p_path
10073 || p == (char_u *)&p_rtp
10074 #ifdef FEAT_SEARCHPATH
10075 || p == (char_u *)&p_cdpath
10076 #endif
10077 #ifdef FEAT_SESSION
10078 || p == (char_u *)&p_vdir
10079 #endif
10082 xp->xp_context = EXPAND_DIRECTORIES;
10083 if (p == (char_u *)&p_path
10084 #ifdef FEAT_SEARCHPATH
10085 || p == (char_u *)&p_cdpath
10086 #endif
10088 xp->xp_backslash = XP_BS_THREE;
10089 else
10090 xp->xp_backslash = XP_BS_ONE;
10092 else
10094 xp->xp_context = EXPAND_FILES;
10095 /* for 'tags' need three backslashes for a space */
10096 if (p == (char_u *)&p_tags)
10097 xp->xp_backslash = XP_BS_THREE;
10098 else
10099 xp->xp_backslash = XP_BS_ONE;
10103 /* For an option that is a list of file names, find the start of the
10104 * last file name. */
10105 for (p = arg + STRLEN(arg) - 1; p > xp->xp_pattern; --p)
10107 /* count number of backslashes before ' ' or ',' */
10108 if (*p == ' ' || *p == ',')
10110 s = p;
10111 while (s > xp->xp_pattern && *(s - 1) == '\\')
10112 --s;
10113 if ((*p == ' ' && (xp->xp_backslash == XP_BS_THREE && (p - s) < 3))
10114 || (*p == ',' && (flags & P_COMMA) && ((p - s) & 1) == 0))
10116 xp->xp_pattern = p + 1;
10117 break;
10121 #ifdef FEAT_SPELL
10122 /* for 'spellsuggest' start at "file:" */
10123 if (options[opt_idx].var == (char_u *)&p_sps
10124 && STRNCMP(p, "file:", 5) == 0)
10126 xp->xp_pattern = p + 5;
10127 break;
10129 #endif
10132 return;
10136 ExpandSettings(xp, regmatch, num_file, file)
10137 expand_T *xp;
10138 regmatch_T *regmatch;
10139 int *num_file;
10140 char_u ***file;
10142 int num_normal = 0; /* Nr of matching non-term-code settings */
10143 int num_term = 0; /* Nr of matching terminal code settings */
10144 int opt_idx;
10145 int match;
10146 int count = 0;
10147 char_u *str;
10148 int loop;
10149 int is_term_opt;
10150 char_u name_buf[MAX_KEY_NAME_LEN];
10151 static char *(names[]) = {"all", "termcap"};
10152 int ic = regmatch->rm_ic; /* remember the ignore-case flag */
10154 /* do this loop twice:
10155 * loop == 0: count the number of matching options
10156 * loop == 1: copy the matching options into allocated memory
10158 for (loop = 0; loop <= 1; ++loop)
10160 regmatch->rm_ic = ic;
10161 if (xp->xp_context != EXPAND_BOOL_SETTINGS)
10163 for (match = 0; match < (int)(sizeof(names) / sizeof(char *));
10164 ++match)
10165 if (vim_regexec(regmatch, (char_u *)names[match], (colnr_T)0))
10167 if (loop == 0)
10168 num_normal++;
10169 else
10170 (*file)[count++] = vim_strsave((char_u *)names[match]);
10173 for (opt_idx = 0; (str = (char_u *)options[opt_idx].fullname) != NULL;
10174 opt_idx++)
10176 if (options[opt_idx].var == NULL)
10177 continue;
10178 if (xp->xp_context == EXPAND_BOOL_SETTINGS
10179 && !(options[opt_idx].flags & P_BOOL))
10180 continue;
10181 is_term_opt = istermoption(&options[opt_idx]);
10182 if (is_term_opt && num_normal > 0)
10183 continue;
10184 match = FALSE;
10185 if (vim_regexec(regmatch, str, (colnr_T)0)
10186 || (options[opt_idx].shortname != NULL
10187 && vim_regexec(regmatch,
10188 (char_u *)options[opt_idx].shortname, (colnr_T)0)))
10189 match = TRUE;
10190 else if (is_term_opt)
10192 name_buf[0] = '<';
10193 name_buf[1] = 't';
10194 name_buf[2] = '_';
10195 name_buf[3] = str[2];
10196 name_buf[4] = str[3];
10197 name_buf[5] = '>';
10198 name_buf[6] = NUL;
10199 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10201 match = TRUE;
10202 str = name_buf;
10205 if (match)
10207 if (loop == 0)
10209 if (is_term_opt)
10210 num_term++;
10211 else
10212 num_normal++;
10214 else
10215 (*file)[count++] = vim_strsave(str);
10219 * Check terminal key codes, these are not in the option table
10221 if (xp->xp_context != EXPAND_BOOL_SETTINGS && num_normal == 0)
10223 for (opt_idx = 0; (str = get_termcode(opt_idx)) != NULL; opt_idx++)
10225 if (!isprint(str[0]) || !isprint(str[1]))
10226 continue;
10228 name_buf[0] = 't';
10229 name_buf[1] = '_';
10230 name_buf[2] = str[0];
10231 name_buf[3] = str[1];
10232 name_buf[4] = NUL;
10234 match = FALSE;
10235 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10236 match = TRUE;
10237 else
10239 name_buf[0] = '<';
10240 name_buf[1] = 't';
10241 name_buf[2] = '_';
10242 name_buf[3] = str[0];
10243 name_buf[4] = str[1];
10244 name_buf[5] = '>';
10245 name_buf[6] = NUL;
10247 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10248 match = TRUE;
10250 if (match)
10252 if (loop == 0)
10253 num_term++;
10254 else
10255 (*file)[count++] = vim_strsave(name_buf);
10260 * Check special key names.
10262 regmatch->rm_ic = TRUE; /* ignore case here */
10263 for (opt_idx = 0; (str = get_key_name(opt_idx)) != NULL; opt_idx++)
10265 name_buf[0] = '<';
10266 STRCPY(name_buf + 1, str);
10267 STRCAT(name_buf, ">");
10269 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10271 if (loop == 0)
10272 num_term++;
10273 else
10274 (*file)[count++] = vim_strsave(name_buf);
10278 if (loop == 0)
10280 if (num_normal > 0)
10281 *num_file = num_normal;
10282 else if (num_term > 0)
10283 *num_file = num_term;
10284 else
10285 return OK;
10286 *file = (char_u **)alloc((unsigned)(*num_file * sizeof(char_u *)));
10287 if (*file == NULL)
10289 *file = (char_u **)"";
10290 return FAIL;
10294 return OK;
10298 ExpandOldSetting(num_file, file)
10299 int *num_file;
10300 char_u ***file;
10302 char_u *var = NULL; /* init for GCC */
10303 char_u *buf;
10305 *num_file = 0;
10306 *file = (char_u **)alloc((unsigned)sizeof(char_u *));
10307 if (*file == NULL)
10308 return FAIL;
10311 * For a terminal key code expand_option_idx is < 0.
10313 if (expand_option_idx < 0)
10315 var = find_termcode(expand_option_name + 2);
10316 if (var == NULL)
10317 expand_option_idx = findoption(expand_option_name);
10320 if (expand_option_idx >= 0)
10322 /* put string of option value in NameBuff */
10323 option_value2string(&options[expand_option_idx], expand_option_flags);
10324 var = NameBuff;
10326 else if (var == NULL)
10327 var = (char_u *)"";
10329 /* A backslash is required before some characters. This is the reverse of
10330 * what happens in do_set(). */
10331 buf = vim_strsave_escaped(var, escape_chars);
10333 if (buf == NULL)
10335 vim_free(*file);
10336 *file = NULL;
10337 return FAIL;
10340 #ifdef BACKSLASH_IN_FILENAME
10341 /* For MS-Windows et al. we don't double backslashes at the start and
10342 * before a file name character. */
10343 for (var = buf; *var != NUL; mb_ptr_adv(var))
10344 if (var[0] == '\\' && var[1] == '\\'
10345 && expand_option_idx >= 0
10346 && (options[expand_option_idx].flags & P_EXPAND)
10347 && vim_isfilec(var[2])
10348 && (var[2] != '\\' || (var == buf && var[4] != '\\')))
10349 STRMOVE(var, var + 1);
10350 #endif
10352 *file[0] = buf;
10353 *num_file = 1;
10354 return OK;
10356 #endif
10359 * Get the value for the numeric or string option *opp in a nice format into
10360 * NameBuff[]. Must not be called with a hidden option!
10362 static void
10363 option_value2string(opp, opt_flags)
10364 struct vimoption *opp;
10365 int opt_flags; /* OPT_GLOBAL and/or OPT_LOCAL */
10367 char_u *varp;
10369 varp = get_varp_scope(opp, opt_flags);
10371 if (opp->flags & P_NUM)
10373 long wc = 0;
10375 if (wc_use_keyname(varp, &wc))
10376 STRCPY(NameBuff, get_special_key_name((int)wc, 0));
10377 else if (wc != 0)
10378 STRCPY(NameBuff, transchar((int)wc));
10379 else
10380 sprintf((char *)NameBuff, "%ld", *(long *)varp);
10382 else /* P_STRING */
10384 varp = *(char_u **)(varp);
10385 if (varp == NULL) /* just in case */
10386 NameBuff[0] = NUL;
10387 #ifdef FEAT_CRYPT
10388 /* don't show the actual value of 'key', only that it's set */
10389 else if (opp->var == (char_u *)&p_key && *varp)
10390 STRCPY(NameBuff, "*****");
10391 #endif
10392 else if (opp->flags & P_EXPAND)
10393 home_replace(NULL, varp, NameBuff, MAXPATHL, FALSE);
10394 /* Translate 'pastetoggle' into special key names */
10395 else if ((char_u **)opp->var == &p_pt)
10396 str2specialbuf(p_pt, NameBuff, MAXPATHL);
10397 else
10398 vim_strncpy(NameBuff, varp, MAXPATHL - 1);
10403 * Return TRUE if "varp" points to 'wildchar' or 'wildcharm' and it can be
10404 * printed as a keyname.
10405 * "*wcp" is set to the value of the option if it's 'wildchar' or 'wildcharm'.
10407 static int
10408 wc_use_keyname(varp, wcp)
10409 char_u *varp;
10410 long *wcp;
10412 if (((long *)varp == &p_wc) || ((long *)varp == &p_wcm))
10414 *wcp = *(long *)varp;
10415 if (IS_SPECIAL(*wcp) || find_special_key_in_table((int)*wcp) >= 0)
10416 return TRUE;
10418 return FALSE;
10421 #ifdef FEAT_LANGMAP
10423 * Any character has an equivalent 'langmap' character. This is used for
10424 * keyboards that have a special language mode that sends characters above
10425 * 128 (although other characters can be translated too). The "to" field is a
10426 * Vim command character. This avoids having to switch the keyboard back to
10427 * ASCII mode when leaving Insert mode.
10429 * langmap_mapchar[] maps any of 256 chars to an ASCII char used for Vim
10430 * commands.
10431 * When FEAT_MBYTE is defined langmap_mapga.ga_data is a sorted table of
10432 * langmap_entry_T. This does the same as langmap_mapchar[] for characters >=
10433 * 256.
10435 # ifdef FEAT_MBYTE
10437 * With multi-byte support use growarray for 'langmap' chars >= 256
10439 typedef struct
10441 int from;
10442 int to;
10443 } langmap_entry_T;
10445 static garray_T langmap_mapga;
10446 static void langmap_set_entry __ARGS((int from, int to));
10449 * Search for an entry in "langmap_mapga" for "from". If found set the "to"
10450 * field. If not found insert a new entry at the appropriate location.
10452 static void
10453 langmap_set_entry(from, to)
10454 int from;
10455 int to;
10457 langmap_entry_T *entries = (langmap_entry_T *)(langmap_mapga.ga_data);
10458 int a = 0;
10459 int b = langmap_mapga.ga_len;
10461 /* Do a binary search for an existing entry. */
10462 while (a != b)
10464 int i = (a + b) / 2;
10465 int d = entries[i].from - from;
10467 if (d == 0)
10469 entries[i].to = to;
10470 return;
10472 if (d < 0)
10473 a = i + 1;
10474 else
10475 b = i;
10478 if (ga_grow(&langmap_mapga, 1) != OK)
10479 return; /* out of memory */
10481 /* insert new entry at position "a" */
10482 entries = (langmap_entry_T *)(langmap_mapga.ga_data) + a;
10483 mch_memmove(entries + 1, entries,
10484 (langmap_mapga.ga_len - a) * sizeof(langmap_entry_T));
10485 ++langmap_mapga.ga_len;
10486 entries[0].from = from;
10487 entries[0].to = to;
10491 * Apply 'langmap' to multi-byte character "c" and return the result.
10494 langmap_adjust_mb(c)
10495 int c;
10497 langmap_entry_T *entries = (langmap_entry_T *)(langmap_mapga.ga_data);
10498 int a = 0;
10499 int b = langmap_mapga.ga_len;
10501 while (a != b)
10503 int i = (a + b) / 2;
10504 int d = entries[i].from - c;
10506 if (d == 0)
10507 return entries[i].to; /* found matching entry */
10508 if (d < 0)
10509 a = i + 1;
10510 else
10511 b = i;
10513 return c; /* no entry found, return "c" unmodified */
10515 # endif
10517 static void
10518 langmap_init()
10520 int i;
10522 for (i = 0; i < 256; i++)
10523 langmap_mapchar[i] = i; /* we init with a one-to-one map */
10524 # ifdef FEAT_MBYTE
10525 ga_init2(&langmap_mapga, sizeof(langmap_entry_T), 8);
10526 # endif
10530 * Called when langmap option is set; the language map can be
10531 * changed at any time!
10533 static void
10534 langmap_set()
10536 char_u *p;
10537 char_u *p2;
10538 int from, to;
10540 #ifdef FEAT_MBYTE
10541 ga_clear(&langmap_mapga); /* clear the previous map first */
10542 #endif
10543 langmap_init(); /* back to one-to-one map */
10545 for (p = p_langmap; p[0] != NUL; )
10547 for (p2 = p; p2[0] != NUL && p2[0] != ',' && p2[0] != ';';
10548 mb_ptr_adv(p2))
10550 if (p2[0] == '\\' && p2[1] != NUL)
10551 ++p2;
10553 if (p2[0] == ';')
10554 ++p2; /* abcd;ABCD form, p2 points to A */
10555 else
10556 p2 = NULL; /* aAbBcCdD form, p2 is NULL */
10557 while (p[0])
10559 if (p[0] == '\\' && p[1] != NUL)
10560 ++p;
10561 #ifdef FEAT_MBYTE
10562 from = (*mb_ptr2char)(p);
10563 #else
10564 from = p[0];
10565 #endif
10566 if (p2 == NULL)
10568 mb_ptr_adv(p);
10569 if (p[0] == '\\')
10570 ++p;
10571 #ifdef FEAT_MBYTE
10572 to = (*mb_ptr2char)(p);
10573 #else
10574 to = p[0];
10575 #endif
10577 else
10579 if (p2[0] == '\\')
10580 ++p2;
10581 #ifdef FEAT_MBYTE
10582 to = (*mb_ptr2char)(p2);
10583 #else
10584 to = p2[0];
10585 #endif
10587 if (to == NUL)
10589 EMSG2(_("E357: 'langmap': Matching character missing for %s"),
10590 transchar(from));
10591 return;
10594 #ifdef FEAT_MBYTE
10595 if (from >= 256)
10596 langmap_set_entry(from, to);
10597 else
10598 #endif
10599 langmap_mapchar[from & 255] = to;
10601 /* Advance to next pair */
10602 mb_ptr_adv(p);
10603 if (p2 == NULL)
10605 if (p[0] == ',')
10607 ++p;
10608 break;
10611 else
10613 mb_ptr_adv(p2);
10614 if (*p == ';')
10616 p = p2;
10617 if (p[0] != NUL)
10619 if (p[0] != ',')
10621 EMSG2(_("E358: 'langmap': Extra characters after semicolon: %s"), p);
10622 return;
10624 ++p;
10626 break;
10632 #endif
10635 * Return TRUE if format option 'x' is in effect.
10636 * Take care of no formatting when 'paste' is set.
10639 has_format_option(x)
10640 int x;
10642 if (p_paste)
10643 return FALSE;
10644 return (vim_strchr(curbuf->b_p_fo, x) != NULL);
10648 * Return TRUE if "x" is present in 'shortmess' option, or
10649 * 'shortmess' contains 'a' and "x" is present in SHM_A.
10652 shortmess(x)
10653 int x;
10655 return ( vim_strchr(p_shm, x) != NULL
10656 || (vim_strchr(p_shm, 'a') != NULL
10657 && vim_strchr((char_u *)SHM_A, x) != NULL));
10661 * paste_option_changed() - Called after p_paste was set or reset.
10663 static void
10664 paste_option_changed()
10666 static int old_p_paste = FALSE;
10667 static int save_sm = 0;
10668 #ifdef FEAT_CMDL_INFO
10669 static int save_ru = 0;
10670 #endif
10671 #ifdef FEAT_RIGHTLEFT
10672 static int save_ri = 0;
10673 static int save_hkmap = 0;
10674 #endif
10675 buf_T *buf;
10677 if (p_paste)
10680 * Paste switched from off to on.
10681 * Save the current values, so they can be restored later.
10683 if (!old_p_paste)
10685 /* save options for each buffer */
10686 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10688 buf->b_p_tw_nopaste = buf->b_p_tw;
10689 buf->b_p_wm_nopaste = buf->b_p_wm;
10690 buf->b_p_sts_nopaste = buf->b_p_sts;
10691 buf->b_p_ai_nopaste = buf->b_p_ai;
10694 /* save global options */
10695 save_sm = p_sm;
10696 #ifdef FEAT_CMDL_INFO
10697 save_ru = p_ru;
10698 #endif
10699 #ifdef FEAT_RIGHTLEFT
10700 save_ri = p_ri;
10701 save_hkmap = p_hkmap;
10702 #endif
10703 /* save global values for local buffer options */
10704 p_tw_nopaste = p_tw;
10705 p_wm_nopaste = p_wm;
10706 p_sts_nopaste = p_sts;
10707 p_ai_nopaste = p_ai;
10711 * Always set the option values, also when 'paste' is set when it is
10712 * already on.
10714 /* set options for each buffer */
10715 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10717 buf->b_p_tw = 0; /* textwidth is 0 */
10718 buf->b_p_wm = 0; /* wrapmargin is 0 */
10719 buf->b_p_sts = 0; /* softtabstop is 0 */
10720 buf->b_p_ai = 0; /* no auto-indent */
10723 /* set global options */
10724 p_sm = 0; /* no showmatch */
10725 #ifdef FEAT_CMDL_INFO
10726 # ifdef FEAT_WINDOWS
10727 if (p_ru)
10728 status_redraw_all(); /* redraw to remove the ruler */
10729 # endif
10730 p_ru = 0; /* no ruler */
10731 #endif
10732 #ifdef FEAT_RIGHTLEFT
10733 p_ri = 0; /* no reverse insert */
10734 p_hkmap = 0; /* no Hebrew keyboard */
10735 #endif
10736 /* set global values for local buffer options */
10737 p_tw = 0;
10738 p_wm = 0;
10739 p_sts = 0;
10740 p_ai = 0;
10744 * Paste switched from on to off: Restore saved values.
10746 else if (old_p_paste)
10748 /* restore options for each buffer */
10749 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10751 buf->b_p_tw = buf->b_p_tw_nopaste;
10752 buf->b_p_wm = buf->b_p_wm_nopaste;
10753 buf->b_p_sts = buf->b_p_sts_nopaste;
10754 buf->b_p_ai = buf->b_p_ai_nopaste;
10757 /* restore global options */
10758 p_sm = save_sm;
10759 #ifdef FEAT_CMDL_INFO
10760 # ifdef FEAT_WINDOWS
10761 if (p_ru != save_ru)
10762 status_redraw_all(); /* redraw to draw the ruler */
10763 # endif
10764 p_ru = save_ru;
10765 #endif
10766 #ifdef FEAT_RIGHTLEFT
10767 p_ri = save_ri;
10768 p_hkmap = save_hkmap;
10769 #endif
10770 /* set global values for local buffer options */
10771 p_tw = p_tw_nopaste;
10772 p_wm = p_wm_nopaste;
10773 p_sts = p_sts_nopaste;
10774 p_ai = p_ai_nopaste;
10777 old_p_paste = p_paste;
10781 * vimrc_found() - Called when a ".vimrc" or "VIMINIT" has been found.
10783 * Reset 'compatible' and set the values for options that didn't get set yet
10784 * to the Vim defaults.
10785 * Don't do this if the 'compatible' option has been set or reset before.
10786 * When "fname" is not NULL, use it to set $"envname" when it wasn't set yet.
10788 void
10789 vimrc_found(fname, envname)
10790 char_u *fname;
10791 char_u *envname;
10793 int opt_idx;
10794 int dofree = FALSE;
10795 char_u *p;
10797 if (!option_was_set((char_u *)"cp"))
10799 p_cp = FALSE;
10800 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
10801 if (!(options[opt_idx].flags & (P_WAS_SET|P_VI_DEF)))
10802 set_option_default(opt_idx, OPT_FREE, FALSE);
10803 didset_options();
10806 if (fname != NULL)
10808 p = vim_getenv(envname, &dofree);
10809 if (p == NULL)
10811 /* Set $MYVIMRC to the first vimrc file found. */
10812 p = FullName_save(fname, FALSE);
10813 if (p != NULL)
10815 vim_setenv(envname, p);
10816 vim_free(p);
10819 else if (dofree)
10820 vim_free(p);
10825 * Set 'compatible' on or off. Called for "-C" and "-N" command line arg.
10827 void
10828 change_compatible(on)
10829 int on;
10831 int opt_idx;
10833 if (p_cp != on)
10835 p_cp = on;
10836 compatible_set();
10838 opt_idx = findoption((char_u *)"cp");
10839 if (opt_idx >= 0)
10840 options[opt_idx].flags |= P_WAS_SET;
10844 * Return TRUE when option "name" has been set.
10847 option_was_set(name)
10848 char_u *name;
10850 int idx;
10852 idx = findoption(name);
10853 if (idx < 0) /* unknown option */
10854 return FALSE;
10855 if (options[idx].flags & P_WAS_SET)
10856 return TRUE;
10857 return FALSE;
10861 * compatible_set() - Called when 'compatible' has been set or unset.
10863 * When 'compatible' set: Set all relevant options (those that have the P_VIM)
10864 * flag) to a Vi compatible value.
10865 * When 'compatible' is unset: Set all options that have a different default
10866 * for Vim (without the P_VI_DEF flag) to that default.
10868 static void
10869 compatible_set()
10871 int opt_idx;
10873 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
10874 if ( ((options[opt_idx].flags & P_VIM) && p_cp)
10875 || (!(options[opt_idx].flags & P_VI_DEF) && !p_cp))
10876 set_option_default(opt_idx, OPT_FREE, p_cp);
10877 didset_options();
10880 #ifdef FEAT_LINEBREAK
10882 # if defined(__BORLANDC__) && (__BORLANDC__ < 0x500)
10883 /* Borland C++ screws up loop optimisation here (negri) */
10884 #pragma option -O-l
10885 # endif
10888 * fill_breakat_flags() -- called when 'breakat' changes value.
10890 static void
10891 fill_breakat_flags()
10893 char_u *p;
10894 int i;
10896 for (i = 0; i < 256; i++)
10897 breakat_flags[i] = FALSE;
10899 if (p_breakat != NULL)
10900 for (p = p_breakat; *p; p++)
10901 breakat_flags[*p] = TRUE;
10904 # if defined(__BORLANDC__) && (__BORLANDC__ < 0x500)
10905 #pragma option -O.l
10906 # endif
10908 #endif
10911 * Check an option that can be a range of string values.
10913 * Return OK for correct value, FAIL otherwise.
10914 * Empty is always OK.
10916 static int
10917 check_opt_strings(val, values, list)
10918 char_u *val;
10919 char **values;
10920 int list; /* when TRUE: accept a list of values */
10922 return opt_strings_flags(val, values, NULL, list);
10926 * Handle an option that can be a range of string values.
10927 * Set a flag in "*flagp" for each string present.
10929 * Return OK for correct value, FAIL otherwise.
10930 * Empty is always OK.
10932 static int
10933 opt_strings_flags(val, values, flagp, list)
10934 char_u *val; /* new value */
10935 char **values; /* array of valid string values */
10936 unsigned *flagp;
10937 int list; /* when TRUE: accept a list of values */
10939 int i;
10940 int len;
10941 unsigned new_flags = 0;
10943 while (*val)
10945 for (i = 0; ; ++i)
10947 if (values[i] == NULL) /* val not found in values[] */
10948 return FAIL;
10950 len = (int)STRLEN(values[i]);
10951 if (STRNCMP(values[i], val, len) == 0
10952 && ((list && val[len] == ',') || val[len] == NUL))
10954 val += len + (val[len] == ',');
10955 new_flags |= (1 << i);
10956 break; /* check next item in val list */
10960 if (flagp != NULL)
10961 *flagp = new_flags;
10963 return OK;
10967 * Read the 'wildmode' option, fill wim_flags[].
10969 static int
10970 check_opt_wim()
10972 char_u new_wim_flags[4];
10973 char_u *p;
10974 int i;
10975 int idx = 0;
10977 for (i = 0; i < 4; ++i)
10978 new_wim_flags[i] = 0;
10980 for (p = p_wim; *p; ++p)
10982 for (i = 0; ASCII_ISALPHA(p[i]); ++i)
10984 if (p[i] != NUL && p[i] != ',' && p[i] != ':')
10985 return FAIL;
10986 if (i == 7 && STRNCMP(p, "longest", 7) == 0)
10987 new_wim_flags[idx] |= WIM_LONGEST;
10988 else if (i == 4 && STRNCMP(p, "full", 4) == 0)
10989 new_wim_flags[idx] |= WIM_FULL;
10990 else if (i == 4 && STRNCMP(p, "list", 4) == 0)
10991 new_wim_flags[idx] |= WIM_LIST;
10992 else
10993 return FAIL;
10994 p += i;
10995 if (*p == NUL)
10996 break;
10997 if (*p == ',')
10999 if (idx == 3)
11000 return FAIL;
11001 ++idx;
11005 /* fill remaining entries with last flag */
11006 while (idx < 3)
11008 new_wim_flags[idx + 1] = new_wim_flags[idx];
11009 ++idx;
11012 /* only when there are no errors, wim_flags[] is changed */
11013 for (i = 0; i < 4; ++i)
11014 wim_flags[i] = new_wim_flags[i];
11015 return OK;
11019 * Check if backspacing over something is allowed.
11022 can_bs(what)
11023 int what; /* BS_INDENT, BS_EOL or BS_START */
11025 switch (*p_bs)
11027 case '2': return TRUE;
11028 case '1': return (what != BS_START);
11029 case '0': return FALSE;
11031 return vim_strchr(p_bs, what) != NULL;
11035 * Save the current values of 'fileformat' and 'fileencoding', so that we know
11036 * the file must be considered changed when the value is different.
11038 void
11039 save_file_ff(buf)
11040 buf_T *buf;
11042 buf->b_start_ffc = *buf->b_p_ff;
11043 buf->b_start_eol = buf->b_p_eol;
11044 #ifdef FEAT_MBYTE
11045 buf->b_start_bomb = buf->b_p_bomb;
11047 /* Only use free/alloc when necessary, they take time. */
11048 if (buf->b_start_fenc == NULL
11049 || STRCMP(buf->b_start_fenc, buf->b_p_fenc) != 0)
11051 vim_free(buf->b_start_fenc);
11052 buf->b_start_fenc = vim_strsave(buf->b_p_fenc);
11054 #endif
11058 * Return TRUE if 'fileformat' and/or 'fileencoding' has a different value
11059 * from when editing started (save_file_ff() called).
11060 * Also when 'endofline' was changed and 'binary' is set, or when 'bomb' was
11061 * changed and 'binary' is not set.
11062 * Don't consider a new, empty buffer to be changed.
11065 file_ff_differs(buf)
11066 buf_T *buf;
11068 /* In a buffer that was never loaded the options are not valid. */
11069 if (buf->b_flags & BF_NEVERLOADED)
11070 return FALSE;
11071 if ((buf->b_flags & BF_NEW)
11072 && buf->b_ml.ml_line_count == 1
11073 && *ml_get_buf(buf, (linenr_T)1, FALSE) == NUL)
11074 return FALSE;
11075 if (buf->b_start_ffc != *buf->b_p_ff)
11076 return TRUE;
11077 if (buf->b_p_bin && buf->b_start_eol != buf->b_p_eol)
11078 return TRUE;
11079 #ifdef FEAT_MBYTE
11080 if (!buf->b_p_bin && buf->b_start_bomb != buf->b_p_bomb)
11081 return TRUE;
11082 if (buf->b_start_fenc == NULL)
11083 return (*buf->b_p_fenc != NUL);
11084 return (STRCMP(buf->b_start_fenc, buf->b_p_fenc) != 0);
11085 #else
11086 return FALSE;
11087 #endif
11091 * return OK if "p" is a valid fileformat name, FAIL otherwise.
11094 check_ff_value(p)
11095 char_u *p;
11097 return check_opt_strings(p, p_ff_values, FALSE);
11100 #ifdef FEAT_FULLSCREEN
11102 * Read the 'fuoptions' option, set fuoptions_flags and
11103 * fuoptions_bgcolor.
11105 static int
11106 check_fuoptions(p_fuoptions, flags, bgcolor)
11107 char_u *p_fuoptions; /* fuoptions string */
11108 unsigned *flags; /* fuoptions flags */
11109 int *bgcolor; /* background highlight group id */
11111 unsigned new_fuoptions_flags;
11112 int new_fuoptions_bgcolor;
11113 char_u *p;
11114 char_u hg_term; /* character terminating
11115 highlight group string in
11116 'background' option' */
11117 int i,j,k;
11119 new_fuoptions_flags = 0;
11120 new_fuoptions_bgcolor = 0xFF000000;
11122 for (p = p_fuoptions; *p; ++p)
11124 for (i = 0; ASCII_ISALPHA(p[i]); ++i)
11126 if (p[i] != NUL && p[i] != ',' && p[i] != ':')
11127 return FAIL;
11128 if (i == 10 && STRNCMP(p, "background", 10) == 0)
11130 if (p[i] != ':') return FAIL;
11131 i++;
11132 if (p[i] == NUL) return FAIL;
11133 if (p[i] == '#')
11135 /* explicit color (#aarrggbb) */
11136 i++;
11137 for (j = i; j < i+8 && vim_isxdigit(p[j]); ++j)
11139 if (j < i+8)
11140 return FAIL; /* less than 8 digits */
11141 if (p[j] != NUL && p[j] != ',')
11142 return FAIL;
11143 new_fuoptions_bgcolor = 0;
11144 for (k = 0; k < 8; k++)
11145 new_fuoptions_bgcolor = new_fuoptions_bgcolor * 16 +
11146 hex2nr(p[i+k]);
11147 i = j;
11148 /* mark bgcolor as an explicit argb color */
11149 new_fuoptions_flags &= ~FUOPT_BGCOLOR_HLGROUP;
11151 else
11153 /* highlight group name */
11154 for (j = i; ASCII_ISALPHA(p[j]); ++j)
11156 if (p[j] != NUL && p[j] != ',')
11157 return FAIL;
11158 hg_term = p[j];
11159 p[j] = NUL; /* temporarily terminate string */
11160 new_fuoptions_bgcolor = syn_name2id((char_u*)(p+i));
11161 p[j] = hg_term; /* restore string */
11162 if (! new_fuoptions_bgcolor)
11163 return FAIL;
11164 i = j;
11165 /* mark bgcolor as highlight group id */
11166 new_fuoptions_flags |= FUOPT_BGCOLOR_HLGROUP;
11169 else if (i == 7 && STRNCMP(p, "maxhorz", 7) == 0)
11170 new_fuoptions_flags |= FUOPT_MAXHORZ;
11171 else if (i == 7 && STRNCMP(p, "maxvert", 7) == 0)
11172 new_fuoptions_flags |= FUOPT_MAXVERT;
11173 else
11174 return FAIL;
11175 p += i;
11176 if (*p == NUL)
11177 break;
11178 if (*p == ':')
11179 return FAIL;
11182 *flags = new_fuoptions_flags;
11183 *bgcolor = new_fuoptions_bgcolor;
11185 /* Let the GUI know, in case the background color has changed. */
11186 gui_mch_fuopt_update();
11188 return OK;
11190 #endif