feat/tagfunc: added the local-to-buffer 'tagfunc' option.
[vim_extended.git] / src / option.c
blob644304d289a156d67e6bbcefddf99fef45f489a0
1 /* vi:set ts=8 sts=4 sw=4:
3 * VIM - Vi IMproved by Bram Moolenaar
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
11 * Code to handle user-settable options. This is all pretty much table-
12 * driven. Checklist for adding a new option:
13 * - Put it in the options array below (copy an existing entry).
14 * - For a global option: Add a variable for it in option.h.
15 * - For a buffer or window local option:
16 * - Add a PV_XX entry to the enum below.
17 * - Add a variable to the window or buffer struct in structs.h.
18 * - For a window option, add some code to copy_winopt().
19 * - For a buffer option, add some code to buf_copy_options().
20 * - For a buffer string option, add code to check_buf_options().
21 * - If it's a numeric option, add any necessary bounds checks to do_set().
22 * - If it's a list of flags, add some code in do_set(), search for WW_ALL.
23 * - When adding an option with expansion (P_EXPAND), but with a different
24 * default for Vi and Vim (no P_VI_DEF), add some code at VIMEXP.
25 * - Add documentation! One line in doc/help.txt, full description in
26 * options.txt, and any other related places.
27 * - Add an entry in runtime/optwin.vim.
28 * When making changes:
29 * - Adjust the help for the option in doc/option.txt.
30 * - When an entry has the P_VIM flag, or is lacking the P_VI_DEF flag, add a
31 * comment at the help for the 'compatible' option.
34 #define IN_OPTION_C
35 #include "vim.h"
38 * The options that are local to a window or buffer have "indir" set to one of
39 * these values. Special values:
40 * PV_NONE: global option.
41 * PV_WIN is added: window-local option
42 * PV_BUF is added: buffer-local option
43 * PV_BOTH is added: global option which also has a local value.
45 #define PV_BOTH 0x1000
46 #define PV_WIN 0x2000
47 #define PV_BUF 0x4000
48 #define PV_MASK 0x0fff
49 #define OPT_WIN(x) (idopt_T)(PV_WIN + (int)(x))
50 #define OPT_BUF(x) (idopt_T)(PV_BUF + (int)(x))
51 #define OPT_BOTH(x) (idopt_T)(PV_BOTH + (int)(x))
54 * Definition of the PV_ values for buffer-local options.
55 * The BV_ values are defined in option.h.
57 #define PV_AI OPT_BUF(BV_AI)
58 #define PV_AR OPT_BOTH(OPT_BUF(BV_AR))
59 #ifdef FEAT_QUICKFIX
60 # define PV_BH OPT_BUF(BV_BH)
61 # define PV_BT OPT_BUF(BV_BT)
62 # define PV_EFM OPT_BOTH(OPT_BUF(BV_EFM))
63 # define PV_GP OPT_BOTH(OPT_BUF(BV_GP))
64 # define PV_MP OPT_BOTH(OPT_BUF(BV_MP))
65 #endif
66 #define PV_BIN OPT_BUF(BV_BIN)
67 #define PV_BL OPT_BUF(BV_BL)
68 #ifdef FEAT_MBYTE
69 # define PV_BOMB OPT_BUF(BV_BOMB)
70 #endif
71 #define PV_CI OPT_BUF(BV_CI)
72 #ifdef FEAT_CINDENT
73 # define PV_CIN OPT_BUF(BV_CIN)
74 # define PV_CINK OPT_BUF(BV_CINK)
75 # define PV_CINO OPT_BUF(BV_CINO)
76 #endif
77 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
78 # define PV_CINW OPT_BUF(BV_CINW)
79 #endif
80 #ifdef FEAT_FOLDING
81 # define PV_CMS OPT_BUF(BV_CMS)
82 #endif
83 #ifdef FEAT_COMMENTS
84 # define PV_COM OPT_BUF(BV_COM)
85 #endif
86 #ifdef FEAT_INS_EXPAND
87 # define PV_CPT OPT_BUF(BV_CPT)
88 # define PV_DICT OPT_BOTH(OPT_BUF(BV_DICT))
89 # define PV_TSR OPT_BOTH(OPT_BUF(BV_TSR))
90 #endif
91 #ifdef FEAT_COMPL_FUNC
92 # define PV_CFU OPT_BUF(BV_CFU)
93 #endif
94 #ifdef FEAT_FIND_ID
95 # define PV_DEF OPT_BOTH(OPT_BUF(BV_DEF))
96 # define PV_INC OPT_BOTH(OPT_BUF(BV_INC))
97 #endif
98 #define PV_EOL OPT_BUF(BV_EOL)
99 #define PV_EP OPT_BOTH(OPT_BUF(BV_EP))
100 #define PV_ET OPT_BUF(BV_ET)
101 #ifdef FEAT_MBYTE
102 # define PV_FENC OPT_BUF(BV_FENC)
103 #endif
104 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
105 # define PV_BEXPR OPT_BOTH(OPT_BUF(BV_BEXPR))
106 #endif
107 #ifdef FEAT_EVAL
108 # define PV_FEX OPT_BUF(BV_FEX)
109 #endif
110 #define PV_FF OPT_BUF(BV_FF)
111 #define PV_FLP OPT_BUF(BV_FLP)
112 #define PV_FO OPT_BUF(BV_FO)
113 #ifdef FEAT_AUTOCMD
114 # define PV_FT OPT_BUF(BV_FT)
115 #endif
116 #define PV_IMI OPT_BUF(BV_IMI)
117 #define PV_IMS OPT_BUF(BV_IMS)
118 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
119 # define PV_INDE OPT_BUF(BV_INDE)
120 # define PV_INDK OPT_BUF(BV_INDK)
121 #endif
122 #if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
123 # define PV_INEX OPT_BUF(BV_INEX)
124 #endif
125 #define PV_INF OPT_BUF(BV_INF)
126 #define PV_ISK OPT_BUF(BV_ISK)
127 #ifdef FEAT_CRYPT
128 # define PV_KEY OPT_BUF(BV_KEY)
129 #endif
130 #ifdef FEAT_KEYMAP
131 # define PV_KMAP OPT_BUF(BV_KMAP)
132 #endif
133 #define PV_KP OPT_BOTH(OPT_BUF(BV_KP))
134 #ifdef FEAT_LISP
135 # define PV_LISP OPT_BUF(BV_LISP)
136 #endif
137 #define PV_MA OPT_BUF(BV_MA)
138 #define PV_ML OPT_BUF(BV_ML)
139 #define PV_MOD OPT_BUF(BV_MOD)
140 #define PV_MPS OPT_BUF(BV_MPS)
141 #define PV_NF OPT_BUF(BV_NF)
142 #ifdef FEAT_OSFILETYPE
143 # define PV_OFT OPT_BUF(BV_OFT)
144 #endif
145 #ifdef FEAT_COMPL_FUNC
146 # define PV_OFU OPT_BUF(BV_OFU)
147 #endif
148 #define PV_PATH OPT_BOTH(OPT_BUF(BV_PATH))
149 #define PV_PI OPT_BUF(BV_PI)
150 #ifdef FEAT_TEXTOBJ
151 # define PV_QE OPT_BUF(BV_QE)
152 #endif
153 #define PV_RO OPT_BUF(BV_RO)
154 #ifdef FEAT_SMARTINDENT
155 # define PV_SI OPT_BUF(BV_SI)
156 #endif
157 #ifndef SHORT_FNAME
158 # define PV_SN OPT_BUF(BV_SN)
159 #endif
160 #ifdef FEAT_SYN_HL
161 # define PV_SMC OPT_BUF(BV_SMC)
162 # define PV_SYN OPT_BUF(BV_SYN)
163 #endif
164 #ifdef FEAT_SPELL
165 # define PV_SPC OPT_BUF(BV_SPC)
166 # define PV_SPF OPT_BUF(BV_SPF)
167 # define PV_SPL OPT_BUF(BV_SPL)
168 #endif
169 #define PV_STS OPT_BUF(BV_STS)
170 #ifdef FEAT_SEARCHPATH
171 # define PV_SUA OPT_BUF(BV_SUA)
172 #endif
173 #define PV_SW OPT_BUF(BV_SW)
174 #define PV_SWF OPT_BUF(BV_SWF)
175 #ifdef FEAT_COMPL_FUNC
176 # define PV_TFU OPT_BUF(BV_TFU)
177 #endif
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 static char_u *p_tfu;
295 #endif
296 static int p_eol;
297 static int p_et;
298 #ifdef FEAT_MBYTE
299 static char_u *p_fenc;
300 #endif
301 static char_u *p_ff;
302 static char_u *p_fo;
303 static char_u *p_flp;
304 #ifdef FEAT_AUTOCMD
305 static char_u *p_ft;
306 #endif
307 static long p_iminsert;
308 static long p_imsearch;
309 #if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
310 static char_u *p_inex;
311 #endif
312 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
313 static char_u *p_inde;
314 static char_u *p_indk;
315 #endif
316 #if defined(FEAT_EVAL)
317 static char_u *p_fex;
318 #endif
319 static int p_inf;
320 static char_u *p_isk;
321 #ifdef FEAT_CRYPT
322 static char_u *p_key;
323 #endif
324 #ifdef FEAT_LISP
325 static int p_lisp;
326 #endif
327 static int p_ml;
328 static int p_ma;
329 static int p_mod;
330 static char_u *p_mps;
331 static char_u *p_nf;
332 #ifdef FEAT_OSFILETYPE
333 static char_u *p_oft;
334 #endif
335 static int p_pi;
336 #ifdef FEAT_TEXTOBJ
337 static char_u *p_qe;
338 #endif
339 static int p_ro;
340 #ifdef FEAT_SMARTINDENT
341 static int p_si;
342 #endif
343 #ifndef SHORT_FNAME
344 static int p_sn;
345 #endif
346 static long p_sts;
347 #if defined(FEAT_SEARCHPATH)
348 static char_u *p_sua;
349 #endif
350 static long p_sw;
351 static int p_swf;
352 #ifdef FEAT_SYN_HL
353 static long p_smc;
354 static char_u *p_syn;
355 #endif
356 #ifdef FEAT_SPELL
357 static char_u *p_spc;
358 static char_u *p_spf;
359 static char_u *p_spl;
360 #endif
361 static long p_ts;
362 static long p_tw;
363 static int p_tx;
364 static long p_wm;
365 #ifdef FEAT_KEYMAP
366 static char_u *p_keymap;
367 #endif
369 /* Saved values for when 'bin' is set. */
370 static int p_et_nobin;
371 static int p_ml_nobin;
372 static long p_tw_nobin;
373 static long p_wm_nobin;
375 /* Saved values for when 'paste' is set */
376 static long p_tw_nopaste;
377 static long p_wm_nopaste;
378 static long p_sts_nopaste;
379 static int p_ai_nopaste;
381 struct vimoption
383 char *fullname; /* full option name */
384 char *shortname; /* permissible abbreviation */
385 long_u flags; /* see below */
386 char_u *var; /* global option: pointer to variable;
387 * window-local option: VAR_WIN;
388 * buffer-local option: global value */
389 idopt_T indir; /* global option: PV_NONE;
390 * local option: indirect option index */
391 char_u *def_val[2]; /* default values for variable (vi and vim) */
392 #ifdef FEAT_EVAL
393 scid_T scriptID; /* script in which the option was last set */
394 # define SCRIPTID_INIT , 0
395 #else
396 # define SCRIPTID_INIT
397 #endif
400 #define VI_DEFAULT 0 /* def_val[VI_DEFAULT] is Vi default value */
401 #define VIM_DEFAULT 1 /* def_val[VIM_DEFAULT] is Vim default value */
404 * Flags
406 #define P_BOOL 0x01 /* the option is boolean */
407 #define P_NUM 0x02 /* the option is numeric */
408 #define P_STRING 0x04 /* the option is a string */
409 #define P_ALLOCED 0x08 /* the string option is in allocated memory,
410 must use free_string_option() when
411 assigning new value. Not set if default is
412 the same. */
413 #define P_EXPAND 0x10 /* environment expansion. NOTE: P_EXPAND can
414 never be used for local or hidden options! */
415 #define P_NODEFAULT 0x40 /* don't set to default value */
416 #define P_DEF_ALLOCED 0x80 /* default value is in allocated memory, must
417 use vim_free() when assigning new value */
418 #define P_WAS_SET 0x100 /* option has been set/reset */
419 #define P_NO_MKRC 0x200 /* don't include in :mkvimrc output */
420 #define P_VI_DEF 0x400 /* Use Vi default for Vim */
421 #define P_VIM 0x800 /* Vim option, reset when 'cp' set */
423 /* when option changed, what to display: */
424 #define P_RSTAT 0x1000 /* redraw status lines */
425 #define P_RWIN 0x2000 /* redraw current window */
426 #define P_RBUF 0x4000 /* redraw current buffer */
427 #define P_RALL 0x6000 /* redraw all windows */
428 #define P_RCLR 0x7000 /* clear and redraw all */
430 #define P_COMMA 0x8000 /* comma separated list */
431 #define P_NODUP 0x10000L/* don't allow duplicate strings */
432 #define P_FLAGLIST 0x20000L/* list of single-char flags */
434 #define P_SECURE 0x40000L/* cannot change in modeline or secure mode */
435 #define P_GETTEXT 0x80000L/* expand default value with _() */
436 #define P_NOGLOB 0x100000L/* do not use local value for global vimrc */
437 #define P_NFNAME 0x200000L/* only normal file name chars allowed */
438 #define P_INSECURE 0x400000L/* option was set from a modeline */
439 #define P_PRI_MKRC 0x800000L/* priority for :mkvimrc (setting option has
440 side effects) */
442 #define ISK_LATIN1 (char_u *)"@,48-57,_,192-255"
444 /* 'isprint' for latin1 is also used for MS-Windows cp1252, where 0x80 is used
445 * for the currency sign. */
446 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
447 # define ISP_LATIN1 (char_u *)"@,~-255"
448 #else
449 # define ISP_LATIN1 (char_u *)"@,161-255"
450 #endif
452 /* The 16 bit MS-DOS version is low on space, make the string as short as
453 * possible when compiling with few features. */
454 #if defined(FEAT_DIFF) || defined(FEAT_FOLDING) || defined(FEAT_SPELL) \
455 || defined(FEAT_VERTSPLIT) || defined(FEAT_CLIPBOARD) \
456 || defined(FEAT_INS_EXPAND) || defined(FEAT_SYN_HL)
457 # 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"
458 #else
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,t:Title,v:Visual,w:WarningMsg,W:WildMenu,>:SignColumn,*:TabLine,#:TabLineSel,_:TabLineFill"
460 #endif
463 * options[] is initialized here.
464 * The order of the options MUST be alphabetic for ":set all" and findoption().
465 * All option names MUST start with a lowercase letter (for findoption()).
466 * Exception: "t_" options are at the end.
467 * The options with a NULL variable are 'hidden': a set command for them is
468 * ignored and they are not printed.
470 static struct vimoption
471 #ifdef FEAT_GUI_W16
472 _far
473 #endif
474 options[] =
476 {"aleph", "al", P_NUM|P_VI_DEF,
477 #ifdef FEAT_RIGHTLEFT
478 (char_u *)&p_aleph, PV_NONE,
479 #else
480 (char_u *)NULL, PV_NONE,
481 #endif
483 #if (defined(MSDOS) || defined(WIN3264) || defined(OS2)) && !defined(FEAT_GUI_W32)
484 (char_u *)128L,
485 #else
486 (char_u *)224L,
487 #endif
488 (char_u *)0L} SCRIPTID_INIT},
489 {"antialias", "anti", P_BOOL|P_VI_DEF|P_VIM|P_RCLR,
490 #if defined(FEAT_GUI) && defined(MACOS_X)
491 (char_u *)&p_antialias, PV_NONE,
492 {(char_u *)FALSE, (char_u *)FALSE}
493 #else
494 (char_u *)NULL, PV_NONE,
495 {(char_u *)FALSE, (char_u *)FALSE}
496 #endif
497 SCRIPTID_INIT},
498 {"arabic", "arab", P_BOOL|P_VI_DEF|P_VIM,
499 #ifdef FEAT_ARABIC
500 (char_u *)VAR_WIN, PV_ARAB,
501 #else
502 (char_u *)NULL, PV_NONE,
503 #endif
504 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
505 {"arabicshape", "arshape", P_BOOL|P_VI_DEF|P_VIM|P_RCLR,
506 #ifdef FEAT_ARABIC
507 (char_u *)&p_arshape, PV_NONE,
508 #else
509 (char_u *)NULL, PV_NONE,
510 #endif
511 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
512 {"allowrevins", "ari", P_BOOL|P_VI_DEF|P_VIM,
513 #ifdef FEAT_RIGHTLEFT
514 (char_u *)&p_ari, PV_NONE,
515 #else
516 (char_u *)NULL, PV_NONE,
517 #endif
518 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
519 {"altkeymap", "akm", P_BOOL|P_VI_DEF,
520 #ifdef FEAT_FKMAP
521 (char_u *)&p_altkeymap, PV_NONE,
522 #else
523 (char_u *)NULL, PV_NONE,
524 #endif
525 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
526 {"ambiwidth", "ambw", P_STRING|P_VI_DEF|P_RCLR,
527 #if defined(FEAT_MBYTE)
528 (char_u *)&p_ambw, PV_NONE,
529 {(char_u *)"single", (char_u *)0L}
530 #else
531 (char_u *)NULL, PV_NONE,
532 {(char_u *)0L, (char_u *)0L}
533 #endif
534 SCRIPTID_INIT},
535 #ifdef FEAT_AUTOCHDIR
536 {"autochdir", "acd", P_BOOL|P_VI_DEF,
537 (char_u *)&p_acd, PV_NONE,
538 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
539 #endif
540 {"autoindent", "ai", P_BOOL|P_VI_DEF,
541 (char_u *)&p_ai, PV_AI,
542 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
543 {"autoprint", "ap", P_BOOL|P_VI_DEF,
544 (char_u *)NULL, PV_NONE,
545 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
546 {"autoread", "ar", P_BOOL|P_VI_DEF,
547 (char_u *)&p_ar, PV_AR,
548 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
549 {"autowrite", "aw", P_BOOL|P_VI_DEF,
550 (char_u *)&p_aw, PV_NONE,
551 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
552 {"autowriteall","awa", P_BOOL|P_VI_DEF,
553 (char_u *)&p_awa, PV_NONE,
554 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
555 {"background", "bg", P_STRING|P_VI_DEF|P_RCLR,
556 (char_u *)&p_bg, PV_NONE,
558 #if (defined(MSDOS) || defined(OS2) || defined(WIN3264)) && !defined(FEAT_GUI)
559 (char_u *)"dark",
560 #else
561 (char_u *)"light",
562 #endif
563 (char_u *)0L} SCRIPTID_INIT},
564 {"backspace", "bs", P_STRING|P_VI_DEF|P_VIM|P_COMMA|P_NODUP,
565 (char_u *)&p_bs, PV_NONE,
566 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
567 {"backup", "bk", P_BOOL|P_VI_DEF|P_VIM,
568 (char_u *)&p_bk, PV_NONE,
569 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
570 {"backupcopy", "bkc", P_STRING|P_VIM|P_COMMA|P_NODUP,
571 (char_u *)&p_bkc, PV_NONE,
572 #ifdef UNIX
573 {(char_u *)"yes", (char_u *)"auto"}
574 #else
575 {(char_u *)"auto", (char_u *)"auto"}
576 #endif
577 SCRIPTID_INIT},
578 {"backupdir", "bdir", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP|P_SECURE,
579 (char_u *)&p_bdir, PV_NONE,
580 {(char_u *)DFLT_BDIR, (char_u *)0L} SCRIPTID_INIT},
581 {"backupext", "bex", P_STRING|P_VI_DEF|P_NFNAME,
582 (char_u *)&p_bex, PV_NONE,
584 #ifdef VMS
585 (char_u *)"_",
586 #else
587 (char_u *)"~",
588 #endif
589 (char_u *)0L} SCRIPTID_INIT},
590 {"backupskip", "bsk", P_STRING|P_VI_DEF|P_COMMA,
591 #ifdef FEAT_WILDIGN
592 (char_u *)&p_bsk, PV_NONE,
593 {(char_u *)"", (char_u *)0L}
594 #else
595 (char_u *)NULL, PV_NONE,
596 {(char_u *)0L, (char_u *)0L}
597 #endif
598 SCRIPTID_INIT},
599 #ifdef FEAT_BEVAL
600 {"balloondelay","bdlay",P_NUM|P_VI_DEF,
601 (char_u *)&p_bdlay, PV_NONE,
602 {(char_u *)600L, (char_u *)0L} SCRIPTID_INIT},
603 {"ballooneval", "beval",P_BOOL|P_VI_DEF|P_NO_MKRC,
604 (char_u *)&p_beval, PV_NONE,
605 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
606 # ifdef FEAT_EVAL
607 {"balloonexpr", "bexpr", P_STRING|P_ALLOCED|P_VI_DEF|P_VIM,
608 (char_u *)&p_bexpr, PV_BEXPR,
609 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
610 # endif
611 #endif
612 {"beautify", "bf", P_BOOL|P_VI_DEF,
613 (char_u *)NULL, PV_NONE,
614 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
615 {"binary", "bin", P_BOOL|P_VI_DEF|P_RSTAT,
616 (char_u *)&p_bin, PV_BIN,
617 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
618 {"bioskey", "biosk",P_BOOL|P_VI_DEF,
619 #ifdef MSDOS
620 (char_u *)&p_biosk, PV_NONE,
621 #else
622 (char_u *)NULL, PV_NONE,
623 #endif
624 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
625 {"bomb", NULL, P_BOOL|P_NO_MKRC|P_VI_DEF|P_RSTAT,
626 #ifdef FEAT_MBYTE
627 (char_u *)&p_bomb, PV_BOMB,
628 #else
629 (char_u *)NULL, PV_NONE,
630 #endif
631 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
632 {"breakat", "brk", P_STRING|P_VI_DEF|P_RALL|P_FLAGLIST,
633 #ifdef FEAT_LINEBREAK
634 (char_u *)&p_breakat, PV_NONE,
635 {(char_u *)" \t!@*-+;:,./?", (char_u *)0L}
636 #else
637 (char_u *)NULL, PV_NONE,
638 {(char_u *)0L, (char_u *)0L}
639 #endif
640 SCRIPTID_INIT},
641 {"browsedir", "bsdir",P_STRING|P_VI_DEF,
642 #ifdef FEAT_BROWSE
643 (char_u *)&p_bsdir, PV_NONE,
644 {(char_u *)"last", (char_u *)0L}
645 #else
646 (char_u *)NULL, PV_NONE,
647 {(char_u *)0L, (char_u *)0L}
648 #endif
649 SCRIPTID_INIT},
650 {"bufhidden", "bh", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB,
651 #if defined(FEAT_QUICKFIX)
652 (char_u *)&p_bh, PV_BH,
653 {(char_u *)"", (char_u *)0L}
654 #else
655 (char_u *)NULL, PV_NONE,
656 {(char_u *)0L, (char_u *)0L}
657 #endif
658 SCRIPTID_INIT},
659 {"buflisted", "bl", P_BOOL|P_VI_DEF|P_NOGLOB,
660 (char_u *)&p_bl, PV_BL,
661 {(char_u *)1L, (char_u *)0L}
662 SCRIPTID_INIT},
663 {"buftype", "bt", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB,
664 #if defined(FEAT_QUICKFIX)
665 (char_u *)&p_bt, PV_BT,
666 {(char_u *)"", (char_u *)0L}
667 #else
668 (char_u *)NULL, PV_NONE,
669 {(char_u *)0L, (char_u *)0L}
670 #endif
671 SCRIPTID_INIT},
672 {"casemap", "cmp", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
673 #ifdef FEAT_MBYTE
674 (char_u *)&p_cmp, PV_NONE,
675 {(char_u *)"internal,keepascii", (char_u *)0L}
676 #else
677 (char_u *)NULL, PV_NONE,
678 {(char_u *)0L, (char_u *)0L}
679 #endif
680 SCRIPTID_INIT},
681 {"cdpath", "cd", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
682 #ifdef FEAT_SEARCHPATH
683 (char_u *)&p_cdpath, PV_NONE,
684 {(char_u *)",,", (char_u *)0L}
685 #else
686 (char_u *)NULL, PV_NONE,
687 {(char_u *)0L, (char_u *)0L}
688 #endif
689 SCRIPTID_INIT},
690 {"cedit", NULL, P_STRING,
691 #ifdef FEAT_CMDWIN
692 (char_u *)&p_cedit, PV_NONE,
693 {(char_u *)"", (char_u *)CTRL_F_STR}
694 #else
695 (char_u *)NULL, PV_NONE,
696 {(char_u *)0L, (char_u *)0L}
697 #endif
698 SCRIPTID_INIT},
699 {"charconvert", "ccv", P_STRING|P_VI_DEF|P_SECURE,
700 #if defined(FEAT_MBYTE) && defined(FEAT_EVAL)
701 (char_u *)&p_ccv, PV_NONE,
702 {(char_u *)"", (char_u *)0L}
703 #else
704 (char_u *)NULL, PV_NONE,
705 {(char_u *)0L, (char_u *)0L}
706 #endif
707 SCRIPTID_INIT},
708 {"cindent", "cin", P_BOOL|P_VI_DEF|P_VIM,
709 #ifdef FEAT_CINDENT
710 (char_u *)&p_cin, PV_CIN,
711 #else
712 (char_u *)NULL, PV_NONE,
713 #endif
714 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
715 {"cinkeys", "cink", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
716 #ifdef FEAT_CINDENT
717 (char_u *)&p_cink, PV_CINK,
718 {(char_u *)"0{,0},0),:,0#,!^F,o,O,e", (char_u *)0L}
719 #else
720 (char_u *)NULL, PV_NONE,
721 {(char_u *)0L, (char_u *)0L}
722 #endif
723 SCRIPTID_INIT},
724 {"cinoptions", "cino", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
725 #ifdef FEAT_CINDENT
726 (char_u *)&p_cino, PV_CINO,
727 #else
728 (char_u *)NULL, PV_NONE,
729 #endif
730 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
731 {"cinwords", "cinw", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
732 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
733 (char_u *)&p_cinw, PV_CINW,
734 {(char_u *)"if,else,while,do,for,switch",
735 (char_u *)0L}
736 #else
737 (char_u *)NULL, PV_NONE,
738 {(char_u *)0L, (char_u *)0L}
739 #endif
740 SCRIPTID_INIT},
741 {"clipboard", "cb", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
742 #ifdef FEAT_CLIPBOARD
743 (char_u *)&p_cb, PV_NONE,
744 # ifdef FEAT_XCLIPBOARD
745 {(char_u *)"autoselect,exclude:cons\\|linux",
746 (char_u *)0L}
747 # else
748 {(char_u *)"", (char_u *)0L}
749 # endif
750 #else
751 (char_u *)NULL, PV_NONE,
752 {(char_u *)"", (char_u *)0L}
753 #endif
754 SCRIPTID_INIT},
755 {"cmdheight", "ch", P_NUM|P_VI_DEF|P_RALL,
756 (char_u *)&p_ch, PV_NONE,
757 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
758 {"cmdwinheight", "cwh", P_NUM|P_VI_DEF,
759 #ifdef FEAT_CMDWIN
760 (char_u *)&p_cwh, PV_NONE,
761 #else
762 (char_u *)NULL, PV_NONE,
763 #endif
764 {(char_u *)7L, (char_u *)0L} SCRIPTID_INIT},
765 {"columns", "co", P_NUM|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RCLR,
766 (char_u *)&Columns, PV_NONE,
767 {(char_u *)80L, (char_u *)0L} SCRIPTID_INIT},
768 {"comments", "com", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
769 #ifdef FEAT_COMMENTS
770 (char_u *)&p_com, PV_COM,
771 {(char_u *)"s1:/*,mb:*,ex:*/,://,b:#,:%,:XCOMM,n:>,fb:-",
772 (char_u *)0L}
773 #else
774 (char_u *)NULL, PV_NONE,
775 {(char_u *)0L, (char_u *)0L}
776 #endif
777 SCRIPTID_INIT},
778 {"commentstring", "cms", P_STRING|P_ALLOCED|P_VI_DEF,
779 #ifdef FEAT_FOLDING
780 (char_u *)&p_cms, PV_CMS,
781 {(char_u *)"/*%s*/", (char_u *)0L}
782 #else
783 (char_u *)NULL, PV_NONE,
784 {(char_u *)0L, (char_u *)0L}
785 #endif
786 SCRIPTID_INIT},
787 /* P_PRI_MKRC isn't needed here, optval_default()
788 * always returns TRUE for 'compatible' */
789 {"compatible", "cp", P_BOOL|P_RALL,
790 (char_u *)&p_cp, PV_NONE,
791 {(char_u *)TRUE, (char_u *)FALSE} SCRIPTID_INIT},
792 {"complete", "cpt", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
793 #ifdef FEAT_INS_EXPAND
794 (char_u *)&p_cpt, PV_CPT,
795 {(char_u *)".,w,b,u,t,i", (char_u *)0L}
796 #else
797 (char_u *)NULL, PV_NONE,
798 {(char_u *)0L, (char_u *)0L}
799 #endif
800 SCRIPTID_INIT},
801 {"completefunc", "cfu", P_STRING|P_ALLOCED|P_VI_DEF|P_SECURE,
802 #ifdef FEAT_COMPL_FUNC
803 (char_u *)&p_cfu, PV_CFU,
804 {(char_u *)"", (char_u *)0L}
805 #else
806 (char_u *)NULL, PV_NONE,
807 {(char_u *)0L, (char_u *)0L}
808 #endif
809 SCRIPTID_INIT},
810 {"completeopt", "cot", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
811 #ifdef FEAT_INS_EXPAND
812 (char_u *)&p_cot, PV_NONE,
813 {(char_u *)"menu,preview", (char_u *)0L}
814 #else
815 (char_u *)NULL, PV_NONE,
816 {(char_u *)0L, (char_u *)0L}
817 #endif
818 SCRIPTID_INIT},
819 {"confirm", "cf", P_BOOL|P_VI_DEF,
820 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
821 (char_u *)&p_confirm, PV_NONE,
822 #else
823 (char_u *)NULL, PV_NONE,
824 #endif
825 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
826 {"conskey", "consk",P_BOOL|P_VI_DEF,
827 #ifdef MSDOS
828 (char_u *)&p_consk, PV_NONE,
829 #else
830 (char_u *)NULL, PV_NONE,
831 #endif
832 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
833 {"copyindent", "ci", P_BOOL|P_VI_DEF|P_VIM,
834 (char_u *)&p_ci, PV_CI,
835 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
836 {"cpoptions", "cpo", P_STRING|P_VIM|P_RALL|P_FLAGLIST,
837 (char_u *)&p_cpo, PV_NONE,
838 {(char_u *)CPO_VI, (char_u *)CPO_VIM}
839 SCRIPTID_INIT},
840 {"cscopepathcomp", "cspc", P_NUM|P_VI_DEF|P_VIM,
841 #ifdef FEAT_CSCOPE
842 (char_u *)&p_cspc, PV_NONE,
843 #else
844 (char_u *)NULL, PV_NONE,
845 #endif
846 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
847 {"cscopeprg", "csprg", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
848 #ifdef FEAT_CSCOPE
849 (char_u *)&p_csprg, PV_NONE,
850 {(char_u *)"cscope", (char_u *)0L}
851 #else
852 (char_u *)NULL, PV_NONE,
853 {(char_u *)0L, (char_u *)0L}
854 #endif
855 SCRIPTID_INIT},
856 {"cscopequickfix", "csqf", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
857 #if defined(FEAT_CSCOPE) && defined(FEAT_QUICKFIX)
858 (char_u *)&p_csqf, PV_NONE,
859 {(char_u *)"", (char_u *)0L}
860 #else
861 (char_u *)NULL, PV_NONE,
862 {(char_u *)0L, (char_u *)0L}
863 #endif
864 SCRIPTID_INIT},
865 {"cscopetag", "cst", P_BOOL|P_VI_DEF|P_VIM,
866 #ifdef FEAT_CSCOPE
867 (char_u *)&p_cst, PV_NONE,
868 #else
869 (char_u *)NULL, PV_NONE,
870 #endif
871 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
872 {"cscopetagorder", "csto", P_NUM|P_VI_DEF|P_VIM,
873 #ifdef FEAT_CSCOPE
874 (char_u *)&p_csto, PV_NONE,
875 #else
876 (char_u *)NULL, PV_NONE,
877 #endif
878 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
879 {"cscopeverbose", "csverb", P_BOOL|P_VI_DEF|P_VIM,
880 #ifdef FEAT_CSCOPE
881 (char_u *)&p_csverbose, PV_NONE,
882 #else
883 (char_u *)NULL, PV_NONE,
884 #endif
885 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
886 {"cursorcolumn", "cuc", P_BOOL|P_VI_DEF|P_RWIN,
887 #ifdef FEAT_SYN_HL
888 (char_u *)VAR_WIN, PV_CUC,
889 #else
890 (char_u *)NULL, PV_NONE,
891 #endif
892 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
893 {"cursorline", "cul", P_BOOL|P_VI_DEF|P_RWIN,
894 #ifdef FEAT_SYN_HL
895 (char_u *)VAR_WIN, PV_CUL,
896 #else
897 (char_u *)NULL, PV_NONE,
898 #endif
899 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
900 {"debug", NULL, P_STRING|P_VI_DEF,
901 (char_u *)&p_debug, PV_NONE,
902 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
903 {"define", "def", P_STRING|P_ALLOCED|P_VI_DEF,
904 #ifdef FEAT_FIND_ID
905 (char_u *)&p_def, PV_DEF,
906 {(char_u *)"^\\s*#\\s*define", (char_u *)0L}
907 #else
908 (char_u *)NULL, PV_NONE,
909 {(char_u *)NULL, (char_u *)0L}
910 #endif
911 SCRIPTID_INIT},
912 {"delcombine", "deco", P_BOOL|P_VI_DEF|P_VIM,
913 #ifdef FEAT_MBYTE
914 (char_u *)&p_deco, PV_NONE,
915 #else
916 (char_u *)NULL, PV_NONE,
917 #endif
918 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
919 {"dictionary", "dict", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
920 #ifdef FEAT_INS_EXPAND
921 (char_u *)&p_dict, PV_DICT,
922 #else
923 (char_u *)NULL, PV_NONE,
924 #endif
925 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
926 {"diff", NULL, P_BOOL|P_VI_DEF|P_RWIN|P_NOGLOB,
927 #ifdef FEAT_DIFF
928 (char_u *)VAR_WIN, PV_DIFF,
929 #else
930 (char_u *)NULL, PV_NONE,
931 #endif
932 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
933 {"diffexpr", "dex", P_STRING|P_VI_DEF|P_SECURE,
934 #if defined(FEAT_DIFF) && defined(FEAT_EVAL)
935 (char_u *)&p_dex, PV_NONE,
936 {(char_u *)"", (char_u *)0L}
937 #else
938 (char_u *)NULL, PV_NONE,
939 {(char_u *)0L, (char_u *)0L}
940 #endif
941 SCRIPTID_INIT},
942 {"diffopt", "dip", P_STRING|P_ALLOCED|P_VI_DEF|P_RWIN|P_COMMA|P_NODUP,
943 #ifdef FEAT_DIFF
944 (char_u *)&p_dip, PV_NONE,
945 {(char_u *)"filler", (char_u *)NULL}
946 #else
947 (char_u *)NULL, PV_NONE,
948 {(char_u *)"", (char_u *)NULL}
949 #endif
950 SCRIPTID_INIT},
951 {"digraph", "dg", P_BOOL|P_VI_DEF|P_VIM,
952 #ifdef FEAT_DIGRAPHS
953 (char_u *)&p_dg, PV_NONE,
954 #else
955 (char_u *)NULL, PV_NONE,
956 #endif
957 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
958 {"directory", "dir", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP|P_SECURE,
959 (char_u *)&p_dir, PV_NONE,
960 {(char_u *)DFLT_DIR, (char_u *)0L} SCRIPTID_INIT},
961 {"display", "dy", P_STRING|P_VI_DEF|P_COMMA|P_RALL|P_NODUP,
962 (char_u *)&p_dy, PV_NONE,
963 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
964 {"eadirection", "ead", P_STRING|P_VI_DEF,
965 #ifdef FEAT_VERTSPLIT
966 (char_u *)&p_ead, PV_NONE,
967 {(char_u *)"both", (char_u *)0L}
968 #else
969 (char_u *)NULL, PV_NONE,
970 {(char_u *)NULL, (char_u *)0L}
971 #endif
972 SCRIPTID_INIT},
973 {"edcompatible","ed", P_BOOL|P_VI_DEF,
974 (char_u *)&p_ed, PV_NONE,
975 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
976 {"encoding", "enc", P_STRING|P_VI_DEF|P_RCLR,
977 #ifdef FEAT_MBYTE
978 (char_u *)&p_enc, PV_NONE,
979 {(char_u *)ENC_DFLT, (char_u *)0L}
980 #else
981 (char_u *)NULL, PV_NONE,
982 {(char_u *)0L, (char_u *)0L}
983 #endif
984 SCRIPTID_INIT},
985 {"endofline", "eol", P_BOOL|P_NO_MKRC|P_VI_DEF|P_RSTAT,
986 (char_u *)&p_eol, PV_EOL,
987 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
988 {"equalalways", "ea", P_BOOL|P_VI_DEF|P_RALL,
989 (char_u *)&p_ea, PV_NONE,
990 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
991 {"equalprg", "ep", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
992 (char_u *)&p_ep, PV_EP,
993 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
994 {"errorbells", "eb", P_BOOL|P_VI_DEF,
995 (char_u *)&p_eb, PV_NONE,
996 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
997 {"errorfile", "ef", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
998 #ifdef FEAT_QUICKFIX
999 (char_u *)&p_ef, PV_NONE,
1000 {(char_u *)DFLT_ERRORFILE, (char_u *)0L}
1001 #else
1002 (char_u *)NULL, PV_NONE,
1003 {(char_u *)NULL, (char_u *)0L}
1004 #endif
1005 SCRIPTID_INIT},
1006 {"errorformat", "efm", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1007 #ifdef FEAT_QUICKFIX
1008 (char_u *)&p_efm, PV_EFM,
1009 {(char_u *)DFLT_EFM, (char_u *)0L}
1010 #else
1011 (char_u *)NULL, PV_NONE,
1012 {(char_u *)NULL, (char_u *)0L}
1013 #endif
1014 SCRIPTID_INIT},
1015 {"esckeys", "ek", P_BOOL|P_VIM,
1016 (char_u *)&p_ek, PV_NONE,
1017 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
1018 {"eventignore", "ei", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1019 #ifdef FEAT_AUTOCMD
1020 (char_u *)&p_ei, PV_NONE,
1021 #else
1022 (char_u *)NULL, PV_NONE,
1023 #endif
1024 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1025 {"expandtab", "et", P_BOOL|P_VI_DEF|P_VIM,
1026 (char_u *)&p_et, PV_ET,
1027 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1028 {"exrc", "ex", P_BOOL|P_VI_DEF|P_SECURE,
1029 (char_u *)&p_exrc, PV_NONE,
1030 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1031 {"fileencoding","fenc", P_STRING|P_ALLOCED|P_VI_DEF|P_RSTAT|P_RBUF|P_NO_MKRC,
1032 #ifdef FEAT_MBYTE
1033 (char_u *)&p_fenc, PV_FENC,
1034 {(char_u *)"", (char_u *)0L}
1035 #else
1036 (char_u *)NULL, PV_NONE,
1037 {(char_u *)0L, (char_u *)0L}
1038 #endif
1039 SCRIPTID_INIT},
1040 {"fileencodings","fencs", P_STRING|P_VI_DEF|P_COMMA,
1041 #ifdef FEAT_MBYTE
1042 (char_u *)&p_fencs, PV_NONE,
1043 {(char_u *)"ucs-bom", (char_u *)0L}
1044 #else
1045 (char_u *)NULL, PV_NONE,
1046 {(char_u *)0L, (char_u *)0L}
1047 #endif
1048 SCRIPTID_INIT},
1049 {"fileformat", "ff", P_STRING|P_ALLOCED|P_VI_DEF|P_RSTAT|P_NO_MKRC,
1050 (char_u *)&p_ff, PV_FF,
1051 {(char_u *)DFLT_FF, (char_u *)0L} SCRIPTID_INIT},
1052 {"fileformats", "ffs", P_STRING|P_VIM|P_COMMA|P_NODUP,
1053 (char_u *)&p_ffs, PV_NONE,
1054 {(char_u *)DFLT_FFS_VI, (char_u *)DFLT_FFS_VIM}
1055 SCRIPTID_INIT},
1056 {"filetype", "ft", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB|P_NFNAME,
1057 #ifdef FEAT_AUTOCMD
1058 (char_u *)&p_ft, PV_FT,
1059 {(char_u *)"", (char_u *)0L}
1060 #else
1061 (char_u *)NULL, PV_NONE,
1062 {(char_u *)0L, (char_u *)0L}
1063 #endif
1064 SCRIPTID_INIT},
1065 {"fillchars", "fcs", P_STRING|P_VI_DEF|P_RALL|P_COMMA|P_NODUP,
1066 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
1067 (char_u *)&p_fcs, PV_NONE,
1068 {(char_u *)"vert:|,fold:-", (char_u *)0L}
1069 #else
1070 (char_u *)NULL, PV_NONE,
1071 {(char_u *)"", (char_u *)0L}
1072 #endif
1073 SCRIPTID_INIT},
1074 {"fkmap", "fk", P_BOOL|P_VI_DEF,
1075 #ifdef FEAT_FKMAP
1076 (char_u *)&p_fkmap, PV_NONE,
1077 #else
1078 (char_u *)NULL, PV_NONE,
1079 #endif
1080 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1081 {"flash", "fl", P_BOOL|P_VI_DEF,
1082 (char_u *)NULL, PV_NONE,
1083 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1084 #ifdef FEAT_FOLDING
1085 {"foldclose", "fcl", P_STRING|P_VI_DEF|P_COMMA|P_NODUP|P_RWIN,
1086 (char_u *)&p_fcl, PV_NONE,
1087 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1088 {"foldcolumn", "fdc", P_NUM|P_VI_DEF|P_RWIN,
1089 (char_u *)VAR_WIN, PV_FDC,
1090 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1091 {"foldenable", "fen", P_BOOL|P_VI_DEF|P_RWIN,
1092 (char_u *)VAR_WIN, PV_FEN,
1093 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1094 {"foldexpr", "fde", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1095 # ifdef FEAT_EVAL
1096 (char_u *)VAR_WIN, PV_FDE,
1097 {(char_u *)"0", (char_u *)NULL}
1098 # else
1099 (char_u *)NULL, PV_NONE,
1100 {(char_u *)NULL, (char_u *)0L}
1101 # endif
1102 SCRIPTID_INIT},
1103 {"foldignore", "fdi", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1104 (char_u *)VAR_WIN, PV_FDI,
1105 {(char_u *)"#", (char_u *)NULL} SCRIPTID_INIT},
1106 {"foldlevel", "fdl", P_NUM|P_VI_DEF|P_RWIN,
1107 (char_u *)VAR_WIN, PV_FDL,
1108 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
1109 {"foldlevelstart","fdls", P_NUM|P_VI_DEF,
1110 (char_u *)&p_fdls, PV_NONE,
1111 {(char_u *)-1L, (char_u *)0L} SCRIPTID_INIT},
1112 {"foldmarker", "fmr", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|
1113 P_RWIN|P_COMMA|P_NODUP,
1114 (char_u *)VAR_WIN, PV_FMR,
1115 {(char_u *)"{{{,}}}", (char_u *)NULL}
1116 SCRIPTID_INIT},
1117 {"foldmethod", "fdm", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1118 (char_u *)VAR_WIN, PV_FDM,
1119 {(char_u *)"manual", (char_u *)NULL} SCRIPTID_INIT},
1120 {"foldminlines","fml", P_NUM|P_VI_DEF|P_RWIN,
1121 (char_u *)VAR_WIN, PV_FML,
1122 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
1123 {"foldnestmax", "fdn", P_NUM|P_VI_DEF|P_RWIN,
1124 (char_u *)VAR_WIN, PV_FDN,
1125 {(char_u *)20L, (char_u *)0L} SCRIPTID_INIT},
1126 {"foldopen", "fdo", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1127 (char_u *)&p_fdo, PV_NONE,
1128 {(char_u *)"block,hor,mark,percent,quickfix,search,tag,undo",
1129 (char_u *)0L} SCRIPTID_INIT},
1130 {"foldtext", "fdt", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1131 # ifdef FEAT_EVAL
1132 (char_u *)VAR_WIN, PV_FDT,
1133 {(char_u *)"foldtext()", (char_u *)NULL}
1134 # else
1135 (char_u *)NULL, PV_NONE,
1136 {(char_u *)NULL, (char_u *)0L}
1137 # endif
1138 SCRIPTID_INIT},
1139 #endif
1140 {"formatexpr", "fex", P_STRING|P_ALLOCED|P_VI_DEF|P_VIM,
1141 #ifdef FEAT_EVAL
1142 (char_u *)&p_fex, PV_FEX,
1143 {(char_u *)"", (char_u *)0L}
1144 #else
1145 (char_u *)NULL, PV_NONE,
1146 {(char_u *)0L, (char_u *)0L}
1147 #endif
1148 SCRIPTID_INIT},
1149 {"formatoptions","fo", P_STRING|P_ALLOCED|P_VIM|P_FLAGLIST,
1150 (char_u *)&p_fo, PV_FO,
1151 {(char_u *)DFLT_FO_VI, (char_u *)DFLT_FO_VIM}
1152 SCRIPTID_INIT},
1153 {"formatlistpat","flp", P_STRING|P_ALLOCED|P_VI_DEF,
1154 (char_u *)&p_flp, PV_FLP,
1155 {(char_u *)"^\\s*\\d\\+[\\]:.)}\\t ]\\s*",
1156 (char_u *)0L} SCRIPTID_INIT},
1157 {"formatprg", "fp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1158 (char_u *)&p_fp, PV_NONE,
1159 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1160 {"fsync", "fs", P_BOOL|P_SECURE|P_VI_DEF,
1161 #ifdef HAVE_FSYNC
1162 (char_u *)&p_fs, PV_NONE,
1163 {(char_u *)TRUE, (char_u *)0L}
1164 #else
1165 (char_u *)NULL, PV_NONE,
1166 {(char_u *)FALSE, (char_u *)0L}
1167 #endif
1168 SCRIPTID_INIT},
1169 {"gdefault", "gd", P_BOOL|P_VI_DEF|P_VIM,
1170 (char_u *)&p_gd, PV_NONE,
1171 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1172 {"graphic", "gr", P_BOOL|P_VI_DEF,
1173 (char_u *)NULL, PV_NONE,
1174 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1175 {"grepformat", "gfm", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1176 #ifdef FEAT_QUICKFIX
1177 (char_u *)&p_gefm, PV_NONE,
1178 {(char_u *)DFLT_GREPFORMAT, (char_u *)0L}
1179 #else
1180 (char_u *)NULL, PV_NONE,
1181 {(char_u *)NULL, (char_u *)0L}
1182 #endif
1183 SCRIPTID_INIT},
1184 {"grepprg", "gp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1185 #ifdef FEAT_QUICKFIX
1186 (char_u *)&p_gp, PV_GP,
1188 # ifdef WIN3264
1189 /* may be changed to "grep -n" in os_win32.c */
1190 (char_u *)"findstr /n",
1191 # else
1192 # ifdef UNIX
1193 /* Add an extra file name so that grep will always
1194 * insert a file name in the match line. */
1195 (char_u *)"grep -n $* /dev/null",
1196 # else
1197 # ifdef VMS
1198 (char_u *)"SEARCH/NUMBERS ",
1199 # else
1200 (char_u *)"grep -n ",
1201 # endif
1202 # endif
1203 # endif
1204 (char_u *)0L}
1205 #else
1206 (char_u *)NULL, PV_NONE,
1207 {(char_u *)NULL, (char_u *)0L}
1208 #endif
1209 SCRIPTID_INIT},
1210 {"guicursor", "gcr", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1211 #ifdef CURSOR_SHAPE
1212 (char_u *)&p_guicursor, PV_NONE,
1214 # ifdef FEAT_GUI
1215 (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",
1216 # else /* MSDOS or Win32 console */
1217 (char_u *)"n-v-c:block,o:hor50,i-ci:hor15,r-cr:hor30,sm:block",
1218 # endif
1219 (char_u *)0L}
1220 #else
1221 (char_u *)NULL, PV_NONE,
1222 {(char_u *)NULL, (char_u *)0L}
1223 #endif
1224 SCRIPTID_INIT},
1225 {"guifont", "gfn", P_STRING|P_VI_DEF|P_RCLR|P_COMMA|P_NODUP,
1226 #ifdef FEAT_GUI
1227 (char_u *)&p_guifont, PV_NONE,
1228 {(char_u *)"", (char_u *)0L}
1229 #else
1230 (char_u *)NULL, PV_NONE,
1231 {(char_u *)NULL, (char_u *)0L}
1232 #endif
1233 SCRIPTID_INIT},
1234 {"guifontset", "gfs", P_STRING|P_VI_DEF|P_RCLR|P_COMMA,
1235 #if defined(FEAT_GUI) && defined(FEAT_XFONTSET)
1236 (char_u *)&p_guifontset, PV_NONE,
1237 {(char_u *)"", (char_u *)0L}
1238 #else
1239 (char_u *)NULL, PV_NONE,
1240 {(char_u *)NULL, (char_u *)0L}
1241 #endif
1242 SCRIPTID_INIT},
1243 {"guifontwide", "gfw", P_STRING|P_VI_DEF|P_RCLR|P_COMMA|P_NODUP,
1244 #if defined(FEAT_GUI) && defined(FEAT_MBYTE)
1245 (char_u *)&p_guifontwide, PV_NONE,
1246 {(char_u *)"", (char_u *)0L}
1247 #else
1248 (char_u *)NULL, PV_NONE,
1249 {(char_u *)NULL, (char_u *)0L}
1250 #endif
1251 SCRIPTID_INIT},
1252 {"guiheadroom", "ghr", P_NUM|P_VI_DEF,
1253 #if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11)
1254 (char_u *)&p_ghr, PV_NONE,
1255 #else
1256 (char_u *)NULL, PV_NONE,
1257 #endif
1258 {(char_u *)50L, (char_u *)0L} SCRIPTID_INIT},
1259 {"guioptions", "go", P_STRING|P_VI_DEF|P_RALL|P_FLAGLIST,
1260 #if defined(FEAT_GUI)
1261 (char_u *)&p_go, PV_NONE,
1262 # if defined(UNIX) && !defined(MACOS)
1263 {(char_u *)"aegimrLtT", (char_u *)0L}
1264 # else
1265 {(char_u *)"egmrLtT", (char_u *)0L}
1266 # endif
1267 #else
1268 (char_u *)NULL, PV_NONE,
1269 {(char_u *)NULL, (char_u *)0L}
1270 #endif
1271 SCRIPTID_INIT},
1272 {"guipty", NULL, P_BOOL|P_VI_DEF,
1273 #if defined(FEAT_GUI)
1274 (char_u *)&p_guipty, PV_NONE,
1275 #else
1276 (char_u *)NULL, PV_NONE,
1277 #endif
1278 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1279 {"guitablabel", "gtl", P_STRING|P_VI_DEF|P_RWIN,
1280 #if defined(FEAT_GUI_TABLINE)
1281 (char_u *)&p_gtl, PV_NONE,
1282 {(char_u *)"", (char_u *)0L}
1283 #else
1284 (char_u *)NULL, PV_NONE,
1285 {(char_u *)NULL, (char_u *)0L}
1286 #endif
1287 SCRIPTID_INIT},
1288 {"guitabtooltip", "gtt", P_STRING|P_VI_DEF|P_RWIN,
1289 #if defined(FEAT_GUI_TABLINE)
1290 (char_u *)&p_gtt, PV_NONE,
1291 {(char_u *)"", (char_u *)0L}
1292 #else
1293 (char_u *)NULL, PV_NONE,
1294 {(char_u *)NULL, (char_u *)0L}
1295 #endif
1296 SCRIPTID_INIT},
1297 {"hardtabs", "ht", P_NUM|P_VI_DEF,
1298 (char_u *)NULL, PV_NONE,
1299 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
1300 {"helpfile", "hf", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1301 (char_u *)&p_hf, PV_NONE,
1302 {(char_u *)DFLT_HELPFILE, (char_u *)0L}
1303 SCRIPTID_INIT},
1304 {"helpheight", "hh", P_NUM|P_VI_DEF,
1305 #ifdef FEAT_WINDOWS
1306 (char_u *)&p_hh, PV_NONE,
1307 #else
1308 (char_u *)NULL, PV_NONE,
1309 #endif
1310 {(char_u *)20L, (char_u *)0L} SCRIPTID_INIT},
1311 {"helplang", "hlg", P_STRING|P_VI_DEF|P_COMMA,
1312 #ifdef FEAT_MULTI_LANG
1313 (char_u *)&p_hlg, PV_NONE,
1314 {(char_u *)"", (char_u *)0L}
1315 #else
1316 (char_u *)NULL, PV_NONE,
1317 {(char_u *)0L, (char_u *)0L}
1318 #endif
1319 SCRIPTID_INIT},
1320 {"hidden", "hid", P_BOOL|P_VI_DEF,
1321 (char_u *)&p_hid, PV_NONE,
1322 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1323 {"highlight", "hl", P_STRING|P_VI_DEF|P_RCLR|P_COMMA|P_NODUP,
1324 (char_u *)&p_hl, PV_NONE,
1325 {(char_u *)HIGHLIGHT_INIT, (char_u *)0L}
1326 SCRIPTID_INIT},
1327 {"history", "hi", P_NUM|P_VIM,
1328 (char_u *)&p_hi, PV_NONE,
1329 {(char_u *)0L, (char_u *)20L} SCRIPTID_INIT},
1330 {"hkmap", "hk", P_BOOL|P_VI_DEF|P_VIM,
1331 #ifdef FEAT_RIGHTLEFT
1332 (char_u *)&p_hkmap, PV_NONE,
1333 #else
1334 (char_u *)NULL, PV_NONE,
1335 #endif
1336 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1337 {"hkmapp", "hkp", P_BOOL|P_VI_DEF|P_VIM,
1338 #ifdef FEAT_RIGHTLEFT
1339 (char_u *)&p_hkmapp, PV_NONE,
1340 #else
1341 (char_u *)NULL, PV_NONE,
1342 #endif
1343 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1344 {"hlsearch", "hls", P_BOOL|P_VI_DEF|P_VIM|P_RALL,
1345 (char_u *)&p_hls, PV_NONE,
1346 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1347 {"icon", NULL, P_BOOL|P_VI_DEF,
1348 #ifdef FEAT_TITLE
1349 (char_u *)&p_icon, PV_NONE,
1350 #else
1351 (char_u *)NULL, PV_NONE,
1352 #endif
1353 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1354 {"iconstring", NULL, P_STRING|P_VI_DEF,
1355 #ifdef FEAT_TITLE
1356 (char_u *)&p_iconstring, PV_NONE,
1357 #else
1358 (char_u *)NULL, PV_NONE,
1359 #endif
1360 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1361 {"ignorecase", "ic", P_BOOL|P_VI_DEF,
1362 (char_u *)&p_ic, PV_NONE,
1363 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1364 {"imactivatekey","imak",P_STRING|P_VI_DEF,
1365 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
1366 (char_u *)&p_imak, PV_NONE,
1367 #else
1368 (char_u *)NULL, PV_NONE,
1369 #endif
1370 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1371 {"imcmdline", "imc", P_BOOL|P_VI_DEF,
1372 #ifdef USE_IM_CONTROL
1373 (char_u *)&p_imcmdline, PV_NONE,
1374 #else
1375 (char_u *)NULL, PV_NONE,
1376 #endif
1377 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1378 {"imdisable", "imd", P_BOOL|P_VI_DEF,
1379 #ifdef USE_IM_CONTROL
1380 (char_u *)&p_imdisable, PV_NONE,
1381 #else
1382 (char_u *)NULL, PV_NONE,
1383 #endif
1384 #ifdef __sgi
1385 {(char_u *)TRUE, (char_u *)0L}
1386 #else
1387 {(char_u *)FALSE, (char_u *)0L}
1388 #endif
1389 SCRIPTID_INIT},
1390 {"iminsert", "imi", P_NUM|P_VI_DEF,
1391 (char_u *)&p_iminsert, PV_IMI,
1392 #ifdef B_IMODE_IM
1393 {(char_u *)B_IMODE_IM, (char_u *)0L}
1394 #else
1395 {(char_u *)B_IMODE_NONE, (char_u *)0L}
1396 #endif
1397 SCRIPTID_INIT},
1398 {"imsearch", "ims", P_NUM|P_VI_DEF,
1399 (char_u *)&p_imsearch, PV_IMS,
1400 #ifdef B_IMODE_IM
1401 {(char_u *)B_IMODE_IM, (char_u *)0L}
1402 #else
1403 {(char_u *)B_IMODE_NONE, (char_u *)0L}
1404 #endif
1405 SCRIPTID_INIT},
1406 {"include", "inc", P_STRING|P_ALLOCED|P_VI_DEF,
1407 #ifdef FEAT_FIND_ID
1408 (char_u *)&p_inc, PV_INC,
1409 {(char_u *)"^\\s*#\\s*include", (char_u *)0L}
1410 #else
1411 (char_u *)NULL, PV_NONE,
1412 {(char_u *)0L, (char_u *)0L}
1413 #endif
1414 SCRIPTID_INIT},
1415 {"includeexpr", "inex", P_STRING|P_ALLOCED|P_VI_DEF,
1416 #if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
1417 (char_u *)&p_inex, PV_INEX,
1418 {(char_u *)"", (char_u *)0L}
1419 #else
1420 (char_u *)NULL, PV_NONE,
1421 {(char_u *)0L, (char_u *)0L}
1422 #endif
1423 SCRIPTID_INIT},
1424 {"incsearch", "is", P_BOOL|P_VI_DEF|P_VIM,
1425 (char_u *)&p_is, PV_NONE,
1426 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1427 {"indentexpr", "inde", P_STRING|P_ALLOCED|P_VI_DEF|P_VIM,
1428 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
1429 (char_u *)&p_inde, PV_INDE,
1430 {(char_u *)"", (char_u *)0L}
1431 #else
1432 (char_u *)NULL, PV_NONE,
1433 {(char_u *)0L, (char_u *)0L}
1434 #endif
1435 SCRIPTID_INIT},
1436 {"indentkeys", "indk", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
1437 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
1438 (char_u *)&p_indk, PV_INDK,
1439 {(char_u *)"0{,0},:,0#,!^F,o,O,e", (char_u *)0L}
1440 #else
1441 (char_u *)NULL, PV_NONE,
1442 {(char_u *)0L, (char_u *)0L}
1443 #endif
1444 SCRIPTID_INIT},
1445 {"infercase", "inf", P_BOOL|P_VI_DEF,
1446 (char_u *)&p_inf, PV_INF,
1447 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1448 {"insertmode", "im", P_BOOL|P_VI_DEF|P_VIM,
1449 (char_u *)&p_im, PV_NONE,
1450 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1451 {"isfname", "isf", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1452 (char_u *)&p_isf, PV_NONE,
1454 #ifdef BACKSLASH_IN_FILENAME
1455 /* Excluded are: & and ^ are special in cmd.exe
1456 * ( and ) are used in text separating fnames */
1457 (char_u *)"@,48-57,/,\\,.,-,_,+,,,#,$,%,{,},[,],:,@-@,!,~,=",
1458 #else
1459 # ifdef AMIGA
1460 (char_u *)"@,48-57,/,.,-,_,+,,,$,:",
1461 # else
1462 # ifdef VMS
1463 (char_u *)"@,48-57,/,.,-,_,+,,,#,$,%,<,>,[,],:,;,~",
1464 # else /* UNIX et al. */
1465 # ifdef EBCDIC
1466 (char_u *)"@,240-249,/,.,-,_,+,,,#,$,%,~,=",
1467 # else
1468 (char_u *)"@,48-57,/,.,-,_,+,,,#,$,%,~,=",
1469 # endif
1470 # endif
1471 # endif
1472 #endif
1473 (char_u *)0L} SCRIPTID_INIT},
1474 {"isident", "isi", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1475 (char_u *)&p_isi, PV_NONE,
1477 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
1478 (char_u *)"@,48-57,_,128-167,224-235",
1479 #else
1480 # ifdef EBCDIC
1481 /* TODO: EBCDIC Check this! @ == isalpha()*/
1482 (char_u *)"@,240-249,_,66-73,81-89,98-105,"
1483 "112-120,128,140-142,156,158,172,"
1484 "174,186,191,203-207,219-225,235-239,"
1485 "251-254",
1486 # else
1487 (char_u *)"@,48-57,_,192-255",
1488 # endif
1489 #endif
1490 (char_u *)0L} SCRIPTID_INIT},
1491 {"iskeyword", "isk", P_STRING|P_ALLOCED|P_VIM|P_COMMA|P_NODUP,
1492 (char_u *)&p_isk, PV_ISK,
1494 #ifdef EBCDIC
1495 (char_u *)"@,240-249,_",
1496 /* TODO: EBCDIC Check this! @ == isalpha()*/
1497 (char_u *)"@,240-249,_,66-73,81-89,98-105,"
1498 "112-120,128,140-142,156,158,172,"
1499 "174,186,191,203-207,219-225,235-239,"
1500 "251-254",
1501 #else
1502 (char_u *)"@,48-57,_",
1503 # if defined(MSDOS) || defined(MSWIN) || defined(OS2)
1504 (char_u *)"@,48-57,_,128-167,224-235"
1505 # else
1506 ISK_LATIN1
1507 # endif
1508 #endif
1509 } SCRIPTID_INIT},
1510 {"isprint", "isp", P_STRING|P_VI_DEF|P_RALL|P_COMMA|P_NODUP,
1511 (char_u *)&p_isp, PV_NONE,
1513 #if defined(MSDOS) || defined(MSWIN) || defined(OS2) \
1514 || (defined(MACOS) && !defined(MACOS_X)) \
1515 || defined(VMS)
1516 (char_u *)"@,~-255",
1517 #else
1518 # ifdef EBCDIC
1519 /* all chars above 63 are printable */
1520 (char_u *)"63-255",
1521 # else
1522 ISP_LATIN1,
1523 # endif
1524 #endif
1525 (char_u *)0L} SCRIPTID_INIT},
1526 {"joinspaces", "js", P_BOOL|P_VI_DEF|P_VIM,
1527 (char_u *)&p_js, PV_NONE,
1528 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1529 {"key", NULL, P_STRING|P_ALLOCED|P_VI_DEF|P_NO_MKRC,
1530 #ifdef FEAT_CRYPT
1531 (char_u *)&p_key, PV_KEY,
1532 {(char_u *)"", (char_u *)0L}
1533 #else
1534 (char_u *)NULL, PV_NONE,
1535 {(char_u *)0L, (char_u *)0L}
1536 #endif
1537 SCRIPTID_INIT},
1538 {"keymap", "kmp", P_STRING|P_ALLOCED|P_VI_DEF|P_RBUF|P_RSTAT|P_NFNAME|P_PRI_MKRC,
1539 #ifdef FEAT_KEYMAP
1540 (char_u *)&p_keymap, PV_KMAP,
1541 {(char_u *)"", (char_u *)0L}
1542 #else
1543 (char_u *)NULL, PV_NONE,
1544 {(char_u *)"", (char_u *)0L}
1545 #endif
1546 SCRIPTID_INIT},
1547 {"keymodel", "km", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1548 #ifdef FEAT_VISUAL
1549 (char_u *)&p_km, PV_NONE,
1550 #else
1551 (char_u *)NULL, PV_NONE,
1552 #endif
1553 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1554 {"keywordprg", "kp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1555 (char_u *)&p_kp, PV_KP,
1557 #if defined(MSDOS) || defined(MSWIN)
1558 (char_u *)":help",
1559 #else
1560 #ifdef VMS
1561 (char_u *)"help",
1562 #else
1563 # if defined(OS2)
1564 (char_u *)"view /",
1565 # else
1566 # ifdef USEMAN_S
1567 (char_u *)"man -s",
1568 # else
1569 (char_u *)"man",
1570 # endif
1571 # endif
1572 #endif
1573 #endif
1574 (char_u *)0L} SCRIPTID_INIT},
1575 {"langmap", "lmap", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1576 #ifdef FEAT_LANGMAP
1577 (char_u *)&p_langmap, PV_NONE,
1578 {(char_u *)"", /* unmatched } */
1579 #else
1580 (char_u *)NULL, PV_NONE,
1581 {(char_u *)NULL,
1582 #endif
1583 (char_u *)0L} SCRIPTID_INIT},
1584 {"langmenu", "lm", P_STRING|P_VI_DEF|P_NFNAME,
1585 #if defined(FEAT_MENU) && defined(FEAT_MULTI_LANG)
1586 (char_u *)&p_lm, PV_NONE,
1587 #else
1588 (char_u *)NULL, PV_NONE,
1589 #endif
1590 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1591 {"laststatus", "ls", P_NUM|P_VI_DEF|P_RALL,
1592 #ifdef FEAT_WINDOWS
1593 (char_u *)&p_ls, PV_NONE,
1594 #else
1595 (char_u *)NULL, PV_NONE,
1596 #endif
1597 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
1598 {"lazyredraw", "lz", P_BOOL|P_VI_DEF,
1599 (char_u *)&p_lz, PV_NONE,
1600 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1601 {"linebreak", "lbr", P_BOOL|P_VI_DEF|P_RWIN,
1602 #ifdef FEAT_LINEBREAK
1603 (char_u *)VAR_WIN, PV_LBR,
1604 #else
1605 (char_u *)NULL, PV_NONE,
1606 #endif
1607 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1608 {"lines", NULL, P_NUM|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RCLR,
1609 (char_u *)&Rows, PV_NONE,
1611 #if defined(MSDOS) || defined(WIN3264) || defined(OS2)
1612 (char_u *)25L,
1613 #else
1614 (char_u *)24L,
1615 #endif
1616 (char_u *)0L} SCRIPTID_INIT},
1617 {"linespace", "lsp", P_NUM|P_VI_DEF|P_RCLR,
1618 #ifdef FEAT_GUI
1619 (char_u *)&p_linespace, PV_NONE,
1620 #else
1621 (char_u *)NULL, PV_NONE,
1622 #endif
1623 #ifdef FEAT_GUI_W32
1624 {(char_u *)1L, (char_u *)0L}
1625 #else
1626 {(char_u *)0L, (char_u *)0L}
1627 #endif
1628 SCRIPTID_INIT},
1629 {"lisp", NULL, P_BOOL|P_VI_DEF,
1630 #ifdef FEAT_LISP
1631 (char_u *)&p_lisp, PV_LISP,
1632 #else
1633 (char_u *)NULL, PV_NONE,
1634 #endif
1635 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1636 {"lispwords", "lw", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1637 #ifdef FEAT_LISP
1638 (char_u *)&p_lispwords, PV_NONE,
1639 {(char_u *)LISPWORD_VALUE, (char_u *)0L}
1640 #else
1641 (char_u *)NULL, PV_NONE,
1642 {(char_u *)"", (char_u *)0L}
1643 #endif
1644 SCRIPTID_INIT},
1645 {"list", NULL, P_BOOL|P_VI_DEF|P_RWIN,
1646 (char_u *)VAR_WIN, PV_LIST,
1647 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1648 {"listchars", "lcs", P_STRING|P_VI_DEF|P_RALL|P_COMMA|P_NODUP,
1649 (char_u *)&p_lcs, PV_NONE,
1650 {(char_u *)"eol:$", (char_u *)0L} SCRIPTID_INIT},
1651 {"loadplugins", "lpl", P_BOOL|P_VI_DEF,
1652 (char_u *)&p_lpl, PV_NONE,
1653 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1654 #ifdef FEAT_GUI_MAC
1655 {"macatsui", NULL, P_BOOL|P_VI_DEF|P_RCLR,
1656 (char_u *)&p_macatsui, PV_NONE,
1657 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1658 #endif
1659 {"magic", NULL, P_BOOL|P_VI_DEF,
1660 (char_u *)&p_magic, PV_NONE,
1661 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1662 {"makeef", "mef", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1663 #ifdef FEAT_QUICKFIX
1664 (char_u *)&p_mef, PV_NONE,
1665 {(char_u *)"", (char_u *)0L}
1666 #else
1667 (char_u *)NULL, PV_NONE,
1668 {(char_u *)NULL, (char_u *)0L}
1669 #endif
1670 SCRIPTID_INIT},
1671 {"makeprg", "mp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1672 #ifdef FEAT_QUICKFIX
1673 (char_u *)&p_mp, PV_MP,
1674 # ifdef VMS
1675 {(char_u *)"MMS", (char_u *)0L}
1676 # else
1677 {(char_u *)"make", (char_u *)0L}
1678 # endif
1679 #else
1680 (char_u *)NULL, PV_NONE,
1681 {(char_u *)NULL, (char_u *)0L}
1682 #endif
1683 SCRIPTID_INIT},
1684 {"matchpairs", "mps", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
1685 (char_u *)&p_mps, PV_MPS,
1686 {(char_u *)"(:),{:},[:]", (char_u *)0L}
1687 SCRIPTID_INIT},
1688 {"matchtime", "mat", P_NUM|P_VI_DEF,
1689 (char_u *)&p_mat, PV_NONE,
1690 {(char_u *)5L, (char_u *)0L} SCRIPTID_INIT},
1691 {"maxcombine", "mco", P_NUM|P_VI_DEF,
1692 #ifdef FEAT_MBYTE
1693 (char_u *)&p_mco, PV_NONE,
1694 #else
1695 (char_u *)NULL, PV_NONE,
1696 #endif
1697 {(char_u *)2, (char_u *)0L} SCRIPTID_INIT},
1698 {"maxfuncdepth", "mfd", P_NUM|P_VI_DEF,
1699 #ifdef FEAT_EVAL
1700 (char_u *)&p_mfd, PV_NONE,
1701 #else
1702 (char_u *)NULL, PV_NONE,
1703 #endif
1704 {(char_u *)100L, (char_u *)0L} SCRIPTID_INIT},
1705 {"maxmapdepth", "mmd", P_NUM|P_VI_DEF,
1706 (char_u *)&p_mmd, PV_NONE,
1707 {(char_u *)1000L, (char_u *)0L} SCRIPTID_INIT},
1708 {"maxmem", "mm", P_NUM|P_VI_DEF,
1709 (char_u *)&p_mm, PV_NONE,
1710 {(char_u *)DFLT_MAXMEM, (char_u *)0L}
1711 SCRIPTID_INIT},
1712 {"maxmempattern","mmp", P_NUM|P_VI_DEF,
1713 (char_u *)&p_mmp, PV_NONE,
1714 {(char_u *)1000L, (char_u *)0L} SCRIPTID_INIT},
1715 {"maxmemtot", "mmt", P_NUM|P_VI_DEF,
1716 (char_u *)&p_mmt, PV_NONE,
1717 {(char_u *)DFLT_MAXMEMTOT, (char_u *)0L}
1718 SCRIPTID_INIT},
1719 {"menuitems", "mis", P_NUM|P_VI_DEF,
1720 #ifdef FEAT_MENU
1721 (char_u *)&p_mis, PV_NONE,
1722 #else
1723 (char_u *)NULL, PV_NONE,
1724 #endif
1725 {(char_u *)25L, (char_u *)0L} SCRIPTID_INIT},
1726 {"mesg", NULL, P_BOOL|P_VI_DEF,
1727 (char_u *)NULL, PV_NONE,
1728 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1729 {"mkspellmem", "msm", P_STRING|P_VI_DEF|P_EXPAND|P_SECURE,
1730 #ifdef FEAT_SPELL
1731 (char_u *)&p_msm, PV_NONE,
1732 {(char_u *)"460000,2000,500", (char_u *)0L}
1733 #else
1734 (char_u *)NULL, PV_NONE,
1735 {(char_u *)0L, (char_u *)0L}
1736 #endif
1737 SCRIPTID_INIT},
1738 {"modeline", "ml", P_BOOL|P_VIM,
1739 (char_u *)&p_ml, PV_ML,
1740 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
1741 {"modelines", "mls", P_NUM|P_VI_DEF,
1742 (char_u *)&p_mls, PV_NONE,
1743 {(char_u *)5L, (char_u *)0L} SCRIPTID_INIT},
1744 {"modifiable", "ma", P_BOOL|P_VI_DEF|P_NOGLOB,
1745 (char_u *)&p_ma, PV_MA,
1746 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1747 {"modified", "mod", P_BOOL|P_NO_MKRC|P_VI_DEF|P_RSTAT,
1748 (char_u *)&p_mod, PV_MOD,
1749 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1750 {"more", NULL, P_BOOL|P_VIM,
1751 (char_u *)&p_more, PV_NONE,
1752 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
1753 {"mouse", NULL, P_STRING|P_VI_DEF|P_FLAGLIST,
1754 (char_u *)&p_mouse, PV_NONE,
1756 #if defined(MSDOS) || defined(WIN3264)
1757 (char_u *)"a",
1758 #else
1759 (char_u *)"",
1760 #endif
1761 (char_u *)0L} SCRIPTID_INIT},
1762 {"mousefocus", "mousef", P_BOOL|P_VI_DEF,
1763 #ifdef FEAT_GUI
1764 (char_u *)&p_mousef, PV_NONE,
1765 #else
1766 (char_u *)NULL, PV_NONE,
1767 #endif
1768 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1769 {"mousehide", "mh", P_BOOL|P_VI_DEF,
1770 #ifdef FEAT_GUI
1771 (char_u *)&p_mh, PV_NONE,
1772 #else
1773 (char_u *)NULL, PV_NONE,
1774 #endif
1775 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1776 {"mousemodel", "mousem", P_STRING|P_VI_DEF,
1777 (char_u *)&p_mousem, PV_NONE,
1779 #if defined(MSDOS) || defined(MSWIN)
1780 (char_u *)"popup",
1781 #else
1782 # if defined(MACOS)
1783 (char_u *)"popup_setpos",
1784 # else
1785 (char_u *)"extend",
1786 # endif
1787 #endif
1788 (char_u *)0L} SCRIPTID_INIT},
1789 {"mouseshape", "mouses", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1790 #ifdef FEAT_MOUSESHAPE
1791 (char_u *)&p_mouseshape, PV_NONE,
1792 {(char_u *)"i-r:beam,s:updown,sd:udsizing,vs:leftright,vd:lrsizing,m:no,ml:up-arrow,v:rightup-arrow", (char_u *)0L}
1793 #else
1794 (char_u *)NULL, PV_NONE,
1795 {(char_u *)NULL, (char_u *)0L}
1796 #endif
1797 SCRIPTID_INIT},
1798 {"mousetime", "mouset", P_NUM|P_VI_DEF,
1799 (char_u *)&p_mouset, PV_NONE,
1800 {(char_u *)500L, (char_u *)0L} SCRIPTID_INIT},
1801 {"mzquantum", "mzq", P_NUM,
1802 #ifdef FEAT_MZSCHEME
1803 (char_u *)&p_mzq, PV_NONE,
1804 #else
1805 (char_u *)NULL, PV_NONE,
1806 #endif
1807 {(char_u *)100L, (char_u *)100L} SCRIPTID_INIT},
1808 {"novice", NULL, P_BOOL|P_VI_DEF,
1809 (char_u *)NULL, PV_NONE,
1810 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1811 {"nrformats", "nf", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
1812 (char_u *)&p_nf, PV_NF,
1813 {(char_u *)"octal,hex", (char_u *)0L}
1814 SCRIPTID_INIT},
1815 {"number", "nu", P_BOOL|P_VI_DEF|P_RWIN,
1816 (char_u *)VAR_WIN, PV_NU,
1817 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1818 {"numberwidth", "nuw", P_NUM|P_RWIN|P_VIM,
1819 #ifdef FEAT_LINEBREAK
1820 (char_u *)VAR_WIN, PV_NUW,
1821 #else
1822 (char_u *)NULL, PV_NONE,
1823 #endif
1824 {(char_u *)8L, (char_u *)4L} SCRIPTID_INIT},
1825 {"omnifunc", "ofu", P_STRING|P_ALLOCED|P_VI_DEF|P_SECURE,
1826 #ifdef FEAT_COMPL_FUNC
1827 (char_u *)&p_ofu, PV_OFU,
1828 {(char_u *)"", (char_u *)0L}
1829 #else
1830 (char_u *)NULL, PV_NONE,
1831 {(char_u *)0L, (char_u *)0L}
1832 #endif
1833 SCRIPTID_INIT},
1834 {"open", NULL, P_BOOL|P_VI_DEF,
1835 (char_u *)NULL, PV_NONE,
1836 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1837 {"opendevice", "odev", P_BOOL|P_VI_DEF,
1838 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
1839 (char_u *)&p_odev, PV_NONE,
1840 #else
1841 (char_u *)NULL, PV_NONE,
1842 #endif
1843 {(char_u *)FALSE, (char_u *)FALSE}
1844 SCRIPTID_INIT},
1845 {"operatorfunc", "opfunc", P_STRING|P_VI_DEF|P_SECURE,
1846 (char_u *)&p_opfunc, PV_NONE,
1847 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1848 {"optimize", "opt", P_BOOL|P_VI_DEF,
1849 (char_u *)NULL, PV_NONE,
1850 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1851 {"osfiletype", "oft", P_STRING|P_ALLOCED|P_VI_DEF,
1852 #ifdef FEAT_OSFILETYPE
1853 (char_u *)&p_oft, PV_OFT,
1854 {(char_u *)DFLT_OFT, (char_u *)0L}
1855 #else
1856 (char_u *)NULL, PV_NONE,
1857 {(char_u *)0L, (char_u *)0L}
1858 #endif
1859 SCRIPTID_INIT},
1860 {"paragraphs", "para", P_STRING|P_VI_DEF,
1861 (char_u *)&p_para, PV_NONE,
1862 {(char_u *)"IPLPPPQPP TPHPLIPpLpItpplpipbp",
1863 (char_u *)0L} SCRIPTID_INIT},
1864 {"paste", NULL, P_BOOL|P_VI_DEF|P_PRI_MKRC,
1865 (char_u *)&p_paste, PV_NONE,
1866 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1867 {"pastetoggle", "pt", P_STRING|P_VI_DEF,
1868 (char_u *)&p_pt, PV_NONE,
1869 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1870 {"patchexpr", "pex", P_STRING|P_VI_DEF|P_SECURE,
1871 #if defined(FEAT_DIFF) && defined(FEAT_EVAL)
1872 (char_u *)&p_pex, PV_NONE,
1873 {(char_u *)"", (char_u *)0L}
1874 #else
1875 (char_u *)NULL, PV_NONE,
1876 {(char_u *)0L, (char_u *)0L}
1877 #endif
1878 SCRIPTID_INIT},
1879 {"patchmode", "pm", P_STRING|P_VI_DEF|P_NFNAME,
1880 (char_u *)&p_pm, PV_NONE,
1881 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1882 {"path", "pa", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
1883 (char_u *)&p_path, PV_PATH,
1885 #if defined AMIGA || defined MSDOS || defined MSWIN
1886 (char_u *)".,,",
1887 #else
1888 # if defined(__EMX__)
1889 (char_u *)".,/emx/include,,",
1890 # else /* Unix, probably */
1891 (char_u *)".,/usr/include,,",
1892 # endif
1893 #endif
1894 (char_u *)0L} SCRIPTID_INIT},
1895 {"preserveindent", "pi", P_BOOL|P_VI_DEF|P_VIM,
1896 (char_u *)&p_pi, PV_PI,
1897 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1898 {"previewheight", "pvh", P_NUM|P_VI_DEF,
1899 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
1900 (char_u *)&p_pvh, PV_NONE,
1901 #else
1902 (char_u *)NULL, PV_NONE,
1903 #endif
1904 {(char_u *)12L, (char_u *)0L} SCRIPTID_INIT},
1905 {"previewwindow", "pvw", P_BOOL|P_VI_DEF|P_RSTAT|P_NOGLOB,
1906 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
1907 (char_u *)VAR_WIN, PV_PVW,
1908 #else
1909 (char_u *)NULL, PV_NONE,
1910 #endif
1911 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1912 {"printdevice", "pdev", P_STRING|P_VI_DEF|P_SECURE,
1913 #ifdef FEAT_PRINTER
1914 (char_u *)&p_pdev, PV_NONE,
1915 {(char_u *)"", (char_u *)0L}
1916 #else
1917 (char_u *)NULL, PV_NONE,
1918 {(char_u *)NULL, (char_u *)0L}
1919 #endif
1920 SCRIPTID_INIT},
1921 {"printencoding", "penc", P_STRING|P_VI_DEF,
1922 #ifdef FEAT_POSTSCRIPT
1923 (char_u *)&p_penc, PV_NONE,
1924 {(char_u *)"", (char_u *)0L}
1925 #else
1926 (char_u *)NULL, PV_NONE,
1927 {(char_u *)NULL, (char_u *)0L}
1928 #endif
1929 SCRIPTID_INIT},
1930 {"printexpr", "pexpr", P_STRING|P_VI_DEF,
1931 #ifdef FEAT_POSTSCRIPT
1932 (char_u *)&p_pexpr, PV_NONE,
1933 {(char_u *)"", (char_u *)0L}
1934 #else
1935 (char_u *)NULL, PV_NONE,
1936 {(char_u *)NULL, (char_u *)0L}
1937 #endif
1938 SCRIPTID_INIT},
1939 {"printfont", "pfn", P_STRING|P_VI_DEF,
1940 #ifdef FEAT_PRINTER
1941 (char_u *)&p_pfn, PV_NONE,
1943 # ifdef MSWIN
1944 (char_u *)"Courier_New:h10",
1945 # else
1946 (char_u *)"courier",
1947 # endif
1948 (char_u *)0L}
1949 #else
1950 (char_u *)NULL, PV_NONE,
1951 {(char_u *)NULL, (char_u *)0L}
1952 #endif
1953 SCRIPTID_INIT},
1954 {"printheader", "pheader", P_STRING|P_VI_DEF|P_GETTEXT,
1955 #ifdef FEAT_PRINTER
1956 (char_u *)&p_header, PV_NONE,
1957 {(char_u *)N_("%<%f%h%m%=Page %N"), (char_u *)0L}
1958 #else
1959 (char_u *)NULL, PV_NONE,
1960 {(char_u *)NULL, (char_u *)0L}
1961 #endif
1962 SCRIPTID_INIT},
1963 {"printmbcharset", "pmbcs", P_STRING|P_VI_DEF,
1964 #if defined(FEAT_POSTSCRIPT) && defined(FEAT_MBYTE)
1965 (char_u *)&p_pmcs, PV_NONE,
1966 {(char_u *)"", (char_u *)0L}
1967 #else
1968 (char_u *)NULL, PV_NONE,
1969 {(char_u *)NULL, (char_u *)0L}
1970 #endif
1971 SCRIPTID_INIT},
1972 {"printmbfont", "pmbfn", P_STRING|P_VI_DEF,
1973 #if defined(FEAT_POSTSCRIPT) && defined(FEAT_MBYTE)
1974 (char_u *)&p_pmfn, PV_NONE,
1975 {(char_u *)"", (char_u *)0L}
1976 #else
1977 (char_u *)NULL, PV_NONE,
1978 {(char_u *)NULL, (char_u *)0L}
1979 #endif
1980 SCRIPTID_INIT},
1981 {"printoptions", "popt", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1982 #ifdef FEAT_PRINTER
1983 (char_u *)&p_popt, PV_NONE,
1984 {(char_u *)"", (char_u *)0L}
1985 #else
1986 (char_u *)NULL, PV_NONE,
1987 {(char_u *)NULL, (char_u *)0L}
1988 #endif
1989 SCRIPTID_INIT},
1990 {"prompt", NULL, P_BOOL|P_VI_DEF,
1991 (char_u *)&p_prompt, PV_NONE,
1992 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1993 {"pumheight", "ph", P_NUM|P_VI_DEF,
1994 #ifdef FEAT_INS_EXPAND
1995 (char_u *)&p_ph, PV_NONE,
1996 #else
1997 (char_u *)NULL, PV_NONE,
1998 #endif
1999 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2000 {"quoteescape", "qe", P_STRING|P_ALLOCED|P_VI_DEF,
2001 #ifdef FEAT_TEXTOBJ
2002 (char_u *)&p_qe, PV_QE,
2003 {(char_u *)"\\", (char_u *)0L}
2004 #else
2005 (char_u *)NULL, PV_NONE,
2006 {(char_u *)NULL, (char_u *)0L}
2007 #endif
2008 SCRIPTID_INIT},
2009 {"readonly", "ro", P_BOOL|P_VI_DEF|P_RSTAT|P_NOGLOB,
2010 (char_u *)&p_ro, PV_RO,
2011 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2012 {"redraw", NULL, P_BOOL|P_VI_DEF,
2013 (char_u *)NULL, PV_NONE,
2014 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2015 {"redrawtime", "rdt", P_NUM|P_VI_DEF,
2016 #ifdef FEAT_RELTIME
2017 (char_u *)&p_rdt, PV_NONE,
2018 #else
2019 (char_u *)NULL, PV_NONE,
2020 #endif
2021 {(char_u *)2000L, (char_u *)0L} SCRIPTID_INIT},
2022 {"remap", NULL, P_BOOL|P_VI_DEF,
2023 (char_u *)&p_remap, PV_NONE,
2024 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2025 {"report", NULL, P_NUM|P_VI_DEF,
2026 (char_u *)&p_report, PV_NONE,
2027 {(char_u *)2L, (char_u *)0L} SCRIPTID_INIT},
2028 {"restorescreen", "rs", P_BOOL|P_VI_DEF,
2029 #ifdef WIN3264
2030 (char_u *)&p_rs, PV_NONE,
2031 #else
2032 (char_u *)NULL, PV_NONE,
2033 #endif
2034 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2035 {"revins", "ri", P_BOOL|P_VI_DEF|P_VIM,
2036 #ifdef FEAT_RIGHTLEFT
2037 (char_u *)&p_ri, PV_NONE,
2038 #else
2039 (char_u *)NULL, PV_NONE,
2040 #endif
2041 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2042 {"rightleft", "rl", P_BOOL|P_VI_DEF|P_RWIN,
2043 #ifdef FEAT_RIGHTLEFT
2044 (char_u *)VAR_WIN, PV_RL,
2045 #else
2046 (char_u *)NULL, PV_NONE,
2047 #endif
2048 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2049 {"rightleftcmd", "rlc", P_STRING|P_ALLOCED|P_VI_DEF|P_RWIN,
2050 #ifdef FEAT_RIGHTLEFT
2051 (char_u *)VAR_WIN, PV_RLC,
2052 {(char_u *)"search", (char_u *)NULL}
2053 #else
2054 (char_u *)NULL, PV_NONE,
2055 {(char_u *)NULL, (char_u *)0L}
2056 #endif
2057 SCRIPTID_INIT},
2058 {"ruler", "ru", P_BOOL|P_VI_DEF|P_VIM|P_RSTAT,
2059 #ifdef FEAT_CMDL_INFO
2060 (char_u *)&p_ru, PV_NONE,
2061 #else
2062 (char_u *)NULL, PV_NONE,
2063 #endif
2064 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2065 {"rulerformat", "ruf", P_STRING|P_VI_DEF|P_ALLOCED|P_RSTAT,
2066 #ifdef FEAT_STL_OPT
2067 (char_u *)&p_ruf, PV_NONE,
2068 #else
2069 (char_u *)NULL, PV_NONE,
2070 #endif
2071 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2072 {"runtimepath", "rtp", P_STRING|P_VI_DEF|P_EXPAND|P_COMMA|P_NODUP|P_SECURE,
2073 (char_u *)&p_rtp, PV_NONE,
2074 {(char_u *)DFLT_RUNTIMEPATH, (char_u *)0L}
2075 SCRIPTID_INIT},
2076 {"scroll", "scr", P_NUM|P_NO_MKRC|P_VI_DEF,
2077 (char_u *)VAR_WIN, PV_SCROLL,
2078 {(char_u *)12L, (char_u *)0L} SCRIPTID_INIT},
2079 {"scrollbind", "scb", P_BOOL|P_VI_DEF,
2080 #ifdef FEAT_SCROLLBIND
2081 (char_u *)VAR_WIN, PV_SCBIND,
2082 #else
2083 (char_u *)NULL, PV_NONE,
2084 #endif
2085 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2086 {"scrolljump", "sj", P_NUM|P_VI_DEF|P_VIM,
2087 (char_u *)&p_sj, PV_NONE,
2088 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
2089 {"scrolloff", "so", P_NUM|P_VI_DEF|P_VIM|P_RALL,
2090 (char_u *)&p_so, PV_NONE,
2091 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2092 {"scrollopt", "sbo", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2093 #ifdef FEAT_SCROLLBIND
2094 (char_u *)&p_sbo, PV_NONE,
2095 {(char_u *)"ver,jump", (char_u *)0L}
2096 #else
2097 (char_u *)NULL, PV_NONE,
2098 {(char_u *)0L, (char_u *)0L}
2099 #endif
2100 SCRIPTID_INIT},
2101 {"sections", "sect", P_STRING|P_VI_DEF,
2102 (char_u *)&p_sections, PV_NONE,
2103 {(char_u *)"SHNHH HUnhsh", (char_u *)0L}
2104 SCRIPTID_INIT},
2105 {"secure", NULL, P_BOOL|P_VI_DEF|P_SECURE,
2106 (char_u *)&p_secure, PV_NONE,
2107 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2108 {"selection", "sel", P_STRING|P_VI_DEF,
2109 #ifdef FEAT_VISUAL
2110 (char_u *)&p_sel, PV_NONE,
2111 #else
2112 (char_u *)NULL, PV_NONE,
2113 #endif
2114 {(char_u *)"inclusive", (char_u *)0L}
2115 SCRIPTID_INIT},
2116 {"selectmode", "slm", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2117 #ifdef FEAT_VISUAL
2118 (char_u *)&p_slm, PV_NONE,
2119 #else
2120 (char_u *)NULL, PV_NONE,
2121 #endif
2122 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2123 {"sessionoptions", "ssop", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2124 #ifdef FEAT_SESSION
2125 (char_u *)&p_ssop, PV_NONE,
2126 {(char_u *)"blank,buffers,curdir,folds,help,options,tabpages,winsize",
2127 (char_u *)0L}
2128 #else
2129 (char_u *)NULL, PV_NONE,
2130 {(char_u *)0L, (char_u *)0L}
2131 #endif
2132 SCRIPTID_INIT},
2133 {"shell", "sh", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
2134 (char_u *)&p_sh, PV_NONE,
2136 #ifdef VMS
2137 (char_u *)"-",
2138 #else
2139 # if defined(MSDOS)
2140 (char_u *)"command",
2141 # else
2142 # if defined(WIN16)
2143 (char_u *)"command.com",
2144 # else
2145 # if defined(WIN3264)
2146 (char_u *)"", /* set in set_init_1() */
2147 # else
2148 # if defined(OS2)
2149 (char_u *)"cmd.exe",
2150 # else
2151 # if defined(ARCHIE)
2152 (char_u *)"gos",
2153 # else
2154 (char_u *)"sh",
2155 # endif
2156 # endif
2157 # endif
2158 # endif
2159 # endif
2160 #endif /* VMS */
2161 (char_u *)0L} SCRIPTID_INIT},
2162 {"shellcmdflag","shcf", P_STRING|P_VI_DEF|P_SECURE,
2163 (char_u *)&p_shcf, PV_NONE,
2165 #if defined(MSDOS) || defined(MSWIN)
2166 (char_u *)"/c",
2167 #else
2168 # if defined(OS2)
2169 (char_u *)"/c",
2170 # else
2171 (char_u *)"-c",
2172 # endif
2173 #endif
2174 (char_u *)0L} SCRIPTID_INIT},
2175 {"shellpipe", "sp", P_STRING|P_VI_DEF|P_SECURE,
2176 #ifdef FEAT_QUICKFIX
2177 (char_u *)&p_sp, PV_NONE,
2179 #if defined(UNIX) || defined(OS2)
2180 # ifdef ARCHIE
2181 (char_u *)"2>",
2182 # else
2183 (char_u *)"| tee",
2184 # endif
2185 #else
2186 (char_u *)">",
2187 #endif
2188 (char_u *)0L}
2189 #else
2190 (char_u *)NULL, PV_NONE,
2191 {(char_u *)0L, (char_u *)0L}
2192 #endif
2193 SCRIPTID_INIT},
2194 {"shellquote", "shq", P_STRING|P_VI_DEF|P_SECURE,
2195 (char_u *)&p_shq, PV_NONE,
2196 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2197 {"shellredir", "srr", P_STRING|P_VI_DEF|P_SECURE,
2198 (char_u *)&p_srr, PV_NONE,
2199 {(char_u *)">", (char_u *)0L} SCRIPTID_INIT},
2200 {"shellslash", "ssl", P_BOOL|P_VI_DEF,
2201 #ifdef BACKSLASH_IN_FILENAME
2202 (char_u *)&p_ssl, PV_NONE,
2203 #else
2204 (char_u *)NULL, PV_NONE,
2205 #endif
2206 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2207 {"shelltemp", "stmp", P_BOOL,
2208 (char_u *)&p_stmp, PV_NONE,
2209 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
2210 {"shelltype", "st", P_NUM|P_VI_DEF,
2211 #ifdef AMIGA
2212 (char_u *)&p_st, PV_NONE,
2213 #else
2214 (char_u *)NULL, PV_NONE,
2215 #endif
2216 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2217 {"shellxquote", "sxq", P_STRING|P_VI_DEF|P_SECURE,
2218 (char_u *)&p_sxq, PV_NONE,
2220 #if defined(UNIX) && defined(USE_SYSTEM) && !defined(__EMX__)
2221 (char_u *)"\"",
2222 #else
2223 (char_u *)"",
2224 #endif
2225 (char_u *)0L} SCRIPTID_INIT},
2226 {"shiftround", "sr", P_BOOL|P_VI_DEF|P_VIM,
2227 (char_u *)&p_sr, PV_NONE,
2228 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2229 {"shiftwidth", "sw", P_NUM|P_VI_DEF,
2230 (char_u *)&p_sw, PV_SW,
2231 {(char_u *)8L, (char_u *)0L} SCRIPTID_INIT},
2232 {"shortmess", "shm", P_STRING|P_VIM|P_FLAGLIST,
2233 (char_u *)&p_shm, PV_NONE,
2234 {(char_u *)"", (char_u *)"filnxtToO"}
2235 SCRIPTID_INIT},
2236 {"shortname", "sn", P_BOOL|P_VI_DEF,
2237 #ifdef SHORT_FNAME
2238 (char_u *)NULL, PV_NONE,
2239 #else
2240 (char_u *)&p_sn, PV_SN,
2241 #endif
2242 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2243 {"showbreak", "sbr", P_STRING|P_VI_DEF|P_RALL,
2244 #ifdef FEAT_LINEBREAK
2245 (char_u *)&p_sbr, PV_NONE,
2246 #else
2247 (char_u *)NULL, PV_NONE,
2248 #endif
2249 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2250 {"showcmd", "sc", P_BOOL|P_VIM,
2251 #ifdef FEAT_CMDL_INFO
2252 (char_u *)&p_sc, PV_NONE,
2253 #else
2254 (char_u *)NULL, PV_NONE,
2255 #endif
2256 {(char_u *)FALSE,
2257 #ifdef UNIX
2258 (char_u *)FALSE
2259 #else
2260 (char_u *)TRUE
2261 #endif
2262 } SCRIPTID_INIT},
2263 {"showfulltag", "sft", P_BOOL|P_VI_DEF,
2264 (char_u *)&p_sft, PV_NONE,
2265 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2266 {"showmatch", "sm", P_BOOL|P_VI_DEF,
2267 (char_u *)&p_sm, PV_NONE,
2268 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2269 {"showmode", "smd", P_BOOL|P_VIM,
2270 (char_u *)&p_smd, PV_NONE,
2271 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
2272 {"showtabline", "stal", P_NUM|P_VI_DEF|P_RALL,
2273 #ifdef FEAT_WINDOWS
2274 (char_u *)&p_stal, PV_NONE,
2275 #else
2276 (char_u *)NULL, PV_NONE,
2277 #endif
2278 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
2279 {"sidescroll", "ss", P_NUM|P_VI_DEF,
2280 (char_u *)&p_ss, PV_NONE,
2281 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2282 {"sidescrolloff", "siso", P_NUM|P_VI_DEF|P_VIM|P_RBUF,
2283 (char_u *)&p_siso, PV_NONE,
2284 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2285 {"slowopen", "slow", P_BOOL|P_VI_DEF,
2286 (char_u *)NULL, PV_NONE,
2287 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2288 {"smartcase", "scs", P_BOOL|P_VI_DEF|P_VIM,
2289 (char_u *)&p_scs, PV_NONE,
2290 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2291 {"smartindent", "si", P_BOOL|P_VI_DEF|P_VIM,
2292 #ifdef FEAT_SMARTINDENT
2293 (char_u *)&p_si, PV_SI,
2294 #else
2295 (char_u *)NULL, PV_NONE,
2296 #endif
2297 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2298 {"smarttab", "sta", P_BOOL|P_VI_DEF|P_VIM,
2299 (char_u *)&p_sta, PV_NONE,
2300 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2301 {"softtabstop", "sts", P_NUM|P_VI_DEF|P_VIM,
2302 (char_u *)&p_sts, PV_STS,
2303 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2304 {"sourceany", NULL, P_BOOL|P_VI_DEF,
2305 (char_u *)NULL, PV_NONE,
2306 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2307 {"spell", NULL, P_BOOL|P_VI_DEF|P_RWIN,
2308 #ifdef FEAT_SPELL
2309 (char_u *)VAR_WIN, PV_SPELL,
2310 #else
2311 (char_u *)NULL, PV_NONE,
2312 #endif
2313 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2314 {"spellcapcheck", "spc", P_STRING|P_ALLOCED|P_VI_DEF|P_RBUF,
2315 #ifdef FEAT_SPELL
2316 (char_u *)&p_spc, PV_SPC,
2317 {(char_u *)"[.?!]\\_[\\])'\" ]\\+", (char_u *)0L}
2318 #else
2319 (char_u *)NULL, PV_NONE,
2320 {(char_u *)0L, (char_u *)0L}
2321 #endif
2322 SCRIPTID_INIT},
2323 {"spellfile", "spf", P_STRING|P_EXPAND|P_ALLOCED|P_VI_DEF|P_SECURE|P_COMMA,
2324 #ifdef FEAT_SPELL
2325 (char_u *)&p_spf, PV_SPF,
2326 {(char_u *)"", (char_u *)0L}
2327 #else
2328 (char_u *)NULL, PV_NONE,
2329 {(char_u *)0L, (char_u *)0L}
2330 #endif
2331 SCRIPTID_INIT},
2332 {"spelllang", "spl", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_RBUF|P_EXPAND,
2333 #ifdef FEAT_SPELL
2334 (char_u *)&p_spl, PV_SPL,
2335 {(char_u *)"en", (char_u *)0L}
2336 #else
2337 (char_u *)NULL, PV_NONE,
2338 {(char_u *)0L, (char_u *)0L}
2339 #endif
2340 SCRIPTID_INIT},
2341 {"spellsuggest", "sps", P_STRING|P_VI_DEF|P_EXPAND|P_SECURE|P_COMMA,
2342 #ifdef FEAT_SPELL
2343 (char_u *)&p_sps, PV_NONE,
2344 {(char_u *)"best", (char_u *)0L}
2345 #else
2346 (char_u *)NULL, PV_NONE,
2347 {(char_u *)0L, (char_u *)0L}
2348 #endif
2349 SCRIPTID_INIT},
2350 {"splitbelow", "sb", P_BOOL|P_VI_DEF,
2351 #ifdef FEAT_WINDOWS
2352 (char_u *)&p_sb, PV_NONE,
2353 #else
2354 (char_u *)NULL, PV_NONE,
2355 #endif
2356 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2357 {"splitright", "spr", P_BOOL|P_VI_DEF,
2358 #ifdef FEAT_VERTSPLIT
2359 (char_u *)&p_spr, PV_NONE,
2360 #else
2361 (char_u *)NULL, PV_NONE,
2362 #endif
2363 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2364 {"startofline", "sol", P_BOOL|P_VI_DEF|P_VIM,
2365 (char_u *)&p_sol, PV_NONE,
2366 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2367 {"statusline" ,"stl", P_STRING|P_VI_DEF|P_ALLOCED|P_RSTAT,
2368 #ifdef FEAT_STL_OPT
2369 (char_u *)&p_stl, PV_STL,
2370 #else
2371 (char_u *)NULL, PV_NONE,
2372 #endif
2373 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2374 {"suffixes", "su", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2375 (char_u *)&p_su, PV_NONE,
2376 {(char_u *)".bak,~,.o,.h,.info,.swp,.obj",
2377 (char_u *)0L} SCRIPTID_INIT},
2378 {"suffixesadd", "sua", P_STRING|P_VI_DEF|P_ALLOCED|P_COMMA|P_NODUP,
2379 #ifdef FEAT_SEARCHPATH
2380 (char_u *)&p_sua, PV_SUA,
2381 {(char_u *)"", (char_u *)0L}
2382 #else
2383 (char_u *)NULL, PV_NONE,
2384 {(char_u *)0L, (char_u *)0L}
2385 #endif
2386 SCRIPTID_INIT},
2387 {"swapfile", "swf", P_BOOL|P_VI_DEF|P_RSTAT,
2388 (char_u *)&p_swf, PV_SWF,
2389 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2390 {"swapsync", "sws", P_STRING|P_VI_DEF,
2391 (char_u *)&p_sws, PV_NONE,
2392 {(char_u *)"fsync", (char_u *)0L} SCRIPTID_INIT},
2393 {"switchbuf", "swb", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2394 (char_u *)&p_swb, PV_NONE,
2395 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2396 {"synmaxcol", "smc", P_NUM|P_VI_DEF|P_RBUF,
2397 #ifdef FEAT_SYN_HL
2398 (char_u *)&p_smc, PV_SMC,
2399 {(char_u *)3000L, (char_u *)0L}
2400 #else
2401 (char_u *)NULL, PV_NONE,
2402 {(char_u *)0L, (char_u *)0L}
2403 #endif
2404 SCRIPTID_INIT},
2405 {"syntax", "syn", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB|P_NFNAME,
2406 #ifdef FEAT_SYN_HL
2407 (char_u *)&p_syn, PV_SYN,
2408 {(char_u *)"", (char_u *)0L}
2409 #else
2410 (char_u *)NULL, PV_NONE,
2411 {(char_u *)0L, (char_u *)0L}
2412 #endif
2413 SCRIPTID_INIT},
2414 {"tabline", "tal", P_STRING|P_VI_DEF|P_RALL,
2415 #ifdef FEAT_STL_OPT
2416 (char_u *)&p_tal, PV_NONE,
2417 #else
2418 (char_u *)NULL, PV_NONE,
2419 #endif
2420 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2421 {"tabpagemax", "tpm", P_NUM|P_VI_DEF,
2422 #ifdef FEAT_WINDOWS
2423 (char_u *)&p_tpm, PV_NONE,
2424 #else
2425 (char_u *)NULL, PV_NONE,
2426 #endif
2427 {(char_u *)10L, (char_u *)0L} SCRIPTID_INIT},
2428 {"tabstop", "ts", P_NUM|P_VI_DEF|P_RBUF,
2429 (char_u *)&p_ts, PV_TS,
2430 {(char_u *)8L, (char_u *)0L} SCRIPTID_INIT},
2431 {"tagbsearch", "tbs", P_BOOL|P_VI_DEF,
2432 (char_u *)&p_tbs, PV_NONE,
2433 #ifdef VMS /* binary searching doesn't appear to work on VMS */
2434 {(char_u *)0L, (char_u *)0L}
2435 #else
2436 {(char_u *)TRUE, (char_u *)0L}
2437 #endif
2438 SCRIPTID_INIT},
2439 /* FIXME:2010-04-24:llorens: verify whether these setting are correct: */
2440 {"tagfunc", "tfu", P_STRING|P_ALLOCED|P_VI_DEF|P_SECURE,
2441 #ifdef FEAT_COMPL_FUNC
2442 (char_u *)&p_tfu, PV_TFU,
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 {"taglength", "tl", P_NUM|P_VI_DEF,
2450 (char_u *)&p_tl, PV_NONE,
2451 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2452 {"tagrelative", "tr", P_BOOL|P_VIM,
2453 (char_u *)&p_tr, PV_NONE,
2454 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
2455 {"tags", "tag", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
2456 (char_u *)&p_tags, PV_TAGS,
2458 #if defined(FEAT_EMACS_TAGS) && !defined(CASE_INSENSITIVE_FILENAME)
2459 (char_u *)"./tags,./TAGS,tags,TAGS",
2460 #else
2461 (char_u *)"./tags,tags",
2462 #endif
2463 (char_u *)0L} SCRIPTID_INIT},
2464 {"tagstack", "tgst", P_BOOL|P_VI_DEF,
2465 (char_u *)&p_tgst, PV_NONE,
2466 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2467 {"term", NULL, P_STRING|P_EXPAND|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RALL,
2468 (char_u *)&T_NAME, PV_NONE,
2469 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2470 {"termbidi", "tbidi", P_BOOL|P_VI_DEF,
2471 #ifdef FEAT_ARABIC
2472 (char_u *)&p_tbidi, PV_NONE,
2473 #else
2474 (char_u *)NULL, PV_NONE,
2475 #endif
2476 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2477 {"termencoding", "tenc", P_STRING|P_VI_DEF|P_RCLR,
2478 #ifdef FEAT_MBYTE
2479 (char_u *)&p_tenc, PV_NONE,
2480 {(char_u *)"", (char_u *)0L}
2481 #else
2482 (char_u *)NULL, PV_NONE,
2483 {(char_u *)0L, (char_u *)0L}
2484 #endif
2485 SCRIPTID_INIT},
2486 {"terse", NULL, P_BOOL|P_VI_DEF,
2487 (char_u *)&p_terse, PV_NONE,
2488 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2489 {"textauto", "ta", P_BOOL|P_VIM,
2490 (char_u *)&p_ta, PV_NONE,
2491 {(char_u *)DFLT_TEXTAUTO, (char_u *)TRUE}
2492 SCRIPTID_INIT},
2493 {"textmode", "tx", P_BOOL|P_VI_DEF|P_NO_MKRC,
2494 (char_u *)&p_tx, PV_TX,
2496 #ifdef USE_CRNL
2497 (char_u *)TRUE,
2498 #else
2499 (char_u *)FALSE,
2500 #endif
2501 (char_u *)0L} SCRIPTID_INIT},
2502 {"textwidth", "tw", P_NUM|P_VI_DEF|P_VIM,
2503 (char_u *)&p_tw, PV_TW,
2504 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2505 {"thesaurus", "tsr", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
2506 #ifdef FEAT_INS_EXPAND
2507 (char_u *)&p_tsr, PV_TSR,
2508 #else
2509 (char_u *)NULL, PV_NONE,
2510 #endif
2511 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2512 {"tildeop", "top", P_BOOL|P_VI_DEF|P_VIM,
2513 (char_u *)&p_to, PV_NONE,
2514 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2515 {"timeout", "to", P_BOOL|P_VI_DEF,
2516 (char_u *)&p_timeout, PV_NONE,
2517 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2518 {"timeoutlen", "tm", P_NUM|P_VI_DEF,
2519 (char_u *)&p_tm, PV_NONE,
2520 {(char_u *)1000L, (char_u *)0L} SCRIPTID_INIT},
2521 {"title", NULL, P_BOOL|P_VI_DEF,
2522 #ifdef FEAT_TITLE
2523 (char_u *)&p_title, PV_NONE,
2524 #else
2525 (char_u *)NULL, PV_NONE,
2526 #endif
2527 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2528 {"titlelen", NULL, P_NUM|P_VI_DEF,
2529 #ifdef FEAT_TITLE
2530 (char_u *)&p_titlelen, PV_NONE,
2531 #else
2532 (char_u *)NULL, PV_NONE,
2533 #endif
2534 {(char_u *)85L, (char_u *)0L} SCRIPTID_INIT},
2535 {"titleold", NULL, P_STRING|P_VI_DEF|P_GETTEXT|P_SECURE|P_NO_MKRC,
2536 #ifdef FEAT_TITLE
2537 (char_u *)&p_titleold, PV_NONE,
2538 {(char_u *)N_("Thanks for flying Vim"),
2539 (char_u *)0L}
2540 #else
2541 (char_u *)NULL, PV_NONE,
2542 {(char_u *)0L, (char_u *)0L}
2543 #endif
2544 SCRIPTID_INIT},
2545 {"titlestring", NULL, P_STRING|P_VI_DEF,
2546 #ifdef FEAT_TITLE
2547 (char_u *)&p_titlestring, PV_NONE,
2548 #else
2549 (char_u *)NULL, PV_NONE,
2550 #endif
2551 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2552 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
2553 {"toolbar", "tb", P_STRING|P_COMMA|P_VI_DEF|P_NODUP,
2554 (char_u *)&p_toolbar, PV_NONE,
2555 {(char_u *)"icons,tooltips", (char_u *)0L}
2556 SCRIPTID_INIT},
2557 #endif
2558 #if defined(FEAT_TOOLBAR) && defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)
2559 {"toolbariconsize", "tbis", P_STRING|P_VI_DEF,
2560 (char_u *)&p_tbis, PV_NONE,
2561 {(char_u *)"small", (char_u *)0L} SCRIPTID_INIT},
2562 #endif
2563 {"ttimeout", NULL, P_BOOL|P_VI_DEF|P_VIM,
2564 (char_u *)&p_ttimeout, PV_NONE,
2565 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2566 {"ttimeoutlen", "ttm", P_NUM|P_VI_DEF,
2567 (char_u *)&p_ttm, PV_NONE,
2568 {(char_u *)-1L, (char_u *)0L} SCRIPTID_INIT},
2569 {"ttybuiltin", "tbi", P_BOOL|P_VI_DEF,
2570 (char_u *)&p_tbi, PV_NONE,
2571 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2572 {"ttyfast", "tf", P_BOOL|P_NO_MKRC|P_VI_DEF,
2573 (char_u *)&p_tf, PV_NONE,
2574 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2575 {"ttymouse", "ttym", P_STRING|P_NODEFAULT|P_NO_MKRC|P_VI_DEF,
2576 #if defined(FEAT_MOUSE) && (defined(UNIX) || defined(VMS))
2577 (char_u *)&p_ttym, PV_NONE,
2578 #else
2579 (char_u *)NULL, PV_NONE,
2580 #endif
2581 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2582 {"ttyscroll", "tsl", P_NUM|P_VI_DEF,
2583 (char_u *)&p_ttyscroll, PV_NONE,
2584 {(char_u *)999L, (char_u *)0L} SCRIPTID_INIT},
2585 {"ttytype", "tty", P_STRING|P_EXPAND|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RALL,
2586 (char_u *)&T_NAME, PV_NONE,
2587 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2588 {"undolevels", "ul", P_NUM|P_VI_DEF,
2589 (char_u *)&p_ul, PV_NONE,
2591 #if defined(UNIX) || defined(WIN3264) || defined(OS2) || defined(VMS)
2592 (char_u *)1000L,
2593 #else
2594 (char_u *)100L,
2595 #endif
2596 (char_u *)0L} SCRIPTID_INIT},
2597 {"updatecount", "uc", P_NUM|P_VI_DEF,
2598 (char_u *)&p_uc, PV_NONE,
2599 {(char_u *)200L, (char_u *)0L} SCRIPTID_INIT},
2600 {"updatetime", "ut", P_NUM|P_VI_DEF,
2601 (char_u *)&p_ut, PV_NONE,
2602 {(char_u *)4000L, (char_u *)0L} SCRIPTID_INIT},
2603 {"verbose", "vbs", P_NUM|P_VI_DEF,
2604 (char_u *)&p_verbose, PV_NONE,
2605 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2606 {"verbosefile", "vfile", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
2607 (char_u *)&p_vfile, PV_NONE,
2608 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2609 {"viewdir", "vdir", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
2610 #ifdef FEAT_SESSION
2611 (char_u *)&p_vdir, PV_NONE,
2612 {(char_u *)DFLT_VDIR, (char_u *)0L}
2613 #else
2614 (char_u *)NULL, PV_NONE,
2615 {(char_u *)0L, (char_u *)0L}
2616 #endif
2617 SCRIPTID_INIT},
2618 {"viewoptions", "vop", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2619 #ifdef FEAT_SESSION
2620 (char_u *)&p_vop, PV_NONE,
2621 {(char_u *)"folds,options,cursor", (char_u *)0L}
2622 #else
2623 (char_u *)NULL, PV_NONE,
2624 {(char_u *)0L, (char_u *)0L}
2625 #endif
2626 SCRIPTID_INIT},
2627 {"viminfo", "vi", P_STRING|P_COMMA|P_NODUP|P_SECURE,
2628 #ifdef FEAT_VIMINFO
2629 (char_u *)&p_viminfo, PV_NONE,
2630 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
2631 {(char_u *)"", (char_u *)"'100,<50,s10,h,rA:,rB:"}
2632 #else
2633 # ifdef AMIGA
2634 {(char_u *)"",
2635 (char_u *)"'100,<50,s10,h,rdf0:,rdf1:,rdf2:"}
2636 # else
2637 {(char_u *)"", (char_u *)"'100,<50,s10,h"}
2638 # endif
2639 #endif
2640 #else
2641 (char_u *)NULL, PV_NONE,
2642 {(char_u *)0L, (char_u *)0L}
2643 #endif
2644 SCRIPTID_INIT},
2645 {"virtualedit", "ve", P_STRING|P_COMMA|P_NODUP|P_VI_DEF|P_VIM,
2646 #ifdef FEAT_VIRTUALEDIT
2647 (char_u *)&p_ve, PV_NONE,
2648 {(char_u *)"", (char_u *)""}
2649 #else
2650 (char_u *)NULL, PV_NONE,
2651 {(char_u *)0L, (char_u *)0L}
2652 #endif
2653 SCRIPTID_INIT},
2654 {"visualbell", "vb", P_BOOL|P_VI_DEF,
2655 (char_u *)&p_vb, PV_NONE,
2656 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2657 {"w300", NULL, P_NUM|P_VI_DEF,
2658 (char_u *)NULL, PV_NONE,
2659 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2660 {"w1200", NULL, P_NUM|P_VI_DEF,
2661 (char_u *)NULL, PV_NONE,
2662 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2663 {"w9600", NULL, P_NUM|P_VI_DEF,
2664 (char_u *)NULL, PV_NONE,
2665 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2666 {"warn", NULL, P_BOOL|P_VI_DEF,
2667 (char_u *)&p_warn, PV_NONE,
2668 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2669 {"weirdinvert", "wiv", P_BOOL|P_VI_DEF|P_RCLR,
2670 (char_u *)&p_wiv, PV_NONE,
2671 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2672 {"whichwrap", "ww", P_STRING|P_VIM|P_COMMA|P_FLAGLIST,
2673 (char_u *)&p_ww, PV_NONE,
2674 {(char_u *)"", (char_u *)"b,s"} SCRIPTID_INIT},
2675 {"wildchar", "wc", P_NUM|P_VIM,
2676 (char_u *)&p_wc, PV_NONE,
2677 {(char_u *)(long)Ctrl_E, (char_u *)(long)TAB}
2678 SCRIPTID_INIT},
2679 {"wildcharm", "wcm", P_NUM|P_VI_DEF,
2680 (char_u *)&p_wcm, PV_NONE,
2681 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2682 {"wildignore", "wig", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2683 #ifdef FEAT_WILDIGN
2684 (char_u *)&p_wig, PV_NONE,
2685 #else
2686 (char_u *)NULL, PV_NONE,
2687 #endif
2688 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2689 {"wildmenu", "wmnu", P_BOOL|P_VI_DEF,
2690 #ifdef FEAT_WILDMENU
2691 (char_u *)&p_wmnu, PV_NONE,
2692 #else
2693 (char_u *)NULL, PV_NONE,
2694 #endif
2695 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2696 {"wildmode", "wim", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2697 (char_u *)&p_wim, PV_NONE,
2698 {(char_u *)"full", (char_u *)0L} SCRIPTID_INIT},
2699 {"wildoptions", "wop", P_STRING|P_VI_DEF,
2700 #ifdef FEAT_CMDL_COMPL
2701 (char_u *)&p_wop, PV_NONE,
2702 {(char_u *)"", (char_u *)0L}
2703 #else
2704 (char_u *)NULL, PV_NONE,
2705 {(char_u *)NULL, (char_u *)0L}
2706 #endif
2707 SCRIPTID_INIT},
2708 {"winaltkeys", "wak", P_STRING|P_VI_DEF,
2709 #ifdef FEAT_WAK
2710 (char_u *)&p_wak, PV_NONE,
2711 {(char_u *)"menu", (char_u *)0L}
2712 #else
2713 (char_u *)NULL, PV_NONE,
2714 {(char_u *)NULL, (char_u *)0L}
2715 #endif
2716 SCRIPTID_INIT},
2717 {"window", "wi", P_NUM|P_VI_DEF,
2718 (char_u *)&p_window, PV_NONE,
2719 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2720 {"winheight", "wh", P_NUM|P_VI_DEF,
2721 #ifdef FEAT_WINDOWS
2722 (char_u *)&p_wh, PV_NONE,
2723 #else
2724 (char_u *)NULL, PV_NONE,
2725 #endif
2726 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
2727 {"winfixheight", "wfh", P_BOOL|P_VI_DEF|P_RSTAT,
2728 #ifdef FEAT_WINDOWS
2729 (char_u *)VAR_WIN, PV_WFH,
2730 #else
2731 (char_u *)NULL, PV_NONE,
2732 #endif
2733 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2734 {"winfixwidth", "wfw", P_BOOL|P_VI_DEF|P_RSTAT,
2735 #ifdef FEAT_VERTSPLIT
2736 (char_u *)VAR_WIN, PV_WFW,
2737 #else
2738 (char_u *)NULL, PV_NONE,
2739 #endif
2740 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2741 {"winminheight", "wmh", P_NUM|P_VI_DEF,
2742 #ifdef FEAT_WINDOWS
2743 (char_u *)&p_wmh, PV_NONE,
2744 #else
2745 (char_u *)NULL, PV_NONE,
2746 #endif
2747 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
2748 {"winminwidth", "wmw", P_NUM|P_VI_DEF,
2749 #ifdef FEAT_VERTSPLIT
2750 (char_u *)&p_wmw, PV_NONE,
2751 #else
2752 (char_u *)NULL, PV_NONE,
2753 #endif
2754 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
2755 {"winwidth", "wiw", P_NUM|P_VI_DEF,
2756 #ifdef FEAT_VERTSPLIT
2757 (char_u *)&p_wiw, PV_NONE,
2758 #else
2759 (char_u *)NULL, PV_NONE,
2760 #endif
2761 {(char_u *)20L, (char_u *)0L} SCRIPTID_INIT},
2762 {"wrap", NULL, P_BOOL|P_VI_DEF|P_RWIN,
2763 (char_u *)VAR_WIN, PV_WRAP,
2764 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2765 {"wrapmargin", "wm", P_NUM|P_VI_DEF,
2766 (char_u *)&p_wm, PV_WM,
2767 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2768 {"wrapscan", "ws", P_BOOL|P_VI_DEF,
2769 (char_u *)&p_ws, PV_NONE,
2770 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2771 {"write", NULL, P_BOOL|P_VI_DEF,
2772 (char_u *)&p_write, PV_NONE,
2773 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2774 {"writeany", "wa", P_BOOL|P_VI_DEF,
2775 (char_u *)&p_wa, PV_NONE,
2776 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2777 {"writebackup", "wb", P_BOOL|P_VI_DEF|P_VIM,
2778 (char_u *)&p_wb, PV_NONE,
2780 #ifdef FEAT_WRITEBACKUP
2781 (char_u *)TRUE,
2782 #else
2783 (char_u *)FALSE,
2784 #endif
2785 (char_u *)0L} SCRIPTID_INIT},
2786 {"writedelay", "wd", P_NUM|P_VI_DEF,
2787 (char_u *)&p_wd, PV_NONE,
2788 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2790 /* terminal output codes */
2791 #define p_term(sss, vvv) {sss, NULL, P_STRING|P_VI_DEF|P_RALL|P_SECURE, \
2792 (char_u *)&vvv, PV_NONE, \
2793 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2795 p_term("t_AB", T_CAB)
2796 p_term("t_AF", T_CAF)
2797 p_term("t_AL", T_CAL)
2798 p_term("t_al", T_AL)
2799 p_term("t_bc", T_BC)
2800 p_term("t_cd", T_CD)
2801 p_term("t_ce", T_CE)
2802 p_term("t_cl", T_CL)
2803 p_term("t_cm", T_CM)
2804 p_term("t_Co", T_CCO)
2805 p_term("t_CS", T_CCS)
2806 p_term("t_cs", T_CS)
2807 #ifdef FEAT_VERTSPLIT
2808 p_term("t_CV", T_CSV)
2809 #endif
2810 p_term("t_ut", T_UT)
2811 p_term("t_da", T_DA)
2812 p_term("t_db", T_DB)
2813 p_term("t_DL", T_CDL)
2814 p_term("t_dl", T_DL)
2815 p_term("t_fs", T_FS)
2816 p_term("t_IE", T_CIE)
2817 p_term("t_IS", T_CIS)
2818 p_term("t_ke", T_KE)
2819 p_term("t_ks", T_KS)
2820 p_term("t_le", T_LE)
2821 p_term("t_mb", T_MB)
2822 p_term("t_md", T_MD)
2823 p_term("t_me", T_ME)
2824 p_term("t_mr", T_MR)
2825 p_term("t_ms", T_MS)
2826 p_term("t_nd", T_ND)
2827 p_term("t_op", T_OP)
2828 p_term("t_RI", T_CRI)
2829 p_term("t_RV", T_CRV)
2830 p_term("t_Sb", T_CSB)
2831 p_term("t_Sf", T_CSF)
2832 p_term("t_se", T_SE)
2833 p_term("t_so", T_SO)
2834 p_term("t_sr", T_SR)
2835 p_term("t_ts", T_TS)
2836 p_term("t_te", T_TE)
2837 p_term("t_ti", T_TI)
2838 p_term("t_ue", T_UE)
2839 p_term("t_us", T_US)
2840 p_term("t_vb", T_VB)
2841 p_term("t_ve", T_VE)
2842 p_term("t_vi", T_VI)
2843 p_term("t_vs", T_VS)
2844 p_term("t_WP", T_CWP)
2845 p_term("t_WS", T_CWS)
2846 p_term("t_SI", T_CSI)
2847 p_term("t_EI", T_CEI)
2848 p_term("t_xs", T_XS)
2849 p_term("t_ZH", T_CZH)
2850 p_term("t_ZR", T_CZR)
2852 /* terminal key codes are not in here */
2854 /* end marker */
2855 {NULL, NULL, 0, NULL, PV_NONE, {NULL, NULL} SCRIPTID_INIT}
2858 #define PARAM_COUNT (sizeof(options) / sizeof(struct vimoption))
2860 #ifdef FEAT_MBYTE
2861 static char *(p_ambw_values[]) = {"single", "double", NULL};
2862 #endif
2863 static char *(p_bg_values[]) = {"light", "dark", NULL};
2864 static char *(p_nf_values[]) = {"octal", "hex", "alpha", NULL};
2865 static char *(p_ff_values[]) = {FF_UNIX, FF_DOS, FF_MAC, NULL};
2866 #ifdef FEAT_CMDL_COMPL
2867 static char *(p_wop_values[]) = {"tagfile", NULL};
2868 #endif
2869 #ifdef FEAT_WAK
2870 static char *(p_wak_values[]) = {"yes", "menu", "no", NULL};
2871 #endif
2872 static char *(p_mousem_values[]) = {"extend", "popup", "popup_setpos", "mac", NULL};
2873 #ifdef FEAT_VISUAL
2874 static char *(p_sel_values[]) = {"inclusive", "exclusive", "old", NULL};
2875 static char *(p_slm_values[]) = {"mouse", "key", "cmd", NULL};
2876 #endif
2877 #ifdef FEAT_VISUAL
2878 static char *(p_km_values[]) = {"startsel", "stopsel", NULL};
2879 #endif
2880 #ifdef FEAT_BROWSE
2881 static char *(p_bsdir_values[]) = {"current", "last", "buffer", NULL};
2882 #endif
2883 #ifdef FEAT_SCROLLBIND
2884 static char *(p_scbopt_values[]) = {"ver", "hor", "jump", NULL};
2885 #endif
2886 static char *(p_debug_values[]) = {"msg", "throw", "beep", NULL};
2887 #ifdef FEAT_VERTSPLIT
2888 static char *(p_ead_values[]) = {"both", "ver", "hor", NULL};
2889 #endif
2890 #if defined(FEAT_QUICKFIX)
2891 # ifdef FEAT_AUTOCMD
2892 static char *(p_buftype_values[]) = {"nofile", "nowrite", "quickfix", "help", "acwrite", NULL};
2893 # else
2894 static char *(p_buftype_values[]) = {"nofile", "nowrite", "quickfix", "help", NULL};
2895 # endif
2896 static char *(p_bufhidden_values[]) = {"hide", "unload", "delete", "wipe", NULL};
2897 #endif
2898 static char *(p_bs_values[]) = {"indent", "eol", "start", NULL};
2899 #ifdef FEAT_FOLDING
2900 static char *(p_fdm_values[]) = {"manual", "expr", "marker", "indent", "syntax",
2901 # ifdef FEAT_DIFF
2902 "diff",
2903 # endif
2904 NULL};
2905 static char *(p_fcl_values[]) = {"all", NULL};
2906 #endif
2907 #ifdef FEAT_INS_EXPAND
2908 static char *(p_cot_values[]) = {"menu", "menuone", "longest", "preview", NULL};
2909 #endif
2911 static void set_option_default __ARGS((int, int opt_flags, int compatible));
2912 static void set_options_default __ARGS((int opt_flags));
2913 static char_u *term_bg_default __ARGS((void));
2914 static void did_set_option __ARGS((int opt_idx, int opt_flags, int new_value));
2915 static char_u *illegal_char __ARGS((char_u *, int));
2916 static int string_to_key __ARGS((char_u *arg));
2917 #ifdef FEAT_CMDWIN
2918 static char_u *check_cedit __ARGS((void));
2919 #endif
2920 #ifdef FEAT_TITLE
2921 static void did_set_title __ARGS((int icon));
2922 #endif
2923 static char_u *option_expand __ARGS((int opt_idx, char_u *val));
2924 static void didset_options __ARGS((void));
2925 static void check_string_option __ARGS((char_u **pp));
2926 #if defined(FEAT_EVAL) || defined(PROTO)
2927 static long_u *insecure_flag __ARGS((int opt_idx, int opt_flags));
2928 #else
2929 # define insecure_flag(opt_idx, opt_flags) (&options[opt_idx].flags)
2930 #endif
2931 static void set_string_option_global __ARGS((int opt_idx, char_u **varp));
2932 static void set_string_option __ARGS((int opt_idx, char_u *value, int opt_flags));
2933 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));
2934 static char_u *set_chars_option __ARGS((char_u **varp));
2935 #ifdef FEAT_CLIPBOARD
2936 static char_u *check_clipboard_option __ARGS((void));
2937 #endif
2938 #ifdef FEAT_SPELL
2939 static char_u *compile_cap_prog __ARGS((buf_T *buf));
2940 #endif
2941 #ifdef FEAT_EVAL
2942 static void set_option_scriptID_idx __ARGS((int opt_idx, int opt_flags, int id));
2943 #endif
2944 static char_u *set_bool_option __ARGS((int opt_idx, char_u *varp, int value, int opt_flags));
2945 static char_u *set_num_option __ARGS((int opt_idx, char_u *varp, long value, char_u *errbuf, size_t errbuflen, int opt_flags));
2946 static void check_redraw __ARGS((long_u flags));
2947 static int findoption __ARGS((char_u *));
2948 static int find_key_option __ARGS((char_u *));
2949 static void showoptions __ARGS((int all, int opt_flags));
2950 static int optval_default __ARGS((struct vimoption *, char_u *varp));
2951 static void showoneopt __ARGS((struct vimoption *, int opt_flags));
2952 static int put_setstring __ARGS((FILE *fd, char *cmd, char *name, char_u **valuep, int expand));
2953 static int put_setnum __ARGS((FILE *fd, char *cmd, char *name, long *valuep));
2954 static int put_setbool __ARGS((FILE *fd, char *cmd, char *name, int value));
2955 static int istermoption __ARGS((struct vimoption *));
2956 static char_u *get_varp_scope __ARGS((struct vimoption *p, int opt_flags));
2957 static char_u *get_varp __ARGS((struct vimoption *));
2958 static void option_value2string __ARGS((struct vimoption *, int opt_flags));
2959 static int wc_use_keyname __ARGS((char_u *varp, long *wcp));
2960 #ifdef FEAT_LANGMAP
2961 static void langmap_init __ARGS((void));
2962 static void langmap_set __ARGS((void));
2963 #endif
2964 static void paste_option_changed __ARGS((void));
2965 static void compatible_set __ARGS((void));
2966 #ifdef FEAT_LINEBREAK
2967 static void fill_breakat_flags __ARGS((void));
2968 #endif
2969 static int opt_strings_flags __ARGS((char_u *val, char **values, unsigned *flagp, int list));
2970 static int check_opt_strings __ARGS((char_u *val, char **values, int));
2971 static int check_opt_wim __ARGS((void));
2974 * Initialize the options, first part.
2976 * Called only once from main(), just after creating the first buffer.
2978 void
2979 set_init_1()
2981 char_u *p;
2982 int opt_idx;
2983 long_u n;
2985 #ifdef FEAT_LANGMAP
2986 langmap_init();
2987 #endif
2989 /* Be Vi compatible by default */
2990 p_cp = TRUE;
2992 /* Use POSIX compatibility when $VIM_POSIX is set. */
2993 if (mch_getenv((char_u *)"VIM_POSIX") != NULL)
2995 set_string_default("cpo", (char_u *)CPO_ALL);
2996 set_string_default("shm", (char_u *)"A");
3000 * Find default value for 'shell' option.
3001 * Don't use it if it is empty.
3003 if (((p = mch_getenv((char_u *)"SHELL")) != NULL && *p != NUL)
3004 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
3005 # ifdef __EMX__
3006 || ((p = mch_getenv((char_u *)"EMXSHELL")) != NULL && *p != NUL)
3007 # endif
3008 || ((p = mch_getenv((char_u *)"COMSPEC")) != NULL && *p != NUL)
3009 # ifdef WIN3264
3010 || ((p = default_shell()) != NULL && *p != NUL)
3011 # endif
3012 #endif
3014 set_string_default("sh", p);
3016 #ifdef FEAT_WILDIGN
3018 * Set the default for 'backupskip' to include environment variables for
3019 * temp files.
3022 # ifdef UNIX
3023 static char *(names[4]) = {"", "TMPDIR", "TEMP", "TMP"};
3024 # else
3025 static char *(names[3]) = {"TMPDIR", "TEMP", "TMP"};
3026 # endif
3027 int len;
3028 garray_T ga;
3029 int mustfree;
3031 ga_init2(&ga, 1, 100);
3032 for (n = 0; n < (long)(sizeof(names) / sizeof(char *)); ++n)
3034 mustfree = FALSE;
3035 # ifdef UNIX
3036 if (*names[n] == NUL)
3037 p = (char_u *)"/tmp";
3038 else
3039 # endif
3040 p = vim_getenv((char_u *)names[n], &mustfree);
3041 if (p != NULL && *p != NUL)
3043 /* First time count the NUL, otherwise count the ','. */
3044 len = (int)STRLEN(p) + 3;
3045 if (ga_grow(&ga, len) == OK)
3047 if (ga.ga_len > 0)
3048 STRCAT(ga.ga_data, ",");
3049 STRCAT(ga.ga_data, p);
3050 add_pathsep(ga.ga_data);
3051 STRCAT(ga.ga_data, "*");
3052 ga.ga_len += len;
3055 if (mustfree)
3056 vim_free(p);
3058 if (ga.ga_data != NULL)
3060 set_string_default("bsk", ga.ga_data);
3061 vim_free(ga.ga_data);
3064 #endif
3067 * 'maxmemtot' and 'maxmem' may have to be adjusted for available memory
3069 opt_idx = findoption((char_u *)"maxmemtot");
3070 if (opt_idx >= 0)
3072 #if !defined(HAVE_AVAIL_MEM) && !defined(HAVE_TOTAL_MEM)
3073 if (options[opt_idx].def_val[VI_DEFAULT] == (char_u *)0L)
3074 #endif
3076 #ifdef HAVE_AVAIL_MEM
3077 /* Use amount of memory available at this moment. */
3078 n = (mch_avail_mem(FALSE) >> 11);
3079 #else
3080 # ifdef HAVE_TOTAL_MEM
3081 /* Use amount of memory available to Vim. */
3082 n = (mch_total_mem(FALSE) >> 1);
3083 # else
3084 n = (0x7fffffff >> 11);
3085 # endif
3086 #endif
3087 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)n;
3088 opt_idx = findoption((char_u *)"maxmem");
3089 if (opt_idx >= 0)
3091 #if !defined(HAVE_AVAIL_MEM) && !defined(HAVE_TOTAL_MEM)
3092 if ((long)options[opt_idx].def_val[VI_DEFAULT] > n
3093 || (long)options[opt_idx].def_val[VI_DEFAULT] == 0L)
3094 #endif
3095 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)n;
3100 #ifdef FEAT_GUI_W32
3101 /* force 'shortname' for Win32s */
3102 if (gui_is_win32s())
3104 opt_idx = findoption((char_u *)"shortname");
3105 if (opt_idx >= 0)
3106 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)TRUE;
3108 #endif
3110 #ifdef FEAT_SEARCHPATH
3112 char_u *cdpath;
3113 char_u *buf;
3114 int i;
3115 int j;
3116 int mustfree = FALSE;
3118 /* Initialize the 'cdpath' option's default value. */
3119 cdpath = vim_getenv((char_u *)"CDPATH", &mustfree);
3120 if (cdpath != NULL)
3122 buf = alloc((unsigned)((STRLEN(cdpath) << 1) + 2));
3123 if (buf != NULL)
3125 buf[0] = ','; /* start with ",", current dir first */
3126 j = 1;
3127 for (i = 0; cdpath[i] != NUL; ++i)
3129 if (vim_ispathlistsep(cdpath[i]))
3130 buf[j++] = ',';
3131 else
3133 if (cdpath[i] == ' ' || cdpath[i] == ',')
3134 buf[j++] = '\\';
3135 buf[j++] = cdpath[i];
3138 buf[j] = NUL;
3139 opt_idx = findoption((char_u *)"cdpath");
3140 if (opt_idx >= 0)
3142 options[opt_idx].def_val[VI_DEFAULT] = buf;
3143 options[opt_idx].flags |= P_DEF_ALLOCED;
3146 if (mustfree)
3147 vim_free(cdpath);
3150 #endif
3152 #if defined(FEAT_POSTSCRIPT) && (defined(MSWIN) || defined(OS2) || defined(VMS) || defined(EBCDIC) || defined(MAC) || defined(hpux))
3153 /* Set print encoding on platforms that don't default to latin1 */
3154 set_string_default("penc",
3155 # if defined(MSWIN) || defined(OS2)
3156 (char_u *)"cp1252"
3157 # else
3158 # ifdef VMS
3159 (char_u *)"dec-mcs"
3160 # else
3161 # ifdef EBCDIC
3162 (char_u *)"ebcdic-uk"
3163 # else
3164 # ifdef MAC
3165 (char_u *)"mac-roman"
3166 # else /* HPUX */
3167 (char_u *)"hp-roman8"
3168 # endif
3169 # endif
3170 # endif
3171 # endif
3173 #endif
3175 #ifdef FEAT_POSTSCRIPT
3176 /* 'printexpr' must be allocated to be able to evaluate it. */
3177 set_string_default("pexpr",
3178 # if defined(MSWIN) || defined(MSDOS) || defined(OS2)
3179 (char_u *)"system('copy' . ' ' . v:fname_in . (&printdevice == '' ? ' LPT1:' : (' \"' . &printdevice . '\"'))) . delete(v:fname_in)"
3180 # else
3181 # ifdef VMS
3182 (char_u *)"system('print/delete' . (&printdevice == '' ? '' : ' /queue=' . &printdevice) . ' ' . v:fname_in)"
3184 # else
3185 (char_u *)"system('lpr' . (&printdevice == '' ? '' : ' -P' . &printdevice) . ' ' . v:fname_in) . delete(v:fname_in) + v:shell_error"
3186 # endif
3187 # endif
3189 #endif
3192 * Set all the options (except the terminal options) to their default
3193 * value. Also set the global value for local options.
3195 set_options_default(0);
3197 #ifdef FEAT_GUI
3198 if (found_reverse_arg)
3199 set_option_value((char_u *)"bg", 0L, (char_u *)"dark", 0);
3200 #endif
3202 curbuf->b_p_initialized = TRUE;
3203 curbuf->b_p_ar = -1; /* no local 'autoread' value */
3204 check_buf_options(curbuf);
3205 check_win_options(curwin);
3206 check_options();
3208 /* Must be before option_expand(), because that one needs vim_isIDc() */
3209 didset_options();
3211 #ifdef FEAT_SPELL
3212 /* Use the current chartab for the generic chartab. */
3213 init_spell_chartab();
3214 #endif
3216 #ifdef FEAT_LINEBREAK
3218 * initialize the table for 'breakat'.
3220 fill_breakat_flags();
3221 #endif
3224 * Expand environment variables and things like "~" for the defaults.
3225 * If option_expand() returns non-NULL the variable is expanded. This can
3226 * only happen for non-indirect options.
3227 * Also set the default to the expanded value, so ":set" does not list
3228 * them.
3229 * Don't set the P_ALLOCED flag, because we don't want to free the
3230 * default.
3232 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
3234 if ((options[opt_idx].flags & P_GETTEXT)
3235 && options[opt_idx].var != NULL)
3236 p = (char_u *)_(*(char **)options[opt_idx].var);
3237 else
3238 p = option_expand(opt_idx, NULL);
3239 if (p != NULL && (p = vim_strsave(p)) != NULL)
3241 *(char_u **)options[opt_idx].var = p;
3242 /* VIMEXP
3243 * Defaults for all expanded options are currently the same for Vi
3244 * and Vim. When this changes, add some code here! Also need to
3245 * split P_DEF_ALLOCED in two.
3247 if (options[opt_idx].flags & P_DEF_ALLOCED)
3248 vim_free(options[opt_idx].def_val[VI_DEFAULT]);
3249 options[opt_idx].def_val[VI_DEFAULT] = p;
3250 options[opt_idx].flags |= P_DEF_ALLOCED;
3254 /* Initialize the highlight_attr[] table. */
3255 highlight_changed();
3257 save_file_ff(curbuf); /* Buffer is unchanged */
3259 /* Parse default for 'wildmode' */
3260 check_opt_wim();
3262 #if defined(FEAT_ARABIC)
3263 /* Detect use of mlterm.
3264 * Mlterm is a terminal emulator akin to xterm that has some special
3265 * abilities (bidi namely).
3266 * NOTE: mlterm's author is being asked to 'set' a variable
3267 * instead of an environment variable due to inheritance.
3269 if (mch_getenv((char_u *)"MLTERM") != NULL)
3270 set_option_value((char_u *)"tbidi", 1L, NULL, 0);
3271 #endif
3273 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
3274 /* Parse default for 'fillchars'. */
3275 (void)set_chars_option(&p_fcs);
3276 #endif
3278 #ifdef FEAT_CLIPBOARD
3279 /* Parse default for 'clipboard' */
3280 (void)check_clipboard_option();
3281 #endif
3283 #ifdef FEAT_MBYTE
3284 # if defined(WIN3264) && defined(FEAT_GETTEXT)
3286 * If $LANG isn't set, try to get a good value for it. This makes the
3287 * right language be used automatically. Don't do this for English.
3289 if (mch_getenv((char_u *)"LANG") == NULL)
3291 char buf[20];
3293 /* Could use LOCALE_SISO639LANGNAME, but it's not in Win95.
3294 * LOCALE_SABBREVLANGNAME gives us three letters, like "enu", we use
3295 * only the first two. */
3296 n = GetLocaleInfo(LOCALE_USER_DEFAULT, LOCALE_SABBREVLANGNAME,
3297 (LPTSTR)buf, 20);
3298 if (n >= 2 && STRNICMP(buf, "en", 2) != 0)
3300 /* There are a few exceptions (probably more) */
3301 if (STRNICMP(buf, "cht", 3) == 0 || STRNICMP(buf, "zht", 3) == 0)
3302 STRCPY(buf, "zh_TW");
3303 else if (STRNICMP(buf, "chs", 3) == 0
3304 || STRNICMP(buf, "zhc", 3) == 0)
3305 STRCPY(buf, "zh_CN");
3306 else if (STRNICMP(buf, "jp", 2) == 0)
3307 STRCPY(buf, "ja");
3308 else
3309 buf[2] = NUL; /* truncate to two-letter code */
3310 vim_setenv("LANG", buf);
3313 # else
3314 # ifdef MACOS_CONVERT
3315 /* Moved to os_mac_conv.c to avoid dependency problems. */
3316 mac_lang_init();
3317 # endif
3318 # endif
3320 /* enc_locale() will try to find the encoding of the current locale. */
3321 p = enc_locale();
3322 if (p != NULL)
3324 char_u *save_enc;
3326 /* Try setting 'encoding' and check if the value is valid.
3327 * If not, go back to the default "latin1". */
3328 save_enc = p_enc;
3329 p_enc = p;
3330 if (STRCMP(p_enc, "gb18030") == 0)
3332 /* We don't support "gb18030", but "cp936" is a good substitute
3333 * for practical purposes, thus use that. It's not an alias to
3334 * still support conversion between gb18030 and utf-8. */
3335 p_enc = vim_strsave((char_u *)"cp936");
3336 vim_free(p);
3338 if (mb_init() == NULL)
3340 opt_idx = findoption((char_u *)"encoding");
3341 if (opt_idx >= 0)
3343 options[opt_idx].def_val[VI_DEFAULT] = p_enc;
3344 options[opt_idx].flags |= P_DEF_ALLOCED;
3347 #if defined(MSDOS) || defined(MSWIN) || defined(OS2) || defined(MACOS) \
3348 || defined(VMS)
3349 if (STRCMP(p_enc, "latin1") == 0
3350 # ifdef FEAT_MBYTE
3351 || enc_utf8
3352 # endif
3355 /* Adjust the default for 'isprint' and 'iskeyword' to match
3356 * latin1. Also set the defaults for when 'nocompatible' is
3357 * set. */
3358 set_string_option_direct((char_u *)"isp", -1,
3359 ISP_LATIN1, OPT_FREE, SID_NONE);
3360 set_string_option_direct((char_u *)"isk", -1,
3361 ISK_LATIN1, OPT_FREE, SID_NONE);
3362 opt_idx = findoption((char_u *)"isp");
3363 if (opt_idx >= 0)
3364 options[opt_idx].def_val[VIM_DEFAULT] = ISP_LATIN1;
3365 opt_idx = findoption((char_u *)"isk");
3366 if (opt_idx >= 0)
3367 options[opt_idx].def_val[VIM_DEFAULT] = ISK_LATIN1;
3368 (void)init_chartab();
3370 #endif
3372 # if defined(WIN3264) && !defined(FEAT_GUI)
3373 /* Win32 console: When GetACP() returns a different value from
3374 * GetConsoleCP() set 'termencoding'. */
3375 if (GetACP() != GetConsoleCP())
3377 char buf[50];
3379 sprintf(buf, "cp%ld", (long)GetConsoleCP());
3380 p_tenc = vim_strsave((char_u *)buf);
3381 if (p_tenc != NULL)
3383 opt_idx = findoption((char_u *)"termencoding");
3384 if (opt_idx >= 0)
3386 options[opt_idx].def_val[VI_DEFAULT] = p_tenc;
3387 options[opt_idx].flags |= P_DEF_ALLOCED;
3389 convert_setup(&input_conv, p_tenc, p_enc);
3390 convert_setup(&output_conv, p_enc, p_tenc);
3392 else
3393 p_tenc = empty_option;
3395 # endif
3396 # if defined(WIN3264) && defined(FEAT_MBYTE)
3397 /* $HOME may have characters in active code page. */
3398 init_homedir();
3399 # endif
3401 else
3403 vim_free(p_enc);
3404 p_enc = save_enc;
3407 #endif
3409 #ifdef FEAT_MULTI_LANG
3410 /* Set the default for 'helplang'. */
3411 set_helplang_default(get_mess_lang());
3412 #endif
3416 * Set an option to its default value.
3417 * This does not take care of side effects!
3419 static void
3420 set_option_default(opt_idx, opt_flags, compatible)
3421 int opt_idx;
3422 int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */
3423 int compatible; /* use Vi default value */
3425 char_u *varp; /* pointer to variable for current option */
3426 int dvi; /* index in def_val[] */
3427 long_u flags;
3428 long_u *flagsp;
3429 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
3431 varp = get_varp_scope(&(options[opt_idx]), both ? OPT_LOCAL : opt_flags);
3432 flags = options[opt_idx].flags;
3433 if (varp != NULL) /* skip hidden option, nothing to do for it */
3435 dvi = ((flags & P_VI_DEF) || compatible) ? VI_DEFAULT : VIM_DEFAULT;
3436 if (flags & P_STRING)
3438 /* Use set_string_option_direct() for local options to handle
3439 * freeing and allocating the value. */
3440 if (options[opt_idx].indir != PV_NONE)
3441 set_string_option_direct(NULL, opt_idx,
3442 options[opt_idx].def_val[dvi], opt_flags, 0);
3443 else
3445 if ((opt_flags & OPT_FREE) && (flags & P_ALLOCED))
3446 free_string_option(*(char_u **)(varp));
3447 *(char_u **)varp = options[opt_idx].def_val[dvi];
3448 options[opt_idx].flags &= ~P_ALLOCED;
3451 else if (flags & P_NUM)
3453 if (options[opt_idx].indir == PV_SCROLL)
3454 win_comp_scroll(curwin);
3455 else
3457 *(long *)varp = (long)(long_i)options[opt_idx].def_val[dvi];
3458 /* May also set global value for local option. */
3459 if (both)
3460 *(long *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) =
3461 *(long *)varp;
3464 else /* P_BOOL */
3466 /* the cast to long is required for Manx C, long_i is needed for
3467 * MSVC */
3468 *(int *)varp = (int)(long)(long_i)options[opt_idx].def_val[dvi];
3469 #ifdef UNIX
3470 /* 'modeline' defaults to off for root */
3471 if (options[opt_idx].indir == PV_ML && getuid() == ROOT_UID)
3472 *(int *)varp = FALSE;
3473 #endif
3474 /* May also set global value for local option. */
3475 if (both)
3476 *(int *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) =
3477 *(int *)varp;
3480 /* The default value is not insecure. */
3481 flagsp = insecure_flag(opt_idx, opt_flags);
3482 *flagsp = *flagsp & ~P_INSECURE;
3485 #ifdef FEAT_EVAL
3486 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
3487 #endif
3491 * Set all options (except terminal options) to their default value.
3493 static void
3494 set_options_default(opt_flags)
3495 int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */
3497 int i;
3498 #ifdef FEAT_WINDOWS
3499 win_T *wp;
3500 tabpage_T *tp;
3501 #endif
3503 for (i = 0; !istermoption(&options[i]); i++)
3504 if (!(options[i].flags & P_NODEFAULT))
3505 set_option_default(i, opt_flags, p_cp);
3507 #ifdef FEAT_WINDOWS
3508 /* The 'scroll' option must be computed for all windows. */
3509 FOR_ALL_TAB_WINDOWS(tp, wp)
3510 win_comp_scroll(wp);
3511 #else
3512 win_comp_scroll(curwin);
3513 #endif
3517 * Set the Vi-default value of a string option.
3518 * Used for 'sh', 'backupskip' and 'term'.
3520 void
3521 set_string_default(name, val)
3522 char *name;
3523 char_u *val;
3525 char_u *p;
3526 int opt_idx;
3528 p = vim_strsave(val);
3529 if (p != NULL) /* we don't want a NULL */
3531 opt_idx = findoption((char_u *)name);
3532 if (opt_idx >= 0)
3534 if (options[opt_idx].flags & P_DEF_ALLOCED)
3535 vim_free(options[opt_idx].def_val[VI_DEFAULT]);
3536 options[opt_idx].def_val[VI_DEFAULT] = p;
3537 options[opt_idx].flags |= P_DEF_ALLOCED;
3543 * Set the Vi-default value of a number option.
3544 * Used for 'lines' and 'columns'.
3546 void
3547 set_number_default(name, val)
3548 char *name;
3549 long val;
3551 int opt_idx;
3553 opt_idx = findoption((char_u *)name);
3554 if (opt_idx >= 0)
3555 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
3558 #if defined(EXITFREE) || defined(PROTO)
3560 * Free all options.
3562 void
3563 free_all_options()
3565 int i;
3567 for (i = 0; !istermoption(&options[i]); i++)
3569 if (options[i].indir == PV_NONE)
3571 /* global option: free value and default value. */
3572 if (options[i].flags & P_ALLOCED && options[i].var != NULL)
3573 free_string_option(*(char_u **)options[i].var);
3574 if (options[i].flags & P_DEF_ALLOCED)
3575 free_string_option(options[i].def_val[VI_DEFAULT]);
3577 else if (options[i].var != VAR_WIN
3578 && (options[i].flags & P_STRING))
3579 /* buffer-local option: free global value */
3580 free_string_option(*(char_u **)options[i].var);
3583 #endif
3587 * Initialize the options, part two: After getting Rows and Columns and
3588 * setting 'term'.
3590 void
3591 set_init_2()
3593 int idx;
3596 * 'scroll' defaults to half the window height. Note that this default is
3597 * wrong when the window height changes.
3599 set_number_default("scroll", (long)((long_u)Rows >> 1));
3600 idx = findoption((char_u *)"scroll");
3601 if (idx >= 0 && !(options[idx].flags & P_WAS_SET))
3602 set_option_default(idx, OPT_LOCAL, p_cp);
3603 comp_col();
3606 * 'window' is only for backwards compatibility with Vi.
3607 * Default is Rows - 1.
3609 if (!option_was_set((char_u *)"window"))
3610 p_window = Rows - 1;
3611 set_number_default("window", Rows - 1);
3613 /* For DOS console the default is always black. */
3614 #if !((defined(MSDOS) || defined(OS2) || defined(WIN3264)) && !defined(FEAT_GUI))
3616 * If 'background' wasn't set by the user, try guessing the value,
3617 * depending on the terminal name. Only need to check for terminals
3618 * with a dark background, that can handle color.
3620 idx = findoption((char_u *)"bg");
3621 if (idx >= 0 && !(options[idx].flags & P_WAS_SET)
3622 && *term_bg_default() == 'd')
3624 set_string_option_direct(NULL, idx, (char_u *)"dark", OPT_FREE, 0);
3625 /* don't mark it as set, when starting the GUI it may be
3626 * changed again */
3627 options[idx].flags &= ~P_WAS_SET;
3629 #endif
3631 #ifdef CURSOR_SHAPE
3632 parse_shape_opt(SHAPE_CURSOR); /* set cursor shapes from 'guicursor' */
3633 #endif
3634 #ifdef FEAT_MOUSESHAPE
3635 parse_shape_opt(SHAPE_MOUSE); /* set mouse shapes from 'mouseshape' */
3636 #endif
3637 #ifdef FEAT_PRINTER
3638 (void)parse_printoptions(); /* parse 'printoptions' default value */
3639 #endif
3643 * Return "dark" or "light" depending on the kind of terminal.
3644 * This is just guessing! Recognized are:
3645 * "linux" Linux console
3646 * "screen.linux" Linux console with screen
3647 * "cygwin" Cygwin shell
3648 * "putty" Putty program
3649 * We also check the COLORFGBG environment variable, which is set by
3650 * rxvt and derivatives. This variable contains either two or three
3651 * values separated by semicolons; we want the last value in either
3652 * case. If this value is 0-6 or 8, our background is dark.
3654 static char_u *
3655 term_bg_default()
3657 #if defined(MSDOS) || defined(OS2) || defined(WIN3264)
3658 /* DOS console nearly always black */
3659 return (char_u *)"dark";
3660 #else
3661 char_u *p;
3663 if (STRCMP(T_NAME, "linux") == 0
3664 || STRCMP(T_NAME, "screen.linux") == 0
3665 || STRCMP(T_NAME, "cygwin") == 0
3666 || STRCMP(T_NAME, "putty") == 0
3667 || ((p = mch_getenv((char_u *)"COLORFGBG")) != NULL
3668 && (p = vim_strrchr(p, ';')) != NULL
3669 && ((p[1] >= '0' && p[1] <= '6') || p[1] == '8')
3670 && p[2] == NUL))
3671 return (char_u *)"dark";
3672 return (char_u *)"light";
3673 #endif
3677 * Initialize the options, part three: After reading the .vimrc
3679 void
3680 set_init_3()
3682 #if defined(UNIX) || defined(OS2) || defined(WIN3264)
3684 * Set 'shellpipe' and 'shellredir', depending on the 'shell' option.
3685 * This is done after other initializations, where 'shell' might have been
3686 * set, but only if they have not been set before.
3688 char_u *p;
3689 int idx_srr;
3690 int do_srr;
3691 #ifdef FEAT_QUICKFIX
3692 int idx_sp;
3693 int do_sp;
3694 #endif
3696 idx_srr = findoption((char_u *)"srr");
3697 if (idx_srr < 0)
3698 do_srr = FALSE;
3699 else
3700 do_srr = !(options[idx_srr].flags & P_WAS_SET);
3701 #ifdef FEAT_QUICKFIX
3702 idx_sp = findoption((char_u *)"sp");
3703 if (idx_sp < 0)
3704 do_sp = FALSE;
3705 else
3706 do_sp = !(options[idx_sp].flags & P_WAS_SET);
3707 #endif
3710 * Isolate the name of the shell:
3711 * - Skip beyond any path. E.g., "/usr/bin/csh -f" -> "csh -f".
3712 * - Remove any argument. E.g., "csh -f" -> "csh".
3714 p = gettail(p_sh);
3715 p = vim_strnsave(p, (int)(skiptowhite(p) - p));
3716 if (p != NULL)
3719 * Default for p_sp is "| tee", for p_srr is ">".
3720 * For known shells it is changed here to include stderr.
3722 if ( fnamecmp(p, "csh") == 0
3723 || fnamecmp(p, "tcsh") == 0
3724 # if defined(OS2) || defined(WIN3264) /* also check with .exe extension */
3725 || fnamecmp(p, "csh.exe") == 0
3726 || fnamecmp(p, "tcsh.exe") == 0
3727 # endif
3730 #if defined(FEAT_QUICKFIX)
3731 if (do_sp)
3733 # ifdef WIN3264
3734 p_sp = (char_u *)">&";
3735 # else
3736 p_sp = (char_u *)"|& tee";
3737 # endif
3738 options[idx_sp].def_val[VI_DEFAULT] = p_sp;
3740 #endif
3741 if (do_srr)
3743 p_srr = (char_u *)">&";
3744 options[idx_srr].def_val[VI_DEFAULT] = p_srr;
3747 else
3748 # ifndef OS2 /* Always use bourne shell style redirection if we reach this */
3749 if ( fnamecmp(p, "sh") == 0
3750 || fnamecmp(p, "ksh") == 0
3751 || fnamecmp(p, "zsh") == 0
3752 || fnamecmp(p, "zsh-beta") == 0
3753 || fnamecmp(p, "bash") == 0
3754 # ifdef WIN3264
3755 || fnamecmp(p, "cmd") == 0
3756 || fnamecmp(p, "sh.exe") == 0
3757 || fnamecmp(p, "ksh.exe") == 0
3758 || fnamecmp(p, "zsh.exe") == 0
3759 || fnamecmp(p, "zsh-beta.exe") == 0
3760 || fnamecmp(p, "bash.exe") == 0
3761 || fnamecmp(p, "cmd.exe") == 0
3762 # endif
3764 # endif
3766 #if defined(FEAT_QUICKFIX)
3767 if (do_sp)
3769 # ifdef WIN3264
3770 p_sp = (char_u *)">%s 2>&1";
3771 # else
3772 p_sp = (char_u *)"2>&1| tee";
3773 # endif
3774 options[idx_sp].def_val[VI_DEFAULT] = p_sp;
3776 #endif
3777 if (do_srr)
3779 p_srr = (char_u *)">%s 2>&1";
3780 options[idx_srr].def_val[VI_DEFAULT] = p_srr;
3783 vim_free(p);
3785 #endif
3787 #if defined(MSDOS) || defined(WIN3264) || defined(OS2)
3789 * Set 'shellcmdflag and 'shellquote' depending on the 'shell' option.
3790 * This is done after other initializations, where 'shell' might have been
3791 * set, but only if they have not been set before. Default for p_shcf is
3792 * "/c", for p_shq is "". For "sh" like shells it is changed here to
3793 * "-c" and "\"", but not for DJGPP, because it starts the shell without
3794 * command.com. And for Win32 we need to set p_sxq instead.
3796 if (strstr((char *)gettail(p_sh), "sh") != NULL)
3798 int idx3;
3800 idx3 = findoption((char_u *)"shcf");
3801 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
3803 p_shcf = (char_u *)"-c";
3804 options[idx3].def_val[VI_DEFAULT] = p_shcf;
3807 # ifndef DJGPP
3808 # ifdef WIN3264
3809 /* Somehow Win32 requires the quotes around the redirection too */
3810 idx3 = findoption((char_u *)"sxq");
3811 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
3813 p_sxq = (char_u *)"\"";
3814 options[idx3].def_val[VI_DEFAULT] = p_sxq;
3816 # else
3817 idx3 = findoption((char_u *)"shq");
3818 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
3820 p_shq = (char_u *)"\"";
3821 options[idx3].def_val[VI_DEFAULT] = p_shq;
3823 # endif
3824 # endif
3826 #endif
3828 #ifdef FEAT_TITLE
3829 set_title_defaults();
3830 #endif
3833 #if defined(FEAT_MULTI_LANG) || defined(PROTO)
3835 * When 'helplang' is still at its default value, set it to "lang".
3836 * Only the first two characters of "lang" are used.
3838 void
3839 set_helplang_default(lang)
3840 char_u *lang;
3842 int idx;
3844 if (lang == NULL || STRLEN(lang) < 2) /* safety check */
3845 return;
3846 idx = findoption((char_u *)"hlg");
3847 if (idx >= 0 && !(options[idx].flags & P_WAS_SET))
3849 if (options[idx].flags & P_ALLOCED)
3850 free_string_option(p_hlg);
3851 p_hlg = vim_strsave(lang);
3852 if (p_hlg == NULL)
3853 p_hlg = empty_option;
3854 else
3856 /* zh_CN becomes "cn", zh_TW becomes "tw". */
3857 if (STRNICMP(p_hlg, "zh_", 3) == 0 && STRLEN(p_hlg) >= 5)
3859 p_hlg[0] = TOLOWER_ASC(p_hlg[3]);
3860 p_hlg[1] = TOLOWER_ASC(p_hlg[4]);
3862 p_hlg[2] = NUL;
3864 options[idx].flags |= P_ALLOCED;
3867 #endif
3869 #ifdef FEAT_GUI
3870 static char_u *gui_bg_default __ARGS((void));
3872 static char_u *
3873 gui_bg_default()
3875 if (gui_get_lightness(gui.back_pixel) < 127)
3876 return (char_u *)"dark";
3877 return (char_u *)"light";
3881 * Option initializations that can only be done after opening the GUI window.
3883 void
3884 init_gui_options()
3886 /* Set the 'background' option according to the lightness of the
3887 * background color, unless the user has set it already. */
3888 if (!option_was_set((char_u *)"bg") && STRCMP(p_bg, gui_bg_default()) != 0)
3890 set_option_value((char_u *)"bg", 0L, gui_bg_default(), 0);
3891 highlight_changed();
3894 #endif
3896 #ifdef FEAT_TITLE
3898 * 'title' and 'icon' only default to true if they have not been set or reset
3899 * in .vimrc and we can read the old value.
3900 * When 'title' and 'icon' have been reset in .vimrc, we won't even check if
3901 * they can be reset. This reduces startup time when using X on a remote
3902 * machine.
3904 void
3905 set_title_defaults()
3907 int idx1;
3908 long val;
3911 * If GUI is (going to be) used, we can always set the window title and
3912 * icon name. Saves a bit of time, because the X11 display server does
3913 * not need to be contacted.
3915 idx1 = findoption((char_u *)"title");
3916 if (idx1 >= 0 && !(options[idx1].flags & P_WAS_SET))
3918 #ifdef FEAT_GUI
3919 if (gui.starting || gui.in_use)
3920 val = TRUE;
3921 else
3922 #endif
3923 val = mch_can_restore_title();
3924 options[idx1].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
3925 p_title = val;
3927 idx1 = findoption((char_u *)"icon");
3928 if (idx1 >= 0 && !(options[idx1].flags & P_WAS_SET))
3930 #ifdef FEAT_GUI
3931 if (gui.starting || gui.in_use)
3932 val = TRUE;
3933 else
3934 #endif
3935 val = mch_can_restore_icon();
3936 options[idx1].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
3937 p_icon = val;
3940 #endif
3943 * Parse 'arg' for option settings.
3945 * 'arg' may be IObuff, but only when no errors can be present and option
3946 * does not need to be expanded with option_expand().
3947 * "opt_flags":
3948 * 0 for ":set"
3949 * OPT_GLOBAL for ":setglobal"
3950 * OPT_LOCAL for ":setlocal" and a modeline
3951 * OPT_MODELINE for a modeline
3952 * OPT_WINONLY to only set window-local options
3953 * OPT_NOWIN to skip setting window-local options
3955 * returns FAIL if an error is detected, OK otherwise
3958 do_set(arg, opt_flags)
3959 char_u *arg; /* option string (may be written to!) */
3960 int opt_flags;
3962 int opt_idx;
3963 char_u *errmsg;
3964 char_u errbuf[80];
3965 char_u *startarg;
3966 int prefix; /* 1: nothing, 0: "no", 2: "inv" in front of name */
3967 int nextchar; /* next non-white char after option name */
3968 int afterchar; /* character just after option name */
3969 int len;
3970 int i;
3971 long value;
3972 int key;
3973 long_u flags; /* flags for current option */
3974 char_u *varp = NULL; /* pointer to variable for current option */
3975 int did_show = FALSE; /* already showed one value */
3976 int adding; /* "opt+=arg" */
3977 int prepending; /* "opt^=arg" */
3978 int removing; /* "opt-=arg" */
3979 int cp_val = 0;
3980 char_u key_name[2];
3982 if (*arg == NUL)
3984 showoptions(0, opt_flags);
3985 did_show = TRUE;
3986 goto theend;
3989 while (*arg != NUL) /* loop to process all options */
3991 errmsg = NULL;
3992 startarg = arg; /* remember for error message */
3994 if (STRNCMP(arg, "all", 3) == 0 && !isalpha(arg[3])
3995 && !(opt_flags & OPT_MODELINE))
3998 * ":set all" show all options.
3999 * ":set all&" set all options to their default value.
4001 arg += 3;
4002 if (*arg == '&')
4004 ++arg;
4005 /* Only for :set command set global value of local options. */
4006 set_options_default(OPT_FREE | opt_flags);
4008 else
4010 showoptions(1, opt_flags);
4011 did_show = TRUE;
4014 else if (STRNCMP(arg, "termcap", 7) == 0 && !(opt_flags & OPT_MODELINE))
4016 showoptions(2, opt_flags);
4017 show_termcodes();
4018 did_show = TRUE;
4019 arg += 7;
4021 else
4023 prefix = 1;
4024 if (STRNCMP(arg, "no", 2) == 0 && STRNCMP(arg, "novice", 6) != 0)
4026 prefix = 0;
4027 arg += 2;
4029 else if (STRNCMP(arg, "inv", 3) == 0)
4031 prefix = 2;
4032 arg += 3;
4035 /* find end of name */
4036 key = 0;
4037 if (*arg == '<')
4039 nextchar = 0;
4040 opt_idx = -1;
4041 /* look out for <t_>;> */
4042 if (arg[1] == 't' && arg[2] == '_' && arg[3] && arg[4])
4043 len = 5;
4044 else
4046 len = 1;
4047 while (arg[len] != NUL && arg[len] != '>')
4048 ++len;
4050 if (arg[len] != '>')
4052 errmsg = e_invarg;
4053 goto skip;
4055 arg[len] = NUL; /* put NUL after name */
4056 if (arg[1] == 't' && arg[2] == '_') /* could be term code */
4057 opt_idx = findoption(arg + 1);
4058 arg[len++] = '>'; /* restore '>' */
4059 if (opt_idx == -1)
4060 key = find_key_option(arg + 1);
4062 else
4064 len = 0;
4066 * The two characters after "t_" may not be alphanumeric.
4068 if (arg[0] == 't' && arg[1] == '_' && arg[2] && arg[3])
4069 len = 4;
4070 else
4071 while (ASCII_ISALNUM(arg[len]) || arg[len] == '_')
4072 ++len;
4073 nextchar = arg[len];
4074 arg[len] = NUL; /* put NUL after name */
4075 opt_idx = findoption(arg);
4076 arg[len] = nextchar; /* restore nextchar */
4077 if (opt_idx == -1)
4078 key = find_key_option(arg);
4081 /* remember character after option name */
4082 afterchar = arg[len];
4084 /* skip white space, allow ":set ai ?" */
4085 while (vim_iswhite(arg[len]))
4086 ++len;
4088 adding = FALSE;
4089 prepending = FALSE;
4090 removing = FALSE;
4091 if (arg[len] != NUL && arg[len + 1] == '=')
4093 if (arg[len] == '+')
4095 adding = TRUE; /* "+=" */
4096 ++len;
4098 else if (arg[len] == '^')
4100 prepending = TRUE; /* "^=" */
4101 ++len;
4103 else if (arg[len] == '-')
4105 removing = TRUE; /* "-=" */
4106 ++len;
4109 nextchar = arg[len];
4111 if (opt_idx == -1 && key == 0) /* found a mismatch: skip */
4113 errmsg = (char_u *)N_("E518: Unknown option");
4114 goto skip;
4117 if (opt_idx >= 0)
4119 if (options[opt_idx].var == NULL) /* hidden option: skip */
4121 /* Only give an error message when requesting the value of
4122 * a hidden option, ignore setting it. */
4123 if (vim_strchr((char_u *)"=:!&<", nextchar) == NULL
4124 && (!(options[opt_idx].flags & P_BOOL)
4125 || nextchar == '?'))
4126 errmsg = (char_u *)N_("E519: Option not supported");
4127 goto skip;
4130 flags = options[opt_idx].flags;
4131 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
4133 else
4135 flags = P_STRING;
4136 if (key < 0)
4138 key_name[0] = KEY2TERMCAP0(key);
4139 key_name[1] = KEY2TERMCAP1(key);
4141 else
4143 key_name[0] = KS_KEY;
4144 key_name[1] = (key & 0xff);
4148 /* Skip all options that are not window-local (used when showing
4149 * an already loaded buffer in a window). */
4150 if ((opt_flags & OPT_WINONLY)
4151 && (opt_idx < 0 || options[opt_idx].var != VAR_WIN))
4152 goto skip;
4154 /* Skip all options that are window-local (used for :vimgrep). */
4155 if ((opt_flags & OPT_NOWIN) && opt_idx >= 0
4156 && options[opt_idx].var == VAR_WIN)
4157 goto skip;
4159 /* Disallow changing some options from modelines. */
4160 if (opt_flags & OPT_MODELINE)
4162 if (flags & P_SECURE)
4164 errmsg = (char_u *)_("E520: Not allowed in a modeline");
4165 goto skip;
4167 #ifdef FEAT_DIFF
4168 /* In diff mode some options are overruled. This avoids that
4169 * 'foldmethod' becomes "marker" instead of "diff" and that
4170 * "wrap" gets set. */
4171 if (curwin->w_p_diff
4172 && (options[opt_idx].indir == PV_FDM
4173 || options[opt_idx].indir == PV_WRAP))
4174 goto skip;
4175 #endif
4178 #ifdef HAVE_SANDBOX
4179 /* Disallow changing some options in the sandbox */
4180 if (sandbox != 0 && (flags & P_SECURE))
4182 errmsg = (char_u *)_(e_sandbox);
4183 goto skip;
4185 #endif
4187 if (vim_strchr((char_u *)"?=:!&<", nextchar) != NULL)
4189 arg += len;
4190 cp_val = p_cp;
4191 if (nextchar == '&' && arg[1] == 'v' && arg[2] == 'i')
4193 if (arg[3] == 'm') /* "opt&vim": set to Vim default */
4195 cp_val = FALSE;
4196 arg += 3;
4198 else /* "opt&vi": set to Vi default */
4200 cp_val = TRUE;
4201 arg += 2;
4204 if (vim_strchr((char_u *)"?!&<", nextchar) != NULL
4205 && arg[1] != NUL && !vim_iswhite(arg[1]))
4207 errmsg = e_trailing;
4208 goto skip;
4213 * allow '=' and ':' as MSDOS command.com allows only one
4214 * '=' character per "set" command line. grrr. (jw)
4216 if (nextchar == '?'
4217 || (prefix == 1
4218 && vim_strchr((char_u *)"=:&<", nextchar) == NULL
4219 && !(flags & P_BOOL)))
4222 * print value
4224 if (did_show)
4225 msg_putchar('\n'); /* cursor below last one */
4226 else
4228 gotocmdline(TRUE); /* cursor at status line */
4229 did_show = TRUE; /* remember that we did a line */
4231 if (opt_idx >= 0)
4233 showoneopt(&options[opt_idx], opt_flags);
4234 #ifdef FEAT_EVAL
4235 if (p_verbose > 0)
4237 /* Mention where the option was last set. */
4238 if (varp == options[opt_idx].var)
4239 last_set_msg(options[opt_idx].scriptID);
4240 else if ((int)options[opt_idx].indir & PV_WIN)
4241 last_set_msg(curwin->w_p_scriptID[
4242 (int)options[opt_idx].indir & PV_MASK]);
4243 else if ((int)options[opt_idx].indir & PV_BUF)
4244 last_set_msg(curbuf->b_p_scriptID[
4245 (int)options[opt_idx].indir & PV_MASK]);
4247 #endif
4249 else
4251 char_u *p;
4253 p = find_termcode(key_name);
4254 if (p == NULL)
4256 errmsg = (char_u *)N_("E518: Unknown option");
4257 goto skip;
4259 else
4260 (void)show_one_termcode(key_name, p, TRUE);
4262 if (nextchar != '?'
4263 && nextchar != NUL && !vim_iswhite(afterchar))
4264 errmsg = e_trailing;
4266 else
4268 if (flags & P_BOOL) /* boolean */
4270 if (nextchar == '=' || nextchar == ':')
4272 errmsg = e_invarg;
4273 goto skip;
4277 * ":set opt!": invert
4278 * ":set opt&": reset to default value
4279 * ":set opt<": reset to global value
4281 if (nextchar == '!')
4282 value = *(int *)(varp) ^ 1;
4283 else if (nextchar == '&')
4284 value = (int)(long)(long_i)options[opt_idx].def_val[
4285 ((flags & P_VI_DEF) || cp_val)
4286 ? VI_DEFAULT : VIM_DEFAULT];
4287 else if (nextchar == '<')
4289 /* For 'autoread' -1 means to use global value. */
4290 if ((int *)varp == &curbuf->b_p_ar
4291 && opt_flags == OPT_LOCAL)
4292 value = -1;
4293 else
4294 value = *(int *)get_varp_scope(&(options[opt_idx]),
4295 OPT_GLOBAL);
4297 else
4300 * ":set invopt": invert
4301 * ":set opt" or ":set noopt": set or reset
4303 if (nextchar != NUL && !vim_iswhite(afterchar))
4305 errmsg = e_trailing;
4306 goto skip;
4308 if (prefix == 2) /* inv */
4309 value = *(int *)(varp) ^ 1;
4310 else
4311 value = prefix;
4314 errmsg = set_bool_option(opt_idx, varp, (int)value,
4315 opt_flags);
4317 else /* numeric or string */
4319 if (vim_strchr((char_u *)"=:&<", nextchar) == NULL
4320 || prefix != 1)
4322 errmsg = e_invarg;
4323 goto skip;
4326 if (flags & P_NUM) /* numeric */
4329 * Different ways to set a number option:
4330 * & set to default value
4331 * < set to global value
4332 * <xx> accept special key codes for 'wildchar'
4333 * c accept any non-digit for 'wildchar'
4334 * [-]0-9 set number
4335 * other error
4337 ++arg;
4338 if (nextchar == '&')
4339 value = (long)(long_i)options[opt_idx].def_val[
4340 ((flags & P_VI_DEF) || cp_val)
4341 ? VI_DEFAULT : VIM_DEFAULT];
4342 else if (nextchar == '<')
4343 value = *(long *)get_varp_scope(&(options[opt_idx]),
4344 OPT_GLOBAL);
4345 else if (((long *)varp == &p_wc
4346 || (long *)varp == &p_wcm)
4347 && (*arg == '<'
4348 || *arg == '^'
4349 || ((!arg[1] || vim_iswhite(arg[1]))
4350 && !VIM_ISDIGIT(*arg))))
4352 value = string_to_key(arg);
4353 if (value == 0 && (long *)varp != &p_wcm)
4355 errmsg = e_invarg;
4356 goto skip;
4359 /* allow negative numbers (for 'undolevels') */
4360 else if (*arg == '-' || VIM_ISDIGIT(*arg))
4362 i = 0;
4363 if (*arg == '-')
4364 i = 1;
4365 #ifdef HAVE_STRTOL
4366 value = strtol((char *)arg, NULL, 0);
4367 if (arg[i] == '0' && TOLOWER_ASC(arg[i + 1]) == 'x')
4368 i += 2;
4369 #else
4370 value = atol((char *)arg);
4371 #endif
4372 while (VIM_ISDIGIT(arg[i]))
4373 ++i;
4374 if (arg[i] != NUL && !vim_iswhite(arg[i]))
4376 errmsg = e_invarg;
4377 goto skip;
4380 else
4382 errmsg = (char_u *)N_("E521: Number required after =");
4383 goto skip;
4386 if (adding)
4387 value = *(long *)varp + value;
4388 if (prepending)
4389 value = *(long *)varp * value;
4390 if (removing)
4391 value = *(long *)varp - value;
4392 errmsg = set_num_option(opt_idx, varp, value,
4393 errbuf, sizeof(errbuf), opt_flags);
4395 else if (opt_idx >= 0) /* string */
4397 char_u *save_arg = NULL;
4398 char_u *s = NULL;
4399 char_u *oldval; /* previous value if *varp */
4400 char_u *newval;
4401 char_u *origval;
4402 unsigned newlen;
4403 int comma;
4404 int bs;
4405 int new_value_alloced; /* new string option
4406 was allocated */
4408 /* When using ":set opt=val" for a global option
4409 * with a local value the local value will be
4410 * reset, use the global value here. */
4411 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
4412 && ((int)options[opt_idx].indir & PV_BOTH))
4413 varp = options[opt_idx].var;
4415 /* The old value is kept until we are sure that the
4416 * new value is valid. */
4417 oldval = *(char_u **)varp;
4418 if (nextchar == '&') /* set to default val */
4420 newval = options[opt_idx].def_val[
4421 ((flags & P_VI_DEF) || cp_val)
4422 ? VI_DEFAULT : VIM_DEFAULT];
4423 if ((char_u **)varp == &p_bg)
4425 /* guess the value of 'background' */
4426 #ifdef FEAT_GUI
4427 if (gui.in_use)
4428 newval = gui_bg_default();
4429 else
4430 #endif
4431 newval = term_bg_default();
4434 /* expand environment variables and ~ (since the
4435 * default value was already expanded, only
4436 * required when an environment variable was set
4437 * later */
4438 if (newval == NULL)
4439 newval = empty_option;
4440 else
4442 s = option_expand(opt_idx, newval);
4443 if (s == NULL)
4444 s = newval;
4445 newval = vim_strsave(s);
4447 new_value_alloced = TRUE;
4449 else if (nextchar == '<') /* set to global val */
4451 newval = vim_strsave(*(char_u **)get_varp_scope(
4452 &(options[opt_idx]), OPT_GLOBAL));
4453 new_value_alloced = TRUE;
4455 else
4457 ++arg; /* jump to after the '=' or ':' */
4460 * Set 'keywordprg' to ":help" if an empty
4461 * value was passed to :set by the user.
4462 * Misuse errbuf[] for the resulting string.
4464 if (varp == (char_u *)&p_kp
4465 && (*arg == NUL || *arg == ' '))
4467 STRCPY(errbuf, ":help");
4468 save_arg = arg;
4469 arg = errbuf;
4472 * Convert 'whichwrap' number to string, for
4473 * backwards compatibility with Vim 3.0.
4474 * Misuse errbuf[] for the resulting string.
4476 else if (varp == (char_u *)&p_ww
4477 && VIM_ISDIGIT(*arg))
4479 *errbuf = NUL;
4480 i = getdigits(&arg);
4481 if (i & 1)
4482 STRCAT(errbuf, "b,");
4483 if (i & 2)
4484 STRCAT(errbuf, "s,");
4485 if (i & 4)
4486 STRCAT(errbuf, "h,l,");
4487 if (i & 8)
4488 STRCAT(errbuf, "<,>,");
4489 if (i & 16)
4490 STRCAT(errbuf, "[,],");
4491 if (*errbuf != NUL) /* remove trailing , */
4492 errbuf[STRLEN(errbuf) - 1] = NUL;
4493 save_arg = arg;
4494 arg = errbuf;
4497 * Remove '>' before 'dir' and 'bdir', for
4498 * backwards compatibility with version 3.0
4500 else if ( *arg == '>'
4501 && (varp == (char_u *)&p_dir
4502 || varp == (char_u *)&p_bdir))
4504 ++arg;
4507 /* When setting the local value of a global
4508 * option, the old value may be the global value. */
4509 if (((int)options[opt_idx].indir & PV_BOTH)
4510 && (opt_flags & OPT_LOCAL))
4511 origval = *(char_u **)get_varp(
4512 &options[opt_idx]);
4513 else
4514 origval = oldval;
4517 * Copy the new string into allocated memory.
4518 * Can't use set_string_option_direct(), because
4519 * we need to remove the backslashes.
4521 /* get a bit too much */
4522 newlen = (unsigned)STRLEN(arg) + 1;
4523 if (adding || prepending || removing)
4524 newlen += (unsigned)STRLEN(origval) + 1;
4525 newval = alloc(newlen);
4526 if (newval == NULL) /* out of mem, don't change */
4527 break;
4528 s = newval;
4531 * Copy the string, skip over escaped chars.
4532 * For MS-DOS and WIN32 backslashes before normal
4533 * file name characters are not removed, and keep
4534 * backslash at start, for "\\machine\path", but
4535 * do remove it for "\\\\machine\\path".
4536 * The reverse is found in ExpandOldSetting().
4538 while (*arg && !vim_iswhite(*arg))
4540 if (*arg == '\\' && arg[1] != NUL
4541 #ifdef BACKSLASH_IN_FILENAME
4542 && !((flags & P_EXPAND)
4543 && vim_isfilec(arg[1])
4544 && (arg[1] != '\\'
4545 || (s == newval
4546 && arg[2] != '\\')))
4547 #endif
4549 ++arg; /* remove backslash */
4550 #ifdef FEAT_MBYTE
4551 if (has_mbyte
4552 && (i = (*mb_ptr2len)(arg)) > 1)
4554 /* copy multibyte char */
4555 mch_memmove(s, arg, (size_t)i);
4556 arg += i;
4557 s += i;
4559 else
4560 #endif
4561 *s++ = *arg++;
4563 *s = NUL;
4566 * Expand environment variables and ~.
4567 * Don't do it when adding without inserting a
4568 * comma.
4570 if (!(adding || prepending || removing)
4571 || (flags & P_COMMA))
4573 s = option_expand(opt_idx, newval);
4574 if (s != NULL)
4576 vim_free(newval);
4577 newlen = (unsigned)STRLEN(s) + 1;
4578 if (adding || prepending || removing)
4579 newlen += (unsigned)STRLEN(origval) + 1;
4580 newval = alloc(newlen);
4581 if (newval == NULL)
4582 break;
4583 STRCPY(newval, s);
4587 /* locate newval[] in origval[] when removing it
4588 * and when adding to avoid duplicates */
4589 i = 0; /* init for GCC */
4590 if (removing || (flags & P_NODUP))
4592 i = (int)STRLEN(newval);
4593 bs = 0;
4594 for (s = origval; *s; ++s)
4596 if ((!(flags & P_COMMA)
4597 || s == origval
4598 || (s[-1] == ',' && !(bs & 1)))
4599 && STRNCMP(s, newval, i) == 0
4600 && (!(flags & P_COMMA)
4601 || s[i] == ','
4602 || s[i] == NUL))
4603 break;
4604 /* Count backspaces. Only a comma with an
4605 * even number of backspaces before it is
4606 * recognized as a separator */
4607 if (s > origval && s[-1] == '\\')
4608 ++bs;
4609 else
4610 bs = 0;
4613 /* do not add if already there */
4614 if ((adding || prepending) && *s)
4616 prepending = FALSE;
4617 adding = FALSE;
4618 STRCPY(newval, origval);
4622 /* concatenate the two strings; add a ',' if
4623 * needed */
4624 if (adding || prepending)
4626 comma = ((flags & P_COMMA) && *origval != NUL
4627 && *newval != NUL);
4628 if (adding)
4630 i = (int)STRLEN(origval);
4631 mch_memmove(newval + i + comma, newval,
4632 STRLEN(newval) + 1);
4633 mch_memmove(newval, origval, (size_t)i);
4635 else
4637 i = (int)STRLEN(newval);
4638 STRMOVE(newval + i + comma, origval);
4640 if (comma)
4641 newval[i] = ',';
4644 /* Remove newval[] from origval[]. (Note: "i" has
4645 * been set above and is used here). */
4646 if (removing)
4648 STRCPY(newval, origval);
4649 if (*s)
4651 /* may need to remove a comma */
4652 if (flags & P_COMMA)
4654 if (s == origval)
4656 /* include comma after string */
4657 if (s[i] == ',')
4658 ++i;
4660 else
4662 /* include comma before string */
4663 --s;
4664 ++i;
4667 STRMOVE(newval + (s - origval), s + i);
4671 if (flags & P_FLAGLIST)
4673 /* Remove flags that appear twice. */
4674 for (s = newval; *s; ++s)
4675 if ((!(flags & P_COMMA) || *s != ',')
4676 && vim_strchr(s + 1, *s) != NULL)
4678 STRMOVE(s, s + 1);
4679 --s;
4683 if (save_arg != NULL) /* number for 'whichwrap' */
4684 arg = save_arg;
4685 new_value_alloced = TRUE;
4688 /* Set the new value. */
4689 *(char_u **)(varp) = newval;
4691 /* Handle side effects, and set the global value for
4692 * ":set" on local options. */
4693 errmsg = did_set_string_option(opt_idx, (char_u **)varp,
4694 new_value_alloced, oldval, errbuf, opt_flags);
4696 /* If error detected, print the error message. */
4697 if (errmsg != NULL)
4698 goto skip;
4700 else /* key code option */
4702 char_u *p;
4704 if (nextchar == '&')
4706 if (add_termcap_entry(key_name, TRUE) == FAIL)
4707 errmsg = (char_u *)N_("E522: Not found in termcap");
4709 else
4711 ++arg; /* jump to after the '=' or ':' */
4712 for (p = arg; *p && !vim_iswhite(*p); ++p)
4713 if (*p == '\\' && p[1] != NUL)
4714 ++p;
4715 nextchar = *p;
4716 *p = NUL;
4717 add_termcode(key_name, arg, FALSE);
4718 *p = nextchar;
4720 if (full_screen)
4721 ttest(FALSE);
4722 redraw_all_later(CLEAR);
4726 if (opt_idx >= 0)
4727 did_set_option(opt_idx, opt_flags,
4728 !prepending && !adding && !removing);
4731 skip:
4733 * Advance to next argument.
4734 * - skip until a blank found, taking care of backslashes
4735 * - skip blanks
4736 * - skip one "=val" argument (for hidden options ":set gfn =xx")
4738 for (i = 0; i < 2 ; ++i)
4740 while (*arg != NUL && !vim_iswhite(*arg))
4741 if (*arg++ == '\\' && *arg != NUL)
4742 ++arg;
4743 arg = skipwhite(arg);
4744 if (*arg != '=')
4745 break;
4749 if (errmsg != NULL)
4751 vim_strncpy(IObuff, (char_u *)_(errmsg), IOSIZE - 1);
4752 i = (int)STRLEN(IObuff) + 2;
4753 if (i + (arg - startarg) < IOSIZE)
4755 /* append the argument with the error */
4756 STRCAT(IObuff, ": ");
4757 mch_memmove(IObuff + i, startarg, (arg - startarg));
4758 IObuff[i + (arg - startarg)] = NUL;
4760 /* make sure all characters are printable */
4761 trans_characters(IObuff, IOSIZE);
4763 ++no_wait_return; /* wait_return done later */
4764 emsg(IObuff); /* show error highlighted */
4765 --no_wait_return;
4767 return FAIL;
4770 arg = skipwhite(arg);
4773 theend:
4774 if (silent_mode && did_show)
4776 /* After displaying option values in silent mode. */
4777 silent_mode = FALSE;
4778 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
4779 msg_putchar('\n');
4780 cursor_on(); /* msg_start() switches it off */
4781 out_flush();
4782 silent_mode = TRUE;
4783 info_message = FALSE; /* use mch_msg(), not mch_errmsg() */
4786 return OK;
4790 * Call this when an option has been given a new value through a user command.
4791 * Sets the P_WAS_SET flag and takes care of the P_INSECURE flag.
4793 static void
4794 did_set_option(opt_idx, opt_flags, new_value)
4795 int opt_idx;
4796 int opt_flags; /* possibly with OPT_MODELINE */
4797 int new_value; /* value was replaced completely */
4799 long_u *p;
4801 options[opt_idx].flags |= P_WAS_SET;
4803 /* When an option is set in the sandbox, from a modeline or in secure mode
4804 * set the P_INSECURE flag. Otherwise, if a new value is stored reset the
4805 * flag. */
4806 p = insecure_flag(opt_idx, opt_flags);
4807 if (secure
4808 #ifdef HAVE_SANDBOX
4809 || sandbox != 0
4810 #endif
4811 || (opt_flags & OPT_MODELINE))
4812 *p = *p | P_INSECURE;
4813 else if (new_value)
4814 *p = *p & ~P_INSECURE;
4817 static char_u *
4818 illegal_char(errbuf, c)
4819 char_u *errbuf;
4820 int c;
4822 if (errbuf == NULL)
4823 return (char_u *)"";
4824 sprintf((char *)errbuf, _("E539: Illegal character <%s>"),
4825 (char *)transchar(c));
4826 return errbuf;
4830 * Convert a key name or string into a key value.
4831 * Used for 'wildchar' and 'cedit' options.
4833 static int
4834 string_to_key(arg)
4835 char_u *arg;
4837 if (*arg == '<')
4838 return find_key_option(arg + 1);
4839 if (*arg == '^')
4840 return Ctrl_chr(arg[1]);
4841 return *arg;
4844 #ifdef FEAT_CMDWIN
4846 * Check value of 'cedit' and set cedit_key.
4847 * Returns NULL if value is OK, error message otherwise.
4849 static char_u *
4850 check_cedit()
4852 int n;
4854 if (*p_cedit == NUL)
4855 cedit_key = -1;
4856 else
4858 n = string_to_key(p_cedit);
4859 if (vim_isprintc(n))
4860 return e_invarg;
4861 cedit_key = n;
4863 return NULL;
4865 #endif
4867 #ifdef FEAT_TITLE
4869 * When changing 'title', 'titlestring', 'icon' or 'iconstring', call
4870 * maketitle() to create and display it.
4871 * When switching the title or icon off, call mch_restore_title() to get
4872 * the old value back.
4874 static void
4875 did_set_title(icon)
4876 int icon; /* Did set icon instead of title */
4878 if (starting != NO_SCREEN
4879 #ifdef FEAT_GUI
4880 && !gui.starting
4881 #endif
4884 maketitle();
4885 if (icon)
4887 if (!p_icon)
4888 mch_restore_title(2);
4890 else
4892 if (!p_title)
4893 mch_restore_title(1);
4897 #endif
4900 * set_options_bin - called when 'bin' changes value.
4902 void
4903 set_options_bin(oldval, newval, opt_flags)
4904 int oldval;
4905 int newval;
4906 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
4909 * The option values that are changed when 'bin' changes are
4910 * copied when 'bin is set and restored when 'bin' is reset.
4912 if (newval)
4914 if (!oldval) /* switched on */
4916 if (!(opt_flags & OPT_GLOBAL))
4918 curbuf->b_p_tw_nobin = curbuf->b_p_tw;
4919 curbuf->b_p_wm_nobin = curbuf->b_p_wm;
4920 curbuf->b_p_ml_nobin = curbuf->b_p_ml;
4921 curbuf->b_p_et_nobin = curbuf->b_p_et;
4923 if (!(opt_flags & OPT_LOCAL))
4925 p_tw_nobin = p_tw;
4926 p_wm_nobin = p_wm;
4927 p_ml_nobin = p_ml;
4928 p_et_nobin = p_et;
4932 if (!(opt_flags & OPT_GLOBAL))
4934 curbuf->b_p_tw = 0; /* no automatic line wrap */
4935 curbuf->b_p_wm = 0; /* no automatic line wrap */
4936 curbuf->b_p_ml = 0; /* no modelines */
4937 curbuf->b_p_et = 0; /* no expandtab */
4939 if (!(opt_flags & OPT_LOCAL))
4941 p_tw = 0;
4942 p_wm = 0;
4943 p_ml = FALSE;
4944 p_et = FALSE;
4945 p_bin = TRUE; /* needed when called for the "-b" argument */
4948 else if (oldval) /* switched off */
4950 if (!(opt_flags & OPT_GLOBAL))
4952 curbuf->b_p_tw = curbuf->b_p_tw_nobin;
4953 curbuf->b_p_wm = curbuf->b_p_wm_nobin;
4954 curbuf->b_p_ml = curbuf->b_p_ml_nobin;
4955 curbuf->b_p_et = curbuf->b_p_et_nobin;
4957 if (!(opt_flags & OPT_LOCAL))
4959 p_tw = p_tw_nobin;
4960 p_wm = p_wm_nobin;
4961 p_ml = p_ml_nobin;
4962 p_et = p_et_nobin;
4967 #ifdef FEAT_VIMINFO
4969 * Find the parameter represented by the given character (eg ', :, ", or /),
4970 * and return its associated value in the 'viminfo' string.
4971 * Only works for number parameters, not for 'r' or 'n'.
4972 * If the parameter is not specified in the string or there is no following
4973 * number, return -1.
4976 get_viminfo_parameter(type)
4977 int type;
4979 char_u *p;
4981 p = find_viminfo_parameter(type);
4982 if (p != NULL && VIM_ISDIGIT(*p))
4983 return atoi((char *)p);
4984 return -1;
4988 * Find the parameter represented by the given character (eg ''', ':', '"', or
4989 * '/') in the 'viminfo' option and return a pointer to the string after it.
4990 * Return NULL if the parameter is not specified in the string.
4992 char_u *
4993 find_viminfo_parameter(type)
4994 int type;
4996 char_u *p;
4998 for (p = p_viminfo; *p; ++p)
5000 if (*p == type)
5001 return p + 1;
5002 if (*p == 'n') /* 'n' is always the last one */
5003 break;
5004 p = vim_strchr(p, ','); /* skip until next ',' */
5005 if (p == NULL) /* hit the end without finding parameter */
5006 break;
5008 return NULL;
5010 #endif
5013 * Expand environment variables for some string options.
5014 * These string options cannot be indirect!
5015 * If "val" is NULL expand the current value of the option.
5016 * Return pointer to NameBuff, or NULL when not expanded.
5018 static char_u *
5019 option_expand(opt_idx, val)
5020 int opt_idx;
5021 char_u *val;
5023 /* if option doesn't need expansion nothing to do */
5024 if (!(options[opt_idx].flags & P_EXPAND) || options[opt_idx].var == NULL)
5025 return NULL;
5027 /* If val is longer than MAXPATHL no meaningful expansion can be done,
5028 * expand_env() would truncate the string. */
5029 if (val != NULL && STRLEN(val) > MAXPATHL)
5030 return NULL;
5032 if (val == NULL)
5033 val = *(char_u **)options[opt_idx].var;
5036 * Expanding this with NameBuff, expand_env() must not be passed IObuff.
5037 * Escape spaces when expanding 'tags', they are used to separate file
5038 * names.
5039 * For 'spellsuggest' expand after "file:".
5041 expand_env_esc(val, NameBuff, MAXPATHL,
5042 (char_u **)options[opt_idx].var == &p_tags, FALSE,
5043 #ifdef FEAT_SPELL
5044 (char_u **)options[opt_idx].var == &p_sps ? (char_u *)"file:" :
5045 #endif
5046 NULL);
5047 if (STRCMP(NameBuff, val) == 0) /* they are the same */
5048 return NULL;
5050 return NameBuff;
5054 * After setting various option values: recompute variables that depend on
5055 * option values.
5057 static void
5058 didset_options()
5060 /* initialize the table for 'iskeyword' et.al. */
5061 (void)init_chartab();
5063 #ifdef FEAT_MBYTE
5064 (void)opt_strings_flags(p_cmp, p_cmp_values, &cmp_flags, TRUE);
5065 #endif
5066 (void)opt_strings_flags(p_bkc, p_bkc_values, &bkc_flags, TRUE);
5067 #ifdef FEAT_SESSION
5068 (void)opt_strings_flags(p_ssop, p_ssop_values, &ssop_flags, TRUE);
5069 (void)opt_strings_flags(p_vop, p_ssop_values, &vop_flags, TRUE);
5070 #endif
5071 #ifdef FEAT_FOLDING
5072 (void)opt_strings_flags(p_fdo, p_fdo_values, &fdo_flags, TRUE);
5073 #endif
5074 (void)opt_strings_flags(p_dy, p_dy_values, &dy_flags, TRUE);
5075 #ifdef FEAT_VIRTUALEDIT
5076 (void)opt_strings_flags(p_ve, p_ve_values, &ve_flags, TRUE);
5077 #endif
5078 #if defined(FEAT_MOUSE) && (defined(UNIX) || defined(VMS))
5079 (void)opt_strings_flags(p_ttym, p_ttym_values, &ttym_flags, FALSE);
5080 #endif
5081 #ifdef FEAT_SPELL
5082 (void)spell_check_msm();
5083 (void)spell_check_sps();
5084 (void)compile_cap_prog(curbuf);
5085 #endif
5086 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
5087 (void)opt_strings_flags(p_toolbar, p_toolbar_values, &toolbar_flags, TRUE);
5088 #endif
5089 #if defined(FEAT_TOOLBAR) && defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)
5090 (void)opt_strings_flags(p_tbis, p_tbis_values, &tbis_flags, FALSE);
5091 #endif
5092 #ifdef FEAT_CMDWIN
5093 /* set cedit_key */
5094 (void)check_cedit();
5095 #endif
5099 * Check for string options that are NULL (normally only termcap options).
5101 void
5102 check_options()
5104 int opt_idx;
5106 for (opt_idx = 0; options[opt_idx].fullname != NULL; opt_idx++)
5107 if ((options[opt_idx].flags & P_STRING) && options[opt_idx].var != NULL)
5108 check_string_option((char_u **)get_varp(&(options[opt_idx])));
5112 * Check string options in a buffer for NULL value.
5114 void
5115 check_buf_options(buf)
5116 buf_T *buf;
5118 #if defined(FEAT_QUICKFIX)
5119 check_string_option(&buf->b_p_bh);
5120 check_string_option(&buf->b_p_bt);
5121 #endif
5122 #ifdef FEAT_MBYTE
5123 check_string_option(&buf->b_p_fenc);
5124 #endif
5125 check_string_option(&buf->b_p_ff);
5126 #ifdef FEAT_FIND_ID
5127 check_string_option(&buf->b_p_def);
5128 check_string_option(&buf->b_p_inc);
5129 # ifdef FEAT_EVAL
5130 check_string_option(&buf->b_p_inex);
5131 # endif
5132 #endif
5133 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
5134 check_string_option(&buf->b_p_inde);
5135 check_string_option(&buf->b_p_indk);
5136 #endif
5137 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
5138 check_string_option(&buf->b_p_bexpr);
5139 #endif
5140 #if defined(FEAT_EVAL)
5141 check_string_option(&buf->b_p_fex);
5142 #endif
5143 #ifdef FEAT_CRYPT
5144 check_string_option(&buf->b_p_key);
5145 #endif
5146 check_string_option(&buf->b_p_kp);
5147 check_string_option(&buf->b_p_mps);
5148 check_string_option(&buf->b_p_fo);
5149 check_string_option(&buf->b_p_flp);
5150 check_string_option(&buf->b_p_isk);
5151 #ifdef FEAT_COMMENTS
5152 check_string_option(&buf->b_p_com);
5153 #endif
5154 #ifdef FEAT_FOLDING
5155 check_string_option(&buf->b_p_cms);
5156 #endif
5157 check_string_option(&buf->b_p_nf);
5158 #ifdef FEAT_TEXTOBJ
5159 check_string_option(&buf->b_p_qe);
5160 #endif
5161 #ifdef FEAT_SYN_HL
5162 check_string_option(&buf->b_p_syn);
5163 #endif
5164 #ifdef FEAT_SPELL
5165 check_string_option(&buf->b_p_spc);
5166 check_string_option(&buf->b_p_spf);
5167 check_string_option(&buf->b_p_spl);
5168 #endif
5169 #ifdef FEAT_SEARCHPATH
5170 check_string_option(&buf->b_p_sua);
5171 #endif
5172 #ifdef FEAT_CINDENT
5173 check_string_option(&buf->b_p_cink);
5174 check_string_option(&buf->b_p_cino);
5175 #endif
5176 #ifdef FEAT_AUTOCMD
5177 check_string_option(&buf->b_p_ft);
5178 #endif
5179 #ifdef FEAT_OSFILETYPE
5180 check_string_option(&buf->b_p_oft);
5181 #endif
5182 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
5183 check_string_option(&buf->b_p_cinw);
5184 #endif
5185 #ifdef FEAT_INS_EXPAND
5186 check_string_option(&buf->b_p_cpt);
5187 #endif
5188 #ifdef FEAT_COMPL_FUNC
5189 check_string_option(&buf->b_p_cfu);
5190 check_string_option(&buf->b_p_ofu);
5191 check_string_option(&buf->b_p_tfu);
5192 #endif
5193 #ifdef FEAT_KEYMAP
5194 check_string_option(&buf->b_p_keymap);
5195 #endif
5196 #ifdef FEAT_QUICKFIX
5197 check_string_option(&buf->b_p_gp);
5198 check_string_option(&buf->b_p_mp);
5199 check_string_option(&buf->b_p_efm);
5200 #endif
5201 check_string_option(&buf->b_p_ep);
5202 check_string_option(&buf->b_p_path);
5203 check_string_option(&buf->b_p_tags);
5204 #ifdef FEAT_INS_EXPAND
5205 check_string_option(&buf->b_p_dict);
5206 check_string_option(&buf->b_p_tsr);
5207 #endif
5211 * Free the string allocated for an option.
5212 * Checks for the string being empty_option. This may happen if we're out of
5213 * memory, vim_strsave() returned NULL, which was replaced by empty_option by
5214 * check_options().
5215 * Does NOT check for P_ALLOCED flag!
5217 void
5218 free_string_option(p)
5219 char_u *p;
5221 if (p != empty_option)
5222 vim_free(p);
5225 void
5226 clear_string_option(pp)
5227 char_u **pp;
5229 if (*pp != empty_option)
5230 vim_free(*pp);
5231 *pp = empty_option;
5234 static void
5235 check_string_option(pp)
5236 char_u **pp;
5238 if (*pp == NULL)
5239 *pp = empty_option;
5243 * Mark a terminal option as allocated, found by a pointer into term_strings[].
5245 void
5246 set_term_option_alloced(p)
5247 char_u **p;
5249 int opt_idx;
5251 for (opt_idx = 1; options[opt_idx].fullname != NULL; opt_idx++)
5252 if (options[opt_idx].var == (char_u *)p)
5254 options[opt_idx].flags |= P_ALLOCED;
5255 return;
5257 return; /* cannot happen: didn't find it! */
5260 #if defined(FEAT_EVAL) || defined(PROTO)
5262 * Return TRUE when option "opt" was set from a modeline or in secure mode.
5263 * Return FALSE when it wasn't.
5264 * Return -1 for an unknown option.
5267 was_set_insecurely(opt, opt_flags)
5268 char_u *opt;
5269 int opt_flags;
5271 int idx = findoption(opt);
5272 long_u *flagp;
5274 if (idx >= 0)
5276 flagp = insecure_flag(idx, opt_flags);
5277 return (*flagp & P_INSECURE) != 0;
5279 EMSG2(_(e_intern2), "was_set_insecurely()");
5280 return -1;
5284 * Get a pointer to the flags used for the P_INSECURE flag of option
5285 * "opt_idx". For some local options a local flags field is used.
5287 static long_u *
5288 insecure_flag(opt_idx, opt_flags)
5289 int opt_idx;
5290 int opt_flags;
5292 if (opt_flags & OPT_LOCAL)
5293 switch ((int)options[opt_idx].indir)
5295 #ifdef FEAT_STL_OPT
5296 case PV_STL: return &curwin->w_p_stl_flags;
5297 #endif
5298 #ifdef FEAT_EVAL
5299 # ifdef FEAT_FOLDING
5300 case PV_FDE: return &curwin->w_p_fde_flags;
5301 case PV_FDT: return &curwin->w_p_fdt_flags;
5302 # endif
5303 # ifdef FEAT_BEVAL
5304 case PV_BEXPR: return &curbuf->b_p_bexpr_flags;
5305 # endif
5306 # if defined(FEAT_CINDENT)
5307 case PV_INDE: return &curbuf->b_p_inde_flags;
5308 # endif
5309 case PV_FEX: return &curbuf->b_p_fex_flags;
5310 # ifdef FEAT_FIND_ID
5311 case PV_INEX: return &curbuf->b_p_inex_flags;
5312 # endif
5313 #endif
5316 /* Nothing special, return global flags field. */
5317 return &options[opt_idx].flags;
5319 #endif
5321 #ifdef FEAT_TITLE
5322 static void redraw_titles __ARGS((void));
5325 * Redraw the window title and/or tab page text later.
5327 static void redraw_titles()
5329 need_maketitle = TRUE;
5330 # ifdef FEAT_WINDOWS
5331 redraw_tabline = TRUE;
5332 # endif
5334 #endif
5337 * Set a string option to a new value (without checking the effect).
5338 * The string is copied into allocated memory.
5339 * if ("opt_idx" == -1) "name" is used, otherwise "opt_idx" is used.
5340 * When "set_sid" is zero set the scriptID to current_SID. When "set_sid" is
5341 * SID_NONE don't set the scriptID. Otherwise set the scriptID to "set_sid".
5343 void
5344 set_string_option_direct(name, opt_idx, val, opt_flags, set_sid)
5345 char_u *name;
5346 int opt_idx;
5347 char_u *val;
5348 int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */
5349 int set_sid UNUSED;
5351 char_u *s;
5352 char_u **varp;
5353 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
5354 int idx = opt_idx;
5356 if (idx == -1) /* use name */
5358 idx = findoption(name);
5359 if (idx < 0) /* not found (should not happen) */
5361 EMSG2(_(e_intern2), "set_string_option_direct()");
5362 return;
5366 if (options[idx].var == NULL) /* can't set hidden option */
5367 return;
5369 s = vim_strsave(val);
5370 if (s != NULL)
5372 varp = (char_u **)get_varp_scope(&(options[idx]),
5373 both ? OPT_LOCAL : opt_flags);
5374 if ((opt_flags & OPT_FREE) && (options[idx].flags & P_ALLOCED))
5375 free_string_option(*varp);
5376 *varp = s;
5378 /* For buffer/window local option may also set the global value. */
5379 if (both)
5380 set_string_option_global(idx, varp);
5382 options[idx].flags |= P_ALLOCED;
5384 /* When setting both values of a global option with a local value,
5385 * make the local value empty, so that the global value is used. */
5386 if (((int)options[idx].indir & PV_BOTH) && both)
5388 free_string_option(*varp);
5389 *varp = empty_option;
5391 # ifdef FEAT_EVAL
5392 if (set_sid != SID_NONE)
5393 set_option_scriptID_idx(idx, opt_flags,
5394 set_sid == 0 ? current_SID : set_sid);
5395 # endif
5400 * Set global value for string option when it's a local option.
5402 static void
5403 set_string_option_global(opt_idx, varp)
5404 int opt_idx; /* option index */
5405 char_u **varp; /* pointer to option variable */
5407 char_u **p, *s;
5409 /* the global value is always allocated */
5410 if (options[opt_idx].var == VAR_WIN)
5411 p = (char_u **)GLOBAL_WO(varp);
5412 else
5413 p = (char_u **)options[opt_idx].var;
5414 if (options[opt_idx].indir != PV_NONE
5415 && p != varp
5416 && (s = vim_strsave(*varp)) != NULL)
5418 free_string_option(*p);
5419 *p = s;
5424 * Set a string option to a new value, and handle the effects.
5426 static void
5427 set_string_option(opt_idx, value, opt_flags)
5428 int opt_idx;
5429 char_u *value;
5430 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
5432 char_u *s;
5433 char_u **varp;
5434 char_u *oldval;
5436 if (options[opt_idx].var == NULL) /* don't set hidden option */
5437 return;
5439 s = vim_strsave(value);
5440 if (s != NULL)
5442 varp = (char_u **)get_varp_scope(&(options[opt_idx]),
5443 (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
5444 ? (((int)options[opt_idx].indir & PV_BOTH)
5445 ? OPT_GLOBAL : OPT_LOCAL)
5446 : opt_flags);
5447 oldval = *varp;
5448 *varp = s;
5449 if (did_set_string_option(opt_idx, varp, TRUE, oldval, NULL,
5450 opt_flags) == NULL)
5451 did_set_option(opt_idx, opt_flags, TRUE);
5456 * Handle string options that need some action to perform when changed.
5457 * Returns NULL for success, or an error message for an error.
5459 static char_u *
5460 did_set_string_option(opt_idx, varp, new_value_alloced, oldval, errbuf,
5461 opt_flags)
5462 int opt_idx; /* index in options[] table */
5463 char_u **varp; /* pointer to the option variable */
5464 int new_value_alloced; /* new value was allocated */
5465 char_u *oldval; /* previous value of the option */
5466 char_u *errbuf; /* buffer for errors, or NULL */
5467 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
5469 char_u *errmsg = NULL;
5470 char_u *s, *p;
5471 int did_chartab = FALSE;
5472 char_u **gvarp;
5473 long_u free_oldval = (options[opt_idx].flags & P_ALLOCED);
5474 #ifdef FEAT_GUI
5475 /* set when changing an option that only requires a redraw in the GUI */
5476 int redraw_gui_only = FALSE;
5477 #endif
5479 /* Get the global option to compare with, otherwise we would have to check
5480 * two values for all local options. */
5481 gvarp = (char_u **)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL);
5483 /* Disallow changing some options from secure mode */
5484 if ((secure
5485 #ifdef HAVE_SANDBOX
5486 || sandbox != 0
5487 #endif
5488 ) && (options[opt_idx].flags & P_SECURE))
5490 errmsg = e_secure;
5493 /* Check for a "normal" file name in some options. Disallow a path
5494 * separator (slash and/or backslash), wildcards and characters that are
5495 * often illegal in a file name. */
5496 else if ((options[opt_idx].flags & P_NFNAME)
5497 && vim_strpbrk(*varp, (char_u *)"/\\*?[|<>") != NULL)
5499 errmsg = e_invarg;
5502 /* 'term' */
5503 else if (varp == &T_NAME)
5505 if (T_NAME[0] == NUL)
5506 errmsg = (char_u *)N_("E529: Cannot set 'term' to empty string");
5507 #ifdef FEAT_GUI
5508 if (gui.in_use)
5509 errmsg = (char_u *)N_("E530: Cannot change term in GUI");
5510 else if (term_is_gui(T_NAME))
5511 errmsg = (char_u *)N_("E531: Use \":gui\" to start the GUI");
5512 #endif
5513 else if (set_termname(T_NAME) == FAIL)
5514 errmsg = (char_u *)N_("E522: Not found in termcap");
5515 else
5516 /* Screen colors may have changed. */
5517 redraw_later_clear();
5520 /* 'backupcopy' */
5521 else if (varp == &p_bkc)
5523 if (opt_strings_flags(p_bkc, p_bkc_values, &bkc_flags, TRUE) != OK)
5524 errmsg = e_invarg;
5525 if (((bkc_flags & BKC_AUTO) != 0)
5526 + ((bkc_flags & BKC_YES) != 0)
5527 + ((bkc_flags & BKC_NO) != 0) != 1)
5529 /* Must have exactly one of "auto", "yes" and "no". */
5530 (void)opt_strings_flags(oldval, p_bkc_values, &bkc_flags, TRUE);
5531 errmsg = e_invarg;
5535 /* 'backupext' and 'patchmode' */
5536 else if (varp == &p_bex || varp == &p_pm)
5538 if (STRCMP(*p_bex == '.' ? p_bex + 1 : p_bex,
5539 *p_pm == '.' ? p_pm + 1 : p_pm) == 0)
5540 errmsg = (char_u *)N_("E589: 'backupext' and 'patchmode' are equal");
5544 * 'isident', 'iskeyword', 'isprint or 'isfname' option: refill chartab[]
5545 * If the new option is invalid, use old value. 'lisp' option: refill
5546 * chartab[] for '-' char
5548 else if ( varp == &p_isi
5549 || varp == &(curbuf->b_p_isk)
5550 || varp == &p_isp
5551 || varp == &p_isf)
5553 if (init_chartab() == FAIL)
5555 did_chartab = TRUE; /* need to restore it below */
5556 errmsg = e_invarg; /* error in value */
5560 /* 'helpfile' */
5561 else if (varp == &p_hf)
5563 /* May compute new values for $VIM and $VIMRUNTIME */
5564 if (didset_vim)
5566 vim_setenv((char_u *)"VIM", (char_u *)"");
5567 didset_vim = FALSE;
5569 if (didset_vimruntime)
5571 vim_setenv((char_u *)"VIMRUNTIME", (char_u *)"");
5572 didset_vimruntime = FALSE;
5576 #ifdef FEAT_MULTI_LANG
5577 /* 'helplang' */
5578 else if (varp == &p_hlg)
5580 /* Check for "", "ab", "ab,cd", etc. */
5581 for (s = p_hlg; *s != NUL; s += 3)
5583 if (s[1] == NUL || ((s[2] != ',' || s[3] == NUL) && s[2] != NUL))
5585 errmsg = e_invarg;
5586 break;
5588 if (s[2] == NUL)
5589 break;
5592 #endif
5594 /* 'highlight' */
5595 else if (varp == &p_hl)
5597 if (highlight_changed() == FAIL)
5598 errmsg = e_invarg; /* invalid flags */
5601 /* 'nrformats' */
5602 else if (gvarp == &p_nf)
5604 if (check_opt_strings(*varp, p_nf_values, TRUE) != OK)
5605 errmsg = e_invarg;
5608 #ifdef FEAT_SESSION
5609 /* 'sessionoptions' */
5610 else if (varp == &p_ssop)
5612 if (opt_strings_flags(p_ssop, p_ssop_values, &ssop_flags, TRUE) != OK)
5613 errmsg = e_invarg;
5614 if ((ssop_flags & SSOP_CURDIR) && (ssop_flags & SSOP_SESDIR))
5616 /* Don't allow both "sesdir" and "curdir". */
5617 (void)opt_strings_flags(oldval, p_ssop_values, &ssop_flags, TRUE);
5618 errmsg = e_invarg;
5621 /* 'viewoptions' */
5622 else if (varp == &p_vop)
5624 if (opt_strings_flags(p_vop, p_ssop_values, &vop_flags, TRUE) != OK)
5625 errmsg = e_invarg;
5627 #endif
5629 /* 'scrollopt' */
5630 #ifdef FEAT_SCROLLBIND
5631 else if (varp == &p_sbo)
5633 if (check_opt_strings(p_sbo, p_scbopt_values, TRUE) != OK)
5634 errmsg = e_invarg;
5636 #endif
5638 /* 'ambiwidth' */
5639 #ifdef FEAT_MBYTE
5640 else if (varp == &p_ambw)
5642 if (check_opt_strings(p_ambw, p_ambw_values, FALSE) != OK)
5643 errmsg = e_invarg;
5645 #endif
5647 /* 'background' */
5648 else if (varp == &p_bg)
5650 if (check_opt_strings(p_bg, p_bg_values, FALSE) == OK)
5652 #ifdef FEAT_EVAL
5653 int dark = (*p_bg == 'd');
5654 #endif
5656 init_highlight(FALSE, FALSE);
5658 #ifdef FEAT_EVAL
5659 if (dark != (*p_bg == 'd')
5660 && get_var_value((char_u *)"g:colors_name") != NULL)
5662 /* The color scheme must have set 'background' back to another
5663 * value, that's not what we want here. Disable the color
5664 * scheme and set the colors again. */
5665 do_unlet((char_u *)"g:colors_name", TRUE);
5666 free_string_option(p_bg);
5667 p_bg = vim_strsave((char_u *)(dark ? "dark" : "light"));
5668 check_string_option(&p_bg);
5669 init_highlight(FALSE, FALSE);
5671 #endif
5673 else
5674 errmsg = e_invarg;
5677 /* 'wildmode' */
5678 else if (varp == &p_wim)
5680 if (check_opt_wim() == FAIL)
5681 errmsg = e_invarg;
5684 #ifdef FEAT_CMDL_COMPL
5685 /* 'wildoptions' */
5686 else if (varp == &p_wop)
5688 if (check_opt_strings(p_wop, p_wop_values, TRUE) != OK)
5689 errmsg = e_invarg;
5691 #endif
5693 #ifdef FEAT_WAK
5694 /* 'winaltkeys' */
5695 else if (varp == &p_wak)
5697 if (*p_wak == NUL
5698 || check_opt_strings(p_wak, p_wak_values, FALSE) != OK)
5699 errmsg = e_invarg;
5700 # ifdef FEAT_MENU
5701 # ifdef FEAT_GUI_MOTIF
5702 else if (gui.in_use)
5703 gui_motif_set_mnemonics(p_wak[0] == 'y' || p_wak[0] == 'm');
5704 # else
5705 # ifdef FEAT_GUI_GTK
5706 else if (gui.in_use)
5707 gui_gtk_set_mnemonics(p_wak[0] == 'y' || p_wak[0] == 'm');
5708 # endif
5709 # endif
5710 # endif
5712 #endif
5714 #ifdef FEAT_AUTOCMD
5715 /* 'eventignore' */
5716 else if (varp == &p_ei)
5718 if (check_ei() == FAIL)
5719 errmsg = e_invarg;
5721 #endif
5723 #ifdef FEAT_MBYTE
5724 /* 'encoding' and 'fileencoding' */
5725 else if (varp == &p_enc || gvarp == &p_fenc || varp == &p_tenc)
5727 if (gvarp == &p_fenc)
5729 if (!curbuf->b_p_ma && opt_flags != OPT_GLOBAL)
5730 errmsg = e_modifiable;
5731 else if (vim_strchr(*varp, ',') != NULL)
5732 /* No comma allowed in 'fileencoding'; catches confusing it
5733 * with 'fileencodings'. */
5734 errmsg = e_invarg;
5735 else
5737 # ifdef FEAT_TITLE
5738 /* May show a "+" in the title now. */
5739 redraw_titles();
5740 # endif
5741 /* Add 'fileencoding' to the swap file. */
5742 ml_setflags(curbuf);
5745 if (errmsg == NULL)
5747 /* canonize the value, so that STRCMP() can be used on it */
5748 p = enc_canonize(*varp);
5749 if (p != NULL)
5751 vim_free(*varp);
5752 *varp = p;
5754 if (varp == &p_enc)
5756 errmsg = mb_init();
5757 # ifdef FEAT_TITLE
5758 redraw_titles();
5759 # endif
5763 # if defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)
5764 if (errmsg == NULL && varp == &p_tenc && gui.in_use)
5766 /* GTK+ 2 uses only a single encoding, and that is UTF-8. */
5767 if (STRCMP(p_tenc, "utf-8") != 0)
5768 errmsg = (char_u *)N_("E617: Cannot be changed in the GTK+ 2 GUI");
5770 # endif
5772 if (errmsg == NULL)
5774 # ifdef FEAT_KEYMAP
5775 /* When 'keymap' is used and 'encoding' changes, reload the keymap
5776 * (with another encoding). */
5777 if (varp == &p_enc && *curbuf->b_p_keymap != NUL)
5778 (void)keymap_init();
5779 # endif
5781 /* When 'termencoding' is not empty and 'encoding' changes or when
5782 * 'termencoding' changes, need to setup for keyboard input and
5783 * display output conversion. */
5784 if (((varp == &p_enc && *p_tenc != NUL) || varp == &p_tenc))
5786 convert_setup(&input_conv, p_tenc, p_enc);
5787 convert_setup(&output_conv, p_enc, p_tenc);
5790 # if defined(WIN3264) && defined(FEAT_MBYTE)
5791 /* $HOME may have characters in active code page. */
5792 if (varp == &p_enc)
5793 init_homedir();
5794 # endif
5797 #endif
5799 #if defined(FEAT_POSTSCRIPT)
5800 else if (varp == &p_penc)
5802 /* Canonize printencoding if VIM standard one */
5803 p = enc_canonize(p_penc);
5804 if (p != NULL)
5806 vim_free(p_penc);
5807 p_penc = p;
5809 else
5811 /* Ensure lower case and '-' for '_' */
5812 for (s = p_penc; *s != NUL; s++)
5814 if (*s == '_')
5815 *s = '-';
5816 else
5817 *s = TOLOWER_ASC(*s);
5821 #endif
5823 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
5824 else if (varp == &p_imak)
5826 if (gui.in_use && !im_xim_isvalid_imactivate())
5827 errmsg = e_invarg;
5829 #endif
5831 #ifdef FEAT_KEYMAP
5832 else if (varp == &curbuf->b_p_keymap)
5834 /* load or unload key mapping tables */
5835 errmsg = keymap_init();
5837 if (errmsg == NULL)
5839 if (*curbuf->b_p_keymap != NUL)
5841 /* Installed a new keymap, switch on using it. */
5842 curbuf->b_p_iminsert = B_IMODE_LMAP;
5843 if (curbuf->b_p_imsearch != B_IMODE_USE_INSERT)
5844 curbuf->b_p_imsearch = B_IMODE_LMAP;
5846 else
5848 /* Cleared the keymap, may reset 'iminsert' and 'imsearch'. */
5849 if (curbuf->b_p_iminsert == B_IMODE_LMAP)
5850 curbuf->b_p_iminsert = B_IMODE_NONE;
5851 if (curbuf->b_p_imsearch == B_IMODE_LMAP)
5852 curbuf->b_p_imsearch = B_IMODE_USE_INSERT;
5854 if ((opt_flags & OPT_LOCAL) == 0)
5856 set_iminsert_global();
5857 set_imsearch_global();
5859 # ifdef FEAT_WINDOWS
5860 status_redraw_curbuf();
5861 # endif
5864 #endif
5866 /* 'fileformat' */
5867 else if (gvarp == &p_ff)
5869 if (!curbuf->b_p_ma && !(opt_flags & OPT_GLOBAL))
5870 errmsg = e_modifiable;
5871 else if (check_opt_strings(*varp, p_ff_values, FALSE) != OK)
5872 errmsg = e_invarg;
5873 else
5875 /* may also change 'textmode' */
5876 if (get_fileformat(curbuf) == EOL_DOS)
5877 curbuf->b_p_tx = TRUE;
5878 else
5879 curbuf->b_p_tx = FALSE;
5880 #ifdef FEAT_TITLE
5881 redraw_titles();
5882 #endif
5883 /* update flag in swap file */
5884 ml_setflags(curbuf);
5885 /* Redraw needed when switching to/from "mac": a CR in the text
5886 * will be displayed differently. */
5887 if (get_fileformat(curbuf) == EOL_MAC || *oldval == 'm')
5888 redraw_curbuf_later(NOT_VALID);
5892 /* 'fileformats' */
5893 else if (varp == &p_ffs)
5895 if (check_opt_strings(p_ffs, p_ff_values, TRUE) != OK)
5896 errmsg = e_invarg;
5897 else
5899 /* also change 'textauto' */
5900 if (*p_ffs == NUL)
5901 p_ta = FALSE;
5902 else
5903 p_ta = TRUE;
5907 #if defined(FEAT_CRYPT) && defined(FEAT_CMDHIST)
5908 /* 'cryptkey' */
5909 else if (gvarp == &p_key)
5911 /* Make sure the ":set" command doesn't show the new value in the
5912 * history. */
5913 remove_key_from_history();
5915 #endif
5917 /* 'matchpairs' */
5918 else if (gvarp == &p_mps)
5920 /* Check for "x:y,x:y" */
5921 for (p = *varp; *p != NUL; p += 4)
5923 if (p[1] != ':' || p[2] == NUL || (p[3] != NUL && p[3] != ','))
5925 errmsg = e_invarg;
5926 break;
5928 if (p[3] == NUL)
5929 break;
5933 #ifdef FEAT_COMMENTS
5934 /* 'comments' */
5935 else if (gvarp == &p_com)
5937 for (s = *varp; *s; )
5939 while (*s && *s != ':')
5941 if (vim_strchr((char_u *)COM_ALL, *s) == NULL
5942 && !VIM_ISDIGIT(*s) && *s != '-')
5944 errmsg = illegal_char(errbuf, *s);
5945 break;
5947 ++s;
5949 if (*s++ == NUL)
5950 errmsg = (char_u *)N_("E524: Missing colon");
5951 else if (*s == ',' || *s == NUL)
5952 errmsg = (char_u *)N_("E525: Zero length string");
5953 if (errmsg != NULL)
5954 break;
5955 while (*s && *s != ',')
5957 if (*s == '\\' && s[1] != NUL)
5958 ++s;
5959 ++s;
5961 s = skip_to_option_part(s);
5964 #endif
5966 /* 'listchars' */
5967 else if (varp == &p_lcs)
5969 errmsg = set_chars_option(varp);
5972 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
5973 /* 'fillchars' */
5974 else if (varp == &p_fcs)
5976 errmsg = set_chars_option(varp);
5978 #endif
5980 #ifdef FEAT_CMDWIN
5981 /* 'cedit' */
5982 else if (varp == &p_cedit)
5984 errmsg = check_cedit();
5986 #endif
5988 /* 'verbosefile' */
5989 else if (varp == &p_vfile)
5991 verbose_stop();
5992 if (*p_vfile != NUL && verbose_open() == FAIL)
5993 errmsg = e_invarg;
5996 #ifdef FEAT_VIMINFO
5997 /* 'viminfo' */
5998 else if (varp == &p_viminfo)
6000 for (s = p_viminfo; *s;)
6002 /* Check it's a valid character */
6003 if (vim_strchr((char_u *)"!\"%'/:<@cfhnrs", *s) == NULL)
6005 errmsg = illegal_char(errbuf, *s);
6006 break;
6008 if (*s == 'n') /* name is always last one */
6010 break;
6012 else if (*s == 'r') /* skip until next ',' */
6014 while (*++s && *s != ',')
6017 else if (*s == '%')
6019 /* optional number */
6020 while (vim_isdigit(*++s))
6023 else if (*s == '!' || *s == 'h' || *s == 'c')
6024 ++s; /* no extra chars */
6025 else /* must have a number */
6027 while (vim_isdigit(*++s))
6030 if (!VIM_ISDIGIT(*(s - 1)))
6032 if (errbuf != NULL)
6034 sprintf((char *)errbuf,
6035 _("E526: Missing number after <%s>"),
6036 transchar_byte(*(s - 1)));
6037 errmsg = errbuf;
6039 else
6040 errmsg = (char_u *)"";
6041 break;
6044 if (*s == ',')
6045 ++s;
6046 else if (*s)
6048 if (errbuf != NULL)
6049 errmsg = (char_u *)N_("E527: Missing comma");
6050 else
6051 errmsg = (char_u *)"";
6052 break;
6055 if (*p_viminfo && errmsg == NULL && get_viminfo_parameter('\'') < 0)
6056 errmsg = (char_u *)N_("E528: Must specify a ' value");
6058 #endif /* FEAT_VIMINFO */
6060 /* terminal options */
6061 else if (istermoption(&options[opt_idx]) && full_screen)
6063 /* ":set t_Co=0" and ":set t_Co=1" do ":set t_Co=" */
6064 if (varp == &T_CCO)
6066 int colors = atoi((char *)T_CCO);
6068 /* Only reinitialize colors if t_Co value has really changed to
6069 * avoid expensive reload of colorscheme if t_Co is set to the
6070 * same value multiple times. */
6071 if (colors != t_colors)
6073 t_colors = colors;
6074 if (t_colors <= 1)
6076 if (new_value_alloced)
6077 vim_free(T_CCO);
6078 T_CCO = empty_option;
6080 /* We now have a different color setup, initialize it again. */
6081 init_highlight(TRUE, FALSE);
6084 ttest(FALSE);
6085 if (varp == &T_ME)
6087 out_str(T_ME);
6088 redraw_later(CLEAR);
6089 #if defined(MSDOS) || (defined(WIN3264) && !defined(FEAT_GUI_W32))
6090 /* Since t_me has been set, this probably means that the user
6091 * wants to use this as default colors. Need to reset default
6092 * background/foreground colors. */
6093 mch_set_normal_colors();
6094 #endif
6098 #ifdef FEAT_LINEBREAK
6099 /* 'showbreak' */
6100 else if (varp == &p_sbr)
6102 for (s = p_sbr; *s; )
6104 if (ptr2cells(s) != 1)
6105 errmsg = (char_u *)N_("E595: contains unprintable or wide character");
6106 mb_ptr_adv(s);
6109 #endif
6111 #ifdef FEAT_GUI
6112 /* 'guifont' */
6113 else if (varp == &p_guifont)
6115 if (gui.in_use)
6117 p = p_guifont;
6118 # if defined(FEAT_GUI_GTK)
6120 * Put up a font dialog and let the user select a new value.
6121 * If this is cancelled go back to the old value but don't
6122 * give an error message.
6124 if (STRCMP(p, "*") == 0)
6126 p = gui_mch_font_dialog(oldval);
6128 if (new_value_alloced)
6129 free_string_option(p_guifont);
6131 p_guifont = (p != NULL) ? p : vim_strsave(oldval);
6132 new_value_alloced = TRUE;
6134 # endif
6135 if (p != NULL && gui_init_font(p_guifont, FALSE) != OK)
6137 # if defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_PHOTON)
6138 if (STRCMP(p_guifont, "*") == 0)
6140 /* Dialog was cancelled: Keep the old value without giving
6141 * an error message. */
6142 if (new_value_alloced)
6143 free_string_option(p_guifont);
6144 p_guifont = vim_strsave(oldval);
6145 new_value_alloced = TRUE;
6147 else
6148 # endif
6149 errmsg = (char_u *)N_("E596: Invalid font(s)");
6152 redraw_gui_only = TRUE;
6154 # ifdef FEAT_XFONTSET
6155 else if (varp == &p_guifontset)
6157 if (STRCMP(p_guifontset, "*") == 0)
6158 errmsg = (char_u *)N_("E597: can't select fontset");
6159 else if (gui.in_use && gui_init_font(p_guifontset, TRUE) != OK)
6160 errmsg = (char_u *)N_("E598: Invalid fontset");
6161 redraw_gui_only = TRUE;
6163 # endif
6164 # ifdef FEAT_MBYTE
6165 else if (varp == &p_guifontwide)
6167 if (STRCMP(p_guifontwide, "*") == 0)
6168 errmsg = (char_u *)N_("E533: can't select wide font");
6169 else if (gui_get_wide_font() == FAIL)
6170 errmsg = (char_u *)N_("E534: Invalid wide font");
6171 redraw_gui_only = TRUE;
6173 # endif
6174 #endif
6176 #ifdef CURSOR_SHAPE
6177 /* 'guicursor' */
6178 else if (varp == &p_guicursor)
6179 errmsg = parse_shape_opt(SHAPE_CURSOR);
6180 #endif
6182 #ifdef FEAT_MOUSESHAPE
6183 /* 'mouseshape' */
6184 else if (varp == &p_mouseshape)
6186 errmsg = parse_shape_opt(SHAPE_MOUSE);
6187 update_mouseshape(-1);
6189 #endif
6191 #ifdef FEAT_PRINTER
6192 else if (varp == &p_popt)
6193 errmsg = parse_printoptions();
6194 # if defined(FEAT_MBYTE) && defined(FEAT_POSTSCRIPT)
6195 else if (varp == &p_pmfn)
6196 errmsg = parse_printmbfont();
6197 # endif
6198 #endif
6200 #ifdef FEAT_LANGMAP
6201 /* 'langmap' */
6202 else if (varp == &p_langmap)
6203 langmap_set();
6204 #endif
6206 #ifdef FEAT_LINEBREAK
6207 /* 'breakat' */
6208 else if (varp == &p_breakat)
6209 fill_breakat_flags();
6210 #endif
6212 #ifdef FEAT_TITLE
6213 /* 'titlestring' and 'iconstring' */
6214 else if (varp == &p_titlestring || varp == &p_iconstring)
6216 # ifdef FEAT_STL_OPT
6217 int flagval = (varp == &p_titlestring) ? STL_IN_TITLE : STL_IN_ICON;
6219 /* NULL => statusline syntax */
6220 if (vim_strchr(*varp, '%') && check_stl_option(*varp) == NULL)
6221 stl_syntax |= flagval;
6222 else
6223 stl_syntax &= ~flagval;
6224 # endif
6225 did_set_title(varp == &p_iconstring);
6228 #endif
6230 #ifdef FEAT_GUI
6231 /* 'guioptions' */
6232 else if (varp == &p_go)
6234 gui_init_which_components(oldval);
6235 redraw_gui_only = TRUE;
6237 #endif
6239 #if defined(FEAT_GUI_TABLINE)
6240 /* 'guitablabel' */
6241 else if (varp == &p_gtl)
6243 redraw_tabline = TRUE;
6244 redraw_gui_only = TRUE;
6246 /* 'guitabtooltip' */
6247 else if (varp == &p_gtt)
6249 redraw_gui_only = TRUE;
6251 #endif
6253 #if defined(FEAT_MOUSE_TTY) && (defined(UNIX) || defined(VMS))
6254 /* 'ttymouse' */
6255 else if (varp == &p_ttym)
6257 /* Switch the mouse off before changing the escape sequences used for
6258 * that. */
6259 mch_setmouse(FALSE);
6260 if (opt_strings_flags(p_ttym, p_ttym_values, &ttym_flags, FALSE) != OK)
6261 errmsg = e_invarg;
6262 else
6263 check_mouse_termcode();
6264 if (termcap_active)
6265 setmouse(); /* may switch it on again */
6267 #endif
6269 #ifdef FEAT_VISUAL
6270 /* 'selection' */
6271 else if (varp == &p_sel)
6273 if (*p_sel == NUL
6274 || check_opt_strings(p_sel, p_sel_values, FALSE) != OK)
6275 errmsg = e_invarg;
6278 /* 'selectmode' */
6279 else if (varp == &p_slm)
6281 if (check_opt_strings(p_slm, p_slm_values, TRUE) != OK)
6282 errmsg = e_invarg;
6284 #endif
6286 #ifdef FEAT_BROWSE
6287 /* 'browsedir' */
6288 else if (varp == &p_bsdir)
6290 if (check_opt_strings(p_bsdir, p_bsdir_values, FALSE) != OK
6291 && !mch_isdir(p_bsdir))
6292 errmsg = e_invarg;
6294 #endif
6296 #ifdef FEAT_VISUAL
6297 /* 'keymodel' */
6298 else if (varp == &p_km)
6300 if (check_opt_strings(p_km, p_km_values, TRUE) != OK)
6301 errmsg = e_invarg;
6302 else
6304 km_stopsel = (vim_strchr(p_km, 'o') != NULL);
6305 km_startsel = (vim_strchr(p_km, 'a') != NULL);
6308 #endif
6310 /* 'mousemodel' */
6311 else if (varp == &p_mousem)
6313 if (check_opt_strings(p_mousem, p_mousem_values, FALSE) != OK)
6314 errmsg = e_invarg;
6315 #if defined(FEAT_GUI_MOTIF) && defined(FEAT_MENU) && (XmVersion <= 1002)
6316 else if (*p_mousem != *oldval)
6317 /* Changed from "extend" to "popup" or "popup_setpos" or vv: need
6318 * to create or delete the popup menus. */
6319 gui_motif_update_mousemodel(root_menu);
6320 #endif
6323 /* 'switchbuf' */
6324 else if (varp == &p_swb)
6326 if (opt_strings_flags(p_swb, p_swb_values, &swb_flags, TRUE) != OK)
6327 errmsg = e_invarg;
6330 /* 'debug' */
6331 else if (varp == &p_debug)
6333 if (check_opt_strings(p_debug, p_debug_values, TRUE) != OK)
6334 errmsg = e_invarg;
6337 /* 'display' */
6338 else if (varp == &p_dy)
6340 if (opt_strings_flags(p_dy, p_dy_values, &dy_flags, TRUE) != OK)
6341 errmsg = e_invarg;
6342 else
6343 (void)init_chartab();
6347 #ifdef FEAT_VERTSPLIT
6348 /* 'eadirection' */
6349 else if (varp == &p_ead)
6351 if (check_opt_strings(p_ead, p_ead_values, FALSE) != OK)
6352 errmsg = e_invarg;
6354 #endif
6356 #ifdef FEAT_CLIPBOARD
6357 /* 'clipboard' */
6358 else if (varp == &p_cb)
6359 errmsg = check_clipboard_option();
6360 #endif
6362 #ifdef FEAT_SPELL
6363 /* When 'spelllang' or 'spellfile' is set and there is a window for this
6364 * buffer in which 'spell' is set load the wordlists. */
6365 else if (varp == &(curbuf->b_p_spl) || varp == &(curbuf->b_p_spf))
6367 win_T *wp;
6368 int l;
6370 if (varp == &(curbuf->b_p_spf))
6372 l = (int)STRLEN(curbuf->b_p_spf);
6373 if (l > 0 && (l < 4 || STRCMP(curbuf->b_p_spf + l - 4,
6374 ".add") != 0))
6375 errmsg = e_invarg;
6378 if (errmsg == NULL)
6380 FOR_ALL_WINDOWS(wp)
6381 if (wp->w_buffer == curbuf && wp->w_p_spell)
6383 errmsg = did_set_spelllang(curbuf);
6384 # ifdef FEAT_WINDOWS
6385 break;
6386 # endif
6390 /* When 'spellcapcheck' is set compile the regexp program. */
6391 else if (varp == &(curbuf->b_p_spc))
6393 errmsg = compile_cap_prog(curbuf);
6395 /* 'spellsuggest' */
6396 else if (varp == &p_sps)
6398 if (spell_check_sps() != OK)
6399 errmsg = e_invarg;
6401 /* 'mkspellmem' */
6402 else if (varp == &p_msm)
6404 if (spell_check_msm() != OK)
6405 errmsg = e_invarg;
6407 #endif
6409 #ifdef FEAT_QUICKFIX
6410 /* When 'bufhidden' is set, check for valid value. */
6411 else if (gvarp == &p_bh)
6413 if (check_opt_strings(curbuf->b_p_bh, p_bufhidden_values, FALSE) != OK)
6414 errmsg = e_invarg;
6417 /* When 'buftype' is set, check for valid value. */
6418 else if (gvarp == &p_bt)
6420 if (check_opt_strings(curbuf->b_p_bt, p_buftype_values, FALSE) != OK)
6421 errmsg = e_invarg;
6422 else
6424 # ifdef FEAT_WINDOWS
6425 if (curwin->w_status_height)
6427 curwin->w_redr_status = TRUE;
6428 redraw_later(VALID);
6430 # endif
6431 curbuf->b_help = (curbuf->b_p_bt[0] == 'h');
6432 # ifdef FEAT_TITLE
6433 redraw_titles();
6434 # endif
6437 #endif
6439 #ifdef FEAT_STL_OPT
6440 /* 'statusline' or 'rulerformat' */
6441 else if (gvarp == &p_stl || varp == &p_ruf)
6443 int wid;
6445 if (varp == &p_ruf) /* reset ru_wid first */
6446 ru_wid = 0;
6447 s = *varp;
6448 if (varp == &p_ruf && *s == '%')
6450 /* set ru_wid if 'ruf' starts with "%99(" */
6451 if (*++s == '-') /* ignore a '-' */
6452 s++;
6453 wid = getdigits(&s);
6454 if (wid && *s == '(' && (errmsg = check_stl_option(p_ruf)) == NULL)
6455 ru_wid = wid;
6456 else
6457 errmsg = check_stl_option(p_ruf);
6459 /* check 'statusline' only if it doesn't start with "%!" */
6460 else if (varp == &p_ruf || s[0] != '%' || s[1] != '!')
6461 errmsg = check_stl_option(s);
6462 if (varp == &p_ruf && errmsg == NULL)
6463 comp_col();
6465 #endif
6467 #ifdef FEAT_INS_EXPAND
6468 /* check if it is a valid value for 'complete' -- Acevedo */
6469 else if (gvarp == &p_cpt)
6471 for (s = *varp; *s;)
6473 while(*s == ',' || *s == ' ')
6474 s++;
6475 if (!*s)
6476 break;
6477 if (vim_strchr((char_u *)".wbuksid]tU", *s) == NULL)
6479 errmsg = illegal_char(errbuf, *s);
6480 break;
6482 if (*++s != NUL && *s != ',' && *s != ' ')
6484 if (s[-1] == 'k' || s[-1] == 's')
6486 /* skip optional filename after 'k' and 's' */
6487 while (*s && *s != ',' && *s != ' ')
6489 if (*s == '\\')
6490 ++s;
6491 ++s;
6494 else
6496 if (errbuf != NULL)
6498 sprintf((char *)errbuf,
6499 _("E535: Illegal character after <%c>"),
6500 *--s);
6501 errmsg = errbuf;
6503 else
6504 errmsg = (char_u *)"";
6505 break;
6511 /* 'completeopt' */
6512 else if (varp == &p_cot)
6514 if (check_opt_strings(p_cot, p_cot_values, TRUE) != OK)
6515 errmsg = e_invarg;
6517 #endif /* FEAT_INS_EXPAND */
6520 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
6521 else if (varp == &p_toolbar)
6523 if (opt_strings_flags(p_toolbar, p_toolbar_values,
6524 &toolbar_flags, TRUE) != OK)
6525 errmsg = e_invarg;
6526 else
6528 out_flush();
6529 gui_mch_show_toolbar((toolbar_flags &
6530 (TOOLBAR_TEXT | TOOLBAR_ICONS)) != 0);
6533 #endif
6535 #if defined(FEAT_TOOLBAR) && defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)
6536 /* 'toolbariconsize': GTK+ 2 only */
6537 else if (varp == &p_tbis)
6539 if (opt_strings_flags(p_tbis, p_tbis_values, &tbis_flags, FALSE) != OK)
6540 errmsg = e_invarg;
6541 else
6543 out_flush();
6544 gui_mch_show_toolbar((toolbar_flags &
6545 (TOOLBAR_TEXT | TOOLBAR_ICONS)) != 0);
6548 #endif
6550 /* 'pastetoggle': translate key codes like in a mapping */
6551 else if (varp == &p_pt)
6553 if (*p_pt)
6555 (void)replace_termcodes(p_pt, &p, TRUE, TRUE, FALSE);
6556 if (p != NULL)
6558 if (new_value_alloced)
6559 free_string_option(p_pt);
6560 p_pt = p;
6561 new_value_alloced = TRUE;
6566 /* 'backspace' */
6567 else if (varp == &p_bs)
6569 if (VIM_ISDIGIT(*p_bs))
6571 if (*p_bs >'2' || p_bs[1] != NUL)
6572 errmsg = e_invarg;
6574 else if (check_opt_strings(p_bs, p_bs_values, TRUE) != OK)
6575 errmsg = e_invarg;
6578 #ifdef FEAT_MBYTE
6579 /* 'casemap' */
6580 else if (varp == &p_cmp)
6582 if (opt_strings_flags(p_cmp, p_cmp_values, &cmp_flags, TRUE) != OK)
6583 errmsg = e_invarg;
6585 #endif
6587 #ifdef FEAT_DIFF
6588 /* 'diffopt' */
6589 else if (varp == &p_dip)
6591 if (diffopt_changed() == FAIL)
6592 errmsg = e_invarg;
6594 #endif
6596 #ifdef FEAT_FOLDING
6597 /* 'foldmethod' */
6598 else if (gvarp == &curwin->w_allbuf_opt.wo_fdm)
6600 if (check_opt_strings(*varp, p_fdm_values, FALSE) != OK
6601 || *curwin->w_p_fdm == NUL)
6602 errmsg = e_invarg;
6603 else
6605 foldUpdateAll(curwin);
6606 if (foldmethodIsDiff(curwin))
6607 newFoldLevel();
6610 # ifdef FEAT_EVAL
6611 /* 'foldexpr' */
6612 else if (varp == &curwin->w_p_fde)
6614 if (foldmethodIsExpr(curwin))
6615 foldUpdateAll(curwin);
6617 # endif
6618 /* 'foldmarker' */
6619 else if (gvarp == &curwin->w_allbuf_opt.wo_fmr)
6621 p = vim_strchr(*varp, ',');
6622 if (p == NULL)
6623 errmsg = (char_u *)N_("E536: comma required");
6624 else if (p == *varp || p[1] == NUL)
6625 errmsg = e_invarg;
6626 else if (foldmethodIsMarker(curwin))
6627 foldUpdateAll(curwin);
6629 /* 'commentstring' */
6630 else if (gvarp == &p_cms)
6632 if (**varp != NUL && strstr((char *)*varp, "%s") == NULL)
6633 errmsg = (char_u *)N_("E537: 'commentstring' must be empty or contain %s");
6635 /* 'foldopen' */
6636 else if (varp == &p_fdo)
6638 if (opt_strings_flags(p_fdo, p_fdo_values, &fdo_flags, TRUE) != OK)
6639 errmsg = e_invarg;
6641 /* 'foldclose' */
6642 else if (varp == &p_fcl)
6644 if (check_opt_strings(p_fcl, p_fcl_values, TRUE) != OK)
6645 errmsg = e_invarg;
6647 /* 'foldignore' */
6648 else if (gvarp == &curwin->w_allbuf_opt.wo_fdi)
6650 if (foldmethodIsIndent(curwin))
6651 foldUpdateAll(curwin);
6653 #endif
6655 #ifdef FEAT_VIRTUALEDIT
6656 /* 'virtualedit' */
6657 else if (varp == &p_ve)
6659 if (opt_strings_flags(p_ve, p_ve_values, &ve_flags, TRUE) != OK)
6660 errmsg = e_invarg;
6661 else if (STRCMP(p_ve, oldval) != 0)
6663 /* Recompute cursor position in case the new 've' setting
6664 * changes something. */
6665 validate_virtcol();
6666 coladvance(curwin->w_virtcol);
6669 #endif
6671 #if defined(FEAT_CSCOPE) && defined(FEAT_QUICKFIX)
6672 else if (varp == &p_csqf)
6674 if (p_csqf != NULL)
6676 p = p_csqf;
6677 while (*p != NUL)
6679 if (vim_strchr((char_u *)CSQF_CMDS, *p) == NULL
6680 || p[1] == NUL
6681 || vim_strchr((char_u *)CSQF_FLAGS, p[1]) == NULL
6682 || (p[2] != NUL && p[2] != ','))
6684 errmsg = e_invarg;
6685 break;
6687 else if (p[2] == NUL)
6688 break;
6689 else
6690 p += 3;
6694 #endif
6696 /* Options that are a list of flags. */
6697 else
6699 p = NULL;
6700 if (varp == &p_ww)
6701 p = (char_u *)WW_ALL;
6702 if (varp == &p_shm)
6703 p = (char_u *)SHM_ALL;
6704 else if (varp == &(p_cpo))
6705 p = (char_u *)CPO_ALL;
6706 else if (varp == &(curbuf->b_p_fo))
6707 p = (char_u *)FO_ALL;
6708 else if (varp == &p_mouse)
6710 #ifdef FEAT_MOUSE
6711 p = (char_u *)MOUSE_ALL;
6712 #else
6713 if (*p_mouse != NUL)
6714 errmsg = (char_u *)N_("E538: No mouse support");
6715 #endif
6717 #if defined(FEAT_GUI)
6718 else if (varp == &p_go)
6719 p = (char_u *)GO_ALL;
6720 #endif
6721 if (p != NULL)
6723 for (s = *varp; *s; ++s)
6724 if (vim_strchr(p, *s) == NULL)
6726 errmsg = illegal_char(errbuf, *s);
6727 break;
6733 * If error detected, restore the previous value.
6735 if (errmsg != NULL)
6737 if (new_value_alloced)
6738 free_string_option(*varp);
6739 *varp = oldval;
6741 * When resetting some values, need to act on it.
6743 if (did_chartab)
6744 (void)init_chartab();
6745 if (varp == &p_hl)
6746 (void)highlight_changed();
6748 else
6750 #ifdef FEAT_EVAL
6751 /* Remember where the option was set. */
6752 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
6753 #endif
6755 * Free string options that are in allocated memory.
6756 * Use "free_oldval", because recursiveness may change the flags under
6757 * our fingers (esp. init_highlight()).
6759 if (free_oldval)
6760 free_string_option(oldval);
6761 if (new_value_alloced)
6762 options[opt_idx].flags |= P_ALLOCED;
6763 else
6764 options[opt_idx].flags &= ~P_ALLOCED;
6766 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
6767 && ((int)options[opt_idx].indir & PV_BOTH))
6769 /* global option with local value set to use global value; free
6770 * the local value and make it empty */
6771 p = get_varp_scope(&(options[opt_idx]), OPT_LOCAL);
6772 free_string_option(*(char_u **)p);
6773 *(char_u **)p = empty_option;
6776 /* May set global value for local option. */
6777 else if (!(opt_flags & OPT_LOCAL) && opt_flags != OPT_GLOBAL)
6778 set_string_option_global(opt_idx, varp);
6780 #ifdef FEAT_AUTOCMD
6782 * Trigger the autocommand only after setting the flags.
6784 # ifdef FEAT_SYN_HL
6785 /* When 'syntax' is set, load the syntax of that name */
6786 if (varp == &(curbuf->b_p_syn))
6788 apply_autocmds(EVENT_SYNTAX, curbuf->b_p_syn,
6789 curbuf->b_fname, TRUE, curbuf);
6791 # endif
6792 else if (varp == &(curbuf->b_p_ft))
6794 /* 'filetype' is set, trigger the FileType autocommand */
6795 did_filetype = TRUE;
6796 apply_autocmds(EVENT_FILETYPE, curbuf->b_p_ft,
6797 curbuf->b_fname, TRUE, curbuf);
6799 #endif
6800 #ifdef FEAT_SPELL
6801 if (varp == &(curbuf->b_p_spl))
6803 char_u fname[200];
6806 * Source the spell/LANG.vim in 'runtimepath'.
6807 * They could set 'spellcapcheck' depending on the language.
6808 * Use the first name in 'spelllang' up to '_region' or
6809 * '.encoding'.
6811 for (p = curbuf->b_p_spl; *p != NUL; ++p)
6812 if (vim_strchr((char_u *)"_.,", *p) != NULL)
6813 break;
6814 vim_snprintf((char *)fname, 200, "spell/%.*s.vim",
6815 (int)(p - curbuf->b_p_spl), curbuf->b_p_spl);
6816 source_runtime(fname, TRUE);
6818 #endif
6821 #ifdef FEAT_MOUSE
6822 if (varp == &p_mouse)
6824 # ifdef FEAT_MOUSE_TTY
6825 if (*p_mouse == NUL)
6826 mch_setmouse(FALSE); /* switch mouse off */
6827 else
6828 # endif
6829 setmouse(); /* in case 'mouse' changed */
6831 #endif
6833 if (curwin->w_curswant != MAXCOL)
6834 curwin->w_set_curswant = TRUE; /* in case 'showbreak' changed */
6835 #ifdef FEAT_GUI
6836 /* check redraw when it's not a GUI option or the GUI is active. */
6837 if (!redraw_gui_only || gui.in_use)
6838 #endif
6839 check_redraw(options[opt_idx].flags);
6841 return errmsg;
6845 * Handle setting 'listchars' or 'fillchars'.
6846 * Returns error message, NULL if it's OK.
6848 static char_u *
6849 set_chars_option(varp)
6850 char_u **varp;
6852 int round, i, len, entries;
6853 char_u *p, *s;
6854 int c1, c2 = 0;
6855 struct charstab
6857 int *cp;
6858 char *name;
6860 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6861 static struct charstab filltab[] =
6863 {&fill_stl, "stl"},
6864 {&fill_stlnc, "stlnc"},
6865 {&fill_vert, "vert"},
6866 {&fill_fold, "fold"},
6867 {&fill_diff, "diff"},
6869 #endif
6870 static struct charstab lcstab[] =
6872 {&lcs_eol, "eol"},
6873 {&lcs_ext, "extends"},
6874 {&lcs_nbsp, "nbsp"},
6875 {&lcs_prec, "precedes"},
6876 {&lcs_tab2, "tab"},
6877 {&lcs_trail, "trail"},
6879 struct charstab *tab;
6881 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6882 if (varp == &p_lcs)
6883 #endif
6885 tab = lcstab;
6886 entries = sizeof(lcstab) / sizeof(struct charstab);
6888 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6889 else
6891 tab = filltab;
6892 entries = sizeof(filltab) / sizeof(struct charstab);
6894 #endif
6896 /* first round: check for valid value, second round: assign values */
6897 for (round = 0; round <= 1; ++round)
6899 if (round)
6901 /* After checking that the value is valid: set defaults: space for
6902 * 'fillchars', NUL for 'listchars' */
6903 for (i = 0; i < entries; ++i)
6904 *(tab[i].cp) = (varp == &p_lcs ? NUL : ' ');
6905 if (varp == &p_lcs)
6906 lcs_tab1 = NUL;
6907 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6908 else
6909 fill_diff = '-';
6910 #endif
6912 p = *varp;
6913 while (*p)
6915 for (i = 0; i < entries; ++i)
6917 len = (int)STRLEN(tab[i].name);
6918 if (STRNCMP(p, tab[i].name, len) == 0
6919 && p[len] == ':'
6920 && p[len + 1] != NUL)
6922 s = p + len + 1;
6923 #ifdef FEAT_MBYTE
6924 c1 = mb_ptr2char_adv(&s);
6925 if (mb_char2cells(c1) > 1)
6926 continue;
6927 #else
6928 c1 = *s++;
6929 #endif
6930 if (tab[i].cp == &lcs_tab2)
6932 if (*s == NUL)
6933 continue;
6934 #ifdef FEAT_MBYTE
6935 c2 = mb_ptr2char_adv(&s);
6936 if (mb_char2cells(c2) > 1)
6937 continue;
6938 #else
6939 c2 = *s++;
6940 #endif
6942 if (*s == ',' || *s == NUL)
6944 if (round)
6946 if (tab[i].cp == &lcs_tab2)
6948 lcs_tab1 = c1;
6949 lcs_tab2 = c2;
6951 else
6952 *(tab[i].cp) = c1;
6955 p = s;
6956 break;
6961 if (i == entries)
6962 return e_invarg;
6963 if (*p == ',')
6964 ++p;
6968 return NULL; /* no error */
6971 #ifdef FEAT_STL_OPT
6973 * Check validity of options with the 'statusline' format.
6974 * Return error message or NULL.
6976 char_u *
6977 check_stl_option(s)
6978 char_u *s;
6980 int itemcnt = 0;
6981 int groupdepth = 0;
6982 static char_u errbuf[80];
6984 while (*s && itemcnt < STL_MAX_ITEM)
6986 /* Check for valid keys after % sequences */
6987 while (*s && *s != '%')
6988 s++;
6989 if (!*s)
6990 break;
6991 s++;
6992 if (*s != '%' && *s != ')')
6993 ++itemcnt;
6994 if (*s == '%' || *s == STL_TRUNCMARK || *s == STL_MIDDLEMARK)
6996 s++;
6997 continue;
6999 if (*s == ')')
7001 s++;
7002 if (--groupdepth < 0)
7003 break;
7004 continue;
7006 if (*s == '-')
7007 s++;
7008 while (VIM_ISDIGIT(*s))
7009 s++;
7010 if (*s == STL_USER_HL)
7011 continue;
7012 if (*s == '.')
7014 s++;
7015 while (*s && VIM_ISDIGIT(*s))
7016 s++;
7018 if (*s == '(')
7020 groupdepth++;
7021 continue;
7023 if (vim_strchr(STL_ALL, *s) == NULL)
7025 return illegal_char(errbuf, *s);
7027 if (*s == '{')
7029 s++;
7030 while (*s != '}' && *s)
7031 s++;
7032 if (*s != '}')
7033 return (char_u *)N_("E540: Unclosed expression sequence");
7036 if (itemcnt >= STL_MAX_ITEM)
7037 return (char_u *)N_("E541: too many items");
7038 if (groupdepth != 0)
7039 return (char_u *)N_("E542: unbalanced groups");
7040 return NULL;
7042 #endif
7044 #ifdef FEAT_CLIPBOARD
7046 * Extract the items in the 'clipboard' option and set global values.
7048 static char_u *
7049 check_clipboard_option()
7051 int new_unnamed = FALSE;
7052 int new_autoselect = FALSE;
7053 int new_autoselectml = FALSE;
7054 int new_html = FALSE;
7055 regprog_T *new_exclude_prog = NULL;
7056 char_u *errmsg = NULL;
7057 char_u *p;
7059 for (p = p_cb; *p != NUL; )
7061 if (STRNCMP(p, "unnamed", 7) == 0 && (p[7] == ',' || p[7] == NUL))
7063 new_unnamed = TRUE;
7064 p += 7;
7066 else if (STRNCMP(p, "autoselect", 10) == 0
7067 && (p[10] == ',' || p[10] == NUL))
7069 new_autoselect = TRUE;
7070 p += 10;
7072 else if (STRNCMP(p, "autoselectml", 12) == 0
7073 && (p[12] == ',' || p[12] == NUL))
7075 new_autoselectml = TRUE;
7076 p += 12;
7078 else if (STRNCMP(p, "html", 4) == 0 && (p[4] == ',' || p[4] == NUL))
7080 new_html = TRUE;
7081 p += 4;
7083 else if (STRNCMP(p, "exclude:", 8) == 0 && new_exclude_prog == NULL)
7085 p += 8;
7086 new_exclude_prog = vim_regcomp(p, RE_MAGIC);
7087 if (new_exclude_prog == NULL)
7088 errmsg = e_invarg;
7089 break;
7091 else
7093 errmsg = e_invarg;
7094 break;
7096 if (*p == ',')
7097 ++p;
7099 if (errmsg == NULL)
7101 clip_unnamed = new_unnamed;
7102 clip_autoselect = new_autoselect;
7103 clip_autoselectml = new_autoselectml;
7104 clip_html = new_html;
7105 vim_free(clip_exclude_prog);
7106 clip_exclude_prog = new_exclude_prog;
7108 else
7109 vim_free(new_exclude_prog);
7111 return errmsg;
7113 #endif
7115 #ifdef FEAT_SPELL
7117 * Set curbuf->b_cap_prog to the regexp program for 'spellcapcheck'.
7118 * Return error message when failed, NULL when OK.
7120 static char_u *
7121 compile_cap_prog(buf)
7122 buf_T *buf;
7124 regprog_T *rp = buf->b_cap_prog;
7125 char_u *re;
7127 if (*buf->b_p_spc == NUL)
7128 buf->b_cap_prog = NULL;
7129 else
7131 /* Prepend a ^ so that we only match at one column */
7132 re = concat_str((char_u *)"^", buf->b_p_spc);
7133 if (re != NULL)
7135 buf->b_cap_prog = vim_regcomp(re, RE_MAGIC);
7136 if (buf->b_cap_prog == NULL)
7138 buf->b_cap_prog = rp; /* restore the previous program */
7139 return e_invarg;
7141 vim_free(re);
7145 vim_free(rp);
7146 return NULL;
7148 #endif
7150 #if defined(FEAT_EVAL) || defined(PROTO)
7152 * Set the scriptID for an option, taking care of setting the buffer- or
7153 * window-local value.
7155 static void
7156 set_option_scriptID_idx(opt_idx, opt_flags, id)
7157 int opt_idx;
7158 int opt_flags;
7159 int id;
7161 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
7162 int indir = (int)options[opt_idx].indir;
7164 /* Remember where the option was set. For local options need to do that
7165 * in the buffer or window structure. */
7166 if (both || (opt_flags & OPT_GLOBAL) || (indir & (PV_BUF|PV_WIN)) == 0)
7167 options[opt_idx].scriptID = id;
7168 if (both || (opt_flags & OPT_LOCAL))
7170 if (indir & PV_BUF)
7171 curbuf->b_p_scriptID[indir & PV_MASK] = id;
7172 else if (indir & PV_WIN)
7173 curwin->w_p_scriptID[indir & PV_MASK] = id;
7176 #endif
7179 * Set the value of a boolean option, and take care of side effects.
7180 * Returns NULL for success, or an error message for an error.
7182 static char_u *
7183 set_bool_option(opt_idx, varp, value, opt_flags)
7184 int opt_idx; /* index in options[] table */
7185 char_u *varp; /* pointer to the option variable */
7186 int value; /* new value */
7187 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
7189 int old_value = *(int *)varp;
7191 /* Disallow changing some options from secure mode */
7192 if ((secure
7193 #ifdef HAVE_SANDBOX
7194 || sandbox != 0
7195 #endif
7196 ) && (options[opt_idx].flags & P_SECURE))
7197 return e_secure;
7199 *(int *)varp = value; /* set the new value */
7200 #ifdef FEAT_EVAL
7201 /* Remember where the option was set. */
7202 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
7203 #endif
7205 #ifdef FEAT_GUI
7206 need_mouse_correct = TRUE;
7207 #endif
7209 /* May set global value for local option. */
7210 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0)
7211 *(int *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) = value;
7214 * Handle side effects of changing a bool option.
7217 /* 'compatible' */
7218 if ((int *)varp == &p_cp)
7220 compatible_set();
7223 /* 'list', 'number' */
7224 else if ((int *)varp == &curwin->w_p_list
7225 || (int *)varp == &curwin->w_p_nu)
7227 if (curwin->w_curswant != MAXCOL)
7228 curwin->w_set_curswant = TRUE;
7231 else if ((int *)varp == &curbuf->b_p_ro)
7233 /* when 'readonly' is reset globally, also reset readonlymode */
7234 if (!curbuf->b_p_ro && (opt_flags & OPT_LOCAL) == 0)
7235 readonlymode = FALSE;
7237 /* when 'readonly' is set may give W10 again */
7238 if (curbuf->b_p_ro)
7239 curbuf->b_did_warn = FALSE;
7241 #ifdef FEAT_TITLE
7242 redraw_titles();
7243 #endif
7246 #ifdef FEAT_TITLE
7247 /* when 'modifiable' is changed, redraw the window title */
7248 else if ((int *)varp == &curbuf->b_p_ma)
7250 redraw_titles();
7252 /* when 'endofline' is changed, redraw the window title */
7253 else if ((int *)varp == &curbuf->b_p_eol)
7255 redraw_titles();
7257 # ifdef FEAT_MBYTE
7258 /* when 'bomb' is changed, redraw the window title and tab page text */
7259 else if ((int *)varp == &curbuf->b_p_bomb)
7261 redraw_titles();
7263 # endif
7264 #endif
7266 /* when 'bin' is set also set some other options */
7267 else if ((int *)varp == &curbuf->b_p_bin)
7269 set_options_bin(old_value, curbuf->b_p_bin, opt_flags);
7270 #ifdef FEAT_TITLE
7271 redraw_titles();
7272 #endif
7275 #ifdef FEAT_AUTOCMD
7276 /* when 'buflisted' changes, trigger autocommands */
7277 else if ((int *)varp == &curbuf->b_p_bl && old_value != curbuf->b_p_bl)
7279 apply_autocmds(curbuf->b_p_bl ? EVENT_BUFADD : EVENT_BUFDELETE,
7280 NULL, NULL, TRUE, curbuf);
7282 #endif
7284 /* when 'swf' is set, create swapfile, when reset remove swapfile */
7285 else if ((int *)varp == &curbuf->b_p_swf)
7287 if (curbuf->b_p_swf && p_uc)
7288 ml_open_file(curbuf); /* create the swap file */
7289 else
7290 /* no need to reset curbuf->b_may_swap, ml_open_file() will check
7291 * buf->b_p_swf */
7292 mf_close_file(curbuf, TRUE); /* remove the swap file */
7295 /* when 'terse' is set change 'shortmess' */
7296 else if ((int *)varp == &p_terse)
7298 char_u *p;
7300 p = vim_strchr(p_shm, SHM_SEARCH);
7302 /* insert 's' in p_shm */
7303 if (p_terse && p == NULL)
7305 STRCPY(IObuff, p_shm);
7306 STRCAT(IObuff, "s");
7307 set_string_option_direct((char_u *)"shm", -1, IObuff, OPT_FREE, 0);
7309 /* remove 's' from p_shm */
7310 else if (!p_terse && p != NULL)
7311 STRMOVE(p, p + 1);
7314 /* when 'paste' is set or reset also change other options */
7315 else if ((int *)varp == &p_paste)
7317 paste_option_changed();
7320 /* when 'insertmode' is set from an autocommand need to do work here */
7321 else if ((int *)varp == &p_im)
7323 if (p_im)
7325 if ((State & INSERT) == 0)
7326 need_start_insertmode = TRUE;
7327 stop_insert_mode = FALSE;
7329 else
7331 need_start_insertmode = FALSE;
7332 stop_insert_mode = TRUE;
7333 if (restart_edit != 0 && mode_displayed)
7334 clear_cmdline = TRUE; /* remove "(insert)" */
7335 restart_edit = 0;
7339 /* when 'ignorecase' is set or reset and 'hlsearch' is set, redraw */
7340 else if ((int *)varp == &p_ic && p_hls)
7342 redraw_all_later(SOME_VALID);
7345 #ifdef FEAT_SEARCH_EXTRA
7346 /* when 'hlsearch' is set or reset: reset no_hlsearch */
7347 else if ((int *)varp == &p_hls)
7349 no_hlsearch = FALSE;
7351 #endif
7353 #ifdef FEAT_SCROLLBIND
7354 /* when 'scrollbind' is set: snapshot the current position to avoid a jump
7355 * at the end of normal_cmd() */
7356 else if ((int *)varp == &curwin->w_p_scb)
7358 if (curwin->w_p_scb)
7359 do_check_scrollbind(FALSE);
7361 #endif
7363 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
7364 /* There can be only one window with 'previewwindow' set. */
7365 else if ((int *)varp == &curwin->w_p_pvw)
7367 if (curwin->w_p_pvw)
7369 win_T *win;
7371 for (win = firstwin; win != NULL; win = win->w_next)
7372 if (win->w_p_pvw && win != curwin)
7374 curwin->w_p_pvw = FALSE;
7375 return (char_u *)N_("E590: A preview window already exists");
7379 #endif
7381 /* when 'textmode' is set or reset also change 'fileformat' */
7382 else if ((int *)varp == &curbuf->b_p_tx)
7384 set_fileformat(curbuf->b_p_tx ? EOL_DOS : EOL_UNIX, opt_flags);
7387 /* when 'textauto' is set or reset also change 'fileformats' */
7388 else if ((int *)varp == &p_ta)
7389 set_string_option_direct((char_u *)"ffs", -1,
7390 p_ta ? (char_u *)DFLT_FFS_VIM : (char_u *)"",
7391 OPT_FREE | opt_flags, 0);
7394 * When 'lisp' option changes include/exclude '-' in
7395 * keyword characters.
7397 #ifdef FEAT_LISP
7398 else if (varp == (char_u *)&(curbuf->b_p_lisp))
7400 (void)buf_init_chartab(curbuf, FALSE); /* ignore errors */
7402 #endif
7404 #ifdef FEAT_TITLE
7405 /* when 'title' changed, may need to change the title; same for 'icon' */
7406 else if ((int *)varp == &p_title)
7408 did_set_title(FALSE);
7411 else if ((int *)varp == &p_icon)
7413 did_set_title(TRUE);
7415 #endif
7417 else if ((int *)varp == &curbuf->b_changed)
7419 if (!value)
7420 save_file_ff(curbuf); /* Buffer is unchanged */
7421 #ifdef FEAT_TITLE
7422 redraw_titles();
7423 #endif
7424 #ifdef FEAT_AUTOCMD
7425 modified_was_set = value;
7426 #endif
7429 #ifdef BACKSLASH_IN_FILENAME
7430 else if ((int *)varp == &p_ssl)
7432 if (p_ssl)
7434 psepc = '/';
7435 psepcN = '\\';
7436 pseps[0] = '/';
7438 else
7440 psepc = '\\';
7441 psepcN = '/';
7442 pseps[0] = '\\';
7445 /* need to adjust the file name arguments and buffer names. */
7446 buflist_slash_adjust();
7447 alist_slash_adjust();
7448 # ifdef FEAT_EVAL
7449 scriptnames_slash_adjust();
7450 # endif
7452 #endif
7454 /* If 'wrap' is set, set w_leftcol to zero. */
7455 else if ((int *)varp == &curwin->w_p_wrap)
7457 if (curwin->w_p_wrap)
7458 curwin->w_leftcol = 0;
7459 if (curwin->w_curswant != MAXCOL)
7460 curwin->w_set_curswant = TRUE;
7463 #ifdef FEAT_WINDOWS
7464 else if ((int *)varp == &p_ea)
7466 if (p_ea && !old_value)
7467 win_equal(curwin, FALSE, 0);
7469 #endif
7471 else if ((int *)varp == &p_wiv)
7474 * When 'weirdinvert' changed, set/reset 't_xs'.
7475 * Then set 'weirdinvert' according to value of 't_xs'.
7477 if (p_wiv && !old_value)
7478 T_XS = (char_u *)"y";
7479 else if (!p_wiv && old_value)
7480 T_XS = empty_option;
7481 p_wiv = (*T_XS != NUL);
7484 #ifdef FEAT_BEVAL
7485 else if ((int *)varp == &p_beval)
7487 if (p_beval == TRUE)
7488 gui_mch_enable_beval_area(balloonEval);
7489 else
7490 gui_mch_disable_beval_area(balloonEval);
7492 #endif
7494 #ifdef FEAT_AUTOCHDIR
7495 else if ((int *)varp == &p_acd)
7497 /* Change directories when the 'acd' option is set now. */
7498 DO_AUTOCHDIR
7500 #endif
7502 #ifdef FEAT_DIFF
7503 /* 'diff' */
7504 else if ((int *)varp == &curwin->w_p_diff)
7506 /* May add or remove the buffer from the list of diff buffers. */
7507 diff_buf_adjust(curwin);
7508 # ifdef FEAT_FOLDING
7509 if (foldmethodIsDiff(curwin))
7510 foldUpdateAll(curwin);
7511 # endif
7513 #endif
7515 #ifdef USE_IM_CONTROL
7516 /* 'imdisable' */
7517 else if ((int *)varp == &p_imdisable)
7519 /* Only de-activate it here, it will be enabled when changing mode. */
7520 if (p_imdisable)
7521 im_set_active(FALSE);
7523 #endif
7525 #ifdef FEAT_SPELL
7526 /* 'spell' */
7527 else if ((int *)varp == &curwin->w_p_spell)
7529 if (curwin->w_p_spell)
7531 char_u *errmsg = did_set_spelllang(curbuf);
7533 if (errmsg != NULL)
7534 EMSG(_(errmsg));
7537 #endif
7539 #ifdef FEAT_FKMAP
7540 else if ((int *)varp == &p_altkeymap)
7542 if (old_value != p_altkeymap)
7544 if (!p_altkeymap)
7546 p_hkmap = p_fkmap;
7547 p_fkmap = 0;
7549 else
7551 p_fkmap = p_hkmap;
7552 p_hkmap = 0;
7554 (void)init_chartab();
7559 * In case some second language keymapping options have changed, check
7560 * and correct the setting in a consistent way.
7564 * If hkmap or fkmap are set, reset Arabic keymapping.
7566 if ((p_hkmap || p_fkmap) && p_altkeymap)
7568 p_altkeymap = p_fkmap;
7569 # ifdef FEAT_ARABIC
7570 curwin->w_p_arab = FALSE;
7571 # endif
7572 (void)init_chartab();
7576 * If hkmap set, reset Farsi keymapping.
7578 if (p_hkmap && p_altkeymap)
7580 p_altkeymap = 0;
7581 p_fkmap = 0;
7582 # ifdef FEAT_ARABIC
7583 curwin->w_p_arab = FALSE;
7584 # endif
7585 (void)init_chartab();
7589 * If fkmap set, reset Hebrew keymapping.
7591 if (p_fkmap && !p_altkeymap)
7593 p_altkeymap = 1;
7594 p_hkmap = 0;
7595 # ifdef FEAT_ARABIC
7596 curwin->w_p_arab = FALSE;
7597 # endif
7598 (void)init_chartab();
7600 #endif
7602 #ifdef FEAT_ARABIC
7603 if ((int *)varp == &curwin->w_p_arab)
7605 if (curwin->w_p_arab)
7608 * 'arabic' is set, handle various sub-settings.
7610 if (!p_tbidi)
7612 /* set rightleft mode */
7613 if (!curwin->w_p_rl)
7615 curwin->w_p_rl = TRUE;
7616 changed_window_setting();
7619 /* Enable Arabic shaping (major part of what Arabic requires) */
7620 if (!p_arshape)
7622 p_arshape = TRUE;
7623 redraw_later_clear();
7627 /* Arabic requires a utf-8 encoding, inform the user if its not
7628 * set. */
7629 if (STRCMP(p_enc, "utf-8") != 0)
7631 static char *w_arabic = N_("W17: Arabic requires UTF-8, do ':set encoding=utf-8'");
7633 msg_source(hl_attr(HLF_W));
7634 MSG_ATTR(_(w_arabic), hl_attr(HLF_W));
7635 #ifdef FEAT_EVAL
7636 set_vim_var_string(VV_WARNINGMSG, (char_u *)_(w_arabic), -1);
7637 #endif
7640 # ifdef FEAT_MBYTE
7641 /* set 'delcombine' */
7642 p_deco = TRUE;
7643 # endif
7645 # ifdef FEAT_KEYMAP
7646 /* Force-set the necessary keymap for arabic */
7647 set_option_value((char_u *)"keymap", 0L, (char_u *)"arabic",
7648 OPT_LOCAL);
7649 # endif
7650 # ifdef FEAT_FKMAP
7651 p_altkeymap = 0;
7652 p_hkmap = 0;
7653 p_fkmap = 0;
7654 (void)init_chartab();
7655 # endif
7657 else
7660 * 'arabic' is reset, handle various sub-settings.
7662 if (!p_tbidi)
7664 /* reset rightleft mode */
7665 if (curwin->w_p_rl)
7667 curwin->w_p_rl = FALSE;
7668 changed_window_setting();
7671 /* 'arabicshape' isn't reset, it is a global option and
7672 * another window may still need it "on". */
7675 /* 'delcombine' isn't reset, it is a global option and another
7676 * window may still want it "on". */
7678 # ifdef FEAT_KEYMAP
7679 /* Revert to the default keymap */
7680 curbuf->b_p_iminsert = B_IMODE_NONE;
7681 curbuf->b_p_imsearch = B_IMODE_USE_INSERT;
7682 # endif
7684 if (curwin->w_curswant != MAXCOL)
7685 curwin->w_set_curswant = TRUE;
7688 else if ((int *)varp == &p_arshape)
7690 if (curwin->w_curswant != MAXCOL)
7691 curwin->w_set_curswant = TRUE;
7693 #endif
7695 #ifdef FEAT_LINEBREAK
7696 if ((int *)varp == &curwin->w_p_lbr)
7698 if (curwin->w_curswant != MAXCOL)
7699 curwin->w_set_curswant = TRUE;
7701 #endif
7703 #ifdef FEAT_RIGHTLEFT
7704 if ((int *)varp == &curwin->w_p_rl)
7706 if (curwin->w_curswant != MAXCOL)
7707 curwin->w_set_curswant = TRUE;
7709 #endif
7712 * End of handling side effects for bool options.
7715 options[opt_idx].flags |= P_WAS_SET;
7717 comp_col(); /* in case 'ruler' or 'showcmd' changed */
7719 check_redraw(options[opt_idx].flags);
7721 return NULL;
7725 * Set the value of a number option, and take care of side effects.
7726 * Returns NULL for success, or an error message for an error.
7728 static char_u *
7729 set_num_option(opt_idx, varp, value, errbuf, errbuflen, opt_flags)
7730 int opt_idx; /* index in options[] table */
7731 char_u *varp; /* pointer to the option variable */
7732 long value; /* new value */
7733 char_u *errbuf; /* buffer for error messages */
7734 size_t errbuflen; /* length of "errbuf" */
7735 int opt_flags; /* OPT_LOCAL, OPT_GLOBAL and
7736 OPT_MODELINE */
7738 char_u *errmsg = NULL;
7739 long old_value = *(long *)varp;
7740 long old_Rows = Rows; /* remember old Rows */
7741 long old_Columns = Columns; /* remember old Columns */
7742 long *pp = (long *)varp;
7744 /* Disallow changing some options from secure mode. */
7745 if ((secure
7746 #ifdef HAVE_SANDBOX
7747 || sandbox != 0
7748 #endif
7749 ) && (options[opt_idx].flags & P_SECURE))
7750 return e_secure;
7752 *pp = value;
7753 #ifdef FEAT_EVAL
7754 /* Remember where the option was set. */
7755 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
7756 #endif
7757 #ifdef FEAT_GUI
7758 need_mouse_correct = TRUE;
7759 #endif
7761 if (curbuf->b_p_sw <= 0)
7763 errmsg = e_positive;
7764 curbuf->b_p_sw = curbuf->b_p_ts;
7768 * Number options that need some action when changed
7770 #ifdef FEAT_WINDOWS
7771 if (pp == &p_wh || pp == &p_hh)
7773 if (p_wh < 1)
7775 errmsg = e_positive;
7776 p_wh = 1;
7778 if (p_wmh > p_wh)
7780 errmsg = e_winheight;
7781 p_wh = p_wmh;
7783 if (p_hh < 0)
7785 errmsg = e_positive;
7786 p_hh = 0;
7789 /* Change window height NOW */
7790 if (lastwin != firstwin)
7792 if (pp == &p_wh && curwin->w_height < p_wh)
7793 win_setheight((int)p_wh);
7794 if (pp == &p_hh && curbuf->b_help && curwin->w_height < p_hh)
7795 win_setheight((int)p_hh);
7799 /* 'winminheight' */
7800 else if (pp == &p_wmh)
7802 if (p_wmh < 0)
7804 errmsg = e_positive;
7805 p_wmh = 0;
7807 if (p_wmh > p_wh)
7809 errmsg = e_winheight;
7810 p_wmh = p_wh;
7812 win_setminheight();
7815 # ifdef FEAT_VERTSPLIT
7816 else if (pp == &p_wiw)
7818 if (p_wiw < 1)
7820 errmsg = e_positive;
7821 p_wiw = 1;
7823 if (p_wmw > p_wiw)
7825 errmsg = e_winwidth;
7826 p_wiw = p_wmw;
7829 /* Change window width NOW */
7830 if (lastwin != firstwin && curwin->w_width < p_wiw)
7831 win_setwidth((int)p_wiw);
7834 /* 'winminwidth' */
7835 else if (pp == &p_wmw)
7837 if (p_wmw < 0)
7839 errmsg = e_positive;
7840 p_wmw = 0;
7842 if (p_wmw > p_wiw)
7844 errmsg = e_winwidth;
7845 p_wmw = p_wiw;
7847 win_setminheight();
7849 # endif
7851 #endif
7853 #ifdef FEAT_WINDOWS
7854 /* (re)set last window status line */
7855 else if (pp == &p_ls)
7857 last_status(FALSE);
7860 /* (re)set tab page line */
7861 else if (pp == &p_stal)
7863 shell_new_rows(); /* recompute window positions and heights */
7865 #endif
7867 #ifdef FEAT_GUI
7868 else if (pp == &p_linespace)
7870 /* Recompute gui.char_height and resize the Vim window to keep the
7871 * same number of lines. */
7872 if (gui.in_use && gui_mch_adjust_charheight() == OK)
7873 gui_set_shellsize(FALSE, FALSE, RESIZE_VERT);
7875 #endif
7877 #ifdef FEAT_FOLDING
7878 /* 'foldlevel' */
7879 else if (pp == &curwin->w_p_fdl)
7881 if (curwin->w_p_fdl < 0)
7882 curwin->w_p_fdl = 0;
7883 newFoldLevel();
7886 /* 'foldminlines' */
7887 else if (pp == &curwin->w_p_fml)
7889 foldUpdateAll(curwin);
7892 /* 'foldnestmax' */
7893 else if (pp == &curwin->w_p_fdn)
7895 if (foldmethodIsSyntax(curwin) || foldmethodIsIndent(curwin))
7896 foldUpdateAll(curwin);
7899 /* 'foldcolumn' */
7900 else if (pp == &curwin->w_p_fdc)
7902 if (curwin->w_p_fdc < 0)
7904 errmsg = e_positive;
7905 curwin->w_p_fdc = 0;
7907 else if (curwin->w_p_fdc > 12)
7909 errmsg = e_invarg;
7910 curwin->w_p_fdc = 12;
7914 /* 'shiftwidth' or 'tabstop' */
7915 else if (pp == &curbuf->b_p_sw || pp == &curbuf->b_p_ts)
7917 if (foldmethodIsIndent(curwin))
7918 foldUpdateAll(curwin);
7920 #endif /* FEAT_FOLDING */
7922 #ifdef FEAT_MBYTE
7923 /* 'maxcombine' */
7924 else if (pp == &p_mco)
7926 if (p_mco > MAX_MCO)
7927 p_mco = MAX_MCO;
7928 else if (p_mco < 0)
7929 p_mco = 0;
7930 screenclear(); /* will re-allocate the screen */
7932 #endif
7934 else if (pp == &curbuf->b_p_iminsert)
7936 if (curbuf->b_p_iminsert < 0 || curbuf->b_p_iminsert > B_IMODE_LAST)
7938 errmsg = e_invarg;
7939 curbuf->b_p_iminsert = B_IMODE_NONE;
7941 p_iminsert = curbuf->b_p_iminsert;
7942 if (termcap_active) /* don't do this in the alternate screen */
7943 showmode();
7944 #if defined(FEAT_WINDOWS) && defined(FEAT_KEYMAP)
7945 /* Show/unshow value of 'keymap' in status lines. */
7946 status_redraw_curbuf();
7947 #endif
7950 else if (pp == &p_window)
7952 if (p_window < 1)
7953 p_window = 1;
7954 else if (p_window >= Rows)
7955 p_window = Rows - 1;
7958 else if (pp == &curbuf->b_p_imsearch)
7960 if (curbuf->b_p_imsearch < -1 || curbuf->b_p_imsearch > B_IMODE_LAST)
7962 errmsg = e_invarg;
7963 curbuf->b_p_imsearch = B_IMODE_NONE;
7965 p_imsearch = curbuf->b_p_imsearch;
7968 #ifdef FEAT_TITLE
7969 /* if 'titlelen' has changed, redraw the title */
7970 else if (pp == &p_titlelen)
7972 if (p_titlelen < 0)
7974 errmsg = e_positive;
7975 p_titlelen = 85;
7977 if (starting != NO_SCREEN && old_value != p_titlelen)
7978 need_maketitle = TRUE;
7980 #endif
7982 /* if p_ch changed value, change the command line height */
7983 else if (pp == &p_ch)
7985 if (p_ch < 1)
7987 errmsg = e_positive;
7988 p_ch = 1;
7990 if (p_ch > Rows - min_rows() + 1)
7991 p_ch = Rows - min_rows() + 1;
7993 /* Only compute the new window layout when startup has been
7994 * completed. Otherwise the frame sizes may be wrong. */
7995 if (p_ch != old_value && full_screen
7996 #ifdef FEAT_GUI
7997 && !gui.starting
7998 #endif
8000 command_height();
8003 /* when 'updatecount' changes from zero to non-zero, open swap files */
8004 else if (pp == &p_uc)
8006 if (p_uc < 0)
8008 errmsg = e_positive;
8009 p_uc = 100;
8011 if (p_uc && !old_value)
8012 ml_open_files();
8014 #ifdef MZSCHEME_GUI_THREADS
8015 else if (pp == &p_mzq)
8016 mzvim_reset_timer();
8017 #endif
8019 /* sync undo before 'undolevels' changes */
8020 else if (pp == &p_ul)
8022 /* use the old value, otherwise u_sync() may not work properly */
8023 p_ul = old_value;
8024 u_sync(TRUE);
8025 p_ul = value;
8028 #ifdef FEAT_LINEBREAK
8029 /* 'numberwidth' must be positive */
8030 else if (pp == &curwin->w_p_nuw)
8032 if (curwin->w_p_nuw < 1)
8034 errmsg = e_positive;
8035 curwin->w_p_nuw = 1;
8037 if (curwin->w_p_nuw > 10)
8039 errmsg = e_invarg;
8040 curwin->w_p_nuw = 10;
8042 curwin->w_nrwidth_line_count = 0;
8044 #endif
8047 * Check the bounds for numeric options here
8049 if (Rows < min_rows() && full_screen)
8051 if (errbuf != NULL)
8053 vim_snprintf((char *)errbuf, errbuflen,
8054 _("E593: Need at least %d lines"), min_rows());
8055 errmsg = errbuf;
8057 Rows = min_rows();
8059 if (Columns < MIN_COLUMNS && full_screen)
8061 if (errbuf != NULL)
8063 vim_snprintf((char *)errbuf, errbuflen,
8064 _("E594: Need at least %d columns"), MIN_COLUMNS);
8065 errmsg = errbuf;
8067 Columns = MIN_COLUMNS;
8069 /* Limit the values to avoid an overflow in Rows * Columns. */
8070 if (Columns > 10000)
8071 Columns = 10000;
8072 if (Rows > 1000)
8073 Rows = 1000;
8075 #ifdef DJGPP
8076 /* avoid a crash by checking for a too large value of 'columns' */
8077 if (old_Columns != Columns && full_screen && term_console)
8078 mch_check_columns();
8079 #endif
8082 * If the screen (shell) height has been changed, assume it is the
8083 * physical screenheight.
8085 if (old_Rows != Rows || old_Columns != Columns)
8087 /* Changing the screen size is not allowed while updating the screen. */
8088 if (updating_screen)
8089 *pp = old_value;
8090 else if (full_screen
8091 #ifdef FEAT_GUI
8092 && !gui.starting
8093 #endif
8095 set_shellsize((int)Columns, (int)Rows, TRUE);
8096 else
8098 /* Postpone the resizing; check the size and cmdline position for
8099 * messages. */
8100 check_shellsize();
8101 if (cmdline_row > Rows - p_ch && Rows > p_ch)
8102 cmdline_row = Rows - p_ch;
8104 if (p_window >= Rows || !option_was_set((char_u *)"window"))
8105 p_window = Rows - 1;
8108 if (curbuf->b_p_sts < 0)
8110 errmsg = e_positive;
8111 curbuf->b_p_sts = 0;
8113 if (curbuf->b_p_ts <= 0)
8115 errmsg = e_positive;
8116 curbuf->b_p_ts = 8;
8118 if (curbuf->b_p_tw < 0)
8120 errmsg = e_positive;
8121 curbuf->b_p_tw = 0;
8123 if (p_tm < 0)
8125 errmsg = e_positive;
8126 p_tm = 0;
8128 if ((curwin->w_p_scr <= 0
8129 || (curwin->w_p_scr > curwin->w_height
8130 && curwin->w_height > 0))
8131 && full_screen)
8133 if (pp == &(curwin->w_p_scr))
8135 if (curwin->w_p_scr != 0)
8136 errmsg = e_scroll;
8137 win_comp_scroll(curwin);
8139 /* If 'scroll' became invalid because of a side effect silently adjust
8140 * it. */
8141 else if (curwin->w_p_scr <= 0)
8142 curwin->w_p_scr = 1;
8143 else /* curwin->w_p_scr > curwin->w_height */
8144 curwin->w_p_scr = curwin->w_height;
8146 if (p_hi < 0)
8148 errmsg = e_positive;
8149 p_hi = 0;
8151 if (p_report < 0)
8153 errmsg = e_positive;
8154 p_report = 1;
8156 if ((p_sj < -100 || p_sj >= Rows) && full_screen)
8158 if (Rows != old_Rows) /* Rows changed, just adjust p_sj */
8159 p_sj = Rows / 2;
8160 else
8162 errmsg = e_scroll;
8163 p_sj = 1;
8166 if (p_so < 0 && full_screen)
8168 errmsg = e_scroll;
8169 p_so = 0;
8171 if (p_siso < 0 && full_screen)
8173 errmsg = e_positive;
8174 p_siso = 0;
8176 #ifdef FEAT_CMDWIN
8177 if (p_cwh < 1)
8179 errmsg = e_positive;
8180 p_cwh = 1;
8182 #endif
8183 if (p_ut < 0)
8185 errmsg = e_positive;
8186 p_ut = 2000;
8188 if (p_ss < 0)
8190 errmsg = e_positive;
8191 p_ss = 0;
8194 /* May set global value for local option. */
8195 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0)
8196 *(long *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) = *pp;
8198 options[opt_idx].flags |= P_WAS_SET;
8200 comp_col(); /* in case 'columns' or 'ls' changed */
8201 if (curwin->w_curswant != MAXCOL)
8202 curwin->w_set_curswant = TRUE; /* in case 'tabstop' changed */
8203 check_redraw(options[opt_idx].flags);
8205 return errmsg;
8209 * Called after an option changed: check if something needs to be redrawn.
8211 static void
8212 check_redraw(flags)
8213 long_u flags;
8215 /* Careful: P_RCLR and P_RALL are a combination of other P_ flags */
8216 int clear = (flags & P_RCLR) == P_RCLR;
8217 int all = ((flags & P_RALL) == P_RALL || clear);
8219 #ifdef FEAT_WINDOWS
8220 if ((flags & P_RSTAT) || all) /* mark all status lines dirty */
8221 status_redraw_all();
8222 #endif
8224 if ((flags & P_RBUF) || (flags & P_RWIN) || all)
8225 changed_window_setting();
8226 if (flags & P_RBUF)
8227 redraw_curbuf_later(NOT_VALID);
8228 if (clear)
8229 redraw_all_later(CLEAR);
8230 else if (all)
8231 redraw_all_later(NOT_VALID);
8235 * Find index for option 'arg'.
8236 * Return -1 if not found.
8238 static int
8239 findoption(arg)
8240 char_u *arg;
8242 int opt_idx;
8243 char *s, *p;
8244 static short quick_tab[27] = {0, 0}; /* quick access table */
8245 int is_term_opt;
8248 * For first call: Initialize the quick-access table.
8249 * It contains the index for the first option that starts with a certain
8250 * letter. There are 26 letters, plus the first "t_" option.
8252 if (quick_tab[1] == 0)
8254 p = options[0].fullname;
8255 for (opt_idx = 1; (s = options[opt_idx].fullname) != NULL; opt_idx++)
8257 if (s[0] != p[0])
8259 if (s[0] == 't' && s[1] == '_')
8260 quick_tab[26] = opt_idx;
8261 else
8262 quick_tab[CharOrdLow(s[0])] = opt_idx;
8264 p = s;
8269 * Check for name starting with an illegal character.
8271 #ifdef EBCDIC
8272 if (!islower(arg[0]))
8273 #else
8274 if (arg[0] < 'a' || arg[0] > 'z')
8275 #endif
8276 return -1;
8278 is_term_opt = (arg[0] == 't' && arg[1] == '_');
8279 if (is_term_opt)
8280 opt_idx = quick_tab[26];
8281 else
8282 opt_idx = quick_tab[CharOrdLow(arg[0])];
8283 for ( ; (s = options[opt_idx].fullname) != NULL; opt_idx++)
8285 if (STRCMP(arg, s) == 0) /* match full name */
8286 break;
8288 if (s == NULL && !is_term_opt)
8290 opt_idx = quick_tab[CharOrdLow(arg[0])];
8291 for ( ; options[opt_idx].fullname != NULL; opt_idx++)
8293 s = options[opt_idx].shortname;
8294 if (s != NULL && STRCMP(arg, s) == 0) /* match short name */
8295 break;
8296 s = NULL;
8299 if (s == NULL)
8300 opt_idx = -1;
8301 return opt_idx;
8304 #if defined(FEAT_EVAL) || defined(FEAT_TCL) || defined(FEAT_MZSCHEME)
8306 * Get the value for an option.
8308 * Returns:
8309 * Number or Toggle option: 1, *numval gets value.
8310 * String option: 0, *stringval gets allocated string.
8311 * Hidden Number or Toggle option: -1.
8312 * hidden String option: -2.
8313 * unknown option: -3.
8316 get_option_value(name, numval, stringval, opt_flags)
8317 char_u *name;
8318 long *numval;
8319 char_u **stringval; /* NULL when only checking existance */
8320 int opt_flags;
8322 int opt_idx;
8323 char_u *varp;
8325 opt_idx = findoption(name);
8326 if (opt_idx < 0) /* unknown option */
8327 return -3;
8329 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
8331 if (options[opt_idx].flags & P_STRING)
8333 if (varp == NULL) /* hidden option */
8334 return -2;
8335 if (stringval != NULL)
8337 #ifdef FEAT_CRYPT
8338 /* never return the value of the crypt key */
8339 if ((char_u **)varp == &curbuf->b_p_key
8340 && **(char_u **)(varp) != NUL)
8341 *stringval = vim_strsave((char_u *)"*****");
8342 else
8343 #endif
8344 *stringval = vim_strsave(*(char_u **)(varp));
8346 return 0;
8349 if (varp == NULL) /* hidden option */
8350 return -1;
8351 if (options[opt_idx].flags & P_NUM)
8352 *numval = *(long *)varp;
8353 else
8355 /* Special case: 'modified' is b_changed, but we also want to consider
8356 * it set when 'ff' or 'fenc' changed. */
8357 if ((int *)varp == &curbuf->b_changed)
8358 *numval = curbufIsChanged();
8359 else
8360 *numval = *(int *)varp;
8362 return 1;
8364 #endif
8367 * Set the value of option "name".
8368 * Use "string" for string options, use "number" for other options.
8370 void
8371 set_option_value(name, number, string, opt_flags)
8372 char_u *name;
8373 long number;
8374 char_u *string;
8375 int opt_flags; /* OPT_LOCAL or 0 (both) */
8377 int opt_idx;
8378 char_u *varp;
8379 long_u flags;
8381 opt_idx = findoption(name);
8382 if (opt_idx < 0)
8383 EMSG2(_("E355: Unknown option: %s"), name);
8384 else
8386 flags = options[opt_idx].flags;
8387 #ifdef HAVE_SANDBOX
8388 /* Disallow changing some options in the sandbox */
8389 if (sandbox > 0 && (flags & P_SECURE))
8391 EMSG(_(e_sandbox));
8392 return;
8394 #endif
8395 if (flags & P_STRING)
8396 set_string_option(opt_idx, string, opt_flags);
8397 else
8399 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
8400 if (varp != NULL) /* hidden option is not changed */
8402 if (number == 0 && string != NULL)
8404 int idx;
8406 /* Either we are given a string or we are setting option
8407 * to zero. */
8408 for (idx = 0; string[idx] == '0'; ++idx)
8410 if (string[idx] != NUL || idx == 0)
8412 /* There's another character after zeros or the string
8413 * is empty. In both cases, we are trying to set a
8414 * num option using a string. */
8415 EMSG3(_("E521: Number required: &%s = '%s'"),
8416 name, string);
8417 return; /* do nothing as we hit an error */
8421 if (flags & P_NUM)
8422 (void)set_num_option(opt_idx, varp, number,
8423 NULL, 0, opt_flags);
8424 else
8425 (void)set_bool_option(opt_idx, varp, (int)number,
8426 opt_flags);
8433 * Get the terminal code for a terminal option.
8434 * Returns NULL when not found.
8436 char_u *
8437 get_term_code(tname)
8438 char_u *tname;
8440 int opt_idx;
8441 char_u *varp;
8443 if (tname[0] != 't' || tname[1] != '_' ||
8444 tname[2] == NUL || tname[3] == NUL)
8445 return NULL;
8446 if ((opt_idx = findoption(tname)) >= 0)
8448 varp = get_varp(&(options[opt_idx]));
8449 if (varp != NULL)
8450 varp = *(char_u **)(varp);
8451 return varp;
8453 return find_termcode(tname + 2);
8456 char_u *
8457 get_highlight_default()
8459 int i;
8461 i = findoption((char_u *)"hl");
8462 if (i >= 0)
8463 return options[i].def_val[VI_DEFAULT];
8464 return (char_u *)NULL;
8467 #if defined(FEAT_MBYTE) || defined(PROTO)
8468 char_u *
8469 get_encoding_default()
8471 int i;
8473 i = findoption((char_u *)"enc");
8474 if (i >= 0)
8475 return options[i].def_val[VI_DEFAULT];
8476 return (char_u *)NULL;
8478 #endif
8481 * Translate a string like "t_xx", "<t_xx>" or "<S-Tab>" to a key number.
8483 static int
8484 find_key_option(arg)
8485 char_u *arg;
8487 int key;
8488 int modifiers;
8491 * Don't use get_special_key_code() for t_xx, we don't want it to call
8492 * add_termcap_entry().
8494 if (arg[0] == 't' && arg[1] == '_' && arg[2] && arg[3])
8495 key = TERMCAP2KEY(arg[2], arg[3]);
8496 else
8498 --arg; /* put arg at the '<' */
8499 modifiers = 0;
8500 key = find_special_key(&arg, &modifiers, TRUE, TRUE);
8501 if (modifiers) /* can't handle modifiers here */
8502 key = 0;
8504 return key;
8508 * if 'all' == 0: show changed options
8509 * if 'all' == 1: show all normal options
8510 * if 'all' == 2: show all terminal options
8512 static void
8513 showoptions(all, opt_flags)
8514 int all;
8515 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
8517 struct vimoption *p;
8518 int col;
8519 int isterm;
8520 char_u *varp;
8521 struct vimoption **items;
8522 int item_count;
8523 int run;
8524 int row, rows;
8525 int cols;
8526 int i;
8527 int len;
8529 #define INC 20
8530 #define GAP 3
8532 items = (struct vimoption **)alloc((unsigned)(sizeof(struct vimoption *) *
8533 PARAM_COUNT));
8534 if (items == NULL)
8535 return;
8537 /* Highlight title */
8538 if (all == 2)
8539 MSG_PUTS_TITLE(_("\n--- Terminal codes ---"));
8540 else if (opt_flags & OPT_GLOBAL)
8541 MSG_PUTS_TITLE(_("\n--- Global option values ---"));
8542 else if (opt_flags & OPT_LOCAL)
8543 MSG_PUTS_TITLE(_("\n--- Local option values ---"));
8544 else
8545 MSG_PUTS_TITLE(_("\n--- Options ---"));
8548 * do the loop two times:
8549 * 1. display the short items
8550 * 2. display the long items (only strings and numbers)
8552 for (run = 1; run <= 2 && !got_int; ++run)
8555 * collect the items in items[]
8557 item_count = 0;
8558 for (p = &options[0]; p->fullname != NULL; p++)
8560 varp = NULL;
8561 isterm = istermoption(p);
8562 if (opt_flags != 0)
8564 if (p->indir != PV_NONE && !isterm)
8565 varp = get_varp_scope(p, opt_flags);
8567 else
8568 varp = get_varp(p);
8569 if (varp != NULL
8570 && ((all == 2 && isterm)
8571 || (all == 1 && !isterm)
8572 || (all == 0 && !optval_default(p, varp))))
8574 if (p->flags & P_BOOL)
8575 len = 1; /* a toggle option fits always */
8576 else
8578 option_value2string(p, opt_flags);
8579 len = (int)STRLEN(p->fullname) + vim_strsize(NameBuff) + 1;
8581 if ((len <= INC - GAP && run == 1) ||
8582 (len > INC - GAP && run == 2))
8583 items[item_count++] = p;
8588 * display the items
8590 if (run == 1)
8592 cols = (Columns + GAP - 3) / INC;
8593 if (cols == 0)
8594 cols = 1;
8595 rows = (item_count + cols - 1) / cols;
8597 else /* run == 2 */
8598 rows = item_count;
8599 for (row = 0; row < rows && !got_int; ++row)
8601 msg_putchar('\n'); /* go to next line */
8602 if (got_int) /* 'q' typed in more */
8603 break;
8604 col = 0;
8605 for (i = row; i < item_count; i += rows)
8607 msg_col = col; /* make columns */
8608 showoneopt(items[i], opt_flags);
8609 col += INC;
8611 out_flush();
8612 ui_breakcheck();
8615 vim_free(items);
8619 * Return TRUE if option "p" has its default value.
8621 static int
8622 optval_default(p, varp)
8623 struct vimoption *p;
8624 char_u *varp;
8626 int dvi;
8628 if (varp == NULL)
8629 return TRUE; /* hidden option is always at default */
8630 dvi = ((p->flags & P_VI_DEF) || p_cp) ? VI_DEFAULT : VIM_DEFAULT;
8631 if (p->flags & P_NUM)
8632 return (*(long *)varp == (long)(long_i)p->def_val[dvi]);
8633 if (p->flags & P_BOOL)
8634 /* the cast to long is required for Manx C, long_i is
8635 * needed for MSVC */
8636 return (*(int *)varp == (int)(long)(long_i)p->def_val[dvi]);
8637 /* P_STRING */
8638 return (STRCMP(*(char_u **)varp, p->def_val[dvi]) == 0);
8642 * showoneopt: show the value of one option
8643 * must not be called with a hidden option!
8645 static void
8646 showoneopt(p, opt_flags)
8647 struct vimoption *p;
8648 int opt_flags; /* OPT_LOCAL or OPT_GLOBAL */
8650 char_u *varp;
8651 int save_silent = silent_mode;
8653 silent_mode = FALSE;
8654 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
8656 varp = get_varp_scope(p, opt_flags);
8658 /* for 'modified' we also need to check if 'ff' or 'fenc' changed. */
8659 if ((p->flags & P_BOOL) && ((int *)varp == &curbuf->b_changed
8660 ? !curbufIsChanged() : !*(int *)varp))
8661 MSG_PUTS("no");
8662 else if ((p->flags & P_BOOL) && *(int *)varp < 0)
8663 MSG_PUTS("--");
8664 else
8665 MSG_PUTS(" ");
8666 MSG_PUTS(p->fullname);
8667 if (!(p->flags & P_BOOL))
8669 msg_putchar('=');
8670 /* put value string in NameBuff */
8671 option_value2string(p, opt_flags);
8672 msg_outtrans(NameBuff);
8675 silent_mode = save_silent;
8676 info_message = FALSE;
8680 * Write modified options as ":set" commands to a file.
8682 * There are three values for "opt_flags":
8683 * OPT_GLOBAL: Write global option values and fresh values of
8684 * buffer-local options (used for start of a session
8685 * file).
8686 * OPT_GLOBAL + OPT_LOCAL: Idem, add fresh values of window-local options for
8687 * curwin (used for a vimrc file).
8688 * OPT_LOCAL: Write buffer-local option values for curbuf, fresh
8689 * and local values for window-local options of
8690 * curwin. Local values are also written when at the
8691 * default value, because a modeline or autocommand
8692 * may have set them when doing ":edit file" and the
8693 * user has set them back at the default or fresh
8694 * value.
8695 * When "local_only" is TRUE, don't write fresh
8696 * values, only local values (for ":mkview").
8697 * (fresh value = value used for a new buffer or window for a local option).
8699 * Return FAIL on error, OK otherwise.
8702 makeset(fd, opt_flags, local_only)
8703 FILE *fd;
8704 int opt_flags;
8705 int local_only;
8707 struct vimoption *p;
8708 char_u *varp; /* currently used value */
8709 char_u *varp_fresh; /* local value */
8710 char_u *varp_local = NULL; /* fresh value */
8711 char *cmd;
8712 int round;
8713 int pri;
8716 * The options that don't have a default (terminal name, columns, lines)
8717 * are never written. Terminal options are also not written.
8718 * Do the loop over "options[]" twice: once for options with the
8719 * P_PRI_MKRC flag and once without.
8721 for (pri = 1; pri >= 0; --pri)
8723 for (p = &options[0]; !istermoption(p); p++)
8724 if (!(p->flags & P_NO_MKRC)
8725 && !istermoption(p)
8726 && ((pri == 1) == ((p->flags & P_PRI_MKRC) != 0)))
8728 /* skip global option when only doing locals */
8729 if (p->indir == PV_NONE && !(opt_flags & OPT_GLOBAL))
8730 continue;
8732 /* Do not store options like 'bufhidden' and 'syntax' in a vimrc
8733 * file, they are always buffer-specific. */
8734 if ((opt_flags & OPT_GLOBAL) && (p->flags & P_NOGLOB))
8735 continue;
8737 /* Global values are only written when not at the default value. */
8738 varp = get_varp_scope(p, opt_flags);
8739 if ((opt_flags & OPT_GLOBAL) && optval_default(p, varp))
8740 continue;
8742 round = 2;
8743 if (p->indir != PV_NONE)
8745 if (p->var == VAR_WIN)
8747 /* skip window-local option when only doing globals */
8748 if (!(opt_flags & OPT_LOCAL))
8749 continue;
8750 /* When fresh value of window-local option is not at the
8751 * default, need to write it too. */
8752 if (!(opt_flags & OPT_GLOBAL) && !local_only)
8754 varp_fresh = get_varp_scope(p, OPT_GLOBAL);
8755 if (!optval_default(p, varp_fresh))
8757 round = 1;
8758 varp_local = varp;
8759 varp = varp_fresh;
8765 /* Round 1: fresh value for window-local options.
8766 * Round 2: other values */
8767 for ( ; round <= 2; varp = varp_local, ++round)
8769 if (round == 1 || (opt_flags & OPT_GLOBAL))
8770 cmd = "set";
8771 else
8772 cmd = "setlocal";
8774 if (p->flags & P_BOOL)
8776 if (put_setbool(fd, cmd, p->fullname, *(int *)varp) == FAIL)
8777 return FAIL;
8779 else if (p->flags & P_NUM)
8781 if (put_setnum(fd, cmd, p->fullname, (long *)varp) == FAIL)
8782 return FAIL;
8784 else /* P_STRING */
8786 #if defined(FEAT_SYN_HL) || defined(FEAT_AUTOCMD)
8787 int do_endif = FALSE;
8789 /* Don't set 'syntax' and 'filetype' again if the value is
8790 * already right, avoids reloading the syntax file. */
8791 if (
8792 # if defined(FEAT_SYN_HL)
8793 p->indir == PV_SYN
8794 # if defined(FEAT_AUTOCMD)
8796 # endif
8797 # endif
8798 # if defined(FEAT_AUTOCMD)
8799 p->indir == PV_FT
8800 # endif
8803 if (fprintf(fd, "if &%s != '%s'", p->fullname,
8804 *(char_u **)(varp)) < 0
8805 || put_eol(fd) < 0)
8806 return FAIL;
8807 do_endif = TRUE;
8809 #endif
8810 if (put_setstring(fd, cmd, p->fullname, (char_u **)varp,
8811 (p->flags & P_EXPAND) != 0) == FAIL)
8812 return FAIL;
8813 #if defined(FEAT_SYN_HL) || defined(FEAT_AUTOCMD)
8814 if (do_endif)
8816 if (put_line(fd, "endif") == FAIL)
8817 return FAIL;
8819 #endif
8824 return OK;
8827 #if defined(FEAT_FOLDING) || defined(PROTO)
8829 * Generate set commands for the local fold options only. Used when
8830 * 'sessionoptions' or 'viewoptions' contains "folds" but not "options".
8833 makefoldset(fd)
8834 FILE *fd;
8836 if (put_setstring(fd, "setlocal", "fdm", &curwin->w_p_fdm, FALSE) == FAIL
8837 # ifdef FEAT_EVAL
8838 || put_setstring(fd, "setlocal", "fde", &curwin->w_p_fde, FALSE)
8839 == FAIL
8840 # endif
8841 || put_setstring(fd, "setlocal", "fmr", &curwin->w_p_fmr, FALSE)
8842 == FAIL
8843 || put_setstring(fd, "setlocal", "fdi", &curwin->w_p_fdi, FALSE)
8844 == FAIL
8845 || put_setnum(fd, "setlocal", "fdl", &curwin->w_p_fdl) == FAIL
8846 || put_setnum(fd, "setlocal", "fml", &curwin->w_p_fml) == FAIL
8847 || put_setnum(fd, "setlocal", "fdn", &curwin->w_p_fdn) == FAIL
8848 || put_setbool(fd, "setlocal", "fen", curwin->w_p_fen) == FAIL
8850 return FAIL;
8852 return OK;
8854 #endif
8856 static int
8857 put_setstring(fd, cmd, name, valuep, expand)
8858 FILE *fd;
8859 char *cmd;
8860 char *name;
8861 char_u **valuep;
8862 int expand;
8864 char_u *s;
8865 char_u buf[MAXPATHL];
8867 if (fprintf(fd, "%s %s=", cmd, name) < 0)
8868 return FAIL;
8869 if (*valuep != NULL)
8871 /* Output 'pastetoggle' as key names. For other
8872 * options some characters have to be escaped with
8873 * CTRL-V or backslash */
8874 if (valuep == &p_pt)
8876 s = *valuep;
8877 while (*s != NUL)
8878 if (put_escstr(fd, str2special(&s, FALSE), 2) == FAIL)
8879 return FAIL;
8881 else if (expand)
8883 home_replace(NULL, *valuep, buf, MAXPATHL, FALSE);
8884 if (put_escstr(fd, buf, 2) == FAIL)
8885 return FAIL;
8887 else if (put_escstr(fd, *valuep, 2) == FAIL)
8888 return FAIL;
8890 if (put_eol(fd) < 0)
8891 return FAIL;
8892 return OK;
8895 static int
8896 put_setnum(fd, cmd, name, valuep)
8897 FILE *fd;
8898 char *cmd;
8899 char *name;
8900 long *valuep;
8902 long wc;
8904 if (fprintf(fd, "%s %s=", cmd, name) < 0)
8905 return FAIL;
8906 if (wc_use_keyname((char_u *)valuep, &wc))
8908 /* print 'wildchar' and 'wildcharm' as a key name */
8909 if (fputs((char *)get_special_key_name((int)wc, 0), fd) < 0)
8910 return FAIL;
8912 else if (fprintf(fd, "%ld", *valuep) < 0)
8913 return FAIL;
8914 if (put_eol(fd) < 0)
8915 return FAIL;
8916 return OK;
8919 static int
8920 put_setbool(fd, cmd, name, value)
8921 FILE *fd;
8922 char *cmd;
8923 char *name;
8924 int value;
8926 if (value < 0) /* global/local option using global value */
8927 return OK;
8928 if (fprintf(fd, "%s %s%s", cmd, value ? "" : "no", name) < 0
8929 || put_eol(fd) < 0)
8930 return FAIL;
8931 return OK;
8935 * Clear all the terminal options.
8936 * If the option has been allocated, free the memory.
8937 * Terminal options are never hidden or indirect.
8939 void
8940 clear_termoptions()
8943 * Reset a few things before clearing the old options. This may cause
8944 * outputting a few things that the terminal doesn't understand, but the
8945 * screen will be cleared later, so this is OK.
8947 #ifdef FEAT_MOUSE_TTY
8948 mch_setmouse(FALSE); /* switch mouse off */
8949 #endif
8950 #ifdef FEAT_TITLE
8951 mch_restore_title(3); /* restore window titles */
8952 #endif
8953 #if defined(FEAT_XCLIPBOARD) && defined(FEAT_GUI)
8954 /* When starting the GUI close the display opened for the clipboard.
8955 * After restoring the title, because that will need the display. */
8956 if (gui.starting)
8957 clear_xterm_clip();
8958 #endif
8959 #ifdef WIN3264
8961 * Check if this is allowed now.
8963 if (can_end_termcap_mode(FALSE) == TRUE)
8964 #endif
8965 stoptermcap(); /* stop termcap mode */
8967 free_termoptions();
8970 void
8971 free_termoptions()
8973 struct vimoption *p;
8975 for (p = &options[0]; p->fullname != NULL; p++)
8976 if (istermoption(p))
8978 if (p->flags & P_ALLOCED)
8979 free_string_option(*(char_u **)(p->var));
8980 if (p->flags & P_DEF_ALLOCED)
8981 free_string_option(p->def_val[VI_DEFAULT]);
8982 *(char_u **)(p->var) = empty_option;
8983 p->def_val[VI_DEFAULT] = empty_option;
8984 p->flags &= ~(P_ALLOCED|P_DEF_ALLOCED);
8986 clear_termcodes();
8990 * Free the string for one term option, if it was allocated.
8991 * Set the string to empty_option and clear allocated flag.
8992 * "var" points to the option value.
8994 void
8995 free_one_termoption(var)
8996 char_u *var;
8998 struct vimoption *p;
9000 for (p = &options[0]; p->fullname != NULL; p++)
9001 if (p->var == var)
9003 if (p->flags & P_ALLOCED)
9004 free_string_option(*(char_u **)(p->var));
9005 *(char_u **)(p->var) = empty_option;
9006 p->flags &= ~P_ALLOCED;
9007 break;
9012 * Set the terminal option defaults to the current value.
9013 * Used after setting the terminal name.
9015 void
9016 set_term_defaults()
9018 struct vimoption *p;
9020 for (p = &options[0]; p->fullname != NULL; p++)
9022 if (istermoption(p) && p->def_val[VI_DEFAULT] != *(char_u **)(p->var))
9024 if (p->flags & P_DEF_ALLOCED)
9026 free_string_option(p->def_val[VI_DEFAULT]);
9027 p->flags &= ~P_DEF_ALLOCED;
9029 p->def_val[VI_DEFAULT] = *(char_u **)(p->var);
9030 if (p->flags & P_ALLOCED)
9032 p->flags |= P_DEF_ALLOCED;
9033 p->flags &= ~P_ALLOCED; /* don't free the value now */
9040 * return TRUE if 'p' starts with 't_'
9042 static int
9043 istermoption(p)
9044 struct vimoption *p;
9046 return (p->fullname[0] == 't' && p->fullname[1] == '_');
9050 * Compute columns for ruler and shown command. 'sc_col' is also used to
9051 * decide what the maximum length of a message on the status line can be.
9052 * If there is a status line for the last window, 'sc_col' is independent
9053 * of 'ru_col'.
9056 #define COL_RULER 17 /* columns needed by standard ruler */
9058 void
9059 comp_col()
9061 #if defined(FEAT_CMDL_INFO) && defined(FEAT_WINDOWS)
9062 int last_has_status = (p_ls == 2 || (p_ls == 1 && firstwin != lastwin));
9064 sc_col = 0;
9065 ru_col = 0;
9066 if (p_ru)
9068 #ifdef FEAT_STL_OPT
9069 ru_col = (ru_wid ? ru_wid : COL_RULER) + 1;
9070 #else
9071 ru_col = COL_RULER + 1;
9072 #endif
9073 /* no last status line, adjust sc_col */
9074 if (!last_has_status)
9075 sc_col = ru_col;
9077 if (p_sc)
9079 sc_col += SHOWCMD_COLS;
9080 if (!p_ru || last_has_status) /* no need for separating space */
9081 ++sc_col;
9083 sc_col = Columns - sc_col;
9084 ru_col = Columns - ru_col;
9085 if (sc_col <= 0) /* screen too narrow, will become a mess */
9086 sc_col = 1;
9087 if (ru_col <= 0)
9088 ru_col = 1;
9089 #else
9090 sc_col = Columns;
9091 ru_col = Columns;
9092 #endif
9096 * Get pointer to option variable, depending on local or global scope.
9098 static char_u *
9099 get_varp_scope(p, opt_flags)
9100 struct vimoption *p;
9101 int opt_flags;
9103 if ((opt_flags & OPT_GLOBAL) && p->indir != PV_NONE)
9105 if (p->var == VAR_WIN)
9106 return (char_u *)GLOBAL_WO(get_varp(p));
9107 return p->var;
9109 if ((opt_flags & OPT_LOCAL) && ((int)p->indir & PV_BOTH))
9111 switch ((int)p->indir)
9113 #ifdef FEAT_QUICKFIX
9114 case PV_EFM: return (char_u *)&(curbuf->b_p_efm);
9115 case PV_GP: return (char_u *)&(curbuf->b_p_gp);
9116 case PV_MP: return (char_u *)&(curbuf->b_p_mp);
9117 #endif
9118 case PV_EP: return (char_u *)&(curbuf->b_p_ep);
9119 case PV_KP: return (char_u *)&(curbuf->b_p_kp);
9120 case PV_PATH: return (char_u *)&(curbuf->b_p_path);
9121 case PV_AR: return (char_u *)&(curbuf->b_p_ar);
9122 case PV_TAGS: return (char_u *)&(curbuf->b_p_tags);
9123 #ifdef FEAT_FIND_ID
9124 case PV_DEF: return (char_u *)&(curbuf->b_p_def);
9125 case PV_INC: return (char_u *)&(curbuf->b_p_inc);
9126 #endif
9127 #ifdef FEAT_INS_EXPAND
9128 case PV_DICT: return (char_u *)&(curbuf->b_p_dict);
9129 case PV_TSR: return (char_u *)&(curbuf->b_p_tsr);
9130 #endif
9131 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9132 case PV_BEXPR: return (char_u *)&(curbuf->b_p_bexpr);
9133 #endif
9134 #ifdef FEAT_STL_OPT
9135 case PV_STL: return (char_u *)&(curwin->w_p_stl);
9136 #endif
9138 return NULL; /* "cannot happen" */
9140 return get_varp(p);
9144 * Get pointer to option variable.
9146 static char_u *
9147 get_varp(p)
9148 struct vimoption *p;
9150 /* hidden option, always return NULL */
9151 if (p->var == NULL)
9152 return NULL;
9154 switch ((int)p->indir)
9156 case PV_NONE: return p->var;
9158 /* global option with local value: use local value if it's been set */
9159 case PV_EP: return *curbuf->b_p_ep != NUL
9160 ? (char_u *)&curbuf->b_p_ep : p->var;
9161 case PV_KP: return *curbuf->b_p_kp != NUL
9162 ? (char_u *)&curbuf->b_p_kp : p->var;
9163 case PV_PATH: return *curbuf->b_p_path != NUL
9164 ? (char_u *)&(curbuf->b_p_path) : p->var;
9165 case PV_AR: return curbuf->b_p_ar >= 0
9166 ? (char_u *)&(curbuf->b_p_ar) : p->var;
9167 case PV_TAGS: return *curbuf->b_p_tags != NUL
9168 ? (char_u *)&(curbuf->b_p_tags) : p->var;
9169 #ifdef FEAT_FIND_ID
9170 case PV_DEF: return *curbuf->b_p_def != NUL
9171 ? (char_u *)&(curbuf->b_p_def) : p->var;
9172 case PV_INC: return *curbuf->b_p_inc != NUL
9173 ? (char_u *)&(curbuf->b_p_inc) : p->var;
9174 #endif
9175 #ifdef FEAT_INS_EXPAND
9176 case PV_DICT: return *curbuf->b_p_dict != NUL
9177 ? (char_u *)&(curbuf->b_p_dict) : p->var;
9178 case PV_TSR: return *curbuf->b_p_tsr != NUL
9179 ? (char_u *)&(curbuf->b_p_tsr) : p->var;
9180 #endif
9181 #ifdef FEAT_QUICKFIX
9182 case PV_EFM: return *curbuf->b_p_efm != NUL
9183 ? (char_u *)&(curbuf->b_p_efm) : p->var;
9184 case PV_GP: return *curbuf->b_p_gp != NUL
9185 ? (char_u *)&(curbuf->b_p_gp) : p->var;
9186 case PV_MP: return *curbuf->b_p_mp != NUL
9187 ? (char_u *)&(curbuf->b_p_mp) : p->var;
9188 #endif
9189 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9190 case PV_BEXPR: return *curbuf->b_p_bexpr != NUL
9191 ? (char_u *)&(curbuf->b_p_bexpr) : p->var;
9192 #endif
9193 #ifdef FEAT_STL_OPT
9194 case PV_STL: return *curwin->w_p_stl != NUL
9195 ? (char_u *)&(curwin->w_p_stl) : p->var;
9196 #endif
9198 #ifdef FEAT_ARABIC
9199 case PV_ARAB: return (char_u *)&(curwin->w_p_arab);
9200 #endif
9201 case PV_LIST: return (char_u *)&(curwin->w_p_list);
9202 #ifdef FEAT_SPELL
9203 case PV_SPELL: return (char_u *)&(curwin->w_p_spell);
9204 #endif
9205 #ifdef FEAT_SYN_HL
9206 case PV_CUC: return (char_u *)&(curwin->w_p_cuc);
9207 case PV_CUL: return (char_u *)&(curwin->w_p_cul);
9208 #endif
9209 #ifdef FEAT_DIFF
9210 case PV_DIFF: return (char_u *)&(curwin->w_p_diff);
9211 #endif
9212 #ifdef FEAT_FOLDING
9213 case PV_FDC: return (char_u *)&(curwin->w_p_fdc);
9214 case PV_FEN: return (char_u *)&(curwin->w_p_fen);
9215 case PV_FDI: return (char_u *)&(curwin->w_p_fdi);
9216 case PV_FDL: return (char_u *)&(curwin->w_p_fdl);
9217 case PV_FDM: return (char_u *)&(curwin->w_p_fdm);
9218 case PV_FML: return (char_u *)&(curwin->w_p_fml);
9219 case PV_FDN: return (char_u *)&(curwin->w_p_fdn);
9220 # ifdef FEAT_EVAL
9221 case PV_FDE: return (char_u *)&(curwin->w_p_fde);
9222 case PV_FDT: return (char_u *)&(curwin->w_p_fdt);
9223 # endif
9224 case PV_FMR: return (char_u *)&(curwin->w_p_fmr);
9225 #endif
9226 case PV_NU: return (char_u *)&(curwin->w_p_nu);
9227 #ifdef FEAT_LINEBREAK
9228 case PV_NUW: return (char_u *)&(curwin->w_p_nuw);
9229 #endif
9230 #ifdef FEAT_WINDOWS
9231 case PV_WFH: return (char_u *)&(curwin->w_p_wfh);
9232 #endif
9233 #ifdef FEAT_VERTSPLIT
9234 case PV_WFW: return (char_u *)&(curwin->w_p_wfw);
9235 #endif
9236 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
9237 case PV_PVW: return (char_u *)&(curwin->w_p_pvw);
9238 #endif
9239 #ifdef FEAT_RIGHTLEFT
9240 case PV_RL: return (char_u *)&(curwin->w_p_rl);
9241 case PV_RLC: return (char_u *)&(curwin->w_p_rlc);
9242 #endif
9243 case PV_SCROLL: return (char_u *)&(curwin->w_p_scr);
9244 case PV_WRAP: return (char_u *)&(curwin->w_p_wrap);
9245 #ifdef FEAT_LINEBREAK
9246 case PV_LBR: return (char_u *)&(curwin->w_p_lbr);
9247 #endif
9248 #ifdef FEAT_SCROLLBIND
9249 case PV_SCBIND: return (char_u *)&(curwin->w_p_scb);
9250 #endif
9252 case PV_AI: return (char_u *)&(curbuf->b_p_ai);
9253 case PV_BIN: return (char_u *)&(curbuf->b_p_bin);
9254 #ifdef FEAT_MBYTE
9255 case PV_BOMB: return (char_u *)&(curbuf->b_p_bomb);
9256 #endif
9257 #if defined(FEAT_QUICKFIX)
9258 case PV_BH: return (char_u *)&(curbuf->b_p_bh);
9259 case PV_BT: return (char_u *)&(curbuf->b_p_bt);
9260 #endif
9261 case PV_BL: return (char_u *)&(curbuf->b_p_bl);
9262 case PV_CI: return (char_u *)&(curbuf->b_p_ci);
9263 #ifdef FEAT_CINDENT
9264 case PV_CIN: return (char_u *)&(curbuf->b_p_cin);
9265 case PV_CINK: return (char_u *)&(curbuf->b_p_cink);
9266 case PV_CINO: return (char_u *)&(curbuf->b_p_cino);
9267 #endif
9268 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
9269 case PV_CINW: return (char_u *)&(curbuf->b_p_cinw);
9270 #endif
9271 #ifdef FEAT_COMMENTS
9272 case PV_COM: return (char_u *)&(curbuf->b_p_com);
9273 #endif
9274 #ifdef FEAT_FOLDING
9275 case PV_CMS: return (char_u *)&(curbuf->b_p_cms);
9276 #endif
9277 #ifdef FEAT_INS_EXPAND
9278 case PV_CPT: return (char_u *)&(curbuf->b_p_cpt);
9279 #endif
9280 #ifdef FEAT_COMPL_FUNC
9281 case PV_CFU: return (char_u *)&(curbuf->b_p_cfu);
9282 case PV_OFU: return (char_u *)&(curbuf->b_p_ofu);
9283 case PV_TFU: return (char_u *)&(curbuf->b_p_tfu);
9284 #endif
9285 case PV_EOL: return (char_u *)&(curbuf->b_p_eol);
9286 case PV_ET: return (char_u *)&(curbuf->b_p_et);
9287 #ifdef FEAT_MBYTE
9288 case PV_FENC: return (char_u *)&(curbuf->b_p_fenc);
9289 #endif
9290 case PV_FF: return (char_u *)&(curbuf->b_p_ff);
9291 #ifdef FEAT_AUTOCMD
9292 case PV_FT: return (char_u *)&(curbuf->b_p_ft);
9293 #endif
9294 case PV_FO: return (char_u *)&(curbuf->b_p_fo);
9295 case PV_FLP: return (char_u *)&(curbuf->b_p_flp);
9296 case PV_IMI: return (char_u *)&(curbuf->b_p_iminsert);
9297 case PV_IMS: return (char_u *)&(curbuf->b_p_imsearch);
9298 case PV_INF: return (char_u *)&(curbuf->b_p_inf);
9299 case PV_ISK: return (char_u *)&(curbuf->b_p_isk);
9300 #ifdef FEAT_FIND_ID
9301 # ifdef FEAT_EVAL
9302 case PV_INEX: return (char_u *)&(curbuf->b_p_inex);
9303 # endif
9304 #endif
9305 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
9306 case PV_INDE: return (char_u *)&(curbuf->b_p_inde);
9307 case PV_INDK: return (char_u *)&(curbuf->b_p_indk);
9308 #endif
9309 #ifdef FEAT_EVAL
9310 case PV_FEX: return (char_u *)&(curbuf->b_p_fex);
9311 #endif
9312 #ifdef FEAT_CRYPT
9313 case PV_KEY: return (char_u *)&(curbuf->b_p_key);
9314 #endif
9315 #ifdef FEAT_LISP
9316 case PV_LISP: return (char_u *)&(curbuf->b_p_lisp);
9317 #endif
9318 case PV_ML: return (char_u *)&(curbuf->b_p_ml);
9319 case PV_MPS: return (char_u *)&(curbuf->b_p_mps);
9320 case PV_MA: return (char_u *)&(curbuf->b_p_ma);
9321 case PV_MOD: return (char_u *)&(curbuf->b_changed);
9322 case PV_NF: return (char_u *)&(curbuf->b_p_nf);
9323 #ifdef FEAT_OSFILETYPE
9324 case PV_OFT: return (char_u *)&(curbuf->b_p_oft);
9325 #endif
9326 case PV_PI: return (char_u *)&(curbuf->b_p_pi);
9327 #ifdef FEAT_TEXTOBJ
9328 case PV_QE: return (char_u *)&(curbuf->b_p_qe);
9329 #endif
9330 case PV_RO: return (char_u *)&(curbuf->b_p_ro);
9331 #ifdef FEAT_SMARTINDENT
9332 case PV_SI: return (char_u *)&(curbuf->b_p_si);
9333 #endif
9334 #ifndef SHORT_FNAME
9335 case PV_SN: return (char_u *)&(curbuf->b_p_sn);
9336 #endif
9337 case PV_STS: return (char_u *)&(curbuf->b_p_sts);
9338 #ifdef FEAT_SEARCHPATH
9339 case PV_SUA: return (char_u *)&(curbuf->b_p_sua);
9340 #endif
9341 case PV_SWF: return (char_u *)&(curbuf->b_p_swf);
9342 #ifdef FEAT_SYN_HL
9343 case PV_SMC: return (char_u *)&(curbuf->b_p_smc);
9344 case PV_SYN: return (char_u *)&(curbuf->b_p_syn);
9345 #endif
9346 #ifdef FEAT_SPELL
9347 case PV_SPC: return (char_u *)&(curbuf->b_p_spc);
9348 case PV_SPF: return (char_u *)&(curbuf->b_p_spf);
9349 case PV_SPL: return (char_u *)&(curbuf->b_p_spl);
9350 #endif
9351 case PV_SW: return (char_u *)&(curbuf->b_p_sw);
9352 case PV_TS: return (char_u *)&(curbuf->b_p_ts);
9353 case PV_TW: return (char_u *)&(curbuf->b_p_tw);
9354 case PV_TX: return (char_u *)&(curbuf->b_p_tx);
9355 case PV_WM: return (char_u *)&(curbuf->b_p_wm);
9356 #ifdef FEAT_KEYMAP
9357 case PV_KMAP: return (char_u *)&(curbuf->b_p_keymap);
9358 #endif
9359 default: EMSG(_("E356: get_varp ERROR"));
9361 /* always return a valid pointer to avoid a crash! */
9362 return (char_u *)&(curbuf->b_p_wm);
9366 * Get the value of 'equalprg', either the buffer-local one or the global one.
9368 char_u *
9369 get_equalprg()
9371 if (*curbuf->b_p_ep == NUL)
9372 return p_ep;
9373 return curbuf->b_p_ep;
9376 #if defined(FEAT_WINDOWS) || defined(PROTO)
9378 * Copy options from one window to another.
9379 * Used when splitting a window.
9381 void
9382 win_copy_options(wp_from, wp_to)
9383 win_T *wp_from;
9384 win_T *wp_to;
9386 copy_winopt(&wp_from->w_onebuf_opt, &wp_to->w_onebuf_opt);
9387 copy_winopt(&wp_from->w_allbuf_opt, &wp_to->w_allbuf_opt);
9388 # ifdef FEAT_RIGHTLEFT
9389 # ifdef FEAT_FKMAP
9390 /* Is this right? */
9391 wp_to->w_farsi = wp_from->w_farsi;
9392 # endif
9393 # endif
9395 #endif
9398 * Copy the options from one winopt_T to another.
9399 * Doesn't free the old option values in "to", use clear_winopt() for that.
9400 * The 'scroll' option is not copied, because it depends on the window height.
9401 * The 'previewwindow' option is reset, there can be only one preview window.
9403 void
9404 copy_winopt(from, to)
9405 winopt_T *from;
9406 winopt_T *to;
9408 #ifdef FEAT_ARABIC
9409 to->wo_arab = from->wo_arab;
9410 #endif
9411 to->wo_list = from->wo_list;
9412 to->wo_nu = from->wo_nu;
9413 #ifdef FEAT_LINEBREAK
9414 to->wo_nuw = from->wo_nuw;
9415 #endif
9416 #ifdef FEAT_RIGHTLEFT
9417 to->wo_rl = from->wo_rl;
9418 to->wo_rlc = vim_strsave(from->wo_rlc);
9419 #endif
9420 #ifdef FEAT_STL_OPT
9421 to->wo_stl = vim_strsave(from->wo_stl);
9422 #endif
9423 to->wo_wrap = from->wo_wrap;
9424 #ifdef FEAT_LINEBREAK
9425 to->wo_lbr = from->wo_lbr;
9426 #endif
9427 #ifdef FEAT_SCROLLBIND
9428 to->wo_scb = from->wo_scb;
9429 #endif
9430 #ifdef FEAT_SPELL
9431 to->wo_spell = from->wo_spell;
9432 #endif
9433 #ifdef FEAT_SYN_HL
9434 to->wo_cuc = from->wo_cuc;
9435 to->wo_cul = from->wo_cul;
9436 #endif
9437 #ifdef FEAT_DIFF
9438 to->wo_diff = from->wo_diff;
9439 #endif
9440 #ifdef FEAT_FOLDING
9441 to->wo_fdc = from->wo_fdc;
9442 to->wo_fen = from->wo_fen;
9443 to->wo_fdi = vim_strsave(from->wo_fdi);
9444 to->wo_fml = from->wo_fml;
9445 to->wo_fdl = from->wo_fdl;
9446 to->wo_fdm = vim_strsave(from->wo_fdm);
9447 to->wo_fdn = from->wo_fdn;
9448 # ifdef FEAT_EVAL
9449 to->wo_fde = vim_strsave(from->wo_fde);
9450 to->wo_fdt = vim_strsave(from->wo_fdt);
9451 # endif
9452 to->wo_fmr = vim_strsave(from->wo_fmr);
9453 #endif
9454 check_winopt(to); /* don't want NULL pointers */
9458 * Check string options in a window for a NULL value.
9460 void
9461 check_win_options(win)
9462 win_T *win;
9464 check_winopt(&win->w_onebuf_opt);
9465 check_winopt(&win->w_allbuf_opt);
9469 * Check for NULL pointers in a winopt_T and replace them with empty_option.
9471 void
9472 check_winopt(wop)
9473 winopt_T *wop UNUSED;
9475 #ifdef FEAT_FOLDING
9476 check_string_option(&wop->wo_fdi);
9477 check_string_option(&wop->wo_fdm);
9478 # ifdef FEAT_EVAL
9479 check_string_option(&wop->wo_fde);
9480 check_string_option(&wop->wo_fdt);
9481 # endif
9482 check_string_option(&wop->wo_fmr);
9483 #endif
9484 #ifdef FEAT_RIGHTLEFT
9485 check_string_option(&wop->wo_rlc);
9486 #endif
9487 #ifdef FEAT_STL_OPT
9488 check_string_option(&wop->wo_stl);
9489 #endif
9493 * Free the allocated memory inside a winopt_T.
9495 void
9496 clear_winopt(wop)
9497 winopt_T *wop UNUSED;
9499 #ifdef FEAT_FOLDING
9500 clear_string_option(&wop->wo_fdi);
9501 clear_string_option(&wop->wo_fdm);
9502 # ifdef FEAT_EVAL
9503 clear_string_option(&wop->wo_fde);
9504 clear_string_option(&wop->wo_fdt);
9505 # endif
9506 clear_string_option(&wop->wo_fmr);
9507 #endif
9508 #ifdef FEAT_RIGHTLEFT
9509 clear_string_option(&wop->wo_rlc);
9510 #endif
9511 #ifdef FEAT_STL_OPT
9512 clear_string_option(&wop->wo_stl);
9513 #endif
9517 * Copy global option values to local options for one buffer.
9518 * Used when creating a new buffer and sometimes when entering a buffer.
9519 * flags:
9520 * BCO_ENTER We will enter the buf buffer.
9521 * BCO_ALWAYS Always copy the options, but only set b_p_initialized when
9522 * appropriate.
9523 * BCO_NOHELP Don't copy the values to a help buffer.
9525 void
9526 buf_copy_options(buf, flags)
9527 buf_T *buf;
9528 int flags;
9530 int should_copy = TRUE;
9531 char_u *save_p_isk = NULL; /* init for GCC */
9532 int dont_do_help;
9533 int did_isk = FALSE;
9536 * Don't do anything of the buffer is invalid.
9538 if (buf == NULL || !buf_valid(buf))
9539 return;
9542 * Skip this when the option defaults have not been set yet. Happens when
9543 * main() allocates the first buffer.
9545 if (p_cpo != NULL)
9548 * Always copy when entering and 'cpo' contains 'S'.
9549 * Don't copy when already initialized.
9550 * Don't copy when 'cpo' contains 's' and not entering.
9551 * 'S' BCO_ENTER initialized 's' should_copy
9552 * yes yes X X TRUE
9553 * yes no yes X FALSE
9554 * no X yes X FALSE
9555 * X no no yes FALSE
9556 * X no no no TRUE
9557 * no yes no X TRUE
9559 if ((vim_strchr(p_cpo, CPO_BUFOPTGLOB) == NULL || !(flags & BCO_ENTER))
9560 && (buf->b_p_initialized
9561 || (!(flags & BCO_ENTER)
9562 && vim_strchr(p_cpo, CPO_BUFOPT) != NULL)))
9563 should_copy = FALSE;
9565 if (should_copy || (flags & BCO_ALWAYS))
9567 /* Don't copy the options specific to a help buffer when
9568 * BCO_NOHELP is given or the options were initialized already
9569 * (jumping back to a help file with CTRL-T or CTRL-O) */
9570 dont_do_help = ((flags & BCO_NOHELP) && buf->b_help)
9571 || buf->b_p_initialized;
9572 if (dont_do_help) /* don't free b_p_isk */
9574 save_p_isk = buf->b_p_isk;
9575 buf->b_p_isk = NULL;
9578 * Always free the allocated strings.
9579 * If not already initialized, set 'readonly' and copy 'fileformat'.
9581 if (!buf->b_p_initialized)
9583 free_buf_options(buf, TRUE);
9584 buf->b_p_ro = FALSE; /* don't copy readonly */
9585 buf->b_p_tx = p_tx;
9586 #ifdef FEAT_MBYTE
9587 buf->b_p_fenc = vim_strsave(p_fenc);
9588 #endif
9589 buf->b_p_ff = vim_strsave(p_ff);
9590 #if defined(FEAT_QUICKFIX)
9591 buf->b_p_bh = empty_option;
9592 buf->b_p_bt = empty_option;
9593 #endif
9595 else
9596 free_buf_options(buf, FALSE);
9598 buf->b_p_ai = p_ai;
9599 buf->b_p_ai_nopaste = p_ai_nopaste;
9600 buf->b_p_sw = p_sw;
9601 buf->b_p_tw = p_tw;
9602 buf->b_p_tw_nopaste = p_tw_nopaste;
9603 buf->b_p_tw_nobin = p_tw_nobin;
9604 buf->b_p_wm = p_wm;
9605 buf->b_p_wm_nopaste = p_wm_nopaste;
9606 buf->b_p_wm_nobin = p_wm_nobin;
9607 buf->b_p_bin = p_bin;
9608 #ifdef FEAT_MBYTE
9609 buf->b_p_bomb = p_bomb;
9610 #endif
9611 buf->b_p_et = p_et;
9612 buf->b_p_et_nobin = p_et_nobin;
9613 buf->b_p_ml = p_ml;
9614 buf->b_p_ml_nobin = p_ml_nobin;
9615 buf->b_p_inf = p_inf;
9616 buf->b_p_swf = p_swf;
9617 #ifdef FEAT_INS_EXPAND
9618 buf->b_p_cpt = vim_strsave(p_cpt);
9619 #endif
9620 #ifdef FEAT_COMPL_FUNC
9621 buf->b_p_cfu = vim_strsave(p_cfu);
9622 buf->b_p_ofu = vim_strsave(p_ofu);
9623 buf->b_p_tfu = vim_strsave(p_tfu);
9624 #endif
9625 buf->b_p_sts = p_sts;
9626 buf->b_p_sts_nopaste = p_sts_nopaste;
9627 #ifndef SHORT_FNAME
9628 buf->b_p_sn = p_sn;
9629 #endif
9630 #ifdef FEAT_COMMENTS
9631 buf->b_p_com = vim_strsave(p_com);
9632 #endif
9633 #ifdef FEAT_FOLDING
9634 buf->b_p_cms = vim_strsave(p_cms);
9635 #endif
9636 buf->b_p_fo = vim_strsave(p_fo);
9637 buf->b_p_flp = vim_strsave(p_flp);
9638 buf->b_p_nf = vim_strsave(p_nf);
9639 buf->b_p_mps = vim_strsave(p_mps);
9640 #ifdef FEAT_SMARTINDENT
9641 buf->b_p_si = p_si;
9642 #endif
9643 buf->b_p_ci = p_ci;
9644 #ifdef FEAT_CINDENT
9645 buf->b_p_cin = p_cin;
9646 buf->b_p_cink = vim_strsave(p_cink);
9647 buf->b_p_cino = vim_strsave(p_cino);
9648 #endif
9649 #ifdef FEAT_AUTOCMD
9650 /* Don't copy 'filetype', it must be detected */
9651 buf->b_p_ft = empty_option;
9652 #endif
9653 #ifdef FEAT_OSFILETYPE
9654 buf->b_p_oft = vim_strsave(p_oft);
9655 #endif
9656 buf->b_p_pi = p_pi;
9657 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
9658 buf->b_p_cinw = vim_strsave(p_cinw);
9659 #endif
9660 #ifdef FEAT_LISP
9661 buf->b_p_lisp = p_lisp;
9662 #endif
9663 #ifdef FEAT_SYN_HL
9664 /* Don't copy 'syntax', it must be set */
9665 buf->b_p_syn = empty_option;
9666 buf->b_p_smc = p_smc;
9667 #endif
9668 #ifdef FEAT_SPELL
9669 buf->b_p_spc = vim_strsave(p_spc);
9670 (void)compile_cap_prog(buf);
9671 buf->b_p_spf = vim_strsave(p_spf);
9672 buf->b_p_spl = vim_strsave(p_spl);
9673 #endif
9674 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
9675 buf->b_p_inde = vim_strsave(p_inde);
9676 buf->b_p_indk = vim_strsave(p_indk);
9677 #endif
9678 #if defined(FEAT_EVAL)
9679 buf->b_p_fex = vim_strsave(p_fex);
9680 #endif
9681 #ifdef FEAT_CRYPT
9682 buf->b_p_key = vim_strsave(p_key);
9683 #endif
9684 #ifdef FEAT_SEARCHPATH
9685 buf->b_p_sua = vim_strsave(p_sua);
9686 #endif
9687 #ifdef FEAT_KEYMAP
9688 buf->b_p_keymap = vim_strsave(p_keymap);
9689 buf->b_kmap_state |= KEYMAP_INIT;
9690 #endif
9691 /* This isn't really an option, but copying the langmap and IME
9692 * state from the current buffer is better than resetting it. */
9693 buf->b_p_iminsert = p_iminsert;
9694 buf->b_p_imsearch = p_imsearch;
9696 /* options that are normally global but also have a local value
9697 * are not copied, start using the global value */
9698 buf->b_p_ar = -1;
9699 #ifdef FEAT_QUICKFIX
9700 buf->b_p_gp = empty_option;
9701 buf->b_p_mp = empty_option;
9702 buf->b_p_efm = empty_option;
9703 #endif
9704 buf->b_p_ep = empty_option;
9705 buf->b_p_kp = empty_option;
9706 buf->b_p_path = empty_option;
9707 buf->b_p_tags = empty_option;
9708 #ifdef FEAT_FIND_ID
9709 buf->b_p_def = empty_option;
9710 buf->b_p_inc = empty_option;
9711 # ifdef FEAT_EVAL
9712 buf->b_p_inex = vim_strsave(p_inex);
9713 # endif
9714 #endif
9715 #ifdef FEAT_INS_EXPAND
9716 buf->b_p_dict = empty_option;
9717 buf->b_p_tsr = empty_option;
9718 #endif
9719 #ifdef FEAT_TEXTOBJ
9720 buf->b_p_qe = vim_strsave(p_qe);
9721 #endif
9722 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9723 buf->b_p_bexpr = empty_option;
9724 #endif
9727 * Don't copy the options set by ex_help(), use the saved values,
9728 * when going from a help buffer to a non-help buffer.
9729 * Don't touch these at all when BCO_NOHELP is used and going from
9730 * or to a help buffer.
9732 if (dont_do_help)
9733 buf->b_p_isk = save_p_isk;
9734 else
9736 buf->b_p_isk = vim_strsave(p_isk);
9737 did_isk = TRUE;
9738 buf->b_p_ts = p_ts;
9739 buf->b_help = FALSE;
9740 #ifdef FEAT_QUICKFIX
9741 if (buf->b_p_bt[0] == 'h')
9742 clear_string_option(&buf->b_p_bt);
9743 #endif
9744 buf->b_p_ma = p_ma;
9749 * When the options should be copied (ignoring BCO_ALWAYS), set the
9750 * flag that indicates that the options have been initialized.
9752 if (should_copy)
9753 buf->b_p_initialized = TRUE;
9756 check_buf_options(buf); /* make sure we don't have NULLs */
9757 if (did_isk)
9758 (void)buf_init_chartab(buf, FALSE);
9762 * Reset the 'modifiable' option and its default value.
9764 void
9765 reset_modifiable()
9767 int opt_idx;
9769 curbuf->b_p_ma = FALSE;
9770 p_ma = FALSE;
9771 opt_idx = findoption((char_u *)"ma");
9772 if (opt_idx >= 0)
9773 options[opt_idx].def_val[VI_DEFAULT] = FALSE;
9777 * Set the global value for 'iminsert' to the local value.
9779 void
9780 set_iminsert_global()
9782 p_iminsert = curbuf->b_p_iminsert;
9786 * Set the global value for 'imsearch' to the local value.
9788 void
9789 set_imsearch_global()
9791 p_imsearch = curbuf->b_p_imsearch;
9794 #if defined(FEAT_CMDL_COMPL) || defined(PROTO)
9795 static int expand_option_idx = -1;
9796 static char_u expand_option_name[5] = {'t', '_', NUL, NUL, NUL};
9797 static int expand_option_flags = 0;
9799 void
9800 set_context_in_set_cmd(xp, arg, opt_flags)
9801 expand_T *xp;
9802 char_u *arg;
9803 int opt_flags; /* OPT_GLOBAL and/or OPT_LOCAL */
9805 int nextchar;
9806 long_u flags = 0; /* init for GCC */
9807 int opt_idx = 0; /* init for GCC */
9808 char_u *p;
9809 char_u *s;
9810 int is_term_option = FALSE;
9811 int key;
9813 expand_option_flags = opt_flags;
9815 xp->xp_context = EXPAND_SETTINGS;
9816 if (*arg == NUL)
9818 xp->xp_pattern = arg;
9819 return;
9821 p = arg + STRLEN(arg) - 1;
9822 if (*p == ' ' && *(p - 1) != '\\')
9824 xp->xp_pattern = p + 1;
9825 return;
9827 while (p > arg)
9829 s = p;
9830 /* count number of backslashes before ' ' or ',' */
9831 if (*p == ' ' || *p == ',')
9833 while (s > arg && *(s - 1) == '\\')
9834 --s;
9836 /* break at a space with an even number of backslashes */
9837 if (*p == ' ' && ((p - s) & 1) == 0)
9839 ++p;
9840 break;
9842 --p;
9844 if (STRNCMP(p, "no", 2) == 0 && STRNCMP(p, "novice", 6) != 0)
9846 xp->xp_context = EXPAND_BOOL_SETTINGS;
9847 p += 2;
9849 if (STRNCMP(p, "inv", 3) == 0)
9851 xp->xp_context = EXPAND_BOOL_SETTINGS;
9852 p += 3;
9854 xp->xp_pattern = arg = p;
9855 if (*arg == '<')
9857 while (*p != '>')
9858 if (*p++ == NUL) /* expand terminal option name */
9859 return;
9860 key = get_special_key_code(arg + 1);
9861 if (key == 0) /* unknown name */
9863 xp->xp_context = EXPAND_NOTHING;
9864 return;
9866 nextchar = *++p;
9867 is_term_option = TRUE;
9868 expand_option_name[2] = KEY2TERMCAP0(key);
9869 expand_option_name[3] = KEY2TERMCAP1(key);
9871 else
9873 if (p[0] == 't' && p[1] == '_')
9875 p += 2;
9876 if (*p != NUL)
9877 ++p;
9878 if (*p == NUL)
9879 return; /* expand option name */
9880 nextchar = *++p;
9881 is_term_option = TRUE;
9882 expand_option_name[2] = p[-2];
9883 expand_option_name[3] = p[-1];
9885 else
9887 /* Allow * wildcard */
9888 while (ASCII_ISALNUM(*p) || *p == '_' || *p == '*')
9889 p++;
9890 if (*p == NUL)
9891 return;
9892 nextchar = *p;
9893 *p = NUL;
9894 opt_idx = findoption(arg);
9895 *p = nextchar;
9896 if (opt_idx == -1 || options[opt_idx].var == NULL)
9898 xp->xp_context = EXPAND_NOTHING;
9899 return;
9901 flags = options[opt_idx].flags;
9902 if (flags & P_BOOL)
9904 xp->xp_context = EXPAND_NOTHING;
9905 return;
9909 /* handle "-=" and "+=" */
9910 if ((nextchar == '-' || nextchar == '+' || nextchar == '^') && p[1] == '=')
9912 ++p;
9913 nextchar = '=';
9915 if ((nextchar != '=' && nextchar != ':')
9916 || xp->xp_context == EXPAND_BOOL_SETTINGS)
9918 xp->xp_context = EXPAND_UNSUCCESSFUL;
9919 return;
9921 if (xp->xp_context != EXPAND_BOOL_SETTINGS && p[1] == NUL)
9923 xp->xp_context = EXPAND_OLD_SETTING;
9924 if (is_term_option)
9925 expand_option_idx = -1;
9926 else
9927 expand_option_idx = opt_idx;
9928 xp->xp_pattern = p + 1;
9929 return;
9931 xp->xp_context = EXPAND_NOTHING;
9932 if (is_term_option || (flags & P_NUM))
9933 return;
9935 xp->xp_pattern = p + 1;
9937 if (flags & P_EXPAND)
9939 p = options[opt_idx].var;
9940 if (p == (char_u *)&p_bdir
9941 || p == (char_u *)&p_dir
9942 || p == (char_u *)&p_path
9943 || p == (char_u *)&p_rtp
9944 #ifdef FEAT_SEARCHPATH
9945 || p == (char_u *)&p_cdpath
9946 #endif
9947 #ifdef FEAT_SESSION
9948 || p == (char_u *)&p_vdir
9949 #endif
9952 xp->xp_context = EXPAND_DIRECTORIES;
9953 if (p == (char_u *)&p_path
9954 #ifdef FEAT_SEARCHPATH
9955 || p == (char_u *)&p_cdpath
9956 #endif
9958 xp->xp_backslash = XP_BS_THREE;
9959 else
9960 xp->xp_backslash = XP_BS_ONE;
9962 else
9964 xp->xp_context = EXPAND_FILES;
9965 /* for 'tags' need three backslashes for a space */
9966 if (p == (char_u *)&p_tags)
9967 xp->xp_backslash = XP_BS_THREE;
9968 else
9969 xp->xp_backslash = XP_BS_ONE;
9973 /* For an option that is a list of file names, find the start of the
9974 * last file name. */
9975 for (p = arg + STRLEN(arg) - 1; p > xp->xp_pattern; --p)
9977 /* count number of backslashes before ' ' or ',' */
9978 if (*p == ' ' || *p == ',')
9980 s = p;
9981 while (s > xp->xp_pattern && *(s - 1) == '\\')
9982 --s;
9983 if ((*p == ' ' && (xp->xp_backslash == XP_BS_THREE && (p - s) < 3))
9984 || (*p == ',' && (flags & P_COMMA) && ((p - s) & 1) == 0))
9986 xp->xp_pattern = p + 1;
9987 break;
9991 #ifdef FEAT_SPELL
9992 /* for 'spellsuggest' start at "file:" */
9993 if (options[opt_idx].var == (char_u *)&p_sps
9994 && STRNCMP(p, "file:", 5) == 0)
9996 xp->xp_pattern = p + 5;
9997 break;
9999 #endif
10002 return;
10006 ExpandSettings(xp, regmatch, num_file, file)
10007 expand_T *xp;
10008 regmatch_T *regmatch;
10009 int *num_file;
10010 char_u ***file;
10012 int num_normal = 0; /* Nr of matching non-term-code settings */
10013 int num_term = 0; /* Nr of matching terminal code settings */
10014 int opt_idx;
10015 int match;
10016 int count = 0;
10017 char_u *str;
10018 int loop;
10019 int is_term_opt;
10020 char_u name_buf[MAX_KEY_NAME_LEN];
10021 static char *(names[]) = {"all", "termcap"};
10022 int ic = regmatch->rm_ic; /* remember the ignore-case flag */
10024 /* do this loop twice:
10025 * loop == 0: count the number of matching options
10026 * loop == 1: copy the matching options into allocated memory
10028 for (loop = 0; loop <= 1; ++loop)
10030 regmatch->rm_ic = ic;
10031 if (xp->xp_context != EXPAND_BOOL_SETTINGS)
10033 for (match = 0; match < (int)(sizeof(names) / sizeof(char *));
10034 ++match)
10035 if (vim_regexec(regmatch, (char_u *)names[match], (colnr_T)0))
10037 if (loop == 0)
10038 num_normal++;
10039 else
10040 (*file)[count++] = vim_strsave((char_u *)names[match]);
10043 for (opt_idx = 0; (str = (char_u *)options[opt_idx].fullname) != NULL;
10044 opt_idx++)
10046 if (options[opt_idx].var == NULL)
10047 continue;
10048 if (xp->xp_context == EXPAND_BOOL_SETTINGS
10049 && !(options[opt_idx].flags & P_BOOL))
10050 continue;
10051 is_term_opt = istermoption(&options[opt_idx]);
10052 if (is_term_opt && num_normal > 0)
10053 continue;
10054 match = FALSE;
10055 if (vim_regexec(regmatch, str, (colnr_T)0)
10056 || (options[opt_idx].shortname != NULL
10057 && vim_regexec(regmatch,
10058 (char_u *)options[opt_idx].shortname, (colnr_T)0)))
10059 match = TRUE;
10060 else if (is_term_opt)
10062 name_buf[0] = '<';
10063 name_buf[1] = 't';
10064 name_buf[2] = '_';
10065 name_buf[3] = str[2];
10066 name_buf[4] = str[3];
10067 name_buf[5] = '>';
10068 name_buf[6] = NUL;
10069 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10071 match = TRUE;
10072 str = name_buf;
10075 if (match)
10077 if (loop == 0)
10079 if (is_term_opt)
10080 num_term++;
10081 else
10082 num_normal++;
10084 else
10085 (*file)[count++] = vim_strsave(str);
10089 * Check terminal key codes, these are not in the option table
10091 if (xp->xp_context != EXPAND_BOOL_SETTINGS && num_normal == 0)
10093 for (opt_idx = 0; (str = get_termcode(opt_idx)) != NULL; opt_idx++)
10095 if (!isprint(str[0]) || !isprint(str[1]))
10096 continue;
10098 name_buf[0] = 't';
10099 name_buf[1] = '_';
10100 name_buf[2] = str[0];
10101 name_buf[3] = str[1];
10102 name_buf[4] = NUL;
10104 match = FALSE;
10105 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10106 match = TRUE;
10107 else
10109 name_buf[0] = '<';
10110 name_buf[1] = 't';
10111 name_buf[2] = '_';
10112 name_buf[3] = str[0];
10113 name_buf[4] = str[1];
10114 name_buf[5] = '>';
10115 name_buf[6] = NUL;
10117 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10118 match = TRUE;
10120 if (match)
10122 if (loop == 0)
10123 num_term++;
10124 else
10125 (*file)[count++] = vim_strsave(name_buf);
10130 * Check special key names.
10132 regmatch->rm_ic = TRUE; /* ignore case here */
10133 for (opt_idx = 0; (str = get_key_name(opt_idx)) != NULL; opt_idx++)
10135 name_buf[0] = '<';
10136 STRCPY(name_buf + 1, str);
10137 STRCAT(name_buf, ">");
10139 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10141 if (loop == 0)
10142 num_term++;
10143 else
10144 (*file)[count++] = vim_strsave(name_buf);
10148 if (loop == 0)
10150 if (num_normal > 0)
10151 *num_file = num_normal;
10152 else if (num_term > 0)
10153 *num_file = num_term;
10154 else
10155 return OK;
10156 *file = (char_u **)alloc((unsigned)(*num_file * sizeof(char_u *)));
10157 if (*file == NULL)
10159 *file = (char_u **)"";
10160 return FAIL;
10164 return OK;
10168 ExpandOldSetting(num_file, file)
10169 int *num_file;
10170 char_u ***file;
10172 char_u *var = NULL; /* init for GCC */
10173 char_u *buf;
10175 *num_file = 0;
10176 *file = (char_u **)alloc((unsigned)sizeof(char_u *));
10177 if (*file == NULL)
10178 return FAIL;
10181 * For a terminal key code expand_option_idx is < 0.
10183 if (expand_option_idx < 0)
10185 var = find_termcode(expand_option_name + 2);
10186 if (var == NULL)
10187 expand_option_idx = findoption(expand_option_name);
10190 if (expand_option_idx >= 0)
10192 /* put string of option value in NameBuff */
10193 option_value2string(&options[expand_option_idx], expand_option_flags);
10194 var = NameBuff;
10196 else if (var == NULL)
10197 var = (char_u *)"";
10199 /* A backslash is required before some characters. This is the reverse of
10200 * what happens in do_set(). */
10201 buf = vim_strsave_escaped(var, escape_chars);
10203 if (buf == NULL)
10205 vim_free(*file);
10206 *file = NULL;
10207 return FAIL;
10210 #ifdef BACKSLASH_IN_FILENAME
10211 /* For MS-Windows et al. we don't double backslashes at the start and
10212 * before a file name character. */
10213 for (var = buf; *var != NUL; mb_ptr_adv(var))
10214 if (var[0] == '\\' && var[1] == '\\'
10215 && expand_option_idx >= 0
10216 && (options[expand_option_idx].flags & P_EXPAND)
10217 && vim_isfilec(var[2])
10218 && (var[2] != '\\' || (var == buf && var[4] != '\\')))
10219 STRMOVE(var, var + 1);
10220 #endif
10222 *file[0] = buf;
10223 *num_file = 1;
10224 return OK;
10226 #endif
10229 * Get the value for the numeric or string option *opp in a nice format into
10230 * NameBuff[]. Must not be called with a hidden option!
10232 static void
10233 option_value2string(opp, opt_flags)
10234 struct vimoption *opp;
10235 int opt_flags; /* OPT_GLOBAL and/or OPT_LOCAL */
10237 char_u *varp;
10239 varp = get_varp_scope(opp, opt_flags);
10241 if (opp->flags & P_NUM)
10243 long wc = 0;
10245 if (wc_use_keyname(varp, &wc))
10246 STRCPY(NameBuff, get_special_key_name((int)wc, 0));
10247 else if (wc != 0)
10248 STRCPY(NameBuff, transchar((int)wc));
10249 else
10250 sprintf((char *)NameBuff, "%ld", *(long *)varp);
10252 else /* P_STRING */
10254 varp = *(char_u **)(varp);
10255 if (varp == NULL) /* just in case */
10256 NameBuff[0] = NUL;
10257 #ifdef FEAT_CRYPT
10258 /* don't show the actual value of 'key', only that it's set */
10259 else if (opp->var == (char_u *)&p_key && *varp)
10260 STRCPY(NameBuff, "*****");
10261 #endif
10262 else if (opp->flags & P_EXPAND)
10263 home_replace(NULL, varp, NameBuff, MAXPATHL, FALSE);
10264 /* Translate 'pastetoggle' into special key names */
10265 else if ((char_u **)opp->var == &p_pt)
10266 str2specialbuf(p_pt, NameBuff, MAXPATHL);
10267 else
10268 vim_strncpy(NameBuff, varp, MAXPATHL - 1);
10273 * Return TRUE if "varp" points to 'wildchar' or 'wildcharm' and it can be
10274 * printed as a keyname.
10275 * "*wcp" is set to the value of the option if it's 'wildchar' or 'wildcharm'.
10277 static int
10278 wc_use_keyname(varp, wcp)
10279 char_u *varp;
10280 long *wcp;
10282 if (((long *)varp == &p_wc) || ((long *)varp == &p_wcm))
10284 *wcp = *(long *)varp;
10285 if (IS_SPECIAL(*wcp) || find_special_key_in_table((int)*wcp) >= 0)
10286 return TRUE;
10288 return FALSE;
10291 #ifdef FEAT_LANGMAP
10293 * Any character has an equivalent 'langmap' character. This is used for
10294 * keyboards that have a special language mode that sends characters above
10295 * 128 (although other characters can be translated too). The "to" field is a
10296 * Vim command character. This avoids having to switch the keyboard back to
10297 * ASCII mode when leaving Insert mode.
10299 * langmap_mapchar[] maps any of 256 chars to an ASCII char used for Vim
10300 * commands.
10301 * When FEAT_MBYTE is defined langmap_mapga.ga_data is a sorted table of
10302 * langmap_entry_T. This does the same as langmap_mapchar[] for characters >=
10303 * 256.
10305 # ifdef FEAT_MBYTE
10307 * With multi-byte support use growarray for 'langmap' chars >= 256
10309 typedef struct
10311 int from;
10312 int to;
10313 } langmap_entry_T;
10315 static garray_T langmap_mapga;
10316 static void langmap_set_entry __ARGS((int from, int to));
10319 * Search for an entry in "langmap_mapga" for "from". If found set the "to"
10320 * field. If not found insert a new entry at the appropriate location.
10322 static void
10323 langmap_set_entry(from, to)
10324 int from;
10325 int to;
10327 langmap_entry_T *entries = (langmap_entry_T *)(langmap_mapga.ga_data);
10328 int a = 0;
10329 int b = langmap_mapga.ga_len;
10331 /* Do a binary search for an existing entry. */
10332 while (a != b)
10334 int i = (a + b) / 2;
10335 int d = entries[i].from - from;
10337 if (d == 0)
10339 entries[i].to = to;
10340 return;
10342 if (d < 0)
10343 a = i + 1;
10344 else
10345 b = i;
10348 if (ga_grow(&langmap_mapga, 1) != OK)
10349 return; /* out of memory */
10351 /* insert new entry at position "a" */
10352 entries = (langmap_entry_T *)(langmap_mapga.ga_data) + a;
10353 mch_memmove(entries + 1, entries,
10354 (langmap_mapga.ga_len - a) * sizeof(langmap_entry_T));
10355 ++langmap_mapga.ga_len;
10356 entries[0].from = from;
10357 entries[0].to = to;
10361 * Apply 'langmap' to multi-byte character "c" and return the result.
10364 langmap_adjust_mb(c)
10365 int c;
10367 langmap_entry_T *entries = (langmap_entry_T *)(langmap_mapga.ga_data);
10368 int a = 0;
10369 int b = langmap_mapga.ga_len;
10371 while (a != b)
10373 int i = (a + b) / 2;
10374 int d = entries[i].from - c;
10376 if (d == 0)
10377 return entries[i].to; /* found matching entry */
10378 if (d < 0)
10379 a = i + 1;
10380 else
10381 b = i;
10383 return c; /* no entry found, return "c" unmodified */
10385 # endif
10387 static void
10388 langmap_init()
10390 int i;
10392 for (i = 0; i < 256; i++)
10393 langmap_mapchar[i] = i; /* we init with a one-to-one map */
10394 # ifdef FEAT_MBYTE
10395 ga_init2(&langmap_mapga, sizeof(langmap_entry_T), 8);
10396 # endif
10400 * Called when langmap option is set; the language map can be
10401 * changed at any time!
10403 static void
10404 langmap_set()
10406 char_u *p;
10407 char_u *p2;
10408 int from, to;
10410 #ifdef FEAT_MBYTE
10411 ga_clear(&langmap_mapga); /* clear the previous map first */
10412 #endif
10413 langmap_init(); /* back to one-to-one map */
10415 for (p = p_langmap; p[0] != NUL; )
10417 for (p2 = p; p2[0] != NUL && p2[0] != ',' && p2[0] != ';';
10418 mb_ptr_adv(p2))
10420 if (p2[0] == '\\' && p2[1] != NUL)
10421 ++p2;
10423 if (p2[0] == ';')
10424 ++p2; /* abcd;ABCD form, p2 points to A */
10425 else
10426 p2 = NULL; /* aAbBcCdD form, p2 is NULL */
10427 while (p[0])
10429 if (p[0] == '\\' && p[1] != NUL)
10430 ++p;
10431 #ifdef FEAT_MBYTE
10432 from = (*mb_ptr2char)(p);
10433 #else
10434 from = p[0];
10435 #endif
10436 if (p2 == NULL)
10438 mb_ptr_adv(p);
10439 if (p[0] == '\\')
10440 ++p;
10441 #ifdef FEAT_MBYTE
10442 to = (*mb_ptr2char)(p);
10443 #else
10444 to = p[0];
10445 #endif
10447 else
10449 if (p2[0] == '\\')
10450 ++p2;
10451 #ifdef FEAT_MBYTE
10452 to = (*mb_ptr2char)(p2);
10453 #else
10454 to = p2[0];
10455 #endif
10457 if (to == NUL)
10459 EMSG2(_("E357: 'langmap': Matching character missing for %s"),
10460 transchar(from));
10461 return;
10464 #ifdef FEAT_MBYTE
10465 if (from >= 256)
10466 langmap_set_entry(from, to);
10467 else
10468 #endif
10469 langmap_mapchar[from & 255] = to;
10471 /* Advance to next pair */
10472 mb_ptr_adv(p);
10473 if (p2 == NULL)
10475 if (p[0] == ',')
10477 ++p;
10478 break;
10481 else
10483 mb_ptr_adv(p2);
10484 if (*p == ';')
10486 p = p2;
10487 if (p[0] != NUL)
10489 if (p[0] != ',')
10491 EMSG2(_("E358: 'langmap': Extra characters after semicolon: %s"), p);
10492 return;
10494 ++p;
10496 break;
10502 #endif
10505 * Return TRUE if format option 'x' is in effect.
10506 * Take care of no formatting when 'paste' is set.
10509 has_format_option(x)
10510 int x;
10512 if (p_paste)
10513 return FALSE;
10514 return (vim_strchr(curbuf->b_p_fo, x) != NULL);
10518 * Return TRUE if "x" is present in 'shortmess' option, or
10519 * 'shortmess' contains 'a' and "x" is present in SHM_A.
10522 shortmess(x)
10523 int x;
10525 return ( vim_strchr(p_shm, x) != NULL
10526 || (vim_strchr(p_shm, 'a') != NULL
10527 && vim_strchr((char_u *)SHM_A, x) != NULL));
10531 * paste_option_changed() - Called after p_paste was set or reset.
10533 static void
10534 paste_option_changed()
10536 static int old_p_paste = FALSE;
10537 static int save_sm = 0;
10538 #ifdef FEAT_CMDL_INFO
10539 static int save_ru = 0;
10540 #endif
10541 #ifdef FEAT_RIGHTLEFT
10542 static int save_ri = 0;
10543 static int save_hkmap = 0;
10544 #endif
10545 buf_T *buf;
10547 if (p_paste)
10550 * Paste switched from off to on.
10551 * Save the current values, so they can be restored later.
10553 if (!old_p_paste)
10555 /* save options for each buffer */
10556 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10558 buf->b_p_tw_nopaste = buf->b_p_tw;
10559 buf->b_p_wm_nopaste = buf->b_p_wm;
10560 buf->b_p_sts_nopaste = buf->b_p_sts;
10561 buf->b_p_ai_nopaste = buf->b_p_ai;
10564 /* save global options */
10565 save_sm = p_sm;
10566 #ifdef FEAT_CMDL_INFO
10567 save_ru = p_ru;
10568 #endif
10569 #ifdef FEAT_RIGHTLEFT
10570 save_ri = p_ri;
10571 save_hkmap = p_hkmap;
10572 #endif
10573 /* save global values for local buffer options */
10574 p_tw_nopaste = p_tw;
10575 p_wm_nopaste = p_wm;
10576 p_sts_nopaste = p_sts;
10577 p_ai_nopaste = p_ai;
10581 * Always set the option values, also when 'paste' is set when it is
10582 * already on.
10584 /* set options for each buffer */
10585 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10587 buf->b_p_tw = 0; /* textwidth is 0 */
10588 buf->b_p_wm = 0; /* wrapmargin is 0 */
10589 buf->b_p_sts = 0; /* softtabstop is 0 */
10590 buf->b_p_ai = 0; /* no auto-indent */
10593 /* set global options */
10594 p_sm = 0; /* no showmatch */
10595 #ifdef FEAT_CMDL_INFO
10596 # ifdef FEAT_WINDOWS
10597 if (p_ru)
10598 status_redraw_all(); /* redraw to remove the ruler */
10599 # endif
10600 p_ru = 0; /* no ruler */
10601 #endif
10602 #ifdef FEAT_RIGHTLEFT
10603 p_ri = 0; /* no reverse insert */
10604 p_hkmap = 0; /* no Hebrew keyboard */
10605 #endif
10606 /* set global values for local buffer options */
10607 p_tw = 0;
10608 p_wm = 0;
10609 p_sts = 0;
10610 p_ai = 0;
10614 * Paste switched from on to off: Restore saved values.
10616 else if (old_p_paste)
10618 /* restore options for each buffer */
10619 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10621 buf->b_p_tw = buf->b_p_tw_nopaste;
10622 buf->b_p_wm = buf->b_p_wm_nopaste;
10623 buf->b_p_sts = buf->b_p_sts_nopaste;
10624 buf->b_p_ai = buf->b_p_ai_nopaste;
10627 /* restore global options */
10628 p_sm = save_sm;
10629 #ifdef FEAT_CMDL_INFO
10630 # ifdef FEAT_WINDOWS
10631 if (p_ru != save_ru)
10632 status_redraw_all(); /* redraw to draw the ruler */
10633 # endif
10634 p_ru = save_ru;
10635 #endif
10636 #ifdef FEAT_RIGHTLEFT
10637 p_ri = save_ri;
10638 p_hkmap = save_hkmap;
10639 #endif
10640 /* set global values for local buffer options */
10641 p_tw = p_tw_nopaste;
10642 p_wm = p_wm_nopaste;
10643 p_sts = p_sts_nopaste;
10644 p_ai = p_ai_nopaste;
10647 old_p_paste = p_paste;
10651 * vimrc_found() - Called when a ".vimrc" or "VIMINIT" has been found.
10653 * Reset 'compatible' and set the values for options that didn't get set yet
10654 * to the Vim defaults.
10655 * Don't do this if the 'compatible' option has been set or reset before.
10656 * When "fname" is not NULL, use it to set $"envname" when it wasn't set yet.
10658 void
10659 vimrc_found(fname, envname)
10660 char_u *fname;
10661 char_u *envname;
10663 int opt_idx;
10664 int dofree = FALSE;
10665 char_u *p;
10667 if (!option_was_set((char_u *)"cp"))
10669 p_cp = FALSE;
10670 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
10671 if (!(options[opt_idx].flags & (P_WAS_SET|P_VI_DEF)))
10672 set_option_default(opt_idx, OPT_FREE, FALSE);
10673 didset_options();
10676 if (fname != NULL)
10678 p = vim_getenv(envname, &dofree);
10679 if (p == NULL)
10681 /* Set $MYVIMRC to the first vimrc file found. */
10682 p = FullName_save(fname, FALSE);
10683 if (p != NULL)
10685 vim_setenv(envname, p);
10686 vim_free(p);
10689 else if (dofree)
10690 vim_free(p);
10695 * Set 'compatible' on or off. Called for "-C" and "-N" command line arg.
10697 void
10698 change_compatible(on)
10699 int on;
10701 int opt_idx;
10703 if (p_cp != on)
10705 p_cp = on;
10706 compatible_set();
10708 opt_idx = findoption((char_u *)"cp");
10709 if (opt_idx >= 0)
10710 options[opt_idx].flags |= P_WAS_SET;
10714 * Return TRUE when option "name" has been set.
10717 option_was_set(name)
10718 char_u *name;
10720 int idx;
10722 idx = findoption(name);
10723 if (idx < 0) /* unknown option */
10724 return FALSE;
10725 if (options[idx].flags & P_WAS_SET)
10726 return TRUE;
10727 return FALSE;
10731 * compatible_set() - Called when 'compatible' has been set or unset.
10733 * When 'compatible' set: Set all relevant options (those that have the P_VIM)
10734 * flag) to a Vi compatible value.
10735 * When 'compatible' is unset: Set all options that have a different default
10736 * for Vim (without the P_VI_DEF flag) to that default.
10738 static void
10739 compatible_set()
10741 int opt_idx;
10743 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
10744 if ( ((options[opt_idx].flags & P_VIM) && p_cp)
10745 || (!(options[opt_idx].flags & P_VI_DEF) && !p_cp))
10746 set_option_default(opt_idx, OPT_FREE, p_cp);
10747 didset_options();
10750 #ifdef FEAT_LINEBREAK
10752 # if defined(__BORLANDC__) && (__BORLANDC__ < 0x500)
10753 /* Borland C++ screws up loop optimisation here (negri) */
10754 #pragma option -O-l
10755 # endif
10758 * fill_breakat_flags() -- called when 'breakat' changes value.
10760 static void
10761 fill_breakat_flags()
10763 char_u *p;
10764 int i;
10766 for (i = 0; i < 256; i++)
10767 breakat_flags[i] = FALSE;
10769 if (p_breakat != NULL)
10770 for (p = p_breakat; *p; p++)
10771 breakat_flags[*p] = TRUE;
10774 # if defined(__BORLANDC__) && (__BORLANDC__ < 0x500)
10775 #pragma option -O.l
10776 # endif
10778 #endif
10781 * Check an option that can be a range of string values.
10783 * Return OK for correct value, FAIL otherwise.
10784 * Empty is always OK.
10786 static int
10787 check_opt_strings(val, values, list)
10788 char_u *val;
10789 char **values;
10790 int list; /* when TRUE: accept a list of values */
10792 return opt_strings_flags(val, values, NULL, list);
10796 * Handle an option that can be a range of string values.
10797 * Set a flag in "*flagp" for each string present.
10799 * Return OK for correct value, FAIL otherwise.
10800 * Empty is always OK.
10802 static int
10803 opt_strings_flags(val, values, flagp, list)
10804 char_u *val; /* new value */
10805 char **values; /* array of valid string values */
10806 unsigned *flagp;
10807 int list; /* when TRUE: accept a list of values */
10809 int i;
10810 int len;
10811 unsigned new_flags = 0;
10813 while (*val)
10815 for (i = 0; ; ++i)
10817 if (values[i] == NULL) /* val not found in values[] */
10818 return FAIL;
10820 len = (int)STRLEN(values[i]);
10821 if (STRNCMP(values[i], val, len) == 0
10822 && ((list && val[len] == ',') || val[len] == NUL))
10824 val += len + (val[len] == ',');
10825 new_flags |= (1 << i);
10826 break; /* check next item in val list */
10830 if (flagp != NULL)
10831 *flagp = new_flags;
10833 return OK;
10837 * Read the 'wildmode' option, fill wim_flags[].
10839 static int
10840 check_opt_wim()
10842 char_u new_wim_flags[4];
10843 char_u *p;
10844 int i;
10845 int idx = 0;
10847 for (i = 0; i < 4; ++i)
10848 new_wim_flags[i] = 0;
10850 for (p = p_wim; *p; ++p)
10852 for (i = 0; ASCII_ISALPHA(p[i]); ++i)
10854 if (p[i] != NUL && p[i] != ',' && p[i] != ':')
10855 return FAIL;
10856 if (i == 7 && STRNCMP(p, "longest", 7) == 0)
10857 new_wim_flags[idx] |= WIM_LONGEST;
10858 else if (i == 4 && STRNCMP(p, "full", 4) == 0)
10859 new_wim_flags[idx] |= WIM_FULL;
10860 else if (i == 4 && STRNCMP(p, "list", 4) == 0)
10861 new_wim_flags[idx] |= WIM_LIST;
10862 else
10863 return FAIL;
10864 p += i;
10865 if (*p == NUL)
10866 break;
10867 if (*p == ',')
10869 if (idx == 3)
10870 return FAIL;
10871 ++idx;
10875 /* fill remaining entries with last flag */
10876 while (idx < 3)
10878 new_wim_flags[idx + 1] = new_wim_flags[idx];
10879 ++idx;
10882 /* only when there are no errors, wim_flags[] is changed */
10883 for (i = 0; i < 4; ++i)
10884 wim_flags[i] = new_wim_flags[i];
10885 return OK;
10889 * Check if backspacing over something is allowed.
10892 can_bs(what)
10893 int what; /* BS_INDENT, BS_EOL or BS_START */
10895 switch (*p_bs)
10897 case '2': return TRUE;
10898 case '1': return (what != BS_START);
10899 case '0': return FALSE;
10901 return vim_strchr(p_bs, what) != NULL;
10905 * Save the current values of 'fileformat' and 'fileencoding', so that we know
10906 * the file must be considered changed when the value is different.
10908 void
10909 save_file_ff(buf)
10910 buf_T *buf;
10912 buf->b_start_ffc = *buf->b_p_ff;
10913 buf->b_start_eol = buf->b_p_eol;
10914 #ifdef FEAT_MBYTE
10915 buf->b_start_bomb = buf->b_p_bomb;
10917 /* Only use free/alloc when necessary, they take time. */
10918 if (buf->b_start_fenc == NULL
10919 || STRCMP(buf->b_start_fenc, buf->b_p_fenc) != 0)
10921 vim_free(buf->b_start_fenc);
10922 buf->b_start_fenc = vim_strsave(buf->b_p_fenc);
10924 #endif
10928 * Return TRUE if 'fileformat' and/or 'fileencoding' has a different value
10929 * from when editing started (save_file_ff() called).
10930 * Also when 'endofline' was changed and 'binary' is set, or when 'bomb' was
10931 * changed and 'binary' is not set.
10932 * Don't consider a new, empty buffer to be changed.
10935 file_ff_differs(buf)
10936 buf_T *buf;
10938 /* In a buffer that was never loaded the options are not valid. */
10939 if (buf->b_flags & BF_NEVERLOADED)
10940 return FALSE;
10941 if ((buf->b_flags & BF_NEW)
10942 && buf->b_ml.ml_line_count == 1
10943 && *ml_get_buf(buf, (linenr_T)1, FALSE) == NUL)
10944 return FALSE;
10945 if (buf->b_start_ffc != *buf->b_p_ff)
10946 return TRUE;
10947 if (buf->b_p_bin && buf->b_start_eol != buf->b_p_eol)
10948 return TRUE;
10949 #ifdef FEAT_MBYTE
10950 if (!buf->b_p_bin && buf->b_start_bomb != buf->b_p_bomb)
10951 return TRUE;
10952 if (buf->b_start_fenc == NULL)
10953 return (*buf->b_p_fenc != NUL);
10954 return (STRCMP(buf->b_start_fenc, buf->b_p_fenc) != 0);
10955 #else
10956 return FALSE;
10957 #endif
10961 * return OK if "p" is a valid fileformat name, FAIL otherwise.
10964 check_ff_value(p)
10965 char_u *p;
10967 return check_opt_strings(p, p_ff_values, FALSE);