Merge branch 'vim'
[MacVim.git] / src / option.c
blob05feee7dac21288f8c134724f60c86d788a00562
1 /* vi:set ts=8 sts=4 sw=4:
3 * VIM - Vi IMproved by Bram Moolenaar
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
11 * Code to handle user-settable options. This is all pretty much table-
12 * driven. Checklist for adding a new option:
13 * - Put it in the options array below (copy an existing entry).
14 * - For a global option: Add a variable for it in option.h.
15 * - For a buffer or window local option:
16 * - Add a PV_XX entry to the enum below.
17 * - Add a variable to the window or buffer struct in structs.h.
18 * - For a window option, add some code to copy_winopt().
19 * - For a buffer option, add some code to buf_copy_options().
20 * - For a buffer string option, add code to check_buf_options().
21 * - If it's a numeric option, add any necessary bounds checks to do_set().
22 * - If it's a list of flags, add some code in do_set(), search for WW_ALL.
23 * - When adding an option with expansion (P_EXPAND), but with a different
24 * default for Vi and Vim (no P_VI_DEF), add some code at VIMEXP.
25 * - Add documentation! One line in doc/help.txt, full description in
26 * options.txt, and any other related places.
27 * - Add an entry in runtime/optwin.vim.
28 * When making changes:
29 * - Adjust the help for the option in doc/option.txt.
30 * - When an entry has the P_VIM flag, or is lacking the P_VI_DEF flag, add a
31 * comment at the help for the 'compatible' option.
34 #define IN_OPTION_C
35 #include "vim.h"
38 * The options that are local to a window or buffer have "indir" set to one of
39 * these values. Special values:
40 * PV_NONE: global option.
41 * PV_WIN is added: window-local option
42 * PV_BUF is added: buffer-local option
43 * PV_BOTH is added: global option which also has a local value.
45 #define PV_BOTH 0x1000
46 #define PV_WIN 0x2000
47 #define PV_BUF 0x4000
48 #define PV_MASK 0x0fff
49 #define OPT_WIN(x) (idopt_T)(PV_WIN + (int)(x))
50 #define OPT_BUF(x) (idopt_T)(PV_BUF + (int)(x))
51 #define OPT_BOTH(x) (idopt_T)(PV_BOTH + (int)(x))
54 * Definition of the PV_ values for buffer-local options.
55 * The BV_ values are defined in option.h.
57 #define PV_AI OPT_BUF(BV_AI)
58 #define PV_AR OPT_BOTH(OPT_BUF(BV_AR))
59 #ifdef FEAT_QUICKFIX
60 # define PV_BH OPT_BUF(BV_BH)
61 # define PV_BT OPT_BUF(BV_BT)
62 # define PV_EFM OPT_BOTH(OPT_BUF(BV_EFM))
63 # define PV_GP OPT_BOTH(OPT_BUF(BV_GP))
64 # define PV_MP OPT_BOTH(OPT_BUF(BV_MP))
65 #endif
66 #define PV_BIN OPT_BUF(BV_BIN)
67 #define PV_BL OPT_BUF(BV_BL)
68 #ifdef FEAT_MBYTE
69 # define PV_BOMB OPT_BUF(BV_BOMB)
70 #endif
71 #define PV_CI OPT_BUF(BV_CI)
72 #ifdef FEAT_CINDENT
73 # define PV_CIN OPT_BUF(BV_CIN)
74 # define PV_CINK OPT_BUF(BV_CINK)
75 # define PV_CINO OPT_BUF(BV_CINO)
76 #endif
77 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
78 # define PV_CINW OPT_BUF(BV_CINW)
79 #endif
80 #ifdef FEAT_FOLDING
81 # define PV_CMS OPT_BUF(BV_CMS)
82 #endif
83 #ifdef FEAT_COMMENTS
84 # define PV_COM OPT_BUF(BV_COM)
85 #endif
86 #ifdef FEAT_INS_EXPAND
87 # define PV_CPT OPT_BUF(BV_CPT)
88 # define PV_DICT OPT_BOTH(OPT_BUF(BV_DICT))
89 # define PV_TSR OPT_BOTH(OPT_BUF(BV_TSR))
90 #endif
91 #ifdef FEAT_COMPL_FUNC
92 # define PV_CFU OPT_BUF(BV_CFU)
93 #endif
94 #ifdef FEAT_FIND_ID
95 # define PV_DEF OPT_BOTH(OPT_BUF(BV_DEF))
96 # define PV_INC OPT_BOTH(OPT_BUF(BV_INC))
97 #endif
98 #define PV_EOL OPT_BUF(BV_EOL)
99 #define PV_EP OPT_BOTH(OPT_BUF(BV_EP))
100 #define PV_ET OPT_BUF(BV_ET)
101 #ifdef FEAT_MBYTE
102 # define PV_FENC OPT_BUF(BV_FENC)
103 #endif
104 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
105 # define PV_BEXPR OPT_BOTH(OPT_BUF(BV_BEXPR))
106 #endif
107 #ifdef FEAT_EVAL
108 # define PV_FEX OPT_BUF(BV_FEX)
109 #endif
110 #define PV_FF OPT_BUF(BV_FF)
111 #define PV_FLP OPT_BUF(BV_FLP)
112 #define PV_FO OPT_BUF(BV_FO)
113 #ifdef FEAT_AUTOCMD
114 # define PV_FT OPT_BUF(BV_FT)
115 #endif
116 #define PV_IMI OPT_BUF(BV_IMI)
117 #define PV_IMS OPT_BUF(BV_IMS)
118 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
119 # define PV_INDE OPT_BUF(BV_INDE)
120 # define PV_INDK OPT_BUF(BV_INDK)
121 #endif
122 #if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
123 # define PV_INEX OPT_BUF(BV_INEX)
124 #endif
125 #define PV_INF OPT_BUF(BV_INF)
126 #define PV_ISK OPT_BUF(BV_ISK)
127 #ifdef FEAT_CRYPT
128 # define PV_KEY OPT_BUF(BV_KEY)
129 #endif
130 #ifdef FEAT_KEYMAP
131 # define PV_KMAP OPT_BUF(BV_KMAP)
132 #endif
133 #define PV_KP OPT_BOTH(OPT_BUF(BV_KP))
134 #ifdef FEAT_LISP
135 # define PV_LISP OPT_BUF(BV_LISP)
136 #endif
137 #define PV_MA OPT_BUF(BV_MA)
138 #define PV_ML OPT_BUF(BV_ML)
139 #define PV_MOD OPT_BUF(BV_MOD)
140 #define PV_MPS OPT_BUF(BV_MPS)
141 #ifdef FEAT_GUI_MACVIM
142 #define PV_MMTA OPT_BUF(BV_MMTA)
143 #endif
144 #define PV_NF OPT_BUF(BV_NF)
145 #ifdef FEAT_OSFILETYPE
146 # define PV_OFT OPT_BUF(BV_OFT)
147 #endif
148 #ifdef FEAT_COMPL_FUNC
149 # define PV_OFU OPT_BUF(BV_OFU)
150 #endif
151 #define PV_PATH OPT_BOTH(OPT_BUF(BV_PATH))
152 #define PV_PI OPT_BUF(BV_PI)
153 #ifdef FEAT_TEXTOBJ
154 # define PV_QE OPT_BUF(BV_QE)
155 #endif
156 #define PV_RO OPT_BUF(BV_RO)
157 #ifdef FEAT_SMARTINDENT
158 # define PV_SI OPT_BUF(BV_SI)
159 #endif
160 #ifndef SHORT_FNAME
161 # define PV_SN OPT_BUF(BV_SN)
162 #endif
163 #ifdef FEAT_SYN_HL
164 # define PV_SMC OPT_BUF(BV_SMC)
165 # define PV_SYN OPT_BUF(BV_SYN)
166 #endif
167 #ifdef FEAT_SPELL
168 # define PV_SPC OPT_BUF(BV_SPC)
169 # define PV_SPF OPT_BUF(BV_SPF)
170 # define PV_SPL OPT_BUF(BV_SPL)
171 #endif
172 #define PV_STS OPT_BUF(BV_STS)
173 #ifdef FEAT_SEARCHPATH
174 # define PV_SUA OPT_BUF(BV_SUA)
175 #endif
176 #define PV_SW OPT_BUF(BV_SW)
177 #define PV_SWF OPT_BUF(BV_SWF)
178 #define PV_TAGS OPT_BOTH(OPT_BUF(BV_TAGS))
179 #define PV_TS OPT_BUF(BV_TS)
180 #define PV_TW OPT_BUF(BV_TW)
181 #define PV_TX OPT_BUF(BV_TX)
182 #define PV_WM OPT_BUF(BV_WM)
185 * Definition of the PV_ values for window-local options.
186 * The WV_ values are defined in option.h.
188 #define PV_LIST OPT_WIN(WV_LIST)
189 #ifdef FEAT_ARABIC
190 # define PV_ARAB OPT_WIN(WV_ARAB)
191 #endif
192 #ifdef FEAT_DIFF
193 # define PV_DIFF OPT_WIN(WV_DIFF)
194 #endif
195 #ifdef FEAT_FOLDING
196 # define PV_FDC OPT_WIN(WV_FDC)
197 # define PV_FEN OPT_WIN(WV_FEN)
198 # define PV_FDI OPT_WIN(WV_FDI)
199 # define PV_FDL OPT_WIN(WV_FDL)
200 # define PV_FDM OPT_WIN(WV_FDM)
201 # define PV_FML OPT_WIN(WV_FML)
202 # define PV_FDN OPT_WIN(WV_FDN)
203 # ifdef FEAT_EVAL
204 # define PV_FDE OPT_WIN(WV_FDE)
205 # define PV_FDT OPT_WIN(WV_FDT)
206 # endif
207 # define PV_FMR OPT_WIN(WV_FMR)
208 #endif
209 #ifdef FEAT_LINEBREAK
210 # define PV_LBR OPT_WIN(WV_LBR)
211 #endif
212 #define PV_NU OPT_WIN(WV_NU)
213 #ifdef FEAT_LINEBREAK
214 # define PV_NUW OPT_WIN(WV_NUW)
215 #endif
216 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
217 # define PV_PVW OPT_WIN(WV_PVW)
218 #endif
219 #ifdef FEAT_RIGHTLEFT
220 # define PV_RL OPT_WIN(WV_RL)
221 # define PV_RLC OPT_WIN(WV_RLC)
222 #endif
223 #ifdef FEAT_SCROLLBIND
224 # define PV_SCBIND OPT_WIN(WV_SCBIND)
225 #endif
226 #define PV_SCROLL OPT_WIN(WV_SCROLL)
227 #ifdef FEAT_SPELL
228 # define PV_SPELL OPT_WIN(WV_SPELL)
229 #endif
230 #ifdef FEAT_SYN_HL
231 # define PV_CUC OPT_WIN(WV_CUC)
232 # define PV_CUL OPT_WIN(WV_CUL)
233 #endif
234 #ifdef FEAT_STL_OPT
235 # define PV_STL OPT_BOTH(OPT_WIN(WV_STL))
236 #endif
237 #ifdef FEAT_WINDOWS
238 # define PV_WFH OPT_WIN(WV_WFH)
239 #endif
240 #ifdef FEAT_VERTSPLIT
241 # define PV_WFW OPT_WIN(WV_WFW)
242 #endif
243 #define PV_WRAP OPT_WIN(WV_WRAP)
246 /* WV_ and BV_ values get typecasted to this for the "indir" field */
247 typedef enum
249 PV_NONE = 0,
250 PV_MAXVAL = 0xffff /* to avoid warnings for value out of range */
251 } idopt_T;
254 * Options local to a window have a value local to a buffer and global to all
255 * buffers. Indicate this by setting "var" to VAR_WIN.
257 #define VAR_WIN ((char_u *)-1)
260 * These are the global values for options which are also local to a buffer.
261 * Only to be used in option.c!
263 static int p_ai;
264 static int p_bin;
265 #ifdef FEAT_MBYTE
266 static int p_bomb;
267 #endif
268 #if defined(FEAT_QUICKFIX)
269 static char_u *p_bh;
270 static char_u *p_bt;
271 #endif
272 static int p_bl;
273 static int p_ci;
274 #ifdef FEAT_CINDENT
275 static int p_cin;
276 static char_u *p_cink;
277 static char_u *p_cino;
278 #endif
279 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
280 static char_u *p_cinw;
281 #endif
282 #ifdef FEAT_COMMENTS
283 static char_u *p_com;
284 #endif
285 #ifdef FEAT_FOLDING
286 static char_u *p_cms;
287 #endif
288 #ifdef FEAT_INS_EXPAND
289 static char_u *p_cpt;
290 #endif
291 #ifdef FEAT_COMPL_FUNC
292 static char_u *p_cfu;
293 static char_u *p_ofu;
294 #endif
295 static int p_eol;
296 static int p_et;
297 #ifdef FEAT_MBYTE
298 static char_u *p_fenc;
299 #endif
300 static char_u *p_ff;
301 static char_u *p_fo;
302 static char_u *p_flp;
303 #ifdef FEAT_AUTOCMD
304 static char_u *p_ft;
305 #endif
306 static long p_iminsert;
307 static long p_imsearch;
308 #if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
309 static char_u *p_inex;
310 #endif
311 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
312 static char_u *p_inde;
313 static char_u *p_indk;
314 #endif
315 #if defined(FEAT_EVAL)
316 static char_u *p_fex;
317 #endif
318 static int p_inf;
319 static char_u *p_isk;
320 #ifdef FEAT_CRYPT
321 static char_u *p_key;
322 #endif
323 #ifdef FEAT_LISP
324 static int p_lisp;
325 #endif
326 static int p_ml;
327 static int p_ma;
328 #ifdef FEAT_GUI_MACVIM
329 static int p_mmta;
330 #endif
331 static int p_mod;
332 static char_u *p_mps;
333 static char_u *p_nf;
334 #ifdef FEAT_OSFILETYPE
335 static char_u *p_oft;
336 #endif
337 static int p_pi;
338 #ifdef FEAT_TEXTOBJ
339 static char_u *p_qe;
340 #endif
341 static int p_ro;
342 #ifdef FEAT_SMARTINDENT
343 static int p_si;
344 #endif
345 #ifndef SHORT_FNAME
346 static int p_sn;
347 #endif
348 static long p_sts;
349 #if defined(FEAT_SEARCHPATH)
350 static char_u *p_sua;
351 #endif
352 static long p_sw;
353 static int p_swf;
354 #ifdef FEAT_SYN_HL
355 static long p_smc;
356 static char_u *p_syn;
357 #endif
358 #ifdef FEAT_SPELL
359 static char_u *p_spc;
360 static char_u *p_spf;
361 static char_u *p_spl;
362 #endif
363 static long p_ts;
364 static long p_tw;
365 static int p_tx;
366 static long p_wm;
367 #ifdef FEAT_KEYMAP
368 static char_u *p_keymap;
369 #endif
371 /* Saved values for when 'bin' is set. */
372 static int p_et_nobin;
373 static int p_ml_nobin;
374 static long p_tw_nobin;
375 static long p_wm_nobin;
377 /* Saved values for when 'paste' is set */
378 static long p_tw_nopaste;
379 static long p_wm_nopaste;
380 static long p_sts_nopaste;
381 static int p_ai_nopaste;
383 struct vimoption
385 char *fullname; /* full option name */
386 char *shortname; /* permissible abbreviation */
387 long_u flags; /* see below */
388 char_u *var; /* global option: pointer to variable;
389 * window-local option: VAR_WIN;
390 * buffer-local option: global value */
391 idopt_T indir; /* global option: PV_NONE;
392 * local option: indirect option index */
393 char_u *def_val[2]; /* default values for variable (vi and vim) */
394 #ifdef FEAT_EVAL
395 scid_T scriptID; /* script in which the option was last set */
396 # define SCRIPTID_INIT , 0
397 #else
398 # define SCRIPTID_INIT
399 #endif
402 #define VI_DEFAULT 0 /* def_val[VI_DEFAULT] is Vi default value */
403 #define VIM_DEFAULT 1 /* def_val[VIM_DEFAULT] is Vim default value */
406 * Flags
408 #define P_BOOL 0x01 /* the option is boolean */
409 #define P_NUM 0x02 /* the option is numeric */
410 #define P_STRING 0x04 /* the option is a string */
411 #define P_ALLOCED 0x08 /* the string option is in allocated memory,
412 must use free_string_option() when
413 assigning new value. Not set if default is
414 the same. */
415 #define P_EXPAND 0x10 /* environment expansion. NOTE: P_EXPAND can
416 never be used for local or hidden options! */
417 #define P_NODEFAULT 0x40 /* don't set to default value */
418 #define P_DEF_ALLOCED 0x80 /* default value is in allocated memory, must
419 use vim_free() when assigning new value */
420 #define P_WAS_SET 0x100 /* option has been set/reset */
421 #define P_NO_MKRC 0x200 /* don't include in :mkvimrc output */
422 #define P_VI_DEF 0x400 /* Use Vi default for Vim */
423 #define P_VIM 0x800 /* Vim option, reset when 'cp' set */
425 /* when option changed, what to display: */
426 #define P_RSTAT 0x1000 /* redraw status lines */
427 #define P_RWIN 0x2000 /* redraw current window */
428 #define P_RBUF 0x4000 /* redraw current buffer */
429 #define P_RALL 0x6000 /* redraw all windows */
430 #define P_RCLR 0x7000 /* clear and redraw all */
432 #define P_COMMA 0x8000 /* comma separated list */
433 #define P_NODUP 0x10000L/* don't allow duplicate strings */
434 #define P_FLAGLIST 0x20000L/* list of single-char flags */
436 #define P_SECURE 0x40000L/* cannot change in modeline or secure mode */
437 #define P_GETTEXT 0x80000L/* expand default value with _() */
438 #define P_NOGLOB 0x100000L/* do not use local value for global vimrc */
439 #define P_NFNAME 0x200000L/* only normal file name chars allowed */
440 #define P_INSECURE 0x400000L/* option was set from a modeline */
441 #define P_PRI_MKRC 0x800000L/* priority for :mkvimrc (setting option has
442 side effects) */
444 #define ISK_LATIN1 (char_u *)"@,48-57,_,192-255"
446 /* 'isprint' for latin1 is also used for MS-Windows cp1252, where 0x80 is used
447 * for the currency sign. */
448 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
449 # define ISP_LATIN1 (char_u *)"@,~-255"
450 #else
451 # define ISP_LATIN1 (char_u *)"@,161-255"
452 #endif
454 /* The 16 bit MS-DOS version is low on space, make the string as short as
455 * possible when compiling with few features. */
456 #if defined(FEAT_DIFF) || defined(FEAT_FOLDING) || defined(FEAT_SPELL) \
457 || defined(FEAT_VERTSPLIT) || defined(FEAT_CLIPBOARD) \
458 || defined(FEAT_INS_EXPAND) || defined(FEAT_SYN_HL)
459 # define HIGHLIGHT_INIT "8:SpecialKey,@:NonText,d:Directory,e:ErrorMsg,i:IncSearch,l:Search,m:MoreMsg,M:ModeMsg,n:LineNr,r:Question,s:StatusLine,S:StatusLineNC,c:VertSplit,t:Title,v:Visual,V:VisualNOS,w:WarningMsg,W:WildMenu,f:Folded,F:FoldColumn,A:DiffAdd,C:DiffChange,D:DiffDelete,T:DiffText,>:SignColumn,B:SpellBad,P:SpellCap,R:SpellRare,L:SpellLocal,+:Pmenu,=:PmenuSel,x:PmenuSbar,X:PmenuThumb,*:TabLine,#:TabLineSel,_:TabLineFill,!:CursorColumn,.:CursorLine"
460 #else
461 # define HIGHLIGHT_INIT "8:SpecialKey,@:NonText,d:Directory,e:ErrorMsg,i:IncSearch,l:Search,m:MoreMsg,M:ModeMsg,n:LineNr,r:Question,s:StatusLine,S:StatusLineNC,t:Title,v:Visual,w:WarningMsg,W:WildMenu,>:SignColumn,*:TabLine,#:TabLineSel,_:TabLineFill"
462 #endif
465 * options[] is initialized here.
466 * The order of the options MUST be alphabetic for ":set all" and findoption().
467 * All option names MUST start with a lowercase letter (for findoption()).
468 * Exception: "t_" options are at the end.
469 * The options with a NULL variable are 'hidden': a set command for them is
470 * ignored and they are not printed.
472 static struct vimoption
473 #ifdef FEAT_GUI_W16
474 _far
475 #endif
476 options[] =
478 {"aleph", "al", P_NUM|P_VI_DEF,
479 #ifdef FEAT_RIGHTLEFT
480 (char_u *)&p_aleph, PV_NONE,
481 #else
482 (char_u *)NULL, PV_NONE,
483 #endif
485 #if (defined(MSDOS) || defined(WIN3264) || defined(OS2)) && !defined(FEAT_GUI_W32)
486 (char_u *)128L,
487 #else
488 (char_u *)224L,
489 #endif
490 (char_u *)0L} SCRIPTID_INIT},
491 {"antialias", "anti", P_BOOL|P_VI_DEF|P_VIM|P_RCLR,
492 #ifdef FEAT_ANTIALIAS
493 (char_u *)&p_antialias, PV_NONE,
494 #else
495 (char_u *)NULL, PV_NONE,
496 #endif
498 #if FEAT_GUI_MACVIM
499 (char_u *)TRUE,
500 #else
501 (char_u *)FALSE,
502 #endif
503 (char_u *)0L} SCRIPTID_INIT},
504 {"arabic", "arab", P_BOOL|P_VI_DEF|P_VIM,
505 #ifdef FEAT_ARABIC
506 (char_u *)VAR_WIN, PV_ARAB,
507 #else
508 (char_u *)NULL, PV_NONE,
509 #endif
510 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
511 {"arabicshape", "arshape", P_BOOL|P_VI_DEF|P_VIM|P_RCLR,
512 #ifdef FEAT_ARABIC
513 (char_u *)&p_arshape, PV_NONE,
514 #else
515 (char_u *)NULL, PV_NONE,
516 #endif
517 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
518 {"allowrevins", "ari", P_BOOL|P_VI_DEF|P_VIM,
519 #ifdef FEAT_RIGHTLEFT
520 (char_u *)&p_ari, PV_NONE,
521 #else
522 (char_u *)NULL, PV_NONE,
523 #endif
524 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
525 {"altkeymap", "akm", P_BOOL|P_VI_DEF,
526 #ifdef FEAT_FKMAP
527 (char_u *)&p_altkeymap, PV_NONE,
528 #else
529 (char_u *)NULL, PV_NONE,
530 #endif
531 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
532 {"ambiwidth", "ambw", P_STRING|P_VI_DEF|P_RCLR,
533 #if defined(FEAT_MBYTE)
534 (char_u *)&p_ambw, PV_NONE,
535 {(char_u *)"single", (char_u *)0L}
536 #else
537 (char_u *)NULL, PV_NONE,
538 {(char_u *)0L, (char_u *)0L}
539 #endif
540 SCRIPTID_INIT},
541 #ifdef FEAT_AUTOCHDIR
542 {"autochdir", "acd", P_BOOL|P_VI_DEF,
543 (char_u *)&p_acd, PV_NONE,
544 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
545 #endif
546 {"autoindent", "ai", P_BOOL|P_VI_DEF,
547 (char_u *)&p_ai, PV_AI,
548 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
549 {"autoprint", "ap", P_BOOL|P_VI_DEF,
550 (char_u *)NULL, PV_NONE,
551 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
552 {"autoread", "ar", P_BOOL|P_VI_DEF,
553 (char_u *)&p_ar, PV_AR,
554 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
555 {"autowrite", "aw", P_BOOL|P_VI_DEF,
556 (char_u *)&p_aw, PV_NONE,
557 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
558 {"autowriteall","awa", P_BOOL|P_VI_DEF,
559 (char_u *)&p_awa, PV_NONE,
560 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
561 {"background", "bg", P_STRING|P_VI_DEF|P_RCLR,
562 (char_u *)&p_bg, PV_NONE,
564 #if (defined(MSDOS) || defined(OS2) || defined(WIN3264)) && !defined(FEAT_GUI)
565 (char_u *)"dark",
566 #else
567 (char_u *)"light",
568 #endif
569 (char_u *)0L} SCRIPTID_INIT},
570 {"backspace", "bs", P_STRING|P_VI_DEF|P_VIM|P_COMMA|P_NODUP,
571 (char_u *)&p_bs, PV_NONE,
572 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
573 {"backup", "bk", P_BOOL|P_VI_DEF|P_VIM,
574 (char_u *)&p_bk, PV_NONE,
575 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
576 {"backupcopy", "bkc", P_STRING|P_VIM|P_COMMA|P_NODUP,
577 (char_u *)&p_bkc, PV_NONE,
578 #ifdef UNIX
579 {(char_u *)"yes", (char_u *)"auto"}
580 #else
581 {(char_u *)"auto", (char_u *)"auto"}
582 #endif
583 SCRIPTID_INIT},
584 {"backupdir", "bdir", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP|P_SECURE,
585 (char_u *)&p_bdir, PV_NONE,
586 {(char_u *)DFLT_BDIR, (char_u *)0L} SCRIPTID_INIT},
587 {"backupext", "bex", P_STRING|P_VI_DEF|P_NFNAME,
588 (char_u *)&p_bex, PV_NONE,
590 #ifdef VMS
591 (char_u *)"_",
592 #else
593 (char_u *)"~",
594 #endif
595 (char_u *)0L} SCRIPTID_INIT},
596 {"backupskip", "bsk", P_STRING|P_VI_DEF|P_COMMA,
597 #ifdef FEAT_WILDIGN
598 (char_u *)&p_bsk, PV_NONE,
599 {(char_u *)"", (char_u *)0L}
600 #else
601 (char_u *)NULL, PV_NONE,
602 {(char_u *)0L, (char_u *)0L}
603 #endif
604 SCRIPTID_INIT},
605 #ifdef FEAT_BEVAL
606 {"balloondelay","bdlay",P_NUM|P_VI_DEF,
607 (char_u *)&p_bdlay, PV_NONE,
608 {(char_u *)600L, (char_u *)0L} SCRIPTID_INIT},
609 {"ballooneval", "beval",P_BOOL|P_VI_DEF|P_NO_MKRC,
610 (char_u *)&p_beval, PV_NONE,
611 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
612 # ifdef FEAT_EVAL
613 {"balloonexpr", "bexpr", P_STRING|P_ALLOCED|P_VI_DEF|P_VIM,
614 (char_u *)&p_bexpr, PV_BEXPR,
615 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
616 # endif
617 #endif
618 {"beautify", "bf", P_BOOL|P_VI_DEF,
619 (char_u *)NULL, PV_NONE,
620 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
621 {"binary", "bin", P_BOOL|P_VI_DEF|P_RSTAT,
622 (char_u *)&p_bin, PV_BIN,
623 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
624 {"bioskey", "biosk",P_BOOL|P_VI_DEF,
625 #ifdef MSDOS
626 (char_u *)&p_biosk, PV_NONE,
627 #else
628 (char_u *)NULL, PV_NONE,
629 #endif
630 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
631 {"bomb", NULL, P_BOOL|P_NO_MKRC|P_VI_DEF|P_RSTAT,
632 #ifdef FEAT_MBYTE
633 (char_u *)&p_bomb, PV_BOMB,
634 #else
635 (char_u *)NULL, PV_NONE,
636 #endif
637 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
638 {"breakat", "brk", P_STRING|P_VI_DEF|P_RALL|P_FLAGLIST,
639 #ifdef FEAT_LINEBREAK
640 (char_u *)&p_breakat, PV_NONE,
641 {(char_u *)" \t!@*-+;:,./?", (char_u *)0L}
642 #else
643 (char_u *)NULL, PV_NONE,
644 {(char_u *)0L, (char_u *)0L}
645 #endif
646 SCRIPTID_INIT},
647 {"browsedir", "bsdir",P_STRING|P_VI_DEF,
648 #ifdef FEAT_BROWSE
649 (char_u *)&p_bsdir, PV_NONE,
650 {(char_u *)"last", (char_u *)0L}
651 #else
652 (char_u *)NULL, PV_NONE,
653 {(char_u *)0L, (char_u *)0L}
654 #endif
655 SCRIPTID_INIT},
656 {"bufhidden", "bh", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB,
657 #if defined(FEAT_QUICKFIX)
658 (char_u *)&p_bh, PV_BH,
659 {(char_u *)"", (char_u *)0L}
660 #else
661 (char_u *)NULL, PV_NONE,
662 {(char_u *)0L, (char_u *)0L}
663 #endif
664 SCRIPTID_INIT},
665 {"buflisted", "bl", P_BOOL|P_VI_DEF|P_NOGLOB,
666 (char_u *)&p_bl, PV_BL,
667 {(char_u *)1L, (char_u *)0L}
668 SCRIPTID_INIT},
669 {"buftype", "bt", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB,
670 #if defined(FEAT_QUICKFIX)
671 (char_u *)&p_bt, PV_BT,
672 {(char_u *)"", (char_u *)0L}
673 #else
674 (char_u *)NULL, PV_NONE,
675 {(char_u *)0L, (char_u *)0L}
676 #endif
677 SCRIPTID_INIT},
678 {"casemap", "cmp", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
679 #ifdef FEAT_MBYTE
680 (char_u *)&p_cmp, PV_NONE,
681 {(char_u *)"internal,keepascii", (char_u *)0L}
682 #else
683 (char_u *)NULL, PV_NONE,
684 {(char_u *)0L, (char_u *)0L}
685 #endif
686 SCRIPTID_INIT},
687 {"cdpath", "cd", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
688 #ifdef FEAT_SEARCHPATH
689 (char_u *)&p_cdpath, PV_NONE,
690 {(char_u *)",,", (char_u *)0L}
691 #else
692 (char_u *)NULL, PV_NONE,
693 {(char_u *)0L, (char_u *)0L}
694 #endif
695 SCRIPTID_INIT},
696 {"cedit", NULL, P_STRING,
697 #ifdef FEAT_CMDWIN
698 (char_u *)&p_cedit, PV_NONE,
699 {(char_u *)"", (char_u *)CTRL_F_STR}
700 #else
701 (char_u *)NULL, PV_NONE,
702 {(char_u *)0L, (char_u *)0L}
703 #endif
704 SCRIPTID_INIT},
705 {"charconvert", "ccv", P_STRING|P_VI_DEF|P_SECURE,
706 #if defined(FEAT_MBYTE) && defined(FEAT_EVAL)
707 (char_u *)&p_ccv, PV_NONE,
708 {(char_u *)"", (char_u *)0L}
709 #else
710 (char_u *)NULL, PV_NONE,
711 {(char_u *)0L, (char_u *)0L}
712 #endif
713 SCRIPTID_INIT},
714 {"cindent", "cin", P_BOOL|P_VI_DEF|P_VIM,
715 #ifdef FEAT_CINDENT
716 (char_u *)&p_cin, PV_CIN,
717 #else
718 (char_u *)NULL, PV_NONE,
719 #endif
720 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
721 {"cinkeys", "cink", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
722 #ifdef FEAT_CINDENT
723 (char_u *)&p_cink, PV_CINK,
724 {(char_u *)"0{,0},0),:,0#,!^F,o,O,e", (char_u *)0L}
725 #else
726 (char_u *)NULL, PV_NONE,
727 {(char_u *)0L, (char_u *)0L}
728 #endif
729 SCRIPTID_INIT},
730 {"cinoptions", "cino", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
731 #ifdef FEAT_CINDENT
732 (char_u *)&p_cino, PV_CINO,
733 #else
734 (char_u *)NULL, PV_NONE,
735 #endif
736 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
737 {"cinwords", "cinw", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
738 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
739 (char_u *)&p_cinw, PV_CINW,
740 {(char_u *)"if,else,while,do,for,switch",
741 (char_u *)0L}
742 #else
743 (char_u *)NULL, PV_NONE,
744 {(char_u *)0L, (char_u *)0L}
745 #endif
746 SCRIPTID_INIT},
747 {"clipboard", "cb", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
748 #ifdef FEAT_CLIPBOARD
749 (char_u *)&p_cb, PV_NONE,
750 # ifdef FEAT_XCLIPBOARD
751 {(char_u *)"autoselect,exclude:cons\\|linux",
752 (char_u *)0L}
753 # else
754 {(char_u *)"", (char_u *)0L}
755 # endif
756 #else
757 (char_u *)NULL, PV_NONE,
758 {(char_u *)"", (char_u *)0L}
759 #endif
760 SCRIPTID_INIT},
761 {"cmdheight", "ch", P_NUM|P_VI_DEF|P_RALL,
762 (char_u *)&p_ch, PV_NONE,
763 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
764 {"cmdwinheight", "cwh", P_NUM|P_VI_DEF,
765 #ifdef FEAT_CMDWIN
766 (char_u *)&p_cwh, PV_NONE,
767 #else
768 (char_u *)NULL, PV_NONE,
769 #endif
770 {(char_u *)7L, (char_u *)0L} SCRIPTID_INIT},
771 {"columns", "co", P_NUM|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RCLR,
772 (char_u *)&Columns, PV_NONE,
773 {(char_u *)80L, (char_u *)0L} SCRIPTID_INIT},
774 {"comments", "com", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
775 #ifdef FEAT_COMMENTS
776 (char_u *)&p_com, PV_COM,
777 {(char_u *)"s1:/*,mb:*,ex:*/,://,b:#,:%,:XCOMM,n:>,fb:-",
778 (char_u *)0L}
779 #else
780 (char_u *)NULL, PV_NONE,
781 {(char_u *)0L, (char_u *)0L}
782 #endif
783 SCRIPTID_INIT},
784 {"commentstring", "cms", P_STRING|P_ALLOCED|P_VI_DEF,
785 #ifdef FEAT_FOLDING
786 (char_u *)&p_cms, PV_CMS,
787 {(char_u *)"/*%s*/", (char_u *)0L}
788 #else
789 (char_u *)NULL, PV_NONE,
790 {(char_u *)0L, (char_u *)0L}
791 #endif
792 SCRIPTID_INIT},
793 /* P_PRI_MKRC isn't needed here, optval_default()
794 * always returns TRUE for 'compatible' */
795 {"compatible", "cp", P_BOOL|P_RALL,
796 (char_u *)&p_cp, PV_NONE,
797 {(char_u *)TRUE, (char_u *)FALSE} SCRIPTID_INIT},
798 {"complete", "cpt", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
799 #ifdef FEAT_INS_EXPAND
800 (char_u *)&p_cpt, PV_CPT,
801 {(char_u *)".,w,b,u,t,i", (char_u *)0L}
802 #else
803 (char_u *)NULL, PV_NONE,
804 {(char_u *)0L, (char_u *)0L}
805 #endif
806 SCRIPTID_INIT},
807 {"completefunc", "cfu", P_STRING|P_ALLOCED|P_VI_DEF|P_SECURE,
808 #ifdef FEAT_COMPL_FUNC
809 (char_u *)&p_cfu, PV_CFU,
810 {(char_u *)"", (char_u *)0L}
811 #else
812 (char_u *)NULL, PV_NONE,
813 {(char_u *)0L, (char_u *)0L}
814 #endif
815 SCRIPTID_INIT},
816 {"completeopt", "cot", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
817 #ifdef FEAT_INS_EXPAND
818 (char_u *)&p_cot, PV_NONE,
819 {(char_u *)"menu,preview", (char_u *)0L}
820 #else
821 (char_u *)NULL, PV_NONE,
822 {(char_u *)0L, (char_u *)0L}
823 #endif
824 SCRIPTID_INIT},
825 {"confirm", "cf", P_BOOL|P_VI_DEF,
826 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
827 (char_u *)&p_confirm, PV_NONE,
828 #else
829 (char_u *)NULL, PV_NONE,
830 #endif
831 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
832 {"conskey", "consk",P_BOOL|P_VI_DEF,
833 #ifdef MSDOS
834 (char_u *)&p_consk, PV_NONE,
835 #else
836 (char_u *)NULL, PV_NONE,
837 #endif
838 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
839 {"copyindent", "ci", P_BOOL|P_VI_DEF|P_VIM,
840 (char_u *)&p_ci, PV_CI,
841 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
842 {"cpoptions", "cpo", P_STRING|P_VIM|P_RALL|P_FLAGLIST,
843 (char_u *)&p_cpo, PV_NONE,
844 {(char_u *)CPO_VI, (char_u *)CPO_VIM}
845 SCRIPTID_INIT},
846 {"cscopepathcomp", "cspc", P_NUM|P_VI_DEF|P_VIM,
847 #ifdef FEAT_CSCOPE
848 (char_u *)&p_cspc, PV_NONE,
849 #else
850 (char_u *)NULL, PV_NONE,
851 #endif
852 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
853 {"cscopeprg", "csprg", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
854 #ifdef FEAT_CSCOPE
855 (char_u *)&p_csprg, PV_NONE,
856 {(char_u *)"cscope", (char_u *)0L}
857 #else
858 (char_u *)NULL, PV_NONE,
859 {(char_u *)0L, (char_u *)0L}
860 #endif
861 SCRIPTID_INIT},
862 {"cscopequickfix", "csqf", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
863 #if defined(FEAT_CSCOPE) && defined(FEAT_QUICKFIX)
864 (char_u *)&p_csqf, PV_NONE,
865 {(char_u *)"", (char_u *)0L}
866 #else
867 (char_u *)NULL, PV_NONE,
868 {(char_u *)0L, (char_u *)0L}
869 #endif
870 SCRIPTID_INIT},
871 {"cscopetag", "cst", P_BOOL|P_VI_DEF|P_VIM,
872 #ifdef FEAT_CSCOPE
873 (char_u *)&p_cst, PV_NONE,
874 #else
875 (char_u *)NULL, PV_NONE,
876 #endif
877 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
878 {"cscopetagorder", "csto", P_NUM|P_VI_DEF|P_VIM,
879 #ifdef FEAT_CSCOPE
880 (char_u *)&p_csto, PV_NONE,
881 #else
882 (char_u *)NULL, PV_NONE,
883 #endif
884 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
885 {"cscopeverbose", "csverb", P_BOOL|P_VI_DEF|P_VIM,
886 #ifdef FEAT_CSCOPE
887 (char_u *)&p_csverbose, PV_NONE,
888 #else
889 (char_u *)NULL, PV_NONE,
890 #endif
891 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
892 {"cursorcolumn", "cuc", P_BOOL|P_VI_DEF|P_RWIN,
893 #ifdef FEAT_SYN_HL
894 (char_u *)VAR_WIN, PV_CUC,
895 #else
896 (char_u *)NULL, PV_NONE,
897 #endif
898 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
899 {"cursorline", "cul", P_BOOL|P_VI_DEF|P_RWIN,
900 #ifdef FEAT_SYN_HL
901 (char_u *)VAR_WIN, PV_CUL,
902 #else
903 (char_u *)NULL, PV_NONE,
904 #endif
905 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
906 {"debug", NULL, P_STRING|P_VI_DEF,
907 (char_u *)&p_debug, PV_NONE,
908 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
909 {"define", "def", P_STRING|P_ALLOCED|P_VI_DEF,
910 #ifdef FEAT_FIND_ID
911 (char_u *)&p_def, PV_DEF,
912 {(char_u *)"^\\s*#\\s*define", (char_u *)0L}
913 #else
914 (char_u *)NULL, PV_NONE,
915 {(char_u *)NULL, (char_u *)0L}
916 #endif
917 SCRIPTID_INIT},
918 {"delcombine", "deco", P_BOOL|P_VI_DEF|P_VIM,
919 #ifdef FEAT_MBYTE
920 (char_u *)&p_deco, PV_NONE,
921 #else
922 (char_u *)NULL, PV_NONE,
923 #endif
924 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
925 {"dictionary", "dict", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
926 #ifdef FEAT_INS_EXPAND
927 (char_u *)&p_dict, PV_DICT,
928 #else
929 (char_u *)NULL, PV_NONE,
930 #endif
931 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
932 {"diff", NULL, P_BOOL|P_VI_DEF|P_RWIN|P_NOGLOB,
933 #ifdef FEAT_DIFF
934 (char_u *)VAR_WIN, PV_DIFF,
935 #else
936 (char_u *)NULL, PV_NONE,
937 #endif
938 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
939 {"diffexpr", "dex", P_STRING|P_VI_DEF|P_SECURE,
940 #if defined(FEAT_DIFF) && defined(FEAT_EVAL)
941 (char_u *)&p_dex, PV_NONE,
942 {(char_u *)"", (char_u *)0L}
943 #else
944 (char_u *)NULL, PV_NONE,
945 {(char_u *)0L, (char_u *)0L}
946 #endif
947 SCRIPTID_INIT},
948 {"diffopt", "dip", P_STRING|P_ALLOCED|P_VI_DEF|P_RWIN|P_COMMA|P_NODUP,
949 #ifdef FEAT_DIFF
950 (char_u *)&p_dip, PV_NONE,
951 {(char_u *)"filler", (char_u *)NULL}
952 #else
953 (char_u *)NULL, PV_NONE,
954 {(char_u *)"", (char_u *)NULL}
955 #endif
956 SCRIPTID_INIT},
957 {"digraph", "dg", P_BOOL|P_VI_DEF|P_VIM,
958 #ifdef FEAT_DIGRAPHS
959 (char_u *)&p_dg, PV_NONE,
960 #else
961 (char_u *)NULL, PV_NONE,
962 #endif
963 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
964 {"directory", "dir", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP|P_SECURE,
965 (char_u *)&p_dir, PV_NONE,
966 {(char_u *)DFLT_DIR, (char_u *)0L} SCRIPTID_INIT},
967 {"display", "dy", P_STRING|P_VI_DEF|P_COMMA|P_RALL|P_NODUP,
968 (char_u *)&p_dy, PV_NONE,
969 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
970 {"eadirection", "ead", P_STRING|P_VI_DEF,
971 #ifdef FEAT_VERTSPLIT
972 (char_u *)&p_ead, PV_NONE,
973 {(char_u *)"both", (char_u *)0L}
974 #else
975 (char_u *)NULL, PV_NONE,
976 {(char_u *)NULL, (char_u *)0L}
977 #endif
978 SCRIPTID_INIT},
979 {"edcompatible","ed", P_BOOL|P_VI_DEF,
980 (char_u *)&p_ed, PV_NONE,
981 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
982 {"encoding", "enc", P_STRING|P_VI_DEF|P_RCLR,
983 #ifdef FEAT_MBYTE
984 (char_u *)&p_enc, PV_NONE,
985 {(char_u *)ENC_DFLT, (char_u *)0L}
986 #else
987 (char_u *)NULL, PV_NONE,
988 {(char_u *)0L, (char_u *)0L}
989 #endif
990 SCRIPTID_INIT},
991 {"endofline", "eol", P_BOOL|P_NO_MKRC|P_VI_DEF|P_RSTAT,
992 (char_u *)&p_eol, PV_EOL,
993 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
994 {"equalalways", "ea", P_BOOL|P_VI_DEF|P_RALL,
995 (char_u *)&p_ea, PV_NONE,
996 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
997 {"equalprg", "ep", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
998 (char_u *)&p_ep, PV_EP,
999 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1000 {"errorbells", "eb", P_BOOL|P_VI_DEF,
1001 (char_u *)&p_eb, PV_NONE,
1002 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1003 {"errorfile", "ef", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1004 #ifdef FEAT_QUICKFIX
1005 (char_u *)&p_ef, PV_NONE,
1006 {(char_u *)DFLT_ERRORFILE, (char_u *)0L}
1007 #else
1008 (char_u *)NULL, PV_NONE,
1009 {(char_u *)NULL, (char_u *)0L}
1010 #endif
1011 SCRIPTID_INIT},
1012 {"errorformat", "efm", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1013 #ifdef FEAT_QUICKFIX
1014 (char_u *)&p_efm, PV_EFM,
1015 {(char_u *)DFLT_EFM, (char_u *)0L}
1016 #else
1017 (char_u *)NULL, PV_NONE,
1018 {(char_u *)NULL, (char_u *)0L}
1019 #endif
1020 SCRIPTID_INIT},
1021 {"esckeys", "ek", P_BOOL|P_VIM,
1022 (char_u *)&p_ek, PV_NONE,
1023 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
1024 {"eventignore", "ei", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1025 #ifdef FEAT_AUTOCMD
1026 (char_u *)&p_ei, PV_NONE,
1027 #else
1028 (char_u *)NULL, PV_NONE,
1029 #endif
1030 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1031 {"expandtab", "et", P_BOOL|P_VI_DEF|P_VIM,
1032 (char_u *)&p_et, PV_ET,
1033 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1034 {"exrc", "ex", P_BOOL|P_VI_DEF|P_SECURE,
1035 (char_u *)&p_exrc, PV_NONE,
1036 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1037 {"fileencoding","fenc", P_STRING|P_ALLOCED|P_VI_DEF|P_RSTAT|P_RBUF|P_NO_MKRC,
1038 #ifdef FEAT_MBYTE
1039 (char_u *)&p_fenc, PV_FENC,
1040 {(char_u *)"", (char_u *)0L}
1041 #else
1042 (char_u *)NULL, PV_NONE,
1043 {(char_u *)0L, (char_u *)0L}
1044 #endif
1045 SCRIPTID_INIT},
1046 {"fileencodings","fencs", P_STRING|P_VI_DEF|P_COMMA,
1047 #ifdef FEAT_MBYTE
1048 (char_u *)&p_fencs, PV_NONE,
1049 {(char_u *)"ucs-bom", (char_u *)0L}
1050 #else
1051 (char_u *)NULL, PV_NONE,
1052 {(char_u *)0L, (char_u *)0L}
1053 #endif
1054 SCRIPTID_INIT},
1055 {"fileformat", "ff", P_STRING|P_ALLOCED|P_VI_DEF|P_RSTAT|P_NO_MKRC,
1056 (char_u *)&p_ff, PV_FF,
1057 {(char_u *)DFLT_FF, (char_u *)0L} SCRIPTID_INIT},
1058 {"fileformats", "ffs", P_STRING|P_VIM|P_COMMA|P_NODUP,
1059 (char_u *)&p_ffs, PV_NONE,
1060 {(char_u *)DFLT_FFS_VI, (char_u *)DFLT_FFS_VIM}
1061 SCRIPTID_INIT},
1062 {"filetype", "ft", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB|P_NFNAME,
1063 #ifdef FEAT_AUTOCMD
1064 (char_u *)&p_ft, PV_FT,
1065 {(char_u *)"", (char_u *)0L}
1066 #else
1067 (char_u *)NULL, PV_NONE,
1068 {(char_u *)0L, (char_u *)0L}
1069 #endif
1070 SCRIPTID_INIT},
1071 {"fillchars", "fcs", P_STRING|P_VI_DEF|P_RALL|P_COMMA|P_NODUP,
1072 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
1073 (char_u *)&p_fcs, PV_NONE,
1074 {(char_u *)"vert:|,fold:-", (char_u *)0L}
1075 #else
1076 (char_u *)NULL, PV_NONE,
1077 {(char_u *)"", (char_u *)0L}
1078 #endif
1079 SCRIPTID_INIT},
1080 {"fkmap", "fk", P_BOOL|P_VI_DEF,
1081 #ifdef FEAT_FKMAP
1082 (char_u *)&p_fkmap, PV_NONE,
1083 #else
1084 (char_u *)NULL, PV_NONE,
1085 #endif
1086 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1087 {"flash", "fl", P_BOOL|P_VI_DEF,
1088 (char_u *)NULL, PV_NONE,
1089 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1090 #ifdef FEAT_FOLDING
1091 {"foldclose", "fcl", P_STRING|P_VI_DEF|P_COMMA|P_NODUP|P_RWIN,
1092 (char_u *)&p_fcl, PV_NONE,
1093 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1094 {"foldcolumn", "fdc", P_NUM|P_VI_DEF|P_RWIN,
1095 (char_u *)VAR_WIN, PV_FDC,
1096 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1097 {"foldenable", "fen", P_BOOL|P_VI_DEF|P_RWIN,
1098 (char_u *)VAR_WIN, PV_FEN,
1099 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1100 {"foldexpr", "fde", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1101 # ifdef FEAT_EVAL
1102 (char_u *)VAR_WIN, PV_FDE,
1103 {(char_u *)"0", (char_u *)NULL}
1104 # else
1105 (char_u *)NULL, PV_NONE,
1106 {(char_u *)NULL, (char_u *)0L}
1107 # endif
1108 SCRIPTID_INIT},
1109 {"foldignore", "fdi", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1110 (char_u *)VAR_WIN, PV_FDI,
1111 {(char_u *)"#", (char_u *)NULL} SCRIPTID_INIT},
1112 {"foldlevel", "fdl", P_NUM|P_VI_DEF|P_RWIN,
1113 (char_u *)VAR_WIN, PV_FDL,
1114 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
1115 {"foldlevelstart","fdls", P_NUM|P_VI_DEF,
1116 (char_u *)&p_fdls, PV_NONE,
1117 {(char_u *)-1L, (char_u *)0L} SCRIPTID_INIT},
1118 {"foldmarker", "fmr", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|
1119 P_RWIN|P_COMMA|P_NODUP,
1120 (char_u *)VAR_WIN, PV_FMR,
1121 {(char_u *)"{{{,}}}", (char_u *)NULL}
1122 SCRIPTID_INIT},
1123 {"foldmethod", "fdm", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1124 (char_u *)VAR_WIN, PV_FDM,
1125 {(char_u *)"manual", (char_u *)NULL} SCRIPTID_INIT},
1126 {"foldminlines","fml", P_NUM|P_VI_DEF|P_RWIN,
1127 (char_u *)VAR_WIN, PV_FML,
1128 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
1129 {"foldnestmax", "fdn", P_NUM|P_VI_DEF|P_RWIN,
1130 (char_u *)VAR_WIN, PV_FDN,
1131 {(char_u *)20L, (char_u *)0L} SCRIPTID_INIT},
1132 {"foldopen", "fdo", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1133 (char_u *)&p_fdo, PV_NONE,
1134 {(char_u *)"block,hor,mark,percent,quickfix,search,tag,undo",
1135 (char_u *)0L} SCRIPTID_INIT},
1136 {"foldtext", "fdt", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1137 # ifdef FEAT_EVAL
1138 (char_u *)VAR_WIN, PV_FDT,
1139 {(char_u *)"foldtext()", (char_u *)NULL}
1140 # else
1141 (char_u *)NULL, PV_NONE,
1142 {(char_u *)NULL, (char_u *)0L}
1143 # endif
1144 SCRIPTID_INIT},
1145 #endif
1146 {"formatexpr", "fex", P_STRING|P_ALLOCED|P_VI_DEF|P_VIM,
1147 #ifdef FEAT_EVAL
1148 (char_u *)&p_fex, PV_FEX,
1149 {(char_u *)"", (char_u *)0L}
1150 #else
1151 (char_u *)NULL, PV_NONE,
1152 {(char_u *)0L, (char_u *)0L}
1153 #endif
1154 SCRIPTID_INIT},
1155 {"formatoptions","fo", P_STRING|P_ALLOCED|P_VIM|P_FLAGLIST,
1156 (char_u *)&p_fo, PV_FO,
1157 {(char_u *)DFLT_FO_VI, (char_u *)DFLT_FO_VIM}
1158 SCRIPTID_INIT},
1159 {"formatlistpat","flp", P_STRING|P_ALLOCED|P_VI_DEF,
1160 (char_u *)&p_flp, PV_FLP,
1161 {(char_u *)"^\\s*\\d\\+[\\]:.)}\\t ]\\s*",
1162 (char_u *)0L} SCRIPTID_INIT},
1163 {"formatprg", "fp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1164 (char_u *)&p_fp, PV_NONE,
1165 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1166 {"fsync", "fs", P_BOOL|P_SECURE|P_VI_DEF,
1167 #ifdef HAVE_FSYNC
1168 (char_u *)&p_fs, PV_NONE,
1169 {(char_u *)TRUE, (char_u *)0L}
1170 #else
1171 (char_u *)NULL, PV_NONE,
1172 {(char_u *)FALSE, (char_u *)0L}
1173 #endif
1174 SCRIPTID_INIT},
1175 {"fullscreen", "fu", P_BOOL|P_NO_MKRC,
1176 #ifdef FEAT_FULLSCREEN
1177 (char_u *)&p_fullscreen, PV_NONE,
1178 #else
1179 (char_u *)NULL, PV_NONE,
1180 #endif
1181 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1182 {"fuoptions", "fuopt", P_STRING|P_COMMA|P_NODUP|P_VI_DEF,
1183 #ifdef FEAT_FULLSCREEN
1184 (char_u *)&p_fuoptions, PV_NONE,
1185 {(char_u *)"maxvert", (char_u *)0L}
1186 #else
1187 (char_u *)NULL, PV_NONE,
1188 {(char_u *)NULL, (char_u *)0L}
1189 #endif
1190 SCRIPTID_INIT},
1191 {"gdefault", "gd", P_BOOL|P_VI_DEF|P_VIM,
1192 (char_u *)&p_gd, PV_NONE,
1193 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1194 {"graphic", "gr", P_BOOL|P_VI_DEF,
1195 (char_u *)NULL, PV_NONE,
1196 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1197 {"grepformat", "gfm", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1198 #ifdef FEAT_QUICKFIX
1199 (char_u *)&p_gefm, PV_NONE,
1200 {(char_u *)DFLT_GREPFORMAT, (char_u *)0L}
1201 #else
1202 (char_u *)NULL, PV_NONE,
1203 {(char_u *)NULL, (char_u *)0L}
1204 #endif
1205 SCRIPTID_INIT},
1206 {"grepprg", "gp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1207 #ifdef FEAT_QUICKFIX
1208 (char_u *)&p_gp, PV_GP,
1210 # ifdef WIN3264
1211 /* may be changed to "grep -n" in os_win32.c */
1212 (char_u *)"findstr /n",
1213 # else
1214 # ifdef UNIX
1215 /* Add an extra file name so that grep will always
1216 * insert a file name in the match line. */
1217 (char_u *)"grep -n $* /dev/null",
1218 # else
1219 # ifdef VMS
1220 (char_u *)"SEARCH/NUMBERS ",
1221 # else
1222 (char_u *)"grep -n ",
1223 # endif
1224 # endif
1225 # endif
1226 (char_u *)0L}
1227 #else
1228 (char_u *)NULL, PV_NONE,
1229 {(char_u *)NULL, (char_u *)0L}
1230 #endif
1231 SCRIPTID_INIT},
1232 {"guicursor", "gcr", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1233 #ifdef CURSOR_SHAPE
1234 (char_u *)&p_guicursor, PV_NONE,
1236 # ifdef FEAT_GUI
1237 (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",
1238 # else /* MSDOS or Win32 console */
1239 (char_u *)"n-v-c:block,o:hor50,i-ci:hor15,r-cr:hor30,sm:block",
1240 # endif
1241 (char_u *)0L}
1242 #else
1243 (char_u *)NULL, PV_NONE,
1244 {(char_u *)NULL, (char_u *)0L}
1245 #endif
1246 SCRIPTID_INIT},
1247 {"guifont", "gfn", P_STRING|P_VI_DEF|P_RCLR|P_COMMA|P_NODUP,
1248 #ifdef FEAT_GUI
1249 (char_u *)&p_guifont, PV_NONE,
1250 {(char_u *)"", (char_u *)0L}
1251 #else
1252 (char_u *)NULL, PV_NONE,
1253 {(char_u *)NULL, (char_u *)0L}
1254 #endif
1255 SCRIPTID_INIT},
1256 {"guifontset", "gfs", P_STRING|P_VI_DEF|P_RCLR|P_COMMA,
1257 #if defined(FEAT_GUI) && defined(FEAT_XFONTSET)
1258 (char_u *)&p_guifontset, PV_NONE,
1259 {(char_u *)"", (char_u *)0L}
1260 #else
1261 (char_u *)NULL, PV_NONE,
1262 {(char_u *)NULL, (char_u *)0L}
1263 #endif
1264 SCRIPTID_INIT},
1265 {"guifontwide", "gfw", P_STRING|P_VI_DEF|P_RCLR|P_COMMA|P_NODUP,
1266 #if defined(FEAT_GUI) && defined(FEAT_MBYTE)
1267 (char_u *)&p_guifontwide, PV_NONE,
1268 {(char_u *)"", (char_u *)0L}
1269 #else
1270 (char_u *)NULL, PV_NONE,
1271 {(char_u *)NULL, (char_u *)0L}
1272 #endif
1273 SCRIPTID_INIT},
1274 {"guiheadroom", "ghr", P_NUM|P_VI_DEF,
1275 #if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11)
1276 (char_u *)&p_ghr, PV_NONE,
1277 #else
1278 (char_u *)NULL, PV_NONE,
1279 #endif
1280 {(char_u *)50L, (char_u *)0L} SCRIPTID_INIT},
1281 {"guioptions", "go", P_STRING|P_VI_DEF|P_RALL|P_FLAGLIST
1282 # ifdef FEAT_GUI_MACVIM
1283 /* Scrollbars etc. may change the view, if this happens without a
1284 * redraw the display may get corrupted, so always redraw. */
1285 |P_RCLR
1286 # endif
1288 #if defined(FEAT_GUI)
1289 (char_u *)&p_go, PV_NONE,
1290 # if defined(UNIX) && !defined(MACOS)
1291 {(char_u *)"aegimrLtT", (char_u *)0L}
1292 # else
1293 {(char_u *)"egmrLtT", (char_u *)0L}
1294 # endif
1295 #else
1296 (char_u *)NULL, PV_NONE,
1297 {(char_u *)NULL, (char_u *)0L}
1298 #endif
1299 SCRIPTID_INIT},
1300 {"guipty", NULL, P_BOOL|P_VI_DEF,
1301 #if defined(FEAT_GUI)
1302 (char_u *)&p_guipty, PV_NONE,
1303 #else
1304 (char_u *)NULL, PV_NONE,
1305 #endif
1306 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1307 {"guitablabel", "gtl", P_STRING|P_VI_DEF|P_RWIN,
1308 #if defined(FEAT_GUI_TABLINE)
1309 (char_u *)&p_gtl, PV_NONE,
1310 {(char_u *)"", (char_u *)0L}
1311 #else
1312 (char_u *)NULL, PV_NONE,
1313 {(char_u *)NULL, (char_u *)0L}
1314 #endif
1315 SCRIPTID_INIT},
1316 {"guitabtooltip", "gtt", P_STRING|P_VI_DEF|P_RWIN,
1317 #if defined(FEAT_GUI_TABLINE)
1318 (char_u *)&p_gtt, PV_NONE,
1319 {(char_u *)"", (char_u *)0L}
1320 #else
1321 (char_u *)NULL, PV_NONE,
1322 {(char_u *)NULL, (char_u *)0L}
1323 #endif
1324 SCRIPTID_INIT},
1325 {"hardtabs", "ht", P_NUM|P_VI_DEF,
1326 (char_u *)NULL, PV_NONE,
1327 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
1328 {"helpfile", "hf", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1329 (char_u *)&p_hf, PV_NONE,
1330 {(char_u *)DFLT_HELPFILE, (char_u *)0L}
1331 SCRIPTID_INIT},
1332 {"helpheight", "hh", P_NUM|P_VI_DEF,
1333 #ifdef FEAT_WINDOWS
1334 (char_u *)&p_hh, PV_NONE,
1335 #else
1336 (char_u *)NULL, PV_NONE,
1337 #endif
1338 {(char_u *)20L, (char_u *)0L} SCRIPTID_INIT},
1339 {"helplang", "hlg", P_STRING|P_VI_DEF|P_COMMA,
1340 #ifdef FEAT_MULTI_LANG
1341 (char_u *)&p_hlg, PV_NONE,
1342 {(char_u *)"", (char_u *)0L}
1343 #else
1344 (char_u *)NULL, PV_NONE,
1345 {(char_u *)0L, (char_u *)0L}
1346 #endif
1347 SCRIPTID_INIT},
1348 {"hidden", "hid", P_BOOL|P_VI_DEF,
1349 (char_u *)&p_hid, PV_NONE,
1350 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1351 {"highlight", "hl", P_STRING|P_VI_DEF|P_RCLR|P_COMMA|P_NODUP,
1352 (char_u *)&p_hl, PV_NONE,
1353 {(char_u *)HIGHLIGHT_INIT, (char_u *)0L}
1354 SCRIPTID_INIT},
1355 {"history", "hi", P_NUM|P_VIM,
1356 (char_u *)&p_hi, PV_NONE,
1357 {(char_u *)0L, (char_u *)20L} SCRIPTID_INIT},
1358 {"hkmap", "hk", P_BOOL|P_VI_DEF|P_VIM,
1359 #ifdef FEAT_RIGHTLEFT
1360 (char_u *)&p_hkmap, PV_NONE,
1361 #else
1362 (char_u *)NULL, PV_NONE,
1363 #endif
1364 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1365 {"hkmapp", "hkp", P_BOOL|P_VI_DEF|P_VIM,
1366 #ifdef FEAT_RIGHTLEFT
1367 (char_u *)&p_hkmapp, PV_NONE,
1368 #else
1369 (char_u *)NULL, PV_NONE,
1370 #endif
1371 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1372 {"hlsearch", "hls", P_BOOL|P_VI_DEF|P_VIM|P_RALL,
1373 (char_u *)&p_hls, PV_NONE,
1374 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1375 {"icon", NULL, P_BOOL|P_VI_DEF,
1376 #ifdef FEAT_TITLE
1377 (char_u *)&p_icon, PV_NONE,
1378 #else
1379 (char_u *)NULL, PV_NONE,
1380 #endif
1381 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1382 {"iconstring", NULL, P_STRING|P_VI_DEF,
1383 #ifdef FEAT_TITLE
1384 (char_u *)&p_iconstring, PV_NONE,
1385 #else
1386 (char_u *)NULL, PV_NONE,
1387 #endif
1388 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1389 {"ignorecase", "ic", P_BOOL|P_VI_DEF,
1390 (char_u *)&p_ic, PV_NONE,
1391 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1392 {"imactivatekey","imak",P_STRING|P_VI_DEF,
1393 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
1394 (char_u *)&p_imak, PV_NONE,
1395 #else
1396 (char_u *)NULL, PV_NONE,
1397 #endif
1398 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1399 {"imcmdline", "imc", P_BOOL|P_VI_DEF,
1400 #ifdef USE_IM_CONTROL
1401 (char_u *)&p_imcmdline, PV_NONE,
1402 #else
1403 (char_u *)NULL, PV_NONE,
1404 #endif
1405 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1406 {"imdisable", "imd", P_BOOL|P_VI_DEF,
1407 #ifdef USE_IM_CONTROL
1408 (char_u *)&p_imdisable, PV_NONE,
1409 #else
1410 (char_u *)NULL, PV_NONE,
1411 #endif
1412 #if defined(__sgi) || defined(FEAT_GUI_MACVIM)
1413 {(char_u *)TRUE, (char_u *)0L}
1414 #else
1415 {(char_u *)FALSE, (char_u *)0L}
1416 #endif
1417 SCRIPTID_INIT},
1418 {"iminsert", "imi", P_NUM|P_VI_DEF,
1419 (char_u *)&p_iminsert, PV_IMI,
1420 #ifdef B_IMODE_IM
1421 {(char_u *)B_IMODE_IM, (char_u *)0L}
1422 #else
1423 {(char_u *)B_IMODE_NONE, (char_u *)0L}
1424 #endif
1425 SCRIPTID_INIT},
1426 {"imsearch", "ims", P_NUM|P_VI_DEF,
1427 (char_u *)&p_imsearch, PV_IMS,
1428 #ifdef B_IMODE_IM
1429 {(char_u *)B_IMODE_IM, (char_u *)0L}
1430 #else
1431 {(char_u *)B_IMODE_NONE, (char_u *)0L}
1432 #endif
1433 SCRIPTID_INIT},
1434 {"include", "inc", P_STRING|P_ALLOCED|P_VI_DEF,
1435 #ifdef FEAT_FIND_ID
1436 (char_u *)&p_inc, PV_INC,
1437 {(char_u *)"^\\s*#\\s*include", (char_u *)0L}
1438 #else
1439 (char_u *)NULL, PV_NONE,
1440 {(char_u *)0L, (char_u *)0L}
1441 #endif
1442 SCRIPTID_INIT},
1443 {"includeexpr", "inex", P_STRING|P_ALLOCED|P_VI_DEF,
1444 #if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
1445 (char_u *)&p_inex, PV_INEX,
1446 {(char_u *)"", (char_u *)0L}
1447 #else
1448 (char_u *)NULL, PV_NONE,
1449 {(char_u *)0L, (char_u *)0L}
1450 #endif
1451 SCRIPTID_INIT},
1452 {"incsearch", "is", P_BOOL|P_VI_DEF|P_VIM,
1453 (char_u *)&p_is, PV_NONE,
1454 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1455 {"indentexpr", "inde", P_STRING|P_ALLOCED|P_VI_DEF|P_VIM,
1456 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
1457 (char_u *)&p_inde, PV_INDE,
1458 {(char_u *)"", (char_u *)0L}
1459 #else
1460 (char_u *)NULL, PV_NONE,
1461 {(char_u *)0L, (char_u *)0L}
1462 #endif
1463 SCRIPTID_INIT},
1464 {"indentkeys", "indk", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
1465 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
1466 (char_u *)&p_indk, PV_INDK,
1467 {(char_u *)"0{,0},:,0#,!^F,o,O,e", (char_u *)0L}
1468 #else
1469 (char_u *)NULL, PV_NONE,
1470 {(char_u *)0L, (char_u *)0L}
1471 #endif
1472 SCRIPTID_INIT},
1473 {"infercase", "inf", P_BOOL|P_VI_DEF,
1474 (char_u *)&p_inf, PV_INF,
1475 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1476 {"insertmode", "im", P_BOOL|P_VI_DEF|P_VIM,
1477 (char_u *)&p_im, PV_NONE,
1478 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1479 {"isfname", "isf", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1480 (char_u *)&p_isf, PV_NONE,
1482 #ifdef BACKSLASH_IN_FILENAME
1483 /* Excluded are: & and ^ are special in cmd.exe
1484 * ( and ) are used in text separating fnames */
1485 (char_u *)"@,48-57,/,\\,.,-,_,+,,,#,$,%,{,},[,],:,@-@,!,~,=",
1486 #else
1487 # ifdef AMIGA
1488 (char_u *)"@,48-57,/,.,-,_,+,,,$,:",
1489 # else
1490 # ifdef VMS
1491 (char_u *)"@,48-57,/,.,-,_,+,,,#,$,%,<,>,[,],:,;,~",
1492 # else /* UNIX et al. */
1493 # ifdef EBCDIC
1494 (char_u *)"@,240-249,/,.,-,_,+,,,#,$,%,~,=",
1495 # else
1496 (char_u *)"@,48-57,/,.,-,_,+,,,#,$,%,~,=",
1497 # endif
1498 # endif
1499 # endif
1500 #endif
1501 (char_u *)0L} SCRIPTID_INIT},
1502 {"isident", "isi", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1503 (char_u *)&p_isi, PV_NONE,
1505 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
1506 (char_u *)"@,48-57,_,128-167,224-235",
1507 #else
1508 # ifdef EBCDIC
1509 /* TODO: EBCDIC Check this! @ == isalpha()*/
1510 (char_u *)"@,240-249,_,66-73,81-89,98-105,"
1511 "112-120,128,140-142,156,158,172,"
1512 "174,186,191,203-207,219-225,235-239,"
1513 "251-254",
1514 # else
1515 (char_u *)"@,48-57,_,192-255",
1516 # endif
1517 #endif
1518 (char_u *)0L} SCRIPTID_INIT},
1519 {"iskeyword", "isk", P_STRING|P_ALLOCED|P_VIM|P_COMMA|P_NODUP,
1520 (char_u *)&p_isk, PV_ISK,
1522 #ifdef EBCDIC
1523 (char_u *)"@,240-249,_",
1524 /* TODO: EBCDIC Check this! @ == isalpha()*/
1525 (char_u *)"@,240-249,_,66-73,81-89,98-105,"
1526 "112-120,128,140-142,156,158,172,"
1527 "174,186,191,203-207,219-225,235-239,"
1528 "251-254",
1529 #else
1530 (char_u *)"@,48-57,_",
1531 # if defined(MSDOS) || defined(MSWIN) || defined(OS2)
1532 (char_u *)"@,48-57,_,128-167,224-235"
1533 # else
1534 ISK_LATIN1
1535 # endif
1536 #endif
1537 } SCRIPTID_INIT},
1538 {"isprint", "isp", P_STRING|P_VI_DEF|P_RALL|P_COMMA|P_NODUP,
1539 (char_u *)&p_isp, PV_NONE,
1541 #if defined(MSDOS) || defined(MSWIN) || defined(OS2) \
1542 || (defined(MACOS) && !defined(MACOS_X)) \
1543 || defined(VMS)
1544 (char_u *)"@,~-255",
1545 #else
1546 # ifdef EBCDIC
1547 /* all chars above 63 are printable */
1548 (char_u *)"63-255",
1549 # else
1550 ISP_LATIN1,
1551 # endif
1552 #endif
1553 (char_u *)0L} SCRIPTID_INIT},
1554 {"joinspaces", "js", P_BOOL|P_VI_DEF|P_VIM,
1555 (char_u *)&p_js, PV_NONE,
1556 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1557 {"key", NULL, P_STRING|P_ALLOCED|P_VI_DEF|P_NO_MKRC,
1558 #ifdef FEAT_CRYPT
1559 (char_u *)&p_key, PV_KEY,
1560 {(char_u *)"", (char_u *)0L}
1561 #else
1562 (char_u *)NULL, PV_NONE,
1563 {(char_u *)0L, (char_u *)0L}
1564 #endif
1565 SCRIPTID_INIT},
1566 {"keymap", "kmp", P_STRING|P_ALLOCED|P_VI_DEF|P_RBUF|P_RSTAT|P_NFNAME|P_PRI_MKRC,
1567 #ifdef FEAT_KEYMAP
1568 (char_u *)&p_keymap, PV_KMAP,
1569 {(char_u *)"", (char_u *)0L}
1570 #else
1571 (char_u *)NULL, PV_NONE,
1572 {(char_u *)"", (char_u *)0L}
1573 #endif
1574 SCRIPTID_INIT},
1575 {"keymodel", "km", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1576 #ifdef FEAT_VISUAL
1577 (char_u *)&p_km, PV_NONE,
1578 #else
1579 (char_u *)NULL, PV_NONE,
1580 #endif
1581 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1582 {"keywordprg", "kp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1583 (char_u *)&p_kp, PV_KP,
1585 #if defined(MSDOS) || defined(MSWIN)
1586 (char_u *)":help",
1587 #else
1588 #ifdef VMS
1589 (char_u *)"help",
1590 #else
1591 # if defined(OS2)
1592 (char_u *)"view /",
1593 # else
1594 # ifdef USEMAN_S
1595 (char_u *)"man -s",
1596 # else
1597 (char_u *)"man",
1598 # endif
1599 # endif
1600 #endif
1601 #endif
1602 (char_u *)0L} SCRIPTID_INIT},
1603 {"langmap", "lmap", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1604 #ifdef FEAT_LANGMAP
1605 (char_u *)&p_langmap, PV_NONE,
1606 {(char_u *)"", /* unmatched } */
1607 #else
1608 (char_u *)NULL, PV_NONE,
1609 {(char_u *)NULL,
1610 #endif
1611 (char_u *)0L} SCRIPTID_INIT},
1612 {"langmenu", "lm", P_STRING|P_VI_DEF|P_NFNAME,
1613 #if defined(FEAT_MENU) && defined(FEAT_MULTI_LANG)
1614 (char_u *)&p_lm, PV_NONE,
1615 #else
1616 (char_u *)NULL, PV_NONE,
1617 #endif
1618 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1619 {"laststatus", "ls", P_NUM|P_VI_DEF|P_RALL,
1620 #ifdef FEAT_WINDOWS
1621 (char_u *)&p_ls, PV_NONE,
1622 #else
1623 (char_u *)NULL, PV_NONE,
1624 #endif
1625 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
1626 {"lazyredraw", "lz", P_BOOL|P_VI_DEF,
1627 (char_u *)&p_lz, PV_NONE,
1628 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1629 {"linebreak", "lbr", P_BOOL|P_VI_DEF|P_RWIN,
1630 #ifdef FEAT_LINEBREAK
1631 (char_u *)VAR_WIN, PV_LBR,
1632 #else
1633 (char_u *)NULL, PV_NONE,
1634 #endif
1635 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1636 {"lines", NULL, P_NUM|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RCLR,
1637 (char_u *)&Rows, PV_NONE,
1639 #if defined(MSDOS) || defined(WIN3264) || defined(OS2)
1640 (char_u *)25L,
1641 #else
1642 (char_u *)24L,
1643 #endif
1644 (char_u *)0L} SCRIPTID_INIT},
1645 {"linespace", "lsp", P_NUM|P_VI_DEF|P_RCLR,
1646 #ifdef FEAT_GUI
1647 (char_u *)&p_linespace, PV_NONE,
1648 #else
1649 (char_u *)NULL, PV_NONE,
1650 #endif
1651 #ifdef FEAT_GUI_W32
1652 {(char_u *)1L, (char_u *)0L}
1653 #else
1654 {(char_u *)0L, (char_u *)0L}
1655 #endif
1656 SCRIPTID_INIT},
1657 {"lisp", NULL, P_BOOL|P_VI_DEF,
1658 #ifdef FEAT_LISP
1659 (char_u *)&p_lisp, PV_LISP,
1660 #else
1661 (char_u *)NULL, PV_NONE,
1662 #endif
1663 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1664 {"lispwords", "lw", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1665 #ifdef FEAT_LISP
1666 (char_u *)&p_lispwords, PV_NONE,
1667 {(char_u *)LISPWORD_VALUE, (char_u *)0L}
1668 #else
1669 (char_u *)NULL, PV_NONE,
1670 {(char_u *)"", (char_u *)0L}
1671 #endif
1672 SCRIPTID_INIT},
1673 {"list", NULL, P_BOOL|P_VI_DEF|P_RWIN,
1674 (char_u *)VAR_WIN, PV_LIST,
1675 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1676 {"listchars", "lcs", P_STRING|P_VI_DEF|P_RALL|P_COMMA|P_NODUP,
1677 (char_u *)&p_lcs, PV_NONE,
1678 {(char_u *)"eol:$", (char_u *)0L} SCRIPTID_INIT},
1679 {"loadplugins", "lpl", P_BOOL|P_VI_DEF,
1680 (char_u *)&p_lpl, PV_NONE,
1681 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1682 #ifdef FEAT_GUI_MAC
1683 {"macatsui", NULL, P_BOOL|P_VI_DEF|P_RCLR,
1684 (char_u *)&p_macatsui, PV_NONE,
1685 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1686 #endif
1687 {"macmeta", "mmta", P_BOOL|P_VI_DEF,
1688 #ifdef FEAT_GUI_MACVIM
1689 (char_u *)&p_mmta, PV_MMTA,
1690 #else
1691 (char_u *)NULL, PV_NONE,
1692 #endif
1693 {(char_u *)FALSE, (char_u *)0L}},
1694 {"magic", NULL, P_BOOL|P_VI_DEF,
1695 (char_u *)&p_magic, PV_NONE,
1696 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1697 {"makeef", "mef", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1698 #ifdef FEAT_QUICKFIX
1699 (char_u *)&p_mef, PV_NONE,
1700 {(char_u *)"", (char_u *)0L}
1701 #else
1702 (char_u *)NULL, PV_NONE,
1703 {(char_u *)NULL, (char_u *)0L}
1704 #endif
1705 SCRIPTID_INIT},
1706 {"makeprg", "mp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1707 #ifdef FEAT_QUICKFIX
1708 (char_u *)&p_mp, PV_MP,
1709 # ifdef VMS
1710 {(char_u *)"MMS", (char_u *)0L}
1711 # else
1712 {(char_u *)"make", (char_u *)0L}
1713 # endif
1714 #else
1715 (char_u *)NULL, PV_NONE,
1716 {(char_u *)NULL, (char_u *)0L}
1717 #endif
1718 SCRIPTID_INIT},
1719 {"matchpairs", "mps", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
1720 (char_u *)&p_mps, PV_MPS,
1721 {(char_u *)"(:),{:},[:]", (char_u *)0L}
1722 SCRIPTID_INIT},
1723 {"matchtime", "mat", P_NUM|P_VI_DEF,
1724 (char_u *)&p_mat, PV_NONE,
1725 {(char_u *)5L, (char_u *)0L} SCRIPTID_INIT},
1726 {"maxcombine", "mco", P_NUM|P_VI_DEF,
1727 #ifdef FEAT_MBYTE
1728 (char_u *)&p_mco, PV_NONE,
1729 #else
1730 (char_u *)NULL, PV_NONE,
1731 #endif
1732 {(char_u *)2, (char_u *)0L} SCRIPTID_INIT},
1733 {"maxfuncdepth", "mfd", P_NUM|P_VI_DEF,
1734 #ifdef FEAT_EVAL
1735 (char_u *)&p_mfd, PV_NONE,
1736 #else
1737 (char_u *)NULL, PV_NONE,
1738 #endif
1739 {(char_u *)100L, (char_u *)0L} SCRIPTID_INIT},
1740 {"maxmapdepth", "mmd", P_NUM|P_VI_DEF,
1741 (char_u *)&p_mmd, PV_NONE,
1742 {(char_u *)1000L, (char_u *)0L} SCRIPTID_INIT},
1743 {"maxmem", "mm", P_NUM|P_VI_DEF,
1744 (char_u *)&p_mm, PV_NONE,
1745 {(char_u *)DFLT_MAXMEM, (char_u *)0L}
1746 SCRIPTID_INIT},
1747 {"maxmempattern","mmp", P_NUM|P_VI_DEF,
1748 (char_u *)&p_mmp, PV_NONE,
1749 {(char_u *)1000L, (char_u *)0L} SCRIPTID_INIT},
1750 {"maxmemtot", "mmt", P_NUM|P_VI_DEF,
1751 (char_u *)&p_mmt, PV_NONE,
1752 {(char_u *)DFLT_MAXMEMTOT, (char_u *)0L}
1753 SCRIPTID_INIT},
1754 {"menuitems", "mis", P_NUM|P_VI_DEF,
1755 #ifdef FEAT_MENU
1756 (char_u *)&p_mis, PV_NONE,
1757 #else
1758 (char_u *)NULL, PV_NONE,
1759 #endif
1760 {(char_u *)25L, (char_u *)0L} SCRIPTID_INIT},
1761 {"mesg", NULL, P_BOOL|P_VI_DEF,
1762 (char_u *)NULL, PV_NONE,
1763 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1764 {"mkspellmem", "msm", P_STRING|P_VI_DEF|P_EXPAND|P_SECURE,
1765 #ifdef FEAT_SPELL
1766 (char_u *)&p_msm, PV_NONE,
1767 {(char_u *)"460000,2000,500", (char_u *)0L}
1768 #else
1769 (char_u *)NULL, PV_NONE,
1770 {(char_u *)0L, (char_u *)0L}
1771 #endif
1772 SCRIPTID_INIT},
1773 {"modeline", "ml", P_BOOL|P_VIM,
1774 (char_u *)&p_ml, PV_ML,
1775 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
1776 {"modelines", "mls", P_NUM|P_VI_DEF,
1777 (char_u *)&p_mls, PV_NONE,
1778 {(char_u *)5L, (char_u *)0L} SCRIPTID_INIT},
1779 {"modifiable", "ma", P_BOOL|P_VI_DEF|P_NOGLOB,
1780 (char_u *)&p_ma, PV_MA,
1781 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1782 {"modified", "mod", P_BOOL|P_NO_MKRC|P_VI_DEF|P_RSTAT,
1783 (char_u *)&p_mod, PV_MOD,
1784 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1785 {"more", NULL, P_BOOL|P_VIM,
1786 (char_u *)&p_more, PV_NONE,
1787 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
1788 {"mouse", NULL, P_STRING|P_VI_DEF|P_FLAGLIST,
1789 (char_u *)&p_mouse, PV_NONE,
1791 #if defined(MSDOS) || defined(WIN3264)
1792 (char_u *)"a",
1793 #else
1794 (char_u *)"",
1795 #endif
1796 (char_u *)0L} SCRIPTID_INIT},
1797 {"mousefocus", "mousef", P_BOOL|P_VI_DEF,
1798 #ifdef FEAT_GUI
1799 (char_u *)&p_mousef, PV_NONE,
1800 #else
1801 (char_u *)NULL, PV_NONE,
1802 #endif
1803 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1804 {"mousehide", "mh", P_BOOL|P_VI_DEF,
1805 #ifdef FEAT_GUI
1806 (char_u *)&p_mh, PV_NONE,
1807 #else
1808 (char_u *)NULL, PV_NONE,
1809 #endif
1810 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1811 {"mousemodel", "mousem", P_STRING|P_VI_DEF,
1812 (char_u *)&p_mousem, PV_NONE,
1814 #if defined(MSDOS) || defined(MSWIN)
1815 (char_u *)"popup",
1816 #else
1817 # if defined(MACOS)
1818 (char_u *)"popup_setpos",
1819 # else
1820 (char_u *)"extend",
1821 # endif
1822 #endif
1823 (char_u *)0L} SCRIPTID_INIT},
1824 {"mouseshape", "mouses", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1825 #ifdef FEAT_MOUSESHAPE
1826 (char_u *)&p_mouseshape, PV_NONE,
1827 {(char_u *)"i-r:beam,s:updown,sd:udsizing,vs:leftright,vd:lrsizing,m:no,ml:up-arrow,v:rightup-arrow", (char_u *)0L}
1828 #else
1829 (char_u *)NULL, PV_NONE,
1830 {(char_u *)NULL, (char_u *)0L}
1831 #endif
1832 SCRIPTID_INIT},
1833 {"mousetime", "mouset", P_NUM|P_VI_DEF,
1834 (char_u *)&p_mouset, PV_NONE,
1835 {(char_u *)500L, (char_u *)0L} SCRIPTID_INIT},
1836 {"mzquantum", "mzq", P_NUM,
1837 #ifdef FEAT_MZSCHEME
1838 (char_u *)&p_mzq, PV_NONE,
1839 #else
1840 (char_u *)NULL, PV_NONE,
1841 #endif
1842 {(char_u *)100L, (char_u *)100L} SCRIPTID_INIT},
1843 {"novice", NULL, P_BOOL|P_VI_DEF,
1844 (char_u *)NULL, PV_NONE,
1845 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1846 {"nrformats", "nf", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
1847 (char_u *)&p_nf, PV_NF,
1848 {(char_u *)"octal,hex", (char_u *)0L}
1849 SCRIPTID_INIT},
1850 {"number", "nu", P_BOOL|P_VI_DEF|P_RWIN,
1851 (char_u *)VAR_WIN, PV_NU,
1852 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1853 {"numberwidth", "nuw", P_NUM|P_RWIN|P_VIM,
1854 #ifdef FEAT_LINEBREAK
1855 (char_u *)VAR_WIN, PV_NUW,
1856 #else
1857 (char_u *)NULL, PV_NONE,
1858 #endif
1859 {(char_u *)8L, (char_u *)4L} SCRIPTID_INIT},
1860 {"omnifunc", "ofu", P_STRING|P_ALLOCED|P_VI_DEF|P_SECURE,
1861 #ifdef FEAT_COMPL_FUNC
1862 (char_u *)&p_ofu, PV_OFU,
1863 {(char_u *)"", (char_u *)0L}
1864 #else
1865 (char_u *)NULL, PV_NONE,
1866 {(char_u *)0L, (char_u *)0L}
1867 #endif
1868 SCRIPTID_INIT},
1869 {"open", NULL, P_BOOL|P_VI_DEF,
1870 (char_u *)NULL, PV_NONE,
1871 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1872 {"opendevice", "odev", P_BOOL|P_VI_DEF,
1873 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
1874 (char_u *)&p_odev, PV_NONE,
1875 #else
1876 (char_u *)NULL, PV_NONE,
1877 #endif
1878 {(char_u *)FALSE, (char_u *)FALSE}
1879 SCRIPTID_INIT},
1880 {"operatorfunc", "opfunc", P_STRING|P_VI_DEF|P_SECURE,
1881 (char_u *)&p_opfunc, PV_NONE,
1882 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1883 {"optimize", "opt", P_BOOL|P_VI_DEF,
1884 (char_u *)NULL, PV_NONE,
1885 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1886 {"osfiletype", "oft", P_STRING|P_ALLOCED|P_VI_DEF,
1887 #ifdef FEAT_OSFILETYPE
1888 (char_u *)&p_oft, PV_OFT,
1889 {(char_u *)DFLT_OFT, (char_u *)0L}
1890 #else
1891 (char_u *)NULL, PV_NONE,
1892 {(char_u *)0L, (char_u *)0L}
1893 #endif
1894 SCRIPTID_INIT},
1895 {"paragraphs", "para", P_STRING|P_VI_DEF,
1896 (char_u *)&p_para, PV_NONE,
1897 {(char_u *)"IPLPPPQPP TPHPLIPpLpItpplpipbp",
1898 (char_u *)0L} SCRIPTID_INIT},
1899 {"paste", NULL, P_BOOL|P_VI_DEF|P_PRI_MKRC,
1900 (char_u *)&p_paste, PV_NONE,
1901 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1902 {"pastetoggle", "pt", P_STRING|P_VI_DEF,
1903 (char_u *)&p_pt, PV_NONE,
1904 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1905 {"patchexpr", "pex", P_STRING|P_VI_DEF|P_SECURE,
1906 #if defined(FEAT_DIFF) && defined(FEAT_EVAL)
1907 (char_u *)&p_pex, PV_NONE,
1908 {(char_u *)"", (char_u *)0L}
1909 #else
1910 (char_u *)NULL, PV_NONE,
1911 {(char_u *)0L, (char_u *)0L}
1912 #endif
1913 SCRIPTID_INIT},
1914 {"patchmode", "pm", P_STRING|P_VI_DEF|P_NFNAME,
1915 (char_u *)&p_pm, PV_NONE,
1916 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1917 {"path", "pa", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
1918 (char_u *)&p_path, PV_PATH,
1920 #if defined AMIGA || defined MSDOS || defined MSWIN
1921 (char_u *)".,,",
1922 #else
1923 # if defined(__EMX__)
1924 (char_u *)".,/emx/include,,",
1925 # else /* Unix, probably */
1926 (char_u *)".,/usr/include,,",
1927 # endif
1928 #endif
1929 (char_u *)0L} SCRIPTID_INIT},
1930 {"preserveindent", "pi", P_BOOL|P_VI_DEF|P_VIM,
1931 (char_u *)&p_pi, PV_PI,
1932 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1933 {"previewheight", "pvh", P_NUM|P_VI_DEF,
1934 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
1935 (char_u *)&p_pvh, PV_NONE,
1936 #else
1937 (char_u *)NULL, PV_NONE,
1938 #endif
1939 {(char_u *)12L, (char_u *)0L} SCRIPTID_INIT},
1940 {"previewwindow", "pvw", P_BOOL|P_VI_DEF|P_RSTAT|P_NOGLOB,
1941 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
1942 (char_u *)VAR_WIN, PV_PVW,
1943 #else
1944 (char_u *)NULL, PV_NONE,
1945 #endif
1946 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1947 {"printdevice", "pdev", P_STRING|P_VI_DEF|P_SECURE,
1948 #ifdef FEAT_PRINTER
1949 (char_u *)&p_pdev, PV_NONE,
1950 {(char_u *)"", (char_u *)0L}
1951 #else
1952 (char_u *)NULL, PV_NONE,
1953 {(char_u *)NULL, (char_u *)0L}
1954 #endif
1955 SCRIPTID_INIT},
1956 {"printencoding", "penc", P_STRING|P_VI_DEF,
1957 #ifdef FEAT_POSTSCRIPT
1958 (char_u *)&p_penc, PV_NONE,
1959 {(char_u *)"", (char_u *)0L}
1960 #else
1961 (char_u *)NULL, PV_NONE,
1962 {(char_u *)NULL, (char_u *)0L}
1963 #endif
1964 SCRIPTID_INIT},
1965 {"printexpr", "pexpr", P_STRING|P_VI_DEF,
1966 #ifdef FEAT_POSTSCRIPT
1967 (char_u *)&p_pexpr, PV_NONE,
1968 {(char_u *)"", (char_u *)0L}
1969 #else
1970 (char_u *)NULL, PV_NONE,
1971 {(char_u *)NULL, (char_u *)0L}
1972 #endif
1973 SCRIPTID_INIT},
1974 {"printfont", "pfn", P_STRING|P_VI_DEF,
1975 #ifdef FEAT_PRINTER
1976 (char_u *)&p_pfn, PV_NONE,
1978 # ifdef MSWIN
1979 (char_u *)"Courier_New:h10",
1980 # else
1981 (char_u *)"courier",
1982 # endif
1983 (char_u *)0L}
1984 #else
1985 (char_u *)NULL, PV_NONE,
1986 {(char_u *)NULL, (char_u *)0L}
1987 #endif
1988 SCRIPTID_INIT},
1989 {"printheader", "pheader", P_STRING|P_VI_DEF|P_GETTEXT,
1990 #ifdef FEAT_PRINTER
1991 (char_u *)&p_header, PV_NONE,
1992 {(char_u *)N_("%<%f%h%m%=Page %N"), (char_u *)0L}
1993 #else
1994 (char_u *)NULL, PV_NONE,
1995 {(char_u *)NULL, (char_u *)0L}
1996 #endif
1997 SCRIPTID_INIT},
1998 {"printmbcharset", "pmbcs", P_STRING|P_VI_DEF,
1999 #if defined(FEAT_POSTSCRIPT) && defined(FEAT_MBYTE)
2000 (char_u *)&p_pmcs, PV_NONE,
2001 {(char_u *)"", (char_u *)0L}
2002 #else
2003 (char_u *)NULL, PV_NONE,
2004 {(char_u *)NULL, (char_u *)0L}
2005 #endif
2006 SCRIPTID_INIT},
2007 {"printmbfont", "pmbfn", P_STRING|P_VI_DEF,
2008 #if defined(FEAT_POSTSCRIPT) && defined(FEAT_MBYTE)
2009 (char_u *)&p_pmfn, PV_NONE,
2010 {(char_u *)"", (char_u *)0L}
2011 #else
2012 (char_u *)NULL, PV_NONE,
2013 {(char_u *)NULL, (char_u *)0L}
2014 #endif
2015 SCRIPTID_INIT},
2016 {"printoptions", "popt", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2017 #ifdef FEAT_PRINTER
2018 (char_u *)&p_popt, PV_NONE,
2019 {(char_u *)"", (char_u *)0L}
2020 #else
2021 (char_u *)NULL, PV_NONE,
2022 {(char_u *)NULL, (char_u *)0L}
2023 #endif
2024 SCRIPTID_INIT},
2025 {"prompt", NULL, P_BOOL|P_VI_DEF,
2026 (char_u *)&p_prompt, PV_NONE,
2027 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2028 {"pumheight", "ph", P_NUM|P_VI_DEF,
2029 #ifdef FEAT_INS_EXPAND
2030 (char_u *)&p_ph, PV_NONE,
2031 #else
2032 (char_u *)NULL, PV_NONE,
2033 #endif
2034 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2035 {"quoteescape", "qe", P_STRING|P_ALLOCED|P_VI_DEF,
2036 #ifdef FEAT_TEXTOBJ
2037 (char_u *)&p_qe, PV_QE,
2038 {(char_u *)"\\", (char_u *)0L}
2039 #else
2040 (char_u *)NULL, PV_NONE,
2041 {(char_u *)NULL, (char_u *)0L}
2042 #endif
2043 SCRIPTID_INIT},
2044 {"readonly", "ro", P_BOOL|P_VI_DEF|P_RSTAT|P_NOGLOB,
2045 (char_u *)&p_ro, PV_RO,
2046 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2047 {"redraw", NULL, P_BOOL|P_VI_DEF,
2048 (char_u *)NULL, PV_NONE,
2049 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2050 {"redrawtime", "rdt", P_NUM|P_VI_DEF,
2051 #ifdef FEAT_RELTIME
2052 (char_u *)&p_rdt, PV_NONE,
2053 #else
2054 (char_u *)NULL, PV_NONE,
2055 #endif
2056 {(char_u *)2000L, (char_u *)0L} SCRIPTID_INIT},
2057 {"remap", NULL, P_BOOL|P_VI_DEF,
2058 (char_u *)&p_remap, PV_NONE,
2059 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2060 {"report", NULL, P_NUM|P_VI_DEF,
2061 (char_u *)&p_report, PV_NONE,
2062 {(char_u *)2L, (char_u *)0L} SCRIPTID_INIT},
2063 {"restorescreen", "rs", P_BOOL|P_VI_DEF,
2064 #ifdef WIN3264
2065 (char_u *)&p_rs, PV_NONE,
2066 #else
2067 (char_u *)NULL, PV_NONE,
2068 #endif
2069 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2070 {"revins", "ri", P_BOOL|P_VI_DEF|P_VIM,
2071 #ifdef FEAT_RIGHTLEFT
2072 (char_u *)&p_ri, PV_NONE,
2073 #else
2074 (char_u *)NULL, PV_NONE,
2075 #endif
2076 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2077 {"rightleft", "rl", P_BOOL|P_VI_DEF|P_RWIN,
2078 #ifdef FEAT_RIGHTLEFT
2079 (char_u *)VAR_WIN, PV_RL,
2080 #else
2081 (char_u *)NULL, PV_NONE,
2082 #endif
2083 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2084 {"rightleftcmd", "rlc", P_STRING|P_ALLOCED|P_VI_DEF|P_RWIN,
2085 #ifdef FEAT_RIGHTLEFT
2086 (char_u *)VAR_WIN, PV_RLC,
2087 {(char_u *)"search", (char_u *)NULL}
2088 #else
2089 (char_u *)NULL, PV_NONE,
2090 {(char_u *)NULL, (char_u *)0L}
2091 #endif
2092 SCRIPTID_INIT},
2093 {"ruler", "ru", P_BOOL|P_VI_DEF|P_VIM|P_RSTAT,
2094 #ifdef FEAT_CMDL_INFO
2095 (char_u *)&p_ru, PV_NONE,
2096 #else
2097 (char_u *)NULL, PV_NONE,
2098 #endif
2099 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2100 {"rulerformat", "ruf", P_STRING|P_VI_DEF|P_ALLOCED|P_RSTAT,
2101 #ifdef FEAT_STL_OPT
2102 (char_u *)&p_ruf, PV_NONE,
2103 #else
2104 (char_u *)NULL, PV_NONE,
2105 #endif
2106 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2107 {"runtimepath", "rtp", P_STRING|P_VI_DEF|P_EXPAND|P_COMMA|P_NODUP|P_SECURE,
2108 (char_u *)&p_rtp, PV_NONE,
2109 {(char_u *)DFLT_RUNTIMEPATH, (char_u *)0L}
2110 SCRIPTID_INIT},
2111 {"scroll", "scr", P_NUM|P_NO_MKRC|P_VI_DEF,
2112 (char_u *)VAR_WIN, PV_SCROLL,
2113 {(char_u *)12L, (char_u *)0L} SCRIPTID_INIT},
2114 {"scrollbind", "scb", P_BOOL|P_VI_DEF,
2115 #ifdef FEAT_SCROLLBIND
2116 (char_u *)VAR_WIN, PV_SCBIND,
2117 #else
2118 (char_u *)NULL, PV_NONE,
2119 #endif
2120 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2121 {"scrolljump", "sj", P_NUM|P_VI_DEF|P_VIM,
2122 (char_u *)&p_sj, PV_NONE,
2123 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
2124 {"scrolloff", "so", P_NUM|P_VI_DEF|P_VIM|P_RALL,
2125 (char_u *)&p_so, PV_NONE,
2126 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2127 {"scrollopt", "sbo", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2128 #ifdef FEAT_SCROLLBIND
2129 (char_u *)&p_sbo, PV_NONE,
2130 {(char_u *)"ver,jump", (char_u *)0L}
2131 #else
2132 (char_u *)NULL, PV_NONE,
2133 {(char_u *)0L, (char_u *)0L}
2134 #endif
2135 SCRIPTID_INIT},
2136 {"sections", "sect", P_STRING|P_VI_DEF,
2137 (char_u *)&p_sections, PV_NONE,
2138 {(char_u *)"SHNHH HUnhsh", (char_u *)0L}
2139 SCRIPTID_INIT},
2140 {"secure", NULL, P_BOOL|P_VI_DEF|P_SECURE,
2141 (char_u *)&p_secure, PV_NONE,
2142 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2143 {"selection", "sel", P_STRING|P_VI_DEF,
2144 #ifdef FEAT_VISUAL
2145 (char_u *)&p_sel, PV_NONE,
2146 #else
2147 (char_u *)NULL, PV_NONE,
2148 #endif
2149 {(char_u *)"inclusive", (char_u *)0L}
2150 SCRIPTID_INIT},
2151 {"selectmode", "slm", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2152 #ifdef FEAT_VISUAL
2153 (char_u *)&p_slm, PV_NONE,
2154 #else
2155 (char_u *)NULL, PV_NONE,
2156 #endif
2157 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2158 {"sessionoptions", "ssop", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2159 #ifdef FEAT_SESSION
2160 (char_u *)&p_ssop, PV_NONE,
2161 {(char_u *)"blank,buffers,curdir,folds,help,options,tabpages,winsize",
2162 (char_u *)0L}
2163 #else
2164 (char_u *)NULL, PV_NONE,
2165 {(char_u *)0L, (char_u *)0L}
2166 #endif
2167 SCRIPTID_INIT},
2168 {"shell", "sh", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
2169 (char_u *)&p_sh, PV_NONE,
2171 #ifdef VMS
2172 (char_u *)"-",
2173 #else
2174 # if defined(MSDOS)
2175 (char_u *)"command",
2176 # else
2177 # if defined(WIN16)
2178 (char_u *)"command.com",
2179 # else
2180 # if defined(WIN3264)
2181 (char_u *)"", /* set in set_init_1() */
2182 # else
2183 # if defined(OS2)
2184 (char_u *)"cmd.exe",
2185 # else
2186 # if defined(ARCHIE)
2187 (char_u *)"gos",
2188 # else
2189 (char_u *)"sh",
2190 # endif
2191 # endif
2192 # endif
2193 # endif
2194 # endif
2195 #endif /* VMS */
2196 (char_u *)0L} SCRIPTID_INIT},
2197 {"shellcmdflag","shcf", P_STRING|P_VI_DEF|P_SECURE,
2198 (char_u *)&p_shcf, PV_NONE,
2200 #if defined(MSDOS) || defined(MSWIN)
2201 (char_u *)"/c",
2202 #else
2203 # if defined(OS2)
2204 (char_u *)"/c",
2205 # else
2206 (char_u *)"-c",
2207 # endif
2208 #endif
2209 (char_u *)0L} SCRIPTID_INIT},
2210 {"shellpipe", "sp", P_STRING|P_VI_DEF|P_SECURE,
2211 #ifdef FEAT_QUICKFIX
2212 (char_u *)&p_sp, PV_NONE,
2214 #if defined(UNIX) || defined(OS2)
2215 # ifdef ARCHIE
2216 (char_u *)"2>",
2217 # else
2218 (char_u *)"| tee",
2219 # endif
2220 #else
2221 (char_u *)">",
2222 #endif
2223 (char_u *)0L}
2224 #else
2225 (char_u *)NULL, PV_NONE,
2226 {(char_u *)0L, (char_u *)0L}
2227 #endif
2228 SCRIPTID_INIT},
2229 {"shellquote", "shq", P_STRING|P_VI_DEF|P_SECURE,
2230 (char_u *)&p_shq, PV_NONE,
2231 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2232 {"shellredir", "srr", P_STRING|P_VI_DEF|P_SECURE,
2233 (char_u *)&p_srr, PV_NONE,
2234 {(char_u *)">", (char_u *)0L} SCRIPTID_INIT},
2235 {"shellslash", "ssl", P_BOOL|P_VI_DEF,
2236 #ifdef BACKSLASH_IN_FILENAME
2237 (char_u *)&p_ssl, PV_NONE,
2238 #else
2239 (char_u *)NULL, PV_NONE,
2240 #endif
2241 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2242 {"shelltemp", "stmp", P_BOOL,
2243 (char_u *)&p_stmp, PV_NONE,
2244 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
2245 {"shelltype", "st", P_NUM|P_VI_DEF,
2246 #ifdef AMIGA
2247 (char_u *)&p_st, PV_NONE,
2248 #else
2249 (char_u *)NULL, PV_NONE,
2250 #endif
2251 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2252 {"shellxquote", "sxq", P_STRING|P_VI_DEF|P_SECURE,
2253 (char_u *)&p_sxq, PV_NONE,
2255 #if defined(UNIX) && defined(USE_SYSTEM) && !defined(__EMX__)
2256 (char_u *)"\"",
2257 #else
2258 (char_u *)"",
2259 #endif
2260 (char_u *)0L} SCRIPTID_INIT},
2261 {"shiftround", "sr", P_BOOL|P_VI_DEF|P_VIM,
2262 (char_u *)&p_sr, PV_NONE,
2263 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2264 {"shiftwidth", "sw", P_NUM|P_VI_DEF,
2265 (char_u *)&p_sw, PV_SW,
2266 {(char_u *)8L, (char_u *)0L} SCRIPTID_INIT},
2267 {"shortmess", "shm", P_STRING|P_VIM|P_FLAGLIST,
2268 (char_u *)&p_shm, PV_NONE,
2269 {(char_u *)"", (char_u *)"filnxtToO"}
2270 SCRIPTID_INIT},
2271 {"shortname", "sn", P_BOOL|P_VI_DEF,
2272 #ifdef SHORT_FNAME
2273 (char_u *)NULL, PV_NONE,
2274 #else
2275 (char_u *)&p_sn, PV_SN,
2276 #endif
2277 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2278 {"showbreak", "sbr", P_STRING|P_VI_DEF|P_RALL,
2279 #ifdef FEAT_LINEBREAK
2280 (char_u *)&p_sbr, PV_NONE,
2281 #else
2282 (char_u *)NULL, PV_NONE,
2283 #endif
2284 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2285 {"showcmd", "sc", P_BOOL|P_VIM,
2286 #ifdef FEAT_CMDL_INFO
2287 (char_u *)&p_sc, PV_NONE,
2288 #else
2289 (char_u *)NULL, PV_NONE,
2290 #endif
2291 {(char_u *)FALSE,
2292 #ifdef UNIX
2293 (char_u *)FALSE
2294 #else
2295 (char_u *)TRUE
2296 #endif
2297 } SCRIPTID_INIT},
2298 {"showfulltag", "sft", P_BOOL|P_VI_DEF,
2299 (char_u *)&p_sft, PV_NONE,
2300 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2301 {"showmatch", "sm", P_BOOL|P_VI_DEF,
2302 (char_u *)&p_sm, PV_NONE,
2303 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2304 {"showmode", "smd", P_BOOL|P_VIM,
2305 (char_u *)&p_smd, PV_NONE,
2306 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
2307 {"showtabline", "stal", P_NUM|P_VI_DEF|P_RALL,
2308 #ifdef FEAT_WINDOWS
2309 (char_u *)&p_stal, PV_NONE,
2310 #else
2311 (char_u *)NULL, PV_NONE,
2312 #endif
2313 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
2314 {"sidescroll", "ss", P_NUM|P_VI_DEF,
2315 (char_u *)&p_ss, PV_NONE,
2316 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2317 {"sidescrolloff", "siso", P_NUM|P_VI_DEF|P_VIM|P_RBUF,
2318 (char_u *)&p_siso, PV_NONE,
2319 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2320 {"slowopen", "slow", P_BOOL|P_VI_DEF,
2321 (char_u *)NULL, PV_NONE,
2322 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2323 {"smartcase", "scs", P_BOOL|P_VI_DEF|P_VIM,
2324 (char_u *)&p_scs, PV_NONE,
2325 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2326 {"smartindent", "si", P_BOOL|P_VI_DEF|P_VIM,
2327 #ifdef FEAT_SMARTINDENT
2328 (char_u *)&p_si, PV_SI,
2329 #else
2330 (char_u *)NULL, PV_NONE,
2331 #endif
2332 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2333 {"smarttab", "sta", P_BOOL|P_VI_DEF|P_VIM,
2334 (char_u *)&p_sta, PV_NONE,
2335 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2336 {"softtabstop", "sts", P_NUM|P_VI_DEF|P_VIM,
2337 (char_u *)&p_sts, PV_STS,
2338 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2339 {"sourceany", NULL, P_BOOL|P_VI_DEF,
2340 (char_u *)NULL, PV_NONE,
2341 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2342 {"spell", NULL, P_BOOL|P_VI_DEF|P_RWIN,
2343 #ifdef FEAT_SPELL
2344 (char_u *)VAR_WIN, PV_SPELL,
2345 #else
2346 (char_u *)NULL, PV_NONE,
2347 #endif
2348 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2349 {"spellcapcheck", "spc", P_STRING|P_ALLOCED|P_VI_DEF|P_RBUF,
2350 #ifdef FEAT_SPELL
2351 (char_u *)&p_spc, PV_SPC,
2352 {(char_u *)"[.?!]\\_[\\])'\" ]\\+", (char_u *)0L}
2353 #else
2354 (char_u *)NULL, PV_NONE,
2355 {(char_u *)0L, (char_u *)0L}
2356 #endif
2357 SCRIPTID_INIT},
2358 {"spellfile", "spf", P_STRING|P_EXPAND|P_ALLOCED|P_VI_DEF|P_SECURE|P_COMMA,
2359 #ifdef FEAT_SPELL
2360 (char_u *)&p_spf, PV_SPF,
2361 {(char_u *)"", (char_u *)0L}
2362 #else
2363 (char_u *)NULL, PV_NONE,
2364 {(char_u *)0L, (char_u *)0L}
2365 #endif
2366 SCRIPTID_INIT},
2367 {"spelllang", "spl", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_RBUF|P_EXPAND,
2368 #ifdef FEAT_SPELL
2369 (char_u *)&p_spl, PV_SPL,
2370 {(char_u *)"en", (char_u *)0L}
2371 #else
2372 (char_u *)NULL, PV_NONE,
2373 {(char_u *)0L, (char_u *)0L}
2374 #endif
2375 SCRIPTID_INIT},
2376 {"spellsuggest", "sps", P_STRING|P_VI_DEF|P_EXPAND|P_SECURE|P_COMMA,
2377 #ifdef FEAT_SPELL
2378 (char_u *)&p_sps, PV_NONE,
2379 {(char_u *)"best", (char_u *)0L}
2380 #else
2381 (char_u *)NULL, PV_NONE,
2382 {(char_u *)0L, (char_u *)0L}
2383 #endif
2384 SCRIPTID_INIT},
2385 {"splitbelow", "sb", P_BOOL|P_VI_DEF,
2386 #ifdef FEAT_WINDOWS
2387 (char_u *)&p_sb, PV_NONE,
2388 #else
2389 (char_u *)NULL, PV_NONE,
2390 #endif
2391 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2392 {"splitright", "spr", P_BOOL|P_VI_DEF,
2393 #ifdef FEAT_VERTSPLIT
2394 (char_u *)&p_spr, PV_NONE,
2395 #else
2396 (char_u *)NULL, PV_NONE,
2397 #endif
2398 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2399 {"startofline", "sol", P_BOOL|P_VI_DEF|P_VIM,
2400 (char_u *)&p_sol, PV_NONE,
2401 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2402 {"statusline" ,"stl", P_STRING|P_VI_DEF|P_ALLOCED|P_RSTAT,
2403 #ifdef FEAT_STL_OPT
2404 (char_u *)&p_stl, PV_STL,
2405 #else
2406 (char_u *)NULL, PV_NONE,
2407 #endif
2408 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2409 {"suffixes", "su", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2410 (char_u *)&p_su, PV_NONE,
2411 {(char_u *)".bak,~,.o,.h,.info,.swp,.obj",
2412 (char_u *)0L} SCRIPTID_INIT},
2413 {"suffixesadd", "sua", P_STRING|P_VI_DEF|P_ALLOCED|P_COMMA|P_NODUP,
2414 #ifdef FEAT_SEARCHPATH
2415 (char_u *)&p_sua, PV_SUA,
2416 {(char_u *)"", (char_u *)0L}
2417 #else
2418 (char_u *)NULL, PV_NONE,
2419 {(char_u *)0L, (char_u *)0L}
2420 #endif
2421 SCRIPTID_INIT},
2422 {"swapfile", "swf", P_BOOL|P_VI_DEF|P_RSTAT,
2423 (char_u *)&p_swf, PV_SWF,
2424 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2425 {"swapsync", "sws", P_STRING|P_VI_DEF,
2426 (char_u *)&p_sws, PV_NONE,
2427 {(char_u *)"fsync", (char_u *)0L} SCRIPTID_INIT},
2428 {"switchbuf", "swb", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2429 (char_u *)&p_swb, PV_NONE,
2430 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2431 {"synmaxcol", "smc", P_NUM|P_VI_DEF|P_RBUF,
2432 #ifdef FEAT_SYN_HL
2433 (char_u *)&p_smc, PV_SMC,
2434 {(char_u *)3000L, (char_u *)0L}
2435 #else
2436 (char_u *)NULL, PV_NONE,
2437 {(char_u *)0L, (char_u *)0L}
2438 #endif
2439 SCRIPTID_INIT},
2440 {"syntax", "syn", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB|P_NFNAME,
2441 #ifdef FEAT_SYN_HL
2442 (char_u *)&p_syn, PV_SYN,
2443 {(char_u *)"", (char_u *)0L}
2444 #else
2445 (char_u *)NULL, PV_NONE,
2446 {(char_u *)0L, (char_u *)0L}
2447 #endif
2448 SCRIPTID_INIT},
2449 {"tabline", "tal", P_STRING|P_VI_DEF|P_RALL,
2450 #ifdef FEAT_STL_OPT
2451 (char_u *)&p_tal, PV_NONE,
2452 #else
2453 (char_u *)NULL, PV_NONE,
2454 #endif
2455 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2456 {"tabpagemax", "tpm", P_NUM|P_VI_DEF,
2457 #ifdef FEAT_WINDOWS
2458 (char_u *)&p_tpm, PV_NONE,
2459 #else
2460 (char_u *)NULL, PV_NONE,
2461 #endif
2462 {(char_u *)10L, (char_u *)0L} SCRIPTID_INIT},
2463 {"tabstop", "ts", P_NUM|P_VI_DEF|P_RBUF,
2464 (char_u *)&p_ts, PV_TS,
2465 {(char_u *)8L, (char_u *)0L} SCRIPTID_INIT},
2466 {"tagbsearch", "tbs", P_BOOL|P_VI_DEF,
2467 (char_u *)&p_tbs, PV_NONE,
2468 #ifdef VMS /* binary searching doesn't appear to work on VMS */
2469 {(char_u *)0L, (char_u *)0L}
2470 #else
2471 {(char_u *)TRUE, (char_u *)0L}
2472 #endif
2473 SCRIPTID_INIT},
2474 {"taglength", "tl", P_NUM|P_VI_DEF,
2475 (char_u *)&p_tl, PV_NONE,
2476 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2477 {"tagrelative", "tr", P_BOOL|P_VIM,
2478 (char_u *)&p_tr, PV_NONE,
2479 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
2480 {"tags", "tag", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
2481 (char_u *)&p_tags, PV_TAGS,
2483 #if defined(FEAT_EMACS_TAGS) && !defined(CASE_INSENSITIVE_FILENAME)
2484 (char_u *)"./tags,./TAGS,tags,TAGS",
2485 #else
2486 (char_u *)"./tags,tags",
2487 #endif
2488 (char_u *)0L} SCRIPTID_INIT},
2489 {"tagstack", "tgst", P_BOOL|P_VI_DEF,
2490 (char_u *)&p_tgst, PV_NONE,
2491 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2492 {"term", NULL, P_STRING|P_EXPAND|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RALL,
2493 (char_u *)&T_NAME, PV_NONE,
2494 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2495 {"termbidi", "tbidi", P_BOOL|P_VI_DEF,
2496 #ifdef FEAT_ARABIC
2497 (char_u *)&p_tbidi, PV_NONE,
2498 #else
2499 (char_u *)NULL, PV_NONE,
2500 #endif
2501 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2502 {"termencoding", "tenc", P_STRING|P_VI_DEF|P_RCLR,
2503 #ifdef FEAT_MBYTE
2504 (char_u *)&p_tenc, PV_NONE,
2505 {(char_u *)"", (char_u *)0L}
2506 #else
2507 (char_u *)NULL, PV_NONE,
2508 {(char_u *)0L, (char_u *)0L}
2509 #endif
2510 SCRIPTID_INIT},
2511 {"terse", NULL, P_BOOL|P_VI_DEF,
2512 (char_u *)&p_terse, PV_NONE,
2513 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2514 {"textauto", "ta", P_BOOL|P_VIM,
2515 (char_u *)&p_ta, PV_NONE,
2516 {(char_u *)DFLT_TEXTAUTO, (char_u *)TRUE}
2517 SCRIPTID_INIT},
2518 {"textmode", "tx", P_BOOL|P_VI_DEF|P_NO_MKRC,
2519 (char_u *)&p_tx, PV_TX,
2521 #ifdef USE_CRNL
2522 (char_u *)TRUE,
2523 #else
2524 (char_u *)FALSE,
2525 #endif
2526 (char_u *)0L} SCRIPTID_INIT},
2527 {"textwidth", "tw", P_NUM|P_VI_DEF|P_VIM,
2528 (char_u *)&p_tw, PV_TW,
2529 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2530 {"thesaurus", "tsr", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
2531 #ifdef FEAT_INS_EXPAND
2532 (char_u *)&p_tsr, PV_TSR,
2533 #else
2534 (char_u *)NULL, PV_NONE,
2535 #endif
2536 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2537 {"tildeop", "top", P_BOOL|P_VI_DEF|P_VIM,
2538 (char_u *)&p_to, PV_NONE,
2539 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2540 {"timeout", "to", P_BOOL|P_VI_DEF,
2541 (char_u *)&p_timeout, PV_NONE,
2542 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2543 {"timeoutlen", "tm", P_NUM|P_VI_DEF,
2544 (char_u *)&p_tm, PV_NONE,
2545 {(char_u *)1000L, (char_u *)0L} SCRIPTID_INIT},
2546 {"title", NULL, P_BOOL|P_VI_DEF,
2547 #ifdef FEAT_TITLE
2548 (char_u *)&p_title, PV_NONE,
2549 #else
2550 (char_u *)NULL, PV_NONE,
2551 #endif
2552 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2553 {"titlelen", NULL, P_NUM|P_VI_DEF,
2554 #ifdef FEAT_TITLE
2555 (char_u *)&p_titlelen, PV_NONE,
2556 #else
2557 (char_u *)NULL, PV_NONE,
2558 #endif
2559 {(char_u *)85L, (char_u *)0L} SCRIPTID_INIT},
2560 {"titleold", NULL, P_STRING|P_VI_DEF|P_GETTEXT|P_SECURE|P_NO_MKRC,
2561 #ifdef FEAT_TITLE
2562 (char_u *)&p_titleold, PV_NONE,
2563 {(char_u *)N_("Thanks for flying Vim"),
2564 (char_u *)0L}
2565 #else
2566 (char_u *)NULL, PV_NONE,
2567 {(char_u *)0L, (char_u *)0L}
2568 #endif
2569 SCRIPTID_INIT},
2570 {"titlestring", NULL, P_STRING|P_VI_DEF,
2571 #ifdef FEAT_TITLE
2572 (char_u *)&p_titlestring, PV_NONE,
2573 #else
2574 (char_u *)NULL, PV_NONE,
2575 #endif
2576 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2577 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
2578 {"toolbar", "tb", P_STRING|P_COMMA|P_VI_DEF|P_NODUP,
2579 (char_u *)&p_toolbar, PV_NONE,
2580 {(char_u *)"icons,tooltips", (char_u *)0L}
2581 SCRIPTID_INIT},
2582 #endif
2583 #if defined(FEAT_TOOLBAR) && ((defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)) \
2584 || defined(FEAT_GUI_MACVIM))
2585 {"toolbariconsize", "tbis", P_STRING|P_VI_DEF,
2586 (char_u *)&p_tbis, PV_NONE,
2587 {(char_u *)"small", (char_u *)0L} SCRIPTID_INIT},
2588 #endif
2589 {"transparency", "transp", P_NUM|P_VIM|P_RCLR,
2590 #ifdef FEAT_TRANSPARENCY
2591 (char_u *)&p_transp, PV_NONE,
2592 #else
2593 (char_u *)NULL, PV_NONE,
2594 #endif
2595 {(char_u *)0L, (char_u *)0L} },
2596 {"ttimeout", NULL, P_BOOL|P_VI_DEF|P_VIM,
2597 (char_u *)&p_ttimeout, PV_NONE,
2598 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2599 {"ttimeoutlen", "ttm", P_NUM|P_VI_DEF,
2600 (char_u *)&p_ttm, PV_NONE,
2601 {(char_u *)-1L, (char_u *)0L} SCRIPTID_INIT},
2602 {"ttybuiltin", "tbi", P_BOOL|P_VI_DEF,
2603 (char_u *)&p_tbi, PV_NONE,
2604 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2605 {"ttyfast", "tf", P_BOOL|P_NO_MKRC|P_VI_DEF,
2606 (char_u *)&p_tf, PV_NONE,
2607 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2608 {"ttymouse", "ttym", P_STRING|P_NODEFAULT|P_NO_MKRC|P_VI_DEF,
2609 #if defined(FEAT_MOUSE) && (defined(UNIX) || defined(VMS))
2610 (char_u *)&p_ttym, PV_NONE,
2611 #else
2612 (char_u *)NULL, PV_NONE,
2613 #endif
2614 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2615 {"ttyscroll", "tsl", P_NUM|P_VI_DEF,
2616 (char_u *)&p_ttyscroll, PV_NONE,
2617 {(char_u *)999L, (char_u *)0L} SCRIPTID_INIT},
2618 {"ttytype", "tty", P_STRING|P_EXPAND|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RALL,
2619 (char_u *)&T_NAME, PV_NONE,
2620 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2621 {"undolevels", "ul", P_NUM|P_VI_DEF,
2622 (char_u *)&p_ul, PV_NONE,
2624 #if defined(UNIX) || defined(WIN3264) || defined(OS2) || defined(VMS)
2625 (char_u *)1000L,
2626 #else
2627 (char_u *)100L,
2628 #endif
2629 (char_u *)0L} SCRIPTID_INIT},
2630 {"updatecount", "uc", P_NUM|P_VI_DEF,
2631 (char_u *)&p_uc, PV_NONE,
2632 {(char_u *)200L, (char_u *)0L} SCRIPTID_INIT},
2633 {"updatetime", "ut", P_NUM|P_VI_DEF,
2634 (char_u *)&p_ut, PV_NONE,
2635 {(char_u *)4000L, (char_u *)0L} SCRIPTID_INIT},
2636 {"verbose", "vbs", P_NUM|P_VI_DEF,
2637 (char_u *)&p_verbose, PV_NONE,
2638 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2639 {"verbosefile", "vfile", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
2640 (char_u *)&p_vfile, PV_NONE,
2641 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2642 {"viewdir", "vdir", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
2643 #ifdef FEAT_SESSION
2644 (char_u *)&p_vdir, PV_NONE,
2645 {(char_u *)DFLT_VDIR, (char_u *)0L}
2646 #else
2647 (char_u *)NULL, PV_NONE,
2648 {(char_u *)0L, (char_u *)0L}
2649 #endif
2650 SCRIPTID_INIT},
2651 {"viewoptions", "vop", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2652 #ifdef FEAT_SESSION
2653 (char_u *)&p_vop, PV_NONE,
2654 {(char_u *)"folds,options,cursor", (char_u *)0L}
2655 #else
2656 (char_u *)NULL, PV_NONE,
2657 {(char_u *)0L, (char_u *)0L}
2658 #endif
2659 SCRIPTID_INIT},
2660 {"viminfo", "vi", P_STRING|P_COMMA|P_NODUP|P_SECURE,
2661 #ifdef FEAT_VIMINFO
2662 (char_u *)&p_viminfo, PV_NONE,
2663 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
2664 {(char_u *)"", (char_u *)"'100,<50,s10,h,rA:,rB:"}
2665 #else
2666 # ifdef AMIGA
2667 {(char_u *)"",
2668 (char_u *)"'100,<50,s10,h,rdf0:,rdf1:,rdf2:"}
2669 # else
2670 {(char_u *)"", (char_u *)"'100,<50,s10,h"}
2671 # endif
2672 #endif
2673 #else
2674 (char_u *)NULL, PV_NONE,
2675 {(char_u *)0L, (char_u *)0L}
2676 #endif
2677 SCRIPTID_INIT},
2678 {"virtualedit", "ve", P_STRING|P_COMMA|P_NODUP|P_VI_DEF|P_VIM,
2679 #ifdef FEAT_VIRTUALEDIT
2680 (char_u *)&p_ve, PV_NONE,
2681 {(char_u *)"", (char_u *)""}
2682 #else
2683 (char_u *)NULL, PV_NONE,
2684 {(char_u *)0L, (char_u *)0L}
2685 #endif
2686 SCRIPTID_INIT},
2687 {"visualbell", "vb", P_BOOL|P_VI_DEF,
2688 (char_u *)&p_vb, PV_NONE,
2689 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2690 {"w300", NULL, P_NUM|P_VI_DEF,
2691 (char_u *)NULL, PV_NONE,
2692 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2693 {"w1200", NULL, P_NUM|P_VI_DEF,
2694 (char_u *)NULL, PV_NONE,
2695 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2696 {"w9600", NULL, P_NUM|P_VI_DEF,
2697 (char_u *)NULL, PV_NONE,
2698 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2699 {"warn", NULL, P_BOOL|P_VI_DEF,
2700 (char_u *)&p_warn, PV_NONE,
2701 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2702 {"weirdinvert", "wiv", P_BOOL|P_VI_DEF|P_RCLR,
2703 (char_u *)&p_wiv, PV_NONE,
2704 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2705 {"whichwrap", "ww", P_STRING|P_VIM|P_COMMA|P_FLAGLIST,
2706 (char_u *)&p_ww, PV_NONE,
2707 {(char_u *)"", (char_u *)"b,s"} SCRIPTID_INIT},
2708 {"wildchar", "wc", P_NUM|P_VIM,
2709 (char_u *)&p_wc, PV_NONE,
2710 {(char_u *)(long)Ctrl_E, (char_u *)(long)TAB}
2711 SCRIPTID_INIT},
2712 {"wildcharm", "wcm", P_NUM|P_VI_DEF,
2713 (char_u *)&p_wcm, PV_NONE,
2714 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2715 {"wildignore", "wig", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2716 #ifdef FEAT_WILDIGN
2717 (char_u *)&p_wig, PV_NONE,
2718 #else
2719 (char_u *)NULL, PV_NONE,
2720 #endif
2721 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2722 {"wildmenu", "wmnu", P_BOOL|P_VI_DEF,
2723 #ifdef FEAT_WILDMENU
2724 (char_u *)&p_wmnu, PV_NONE,
2725 #else
2726 (char_u *)NULL, PV_NONE,
2727 #endif
2728 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2729 {"wildmode", "wim", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2730 (char_u *)&p_wim, PV_NONE,
2731 {(char_u *)"full", (char_u *)0L} SCRIPTID_INIT},
2732 {"wildoptions", "wop", P_STRING|P_VI_DEF,
2733 #ifdef FEAT_CMDL_COMPL
2734 (char_u *)&p_wop, PV_NONE,
2735 {(char_u *)"", (char_u *)0L}
2736 #else
2737 (char_u *)NULL, PV_NONE,
2738 {(char_u *)NULL, (char_u *)0L}
2739 #endif
2740 SCRIPTID_INIT},
2741 {"winaltkeys", "wak", P_STRING|P_VI_DEF,
2742 #ifdef FEAT_WAK
2743 (char_u *)&p_wak, PV_NONE,
2744 {(char_u *)"menu", (char_u *)0L}
2745 #else
2746 (char_u *)NULL, PV_NONE,
2747 {(char_u *)NULL, (char_u *)0L}
2748 #endif
2749 SCRIPTID_INIT},
2750 {"window", "wi", P_NUM|P_VI_DEF,
2751 (char_u *)&p_window, PV_NONE,
2752 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2753 {"winheight", "wh", P_NUM|P_VI_DEF,
2754 #ifdef FEAT_WINDOWS
2755 (char_u *)&p_wh, PV_NONE,
2756 #else
2757 (char_u *)NULL, PV_NONE,
2758 #endif
2759 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
2760 {"winfixheight", "wfh", P_BOOL|P_VI_DEF|P_RSTAT,
2761 #ifdef FEAT_WINDOWS
2762 (char_u *)VAR_WIN, PV_WFH,
2763 #else
2764 (char_u *)NULL, PV_NONE,
2765 #endif
2766 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2767 {"winfixwidth", "wfw", P_BOOL|P_VI_DEF|P_RSTAT,
2768 #ifdef FEAT_VERTSPLIT
2769 (char_u *)VAR_WIN, PV_WFW,
2770 #else
2771 (char_u *)NULL, PV_NONE,
2772 #endif
2773 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2774 {"winminheight", "wmh", P_NUM|P_VI_DEF,
2775 #ifdef FEAT_WINDOWS
2776 (char_u *)&p_wmh, PV_NONE,
2777 #else
2778 (char_u *)NULL, PV_NONE,
2779 #endif
2780 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
2781 {"winminwidth", "wmw", P_NUM|P_VI_DEF,
2782 #ifdef FEAT_VERTSPLIT
2783 (char_u *)&p_wmw, PV_NONE,
2784 #else
2785 (char_u *)NULL, PV_NONE,
2786 #endif
2787 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
2788 {"winwidth", "wiw", P_NUM|P_VI_DEF,
2789 #ifdef FEAT_VERTSPLIT
2790 (char_u *)&p_wiw, PV_NONE,
2791 #else
2792 (char_u *)NULL, PV_NONE,
2793 #endif
2794 {(char_u *)20L, (char_u *)0L} SCRIPTID_INIT},
2795 {"wrap", NULL, P_BOOL|P_VI_DEF|P_RWIN,
2796 (char_u *)VAR_WIN, PV_WRAP,
2797 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2798 {"wrapmargin", "wm", P_NUM|P_VI_DEF,
2799 (char_u *)&p_wm, PV_WM,
2800 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2801 {"wrapscan", "ws", P_BOOL|P_VI_DEF,
2802 (char_u *)&p_ws, PV_NONE,
2803 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2804 {"write", NULL, P_BOOL|P_VI_DEF,
2805 (char_u *)&p_write, PV_NONE,
2806 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2807 {"writeany", "wa", P_BOOL|P_VI_DEF,
2808 (char_u *)&p_wa, PV_NONE,
2809 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2810 {"writebackup", "wb", P_BOOL|P_VI_DEF|P_VIM,
2811 (char_u *)&p_wb, PV_NONE,
2813 #ifdef FEAT_WRITEBACKUP
2814 (char_u *)TRUE,
2815 #else
2816 (char_u *)FALSE,
2817 #endif
2818 (char_u *)0L} SCRIPTID_INIT},
2819 {"writedelay", "wd", P_NUM|P_VI_DEF,
2820 (char_u *)&p_wd, PV_NONE,
2821 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2823 /* terminal output codes */
2824 #define p_term(sss, vvv) {sss, NULL, P_STRING|P_VI_DEF|P_RALL|P_SECURE, \
2825 (char_u *)&vvv, PV_NONE, \
2826 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2828 p_term("t_AB", T_CAB)
2829 p_term("t_AF", T_CAF)
2830 p_term("t_AL", T_CAL)
2831 p_term("t_al", T_AL)
2832 p_term("t_bc", T_BC)
2833 p_term("t_cd", T_CD)
2834 p_term("t_ce", T_CE)
2835 p_term("t_cl", T_CL)
2836 p_term("t_cm", T_CM)
2837 p_term("t_Co", T_CCO)
2838 p_term("t_CS", T_CCS)
2839 p_term("t_cs", T_CS)
2840 #ifdef FEAT_VERTSPLIT
2841 p_term("t_CV", T_CSV)
2842 #endif
2843 p_term("t_ut", T_UT)
2844 p_term("t_da", T_DA)
2845 p_term("t_db", T_DB)
2846 p_term("t_DL", T_CDL)
2847 p_term("t_dl", T_DL)
2848 p_term("t_fs", T_FS)
2849 p_term("t_IE", T_CIE)
2850 p_term("t_IS", T_CIS)
2851 p_term("t_ke", T_KE)
2852 p_term("t_ks", T_KS)
2853 p_term("t_le", T_LE)
2854 p_term("t_mb", T_MB)
2855 p_term("t_md", T_MD)
2856 p_term("t_me", T_ME)
2857 p_term("t_mr", T_MR)
2858 p_term("t_ms", T_MS)
2859 p_term("t_nd", T_ND)
2860 p_term("t_op", T_OP)
2861 p_term("t_RI", T_CRI)
2862 p_term("t_RV", T_CRV)
2863 p_term("t_Sb", T_CSB)
2864 p_term("t_Sf", T_CSF)
2865 p_term("t_se", T_SE)
2866 p_term("t_so", T_SO)
2867 p_term("t_sr", T_SR)
2868 p_term("t_ts", T_TS)
2869 p_term("t_te", T_TE)
2870 p_term("t_ti", T_TI)
2871 p_term("t_ue", T_UE)
2872 p_term("t_us", T_US)
2873 p_term("t_vb", T_VB)
2874 p_term("t_ve", T_VE)
2875 p_term("t_vi", T_VI)
2876 p_term("t_vs", T_VS)
2877 p_term("t_WP", T_CWP)
2878 p_term("t_WS", T_CWS)
2879 p_term("t_SI", T_CSI)
2880 p_term("t_EI", T_CEI)
2881 p_term("t_xs", T_XS)
2882 p_term("t_ZH", T_CZH)
2883 p_term("t_ZR", T_CZR)
2885 /* terminal key codes are not in here */
2887 /* end marker */
2888 {NULL, NULL, 0, NULL, PV_NONE, {NULL, NULL} SCRIPTID_INIT}
2891 #define PARAM_COUNT (sizeof(options) / sizeof(struct vimoption))
2893 #ifdef FEAT_MBYTE
2894 static char *(p_ambw_values[]) = {"single", "double", NULL};
2895 #endif
2896 static char *(p_bg_values[]) = {"light", "dark", NULL};
2897 static char *(p_nf_values[]) = {"octal", "hex", "alpha", NULL};
2898 static char *(p_ff_values[]) = {FF_UNIX, FF_DOS, FF_MAC, NULL};
2899 #ifdef FEAT_CMDL_COMPL
2900 static char *(p_wop_values[]) = {"tagfile", NULL};
2901 #endif
2902 #ifdef FEAT_WAK
2903 static char *(p_wak_values[]) = {"yes", "menu", "no", NULL};
2904 #endif
2905 static char *(p_mousem_values[]) = {"extend", "popup", "popup_setpos", "mac", NULL};
2906 #ifdef FEAT_VISUAL
2907 static char *(p_sel_values[]) = {"inclusive", "exclusive", "old", NULL};
2908 static char *(p_slm_values[]) = {"mouse", "key", "cmd", NULL};
2909 #endif
2910 #ifdef FEAT_VISUAL
2911 static char *(p_km_values[]) = {"startsel", "stopsel", NULL};
2912 #endif
2913 #ifdef FEAT_BROWSE
2914 static char *(p_bsdir_values[]) = {"current", "last", "buffer", NULL};
2915 #endif
2916 #ifdef FEAT_SCROLLBIND
2917 static char *(p_scbopt_values[]) = {"ver", "hor", "jump", NULL};
2918 #endif
2919 static char *(p_debug_values[]) = {"msg", "throw", "beep", NULL};
2920 #ifdef FEAT_VERTSPLIT
2921 static char *(p_ead_values[]) = {"both", "ver", "hor", NULL};
2922 #endif
2923 #if defined(FEAT_QUICKFIX)
2924 # ifdef FEAT_AUTOCMD
2925 static char *(p_buftype_values[]) = {"nofile", "nowrite", "quickfix", "help", "acwrite", NULL};
2926 # else
2927 static char *(p_buftype_values[]) = {"nofile", "nowrite", "quickfix", "help", NULL};
2928 # endif
2929 static char *(p_bufhidden_values[]) = {"hide", "unload", "delete", "wipe", NULL};
2930 #endif
2931 static char *(p_bs_values[]) = {"indent", "eol", "start", NULL};
2932 #ifdef FEAT_FOLDING
2933 static char *(p_fdm_values[]) = {"manual", "expr", "marker", "indent", "syntax",
2934 # ifdef FEAT_DIFF
2935 "diff",
2936 # endif
2937 NULL};
2938 static char *(p_fcl_values[]) = {"all", NULL};
2939 #endif
2940 #ifdef FEAT_INS_EXPAND
2941 static char *(p_cot_values[]) = {"menu", "menuone", "longest", "preview", NULL};
2942 #endif
2944 static void set_option_default __ARGS((int, int opt_flags, int compatible));
2945 static void set_options_default __ARGS((int opt_flags));
2946 static char_u *term_bg_default __ARGS((void));
2947 static void did_set_option __ARGS((int opt_idx, int opt_flags, int new_value));
2948 static char_u *illegal_char __ARGS((char_u *, int));
2949 static int string_to_key __ARGS((char_u *arg));
2950 #ifdef FEAT_CMDWIN
2951 static char_u *check_cedit __ARGS((void));
2952 #endif
2953 #ifdef FEAT_TITLE
2954 static void did_set_title __ARGS((int icon));
2955 #endif
2956 static char_u *option_expand __ARGS((int opt_idx, char_u *val));
2957 static void didset_options __ARGS((void));
2958 static void check_string_option __ARGS((char_u **pp));
2959 #if defined(FEAT_EVAL) || defined(PROTO)
2960 static long_u *insecure_flag __ARGS((int opt_idx, int opt_flags));
2961 #else
2962 # define insecure_flag(opt_idx, opt_flags) (&options[opt_idx].flags)
2963 #endif
2964 static void set_string_option_global __ARGS((int opt_idx, char_u **varp));
2965 static void set_string_option __ARGS((int opt_idx, char_u *value, int opt_flags));
2966 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));
2967 static char_u *set_chars_option __ARGS((char_u **varp));
2968 #ifdef FEAT_CLIPBOARD
2969 static char_u *check_clipboard_option __ARGS((void));
2970 #endif
2971 #ifdef FEAT_SPELL
2972 static char_u *compile_cap_prog __ARGS((buf_T *buf));
2973 #endif
2974 #ifdef FEAT_EVAL
2975 static void set_option_scriptID_idx __ARGS((int opt_idx, int opt_flags, int id));
2976 #endif
2977 static char_u *set_bool_option __ARGS((int opt_idx, char_u *varp, int value, int opt_flags));
2978 static char_u *set_num_option __ARGS((int opt_idx, char_u *varp, long value, char_u *errbuf, size_t errbuflen, int opt_flags));
2979 static void check_redraw __ARGS((long_u flags));
2980 static int findoption __ARGS((char_u *));
2981 static int find_key_option __ARGS((char_u *));
2982 static void showoptions __ARGS((int all, int opt_flags));
2983 static int optval_default __ARGS((struct vimoption *, char_u *varp));
2984 static void showoneopt __ARGS((struct vimoption *, int opt_flags));
2985 static int put_setstring __ARGS((FILE *fd, char *cmd, char *name, char_u **valuep, int expand));
2986 static int put_setnum __ARGS((FILE *fd, char *cmd, char *name, long *valuep));
2987 static int put_setbool __ARGS((FILE *fd, char *cmd, char *name, int value));
2988 static int istermoption __ARGS((struct vimoption *));
2989 static char_u *get_varp_scope __ARGS((struct vimoption *p, int opt_flags));
2990 static char_u *get_varp __ARGS((struct vimoption *));
2991 static void option_value2string __ARGS((struct vimoption *, int opt_flags));
2992 static int wc_use_keyname __ARGS((char_u *varp, long *wcp));
2993 #ifdef FEAT_LANGMAP
2994 static void langmap_init __ARGS((void));
2995 static void langmap_set __ARGS((void));
2996 #endif
2997 static void paste_option_changed __ARGS((void));
2998 static void compatible_set __ARGS((void));
2999 #ifdef FEAT_LINEBREAK
3000 static void fill_breakat_flags __ARGS((void));
3001 #endif
3002 static int opt_strings_flags __ARGS((char_u *val, char **values, unsigned *flagp, int list));
3003 static int check_opt_strings __ARGS((char_u *val, char **values, int));
3004 static int check_opt_wim __ARGS((void));
3005 #ifdef FEAT_FULLSCREEN
3006 static int check_fuoptions __ARGS((char_u *, unsigned *, int *));
3007 #endif
3010 * Initialize the options, first part.
3012 * Called only once from main(), just after creating the first buffer.
3014 void
3015 set_init_1()
3017 char_u *p;
3018 int opt_idx;
3019 long_u n;
3020 #if defined(FEAT_GUI_MACVIM) && defined(FEAT_MBYTE)
3021 int did_mb_init;
3022 #endif
3024 #ifdef FEAT_LANGMAP
3025 langmap_init();
3026 #endif
3028 /* Be Vi compatible by default */
3029 p_cp = TRUE;
3031 /* Use POSIX compatibility when $VIM_POSIX is set. */
3032 if (mch_getenv((char_u *)"VIM_POSIX") != NULL)
3034 set_string_default("cpo", (char_u *)CPO_ALL);
3035 set_string_default("shm", (char_u *)"A");
3039 * Find default value for 'shell' option.
3040 * Don't use it if it is empty.
3042 if (((p = mch_getenv((char_u *)"SHELL")) != NULL && *p != NUL)
3043 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
3044 # ifdef __EMX__
3045 || ((p = mch_getenv((char_u *)"EMXSHELL")) != NULL && *p != NUL)
3046 # endif
3047 || ((p = mch_getenv((char_u *)"COMSPEC")) != NULL && *p != NUL)
3048 # ifdef WIN3264
3049 || ((p = default_shell()) != NULL && *p != NUL)
3050 # endif
3051 #endif
3053 set_string_default("sh", p);
3055 #ifdef FEAT_WILDIGN
3057 * Set the default for 'backupskip' to include environment variables for
3058 * temp files.
3061 # ifdef UNIX
3062 static char *(names[4]) = {"", "TMPDIR", "TEMP", "TMP"};
3063 # else
3064 static char *(names[3]) = {"TMPDIR", "TEMP", "TMP"};
3065 # endif
3066 int len;
3067 garray_T ga;
3068 int mustfree;
3070 ga_init2(&ga, 1, 100);
3071 for (n = 0; n < (long)(sizeof(names) / sizeof(char *)); ++n)
3073 mustfree = FALSE;
3074 # ifdef UNIX
3075 if (*names[n] == NUL)
3076 p = (char_u *)"/tmp";
3077 else
3078 # endif
3079 p = vim_getenv((char_u *)names[n], &mustfree);
3080 if (p != NULL && *p != NUL)
3082 /* First time count the NUL, otherwise count the ','. */
3083 len = (int)STRLEN(p) + 3;
3084 if (ga_grow(&ga, len) == OK)
3086 if (ga.ga_len > 0)
3087 STRCAT(ga.ga_data, ",");
3088 STRCAT(ga.ga_data, p);
3089 add_pathsep(ga.ga_data);
3090 STRCAT(ga.ga_data, "*");
3091 ga.ga_len += len;
3094 if (mustfree)
3095 vim_free(p);
3097 if (ga.ga_data != NULL)
3099 set_string_default("bsk", ga.ga_data);
3100 vim_free(ga.ga_data);
3103 #endif
3106 * 'maxmemtot' and 'maxmem' may have to be adjusted for available memory
3108 opt_idx = findoption((char_u *)"maxmemtot");
3109 if (opt_idx >= 0)
3111 #if !defined(HAVE_AVAIL_MEM) && !defined(HAVE_TOTAL_MEM)
3112 if (options[opt_idx].def_val[VI_DEFAULT] == (char_u *)0L)
3113 #endif
3115 #ifdef HAVE_AVAIL_MEM
3116 /* Use amount of memory available at this moment. */
3117 n = (mch_avail_mem(FALSE) >> 11);
3118 #else
3119 # ifdef HAVE_TOTAL_MEM
3120 /* Use amount of memory available to Vim. */
3121 n = (mch_total_mem(FALSE) >> 1);
3122 # else
3123 n = (0x7fffffff >> 11);
3124 # endif
3125 #endif
3126 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)n;
3127 opt_idx = findoption((char_u *)"maxmem");
3128 if (opt_idx >= 0)
3130 #if !defined(HAVE_AVAIL_MEM) && !defined(HAVE_TOTAL_MEM)
3131 if ((long)options[opt_idx].def_val[VI_DEFAULT] > n
3132 || (long)options[opt_idx].def_val[VI_DEFAULT] == 0L)
3133 #endif
3134 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)n;
3139 #ifdef FEAT_GUI_W32
3140 /* force 'shortname' for Win32s */
3141 if (gui_is_win32s())
3143 opt_idx = findoption((char_u *)"shortname");
3144 if (opt_idx >= 0)
3145 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)TRUE;
3147 #endif
3149 #ifdef FEAT_SEARCHPATH
3151 char_u *cdpath;
3152 char_u *buf;
3153 int i;
3154 int j;
3155 int mustfree = FALSE;
3157 /* Initialize the 'cdpath' option's default value. */
3158 cdpath = vim_getenv((char_u *)"CDPATH", &mustfree);
3159 if (cdpath != NULL)
3161 buf = alloc((unsigned)((STRLEN(cdpath) << 1) + 2));
3162 if (buf != NULL)
3164 buf[0] = ','; /* start with ",", current dir first */
3165 j = 1;
3166 for (i = 0; cdpath[i] != NUL; ++i)
3168 if (vim_ispathlistsep(cdpath[i]))
3169 buf[j++] = ',';
3170 else
3172 if (cdpath[i] == ' ' || cdpath[i] == ',')
3173 buf[j++] = '\\';
3174 buf[j++] = cdpath[i];
3177 buf[j] = NUL;
3178 opt_idx = findoption((char_u *)"cdpath");
3179 if (opt_idx >= 0)
3181 options[opt_idx].def_val[VI_DEFAULT] = buf;
3182 options[opt_idx].flags |= P_DEF_ALLOCED;
3185 if (mustfree)
3186 vim_free(cdpath);
3189 #endif
3191 #if defined(FEAT_POSTSCRIPT) && (defined(MSWIN) || defined(OS2) || defined(VMS) || defined(EBCDIC) || defined(MAC) || defined(hpux))
3192 /* Set print encoding on platforms that don't default to latin1 */
3193 set_string_default("penc",
3194 # if defined(MSWIN) || defined(OS2)
3195 (char_u *)"cp1252"
3196 # else
3197 # ifdef VMS
3198 (char_u *)"dec-mcs"
3199 # else
3200 # ifdef EBCDIC
3201 (char_u *)"ebcdic-uk"
3202 # else
3203 # ifdef MAC
3204 (char_u *)"mac-roman"
3205 # else /* HPUX */
3206 (char_u *)"hp-roman8"
3207 # endif
3208 # endif
3209 # endif
3210 # endif
3212 #endif
3214 #ifdef FEAT_POSTSCRIPT
3215 /* 'printexpr' must be allocated to be able to evaluate it. */
3216 set_string_default("pexpr",
3217 # if defined(MSWIN) || defined(MSDOS) || defined(OS2)
3218 (char_u *)"system('copy' . ' ' . v:fname_in . (&printdevice == '' ? ' LPT1:' : (' \"' . &printdevice . '\"'))) . delete(v:fname_in)"
3219 # else
3220 # ifdef VMS
3221 (char_u *)"system('print/delete' . (&printdevice == '' ? '' : ' /queue=' . &printdevice) . ' ' . v:fname_in)"
3223 # else
3224 (char_u *)"system('lpr' . (&printdevice == '' ? '' : ' -P' . &printdevice) . ' ' . v:fname_in) . delete(v:fname_in) + v:shell_error"
3225 # endif
3226 # endif
3228 #endif
3231 * Set all the options (except the terminal options) to their default
3232 * value. Also set the global value for local options.
3234 set_options_default(0);
3236 #ifdef FEAT_GUI
3237 if (found_reverse_arg)
3238 set_option_value((char_u *)"bg", 0L, (char_u *)"dark", 0);
3239 #endif
3241 curbuf->b_p_initialized = TRUE;
3242 curbuf->b_p_ar = -1; /* no local 'autoread' value */
3243 check_buf_options(curbuf);
3244 check_win_options(curwin);
3245 check_options();
3247 /* Must be before option_expand(), because that one needs vim_isIDc() */
3248 didset_options();
3250 #ifdef FEAT_SPELL
3251 /* Use the current chartab for the generic chartab. */
3252 init_spell_chartab();
3253 #endif
3255 #ifdef FEAT_LINEBREAK
3257 * initialize the table for 'breakat'.
3259 fill_breakat_flags();
3260 #endif
3263 * Expand environment variables and things like "~" for the defaults.
3264 * If option_expand() returns non-NULL the variable is expanded. This can
3265 * only happen for non-indirect options.
3266 * Also set the default to the expanded value, so ":set" does not list
3267 * them.
3268 * Don't set the P_ALLOCED flag, because we don't want to free the
3269 * default.
3271 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
3273 if ((options[opt_idx].flags & P_GETTEXT)
3274 && options[opt_idx].var != NULL)
3275 p = (char_u *)_(*(char **)options[opt_idx].var);
3276 else
3277 p = option_expand(opt_idx, NULL);
3278 if (p != NULL && (p = vim_strsave(p)) != NULL)
3280 *(char_u **)options[opt_idx].var = p;
3281 /* VIMEXP
3282 * Defaults for all expanded options are currently the same for Vi
3283 * and Vim. When this changes, add some code here! Also need to
3284 * split P_DEF_ALLOCED in two.
3286 if (options[opt_idx].flags & P_DEF_ALLOCED)
3287 vim_free(options[opt_idx].def_val[VI_DEFAULT]);
3288 options[opt_idx].def_val[VI_DEFAULT] = p;
3289 options[opt_idx].flags |= P_DEF_ALLOCED;
3293 /* Initialize the highlight_attr[] table. */
3294 highlight_changed();
3296 save_file_ff(curbuf); /* Buffer is unchanged */
3298 /* Parse default for 'wildmode' */
3299 check_opt_wim();
3301 #if defined(FEAT_ARABIC)
3302 /* Detect use of mlterm.
3303 * Mlterm is a terminal emulator akin to xterm that has some special
3304 * abilities (bidi namely).
3305 * NOTE: mlterm's author is being asked to 'set' a variable
3306 * instead of an environment variable due to inheritance.
3308 if (mch_getenv((char_u *)"MLTERM") != NULL)
3309 set_option_value((char_u *)"tbidi", 1L, NULL, 0);
3310 #endif
3312 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
3313 /* Parse default for 'fillchars'. */
3314 (void)set_chars_option(&p_fcs);
3315 #endif
3317 #ifdef FEAT_CLIPBOARD
3318 /* Parse default for 'clipboard' */
3319 (void)check_clipboard_option();
3320 #endif
3322 #ifdef FEAT_MBYTE
3323 # if defined(WIN3264) && defined(FEAT_GETTEXT)
3325 * If $LANG isn't set, try to get a good value for it. This makes the
3326 * right language be used automatically. Don't do this for English.
3328 if (mch_getenv((char_u *)"LANG") == NULL)
3330 char buf[20];
3332 /* Could use LOCALE_SISO639LANGNAME, but it's not in Win95.
3333 * LOCALE_SABBREVLANGNAME gives us three letters, like "enu", we use
3334 * only the first two. */
3335 n = GetLocaleInfo(LOCALE_USER_DEFAULT, LOCALE_SABBREVLANGNAME,
3336 (LPTSTR)buf, 20);
3337 if (n >= 2 && STRNICMP(buf, "en", 2) != 0)
3339 /* There are a few exceptions (probably more) */
3340 if (STRNICMP(buf, "cht", 3) == 0 || STRNICMP(buf, "zht", 3) == 0)
3341 STRCPY(buf, "zh_TW");
3342 else if (STRNICMP(buf, "chs", 3) == 0
3343 || STRNICMP(buf, "zhc", 3) == 0)
3344 STRCPY(buf, "zh_CN");
3345 else if (STRNICMP(buf, "jp", 2) == 0)
3346 STRCPY(buf, "ja");
3347 else
3348 buf[2] = NUL; /* truncate to two-letter code */
3349 vim_setenv("LANG", buf);
3352 # else
3353 # ifdef MACOS_CONVERT
3354 /* Moved to os_mac_conv.c to avoid dependency problems. */
3355 mac_lang_init();
3356 # endif
3357 # endif
3359 /* enc_locale() will try to find the encoding of the current locale. */
3360 p = enc_locale();
3361 if (p != NULL)
3363 char_u *save_enc;
3365 /* Try setting 'encoding' and check if the value is valid.
3366 * If not, go back to the default "latin1". */
3367 save_enc = p_enc;
3368 p_enc = p;
3369 if (STRCMP(p_enc, "gb18030") == 0)
3371 /* We don't support "gb18030", but "cp936" is a good substitute
3372 * for practical purposes, thus use that. It's not an alias to
3373 * still support conversion between gb18030 and utf-8. */
3374 p_enc = vim_strsave((char_u *)"cp936");
3375 vim_free(p);
3377 #if defined(FEAT_GUI_MACVIM)
3378 did_mb_init = (mb_init() == NULL);
3379 if (!did_mb_init)
3381 /* The encoding returned by enc_locale() was invalid, so fall back
3382 * on using utf-8 as the default encoding in MacVim. */
3383 vim_free(p_enc);
3384 p_enc = vim_strsave((char_u *)"utf-8");
3385 did_mb_init = (mb_init() == NULL);
3388 /* did_mb_init should always be TRUE, but check just in case. */
3389 if (did_mb_init)
3390 #else
3391 if (mb_init() == NULL)
3392 #endif
3394 opt_idx = findoption((char_u *)"encoding");
3395 if (opt_idx >= 0)
3397 options[opt_idx].def_val[VI_DEFAULT] = p_enc;
3398 options[opt_idx].flags |= P_DEF_ALLOCED;
3401 #if defined(MSDOS) || defined(MSWIN) || defined(OS2) || defined(MACOS) \
3402 || defined(VMS)
3403 if (STRCMP(p_enc, "latin1") == 0
3404 # ifdef FEAT_MBYTE
3405 || enc_utf8
3406 # endif
3409 /* Adjust the default for 'isprint' and 'iskeyword' to match
3410 * latin1. Also set the defaults for when 'nocompatible' is
3411 * set. */
3412 set_string_option_direct((char_u *)"isp", -1,
3413 ISP_LATIN1, OPT_FREE, SID_NONE);
3414 set_string_option_direct((char_u *)"isk", -1,
3415 ISK_LATIN1, OPT_FREE, SID_NONE);
3416 opt_idx = findoption((char_u *)"isp");
3417 if (opt_idx >= 0)
3418 options[opt_idx].def_val[VIM_DEFAULT] = ISP_LATIN1;
3419 opt_idx = findoption((char_u *)"isk");
3420 if (opt_idx >= 0)
3421 options[opt_idx].def_val[VIM_DEFAULT] = ISK_LATIN1;
3422 (void)init_chartab();
3424 #endif
3426 # if defined(WIN3264) && !defined(FEAT_GUI)
3427 /* Win32 console: When GetACP() returns a different value from
3428 * GetConsoleCP() set 'termencoding'. */
3429 if (GetACP() != GetConsoleCP())
3431 char buf[50];
3433 sprintf(buf, "cp%ld", (long)GetConsoleCP());
3434 p_tenc = vim_strsave((char_u *)buf);
3435 if (p_tenc != NULL)
3437 opt_idx = findoption((char_u *)"termencoding");
3438 if (opt_idx >= 0)
3440 options[opt_idx].def_val[VI_DEFAULT] = p_tenc;
3441 options[opt_idx].flags |= P_DEF_ALLOCED;
3443 convert_setup(&input_conv, p_tenc, p_enc);
3444 convert_setup(&output_conv, p_enc, p_tenc);
3446 else
3447 p_tenc = empty_option;
3449 # endif
3450 # if defined(WIN3264) && defined(FEAT_MBYTE)
3451 /* $HOME may have characters in active code page. */
3452 init_homedir();
3453 # endif
3455 else
3457 vim_free(p_enc);
3458 p_enc = save_enc;
3461 #endif
3463 #ifdef FEAT_MULTI_LANG
3464 /* Set the default for 'helplang'. */
3465 set_helplang_default(get_mess_lang());
3466 #endif
3470 * Set an option to its default value.
3471 * This does not take care of side effects!
3473 static void
3474 set_option_default(opt_idx, opt_flags, compatible)
3475 int opt_idx;
3476 int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */
3477 int compatible; /* use Vi default value */
3479 char_u *varp; /* pointer to variable for current option */
3480 int dvi; /* index in def_val[] */
3481 long_u flags;
3482 long_u *flagsp;
3483 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
3485 varp = get_varp_scope(&(options[opt_idx]), both ? OPT_LOCAL : opt_flags);
3486 flags = options[opt_idx].flags;
3487 if (varp != NULL) /* skip hidden option, nothing to do for it */
3489 dvi = ((flags & P_VI_DEF) || compatible) ? VI_DEFAULT : VIM_DEFAULT;
3490 if (flags & P_STRING)
3492 /* Use set_string_option_direct() for local options to handle
3493 * freeing and allocating the value. */
3494 if (options[opt_idx].indir != PV_NONE)
3495 set_string_option_direct(NULL, opt_idx,
3496 options[opt_idx].def_val[dvi], opt_flags, 0);
3497 else
3499 if ((opt_flags & OPT_FREE) && (flags & P_ALLOCED))
3500 free_string_option(*(char_u **)(varp));
3501 *(char_u **)varp = options[opt_idx].def_val[dvi];
3502 options[opt_idx].flags &= ~P_ALLOCED;
3505 else if (flags & P_NUM)
3507 if (options[opt_idx].indir == PV_SCROLL)
3508 win_comp_scroll(curwin);
3509 else
3511 *(long *)varp = (long)(long_i)options[opt_idx].def_val[dvi];
3512 /* May also set global value for local option. */
3513 if (both)
3514 *(long *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) =
3515 *(long *)varp;
3518 else /* P_BOOL */
3520 /* the cast to long is required for Manx C, long_i is needed for
3521 * MSVC */
3522 *(int *)varp = (int)(long)(long_i)options[opt_idx].def_val[dvi];
3523 #ifdef UNIX
3524 /* 'modeline' defaults to off for root */
3525 if (options[opt_idx].indir == PV_ML && getuid() == ROOT_UID)
3526 *(int *)varp = FALSE;
3527 #endif
3528 /* May also set global value for local option. */
3529 if (both)
3530 *(int *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) =
3531 *(int *)varp;
3534 /* The default value is not insecure. */
3535 flagsp = insecure_flag(opt_idx, opt_flags);
3536 *flagsp = *flagsp & ~P_INSECURE;
3539 #ifdef FEAT_EVAL
3540 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
3541 #endif
3545 * Set all options (except terminal options) to their default value.
3547 static void
3548 set_options_default(opt_flags)
3549 int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */
3551 int i;
3552 #ifdef FEAT_WINDOWS
3553 win_T *wp;
3554 tabpage_T *tp;
3555 #endif
3557 for (i = 0; !istermoption(&options[i]); i++)
3558 if (!(options[i].flags & P_NODEFAULT))
3559 set_option_default(i, opt_flags, p_cp);
3561 #ifdef FEAT_WINDOWS
3562 /* The 'scroll' option must be computed for all windows. */
3563 FOR_ALL_TAB_WINDOWS(tp, wp)
3564 win_comp_scroll(wp);
3565 #else
3566 win_comp_scroll(curwin);
3567 #endif
3571 * Set the Vi-default value of a string option.
3572 * Used for 'sh', 'backupskip' and 'term'.
3574 void
3575 set_string_default(name, val)
3576 char *name;
3577 char_u *val;
3579 char_u *p;
3580 int opt_idx;
3582 p = vim_strsave(val);
3583 if (p != NULL) /* we don't want a NULL */
3585 opt_idx = findoption((char_u *)name);
3586 if (opt_idx >= 0)
3588 if (options[opt_idx].flags & P_DEF_ALLOCED)
3589 vim_free(options[opt_idx].def_val[VI_DEFAULT]);
3590 options[opt_idx].def_val[VI_DEFAULT] = p;
3591 options[opt_idx].flags |= P_DEF_ALLOCED;
3597 * Set the Vi-default value of a number option.
3598 * Used for 'lines' and 'columns'.
3600 void
3601 set_number_default(name, val)
3602 char *name;
3603 long val;
3605 int opt_idx;
3607 opt_idx = findoption((char_u *)name);
3608 if (opt_idx >= 0)
3609 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
3612 #if defined(EXITFREE) || defined(PROTO)
3614 * Free all options.
3616 void
3617 free_all_options()
3619 int i;
3621 for (i = 0; !istermoption(&options[i]); i++)
3623 if (options[i].indir == PV_NONE)
3625 /* global option: free value and default value. */
3626 if (options[i].flags & P_ALLOCED && options[i].var != NULL)
3627 free_string_option(*(char_u **)options[i].var);
3628 if (options[i].flags & P_DEF_ALLOCED)
3629 free_string_option(options[i].def_val[VI_DEFAULT]);
3631 else if (options[i].var != VAR_WIN
3632 && (options[i].flags & P_STRING))
3633 /* buffer-local option: free global value */
3634 free_string_option(*(char_u **)options[i].var);
3637 #endif
3641 * Initialize the options, part two: After getting Rows and Columns and
3642 * setting 'term'.
3644 void
3645 set_init_2()
3647 int idx;
3650 * 'scroll' defaults to half the window height. Note that this default is
3651 * wrong when the window height changes.
3653 set_number_default("scroll", (long)((long_u)Rows >> 1));
3654 idx = findoption((char_u *)"scroll");
3655 if (idx >= 0 && !(options[idx].flags & P_WAS_SET))
3656 set_option_default(idx, OPT_LOCAL, p_cp);
3657 comp_col();
3660 * 'window' is only for backwards compatibility with Vi.
3661 * Default is Rows - 1.
3663 if (!option_was_set((char_u *)"window"))
3664 p_window = Rows - 1;
3665 set_number_default("window", Rows - 1);
3667 /* For DOS console the default is always black. */
3668 #if !((defined(MSDOS) || defined(OS2) || defined(WIN3264)) && !defined(FEAT_GUI))
3670 * If 'background' wasn't set by the user, try guessing the value,
3671 * depending on the terminal name. Only need to check for terminals
3672 * with a dark background, that can handle color.
3674 idx = findoption((char_u *)"bg");
3675 if (idx >= 0 && !(options[idx].flags & P_WAS_SET)
3676 && *term_bg_default() == 'd')
3678 set_string_option_direct(NULL, idx, (char_u *)"dark", OPT_FREE, 0);
3679 /* don't mark it as set, when starting the GUI it may be
3680 * changed again */
3681 options[idx].flags &= ~P_WAS_SET;
3683 #endif
3685 #ifdef CURSOR_SHAPE
3686 parse_shape_opt(SHAPE_CURSOR); /* set cursor shapes from 'guicursor' */
3687 #endif
3688 #ifdef FEAT_MOUSESHAPE
3689 parse_shape_opt(SHAPE_MOUSE); /* set mouse shapes from 'mouseshape' */
3690 #endif
3691 #ifdef FEAT_PRINTER
3692 (void)parse_printoptions(); /* parse 'printoptions' default value */
3693 #endif
3697 * Return "dark" or "light" depending on the kind of terminal.
3698 * This is just guessing! Recognized are:
3699 * "linux" Linux console
3700 * "screen.linux" Linux console with screen
3701 * "cygwin" Cygwin shell
3702 * "putty" Putty program
3703 * We also check the COLORFGBG environment variable, which is set by
3704 * rxvt and derivatives. This variable contains either two or three
3705 * values separated by semicolons; we want the last value in either
3706 * case. If this value is 0-6 or 8, our background is dark.
3708 static char_u *
3709 term_bg_default()
3711 #if defined(MSDOS) || defined(OS2) || defined(WIN3264)
3712 /* DOS console nearly always black */
3713 return (char_u *)"dark";
3714 #else
3715 char_u *p;
3717 if (STRCMP(T_NAME, "linux") == 0
3718 || STRCMP(T_NAME, "screen.linux") == 0
3719 || STRCMP(T_NAME, "cygwin") == 0
3720 || STRCMP(T_NAME, "putty") == 0
3721 || ((p = mch_getenv((char_u *)"COLORFGBG")) != NULL
3722 && (p = vim_strrchr(p, ';')) != NULL
3723 && ((p[1] >= '0' && p[1] <= '6') || p[1] == '8')
3724 && p[2] == NUL))
3725 return (char_u *)"dark";
3726 return (char_u *)"light";
3727 #endif
3731 * Initialize the options, part three: After reading the .vimrc
3733 void
3734 set_init_3()
3736 #if defined(UNIX) || defined(OS2) || defined(WIN3264)
3738 * Set 'shellpipe' and 'shellredir', depending on the 'shell' option.
3739 * This is done after other initializations, where 'shell' might have been
3740 * set, but only if they have not been set before.
3742 char_u *p;
3743 int idx_srr;
3744 int do_srr;
3745 #ifdef FEAT_QUICKFIX
3746 int idx_sp;
3747 int do_sp;
3748 #endif
3750 idx_srr = findoption((char_u *)"srr");
3751 if (idx_srr < 0)
3752 do_srr = FALSE;
3753 else
3754 do_srr = !(options[idx_srr].flags & P_WAS_SET);
3755 #ifdef FEAT_QUICKFIX
3756 idx_sp = findoption((char_u *)"sp");
3757 if (idx_sp < 0)
3758 do_sp = FALSE;
3759 else
3760 do_sp = !(options[idx_sp].flags & P_WAS_SET);
3761 #endif
3764 * Isolate the name of the shell:
3765 * - Skip beyond any path. E.g., "/usr/bin/csh -f" -> "csh -f".
3766 * - Remove any argument. E.g., "csh -f" -> "csh".
3768 p = gettail(p_sh);
3769 p = vim_strnsave(p, (int)(skiptowhite(p) - p));
3770 if (p != NULL)
3773 * Default for p_sp is "| tee", for p_srr is ">".
3774 * For known shells it is changed here to include stderr.
3776 if ( fnamecmp(p, "csh") == 0
3777 || fnamecmp(p, "tcsh") == 0
3778 # if defined(OS2) || defined(WIN3264) /* also check with .exe extension */
3779 || fnamecmp(p, "csh.exe") == 0
3780 || fnamecmp(p, "tcsh.exe") == 0
3781 # endif
3784 #if defined(FEAT_QUICKFIX)
3785 if (do_sp)
3787 # ifdef WIN3264
3788 p_sp = (char_u *)">&";
3789 # else
3790 p_sp = (char_u *)"|& tee";
3791 # endif
3792 options[idx_sp].def_val[VI_DEFAULT] = p_sp;
3794 #endif
3795 if (do_srr)
3797 p_srr = (char_u *)">&";
3798 options[idx_srr].def_val[VI_DEFAULT] = p_srr;
3801 else
3802 # ifndef OS2 /* Always use bourne shell style redirection if we reach this */
3803 if ( fnamecmp(p, "sh") == 0
3804 || fnamecmp(p, "ksh") == 0
3805 || fnamecmp(p, "zsh") == 0
3806 || fnamecmp(p, "zsh-beta") == 0
3807 || fnamecmp(p, "bash") == 0
3808 # ifdef WIN3264
3809 || fnamecmp(p, "cmd") == 0
3810 || fnamecmp(p, "sh.exe") == 0
3811 || fnamecmp(p, "ksh.exe") == 0
3812 || fnamecmp(p, "zsh.exe") == 0
3813 || fnamecmp(p, "zsh-beta.exe") == 0
3814 || fnamecmp(p, "bash.exe") == 0
3815 || fnamecmp(p, "cmd.exe") == 0
3816 # endif
3818 # endif
3820 #if defined(FEAT_QUICKFIX)
3821 if (do_sp)
3823 # ifdef WIN3264
3824 p_sp = (char_u *)">%s 2>&1";
3825 # else
3826 p_sp = (char_u *)"2>&1| tee";
3827 # endif
3828 options[idx_sp].def_val[VI_DEFAULT] = p_sp;
3830 #endif
3831 if (do_srr)
3833 p_srr = (char_u *)">%s 2>&1";
3834 options[idx_srr].def_val[VI_DEFAULT] = p_srr;
3837 vim_free(p);
3839 #endif
3841 #if defined(MSDOS) || defined(WIN3264) || defined(OS2)
3843 * Set 'shellcmdflag and 'shellquote' depending on the 'shell' option.
3844 * This is done after other initializations, where 'shell' might have been
3845 * set, but only if they have not been set before. Default for p_shcf is
3846 * "/c", for p_shq is "". For "sh" like shells it is changed here to
3847 * "-c" and "\"", but not for DJGPP, because it starts the shell without
3848 * command.com. And for Win32 we need to set p_sxq instead.
3850 if (strstr((char *)gettail(p_sh), "sh") != NULL)
3852 int idx3;
3854 idx3 = findoption((char_u *)"shcf");
3855 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
3857 p_shcf = (char_u *)"-c";
3858 options[idx3].def_val[VI_DEFAULT] = p_shcf;
3861 # ifndef DJGPP
3862 # ifdef WIN3264
3863 /* Somehow Win32 requires the quotes around the redirection too */
3864 idx3 = findoption((char_u *)"sxq");
3865 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
3867 p_sxq = (char_u *)"\"";
3868 options[idx3].def_val[VI_DEFAULT] = p_sxq;
3870 # else
3871 idx3 = findoption((char_u *)"shq");
3872 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
3874 p_shq = (char_u *)"\"";
3875 options[idx3].def_val[VI_DEFAULT] = p_shq;
3877 # endif
3878 # endif
3880 #endif
3882 #ifdef FEAT_TITLE
3883 set_title_defaults();
3884 #endif
3887 #if defined(FEAT_MULTI_LANG) || defined(PROTO)
3889 * When 'helplang' is still at its default value, set it to "lang".
3890 * Only the first two characters of "lang" are used.
3892 void
3893 set_helplang_default(lang)
3894 char_u *lang;
3896 int idx;
3898 if (lang == NULL || STRLEN(lang) < 2) /* safety check */
3899 return;
3900 idx = findoption((char_u *)"hlg");
3901 if (idx >= 0 && !(options[idx].flags & P_WAS_SET))
3903 if (options[idx].flags & P_ALLOCED)
3904 free_string_option(p_hlg);
3905 p_hlg = vim_strsave(lang);
3906 if (p_hlg == NULL)
3907 p_hlg = empty_option;
3908 else
3910 /* zh_CN becomes "cn", zh_TW becomes "tw". */
3911 if (STRNICMP(p_hlg, "zh_", 3) == 0 && STRLEN(p_hlg) >= 5)
3913 p_hlg[0] = TOLOWER_ASC(p_hlg[3]);
3914 p_hlg[1] = TOLOWER_ASC(p_hlg[4]);
3916 p_hlg[2] = NUL;
3918 options[idx].flags |= P_ALLOCED;
3921 #endif
3923 #ifdef FEAT_GUI
3924 static char_u *gui_bg_default __ARGS((void));
3926 static char_u *
3927 gui_bg_default()
3929 if (gui_get_lightness(gui.back_pixel) < 127)
3930 return (char_u *)"dark";
3931 return (char_u *)"light";
3935 * Option initializations that can only be done after opening the GUI window.
3937 void
3938 init_gui_options()
3940 /* Set the 'background' option according to the lightness of the
3941 * background color, unless the user has set it already. */
3942 if (!option_was_set((char_u *)"bg") && STRCMP(p_bg, gui_bg_default()) != 0)
3944 set_option_value((char_u *)"bg", 0L, gui_bg_default(), 0);
3945 highlight_changed();
3948 #endif
3950 #ifdef FEAT_TITLE
3952 * 'title' and 'icon' only default to true if they have not been set or reset
3953 * in .vimrc and we can read the old value.
3954 * When 'title' and 'icon' have been reset in .vimrc, we won't even check if
3955 * they can be reset. This reduces startup time when using X on a remote
3956 * machine.
3958 void
3959 set_title_defaults()
3961 int idx1;
3962 long val;
3965 * If GUI is (going to be) used, we can always set the window title and
3966 * icon name. Saves a bit of time, because the X11 display server does
3967 * not need to be contacted.
3969 idx1 = findoption((char_u *)"title");
3970 if (idx1 >= 0 && !(options[idx1].flags & P_WAS_SET))
3972 #ifdef FEAT_GUI
3973 if (gui.starting || gui.in_use)
3974 val = TRUE;
3975 else
3976 #endif
3977 val = mch_can_restore_title();
3978 options[idx1].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
3979 p_title = val;
3981 idx1 = findoption((char_u *)"icon");
3982 if (idx1 >= 0 && !(options[idx1].flags & P_WAS_SET))
3984 #ifdef FEAT_GUI
3985 if (gui.starting || gui.in_use)
3986 val = TRUE;
3987 else
3988 #endif
3989 val = mch_can_restore_icon();
3990 options[idx1].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
3991 p_icon = val;
3994 #endif
3997 * Parse 'arg' for option settings.
3999 * 'arg' may be IObuff, but only when no errors can be present and option
4000 * does not need to be expanded with option_expand().
4001 * "opt_flags":
4002 * 0 for ":set"
4003 * OPT_GLOBAL for ":setglobal"
4004 * OPT_LOCAL for ":setlocal" and a modeline
4005 * OPT_MODELINE for a modeline
4006 * OPT_WINONLY to only set window-local options
4007 * OPT_NOWIN to skip setting window-local options
4009 * returns FAIL if an error is detected, OK otherwise
4012 do_set(arg, opt_flags)
4013 char_u *arg; /* option string (may be written to!) */
4014 int opt_flags;
4016 int opt_idx;
4017 char_u *errmsg;
4018 char_u errbuf[80];
4019 char_u *startarg;
4020 int prefix; /* 1: nothing, 0: "no", 2: "inv" in front of name */
4021 int nextchar; /* next non-white char after option name */
4022 int afterchar; /* character just after option name */
4023 int len;
4024 int i;
4025 long value;
4026 int key;
4027 long_u flags; /* flags for current option */
4028 char_u *varp = NULL; /* pointer to variable for current option */
4029 int did_show = FALSE; /* already showed one value */
4030 int adding; /* "opt+=arg" */
4031 int prepending; /* "opt^=arg" */
4032 int removing; /* "opt-=arg" */
4033 int cp_val = 0;
4034 char_u key_name[2];
4036 if (*arg == NUL)
4038 showoptions(0, opt_flags);
4039 did_show = TRUE;
4040 goto theend;
4043 while (*arg != NUL) /* loop to process all options */
4045 errmsg = NULL;
4046 startarg = arg; /* remember for error message */
4048 if (STRNCMP(arg, "all", 3) == 0 && !isalpha(arg[3])
4049 && !(opt_flags & OPT_MODELINE))
4052 * ":set all" show all options.
4053 * ":set all&" set all options to their default value.
4055 arg += 3;
4056 if (*arg == '&')
4058 ++arg;
4059 /* Only for :set command set global value of local options. */
4060 set_options_default(OPT_FREE | opt_flags);
4062 else
4064 showoptions(1, opt_flags);
4065 did_show = TRUE;
4068 else if (STRNCMP(arg, "termcap", 7) == 0 && !(opt_flags & OPT_MODELINE))
4070 showoptions(2, opt_flags);
4071 show_termcodes();
4072 did_show = TRUE;
4073 arg += 7;
4075 else
4077 prefix = 1;
4078 if (STRNCMP(arg, "no", 2) == 0 && STRNCMP(arg, "novice", 6) != 0)
4080 prefix = 0;
4081 arg += 2;
4083 else if (STRNCMP(arg, "inv", 3) == 0)
4085 prefix = 2;
4086 arg += 3;
4089 /* find end of name */
4090 key = 0;
4091 if (*arg == '<')
4093 nextchar = 0;
4094 opt_idx = -1;
4095 /* look out for <t_>;> */
4096 if (arg[1] == 't' && arg[2] == '_' && arg[3] && arg[4])
4097 len = 5;
4098 else
4100 len = 1;
4101 while (arg[len] != NUL && arg[len] != '>')
4102 ++len;
4104 if (arg[len] != '>')
4106 errmsg = e_invarg;
4107 goto skip;
4109 arg[len] = NUL; /* put NUL after name */
4110 if (arg[1] == 't' && arg[2] == '_') /* could be term code */
4111 opt_idx = findoption(arg + 1);
4112 arg[len++] = '>'; /* restore '>' */
4113 if (opt_idx == -1)
4114 key = find_key_option(arg + 1);
4116 else
4118 len = 0;
4120 * The two characters after "t_" may not be alphanumeric.
4122 if (arg[0] == 't' && arg[1] == '_' && arg[2] && arg[3])
4123 len = 4;
4124 else
4125 while (ASCII_ISALNUM(arg[len]) || arg[len] == '_')
4126 ++len;
4127 nextchar = arg[len];
4128 arg[len] = NUL; /* put NUL after name */
4129 opt_idx = findoption(arg);
4130 arg[len] = nextchar; /* restore nextchar */
4131 if (opt_idx == -1)
4132 key = find_key_option(arg);
4135 /* remember character after option name */
4136 afterchar = arg[len];
4138 /* skip white space, allow ":set ai ?" */
4139 while (vim_iswhite(arg[len]))
4140 ++len;
4142 adding = FALSE;
4143 prepending = FALSE;
4144 removing = FALSE;
4145 if (arg[len] != NUL && arg[len + 1] == '=')
4147 if (arg[len] == '+')
4149 adding = TRUE; /* "+=" */
4150 ++len;
4152 else if (arg[len] == '^')
4154 prepending = TRUE; /* "^=" */
4155 ++len;
4157 else if (arg[len] == '-')
4159 removing = TRUE; /* "-=" */
4160 ++len;
4163 nextchar = arg[len];
4165 if (opt_idx == -1 && key == 0) /* found a mismatch: skip */
4167 errmsg = (char_u *)N_("E518: Unknown option");
4168 goto skip;
4171 if (opt_idx >= 0)
4173 if (options[opt_idx].var == NULL) /* hidden option: skip */
4175 /* Only give an error message when requesting the value of
4176 * a hidden option, ignore setting it. */
4177 if (vim_strchr((char_u *)"=:!&<", nextchar) == NULL
4178 && (!(options[opt_idx].flags & P_BOOL)
4179 || nextchar == '?'))
4180 errmsg = (char_u *)N_("E519: Option not supported");
4181 goto skip;
4184 flags = options[opt_idx].flags;
4185 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
4187 else
4189 flags = P_STRING;
4190 if (key < 0)
4192 key_name[0] = KEY2TERMCAP0(key);
4193 key_name[1] = KEY2TERMCAP1(key);
4195 else
4197 key_name[0] = KS_KEY;
4198 key_name[1] = (key & 0xff);
4202 /* Skip all options that are not window-local (used when showing
4203 * an already loaded buffer in a window). */
4204 if ((opt_flags & OPT_WINONLY)
4205 && (opt_idx < 0 || options[opt_idx].var != VAR_WIN))
4206 goto skip;
4208 /* Skip all options that are window-local (used for :vimgrep). */
4209 if ((opt_flags & OPT_NOWIN) && opt_idx >= 0
4210 && options[opt_idx].var == VAR_WIN)
4211 goto skip;
4213 /* Disallow changing some options from modelines. */
4214 if (opt_flags & OPT_MODELINE)
4216 if (flags & P_SECURE)
4218 errmsg = (char_u *)_("E520: Not allowed in a modeline");
4219 goto skip;
4221 #ifdef FEAT_DIFF
4222 /* In diff mode some options are overruled. This avoids that
4223 * 'foldmethod' becomes "marker" instead of "diff" and that
4224 * "wrap" gets set. */
4225 if (curwin->w_p_diff
4226 && (options[opt_idx].indir == PV_FDM
4227 || options[opt_idx].indir == PV_WRAP))
4228 goto skip;
4229 #endif
4232 #ifdef HAVE_SANDBOX
4233 /* Disallow changing some options in the sandbox */
4234 if (sandbox != 0 && (flags & P_SECURE))
4236 errmsg = (char_u *)_(e_sandbox);
4237 goto skip;
4239 #endif
4241 if (vim_strchr((char_u *)"?=:!&<", nextchar) != NULL)
4243 arg += len;
4244 cp_val = p_cp;
4245 if (nextchar == '&' && arg[1] == 'v' && arg[2] == 'i')
4247 if (arg[3] == 'm') /* "opt&vim": set to Vim default */
4249 cp_val = FALSE;
4250 arg += 3;
4252 else /* "opt&vi": set to Vi default */
4254 cp_val = TRUE;
4255 arg += 2;
4258 if (vim_strchr((char_u *)"?!&<", nextchar) != NULL
4259 && arg[1] != NUL && !vim_iswhite(arg[1]))
4261 errmsg = e_trailing;
4262 goto skip;
4267 * allow '=' and ':' as MSDOS command.com allows only one
4268 * '=' character per "set" command line. grrr. (jw)
4270 if (nextchar == '?'
4271 || (prefix == 1
4272 && vim_strchr((char_u *)"=:&<", nextchar) == NULL
4273 && !(flags & P_BOOL)))
4276 * print value
4278 if (did_show)
4279 msg_putchar('\n'); /* cursor below last one */
4280 else
4282 gotocmdline(TRUE); /* cursor at status line */
4283 did_show = TRUE; /* remember that we did a line */
4285 if (opt_idx >= 0)
4287 showoneopt(&options[opt_idx], opt_flags);
4288 #ifdef FEAT_EVAL
4289 if (p_verbose > 0)
4291 /* Mention where the option was last set. */
4292 if (varp == options[opt_idx].var)
4293 last_set_msg(options[opt_idx].scriptID);
4294 else if ((int)options[opt_idx].indir & PV_WIN)
4295 last_set_msg(curwin->w_p_scriptID[
4296 (int)options[opt_idx].indir & PV_MASK]);
4297 else if ((int)options[opt_idx].indir & PV_BUF)
4298 last_set_msg(curbuf->b_p_scriptID[
4299 (int)options[opt_idx].indir & PV_MASK]);
4301 #endif
4303 else
4305 char_u *p;
4307 p = find_termcode(key_name);
4308 if (p == NULL)
4310 errmsg = (char_u *)N_("E518: Unknown option");
4311 goto skip;
4313 else
4314 (void)show_one_termcode(key_name, p, TRUE);
4316 if (nextchar != '?'
4317 && nextchar != NUL && !vim_iswhite(afterchar))
4318 errmsg = e_trailing;
4320 else
4322 if (flags & P_BOOL) /* boolean */
4324 if (nextchar == '=' || nextchar == ':')
4326 errmsg = e_invarg;
4327 goto skip;
4331 * ":set opt!": invert
4332 * ":set opt&": reset to default value
4333 * ":set opt<": reset to global value
4335 if (nextchar == '!')
4336 value = *(int *)(varp) ^ 1;
4337 else if (nextchar == '&')
4338 value = (int)(long)(long_i)options[opt_idx].def_val[
4339 ((flags & P_VI_DEF) || cp_val)
4340 ? VI_DEFAULT : VIM_DEFAULT];
4341 else if (nextchar == '<')
4343 /* For 'autoread' -1 means to use global value. */
4344 if ((int *)varp == &curbuf->b_p_ar
4345 && opt_flags == OPT_LOCAL)
4346 value = -1;
4347 else
4348 value = *(int *)get_varp_scope(&(options[opt_idx]),
4349 OPT_GLOBAL);
4351 else
4354 * ":set invopt": invert
4355 * ":set opt" or ":set noopt": set or reset
4357 if (nextchar != NUL && !vim_iswhite(afterchar))
4359 errmsg = e_trailing;
4360 goto skip;
4362 if (prefix == 2) /* inv */
4363 value = *(int *)(varp) ^ 1;
4364 else
4365 value = prefix;
4368 errmsg = set_bool_option(opt_idx, varp, (int)value,
4369 opt_flags);
4371 else /* numeric or string */
4373 if (vim_strchr((char_u *)"=:&<", nextchar) == NULL
4374 || prefix != 1)
4376 errmsg = e_invarg;
4377 goto skip;
4380 if (flags & P_NUM) /* numeric */
4383 * Different ways to set a number option:
4384 * & set to default value
4385 * < set to global value
4386 * <xx> accept special key codes for 'wildchar'
4387 * c accept any non-digit for 'wildchar'
4388 * [-]0-9 set number
4389 * other error
4391 ++arg;
4392 if (nextchar == '&')
4393 value = (long)(long_i)options[opt_idx].def_val[
4394 ((flags & P_VI_DEF) || cp_val)
4395 ? VI_DEFAULT : VIM_DEFAULT];
4396 else if (nextchar == '<')
4397 value = *(long *)get_varp_scope(&(options[opt_idx]),
4398 OPT_GLOBAL);
4399 else if (((long *)varp == &p_wc
4400 || (long *)varp == &p_wcm)
4401 && (*arg == '<'
4402 || *arg == '^'
4403 || ((!arg[1] || vim_iswhite(arg[1]))
4404 && !VIM_ISDIGIT(*arg))))
4406 value = string_to_key(arg);
4407 if (value == 0 && (long *)varp != &p_wcm)
4409 errmsg = e_invarg;
4410 goto skip;
4413 /* allow negative numbers (for 'undolevels') */
4414 else if (*arg == '-' || VIM_ISDIGIT(*arg))
4416 i = 0;
4417 if (*arg == '-')
4418 i = 1;
4419 #ifdef HAVE_STRTOL
4420 value = strtol((char *)arg, NULL, 0);
4421 if (arg[i] == '0' && TOLOWER_ASC(arg[i + 1]) == 'x')
4422 i += 2;
4423 #else
4424 value = atol((char *)arg);
4425 #endif
4426 while (VIM_ISDIGIT(arg[i]))
4427 ++i;
4428 if (arg[i] != NUL && !vim_iswhite(arg[i]))
4430 errmsg = e_invarg;
4431 goto skip;
4434 else
4436 errmsg = (char_u *)N_("E521: Number required after =");
4437 goto skip;
4440 if (adding)
4441 value = *(long *)varp + value;
4442 if (prepending)
4443 value = *(long *)varp * value;
4444 if (removing)
4445 value = *(long *)varp - value;
4446 errmsg = set_num_option(opt_idx, varp, value,
4447 errbuf, sizeof(errbuf), opt_flags);
4449 else if (opt_idx >= 0) /* string */
4451 char_u *save_arg = NULL;
4452 char_u *s = NULL;
4453 char_u *oldval; /* previous value if *varp */
4454 char_u *newval;
4455 char_u *origval;
4456 unsigned newlen;
4457 int comma;
4458 int bs;
4459 int new_value_alloced; /* new string option
4460 was allocated */
4462 /* When using ":set opt=val" for a global option
4463 * with a local value the local value will be
4464 * reset, use the global value here. */
4465 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
4466 && ((int)options[opt_idx].indir & PV_BOTH))
4467 varp = options[opt_idx].var;
4469 /* The old value is kept until we are sure that the
4470 * new value is valid. */
4471 oldval = *(char_u **)varp;
4472 if (nextchar == '&') /* set to default val */
4474 newval = options[opt_idx].def_val[
4475 ((flags & P_VI_DEF) || cp_val)
4476 ? VI_DEFAULT : VIM_DEFAULT];
4477 if ((char_u **)varp == &p_bg)
4479 /* guess the value of 'background' */
4480 #ifdef FEAT_GUI
4481 if (gui.in_use)
4482 newval = gui_bg_default();
4483 else
4484 #endif
4485 newval = term_bg_default();
4488 /* expand environment variables and ~ (since the
4489 * default value was already expanded, only
4490 * required when an environment variable was set
4491 * later */
4492 if (newval == NULL)
4493 newval = empty_option;
4494 else
4496 s = option_expand(opt_idx, newval);
4497 if (s == NULL)
4498 s = newval;
4499 newval = vim_strsave(s);
4501 new_value_alloced = TRUE;
4503 else if (nextchar == '<') /* set to global val */
4505 newval = vim_strsave(*(char_u **)get_varp_scope(
4506 &(options[opt_idx]), OPT_GLOBAL));
4507 new_value_alloced = TRUE;
4509 else
4511 ++arg; /* jump to after the '=' or ':' */
4514 * Set 'keywordprg' to ":help" if an empty
4515 * value was passed to :set by the user.
4516 * Misuse errbuf[] for the resulting string.
4518 if (varp == (char_u *)&p_kp
4519 && (*arg == NUL || *arg == ' '))
4521 STRCPY(errbuf, ":help");
4522 save_arg = arg;
4523 arg = errbuf;
4526 * Convert 'whichwrap' number to string, for
4527 * backwards compatibility with Vim 3.0.
4528 * Misuse errbuf[] for the resulting string.
4530 else if (varp == (char_u *)&p_ww
4531 && VIM_ISDIGIT(*arg))
4533 *errbuf = NUL;
4534 i = getdigits(&arg);
4535 if (i & 1)
4536 STRCAT(errbuf, "b,");
4537 if (i & 2)
4538 STRCAT(errbuf, "s,");
4539 if (i & 4)
4540 STRCAT(errbuf, "h,l,");
4541 if (i & 8)
4542 STRCAT(errbuf, "<,>,");
4543 if (i & 16)
4544 STRCAT(errbuf, "[,],");
4545 if (*errbuf != NUL) /* remove trailing , */
4546 errbuf[STRLEN(errbuf) - 1] = NUL;
4547 save_arg = arg;
4548 arg = errbuf;
4551 * Remove '>' before 'dir' and 'bdir', for
4552 * backwards compatibility with version 3.0
4554 else if ( *arg == '>'
4555 && (varp == (char_u *)&p_dir
4556 || varp == (char_u *)&p_bdir))
4558 ++arg;
4561 /* When setting the local value of a global
4562 * option, the old value may be the global value. */
4563 if (((int)options[opt_idx].indir & PV_BOTH)
4564 && (opt_flags & OPT_LOCAL))
4565 origval = *(char_u **)get_varp(
4566 &options[opt_idx]);
4567 else
4568 origval = oldval;
4571 * Copy the new string into allocated memory.
4572 * Can't use set_string_option_direct(), because
4573 * we need to remove the backslashes.
4575 /* get a bit too much */
4576 newlen = (unsigned)STRLEN(arg) + 1;
4577 if (adding || prepending || removing)
4578 newlen += (unsigned)STRLEN(origval) + 1;
4579 newval = alloc(newlen);
4580 if (newval == NULL) /* out of mem, don't change */
4581 break;
4582 s = newval;
4585 * Copy the string, skip over escaped chars.
4586 * For MS-DOS and WIN32 backslashes before normal
4587 * file name characters are not removed, and keep
4588 * backslash at start, for "\\machine\path", but
4589 * do remove it for "\\\\machine\\path".
4590 * The reverse is found in ExpandOldSetting().
4592 while (*arg && !vim_iswhite(*arg))
4594 if (*arg == '\\' && arg[1] != NUL
4595 #ifdef BACKSLASH_IN_FILENAME
4596 && !((flags & P_EXPAND)
4597 && vim_isfilec(arg[1])
4598 && (arg[1] != '\\'
4599 || (s == newval
4600 && arg[2] != '\\')))
4601 #endif
4603 ++arg; /* remove backslash */
4604 #ifdef FEAT_MBYTE
4605 if (has_mbyte
4606 && (i = (*mb_ptr2len)(arg)) > 1)
4608 /* copy multibyte char */
4609 mch_memmove(s, arg, (size_t)i);
4610 arg += i;
4611 s += i;
4613 else
4614 #endif
4615 *s++ = *arg++;
4617 *s = NUL;
4620 * Expand environment variables and ~.
4621 * Don't do it when adding without inserting a
4622 * comma.
4624 if (!(adding || prepending || removing)
4625 || (flags & P_COMMA))
4627 s = option_expand(opt_idx, newval);
4628 if (s != NULL)
4630 vim_free(newval);
4631 newlen = (unsigned)STRLEN(s) + 1;
4632 if (adding || prepending || removing)
4633 newlen += (unsigned)STRLEN(origval) + 1;
4634 newval = alloc(newlen);
4635 if (newval == NULL)
4636 break;
4637 STRCPY(newval, s);
4641 /* locate newval[] in origval[] when removing it
4642 * and when adding to avoid duplicates */
4643 i = 0; /* init for GCC */
4644 if (removing || (flags & P_NODUP))
4646 i = (int)STRLEN(newval);
4647 bs = 0;
4648 for (s = origval; *s; ++s)
4650 if ((!(flags & P_COMMA)
4651 || s == origval
4652 || (s[-1] == ',' && !(bs & 1)))
4653 && STRNCMP(s, newval, i) == 0
4654 && (!(flags & P_COMMA)
4655 || s[i] == ','
4656 || s[i] == NUL))
4657 break;
4658 /* Count backspaces. Only a comma with an
4659 * even number of backspaces before it is
4660 * recognized as a separator */
4661 if (s > origval && s[-1] == '\\')
4662 ++bs;
4663 else
4664 bs = 0;
4667 /* do not add if already there */
4668 if ((adding || prepending) && *s)
4670 prepending = FALSE;
4671 adding = FALSE;
4672 STRCPY(newval, origval);
4676 /* concatenate the two strings; add a ',' if
4677 * needed */
4678 if (adding || prepending)
4680 comma = ((flags & P_COMMA) && *origval != NUL
4681 && *newval != NUL);
4682 if (adding)
4684 i = (int)STRLEN(origval);
4685 mch_memmove(newval + i + comma, newval,
4686 STRLEN(newval) + 1);
4687 mch_memmove(newval, origval, (size_t)i);
4689 else
4691 i = (int)STRLEN(newval);
4692 STRMOVE(newval + i + comma, origval);
4694 if (comma)
4695 newval[i] = ',';
4698 /* Remove newval[] from origval[]. (Note: "i" has
4699 * been set above and is used here). */
4700 if (removing)
4702 STRCPY(newval, origval);
4703 if (*s)
4705 /* may need to remove a comma */
4706 if (flags & P_COMMA)
4708 if (s == origval)
4710 /* include comma after string */
4711 if (s[i] == ',')
4712 ++i;
4714 else
4716 /* include comma before string */
4717 --s;
4718 ++i;
4721 STRMOVE(newval + (s - origval), s + i);
4725 if (flags & P_FLAGLIST)
4727 /* Remove flags that appear twice. */
4728 for (s = newval; *s; ++s)
4729 if ((!(flags & P_COMMA) || *s != ',')
4730 && vim_strchr(s + 1, *s) != NULL)
4732 STRMOVE(s, s + 1);
4733 --s;
4737 if (save_arg != NULL) /* number for 'whichwrap' */
4738 arg = save_arg;
4739 new_value_alloced = TRUE;
4742 /* Set the new value. */
4743 *(char_u **)(varp) = newval;
4745 /* Handle side effects, and set the global value for
4746 * ":set" on local options. */
4747 errmsg = did_set_string_option(opt_idx, (char_u **)varp,
4748 new_value_alloced, oldval, errbuf, opt_flags);
4750 /* If error detected, print the error message. */
4751 if (errmsg != NULL)
4752 goto skip;
4754 else /* key code option */
4756 char_u *p;
4758 if (nextchar == '&')
4760 if (add_termcap_entry(key_name, TRUE) == FAIL)
4761 errmsg = (char_u *)N_("E522: Not found in termcap");
4763 else
4765 ++arg; /* jump to after the '=' or ':' */
4766 for (p = arg; *p && !vim_iswhite(*p); ++p)
4767 if (*p == '\\' && p[1] != NUL)
4768 ++p;
4769 nextchar = *p;
4770 *p = NUL;
4771 add_termcode(key_name, arg, FALSE);
4772 *p = nextchar;
4774 if (full_screen)
4775 ttest(FALSE);
4776 redraw_all_later(CLEAR);
4780 if (opt_idx >= 0)
4781 did_set_option(opt_idx, opt_flags,
4782 !prepending && !adding && !removing);
4785 skip:
4787 * Advance to next argument.
4788 * - skip until a blank found, taking care of backslashes
4789 * - skip blanks
4790 * - skip one "=val" argument (for hidden options ":set gfn =xx")
4792 for (i = 0; i < 2 ; ++i)
4794 while (*arg != NUL && !vim_iswhite(*arg))
4795 if (*arg++ == '\\' && *arg != NUL)
4796 ++arg;
4797 arg = skipwhite(arg);
4798 if (*arg != '=')
4799 break;
4803 if (errmsg != NULL)
4805 vim_strncpy(IObuff, (char_u *)_(errmsg), IOSIZE - 1);
4806 i = (int)STRLEN(IObuff) + 2;
4807 if (i + (arg - startarg) < IOSIZE)
4809 /* append the argument with the error */
4810 STRCAT(IObuff, ": ");
4811 mch_memmove(IObuff + i, startarg, (arg - startarg));
4812 IObuff[i + (arg - startarg)] = NUL;
4814 /* make sure all characters are printable */
4815 trans_characters(IObuff, IOSIZE);
4817 ++no_wait_return; /* wait_return done later */
4818 emsg(IObuff); /* show error highlighted */
4819 --no_wait_return;
4821 return FAIL;
4824 arg = skipwhite(arg);
4827 theend:
4828 if (silent_mode && did_show)
4830 /* After displaying option values in silent mode. */
4831 silent_mode = FALSE;
4832 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
4833 msg_putchar('\n');
4834 cursor_on(); /* msg_start() switches it off */
4835 out_flush();
4836 silent_mode = TRUE;
4837 info_message = FALSE; /* use mch_msg(), not mch_errmsg() */
4840 return OK;
4844 * Call this when an option has been given a new value through a user command.
4845 * Sets the P_WAS_SET flag and takes care of the P_INSECURE flag.
4847 static void
4848 did_set_option(opt_idx, opt_flags, new_value)
4849 int opt_idx;
4850 int opt_flags; /* possibly with OPT_MODELINE */
4851 int new_value; /* value was replaced completely */
4853 long_u *p;
4855 options[opt_idx].flags |= P_WAS_SET;
4857 /* When an option is set in the sandbox, from a modeline or in secure mode
4858 * set the P_INSECURE flag. Otherwise, if a new value is stored reset the
4859 * flag. */
4860 p = insecure_flag(opt_idx, opt_flags);
4861 if (secure
4862 #ifdef HAVE_SANDBOX
4863 || sandbox != 0
4864 #endif
4865 || (opt_flags & OPT_MODELINE))
4866 *p = *p | P_INSECURE;
4867 else if (new_value)
4868 *p = *p & ~P_INSECURE;
4871 static char_u *
4872 illegal_char(errbuf, c)
4873 char_u *errbuf;
4874 int c;
4876 if (errbuf == NULL)
4877 return (char_u *)"";
4878 sprintf((char *)errbuf, _("E539: Illegal character <%s>"),
4879 (char *)transchar(c));
4880 return errbuf;
4884 * Convert a key name or string into a key value.
4885 * Used for 'wildchar' and 'cedit' options.
4887 static int
4888 string_to_key(arg)
4889 char_u *arg;
4891 if (*arg == '<')
4892 return find_key_option(arg + 1);
4893 if (*arg == '^')
4894 return Ctrl_chr(arg[1]);
4895 return *arg;
4898 #ifdef FEAT_CMDWIN
4900 * Check value of 'cedit' and set cedit_key.
4901 * Returns NULL if value is OK, error message otherwise.
4903 static char_u *
4904 check_cedit()
4906 int n;
4908 if (*p_cedit == NUL)
4909 cedit_key = -1;
4910 else
4912 n = string_to_key(p_cedit);
4913 if (vim_isprintc(n))
4914 return e_invarg;
4915 cedit_key = n;
4917 return NULL;
4919 #endif
4921 #ifdef FEAT_TITLE
4923 * When changing 'title', 'titlestring', 'icon' or 'iconstring', call
4924 * maketitle() to create and display it.
4925 * When switching the title or icon off, call mch_restore_title() to get
4926 * the old value back.
4928 static void
4929 did_set_title(icon)
4930 int icon; /* Did set icon instead of title */
4932 if (starting != NO_SCREEN
4933 #ifdef FEAT_GUI
4934 && !gui.starting
4935 #endif
4938 maketitle();
4939 if (icon)
4941 if (!p_icon)
4942 mch_restore_title(2);
4944 else
4946 if (!p_title)
4947 mch_restore_title(1);
4951 #endif
4954 * set_options_bin - called when 'bin' changes value.
4956 void
4957 set_options_bin(oldval, newval, opt_flags)
4958 int oldval;
4959 int newval;
4960 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
4963 * The option values that are changed when 'bin' changes are
4964 * copied when 'bin is set and restored when 'bin' is reset.
4966 if (newval)
4968 if (!oldval) /* switched on */
4970 if (!(opt_flags & OPT_GLOBAL))
4972 curbuf->b_p_tw_nobin = curbuf->b_p_tw;
4973 curbuf->b_p_wm_nobin = curbuf->b_p_wm;
4974 curbuf->b_p_ml_nobin = curbuf->b_p_ml;
4975 curbuf->b_p_et_nobin = curbuf->b_p_et;
4977 if (!(opt_flags & OPT_LOCAL))
4979 p_tw_nobin = p_tw;
4980 p_wm_nobin = p_wm;
4981 p_ml_nobin = p_ml;
4982 p_et_nobin = p_et;
4986 if (!(opt_flags & OPT_GLOBAL))
4988 curbuf->b_p_tw = 0; /* no automatic line wrap */
4989 curbuf->b_p_wm = 0; /* no automatic line wrap */
4990 curbuf->b_p_ml = 0; /* no modelines */
4991 curbuf->b_p_et = 0; /* no expandtab */
4993 if (!(opt_flags & OPT_LOCAL))
4995 p_tw = 0;
4996 p_wm = 0;
4997 p_ml = FALSE;
4998 p_et = FALSE;
4999 p_bin = TRUE; /* needed when called for the "-b" argument */
5002 else if (oldval) /* switched off */
5004 if (!(opt_flags & OPT_GLOBAL))
5006 curbuf->b_p_tw = curbuf->b_p_tw_nobin;
5007 curbuf->b_p_wm = curbuf->b_p_wm_nobin;
5008 curbuf->b_p_ml = curbuf->b_p_ml_nobin;
5009 curbuf->b_p_et = curbuf->b_p_et_nobin;
5011 if (!(opt_flags & OPT_LOCAL))
5013 p_tw = p_tw_nobin;
5014 p_wm = p_wm_nobin;
5015 p_ml = p_ml_nobin;
5016 p_et = p_et_nobin;
5021 #ifdef FEAT_VIMINFO
5023 * Find the parameter represented by the given character (eg ', :, ", or /),
5024 * and return its associated value in the 'viminfo' string.
5025 * Only works for number parameters, not for 'r' or 'n'.
5026 * If the parameter is not specified in the string or there is no following
5027 * number, return -1.
5030 get_viminfo_parameter(type)
5031 int type;
5033 char_u *p;
5035 p = find_viminfo_parameter(type);
5036 if (p != NULL && VIM_ISDIGIT(*p))
5037 return atoi((char *)p);
5038 return -1;
5042 * Find the parameter represented by the given character (eg ''', ':', '"', or
5043 * '/') in the 'viminfo' option and return a pointer to the string after it.
5044 * Return NULL if the parameter is not specified in the string.
5046 char_u *
5047 find_viminfo_parameter(type)
5048 int type;
5050 char_u *p;
5052 for (p = p_viminfo; *p; ++p)
5054 if (*p == type)
5055 return p + 1;
5056 if (*p == 'n') /* 'n' is always the last one */
5057 break;
5058 p = vim_strchr(p, ','); /* skip until next ',' */
5059 if (p == NULL) /* hit the end without finding parameter */
5060 break;
5062 return NULL;
5064 #endif
5067 * Expand environment variables for some string options.
5068 * These string options cannot be indirect!
5069 * If "val" is NULL expand the current value of the option.
5070 * Return pointer to NameBuff, or NULL when not expanded.
5072 static char_u *
5073 option_expand(opt_idx, val)
5074 int opt_idx;
5075 char_u *val;
5077 /* if option doesn't need expansion nothing to do */
5078 if (!(options[opt_idx].flags & P_EXPAND) || options[opt_idx].var == NULL)
5079 return NULL;
5081 /* If val is longer than MAXPATHL no meaningful expansion can be done,
5082 * expand_env() would truncate the string. */
5083 if (val != NULL && STRLEN(val) > MAXPATHL)
5084 return NULL;
5086 if (val == NULL)
5087 val = *(char_u **)options[opt_idx].var;
5090 * Expanding this with NameBuff, expand_env() must not be passed IObuff.
5091 * Escape spaces when expanding 'tags', they are used to separate file
5092 * names.
5093 * For 'spellsuggest' expand after "file:".
5095 expand_env_esc(val, NameBuff, MAXPATHL,
5096 (char_u **)options[opt_idx].var == &p_tags, FALSE,
5097 #ifdef FEAT_SPELL
5098 (char_u **)options[opt_idx].var == &p_sps ? (char_u *)"file:" :
5099 #endif
5100 NULL);
5101 if (STRCMP(NameBuff, val) == 0) /* they are the same */
5102 return NULL;
5104 return NameBuff;
5108 * After setting various option values: recompute variables that depend on
5109 * option values.
5111 static void
5112 didset_options()
5114 /* initialize the table for 'iskeyword' et.al. */
5115 (void)init_chartab();
5117 #ifdef FEAT_MBYTE
5118 (void)opt_strings_flags(p_cmp, p_cmp_values, &cmp_flags, TRUE);
5119 #endif
5120 (void)opt_strings_flags(p_bkc, p_bkc_values, &bkc_flags, TRUE);
5121 #ifdef FEAT_SESSION
5122 (void)opt_strings_flags(p_ssop, p_ssop_values, &ssop_flags, TRUE);
5123 (void)opt_strings_flags(p_vop, p_ssop_values, &vop_flags, TRUE);
5124 #endif
5125 #ifdef FEAT_FOLDING
5126 (void)opt_strings_flags(p_fdo, p_fdo_values, &fdo_flags, TRUE);
5127 #endif
5128 #ifdef FEAT_FULLSCREEN
5129 (void)check_fuoptions(p_fuoptions, &fuoptions_flags,
5130 &fuoptions_bgcolor);
5131 #endif
5132 (void)opt_strings_flags(p_dy, p_dy_values, &dy_flags, TRUE);
5133 #ifdef FEAT_VIRTUALEDIT
5134 (void)opt_strings_flags(p_ve, p_ve_values, &ve_flags, TRUE);
5135 #endif
5136 #if defined(FEAT_MOUSE) && (defined(UNIX) || defined(VMS))
5137 (void)opt_strings_flags(p_ttym, p_ttym_values, &ttym_flags, FALSE);
5138 #endif
5139 #ifdef FEAT_SPELL
5140 (void)spell_check_msm();
5141 (void)spell_check_sps();
5142 (void)compile_cap_prog(curbuf);
5143 #endif
5144 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
5145 (void)opt_strings_flags(p_toolbar, p_toolbar_values, &toolbar_flags, TRUE);
5146 #endif
5147 #if defined(FEAT_TOOLBAR) && ((defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)) \
5148 || defined(FEAT_GUI_MACVIM))
5149 (void)opt_strings_flags(p_tbis, p_tbis_values, &tbis_flags, FALSE);
5150 #endif
5151 #ifdef FEAT_CMDWIN
5152 /* set cedit_key */
5153 (void)check_cedit();
5154 #endif
5158 * Check for string options that are NULL (normally only termcap options).
5160 void
5161 check_options()
5163 int opt_idx;
5165 for (opt_idx = 0; options[opt_idx].fullname != NULL; opt_idx++)
5166 if ((options[opt_idx].flags & P_STRING) && options[opt_idx].var != NULL)
5167 check_string_option((char_u **)get_varp(&(options[opt_idx])));
5171 * Check string options in a buffer for NULL value.
5173 void
5174 check_buf_options(buf)
5175 buf_T *buf;
5177 #if defined(FEAT_QUICKFIX)
5178 check_string_option(&buf->b_p_bh);
5179 check_string_option(&buf->b_p_bt);
5180 #endif
5181 #ifdef FEAT_MBYTE
5182 check_string_option(&buf->b_p_fenc);
5183 #endif
5184 check_string_option(&buf->b_p_ff);
5185 #ifdef FEAT_FIND_ID
5186 check_string_option(&buf->b_p_def);
5187 check_string_option(&buf->b_p_inc);
5188 # ifdef FEAT_EVAL
5189 check_string_option(&buf->b_p_inex);
5190 # endif
5191 #endif
5192 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
5193 check_string_option(&buf->b_p_inde);
5194 check_string_option(&buf->b_p_indk);
5195 #endif
5196 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
5197 check_string_option(&buf->b_p_bexpr);
5198 #endif
5199 #if defined(FEAT_EVAL)
5200 check_string_option(&buf->b_p_fex);
5201 #endif
5202 #ifdef FEAT_CRYPT
5203 check_string_option(&buf->b_p_key);
5204 #endif
5205 check_string_option(&buf->b_p_kp);
5206 check_string_option(&buf->b_p_mps);
5207 check_string_option(&buf->b_p_fo);
5208 check_string_option(&buf->b_p_flp);
5209 check_string_option(&buf->b_p_isk);
5210 #ifdef FEAT_COMMENTS
5211 check_string_option(&buf->b_p_com);
5212 #endif
5213 #ifdef FEAT_FOLDING
5214 check_string_option(&buf->b_p_cms);
5215 #endif
5216 check_string_option(&buf->b_p_nf);
5217 #ifdef FEAT_TEXTOBJ
5218 check_string_option(&buf->b_p_qe);
5219 #endif
5220 #ifdef FEAT_SYN_HL
5221 check_string_option(&buf->b_p_syn);
5222 #endif
5223 #ifdef FEAT_SPELL
5224 check_string_option(&buf->b_p_spc);
5225 check_string_option(&buf->b_p_spf);
5226 check_string_option(&buf->b_p_spl);
5227 #endif
5228 #ifdef FEAT_SEARCHPATH
5229 check_string_option(&buf->b_p_sua);
5230 #endif
5231 #ifdef FEAT_CINDENT
5232 check_string_option(&buf->b_p_cink);
5233 check_string_option(&buf->b_p_cino);
5234 #endif
5235 #ifdef FEAT_AUTOCMD
5236 check_string_option(&buf->b_p_ft);
5237 #endif
5238 #ifdef FEAT_OSFILETYPE
5239 check_string_option(&buf->b_p_oft);
5240 #endif
5241 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
5242 check_string_option(&buf->b_p_cinw);
5243 #endif
5244 #ifdef FEAT_INS_EXPAND
5245 check_string_option(&buf->b_p_cpt);
5246 #endif
5247 #ifdef FEAT_COMPL_FUNC
5248 check_string_option(&buf->b_p_cfu);
5249 check_string_option(&buf->b_p_ofu);
5250 #endif
5251 #ifdef FEAT_KEYMAP
5252 check_string_option(&buf->b_p_keymap);
5253 #endif
5254 #ifdef FEAT_QUICKFIX
5255 check_string_option(&buf->b_p_gp);
5256 check_string_option(&buf->b_p_mp);
5257 check_string_option(&buf->b_p_efm);
5258 #endif
5259 check_string_option(&buf->b_p_ep);
5260 check_string_option(&buf->b_p_path);
5261 check_string_option(&buf->b_p_tags);
5262 #ifdef FEAT_INS_EXPAND
5263 check_string_option(&buf->b_p_dict);
5264 check_string_option(&buf->b_p_tsr);
5265 #endif
5269 * Free the string allocated for an option.
5270 * Checks for the string being empty_option. This may happen if we're out of
5271 * memory, vim_strsave() returned NULL, which was replaced by empty_option by
5272 * check_options().
5273 * Does NOT check for P_ALLOCED flag!
5275 void
5276 free_string_option(p)
5277 char_u *p;
5279 if (p != empty_option)
5280 vim_free(p);
5283 void
5284 clear_string_option(pp)
5285 char_u **pp;
5287 if (*pp != empty_option)
5288 vim_free(*pp);
5289 *pp = empty_option;
5292 static void
5293 check_string_option(pp)
5294 char_u **pp;
5296 if (*pp == NULL)
5297 *pp = empty_option;
5301 * Mark a terminal option as allocated, found by a pointer into term_strings[].
5303 void
5304 set_term_option_alloced(p)
5305 char_u **p;
5307 int opt_idx;
5309 for (opt_idx = 1; options[opt_idx].fullname != NULL; opt_idx++)
5310 if (options[opt_idx].var == (char_u *)p)
5312 options[opt_idx].flags |= P_ALLOCED;
5313 return;
5315 return; /* cannot happen: didn't find it! */
5318 #if defined(FEAT_EVAL) || defined(PROTO)
5320 * Return TRUE when option "opt" was set from a modeline or in secure mode.
5321 * Return FALSE when it wasn't.
5322 * Return -1 for an unknown option.
5325 was_set_insecurely(opt, opt_flags)
5326 char_u *opt;
5327 int opt_flags;
5329 int idx = findoption(opt);
5330 long_u *flagp;
5332 if (idx >= 0)
5334 flagp = insecure_flag(idx, opt_flags);
5335 return (*flagp & P_INSECURE) != 0;
5337 EMSG2(_(e_intern2), "was_set_insecurely()");
5338 return -1;
5342 * Get a pointer to the flags used for the P_INSECURE flag of option
5343 * "opt_idx". For some local options a local flags field is used.
5345 static long_u *
5346 insecure_flag(opt_idx, opt_flags)
5347 int opt_idx;
5348 int opt_flags;
5350 if (opt_flags & OPT_LOCAL)
5351 switch ((int)options[opt_idx].indir)
5353 #ifdef FEAT_STL_OPT
5354 case PV_STL: return &curwin->w_p_stl_flags;
5355 #endif
5356 #ifdef FEAT_EVAL
5357 # ifdef FEAT_FOLDING
5358 case PV_FDE: return &curwin->w_p_fde_flags;
5359 case PV_FDT: return &curwin->w_p_fdt_flags;
5360 # endif
5361 # ifdef FEAT_BEVAL
5362 case PV_BEXPR: return &curbuf->b_p_bexpr_flags;
5363 # endif
5364 # if defined(FEAT_CINDENT)
5365 case PV_INDE: return &curbuf->b_p_inde_flags;
5366 # endif
5367 case PV_FEX: return &curbuf->b_p_fex_flags;
5368 # ifdef FEAT_FIND_ID
5369 case PV_INEX: return &curbuf->b_p_inex_flags;
5370 # endif
5371 #endif
5374 /* Nothing special, return global flags field. */
5375 return &options[opt_idx].flags;
5377 #endif
5379 #ifdef FEAT_TITLE
5380 static void redraw_titles __ARGS((void));
5383 * Redraw the window title and/or tab page text later.
5385 static void redraw_titles()
5387 need_maketitle = TRUE;
5388 # ifdef FEAT_WINDOWS
5389 redraw_tabline = TRUE;
5390 # endif
5392 #endif
5395 * Set a string option to a new value (without checking the effect).
5396 * The string is copied into allocated memory.
5397 * if ("opt_idx" == -1) "name" is used, otherwise "opt_idx" is used.
5398 * When "set_sid" is zero set the scriptID to current_SID. When "set_sid" is
5399 * SID_NONE don't set the scriptID. Otherwise set the scriptID to "set_sid".
5401 void
5402 set_string_option_direct(name, opt_idx, val, opt_flags, set_sid)
5403 char_u *name;
5404 int opt_idx;
5405 char_u *val;
5406 int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */
5407 int set_sid UNUSED;
5409 char_u *s;
5410 char_u **varp;
5411 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
5412 int idx = opt_idx;
5414 if (idx == -1) /* use name */
5416 idx = findoption(name);
5417 if (idx < 0) /* not found (should not happen) */
5419 EMSG2(_(e_intern2), "set_string_option_direct()");
5420 return;
5424 if (options[idx].var == NULL) /* can't set hidden option */
5425 return;
5427 s = vim_strsave(val);
5428 if (s != NULL)
5430 varp = (char_u **)get_varp_scope(&(options[idx]),
5431 both ? OPT_LOCAL : opt_flags);
5432 if ((opt_flags & OPT_FREE) && (options[idx].flags & P_ALLOCED))
5433 free_string_option(*varp);
5434 *varp = s;
5436 /* For buffer/window local option may also set the global value. */
5437 if (both)
5438 set_string_option_global(idx, varp);
5440 options[idx].flags |= P_ALLOCED;
5442 /* When setting both values of a global option with a local value,
5443 * make the local value empty, so that the global value is used. */
5444 if (((int)options[idx].indir & PV_BOTH) && both)
5446 free_string_option(*varp);
5447 *varp = empty_option;
5449 # ifdef FEAT_EVAL
5450 if (set_sid != SID_NONE)
5451 set_option_scriptID_idx(idx, opt_flags,
5452 set_sid == 0 ? current_SID : set_sid);
5453 # endif
5458 * Set global value for string option when it's a local option.
5460 static void
5461 set_string_option_global(opt_idx, varp)
5462 int opt_idx; /* option index */
5463 char_u **varp; /* pointer to option variable */
5465 char_u **p, *s;
5467 /* the global value is always allocated */
5468 if (options[opt_idx].var == VAR_WIN)
5469 p = (char_u **)GLOBAL_WO(varp);
5470 else
5471 p = (char_u **)options[opt_idx].var;
5472 if (options[opt_idx].indir != PV_NONE
5473 && p != varp
5474 && (s = vim_strsave(*varp)) != NULL)
5476 free_string_option(*p);
5477 *p = s;
5482 * Set a string option to a new value, and handle the effects.
5484 static void
5485 set_string_option(opt_idx, value, opt_flags)
5486 int opt_idx;
5487 char_u *value;
5488 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
5490 char_u *s;
5491 char_u **varp;
5492 char_u *oldval;
5494 if (options[opt_idx].var == NULL) /* don't set hidden option */
5495 return;
5497 s = vim_strsave(value);
5498 if (s != NULL)
5500 varp = (char_u **)get_varp_scope(&(options[opt_idx]),
5501 (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
5502 ? (((int)options[opt_idx].indir & PV_BOTH)
5503 ? OPT_GLOBAL : OPT_LOCAL)
5504 : opt_flags);
5505 oldval = *varp;
5506 *varp = s;
5507 if (did_set_string_option(opt_idx, varp, TRUE, oldval, NULL,
5508 opt_flags) == NULL)
5509 did_set_option(opt_idx, opt_flags, TRUE);
5514 * Handle string options that need some action to perform when changed.
5515 * Returns NULL for success, or an error message for an error.
5517 static char_u *
5518 did_set_string_option(opt_idx, varp, new_value_alloced, oldval, errbuf,
5519 opt_flags)
5520 int opt_idx; /* index in options[] table */
5521 char_u **varp; /* pointer to the option variable */
5522 int new_value_alloced; /* new value was allocated */
5523 char_u *oldval; /* previous value of the option */
5524 char_u *errbuf; /* buffer for errors, or NULL */
5525 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
5527 char_u *errmsg = NULL;
5528 char_u *s, *p;
5529 int did_chartab = FALSE;
5530 char_u **gvarp;
5531 long_u free_oldval = (options[opt_idx].flags & P_ALLOCED);
5532 #ifdef FEAT_GUI
5533 /* set when changing an option that only requires a redraw in the GUI */
5534 int redraw_gui_only = FALSE;
5535 #endif
5537 /* Get the global option to compare with, otherwise we would have to check
5538 * two values for all local options. */
5539 gvarp = (char_u **)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL);
5541 /* Disallow changing some options from secure mode */
5542 if ((secure
5543 #ifdef HAVE_SANDBOX
5544 || sandbox != 0
5545 #endif
5546 ) && (options[opt_idx].flags & P_SECURE))
5548 errmsg = e_secure;
5551 /* Check for a "normal" file name in some options. Disallow a path
5552 * separator (slash and/or backslash), wildcards and characters that are
5553 * often illegal in a file name. */
5554 else if ((options[opt_idx].flags & P_NFNAME)
5555 && vim_strpbrk(*varp, (char_u *)"/\\*?[|<>") != NULL)
5557 errmsg = e_invarg;
5560 /* 'term' */
5561 else if (varp == &T_NAME)
5563 if (T_NAME[0] == NUL)
5564 errmsg = (char_u *)N_("E529: Cannot set 'term' to empty string");
5565 #ifdef FEAT_GUI
5566 if (gui.in_use)
5567 errmsg = (char_u *)N_("E530: Cannot change term in GUI");
5568 else if (term_is_gui(T_NAME))
5569 errmsg = (char_u *)N_("E531: Use \":gui\" to start the GUI");
5570 #endif
5571 else if (set_termname(T_NAME) == FAIL)
5572 errmsg = (char_u *)N_("E522: Not found in termcap");
5573 else
5574 /* Screen colors may have changed. */
5575 redraw_later_clear();
5578 /* 'backupcopy' */
5579 else if (varp == &p_bkc)
5581 if (opt_strings_flags(p_bkc, p_bkc_values, &bkc_flags, TRUE) != OK)
5582 errmsg = e_invarg;
5583 if (((bkc_flags & BKC_AUTO) != 0)
5584 + ((bkc_flags & BKC_YES) != 0)
5585 + ((bkc_flags & BKC_NO) != 0) != 1)
5587 /* Must have exactly one of "auto", "yes" and "no". */
5588 (void)opt_strings_flags(oldval, p_bkc_values, &bkc_flags, TRUE);
5589 errmsg = e_invarg;
5593 /* 'backupext' and 'patchmode' */
5594 else if (varp == &p_bex || varp == &p_pm)
5596 if (STRCMP(*p_bex == '.' ? p_bex + 1 : p_bex,
5597 *p_pm == '.' ? p_pm + 1 : p_pm) == 0)
5598 errmsg = (char_u *)N_("E589: 'backupext' and 'patchmode' are equal");
5602 * 'isident', 'iskeyword', 'isprint or 'isfname' option: refill chartab[]
5603 * If the new option is invalid, use old value. 'lisp' option: refill
5604 * chartab[] for '-' char
5606 else if ( varp == &p_isi
5607 || varp == &(curbuf->b_p_isk)
5608 || varp == &p_isp
5609 || varp == &p_isf)
5611 if (init_chartab() == FAIL)
5613 did_chartab = TRUE; /* need to restore it below */
5614 errmsg = e_invarg; /* error in value */
5618 /* 'helpfile' */
5619 else if (varp == &p_hf)
5621 /* May compute new values for $VIM and $VIMRUNTIME */
5622 if (didset_vim)
5624 vim_setenv((char_u *)"VIM", (char_u *)"");
5625 didset_vim = FALSE;
5627 if (didset_vimruntime)
5629 vim_setenv((char_u *)"VIMRUNTIME", (char_u *)"");
5630 didset_vimruntime = FALSE;
5634 #ifdef FEAT_MULTI_LANG
5635 /* 'helplang' */
5636 else if (varp == &p_hlg)
5638 /* Check for "", "ab", "ab,cd", etc. */
5639 for (s = p_hlg; *s != NUL; s += 3)
5641 if (s[1] == NUL || ((s[2] != ',' || s[3] == NUL) && s[2] != NUL))
5643 errmsg = e_invarg;
5644 break;
5646 if (s[2] == NUL)
5647 break;
5650 #endif
5652 /* 'highlight' */
5653 else if (varp == &p_hl)
5655 if (highlight_changed() == FAIL)
5656 errmsg = e_invarg; /* invalid flags */
5659 /* 'nrformats' */
5660 else if (gvarp == &p_nf)
5662 if (check_opt_strings(*varp, p_nf_values, TRUE) != OK)
5663 errmsg = e_invarg;
5666 #ifdef FEAT_SESSION
5667 /* 'sessionoptions' */
5668 else if (varp == &p_ssop)
5670 if (opt_strings_flags(p_ssop, p_ssop_values, &ssop_flags, TRUE) != OK)
5671 errmsg = e_invarg;
5672 if ((ssop_flags & SSOP_CURDIR) && (ssop_flags & SSOP_SESDIR))
5674 /* Don't allow both "sesdir" and "curdir". */
5675 (void)opt_strings_flags(oldval, p_ssop_values, &ssop_flags, TRUE);
5676 errmsg = e_invarg;
5679 /* 'viewoptions' */
5680 else if (varp == &p_vop)
5682 if (opt_strings_flags(p_vop, p_ssop_values, &vop_flags, TRUE) != OK)
5683 errmsg = e_invarg;
5685 #endif
5687 /* 'scrollopt' */
5688 #ifdef FEAT_SCROLLBIND
5689 else if (varp == &p_sbo)
5691 if (check_opt_strings(p_sbo, p_scbopt_values, TRUE) != OK)
5692 errmsg = e_invarg;
5694 #endif
5696 /* 'ambiwidth' */
5697 #ifdef FEAT_MBYTE
5698 else if (varp == &p_ambw)
5700 if (check_opt_strings(p_ambw, p_ambw_values, FALSE) != OK)
5701 errmsg = e_invarg;
5703 #endif
5705 /* 'background' */
5706 else if (varp == &p_bg)
5708 if (check_opt_strings(p_bg, p_bg_values, FALSE) == OK)
5710 #ifdef FEAT_EVAL
5711 int dark = (*p_bg == 'd');
5712 #endif
5714 init_highlight(FALSE, FALSE);
5716 #ifdef FEAT_EVAL
5717 if (dark != (*p_bg == 'd')
5718 && get_var_value((char_u *)"g:colors_name") != NULL)
5720 /* The color scheme must have set 'background' back to another
5721 * value, that's not what we want here. Disable the color
5722 * scheme and set the colors again. */
5723 do_unlet((char_u *)"g:colors_name", TRUE);
5724 free_string_option(p_bg);
5725 p_bg = vim_strsave((char_u *)(dark ? "dark" : "light"));
5726 check_string_option(&p_bg);
5727 init_highlight(FALSE, FALSE);
5729 #endif
5731 else
5732 errmsg = e_invarg;
5735 /* 'wildmode' */
5736 else if (varp == &p_wim)
5738 if (check_opt_wim() == FAIL)
5739 errmsg = e_invarg;
5742 #ifdef FEAT_CMDL_COMPL
5743 /* 'wildoptions' */
5744 else if (varp == &p_wop)
5746 if (check_opt_strings(p_wop, p_wop_values, TRUE) != OK)
5747 errmsg = e_invarg;
5749 #endif
5751 #ifdef FEAT_WAK
5752 /* 'winaltkeys' */
5753 else if (varp == &p_wak)
5755 if (*p_wak == NUL
5756 || check_opt_strings(p_wak, p_wak_values, FALSE) != OK)
5757 errmsg = e_invarg;
5758 # ifdef FEAT_MENU
5759 # ifdef FEAT_GUI_MOTIF
5760 else if (gui.in_use)
5761 gui_motif_set_mnemonics(p_wak[0] == 'y' || p_wak[0] == 'm');
5762 # else
5763 # ifdef FEAT_GUI_GTK
5764 else if (gui.in_use)
5765 gui_gtk_set_mnemonics(p_wak[0] == 'y' || p_wak[0] == 'm');
5766 # endif
5767 # endif
5768 # endif
5770 #endif
5772 #ifdef FEAT_AUTOCMD
5773 /* 'eventignore' */
5774 else if (varp == &p_ei)
5776 if (check_ei() == FAIL)
5777 errmsg = e_invarg;
5779 #endif
5781 #ifdef FEAT_MBYTE
5782 /* 'encoding' and 'fileencoding' */
5783 else if (varp == &p_enc || gvarp == &p_fenc || varp == &p_tenc)
5785 if (gvarp == &p_fenc)
5787 if (!curbuf->b_p_ma && opt_flags != OPT_GLOBAL)
5788 errmsg = e_modifiable;
5789 else if (vim_strchr(*varp, ',') != NULL)
5790 /* No comma allowed in 'fileencoding'; catches confusing it
5791 * with 'fileencodings'. */
5792 errmsg = e_invarg;
5793 else
5795 # ifdef FEAT_TITLE
5796 /* May show a "+" in the title now. */
5797 redraw_titles();
5798 # endif
5799 /* Add 'fileencoding' to the swap file. */
5800 ml_setflags(curbuf);
5803 if (errmsg == NULL)
5805 /* canonize the value, so that STRCMP() can be used on it */
5806 p = enc_canonize(*varp);
5807 if (p != NULL)
5809 vim_free(*varp);
5810 *varp = p;
5812 if (varp == &p_enc)
5814 errmsg = mb_init();
5815 # ifdef FEAT_TITLE
5816 redraw_titles();
5817 # endif
5821 # if (defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)) || defined(FEAT_GUI_MACVIM)
5822 if (errmsg == NULL && varp == &p_tenc && gui.in_use)
5824 /* MacVim and GTK+ 2 GUIs force 'tenc' to UTF-8. */
5825 if (STRCMP(p_tenc, "utf-8") != 0)
5826 # if defined(FEAT_GUI_MACVIM)
5827 errmsg = (char_u *)N_("E617: Cannot be changed in MacVim");
5828 # else
5829 errmsg = (char_u *)N_("E617: Cannot be changed in the GTK+ 2 GUI");
5830 # endif
5832 # endif
5834 if (errmsg == NULL)
5836 # ifdef FEAT_KEYMAP
5837 /* When 'keymap' is used and 'encoding' changes, reload the keymap
5838 * (with another encoding). */
5839 if (varp == &p_enc && *curbuf->b_p_keymap != NUL)
5840 (void)keymap_init();
5841 # endif
5843 /* When 'termencoding' is not empty and 'encoding' changes or when
5844 * 'termencoding' changes, need to setup for keyboard input and
5845 * display output conversion. */
5846 if (((varp == &p_enc && *p_tenc != NUL) || varp == &p_tenc))
5848 convert_setup(&input_conv, p_tenc, p_enc);
5849 convert_setup(&output_conv, p_enc, p_tenc);
5852 # if defined(WIN3264) && defined(FEAT_MBYTE)
5853 /* $HOME may have characters in active code page. */
5854 if (varp == &p_enc)
5855 init_homedir();
5856 # endif
5859 #endif
5861 #if defined(FEAT_POSTSCRIPT)
5862 else if (varp == &p_penc)
5864 /* Canonize printencoding if VIM standard one */
5865 p = enc_canonize(p_penc);
5866 if (p != NULL)
5868 vim_free(p_penc);
5869 p_penc = p;
5871 else
5873 /* Ensure lower case and '-' for '_' */
5874 for (s = p_penc; *s != NUL; s++)
5876 if (*s == '_')
5877 *s = '-';
5878 else
5879 *s = TOLOWER_ASC(*s);
5883 #endif
5885 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
5886 else if (varp == &p_imak)
5888 if (gui.in_use && !im_xim_isvalid_imactivate())
5889 errmsg = e_invarg;
5891 #endif
5893 #ifdef FEAT_KEYMAP
5894 else if (varp == &curbuf->b_p_keymap)
5896 /* load or unload key mapping tables */
5897 errmsg = keymap_init();
5899 if (errmsg == NULL)
5901 if (*curbuf->b_p_keymap != NUL)
5903 /* Installed a new keymap, switch on using it. */
5904 curbuf->b_p_iminsert = B_IMODE_LMAP;
5905 if (curbuf->b_p_imsearch != B_IMODE_USE_INSERT)
5906 curbuf->b_p_imsearch = B_IMODE_LMAP;
5908 else
5910 /* Cleared the keymap, may reset 'iminsert' and 'imsearch'. */
5911 if (curbuf->b_p_iminsert == B_IMODE_LMAP)
5912 curbuf->b_p_iminsert = B_IMODE_NONE;
5913 if (curbuf->b_p_imsearch == B_IMODE_LMAP)
5914 curbuf->b_p_imsearch = B_IMODE_USE_INSERT;
5916 if ((opt_flags & OPT_LOCAL) == 0)
5918 set_iminsert_global();
5919 set_imsearch_global();
5921 # ifdef FEAT_WINDOWS
5922 status_redraw_curbuf();
5923 # endif
5926 #endif
5928 /* 'fileformat' */
5929 else if (gvarp == &p_ff)
5931 if (!curbuf->b_p_ma && !(opt_flags & OPT_GLOBAL))
5932 errmsg = e_modifiable;
5933 else if (check_opt_strings(*varp, p_ff_values, FALSE) != OK)
5934 errmsg = e_invarg;
5935 else
5937 /* may also change 'textmode' */
5938 if (get_fileformat(curbuf) == EOL_DOS)
5939 curbuf->b_p_tx = TRUE;
5940 else
5941 curbuf->b_p_tx = FALSE;
5942 #ifdef FEAT_TITLE
5943 redraw_titles();
5944 #endif
5945 /* update flag in swap file */
5946 ml_setflags(curbuf);
5947 /* Redraw needed when switching to/from "mac": a CR in the text
5948 * will be displayed differently. */
5949 if (get_fileformat(curbuf) == EOL_MAC || *oldval == 'm')
5950 redraw_curbuf_later(NOT_VALID);
5954 /* 'fileformats' */
5955 else if (varp == &p_ffs)
5957 if (check_opt_strings(p_ffs, p_ff_values, TRUE) != OK)
5958 errmsg = e_invarg;
5959 else
5961 /* also change 'textauto' */
5962 if (*p_ffs == NUL)
5963 p_ta = FALSE;
5964 else
5965 p_ta = TRUE;
5969 #if defined(FEAT_CRYPT) && defined(FEAT_CMDHIST)
5970 /* 'cryptkey' */
5971 else if (gvarp == &p_key)
5973 /* Make sure the ":set" command doesn't show the new value in the
5974 * history. */
5975 remove_key_from_history();
5977 #endif
5979 /* 'matchpairs' */
5980 else if (gvarp == &p_mps)
5982 /* Check for "x:y,x:y" */
5983 for (p = *varp; *p != NUL; p += 4)
5985 if (p[1] != ':' || p[2] == NUL || (p[3] != NUL && p[3] != ','))
5987 errmsg = e_invarg;
5988 break;
5990 if (p[3] == NUL)
5991 break;
5995 #ifdef FEAT_COMMENTS
5996 /* 'comments' */
5997 else if (gvarp == &p_com)
5999 for (s = *varp; *s; )
6001 while (*s && *s != ':')
6003 if (vim_strchr((char_u *)COM_ALL, *s) == NULL
6004 && !VIM_ISDIGIT(*s) && *s != '-')
6006 errmsg = illegal_char(errbuf, *s);
6007 break;
6009 ++s;
6011 if (*s++ == NUL)
6012 errmsg = (char_u *)N_("E524: Missing colon");
6013 else if (*s == ',' || *s == NUL)
6014 errmsg = (char_u *)N_("E525: Zero length string");
6015 if (errmsg != NULL)
6016 break;
6017 while (*s && *s != ',')
6019 if (*s == '\\' && s[1] != NUL)
6020 ++s;
6021 ++s;
6023 s = skip_to_option_part(s);
6026 #endif
6028 /* 'listchars' */
6029 else if (varp == &p_lcs)
6031 errmsg = set_chars_option(varp);
6034 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6035 /* 'fillchars' */
6036 else if (varp == &p_fcs)
6038 errmsg = set_chars_option(varp);
6040 #endif
6042 #ifdef FEAT_CMDWIN
6043 /* 'cedit' */
6044 else if (varp == &p_cedit)
6046 errmsg = check_cedit();
6048 #endif
6050 /* 'verbosefile' */
6051 else if (varp == &p_vfile)
6053 verbose_stop();
6054 if (*p_vfile != NUL && verbose_open() == FAIL)
6055 errmsg = e_invarg;
6058 #ifdef FEAT_VIMINFO
6059 /* 'viminfo' */
6060 else if (varp == &p_viminfo)
6062 for (s = p_viminfo; *s;)
6064 /* Check it's a valid character */
6065 if (vim_strchr((char_u *)"!\"%'/:<@cfhnrs", *s) == NULL)
6067 errmsg = illegal_char(errbuf, *s);
6068 break;
6070 if (*s == 'n') /* name is always last one */
6072 break;
6074 else if (*s == 'r') /* skip until next ',' */
6076 while (*++s && *s != ',')
6079 else if (*s == '%')
6081 /* optional number */
6082 while (vim_isdigit(*++s))
6085 else if (*s == '!' || *s == 'h' || *s == 'c')
6086 ++s; /* no extra chars */
6087 else /* must have a number */
6089 while (vim_isdigit(*++s))
6092 if (!VIM_ISDIGIT(*(s - 1)))
6094 if (errbuf != NULL)
6096 sprintf((char *)errbuf,
6097 _("E526: Missing number after <%s>"),
6098 transchar_byte(*(s - 1)));
6099 errmsg = errbuf;
6101 else
6102 errmsg = (char_u *)"";
6103 break;
6106 if (*s == ',')
6107 ++s;
6108 else if (*s)
6110 if (errbuf != NULL)
6111 errmsg = (char_u *)N_("E527: Missing comma");
6112 else
6113 errmsg = (char_u *)"";
6114 break;
6117 if (*p_viminfo && errmsg == NULL && get_viminfo_parameter('\'') < 0)
6118 errmsg = (char_u *)N_("E528: Must specify a ' value");
6120 #endif /* FEAT_VIMINFO */
6122 /* terminal options */
6123 else if (istermoption(&options[opt_idx]) && full_screen)
6125 /* ":set t_Co=0" and ":set t_Co=1" do ":set t_Co=" */
6126 if (varp == &T_CCO)
6128 int colors = atoi((char *)T_CCO);
6130 /* Only reinitialize colors if t_Co value has really changed to
6131 * avoid expensive reload of colorscheme if t_Co is set to the
6132 * same value multiple times. */
6133 if (colors != t_colors)
6135 t_colors = colors;
6136 if (t_colors <= 1)
6138 if (new_value_alloced)
6139 vim_free(T_CCO);
6140 T_CCO = empty_option;
6142 /* We now have a different color setup, initialize it again. */
6143 init_highlight(TRUE, FALSE);
6146 ttest(FALSE);
6147 if (varp == &T_ME)
6149 out_str(T_ME);
6150 redraw_later(CLEAR);
6151 #if defined(MSDOS) || (defined(WIN3264) && !defined(FEAT_GUI_W32))
6152 /* Since t_me has been set, this probably means that the user
6153 * wants to use this as default colors. Need to reset default
6154 * background/foreground colors. */
6155 mch_set_normal_colors();
6156 #endif
6160 #ifdef FEAT_LINEBREAK
6161 /* 'showbreak' */
6162 else if (varp == &p_sbr)
6164 for (s = p_sbr; *s; )
6166 if (ptr2cells(s) != 1)
6167 errmsg = (char_u *)N_("E595: contains unprintable or wide character");
6168 mb_ptr_adv(s);
6171 #endif
6173 #ifdef FEAT_GUI
6174 /* 'guifont' */
6175 else if (varp == &p_guifont)
6177 if (gui.in_use)
6179 p = p_guifont;
6180 # if defined(FEAT_GUI_GTK)
6182 * Put up a font dialog and let the user select a new value.
6183 * If this is cancelled go back to the old value but don't
6184 * give an error message.
6186 if (STRCMP(p, "*") == 0)
6188 p = gui_mch_font_dialog(oldval);
6190 if (new_value_alloced)
6191 free_string_option(p_guifont);
6193 p_guifont = (p != NULL) ? p : vim_strsave(oldval);
6194 new_value_alloced = TRUE;
6196 # endif
6197 if (p != NULL && gui_init_font(p_guifont, FALSE) != OK)
6199 # if defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_PHOTON) \
6200 || defined(FEAT_GUI_MACVIM)
6201 if (STRCMP(p_guifont, "*") == 0)
6203 /* Dialog was cancelled: Keep the old value without giving
6204 * an error message. */
6205 if (new_value_alloced)
6206 free_string_option(p_guifont);
6207 p_guifont = vim_strsave(oldval);
6208 new_value_alloced = TRUE;
6210 else
6211 # endif
6212 errmsg = (char_u *)N_("E596: Invalid font(s)");
6215 redraw_gui_only = TRUE;
6217 # ifdef FEAT_XFONTSET
6218 else if (varp == &p_guifontset)
6220 if (STRCMP(p_guifontset, "*") == 0)
6221 errmsg = (char_u *)N_("E597: can't select fontset");
6222 else if (gui.in_use && gui_init_font(p_guifontset, TRUE) != OK)
6223 errmsg = (char_u *)N_("E598: Invalid fontset");
6224 redraw_gui_only = TRUE;
6226 # endif
6227 # ifdef FEAT_MBYTE
6228 else if (varp == &p_guifontwide)
6230 if (STRCMP(p_guifontwide, "*") == 0)
6231 errmsg = (char_u *)N_("E533: can't select wide font");
6232 else if (gui_get_wide_font() == FAIL)
6233 errmsg = (char_u *)N_("E534: Invalid wide font");
6234 redraw_gui_only = TRUE;
6236 # endif
6237 #endif
6239 #ifdef CURSOR_SHAPE
6240 /* 'guicursor' */
6241 else if (varp == &p_guicursor)
6242 errmsg = parse_shape_opt(SHAPE_CURSOR);
6243 #endif
6245 #ifdef FEAT_MOUSESHAPE
6246 /* 'mouseshape' */
6247 else if (varp == &p_mouseshape)
6249 errmsg = parse_shape_opt(SHAPE_MOUSE);
6250 update_mouseshape(-1);
6252 #endif
6254 #ifdef FEAT_PRINTER
6255 else if (varp == &p_popt)
6256 errmsg = parse_printoptions();
6257 # if defined(FEAT_MBYTE) && defined(FEAT_POSTSCRIPT)
6258 else if (varp == &p_pmfn)
6259 errmsg = parse_printmbfont();
6260 # endif
6261 #endif
6263 #ifdef FEAT_LANGMAP
6264 /* 'langmap' */
6265 else if (varp == &p_langmap)
6266 langmap_set();
6267 #endif
6269 #ifdef FEAT_LINEBREAK
6270 /* 'breakat' */
6271 else if (varp == &p_breakat)
6272 fill_breakat_flags();
6273 #endif
6275 #ifdef FEAT_TITLE
6276 /* 'titlestring' and 'iconstring' */
6277 else if (varp == &p_titlestring || varp == &p_iconstring)
6279 # ifdef FEAT_STL_OPT
6280 int flagval = (varp == &p_titlestring) ? STL_IN_TITLE : STL_IN_ICON;
6282 /* NULL => statusline syntax */
6283 if (vim_strchr(*varp, '%') && check_stl_option(*varp) == NULL)
6284 stl_syntax |= flagval;
6285 else
6286 stl_syntax &= ~flagval;
6287 # endif
6288 did_set_title(varp == &p_iconstring);
6291 #endif
6293 #ifdef FEAT_GUI
6294 /* 'guioptions' */
6295 else if (varp == &p_go)
6297 gui_init_which_components(oldval);
6298 redraw_gui_only = TRUE;
6300 #endif
6302 #if defined(FEAT_GUI_TABLINE)
6303 /* 'guitablabel' */
6304 else if (varp == &p_gtl)
6306 redraw_tabline = TRUE;
6307 redraw_gui_only = TRUE;
6309 /* 'guitabtooltip' */
6310 else if (varp == &p_gtt)
6312 redraw_gui_only = TRUE;
6314 #endif
6316 #if defined(FEAT_MOUSE_TTY) && (defined(UNIX) || defined(VMS))
6317 /* 'ttymouse' */
6318 else if (varp == &p_ttym)
6320 /* Switch the mouse off before changing the escape sequences used for
6321 * that. */
6322 mch_setmouse(FALSE);
6323 if (opt_strings_flags(p_ttym, p_ttym_values, &ttym_flags, FALSE) != OK)
6324 errmsg = e_invarg;
6325 else
6326 check_mouse_termcode();
6327 if (termcap_active)
6328 setmouse(); /* may switch it on again */
6330 #endif
6332 #ifdef FEAT_VISUAL
6333 /* 'selection' */
6334 else if (varp == &p_sel)
6336 if (*p_sel == NUL
6337 || check_opt_strings(p_sel, p_sel_values, FALSE) != OK)
6338 errmsg = e_invarg;
6341 /* 'selectmode' */
6342 else if (varp == &p_slm)
6344 if (check_opt_strings(p_slm, p_slm_values, TRUE) != OK)
6345 errmsg = e_invarg;
6347 #endif
6349 #ifdef FEAT_BROWSE
6350 /* 'browsedir' */
6351 else if (varp == &p_bsdir)
6353 if (check_opt_strings(p_bsdir, p_bsdir_values, FALSE) != OK
6354 && !mch_isdir(p_bsdir))
6355 errmsg = e_invarg;
6357 #endif
6359 #ifdef FEAT_VISUAL
6360 /* 'keymodel' */
6361 else if (varp == &p_km)
6363 if (check_opt_strings(p_km, p_km_values, TRUE) != OK)
6364 errmsg = e_invarg;
6365 else
6367 km_stopsel = (vim_strchr(p_km, 'o') != NULL);
6368 km_startsel = (vim_strchr(p_km, 'a') != NULL);
6371 #endif
6373 /* 'mousemodel' */
6374 else if (varp == &p_mousem)
6376 if (check_opt_strings(p_mousem, p_mousem_values, FALSE) != OK)
6377 errmsg = e_invarg;
6378 #if defined(FEAT_GUI_MOTIF) && defined(FEAT_MENU) && (XmVersion <= 1002)
6379 else if (*p_mousem != *oldval)
6380 /* Changed from "extend" to "popup" or "popup_setpos" or vv: need
6381 * to create or delete the popup menus. */
6382 gui_motif_update_mousemodel(root_menu);
6383 #endif
6386 /* 'switchbuf' */
6387 else if (varp == &p_swb)
6389 if (opt_strings_flags(p_swb, p_swb_values, &swb_flags, TRUE) != OK)
6390 errmsg = e_invarg;
6393 /* 'debug' */
6394 else if (varp == &p_debug)
6396 if (check_opt_strings(p_debug, p_debug_values, TRUE) != OK)
6397 errmsg = e_invarg;
6400 /* 'display' */
6401 else if (varp == &p_dy)
6403 if (opt_strings_flags(p_dy, p_dy_values, &dy_flags, TRUE) != OK)
6404 errmsg = e_invarg;
6405 else
6406 (void)init_chartab();
6410 #ifdef FEAT_VERTSPLIT
6411 /* 'eadirection' */
6412 else if (varp == &p_ead)
6414 if (check_opt_strings(p_ead, p_ead_values, FALSE) != OK)
6415 errmsg = e_invarg;
6417 #endif
6419 #ifdef FEAT_CLIPBOARD
6420 /* 'clipboard' */
6421 else if (varp == &p_cb)
6422 errmsg = check_clipboard_option();
6423 #endif
6425 #ifdef FEAT_SPELL
6426 /* When 'spelllang' or 'spellfile' is set and there is a window for this
6427 * buffer in which 'spell' is set load the wordlists. */
6428 else if (varp == &(curbuf->b_p_spl) || varp == &(curbuf->b_p_spf))
6430 win_T *wp;
6431 int l;
6433 if (varp == &(curbuf->b_p_spf))
6435 l = (int)STRLEN(curbuf->b_p_spf);
6436 if (l > 0 && (l < 4 || STRCMP(curbuf->b_p_spf + l - 4,
6437 ".add") != 0))
6438 errmsg = e_invarg;
6441 if (errmsg == NULL)
6443 FOR_ALL_WINDOWS(wp)
6444 if (wp->w_buffer == curbuf && wp->w_p_spell)
6446 errmsg = did_set_spelllang(curbuf);
6447 # ifdef FEAT_WINDOWS
6448 break;
6449 # endif
6453 /* When 'spellcapcheck' is set compile the regexp program. */
6454 else if (varp == &(curbuf->b_p_spc))
6456 errmsg = compile_cap_prog(curbuf);
6458 /* 'spellsuggest' */
6459 else if (varp == &p_sps)
6461 if (spell_check_sps() != OK)
6462 errmsg = e_invarg;
6464 /* 'mkspellmem' */
6465 else if (varp == &p_msm)
6467 if (spell_check_msm() != OK)
6468 errmsg = e_invarg;
6470 #endif
6472 #ifdef FEAT_QUICKFIX
6473 /* When 'bufhidden' is set, check for valid value. */
6474 else if (gvarp == &p_bh)
6476 if (check_opt_strings(curbuf->b_p_bh, p_bufhidden_values, FALSE) != OK)
6477 errmsg = e_invarg;
6480 /* When 'buftype' is set, check for valid value. */
6481 else if (gvarp == &p_bt)
6483 if (check_opt_strings(curbuf->b_p_bt, p_buftype_values, FALSE) != OK)
6484 errmsg = e_invarg;
6485 else
6487 # ifdef FEAT_WINDOWS
6488 if (curwin->w_status_height)
6490 curwin->w_redr_status = TRUE;
6491 redraw_later(VALID);
6493 # endif
6494 curbuf->b_help = (curbuf->b_p_bt[0] == 'h');
6495 # ifdef FEAT_TITLE
6496 redraw_titles();
6497 # endif
6500 #endif
6502 #ifdef FEAT_STL_OPT
6503 /* 'statusline' or 'rulerformat' */
6504 else if (gvarp == &p_stl || varp == &p_ruf)
6506 int wid;
6508 if (varp == &p_ruf) /* reset ru_wid first */
6509 ru_wid = 0;
6510 s = *varp;
6511 if (varp == &p_ruf && *s == '%')
6513 /* set ru_wid if 'ruf' starts with "%99(" */
6514 if (*++s == '-') /* ignore a '-' */
6515 s++;
6516 wid = getdigits(&s);
6517 if (wid && *s == '(' && (errmsg = check_stl_option(p_ruf)) == NULL)
6518 ru_wid = wid;
6519 else
6520 errmsg = check_stl_option(p_ruf);
6522 /* check 'statusline' only if it doesn't start with "%!" */
6523 else if (varp == &p_ruf || s[0] != '%' || s[1] != '!')
6524 errmsg = check_stl_option(s);
6525 if (varp == &p_ruf && errmsg == NULL)
6526 comp_col();
6528 #endif
6530 #ifdef FEAT_INS_EXPAND
6531 /* check if it is a valid value for 'complete' -- Acevedo */
6532 else if (gvarp == &p_cpt)
6534 for (s = *varp; *s;)
6536 while(*s == ',' || *s == ' ')
6537 s++;
6538 if (!*s)
6539 break;
6540 if (vim_strchr((char_u *)".wbuksid]tU", *s) == NULL)
6542 errmsg = illegal_char(errbuf, *s);
6543 break;
6545 if (*++s != NUL && *s != ',' && *s != ' ')
6547 if (s[-1] == 'k' || s[-1] == 's')
6549 /* skip optional filename after 'k' and 's' */
6550 while (*s && *s != ',' && *s != ' ')
6552 if (*s == '\\')
6553 ++s;
6554 ++s;
6557 else
6559 if (errbuf != NULL)
6561 sprintf((char *)errbuf,
6562 _("E535: Illegal character after <%c>"),
6563 *--s);
6564 errmsg = errbuf;
6566 else
6567 errmsg = (char_u *)"";
6568 break;
6574 /* 'completeopt' */
6575 else if (varp == &p_cot)
6577 if (check_opt_strings(p_cot, p_cot_values, TRUE) != OK)
6578 errmsg = e_invarg;
6580 #endif /* FEAT_INS_EXPAND */
6583 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
6584 else if (varp == &p_toolbar)
6586 if (opt_strings_flags(p_toolbar, p_toolbar_values,
6587 &toolbar_flags, TRUE) != OK)
6588 errmsg = e_invarg;
6589 else
6591 out_flush();
6592 gui_mch_show_toolbar((toolbar_flags &
6593 (TOOLBAR_TEXT | TOOLBAR_ICONS)) != 0);
6596 #endif
6598 #if defined(FEAT_TOOLBAR) && ((defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)) \
6599 || defined(FEAT_GUI_MACVIM))
6600 /* 'toolbariconsize': GTK+ 2 and MacVim only */
6601 else if (varp == &p_tbis)
6603 if (opt_strings_flags(p_tbis, p_tbis_values, &tbis_flags, FALSE) != OK)
6604 errmsg = e_invarg;
6605 else
6607 out_flush();
6608 gui_mch_show_toolbar((toolbar_flags &
6609 (TOOLBAR_TEXT | TOOLBAR_ICONS)) != 0);
6612 #endif
6614 /* 'pastetoggle': translate key codes like in a mapping */
6615 else if (varp == &p_pt)
6617 if (*p_pt)
6619 (void)replace_termcodes(p_pt, &p, TRUE, TRUE, FALSE);
6620 if (p != NULL)
6622 if (new_value_alloced)
6623 free_string_option(p_pt);
6624 p_pt = p;
6625 new_value_alloced = TRUE;
6630 /* 'backspace' */
6631 else if (varp == &p_bs)
6633 if (VIM_ISDIGIT(*p_bs))
6635 if (*p_bs >'2' || p_bs[1] != NUL)
6636 errmsg = e_invarg;
6638 else if (check_opt_strings(p_bs, p_bs_values, TRUE) != OK)
6639 errmsg = e_invarg;
6642 #ifdef FEAT_MBYTE
6643 /* 'casemap' */
6644 else if (varp == &p_cmp)
6646 if (opt_strings_flags(p_cmp, p_cmp_values, &cmp_flags, TRUE) != OK)
6647 errmsg = e_invarg;
6649 #endif
6651 #ifdef FEAT_DIFF
6652 /* 'diffopt' */
6653 else if (varp == &p_dip)
6655 if (diffopt_changed() == FAIL)
6656 errmsg = e_invarg;
6658 #endif
6660 #ifdef FEAT_FOLDING
6661 /* 'foldmethod' */
6662 else if (gvarp == &curwin->w_allbuf_opt.wo_fdm)
6664 if (check_opt_strings(*varp, p_fdm_values, FALSE) != OK
6665 || *curwin->w_p_fdm == NUL)
6666 errmsg = e_invarg;
6667 else
6669 foldUpdateAll(curwin);
6670 if (foldmethodIsDiff(curwin))
6671 newFoldLevel();
6674 # ifdef FEAT_EVAL
6675 /* 'foldexpr' */
6676 else if (varp == &curwin->w_p_fde)
6678 if (foldmethodIsExpr(curwin))
6679 foldUpdateAll(curwin);
6681 # endif
6682 /* 'foldmarker' */
6683 else if (gvarp == &curwin->w_allbuf_opt.wo_fmr)
6685 p = vim_strchr(*varp, ',');
6686 if (p == NULL)
6687 errmsg = (char_u *)N_("E536: comma required");
6688 else if (p == *varp || p[1] == NUL)
6689 errmsg = e_invarg;
6690 else if (foldmethodIsMarker(curwin))
6691 foldUpdateAll(curwin);
6693 /* 'commentstring' */
6694 else if (gvarp == &p_cms)
6696 if (**varp != NUL && strstr((char *)*varp, "%s") == NULL)
6697 errmsg = (char_u *)N_("E537: 'commentstring' must be empty or contain %s");
6699 /* 'foldopen' */
6700 else if (varp == &p_fdo)
6702 if (opt_strings_flags(p_fdo, p_fdo_values, &fdo_flags, TRUE) != OK)
6703 errmsg = e_invarg;
6705 /* 'foldclose' */
6706 else if (varp == &p_fcl)
6708 if (check_opt_strings(p_fcl, p_fcl_values, TRUE) != OK)
6709 errmsg = e_invarg;
6711 /* 'foldignore' */
6712 else if (gvarp == &curwin->w_allbuf_opt.wo_fdi)
6714 if (foldmethodIsIndent(curwin))
6715 foldUpdateAll(curwin);
6717 #endif
6719 #ifdef FEAT_FULLSCREEN
6720 /* 'fuoptions' */
6721 else if (varp == &p_fuoptions)
6723 if (check_fuoptions(p_fuoptions, &fuoptions_flags,
6724 &fuoptions_bgcolor) != OK)
6725 errmsg = e_invarg;
6727 #endif
6729 #ifdef FEAT_VIRTUALEDIT
6730 /* 'virtualedit' */
6731 else if (varp == &p_ve)
6733 if (opt_strings_flags(p_ve, p_ve_values, &ve_flags, TRUE) != OK)
6734 errmsg = e_invarg;
6735 else if (STRCMP(p_ve, oldval) != 0)
6737 /* Recompute cursor position in case the new 've' setting
6738 * changes something. */
6739 validate_virtcol();
6740 coladvance(curwin->w_virtcol);
6743 #endif
6745 #if defined(FEAT_CSCOPE) && defined(FEAT_QUICKFIX)
6746 else if (varp == &p_csqf)
6748 if (p_csqf != NULL)
6750 p = p_csqf;
6751 while (*p != NUL)
6753 if (vim_strchr((char_u *)CSQF_CMDS, *p) == NULL
6754 || p[1] == NUL
6755 || vim_strchr((char_u *)CSQF_FLAGS, p[1]) == NULL
6756 || (p[2] != NUL && p[2] != ','))
6758 errmsg = e_invarg;
6759 break;
6761 else if (p[2] == NUL)
6762 break;
6763 else
6764 p += 3;
6768 #endif
6770 /* Options that are a list of flags. */
6771 else
6773 p = NULL;
6774 if (varp == &p_ww)
6775 p = (char_u *)WW_ALL;
6776 if (varp == &p_shm)
6777 p = (char_u *)SHM_ALL;
6778 else if (varp == &(p_cpo))
6779 p = (char_u *)CPO_ALL;
6780 else if (varp == &(curbuf->b_p_fo))
6781 p = (char_u *)FO_ALL;
6782 else if (varp == &p_mouse)
6784 #ifdef FEAT_MOUSE
6785 p = (char_u *)MOUSE_ALL;
6786 #else
6787 if (*p_mouse != NUL)
6788 errmsg = (char_u *)N_("E538: No mouse support");
6789 #endif
6791 #if defined(FEAT_GUI)
6792 else if (varp == &p_go)
6793 p = (char_u *)GO_ALL;
6794 #endif
6795 if (p != NULL)
6797 for (s = *varp; *s; ++s)
6798 if (vim_strchr(p, *s) == NULL)
6800 errmsg = illegal_char(errbuf, *s);
6801 break;
6807 * If error detected, restore the previous value.
6809 if (errmsg != NULL)
6811 if (new_value_alloced)
6812 free_string_option(*varp);
6813 *varp = oldval;
6815 * When resetting some values, need to act on it.
6817 if (did_chartab)
6818 (void)init_chartab();
6819 if (varp == &p_hl)
6820 (void)highlight_changed();
6822 else
6824 #ifdef FEAT_EVAL
6825 /* Remember where the option was set. */
6826 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
6827 #endif
6829 * Free string options that are in allocated memory.
6830 * Use "free_oldval", because recursiveness may change the flags under
6831 * our fingers (esp. init_highlight()).
6833 if (free_oldval)
6834 free_string_option(oldval);
6835 if (new_value_alloced)
6836 options[opt_idx].flags |= P_ALLOCED;
6837 else
6838 options[opt_idx].flags &= ~P_ALLOCED;
6840 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
6841 && ((int)options[opt_idx].indir & PV_BOTH))
6843 /* global option with local value set to use global value; free
6844 * the local value and make it empty */
6845 p = get_varp_scope(&(options[opt_idx]), OPT_LOCAL);
6846 free_string_option(*(char_u **)p);
6847 *(char_u **)p = empty_option;
6850 /* May set global value for local option. */
6851 else if (!(opt_flags & OPT_LOCAL) && opt_flags != OPT_GLOBAL)
6852 set_string_option_global(opt_idx, varp);
6854 #ifdef FEAT_AUTOCMD
6856 * Trigger the autocommand only after setting the flags.
6858 # ifdef FEAT_SYN_HL
6859 /* When 'syntax' is set, load the syntax of that name */
6860 if (varp == &(curbuf->b_p_syn))
6862 apply_autocmds(EVENT_SYNTAX, curbuf->b_p_syn,
6863 curbuf->b_fname, TRUE, curbuf);
6865 # endif
6866 else if (varp == &(curbuf->b_p_ft))
6868 /* 'filetype' is set, trigger the FileType autocommand */
6869 did_filetype = TRUE;
6870 apply_autocmds(EVENT_FILETYPE, curbuf->b_p_ft,
6871 curbuf->b_fname, TRUE, curbuf);
6873 #endif
6874 #ifdef FEAT_SPELL
6875 if (varp == &(curbuf->b_p_spl))
6877 char_u fname[200];
6880 * Source the spell/LANG.vim in 'runtimepath'.
6881 * They could set 'spellcapcheck' depending on the language.
6882 * Use the first name in 'spelllang' up to '_region' or
6883 * '.encoding'.
6885 for (p = curbuf->b_p_spl; *p != NUL; ++p)
6886 if (vim_strchr((char_u *)"_.,", *p) != NULL)
6887 break;
6888 vim_snprintf((char *)fname, 200, "spell/%.*s.vim",
6889 (int)(p - curbuf->b_p_spl), curbuf->b_p_spl);
6890 source_runtime(fname, TRUE);
6892 #endif
6895 #ifdef FEAT_MOUSE
6896 if (varp == &p_mouse)
6898 # ifdef FEAT_MOUSE_TTY
6899 if (*p_mouse == NUL)
6900 mch_setmouse(FALSE); /* switch mouse off */
6901 else
6902 # endif
6903 setmouse(); /* in case 'mouse' changed */
6905 #endif
6907 if (curwin->w_curswant != MAXCOL)
6908 curwin->w_set_curswant = TRUE; /* in case 'showbreak' changed */
6909 #ifdef FEAT_GUI
6910 /* check redraw when it's not a GUI option or the GUI is active. */
6911 if (!redraw_gui_only || gui.in_use)
6912 #endif
6913 check_redraw(options[opt_idx].flags);
6915 return errmsg;
6919 * Handle setting 'listchars' or 'fillchars'.
6920 * Returns error message, NULL if it's OK.
6922 static char_u *
6923 set_chars_option(varp)
6924 char_u **varp;
6926 int round, i, len, entries;
6927 char_u *p, *s;
6928 int c1, c2 = 0;
6929 struct charstab
6931 int *cp;
6932 char *name;
6934 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6935 static struct charstab filltab[] =
6937 {&fill_stl, "stl"},
6938 {&fill_stlnc, "stlnc"},
6939 {&fill_vert, "vert"},
6940 {&fill_fold, "fold"},
6941 {&fill_diff, "diff"},
6943 #endif
6944 static struct charstab lcstab[] =
6946 {&lcs_eol, "eol"},
6947 {&lcs_ext, "extends"},
6948 {&lcs_nbsp, "nbsp"},
6949 {&lcs_prec, "precedes"},
6950 {&lcs_tab2, "tab"},
6951 {&lcs_trail, "trail"},
6953 struct charstab *tab;
6955 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6956 if (varp == &p_lcs)
6957 #endif
6959 tab = lcstab;
6960 entries = sizeof(lcstab) / sizeof(struct charstab);
6962 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6963 else
6965 tab = filltab;
6966 entries = sizeof(filltab) / sizeof(struct charstab);
6968 #endif
6970 /* first round: check for valid value, second round: assign values */
6971 for (round = 0; round <= 1; ++round)
6973 if (round)
6975 /* After checking that the value is valid: set defaults: space for
6976 * 'fillchars', NUL for 'listchars' */
6977 for (i = 0; i < entries; ++i)
6978 *(tab[i].cp) = (varp == &p_lcs ? NUL : ' ');
6979 if (varp == &p_lcs)
6980 lcs_tab1 = NUL;
6981 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6982 else
6983 fill_diff = '-';
6984 #endif
6986 p = *varp;
6987 while (*p)
6989 for (i = 0; i < entries; ++i)
6991 len = (int)STRLEN(tab[i].name);
6992 if (STRNCMP(p, tab[i].name, len) == 0
6993 && p[len] == ':'
6994 && p[len + 1] != NUL)
6996 s = p + len + 1;
6997 #ifdef FEAT_MBYTE
6998 c1 = mb_ptr2char_adv(&s);
6999 if (mb_char2cells(c1) > 1)
7000 continue;
7001 #else
7002 c1 = *s++;
7003 #endif
7004 if (tab[i].cp == &lcs_tab2)
7006 if (*s == NUL)
7007 continue;
7008 #ifdef FEAT_MBYTE
7009 c2 = mb_ptr2char_adv(&s);
7010 if (mb_char2cells(c2) > 1)
7011 continue;
7012 #else
7013 c2 = *s++;
7014 #endif
7016 if (*s == ',' || *s == NUL)
7018 if (round)
7020 if (tab[i].cp == &lcs_tab2)
7022 lcs_tab1 = c1;
7023 lcs_tab2 = c2;
7025 else
7026 *(tab[i].cp) = c1;
7029 p = s;
7030 break;
7035 if (i == entries)
7036 return e_invarg;
7037 if (*p == ',')
7038 ++p;
7042 return NULL; /* no error */
7045 #ifdef FEAT_STL_OPT
7047 * Check validity of options with the 'statusline' format.
7048 * Return error message or NULL.
7050 char_u *
7051 check_stl_option(s)
7052 char_u *s;
7054 int itemcnt = 0;
7055 int groupdepth = 0;
7056 static char_u errbuf[80];
7058 while (*s && itemcnt < STL_MAX_ITEM)
7060 /* Check for valid keys after % sequences */
7061 while (*s && *s != '%')
7062 s++;
7063 if (!*s)
7064 break;
7065 s++;
7066 if (*s != '%' && *s != ')')
7067 ++itemcnt;
7068 if (*s == '%' || *s == STL_TRUNCMARK || *s == STL_MIDDLEMARK)
7070 s++;
7071 continue;
7073 if (*s == ')')
7075 s++;
7076 if (--groupdepth < 0)
7077 break;
7078 continue;
7080 if (*s == '-')
7081 s++;
7082 while (VIM_ISDIGIT(*s))
7083 s++;
7084 if (*s == STL_USER_HL)
7085 continue;
7086 if (*s == '.')
7088 s++;
7089 while (*s && VIM_ISDIGIT(*s))
7090 s++;
7092 if (*s == '(')
7094 groupdepth++;
7095 continue;
7097 if (vim_strchr(STL_ALL, *s) == NULL)
7099 return illegal_char(errbuf, *s);
7101 if (*s == '{')
7103 s++;
7104 while (*s != '}' && *s)
7105 s++;
7106 if (*s != '}')
7107 return (char_u *)N_("E540: Unclosed expression sequence");
7110 if (itemcnt >= STL_MAX_ITEM)
7111 return (char_u *)N_("E541: too many items");
7112 if (groupdepth != 0)
7113 return (char_u *)N_("E542: unbalanced groups");
7114 return NULL;
7116 #endif
7118 #ifdef FEAT_CLIPBOARD
7120 * Extract the items in the 'clipboard' option and set global values.
7122 static char_u *
7123 check_clipboard_option()
7125 int new_unnamed = FALSE;
7126 int new_autoselect = FALSE;
7127 int new_autoselectml = FALSE;
7128 int new_html = FALSE;
7129 regprog_T *new_exclude_prog = NULL;
7130 char_u *errmsg = NULL;
7131 char_u *p;
7133 for (p = p_cb; *p != NUL; )
7135 if (STRNCMP(p, "unnamed", 7) == 0 && (p[7] == ',' || p[7] == NUL))
7137 new_unnamed = TRUE;
7138 p += 7;
7140 else if (STRNCMP(p, "autoselect", 10) == 0
7141 && (p[10] == ',' || p[10] == NUL))
7143 new_autoselect = TRUE;
7144 p += 10;
7146 else if (STRNCMP(p, "autoselectml", 12) == 0
7147 && (p[12] == ',' || p[12] == NUL))
7149 new_autoselectml = TRUE;
7150 p += 12;
7152 else if (STRNCMP(p, "html", 4) == 0 && (p[4] == ',' || p[4] == NUL))
7154 new_html = TRUE;
7155 p += 4;
7157 else if (STRNCMP(p, "exclude:", 8) == 0 && new_exclude_prog == NULL)
7159 p += 8;
7160 new_exclude_prog = vim_regcomp(p, RE_MAGIC);
7161 if (new_exclude_prog == NULL)
7162 errmsg = e_invarg;
7163 break;
7165 else
7167 errmsg = e_invarg;
7168 break;
7170 if (*p == ',')
7171 ++p;
7173 if (errmsg == NULL)
7175 clip_unnamed = new_unnamed;
7176 clip_autoselect = new_autoselect;
7177 clip_autoselectml = new_autoselectml;
7178 clip_html = new_html;
7179 vim_free(clip_exclude_prog);
7180 clip_exclude_prog = new_exclude_prog;
7182 else
7183 vim_free(new_exclude_prog);
7185 return errmsg;
7187 #endif
7189 #ifdef FEAT_SPELL
7191 * Set curbuf->b_cap_prog to the regexp program for 'spellcapcheck'.
7192 * Return error message when failed, NULL when OK.
7194 static char_u *
7195 compile_cap_prog(buf)
7196 buf_T *buf;
7198 regprog_T *rp = buf->b_cap_prog;
7199 char_u *re;
7201 if (*buf->b_p_spc == NUL)
7202 buf->b_cap_prog = NULL;
7203 else
7205 /* Prepend a ^ so that we only match at one column */
7206 re = concat_str((char_u *)"^", buf->b_p_spc);
7207 if (re != NULL)
7209 buf->b_cap_prog = vim_regcomp(re, RE_MAGIC);
7210 if (buf->b_cap_prog == NULL)
7212 buf->b_cap_prog = rp; /* restore the previous program */
7213 return e_invarg;
7215 vim_free(re);
7219 vim_free(rp);
7220 return NULL;
7222 #endif
7224 #if defined(FEAT_EVAL) || defined(PROTO)
7226 * Set the scriptID for an option, taking care of setting the buffer- or
7227 * window-local value.
7229 static void
7230 set_option_scriptID_idx(opt_idx, opt_flags, id)
7231 int opt_idx;
7232 int opt_flags;
7233 int id;
7235 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
7236 int indir = (int)options[opt_idx].indir;
7238 /* Remember where the option was set. For local options need to do that
7239 * in the buffer or window structure. */
7240 if (both || (opt_flags & OPT_GLOBAL) || (indir & (PV_BUF|PV_WIN)) == 0)
7241 options[opt_idx].scriptID = id;
7242 if (both || (opt_flags & OPT_LOCAL))
7244 if (indir & PV_BUF)
7245 curbuf->b_p_scriptID[indir & PV_MASK] = id;
7246 else if (indir & PV_WIN)
7247 curwin->w_p_scriptID[indir & PV_MASK] = id;
7250 #endif
7253 * Set the value of a boolean option, and take care of side effects.
7254 * Returns NULL for success, or an error message for an error.
7256 static char_u *
7257 set_bool_option(opt_idx, varp, value, opt_flags)
7258 int opt_idx; /* index in options[] table */
7259 char_u *varp; /* pointer to the option variable */
7260 int value; /* new value */
7261 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
7263 int old_value = *(int *)varp;
7265 /* Disallow changing some options from secure mode */
7266 if ((secure
7267 #ifdef HAVE_SANDBOX
7268 || sandbox != 0
7269 #endif
7270 ) && (options[opt_idx].flags & P_SECURE))
7271 return e_secure;
7273 *(int *)varp = value; /* set the new value */
7274 #ifdef FEAT_EVAL
7275 /* Remember where the option was set. */
7276 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
7277 #endif
7279 #ifdef FEAT_GUI
7280 need_mouse_correct = TRUE;
7281 #endif
7283 /* May set global value for local option. */
7284 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0)
7285 *(int *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) = value;
7288 * Handle side effects of changing a bool option.
7291 /* 'compatible' */
7292 if ((int *)varp == &p_cp)
7294 compatible_set();
7297 /* 'list', 'number' */
7298 else if ((int *)varp == &curwin->w_p_list
7299 || (int *)varp == &curwin->w_p_nu)
7301 if (curwin->w_curswant != MAXCOL)
7302 curwin->w_set_curswant = TRUE;
7305 else if ((int *)varp == &curbuf->b_p_ro)
7307 /* when 'readonly' is reset globally, also reset readonlymode */
7308 if (!curbuf->b_p_ro && (opt_flags & OPT_LOCAL) == 0)
7309 readonlymode = FALSE;
7311 /* when 'readonly' is set may give W10 again */
7312 if (curbuf->b_p_ro)
7313 curbuf->b_did_warn = FALSE;
7315 #ifdef FEAT_TITLE
7316 redraw_titles();
7317 #endif
7320 #ifdef FEAT_TITLE
7321 /* when 'modifiable' is changed, redraw the window title */
7322 else if ((int *)varp == &curbuf->b_p_ma)
7324 redraw_titles();
7326 /* when 'endofline' is changed, redraw the window title */
7327 else if ((int *)varp == &curbuf->b_p_eol)
7329 redraw_titles();
7331 # ifdef FEAT_MBYTE
7332 /* when 'bomb' is changed, redraw the window title and tab page text */
7333 else if ((int *)varp == &curbuf->b_p_bomb)
7335 redraw_titles();
7337 # endif
7338 #endif
7340 /* when 'bin' is set also set some other options */
7341 else if ((int *)varp == &curbuf->b_p_bin)
7343 set_options_bin(old_value, curbuf->b_p_bin, opt_flags);
7344 #ifdef FEAT_TITLE
7345 redraw_titles();
7346 #endif
7349 #ifdef FEAT_AUTOCMD
7350 /* when 'buflisted' changes, trigger autocommands */
7351 else if ((int *)varp == &curbuf->b_p_bl && old_value != curbuf->b_p_bl)
7353 apply_autocmds(curbuf->b_p_bl ? EVENT_BUFADD : EVENT_BUFDELETE,
7354 NULL, NULL, TRUE, curbuf);
7356 #endif
7358 /* when 'swf' is set, create swapfile, when reset remove swapfile */
7359 else if ((int *)varp == &curbuf->b_p_swf)
7361 if (curbuf->b_p_swf && p_uc)
7362 ml_open_file(curbuf); /* create the swap file */
7363 else
7364 /* no need to reset curbuf->b_may_swap, ml_open_file() will check
7365 * buf->b_p_swf */
7366 mf_close_file(curbuf, TRUE); /* remove the swap file */
7369 /* when 'terse' is set change 'shortmess' */
7370 else if ((int *)varp == &p_terse)
7372 char_u *p;
7374 p = vim_strchr(p_shm, SHM_SEARCH);
7376 /* insert 's' in p_shm */
7377 if (p_terse && p == NULL)
7379 STRCPY(IObuff, p_shm);
7380 STRCAT(IObuff, "s");
7381 set_string_option_direct((char_u *)"shm", -1, IObuff, OPT_FREE, 0);
7383 /* remove 's' from p_shm */
7384 else if (!p_terse && p != NULL)
7385 STRMOVE(p, p + 1);
7388 /* when 'paste' is set or reset also change other options */
7389 else if ((int *)varp == &p_paste)
7391 paste_option_changed();
7394 /* when 'insertmode' is set from an autocommand need to do work here */
7395 else if ((int *)varp == &p_im)
7397 if (p_im)
7399 if ((State & INSERT) == 0)
7400 need_start_insertmode = TRUE;
7401 stop_insert_mode = FALSE;
7403 else
7405 need_start_insertmode = FALSE;
7406 stop_insert_mode = TRUE;
7407 if (restart_edit != 0 && mode_displayed)
7408 clear_cmdline = TRUE; /* remove "(insert)" */
7409 restart_edit = 0;
7413 /* when 'ignorecase' is set or reset and 'hlsearch' is set, redraw */
7414 else if ((int *)varp == &p_ic && p_hls)
7416 redraw_all_later(SOME_VALID);
7419 #ifdef FEAT_SEARCH_EXTRA
7420 /* when 'hlsearch' is set or reset: reset no_hlsearch */
7421 else if ((int *)varp == &p_hls)
7423 no_hlsearch = FALSE;
7425 #endif
7427 #ifdef FEAT_SCROLLBIND
7428 /* when 'scrollbind' is set: snapshot the current position to avoid a jump
7429 * at the end of normal_cmd() */
7430 else if ((int *)varp == &curwin->w_p_scb)
7432 if (curwin->w_p_scb)
7433 do_check_scrollbind(FALSE);
7435 #endif
7437 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
7438 /* There can be only one window with 'previewwindow' set. */
7439 else if ((int *)varp == &curwin->w_p_pvw)
7441 if (curwin->w_p_pvw)
7443 win_T *win;
7445 for (win = firstwin; win != NULL; win = win->w_next)
7446 if (win->w_p_pvw && win != curwin)
7448 curwin->w_p_pvw = FALSE;
7449 return (char_u *)N_("E590: A preview window already exists");
7453 #endif
7455 /* when 'textmode' is set or reset also change 'fileformat' */
7456 else if ((int *)varp == &curbuf->b_p_tx)
7458 set_fileformat(curbuf->b_p_tx ? EOL_DOS : EOL_UNIX, opt_flags);
7461 #ifdef FEAT_FULLSCREEN
7462 /* when 'fullscreen' changes, forward it to the gui */
7463 else if ((int *)varp == &p_fullscreen && gui.in_use)
7465 if (p_fullscreen && !old_value)
7467 guicolor_T fg, bg;
7468 if (fuoptions_flags & FUOPT_BGCOLOR_HLGROUP)
7470 /* Find out background color from colorscheme
7471 * via highlight group id */
7472 syn_id2colors(fuoptions_bgcolor, &fg, &bg);
7474 else
7476 /* set explicit background color */
7477 bg = fuoptions_bgcolor;
7479 gui_mch_enter_fullscreen(fuoptions_flags, bg);
7481 else if (!p_fullscreen && old_value)
7483 gui_mch_leave_fullscreen();
7486 #endif
7488 #if defined(FEAT_ANTIALIAS) && defined(FEAT_GUI_MACVIM)
7489 else if ((int *)varp == &p_antialias)
7491 gui_macvim_set_antialias(p_antialias);
7493 #endif
7495 /* when 'textauto' is set or reset also change 'fileformats' */
7496 else if ((int *)varp == &p_ta)
7497 set_string_option_direct((char_u *)"ffs", -1,
7498 p_ta ? (char_u *)DFLT_FFS_VIM : (char_u *)"",
7499 OPT_FREE | opt_flags, 0);
7502 * When 'lisp' option changes include/exclude '-' in
7503 * keyword characters.
7505 #ifdef FEAT_LISP
7506 else if (varp == (char_u *)&(curbuf->b_p_lisp))
7508 (void)buf_init_chartab(curbuf, FALSE); /* ignore errors */
7510 #endif
7512 #ifdef FEAT_TITLE
7513 /* when 'title' changed, may need to change the title; same for 'icon' */
7514 else if ((int *)varp == &p_title)
7516 did_set_title(FALSE);
7519 else if ((int *)varp == &p_icon)
7521 did_set_title(TRUE);
7523 #endif
7525 else if ((int *)varp == &curbuf->b_changed)
7527 if (!value)
7528 save_file_ff(curbuf); /* Buffer is unchanged */
7529 #ifdef FEAT_TITLE
7530 redraw_titles();
7531 #endif
7532 #ifdef FEAT_AUTOCMD
7533 modified_was_set = value;
7534 #endif
7537 #ifdef BACKSLASH_IN_FILENAME
7538 else if ((int *)varp == &p_ssl)
7540 if (p_ssl)
7542 psepc = '/';
7543 psepcN = '\\';
7544 pseps[0] = '/';
7546 else
7548 psepc = '\\';
7549 psepcN = '/';
7550 pseps[0] = '\\';
7553 /* need to adjust the file name arguments and buffer names. */
7554 buflist_slash_adjust();
7555 alist_slash_adjust();
7556 # ifdef FEAT_EVAL
7557 scriptnames_slash_adjust();
7558 # endif
7560 #endif
7562 /* If 'wrap' is set, set w_leftcol to zero. */
7563 else if ((int *)varp == &curwin->w_p_wrap)
7565 if (curwin->w_p_wrap)
7566 curwin->w_leftcol = 0;
7567 if (curwin->w_curswant != MAXCOL)
7568 curwin->w_set_curswant = TRUE;
7571 #ifdef FEAT_WINDOWS
7572 else if ((int *)varp == &p_ea)
7574 if (p_ea && !old_value)
7575 win_equal(curwin, FALSE, 0);
7577 #endif
7579 else if ((int *)varp == &p_wiv)
7582 * When 'weirdinvert' changed, set/reset 't_xs'.
7583 * Then set 'weirdinvert' according to value of 't_xs'.
7585 if (p_wiv && !old_value)
7586 T_XS = (char_u *)"y";
7587 else if (!p_wiv && old_value)
7588 T_XS = empty_option;
7589 p_wiv = (*T_XS != NUL);
7592 #ifdef FEAT_BEVAL
7593 else if ((int *)varp == &p_beval)
7595 if (p_beval == TRUE)
7596 gui_mch_enable_beval_area(balloonEval);
7597 else
7598 gui_mch_disable_beval_area(balloonEval);
7600 #endif
7602 #ifdef FEAT_AUTOCHDIR
7603 else if ((int *)varp == &p_acd)
7605 /* Change directories when the 'acd' option is set now. */
7606 DO_AUTOCHDIR
7608 #endif
7610 #ifdef FEAT_DIFF
7611 /* 'diff' */
7612 else if ((int *)varp == &curwin->w_p_diff)
7614 /* May add or remove the buffer from the list of diff buffers. */
7615 diff_buf_adjust(curwin);
7616 # ifdef FEAT_FOLDING
7617 if (foldmethodIsDiff(curwin))
7618 foldUpdateAll(curwin);
7619 # endif
7621 #endif
7623 #ifdef USE_IM_CONTROL
7624 /* 'imdisable' */
7625 else if ((int *)varp == &p_imdisable)
7627 /* Only de-activate it here, it will be enabled when changing mode. */
7628 if (p_imdisable)
7629 im_set_active(FALSE);
7630 #ifdef FEAT_GUI_MACVIM
7631 im_set_control(!p_imdisable);
7632 #endif
7634 #endif
7636 #ifdef FEAT_SPELL
7637 /* 'spell' */
7638 else if ((int *)varp == &curwin->w_p_spell)
7640 if (curwin->w_p_spell)
7642 char_u *errmsg = did_set_spelllang(curbuf);
7644 if (errmsg != NULL)
7645 EMSG(_(errmsg));
7648 #endif
7650 #ifdef FEAT_FKMAP
7651 else if ((int *)varp == &p_altkeymap)
7653 if (old_value != p_altkeymap)
7655 if (!p_altkeymap)
7657 p_hkmap = p_fkmap;
7658 p_fkmap = 0;
7660 else
7662 p_fkmap = p_hkmap;
7663 p_hkmap = 0;
7665 (void)init_chartab();
7670 * In case some second language keymapping options have changed, check
7671 * and correct the setting in a consistent way.
7675 * If hkmap or fkmap are set, reset Arabic keymapping.
7677 if ((p_hkmap || p_fkmap) && p_altkeymap)
7679 p_altkeymap = p_fkmap;
7680 # ifdef FEAT_ARABIC
7681 curwin->w_p_arab = FALSE;
7682 # endif
7683 (void)init_chartab();
7687 * If hkmap set, reset Farsi keymapping.
7689 if (p_hkmap && p_altkeymap)
7691 p_altkeymap = 0;
7692 p_fkmap = 0;
7693 # ifdef FEAT_ARABIC
7694 curwin->w_p_arab = FALSE;
7695 # endif
7696 (void)init_chartab();
7700 * If fkmap set, reset Hebrew keymapping.
7702 if (p_fkmap && !p_altkeymap)
7704 p_altkeymap = 1;
7705 p_hkmap = 0;
7706 # ifdef FEAT_ARABIC
7707 curwin->w_p_arab = FALSE;
7708 # endif
7709 (void)init_chartab();
7711 #endif
7713 #ifdef FEAT_ARABIC
7714 if ((int *)varp == &curwin->w_p_arab)
7716 if (curwin->w_p_arab)
7719 * 'arabic' is set, handle various sub-settings.
7721 if (!p_tbidi)
7723 /* set rightleft mode */
7724 if (!curwin->w_p_rl)
7726 curwin->w_p_rl = TRUE;
7727 changed_window_setting();
7730 /* Enable Arabic shaping (major part of what Arabic requires) */
7731 if (!p_arshape)
7733 p_arshape = TRUE;
7734 redraw_later_clear();
7738 /* Arabic requires a utf-8 encoding, inform the user if its not
7739 * set. */
7740 if (STRCMP(p_enc, "utf-8") != 0)
7742 static char *w_arabic = N_("W17: Arabic requires UTF-8, do ':set encoding=utf-8'");
7744 msg_source(hl_attr(HLF_W));
7745 MSG_ATTR(_(w_arabic), hl_attr(HLF_W));
7746 #ifdef FEAT_EVAL
7747 set_vim_var_string(VV_WARNINGMSG, (char_u *)_(w_arabic), -1);
7748 #endif
7751 # ifdef FEAT_MBYTE
7752 /* set 'delcombine' */
7753 p_deco = TRUE;
7754 # endif
7756 # ifdef FEAT_KEYMAP
7757 /* Force-set the necessary keymap for arabic */
7758 set_option_value((char_u *)"keymap", 0L, (char_u *)"arabic",
7759 OPT_LOCAL);
7760 # endif
7761 # ifdef FEAT_FKMAP
7762 p_altkeymap = 0;
7763 p_hkmap = 0;
7764 p_fkmap = 0;
7765 (void)init_chartab();
7766 # endif
7768 else
7771 * 'arabic' is reset, handle various sub-settings.
7773 if (!p_tbidi)
7775 /* reset rightleft mode */
7776 if (curwin->w_p_rl)
7778 curwin->w_p_rl = FALSE;
7779 changed_window_setting();
7782 /* 'arabicshape' isn't reset, it is a global option and
7783 * another window may still need it "on". */
7786 /* 'delcombine' isn't reset, it is a global option and another
7787 * window may still want it "on". */
7789 # ifdef FEAT_KEYMAP
7790 /* Revert to the default keymap */
7791 curbuf->b_p_iminsert = B_IMODE_NONE;
7792 curbuf->b_p_imsearch = B_IMODE_USE_INSERT;
7793 # endif
7795 if (curwin->w_curswant != MAXCOL)
7796 curwin->w_set_curswant = TRUE;
7799 else if ((int *)varp == &p_arshape)
7801 if (curwin->w_curswant != MAXCOL)
7802 curwin->w_set_curswant = TRUE;
7804 #endif
7806 #ifdef FEAT_LINEBREAK
7807 if ((int *)varp == &curwin->w_p_lbr)
7809 if (curwin->w_curswant != MAXCOL)
7810 curwin->w_set_curswant = TRUE;
7812 #endif
7814 #ifdef FEAT_RIGHTLEFT
7815 if ((int *)varp == &curwin->w_p_rl)
7817 if (curwin->w_curswant != MAXCOL)
7818 curwin->w_set_curswant = TRUE;
7820 #endif
7823 * End of handling side effects for bool options.
7826 options[opt_idx].flags |= P_WAS_SET;
7828 comp_col(); /* in case 'ruler' or 'showcmd' changed */
7830 check_redraw(options[opt_idx].flags);
7832 return NULL;
7836 * Set the value of a number option, and take care of side effects.
7837 * Returns NULL for success, or an error message for an error.
7839 static char_u *
7840 set_num_option(opt_idx, varp, value, errbuf, errbuflen, opt_flags)
7841 int opt_idx; /* index in options[] table */
7842 char_u *varp; /* pointer to the option variable */
7843 long value; /* new value */
7844 char_u *errbuf; /* buffer for error messages */
7845 size_t errbuflen; /* length of "errbuf" */
7846 int opt_flags; /* OPT_LOCAL, OPT_GLOBAL and
7847 OPT_MODELINE */
7849 char_u *errmsg = NULL;
7850 long old_value = *(long *)varp;
7851 long old_Rows = Rows; /* remember old Rows */
7852 long old_Columns = Columns; /* remember old Columns */
7853 long *pp = (long *)varp;
7855 /* Disallow changing some options from secure mode. */
7856 if ((secure
7857 #ifdef HAVE_SANDBOX
7858 || sandbox != 0
7859 #endif
7860 ) && (options[opt_idx].flags & P_SECURE))
7861 return e_secure;
7863 *pp = value;
7864 #ifdef FEAT_EVAL
7865 /* Remember where the option was set. */
7866 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
7867 #endif
7868 #ifdef FEAT_GUI
7869 need_mouse_correct = TRUE;
7870 #endif
7872 if (curbuf->b_p_sw <= 0)
7874 errmsg = e_positive;
7875 curbuf->b_p_sw = curbuf->b_p_ts;
7879 * Number options that need some action when changed
7881 #ifdef FEAT_WINDOWS
7882 if (pp == &p_wh || pp == &p_hh)
7884 if (p_wh < 1)
7886 errmsg = e_positive;
7887 p_wh = 1;
7889 if (p_wmh > p_wh)
7891 errmsg = e_winheight;
7892 p_wh = p_wmh;
7894 if (p_hh < 0)
7896 errmsg = e_positive;
7897 p_hh = 0;
7900 /* Change window height NOW */
7901 if (lastwin != firstwin)
7903 if (pp == &p_wh && curwin->w_height < p_wh)
7904 win_setheight((int)p_wh);
7905 if (pp == &p_hh && curbuf->b_help && curwin->w_height < p_hh)
7906 win_setheight((int)p_hh);
7910 /* 'winminheight' */
7911 else if (pp == &p_wmh)
7913 if (p_wmh < 0)
7915 errmsg = e_positive;
7916 p_wmh = 0;
7918 if (p_wmh > p_wh)
7920 errmsg = e_winheight;
7921 p_wmh = p_wh;
7923 win_setminheight();
7926 # ifdef FEAT_VERTSPLIT
7927 else if (pp == &p_wiw)
7929 if (p_wiw < 1)
7931 errmsg = e_positive;
7932 p_wiw = 1;
7934 if (p_wmw > p_wiw)
7936 errmsg = e_winwidth;
7937 p_wiw = p_wmw;
7940 /* Change window width NOW */
7941 if (lastwin != firstwin && curwin->w_width < p_wiw)
7942 win_setwidth((int)p_wiw);
7945 /* 'winminwidth' */
7946 else if (pp == &p_wmw)
7948 if (p_wmw < 0)
7950 errmsg = e_positive;
7951 p_wmw = 0;
7953 if (p_wmw > p_wiw)
7955 errmsg = e_winwidth;
7956 p_wmw = p_wiw;
7958 win_setminheight();
7960 # endif
7962 #endif
7964 #ifdef FEAT_WINDOWS
7965 /* (re)set last window status line */
7966 else if (pp == &p_ls)
7968 last_status(FALSE);
7971 /* (re)set tab page line */
7972 else if (pp == &p_stal)
7974 shell_new_rows(); /* recompute window positions and heights */
7976 #endif
7978 #ifdef FEAT_GUI
7979 else if (pp == &p_linespace)
7981 /* Recompute gui.char_height and resize the Vim window to keep the
7982 * same number of lines. */
7983 if (gui.in_use && gui_mch_adjust_charheight() == OK)
7984 gui_set_shellsize(FALSE, FALSE, RESIZE_VERT);
7986 #endif
7988 #ifdef FEAT_FOLDING
7989 /* 'foldlevel' */
7990 else if (pp == &curwin->w_p_fdl)
7992 if (curwin->w_p_fdl < 0)
7993 curwin->w_p_fdl = 0;
7994 newFoldLevel();
7997 /* 'foldminlines' */
7998 else if (pp == &curwin->w_p_fml)
8000 foldUpdateAll(curwin);
8003 /* 'foldnestmax' */
8004 else if (pp == &curwin->w_p_fdn)
8006 if (foldmethodIsSyntax(curwin) || foldmethodIsIndent(curwin))
8007 foldUpdateAll(curwin);
8010 /* 'foldcolumn' */
8011 else if (pp == &curwin->w_p_fdc)
8013 if (curwin->w_p_fdc < 0)
8015 errmsg = e_positive;
8016 curwin->w_p_fdc = 0;
8018 else if (curwin->w_p_fdc > 12)
8020 errmsg = e_invarg;
8021 curwin->w_p_fdc = 12;
8025 /* 'shiftwidth' or 'tabstop' */
8026 else if (pp == &curbuf->b_p_sw || pp == &curbuf->b_p_ts)
8028 if (foldmethodIsIndent(curwin))
8029 foldUpdateAll(curwin);
8031 #endif /* FEAT_FOLDING */
8033 #ifdef FEAT_MBYTE
8034 /* 'maxcombine' */
8035 else if (pp == &p_mco)
8037 if (p_mco > MAX_MCO)
8038 p_mco = MAX_MCO;
8039 else if (p_mco < 0)
8040 p_mco = 0;
8041 screenclear(); /* will re-allocate the screen */
8043 #endif
8045 else if (pp == &curbuf->b_p_iminsert)
8047 if (curbuf->b_p_iminsert < 0 || curbuf->b_p_iminsert > B_IMODE_LAST)
8049 errmsg = e_invarg;
8050 curbuf->b_p_iminsert = B_IMODE_NONE;
8052 p_iminsert = curbuf->b_p_iminsert;
8053 if (termcap_active) /* don't do this in the alternate screen */
8054 showmode();
8055 #if defined(FEAT_WINDOWS) && defined(FEAT_KEYMAP)
8056 /* Show/unshow value of 'keymap' in status lines. */
8057 status_redraw_curbuf();
8058 #endif
8061 else if (pp == &p_window)
8063 if (p_window < 1)
8064 p_window = 1;
8065 else if (p_window >= Rows)
8066 p_window = Rows - 1;
8069 else if (pp == &curbuf->b_p_imsearch)
8071 if (curbuf->b_p_imsearch < -1 || curbuf->b_p_imsearch > B_IMODE_LAST)
8073 errmsg = e_invarg;
8074 curbuf->b_p_imsearch = B_IMODE_NONE;
8076 p_imsearch = curbuf->b_p_imsearch;
8079 #ifdef FEAT_TITLE
8080 /* if 'titlelen' has changed, redraw the title */
8081 else if (pp == &p_titlelen)
8083 if (p_titlelen < 0)
8085 errmsg = e_positive;
8086 p_titlelen = 85;
8088 if (starting != NO_SCREEN && old_value != p_titlelen)
8089 need_maketitle = TRUE;
8091 #endif
8093 /* if p_ch changed value, change the command line height */
8094 else if (pp == &p_ch)
8096 if (p_ch < 1)
8098 errmsg = e_positive;
8099 p_ch = 1;
8101 if (p_ch > Rows - min_rows() + 1)
8102 p_ch = Rows - min_rows() + 1;
8104 /* Only compute the new window layout when startup has been
8105 * completed. Otherwise the frame sizes may be wrong. */
8106 if (p_ch != old_value && full_screen
8107 #ifdef FEAT_GUI
8108 && !gui.starting
8109 #endif
8111 command_height();
8114 /* when 'updatecount' changes from zero to non-zero, open swap files */
8115 else if (pp == &p_uc)
8117 if (p_uc < 0)
8119 errmsg = e_positive;
8120 p_uc = 100;
8122 if (p_uc && !old_value)
8123 ml_open_files();
8125 #ifdef MZSCHEME_GUI_THREADS
8126 else if (pp == &p_mzq)
8127 mzvim_reset_timer();
8128 #endif
8130 /* sync undo before 'undolevels' changes */
8131 else if (pp == &p_ul)
8133 /* use the old value, otherwise u_sync() may not work properly */
8134 p_ul = old_value;
8135 u_sync(TRUE);
8136 p_ul = value;
8139 #ifdef FEAT_LINEBREAK
8140 /* 'numberwidth' must be positive */
8141 else if (pp == &curwin->w_p_nuw)
8143 if (curwin->w_p_nuw < 1)
8145 errmsg = e_positive;
8146 curwin->w_p_nuw = 1;
8148 if (curwin->w_p_nuw > 10)
8150 errmsg = e_invarg;
8151 curwin->w_p_nuw = 10;
8153 curwin->w_nrwidth_line_count = 0;
8155 #endif
8157 #if defined(FEAT_TRANSPARENCY)
8158 /* 'transparency' is a number between 0 and 100 */
8159 else if (pp == &p_transp)
8161 if (p_transp < 0 || p_transp > 100)
8163 errmsg = e_invarg;
8164 p_transp = old_value;
8166 else if (gui.in_use)
8167 gui_mch_new_colors();
8169 #endif
8172 * Check the bounds for numeric options here
8174 if (Rows < min_rows() && full_screen)
8176 if (errbuf != NULL)
8178 vim_snprintf((char *)errbuf, errbuflen,
8179 _("E593: Need at least %d lines"), min_rows());
8180 errmsg = errbuf;
8182 Rows = min_rows();
8184 if (Columns < MIN_COLUMNS && full_screen)
8186 if (errbuf != NULL)
8188 vim_snprintf((char *)errbuf, errbuflen,
8189 _("E594: Need at least %d columns"), MIN_COLUMNS);
8190 errmsg = errbuf;
8192 Columns = MIN_COLUMNS;
8194 /* Limit the values to avoid an overflow in Rows * Columns. */
8195 if (Columns > 10000)
8196 Columns = 10000;
8197 if (Rows > 1000)
8198 Rows = 1000;
8200 #ifdef DJGPP
8201 /* avoid a crash by checking for a too large value of 'columns' */
8202 if (old_Columns != Columns && full_screen && term_console)
8203 mch_check_columns();
8204 #endif
8207 * If the screen (shell) height has been changed, assume it is the
8208 * physical screenheight.
8210 if (old_Rows != Rows || old_Columns != Columns)
8212 /* Changing the screen size is not allowed while updating the screen. */
8213 if (updating_screen)
8214 *pp = old_value;
8215 else if (full_screen
8216 #ifdef FEAT_GUI
8217 && !gui.starting
8218 #endif
8220 set_shellsize((int)Columns, (int)Rows, TRUE);
8221 else
8223 /* Postpone the resizing; check the size and cmdline position for
8224 * messages. */
8225 check_shellsize();
8226 if (cmdline_row > Rows - p_ch && Rows > p_ch)
8227 cmdline_row = Rows - p_ch;
8229 if (p_window >= Rows || !option_was_set((char_u *)"window"))
8230 p_window = Rows - 1;
8233 if (curbuf->b_p_sts < 0)
8235 errmsg = e_positive;
8236 curbuf->b_p_sts = 0;
8238 if (curbuf->b_p_ts <= 0)
8240 errmsg = e_positive;
8241 curbuf->b_p_ts = 8;
8243 if (curbuf->b_p_tw < 0)
8245 errmsg = e_positive;
8246 curbuf->b_p_tw = 0;
8248 if (p_tm < 0)
8250 errmsg = e_positive;
8251 p_tm = 0;
8253 if ((curwin->w_p_scr <= 0
8254 || (curwin->w_p_scr > curwin->w_height
8255 && curwin->w_height > 0))
8256 && full_screen)
8258 if (pp == &(curwin->w_p_scr))
8260 if (curwin->w_p_scr != 0)
8261 errmsg = e_scroll;
8262 win_comp_scroll(curwin);
8264 /* If 'scroll' became invalid because of a side effect silently adjust
8265 * it. */
8266 else if (curwin->w_p_scr <= 0)
8267 curwin->w_p_scr = 1;
8268 else /* curwin->w_p_scr > curwin->w_height */
8269 curwin->w_p_scr = curwin->w_height;
8271 if (p_hi < 0)
8273 errmsg = e_positive;
8274 p_hi = 0;
8276 if (p_report < 0)
8278 errmsg = e_positive;
8279 p_report = 1;
8281 if ((p_sj < -100 || p_sj >= Rows) && full_screen)
8283 if (Rows != old_Rows) /* Rows changed, just adjust p_sj */
8284 p_sj = Rows / 2;
8285 else
8287 errmsg = e_scroll;
8288 p_sj = 1;
8291 if (p_so < 0 && full_screen)
8293 errmsg = e_scroll;
8294 p_so = 0;
8296 if (p_siso < 0 && full_screen)
8298 errmsg = e_positive;
8299 p_siso = 0;
8301 #ifdef FEAT_CMDWIN
8302 if (p_cwh < 1)
8304 errmsg = e_positive;
8305 p_cwh = 1;
8307 #endif
8308 if (p_ut < 0)
8310 errmsg = e_positive;
8311 p_ut = 2000;
8313 if (p_ss < 0)
8315 errmsg = e_positive;
8316 p_ss = 0;
8319 /* May set global value for local option. */
8320 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0)
8321 *(long *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) = *pp;
8323 options[opt_idx].flags |= P_WAS_SET;
8325 comp_col(); /* in case 'columns' or 'ls' changed */
8326 if (curwin->w_curswant != MAXCOL)
8327 curwin->w_set_curswant = TRUE; /* in case 'tabstop' changed */
8328 check_redraw(options[opt_idx].flags);
8330 return errmsg;
8334 * Called after an option changed: check if something needs to be redrawn.
8336 static void
8337 check_redraw(flags)
8338 long_u flags;
8340 /* Careful: P_RCLR and P_RALL are a combination of other P_ flags */
8341 int clear = (flags & P_RCLR) == P_RCLR;
8342 int all = ((flags & P_RALL) == P_RALL || clear);
8344 #ifdef FEAT_WINDOWS
8345 if ((flags & P_RSTAT) || all) /* mark all status lines dirty */
8346 status_redraw_all();
8347 #endif
8349 if ((flags & P_RBUF) || (flags & P_RWIN) || all)
8350 changed_window_setting();
8351 if (flags & P_RBUF)
8352 redraw_curbuf_later(NOT_VALID);
8353 if (clear)
8354 redraw_all_later(CLEAR);
8355 else if (all)
8356 redraw_all_later(NOT_VALID);
8360 * Find index for option 'arg'.
8361 * Return -1 if not found.
8363 static int
8364 findoption(arg)
8365 char_u *arg;
8367 int opt_idx;
8368 char *s, *p;
8369 static short quick_tab[27] = {0, 0}; /* quick access table */
8370 int is_term_opt;
8373 * For first call: Initialize the quick-access table.
8374 * It contains the index for the first option that starts with a certain
8375 * letter. There are 26 letters, plus the first "t_" option.
8377 if (quick_tab[1] == 0)
8379 p = options[0].fullname;
8380 for (opt_idx = 1; (s = options[opt_idx].fullname) != NULL; opt_idx++)
8382 if (s[0] != p[0])
8384 if (s[0] == 't' && s[1] == '_')
8385 quick_tab[26] = opt_idx;
8386 else
8387 quick_tab[CharOrdLow(s[0])] = opt_idx;
8389 p = s;
8394 * Check for name starting with an illegal character.
8396 #ifdef EBCDIC
8397 if (!islower(arg[0]))
8398 #else
8399 if (arg[0] < 'a' || arg[0] > 'z')
8400 #endif
8401 return -1;
8403 is_term_opt = (arg[0] == 't' && arg[1] == '_');
8404 if (is_term_opt)
8405 opt_idx = quick_tab[26];
8406 else
8407 opt_idx = quick_tab[CharOrdLow(arg[0])];
8408 for ( ; (s = options[opt_idx].fullname) != NULL; opt_idx++)
8410 if (STRCMP(arg, s) == 0) /* match full name */
8411 break;
8413 if (s == NULL && !is_term_opt)
8415 opt_idx = quick_tab[CharOrdLow(arg[0])];
8416 for ( ; options[opt_idx].fullname != NULL; opt_idx++)
8418 s = options[opt_idx].shortname;
8419 if (s != NULL && STRCMP(arg, s) == 0) /* match short name */
8420 break;
8421 s = NULL;
8424 if (s == NULL)
8425 opt_idx = -1;
8426 return opt_idx;
8429 #if defined(FEAT_EVAL) || defined(FEAT_TCL) || defined(FEAT_MZSCHEME)
8431 * Get the value for an option.
8433 * Returns:
8434 * Number or Toggle option: 1, *numval gets value.
8435 * String option: 0, *stringval gets allocated string.
8436 * Hidden Number or Toggle option: -1.
8437 * hidden String option: -2.
8438 * unknown option: -3.
8441 get_option_value(name, numval, stringval, opt_flags)
8442 char_u *name;
8443 long *numval;
8444 char_u **stringval; /* NULL when only checking existance */
8445 int opt_flags;
8447 int opt_idx;
8448 char_u *varp;
8450 opt_idx = findoption(name);
8451 if (opt_idx < 0) /* unknown option */
8452 return -3;
8454 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
8456 if (options[opt_idx].flags & P_STRING)
8458 if (varp == NULL) /* hidden option */
8459 return -2;
8460 if (stringval != NULL)
8462 #ifdef FEAT_CRYPT
8463 /* never return the value of the crypt key */
8464 if ((char_u **)varp == &curbuf->b_p_key
8465 && **(char_u **)(varp) != NUL)
8466 *stringval = vim_strsave((char_u *)"*****");
8467 else
8468 #endif
8469 *stringval = vim_strsave(*(char_u **)(varp));
8471 return 0;
8474 if (varp == NULL) /* hidden option */
8475 return -1;
8476 if (options[opt_idx].flags & P_NUM)
8477 *numval = *(long *)varp;
8478 else
8480 /* Special case: 'modified' is b_changed, but we also want to consider
8481 * it set when 'ff' or 'fenc' changed. */
8482 if ((int *)varp == &curbuf->b_changed)
8483 *numval = curbufIsChanged();
8484 else
8485 *numval = *(int *)varp;
8487 return 1;
8489 #endif
8492 * Set the value of option "name".
8493 * Use "string" for string options, use "number" for other options.
8495 void
8496 set_option_value(name, number, string, opt_flags)
8497 char_u *name;
8498 long number;
8499 char_u *string;
8500 int opt_flags; /* OPT_LOCAL or 0 (both) */
8502 int opt_idx;
8503 char_u *varp;
8504 long_u flags;
8506 opt_idx = findoption(name);
8507 if (opt_idx < 0)
8508 EMSG2(_("E355: Unknown option: %s"), name);
8509 else
8511 flags = options[opt_idx].flags;
8512 #ifdef HAVE_SANDBOX
8513 /* Disallow changing some options in the sandbox */
8514 if (sandbox > 0 && (flags & P_SECURE))
8516 EMSG(_(e_sandbox));
8517 return;
8519 #endif
8520 if (flags & P_STRING)
8521 set_string_option(opt_idx, string, opt_flags);
8522 else
8524 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
8525 if (varp != NULL) /* hidden option is not changed */
8527 if (number == 0 && string != NULL)
8529 int idx;
8531 /* Either we are given a string or we are setting option
8532 * to zero. */
8533 for (idx = 0; string[idx] == '0'; ++idx)
8535 if (string[idx] != NUL || idx == 0)
8537 /* There's another character after zeros or the string
8538 * is empty. In both cases, we are trying to set a
8539 * num option using a string. */
8540 EMSG3(_("E521: Number required: &%s = '%s'"),
8541 name, string);
8542 return; /* do nothing as we hit an error */
8546 if (flags & P_NUM)
8547 (void)set_num_option(opt_idx, varp, number,
8548 NULL, 0, opt_flags);
8549 else
8550 (void)set_bool_option(opt_idx, varp, (int)number,
8551 opt_flags);
8558 * Get the terminal code for a terminal option.
8559 * Returns NULL when not found.
8561 char_u *
8562 get_term_code(tname)
8563 char_u *tname;
8565 int opt_idx;
8566 char_u *varp;
8568 if (tname[0] != 't' || tname[1] != '_' ||
8569 tname[2] == NUL || tname[3] == NUL)
8570 return NULL;
8571 if ((opt_idx = findoption(tname)) >= 0)
8573 varp = get_varp(&(options[opt_idx]));
8574 if (varp != NULL)
8575 varp = *(char_u **)(varp);
8576 return varp;
8578 return find_termcode(tname + 2);
8581 char_u *
8582 get_highlight_default()
8584 int i;
8586 i = findoption((char_u *)"hl");
8587 if (i >= 0)
8588 return options[i].def_val[VI_DEFAULT];
8589 return (char_u *)NULL;
8592 #if defined(FEAT_MBYTE) || defined(PROTO)
8593 char_u *
8594 get_encoding_default()
8596 int i;
8598 i = findoption((char_u *)"enc");
8599 if (i >= 0)
8600 return options[i].def_val[VI_DEFAULT];
8601 return (char_u *)NULL;
8603 #endif
8606 * Translate a string like "t_xx", "<t_xx>" or "<S-Tab>" to a key number.
8608 static int
8609 find_key_option(arg)
8610 char_u *arg;
8612 int key;
8613 int modifiers;
8616 * Don't use get_special_key_code() for t_xx, we don't want it to call
8617 * add_termcap_entry().
8619 if (arg[0] == 't' && arg[1] == '_' && arg[2] && arg[3])
8620 key = TERMCAP2KEY(arg[2], arg[3]);
8621 else
8623 --arg; /* put arg at the '<' */
8624 modifiers = 0;
8625 key = find_special_key(&arg, &modifiers, TRUE, TRUE);
8626 if (modifiers) /* can't handle modifiers here */
8627 key = 0;
8629 return key;
8633 * if 'all' == 0: show changed options
8634 * if 'all' == 1: show all normal options
8635 * if 'all' == 2: show all terminal options
8637 static void
8638 showoptions(all, opt_flags)
8639 int all;
8640 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
8642 struct vimoption *p;
8643 int col;
8644 int isterm;
8645 char_u *varp;
8646 struct vimoption **items;
8647 int item_count;
8648 int run;
8649 int row, rows;
8650 int cols;
8651 int i;
8652 int len;
8654 #define INC 20
8655 #define GAP 3
8657 items = (struct vimoption **)alloc((unsigned)(sizeof(struct vimoption *) *
8658 PARAM_COUNT));
8659 if (items == NULL)
8660 return;
8662 /* Highlight title */
8663 if (all == 2)
8664 MSG_PUTS_TITLE(_("\n--- Terminal codes ---"));
8665 else if (opt_flags & OPT_GLOBAL)
8666 MSG_PUTS_TITLE(_("\n--- Global option values ---"));
8667 else if (opt_flags & OPT_LOCAL)
8668 MSG_PUTS_TITLE(_("\n--- Local option values ---"));
8669 else
8670 MSG_PUTS_TITLE(_("\n--- Options ---"));
8673 * do the loop two times:
8674 * 1. display the short items
8675 * 2. display the long items (only strings and numbers)
8677 for (run = 1; run <= 2 && !got_int; ++run)
8680 * collect the items in items[]
8682 item_count = 0;
8683 for (p = &options[0]; p->fullname != NULL; p++)
8685 varp = NULL;
8686 isterm = istermoption(p);
8687 if (opt_flags != 0)
8689 if (p->indir != PV_NONE && !isterm)
8690 varp = get_varp_scope(p, opt_flags);
8692 else
8693 varp = get_varp(p);
8694 if (varp != NULL
8695 && ((all == 2 && isterm)
8696 || (all == 1 && !isterm)
8697 || (all == 0 && !optval_default(p, varp))))
8699 if (p->flags & P_BOOL)
8700 len = 1; /* a toggle option fits always */
8701 else
8703 option_value2string(p, opt_flags);
8704 len = (int)STRLEN(p->fullname) + vim_strsize(NameBuff) + 1;
8706 if ((len <= INC - GAP && run == 1) ||
8707 (len > INC - GAP && run == 2))
8708 items[item_count++] = p;
8713 * display the items
8715 if (run == 1)
8717 cols = (Columns + GAP - 3) / INC;
8718 if (cols == 0)
8719 cols = 1;
8720 rows = (item_count + cols - 1) / cols;
8722 else /* run == 2 */
8723 rows = item_count;
8724 for (row = 0; row < rows && !got_int; ++row)
8726 msg_putchar('\n'); /* go to next line */
8727 if (got_int) /* 'q' typed in more */
8728 break;
8729 col = 0;
8730 for (i = row; i < item_count; i += rows)
8732 msg_col = col; /* make columns */
8733 showoneopt(items[i], opt_flags);
8734 col += INC;
8736 out_flush();
8737 ui_breakcheck();
8740 vim_free(items);
8744 * Return TRUE if option "p" has its default value.
8746 static int
8747 optval_default(p, varp)
8748 struct vimoption *p;
8749 char_u *varp;
8751 int dvi;
8753 if (varp == NULL)
8754 return TRUE; /* hidden option is always at default */
8755 dvi = ((p->flags & P_VI_DEF) || p_cp) ? VI_DEFAULT : VIM_DEFAULT;
8756 if (p->flags & P_NUM)
8757 return (*(long *)varp == (long)(long_i)p->def_val[dvi]);
8758 if (p->flags & P_BOOL)
8759 /* the cast to long is required for Manx C, long_i is
8760 * needed for MSVC */
8761 return (*(int *)varp == (int)(long)(long_i)p->def_val[dvi]);
8762 /* P_STRING */
8763 return (STRCMP(*(char_u **)varp, p->def_val[dvi]) == 0);
8767 * showoneopt: show the value of one option
8768 * must not be called with a hidden option!
8770 static void
8771 showoneopt(p, opt_flags)
8772 struct vimoption *p;
8773 int opt_flags; /* OPT_LOCAL or OPT_GLOBAL */
8775 char_u *varp;
8776 int save_silent = silent_mode;
8778 silent_mode = FALSE;
8779 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
8781 varp = get_varp_scope(p, opt_flags);
8783 /* for 'modified' we also need to check if 'ff' or 'fenc' changed. */
8784 if ((p->flags & P_BOOL) && ((int *)varp == &curbuf->b_changed
8785 ? !curbufIsChanged() : !*(int *)varp))
8786 MSG_PUTS("no");
8787 else if ((p->flags & P_BOOL) && *(int *)varp < 0)
8788 MSG_PUTS("--");
8789 else
8790 MSG_PUTS(" ");
8791 MSG_PUTS(p->fullname);
8792 if (!(p->flags & P_BOOL))
8794 msg_putchar('=');
8795 /* put value string in NameBuff */
8796 option_value2string(p, opt_flags);
8797 msg_outtrans(NameBuff);
8800 silent_mode = save_silent;
8801 info_message = FALSE;
8805 * Write modified options as ":set" commands to a file.
8807 * There are three values for "opt_flags":
8808 * OPT_GLOBAL: Write global option values and fresh values of
8809 * buffer-local options (used for start of a session
8810 * file).
8811 * OPT_GLOBAL + OPT_LOCAL: Idem, add fresh values of window-local options for
8812 * curwin (used for a vimrc file).
8813 * OPT_LOCAL: Write buffer-local option values for curbuf, fresh
8814 * and local values for window-local options of
8815 * curwin. Local values are also written when at the
8816 * default value, because a modeline or autocommand
8817 * may have set them when doing ":edit file" and the
8818 * user has set them back at the default or fresh
8819 * value.
8820 * When "local_only" is TRUE, don't write fresh
8821 * values, only local values (for ":mkview").
8822 * (fresh value = value used for a new buffer or window for a local option).
8824 * Return FAIL on error, OK otherwise.
8827 makeset(fd, opt_flags, local_only)
8828 FILE *fd;
8829 int opt_flags;
8830 int local_only;
8832 struct vimoption *p;
8833 char_u *varp; /* currently used value */
8834 char_u *varp_fresh; /* local value */
8835 char_u *varp_local = NULL; /* fresh value */
8836 char *cmd;
8837 int round;
8838 int pri;
8841 * The options that don't have a default (terminal name, columns, lines)
8842 * are never written. Terminal options are also not written.
8843 * Do the loop over "options[]" twice: once for options with the
8844 * P_PRI_MKRC flag and once without.
8846 for (pri = 1; pri >= 0; --pri)
8848 for (p = &options[0]; !istermoption(p); p++)
8849 if (!(p->flags & P_NO_MKRC)
8850 && !istermoption(p)
8851 && ((pri == 1) == ((p->flags & P_PRI_MKRC) != 0)))
8853 /* skip global option when only doing locals */
8854 if (p->indir == PV_NONE && !(opt_flags & OPT_GLOBAL))
8855 continue;
8857 /* Do not store options like 'bufhidden' and 'syntax' in a vimrc
8858 * file, they are always buffer-specific. */
8859 if ((opt_flags & OPT_GLOBAL) && (p->flags & P_NOGLOB))
8860 continue;
8862 /* Global values are only written when not at the default value. */
8863 varp = get_varp_scope(p, opt_flags);
8864 if ((opt_flags & OPT_GLOBAL) && optval_default(p, varp))
8865 continue;
8867 round = 2;
8868 if (p->indir != PV_NONE)
8870 if (p->var == VAR_WIN)
8872 /* skip window-local option when only doing globals */
8873 if (!(opt_flags & OPT_LOCAL))
8874 continue;
8875 /* When fresh value of window-local option is not at the
8876 * default, need to write it too. */
8877 if (!(opt_flags & OPT_GLOBAL) && !local_only)
8879 varp_fresh = get_varp_scope(p, OPT_GLOBAL);
8880 if (!optval_default(p, varp_fresh))
8882 round = 1;
8883 varp_local = varp;
8884 varp = varp_fresh;
8890 /* Round 1: fresh value for window-local options.
8891 * Round 2: other values */
8892 for ( ; round <= 2; varp = varp_local, ++round)
8894 if (round == 1 || (opt_flags & OPT_GLOBAL))
8895 cmd = "set";
8896 else
8897 cmd = "setlocal";
8899 if (p->flags & P_BOOL)
8901 if (put_setbool(fd, cmd, p->fullname, *(int *)varp) == FAIL)
8902 return FAIL;
8904 else if (p->flags & P_NUM)
8906 if (put_setnum(fd, cmd, p->fullname, (long *)varp) == FAIL)
8907 return FAIL;
8909 else /* P_STRING */
8911 #if defined(FEAT_SYN_HL) || defined(FEAT_AUTOCMD)
8912 int do_endif = FALSE;
8914 /* Don't set 'syntax' and 'filetype' again if the value is
8915 * already right, avoids reloading the syntax file. */
8916 if (
8917 # if defined(FEAT_SYN_HL)
8918 p->indir == PV_SYN
8919 # if defined(FEAT_AUTOCMD)
8921 # endif
8922 # endif
8923 # if defined(FEAT_AUTOCMD)
8924 p->indir == PV_FT
8925 # endif
8928 if (fprintf(fd, "if &%s != '%s'", p->fullname,
8929 *(char_u **)(varp)) < 0
8930 || put_eol(fd) < 0)
8931 return FAIL;
8932 do_endif = TRUE;
8934 #endif
8935 if (put_setstring(fd, cmd, p->fullname, (char_u **)varp,
8936 (p->flags & P_EXPAND) != 0) == FAIL)
8937 return FAIL;
8938 #if defined(FEAT_SYN_HL) || defined(FEAT_AUTOCMD)
8939 if (do_endif)
8941 if (put_line(fd, "endif") == FAIL)
8942 return FAIL;
8944 #endif
8949 return OK;
8952 #if defined(FEAT_FOLDING) || defined(PROTO)
8954 * Generate set commands for the local fold options only. Used when
8955 * 'sessionoptions' or 'viewoptions' contains "folds" but not "options".
8958 makefoldset(fd)
8959 FILE *fd;
8961 if (put_setstring(fd, "setlocal", "fdm", &curwin->w_p_fdm, FALSE) == FAIL
8962 # ifdef FEAT_EVAL
8963 || put_setstring(fd, "setlocal", "fde", &curwin->w_p_fde, FALSE)
8964 == FAIL
8965 # endif
8966 || put_setstring(fd, "setlocal", "fmr", &curwin->w_p_fmr, FALSE)
8967 == FAIL
8968 || put_setstring(fd, "setlocal", "fdi", &curwin->w_p_fdi, FALSE)
8969 == FAIL
8970 || put_setnum(fd, "setlocal", "fdl", &curwin->w_p_fdl) == FAIL
8971 || put_setnum(fd, "setlocal", "fml", &curwin->w_p_fml) == FAIL
8972 || put_setnum(fd, "setlocal", "fdn", &curwin->w_p_fdn) == FAIL
8973 || put_setbool(fd, "setlocal", "fen", curwin->w_p_fen) == FAIL
8975 return FAIL;
8977 return OK;
8979 #endif
8981 static int
8982 put_setstring(fd, cmd, name, valuep, expand)
8983 FILE *fd;
8984 char *cmd;
8985 char *name;
8986 char_u **valuep;
8987 int expand;
8989 char_u *s;
8990 char_u buf[MAXPATHL];
8992 if (fprintf(fd, "%s %s=", cmd, name) < 0)
8993 return FAIL;
8994 if (*valuep != NULL)
8996 /* Output 'pastetoggle' as key names. For other
8997 * options some characters have to be escaped with
8998 * CTRL-V or backslash */
8999 if (valuep == &p_pt)
9001 s = *valuep;
9002 while (*s != NUL)
9003 if (put_escstr(fd, str2special(&s, FALSE), 2) == FAIL)
9004 return FAIL;
9006 else if (expand)
9008 home_replace(NULL, *valuep, buf, MAXPATHL, FALSE);
9009 if (put_escstr(fd, buf, 2) == FAIL)
9010 return FAIL;
9012 else if (put_escstr(fd, *valuep, 2) == FAIL)
9013 return FAIL;
9015 if (put_eol(fd) < 0)
9016 return FAIL;
9017 return OK;
9020 static int
9021 put_setnum(fd, cmd, name, valuep)
9022 FILE *fd;
9023 char *cmd;
9024 char *name;
9025 long *valuep;
9027 long wc;
9029 if (fprintf(fd, "%s %s=", cmd, name) < 0)
9030 return FAIL;
9031 if (wc_use_keyname((char_u *)valuep, &wc))
9033 /* print 'wildchar' and 'wildcharm' as a key name */
9034 if (fputs((char *)get_special_key_name((int)wc, 0), fd) < 0)
9035 return FAIL;
9037 else if (fprintf(fd, "%ld", *valuep) < 0)
9038 return FAIL;
9039 if (put_eol(fd) < 0)
9040 return FAIL;
9041 return OK;
9044 static int
9045 put_setbool(fd, cmd, name, value)
9046 FILE *fd;
9047 char *cmd;
9048 char *name;
9049 int value;
9051 if (value < 0) /* global/local option using global value */
9052 return OK;
9053 if (fprintf(fd, "%s %s%s", cmd, value ? "" : "no", name) < 0
9054 || put_eol(fd) < 0)
9055 return FAIL;
9056 return OK;
9060 * Clear all the terminal options.
9061 * If the option has been allocated, free the memory.
9062 * Terminal options are never hidden or indirect.
9064 void
9065 clear_termoptions()
9068 * Reset a few things before clearing the old options. This may cause
9069 * outputting a few things that the terminal doesn't understand, but the
9070 * screen will be cleared later, so this is OK.
9072 #ifdef FEAT_MOUSE_TTY
9073 mch_setmouse(FALSE); /* switch mouse off */
9074 #endif
9075 #ifdef FEAT_TITLE
9076 mch_restore_title(3); /* restore window titles */
9077 #endif
9078 #if defined(FEAT_XCLIPBOARD) && defined(FEAT_GUI)
9079 /* When starting the GUI close the display opened for the clipboard.
9080 * After restoring the title, because that will need the display. */
9081 if (gui.starting)
9082 clear_xterm_clip();
9083 #endif
9084 #ifdef WIN3264
9086 * Check if this is allowed now.
9088 if (can_end_termcap_mode(FALSE) == TRUE)
9089 #endif
9090 stoptermcap(); /* stop termcap mode */
9092 free_termoptions();
9095 void
9096 free_termoptions()
9098 struct vimoption *p;
9100 for (p = &options[0]; p->fullname != NULL; p++)
9101 if (istermoption(p))
9103 if (p->flags & P_ALLOCED)
9104 free_string_option(*(char_u **)(p->var));
9105 if (p->flags & P_DEF_ALLOCED)
9106 free_string_option(p->def_val[VI_DEFAULT]);
9107 *(char_u **)(p->var) = empty_option;
9108 p->def_val[VI_DEFAULT] = empty_option;
9109 p->flags &= ~(P_ALLOCED|P_DEF_ALLOCED);
9111 clear_termcodes();
9115 * Free the string for one term option, if it was allocated.
9116 * Set the string to empty_option and clear allocated flag.
9117 * "var" points to the option value.
9119 void
9120 free_one_termoption(var)
9121 char_u *var;
9123 struct vimoption *p;
9125 for (p = &options[0]; p->fullname != NULL; p++)
9126 if (p->var == var)
9128 if (p->flags & P_ALLOCED)
9129 free_string_option(*(char_u **)(p->var));
9130 *(char_u **)(p->var) = empty_option;
9131 p->flags &= ~P_ALLOCED;
9132 break;
9137 * Set the terminal option defaults to the current value.
9138 * Used after setting the terminal name.
9140 void
9141 set_term_defaults()
9143 struct vimoption *p;
9145 for (p = &options[0]; p->fullname != NULL; p++)
9147 if (istermoption(p) && p->def_val[VI_DEFAULT] != *(char_u **)(p->var))
9149 if (p->flags & P_DEF_ALLOCED)
9151 free_string_option(p->def_val[VI_DEFAULT]);
9152 p->flags &= ~P_DEF_ALLOCED;
9154 p->def_val[VI_DEFAULT] = *(char_u **)(p->var);
9155 if (p->flags & P_ALLOCED)
9157 p->flags |= P_DEF_ALLOCED;
9158 p->flags &= ~P_ALLOCED; /* don't free the value now */
9165 * return TRUE if 'p' starts with 't_'
9167 static int
9168 istermoption(p)
9169 struct vimoption *p;
9171 return (p->fullname[0] == 't' && p->fullname[1] == '_');
9175 * Compute columns for ruler and shown command. 'sc_col' is also used to
9176 * decide what the maximum length of a message on the status line can be.
9177 * If there is a status line for the last window, 'sc_col' is independent
9178 * of 'ru_col'.
9181 #define COL_RULER 17 /* columns needed by standard ruler */
9183 void
9184 comp_col()
9186 #if defined(FEAT_CMDL_INFO) && defined(FEAT_WINDOWS)
9187 int last_has_status = (p_ls == 2 || (p_ls == 1 && firstwin != lastwin));
9189 sc_col = 0;
9190 ru_col = 0;
9191 if (p_ru)
9193 #ifdef FEAT_STL_OPT
9194 ru_col = (ru_wid ? ru_wid : COL_RULER) + 1;
9195 #else
9196 ru_col = COL_RULER + 1;
9197 #endif
9198 /* no last status line, adjust sc_col */
9199 if (!last_has_status)
9200 sc_col = ru_col;
9202 if (p_sc)
9204 sc_col += SHOWCMD_COLS;
9205 if (!p_ru || last_has_status) /* no need for separating space */
9206 ++sc_col;
9208 sc_col = Columns - sc_col;
9209 ru_col = Columns - ru_col;
9210 if (sc_col <= 0) /* screen too narrow, will become a mess */
9211 sc_col = 1;
9212 if (ru_col <= 0)
9213 ru_col = 1;
9214 #else
9215 sc_col = Columns;
9216 ru_col = Columns;
9217 #endif
9221 * Get pointer to option variable, depending on local or global scope.
9223 static char_u *
9224 get_varp_scope(p, opt_flags)
9225 struct vimoption *p;
9226 int opt_flags;
9228 if ((opt_flags & OPT_GLOBAL) && p->indir != PV_NONE)
9230 if (p->var == VAR_WIN)
9231 return (char_u *)GLOBAL_WO(get_varp(p));
9232 return p->var;
9234 if ((opt_flags & OPT_LOCAL) && ((int)p->indir & PV_BOTH))
9236 switch ((int)p->indir)
9238 #ifdef FEAT_QUICKFIX
9239 case PV_EFM: return (char_u *)&(curbuf->b_p_efm);
9240 case PV_GP: return (char_u *)&(curbuf->b_p_gp);
9241 case PV_MP: return (char_u *)&(curbuf->b_p_mp);
9242 #endif
9243 case PV_EP: return (char_u *)&(curbuf->b_p_ep);
9244 case PV_KP: return (char_u *)&(curbuf->b_p_kp);
9245 case PV_PATH: return (char_u *)&(curbuf->b_p_path);
9246 case PV_AR: return (char_u *)&(curbuf->b_p_ar);
9247 case PV_TAGS: return (char_u *)&(curbuf->b_p_tags);
9248 #ifdef FEAT_FIND_ID
9249 case PV_DEF: return (char_u *)&(curbuf->b_p_def);
9250 case PV_INC: return (char_u *)&(curbuf->b_p_inc);
9251 #endif
9252 #ifdef FEAT_INS_EXPAND
9253 case PV_DICT: return (char_u *)&(curbuf->b_p_dict);
9254 case PV_TSR: return (char_u *)&(curbuf->b_p_tsr);
9255 #endif
9256 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9257 case PV_BEXPR: return (char_u *)&(curbuf->b_p_bexpr);
9258 #endif
9259 #ifdef FEAT_STL_OPT
9260 case PV_STL: return (char_u *)&(curwin->w_p_stl);
9261 #endif
9263 return NULL; /* "cannot happen" */
9265 return get_varp(p);
9269 * Get pointer to option variable.
9271 static char_u *
9272 get_varp(p)
9273 struct vimoption *p;
9275 /* hidden option, always return NULL */
9276 if (p->var == NULL)
9277 return NULL;
9279 switch ((int)p->indir)
9281 case PV_NONE: return p->var;
9283 /* global option with local value: use local value if it's been set */
9284 case PV_EP: return *curbuf->b_p_ep != NUL
9285 ? (char_u *)&curbuf->b_p_ep : p->var;
9286 case PV_KP: return *curbuf->b_p_kp != NUL
9287 ? (char_u *)&curbuf->b_p_kp : p->var;
9288 case PV_PATH: return *curbuf->b_p_path != NUL
9289 ? (char_u *)&(curbuf->b_p_path) : p->var;
9290 case PV_AR: return curbuf->b_p_ar >= 0
9291 ? (char_u *)&(curbuf->b_p_ar) : p->var;
9292 case PV_TAGS: return *curbuf->b_p_tags != NUL
9293 ? (char_u *)&(curbuf->b_p_tags) : p->var;
9294 #ifdef FEAT_FIND_ID
9295 case PV_DEF: return *curbuf->b_p_def != NUL
9296 ? (char_u *)&(curbuf->b_p_def) : p->var;
9297 case PV_INC: return *curbuf->b_p_inc != NUL
9298 ? (char_u *)&(curbuf->b_p_inc) : p->var;
9299 #endif
9300 #ifdef FEAT_INS_EXPAND
9301 case PV_DICT: return *curbuf->b_p_dict != NUL
9302 ? (char_u *)&(curbuf->b_p_dict) : p->var;
9303 case PV_TSR: return *curbuf->b_p_tsr != NUL
9304 ? (char_u *)&(curbuf->b_p_tsr) : p->var;
9305 #endif
9306 #ifdef FEAT_QUICKFIX
9307 case PV_EFM: return *curbuf->b_p_efm != NUL
9308 ? (char_u *)&(curbuf->b_p_efm) : p->var;
9309 case PV_GP: return *curbuf->b_p_gp != NUL
9310 ? (char_u *)&(curbuf->b_p_gp) : p->var;
9311 case PV_MP: return *curbuf->b_p_mp != NUL
9312 ? (char_u *)&(curbuf->b_p_mp) : p->var;
9313 #endif
9314 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9315 case PV_BEXPR: return *curbuf->b_p_bexpr != NUL
9316 ? (char_u *)&(curbuf->b_p_bexpr) : p->var;
9317 #endif
9318 #ifdef FEAT_STL_OPT
9319 case PV_STL: return *curwin->w_p_stl != NUL
9320 ? (char_u *)&(curwin->w_p_stl) : p->var;
9321 #endif
9323 #ifdef FEAT_ARABIC
9324 case PV_ARAB: return (char_u *)&(curwin->w_p_arab);
9325 #endif
9326 case PV_LIST: return (char_u *)&(curwin->w_p_list);
9327 #ifdef FEAT_SPELL
9328 case PV_SPELL: return (char_u *)&(curwin->w_p_spell);
9329 #endif
9330 #ifdef FEAT_SYN_HL
9331 case PV_CUC: return (char_u *)&(curwin->w_p_cuc);
9332 case PV_CUL: return (char_u *)&(curwin->w_p_cul);
9333 #endif
9334 #ifdef FEAT_DIFF
9335 case PV_DIFF: return (char_u *)&(curwin->w_p_diff);
9336 #endif
9337 #ifdef FEAT_FOLDING
9338 case PV_FDC: return (char_u *)&(curwin->w_p_fdc);
9339 case PV_FEN: return (char_u *)&(curwin->w_p_fen);
9340 case PV_FDI: return (char_u *)&(curwin->w_p_fdi);
9341 case PV_FDL: return (char_u *)&(curwin->w_p_fdl);
9342 case PV_FDM: return (char_u *)&(curwin->w_p_fdm);
9343 case PV_FML: return (char_u *)&(curwin->w_p_fml);
9344 case PV_FDN: return (char_u *)&(curwin->w_p_fdn);
9345 # ifdef FEAT_EVAL
9346 case PV_FDE: return (char_u *)&(curwin->w_p_fde);
9347 case PV_FDT: return (char_u *)&(curwin->w_p_fdt);
9348 # endif
9349 case PV_FMR: return (char_u *)&(curwin->w_p_fmr);
9350 #endif
9351 case PV_NU: return (char_u *)&(curwin->w_p_nu);
9352 #ifdef FEAT_LINEBREAK
9353 case PV_NUW: return (char_u *)&(curwin->w_p_nuw);
9354 #endif
9355 #ifdef FEAT_WINDOWS
9356 case PV_WFH: return (char_u *)&(curwin->w_p_wfh);
9357 #endif
9358 #ifdef FEAT_VERTSPLIT
9359 case PV_WFW: return (char_u *)&(curwin->w_p_wfw);
9360 #endif
9361 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
9362 case PV_PVW: return (char_u *)&(curwin->w_p_pvw);
9363 #endif
9364 #ifdef FEAT_RIGHTLEFT
9365 case PV_RL: return (char_u *)&(curwin->w_p_rl);
9366 case PV_RLC: return (char_u *)&(curwin->w_p_rlc);
9367 #endif
9368 case PV_SCROLL: return (char_u *)&(curwin->w_p_scr);
9369 case PV_WRAP: return (char_u *)&(curwin->w_p_wrap);
9370 #ifdef FEAT_LINEBREAK
9371 case PV_LBR: return (char_u *)&(curwin->w_p_lbr);
9372 #endif
9373 #ifdef FEAT_SCROLLBIND
9374 case PV_SCBIND: return (char_u *)&(curwin->w_p_scb);
9375 #endif
9377 case PV_AI: return (char_u *)&(curbuf->b_p_ai);
9378 case PV_BIN: return (char_u *)&(curbuf->b_p_bin);
9379 #ifdef FEAT_MBYTE
9380 case PV_BOMB: return (char_u *)&(curbuf->b_p_bomb);
9381 #endif
9382 #if defined(FEAT_QUICKFIX)
9383 case PV_BH: return (char_u *)&(curbuf->b_p_bh);
9384 case PV_BT: return (char_u *)&(curbuf->b_p_bt);
9385 #endif
9386 case PV_BL: return (char_u *)&(curbuf->b_p_bl);
9387 case PV_CI: return (char_u *)&(curbuf->b_p_ci);
9388 #ifdef FEAT_CINDENT
9389 case PV_CIN: return (char_u *)&(curbuf->b_p_cin);
9390 case PV_CINK: return (char_u *)&(curbuf->b_p_cink);
9391 case PV_CINO: return (char_u *)&(curbuf->b_p_cino);
9392 #endif
9393 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
9394 case PV_CINW: return (char_u *)&(curbuf->b_p_cinw);
9395 #endif
9396 #ifdef FEAT_COMMENTS
9397 case PV_COM: return (char_u *)&(curbuf->b_p_com);
9398 #endif
9399 #ifdef FEAT_FOLDING
9400 case PV_CMS: return (char_u *)&(curbuf->b_p_cms);
9401 #endif
9402 #ifdef FEAT_INS_EXPAND
9403 case PV_CPT: return (char_u *)&(curbuf->b_p_cpt);
9404 #endif
9405 #ifdef FEAT_COMPL_FUNC
9406 case PV_CFU: return (char_u *)&(curbuf->b_p_cfu);
9407 case PV_OFU: return (char_u *)&(curbuf->b_p_ofu);
9408 #endif
9409 case PV_EOL: return (char_u *)&(curbuf->b_p_eol);
9410 case PV_ET: return (char_u *)&(curbuf->b_p_et);
9411 #ifdef FEAT_MBYTE
9412 case PV_FENC: return (char_u *)&(curbuf->b_p_fenc);
9413 #endif
9414 case PV_FF: return (char_u *)&(curbuf->b_p_ff);
9415 #ifdef FEAT_AUTOCMD
9416 case PV_FT: return (char_u *)&(curbuf->b_p_ft);
9417 #endif
9418 case PV_FO: return (char_u *)&(curbuf->b_p_fo);
9419 case PV_FLP: return (char_u *)&(curbuf->b_p_flp);
9420 case PV_IMI: return (char_u *)&(curbuf->b_p_iminsert);
9421 case PV_IMS: return (char_u *)&(curbuf->b_p_imsearch);
9422 case PV_INF: return (char_u *)&(curbuf->b_p_inf);
9423 case PV_ISK: return (char_u *)&(curbuf->b_p_isk);
9424 #ifdef FEAT_FIND_ID
9425 # ifdef FEAT_EVAL
9426 case PV_INEX: return (char_u *)&(curbuf->b_p_inex);
9427 # endif
9428 #endif
9429 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
9430 case PV_INDE: return (char_u *)&(curbuf->b_p_inde);
9431 case PV_INDK: return (char_u *)&(curbuf->b_p_indk);
9432 #endif
9433 #ifdef FEAT_EVAL
9434 case PV_FEX: return (char_u *)&(curbuf->b_p_fex);
9435 #endif
9436 #ifdef FEAT_CRYPT
9437 case PV_KEY: return (char_u *)&(curbuf->b_p_key);
9438 #endif
9439 #ifdef FEAT_LISP
9440 case PV_LISP: return (char_u *)&(curbuf->b_p_lisp);
9441 #endif
9442 case PV_ML: return (char_u *)&(curbuf->b_p_ml);
9443 case PV_MPS: return (char_u *)&(curbuf->b_p_mps);
9444 #ifdef FEAT_GUI_MACVIM
9445 case PV_MMTA: return (char_u *)&(curbuf->b_p_mmta);
9446 #endif
9447 case PV_MA: return (char_u *)&(curbuf->b_p_ma);
9448 case PV_MOD: return (char_u *)&(curbuf->b_changed);
9449 case PV_NF: return (char_u *)&(curbuf->b_p_nf);
9450 #ifdef FEAT_OSFILETYPE
9451 case PV_OFT: return (char_u *)&(curbuf->b_p_oft);
9452 #endif
9453 case PV_PI: return (char_u *)&(curbuf->b_p_pi);
9454 #ifdef FEAT_TEXTOBJ
9455 case PV_QE: return (char_u *)&(curbuf->b_p_qe);
9456 #endif
9457 case PV_RO: return (char_u *)&(curbuf->b_p_ro);
9458 #ifdef FEAT_SMARTINDENT
9459 case PV_SI: return (char_u *)&(curbuf->b_p_si);
9460 #endif
9461 #ifndef SHORT_FNAME
9462 case PV_SN: return (char_u *)&(curbuf->b_p_sn);
9463 #endif
9464 case PV_STS: return (char_u *)&(curbuf->b_p_sts);
9465 #ifdef FEAT_SEARCHPATH
9466 case PV_SUA: return (char_u *)&(curbuf->b_p_sua);
9467 #endif
9468 case PV_SWF: return (char_u *)&(curbuf->b_p_swf);
9469 #ifdef FEAT_SYN_HL
9470 case PV_SMC: return (char_u *)&(curbuf->b_p_smc);
9471 case PV_SYN: return (char_u *)&(curbuf->b_p_syn);
9472 #endif
9473 #ifdef FEAT_SPELL
9474 case PV_SPC: return (char_u *)&(curbuf->b_p_spc);
9475 case PV_SPF: return (char_u *)&(curbuf->b_p_spf);
9476 case PV_SPL: return (char_u *)&(curbuf->b_p_spl);
9477 #endif
9478 case PV_SW: return (char_u *)&(curbuf->b_p_sw);
9479 case PV_TS: return (char_u *)&(curbuf->b_p_ts);
9480 case PV_TW: return (char_u *)&(curbuf->b_p_tw);
9481 case PV_TX: return (char_u *)&(curbuf->b_p_tx);
9482 case PV_WM: return (char_u *)&(curbuf->b_p_wm);
9483 #ifdef FEAT_KEYMAP
9484 case PV_KMAP: return (char_u *)&(curbuf->b_p_keymap);
9485 #endif
9486 default: EMSG(_("E356: get_varp ERROR"));
9488 /* always return a valid pointer to avoid a crash! */
9489 return (char_u *)&(curbuf->b_p_wm);
9493 * Get the value of 'equalprg', either the buffer-local one or the global one.
9495 char_u *
9496 get_equalprg()
9498 if (*curbuf->b_p_ep == NUL)
9499 return p_ep;
9500 return curbuf->b_p_ep;
9503 #if defined(FEAT_WINDOWS) || defined(PROTO)
9505 * Copy options from one window to another.
9506 * Used when splitting a window.
9508 void
9509 win_copy_options(wp_from, wp_to)
9510 win_T *wp_from;
9511 win_T *wp_to;
9513 copy_winopt(&wp_from->w_onebuf_opt, &wp_to->w_onebuf_opt);
9514 copy_winopt(&wp_from->w_allbuf_opt, &wp_to->w_allbuf_opt);
9515 # ifdef FEAT_RIGHTLEFT
9516 # ifdef FEAT_FKMAP
9517 /* Is this right? */
9518 wp_to->w_farsi = wp_from->w_farsi;
9519 # endif
9520 # endif
9522 #endif
9525 * Copy the options from one winopt_T to another.
9526 * Doesn't free the old option values in "to", use clear_winopt() for that.
9527 * The 'scroll' option is not copied, because it depends on the window height.
9528 * The 'previewwindow' option is reset, there can be only one preview window.
9530 void
9531 copy_winopt(from, to)
9532 winopt_T *from;
9533 winopt_T *to;
9535 #ifdef FEAT_ARABIC
9536 to->wo_arab = from->wo_arab;
9537 #endif
9538 to->wo_list = from->wo_list;
9539 to->wo_nu = from->wo_nu;
9540 #ifdef FEAT_LINEBREAK
9541 to->wo_nuw = from->wo_nuw;
9542 #endif
9543 #ifdef FEAT_RIGHTLEFT
9544 to->wo_rl = from->wo_rl;
9545 to->wo_rlc = vim_strsave(from->wo_rlc);
9546 #endif
9547 #ifdef FEAT_STL_OPT
9548 to->wo_stl = vim_strsave(from->wo_stl);
9549 #endif
9550 to->wo_wrap = from->wo_wrap;
9551 #ifdef FEAT_LINEBREAK
9552 to->wo_lbr = from->wo_lbr;
9553 #endif
9554 #ifdef FEAT_SCROLLBIND
9555 to->wo_scb = from->wo_scb;
9556 #endif
9557 #ifdef FEAT_SPELL
9558 to->wo_spell = from->wo_spell;
9559 #endif
9560 #ifdef FEAT_SYN_HL
9561 to->wo_cuc = from->wo_cuc;
9562 to->wo_cul = from->wo_cul;
9563 #endif
9564 #ifdef FEAT_DIFF
9565 to->wo_diff = from->wo_diff;
9566 #endif
9567 #ifdef FEAT_FOLDING
9568 to->wo_fdc = from->wo_fdc;
9569 to->wo_fen = from->wo_fen;
9570 to->wo_fdi = vim_strsave(from->wo_fdi);
9571 to->wo_fml = from->wo_fml;
9572 to->wo_fdl = from->wo_fdl;
9573 to->wo_fdm = vim_strsave(from->wo_fdm);
9574 to->wo_fdn = from->wo_fdn;
9575 # ifdef FEAT_EVAL
9576 to->wo_fde = vim_strsave(from->wo_fde);
9577 to->wo_fdt = vim_strsave(from->wo_fdt);
9578 # endif
9579 to->wo_fmr = vim_strsave(from->wo_fmr);
9580 #endif
9581 check_winopt(to); /* don't want NULL pointers */
9585 * Check string options in a window for a NULL value.
9587 void
9588 check_win_options(win)
9589 win_T *win;
9591 check_winopt(&win->w_onebuf_opt);
9592 check_winopt(&win->w_allbuf_opt);
9596 * Check for NULL pointers in a winopt_T and replace them with empty_option.
9598 void
9599 check_winopt(wop)
9600 winopt_T *wop UNUSED;
9602 #ifdef FEAT_FOLDING
9603 check_string_option(&wop->wo_fdi);
9604 check_string_option(&wop->wo_fdm);
9605 # ifdef FEAT_EVAL
9606 check_string_option(&wop->wo_fde);
9607 check_string_option(&wop->wo_fdt);
9608 # endif
9609 check_string_option(&wop->wo_fmr);
9610 #endif
9611 #ifdef FEAT_RIGHTLEFT
9612 check_string_option(&wop->wo_rlc);
9613 #endif
9614 #ifdef FEAT_STL_OPT
9615 check_string_option(&wop->wo_stl);
9616 #endif
9620 * Free the allocated memory inside a winopt_T.
9622 void
9623 clear_winopt(wop)
9624 winopt_T *wop UNUSED;
9626 #ifdef FEAT_FOLDING
9627 clear_string_option(&wop->wo_fdi);
9628 clear_string_option(&wop->wo_fdm);
9629 # ifdef FEAT_EVAL
9630 clear_string_option(&wop->wo_fde);
9631 clear_string_option(&wop->wo_fdt);
9632 # endif
9633 clear_string_option(&wop->wo_fmr);
9634 #endif
9635 #ifdef FEAT_RIGHTLEFT
9636 clear_string_option(&wop->wo_rlc);
9637 #endif
9638 #ifdef FEAT_STL_OPT
9639 clear_string_option(&wop->wo_stl);
9640 #endif
9644 * Copy global option values to local options for one buffer.
9645 * Used when creating a new buffer and sometimes when entering a buffer.
9646 * flags:
9647 * BCO_ENTER We will enter the buf buffer.
9648 * BCO_ALWAYS Always copy the options, but only set b_p_initialized when
9649 * appropriate.
9650 * BCO_NOHELP Don't copy the values to a help buffer.
9652 void
9653 buf_copy_options(buf, flags)
9654 buf_T *buf;
9655 int flags;
9657 int should_copy = TRUE;
9658 char_u *save_p_isk = NULL; /* init for GCC */
9659 int dont_do_help;
9660 int did_isk = FALSE;
9663 * Don't do anything of the buffer is invalid.
9665 if (buf == NULL || !buf_valid(buf))
9666 return;
9669 * Skip this when the option defaults have not been set yet. Happens when
9670 * main() allocates the first buffer.
9672 if (p_cpo != NULL)
9675 * Always copy when entering and 'cpo' contains 'S'.
9676 * Don't copy when already initialized.
9677 * Don't copy when 'cpo' contains 's' and not entering.
9678 * 'S' BCO_ENTER initialized 's' should_copy
9679 * yes yes X X TRUE
9680 * yes no yes X FALSE
9681 * no X yes X FALSE
9682 * X no no yes FALSE
9683 * X no no no TRUE
9684 * no yes no X TRUE
9686 if ((vim_strchr(p_cpo, CPO_BUFOPTGLOB) == NULL || !(flags & BCO_ENTER))
9687 && (buf->b_p_initialized
9688 || (!(flags & BCO_ENTER)
9689 && vim_strchr(p_cpo, CPO_BUFOPT) != NULL)))
9690 should_copy = FALSE;
9692 if (should_copy || (flags & BCO_ALWAYS))
9694 /* Don't copy the options specific to a help buffer when
9695 * BCO_NOHELP is given or the options were initialized already
9696 * (jumping back to a help file with CTRL-T or CTRL-O) */
9697 dont_do_help = ((flags & BCO_NOHELP) && buf->b_help)
9698 || buf->b_p_initialized;
9699 if (dont_do_help) /* don't free b_p_isk */
9701 save_p_isk = buf->b_p_isk;
9702 buf->b_p_isk = NULL;
9705 * Always free the allocated strings.
9706 * If not already initialized, set 'readonly' and copy 'fileformat'.
9708 if (!buf->b_p_initialized)
9710 free_buf_options(buf, TRUE);
9711 buf->b_p_ro = FALSE; /* don't copy readonly */
9712 buf->b_p_tx = p_tx;
9713 #ifdef FEAT_MBYTE
9714 buf->b_p_fenc = vim_strsave(p_fenc);
9715 #endif
9716 buf->b_p_ff = vim_strsave(p_ff);
9717 #if defined(FEAT_QUICKFIX)
9718 buf->b_p_bh = empty_option;
9719 buf->b_p_bt = empty_option;
9720 #endif
9722 else
9723 free_buf_options(buf, FALSE);
9725 buf->b_p_ai = p_ai;
9726 buf->b_p_ai_nopaste = p_ai_nopaste;
9727 buf->b_p_sw = p_sw;
9728 buf->b_p_tw = p_tw;
9729 buf->b_p_tw_nopaste = p_tw_nopaste;
9730 buf->b_p_tw_nobin = p_tw_nobin;
9731 buf->b_p_wm = p_wm;
9732 buf->b_p_wm_nopaste = p_wm_nopaste;
9733 buf->b_p_wm_nobin = p_wm_nobin;
9734 buf->b_p_bin = p_bin;
9735 #ifdef FEAT_MBYTE
9736 buf->b_p_bomb = p_bomb;
9737 #endif
9738 buf->b_p_et = p_et;
9739 buf->b_p_et_nobin = p_et_nobin;
9740 buf->b_p_ml = p_ml;
9741 buf->b_p_ml_nobin = p_ml_nobin;
9742 buf->b_p_inf = p_inf;
9743 buf->b_p_swf = p_swf;
9744 #ifdef FEAT_INS_EXPAND
9745 buf->b_p_cpt = vim_strsave(p_cpt);
9746 #endif
9747 #ifdef FEAT_COMPL_FUNC
9748 buf->b_p_cfu = vim_strsave(p_cfu);
9749 buf->b_p_ofu = vim_strsave(p_ofu);
9750 #endif
9751 buf->b_p_sts = p_sts;
9752 buf->b_p_sts_nopaste = p_sts_nopaste;
9753 #ifndef SHORT_FNAME
9754 buf->b_p_sn = p_sn;
9755 #endif
9756 #ifdef FEAT_COMMENTS
9757 buf->b_p_com = vim_strsave(p_com);
9758 #endif
9759 #ifdef FEAT_FOLDING
9760 buf->b_p_cms = vim_strsave(p_cms);
9761 #endif
9762 buf->b_p_fo = vim_strsave(p_fo);
9763 buf->b_p_flp = vim_strsave(p_flp);
9764 buf->b_p_nf = vim_strsave(p_nf);
9765 buf->b_p_mps = vim_strsave(p_mps);
9766 #ifdef FEAT_SMARTINDENT
9767 buf->b_p_si = p_si;
9768 #endif
9769 buf->b_p_ci = p_ci;
9770 #ifdef FEAT_CINDENT
9771 buf->b_p_cin = p_cin;
9772 buf->b_p_cink = vim_strsave(p_cink);
9773 buf->b_p_cino = vim_strsave(p_cino);
9774 #endif
9775 #ifdef FEAT_AUTOCMD
9776 /* Don't copy 'filetype', it must be detected */
9777 buf->b_p_ft = empty_option;
9778 #endif
9779 #ifdef FEAT_OSFILETYPE
9780 buf->b_p_oft = vim_strsave(p_oft);
9781 #endif
9782 buf->b_p_pi = p_pi;
9783 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
9784 buf->b_p_cinw = vim_strsave(p_cinw);
9785 #endif
9786 #ifdef FEAT_LISP
9787 buf->b_p_lisp = p_lisp;
9788 #endif
9789 #ifdef FEAT_SYN_HL
9790 /* Don't copy 'syntax', it must be set */
9791 buf->b_p_syn = empty_option;
9792 buf->b_p_smc = p_smc;
9793 #endif
9794 #ifdef FEAT_SPELL
9795 buf->b_p_spc = vim_strsave(p_spc);
9796 (void)compile_cap_prog(buf);
9797 buf->b_p_spf = vim_strsave(p_spf);
9798 buf->b_p_spl = vim_strsave(p_spl);
9799 #endif
9800 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
9801 buf->b_p_inde = vim_strsave(p_inde);
9802 buf->b_p_indk = vim_strsave(p_indk);
9803 #endif
9804 #if defined(FEAT_EVAL)
9805 buf->b_p_fex = vim_strsave(p_fex);
9806 #endif
9807 #ifdef FEAT_CRYPT
9808 buf->b_p_key = vim_strsave(p_key);
9809 #endif
9810 #ifdef FEAT_SEARCHPATH
9811 buf->b_p_sua = vim_strsave(p_sua);
9812 #endif
9813 #ifdef FEAT_KEYMAP
9814 buf->b_p_keymap = vim_strsave(p_keymap);
9815 buf->b_kmap_state |= KEYMAP_INIT;
9816 #endif
9817 #ifdef FEAT_GUI_MACVIM
9818 buf->b_p_mmta = p_mmta;
9819 #endif
9820 /* This isn't really an option, but copying the langmap and IME
9821 * state from the current buffer is better than resetting it. */
9822 buf->b_p_iminsert = p_iminsert;
9823 buf->b_p_imsearch = p_imsearch;
9825 /* options that are normally global but also have a local value
9826 * are not copied, start using the global value */
9827 buf->b_p_ar = -1;
9828 #ifdef FEAT_QUICKFIX
9829 buf->b_p_gp = empty_option;
9830 buf->b_p_mp = empty_option;
9831 buf->b_p_efm = empty_option;
9832 #endif
9833 buf->b_p_ep = empty_option;
9834 buf->b_p_kp = empty_option;
9835 buf->b_p_path = empty_option;
9836 buf->b_p_tags = empty_option;
9837 #ifdef FEAT_FIND_ID
9838 buf->b_p_def = empty_option;
9839 buf->b_p_inc = empty_option;
9840 # ifdef FEAT_EVAL
9841 buf->b_p_inex = vim_strsave(p_inex);
9842 # endif
9843 #endif
9844 #ifdef FEAT_INS_EXPAND
9845 buf->b_p_dict = empty_option;
9846 buf->b_p_tsr = empty_option;
9847 #endif
9848 #ifdef FEAT_TEXTOBJ
9849 buf->b_p_qe = vim_strsave(p_qe);
9850 #endif
9851 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9852 buf->b_p_bexpr = empty_option;
9853 #endif
9856 * Don't copy the options set by ex_help(), use the saved values,
9857 * when going from a help buffer to a non-help buffer.
9858 * Don't touch these at all when BCO_NOHELP is used and going from
9859 * or to a help buffer.
9861 if (dont_do_help)
9862 buf->b_p_isk = save_p_isk;
9863 else
9865 buf->b_p_isk = vim_strsave(p_isk);
9866 did_isk = TRUE;
9867 buf->b_p_ts = p_ts;
9868 buf->b_help = FALSE;
9869 #ifdef FEAT_QUICKFIX
9870 if (buf->b_p_bt[0] == 'h')
9871 clear_string_option(&buf->b_p_bt);
9872 #endif
9873 buf->b_p_ma = p_ma;
9878 * When the options should be copied (ignoring BCO_ALWAYS), set the
9879 * flag that indicates that the options have been initialized.
9881 if (should_copy)
9882 buf->b_p_initialized = TRUE;
9885 check_buf_options(buf); /* make sure we don't have NULLs */
9886 if (did_isk)
9887 (void)buf_init_chartab(buf, FALSE);
9891 * Reset the 'modifiable' option and its default value.
9893 void
9894 reset_modifiable()
9896 int opt_idx;
9898 curbuf->b_p_ma = FALSE;
9899 p_ma = FALSE;
9900 opt_idx = findoption((char_u *)"ma");
9901 if (opt_idx >= 0)
9902 options[opt_idx].def_val[VI_DEFAULT] = FALSE;
9906 * Set the global value for 'iminsert' to the local value.
9908 void
9909 set_iminsert_global()
9911 p_iminsert = curbuf->b_p_iminsert;
9915 * Set the global value for 'imsearch' to the local value.
9917 void
9918 set_imsearch_global()
9920 p_imsearch = curbuf->b_p_imsearch;
9923 #if defined(FEAT_CMDL_COMPL) || defined(PROTO)
9924 static int expand_option_idx = -1;
9925 static char_u expand_option_name[5] = {'t', '_', NUL, NUL, NUL};
9926 static int expand_option_flags = 0;
9928 void
9929 set_context_in_set_cmd(xp, arg, opt_flags)
9930 expand_T *xp;
9931 char_u *arg;
9932 int opt_flags; /* OPT_GLOBAL and/or OPT_LOCAL */
9934 int nextchar;
9935 long_u flags = 0; /* init for GCC */
9936 int opt_idx = 0; /* init for GCC */
9937 char_u *p;
9938 char_u *s;
9939 int is_term_option = FALSE;
9940 int key;
9942 expand_option_flags = opt_flags;
9944 xp->xp_context = EXPAND_SETTINGS;
9945 if (*arg == NUL)
9947 xp->xp_pattern = arg;
9948 return;
9950 p = arg + STRLEN(arg) - 1;
9951 if (*p == ' ' && *(p - 1) != '\\')
9953 xp->xp_pattern = p + 1;
9954 return;
9956 while (p > arg)
9958 s = p;
9959 /* count number of backslashes before ' ' or ',' */
9960 if (*p == ' ' || *p == ',')
9962 while (s > arg && *(s - 1) == '\\')
9963 --s;
9965 /* break at a space with an even number of backslashes */
9966 if (*p == ' ' && ((p - s) & 1) == 0)
9968 ++p;
9969 break;
9971 --p;
9973 if (STRNCMP(p, "no", 2) == 0 && STRNCMP(p, "novice", 6) != 0)
9975 xp->xp_context = EXPAND_BOOL_SETTINGS;
9976 p += 2;
9978 if (STRNCMP(p, "inv", 3) == 0)
9980 xp->xp_context = EXPAND_BOOL_SETTINGS;
9981 p += 3;
9983 xp->xp_pattern = arg = p;
9984 if (*arg == '<')
9986 while (*p != '>')
9987 if (*p++ == NUL) /* expand terminal option name */
9988 return;
9989 key = get_special_key_code(arg + 1);
9990 if (key == 0) /* unknown name */
9992 xp->xp_context = EXPAND_NOTHING;
9993 return;
9995 nextchar = *++p;
9996 is_term_option = TRUE;
9997 expand_option_name[2] = KEY2TERMCAP0(key);
9998 expand_option_name[3] = KEY2TERMCAP1(key);
10000 else
10002 if (p[0] == 't' && p[1] == '_')
10004 p += 2;
10005 if (*p != NUL)
10006 ++p;
10007 if (*p == NUL)
10008 return; /* expand option name */
10009 nextchar = *++p;
10010 is_term_option = TRUE;
10011 expand_option_name[2] = p[-2];
10012 expand_option_name[3] = p[-1];
10014 else
10016 /* Allow * wildcard */
10017 while (ASCII_ISALNUM(*p) || *p == '_' || *p == '*')
10018 p++;
10019 if (*p == NUL)
10020 return;
10021 nextchar = *p;
10022 *p = NUL;
10023 opt_idx = findoption(arg);
10024 *p = nextchar;
10025 if (opt_idx == -1 || options[opt_idx].var == NULL)
10027 xp->xp_context = EXPAND_NOTHING;
10028 return;
10030 flags = options[opt_idx].flags;
10031 if (flags & P_BOOL)
10033 xp->xp_context = EXPAND_NOTHING;
10034 return;
10038 /* handle "-=" and "+=" */
10039 if ((nextchar == '-' || nextchar == '+' || nextchar == '^') && p[1] == '=')
10041 ++p;
10042 nextchar = '=';
10044 if ((nextchar != '=' && nextchar != ':')
10045 || xp->xp_context == EXPAND_BOOL_SETTINGS)
10047 xp->xp_context = EXPAND_UNSUCCESSFUL;
10048 return;
10050 if (xp->xp_context != EXPAND_BOOL_SETTINGS && p[1] == NUL)
10052 xp->xp_context = EXPAND_OLD_SETTING;
10053 if (is_term_option)
10054 expand_option_idx = -1;
10055 else
10056 expand_option_idx = opt_idx;
10057 xp->xp_pattern = p + 1;
10058 return;
10060 xp->xp_context = EXPAND_NOTHING;
10061 if (is_term_option || (flags & P_NUM))
10062 return;
10064 xp->xp_pattern = p + 1;
10066 if (flags & P_EXPAND)
10068 p = options[opt_idx].var;
10069 if (p == (char_u *)&p_bdir
10070 || p == (char_u *)&p_dir
10071 || p == (char_u *)&p_path
10072 || p == (char_u *)&p_rtp
10073 #ifdef FEAT_SEARCHPATH
10074 || p == (char_u *)&p_cdpath
10075 #endif
10076 #ifdef FEAT_SESSION
10077 || p == (char_u *)&p_vdir
10078 #endif
10081 xp->xp_context = EXPAND_DIRECTORIES;
10082 if (p == (char_u *)&p_path
10083 #ifdef FEAT_SEARCHPATH
10084 || p == (char_u *)&p_cdpath
10085 #endif
10087 xp->xp_backslash = XP_BS_THREE;
10088 else
10089 xp->xp_backslash = XP_BS_ONE;
10091 else
10093 xp->xp_context = EXPAND_FILES;
10094 /* for 'tags' need three backslashes for a space */
10095 if (p == (char_u *)&p_tags)
10096 xp->xp_backslash = XP_BS_THREE;
10097 else
10098 xp->xp_backslash = XP_BS_ONE;
10102 /* For an option that is a list of file names, find the start of the
10103 * last file name. */
10104 for (p = arg + STRLEN(arg) - 1; p > xp->xp_pattern; --p)
10106 /* count number of backslashes before ' ' or ',' */
10107 if (*p == ' ' || *p == ',')
10109 s = p;
10110 while (s > xp->xp_pattern && *(s - 1) == '\\')
10111 --s;
10112 if ((*p == ' ' && (xp->xp_backslash == XP_BS_THREE && (p - s) < 3))
10113 || (*p == ',' && (flags & P_COMMA) && ((p - s) & 1) == 0))
10115 xp->xp_pattern = p + 1;
10116 break;
10120 #ifdef FEAT_SPELL
10121 /* for 'spellsuggest' start at "file:" */
10122 if (options[opt_idx].var == (char_u *)&p_sps
10123 && STRNCMP(p, "file:", 5) == 0)
10125 xp->xp_pattern = p + 5;
10126 break;
10128 #endif
10131 return;
10135 ExpandSettings(xp, regmatch, num_file, file)
10136 expand_T *xp;
10137 regmatch_T *regmatch;
10138 int *num_file;
10139 char_u ***file;
10141 int num_normal = 0; /* Nr of matching non-term-code settings */
10142 int num_term = 0; /* Nr of matching terminal code settings */
10143 int opt_idx;
10144 int match;
10145 int count = 0;
10146 char_u *str;
10147 int loop;
10148 int is_term_opt;
10149 char_u name_buf[MAX_KEY_NAME_LEN];
10150 static char *(names[]) = {"all", "termcap"};
10151 int ic = regmatch->rm_ic; /* remember the ignore-case flag */
10153 /* do this loop twice:
10154 * loop == 0: count the number of matching options
10155 * loop == 1: copy the matching options into allocated memory
10157 for (loop = 0; loop <= 1; ++loop)
10159 regmatch->rm_ic = ic;
10160 if (xp->xp_context != EXPAND_BOOL_SETTINGS)
10162 for (match = 0; match < (int)(sizeof(names) / sizeof(char *));
10163 ++match)
10164 if (vim_regexec(regmatch, (char_u *)names[match], (colnr_T)0))
10166 if (loop == 0)
10167 num_normal++;
10168 else
10169 (*file)[count++] = vim_strsave((char_u *)names[match]);
10172 for (opt_idx = 0; (str = (char_u *)options[opt_idx].fullname) != NULL;
10173 opt_idx++)
10175 if (options[opt_idx].var == NULL)
10176 continue;
10177 if (xp->xp_context == EXPAND_BOOL_SETTINGS
10178 && !(options[opt_idx].flags & P_BOOL))
10179 continue;
10180 is_term_opt = istermoption(&options[opt_idx]);
10181 if (is_term_opt && num_normal > 0)
10182 continue;
10183 match = FALSE;
10184 if (vim_regexec(regmatch, str, (colnr_T)0)
10185 || (options[opt_idx].shortname != NULL
10186 && vim_regexec(regmatch,
10187 (char_u *)options[opt_idx].shortname, (colnr_T)0)))
10188 match = TRUE;
10189 else if (is_term_opt)
10191 name_buf[0] = '<';
10192 name_buf[1] = 't';
10193 name_buf[2] = '_';
10194 name_buf[3] = str[2];
10195 name_buf[4] = str[3];
10196 name_buf[5] = '>';
10197 name_buf[6] = NUL;
10198 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10200 match = TRUE;
10201 str = name_buf;
10204 if (match)
10206 if (loop == 0)
10208 if (is_term_opt)
10209 num_term++;
10210 else
10211 num_normal++;
10213 else
10214 (*file)[count++] = vim_strsave(str);
10218 * Check terminal key codes, these are not in the option table
10220 if (xp->xp_context != EXPAND_BOOL_SETTINGS && num_normal == 0)
10222 for (opt_idx = 0; (str = get_termcode(opt_idx)) != NULL; opt_idx++)
10224 if (!isprint(str[0]) || !isprint(str[1]))
10225 continue;
10227 name_buf[0] = 't';
10228 name_buf[1] = '_';
10229 name_buf[2] = str[0];
10230 name_buf[3] = str[1];
10231 name_buf[4] = NUL;
10233 match = FALSE;
10234 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10235 match = TRUE;
10236 else
10238 name_buf[0] = '<';
10239 name_buf[1] = 't';
10240 name_buf[2] = '_';
10241 name_buf[3] = str[0];
10242 name_buf[4] = str[1];
10243 name_buf[5] = '>';
10244 name_buf[6] = NUL;
10246 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10247 match = TRUE;
10249 if (match)
10251 if (loop == 0)
10252 num_term++;
10253 else
10254 (*file)[count++] = vim_strsave(name_buf);
10259 * Check special key names.
10261 regmatch->rm_ic = TRUE; /* ignore case here */
10262 for (opt_idx = 0; (str = get_key_name(opt_idx)) != NULL; opt_idx++)
10264 name_buf[0] = '<';
10265 STRCPY(name_buf + 1, str);
10266 STRCAT(name_buf, ">");
10268 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10270 if (loop == 0)
10271 num_term++;
10272 else
10273 (*file)[count++] = vim_strsave(name_buf);
10277 if (loop == 0)
10279 if (num_normal > 0)
10280 *num_file = num_normal;
10281 else if (num_term > 0)
10282 *num_file = num_term;
10283 else
10284 return OK;
10285 *file = (char_u **)alloc((unsigned)(*num_file * sizeof(char_u *)));
10286 if (*file == NULL)
10288 *file = (char_u **)"";
10289 return FAIL;
10293 return OK;
10297 ExpandOldSetting(num_file, file)
10298 int *num_file;
10299 char_u ***file;
10301 char_u *var = NULL; /* init for GCC */
10302 char_u *buf;
10304 *num_file = 0;
10305 *file = (char_u **)alloc((unsigned)sizeof(char_u *));
10306 if (*file == NULL)
10307 return FAIL;
10310 * For a terminal key code expand_option_idx is < 0.
10312 if (expand_option_idx < 0)
10314 var = find_termcode(expand_option_name + 2);
10315 if (var == NULL)
10316 expand_option_idx = findoption(expand_option_name);
10319 if (expand_option_idx >= 0)
10321 /* put string of option value in NameBuff */
10322 option_value2string(&options[expand_option_idx], expand_option_flags);
10323 var = NameBuff;
10325 else if (var == NULL)
10326 var = (char_u *)"";
10328 /* A backslash is required before some characters. This is the reverse of
10329 * what happens in do_set(). */
10330 buf = vim_strsave_escaped(var, escape_chars);
10332 if (buf == NULL)
10334 vim_free(*file);
10335 *file = NULL;
10336 return FAIL;
10339 #ifdef BACKSLASH_IN_FILENAME
10340 /* For MS-Windows et al. we don't double backslashes at the start and
10341 * before a file name character. */
10342 for (var = buf; *var != NUL; mb_ptr_adv(var))
10343 if (var[0] == '\\' && var[1] == '\\'
10344 && expand_option_idx >= 0
10345 && (options[expand_option_idx].flags & P_EXPAND)
10346 && vim_isfilec(var[2])
10347 && (var[2] != '\\' || (var == buf && var[4] != '\\')))
10348 STRMOVE(var, var + 1);
10349 #endif
10351 *file[0] = buf;
10352 *num_file = 1;
10353 return OK;
10355 #endif
10358 * Get the value for the numeric or string option *opp in a nice format into
10359 * NameBuff[]. Must not be called with a hidden option!
10361 static void
10362 option_value2string(opp, opt_flags)
10363 struct vimoption *opp;
10364 int opt_flags; /* OPT_GLOBAL and/or OPT_LOCAL */
10366 char_u *varp;
10368 varp = get_varp_scope(opp, opt_flags);
10370 if (opp->flags & P_NUM)
10372 long wc = 0;
10374 if (wc_use_keyname(varp, &wc))
10375 STRCPY(NameBuff, get_special_key_name((int)wc, 0));
10376 else if (wc != 0)
10377 STRCPY(NameBuff, transchar((int)wc));
10378 else
10379 sprintf((char *)NameBuff, "%ld", *(long *)varp);
10381 else /* P_STRING */
10383 varp = *(char_u **)(varp);
10384 if (varp == NULL) /* just in case */
10385 NameBuff[0] = NUL;
10386 #ifdef FEAT_CRYPT
10387 /* don't show the actual value of 'key', only that it's set */
10388 else if (opp->var == (char_u *)&p_key && *varp)
10389 STRCPY(NameBuff, "*****");
10390 #endif
10391 else if (opp->flags & P_EXPAND)
10392 home_replace(NULL, varp, NameBuff, MAXPATHL, FALSE);
10393 /* Translate 'pastetoggle' into special key names */
10394 else if ((char_u **)opp->var == &p_pt)
10395 str2specialbuf(p_pt, NameBuff, MAXPATHL);
10396 else
10397 vim_strncpy(NameBuff, varp, MAXPATHL - 1);
10402 * Return TRUE if "varp" points to 'wildchar' or 'wildcharm' and it can be
10403 * printed as a keyname.
10404 * "*wcp" is set to the value of the option if it's 'wildchar' or 'wildcharm'.
10406 static int
10407 wc_use_keyname(varp, wcp)
10408 char_u *varp;
10409 long *wcp;
10411 if (((long *)varp == &p_wc) || ((long *)varp == &p_wcm))
10413 *wcp = *(long *)varp;
10414 if (IS_SPECIAL(*wcp) || find_special_key_in_table((int)*wcp) >= 0)
10415 return TRUE;
10417 return FALSE;
10420 #ifdef FEAT_LANGMAP
10422 * Any character has an equivalent 'langmap' character. This is used for
10423 * keyboards that have a special language mode that sends characters above
10424 * 128 (although other characters can be translated too). The "to" field is a
10425 * Vim command character. This avoids having to switch the keyboard back to
10426 * ASCII mode when leaving Insert mode.
10428 * langmap_mapchar[] maps any of 256 chars to an ASCII char used for Vim
10429 * commands.
10430 * When FEAT_MBYTE is defined langmap_mapga.ga_data is a sorted table of
10431 * langmap_entry_T. This does the same as langmap_mapchar[] for characters >=
10432 * 256.
10434 # ifdef FEAT_MBYTE
10436 * With multi-byte support use growarray for 'langmap' chars >= 256
10438 typedef struct
10440 int from;
10441 int to;
10442 } langmap_entry_T;
10444 static garray_T langmap_mapga;
10445 static void langmap_set_entry __ARGS((int from, int to));
10448 * Search for an entry in "langmap_mapga" for "from". If found set the "to"
10449 * field. If not found insert a new entry at the appropriate location.
10451 static void
10452 langmap_set_entry(from, to)
10453 int from;
10454 int to;
10456 langmap_entry_T *entries = (langmap_entry_T *)(langmap_mapga.ga_data);
10457 int a = 0;
10458 int b = langmap_mapga.ga_len;
10460 /* Do a binary search for an existing entry. */
10461 while (a != b)
10463 int i = (a + b) / 2;
10464 int d = entries[i].from - from;
10466 if (d == 0)
10468 entries[i].to = to;
10469 return;
10471 if (d < 0)
10472 a = i + 1;
10473 else
10474 b = i;
10477 if (ga_grow(&langmap_mapga, 1) != OK)
10478 return; /* out of memory */
10480 /* insert new entry at position "a" */
10481 entries = (langmap_entry_T *)(langmap_mapga.ga_data) + a;
10482 mch_memmove(entries + 1, entries,
10483 (langmap_mapga.ga_len - a) * sizeof(langmap_entry_T));
10484 ++langmap_mapga.ga_len;
10485 entries[0].from = from;
10486 entries[0].to = to;
10490 * Apply 'langmap' to multi-byte character "c" and return the result.
10493 langmap_adjust_mb(c)
10494 int c;
10496 langmap_entry_T *entries = (langmap_entry_T *)(langmap_mapga.ga_data);
10497 int a = 0;
10498 int b = langmap_mapga.ga_len;
10500 while (a != b)
10502 int i = (a + b) / 2;
10503 int d = entries[i].from - c;
10505 if (d == 0)
10506 return entries[i].to; /* found matching entry */
10507 if (d < 0)
10508 a = i + 1;
10509 else
10510 b = i;
10512 return c; /* no entry found, return "c" unmodified */
10514 # endif
10516 static void
10517 langmap_init()
10519 int i;
10521 for (i = 0; i < 256; i++)
10522 langmap_mapchar[i] = i; /* we init with a one-to-one map */
10523 # ifdef FEAT_MBYTE
10524 ga_init2(&langmap_mapga, sizeof(langmap_entry_T), 8);
10525 # endif
10529 * Called when langmap option is set; the language map can be
10530 * changed at any time!
10532 static void
10533 langmap_set()
10535 char_u *p;
10536 char_u *p2;
10537 int from, to;
10539 #ifdef FEAT_MBYTE
10540 ga_clear(&langmap_mapga); /* clear the previous map first */
10541 #endif
10542 langmap_init(); /* back to one-to-one map */
10544 for (p = p_langmap; p[0] != NUL; )
10546 for (p2 = p; p2[0] != NUL && p2[0] != ',' && p2[0] != ';';
10547 mb_ptr_adv(p2))
10549 if (p2[0] == '\\' && p2[1] != NUL)
10550 ++p2;
10552 if (p2[0] == ';')
10553 ++p2; /* abcd;ABCD form, p2 points to A */
10554 else
10555 p2 = NULL; /* aAbBcCdD form, p2 is NULL */
10556 while (p[0])
10558 if (p[0] == '\\' && p[1] != NUL)
10559 ++p;
10560 #ifdef FEAT_MBYTE
10561 from = (*mb_ptr2char)(p);
10562 #else
10563 from = p[0];
10564 #endif
10565 if (p2 == NULL)
10567 mb_ptr_adv(p);
10568 if (p[0] == '\\')
10569 ++p;
10570 #ifdef FEAT_MBYTE
10571 to = (*mb_ptr2char)(p);
10572 #else
10573 to = p[0];
10574 #endif
10576 else
10578 if (p2[0] == '\\')
10579 ++p2;
10580 #ifdef FEAT_MBYTE
10581 to = (*mb_ptr2char)(p2);
10582 #else
10583 to = p2[0];
10584 #endif
10586 if (to == NUL)
10588 EMSG2(_("E357: 'langmap': Matching character missing for %s"),
10589 transchar(from));
10590 return;
10593 #ifdef FEAT_MBYTE
10594 if (from >= 256)
10595 langmap_set_entry(from, to);
10596 else
10597 #endif
10598 langmap_mapchar[from & 255] = to;
10600 /* Advance to next pair */
10601 mb_ptr_adv(p);
10602 if (p2 == NULL)
10604 if (p[0] == ',')
10606 ++p;
10607 break;
10610 else
10612 mb_ptr_adv(p2);
10613 if (*p == ';')
10615 p = p2;
10616 if (p[0] != NUL)
10618 if (p[0] != ',')
10620 EMSG2(_("E358: 'langmap': Extra characters after semicolon: %s"), p);
10621 return;
10623 ++p;
10625 break;
10631 #endif
10634 * Return TRUE if format option 'x' is in effect.
10635 * Take care of no formatting when 'paste' is set.
10638 has_format_option(x)
10639 int x;
10641 if (p_paste)
10642 return FALSE;
10643 return (vim_strchr(curbuf->b_p_fo, x) != NULL);
10647 * Return TRUE if "x" is present in 'shortmess' option, or
10648 * 'shortmess' contains 'a' and "x" is present in SHM_A.
10651 shortmess(x)
10652 int x;
10654 return ( vim_strchr(p_shm, x) != NULL
10655 || (vim_strchr(p_shm, 'a') != NULL
10656 && vim_strchr((char_u *)SHM_A, x) != NULL));
10660 * paste_option_changed() - Called after p_paste was set or reset.
10662 static void
10663 paste_option_changed()
10665 static int old_p_paste = FALSE;
10666 static int save_sm = 0;
10667 #ifdef FEAT_CMDL_INFO
10668 static int save_ru = 0;
10669 #endif
10670 #ifdef FEAT_RIGHTLEFT
10671 static int save_ri = 0;
10672 static int save_hkmap = 0;
10673 #endif
10674 buf_T *buf;
10676 if (p_paste)
10679 * Paste switched from off to on.
10680 * Save the current values, so they can be restored later.
10682 if (!old_p_paste)
10684 /* save options for each buffer */
10685 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10687 buf->b_p_tw_nopaste = buf->b_p_tw;
10688 buf->b_p_wm_nopaste = buf->b_p_wm;
10689 buf->b_p_sts_nopaste = buf->b_p_sts;
10690 buf->b_p_ai_nopaste = buf->b_p_ai;
10693 /* save global options */
10694 save_sm = p_sm;
10695 #ifdef FEAT_CMDL_INFO
10696 save_ru = p_ru;
10697 #endif
10698 #ifdef FEAT_RIGHTLEFT
10699 save_ri = p_ri;
10700 save_hkmap = p_hkmap;
10701 #endif
10702 /* save global values for local buffer options */
10703 p_tw_nopaste = p_tw;
10704 p_wm_nopaste = p_wm;
10705 p_sts_nopaste = p_sts;
10706 p_ai_nopaste = p_ai;
10710 * Always set the option values, also when 'paste' is set when it is
10711 * already on.
10713 /* set options for each buffer */
10714 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10716 buf->b_p_tw = 0; /* textwidth is 0 */
10717 buf->b_p_wm = 0; /* wrapmargin is 0 */
10718 buf->b_p_sts = 0; /* softtabstop is 0 */
10719 buf->b_p_ai = 0; /* no auto-indent */
10722 /* set global options */
10723 p_sm = 0; /* no showmatch */
10724 #ifdef FEAT_CMDL_INFO
10725 # ifdef FEAT_WINDOWS
10726 if (p_ru)
10727 status_redraw_all(); /* redraw to remove the ruler */
10728 # endif
10729 p_ru = 0; /* no ruler */
10730 #endif
10731 #ifdef FEAT_RIGHTLEFT
10732 p_ri = 0; /* no reverse insert */
10733 p_hkmap = 0; /* no Hebrew keyboard */
10734 #endif
10735 /* set global values for local buffer options */
10736 p_tw = 0;
10737 p_wm = 0;
10738 p_sts = 0;
10739 p_ai = 0;
10743 * Paste switched from on to off: Restore saved values.
10745 else if (old_p_paste)
10747 /* restore options for each buffer */
10748 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10750 buf->b_p_tw = buf->b_p_tw_nopaste;
10751 buf->b_p_wm = buf->b_p_wm_nopaste;
10752 buf->b_p_sts = buf->b_p_sts_nopaste;
10753 buf->b_p_ai = buf->b_p_ai_nopaste;
10756 /* restore global options */
10757 p_sm = save_sm;
10758 #ifdef FEAT_CMDL_INFO
10759 # ifdef FEAT_WINDOWS
10760 if (p_ru != save_ru)
10761 status_redraw_all(); /* redraw to draw the ruler */
10762 # endif
10763 p_ru = save_ru;
10764 #endif
10765 #ifdef FEAT_RIGHTLEFT
10766 p_ri = save_ri;
10767 p_hkmap = save_hkmap;
10768 #endif
10769 /* set global values for local buffer options */
10770 p_tw = p_tw_nopaste;
10771 p_wm = p_wm_nopaste;
10772 p_sts = p_sts_nopaste;
10773 p_ai = p_ai_nopaste;
10776 old_p_paste = p_paste;
10780 * vimrc_found() - Called when a ".vimrc" or "VIMINIT" has been found.
10782 * Reset 'compatible' and set the values for options that didn't get set yet
10783 * to the Vim defaults.
10784 * Don't do this if the 'compatible' option has been set or reset before.
10785 * When "fname" is not NULL, use it to set $"envname" when it wasn't set yet.
10787 void
10788 vimrc_found(fname, envname)
10789 char_u *fname;
10790 char_u *envname;
10792 int opt_idx;
10793 int dofree = FALSE;
10794 char_u *p;
10796 if (!option_was_set((char_u *)"cp"))
10798 p_cp = FALSE;
10799 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
10800 if (!(options[opt_idx].flags & (P_WAS_SET|P_VI_DEF)))
10801 set_option_default(opt_idx, OPT_FREE, FALSE);
10802 didset_options();
10805 if (fname != NULL)
10807 p = vim_getenv(envname, &dofree);
10808 if (p == NULL)
10810 /* Set $MYVIMRC to the first vimrc file found. */
10811 p = FullName_save(fname, FALSE);
10812 if (p != NULL)
10814 vim_setenv(envname, p);
10815 vim_free(p);
10818 else if (dofree)
10819 vim_free(p);
10824 * Set 'compatible' on or off. Called for "-C" and "-N" command line arg.
10826 void
10827 change_compatible(on)
10828 int on;
10830 int opt_idx;
10832 if (p_cp != on)
10834 p_cp = on;
10835 compatible_set();
10837 opt_idx = findoption((char_u *)"cp");
10838 if (opt_idx >= 0)
10839 options[opt_idx].flags |= P_WAS_SET;
10843 * Return TRUE when option "name" has been set.
10846 option_was_set(name)
10847 char_u *name;
10849 int idx;
10851 idx = findoption(name);
10852 if (idx < 0) /* unknown option */
10853 return FALSE;
10854 if (options[idx].flags & P_WAS_SET)
10855 return TRUE;
10856 return FALSE;
10860 * compatible_set() - Called when 'compatible' has been set or unset.
10862 * When 'compatible' set: Set all relevant options (those that have the P_VIM)
10863 * flag) to a Vi compatible value.
10864 * When 'compatible' is unset: Set all options that have a different default
10865 * for Vim (without the P_VI_DEF flag) to that default.
10867 static void
10868 compatible_set()
10870 int opt_idx;
10872 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
10873 if ( ((options[opt_idx].flags & P_VIM) && p_cp)
10874 || (!(options[opt_idx].flags & P_VI_DEF) && !p_cp))
10875 set_option_default(opt_idx, OPT_FREE, p_cp);
10876 didset_options();
10879 #ifdef FEAT_LINEBREAK
10881 # if defined(__BORLANDC__) && (__BORLANDC__ < 0x500)
10882 /* Borland C++ screws up loop optimisation here (negri) */
10883 #pragma option -O-l
10884 # endif
10887 * fill_breakat_flags() -- called when 'breakat' changes value.
10889 static void
10890 fill_breakat_flags()
10892 char_u *p;
10893 int i;
10895 for (i = 0; i < 256; i++)
10896 breakat_flags[i] = FALSE;
10898 if (p_breakat != NULL)
10899 for (p = p_breakat; *p; p++)
10900 breakat_flags[*p] = TRUE;
10903 # if defined(__BORLANDC__) && (__BORLANDC__ < 0x500)
10904 #pragma option -O.l
10905 # endif
10907 #endif
10910 * Check an option that can be a range of string values.
10912 * Return OK for correct value, FAIL otherwise.
10913 * Empty is always OK.
10915 static int
10916 check_opt_strings(val, values, list)
10917 char_u *val;
10918 char **values;
10919 int list; /* when TRUE: accept a list of values */
10921 return opt_strings_flags(val, values, NULL, list);
10925 * Handle an option that can be a range of string values.
10926 * Set a flag in "*flagp" for each string present.
10928 * Return OK for correct value, FAIL otherwise.
10929 * Empty is always OK.
10931 static int
10932 opt_strings_flags(val, values, flagp, list)
10933 char_u *val; /* new value */
10934 char **values; /* array of valid string values */
10935 unsigned *flagp;
10936 int list; /* when TRUE: accept a list of values */
10938 int i;
10939 int len;
10940 unsigned new_flags = 0;
10942 while (*val)
10944 for (i = 0; ; ++i)
10946 if (values[i] == NULL) /* val not found in values[] */
10947 return FAIL;
10949 len = (int)STRLEN(values[i]);
10950 if (STRNCMP(values[i], val, len) == 0
10951 && ((list && val[len] == ',') || val[len] == NUL))
10953 val += len + (val[len] == ',');
10954 new_flags |= (1 << i);
10955 break; /* check next item in val list */
10959 if (flagp != NULL)
10960 *flagp = new_flags;
10962 return OK;
10966 * Read the 'wildmode' option, fill wim_flags[].
10968 static int
10969 check_opt_wim()
10971 char_u new_wim_flags[4];
10972 char_u *p;
10973 int i;
10974 int idx = 0;
10976 for (i = 0; i < 4; ++i)
10977 new_wim_flags[i] = 0;
10979 for (p = p_wim; *p; ++p)
10981 for (i = 0; ASCII_ISALPHA(p[i]); ++i)
10983 if (p[i] != NUL && p[i] != ',' && p[i] != ':')
10984 return FAIL;
10985 if (i == 7 && STRNCMP(p, "longest", 7) == 0)
10986 new_wim_flags[idx] |= WIM_LONGEST;
10987 else if (i == 4 && STRNCMP(p, "full", 4) == 0)
10988 new_wim_flags[idx] |= WIM_FULL;
10989 else if (i == 4 && STRNCMP(p, "list", 4) == 0)
10990 new_wim_flags[idx] |= WIM_LIST;
10991 else
10992 return FAIL;
10993 p += i;
10994 if (*p == NUL)
10995 break;
10996 if (*p == ',')
10998 if (idx == 3)
10999 return FAIL;
11000 ++idx;
11004 /* fill remaining entries with last flag */
11005 while (idx < 3)
11007 new_wim_flags[idx + 1] = new_wim_flags[idx];
11008 ++idx;
11011 /* only when there are no errors, wim_flags[] is changed */
11012 for (i = 0; i < 4; ++i)
11013 wim_flags[i] = new_wim_flags[i];
11014 return OK;
11018 * Check if backspacing over something is allowed.
11021 can_bs(what)
11022 int what; /* BS_INDENT, BS_EOL or BS_START */
11024 switch (*p_bs)
11026 case '2': return TRUE;
11027 case '1': return (what != BS_START);
11028 case '0': return FALSE;
11030 return vim_strchr(p_bs, what) != NULL;
11034 * Save the current values of 'fileformat' and 'fileencoding', so that we know
11035 * the file must be considered changed when the value is different.
11037 void
11038 save_file_ff(buf)
11039 buf_T *buf;
11041 buf->b_start_ffc = *buf->b_p_ff;
11042 buf->b_start_eol = buf->b_p_eol;
11043 #ifdef FEAT_MBYTE
11044 buf->b_start_bomb = buf->b_p_bomb;
11046 /* Only use free/alloc when necessary, they take time. */
11047 if (buf->b_start_fenc == NULL
11048 || STRCMP(buf->b_start_fenc, buf->b_p_fenc) != 0)
11050 vim_free(buf->b_start_fenc);
11051 buf->b_start_fenc = vim_strsave(buf->b_p_fenc);
11053 #endif
11057 * Return TRUE if 'fileformat' and/or 'fileencoding' has a different value
11058 * from when editing started (save_file_ff() called).
11059 * Also when 'endofline' was changed and 'binary' is set, or when 'bomb' was
11060 * changed and 'binary' is not set.
11061 * Don't consider a new, empty buffer to be changed.
11064 file_ff_differs(buf)
11065 buf_T *buf;
11067 /* In a buffer that was never loaded the options are not valid. */
11068 if (buf->b_flags & BF_NEVERLOADED)
11069 return FALSE;
11070 if ((buf->b_flags & BF_NEW)
11071 && buf->b_ml.ml_line_count == 1
11072 && *ml_get_buf(buf, (linenr_T)1, FALSE) == NUL)
11073 return FALSE;
11074 if (buf->b_start_ffc != *buf->b_p_ff)
11075 return TRUE;
11076 if (buf->b_p_bin && buf->b_start_eol != buf->b_p_eol)
11077 return TRUE;
11078 #ifdef FEAT_MBYTE
11079 if (!buf->b_p_bin && buf->b_start_bomb != buf->b_p_bomb)
11080 return TRUE;
11081 if (buf->b_start_fenc == NULL)
11082 return (*buf->b_p_fenc != NUL);
11083 return (STRCMP(buf->b_start_fenc, buf->b_p_fenc) != 0);
11084 #else
11085 return FALSE;
11086 #endif
11090 * return OK if "p" is a valid fileformat name, FAIL otherwise.
11093 check_ff_value(p)
11094 char_u *p;
11096 return check_opt_strings(p, p_ff_values, FALSE);
11099 #ifdef FEAT_FULLSCREEN
11101 * Read the 'fuoptions' option, set fuoptions_flags and
11102 * fuoptions_bgcolor.
11104 static int
11105 check_fuoptions(p_fuoptions, flags, bgcolor)
11106 char_u *p_fuoptions; /* fuoptions string */
11107 unsigned *flags; /* fuoptions flags */
11108 int *bgcolor; /* background highlight group id */
11110 unsigned new_fuoptions_flags;
11111 int new_fuoptions_bgcolor;
11112 char_u *p;
11113 char_u hg_term; /* character terminating
11114 highlight group string in
11115 'background' option' */
11116 int i,j,k;
11118 new_fuoptions_flags = 0;
11119 new_fuoptions_bgcolor = 0xFF000000;
11121 for (p = p_fuoptions; *p; ++p)
11123 for (i = 0; ASCII_ISALPHA(p[i]); ++i)
11125 if (p[i] != NUL && p[i] != ',' && p[i] != ':')
11126 return FAIL;
11127 if (i == 10 && STRNCMP(p, "background", 10) == 0)
11129 if (p[i] != ':') return FAIL;
11130 i++;
11131 if (p[i] == NUL) return FAIL;
11132 if (p[i] == '#')
11134 /* explicit color (#aarrggbb) */
11135 i++;
11136 for (j = i; j < i+8 && vim_isxdigit(p[j]); ++j)
11138 if (j < i+8)
11139 return FAIL; /* less than 8 digits */
11140 if (p[j] != NUL && p[j] != ',')
11141 return FAIL;
11142 new_fuoptions_bgcolor = 0;
11143 for (k = 0; k < 8; k++)
11144 new_fuoptions_bgcolor = new_fuoptions_bgcolor * 16 +
11145 hex2nr(p[i+k]);
11146 i = j;
11147 /* mark bgcolor as an explicit argb color */
11148 new_fuoptions_flags &= ~FUOPT_BGCOLOR_HLGROUP;
11150 else
11152 /* highlight group name */
11153 for (j = i; ASCII_ISALPHA(p[j]); ++j)
11155 if (p[j] != NUL && p[j] != ',')
11156 return FAIL;
11157 hg_term = p[j];
11158 p[j] = NUL; /* temporarily terminate string */
11159 new_fuoptions_bgcolor = syn_name2id((char_u*)(p+i));
11160 p[j] = hg_term; /* restore string */
11161 if (! new_fuoptions_bgcolor)
11162 return FAIL;
11163 i = j;
11164 /* mark bgcolor as highlight group id */
11165 new_fuoptions_flags |= FUOPT_BGCOLOR_HLGROUP;
11168 else if (i == 7 && STRNCMP(p, "maxhorz", 7) == 0)
11169 new_fuoptions_flags |= FUOPT_MAXHORZ;
11170 else if (i == 7 && STRNCMP(p, "maxvert", 7) == 0)
11171 new_fuoptions_flags |= FUOPT_MAXVERT;
11172 else
11173 return FAIL;
11174 p += i;
11175 if (*p == NUL)
11176 break;
11177 if (*p == ':')
11178 return FAIL;
11181 *flags = new_fuoptions_flags;
11182 *bgcolor = new_fuoptions_bgcolor;
11184 /* Let the GUI know, in case the background color has changed. */
11185 gui_mch_fuopt_update();
11187 return OK;
11189 #endif