feat/tagfunc: removed a FIXME note.
[vim_extended.git] / src / option.c
blobcfa2383a5f1b92c7810be2c246dcc201bc2cd196
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 {"tagfunc", "tfu", P_STRING|P_ALLOCED|P_VI_DEF|P_SECURE,
2440 #ifdef FEAT_COMPL_FUNC
2441 (char_u *)&p_tfu, PV_TFU,
2442 {(char_u *)"", (char_u *)0L}
2443 #else
2444 (char_u *)NULL, PV_NONE,
2445 {(char_u *)0L, (char_u *)0L}
2446 #endif
2447 SCRIPTID_INIT},
2448 {"taglength", "tl", P_NUM|P_VI_DEF,
2449 (char_u *)&p_tl, PV_NONE,
2450 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2451 {"tagrelative", "tr", P_BOOL|P_VIM,
2452 (char_u *)&p_tr, PV_NONE,
2453 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
2454 {"tags", "tag", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
2455 (char_u *)&p_tags, PV_TAGS,
2457 #if defined(FEAT_EMACS_TAGS) && !defined(CASE_INSENSITIVE_FILENAME)
2458 (char_u *)"./tags,./TAGS,tags,TAGS",
2459 #else
2460 (char_u *)"./tags,tags",
2461 #endif
2462 (char_u *)0L} SCRIPTID_INIT},
2463 {"tagstack", "tgst", P_BOOL|P_VI_DEF,
2464 (char_u *)&p_tgst, PV_NONE,
2465 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2466 {"term", NULL, P_STRING|P_EXPAND|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RALL,
2467 (char_u *)&T_NAME, PV_NONE,
2468 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2469 {"termbidi", "tbidi", P_BOOL|P_VI_DEF,
2470 #ifdef FEAT_ARABIC
2471 (char_u *)&p_tbidi, PV_NONE,
2472 #else
2473 (char_u *)NULL, PV_NONE,
2474 #endif
2475 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2476 {"termencoding", "tenc", P_STRING|P_VI_DEF|P_RCLR,
2477 #ifdef FEAT_MBYTE
2478 (char_u *)&p_tenc, PV_NONE,
2479 {(char_u *)"", (char_u *)0L}
2480 #else
2481 (char_u *)NULL, PV_NONE,
2482 {(char_u *)0L, (char_u *)0L}
2483 #endif
2484 SCRIPTID_INIT},
2485 {"terse", NULL, P_BOOL|P_VI_DEF,
2486 (char_u *)&p_terse, PV_NONE,
2487 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2488 {"textauto", "ta", P_BOOL|P_VIM,
2489 (char_u *)&p_ta, PV_NONE,
2490 {(char_u *)DFLT_TEXTAUTO, (char_u *)TRUE}
2491 SCRIPTID_INIT},
2492 {"textmode", "tx", P_BOOL|P_VI_DEF|P_NO_MKRC,
2493 (char_u *)&p_tx, PV_TX,
2495 #ifdef USE_CRNL
2496 (char_u *)TRUE,
2497 #else
2498 (char_u *)FALSE,
2499 #endif
2500 (char_u *)0L} SCRIPTID_INIT},
2501 {"textwidth", "tw", P_NUM|P_VI_DEF|P_VIM,
2502 (char_u *)&p_tw, PV_TW,
2503 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2504 {"thesaurus", "tsr", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
2505 #ifdef FEAT_INS_EXPAND
2506 (char_u *)&p_tsr, PV_TSR,
2507 #else
2508 (char_u *)NULL, PV_NONE,
2509 #endif
2510 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2511 {"tildeop", "top", P_BOOL|P_VI_DEF|P_VIM,
2512 (char_u *)&p_to, PV_NONE,
2513 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2514 {"timeout", "to", P_BOOL|P_VI_DEF,
2515 (char_u *)&p_timeout, PV_NONE,
2516 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2517 {"timeoutlen", "tm", P_NUM|P_VI_DEF,
2518 (char_u *)&p_tm, PV_NONE,
2519 {(char_u *)1000L, (char_u *)0L} SCRIPTID_INIT},
2520 {"title", NULL, P_BOOL|P_VI_DEF,
2521 #ifdef FEAT_TITLE
2522 (char_u *)&p_title, PV_NONE,
2523 #else
2524 (char_u *)NULL, PV_NONE,
2525 #endif
2526 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2527 {"titlelen", NULL, P_NUM|P_VI_DEF,
2528 #ifdef FEAT_TITLE
2529 (char_u *)&p_titlelen, PV_NONE,
2530 #else
2531 (char_u *)NULL, PV_NONE,
2532 #endif
2533 {(char_u *)85L, (char_u *)0L} SCRIPTID_INIT},
2534 {"titleold", NULL, P_STRING|P_VI_DEF|P_GETTEXT|P_SECURE|P_NO_MKRC,
2535 #ifdef FEAT_TITLE
2536 (char_u *)&p_titleold, PV_NONE,
2537 {(char_u *)N_("Thanks for flying Vim"),
2538 (char_u *)0L}
2539 #else
2540 (char_u *)NULL, PV_NONE,
2541 {(char_u *)0L, (char_u *)0L}
2542 #endif
2543 SCRIPTID_INIT},
2544 {"titlestring", NULL, P_STRING|P_VI_DEF,
2545 #ifdef FEAT_TITLE
2546 (char_u *)&p_titlestring, PV_NONE,
2547 #else
2548 (char_u *)NULL, PV_NONE,
2549 #endif
2550 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2551 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
2552 {"toolbar", "tb", P_STRING|P_COMMA|P_VI_DEF|P_NODUP,
2553 (char_u *)&p_toolbar, PV_NONE,
2554 {(char_u *)"icons,tooltips", (char_u *)0L}
2555 SCRIPTID_INIT},
2556 #endif
2557 #if defined(FEAT_TOOLBAR) && defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)
2558 {"toolbariconsize", "tbis", P_STRING|P_VI_DEF,
2559 (char_u *)&p_tbis, PV_NONE,
2560 {(char_u *)"small", (char_u *)0L} SCRIPTID_INIT},
2561 #endif
2562 {"ttimeout", NULL, P_BOOL|P_VI_DEF|P_VIM,
2563 (char_u *)&p_ttimeout, PV_NONE,
2564 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2565 {"ttimeoutlen", "ttm", P_NUM|P_VI_DEF,
2566 (char_u *)&p_ttm, PV_NONE,
2567 {(char_u *)-1L, (char_u *)0L} SCRIPTID_INIT},
2568 {"ttybuiltin", "tbi", P_BOOL|P_VI_DEF,
2569 (char_u *)&p_tbi, PV_NONE,
2570 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2571 {"ttyfast", "tf", P_BOOL|P_NO_MKRC|P_VI_DEF,
2572 (char_u *)&p_tf, PV_NONE,
2573 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2574 {"ttymouse", "ttym", P_STRING|P_NODEFAULT|P_NO_MKRC|P_VI_DEF,
2575 #if defined(FEAT_MOUSE) && (defined(UNIX) || defined(VMS))
2576 (char_u *)&p_ttym, PV_NONE,
2577 #else
2578 (char_u *)NULL, PV_NONE,
2579 #endif
2580 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2581 {"ttyscroll", "tsl", P_NUM|P_VI_DEF,
2582 (char_u *)&p_ttyscroll, PV_NONE,
2583 {(char_u *)999L, (char_u *)0L} SCRIPTID_INIT},
2584 {"ttytype", "tty", P_STRING|P_EXPAND|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RALL,
2585 (char_u *)&T_NAME, PV_NONE,
2586 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2587 {"undolevels", "ul", P_NUM|P_VI_DEF,
2588 (char_u *)&p_ul, PV_NONE,
2590 #if defined(UNIX) || defined(WIN3264) || defined(OS2) || defined(VMS)
2591 (char_u *)1000L,
2592 #else
2593 (char_u *)100L,
2594 #endif
2595 (char_u *)0L} SCRIPTID_INIT},
2596 {"updatecount", "uc", P_NUM|P_VI_DEF,
2597 (char_u *)&p_uc, PV_NONE,
2598 {(char_u *)200L, (char_u *)0L} SCRIPTID_INIT},
2599 {"updatetime", "ut", P_NUM|P_VI_DEF,
2600 (char_u *)&p_ut, PV_NONE,
2601 {(char_u *)4000L, (char_u *)0L} SCRIPTID_INIT},
2602 {"verbose", "vbs", P_NUM|P_VI_DEF,
2603 (char_u *)&p_verbose, PV_NONE,
2604 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2605 {"verbosefile", "vfile", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
2606 (char_u *)&p_vfile, PV_NONE,
2607 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2608 {"viewdir", "vdir", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
2609 #ifdef FEAT_SESSION
2610 (char_u *)&p_vdir, PV_NONE,
2611 {(char_u *)DFLT_VDIR, (char_u *)0L}
2612 #else
2613 (char_u *)NULL, PV_NONE,
2614 {(char_u *)0L, (char_u *)0L}
2615 #endif
2616 SCRIPTID_INIT},
2617 {"viewoptions", "vop", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2618 #ifdef FEAT_SESSION
2619 (char_u *)&p_vop, PV_NONE,
2620 {(char_u *)"folds,options,cursor", (char_u *)0L}
2621 #else
2622 (char_u *)NULL, PV_NONE,
2623 {(char_u *)0L, (char_u *)0L}
2624 #endif
2625 SCRIPTID_INIT},
2626 {"viminfo", "vi", P_STRING|P_COMMA|P_NODUP|P_SECURE,
2627 #ifdef FEAT_VIMINFO
2628 (char_u *)&p_viminfo, PV_NONE,
2629 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
2630 {(char_u *)"", (char_u *)"'100,<50,s10,h,rA:,rB:"}
2631 #else
2632 # ifdef AMIGA
2633 {(char_u *)"",
2634 (char_u *)"'100,<50,s10,h,rdf0:,rdf1:,rdf2:"}
2635 # else
2636 {(char_u *)"", (char_u *)"'100,<50,s10,h"}
2637 # endif
2638 #endif
2639 #else
2640 (char_u *)NULL, PV_NONE,
2641 {(char_u *)0L, (char_u *)0L}
2642 #endif
2643 SCRIPTID_INIT},
2644 {"virtualedit", "ve", P_STRING|P_COMMA|P_NODUP|P_VI_DEF|P_VIM,
2645 #ifdef FEAT_VIRTUALEDIT
2646 (char_u *)&p_ve, PV_NONE,
2647 {(char_u *)"", (char_u *)""}
2648 #else
2649 (char_u *)NULL, PV_NONE,
2650 {(char_u *)0L, (char_u *)0L}
2651 #endif
2652 SCRIPTID_INIT},
2653 {"visualbell", "vb", P_BOOL|P_VI_DEF,
2654 (char_u *)&p_vb, PV_NONE,
2655 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2656 {"w300", NULL, P_NUM|P_VI_DEF,
2657 (char_u *)NULL, PV_NONE,
2658 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2659 {"w1200", NULL, P_NUM|P_VI_DEF,
2660 (char_u *)NULL, PV_NONE,
2661 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2662 {"w9600", NULL, P_NUM|P_VI_DEF,
2663 (char_u *)NULL, PV_NONE,
2664 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2665 {"warn", NULL, P_BOOL|P_VI_DEF,
2666 (char_u *)&p_warn, PV_NONE,
2667 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2668 {"weirdinvert", "wiv", P_BOOL|P_VI_DEF|P_RCLR,
2669 (char_u *)&p_wiv, PV_NONE,
2670 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2671 {"whichwrap", "ww", P_STRING|P_VIM|P_COMMA|P_FLAGLIST,
2672 (char_u *)&p_ww, PV_NONE,
2673 {(char_u *)"", (char_u *)"b,s"} SCRIPTID_INIT},
2674 {"wildchar", "wc", P_NUM|P_VIM,
2675 (char_u *)&p_wc, PV_NONE,
2676 {(char_u *)(long)Ctrl_E, (char_u *)(long)TAB}
2677 SCRIPTID_INIT},
2678 {"wildcharm", "wcm", P_NUM|P_VI_DEF,
2679 (char_u *)&p_wcm, PV_NONE,
2680 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2681 {"wildignore", "wig", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2682 #ifdef FEAT_WILDIGN
2683 (char_u *)&p_wig, PV_NONE,
2684 #else
2685 (char_u *)NULL, PV_NONE,
2686 #endif
2687 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2688 {"wildmenu", "wmnu", P_BOOL|P_VI_DEF,
2689 #ifdef FEAT_WILDMENU
2690 (char_u *)&p_wmnu, PV_NONE,
2691 #else
2692 (char_u *)NULL, PV_NONE,
2693 #endif
2694 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2695 {"wildmode", "wim", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2696 (char_u *)&p_wim, PV_NONE,
2697 {(char_u *)"full", (char_u *)0L} SCRIPTID_INIT},
2698 {"wildoptions", "wop", P_STRING|P_VI_DEF,
2699 #ifdef FEAT_CMDL_COMPL
2700 (char_u *)&p_wop, PV_NONE,
2701 {(char_u *)"", (char_u *)0L}
2702 #else
2703 (char_u *)NULL, PV_NONE,
2704 {(char_u *)NULL, (char_u *)0L}
2705 #endif
2706 SCRIPTID_INIT},
2707 {"winaltkeys", "wak", P_STRING|P_VI_DEF,
2708 #ifdef FEAT_WAK
2709 (char_u *)&p_wak, PV_NONE,
2710 {(char_u *)"menu", (char_u *)0L}
2711 #else
2712 (char_u *)NULL, PV_NONE,
2713 {(char_u *)NULL, (char_u *)0L}
2714 #endif
2715 SCRIPTID_INIT},
2716 {"window", "wi", P_NUM|P_VI_DEF,
2717 (char_u *)&p_window, PV_NONE,
2718 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2719 {"winheight", "wh", P_NUM|P_VI_DEF,
2720 #ifdef FEAT_WINDOWS
2721 (char_u *)&p_wh, PV_NONE,
2722 #else
2723 (char_u *)NULL, PV_NONE,
2724 #endif
2725 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
2726 {"winfixheight", "wfh", P_BOOL|P_VI_DEF|P_RSTAT,
2727 #ifdef FEAT_WINDOWS
2728 (char_u *)VAR_WIN, PV_WFH,
2729 #else
2730 (char_u *)NULL, PV_NONE,
2731 #endif
2732 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2733 {"winfixwidth", "wfw", P_BOOL|P_VI_DEF|P_RSTAT,
2734 #ifdef FEAT_VERTSPLIT
2735 (char_u *)VAR_WIN, PV_WFW,
2736 #else
2737 (char_u *)NULL, PV_NONE,
2738 #endif
2739 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2740 {"winminheight", "wmh", P_NUM|P_VI_DEF,
2741 #ifdef FEAT_WINDOWS
2742 (char_u *)&p_wmh, PV_NONE,
2743 #else
2744 (char_u *)NULL, PV_NONE,
2745 #endif
2746 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
2747 {"winminwidth", "wmw", P_NUM|P_VI_DEF,
2748 #ifdef FEAT_VERTSPLIT
2749 (char_u *)&p_wmw, PV_NONE,
2750 #else
2751 (char_u *)NULL, PV_NONE,
2752 #endif
2753 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
2754 {"winwidth", "wiw", P_NUM|P_VI_DEF,
2755 #ifdef FEAT_VERTSPLIT
2756 (char_u *)&p_wiw, PV_NONE,
2757 #else
2758 (char_u *)NULL, PV_NONE,
2759 #endif
2760 {(char_u *)20L, (char_u *)0L} SCRIPTID_INIT},
2761 {"wrap", NULL, P_BOOL|P_VI_DEF|P_RWIN,
2762 (char_u *)VAR_WIN, PV_WRAP,
2763 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2764 {"wrapmargin", "wm", P_NUM|P_VI_DEF,
2765 (char_u *)&p_wm, PV_WM,
2766 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2767 {"wrapscan", "ws", P_BOOL|P_VI_DEF,
2768 (char_u *)&p_ws, PV_NONE,
2769 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2770 {"write", NULL, P_BOOL|P_VI_DEF,
2771 (char_u *)&p_write, PV_NONE,
2772 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2773 {"writeany", "wa", P_BOOL|P_VI_DEF,
2774 (char_u *)&p_wa, PV_NONE,
2775 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2776 {"writebackup", "wb", P_BOOL|P_VI_DEF|P_VIM,
2777 (char_u *)&p_wb, PV_NONE,
2779 #ifdef FEAT_WRITEBACKUP
2780 (char_u *)TRUE,
2781 #else
2782 (char_u *)FALSE,
2783 #endif
2784 (char_u *)0L} SCRIPTID_INIT},
2785 {"writedelay", "wd", P_NUM|P_VI_DEF,
2786 (char_u *)&p_wd, PV_NONE,
2787 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2789 /* terminal output codes */
2790 #define p_term(sss, vvv) {sss, NULL, P_STRING|P_VI_DEF|P_RALL|P_SECURE, \
2791 (char_u *)&vvv, PV_NONE, \
2792 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2794 p_term("t_AB", T_CAB)
2795 p_term("t_AF", T_CAF)
2796 p_term("t_AL", T_CAL)
2797 p_term("t_al", T_AL)
2798 p_term("t_bc", T_BC)
2799 p_term("t_cd", T_CD)
2800 p_term("t_ce", T_CE)
2801 p_term("t_cl", T_CL)
2802 p_term("t_cm", T_CM)
2803 p_term("t_Co", T_CCO)
2804 p_term("t_CS", T_CCS)
2805 p_term("t_cs", T_CS)
2806 #ifdef FEAT_VERTSPLIT
2807 p_term("t_CV", T_CSV)
2808 #endif
2809 p_term("t_ut", T_UT)
2810 p_term("t_da", T_DA)
2811 p_term("t_db", T_DB)
2812 p_term("t_DL", T_CDL)
2813 p_term("t_dl", T_DL)
2814 p_term("t_fs", T_FS)
2815 p_term("t_IE", T_CIE)
2816 p_term("t_IS", T_CIS)
2817 p_term("t_ke", T_KE)
2818 p_term("t_ks", T_KS)
2819 p_term("t_le", T_LE)
2820 p_term("t_mb", T_MB)
2821 p_term("t_md", T_MD)
2822 p_term("t_me", T_ME)
2823 p_term("t_mr", T_MR)
2824 p_term("t_ms", T_MS)
2825 p_term("t_nd", T_ND)
2826 p_term("t_op", T_OP)
2827 p_term("t_RI", T_CRI)
2828 p_term("t_RV", T_CRV)
2829 p_term("t_Sb", T_CSB)
2830 p_term("t_Sf", T_CSF)
2831 p_term("t_se", T_SE)
2832 p_term("t_so", T_SO)
2833 p_term("t_sr", T_SR)
2834 p_term("t_ts", T_TS)
2835 p_term("t_te", T_TE)
2836 p_term("t_ti", T_TI)
2837 p_term("t_ue", T_UE)
2838 p_term("t_us", T_US)
2839 p_term("t_vb", T_VB)
2840 p_term("t_ve", T_VE)
2841 p_term("t_vi", T_VI)
2842 p_term("t_vs", T_VS)
2843 p_term("t_WP", T_CWP)
2844 p_term("t_WS", T_CWS)
2845 p_term("t_SI", T_CSI)
2846 p_term("t_EI", T_CEI)
2847 p_term("t_xs", T_XS)
2848 p_term("t_ZH", T_CZH)
2849 p_term("t_ZR", T_CZR)
2851 /* terminal key codes are not in here */
2853 /* end marker */
2854 {NULL, NULL, 0, NULL, PV_NONE, {NULL, NULL} SCRIPTID_INIT}
2857 #define PARAM_COUNT (sizeof(options) / sizeof(struct vimoption))
2859 #ifdef FEAT_MBYTE
2860 static char *(p_ambw_values[]) = {"single", "double", NULL};
2861 #endif
2862 static char *(p_bg_values[]) = {"light", "dark", NULL};
2863 static char *(p_nf_values[]) = {"octal", "hex", "alpha", NULL};
2864 static char *(p_ff_values[]) = {FF_UNIX, FF_DOS, FF_MAC, NULL};
2865 #ifdef FEAT_CMDL_COMPL
2866 static char *(p_wop_values[]) = {"tagfile", NULL};
2867 #endif
2868 #ifdef FEAT_WAK
2869 static char *(p_wak_values[]) = {"yes", "menu", "no", NULL};
2870 #endif
2871 static char *(p_mousem_values[]) = {"extend", "popup", "popup_setpos", "mac", NULL};
2872 #ifdef FEAT_VISUAL
2873 static char *(p_sel_values[]) = {"inclusive", "exclusive", "old", NULL};
2874 static char *(p_slm_values[]) = {"mouse", "key", "cmd", NULL};
2875 #endif
2876 #ifdef FEAT_VISUAL
2877 static char *(p_km_values[]) = {"startsel", "stopsel", NULL};
2878 #endif
2879 #ifdef FEAT_BROWSE
2880 static char *(p_bsdir_values[]) = {"current", "last", "buffer", NULL};
2881 #endif
2882 #ifdef FEAT_SCROLLBIND
2883 static char *(p_scbopt_values[]) = {"ver", "hor", "jump", NULL};
2884 #endif
2885 static char *(p_debug_values[]) = {"msg", "throw", "beep", NULL};
2886 #ifdef FEAT_VERTSPLIT
2887 static char *(p_ead_values[]) = {"both", "ver", "hor", NULL};
2888 #endif
2889 #if defined(FEAT_QUICKFIX)
2890 # ifdef FEAT_AUTOCMD
2891 static char *(p_buftype_values[]) = {"nofile", "nowrite", "quickfix", "help", "acwrite", NULL};
2892 # else
2893 static char *(p_buftype_values[]) = {"nofile", "nowrite", "quickfix", "help", NULL};
2894 # endif
2895 static char *(p_bufhidden_values[]) = {"hide", "unload", "delete", "wipe", NULL};
2896 #endif
2897 static char *(p_bs_values[]) = {"indent", "eol", "start", NULL};
2898 #ifdef FEAT_FOLDING
2899 static char *(p_fdm_values[]) = {"manual", "expr", "marker", "indent", "syntax",
2900 # ifdef FEAT_DIFF
2901 "diff",
2902 # endif
2903 NULL};
2904 static char *(p_fcl_values[]) = {"all", NULL};
2905 #endif
2906 #ifdef FEAT_INS_EXPAND
2907 static char *(p_cot_values[]) = {"menu", "menuone", "longest", "preview", NULL};
2908 #endif
2910 static void set_option_default __ARGS((int, int opt_flags, int compatible));
2911 static void set_options_default __ARGS((int opt_flags));
2912 static char_u *term_bg_default __ARGS((void));
2913 static void did_set_option __ARGS((int opt_idx, int opt_flags, int new_value));
2914 static char_u *illegal_char __ARGS((char_u *, int));
2915 static int string_to_key __ARGS((char_u *arg));
2916 #ifdef FEAT_CMDWIN
2917 static char_u *check_cedit __ARGS((void));
2918 #endif
2919 #ifdef FEAT_TITLE
2920 static void did_set_title __ARGS((int icon));
2921 #endif
2922 static char_u *option_expand __ARGS((int opt_idx, char_u *val));
2923 static void didset_options __ARGS((void));
2924 static void check_string_option __ARGS((char_u **pp));
2925 #if defined(FEAT_EVAL) || defined(PROTO)
2926 static long_u *insecure_flag __ARGS((int opt_idx, int opt_flags));
2927 #else
2928 # define insecure_flag(opt_idx, opt_flags) (&options[opt_idx].flags)
2929 #endif
2930 static void set_string_option_global __ARGS((int opt_idx, char_u **varp));
2931 static void set_string_option __ARGS((int opt_idx, char_u *value, int opt_flags));
2932 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));
2933 static char_u *set_chars_option __ARGS((char_u **varp));
2934 #ifdef FEAT_CLIPBOARD
2935 static char_u *check_clipboard_option __ARGS((void));
2936 #endif
2937 #ifdef FEAT_SPELL
2938 static char_u *compile_cap_prog __ARGS((buf_T *buf));
2939 #endif
2940 #ifdef FEAT_EVAL
2941 static void set_option_scriptID_idx __ARGS((int opt_idx, int opt_flags, int id));
2942 #endif
2943 static char_u *set_bool_option __ARGS((int opt_idx, char_u *varp, int value, int opt_flags));
2944 static char_u *set_num_option __ARGS((int opt_idx, char_u *varp, long value, char_u *errbuf, size_t errbuflen, int opt_flags));
2945 static void check_redraw __ARGS((long_u flags));
2946 static int findoption __ARGS((char_u *));
2947 static int find_key_option __ARGS((char_u *));
2948 static void showoptions __ARGS((int all, int opt_flags));
2949 static int optval_default __ARGS((struct vimoption *, char_u *varp));
2950 static void showoneopt __ARGS((struct vimoption *, int opt_flags));
2951 static int put_setstring __ARGS((FILE *fd, char *cmd, char *name, char_u **valuep, int expand));
2952 static int put_setnum __ARGS((FILE *fd, char *cmd, char *name, long *valuep));
2953 static int put_setbool __ARGS((FILE *fd, char *cmd, char *name, int value));
2954 static int istermoption __ARGS((struct vimoption *));
2955 static char_u *get_varp_scope __ARGS((struct vimoption *p, int opt_flags));
2956 static char_u *get_varp __ARGS((struct vimoption *));
2957 static void option_value2string __ARGS((struct vimoption *, int opt_flags));
2958 static int wc_use_keyname __ARGS((char_u *varp, long *wcp));
2959 #ifdef FEAT_LANGMAP
2960 static void langmap_init __ARGS((void));
2961 static void langmap_set __ARGS((void));
2962 #endif
2963 static void paste_option_changed __ARGS((void));
2964 static void compatible_set __ARGS((void));
2965 #ifdef FEAT_LINEBREAK
2966 static void fill_breakat_flags __ARGS((void));
2967 #endif
2968 static int opt_strings_flags __ARGS((char_u *val, char **values, unsigned *flagp, int list));
2969 static int check_opt_strings __ARGS((char_u *val, char **values, int));
2970 static int check_opt_wim __ARGS((void));
2973 * Initialize the options, first part.
2975 * Called only once from main(), just after creating the first buffer.
2977 void
2978 set_init_1()
2980 char_u *p;
2981 int opt_idx;
2982 long_u n;
2984 #ifdef FEAT_LANGMAP
2985 langmap_init();
2986 #endif
2988 /* Be Vi compatible by default */
2989 p_cp = TRUE;
2991 /* Use POSIX compatibility when $VIM_POSIX is set. */
2992 if (mch_getenv((char_u *)"VIM_POSIX") != NULL)
2994 set_string_default("cpo", (char_u *)CPO_ALL);
2995 set_string_default("shm", (char_u *)"A");
2999 * Find default value for 'shell' option.
3000 * Don't use it if it is empty.
3002 if (((p = mch_getenv((char_u *)"SHELL")) != NULL && *p != NUL)
3003 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
3004 # ifdef __EMX__
3005 || ((p = mch_getenv((char_u *)"EMXSHELL")) != NULL && *p != NUL)
3006 # endif
3007 || ((p = mch_getenv((char_u *)"COMSPEC")) != NULL && *p != NUL)
3008 # ifdef WIN3264
3009 || ((p = default_shell()) != NULL && *p != NUL)
3010 # endif
3011 #endif
3013 set_string_default("sh", p);
3015 #ifdef FEAT_WILDIGN
3017 * Set the default for 'backupskip' to include environment variables for
3018 * temp files.
3021 # ifdef UNIX
3022 static char *(names[4]) = {"", "TMPDIR", "TEMP", "TMP"};
3023 # else
3024 static char *(names[3]) = {"TMPDIR", "TEMP", "TMP"};
3025 # endif
3026 int len;
3027 garray_T ga;
3028 int mustfree;
3030 ga_init2(&ga, 1, 100);
3031 for (n = 0; n < (long)(sizeof(names) / sizeof(char *)); ++n)
3033 mustfree = FALSE;
3034 # ifdef UNIX
3035 if (*names[n] == NUL)
3036 p = (char_u *)"/tmp";
3037 else
3038 # endif
3039 p = vim_getenv((char_u *)names[n], &mustfree);
3040 if (p != NULL && *p != NUL)
3042 /* First time count the NUL, otherwise count the ','. */
3043 len = (int)STRLEN(p) + 3;
3044 if (ga_grow(&ga, len) == OK)
3046 if (ga.ga_len > 0)
3047 STRCAT(ga.ga_data, ",");
3048 STRCAT(ga.ga_data, p);
3049 add_pathsep(ga.ga_data);
3050 STRCAT(ga.ga_data, "*");
3051 ga.ga_len += len;
3054 if (mustfree)
3055 vim_free(p);
3057 if (ga.ga_data != NULL)
3059 set_string_default("bsk", ga.ga_data);
3060 vim_free(ga.ga_data);
3063 #endif
3066 * 'maxmemtot' and 'maxmem' may have to be adjusted for available memory
3068 opt_idx = findoption((char_u *)"maxmemtot");
3069 if (opt_idx >= 0)
3071 #if !defined(HAVE_AVAIL_MEM) && !defined(HAVE_TOTAL_MEM)
3072 if (options[opt_idx].def_val[VI_DEFAULT] == (char_u *)0L)
3073 #endif
3075 #ifdef HAVE_AVAIL_MEM
3076 /* Use amount of memory available at this moment. */
3077 n = (mch_avail_mem(FALSE) >> 11);
3078 #else
3079 # ifdef HAVE_TOTAL_MEM
3080 /* Use amount of memory available to Vim. */
3081 n = (mch_total_mem(FALSE) >> 1);
3082 # else
3083 n = (0x7fffffff >> 11);
3084 # endif
3085 #endif
3086 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)n;
3087 opt_idx = findoption((char_u *)"maxmem");
3088 if (opt_idx >= 0)
3090 #if !defined(HAVE_AVAIL_MEM) && !defined(HAVE_TOTAL_MEM)
3091 if ((long)options[opt_idx].def_val[VI_DEFAULT] > n
3092 || (long)options[opt_idx].def_val[VI_DEFAULT] == 0L)
3093 #endif
3094 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)n;
3099 #ifdef FEAT_GUI_W32
3100 /* force 'shortname' for Win32s */
3101 if (gui_is_win32s())
3103 opt_idx = findoption((char_u *)"shortname");
3104 if (opt_idx >= 0)
3105 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)TRUE;
3107 #endif
3109 #ifdef FEAT_SEARCHPATH
3111 char_u *cdpath;
3112 char_u *buf;
3113 int i;
3114 int j;
3115 int mustfree = FALSE;
3117 /* Initialize the 'cdpath' option's default value. */
3118 cdpath = vim_getenv((char_u *)"CDPATH", &mustfree);
3119 if (cdpath != NULL)
3121 buf = alloc((unsigned)((STRLEN(cdpath) << 1) + 2));
3122 if (buf != NULL)
3124 buf[0] = ','; /* start with ",", current dir first */
3125 j = 1;
3126 for (i = 0; cdpath[i] != NUL; ++i)
3128 if (vim_ispathlistsep(cdpath[i]))
3129 buf[j++] = ',';
3130 else
3132 if (cdpath[i] == ' ' || cdpath[i] == ',')
3133 buf[j++] = '\\';
3134 buf[j++] = cdpath[i];
3137 buf[j] = NUL;
3138 opt_idx = findoption((char_u *)"cdpath");
3139 if (opt_idx >= 0)
3141 options[opt_idx].def_val[VI_DEFAULT] = buf;
3142 options[opt_idx].flags |= P_DEF_ALLOCED;
3145 if (mustfree)
3146 vim_free(cdpath);
3149 #endif
3151 #if defined(FEAT_POSTSCRIPT) && (defined(MSWIN) || defined(OS2) || defined(VMS) || defined(EBCDIC) || defined(MAC) || defined(hpux))
3152 /* Set print encoding on platforms that don't default to latin1 */
3153 set_string_default("penc",
3154 # if defined(MSWIN) || defined(OS2)
3155 (char_u *)"cp1252"
3156 # else
3157 # ifdef VMS
3158 (char_u *)"dec-mcs"
3159 # else
3160 # ifdef EBCDIC
3161 (char_u *)"ebcdic-uk"
3162 # else
3163 # ifdef MAC
3164 (char_u *)"mac-roman"
3165 # else /* HPUX */
3166 (char_u *)"hp-roman8"
3167 # endif
3168 # endif
3169 # endif
3170 # endif
3172 #endif
3174 #ifdef FEAT_POSTSCRIPT
3175 /* 'printexpr' must be allocated to be able to evaluate it. */
3176 set_string_default("pexpr",
3177 # if defined(MSWIN) || defined(MSDOS) || defined(OS2)
3178 (char_u *)"system('copy' . ' ' . v:fname_in . (&printdevice == '' ? ' LPT1:' : (' \"' . &printdevice . '\"'))) . delete(v:fname_in)"
3179 # else
3180 # ifdef VMS
3181 (char_u *)"system('print/delete' . (&printdevice == '' ? '' : ' /queue=' . &printdevice) . ' ' . v:fname_in)"
3183 # else
3184 (char_u *)"system('lpr' . (&printdevice == '' ? '' : ' -P' . &printdevice) . ' ' . v:fname_in) . delete(v:fname_in) + v:shell_error"
3185 # endif
3186 # endif
3188 #endif
3191 * Set all the options (except the terminal options) to their default
3192 * value. Also set the global value for local options.
3194 set_options_default(0);
3196 #ifdef FEAT_GUI
3197 if (found_reverse_arg)
3198 set_option_value((char_u *)"bg", 0L, (char_u *)"dark", 0);
3199 #endif
3201 curbuf->b_p_initialized = TRUE;
3202 curbuf->b_p_ar = -1; /* no local 'autoread' value */
3203 check_buf_options(curbuf);
3204 check_win_options(curwin);
3205 check_options();
3207 /* Must be before option_expand(), because that one needs vim_isIDc() */
3208 didset_options();
3210 #ifdef FEAT_SPELL
3211 /* Use the current chartab for the generic chartab. */
3212 init_spell_chartab();
3213 #endif
3215 #ifdef FEAT_LINEBREAK
3217 * initialize the table for 'breakat'.
3219 fill_breakat_flags();
3220 #endif
3223 * Expand environment variables and things like "~" for the defaults.
3224 * If option_expand() returns non-NULL the variable is expanded. This can
3225 * only happen for non-indirect options.
3226 * Also set the default to the expanded value, so ":set" does not list
3227 * them.
3228 * Don't set the P_ALLOCED flag, because we don't want to free the
3229 * default.
3231 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
3233 if ((options[opt_idx].flags & P_GETTEXT)
3234 && options[opt_idx].var != NULL)
3235 p = (char_u *)_(*(char **)options[opt_idx].var);
3236 else
3237 p = option_expand(opt_idx, NULL);
3238 if (p != NULL && (p = vim_strsave(p)) != NULL)
3240 *(char_u **)options[opt_idx].var = p;
3241 /* VIMEXP
3242 * Defaults for all expanded options are currently the same for Vi
3243 * and Vim. When this changes, add some code here! Also need to
3244 * split P_DEF_ALLOCED in two.
3246 if (options[opt_idx].flags & P_DEF_ALLOCED)
3247 vim_free(options[opt_idx].def_val[VI_DEFAULT]);
3248 options[opt_idx].def_val[VI_DEFAULT] = p;
3249 options[opt_idx].flags |= P_DEF_ALLOCED;
3253 /* Initialize the highlight_attr[] table. */
3254 highlight_changed();
3256 save_file_ff(curbuf); /* Buffer is unchanged */
3258 /* Parse default for 'wildmode' */
3259 check_opt_wim();
3261 #if defined(FEAT_ARABIC)
3262 /* Detect use of mlterm.
3263 * Mlterm is a terminal emulator akin to xterm that has some special
3264 * abilities (bidi namely).
3265 * NOTE: mlterm's author is being asked to 'set' a variable
3266 * instead of an environment variable due to inheritance.
3268 if (mch_getenv((char_u *)"MLTERM") != NULL)
3269 set_option_value((char_u *)"tbidi", 1L, NULL, 0);
3270 #endif
3272 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
3273 /* Parse default for 'fillchars'. */
3274 (void)set_chars_option(&p_fcs);
3275 #endif
3277 #ifdef FEAT_CLIPBOARD
3278 /* Parse default for 'clipboard' */
3279 (void)check_clipboard_option();
3280 #endif
3282 #ifdef FEAT_MBYTE
3283 # if defined(WIN3264) && defined(FEAT_GETTEXT)
3285 * If $LANG isn't set, try to get a good value for it. This makes the
3286 * right language be used automatically. Don't do this for English.
3288 if (mch_getenv((char_u *)"LANG") == NULL)
3290 char buf[20];
3292 /* Could use LOCALE_SISO639LANGNAME, but it's not in Win95.
3293 * LOCALE_SABBREVLANGNAME gives us three letters, like "enu", we use
3294 * only the first two. */
3295 n = GetLocaleInfo(LOCALE_USER_DEFAULT, LOCALE_SABBREVLANGNAME,
3296 (LPTSTR)buf, 20);
3297 if (n >= 2 && STRNICMP(buf, "en", 2) != 0)
3299 /* There are a few exceptions (probably more) */
3300 if (STRNICMP(buf, "cht", 3) == 0 || STRNICMP(buf, "zht", 3) == 0)
3301 STRCPY(buf, "zh_TW");
3302 else if (STRNICMP(buf, "chs", 3) == 0
3303 || STRNICMP(buf, "zhc", 3) == 0)
3304 STRCPY(buf, "zh_CN");
3305 else if (STRNICMP(buf, "jp", 2) == 0)
3306 STRCPY(buf, "ja");
3307 else
3308 buf[2] = NUL; /* truncate to two-letter code */
3309 vim_setenv("LANG", buf);
3312 # else
3313 # ifdef MACOS_CONVERT
3314 /* Moved to os_mac_conv.c to avoid dependency problems. */
3315 mac_lang_init();
3316 # endif
3317 # endif
3319 /* enc_locale() will try to find the encoding of the current locale. */
3320 p = enc_locale();
3321 if (p != NULL)
3323 char_u *save_enc;
3325 /* Try setting 'encoding' and check if the value is valid.
3326 * If not, go back to the default "latin1". */
3327 save_enc = p_enc;
3328 p_enc = p;
3329 if (STRCMP(p_enc, "gb18030") == 0)
3331 /* We don't support "gb18030", but "cp936" is a good substitute
3332 * for practical purposes, thus use that. It's not an alias to
3333 * still support conversion between gb18030 and utf-8. */
3334 p_enc = vim_strsave((char_u *)"cp936");
3335 vim_free(p);
3337 if (mb_init() == NULL)
3339 opt_idx = findoption((char_u *)"encoding");
3340 if (opt_idx >= 0)
3342 options[opt_idx].def_val[VI_DEFAULT] = p_enc;
3343 options[opt_idx].flags |= P_DEF_ALLOCED;
3346 #if defined(MSDOS) || defined(MSWIN) || defined(OS2) || defined(MACOS) \
3347 || defined(VMS)
3348 if (STRCMP(p_enc, "latin1") == 0
3349 # ifdef FEAT_MBYTE
3350 || enc_utf8
3351 # endif
3354 /* Adjust the default for 'isprint' and 'iskeyword' to match
3355 * latin1. Also set the defaults for when 'nocompatible' is
3356 * set. */
3357 set_string_option_direct((char_u *)"isp", -1,
3358 ISP_LATIN1, OPT_FREE, SID_NONE);
3359 set_string_option_direct((char_u *)"isk", -1,
3360 ISK_LATIN1, OPT_FREE, SID_NONE);
3361 opt_idx = findoption((char_u *)"isp");
3362 if (opt_idx >= 0)
3363 options[opt_idx].def_val[VIM_DEFAULT] = ISP_LATIN1;
3364 opt_idx = findoption((char_u *)"isk");
3365 if (opt_idx >= 0)
3366 options[opt_idx].def_val[VIM_DEFAULT] = ISK_LATIN1;
3367 (void)init_chartab();
3369 #endif
3371 # if defined(WIN3264) && !defined(FEAT_GUI)
3372 /* Win32 console: When GetACP() returns a different value from
3373 * GetConsoleCP() set 'termencoding'. */
3374 if (GetACP() != GetConsoleCP())
3376 char buf[50];
3378 sprintf(buf, "cp%ld", (long)GetConsoleCP());
3379 p_tenc = vim_strsave((char_u *)buf);
3380 if (p_tenc != NULL)
3382 opt_idx = findoption((char_u *)"termencoding");
3383 if (opt_idx >= 0)
3385 options[opt_idx].def_val[VI_DEFAULT] = p_tenc;
3386 options[opt_idx].flags |= P_DEF_ALLOCED;
3388 convert_setup(&input_conv, p_tenc, p_enc);
3389 convert_setup(&output_conv, p_enc, p_tenc);
3391 else
3392 p_tenc = empty_option;
3394 # endif
3395 # if defined(WIN3264) && defined(FEAT_MBYTE)
3396 /* $HOME may have characters in active code page. */
3397 init_homedir();
3398 # endif
3400 else
3402 vim_free(p_enc);
3403 p_enc = save_enc;
3406 #endif
3408 #ifdef FEAT_MULTI_LANG
3409 /* Set the default for 'helplang'. */
3410 set_helplang_default(get_mess_lang());
3411 #endif
3415 * Set an option to its default value.
3416 * This does not take care of side effects!
3418 static void
3419 set_option_default(opt_idx, opt_flags, compatible)
3420 int opt_idx;
3421 int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */
3422 int compatible; /* use Vi default value */
3424 char_u *varp; /* pointer to variable for current option */
3425 int dvi; /* index in def_val[] */
3426 long_u flags;
3427 long_u *flagsp;
3428 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
3430 varp = get_varp_scope(&(options[opt_idx]), both ? OPT_LOCAL : opt_flags);
3431 flags = options[opt_idx].flags;
3432 if (varp != NULL) /* skip hidden option, nothing to do for it */
3434 dvi = ((flags & P_VI_DEF) || compatible) ? VI_DEFAULT : VIM_DEFAULT;
3435 if (flags & P_STRING)
3437 /* Use set_string_option_direct() for local options to handle
3438 * freeing and allocating the value. */
3439 if (options[opt_idx].indir != PV_NONE)
3440 set_string_option_direct(NULL, opt_idx,
3441 options[opt_idx].def_val[dvi], opt_flags, 0);
3442 else
3444 if ((opt_flags & OPT_FREE) && (flags & P_ALLOCED))
3445 free_string_option(*(char_u **)(varp));
3446 *(char_u **)varp = options[opt_idx].def_val[dvi];
3447 options[opt_idx].flags &= ~P_ALLOCED;
3450 else if (flags & P_NUM)
3452 if (options[opt_idx].indir == PV_SCROLL)
3453 win_comp_scroll(curwin);
3454 else
3456 *(long *)varp = (long)(long_i)options[opt_idx].def_val[dvi];
3457 /* May also set global value for local option. */
3458 if (both)
3459 *(long *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) =
3460 *(long *)varp;
3463 else /* P_BOOL */
3465 /* the cast to long is required for Manx C, long_i is needed for
3466 * MSVC */
3467 *(int *)varp = (int)(long)(long_i)options[opt_idx].def_val[dvi];
3468 #ifdef UNIX
3469 /* 'modeline' defaults to off for root */
3470 if (options[opt_idx].indir == PV_ML && getuid() == ROOT_UID)
3471 *(int *)varp = FALSE;
3472 #endif
3473 /* May also set global value for local option. */
3474 if (both)
3475 *(int *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) =
3476 *(int *)varp;
3479 /* The default value is not insecure. */
3480 flagsp = insecure_flag(opt_idx, opt_flags);
3481 *flagsp = *flagsp & ~P_INSECURE;
3484 #ifdef FEAT_EVAL
3485 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
3486 #endif
3490 * Set all options (except terminal options) to their default value.
3492 static void
3493 set_options_default(opt_flags)
3494 int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */
3496 int i;
3497 #ifdef FEAT_WINDOWS
3498 win_T *wp;
3499 tabpage_T *tp;
3500 #endif
3502 for (i = 0; !istermoption(&options[i]); i++)
3503 if (!(options[i].flags & P_NODEFAULT))
3504 set_option_default(i, opt_flags, p_cp);
3506 #ifdef FEAT_WINDOWS
3507 /* The 'scroll' option must be computed for all windows. */
3508 FOR_ALL_TAB_WINDOWS(tp, wp)
3509 win_comp_scroll(wp);
3510 #else
3511 win_comp_scroll(curwin);
3512 #endif
3516 * Set the Vi-default value of a string option.
3517 * Used for 'sh', 'backupskip' and 'term'.
3519 void
3520 set_string_default(name, val)
3521 char *name;
3522 char_u *val;
3524 char_u *p;
3525 int opt_idx;
3527 p = vim_strsave(val);
3528 if (p != NULL) /* we don't want a NULL */
3530 opt_idx = findoption((char_u *)name);
3531 if (opt_idx >= 0)
3533 if (options[opt_idx].flags & P_DEF_ALLOCED)
3534 vim_free(options[opt_idx].def_val[VI_DEFAULT]);
3535 options[opt_idx].def_val[VI_DEFAULT] = p;
3536 options[opt_idx].flags |= P_DEF_ALLOCED;
3542 * Set the Vi-default value of a number option.
3543 * Used for 'lines' and 'columns'.
3545 void
3546 set_number_default(name, val)
3547 char *name;
3548 long val;
3550 int opt_idx;
3552 opt_idx = findoption((char_u *)name);
3553 if (opt_idx >= 0)
3554 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
3557 #if defined(EXITFREE) || defined(PROTO)
3559 * Free all options.
3561 void
3562 free_all_options()
3564 int i;
3566 for (i = 0; !istermoption(&options[i]); i++)
3568 if (options[i].indir == PV_NONE)
3570 /* global option: free value and default value. */
3571 if (options[i].flags & P_ALLOCED && options[i].var != NULL)
3572 free_string_option(*(char_u **)options[i].var);
3573 if (options[i].flags & P_DEF_ALLOCED)
3574 free_string_option(options[i].def_val[VI_DEFAULT]);
3576 else if (options[i].var != VAR_WIN
3577 && (options[i].flags & P_STRING))
3578 /* buffer-local option: free global value */
3579 free_string_option(*(char_u **)options[i].var);
3582 #endif
3586 * Initialize the options, part two: After getting Rows and Columns and
3587 * setting 'term'.
3589 void
3590 set_init_2()
3592 int idx;
3595 * 'scroll' defaults to half the window height. Note that this default is
3596 * wrong when the window height changes.
3598 set_number_default("scroll", (long)((long_u)Rows >> 1));
3599 idx = findoption((char_u *)"scroll");
3600 if (idx >= 0 && !(options[idx].flags & P_WAS_SET))
3601 set_option_default(idx, OPT_LOCAL, p_cp);
3602 comp_col();
3605 * 'window' is only for backwards compatibility with Vi.
3606 * Default is Rows - 1.
3608 if (!option_was_set((char_u *)"window"))
3609 p_window = Rows - 1;
3610 set_number_default("window", Rows - 1);
3612 /* For DOS console the default is always black. */
3613 #if !((defined(MSDOS) || defined(OS2) || defined(WIN3264)) && !defined(FEAT_GUI))
3615 * If 'background' wasn't set by the user, try guessing the value,
3616 * depending on the terminal name. Only need to check for terminals
3617 * with a dark background, that can handle color.
3619 idx = findoption((char_u *)"bg");
3620 if (idx >= 0 && !(options[idx].flags & P_WAS_SET)
3621 && *term_bg_default() == 'd')
3623 set_string_option_direct(NULL, idx, (char_u *)"dark", OPT_FREE, 0);
3624 /* don't mark it as set, when starting the GUI it may be
3625 * changed again */
3626 options[idx].flags &= ~P_WAS_SET;
3628 #endif
3630 #ifdef CURSOR_SHAPE
3631 parse_shape_opt(SHAPE_CURSOR); /* set cursor shapes from 'guicursor' */
3632 #endif
3633 #ifdef FEAT_MOUSESHAPE
3634 parse_shape_opt(SHAPE_MOUSE); /* set mouse shapes from 'mouseshape' */
3635 #endif
3636 #ifdef FEAT_PRINTER
3637 (void)parse_printoptions(); /* parse 'printoptions' default value */
3638 #endif
3642 * Return "dark" or "light" depending on the kind of terminal.
3643 * This is just guessing! Recognized are:
3644 * "linux" Linux console
3645 * "screen.linux" Linux console with screen
3646 * "cygwin" Cygwin shell
3647 * "putty" Putty program
3648 * We also check the COLORFGBG environment variable, which is set by
3649 * rxvt and derivatives. This variable contains either two or three
3650 * values separated by semicolons; we want the last value in either
3651 * case. If this value is 0-6 or 8, our background is dark.
3653 static char_u *
3654 term_bg_default()
3656 #if defined(MSDOS) || defined(OS2) || defined(WIN3264)
3657 /* DOS console nearly always black */
3658 return (char_u *)"dark";
3659 #else
3660 char_u *p;
3662 if (STRCMP(T_NAME, "linux") == 0
3663 || STRCMP(T_NAME, "screen.linux") == 0
3664 || STRCMP(T_NAME, "cygwin") == 0
3665 || STRCMP(T_NAME, "putty") == 0
3666 || ((p = mch_getenv((char_u *)"COLORFGBG")) != NULL
3667 && (p = vim_strrchr(p, ';')) != NULL
3668 && ((p[1] >= '0' && p[1] <= '6') || p[1] == '8')
3669 && p[2] == NUL))
3670 return (char_u *)"dark";
3671 return (char_u *)"light";
3672 #endif
3676 * Initialize the options, part three: After reading the .vimrc
3678 void
3679 set_init_3()
3681 #if defined(UNIX) || defined(OS2) || defined(WIN3264)
3683 * Set 'shellpipe' and 'shellredir', depending on the 'shell' option.
3684 * This is done after other initializations, where 'shell' might have been
3685 * set, but only if they have not been set before.
3687 char_u *p;
3688 int idx_srr;
3689 int do_srr;
3690 #ifdef FEAT_QUICKFIX
3691 int idx_sp;
3692 int do_sp;
3693 #endif
3695 idx_srr = findoption((char_u *)"srr");
3696 if (idx_srr < 0)
3697 do_srr = FALSE;
3698 else
3699 do_srr = !(options[idx_srr].flags & P_WAS_SET);
3700 #ifdef FEAT_QUICKFIX
3701 idx_sp = findoption((char_u *)"sp");
3702 if (idx_sp < 0)
3703 do_sp = FALSE;
3704 else
3705 do_sp = !(options[idx_sp].flags & P_WAS_SET);
3706 #endif
3709 * Isolate the name of the shell:
3710 * - Skip beyond any path. E.g., "/usr/bin/csh -f" -> "csh -f".
3711 * - Remove any argument. E.g., "csh -f" -> "csh".
3713 p = gettail(p_sh);
3714 p = vim_strnsave(p, (int)(skiptowhite(p) - p));
3715 if (p != NULL)
3718 * Default for p_sp is "| tee", for p_srr is ">".
3719 * For known shells it is changed here to include stderr.
3721 if ( fnamecmp(p, "csh") == 0
3722 || fnamecmp(p, "tcsh") == 0
3723 # if defined(OS2) || defined(WIN3264) /* also check with .exe extension */
3724 || fnamecmp(p, "csh.exe") == 0
3725 || fnamecmp(p, "tcsh.exe") == 0
3726 # endif
3729 #if defined(FEAT_QUICKFIX)
3730 if (do_sp)
3732 # ifdef WIN3264
3733 p_sp = (char_u *)">&";
3734 # else
3735 p_sp = (char_u *)"|& tee";
3736 # endif
3737 options[idx_sp].def_val[VI_DEFAULT] = p_sp;
3739 #endif
3740 if (do_srr)
3742 p_srr = (char_u *)">&";
3743 options[idx_srr].def_val[VI_DEFAULT] = p_srr;
3746 else
3747 # ifndef OS2 /* Always use bourne shell style redirection if we reach this */
3748 if ( fnamecmp(p, "sh") == 0
3749 || fnamecmp(p, "ksh") == 0
3750 || fnamecmp(p, "zsh") == 0
3751 || fnamecmp(p, "zsh-beta") == 0
3752 || fnamecmp(p, "bash") == 0
3753 # ifdef WIN3264
3754 || fnamecmp(p, "cmd") == 0
3755 || fnamecmp(p, "sh.exe") == 0
3756 || fnamecmp(p, "ksh.exe") == 0
3757 || fnamecmp(p, "zsh.exe") == 0
3758 || fnamecmp(p, "zsh-beta.exe") == 0
3759 || fnamecmp(p, "bash.exe") == 0
3760 || fnamecmp(p, "cmd.exe") == 0
3761 # endif
3763 # endif
3765 #if defined(FEAT_QUICKFIX)
3766 if (do_sp)
3768 # ifdef WIN3264
3769 p_sp = (char_u *)">%s 2>&1";
3770 # else
3771 p_sp = (char_u *)"2>&1| tee";
3772 # endif
3773 options[idx_sp].def_val[VI_DEFAULT] = p_sp;
3775 #endif
3776 if (do_srr)
3778 p_srr = (char_u *)">%s 2>&1";
3779 options[idx_srr].def_val[VI_DEFAULT] = p_srr;
3782 vim_free(p);
3784 #endif
3786 #if defined(MSDOS) || defined(WIN3264) || defined(OS2)
3788 * Set 'shellcmdflag and 'shellquote' depending on the 'shell' option.
3789 * This is done after other initializations, where 'shell' might have been
3790 * set, but only if they have not been set before. Default for p_shcf is
3791 * "/c", for p_shq is "". For "sh" like shells it is changed here to
3792 * "-c" and "\"", but not for DJGPP, because it starts the shell without
3793 * command.com. And for Win32 we need to set p_sxq instead.
3795 if (strstr((char *)gettail(p_sh), "sh") != NULL)
3797 int idx3;
3799 idx3 = findoption((char_u *)"shcf");
3800 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
3802 p_shcf = (char_u *)"-c";
3803 options[idx3].def_val[VI_DEFAULT] = p_shcf;
3806 # ifndef DJGPP
3807 # ifdef WIN3264
3808 /* Somehow Win32 requires the quotes around the redirection too */
3809 idx3 = findoption((char_u *)"sxq");
3810 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
3812 p_sxq = (char_u *)"\"";
3813 options[idx3].def_val[VI_DEFAULT] = p_sxq;
3815 # else
3816 idx3 = findoption((char_u *)"shq");
3817 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
3819 p_shq = (char_u *)"\"";
3820 options[idx3].def_val[VI_DEFAULT] = p_shq;
3822 # endif
3823 # endif
3825 #endif
3827 #ifdef FEAT_TITLE
3828 set_title_defaults();
3829 #endif
3832 #if defined(FEAT_MULTI_LANG) || defined(PROTO)
3834 * When 'helplang' is still at its default value, set it to "lang".
3835 * Only the first two characters of "lang" are used.
3837 void
3838 set_helplang_default(lang)
3839 char_u *lang;
3841 int idx;
3843 if (lang == NULL || STRLEN(lang) < 2) /* safety check */
3844 return;
3845 idx = findoption((char_u *)"hlg");
3846 if (idx >= 0 && !(options[idx].flags & P_WAS_SET))
3848 if (options[idx].flags & P_ALLOCED)
3849 free_string_option(p_hlg);
3850 p_hlg = vim_strsave(lang);
3851 if (p_hlg == NULL)
3852 p_hlg = empty_option;
3853 else
3855 /* zh_CN becomes "cn", zh_TW becomes "tw". */
3856 if (STRNICMP(p_hlg, "zh_", 3) == 0 && STRLEN(p_hlg) >= 5)
3858 p_hlg[0] = TOLOWER_ASC(p_hlg[3]);
3859 p_hlg[1] = TOLOWER_ASC(p_hlg[4]);
3861 p_hlg[2] = NUL;
3863 options[idx].flags |= P_ALLOCED;
3866 #endif
3868 #ifdef FEAT_GUI
3869 static char_u *gui_bg_default __ARGS((void));
3871 static char_u *
3872 gui_bg_default()
3874 if (gui_get_lightness(gui.back_pixel) < 127)
3875 return (char_u *)"dark";
3876 return (char_u *)"light";
3880 * Option initializations that can only be done after opening the GUI window.
3882 void
3883 init_gui_options()
3885 /* Set the 'background' option according to the lightness of the
3886 * background color, unless the user has set it already. */
3887 if (!option_was_set((char_u *)"bg") && STRCMP(p_bg, gui_bg_default()) != 0)
3889 set_option_value((char_u *)"bg", 0L, gui_bg_default(), 0);
3890 highlight_changed();
3893 #endif
3895 #ifdef FEAT_TITLE
3897 * 'title' and 'icon' only default to true if they have not been set or reset
3898 * in .vimrc and we can read the old value.
3899 * When 'title' and 'icon' have been reset in .vimrc, we won't even check if
3900 * they can be reset. This reduces startup time when using X on a remote
3901 * machine.
3903 void
3904 set_title_defaults()
3906 int idx1;
3907 long val;
3910 * If GUI is (going to be) used, we can always set the window title and
3911 * icon name. Saves a bit of time, because the X11 display server does
3912 * not need to be contacted.
3914 idx1 = findoption((char_u *)"title");
3915 if (idx1 >= 0 && !(options[idx1].flags & P_WAS_SET))
3917 #ifdef FEAT_GUI
3918 if (gui.starting || gui.in_use)
3919 val = TRUE;
3920 else
3921 #endif
3922 val = mch_can_restore_title();
3923 options[idx1].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
3924 p_title = val;
3926 idx1 = findoption((char_u *)"icon");
3927 if (idx1 >= 0 && !(options[idx1].flags & P_WAS_SET))
3929 #ifdef FEAT_GUI
3930 if (gui.starting || gui.in_use)
3931 val = TRUE;
3932 else
3933 #endif
3934 val = mch_can_restore_icon();
3935 options[idx1].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
3936 p_icon = val;
3939 #endif
3942 * Parse 'arg' for option settings.
3944 * 'arg' may be IObuff, but only when no errors can be present and option
3945 * does not need to be expanded with option_expand().
3946 * "opt_flags":
3947 * 0 for ":set"
3948 * OPT_GLOBAL for ":setglobal"
3949 * OPT_LOCAL for ":setlocal" and a modeline
3950 * OPT_MODELINE for a modeline
3951 * OPT_WINONLY to only set window-local options
3952 * OPT_NOWIN to skip setting window-local options
3954 * returns FAIL if an error is detected, OK otherwise
3957 do_set(arg, opt_flags)
3958 char_u *arg; /* option string (may be written to!) */
3959 int opt_flags;
3961 int opt_idx;
3962 char_u *errmsg;
3963 char_u errbuf[80];
3964 char_u *startarg;
3965 int prefix; /* 1: nothing, 0: "no", 2: "inv" in front of name */
3966 int nextchar; /* next non-white char after option name */
3967 int afterchar; /* character just after option name */
3968 int len;
3969 int i;
3970 long value;
3971 int key;
3972 long_u flags; /* flags for current option */
3973 char_u *varp = NULL; /* pointer to variable for current option */
3974 int did_show = FALSE; /* already showed one value */
3975 int adding; /* "opt+=arg" */
3976 int prepending; /* "opt^=arg" */
3977 int removing; /* "opt-=arg" */
3978 int cp_val = 0;
3979 char_u key_name[2];
3981 if (*arg == NUL)
3983 showoptions(0, opt_flags);
3984 did_show = TRUE;
3985 goto theend;
3988 while (*arg != NUL) /* loop to process all options */
3990 errmsg = NULL;
3991 startarg = arg; /* remember for error message */
3993 if (STRNCMP(arg, "all", 3) == 0 && !isalpha(arg[3])
3994 && !(opt_flags & OPT_MODELINE))
3997 * ":set all" show all options.
3998 * ":set all&" set all options to their default value.
4000 arg += 3;
4001 if (*arg == '&')
4003 ++arg;
4004 /* Only for :set command set global value of local options. */
4005 set_options_default(OPT_FREE | opt_flags);
4007 else
4009 showoptions(1, opt_flags);
4010 did_show = TRUE;
4013 else if (STRNCMP(arg, "termcap", 7) == 0 && !(opt_flags & OPT_MODELINE))
4015 showoptions(2, opt_flags);
4016 show_termcodes();
4017 did_show = TRUE;
4018 arg += 7;
4020 else
4022 prefix = 1;
4023 if (STRNCMP(arg, "no", 2) == 0 && STRNCMP(arg, "novice", 6) != 0)
4025 prefix = 0;
4026 arg += 2;
4028 else if (STRNCMP(arg, "inv", 3) == 0)
4030 prefix = 2;
4031 arg += 3;
4034 /* find end of name */
4035 key = 0;
4036 if (*arg == '<')
4038 nextchar = 0;
4039 opt_idx = -1;
4040 /* look out for <t_>;> */
4041 if (arg[1] == 't' && arg[2] == '_' && arg[3] && arg[4])
4042 len = 5;
4043 else
4045 len = 1;
4046 while (arg[len] != NUL && arg[len] != '>')
4047 ++len;
4049 if (arg[len] != '>')
4051 errmsg = e_invarg;
4052 goto skip;
4054 arg[len] = NUL; /* put NUL after name */
4055 if (arg[1] == 't' && arg[2] == '_') /* could be term code */
4056 opt_idx = findoption(arg + 1);
4057 arg[len++] = '>'; /* restore '>' */
4058 if (opt_idx == -1)
4059 key = find_key_option(arg + 1);
4061 else
4063 len = 0;
4065 * The two characters after "t_" may not be alphanumeric.
4067 if (arg[0] == 't' && arg[1] == '_' && arg[2] && arg[3])
4068 len = 4;
4069 else
4070 while (ASCII_ISALNUM(arg[len]) || arg[len] == '_')
4071 ++len;
4072 nextchar = arg[len];
4073 arg[len] = NUL; /* put NUL after name */
4074 opt_idx = findoption(arg);
4075 arg[len] = nextchar; /* restore nextchar */
4076 if (opt_idx == -1)
4077 key = find_key_option(arg);
4080 /* remember character after option name */
4081 afterchar = arg[len];
4083 /* skip white space, allow ":set ai ?" */
4084 while (vim_iswhite(arg[len]))
4085 ++len;
4087 adding = FALSE;
4088 prepending = FALSE;
4089 removing = FALSE;
4090 if (arg[len] != NUL && arg[len + 1] == '=')
4092 if (arg[len] == '+')
4094 adding = TRUE; /* "+=" */
4095 ++len;
4097 else if (arg[len] == '^')
4099 prepending = TRUE; /* "^=" */
4100 ++len;
4102 else if (arg[len] == '-')
4104 removing = TRUE; /* "-=" */
4105 ++len;
4108 nextchar = arg[len];
4110 if (opt_idx == -1 && key == 0) /* found a mismatch: skip */
4112 errmsg = (char_u *)N_("E518: Unknown option");
4113 goto skip;
4116 if (opt_idx >= 0)
4118 if (options[opt_idx].var == NULL) /* hidden option: skip */
4120 /* Only give an error message when requesting the value of
4121 * a hidden option, ignore setting it. */
4122 if (vim_strchr((char_u *)"=:!&<", nextchar) == NULL
4123 && (!(options[opt_idx].flags & P_BOOL)
4124 || nextchar == '?'))
4125 errmsg = (char_u *)N_("E519: Option not supported");
4126 goto skip;
4129 flags = options[opt_idx].flags;
4130 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
4132 else
4134 flags = P_STRING;
4135 if (key < 0)
4137 key_name[0] = KEY2TERMCAP0(key);
4138 key_name[1] = KEY2TERMCAP1(key);
4140 else
4142 key_name[0] = KS_KEY;
4143 key_name[1] = (key & 0xff);
4147 /* Skip all options that are not window-local (used when showing
4148 * an already loaded buffer in a window). */
4149 if ((opt_flags & OPT_WINONLY)
4150 && (opt_idx < 0 || options[opt_idx].var != VAR_WIN))
4151 goto skip;
4153 /* Skip all options that are window-local (used for :vimgrep). */
4154 if ((opt_flags & OPT_NOWIN) && opt_idx >= 0
4155 && options[opt_idx].var == VAR_WIN)
4156 goto skip;
4158 /* Disallow changing some options from modelines. */
4159 if (opt_flags & OPT_MODELINE)
4161 if (flags & P_SECURE)
4163 errmsg = (char_u *)_("E520: Not allowed in a modeline");
4164 goto skip;
4166 #ifdef FEAT_DIFF
4167 /* In diff mode some options are overruled. This avoids that
4168 * 'foldmethod' becomes "marker" instead of "diff" and that
4169 * "wrap" gets set. */
4170 if (curwin->w_p_diff
4171 && (options[opt_idx].indir == PV_FDM
4172 || options[opt_idx].indir == PV_WRAP))
4173 goto skip;
4174 #endif
4177 #ifdef HAVE_SANDBOX
4178 /* Disallow changing some options in the sandbox */
4179 if (sandbox != 0 && (flags & P_SECURE))
4181 errmsg = (char_u *)_(e_sandbox);
4182 goto skip;
4184 #endif
4186 if (vim_strchr((char_u *)"?=:!&<", nextchar) != NULL)
4188 arg += len;
4189 cp_val = p_cp;
4190 if (nextchar == '&' && arg[1] == 'v' && arg[2] == 'i')
4192 if (arg[3] == 'm') /* "opt&vim": set to Vim default */
4194 cp_val = FALSE;
4195 arg += 3;
4197 else /* "opt&vi": set to Vi default */
4199 cp_val = TRUE;
4200 arg += 2;
4203 if (vim_strchr((char_u *)"?!&<", nextchar) != NULL
4204 && arg[1] != NUL && !vim_iswhite(arg[1]))
4206 errmsg = e_trailing;
4207 goto skip;
4212 * allow '=' and ':' as MSDOS command.com allows only one
4213 * '=' character per "set" command line. grrr. (jw)
4215 if (nextchar == '?'
4216 || (prefix == 1
4217 && vim_strchr((char_u *)"=:&<", nextchar) == NULL
4218 && !(flags & P_BOOL)))
4221 * print value
4223 if (did_show)
4224 msg_putchar('\n'); /* cursor below last one */
4225 else
4227 gotocmdline(TRUE); /* cursor at status line */
4228 did_show = TRUE; /* remember that we did a line */
4230 if (opt_idx >= 0)
4232 showoneopt(&options[opt_idx], opt_flags);
4233 #ifdef FEAT_EVAL
4234 if (p_verbose > 0)
4236 /* Mention where the option was last set. */
4237 if (varp == options[opt_idx].var)
4238 last_set_msg(options[opt_idx].scriptID);
4239 else if ((int)options[opt_idx].indir & PV_WIN)
4240 last_set_msg(curwin->w_p_scriptID[
4241 (int)options[opt_idx].indir & PV_MASK]);
4242 else if ((int)options[opt_idx].indir & PV_BUF)
4243 last_set_msg(curbuf->b_p_scriptID[
4244 (int)options[opt_idx].indir & PV_MASK]);
4246 #endif
4248 else
4250 char_u *p;
4252 p = find_termcode(key_name);
4253 if (p == NULL)
4255 errmsg = (char_u *)N_("E518: Unknown option");
4256 goto skip;
4258 else
4259 (void)show_one_termcode(key_name, p, TRUE);
4261 if (nextchar != '?'
4262 && nextchar != NUL && !vim_iswhite(afterchar))
4263 errmsg = e_trailing;
4265 else
4267 if (flags & P_BOOL) /* boolean */
4269 if (nextchar == '=' || nextchar == ':')
4271 errmsg = e_invarg;
4272 goto skip;
4276 * ":set opt!": invert
4277 * ":set opt&": reset to default value
4278 * ":set opt<": reset to global value
4280 if (nextchar == '!')
4281 value = *(int *)(varp) ^ 1;
4282 else if (nextchar == '&')
4283 value = (int)(long)(long_i)options[opt_idx].def_val[
4284 ((flags & P_VI_DEF) || cp_val)
4285 ? VI_DEFAULT : VIM_DEFAULT];
4286 else if (nextchar == '<')
4288 /* For 'autoread' -1 means to use global value. */
4289 if ((int *)varp == &curbuf->b_p_ar
4290 && opt_flags == OPT_LOCAL)
4291 value = -1;
4292 else
4293 value = *(int *)get_varp_scope(&(options[opt_idx]),
4294 OPT_GLOBAL);
4296 else
4299 * ":set invopt": invert
4300 * ":set opt" or ":set noopt": set or reset
4302 if (nextchar != NUL && !vim_iswhite(afterchar))
4304 errmsg = e_trailing;
4305 goto skip;
4307 if (prefix == 2) /* inv */
4308 value = *(int *)(varp) ^ 1;
4309 else
4310 value = prefix;
4313 errmsg = set_bool_option(opt_idx, varp, (int)value,
4314 opt_flags);
4316 else /* numeric or string */
4318 if (vim_strchr((char_u *)"=:&<", nextchar) == NULL
4319 || prefix != 1)
4321 errmsg = e_invarg;
4322 goto skip;
4325 if (flags & P_NUM) /* numeric */
4328 * Different ways to set a number option:
4329 * & set to default value
4330 * < set to global value
4331 * <xx> accept special key codes for 'wildchar'
4332 * c accept any non-digit for 'wildchar'
4333 * [-]0-9 set number
4334 * other error
4336 ++arg;
4337 if (nextchar == '&')
4338 value = (long)(long_i)options[opt_idx].def_val[
4339 ((flags & P_VI_DEF) || cp_val)
4340 ? VI_DEFAULT : VIM_DEFAULT];
4341 else if (nextchar == '<')
4342 value = *(long *)get_varp_scope(&(options[opt_idx]),
4343 OPT_GLOBAL);
4344 else if (((long *)varp == &p_wc
4345 || (long *)varp == &p_wcm)
4346 && (*arg == '<'
4347 || *arg == '^'
4348 || ((!arg[1] || vim_iswhite(arg[1]))
4349 && !VIM_ISDIGIT(*arg))))
4351 value = string_to_key(arg);
4352 if (value == 0 && (long *)varp != &p_wcm)
4354 errmsg = e_invarg;
4355 goto skip;
4358 /* allow negative numbers (for 'undolevels') */
4359 else if (*arg == '-' || VIM_ISDIGIT(*arg))
4361 i = 0;
4362 if (*arg == '-')
4363 i = 1;
4364 #ifdef HAVE_STRTOL
4365 value = strtol((char *)arg, NULL, 0);
4366 if (arg[i] == '0' && TOLOWER_ASC(arg[i + 1]) == 'x')
4367 i += 2;
4368 #else
4369 value = atol((char *)arg);
4370 #endif
4371 while (VIM_ISDIGIT(arg[i]))
4372 ++i;
4373 if (arg[i] != NUL && !vim_iswhite(arg[i]))
4375 errmsg = e_invarg;
4376 goto skip;
4379 else
4381 errmsg = (char_u *)N_("E521: Number required after =");
4382 goto skip;
4385 if (adding)
4386 value = *(long *)varp + value;
4387 if (prepending)
4388 value = *(long *)varp * value;
4389 if (removing)
4390 value = *(long *)varp - value;
4391 errmsg = set_num_option(opt_idx, varp, value,
4392 errbuf, sizeof(errbuf), opt_flags);
4394 else if (opt_idx >= 0) /* string */
4396 char_u *save_arg = NULL;
4397 char_u *s = NULL;
4398 char_u *oldval; /* previous value if *varp */
4399 char_u *newval;
4400 char_u *origval;
4401 unsigned newlen;
4402 int comma;
4403 int bs;
4404 int new_value_alloced; /* new string option
4405 was allocated */
4407 /* When using ":set opt=val" for a global option
4408 * with a local value the local value will be
4409 * reset, use the global value here. */
4410 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
4411 && ((int)options[opt_idx].indir & PV_BOTH))
4412 varp = options[opt_idx].var;
4414 /* The old value is kept until we are sure that the
4415 * new value is valid. */
4416 oldval = *(char_u **)varp;
4417 if (nextchar == '&') /* set to default val */
4419 newval = options[opt_idx].def_val[
4420 ((flags & P_VI_DEF) || cp_val)
4421 ? VI_DEFAULT : VIM_DEFAULT];
4422 if ((char_u **)varp == &p_bg)
4424 /* guess the value of 'background' */
4425 #ifdef FEAT_GUI
4426 if (gui.in_use)
4427 newval = gui_bg_default();
4428 else
4429 #endif
4430 newval = term_bg_default();
4433 /* expand environment variables and ~ (since the
4434 * default value was already expanded, only
4435 * required when an environment variable was set
4436 * later */
4437 if (newval == NULL)
4438 newval = empty_option;
4439 else
4441 s = option_expand(opt_idx, newval);
4442 if (s == NULL)
4443 s = newval;
4444 newval = vim_strsave(s);
4446 new_value_alloced = TRUE;
4448 else if (nextchar == '<') /* set to global val */
4450 newval = vim_strsave(*(char_u **)get_varp_scope(
4451 &(options[opt_idx]), OPT_GLOBAL));
4452 new_value_alloced = TRUE;
4454 else
4456 ++arg; /* jump to after the '=' or ':' */
4459 * Set 'keywordprg' to ":help" if an empty
4460 * value was passed to :set by the user.
4461 * Misuse errbuf[] for the resulting string.
4463 if (varp == (char_u *)&p_kp
4464 && (*arg == NUL || *arg == ' '))
4466 STRCPY(errbuf, ":help");
4467 save_arg = arg;
4468 arg = errbuf;
4471 * Convert 'whichwrap' number to string, for
4472 * backwards compatibility with Vim 3.0.
4473 * Misuse errbuf[] for the resulting string.
4475 else if (varp == (char_u *)&p_ww
4476 && VIM_ISDIGIT(*arg))
4478 *errbuf = NUL;
4479 i = getdigits(&arg);
4480 if (i & 1)
4481 STRCAT(errbuf, "b,");
4482 if (i & 2)
4483 STRCAT(errbuf, "s,");
4484 if (i & 4)
4485 STRCAT(errbuf, "h,l,");
4486 if (i & 8)
4487 STRCAT(errbuf, "<,>,");
4488 if (i & 16)
4489 STRCAT(errbuf, "[,],");
4490 if (*errbuf != NUL) /* remove trailing , */
4491 errbuf[STRLEN(errbuf) - 1] = NUL;
4492 save_arg = arg;
4493 arg = errbuf;
4496 * Remove '>' before 'dir' and 'bdir', for
4497 * backwards compatibility with version 3.0
4499 else if ( *arg == '>'
4500 && (varp == (char_u *)&p_dir
4501 || varp == (char_u *)&p_bdir))
4503 ++arg;
4506 /* When setting the local value of a global
4507 * option, the old value may be the global value. */
4508 if (((int)options[opt_idx].indir & PV_BOTH)
4509 && (opt_flags & OPT_LOCAL))
4510 origval = *(char_u **)get_varp(
4511 &options[opt_idx]);
4512 else
4513 origval = oldval;
4516 * Copy the new string into allocated memory.
4517 * Can't use set_string_option_direct(), because
4518 * we need to remove the backslashes.
4520 /* get a bit too much */
4521 newlen = (unsigned)STRLEN(arg) + 1;
4522 if (adding || prepending || removing)
4523 newlen += (unsigned)STRLEN(origval) + 1;
4524 newval = alloc(newlen);
4525 if (newval == NULL) /* out of mem, don't change */
4526 break;
4527 s = newval;
4530 * Copy the string, skip over escaped chars.
4531 * For MS-DOS and WIN32 backslashes before normal
4532 * file name characters are not removed, and keep
4533 * backslash at start, for "\\machine\path", but
4534 * do remove it for "\\\\machine\\path".
4535 * The reverse is found in ExpandOldSetting().
4537 while (*arg && !vim_iswhite(*arg))
4539 if (*arg == '\\' && arg[1] != NUL
4540 #ifdef BACKSLASH_IN_FILENAME
4541 && !((flags & P_EXPAND)
4542 && vim_isfilec(arg[1])
4543 && (arg[1] != '\\'
4544 || (s == newval
4545 && arg[2] != '\\')))
4546 #endif
4548 ++arg; /* remove backslash */
4549 #ifdef FEAT_MBYTE
4550 if (has_mbyte
4551 && (i = (*mb_ptr2len)(arg)) > 1)
4553 /* copy multibyte char */
4554 mch_memmove(s, arg, (size_t)i);
4555 arg += i;
4556 s += i;
4558 else
4559 #endif
4560 *s++ = *arg++;
4562 *s = NUL;
4565 * Expand environment variables and ~.
4566 * Don't do it when adding without inserting a
4567 * comma.
4569 if (!(adding || prepending || removing)
4570 || (flags & P_COMMA))
4572 s = option_expand(opt_idx, newval);
4573 if (s != NULL)
4575 vim_free(newval);
4576 newlen = (unsigned)STRLEN(s) + 1;
4577 if (adding || prepending || removing)
4578 newlen += (unsigned)STRLEN(origval) + 1;
4579 newval = alloc(newlen);
4580 if (newval == NULL)
4581 break;
4582 STRCPY(newval, s);
4586 /* locate newval[] in origval[] when removing it
4587 * and when adding to avoid duplicates */
4588 i = 0; /* init for GCC */
4589 if (removing || (flags & P_NODUP))
4591 i = (int)STRLEN(newval);
4592 bs = 0;
4593 for (s = origval; *s; ++s)
4595 if ((!(flags & P_COMMA)
4596 || s == origval
4597 || (s[-1] == ',' && !(bs & 1)))
4598 && STRNCMP(s, newval, i) == 0
4599 && (!(flags & P_COMMA)
4600 || s[i] == ','
4601 || s[i] == NUL))
4602 break;
4603 /* Count backspaces. Only a comma with an
4604 * even number of backspaces before it is
4605 * recognized as a separator */
4606 if (s > origval && s[-1] == '\\')
4607 ++bs;
4608 else
4609 bs = 0;
4612 /* do not add if already there */
4613 if ((adding || prepending) && *s)
4615 prepending = FALSE;
4616 adding = FALSE;
4617 STRCPY(newval, origval);
4621 /* concatenate the two strings; add a ',' if
4622 * needed */
4623 if (adding || prepending)
4625 comma = ((flags & P_COMMA) && *origval != NUL
4626 && *newval != NUL);
4627 if (adding)
4629 i = (int)STRLEN(origval);
4630 mch_memmove(newval + i + comma, newval,
4631 STRLEN(newval) + 1);
4632 mch_memmove(newval, origval, (size_t)i);
4634 else
4636 i = (int)STRLEN(newval);
4637 STRMOVE(newval + i + comma, origval);
4639 if (comma)
4640 newval[i] = ',';
4643 /* Remove newval[] from origval[]. (Note: "i" has
4644 * been set above and is used here). */
4645 if (removing)
4647 STRCPY(newval, origval);
4648 if (*s)
4650 /* may need to remove a comma */
4651 if (flags & P_COMMA)
4653 if (s == origval)
4655 /* include comma after string */
4656 if (s[i] == ',')
4657 ++i;
4659 else
4661 /* include comma before string */
4662 --s;
4663 ++i;
4666 STRMOVE(newval + (s - origval), s + i);
4670 if (flags & P_FLAGLIST)
4672 /* Remove flags that appear twice. */
4673 for (s = newval; *s; ++s)
4674 if ((!(flags & P_COMMA) || *s != ',')
4675 && vim_strchr(s + 1, *s) != NULL)
4677 STRMOVE(s, s + 1);
4678 --s;
4682 if (save_arg != NULL) /* number for 'whichwrap' */
4683 arg = save_arg;
4684 new_value_alloced = TRUE;
4687 /* Set the new value. */
4688 *(char_u **)(varp) = newval;
4690 /* Handle side effects, and set the global value for
4691 * ":set" on local options. */
4692 errmsg = did_set_string_option(opt_idx, (char_u **)varp,
4693 new_value_alloced, oldval, errbuf, opt_flags);
4695 /* If error detected, print the error message. */
4696 if (errmsg != NULL)
4697 goto skip;
4699 else /* key code option */
4701 char_u *p;
4703 if (nextchar == '&')
4705 if (add_termcap_entry(key_name, TRUE) == FAIL)
4706 errmsg = (char_u *)N_("E522: Not found in termcap");
4708 else
4710 ++arg; /* jump to after the '=' or ':' */
4711 for (p = arg; *p && !vim_iswhite(*p); ++p)
4712 if (*p == '\\' && p[1] != NUL)
4713 ++p;
4714 nextchar = *p;
4715 *p = NUL;
4716 add_termcode(key_name, arg, FALSE);
4717 *p = nextchar;
4719 if (full_screen)
4720 ttest(FALSE);
4721 redraw_all_later(CLEAR);
4725 if (opt_idx >= 0)
4726 did_set_option(opt_idx, opt_flags,
4727 !prepending && !adding && !removing);
4730 skip:
4732 * Advance to next argument.
4733 * - skip until a blank found, taking care of backslashes
4734 * - skip blanks
4735 * - skip one "=val" argument (for hidden options ":set gfn =xx")
4737 for (i = 0; i < 2 ; ++i)
4739 while (*arg != NUL && !vim_iswhite(*arg))
4740 if (*arg++ == '\\' && *arg != NUL)
4741 ++arg;
4742 arg = skipwhite(arg);
4743 if (*arg != '=')
4744 break;
4748 if (errmsg != NULL)
4750 vim_strncpy(IObuff, (char_u *)_(errmsg), IOSIZE - 1);
4751 i = (int)STRLEN(IObuff) + 2;
4752 if (i + (arg - startarg) < IOSIZE)
4754 /* append the argument with the error */
4755 STRCAT(IObuff, ": ");
4756 mch_memmove(IObuff + i, startarg, (arg - startarg));
4757 IObuff[i + (arg - startarg)] = NUL;
4759 /* make sure all characters are printable */
4760 trans_characters(IObuff, IOSIZE);
4762 ++no_wait_return; /* wait_return done later */
4763 emsg(IObuff); /* show error highlighted */
4764 --no_wait_return;
4766 return FAIL;
4769 arg = skipwhite(arg);
4772 theend:
4773 if (silent_mode && did_show)
4775 /* After displaying option values in silent mode. */
4776 silent_mode = FALSE;
4777 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
4778 msg_putchar('\n');
4779 cursor_on(); /* msg_start() switches it off */
4780 out_flush();
4781 silent_mode = TRUE;
4782 info_message = FALSE; /* use mch_msg(), not mch_errmsg() */
4785 return OK;
4789 * Call this when an option has been given a new value through a user command.
4790 * Sets the P_WAS_SET flag and takes care of the P_INSECURE flag.
4792 static void
4793 did_set_option(opt_idx, opt_flags, new_value)
4794 int opt_idx;
4795 int opt_flags; /* possibly with OPT_MODELINE */
4796 int new_value; /* value was replaced completely */
4798 long_u *p;
4800 options[opt_idx].flags |= P_WAS_SET;
4802 /* When an option is set in the sandbox, from a modeline or in secure mode
4803 * set the P_INSECURE flag. Otherwise, if a new value is stored reset the
4804 * flag. */
4805 p = insecure_flag(opt_idx, opt_flags);
4806 if (secure
4807 #ifdef HAVE_SANDBOX
4808 || sandbox != 0
4809 #endif
4810 || (opt_flags & OPT_MODELINE))
4811 *p = *p | P_INSECURE;
4812 else if (new_value)
4813 *p = *p & ~P_INSECURE;
4816 static char_u *
4817 illegal_char(errbuf, c)
4818 char_u *errbuf;
4819 int c;
4821 if (errbuf == NULL)
4822 return (char_u *)"";
4823 sprintf((char *)errbuf, _("E539: Illegal character <%s>"),
4824 (char *)transchar(c));
4825 return errbuf;
4829 * Convert a key name or string into a key value.
4830 * Used for 'wildchar' and 'cedit' options.
4832 static int
4833 string_to_key(arg)
4834 char_u *arg;
4836 if (*arg == '<')
4837 return find_key_option(arg + 1);
4838 if (*arg == '^')
4839 return Ctrl_chr(arg[1]);
4840 return *arg;
4843 #ifdef FEAT_CMDWIN
4845 * Check value of 'cedit' and set cedit_key.
4846 * Returns NULL if value is OK, error message otherwise.
4848 static char_u *
4849 check_cedit()
4851 int n;
4853 if (*p_cedit == NUL)
4854 cedit_key = -1;
4855 else
4857 n = string_to_key(p_cedit);
4858 if (vim_isprintc(n))
4859 return e_invarg;
4860 cedit_key = n;
4862 return NULL;
4864 #endif
4866 #ifdef FEAT_TITLE
4868 * When changing 'title', 'titlestring', 'icon' or 'iconstring', call
4869 * maketitle() to create and display it.
4870 * When switching the title or icon off, call mch_restore_title() to get
4871 * the old value back.
4873 static void
4874 did_set_title(icon)
4875 int icon; /* Did set icon instead of title */
4877 if (starting != NO_SCREEN
4878 #ifdef FEAT_GUI
4879 && !gui.starting
4880 #endif
4883 maketitle();
4884 if (icon)
4886 if (!p_icon)
4887 mch_restore_title(2);
4889 else
4891 if (!p_title)
4892 mch_restore_title(1);
4896 #endif
4899 * set_options_bin - called when 'bin' changes value.
4901 void
4902 set_options_bin(oldval, newval, opt_flags)
4903 int oldval;
4904 int newval;
4905 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
4908 * The option values that are changed when 'bin' changes are
4909 * copied when 'bin is set and restored when 'bin' is reset.
4911 if (newval)
4913 if (!oldval) /* switched on */
4915 if (!(opt_flags & OPT_GLOBAL))
4917 curbuf->b_p_tw_nobin = curbuf->b_p_tw;
4918 curbuf->b_p_wm_nobin = curbuf->b_p_wm;
4919 curbuf->b_p_ml_nobin = curbuf->b_p_ml;
4920 curbuf->b_p_et_nobin = curbuf->b_p_et;
4922 if (!(opt_flags & OPT_LOCAL))
4924 p_tw_nobin = p_tw;
4925 p_wm_nobin = p_wm;
4926 p_ml_nobin = p_ml;
4927 p_et_nobin = p_et;
4931 if (!(opt_flags & OPT_GLOBAL))
4933 curbuf->b_p_tw = 0; /* no automatic line wrap */
4934 curbuf->b_p_wm = 0; /* no automatic line wrap */
4935 curbuf->b_p_ml = 0; /* no modelines */
4936 curbuf->b_p_et = 0; /* no expandtab */
4938 if (!(opt_flags & OPT_LOCAL))
4940 p_tw = 0;
4941 p_wm = 0;
4942 p_ml = FALSE;
4943 p_et = FALSE;
4944 p_bin = TRUE; /* needed when called for the "-b" argument */
4947 else if (oldval) /* switched off */
4949 if (!(opt_flags & OPT_GLOBAL))
4951 curbuf->b_p_tw = curbuf->b_p_tw_nobin;
4952 curbuf->b_p_wm = curbuf->b_p_wm_nobin;
4953 curbuf->b_p_ml = curbuf->b_p_ml_nobin;
4954 curbuf->b_p_et = curbuf->b_p_et_nobin;
4956 if (!(opt_flags & OPT_LOCAL))
4958 p_tw = p_tw_nobin;
4959 p_wm = p_wm_nobin;
4960 p_ml = p_ml_nobin;
4961 p_et = p_et_nobin;
4966 #ifdef FEAT_VIMINFO
4968 * Find the parameter represented by the given character (eg ', :, ", or /),
4969 * and return its associated value in the 'viminfo' string.
4970 * Only works for number parameters, not for 'r' or 'n'.
4971 * If the parameter is not specified in the string or there is no following
4972 * number, return -1.
4975 get_viminfo_parameter(type)
4976 int type;
4978 char_u *p;
4980 p = find_viminfo_parameter(type);
4981 if (p != NULL && VIM_ISDIGIT(*p))
4982 return atoi((char *)p);
4983 return -1;
4987 * Find the parameter represented by the given character (eg ''', ':', '"', or
4988 * '/') in the 'viminfo' option and return a pointer to the string after it.
4989 * Return NULL if the parameter is not specified in the string.
4991 char_u *
4992 find_viminfo_parameter(type)
4993 int type;
4995 char_u *p;
4997 for (p = p_viminfo; *p; ++p)
4999 if (*p == type)
5000 return p + 1;
5001 if (*p == 'n') /* 'n' is always the last one */
5002 break;
5003 p = vim_strchr(p, ','); /* skip until next ',' */
5004 if (p == NULL) /* hit the end without finding parameter */
5005 break;
5007 return NULL;
5009 #endif
5012 * Expand environment variables for some string options.
5013 * These string options cannot be indirect!
5014 * If "val" is NULL expand the current value of the option.
5015 * Return pointer to NameBuff, or NULL when not expanded.
5017 static char_u *
5018 option_expand(opt_idx, val)
5019 int opt_idx;
5020 char_u *val;
5022 /* if option doesn't need expansion nothing to do */
5023 if (!(options[opt_idx].flags & P_EXPAND) || options[opt_idx].var == NULL)
5024 return NULL;
5026 /* If val is longer than MAXPATHL no meaningful expansion can be done,
5027 * expand_env() would truncate the string. */
5028 if (val != NULL && STRLEN(val) > MAXPATHL)
5029 return NULL;
5031 if (val == NULL)
5032 val = *(char_u **)options[opt_idx].var;
5035 * Expanding this with NameBuff, expand_env() must not be passed IObuff.
5036 * Escape spaces when expanding 'tags', they are used to separate file
5037 * names.
5038 * For 'spellsuggest' expand after "file:".
5040 expand_env_esc(val, NameBuff, MAXPATHL,
5041 (char_u **)options[opt_idx].var == &p_tags, FALSE,
5042 #ifdef FEAT_SPELL
5043 (char_u **)options[opt_idx].var == &p_sps ? (char_u *)"file:" :
5044 #endif
5045 NULL);
5046 if (STRCMP(NameBuff, val) == 0) /* they are the same */
5047 return NULL;
5049 return NameBuff;
5053 * After setting various option values: recompute variables that depend on
5054 * option values.
5056 static void
5057 didset_options()
5059 /* initialize the table for 'iskeyword' et.al. */
5060 (void)init_chartab();
5062 #ifdef FEAT_MBYTE
5063 (void)opt_strings_flags(p_cmp, p_cmp_values, &cmp_flags, TRUE);
5064 #endif
5065 (void)opt_strings_flags(p_bkc, p_bkc_values, &bkc_flags, TRUE);
5066 #ifdef FEAT_SESSION
5067 (void)opt_strings_flags(p_ssop, p_ssop_values, &ssop_flags, TRUE);
5068 (void)opt_strings_flags(p_vop, p_ssop_values, &vop_flags, TRUE);
5069 #endif
5070 #ifdef FEAT_FOLDING
5071 (void)opt_strings_flags(p_fdo, p_fdo_values, &fdo_flags, TRUE);
5072 #endif
5073 (void)opt_strings_flags(p_dy, p_dy_values, &dy_flags, TRUE);
5074 #ifdef FEAT_VIRTUALEDIT
5075 (void)opt_strings_flags(p_ve, p_ve_values, &ve_flags, TRUE);
5076 #endif
5077 #if defined(FEAT_MOUSE) && (defined(UNIX) || defined(VMS))
5078 (void)opt_strings_flags(p_ttym, p_ttym_values, &ttym_flags, FALSE);
5079 #endif
5080 #ifdef FEAT_SPELL
5081 (void)spell_check_msm();
5082 (void)spell_check_sps();
5083 (void)compile_cap_prog(curbuf);
5084 #endif
5085 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
5086 (void)opt_strings_flags(p_toolbar, p_toolbar_values, &toolbar_flags, TRUE);
5087 #endif
5088 #if defined(FEAT_TOOLBAR) && defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)
5089 (void)opt_strings_flags(p_tbis, p_tbis_values, &tbis_flags, FALSE);
5090 #endif
5091 #ifdef FEAT_CMDWIN
5092 /* set cedit_key */
5093 (void)check_cedit();
5094 #endif
5098 * Check for string options that are NULL (normally only termcap options).
5100 void
5101 check_options()
5103 int opt_idx;
5105 for (opt_idx = 0; options[opt_idx].fullname != NULL; opt_idx++)
5106 if ((options[opt_idx].flags & P_STRING) && options[opt_idx].var != NULL)
5107 check_string_option((char_u **)get_varp(&(options[opt_idx])));
5111 * Check string options in a buffer for NULL value.
5113 void
5114 check_buf_options(buf)
5115 buf_T *buf;
5117 #if defined(FEAT_QUICKFIX)
5118 check_string_option(&buf->b_p_bh);
5119 check_string_option(&buf->b_p_bt);
5120 #endif
5121 #ifdef FEAT_MBYTE
5122 check_string_option(&buf->b_p_fenc);
5123 #endif
5124 check_string_option(&buf->b_p_ff);
5125 #ifdef FEAT_FIND_ID
5126 check_string_option(&buf->b_p_def);
5127 check_string_option(&buf->b_p_inc);
5128 # ifdef FEAT_EVAL
5129 check_string_option(&buf->b_p_inex);
5130 # endif
5131 #endif
5132 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
5133 check_string_option(&buf->b_p_inde);
5134 check_string_option(&buf->b_p_indk);
5135 #endif
5136 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
5137 check_string_option(&buf->b_p_bexpr);
5138 #endif
5139 #if defined(FEAT_EVAL)
5140 check_string_option(&buf->b_p_fex);
5141 #endif
5142 #ifdef FEAT_CRYPT
5143 check_string_option(&buf->b_p_key);
5144 #endif
5145 check_string_option(&buf->b_p_kp);
5146 check_string_option(&buf->b_p_mps);
5147 check_string_option(&buf->b_p_fo);
5148 check_string_option(&buf->b_p_flp);
5149 check_string_option(&buf->b_p_isk);
5150 #ifdef FEAT_COMMENTS
5151 check_string_option(&buf->b_p_com);
5152 #endif
5153 #ifdef FEAT_FOLDING
5154 check_string_option(&buf->b_p_cms);
5155 #endif
5156 check_string_option(&buf->b_p_nf);
5157 #ifdef FEAT_TEXTOBJ
5158 check_string_option(&buf->b_p_qe);
5159 #endif
5160 #ifdef FEAT_SYN_HL
5161 check_string_option(&buf->b_p_syn);
5162 #endif
5163 #ifdef FEAT_SPELL
5164 check_string_option(&buf->b_p_spc);
5165 check_string_option(&buf->b_p_spf);
5166 check_string_option(&buf->b_p_spl);
5167 #endif
5168 #ifdef FEAT_SEARCHPATH
5169 check_string_option(&buf->b_p_sua);
5170 #endif
5171 #ifdef FEAT_CINDENT
5172 check_string_option(&buf->b_p_cink);
5173 check_string_option(&buf->b_p_cino);
5174 #endif
5175 #ifdef FEAT_AUTOCMD
5176 check_string_option(&buf->b_p_ft);
5177 #endif
5178 #ifdef FEAT_OSFILETYPE
5179 check_string_option(&buf->b_p_oft);
5180 #endif
5181 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
5182 check_string_option(&buf->b_p_cinw);
5183 #endif
5184 #ifdef FEAT_INS_EXPAND
5185 check_string_option(&buf->b_p_cpt);
5186 #endif
5187 #ifdef FEAT_COMPL_FUNC
5188 check_string_option(&buf->b_p_cfu);
5189 check_string_option(&buf->b_p_ofu);
5190 check_string_option(&buf->b_p_tfu);
5191 #endif
5192 #ifdef FEAT_KEYMAP
5193 check_string_option(&buf->b_p_keymap);
5194 #endif
5195 #ifdef FEAT_QUICKFIX
5196 check_string_option(&buf->b_p_gp);
5197 check_string_option(&buf->b_p_mp);
5198 check_string_option(&buf->b_p_efm);
5199 #endif
5200 check_string_option(&buf->b_p_ep);
5201 check_string_option(&buf->b_p_path);
5202 check_string_option(&buf->b_p_tags);
5203 #ifdef FEAT_INS_EXPAND
5204 check_string_option(&buf->b_p_dict);
5205 check_string_option(&buf->b_p_tsr);
5206 #endif
5210 * Free the string allocated for an option.
5211 * Checks for the string being empty_option. This may happen if we're out of
5212 * memory, vim_strsave() returned NULL, which was replaced by empty_option by
5213 * check_options().
5214 * Does NOT check for P_ALLOCED flag!
5216 void
5217 free_string_option(p)
5218 char_u *p;
5220 if (p != empty_option)
5221 vim_free(p);
5224 void
5225 clear_string_option(pp)
5226 char_u **pp;
5228 if (*pp != empty_option)
5229 vim_free(*pp);
5230 *pp = empty_option;
5233 static void
5234 check_string_option(pp)
5235 char_u **pp;
5237 if (*pp == NULL)
5238 *pp = empty_option;
5242 * Mark a terminal option as allocated, found by a pointer into term_strings[].
5244 void
5245 set_term_option_alloced(p)
5246 char_u **p;
5248 int opt_idx;
5250 for (opt_idx = 1; options[opt_idx].fullname != NULL; opt_idx++)
5251 if (options[opt_idx].var == (char_u *)p)
5253 options[opt_idx].flags |= P_ALLOCED;
5254 return;
5256 return; /* cannot happen: didn't find it! */
5259 #if defined(FEAT_EVAL) || defined(PROTO)
5261 * Return TRUE when option "opt" was set from a modeline or in secure mode.
5262 * Return FALSE when it wasn't.
5263 * Return -1 for an unknown option.
5266 was_set_insecurely(opt, opt_flags)
5267 char_u *opt;
5268 int opt_flags;
5270 int idx = findoption(opt);
5271 long_u *flagp;
5273 if (idx >= 0)
5275 flagp = insecure_flag(idx, opt_flags);
5276 return (*flagp & P_INSECURE) != 0;
5278 EMSG2(_(e_intern2), "was_set_insecurely()");
5279 return -1;
5283 * Get a pointer to the flags used for the P_INSECURE flag of option
5284 * "opt_idx". For some local options a local flags field is used.
5286 static long_u *
5287 insecure_flag(opt_idx, opt_flags)
5288 int opt_idx;
5289 int opt_flags;
5291 if (opt_flags & OPT_LOCAL)
5292 switch ((int)options[opt_idx].indir)
5294 #ifdef FEAT_STL_OPT
5295 case PV_STL: return &curwin->w_p_stl_flags;
5296 #endif
5297 #ifdef FEAT_EVAL
5298 # ifdef FEAT_FOLDING
5299 case PV_FDE: return &curwin->w_p_fde_flags;
5300 case PV_FDT: return &curwin->w_p_fdt_flags;
5301 # endif
5302 # ifdef FEAT_BEVAL
5303 case PV_BEXPR: return &curbuf->b_p_bexpr_flags;
5304 # endif
5305 # if defined(FEAT_CINDENT)
5306 case PV_INDE: return &curbuf->b_p_inde_flags;
5307 # endif
5308 case PV_FEX: return &curbuf->b_p_fex_flags;
5309 # ifdef FEAT_FIND_ID
5310 case PV_INEX: return &curbuf->b_p_inex_flags;
5311 # endif
5312 #endif
5315 /* Nothing special, return global flags field. */
5316 return &options[opt_idx].flags;
5318 #endif
5320 #ifdef FEAT_TITLE
5321 static void redraw_titles __ARGS((void));
5324 * Redraw the window title and/or tab page text later.
5326 static void redraw_titles()
5328 need_maketitle = TRUE;
5329 # ifdef FEAT_WINDOWS
5330 redraw_tabline = TRUE;
5331 # endif
5333 #endif
5336 * Set a string option to a new value (without checking the effect).
5337 * The string is copied into allocated memory.
5338 * if ("opt_idx" == -1) "name" is used, otherwise "opt_idx" is used.
5339 * When "set_sid" is zero set the scriptID to current_SID. When "set_sid" is
5340 * SID_NONE don't set the scriptID. Otherwise set the scriptID to "set_sid".
5342 void
5343 set_string_option_direct(name, opt_idx, val, opt_flags, set_sid)
5344 char_u *name;
5345 int opt_idx;
5346 char_u *val;
5347 int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */
5348 int set_sid UNUSED;
5350 char_u *s;
5351 char_u **varp;
5352 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
5353 int idx = opt_idx;
5355 if (idx == -1) /* use name */
5357 idx = findoption(name);
5358 if (idx < 0) /* not found (should not happen) */
5360 EMSG2(_(e_intern2), "set_string_option_direct()");
5361 return;
5365 if (options[idx].var == NULL) /* can't set hidden option */
5366 return;
5368 s = vim_strsave(val);
5369 if (s != NULL)
5371 varp = (char_u **)get_varp_scope(&(options[idx]),
5372 both ? OPT_LOCAL : opt_flags);
5373 if ((opt_flags & OPT_FREE) && (options[idx].flags & P_ALLOCED))
5374 free_string_option(*varp);
5375 *varp = s;
5377 /* For buffer/window local option may also set the global value. */
5378 if (both)
5379 set_string_option_global(idx, varp);
5381 options[idx].flags |= P_ALLOCED;
5383 /* When setting both values of a global option with a local value,
5384 * make the local value empty, so that the global value is used. */
5385 if (((int)options[idx].indir & PV_BOTH) && both)
5387 free_string_option(*varp);
5388 *varp = empty_option;
5390 # ifdef FEAT_EVAL
5391 if (set_sid != SID_NONE)
5392 set_option_scriptID_idx(idx, opt_flags,
5393 set_sid == 0 ? current_SID : set_sid);
5394 # endif
5399 * Set global value for string option when it's a local option.
5401 static void
5402 set_string_option_global(opt_idx, varp)
5403 int opt_idx; /* option index */
5404 char_u **varp; /* pointer to option variable */
5406 char_u **p, *s;
5408 /* the global value is always allocated */
5409 if (options[opt_idx].var == VAR_WIN)
5410 p = (char_u **)GLOBAL_WO(varp);
5411 else
5412 p = (char_u **)options[opt_idx].var;
5413 if (options[opt_idx].indir != PV_NONE
5414 && p != varp
5415 && (s = vim_strsave(*varp)) != NULL)
5417 free_string_option(*p);
5418 *p = s;
5423 * Set a string option to a new value, and handle the effects.
5425 static void
5426 set_string_option(opt_idx, value, opt_flags)
5427 int opt_idx;
5428 char_u *value;
5429 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
5431 char_u *s;
5432 char_u **varp;
5433 char_u *oldval;
5435 if (options[opt_idx].var == NULL) /* don't set hidden option */
5436 return;
5438 s = vim_strsave(value);
5439 if (s != NULL)
5441 varp = (char_u **)get_varp_scope(&(options[opt_idx]),
5442 (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
5443 ? (((int)options[opt_idx].indir & PV_BOTH)
5444 ? OPT_GLOBAL : OPT_LOCAL)
5445 : opt_flags);
5446 oldval = *varp;
5447 *varp = s;
5448 if (did_set_string_option(opt_idx, varp, TRUE, oldval, NULL,
5449 opt_flags) == NULL)
5450 did_set_option(opt_idx, opt_flags, TRUE);
5455 * Handle string options that need some action to perform when changed.
5456 * Returns NULL for success, or an error message for an error.
5458 static char_u *
5459 did_set_string_option(opt_idx, varp, new_value_alloced, oldval, errbuf,
5460 opt_flags)
5461 int opt_idx; /* index in options[] table */
5462 char_u **varp; /* pointer to the option variable */
5463 int new_value_alloced; /* new value was allocated */
5464 char_u *oldval; /* previous value of the option */
5465 char_u *errbuf; /* buffer for errors, or NULL */
5466 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
5468 char_u *errmsg = NULL;
5469 char_u *s, *p;
5470 int did_chartab = FALSE;
5471 char_u **gvarp;
5472 long_u free_oldval = (options[opt_idx].flags & P_ALLOCED);
5473 #ifdef FEAT_GUI
5474 /* set when changing an option that only requires a redraw in the GUI */
5475 int redraw_gui_only = FALSE;
5476 #endif
5478 /* Get the global option to compare with, otherwise we would have to check
5479 * two values for all local options. */
5480 gvarp = (char_u **)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL);
5482 /* Disallow changing some options from secure mode */
5483 if ((secure
5484 #ifdef HAVE_SANDBOX
5485 || sandbox != 0
5486 #endif
5487 ) && (options[opt_idx].flags & P_SECURE))
5489 errmsg = e_secure;
5492 /* Check for a "normal" file name in some options. Disallow a path
5493 * separator (slash and/or backslash), wildcards and characters that are
5494 * often illegal in a file name. */
5495 else if ((options[opt_idx].flags & P_NFNAME)
5496 && vim_strpbrk(*varp, (char_u *)"/\\*?[|<>") != NULL)
5498 errmsg = e_invarg;
5501 /* 'term' */
5502 else if (varp == &T_NAME)
5504 if (T_NAME[0] == NUL)
5505 errmsg = (char_u *)N_("E529: Cannot set 'term' to empty string");
5506 #ifdef FEAT_GUI
5507 if (gui.in_use)
5508 errmsg = (char_u *)N_("E530: Cannot change term in GUI");
5509 else if (term_is_gui(T_NAME))
5510 errmsg = (char_u *)N_("E531: Use \":gui\" to start the GUI");
5511 #endif
5512 else if (set_termname(T_NAME) == FAIL)
5513 errmsg = (char_u *)N_("E522: Not found in termcap");
5514 else
5515 /* Screen colors may have changed. */
5516 redraw_later_clear();
5519 /* 'backupcopy' */
5520 else if (varp == &p_bkc)
5522 if (opt_strings_flags(p_bkc, p_bkc_values, &bkc_flags, TRUE) != OK)
5523 errmsg = e_invarg;
5524 if (((bkc_flags & BKC_AUTO) != 0)
5525 + ((bkc_flags & BKC_YES) != 0)
5526 + ((bkc_flags & BKC_NO) != 0) != 1)
5528 /* Must have exactly one of "auto", "yes" and "no". */
5529 (void)opt_strings_flags(oldval, p_bkc_values, &bkc_flags, TRUE);
5530 errmsg = e_invarg;
5534 /* 'backupext' and 'patchmode' */
5535 else if (varp == &p_bex || varp == &p_pm)
5537 if (STRCMP(*p_bex == '.' ? p_bex + 1 : p_bex,
5538 *p_pm == '.' ? p_pm + 1 : p_pm) == 0)
5539 errmsg = (char_u *)N_("E589: 'backupext' and 'patchmode' are equal");
5543 * 'isident', 'iskeyword', 'isprint or 'isfname' option: refill chartab[]
5544 * If the new option is invalid, use old value. 'lisp' option: refill
5545 * chartab[] for '-' char
5547 else if ( varp == &p_isi
5548 || varp == &(curbuf->b_p_isk)
5549 || varp == &p_isp
5550 || varp == &p_isf)
5552 if (init_chartab() == FAIL)
5554 did_chartab = TRUE; /* need to restore it below */
5555 errmsg = e_invarg; /* error in value */
5559 /* 'helpfile' */
5560 else if (varp == &p_hf)
5562 /* May compute new values for $VIM and $VIMRUNTIME */
5563 if (didset_vim)
5565 vim_setenv((char_u *)"VIM", (char_u *)"");
5566 didset_vim = FALSE;
5568 if (didset_vimruntime)
5570 vim_setenv((char_u *)"VIMRUNTIME", (char_u *)"");
5571 didset_vimruntime = FALSE;
5575 #ifdef FEAT_MULTI_LANG
5576 /* 'helplang' */
5577 else if (varp == &p_hlg)
5579 /* Check for "", "ab", "ab,cd", etc. */
5580 for (s = p_hlg; *s != NUL; s += 3)
5582 if (s[1] == NUL || ((s[2] != ',' || s[3] == NUL) && s[2] != NUL))
5584 errmsg = e_invarg;
5585 break;
5587 if (s[2] == NUL)
5588 break;
5591 #endif
5593 /* 'highlight' */
5594 else if (varp == &p_hl)
5596 if (highlight_changed() == FAIL)
5597 errmsg = e_invarg; /* invalid flags */
5600 /* 'nrformats' */
5601 else if (gvarp == &p_nf)
5603 if (check_opt_strings(*varp, p_nf_values, TRUE) != OK)
5604 errmsg = e_invarg;
5607 #ifdef FEAT_SESSION
5608 /* 'sessionoptions' */
5609 else if (varp == &p_ssop)
5611 if (opt_strings_flags(p_ssop, p_ssop_values, &ssop_flags, TRUE) != OK)
5612 errmsg = e_invarg;
5613 if ((ssop_flags & SSOP_CURDIR) && (ssop_flags & SSOP_SESDIR))
5615 /* Don't allow both "sesdir" and "curdir". */
5616 (void)opt_strings_flags(oldval, p_ssop_values, &ssop_flags, TRUE);
5617 errmsg = e_invarg;
5620 /* 'viewoptions' */
5621 else if (varp == &p_vop)
5623 if (opt_strings_flags(p_vop, p_ssop_values, &vop_flags, TRUE) != OK)
5624 errmsg = e_invarg;
5626 #endif
5628 /* 'scrollopt' */
5629 #ifdef FEAT_SCROLLBIND
5630 else if (varp == &p_sbo)
5632 if (check_opt_strings(p_sbo, p_scbopt_values, TRUE) != OK)
5633 errmsg = e_invarg;
5635 #endif
5637 /* 'ambiwidth' */
5638 #ifdef FEAT_MBYTE
5639 else if (varp == &p_ambw)
5641 if (check_opt_strings(p_ambw, p_ambw_values, FALSE) != OK)
5642 errmsg = e_invarg;
5644 #endif
5646 /* 'background' */
5647 else if (varp == &p_bg)
5649 if (check_opt_strings(p_bg, p_bg_values, FALSE) == OK)
5651 #ifdef FEAT_EVAL
5652 int dark = (*p_bg == 'd');
5653 #endif
5655 init_highlight(FALSE, FALSE);
5657 #ifdef FEAT_EVAL
5658 if (dark != (*p_bg == 'd')
5659 && get_var_value((char_u *)"g:colors_name") != NULL)
5661 /* The color scheme must have set 'background' back to another
5662 * value, that's not what we want here. Disable the color
5663 * scheme and set the colors again. */
5664 do_unlet((char_u *)"g:colors_name", TRUE);
5665 free_string_option(p_bg);
5666 p_bg = vim_strsave((char_u *)(dark ? "dark" : "light"));
5667 check_string_option(&p_bg);
5668 init_highlight(FALSE, FALSE);
5670 #endif
5672 else
5673 errmsg = e_invarg;
5676 /* 'wildmode' */
5677 else if (varp == &p_wim)
5679 if (check_opt_wim() == FAIL)
5680 errmsg = e_invarg;
5683 #ifdef FEAT_CMDL_COMPL
5684 /* 'wildoptions' */
5685 else if (varp == &p_wop)
5687 if (check_opt_strings(p_wop, p_wop_values, TRUE) != OK)
5688 errmsg = e_invarg;
5690 #endif
5692 #ifdef FEAT_WAK
5693 /* 'winaltkeys' */
5694 else if (varp == &p_wak)
5696 if (*p_wak == NUL
5697 || check_opt_strings(p_wak, p_wak_values, FALSE) != OK)
5698 errmsg = e_invarg;
5699 # ifdef FEAT_MENU
5700 # ifdef FEAT_GUI_MOTIF
5701 else if (gui.in_use)
5702 gui_motif_set_mnemonics(p_wak[0] == 'y' || p_wak[0] == 'm');
5703 # else
5704 # ifdef FEAT_GUI_GTK
5705 else if (gui.in_use)
5706 gui_gtk_set_mnemonics(p_wak[0] == 'y' || p_wak[0] == 'm');
5707 # endif
5708 # endif
5709 # endif
5711 #endif
5713 #ifdef FEAT_AUTOCMD
5714 /* 'eventignore' */
5715 else if (varp == &p_ei)
5717 if (check_ei() == FAIL)
5718 errmsg = e_invarg;
5720 #endif
5722 #ifdef FEAT_MBYTE
5723 /* 'encoding' and 'fileencoding' */
5724 else if (varp == &p_enc || gvarp == &p_fenc || varp == &p_tenc)
5726 if (gvarp == &p_fenc)
5728 if (!curbuf->b_p_ma && opt_flags != OPT_GLOBAL)
5729 errmsg = e_modifiable;
5730 else if (vim_strchr(*varp, ',') != NULL)
5731 /* No comma allowed in 'fileencoding'; catches confusing it
5732 * with 'fileencodings'. */
5733 errmsg = e_invarg;
5734 else
5736 # ifdef FEAT_TITLE
5737 /* May show a "+" in the title now. */
5738 redraw_titles();
5739 # endif
5740 /* Add 'fileencoding' to the swap file. */
5741 ml_setflags(curbuf);
5744 if (errmsg == NULL)
5746 /* canonize the value, so that STRCMP() can be used on it */
5747 p = enc_canonize(*varp);
5748 if (p != NULL)
5750 vim_free(*varp);
5751 *varp = p;
5753 if (varp == &p_enc)
5755 errmsg = mb_init();
5756 # ifdef FEAT_TITLE
5757 redraw_titles();
5758 # endif
5762 # if defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)
5763 if (errmsg == NULL && varp == &p_tenc && gui.in_use)
5765 /* GTK+ 2 uses only a single encoding, and that is UTF-8. */
5766 if (STRCMP(p_tenc, "utf-8") != 0)
5767 errmsg = (char_u *)N_("E617: Cannot be changed in the GTK+ 2 GUI");
5769 # endif
5771 if (errmsg == NULL)
5773 # ifdef FEAT_KEYMAP
5774 /* When 'keymap' is used and 'encoding' changes, reload the keymap
5775 * (with another encoding). */
5776 if (varp == &p_enc && *curbuf->b_p_keymap != NUL)
5777 (void)keymap_init();
5778 # endif
5780 /* When 'termencoding' is not empty and 'encoding' changes or when
5781 * 'termencoding' changes, need to setup for keyboard input and
5782 * display output conversion. */
5783 if (((varp == &p_enc && *p_tenc != NUL) || varp == &p_tenc))
5785 convert_setup(&input_conv, p_tenc, p_enc);
5786 convert_setup(&output_conv, p_enc, p_tenc);
5789 # if defined(WIN3264) && defined(FEAT_MBYTE)
5790 /* $HOME may have characters in active code page. */
5791 if (varp == &p_enc)
5792 init_homedir();
5793 # endif
5796 #endif
5798 #if defined(FEAT_POSTSCRIPT)
5799 else if (varp == &p_penc)
5801 /* Canonize printencoding if VIM standard one */
5802 p = enc_canonize(p_penc);
5803 if (p != NULL)
5805 vim_free(p_penc);
5806 p_penc = p;
5808 else
5810 /* Ensure lower case and '-' for '_' */
5811 for (s = p_penc; *s != NUL; s++)
5813 if (*s == '_')
5814 *s = '-';
5815 else
5816 *s = TOLOWER_ASC(*s);
5820 #endif
5822 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
5823 else if (varp == &p_imak)
5825 if (gui.in_use && !im_xim_isvalid_imactivate())
5826 errmsg = e_invarg;
5828 #endif
5830 #ifdef FEAT_KEYMAP
5831 else if (varp == &curbuf->b_p_keymap)
5833 /* load or unload key mapping tables */
5834 errmsg = keymap_init();
5836 if (errmsg == NULL)
5838 if (*curbuf->b_p_keymap != NUL)
5840 /* Installed a new keymap, switch on using it. */
5841 curbuf->b_p_iminsert = B_IMODE_LMAP;
5842 if (curbuf->b_p_imsearch != B_IMODE_USE_INSERT)
5843 curbuf->b_p_imsearch = B_IMODE_LMAP;
5845 else
5847 /* Cleared the keymap, may reset 'iminsert' and 'imsearch'. */
5848 if (curbuf->b_p_iminsert == B_IMODE_LMAP)
5849 curbuf->b_p_iminsert = B_IMODE_NONE;
5850 if (curbuf->b_p_imsearch == B_IMODE_LMAP)
5851 curbuf->b_p_imsearch = B_IMODE_USE_INSERT;
5853 if ((opt_flags & OPT_LOCAL) == 0)
5855 set_iminsert_global();
5856 set_imsearch_global();
5858 # ifdef FEAT_WINDOWS
5859 status_redraw_curbuf();
5860 # endif
5863 #endif
5865 /* 'fileformat' */
5866 else if (gvarp == &p_ff)
5868 if (!curbuf->b_p_ma && !(opt_flags & OPT_GLOBAL))
5869 errmsg = e_modifiable;
5870 else if (check_opt_strings(*varp, p_ff_values, FALSE) != OK)
5871 errmsg = e_invarg;
5872 else
5874 /* may also change 'textmode' */
5875 if (get_fileformat(curbuf) == EOL_DOS)
5876 curbuf->b_p_tx = TRUE;
5877 else
5878 curbuf->b_p_tx = FALSE;
5879 #ifdef FEAT_TITLE
5880 redraw_titles();
5881 #endif
5882 /* update flag in swap file */
5883 ml_setflags(curbuf);
5884 /* Redraw needed when switching to/from "mac": a CR in the text
5885 * will be displayed differently. */
5886 if (get_fileformat(curbuf) == EOL_MAC || *oldval == 'm')
5887 redraw_curbuf_later(NOT_VALID);
5891 /* 'fileformats' */
5892 else if (varp == &p_ffs)
5894 if (check_opt_strings(p_ffs, p_ff_values, TRUE) != OK)
5895 errmsg = e_invarg;
5896 else
5898 /* also change 'textauto' */
5899 if (*p_ffs == NUL)
5900 p_ta = FALSE;
5901 else
5902 p_ta = TRUE;
5906 #if defined(FEAT_CRYPT) && defined(FEAT_CMDHIST)
5907 /* 'cryptkey' */
5908 else if (gvarp == &p_key)
5910 /* Make sure the ":set" command doesn't show the new value in the
5911 * history. */
5912 remove_key_from_history();
5914 #endif
5916 /* 'matchpairs' */
5917 else if (gvarp == &p_mps)
5919 /* Check for "x:y,x:y" */
5920 for (p = *varp; *p != NUL; p += 4)
5922 if (p[1] != ':' || p[2] == NUL || (p[3] != NUL && p[3] != ','))
5924 errmsg = e_invarg;
5925 break;
5927 if (p[3] == NUL)
5928 break;
5932 #ifdef FEAT_COMMENTS
5933 /* 'comments' */
5934 else if (gvarp == &p_com)
5936 for (s = *varp; *s; )
5938 while (*s && *s != ':')
5940 if (vim_strchr((char_u *)COM_ALL, *s) == NULL
5941 && !VIM_ISDIGIT(*s) && *s != '-')
5943 errmsg = illegal_char(errbuf, *s);
5944 break;
5946 ++s;
5948 if (*s++ == NUL)
5949 errmsg = (char_u *)N_("E524: Missing colon");
5950 else if (*s == ',' || *s == NUL)
5951 errmsg = (char_u *)N_("E525: Zero length string");
5952 if (errmsg != NULL)
5953 break;
5954 while (*s && *s != ',')
5956 if (*s == '\\' && s[1] != NUL)
5957 ++s;
5958 ++s;
5960 s = skip_to_option_part(s);
5963 #endif
5965 /* 'listchars' */
5966 else if (varp == &p_lcs)
5968 errmsg = set_chars_option(varp);
5971 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
5972 /* 'fillchars' */
5973 else if (varp == &p_fcs)
5975 errmsg = set_chars_option(varp);
5977 #endif
5979 #ifdef FEAT_CMDWIN
5980 /* 'cedit' */
5981 else if (varp == &p_cedit)
5983 errmsg = check_cedit();
5985 #endif
5987 /* 'verbosefile' */
5988 else if (varp == &p_vfile)
5990 verbose_stop();
5991 if (*p_vfile != NUL && verbose_open() == FAIL)
5992 errmsg = e_invarg;
5995 #ifdef FEAT_VIMINFO
5996 /* 'viminfo' */
5997 else if (varp == &p_viminfo)
5999 for (s = p_viminfo; *s;)
6001 /* Check it's a valid character */
6002 if (vim_strchr((char_u *)"!\"%'/:<@cfhnrs", *s) == NULL)
6004 errmsg = illegal_char(errbuf, *s);
6005 break;
6007 if (*s == 'n') /* name is always last one */
6009 break;
6011 else if (*s == 'r') /* skip until next ',' */
6013 while (*++s && *s != ',')
6016 else if (*s == '%')
6018 /* optional number */
6019 while (vim_isdigit(*++s))
6022 else if (*s == '!' || *s == 'h' || *s == 'c')
6023 ++s; /* no extra chars */
6024 else /* must have a number */
6026 while (vim_isdigit(*++s))
6029 if (!VIM_ISDIGIT(*(s - 1)))
6031 if (errbuf != NULL)
6033 sprintf((char *)errbuf,
6034 _("E526: Missing number after <%s>"),
6035 transchar_byte(*(s - 1)));
6036 errmsg = errbuf;
6038 else
6039 errmsg = (char_u *)"";
6040 break;
6043 if (*s == ',')
6044 ++s;
6045 else if (*s)
6047 if (errbuf != NULL)
6048 errmsg = (char_u *)N_("E527: Missing comma");
6049 else
6050 errmsg = (char_u *)"";
6051 break;
6054 if (*p_viminfo && errmsg == NULL && get_viminfo_parameter('\'') < 0)
6055 errmsg = (char_u *)N_("E528: Must specify a ' value");
6057 #endif /* FEAT_VIMINFO */
6059 /* terminal options */
6060 else if (istermoption(&options[opt_idx]) && full_screen)
6062 /* ":set t_Co=0" and ":set t_Co=1" do ":set t_Co=" */
6063 if (varp == &T_CCO)
6065 int colors = atoi((char *)T_CCO);
6067 /* Only reinitialize colors if t_Co value has really changed to
6068 * avoid expensive reload of colorscheme if t_Co is set to the
6069 * same value multiple times. */
6070 if (colors != t_colors)
6072 t_colors = colors;
6073 if (t_colors <= 1)
6075 if (new_value_alloced)
6076 vim_free(T_CCO);
6077 T_CCO = empty_option;
6079 /* We now have a different color setup, initialize it again. */
6080 init_highlight(TRUE, FALSE);
6083 ttest(FALSE);
6084 if (varp == &T_ME)
6086 out_str(T_ME);
6087 redraw_later(CLEAR);
6088 #if defined(MSDOS) || (defined(WIN3264) && !defined(FEAT_GUI_W32))
6089 /* Since t_me has been set, this probably means that the user
6090 * wants to use this as default colors. Need to reset default
6091 * background/foreground colors. */
6092 mch_set_normal_colors();
6093 #endif
6097 #ifdef FEAT_LINEBREAK
6098 /* 'showbreak' */
6099 else if (varp == &p_sbr)
6101 for (s = p_sbr; *s; )
6103 if (ptr2cells(s) != 1)
6104 errmsg = (char_u *)N_("E595: contains unprintable or wide character");
6105 mb_ptr_adv(s);
6108 #endif
6110 #ifdef FEAT_GUI
6111 /* 'guifont' */
6112 else if (varp == &p_guifont)
6114 if (gui.in_use)
6116 p = p_guifont;
6117 # if defined(FEAT_GUI_GTK)
6119 * Put up a font dialog and let the user select a new value.
6120 * If this is cancelled go back to the old value but don't
6121 * give an error message.
6123 if (STRCMP(p, "*") == 0)
6125 p = gui_mch_font_dialog(oldval);
6127 if (new_value_alloced)
6128 free_string_option(p_guifont);
6130 p_guifont = (p != NULL) ? p : vim_strsave(oldval);
6131 new_value_alloced = TRUE;
6133 # endif
6134 if (p != NULL && gui_init_font(p_guifont, FALSE) != OK)
6136 # if defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_PHOTON)
6137 if (STRCMP(p_guifont, "*") == 0)
6139 /* Dialog was cancelled: Keep the old value without giving
6140 * an error message. */
6141 if (new_value_alloced)
6142 free_string_option(p_guifont);
6143 p_guifont = vim_strsave(oldval);
6144 new_value_alloced = TRUE;
6146 else
6147 # endif
6148 errmsg = (char_u *)N_("E596: Invalid font(s)");
6151 redraw_gui_only = TRUE;
6153 # ifdef FEAT_XFONTSET
6154 else if (varp == &p_guifontset)
6156 if (STRCMP(p_guifontset, "*") == 0)
6157 errmsg = (char_u *)N_("E597: can't select fontset");
6158 else if (gui.in_use && gui_init_font(p_guifontset, TRUE) != OK)
6159 errmsg = (char_u *)N_("E598: Invalid fontset");
6160 redraw_gui_only = TRUE;
6162 # endif
6163 # ifdef FEAT_MBYTE
6164 else if (varp == &p_guifontwide)
6166 if (STRCMP(p_guifontwide, "*") == 0)
6167 errmsg = (char_u *)N_("E533: can't select wide font");
6168 else if (gui_get_wide_font() == FAIL)
6169 errmsg = (char_u *)N_("E534: Invalid wide font");
6170 redraw_gui_only = TRUE;
6172 # endif
6173 #endif
6175 #ifdef CURSOR_SHAPE
6176 /* 'guicursor' */
6177 else if (varp == &p_guicursor)
6178 errmsg = parse_shape_opt(SHAPE_CURSOR);
6179 #endif
6181 #ifdef FEAT_MOUSESHAPE
6182 /* 'mouseshape' */
6183 else if (varp == &p_mouseshape)
6185 errmsg = parse_shape_opt(SHAPE_MOUSE);
6186 update_mouseshape(-1);
6188 #endif
6190 #ifdef FEAT_PRINTER
6191 else if (varp == &p_popt)
6192 errmsg = parse_printoptions();
6193 # if defined(FEAT_MBYTE) && defined(FEAT_POSTSCRIPT)
6194 else if (varp == &p_pmfn)
6195 errmsg = parse_printmbfont();
6196 # endif
6197 #endif
6199 #ifdef FEAT_LANGMAP
6200 /* 'langmap' */
6201 else if (varp == &p_langmap)
6202 langmap_set();
6203 #endif
6205 #ifdef FEAT_LINEBREAK
6206 /* 'breakat' */
6207 else if (varp == &p_breakat)
6208 fill_breakat_flags();
6209 #endif
6211 #ifdef FEAT_TITLE
6212 /* 'titlestring' and 'iconstring' */
6213 else if (varp == &p_titlestring || varp == &p_iconstring)
6215 # ifdef FEAT_STL_OPT
6216 int flagval = (varp == &p_titlestring) ? STL_IN_TITLE : STL_IN_ICON;
6218 /* NULL => statusline syntax */
6219 if (vim_strchr(*varp, '%') && check_stl_option(*varp) == NULL)
6220 stl_syntax |= flagval;
6221 else
6222 stl_syntax &= ~flagval;
6223 # endif
6224 did_set_title(varp == &p_iconstring);
6227 #endif
6229 #ifdef FEAT_GUI
6230 /* 'guioptions' */
6231 else if (varp == &p_go)
6233 gui_init_which_components(oldval);
6234 redraw_gui_only = TRUE;
6236 #endif
6238 #if defined(FEAT_GUI_TABLINE)
6239 /* 'guitablabel' */
6240 else if (varp == &p_gtl)
6242 redraw_tabline = TRUE;
6243 redraw_gui_only = TRUE;
6245 /* 'guitabtooltip' */
6246 else if (varp == &p_gtt)
6248 redraw_gui_only = TRUE;
6250 #endif
6252 #if defined(FEAT_MOUSE_TTY) && (defined(UNIX) || defined(VMS))
6253 /* 'ttymouse' */
6254 else if (varp == &p_ttym)
6256 /* Switch the mouse off before changing the escape sequences used for
6257 * that. */
6258 mch_setmouse(FALSE);
6259 if (opt_strings_flags(p_ttym, p_ttym_values, &ttym_flags, FALSE) != OK)
6260 errmsg = e_invarg;
6261 else
6262 check_mouse_termcode();
6263 if (termcap_active)
6264 setmouse(); /* may switch it on again */
6266 #endif
6268 #ifdef FEAT_VISUAL
6269 /* 'selection' */
6270 else if (varp == &p_sel)
6272 if (*p_sel == NUL
6273 || check_opt_strings(p_sel, p_sel_values, FALSE) != OK)
6274 errmsg = e_invarg;
6277 /* 'selectmode' */
6278 else if (varp == &p_slm)
6280 if (check_opt_strings(p_slm, p_slm_values, TRUE) != OK)
6281 errmsg = e_invarg;
6283 #endif
6285 #ifdef FEAT_BROWSE
6286 /* 'browsedir' */
6287 else if (varp == &p_bsdir)
6289 if (check_opt_strings(p_bsdir, p_bsdir_values, FALSE) != OK
6290 && !mch_isdir(p_bsdir))
6291 errmsg = e_invarg;
6293 #endif
6295 #ifdef FEAT_VISUAL
6296 /* 'keymodel' */
6297 else if (varp == &p_km)
6299 if (check_opt_strings(p_km, p_km_values, TRUE) != OK)
6300 errmsg = e_invarg;
6301 else
6303 km_stopsel = (vim_strchr(p_km, 'o') != NULL);
6304 km_startsel = (vim_strchr(p_km, 'a') != NULL);
6307 #endif
6309 /* 'mousemodel' */
6310 else if (varp == &p_mousem)
6312 if (check_opt_strings(p_mousem, p_mousem_values, FALSE) != OK)
6313 errmsg = e_invarg;
6314 #if defined(FEAT_GUI_MOTIF) && defined(FEAT_MENU) && (XmVersion <= 1002)
6315 else if (*p_mousem != *oldval)
6316 /* Changed from "extend" to "popup" or "popup_setpos" or vv: need
6317 * to create or delete the popup menus. */
6318 gui_motif_update_mousemodel(root_menu);
6319 #endif
6322 /* 'switchbuf' */
6323 else if (varp == &p_swb)
6325 if (opt_strings_flags(p_swb, p_swb_values, &swb_flags, TRUE) != OK)
6326 errmsg = e_invarg;
6329 /* 'debug' */
6330 else if (varp == &p_debug)
6332 if (check_opt_strings(p_debug, p_debug_values, TRUE) != OK)
6333 errmsg = e_invarg;
6336 /* 'display' */
6337 else if (varp == &p_dy)
6339 if (opt_strings_flags(p_dy, p_dy_values, &dy_flags, TRUE) != OK)
6340 errmsg = e_invarg;
6341 else
6342 (void)init_chartab();
6346 #ifdef FEAT_VERTSPLIT
6347 /* 'eadirection' */
6348 else if (varp == &p_ead)
6350 if (check_opt_strings(p_ead, p_ead_values, FALSE) != OK)
6351 errmsg = e_invarg;
6353 #endif
6355 #ifdef FEAT_CLIPBOARD
6356 /* 'clipboard' */
6357 else if (varp == &p_cb)
6358 errmsg = check_clipboard_option();
6359 #endif
6361 #ifdef FEAT_SPELL
6362 /* When 'spelllang' or 'spellfile' is set and there is a window for this
6363 * buffer in which 'spell' is set load the wordlists. */
6364 else if (varp == &(curbuf->b_p_spl) || varp == &(curbuf->b_p_spf))
6366 win_T *wp;
6367 int l;
6369 if (varp == &(curbuf->b_p_spf))
6371 l = (int)STRLEN(curbuf->b_p_spf);
6372 if (l > 0 && (l < 4 || STRCMP(curbuf->b_p_spf + l - 4,
6373 ".add") != 0))
6374 errmsg = e_invarg;
6377 if (errmsg == NULL)
6379 FOR_ALL_WINDOWS(wp)
6380 if (wp->w_buffer == curbuf && wp->w_p_spell)
6382 errmsg = did_set_spelllang(curbuf);
6383 # ifdef FEAT_WINDOWS
6384 break;
6385 # endif
6389 /* When 'spellcapcheck' is set compile the regexp program. */
6390 else if (varp == &(curbuf->b_p_spc))
6392 errmsg = compile_cap_prog(curbuf);
6394 /* 'spellsuggest' */
6395 else if (varp == &p_sps)
6397 if (spell_check_sps() != OK)
6398 errmsg = e_invarg;
6400 /* 'mkspellmem' */
6401 else if (varp == &p_msm)
6403 if (spell_check_msm() != OK)
6404 errmsg = e_invarg;
6406 #endif
6408 #ifdef FEAT_QUICKFIX
6409 /* When 'bufhidden' is set, check for valid value. */
6410 else if (gvarp == &p_bh)
6412 if (check_opt_strings(curbuf->b_p_bh, p_bufhidden_values, FALSE) != OK)
6413 errmsg = e_invarg;
6416 /* When 'buftype' is set, check for valid value. */
6417 else if (gvarp == &p_bt)
6419 if (check_opt_strings(curbuf->b_p_bt, p_buftype_values, FALSE) != OK)
6420 errmsg = e_invarg;
6421 else
6423 # ifdef FEAT_WINDOWS
6424 if (curwin->w_status_height)
6426 curwin->w_redr_status = TRUE;
6427 redraw_later(VALID);
6429 # endif
6430 curbuf->b_help = (curbuf->b_p_bt[0] == 'h');
6431 # ifdef FEAT_TITLE
6432 redraw_titles();
6433 # endif
6436 #endif
6438 #ifdef FEAT_STL_OPT
6439 /* 'statusline' or 'rulerformat' */
6440 else if (gvarp == &p_stl || varp == &p_ruf)
6442 int wid;
6444 if (varp == &p_ruf) /* reset ru_wid first */
6445 ru_wid = 0;
6446 s = *varp;
6447 if (varp == &p_ruf && *s == '%')
6449 /* set ru_wid if 'ruf' starts with "%99(" */
6450 if (*++s == '-') /* ignore a '-' */
6451 s++;
6452 wid = getdigits(&s);
6453 if (wid && *s == '(' && (errmsg = check_stl_option(p_ruf)) == NULL)
6454 ru_wid = wid;
6455 else
6456 errmsg = check_stl_option(p_ruf);
6458 /* check 'statusline' only if it doesn't start with "%!" */
6459 else if (varp == &p_ruf || s[0] != '%' || s[1] != '!')
6460 errmsg = check_stl_option(s);
6461 if (varp == &p_ruf && errmsg == NULL)
6462 comp_col();
6464 #endif
6466 #ifdef FEAT_INS_EXPAND
6467 /* check if it is a valid value for 'complete' -- Acevedo */
6468 else if (gvarp == &p_cpt)
6470 for (s = *varp; *s;)
6472 while(*s == ',' || *s == ' ')
6473 s++;
6474 if (!*s)
6475 break;
6476 if (vim_strchr((char_u *)".wbuksid]tU", *s) == NULL)
6478 errmsg = illegal_char(errbuf, *s);
6479 break;
6481 if (*++s != NUL && *s != ',' && *s != ' ')
6483 if (s[-1] == 'k' || s[-1] == 's')
6485 /* skip optional filename after 'k' and 's' */
6486 while (*s && *s != ',' && *s != ' ')
6488 if (*s == '\\')
6489 ++s;
6490 ++s;
6493 else
6495 if (errbuf != NULL)
6497 sprintf((char *)errbuf,
6498 _("E535: Illegal character after <%c>"),
6499 *--s);
6500 errmsg = errbuf;
6502 else
6503 errmsg = (char_u *)"";
6504 break;
6510 /* 'completeopt' */
6511 else if (varp == &p_cot)
6513 if (check_opt_strings(p_cot, p_cot_values, TRUE) != OK)
6514 errmsg = e_invarg;
6516 #endif /* FEAT_INS_EXPAND */
6519 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
6520 else if (varp == &p_toolbar)
6522 if (opt_strings_flags(p_toolbar, p_toolbar_values,
6523 &toolbar_flags, TRUE) != OK)
6524 errmsg = e_invarg;
6525 else
6527 out_flush();
6528 gui_mch_show_toolbar((toolbar_flags &
6529 (TOOLBAR_TEXT | TOOLBAR_ICONS)) != 0);
6532 #endif
6534 #if defined(FEAT_TOOLBAR) && defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)
6535 /* 'toolbariconsize': GTK+ 2 only */
6536 else if (varp == &p_tbis)
6538 if (opt_strings_flags(p_tbis, p_tbis_values, &tbis_flags, FALSE) != OK)
6539 errmsg = e_invarg;
6540 else
6542 out_flush();
6543 gui_mch_show_toolbar((toolbar_flags &
6544 (TOOLBAR_TEXT | TOOLBAR_ICONS)) != 0);
6547 #endif
6549 /* 'pastetoggle': translate key codes like in a mapping */
6550 else if (varp == &p_pt)
6552 if (*p_pt)
6554 (void)replace_termcodes(p_pt, &p, TRUE, TRUE, FALSE);
6555 if (p != NULL)
6557 if (new_value_alloced)
6558 free_string_option(p_pt);
6559 p_pt = p;
6560 new_value_alloced = TRUE;
6565 /* 'backspace' */
6566 else if (varp == &p_bs)
6568 if (VIM_ISDIGIT(*p_bs))
6570 if (*p_bs >'2' || p_bs[1] != NUL)
6571 errmsg = e_invarg;
6573 else if (check_opt_strings(p_bs, p_bs_values, TRUE) != OK)
6574 errmsg = e_invarg;
6577 #ifdef FEAT_MBYTE
6578 /* 'casemap' */
6579 else if (varp == &p_cmp)
6581 if (opt_strings_flags(p_cmp, p_cmp_values, &cmp_flags, TRUE) != OK)
6582 errmsg = e_invarg;
6584 #endif
6586 #ifdef FEAT_DIFF
6587 /* 'diffopt' */
6588 else if (varp == &p_dip)
6590 if (diffopt_changed() == FAIL)
6591 errmsg = e_invarg;
6593 #endif
6595 #ifdef FEAT_FOLDING
6596 /* 'foldmethod' */
6597 else if (gvarp == &curwin->w_allbuf_opt.wo_fdm)
6599 if (check_opt_strings(*varp, p_fdm_values, FALSE) != OK
6600 || *curwin->w_p_fdm == NUL)
6601 errmsg = e_invarg;
6602 else
6604 foldUpdateAll(curwin);
6605 if (foldmethodIsDiff(curwin))
6606 newFoldLevel();
6609 # ifdef FEAT_EVAL
6610 /* 'foldexpr' */
6611 else if (varp == &curwin->w_p_fde)
6613 if (foldmethodIsExpr(curwin))
6614 foldUpdateAll(curwin);
6616 # endif
6617 /* 'foldmarker' */
6618 else if (gvarp == &curwin->w_allbuf_opt.wo_fmr)
6620 p = vim_strchr(*varp, ',');
6621 if (p == NULL)
6622 errmsg = (char_u *)N_("E536: comma required");
6623 else if (p == *varp || p[1] == NUL)
6624 errmsg = e_invarg;
6625 else if (foldmethodIsMarker(curwin))
6626 foldUpdateAll(curwin);
6628 /* 'commentstring' */
6629 else if (gvarp == &p_cms)
6631 if (**varp != NUL && strstr((char *)*varp, "%s") == NULL)
6632 errmsg = (char_u *)N_("E537: 'commentstring' must be empty or contain %s");
6634 /* 'foldopen' */
6635 else if (varp == &p_fdo)
6637 if (opt_strings_flags(p_fdo, p_fdo_values, &fdo_flags, TRUE) != OK)
6638 errmsg = e_invarg;
6640 /* 'foldclose' */
6641 else if (varp == &p_fcl)
6643 if (check_opt_strings(p_fcl, p_fcl_values, TRUE) != OK)
6644 errmsg = e_invarg;
6646 /* 'foldignore' */
6647 else if (gvarp == &curwin->w_allbuf_opt.wo_fdi)
6649 if (foldmethodIsIndent(curwin))
6650 foldUpdateAll(curwin);
6652 #endif
6654 #ifdef FEAT_VIRTUALEDIT
6655 /* 'virtualedit' */
6656 else if (varp == &p_ve)
6658 if (opt_strings_flags(p_ve, p_ve_values, &ve_flags, TRUE) != OK)
6659 errmsg = e_invarg;
6660 else if (STRCMP(p_ve, oldval) != 0)
6662 /* Recompute cursor position in case the new 've' setting
6663 * changes something. */
6664 validate_virtcol();
6665 coladvance(curwin->w_virtcol);
6668 #endif
6670 #if defined(FEAT_CSCOPE) && defined(FEAT_QUICKFIX)
6671 else if (varp == &p_csqf)
6673 if (p_csqf != NULL)
6675 p = p_csqf;
6676 while (*p != NUL)
6678 if (vim_strchr((char_u *)CSQF_CMDS, *p) == NULL
6679 || p[1] == NUL
6680 || vim_strchr((char_u *)CSQF_FLAGS, p[1]) == NULL
6681 || (p[2] != NUL && p[2] != ','))
6683 errmsg = e_invarg;
6684 break;
6686 else if (p[2] == NUL)
6687 break;
6688 else
6689 p += 3;
6693 #endif
6695 /* Options that are a list of flags. */
6696 else
6698 p = NULL;
6699 if (varp == &p_ww)
6700 p = (char_u *)WW_ALL;
6701 if (varp == &p_shm)
6702 p = (char_u *)SHM_ALL;
6703 else if (varp == &(p_cpo))
6704 p = (char_u *)CPO_ALL;
6705 else if (varp == &(curbuf->b_p_fo))
6706 p = (char_u *)FO_ALL;
6707 else if (varp == &p_mouse)
6709 #ifdef FEAT_MOUSE
6710 p = (char_u *)MOUSE_ALL;
6711 #else
6712 if (*p_mouse != NUL)
6713 errmsg = (char_u *)N_("E538: No mouse support");
6714 #endif
6716 #if defined(FEAT_GUI)
6717 else if (varp == &p_go)
6718 p = (char_u *)GO_ALL;
6719 #endif
6720 if (p != NULL)
6722 for (s = *varp; *s; ++s)
6723 if (vim_strchr(p, *s) == NULL)
6725 errmsg = illegal_char(errbuf, *s);
6726 break;
6732 * If error detected, restore the previous value.
6734 if (errmsg != NULL)
6736 if (new_value_alloced)
6737 free_string_option(*varp);
6738 *varp = oldval;
6740 * When resetting some values, need to act on it.
6742 if (did_chartab)
6743 (void)init_chartab();
6744 if (varp == &p_hl)
6745 (void)highlight_changed();
6747 else
6749 #ifdef FEAT_EVAL
6750 /* Remember where the option was set. */
6751 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
6752 #endif
6754 * Free string options that are in allocated memory.
6755 * Use "free_oldval", because recursiveness may change the flags under
6756 * our fingers (esp. init_highlight()).
6758 if (free_oldval)
6759 free_string_option(oldval);
6760 if (new_value_alloced)
6761 options[opt_idx].flags |= P_ALLOCED;
6762 else
6763 options[opt_idx].flags &= ~P_ALLOCED;
6765 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
6766 && ((int)options[opt_idx].indir & PV_BOTH))
6768 /* global option with local value set to use global value; free
6769 * the local value and make it empty */
6770 p = get_varp_scope(&(options[opt_idx]), OPT_LOCAL);
6771 free_string_option(*(char_u **)p);
6772 *(char_u **)p = empty_option;
6775 /* May set global value for local option. */
6776 else if (!(opt_flags & OPT_LOCAL) && opt_flags != OPT_GLOBAL)
6777 set_string_option_global(opt_idx, varp);
6779 #ifdef FEAT_AUTOCMD
6781 * Trigger the autocommand only after setting the flags.
6783 # ifdef FEAT_SYN_HL
6784 /* When 'syntax' is set, load the syntax of that name */
6785 if (varp == &(curbuf->b_p_syn))
6787 apply_autocmds(EVENT_SYNTAX, curbuf->b_p_syn,
6788 curbuf->b_fname, TRUE, curbuf);
6790 # endif
6791 else if (varp == &(curbuf->b_p_ft))
6793 /* 'filetype' is set, trigger the FileType autocommand */
6794 did_filetype = TRUE;
6795 apply_autocmds(EVENT_FILETYPE, curbuf->b_p_ft,
6796 curbuf->b_fname, TRUE, curbuf);
6798 #endif
6799 #ifdef FEAT_SPELL
6800 if (varp == &(curbuf->b_p_spl))
6802 char_u fname[200];
6805 * Source the spell/LANG.vim in 'runtimepath'.
6806 * They could set 'spellcapcheck' depending on the language.
6807 * Use the first name in 'spelllang' up to '_region' or
6808 * '.encoding'.
6810 for (p = curbuf->b_p_spl; *p != NUL; ++p)
6811 if (vim_strchr((char_u *)"_.,", *p) != NULL)
6812 break;
6813 vim_snprintf((char *)fname, 200, "spell/%.*s.vim",
6814 (int)(p - curbuf->b_p_spl), curbuf->b_p_spl);
6815 source_runtime(fname, TRUE);
6817 #endif
6820 #ifdef FEAT_MOUSE
6821 if (varp == &p_mouse)
6823 # ifdef FEAT_MOUSE_TTY
6824 if (*p_mouse == NUL)
6825 mch_setmouse(FALSE); /* switch mouse off */
6826 else
6827 # endif
6828 setmouse(); /* in case 'mouse' changed */
6830 #endif
6832 if (curwin->w_curswant != MAXCOL)
6833 curwin->w_set_curswant = TRUE; /* in case 'showbreak' changed */
6834 #ifdef FEAT_GUI
6835 /* check redraw when it's not a GUI option or the GUI is active. */
6836 if (!redraw_gui_only || gui.in_use)
6837 #endif
6838 check_redraw(options[opt_idx].flags);
6840 return errmsg;
6844 * Handle setting 'listchars' or 'fillchars'.
6845 * Returns error message, NULL if it's OK.
6847 static char_u *
6848 set_chars_option(varp)
6849 char_u **varp;
6851 int round, i, len, entries;
6852 char_u *p, *s;
6853 int c1, c2 = 0;
6854 struct charstab
6856 int *cp;
6857 char *name;
6859 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6860 static struct charstab filltab[] =
6862 {&fill_stl, "stl"},
6863 {&fill_stlnc, "stlnc"},
6864 {&fill_vert, "vert"},
6865 {&fill_fold, "fold"},
6866 {&fill_diff, "diff"},
6868 #endif
6869 static struct charstab lcstab[] =
6871 {&lcs_eol, "eol"},
6872 {&lcs_ext, "extends"},
6873 {&lcs_nbsp, "nbsp"},
6874 {&lcs_prec, "precedes"},
6875 {&lcs_tab2, "tab"},
6876 {&lcs_trail, "trail"},
6878 struct charstab *tab;
6880 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6881 if (varp == &p_lcs)
6882 #endif
6884 tab = lcstab;
6885 entries = sizeof(lcstab) / sizeof(struct charstab);
6887 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6888 else
6890 tab = filltab;
6891 entries = sizeof(filltab) / sizeof(struct charstab);
6893 #endif
6895 /* first round: check for valid value, second round: assign values */
6896 for (round = 0; round <= 1; ++round)
6898 if (round)
6900 /* After checking that the value is valid: set defaults: space for
6901 * 'fillchars', NUL for 'listchars' */
6902 for (i = 0; i < entries; ++i)
6903 *(tab[i].cp) = (varp == &p_lcs ? NUL : ' ');
6904 if (varp == &p_lcs)
6905 lcs_tab1 = NUL;
6906 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6907 else
6908 fill_diff = '-';
6909 #endif
6911 p = *varp;
6912 while (*p)
6914 for (i = 0; i < entries; ++i)
6916 len = (int)STRLEN(tab[i].name);
6917 if (STRNCMP(p, tab[i].name, len) == 0
6918 && p[len] == ':'
6919 && p[len + 1] != NUL)
6921 s = p + len + 1;
6922 #ifdef FEAT_MBYTE
6923 c1 = mb_ptr2char_adv(&s);
6924 if (mb_char2cells(c1) > 1)
6925 continue;
6926 #else
6927 c1 = *s++;
6928 #endif
6929 if (tab[i].cp == &lcs_tab2)
6931 if (*s == NUL)
6932 continue;
6933 #ifdef FEAT_MBYTE
6934 c2 = mb_ptr2char_adv(&s);
6935 if (mb_char2cells(c2) > 1)
6936 continue;
6937 #else
6938 c2 = *s++;
6939 #endif
6941 if (*s == ',' || *s == NUL)
6943 if (round)
6945 if (tab[i].cp == &lcs_tab2)
6947 lcs_tab1 = c1;
6948 lcs_tab2 = c2;
6950 else
6951 *(tab[i].cp) = c1;
6954 p = s;
6955 break;
6960 if (i == entries)
6961 return e_invarg;
6962 if (*p == ',')
6963 ++p;
6967 return NULL; /* no error */
6970 #ifdef FEAT_STL_OPT
6972 * Check validity of options with the 'statusline' format.
6973 * Return error message or NULL.
6975 char_u *
6976 check_stl_option(s)
6977 char_u *s;
6979 int itemcnt = 0;
6980 int groupdepth = 0;
6981 static char_u errbuf[80];
6983 while (*s && itemcnt < STL_MAX_ITEM)
6985 /* Check for valid keys after % sequences */
6986 while (*s && *s != '%')
6987 s++;
6988 if (!*s)
6989 break;
6990 s++;
6991 if (*s != '%' && *s != ')')
6992 ++itemcnt;
6993 if (*s == '%' || *s == STL_TRUNCMARK || *s == STL_MIDDLEMARK)
6995 s++;
6996 continue;
6998 if (*s == ')')
7000 s++;
7001 if (--groupdepth < 0)
7002 break;
7003 continue;
7005 if (*s == '-')
7006 s++;
7007 while (VIM_ISDIGIT(*s))
7008 s++;
7009 if (*s == STL_USER_HL)
7010 continue;
7011 if (*s == '.')
7013 s++;
7014 while (*s && VIM_ISDIGIT(*s))
7015 s++;
7017 if (*s == '(')
7019 groupdepth++;
7020 continue;
7022 if (vim_strchr(STL_ALL, *s) == NULL)
7024 return illegal_char(errbuf, *s);
7026 if (*s == '{')
7028 s++;
7029 while (*s != '}' && *s)
7030 s++;
7031 if (*s != '}')
7032 return (char_u *)N_("E540: Unclosed expression sequence");
7035 if (itemcnt >= STL_MAX_ITEM)
7036 return (char_u *)N_("E541: too many items");
7037 if (groupdepth != 0)
7038 return (char_u *)N_("E542: unbalanced groups");
7039 return NULL;
7041 #endif
7043 #ifdef FEAT_CLIPBOARD
7045 * Extract the items in the 'clipboard' option and set global values.
7047 static char_u *
7048 check_clipboard_option()
7050 int new_unnamed = FALSE;
7051 int new_autoselect = FALSE;
7052 int new_autoselectml = FALSE;
7053 int new_html = FALSE;
7054 regprog_T *new_exclude_prog = NULL;
7055 char_u *errmsg = NULL;
7056 char_u *p;
7058 for (p = p_cb; *p != NUL; )
7060 if (STRNCMP(p, "unnamed", 7) == 0 && (p[7] == ',' || p[7] == NUL))
7062 new_unnamed = TRUE;
7063 p += 7;
7065 else if (STRNCMP(p, "autoselect", 10) == 0
7066 && (p[10] == ',' || p[10] == NUL))
7068 new_autoselect = TRUE;
7069 p += 10;
7071 else if (STRNCMP(p, "autoselectml", 12) == 0
7072 && (p[12] == ',' || p[12] == NUL))
7074 new_autoselectml = TRUE;
7075 p += 12;
7077 else if (STRNCMP(p, "html", 4) == 0 && (p[4] == ',' || p[4] == NUL))
7079 new_html = TRUE;
7080 p += 4;
7082 else if (STRNCMP(p, "exclude:", 8) == 0 && new_exclude_prog == NULL)
7084 p += 8;
7085 new_exclude_prog = vim_regcomp(p, RE_MAGIC);
7086 if (new_exclude_prog == NULL)
7087 errmsg = e_invarg;
7088 break;
7090 else
7092 errmsg = e_invarg;
7093 break;
7095 if (*p == ',')
7096 ++p;
7098 if (errmsg == NULL)
7100 clip_unnamed = new_unnamed;
7101 clip_autoselect = new_autoselect;
7102 clip_autoselectml = new_autoselectml;
7103 clip_html = new_html;
7104 vim_free(clip_exclude_prog);
7105 clip_exclude_prog = new_exclude_prog;
7107 else
7108 vim_free(new_exclude_prog);
7110 return errmsg;
7112 #endif
7114 #ifdef FEAT_SPELL
7116 * Set curbuf->b_cap_prog to the regexp program for 'spellcapcheck'.
7117 * Return error message when failed, NULL when OK.
7119 static char_u *
7120 compile_cap_prog(buf)
7121 buf_T *buf;
7123 regprog_T *rp = buf->b_cap_prog;
7124 char_u *re;
7126 if (*buf->b_p_spc == NUL)
7127 buf->b_cap_prog = NULL;
7128 else
7130 /* Prepend a ^ so that we only match at one column */
7131 re = concat_str((char_u *)"^", buf->b_p_spc);
7132 if (re != NULL)
7134 buf->b_cap_prog = vim_regcomp(re, RE_MAGIC);
7135 if (buf->b_cap_prog == NULL)
7137 buf->b_cap_prog = rp; /* restore the previous program */
7138 return e_invarg;
7140 vim_free(re);
7144 vim_free(rp);
7145 return NULL;
7147 #endif
7149 #if defined(FEAT_EVAL) || defined(PROTO)
7151 * Set the scriptID for an option, taking care of setting the buffer- or
7152 * window-local value.
7154 static void
7155 set_option_scriptID_idx(opt_idx, opt_flags, id)
7156 int opt_idx;
7157 int opt_flags;
7158 int id;
7160 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
7161 int indir = (int)options[opt_idx].indir;
7163 /* Remember where the option was set. For local options need to do that
7164 * in the buffer or window structure. */
7165 if (both || (opt_flags & OPT_GLOBAL) || (indir & (PV_BUF|PV_WIN)) == 0)
7166 options[opt_idx].scriptID = id;
7167 if (both || (opt_flags & OPT_LOCAL))
7169 if (indir & PV_BUF)
7170 curbuf->b_p_scriptID[indir & PV_MASK] = id;
7171 else if (indir & PV_WIN)
7172 curwin->w_p_scriptID[indir & PV_MASK] = id;
7175 #endif
7178 * Set the value of a boolean option, and take care of side effects.
7179 * Returns NULL for success, or an error message for an error.
7181 static char_u *
7182 set_bool_option(opt_idx, varp, value, opt_flags)
7183 int opt_idx; /* index in options[] table */
7184 char_u *varp; /* pointer to the option variable */
7185 int value; /* new value */
7186 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
7188 int old_value = *(int *)varp;
7190 /* Disallow changing some options from secure mode */
7191 if ((secure
7192 #ifdef HAVE_SANDBOX
7193 || sandbox != 0
7194 #endif
7195 ) && (options[opt_idx].flags & P_SECURE))
7196 return e_secure;
7198 *(int *)varp = value; /* set the new value */
7199 #ifdef FEAT_EVAL
7200 /* Remember where the option was set. */
7201 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
7202 #endif
7204 #ifdef FEAT_GUI
7205 need_mouse_correct = TRUE;
7206 #endif
7208 /* May set global value for local option. */
7209 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0)
7210 *(int *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) = value;
7213 * Handle side effects of changing a bool option.
7216 /* 'compatible' */
7217 if ((int *)varp == &p_cp)
7219 compatible_set();
7222 /* 'list', 'number' */
7223 else if ((int *)varp == &curwin->w_p_list
7224 || (int *)varp == &curwin->w_p_nu)
7226 if (curwin->w_curswant != MAXCOL)
7227 curwin->w_set_curswant = TRUE;
7230 else if ((int *)varp == &curbuf->b_p_ro)
7232 /* when 'readonly' is reset globally, also reset readonlymode */
7233 if (!curbuf->b_p_ro && (opt_flags & OPT_LOCAL) == 0)
7234 readonlymode = FALSE;
7236 /* when 'readonly' is set may give W10 again */
7237 if (curbuf->b_p_ro)
7238 curbuf->b_did_warn = FALSE;
7240 #ifdef FEAT_TITLE
7241 redraw_titles();
7242 #endif
7245 #ifdef FEAT_TITLE
7246 /* when 'modifiable' is changed, redraw the window title */
7247 else if ((int *)varp == &curbuf->b_p_ma)
7249 redraw_titles();
7251 /* when 'endofline' is changed, redraw the window title */
7252 else if ((int *)varp == &curbuf->b_p_eol)
7254 redraw_titles();
7256 # ifdef FEAT_MBYTE
7257 /* when 'bomb' is changed, redraw the window title and tab page text */
7258 else if ((int *)varp == &curbuf->b_p_bomb)
7260 redraw_titles();
7262 # endif
7263 #endif
7265 /* when 'bin' is set also set some other options */
7266 else if ((int *)varp == &curbuf->b_p_bin)
7268 set_options_bin(old_value, curbuf->b_p_bin, opt_flags);
7269 #ifdef FEAT_TITLE
7270 redraw_titles();
7271 #endif
7274 #ifdef FEAT_AUTOCMD
7275 /* when 'buflisted' changes, trigger autocommands */
7276 else if ((int *)varp == &curbuf->b_p_bl && old_value != curbuf->b_p_bl)
7278 apply_autocmds(curbuf->b_p_bl ? EVENT_BUFADD : EVENT_BUFDELETE,
7279 NULL, NULL, TRUE, curbuf);
7281 #endif
7283 /* when 'swf' is set, create swapfile, when reset remove swapfile */
7284 else if ((int *)varp == &curbuf->b_p_swf)
7286 if (curbuf->b_p_swf && p_uc)
7287 ml_open_file(curbuf); /* create the swap file */
7288 else
7289 /* no need to reset curbuf->b_may_swap, ml_open_file() will check
7290 * buf->b_p_swf */
7291 mf_close_file(curbuf, TRUE); /* remove the swap file */
7294 /* when 'terse' is set change 'shortmess' */
7295 else if ((int *)varp == &p_terse)
7297 char_u *p;
7299 p = vim_strchr(p_shm, SHM_SEARCH);
7301 /* insert 's' in p_shm */
7302 if (p_terse && p == NULL)
7304 STRCPY(IObuff, p_shm);
7305 STRCAT(IObuff, "s");
7306 set_string_option_direct((char_u *)"shm", -1, IObuff, OPT_FREE, 0);
7308 /* remove 's' from p_shm */
7309 else if (!p_terse && p != NULL)
7310 STRMOVE(p, p + 1);
7313 /* when 'paste' is set or reset also change other options */
7314 else if ((int *)varp == &p_paste)
7316 paste_option_changed();
7319 /* when 'insertmode' is set from an autocommand need to do work here */
7320 else if ((int *)varp == &p_im)
7322 if (p_im)
7324 if ((State & INSERT) == 0)
7325 need_start_insertmode = TRUE;
7326 stop_insert_mode = FALSE;
7328 else
7330 need_start_insertmode = FALSE;
7331 stop_insert_mode = TRUE;
7332 if (restart_edit != 0 && mode_displayed)
7333 clear_cmdline = TRUE; /* remove "(insert)" */
7334 restart_edit = 0;
7338 /* when 'ignorecase' is set or reset and 'hlsearch' is set, redraw */
7339 else if ((int *)varp == &p_ic && p_hls)
7341 redraw_all_later(SOME_VALID);
7344 #ifdef FEAT_SEARCH_EXTRA
7345 /* when 'hlsearch' is set or reset: reset no_hlsearch */
7346 else if ((int *)varp == &p_hls)
7348 no_hlsearch = FALSE;
7350 #endif
7352 #ifdef FEAT_SCROLLBIND
7353 /* when 'scrollbind' is set: snapshot the current position to avoid a jump
7354 * at the end of normal_cmd() */
7355 else if ((int *)varp == &curwin->w_p_scb)
7357 if (curwin->w_p_scb)
7358 do_check_scrollbind(FALSE);
7360 #endif
7362 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
7363 /* There can be only one window with 'previewwindow' set. */
7364 else if ((int *)varp == &curwin->w_p_pvw)
7366 if (curwin->w_p_pvw)
7368 win_T *win;
7370 for (win = firstwin; win != NULL; win = win->w_next)
7371 if (win->w_p_pvw && win != curwin)
7373 curwin->w_p_pvw = FALSE;
7374 return (char_u *)N_("E590: A preview window already exists");
7378 #endif
7380 /* when 'textmode' is set or reset also change 'fileformat' */
7381 else if ((int *)varp == &curbuf->b_p_tx)
7383 set_fileformat(curbuf->b_p_tx ? EOL_DOS : EOL_UNIX, opt_flags);
7386 /* when 'textauto' is set or reset also change 'fileformats' */
7387 else if ((int *)varp == &p_ta)
7388 set_string_option_direct((char_u *)"ffs", -1,
7389 p_ta ? (char_u *)DFLT_FFS_VIM : (char_u *)"",
7390 OPT_FREE | opt_flags, 0);
7393 * When 'lisp' option changes include/exclude '-' in
7394 * keyword characters.
7396 #ifdef FEAT_LISP
7397 else if (varp == (char_u *)&(curbuf->b_p_lisp))
7399 (void)buf_init_chartab(curbuf, FALSE); /* ignore errors */
7401 #endif
7403 #ifdef FEAT_TITLE
7404 /* when 'title' changed, may need to change the title; same for 'icon' */
7405 else if ((int *)varp == &p_title)
7407 did_set_title(FALSE);
7410 else if ((int *)varp == &p_icon)
7412 did_set_title(TRUE);
7414 #endif
7416 else if ((int *)varp == &curbuf->b_changed)
7418 if (!value)
7419 save_file_ff(curbuf); /* Buffer is unchanged */
7420 #ifdef FEAT_TITLE
7421 redraw_titles();
7422 #endif
7423 #ifdef FEAT_AUTOCMD
7424 modified_was_set = value;
7425 #endif
7428 #ifdef BACKSLASH_IN_FILENAME
7429 else if ((int *)varp == &p_ssl)
7431 if (p_ssl)
7433 psepc = '/';
7434 psepcN = '\\';
7435 pseps[0] = '/';
7437 else
7439 psepc = '\\';
7440 psepcN = '/';
7441 pseps[0] = '\\';
7444 /* need to adjust the file name arguments and buffer names. */
7445 buflist_slash_adjust();
7446 alist_slash_adjust();
7447 # ifdef FEAT_EVAL
7448 scriptnames_slash_adjust();
7449 # endif
7451 #endif
7453 /* If 'wrap' is set, set w_leftcol to zero. */
7454 else if ((int *)varp == &curwin->w_p_wrap)
7456 if (curwin->w_p_wrap)
7457 curwin->w_leftcol = 0;
7458 if (curwin->w_curswant != MAXCOL)
7459 curwin->w_set_curswant = TRUE;
7462 #ifdef FEAT_WINDOWS
7463 else if ((int *)varp == &p_ea)
7465 if (p_ea && !old_value)
7466 win_equal(curwin, FALSE, 0);
7468 #endif
7470 else if ((int *)varp == &p_wiv)
7473 * When 'weirdinvert' changed, set/reset 't_xs'.
7474 * Then set 'weirdinvert' according to value of 't_xs'.
7476 if (p_wiv && !old_value)
7477 T_XS = (char_u *)"y";
7478 else if (!p_wiv && old_value)
7479 T_XS = empty_option;
7480 p_wiv = (*T_XS != NUL);
7483 #ifdef FEAT_BEVAL
7484 else if ((int *)varp == &p_beval)
7486 if (p_beval == TRUE)
7487 gui_mch_enable_beval_area(balloonEval);
7488 else
7489 gui_mch_disable_beval_area(balloonEval);
7491 #endif
7493 #ifdef FEAT_AUTOCHDIR
7494 else if ((int *)varp == &p_acd)
7496 /* Change directories when the 'acd' option is set now. */
7497 DO_AUTOCHDIR
7499 #endif
7501 #ifdef FEAT_DIFF
7502 /* 'diff' */
7503 else if ((int *)varp == &curwin->w_p_diff)
7505 /* May add or remove the buffer from the list of diff buffers. */
7506 diff_buf_adjust(curwin);
7507 # ifdef FEAT_FOLDING
7508 if (foldmethodIsDiff(curwin))
7509 foldUpdateAll(curwin);
7510 # endif
7512 #endif
7514 #ifdef USE_IM_CONTROL
7515 /* 'imdisable' */
7516 else if ((int *)varp == &p_imdisable)
7518 /* Only de-activate it here, it will be enabled when changing mode. */
7519 if (p_imdisable)
7520 im_set_active(FALSE);
7522 #endif
7524 #ifdef FEAT_SPELL
7525 /* 'spell' */
7526 else if ((int *)varp == &curwin->w_p_spell)
7528 if (curwin->w_p_spell)
7530 char_u *errmsg = did_set_spelllang(curbuf);
7532 if (errmsg != NULL)
7533 EMSG(_(errmsg));
7536 #endif
7538 #ifdef FEAT_FKMAP
7539 else if ((int *)varp == &p_altkeymap)
7541 if (old_value != p_altkeymap)
7543 if (!p_altkeymap)
7545 p_hkmap = p_fkmap;
7546 p_fkmap = 0;
7548 else
7550 p_fkmap = p_hkmap;
7551 p_hkmap = 0;
7553 (void)init_chartab();
7558 * In case some second language keymapping options have changed, check
7559 * and correct the setting in a consistent way.
7563 * If hkmap or fkmap are set, reset Arabic keymapping.
7565 if ((p_hkmap || p_fkmap) && p_altkeymap)
7567 p_altkeymap = p_fkmap;
7568 # ifdef FEAT_ARABIC
7569 curwin->w_p_arab = FALSE;
7570 # endif
7571 (void)init_chartab();
7575 * If hkmap set, reset Farsi keymapping.
7577 if (p_hkmap && p_altkeymap)
7579 p_altkeymap = 0;
7580 p_fkmap = 0;
7581 # ifdef FEAT_ARABIC
7582 curwin->w_p_arab = FALSE;
7583 # endif
7584 (void)init_chartab();
7588 * If fkmap set, reset Hebrew keymapping.
7590 if (p_fkmap && !p_altkeymap)
7592 p_altkeymap = 1;
7593 p_hkmap = 0;
7594 # ifdef FEAT_ARABIC
7595 curwin->w_p_arab = FALSE;
7596 # endif
7597 (void)init_chartab();
7599 #endif
7601 #ifdef FEAT_ARABIC
7602 if ((int *)varp == &curwin->w_p_arab)
7604 if (curwin->w_p_arab)
7607 * 'arabic' is set, handle various sub-settings.
7609 if (!p_tbidi)
7611 /* set rightleft mode */
7612 if (!curwin->w_p_rl)
7614 curwin->w_p_rl = TRUE;
7615 changed_window_setting();
7618 /* Enable Arabic shaping (major part of what Arabic requires) */
7619 if (!p_arshape)
7621 p_arshape = TRUE;
7622 redraw_later_clear();
7626 /* Arabic requires a utf-8 encoding, inform the user if its not
7627 * set. */
7628 if (STRCMP(p_enc, "utf-8") != 0)
7630 static char *w_arabic = N_("W17: Arabic requires UTF-8, do ':set encoding=utf-8'");
7632 msg_source(hl_attr(HLF_W));
7633 MSG_ATTR(_(w_arabic), hl_attr(HLF_W));
7634 #ifdef FEAT_EVAL
7635 set_vim_var_string(VV_WARNINGMSG, (char_u *)_(w_arabic), -1);
7636 #endif
7639 # ifdef FEAT_MBYTE
7640 /* set 'delcombine' */
7641 p_deco = TRUE;
7642 # endif
7644 # ifdef FEAT_KEYMAP
7645 /* Force-set the necessary keymap for arabic */
7646 set_option_value((char_u *)"keymap", 0L, (char_u *)"arabic",
7647 OPT_LOCAL);
7648 # endif
7649 # ifdef FEAT_FKMAP
7650 p_altkeymap = 0;
7651 p_hkmap = 0;
7652 p_fkmap = 0;
7653 (void)init_chartab();
7654 # endif
7656 else
7659 * 'arabic' is reset, handle various sub-settings.
7661 if (!p_tbidi)
7663 /* reset rightleft mode */
7664 if (curwin->w_p_rl)
7666 curwin->w_p_rl = FALSE;
7667 changed_window_setting();
7670 /* 'arabicshape' isn't reset, it is a global option and
7671 * another window may still need it "on". */
7674 /* 'delcombine' isn't reset, it is a global option and another
7675 * window may still want it "on". */
7677 # ifdef FEAT_KEYMAP
7678 /* Revert to the default keymap */
7679 curbuf->b_p_iminsert = B_IMODE_NONE;
7680 curbuf->b_p_imsearch = B_IMODE_USE_INSERT;
7681 # endif
7683 if (curwin->w_curswant != MAXCOL)
7684 curwin->w_set_curswant = TRUE;
7687 else if ((int *)varp == &p_arshape)
7689 if (curwin->w_curswant != MAXCOL)
7690 curwin->w_set_curswant = TRUE;
7692 #endif
7694 #ifdef FEAT_LINEBREAK
7695 if ((int *)varp == &curwin->w_p_lbr)
7697 if (curwin->w_curswant != MAXCOL)
7698 curwin->w_set_curswant = TRUE;
7700 #endif
7702 #ifdef FEAT_RIGHTLEFT
7703 if ((int *)varp == &curwin->w_p_rl)
7705 if (curwin->w_curswant != MAXCOL)
7706 curwin->w_set_curswant = TRUE;
7708 #endif
7711 * End of handling side effects for bool options.
7714 options[opt_idx].flags |= P_WAS_SET;
7716 comp_col(); /* in case 'ruler' or 'showcmd' changed */
7718 check_redraw(options[opt_idx].flags);
7720 return NULL;
7724 * Set the value of a number option, and take care of side effects.
7725 * Returns NULL for success, or an error message for an error.
7727 static char_u *
7728 set_num_option(opt_idx, varp, value, errbuf, errbuflen, opt_flags)
7729 int opt_idx; /* index in options[] table */
7730 char_u *varp; /* pointer to the option variable */
7731 long value; /* new value */
7732 char_u *errbuf; /* buffer for error messages */
7733 size_t errbuflen; /* length of "errbuf" */
7734 int opt_flags; /* OPT_LOCAL, OPT_GLOBAL and
7735 OPT_MODELINE */
7737 char_u *errmsg = NULL;
7738 long old_value = *(long *)varp;
7739 long old_Rows = Rows; /* remember old Rows */
7740 long old_Columns = Columns; /* remember old Columns */
7741 long *pp = (long *)varp;
7743 /* Disallow changing some options from secure mode. */
7744 if ((secure
7745 #ifdef HAVE_SANDBOX
7746 || sandbox != 0
7747 #endif
7748 ) && (options[opt_idx].flags & P_SECURE))
7749 return e_secure;
7751 *pp = value;
7752 #ifdef FEAT_EVAL
7753 /* Remember where the option was set. */
7754 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
7755 #endif
7756 #ifdef FEAT_GUI
7757 need_mouse_correct = TRUE;
7758 #endif
7760 if (curbuf->b_p_sw <= 0)
7762 errmsg = e_positive;
7763 curbuf->b_p_sw = curbuf->b_p_ts;
7767 * Number options that need some action when changed
7769 #ifdef FEAT_WINDOWS
7770 if (pp == &p_wh || pp == &p_hh)
7772 if (p_wh < 1)
7774 errmsg = e_positive;
7775 p_wh = 1;
7777 if (p_wmh > p_wh)
7779 errmsg = e_winheight;
7780 p_wh = p_wmh;
7782 if (p_hh < 0)
7784 errmsg = e_positive;
7785 p_hh = 0;
7788 /* Change window height NOW */
7789 if (lastwin != firstwin)
7791 if (pp == &p_wh && curwin->w_height < p_wh)
7792 win_setheight((int)p_wh);
7793 if (pp == &p_hh && curbuf->b_help && curwin->w_height < p_hh)
7794 win_setheight((int)p_hh);
7798 /* 'winminheight' */
7799 else if (pp == &p_wmh)
7801 if (p_wmh < 0)
7803 errmsg = e_positive;
7804 p_wmh = 0;
7806 if (p_wmh > p_wh)
7808 errmsg = e_winheight;
7809 p_wmh = p_wh;
7811 win_setminheight();
7814 # ifdef FEAT_VERTSPLIT
7815 else if (pp == &p_wiw)
7817 if (p_wiw < 1)
7819 errmsg = e_positive;
7820 p_wiw = 1;
7822 if (p_wmw > p_wiw)
7824 errmsg = e_winwidth;
7825 p_wiw = p_wmw;
7828 /* Change window width NOW */
7829 if (lastwin != firstwin && curwin->w_width < p_wiw)
7830 win_setwidth((int)p_wiw);
7833 /* 'winminwidth' */
7834 else if (pp == &p_wmw)
7836 if (p_wmw < 0)
7838 errmsg = e_positive;
7839 p_wmw = 0;
7841 if (p_wmw > p_wiw)
7843 errmsg = e_winwidth;
7844 p_wmw = p_wiw;
7846 win_setminheight();
7848 # endif
7850 #endif
7852 #ifdef FEAT_WINDOWS
7853 /* (re)set last window status line */
7854 else if (pp == &p_ls)
7856 last_status(FALSE);
7859 /* (re)set tab page line */
7860 else if (pp == &p_stal)
7862 shell_new_rows(); /* recompute window positions and heights */
7864 #endif
7866 #ifdef FEAT_GUI
7867 else if (pp == &p_linespace)
7869 /* Recompute gui.char_height and resize the Vim window to keep the
7870 * same number of lines. */
7871 if (gui.in_use && gui_mch_adjust_charheight() == OK)
7872 gui_set_shellsize(FALSE, FALSE, RESIZE_VERT);
7874 #endif
7876 #ifdef FEAT_FOLDING
7877 /* 'foldlevel' */
7878 else if (pp == &curwin->w_p_fdl)
7880 if (curwin->w_p_fdl < 0)
7881 curwin->w_p_fdl = 0;
7882 newFoldLevel();
7885 /* 'foldminlines' */
7886 else if (pp == &curwin->w_p_fml)
7888 foldUpdateAll(curwin);
7891 /* 'foldnestmax' */
7892 else if (pp == &curwin->w_p_fdn)
7894 if (foldmethodIsSyntax(curwin) || foldmethodIsIndent(curwin))
7895 foldUpdateAll(curwin);
7898 /* 'foldcolumn' */
7899 else if (pp == &curwin->w_p_fdc)
7901 if (curwin->w_p_fdc < 0)
7903 errmsg = e_positive;
7904 curwin->w_p_fdc = 0;
7906 else if (curwin->w_p_fdc > 12)
7908 errmsg = e_invarg;
7909 curwin->w_p_fdc = 12;
7913 /* 'shiftwidth' or 'tabstop' */
7914 else if (pp == &curbuf->b_p_sw || pp == &curbuf->b_p_ts)
7916 if (foldmethodIsIndent(curwin))
7917 foldUpdateAll(curwin);
7919 #endif /* FEAT_FOLDING */
7921 #ifdef FEAT_MBYTE
7922 /* 'maxcombine' */
7923 else if (pp == &p_mco)
7925 if (p_mco > MAX_MCO)
7926 p_mco = MAX_MCO;
7927 else if (p_mco < 0)
7928 p_mco = 0;
7929 screenclear(); /* will re-allocate the screen */
7931 #endif
7933 else if (pp == &curbuf->b_p_iminsert)
7935 if (curbuf->b_p_iminsert < 0 || curbuf->b_p_iminsert > B_IMODE_LAST)
7937 errmsg = e_invarg;
7938 curbuf->b_p_iminsert = B_IMODE_NONE;
7940 p_iminsert = curbuf->b_p_iminsert;
7941 if (termcap_active) /* don't do this in the alternate screen */
7942 showmode();
7943 #if defined(FEAT_WINDOWS) && defined(FEAT_KEYMAP)
7944 /* Show/unshow value of 'keymap' in status lines. */
7945 status_redraw_curbuf();
7946 #endif
7949 else if (pp == &p_window)
7951 if (p_window < 1)
7952 p_window = 1;
7953 else if (p_window >= Rows)
7954 p_window = Rows - 1;
7957 else if (pp == &curbuf->b_p_imsearch)
7959 if (curbuf->b_p_imsearch < -1 || curbuf->b_p_imsearch > B_IMODE_LAST)
7961 errmsg = e_invarg;
7962 curbuf->b_p_imsearch = B_IMODE_NONE;
7964 p_imsearch = curbuf->b_p_imsearch;
7967 #ifdef FEAT_TITLE
7968 /* if 'titlelen' has changed, redraw the title */
7969 else if (pp == &p_titlelen)
7971 if (p_titlelen < 0)
7973 errmsg = e_positive;
7974 p_titlelen = 85;
7976 if (starting != NO_SCREEN && old_value != p_titlelen)
7977 need_maketitle = TRUE;
7979 #endif
7981 /* if p_ch changed value, change the command line height */
7982 else if (pp == &p_ch)
7984 if (p_ch < 1)
7986 errmsg = e_positive;
7987 p_ch = 1;
7989 if (p_ch > Rows - min_rows() + 1)
7990 p_ch = Rows - min_rows() + 1;
7992 /* Only compute the new window layout when startup has been
7993 * completed. Otherwise the frame sizes may be wrong. */
7994 if (p_ch != old_value && full_screen
7995 #ifdef FEAT_GUI
7996 && !gui.starting
7997 #endif
7999 command_height();
8002 /* when 'updatecount' changes from zero to non-zero, open swap files */
8003 else if (pp == &p_uc)
8005 if (p_uc < 0)
8007 errmsg = e_positive;
8008 p_uc = 100;
8010 if (p_uc && !old_value)
8011 ml_open_files();
8013 #ifdef MZSCHEME_GUI_THREADS
8014 else if (pp == &p_mzq)
8015 mzvim_reset_timer();
8016 #endif
8018 /* sync undo before 'undolevels' changes */
8019 else if (pp == &p_ul)
8021 /* use the old value, otherwise u_sync() may not work properly */
8022 p_ul = old_value;
8023 u_sync(TRUE);
8024 p_ul = value;
8027 #ifdef FEAT_LINEBREAK
8028 /* 'numberwidth' must be positive */
8029 else if (pp == &curwin->w_p_nuw)
8031 if (curwin->w_p_nuw < 1)
8033 errmsg = e_positive;
8034 curwin->w_p_nuw = 1;
8036 if (curwin->w_p_nuw > 10)
8038 errmsg = e_invarg;
8039 curwin->w_p_nuw = 10;
8041 curwin->w_nrwidth_line_count = 0;
8043 #endif
8046 * Check the bounds for numeric options here
8048 if (Rows < min_rows() && full_screen)
8050 if (errbuf != NULL)
8052 vim_snprintf((char *)errbuf, errbuflen,
8053 _("E593: Need at least %d lines"), min_rows());
8054 errmsg = errbuf;
8056 Rows = min_rows();
8058 if (Columns < MIN_COLUMNS && full_screen)
8060 if (errbuf != NULL)
8062 vim_snprintf((char *)errbuf, errbuflen,
8063 _("E594: Need at least %d columns"), MIN_COLUMNS);
8064 errmsg = errbuf;
8066 Columns = MIN_COLUMNS;
8068 /* Limit the values to avoid an overflow in Rows * Columns. */
8069 if (Columns > 10000)
8070 Columns = 10000;
8071 if (Rows > 1000)
8072 Rows = 1000;
8074 #ifdef DJGPP
8075 /* avoid a crash by checking for a too large value of 'columns' */
8076 if (old_Columns != Columns && full_screen && term_console)
8077 mch_check_columns();
8078 #endif
8081 * If the screen (shell) height has been changed, assume it is the
8082 * physical screenheight.
8084 if (old_Rows != Rows || old_Columns != Columns)
8086 /* Changing the screen size is not allowed while updating the screen. */
8087 if (updating_screen)
8088 *pp = old_value;
8089 else if (full_screen
8090 #ifdef FEAT_GUI
8091 && !gui.starting
8092 #endif
8094 set_shellsize((int)Columns, (int)Rows, TRUE);
8095 else
8097 /* Postpone the resizing; check the size and cmdline position for
8098 * messages. */
8099 check_shellsize();
8100 if (cmdline_row > Rows - p_ch && Rows > p_ch)
8101 cmdline_row = Rows - p_ch;
8103 if (p_window >= Rows || !option_was_set((char_u *)"window"))
8104 p_window = Rows - 1;
8107 if (curbuf->b_p_sts < 0)
8109 errmsg = e_positive;
8110 curbuf->b_p_sts = 0;
8112 if (curbuf->b_p_ts <= 0)
8114 errmsg = e_positive;
8115 curbuf->b_p_ts = 8;
8117 if (curbuf->b_p_tw < 0)
8119 errmsg = e_positive;
8120 curbuf->b_p_tw = 0;
8122 if (p_tm < 0)
8124 errmsg = e_positive;
8125 p_tm = 0;
8127 if ((curwin->w_p_scr <= 0
8128 || (curwin->w_p_scr > curwin->w_height
8129 && curwin->w_height > 0))
8130 && full_screen)
8132 if (pp == &(curwin->w_p_scr))
8134 if (curwin->w_p_scr != 0)
8135 errmsg = e_scroll;
8136 win_comp_scroll(curwin);
8138 /* If 'scroll' became invalid because of a side effect silently adjust
8139 * it. */
8140 else if (curwin->w_p_scr <= 0)
8141 curwin->w_p_scr = 1;
8142 else /* curwin->w_p_scr > curwin->w_height */
8143 curwin->w_p_scr = curwin->w_height;
8145 if (p_hi < 0)
8147 errmsg = e_positive;
8148 p_hi = 0;
8150 if (p_report < 0)
8152 errmsg = e_positive;
8153 p_report = 1;
8155 if ((p_sj < -100 || p_sj >= Rows) && full_screen)
8157 if (Rows != old_Rows) /* Rows changed, just adjust p_sj */
8158 p_sj = Rows / 2;
8159 else
8161 errmsg = e_scroll;
8162 p_sj = 1;
8165 if (p_so < 0 && full_screen)
8167 errmsg = e_scroll;
8168 p_so = 0;
8170 if (p_siso < 0 && full_screen)
8172 errmsg = e_positive;
8173 p_siso = 0;
8175 #ifdef FEAT_CMDWIN
8176 if (p_cwh < 1)
8178 errmsg = e_positive;
8179 p_cwh = 1;
8181 #endif
8182 if (p_ut < 0)
8184 errmsg = e_positive;
8185 p_ut = 2000;
8187 if (p_ss < 0)
8189 errmsg = e_positive;
8190 p_ss = 0;
8193 /* May set global value for local option. */
8194 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0)
8195 *(long *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) = *pp;
8197 options[opt_idx].flags |= P_WAS_SET;
8199 comp_col(); /* in case 'columns' or 'ls' changed */
8200 if (curwin->w_curswant != MAXCOL)
8201 curwin->w_set_curswant = TRUE; /* in case 'tabstop' changed */
8202 check_redraw(options[opt_idx].flags);
8204 return errmsg;
8208 * Called after an option changed: check if something needs to be redrawn.
8210 static void
8211 check_redraw(flags)
8212 long_u flags;
8214 /* Careful: P_RCLR and P_RALL are a combination of other P_ flags */
8215 int clear = (flags & P_RCLR) == P_RCLR;
8216 int all = ((flags & P_RALL) == P_RALL || clear);
8218 #ifdef FEAT_WINDOWS
8219 if ((flags & P_RSTAT) || all) /* mark all status lines dirty */
8220 status_redraw_all();
8221 #endif
8223 if ((flags & P_RBUF) || (flags & P_RWIN) || all)
8224 changed_window_setting();
8225 if (flags & P_RBUF)
8226 redraw_curbuf_later(NOT_VALID);
8227 if (clear)
8228 redraw_all_later(CLEAR);
8229 else if (all)
8230 redraw_all_later(NOT_VALID);
8234 * Find index for option 'arg'.
8235 * Return -1 if not found.
8237 static int
8238 findoption(arg)
8239 char_u *arg;
8241 int opt_idx;
8242 char *s, *p;
8243 static short quick_tab[27] = {0, 0}; /* quick access table */
8244 int is_term_opt;
8247 * For first call: Initialize the quick-access table.
8248 * It contains the index for the first option that starts with a certain
8249 * letter. There are 26 letters, plus the first "t_" option.
8251 if (quick_tab[1] == 0)
8253 p = options[0].fullname;
8254 for (opt_idx = 1; (s = options[opt_idx].fullname) != NULL; opt_idx++)
8256 if (s[0] != p[0])
8258 if (s[0] == 't' && s[1] == '_')
8259 quick_tab[26] = opt_idx;
8260 else
8261 quick_tab[CharOrdLow(s[0])] = opt_idx;
8263 p = s;
8268 * Check for name starting with an illegal character.
8270 #ifdef EBCDIC
8271 if (!islower(arg[0]))
8272 #else
8273 if (arg[0] < 'a' || arg[0] > 'z')
8274 #endif
8275 return -1;
8277 is_term_opt = (arg[0] == 't' && arg[1] == '_');
8278 if (is_term_opt)
8279 opt_idx = quick_tab[26];
8280 else
8281 opt_idx = quick_tab[CharOrdLow(arg[0])];
8282 for ( ; (s = options[opt_idx].fullname) != NULL; opt_idx++)
8284 if (STRCMP(arg, s) == 0) /* match full name */
8285 break;
8287 if (s == NULL && !is_term_opt)
8289 opt_idx = quick_tab[CharOrdLow(arg[0])];
8290 for ( ; options[opt_idx].fullname != NULL; opt_idx++)
8292 s = options[opt_idx].shortname;
8293 if (s != NULL && STRCMP(arg, s) == 0) /* match short name */
8294 break;
8295 s = NULL;
8298 if (s == NULL)
8299 opt_idx = -1;
8300 return opt_idx;
8303 #if defined(FEAT_EVAL) || defined(FEAT_TCL) || defined(FEAT_MZSCHEME)
8305 * Get the value for an option.
8307 * Returns:
8308 * Number or Toggle option: 1, *numval gets value.
8309 * String option: 0, *stringval gets allocated string.
8310 * Hidden Number or Toggle option: -1.
8311 * hidden String option: -2.
8312 * unknown option: -3.
8315 get_option_value(name, numval, stringval, opt_flags)
8316 char_u *name;
8317 long *numval;
8318 char_u **stringval; /* NULL when only checking existance */
8319 int opt_flags;
8321 int opt_idx;
8322 char_u *varp;
8324 opt_idx = findoption(name);
8325 if (opt_idx < 0) /* unknown option */
8326 return -3;
8328 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
8330 if (options[opt_idx].flags & P_STRING)
8332 if (varp == NULL) /* hidden option */
8333 return -2;
8334 if (stringval != NULL)
8336 #ifdef FEAT_CRYPT
8337 /* never return the value of the crypt key */
8338 if ((char_u **)varp == &curbuf->b_p_key
8339 && **(char_u **)(varp) != NUL)
8340 *stringval = vim_strsave((char_u *)"*****");
8341 else
8342 #endif
8343 *stringval = vim_strsave(*(char_u **)(varp));
8345 return 0;
8348 if (varp == NULL) /* hidden option */
8349 return -1;
8350 if (options[opt_idx].flags & P_NUM)
8351 *numval = *(long *)varp;
8352 else
8354 /* Special case: 'modified' is b_changed, but we also want to consider
8355 * it set when 'ff' or 'fenc' changed. */
8356 if ((int *)varp == &curbuf->b_changed)
8357 *numval = curbufIsChanged();
8358 else
8359 *numval = *(int *)varp;
8361 return 1;
8363 #endif
8366 * Set the value of option "name".
8367 * Use "string" for string options, use "number" for other options.
8369 void
8370 set_option_value(name, number, string, opt_flags)
8371 char_u *name;
8372 long number;
8373 char_u *string;
8374 int opt_flags; /* OPT_LOCAL or 0 (both) */
8376 int opt_idx;
8377 char_u *varp;
8378 long_u flags;
8380 opt_idx = findoption(name);
8381 if (opt_idx < 0)
8382 EMSG2(_("E355: Unknown option: %s"), name);
8383 else
8385 flags = options[opt_idx].flags;
8386 #ifdef HAVE_SANDBOX
8387 /* Disallow changing some options in the sandbox */
8388 if (sandbox > 0 && (flags & P_SECURE))
8390 EMSG(_(e_sandbox));
8391 return;
8393 #endif
8394 if (flags & P_STRING)
8395 set_string_option(opt_idx, string, opt_flags);
8396 else
8398 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
8399 if (varp != NULL) /* hidden option is not changed */
8401 if (number == 0 && string != NULL)
8403 int idx;
8405 /* Either we are given a string or we are setting option
8406 * to zero. */
8407 for (idx = 0; string[idx] == '0'; ++idx)
8409 if (string[idx] != NUL || idx == 0)
8411 /* There's another character after zeros or the string
8412 * is empty. In both cases, we are trying to set a
8413 * num option using a string. */
8414 EMSG3(_("E521: Number required: &%s = '%s'"),
8415 name, string);
8416 return; /* do nothing as we hit an error */
8420 if (flags & P_NUM)
8421 (void)set_num_option(opt_idx, varp, number,
8422 NULL, 0, opt_flags);
8423 else
8424 (void)set_bool_option(opt_idx, varp, (int)number,
8425 opt_flags);
8432 * Get the terminal code for a terminal option.
8433 * Returns NULL when not found.
8435 char_u *
8436 get_term_code(tname)
8437 char_u *tname;
8439 int opt_idx;
8440 char_u *varp;
8442 if (tname[0] != 't' || tname[1] != '_' ||
8443 tname[2] == NUL || tname[3] == NUL)
8444 return NULL;
8445 if ((opt_idx = findoption(tname)) >= 0)
8447 varp = get_varp(&(options[opt_idx]));
8448 if (varp != NULL)
8449 varp = *(char_u **)(varp);
8450 return varp;
8452 return find_termcode(tname + 2);
8455 char_u *
8456 get_highlight_default()
8458 int i;
8460 i = findoption((char_u *)"hl");
8461 if (i >= 0)
8462 return options[i].def_val[VI_DEFAULT];
8463 return (char_u *)NULL;
8466 #if defined(FEAT_MBYTE) || defined(PROTO)
8467 char_u *
8468 get_encoding_default()
8470 int i;
8472 i = findoption((char_u *)"enc");
8473 if (i >= 0)
8474 return options[i].def_val[VI_DEFAULT];
8475 return (char_u *)NULL;
8477 #endif
8480 * Translate a string like "t_xx", "<t_xx>" or "<S-Tab>" to a key number.
8482 static int
8483 find_key_option(arg)
8484 char_u *arg;
8486 int key;
8487 int modifiers;
8490 * Don't use get_special_key_code() for t_xx, we don't want it to call
8491 * add_termcap_entry().
8493 if (arg[0] == 't' && arg[1] == '_' && arg[2] && arg[3])
8494 key = TERMCAP2KEY(arg[2], arg[3]);
8495 else
8497 --arg; /* put arg at the '<' */
8498 modifiers = 0;
8499 key = find_special_key(&arg, &modifiers, TRUE, TRUE);
8500 if (modifiers) /* can't handle modifiers here */
8501 key = 0;
8503 return key;
8507 * if 'all' == 0: show changed options
8508 * if 'all' == 1: show all normal options
8509 * if 'all' == 2: show all terminal options
8511 static void
8512 showoptions(all, opt_flags)
8513 int all;
8514 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
8516 struct vimoption *p;
8517 int col;
8518 int isterm;
8519 char_u *varp;
8520 struct vimoption **items;
8521 int item_count;
8522 int run;
8523 int row, rows;
8524 int cols;
8525 int i;
8526 int len;
8528 #define INC 20
8529 #define GAP 3
8531 items = (struct vimoption **)alloc((unsigned)(sizeof(struct vimoption *) *
8532 PARAM_COUNT));
8533 if (items == NULL)
8534 return;
8536 /* Highlight title */
8537 if (all == 2)
8538 MSG_PUTS_TITLE(_("\n--- Terminal codes ---"));
8539 else if (opt_flags & OPT_GLOBAL)
8540 MSG_PUTS_TITLE(_("\n--- Global option values ---"));
8541 else if (opt_flags & OPT_LOCAL)
8542 MSG_PUTS_TITLE(_("\n--- Local option values ---"));
8543 else
8544 MSG_PUTS_TITLE(_("\n--- Options ---"));
8547 * do the loop two times:
8548 * 1. display the short items
8549 * 2. display the long items (only strings and numbers)
8551 for (run = 1; run <= 2 && !got_int; ++run)
8554 * collect the items in items[]
8556 item_count = 0;
8557 for (p = &options[0]; p->fullname != NULL; p++)
8559 varp = NULL;
8560 isterm = istermoption(p);
8561 if (opt_flags != 0)
8563 if (p->indir != PV_NONE && !isterm)
8564 varp = get_varp_scope(p, opt_flags);
8566 else
8567 varp = get_varp(p);
8568 if (varp != NULL
8569 && ((all == 2 && isterm)
8570 || (all == 1 && !isterm)
8571 || (all == 0 && !optval_default(p, varp))))
8573 if (p->flags & P_BOOL)
8574 len = 1; /* a toggle option fits always */
8575 else
8577 option_value2string(p, opt_flags);
8578 len = (int)STRLEN(p->fullname) + vim_strsize(NameBuff) + 1;
8580 if ((len <= INC - GAP && run == 1) ||
8581 (len > INC - GAP && run == 2))
8582 items[item_count++] = p;
8587 * display the items
8589 if (run == 1)
8591 cols = (Columns + GAP - 3) / INC;
8592 if (cols == 0)
8593 cols = 1;
8594 rows = (item_count + cols - 1) / cols;
8596 else /* run == 2 */
8597 rows = item_count;
8598 for (row = 0; row < rows && !got_int; ++row)
8600 msg_putchar('\n'); /* go to next line */
8601 if (got_int) /* 'q' typed in more */
8602 break;
8603 col = 0;
8604 for (i = row; i < item_count; i += rows)
8606 msg_col = col; /* make columns */
8607 showoneopt(items[i], opt_flags);
8608 col += INC;
8610 out_flush();
8611 ui_breakcheck();
8614 vim_free(items);
8618 * Return TRUE if option "p" has its default value.
8620 static int
8621 optval_default(p, varp)
8622 struct vimoption *p;
8623 char_u *varp;
8625 int dvi;
8627 if (varp == NULL)
8628 return TRUE; /* hidden option is always at default */
8629 dvi = ((p->flags & P_VI_DEF) || p_cp) ? VI_DEFAULT : VIM_DEFAULT;
8630 if (p->flags & P_NUM)
8631 return (*(long *)varp == (long)(long_i)p->def_val[dvi]);
8632 if (p->flags & P_BOOL)
8633 /* the cast to long is required for Manx C, long_i is
8634 * needed for MSVC */
8635 return (*(int *)varp == (int)(long)(long_i)p->def_val[dvi]);
8636 /* P_STRING */
8637 return (STRCMP(*(char_u **)varp, p->def_val[dvi]) == 0);
8641 * showoneopt: show the value of one option
8642 * must not be called with a hidden option!
8644 static void
8645 showoneopt(p, opt_flags)
8646 struct vimoption *p;
8647 int opt_flags; /* OPT_LOCAL or OPT_GLOBAL */
8649 char_u *varp;
8650 int save_silent = silent_mode;
8652 silent_mode = FALSE;
8653 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
8655 varp = get_varp_scope(p, opt_flags);
8657 /* for 'modified' we also need to check if 'ff' or 'fenc' changed. */
8658 if ((p->flags & P_BOOL) && ((int *)varp == &curbuf->b_changed
8659 ? !curbufIsChanged() : !*(int *)varp))
8660 MSG_PUTS("no");
8661 else if ((p->flags & P_BOOL) && *(int *)varp < 0)
8662 MSG_PUTS("--");
8663 else
8664 MSG_PUTS(" ");
8665 MSG_PUTS(p->fullname);
8666 if (!(p->flags & P_BOOL))
8668 msg_putchar('=');
8669 /* put value string in NameBuff */
8670 option_value2string(p, opt_flags);
8671 msg_outtrans(NameBuff);
8674 silent_mode = save_silent;
8675 info_message = FALSE;
8679 * Write modified options as ":set" commands to a file.
8681 * There are three values for "opt_flags":
8682 * OPT_GLOBAL: Write global option values and fresh values of
8683 * buffer-local options (used for start of a session
8684 * file).
8685 * OPT_GLOBAL + OPT_LOCAL: Idem, add fresh values of window-local options for
8686 * curwin (used for a vimrc file).
8687 * OPT_LOCAL: Write buffer-local option values for curbuf, fresh
8688 * and local values for window-local options of
8689 * curwin. Local values are also written when at the
8690 * default value, because a modeline or autocommand
8691 * may have set them when doing ":edit file" and the
8692 * user has set them back at the default or fresh
8693 * value.
8694 * When "local_only" is TRUE, don't write fresh
8695 * values, only local values (for ":mkview").
8696 * (fresh value = value used for a new buffer or window for a local option).
8698 * Return FAIL on error, OK otherwise.
8701 makeset(fd, opt_flags, local_only)
8702 FILE *fd;
8703 int opt_flags;
8704 int local_only;
8706 struct vimoption *p;
8707 char_u *varp; /* currently used value */
8708 char_u *varp_fresh; /* local value */
8709 char_u *varp_local = NULL; /* fresh value */
8710 char *cmd;
8711 int round;
8712 int pri;
8715 * The options that don't have a default (terminal name, columns, lines)
8716 * are never written. Terminal options are also not written.
8717 * Do the loop over "options[]" twice: once for options with the
8718 * P_PRI_MKRC flag and once without.
8720 for (pri = 1; pri >= 0; --pri)
8722 for (p = &options[0]; !istermoption(p); p++)
8723 if (!(p->flags & P_NO_MKRC)
8724 && !istermoption(p)
8725 && ((pri == 1) == ((p->flags & P_PRI_MKRC) != 0)))
8727 /* skip global option when only doing locals */
8728 if (p->indir == PV_NONE && !(opt_flags & OPT_GLOBAL))
8729 continue;
8731 /* Do not store options like 'bufhidden' and 'syntax' in a vimrc
8732 * file, they are always buffer-specific. */
8733 if ((opt_flags & OPT_GLOBAL) && (p->flags & P_NOGLOB))
8734 continue;
8736 /* Global values are only written when not at the default value. */
8737 varp = get_varp_scope(p, opt_flags);
8738 if ((opt_flags & OPT_GLOBAL) && optval_default(p, varp))
8739 continue;
8741 round = 2;
8742 if (p->indir != PV_NONE)
8744 if (p->var == VAR_WIN)
8746 /* skip window-local option when only doing globals */
8747 if (!(opt_flags & OPT_LOCAL))
8748 continue;
8749 /* When fresh value of window-local option is not at the
8750 * default, need to write it too. */
8751 if (!(opt_flags & OPT_GLOBAL) && !local_only)
8753 varp_fresh = get_varp_scope(p, OPT_GLOBAL);
8754 if (!optval_default(p, varp_fresh))
8756 round = 1;
8757 varp_local = varp;
8758 varp = varp_fresh;
8764 /* Round 1: fresh value for window-local options.
8765 * Round 2: other values */
8766 for ( ; round <= 2; varp = varp_local, ++round)
8768 if (round == 1 || (opt_flags & OPT_GLOBAL))
8769 cmd = "set";
8770 else
8771 cmd = "setlocal";
8773 if (p->flags & P_BOOL)
8775 if (put_setbool(fd, cmd, p->fullname, *(int *)varp) == FAIL)
8776 return FAIL;
8778 else if (p->flags & P_NUM)
8780 if (put_setnum(fd, cmd, p->fullname, (long *)varp) == FAIL)
8781 return FAIL;
8783 else /* P_STRING */
8785 #if defined(FEAT_SYN_HL) || defined(FEAT_AUTOCMD)
8786 int do_endif = FALSE;
8788 /* Don't set 'syntax' and 'filetype' again if the value is
8789 * already right, avoids reloading the syntax file. */
8790 if (
8791 # if defined(FEAT_SYN_HL)
8792 p->indir == PV_SYN
8793 # if defined(FEAT_AUTOCMD)
8795 # endif
8796 # endif
8797 # if defined(FEAT_AUTOCMD)
8798 p->indir == PV_FT
8799 # endif
8802 if (fprintf(fd, "if &%s != '%s'", p->fullname,
8803 *(char_u **)(varp)) < 0
8804 || put_eol(fd) < 0)
8805 return FAIL;
8806 do_endif = TRUE;
8808 #endif
8809 if (put_setstring(fd, cmd, p->fullname, (char_u **)varp,
8810 (p->flags & P_EXPAND) != 0) == FAIL)
8811 return FAIL;
8812 #if defined(FEAT_SYN_HL) || defined(FEAT_AUTOCMD)
8813 if (do_endif)
8815 if (put_line(fd, "endif") == FAIL)
8816 return FAIL;
8818 #endif
8823 return OK;
8826 #if defined(FEAT_FOLDING) || defined(PROTO)
8828 * Generate set commands for the local fold options only. Used when
8829 * 'sessionoptions' or 'viewoptions' contains "folds" but not "options".
8832 makefoldset(fd)
8833 FILE *fd;
8835 if (put_setstring(fd, "setlocal", "fdm", &curwin->w_p_fdm, FALSE) == FAIL
8836 # ifdef FEAT_EVAL
8837 || put_setstring(fd, "setlocal", "fde", &curwin->w_p_fde, FALSE)
8838 == FAIL
8839 # endif
8840 || put_setstring(fd, "setlocal", "fmr", &curwin->w_p_fmr, FALSE)
8841 == FAIL
8842 || put_setstring(fd, "setlocal", "fdi", &curwin->w_p_fdi, FALSE)
8843 == FAIL
8844 || put_setnum(fd, "setlocal", "fdl", &curwin->w_p_fdl) == FAIL
8845 || put_setnum(fd, "setlocal", "fml", &curwin->w_p_fml) == FAIL
8846 || put_setnum(fd, "setlocal", "fdn", &curwin->w_p_fdn) == FAIL
8847 || put_setbool(fd, "setlocal", "fen", curwin->w_p_fen) == FAIL
8849 return FAIL;
8851 return OK;
8853 #endif
8855 static int
8856 put_setstring(fd, cmd, name, valuep, expand)
8857 FILE *fd;
8858 char *cmd;
8859 char *name;
8860 char_u **valuep;
8861 int expand;
8863 char_u *s;
8864 char_u buf[MAXPATHL];
8866 if (fprintf(fd, "%s %s=", cmd, name) < 0)
8867 return FAIL;
8868 if (*valuep != NULL)
8870 /* Output 'pastetoggle' as key names. For other
8871 * options some characters have to be escaped with
8872 * CTRL-V or backslash */
8873 if (valuep == &p_pt)
8875 s = *valuep;
8876 while (*s != NUL)
8877 if (put_escstr(fd, str2special(&s, FALSE), 2) == FAIL)
8878 return FAIL;
8880 else if (expand)
8882 home_replace(NULL, *valuep, buf, MAXPATHL, FALSE);
8883 if (put_escstr(fd, buf, 2) == FAIL)
8884 return FAIL;
8886 else if (put_escstr(fd, *valuep, 2) == FAIL)
8887 return FAIL;
8889 if (put_eol(fd) < 0)
8890 return FAIL;
8891 return OK;
8894 static int
8895 put_setnum(fd, cmd, name, valuep)
8896 FILE *fd;
8897 char *cmd;
8898 char *name;
8899 long *valuep;
8901 long wc;
8903 if (fprintf(fd, "%s %s=", cmd, name) < 0)
8904 return FAIL;
8905 if (wc_use_keyname((char_u *)valuep, &wc))
8907 /* print 'wildchar' and 'wildcharm' as a key name */
8908 if (fputs((char *)get_special_key_name((int)wc, 0), fd) < 0)
8909 return FAIL;
8911 else if (fprintf(fd, "%ld", *valuep) < 0)
8912 return FAIL;
8913 if (put_eol(fd) < 0)
8914 return FAIL;
8915 return OK;
8918 static int
8919 put_setbool(fd, cmd, name, value)
8920 FILE *fd;
8921 char *cmd;
8922 char *name;
8923 int value;
8925 if (value < 0) /* global/local option using global value */
8926 return OK;
8927 if (fprintf(fd, "%s %s%s", cmd, value ? "" : "no", name) < 0
8928 || put_eol(fd) < 0)
8929 return FAIL;
8930 return OK;
8934 * Clear all the terminal options.
8935 * If the option has been allocated, free the memory.
8936 * Terminal options are never hidden or indirect.
8938 void
8939 clear_termoptions()
8942 * Reset a few things before clearing the old options. This may cause
8943 * outputting a few things that the terminal doesn't understand, but the
8944 * screen will be cleared later, so this is OK.
8946 #ifdef FEAT_MOUSE_TTY
8947 mch_setmouse(FALSE); /* switch mouse off */
8948 #endif
8949 #ifdef FEAT_TITLE
8950 mch_restore_title(3); /* restore window titles */
8951 #endif
8952 #if defined(FEAT_XCLIPBOARD) && defined(FEAT_GUI)
8953 /* When starting the GUI close the display opened for the clipboard.
8954 * After restoring the title, because that will need the display. */
8955 if (gui.starting)
8956 clear_xterm_clip();
8957 #endif
8958 #ifdef WIN3264
8960 * Check if this is allowed now.
8962 if (can_end_termcap_mode(FALSE) == TRUE)
8963 #endif
8964 stoptermcap(); /* stop termcap mode */
8966 free_termoptions();
8969 void
8970 free_termoptions()
8972 struct vimoption *p;
8974 for (p = &options[0]; p->fullname != NULL; p++)
8975 if (istermoption(p))
8977 if (p->flags & P_ALLOCED)
8978 free_string_option(*(char_u **)(p->var));
8979 if (p->flags & P_DEF_ALLOCED)
8980 free_string_option(p->def_val[VI_DEFAULT]);
8981 *(char_u **)(p->var) = empty_option;
8982 p->def_val[VI_DEFAULT] = empty_option;
8983 p->flags &= ~(P_ALLOCED|P_DEF_ALLOCED);
8985 clear_termcodes();
8989 * Free the string for one term option, if it was allocated.
8990 * Set the string to empty_option and clear allocated flag.
8991 * "var" points to the option value.
8993 void
8994 free_one_termoption(var)
8995 char_u *var;
8997 struct vimoption *p;
8999 for (p = &options[0]; p->fullname != NULL; p++)
9000 if (p->var == var)
9002 if (p->flags & P_ALLOCED)
9003 free_string_option(*(char_u **)(p->var));
9004 *(char_u **)(p->var) = empty_option;
9005 p->flags &= ~P_ALLOCED;
9006 break;
9011 * Set the terminal option defaults to the current value.
9012 * Used after setting the terminal name.
9014 void
9015 set_term_defaults()
9017 struct vimoption *p;
9019 for (p = &options[0]; p->fullname != NULL; p++)
9021 if (istermoption(p) && p->def_val[VI_DEFAULT] != *(char_u **)(p->var))
9023 if (p->flags & P_DEF_ALLOCED)
9025 free_string_option(p->def_val[VI_DEFAULT]);
9026 p->flags &= ~P_DEF_ALLOCED;
9028 p->def_val[VI_DEFAULT] = *(char_u **)(p->var);
9029 if (p->flags & P_ALLOCED)
9031 p->flags |= P_DEF_ALLOCED;
9032 p->flags &= ~P_ALLOCED; /* don't free the value now */
9039 * return TRUE if 'p' starts with 't_'
9041 static int
9042 istermoption(p)
9043 struct vimoption *p;
9045 return (p->fullname[0] == 't' && p->fullname[1] == '_');
9049 * Compute columns for ruler and shown command. 'sc_col' is also used to
9050 * decide what the maximum length of a message on the status line can be.
9051 * If there is a status line for the last window, 'sc_col' is independent
9052 * of 'ru_col'.
9055 #define COL_RULER 17 /* columns needed by standard ruler */
9057 void
9058 comp_col()
9060 #if defined(FEAT_CMDL_INFO) && defined(FEAT_WINDOWS)
9061 int last_has_status = (p_ls == 2 || (p_ls == 1 && firstwin != lastwin));
9063 sc_col = 0;
9064 ru_col = 0;
9065 if (p_ru)
9067 #ifdef FEAT_STL_OPT
9068 ru_col = (ru_wid ? ru_wid : COL_RULER) + 1;
9069 #else
9070 ru_col = COL_RULER + 1;
9071 #endif
9072 /* no last status line, adjust sc_col */
9073 if (!last_has_status)
9074 sc_col = ru_col;
9076 if (p_sc)
9078 sc_col += SHOWCMD_COLS;
9079 if (!p_ru || last_has_status) /* no need for separating space */
9080 ++sc_col;
9082 sc_col = Columns - sc_col;
9083 ru_col = Columns - ru_col;
9084 if (sc_col <= 0) /* screen too narrow, will become a mess */
9085 sc_col = 1;
9086 if (ru_col <= 0)
9087 ru_col = 1;
9088 #else
9089 sc_col = Columns;
9090 ru_col = Columns;
9091 #endif
9095 * Get pointer to option variable, depending on local or global scope.
9097 static char_u *
9098 get_varp_scope(p, opt_flags)
9099 struct vimoption *p;
9100 int opt_flags;
9102 if ((opt_flags & OPT_GLOBAL) && p->indir != PV_NONE)
9104 if (p->var == VAR_WIN)
9105 return (char_u *)GLOBAL_WO(get_varp(p));
9106 return p->var;
9108 if ((opt_flags & OPT_LOCAL) && ((int)p->indir & PV_BOTH))
9110 switch ((int)p->indir)
9112 #ifdef FEAT_QUICKFIX
9113 case PV_EFM: return (char_u *)&(curbuf->b_p_efm);
9114 case PV_GP: return (char_u *)&(curbuf->b_p_gp);
9115 case PV_MP: return (char_u *)&(curbuf->b_p_mp);
9116 #endif
9117 case PV_EP: return (char_u *)&(curbuf->b_p_ep);
9118 case PV_KP: return (char_u *)&(curbuf->b_p_kp);
9119 case PV_PATH: return (char_u *)&(curbuf->b_p_path);
9120 case PV_AR: return (char_u *)&(curbuf->b_p_ar);
9121 case PV_TAGS: return (char_u *)&(curbuf->b_p_tags);
9122 #ifdef FEAT_FIND_ID
9123 case PV_DEF: return (char_u *)&(curbuf->b_p_def);
9124 case PV_INC: return (char_u *)&(curbuf->b_p_inc);
9125 #endif
9126 #ifdef FEAT_INS_EXPAND
9127 case PV_DICT: return (char_u *)&(curbuf->b_p_dict);
9128 case PV_TSR: return (char_u *)&(curbuf->b_p_tsr);
9129 #endif
9130 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9131 case PV_BEXPR: return (char_u *)&(curbuf->b_p_bexpr);
9132 #endif
9133 #ifdef FEAT_STL_OPT
9134 case PV_STL: return (char_u *)&(curwin->w_p_stl);
9135 #endif
9137 return NULL; /* "cannot happen" */
9139 return get_varp(p);
9143 * Get pointer to option variable.
9145 static char_u *
9146 get_varp(p)
9147 struct vimoption *p;
9149 /* hidden option, always return NULL */
9150 if (p->var == NULL)
9151 return NULL;
9153 switch ((int)p->indir)
9155 case PV_NONE: return p->var;
9157 /* global option with local value: use local value if it's been set */
9158 case PV_EP: return *curbuf->b_p_ep != NUL
9159 ? (char_u *)&curbuf->b_p_ep : p->var;
9160 case PV_KP: return *curbuf->b_p_kp != NUL
9161 ? (char_u *)&curbuf->b_p_kp : p->var;
9162 case PV_PATH: return *curbuf->b_p_path != NUL
9163 ? (char_u *)&(curbuf->b_p_path) : p->var;
9164 case PV_AR: return curbuf->b_p_ar >= 0
9165 ? (char_u *)&(curbuf->b_p_ar) : p->var;
9166 case PV_TAGS: return *curbuf->b_p_tags != NUL
9167 ? (char_u *)&(curbuf->b_p_tags) : p->var;
9168 #ifdef FEAT_FIND_ID
9169 case PV_DEF: return *curbuf->b_p_def != NUL
9170 ? (char_u *)&(curbuf->b_p_def) : p->var;
9171 case PV_INC: return *curbuf->b_p_inc != NUL
9172 ? (char_u *)&(curbuf->b_p_inc) : p->var;
9173 #endif
9174 #ifdef FEAT_INS_EXPAND
9175 case PV_DICT: return *curbuf->b_p_dict != NUL
9176 ? (char_u *)&(curbuf->b_p_dict) : p->var;
9177 case PV_TSR: return *curbuf->b_p_tsr != NUL
9178 ? (char_u *)&(curbuf->b_p_tsr) : p->var;
9179 #endif
9180 #ifdef FEAT_QUICKFIX
9181 case PV_EFM: return *curbuf->b_p_efm != NUL
9182 ? (char_u *)&(curbuf->b_p_efm) : p->var;
9183 case PV_GP: return *curbuf->b_p_gp != NUL
9184 ? (char_u *)&(curbuf->b_p_gp) : p->var;
9185 case PV_MP: return *curbuf->b_p_mp != NUL
9186 ? (char_u *)&(curbuf->b_p_mp) : p->var;
9187 #endif
9188 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9189 case PV_BEXPR: return *curbuf->b_p_bexpr != NUL
9190 ? (char_u *)&(curbuf->b_p_bexpr) : p->var;
9191 #endif
9192 #ifdef FEAT_STL_OPT
9193 case PV_STL: return *curwin->w_p_stl != NUL
9194 ? (char_u *)&(curwin->w_p_stl) : p->var;
9195 #endif
9197 #ifdef FEAT_ARABIC
9198 case PV_ARAB: return (char_u *)&(curwin->w_p_arab);
9199 #endif
9200 case PV_LIST: return (char_u *)&(curwin->w_p_list);
9201 #ifdef FEAT_SPELL
9202 case PV_SPELL: return (char_u *)&(curwin->w_p_spell);
9203 #endif
9204 #ifdef FEAT_SYN_HL
9205 case PV_CUC: return (char_u *)&(curwin->w_p_cuc);
9206 case PV_CUL: return (char_u *)&(curwin->w_p_cul);
9207 #endif
9208 #ifdef FEAT_DIFF
9209 case PV_DIFF: return (char_u *)&(curwin->w_p_diff);
9210 #endif
9211 #ifdef FEAT_FOLDING
9212 case PV_FDC: return (char_u *)&(curwin->w_p_fdc);
9213 case PV_FEN: return (char_u *)&(curwin->w_p_fen);
9214 case PV_FDI: return (char_u *)&(curwin->w_p_fdi);
9215 case PV_FDL: return (char_u *)&(curwin->w_p_fdl);
9216 case PV_FDM: return (char_u *)&(curwin->w_p_fdm);
9217 case PV_FML: return (char_u *)&(curwin->w_p_fml);
9218 case PV_FDN: return (char_u *)&(curwin->w_p_fdn);
9219 # ifdef FEAT_EVAL
9220 case PV_FDE: return (char_u *)&(curwin->w_p_fde);
9221 case PV_FDT: return (char_u *)&(curwin->w_p_fdt);
9222 # endif
9223 case PV_FMR: return (char_u *)&(curwin->w_p_fmr);
9224 #endif
9225 case PV_NU: return (char_u *)&(curwin->w_p_nu);
9226 #ifdef FEAT_LINEBREAK
9227 case PV_NUW: return (char_u *)&(curwin->w_p_nuw);
9228 #endif
9229 #ifdef FEAT_WINDOWS
9230 case PV_WFH: return (char_u *)&(curwin->w_p_wfh);
9231 #endif
9232 #ifdef FEAT_VERTSPLIT
9233 case PV_WFW: return (char_u *)&(curwin->w_p_wfw);
9234 #endif
9235 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
9236 case PV_PVW: return (char_u *)&(curwin->w_p_pvw);
9237 #endif
9238 #ifdef FEAT_RIGHTLEFT
9239 case PV_RL: return (char_u *)&(curwin->w_p_rl);
9240 case PV_RLC: return (char_u *)&(curwin->w_p_rlc);
9241 #endif
9242 case PV_SCROLL: return (char_u *)&(curwin->w_p_scr);
9243 case PV_WRAP: return (char_u *)&(curwin->w_p_wrap);
9244 #ifdef FEAT_LINEBREAK
9245 case PV_LBR: return (char_u *)&(curwin->w_p_lbr);
9246 #endif
9247 #ifdef FEAT_SCROLLBIND
9248 case PV_SCBIND: return (char_u *)&(curwin->w_p_scb);
9249 #endif
9251 case PV_AI: return (char_u *)&(curbuf->b_p_ai);
9252 case PV_BIN: return (char_u *)&(curbuf->b_p_bin);
9253 #ifdef FEAT_MBYTE
9254 case PV_BOMB: return (char_u *)&(curbuf->b_p_bomb);
9255 #endif
9256 #if defined(FEAT_QUICKFIX)
9257 case PV_BH: return (char_u *)&(curbuf->b_p_bh);
9258 case PV_BT: return (char_u *)&(curbuf->b_p_bt);
9259 #endif
9260 case PV_BL: return (char_u *)&(curbuf->b_p_bl);
9261 case PV_CI: return (char_u *)&(curbuf->b_p_ci);
9262 #ifdef FEAT_CINDENT
9263 case PV_CIN: return (char_u *)&(curbuf->b_p_cin);
9264 case PV_CINK: return (char_u *)&(curbuf->b_p_cink);
9265 case PV_CINO: return (char_u *)&(curbuf->b_p_cino);
9266 #endif
9267 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
9268 case PV_CINW: return (char_u *)&(curbuf->b_p_cinw);
9269 #endif
9270 #ifdef FEAT_COMMENTS
9271 case PV_COM: return (char_u *)&(curbuf->b_p_com);
9272 #endif
9273 #ifdef FEAT_FOLDING
9274 case PV_CMS: return (char_u *)&(curbuf->b_p_cms);
9275 #endif
9276 #ifdef FEAT_INS_EXPAND
9277 case PV_CPT: return (char_u *)&(curbuf->b_p_cpt);
9278 #endif
9279 #ifdef FEAT_COMPL_FUNC
9280 case PV_CFU: return (char_u *)&(curbuf->b_p_cfu);
9281 case PV_OFU: return (char_u *)&(curbuf->b_p_ofu);
9282 case PV_TFU: return (char_u *)&(curbuf->b_p_tfu);
9283 #endif
9284 case PV_EOL: return (char_u *)&(curbuf->b_p_eol);
9285 case PV_ET: return (char_u *)&(curbuf->b_p_et);
9286 #ifdef FEAT_MBYTE
9287 case PV_FENC: return (char_u *)&(curbuf->b_p_fenc);
9288 #endif
9289 case PV_FF: return (char_u *)&(curbuf->b_p_ff);
9290 #ifdef FEAT_AUTOCMD
9291 case PV_FT: return (char_u *)&(curbuf->b_p_ft);
9292 #endif
9293 case PV_FO: return (char_u *)&(curbuf->b_p_fo);
9294 case PV_FLP: return (char_u *)&(curbuf->b_p_flp);
9295 case PV_IMI: return (char_u *)&(curbuf->b_p_iminsert);
9296 case PV_IMS: return (char_u *)&(curbuf->b_p_imsearch);
9297 case PV_INF: return (char_u *)&(curbuf->b_p_inf);
9298 case PV_ISK: return (char_u *)&(curbuf->b_p_isk);
9299 #ifdef FEAT_FIND_ID
9300 # ifdef FEAT_EVAL
9301 case PV_INEX: return (char_u *)&(curbuf->b_p_inex);
9302 # endif
9303 #endif
9304 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
9305 case PV_INDE: return (char_u *)&(curbuf->b_p_inde);
9306 case PV_INDK: return (char_u *)&(curbuf->b_p_indk);
9307 #endif
9308 #ifdef FEAT_EVAL
9309 case PV_FEX: return (char_u *)&(curbuf->b_p_fex);
9310 #endif
9311 #ifdef FEAT_CRYPT
9312 case PV_KEY: return (char_u *)&(curbuf->b_p_key);
9313 #endif
9314 #ifdef FEAT_LISP
9315 case PV_LISP: return (char_u *)&(curbuf->b_p_lisp);
9316 #endif
9317 case PV_ML: return (char_u *)&(curbuf->b_p_ml);
9318 case PV_MPS: return (char_u *)&(curbuf->b_p_mps);
9319 case PV_MA: return (char_u *)&(curbuf->b_p_ma);
9320 case PV_MOD: return (char_u *)&(curbuf->b_changed);
9321 case PV_NF: return (char_u *)&(curbuf->b_p_nf);
9322 #ifdef FEAT_OSFILETYPE
9323 case PV_OFT: return (char_u *)&(curbuf->b_p_oft);
9324 #endif
9325 case PV_PI: return (char_u *)&(curbuf->b_p_pi);
9326 #ifdef FEAT_TEXTOBJ
9327 case PV_QE: return (char_u *)&(curbuf->b_p_qe);
9328 #endif
9329 case PV_RO: return (char_u *)&(curbuf->b_p_ro);
9330 #ifdef FEAT_SMARTINDENT
9331 case PV_SI: return (char_u *)&(curbuf->b_p_si);
9332 #endif
9333 #ifndef SHORT_FNAME
9334 case PV_SN: return (char_u *)&(curbuf->b_p_sn);
9335 #endif
9336 case PV_STS: return (char_u *)&(curbuf->b_p_sts);
9337 #ifdef FEAT_SEARCHPATH
9338 case PV_SUA: return (char_u *)&(curbuf->b_p_sua);
9339 #endif
9340 case PV_SWF: return (char_u *)&(curbuf->b_p_swf);
9341 #ifdef FEAT_SYN_HL
9342 case PV_SMC: return (char_u *)&(curbuf->b_p_smc);
9343 case PV_SYN: return (char_u *)&(curbuf->b_p_syn);
9344 #endif
9345 #ifdef FEAT_SPELL
9346 case PV_SPC: return (char_u *)&(curbuf->b_p_spc);
9347 case PV_SPF: return (char_u *)&(curbuf->b_p_spf);
9348 case PV_SPL: return (char_u *)&(curbuf->b_p_spl);
9349 #endif
9350 case PV_SW: return (char_u *)&(curbuf->b_p_sw);
9351 case PV_TS: return (char_u *)&(curbuf->b_p_ts);
9352 case PV_TW: return (char_u *)&(curbuf->b_p_tw);
9353 case PV_TX: return (char_u *)&(curbuf->b_p_tx);
9354 case PV_WM: return (char_u *)&(curbuf->b_p_wm);
9355 #ifdef FEAT_KEYMAP
9356 case PV_KMAP: return (char_u *)&(curbuf->b_p_keymap);
9357 #endif
9358 default: EMSG(_("E356: get_varp ERROR"));
9360 /* always return a valid pointer to avoid a crash! */
9361 return (char_u *)&(curbuf->b_p_wm);
9365 * Get the value of 'equalprg', either the buffer-local one or the global one.
9367 char_u *
9368 get_equalprg()
9370 if (*curbuf->b_p_ep == NUL)
9371 return p_ep;
9372 return curbuf->b_p_ep;
9375 #if defined(FEAT_WINDOWS) || defined(PROTO)
9377 * Copy options from one window to another.
9378 * Used when splitting a window.
9380 void
9381 win_copy_options(wp_from, wp_to)
9382 win_T *wp_from;
9383 win_T *wp_to;
9385 copy_winopt(&wp_from->w_onebuf_opt, &wp_to->w_onebuf_opt);
9386 copy_winopt(&wp_from->w_allbuf_opt, &wp_to->w_allbuf_opt);
9387 # ifdef FEAT_RIGHTLEFT
9388 # ifdef FEAT_FKMAP
9389 /* Is this right? */
9390 wp_to->w_farsi = wp_from->w_farsi;
9391 # endif
9392 # endif
9394 #endif
9397 * Copy the options from one winopt_T to another.
9398 * Doesn't free the old option values in "to", use clear_winopt() for that.
9399 * The 'scroll' option is not copied, because it depends on the window height.
9400 * The 'previewwindow' option is reset, there can be only one preview window.
9402 void
9403 copy_winopt(from, to)
9404 winopt_T *from;
9405 winopt_T *to;
9407 #ifdef FEAT_ARABIC
9408 to->wo_arab = from->wo_arab;
9409 #endif
9410 to->wo_list = from->wo_list;
9411 to->wo_nu = from->wo_nu;
9412 #ifdef FEAT_LINEBREAK
9413 to->wo_nuw = from->wo_nuw;
9414 #endif
9415 #ifdef FEAT_RIGHTLEFT
9416 to->wo_rl = from->wo_rl;
9417 to->wo_rlc = vim_strsave(from->wo_rlc);
9418 #endif
9419 #ifdef FEAT_STL_OPT
9420 to->wo_stl = vim_strsave(from->wo_stl);
9421 #endif
9422 to->wo_wrap = from->wo_wrap;
9423 #ifdef FEAT_LINEBREAK
9424 to->wo_lbr = from->wo_lbr;
9425 #endif
9426 #ifdef FEAT_SCROLLBIND
9427 to->wo_scb = from->wo_scb;
9428 #endif
9429 #ifdef FEAT_SPELL
9430 to->wo_spell = from->wo_spell;
9431 #endif
9432 #ifdef FEAT_SYN_HL
9433 to->wo_cuc = from->wo_cuc;
9434 to->wo_cul = from->wo_cul;
9435 #endif
9436 #ifdef FEAT_DIFF
9437 to->wo_diff = from->wo_diff;
9438 #endif
9439 #ifdef FEAT_FOLDING
9440 to->wo_fdc = from->wo_fdc;
9441 to->wo_fen = from->wo_fen;
9442 to->wo_fdi = vim_strsave(from->wo_fdi);
9443 to->wo_fml = from->wo_fml;
9444 to->wo_fdl = from->wo_fdl;
9445 to->wo_fdm = vim_strsave(from->wo_fdm);
9446 to->wo_fdn = from->wo_fdn;
9447 # ifdef FEAT_EVAL
9448 to->wo_fde = vim_strsave(from->wo_fde);
9449 to->wo_fdt = vim_strsave(from->wo_fdt);
9450 # endif
9451 to->wo_fmr = vim_strsave(from->wo_fmr);
9452 #endif
9453 check_winopt(to); /* don't want NULL pointers */
9457 * Check string options in a window for a NULL value.
9459 void
9460 check_win_options(win)
9461 win_T *win;
9463 check_winopt(&win->w_onebuf_opt);
9464 check_winopt(&win->w_allbuf_opt);
9468 * Check for NULL pointers in a winopt_T and replace them with empty_option.
9470 void
9471 check_winopt(wop)
9472 winopt_T *wop UNUSED;
9474 #ifdef FEAT_FOLDING
9475 check_string_option(&wop->wo_fdi);
9476 check_string_option(&wop->wo_fdm);
9477 # ifdef FEAT_EVAL
9478 check_string_option(&wop->wo_fde);
9479 check_string_option(&wop->wo_fdt);
9480 # endif
9481 check_string_option(&wop->wo_fmr);
9482 #endif
9483 #ifdef FEAT_RIGHTLEFT
9484 check_string_option(&wop->wo_rlc);
9485 #endif
9486 #ifdef FEAT_STL_OPT
9487 check_string_option(&wop->wo_stl);
9488 #endif
9492 * Free the allocated memory inside a winopt_T.
9494 void
9495 clear_winopt(wop)
9496 winopt_T *wop UNUSED;
9498 #ifdef FEAT_FOLDING
9499 clear_string_option(&wop->wo_fdi);
9500 clear_string_option(&wop->wo_fdm);
9501 # ifdef FEAT_EVAL
9502 clear_string_option(&wop->wo_fde);
9503 clear_string_option(&wop->wo_fdt);
9504 # endif
9505 clear_string_option(&wop->wo_fmr);
9506 #endif
9507 #ifdef FEAT_RIGHTLEFT
9508 clear_string_option(&wop->wo_rlc);
9509 #endif
9510 #ifdef FEAT_STL_OPT
9511 clear_string_option(&wop->wo_stl);
9512 #endif
9516 * Copy global option values to local options for one buffer.
9517 * Used when creating a new buffer and sometimes when entering a buffer.
9518 * flags:
9519 * BCO_ENTER We will enter the buf buffer.
9520 * BCO_ALWAYS Always copy the options, but only set b_p_initialized when
9521 * appropriate.
9522 * BCO_NOHELP Don't copy the values to a help buffer.
9524 void
9525 buf_copy_options(buf, flags)
9526 buf_T *buf;
9527 int flags;
9529 int should_copy = TRUE;
9530 char_u *save_p_isk = NULL; /* init for GCC */
9531 int dont_do_help;
9532 int did_isk = FALSE;
9535 * Don't do anything of the buffer is invalid.
9537 if (buf == NULL || !buf_valid(buf))
9538 return;
9541 * Skip this when the option defaults have not been set yet. Happens when
9542 * main() allocates the first buffer.
9544 if (p_cpo != NULL)
9547 * Always copy when entering and 'cpo' contains 'S'.
9548 * Don't copy when already initialized.
9549 * Don't copy when 'cpo' contains 's' and not entering.
9550 * 'S' BCO_ENTER initialized 's' should_copy
9551 * yes yes X X TRUE
9552 * yes no yes X FALSE
9553 * no X yes X FALSE
9554 * X no no yes FALSE
9555 * X no no no TRUE
9556 * no yes no X TRUE
9558 if ((vim_strchr(p_cpo, CPO_BUFOPTGLOB) == NULL || !(flags & BCO_ENTER))
9559 && (buf->b_p_initialized
9560 || (!(flags & BCO_ENTER)
9561 && vim_strchr(p_cpo, CPO_BUFOPT) != NULL)))
9562 should_copy = FALSE;
9564 if (should_copy || (flags & BCO_ALWAYS))
9566 /* Don't copy the options specific to a help buffer when
9567 * BCO_NOHELP is given or the options were initialized already
9568 * (jumping back to a help file with CTRL-T or CTRL-O) */
9569 dont_do_help = ((flags & BCO_NOHELP) && buf->b_help)
9570 || buf->b_p_initialized;
9571 if (dont_do_help) /* don't free b_p_isk */
9573 save_p_isk = buf->b_p_isk;
9574 buf->b_p_isk = NULL;
9577 * Always free the allocated strings.
9578 * If not already initialized, set 'readonly' and copy 'fileformat'.
9580 if (!buf->b_p_initialized)
9582 free_buf_options(buf, TRUE);
9583 buf->b_p_ro = FALSE; /* don't copy readonly */
9584 buf->b_p_tx = p_tx;
9585 #ifdef FEAT_MBYTE
9586 buf->b_p_fenc = vim_strsave(p_fenc);
9587 #endif
9588 buf->b_p_ff = vim_strsave(p_ff);
9589 #if defined(FEAT_QUICKFIX)
9590 buf->b_p_bh = empty_option;
9591 buf->b_p_bt = empty_option;
9592 #endif
9594 else
9595 free_buf_options(buf, FALSE);
9597 buf->b_p_ai = p_ai;
9598 buf->b_p_ai_nopaste = p_ai_nopaste;
9599 buf->b_p_sw = p_sw;
9600 buf->b_p_tw = p_tw;
9601 buf->b_p_tw_nopaste = p_tw_nopaste;
9602 buf->b_p_tw_nobin = p_tw_nobin;
9603 buf->b_p_wm = p_wm;
9604 buf->b_p_wm_nopaste = p_wm_nopaste;
9605 buf->b_p_wm_nobin = p_wm_nobin;
9606 buf->b_p_bin = p_bin;
9607 #ifdef FEAT_MBYTE
9608 buf->b_p_bomb = p_bomb;
9609 #endif
9610 buf->b_p_et = p_et;
9611 buf->b_p_et_nobin = p_et_nobin;
9612 buf->b_p_ml = p_ml;
9613 buf->b_p_ml_nobin = p_ml_nobin;
9614 buf->b_p_inf = p_inf;
9615 buf->b_p_swf = p_swf;
9616 #ifdef FEAT_INS_EXPAND
9617 buf->b_p_cpt = vim_strsave(p_cpt);
9618 #endif
9619 #ifdef FEAT_COMPL_FUNC
9620 buf->b_p_cfu = vim_strsave(p_cfu);
9621 buf->b_p_ofu = vim_strsave(p_ofu);
9622 buf->b_p_tfu = vim_strsave(p_tfu);
9623 #endif
9624 buf->b_p_sts = p_sts;
9625 buf->b_p_sts_nopaste = p_sts_nopaste;
9626 #ifndef SHORT_FNAME
9627 buf->b_p_sn = p_sn;
9628 #endif
9629 #ifdef FEAT_COMMENTS
9630 buf->b_p_com = vim_strsave(p_com);
9631 #endif
9632 #ifdef FEAT_FOLDING
9633 buf->b_p_cms = vim_strsave(p_cms);
9634 #endif
9635 buf->b_p_fo = vim_strsave(p_fo);
9636 buf->b_p_flp = vim_strsave(p_flp);
9637 buf->b_p_nf = vim_strsave(p_nf);
9638 buf->b_p_mps = vim_strsave(p_mps);
9639 #ifdef FEAT_SMARTINDENT
9640 buf->b_p_si = p_si;
9641 #endif
9642 buf->b_p_ci = p_ci;
9643 #ifdef FEAT_CINDENT
9644 buf->b_p_cin = p_cin;
9645 buf->b_p_cink = vim_strsave(p_cink);
9646 buf->b_p_cino = vim_strsave(p_cino);
9647 #endif
9648 #ifdef FEAT_AUTOCMD
9649 /* Don't copy 'filetype', it must be detected */
9650 buf->b_p_ft = empty_option;
9651 #endif
9652 #ifdef FEAT_OSFILETYPE
9653 buf->b_p_oft = vim_strsave(p_oft);
9654 #endif
9655 buf->b_p_pi = p_pi;
9656 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
9657 buf->b_p_cinw = vim_strsave(p_cinw);
9658 #endif
9659 #ifdef FEAT_LISP
9660 buf->b_p_lisp = p_lisp;
9661 #endif
9662 #ifdef FEAT_SYN_HL
9663 /* Don't copy 'syntax', it must be set */
9664 buf->b_p_syn = empty_option;
9665 buf->b_p_smc = p_smc;
9666 #endif
9667 #ifdef FEAT_SPELL
9668 buf->b_p_spc = vim_strsave(p_spc);
9669 (void)compile_cap_prog(buf);
9670 buf->b_p_spf = vim_strsave(p_spf);
9671 buf->b_p_spl = vim_strsave(p_spl);
9672 #endif
9673 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
9674 buf->b_p_inde = vim_strsave(p_inde);
9675 buf->b_p_indk = vim_strsave(p_indk);
9676 #endif
9677 #if defined(FEAT_EVAL)
9678 buf->b_p_fex = vim_strsave(p_fex);
9679 #endif
9680 #ifdef FEAT_CRYPT
9681 buf->b_p_key = vim_strsave(p_key);
9682 #endif
9683 #ifdef FEAT_SEARCHPATH
9684 buf->b_p_sua = vim_strsave(p_sua);
9685 #endif
9686 #ifdef FEAT_KEYMAP
9687 buf->b_p_keymap = vim_strsave(p_keymap);
9688 buf->b_kmap_state |= KEYMAP_INIT;
9689 #endif
9690 /* This isn't really an option, but copying the langmap and IME
9691 * state from the current buffer is better than resetting it. */
9692 buf->b_p_iminsert = p_iminsert;
9693 buf->b_p_imsearch = p_imsearch;
9695 /* options that are normally global but also have a local value
9696 * are not copied, start using the global value */
9697 buf->b_p_ar = -1;
9698 #ifdef FEAT_QUICKFIX
9699 buf->b_p_gp = empty_option;
9700 buf->b_p_mp = empty_option;
9701 buf->b_p_efm = empty_option;
9702 #endif
9703 buf->b_p_ep = empty_option;
9704 buf->b_p_kp = empty_option;
9705 buf->b_p_path = empty_option;
9706 buf->b_p_tags = empty_option;
9707 #ifdef FEAT_FIND_ID
9708 buf->b_p_def = empty_option;
9709 buf->b_p_inc = empty_option;
9710 # ifdef FEAT_EVAL
9711 buf->b_p_inex = vim_strsave(p_inex);
9712 # endif
9713 #endif
9714 #ifdef FEAT_INS_EXPAND
9715 buf->b_p_dict = empty_option;
9716 buf->b_p_tsr = empty_option;
9717 #endif
9718 #ifdef FEAT_TEXTOBJ
9719 buf->b_p_qe = vim_strsave(p_qe);
9720 #endif
9721 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9722 buf->b_p_bexpr = empty_option;
9723 #endif
9726 * Don't copy the options set by ex_help(), use the saved values,
9727 * when going from a help buffer to a non-help buffer.
9728 * Don't touch these at all when BCO_NOHELP is used and going from
9729 * or to a help buffer.
9731 if (dont_do_help)
9732 buf->b_p_isk = save_p_isk;
9733 else
9735 buf->b_p_isk = vim_strsave(p_isk);
9736 did_isk = TRUE;
9737 buf->b_p_ts = p_ts;
9738 buf->b_help = FALSE;
9739 #ifdef FEAT_QUICKFIX
9740 if (buf->b_p_bt[0] == 'h')
9741 clear_string_option(&buf->b_p_bt);
9742 #endif
9743 buf->b_p_ma = p_ma;
9748 * When the options should be copied (ignoring BCO_ALWAYS), set the
9749 * flag that indicates that the options have been initialized.
9751 if (should_copy)
9752 buf->b_p_initialized = TRUE;
9755 check_buf_options(buf); /* make sure we don't have NULLs */
9756 if (did_isk)
9757 (void)buf_init_chartab(buf, FALSE);
9761 * Reset the 'modifiable' option and its default value.
9763 void
9764 reset_modifiable()
9766 int opt_idx;
9768 curbuf->b_p_ma = FALSE;
9769 p_ma = FALSE;
9770 opt_idx = findoption((char_u *)"ma");
9771 if (opt_idx >= 0)
9772 options[opt_idx].def_val[VI_DEFAULT] = FALSE;
9776 * Set the global value for 'iminsert' to the local value.
9778 void
9779 set_iminsert_global()
9781 p_iminsert = curbuf->b_p_iminsert;
9785 * Set the global value for 'imsearch' to the local value.
9787 void
9788 set_imsearch_global()
9790 p_imsearch = curbuf->b_p_imsearch;
9793 #if defined(FEAT_CMDL_COMPL) || defined(PROTO)
9794 static int expand_option_idx = -1;
9795 static char_u expand_option_name[5] = {'t', '_', NUL, NUL, NUL};
9796 static int expand_option_flags = 0;
9798 void
9799 set_context_in_set_cmd(xp, arg, opt_flags)
9800 expand_T *xp;
9801 char_u *arg;
9802 int opt_flags; /* OPT_GLOBAL and/or OPT_LOCAL */
9804 int nextchar;
9805 long_u flags = 0; /* init for GCC */
9806 int opt_idx = 0; /* init for GCC */
9807 char_u *p;
9808 char_u *s;
9809 int is_term_option = FALSE;
9810 int key;
9812 expand_option_flags = opt_flags;
9814 xp->xp_context = EXPAND_SETTINGS;
9815 if (*arg == NUL)
9817 xp->xp_pattern = arg;
9818 return;
9820 p = arg + STRLEN(arg) - 1;
9821 if (*p == ' ' && *(p - 1) != '\\')
9823 xp->xp_pattern = p + 1;
9824 return;
9826 while (p > arg)
9828 s = p;
9829 /* count number of backslashes before ' ' or ',' */
9830 if (*p == ' ' || *p == ',')
9832 while (s > arg && *(s - 1) == '\\')
9833 --s;
9835 /* break at a space with an even number of backslashes */
9836 if (*p == ' ' && ((p - s) & 1) == 0)
9838 ++p;
9839 break;
9841 --p;
9843 if (STRNCMP(p, "no", 2) == 0 && STRNCMP(p, "novice", 6) != 0)
9845 xp->xp_context = EXPAND_BOOL_SETTINGS;
9846 p += 2;
9848 if (STRNCMP(p, "inv", 3) == 0)
9850 xp->xp_context = EXPAND_BOOL_SETTINGS;
9851 p += 3;
9853 xp->xp_pattern = arg = p;
9854 if (*arg == '<')
9856 while (*p != '>')
9857 if (*p++ == NUL) /* expand terminal option name */
9858 return;
9859 key = get_special_key_code(arg + 1);
9860 if (key == 0) /* unknown name */
9862 xp->xp_context = EXPAND_NOTHING;
9863 return;
9865 nextchar = *++p;
9866 is_term_option = TRUE;
9867 expand_option_name[2] = KEY2TERMCAP0(key);
9868 expand_option_name[3] = KEY2TERMCAP1(key);
9870 else
9872 if (p[0] == 't' && p[1] == '_')
9874 p += 2;
9875 if (*p != NUL)
9876 ++p;
9877 if (*p == NUL)
9878 return; /* expand option name */
9879 nextchar = *++p;
9880 is_term_option = TRUE;
9881 expand_option_name[2] = p[-2];
9882 expand_option_name[3] = p[-1];
9884 else
9886 /* Allow * wildcard */
9887 while (ASCII_ISALNUM(*p) || *p == '_' || *p == '*')
9888 p++;
9889 if (*p == NUL)
9890 return;
9891 nextchar = *p;
9892 *p = NUL;
9893 opt_idx = findoption(arg);
9894 *p = nextchar;
9895 if (opt_idx == -1 || options[opt_idx].var == NULL)
9897 xp->xp_context = EXPAND_NOTHING;
9898 return;
9900 flags = options[opt_idx].flags;
9901 if (flags & P_BOOL)
9903 xp->xp_context = EXPAND_NOTHING;
9904 return;
9908 /* handle "-=" and "+=" */
9909 if ((nextchar == '-' || nextchar == '+' || nextchar == '^') && p[1] == '=')
9911 ++p;
9912 nextchar = '=';
9914 if ((nextchar != '=' && nextchar != ':')
9915 || xp->xp_context == EXPAND_BOOL_SETTINGS)
9917 xp->xp_context = EXPAND_UNSUCCESSFUL;
9918 return;
9920 if (xp->xp_context != EXPAND_BOOL_SETTINGS && p[1] == NUL)
9922 xp->xp_context = EXPAND_OLD_SETTING;
9923 if (is_term_option)
9924 expand_option_idx = -1;
9925 else
9926 expand_option_idx = opt_idx;
9927 xp->xp_pattern = p + 1;
9928 return;
9930 xp->xp_context = EXPAND_NOTHING;
9931 if (is_term_option || (flags & P_NUM))
9932 return;
9934 xp->xp_pattern = p + 1;
9936 if (flags & P_EXPAND)
9938 p = options[opt_idx].var;
9939 if (p == (char_u *)&p_bdir
9940 || p == (char_u *)&p_dir
9941 || p == (char_u *)&p_path
9942 || p == (char_u *)&p_rtp
9943 #ifdef FEAT_SEARCHPATH
9944 || p == (char_u *)&p_cdpath
9945 #endif
9946 #ifdef FEAT_SESSION
9947 || p == (char_u *)&p_vdir
9948 #endif
9951 xp->xp_context = EXPAND_DIRECTORIES;
9952 if (p == (char_u *)&p_path
9953 #ifdef FEAT_SEARCHPATH
9954 || p == (char_u *)&p_cdpath
9955 #endif
9957 xp->xp_backslash = XP_BS_THREE;
9958 else
9959 xp->xp_backslash = XP_BS_ONE;
9961 else
9963 xp->xp_context = EXPAND_FILES;
9964 /* for 'tags' need three backslashes for a space */
9965 if (p == (char_u *)&p_tags)
9966 xp->xp_backslash = XP_BS_THREE;
9967 else
9968 xp->xp_backslash = XP_BS_ONE;
9972 /* For an option that is a list of file names, find the start of the
9973 * last file name. */
9974 for (p = arg + STRLEN(arg) - 1; p > xp->xp_pattern; --p)
9976 /* count number of backslashes before ' ' or ',' */
9977 if (*p == ' ' || *p == ',')
9979 s = p;
9980 while (s > xp->xp_pattern && *(s - 1) == '\\')
9981 --s;
9982 if ((*p == ' ' && (xp->xp_backslash == XP_BS_THREE && (p - s) < 3))
9983 || (*p == ',' && (flags & P_COMMA) && ((p - s) & 1) == 0))
9985 xp->xp_pattern = p + 1;
9986 break;
9990 #ifdef FEAT_SPELL
9991 /* for 'spellsuggest' start at "file:" */
9992 if (options[opt_idx].var == (char_u *)&p_sps
9993 && STRNCMP(p, "file:", 5) == 0)
9995 xp->xp_pattern = p + 5;
9996 break;
9998 #endif
10001 return;
10005 ExpandSettings(xp, regmatch, num_file, file)
10006 expand_T *xp;
10007 regmatch_T *regmatch;
10008 int *num_file;
10009 char_u ***file;
10011 int num_normal = 0; /* Nr of matching non-term-code settings */
10012 int num_term = 0; /* Nr of matching terminal code settings */
10013 int opt_idx;
10014 int match;
10015 int count = 0;
10016 char_u *str;
10017 int loop;
10018 int is_term_opt;
10019 char_u name_buf[MAX_KEY_NAME_LEN];
10020 static char *(names[]) = {"all", "termcap"};
10021 int ic = regmatch->rm_ic; /* remember the ignore-case flag */
10023 /* do this loop twice:
10024 * loop == 0: count the number of matching options
10025 * loop == 1: copy the matching options into allocated memory
10027 for (loop = 0; loop <= 1; ++loop)
10029 regmatch->rm_ic = ic;
10030 if (xp->xp_context != EXPAND_BOOL_SETTINGS)
10032 for (match = 0; match < (int)(sizeof(names) / sizeof(char *));
10033 ++match)
10034 if (vim_regexec(regmatch, (char_u *)names[match], (colnr_T)0))
10036 if (loop == 0)
10037 num_normal++;
10038 else
10039 (*file)[count++] = vim_strsave((char_u *)names[match]);
10042 for (opt_idx = 0; (str = (char_u *)options[opt_idx].fullname) != NULL;
10043 opt_idx++)
10045 if (options[opt_idx].var == NULL)
10046 continue;
10047 if (xp->xp_context == EXPAND_BOOL_SETTINGS
10048 && !(options[opt_idx].flags & P_BOOL))
10049 continue;
10050 is_term_opt = istermoption(&options[opt_idx]);
10051 if (is_term_opt && num_normal > 0)
10052 continue;
10053 match = FALSE;
10054 if (vim_regexec(regmatch, str, (colnr_T)0)
10055 || (options[opt_idx].shortname != NULL
10056 && vim_regexec(regmatch,
10057 (char_u *)options[opt_idx].shortname, (colnr_T)0)))
10058 match = TRUE;
10059 else if (is_term_opt)
10061 name_buf[0] = '<';
10062 name_buf[1] = 't';
10063 name_buf[2] = '_';
10064 name_buf[3] = str[2];
10065 name_buf[4] = str[3];
10066 name_buf[5] = '>';
10067 name_buf[6] = NUL;
10068 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10070 match = TRUE;
10071 str = name_buf;
10074 if (match)
10076 if (loop == 0)
10078 if (is_term_opt)
10079 num_term++;
10080 else
10081 num_normal++;
10083 else
10084 (*file)[count++] = vim_strsave(str);
10088 * Check terminal key codes, these are not in the option table
10090 if (xp->xp_context != EXPAND_BOOL_SETTINGS && num_normal == 0)
10092 for (opt_idx = 0; (str = get_termcode(opt_idx)) != NULL; opt_idx++)
10094 if (!isprint(str[0]) || !isprint(str[1]))
10095 continue;
10097 name_buf[0] = 't';
10098 name_buf[1] = '_';
10099 name_buf[2] = str[0];
10100 name_buf[3] = str[1];
10101 name_buf[4] = NUL;
10103 match = FALSE;
10104 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10105 match = TRUE;
10106 else
10108 name_buf[0] = '<';
10109 name_buf[1] = 't';
10110 name_buf[2] = '_';
10111 name_buf[3] = str[0];
10112 name_buf[4] = str[1];
10113 name_buf[5] = '>';
10114 name_buf[6] = NUL;
10116 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10117 match = TRUE;
10119 if (match)
10121 if (loop == 0)
10122 num_term++;
10123 else
10124 (*file)[count++] = vim_strsave(name_buf);
10129 * Check special key names.
10131 regmatch->rm_ic = TRUE; /* ignore case here */
10132 for (opt_idx = 0; (str = get_key_name(opt_idx)) != NULL; opt_idx++)
10134 name_buf[0] = '<';
10135 STRCPY(name_buf + 1, str);
10136 STRCAT(name_buf, ">");
10138 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10140 if (loop == 0)
10141 num_term++;
10142 else
10143 (*file)[count++] = vim_strsave(name_buf);
10147 if (loop == 0)
10149 if (num_normal > 0)
10150 *num_file = num_normal;
10151 else if (num_term > 0)
10152 *num_file = num_term;
10153 else
10154 return OK;
10155 *file = (char_u **)alloc((unsigned)(*num_file * sizeof(char_u *)));
10156 if (*file == NULL)
10158 *file = (char_u **)"";
10159 return FAIL;
10163 return OK;
10167 ExpandOldSetting(num_file, file)
10168 int *num_file;
10169 char_u ***file;
10171 char_u *var = NULL; /* init for GCC */
10172 char_u *buf;
10174 *num_file = 0;
10175 *file = (char_u **)alloc((unsigned)sizeof(char_u *));
10176 if (*file == NULL)
10177 return FAIL;
10180 * For a terminal key code expand_option_idx is < 0.
10182 if (expand_option_idx < 0)
10184 var = find_termcode(expand_option_name + 2);
10185 if (var == NULL)
10186 expand_option_idx = findoption(expand_option_name);
10189 if (expand_option_idx >= 0)
10191 /* put string of option value in NameBuff */
10192 option_value2string(&options[expand_option_idx], expand_option_flags);
10193 var = NameBuff;
10195 else if (var == NULL)
10196 var = (char_u *)"";
10198 /* A backslash is required before some characters. This is the reverse of
10199 * what happens in do_set(). */
10200 buf = vim_strsave_escaped(var, escape_chars);
10202 if (buf == NULL)
10204 vim_free(*file);
10205 *file = NULL;
10206 return FAIL;
10209 #ifdef BACKSLASH_IN_FILENAME
10210 /* For MS-Windows et al. we don't double backslashes at the start and
10211 * before a file name character. */
10212 for (var = buf; *var != NUL; mb_ptr_adv(var))
10213 if (var[0] == '\\' && var[1] == '\\'
10214 && expand_option_idx >= 0
10215 && (options[expand_option_idx].flags & P_EXPAND)
10216 && vim_isfilec(var[2])
10217 && (var[2] != '\\' || (var == buf && var[4] != '\\')))
10218 STRMOVE(var, var + 1);
10219 #endif
10221 *file[0] = buf;
10222 *num_file = 1;
10223 return OK;
10225 #endif
10228 * Get the value for the numeric or string option *opp in a nice format into
10229 * NameBuff[]. Must not be called with a hidden option!
10231 static void
10232 option_value2string(opp, opt_flags)
10233 struct vimoption *opp;
10234 int opt_flags; /* OPT_GLOBAL and/or OPT_LOCAL */
10236 char_u *varp;
10238 varp = get_varp_scope(opp, opt_flags);
10240 if (opp->flags & P_NUM)
10242 long wc = 0;
10244 if (wc_use_keyname(varp, &wc))
10245 STRCPY(NameBuff, get_special_key_name((int)wc, 0));
10246 else if (wc != 0)
10247 STRCPY(NameBuff, transchar((int)wc));
10248 else
10249 sprintf((char *)NameBuff, "%ld", *(long *)varp);
10251 else /* P_STRING */
10253 varp = *(char_u **)(varp);
10254 if (varp == NULL) /* just in case */
10255 NameBuff[0] = NUL;
10256 #ifdef FEAT_CRYPT
10257 /* don't show the actual value of 'key', only that it's set */
10258 else if (opp->var == (char_u *)&p_key && *varp)
10259 STRCPY(NameBuff, "*****");
10260 #endif
10261 else if (opp->flags & P_EXPAND)
10262 home_replace(NULL, varp, NameBuff, MAXPATHL, FALSE);
10263 /* Translate 'pastetoggle' into special key names */
10264 else if ((char_u **)opp->var == &p_pt)
10265 str2specialbuf(p_pt, NameBuff, MAXPATHL);
10266 else
10267 vim_strncpy(NameBuff, varp, MAXPATHL - 1);
10272 * Return TRUE if "varp" points to 'wildchar' or 'wildcharm' and it can be
10273 * printed as a keyname.
10274 * "*wcp" is set to the value of the option if it's 'wildchar' or 'wildcharm'.
10276 static int
10277 wc_use_keyname(varp, wcp)
10278 char_u *varp;
10279 long *wcp;
10281 if (((long *)varp == &p_wc) || ((long *)varp == &p_wcm))
10283 *wcp = *(long *)varp;
10284 if (IS_SPECIAL(*wcp) || find_special_key_in_table((int)*wcp) >= 0)
10285 return TRUE;
10287 return FALSE;
10290 #ifdef FEAT_LANGMAP
10292 * Any character has an equivalent 'langmap' character. This is used for
10293 * keyboards that have a special language mode that sends characters above
10294 * 128 (although other characters can be translated too). The "to" field is a
10295 * Vim command character. This avoids having to switch the keyboard back to
10296 * ASCII mode when leaving Insert mode.
10298 * langmap_mapchar[] maps any of 256 chars to an ASCII char used for Vim
10299 * commands.
10300 * When FEAT_MBYTE is defined langmap_mapga.ga_data is a sorted table of
10301 * langmap_entry_T. This does the same as langmap_mapchar[] for characters >=
10302 * 256.
10304 # ifdef FEAT_MBYTE
10306 * With multi-byte support use growarray for 'langmap' chars >= 256
10308 typedef struct
10310 int from;
10311 int to;
10312 } langmap_entry_T;
10314 static garray_T langmap_mapga;
10315 static void langmap_set_entry __ARGS((int from, int to));
10318 * Search for an entry in "langmap_mapga" for "from". If found set the "to"
10319 * field. If not found insert a new entry at the appropriate location.
10321 static void
10322 langmap_set_entry(from, to)
10323 int from;
10324 int to;
10326 langmap_entry_T *entries = (langmap_entry_T *)(langmap_mapga.ga_data);
10327 int a = 0;
10328 int b = langmap_mapga.ga_len;
10330 /* Do a binary search for an existing entry. */
10331 while (a != b)
10333 int i = (a + b) / 2;
10334 int d = entries[i].from - from;
10336 if (d == 0)
10338 entries[i].to = to;
10339 return;
10341 if (d < 0)
10342 a = i + 1;
10343 else
10344 b = i;
10347 if (ga_grow(&langmap_mapga, 1) != OK)
10348 return; /* out of memory */
10350 /* insert new entry at position "a" */
10351 entries = (langmap_entry_T *)(langmap_mapga.ga_data) + a;
10352 mch_memmove(entries + 1, entries,
10353 (langmap_mapga.ga_len - a) * sizeof(langmap_entry_T));
10354 ++langmap_mapga.ga_len;
10355 entries[0].from = from;
10356 entries[0].to = to;
10360 * Apply 'langmap' to multi-byte character "c" and return the result.
10363 langmap_adjust_mb(c)
10364 int c;
10366 langmap_entry_T *entries = (langmap_entry_T *)(langmap_mapga.ga_data);
10367 int a = 0;
10368 int b = langmap_mapga.ga_len;
10370 while (a != b)
10372 int i = (a + b) / 2;
10373 int d = entries[i].from - c;
10375 if (d == 0)
10376 return entries[i].to; /* found matching entry */
10377 if (d < 0)
10378 a = i + 1;
10379 else
10380 b = i;
10382 return c; /* no entry found, return "c" unmodified */
10384 # endif
10386 static void
10387 langmap_init()
10389 int i;
10391 for (i = 0; i < 256; i++)
10392 langmap_mapchar[i] = i; /* we init with a one-to-one map */
10393 # ifdef FEAT_MBYTE
10394 ga_init2(&langmap_mapga, sizeof(langmap_entry_T), 8);
10395 # endif
10399 * Called when langmap option is set; the language map can be
10400 * changed at any time!
10402 static void
10403 langmap_set()
10405 char_u *p;
10406 char_u *p2;
10407 int from, to;
10409 #ifdef FEAT_MBYTE
10410 ga_clear(&langmap_mapga); /* clear the previous map first */
10411 #endif
10412 langmap_init(); /* back to one-to-one map */
10414 for (p = p_langmap; p[0] != NUL; )
10416 for (p2 = p; p2[0] != NUL && p2[0] != ',' && p2[0] != ';';
10417 mb_ptr_adv(p2))
10419 if (p2[0] == '\\' && p2[1] != NUL)
10420 ++p2;
10422 if (p2[0] == ';')
10423 ++p2; /* abcd;ABCD form, p2 points to A */
10424 else
10425 p2 = NULL; /* aAbBcCdD form, p2 is NULL */
10426 while (p[0])
10428 if (p[0] == '\\' && p[1] != NUL)
10429 ++p;
10430 #ifdef FEAT_MBYTE
10431 from = (*mb_ptr2char)(p);
10432 #else
10433 from = p[0];
10434 #endif
10435 if (p2 == NULL)
10437 mb_ptr_adv(p);
10438 if (p[0] == '\\')
10439 ++p;
10440 #ifdef FEAT_MBYTE
10441 to = (*mb_ptr2char)(p);
10442 #else
10443 to = p[0];
10444 #endif
10446 else
10448 if (p2[0] == '\\')
10449 ++p2;
10450 #ifdef FEAT_MBYTE
10451 to = (*mb_ptr2char)(p2);
10452 #else
10453 to = p2[0];
10454 #endif
10456 if (to == NUL)
10458 EMSG2(_("E357: 'langmap': Matching character missing for %s"),
10459 transchar(from));
10460 return;
10463 #ifdef FEAT_MBYTE
10464 if (from >= 256)
10465 langmap_set_entry(from, to);
10466 else
10467 #endif
10468 langmap_mapchar[from & 255] = to;
10470 /* Advance to next pair */
10471 mb_ptr_adv(p);
10472 if (p2 == NULL)
10474 if (p[0] == ',')
10476 ++p;
10477 break;
10480 else
10482 mb_ptr_adv(p2);
10483 if (*p == ';')
10485 p = p2;
10486 if (p[0] != NUL)
10488 if (p[0] != ',')
10490 EMSG2(_("E358: 'langmap': Extra characters after semicolon: %s"), p);
10491 return;
10493 ++p;
10495 break;
10501 #endif
10504 * Return TRUE if format option 'x' is in effect.
10505 * Take care of no formatting when 'paste' is set.
10508 has_format_option(x)
10509 int x;
10511 if (p_paste)
10512 return FALSE;
10513 return (vim_strchr(curbuf->b_p_fo, x) != NULL);
10517 * Return TRUE if "x" is present in 'shortmess' option, or
10518 * 'shortmess' contains 'a' and "x" is present in SHM_A.
10521 shortmess(x)
10522 int x;
10524 return ( vim_strchr(p_shm, x) != NULL
10525 || (vim_strchr(p_shm, 'a') != NULL
10526 && vim_strchr((char_u *)SHM_A, x) != NULL));
10530 * paste_option_changed() - Called after p_paste was set or reset.
10532 static void
10533 paste_option_changed()
10535 static int old_p_paste = FALSE;
10536 static int save_sm = 0;
10537 #ifdef FEAT_CMDL_INFO
10538 static int save_ru = 0;
10539 #endif
10540 #ifdef FEAT_RIGHTLEFT
10541 static int save_ri = 0;
10542 static int save_hkmap = 0;
10543 #endif
10544 buf_T *buf;
10546 if (p_paste)
10549 * Paste switched from off to on.
10550 * Save the current values, so they can be restored later.
10552 if (!old_p_paste)
10554 /* save options for each buffer */
10555 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10557 buf->b_p_tw_nopaste = buf->b_p_tw;
10558 buf->b_p_wm_nopaste = buf->b_p_wm;
10559 buf->b_p_sts_nopaste = buf->b_p_sts;
10560 buf->b_p_ai_nopaste = buf->b_p_ai;
10563 /* save global options */
10564 save_sm = p_sm;
10565 #ifdef FEAT_CMDL_INFO
10566 save_ru = p_ru;
10567 #endif
10568 #ifdef FEAT_RIGHTLEFT
10569 save_ri = p_ri;
10570 save_hkmap = p_hkmap;
10571 #endif
10572 /* save global values for local buffer options */
10573 p_tw_nopaste = p_tw;
10574 p_wm_nopaste = p_wm;
10575 p_sts_nopaste = p_sts;
10576 p_ai_nopaste = p_ai;
10580 * Always set the option values, also when 'paste' is set when it is
10581 * already on.
10583 /* set options for each buffer */
10584 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10586 buf->b_p_tw = 0; /* textwidth is 0 */
10587 buf->b_p_wm = 0; /* wrapmargin is 0 */
10588 buf->b_p_sts = 0; /* softtabstop is 0 */
10589 buf->b_p_ai = 0; /* no auto-indent */
10592 /* set global options */
10593 p_sm = 0; /* no showmatch */
10594 #ifdef FEAT_CMDL_INFO
10595 # ifdef FEAT_WINDOWS
10596 if (p_ru)
10597 status_redraw_all(); /* redraw to remove the ruler */
10598 # endif
10599 p_ru = 0; /* no ruler */
10600 #endif
10601 #ifdef FEAT_RIGHTLEFT
10602 p_ri = 0; /* no reverse insert */
10603 p_hkmap = 0; /* no Hebrew keyboard */
10604 #endif
10605 /* set global values for local buffer options */
10606 p_tw = 0;
10607 p_wm = 0;
10608 p_sts = 0;
10609 p_ai = 0;
10613 * Paste switched from on to off: Restore saved values.
10615 else if (old_p_paste)
10617 /* restore options for each buffer */
10618 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10620 buf->b_p_tw = buf->b_p_tw_nopaste;
10621 buf->b_p_wm = buf->b_p_wm_nopaste;
10622 buf->b_p_sts = buf->b_p_sts_nopaste;
10623 buf->b_p_ai = buf->b_p_ai_nopaste;
10626 /* restore global options */
10627 p_sm = save_sm;
10628 #ifdef FEAT_CMDL_INFO
10629 # ifdef FEAT_WINDOWS
10630 if (p_ru != save_ru)
10631 status_redraw_all(); /* redraw to draw the ruler */
10632 # endif
10633 p_ru = save_ru;
10634 #endif
10635 #ifdef FEAT_RIGHTLEFT
10636 p_ri = save_ri;
10637 p_hkmap = save_hkmap;
10638 #endif
10639 /* set global values for local buffer options */
10640 p_tw = p_tw_nopaste;
10641 p_wm = p_wm_nopaste;
10642 p_sts = p_sts_nopaste;
10643 p_ai = p_ai_nopaste;
10646 old_p_paste = p_paste;
10650 * vimrc_found() - Called when a ".vimrc" or "VIMINIT" has been found.
10652 * Reset 'compatible' and set the values for options that didn't get set yet
10653 * to the Vim defaults.
10654 * Don't do this if the 'compatible' option has been set or reset before.
10655 * When "fname" is not NULL, use it to set $"envname" when it wasn't set yet.
10657 void
10658 vimrc_found(fname, envname)
10659 char_u *fname;
10660 char_u *envname;
10662 int opt_idx;
10663 int dofree = FALSE;
10664 char_u *p;
10666 if (!option_was_set((char_u *)"cp"))
10668 p_cp = FALSE;
10669 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
10670 if (!(options[opt_idx].flags & (P_WAS_SET|P_VI_DEF)))
10671 set_option_default(opt_idx, OPT_FREE, FALSE);
10672 didset_options();
10675 if (fname != NULL)
10677 p = vim_getenv(envname, &dofree);
10678 if (p == NULL)
10680 /* Set $MYVIMRC to the first vimrc file found. */
10681 p = FullName_save(fname, FALSE);
10682 if (p != NULL)
10684 vim_setenv(envname, p);
10685 vim_free(p);
10688 else if (dofree)
10689 vim_free(p);
10694 * Set 'compatible' on or off. Called for "-C" and "-N" command line arg.
10696 void
10697 change_compatible(on)
10698 int on;
10700 int opt_idx;
10702 if (p_cp != on)
10704 p_cp = on;
10705 compatible_set();
10707 opt_idx = findoption((char_u *)"cp");
10708 if (opt_idx >= 0)
10709 options[opt_idx].flags |= P_WAS_SET;
10713 * Return TRUE when option "name" has been set.
10716 option_was_set(name)
10717 char_u *name;
10719 int idx;
10721 idx = findoption(name);
10722 if (idx < 0) /* unknown option */
10723 return FALSE;
10724 if (options[idx].flags & P_WAS_SET)
10725 return TRUE;
10726 return FALSE;
10730 * compatible_set() - Called when 'compatible' has been set or unset.
10732 * When 'compatible' set: Set all relevant options (those that have the P_VIM)
10733 * flag) to a Vi compatible value.
10734 * When 'compatible' is unset: Set all options that have a different default
10735 * for Vim (without the P_VI_DEF flag) to that default.
10737 static void
10738 compatible_set()
10740 int opt_idx;
10742 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
10743 if ( ((options[opt_idx].flags & P_VIM) && p_cp)
10744 || (!(options[opt_idx].flags & P_VI_DEF) && !p_cp))
10745 set_option_default(opt_idx, OPT_FREE, p_cp);
10746 didset_options();
10749 #ifdef FEAT_LINEBREAK
10751 # if defined(__BORLANDC__) && (__BORLANDC__ < 0x500)
10752 /* Borland C++ screws up loop optimisation here (negri) */
10753 #pragma option -O-l
10754 # endif
10757 * fill_breakat_flags() -- called when 'breakat' changes value.
10759 static void
10760 fill_breakat_flags()
10762 char_u *p;
10763 int i;
10765 for (i = 0; i < 256; i++)
10766 breakat_flags[i] = FALSE;
10768 if (p_breakat != NULL)
10769 for (p = p_breakat; *p; p++)
10770 breakat_flags[*p] = TRUE;
10773 # if defined(__BORLANDC__) && (__BORLANDC__ < 0x500)
10774 #pragma option -O.l
10775 # endif
10777 #endif
10780 * Check an option that can be a range of string values.
10782 * Return OK for correct value, FAIL otherwise.
10783 * Empty is always OK.
10785 static int
10786 check_opt_strings(val, values, list)
10787 char_u *val;
10788 char **values;
10789 int list; /* when TRUE: accept a list of values */
10791 return opt_strings_flags(val, values, NULL, list);
10795 * Handle an option that can be a range of string values.
10796 * Set a flag in "*flagp" for each string present.
10798 * Return OK for correct value, FAIL otherwise.
10799 * Empty is always OK.
10801 static int
10802 opt_strings_flags(val, values, flagp, list)
10803 char_u *val; /* new value */
10804 char **values; /* array of valid string values */
10805 unsigned *flagp;
10806 int list; /* when TRUE: accept a list of values */
10808 int i;
10809 int len;
10810 unsigned new_flags = 0;
10812 while (*val)
10814 for (i = 0; ; ++i)
10816 if (values[i] == NULL) /* val not found in values[] */
10817 return FAIL;
10819 len = (int)STRLEN(values[i]);
10820 if (STRNCMP(values[i], val, len) == 0
10821 && ((list && val[len] == ',') || val[len] == NUL))
10823 val += len + (val[len] == ',');
10824 new_flags |= (1 << i);
10825 break; /* check next item in val list */
10829 if (flagp != NULL)
10830 *flagp = new_flags;
10832 return OK;
10836 * Read the 'wildmode' option, fill wim_flags[].
10838 static int
10839 check_opt_wim()
10841 char_u new_wim_flags[4];
10842 char_u *p;
10843 int i;
10844 int idx = 0;
10846 for (i = 0; i < 4; ++i)
10847 new_wim_flags[i] = 0;
10849 for (p = p_wim; *p; ++p)
10851 for (i = 0; ASCII_ISALPHA(p[i]); ++i)
10853 if (p[i] != NUL && p[i] != ',' && p[i] != ':')
10854 return FAIL;
10855 if (i == 7 && STRNCMP(p, "longest", 7) == 0)
10856 new_wim_flags[idx] |= WIM_LONGEST;
10857 else if (i == 4 && STRNCMP(p, "full", 4) == 0)
10858 new_wim_flags[idx] |= WIM_FULL;
10859 else if (i == 4 && STRNCMP(p, "list", 4) == 0)
10860 new_wim_flags[idx] |= WIM_LIST;
10861 else
10862 return FAIL;
10863 p += i;
10864 if (*p == NUL)
10865 break;
10866 if (*p == ',')
10868 if (idx == 3)
10869 return FAIL;
10870 ++idx;
10874 /* fill remaining entries with last flag */
10875 while (idx < 3)
10877 new_wim_flags[idx + 1] = new_wim_flags[idx];
10878 ++idx;
10881 /* only when there are no errors, wim_flags[] is changed */
10882 for (i = 0; i < 4; ++i)
10883 wim_flags[i] = new_wim_flags[i];
10884 return OK;
10888 * Check if backspacing over something is allowed.
10891 can_bs(what)
10892 int what; /* BS_INDENT, BS_EOL or BS_START */
10894 switch (*p_bs)
10896 case '2': return TRUE;
10897 case '1': return (what != BS_START);
10898 case '0': return FALSE;
10900 return vim_strchr(p_bs, what) != NULL;
10904 * Save the current values of 'fileformat' and 'fileencoding', so that we know
10905 * the file must be considered changed when the value is different.
10907 void
10908 save_file_ff(buf)
10909 buf_T *buf;
10911 buf->b_start_ffc = *buf->b_p_ff;
10912 buf->b_start_eol = buf->b_p_eol;
10913 #ifdef FEAT_MBYTE
10914 buf->b_start_bomb = buf->b_p_bomb;
10916 /* Only use free/alloc when necessary, they take time. */
10917 if (buf->b_start_fenc == NULL
10918 || STRCMP(buf->b_start_fenc, buf->b_p_fenc) != 0)
10920 vim_free(buf->b_start_fenc);
10921 buf->b_start_fenc = vim_strsave(buf->b_p_fenc);
10923 #endif
10927 * Return TRUE if 'fileformat' and/or 'fileencoding' has a different value
10928 * from when editing started (save_file_ff() called).
10929 * Also when 'endofline' was changed and 'binary' is set, or when 'bomb' was
10930 * changed and 'binary' is not set.
10931 * Don't consider a new, empty buffer to be changed.
10934 file_ff_differs(buf)
10935 buf_T *buf;
10937 /* In a buffer that was never loaded the options are not valid. */
10938 if (buf->b_flags & BF_NEVERLOADED)
10939 return FALSE;
10940 if ((buf->b_flags & BF_NEW)
10941 && buf->b_ml.ml_line_count == 1
10942 && *ml_get_buf(buf, (linenr_T)1, FALSE) == NUL)
10943 return FALSE;
10944 if (buf->b_start_ffc != *buf->b_p_ff)
10945 return TRUE;
10946 if (buf->b_p_bin && buf->b_start_eol != buf->b_p_eol)
10947 return TRUE;
10948 #ifdef FEAT_MBYTE
10949 if (!buf->b_p_bin && buf->b_start_bomb != buf->b_p_bomb)
10950 return TRUE;
10951 if (buf->b_start_fenc == NULL)
10952 return (*buf->b_p_fenc != NUL);
10953 return (STRCMP(buf->b_start_fenc, buf->b_p_fenc) != 0);
10954 #else
10955 return FALSE;
10956 #endif
10960 * return OK if "p" is a valid fileformat name, FAIL otherwise.
10963 check_ff_value(p)
10964 char_u *p;
10966 return check_opt_strings(p, p_ff_values, FALSE);