Merge branch 'vim-with-runtime' into feat/tagfunc
[vim_extended.git] / src / option.c
bloba9be2fa93107dc2d8753d12f0694c51c0103da2e
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".
3712 * But don't allow a space in the path, so that this works:
3713 * "/usr/bin/csh --rcfile ~/.cshrc"
3714 * But don't do that for Windows, it's common to have a space in the path.
3716 #ifdef WIN3264
3717 p = gettail(p_sh);
3718 p = vim_strnsave(p, (int)(skiptowhite(p) - p));
3719 #else
3720 p = skiptowhite(p_sh);
3721 if (*p == NUL)
3723 /* No white space, use the tail. */
3724 p = vim_strsave(gettail(p_sh));
3726 else
3728 char_u *p1, *p2;
3730 /* Find the last path separator before the space. */
3731 p1 = p_sh;
3732 for (p2 = p_sh; p2 < p; mb_ptr_adv(p2))
3733 if (vim_ispathsep(*p2))
3734 p1 = p2 + 1;
3735 p = vim_strnsave(p1, (int)(p - p1));
3737 #endif
3738 if (p != NULL)
3741 * Default for p_sp is "| tee", for p_srr is ">".
3742 * For known shells it is changed here to include stderr.
3744 if ( fnamecmp(p, "csh") == 0
3745 || fnamecmp(p, "tcsh") == 0
3746 # if defined(OS2) || defined(WIN3264) /* also check with .exe extension */
3747 || fnamecmp(p, "csh.exe") == 0
3748 || fnamecmp(p, "tcsh.exe") == 0
3749 # endif
3752 #if defined(FEAT_QUICKFIX)
3753 if (do_sp)
3755 # ifdef WIN3264
3756 p_sp = (char_u *)">&";
3757 # else
3758 p_sp = (char_u *)"|& tee";
3759 # endif
3760 options[idx_sp].def_val[VI_DEFAULT] = p_sp;
3762 #endif
3763 if (do_srr)
3765 p_srr = (char_u *)">&";
3766 options[idx_srr].def_val[VI_DEFAULT] = p_srr;
3769 else
3770 # ifndef OS2 /* Always use bourne shell style redirection if we reach this */
3771 if ( fnamecmp(p, "sh") == 0
3772 || fnamecmp(p, "ksh") == 0
3773 || fnamecmp(p, "zsh") == 0
3774 || fnamecmp(p, "zsh-beta") == 0
3775 || fnamecmp(p, "bash") == 0
3776 # ifdef WIN3264
3777 || fnamecmp(p, "cmd") == 0
3778 || fnamecmp(p, "sh.exe") == 0
3779 || fnamecmp(p, "ksh.exe") == 0
3780 || fnamecmp(p, "zsh.exe") == 0
3781 || fnamecmp(p, "zsh-beta.exe") == 0
3782 || fnamecmp(p, "bash.exe") == 0
3783 || fnamecmp(p, "cmd.exe") == 0
3784 # endif
3786 # endif
3788 #if defined(FEAT_QUICKFIX)
3789 if (do_sp)
3791 # ifdef WIN3264
3792 p_sp = (char_u *)">%s 2>&1";
3793 # else
3794 p_sp = (char_u *)"2>&1| tee";
3795 # endif
3796 options[idx_sp].def_val[VI_DEFAULT] = p_sp;
3798 #endif
3799 if (do_srr)
3801 p_srr = (char_u *)">%s 2>&1";
3802 options[idx_srr].def_val[VI_DEFAULT] = p_srr;
3805 vim_free(p);
3807 #endif
3809 #if defined(MSDOS) || defined(WIN3264) || defined(OS2)
3811 * Set 'shellcmdflag and 'shellquote' depending on the 'shell' option.
3812 * This is done after other initializations, where 'shell' might have been
3813 * set, but only if they have not been set before. Default for p_shcf is
3814 * "/c", for p_shq is "". For "sh" like shells it is changed here to
3815 * "-c" and "\"", but not for DJGPP, because it starts the shell without
3816 * command.com. And for Win32 we need to set p_sxq instead.
3818 if (strstr((char *)gettail(p_sh), "sh") != NULL)
3820 int idx3;
3822 idx3 = findoption((char_u *)"shcf");
3823 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
3825 p_shcf = (char_u *)"-c";
3826 options[idx3].def_val[VI_DEFAULT] = p_shcf;
3829 # ifndef DJGPP
3830 # ifdef WIN3264
3831 /* Somehow Win32 requires the quotes around the redirection too */
3832 idx3 = findoption((char_u *)"sxq");
3833 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
3835 p_sxq = (char_u *)"\"";
3836 options[idx3].def_val[VI_DEFAULT] = p_sxq;
3838 # else
3839 idx3 = findoption((char_u *)"shq");
3840 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
3842 p_shq = (char_u *)"\"";
3843 options[idx3].def_val[VI_DEFAULT] = p_shq;
3845 # endif
3846 # endif
3848 #endif
3850 #ifdef FEAT_TITLE
3851 set_title_defaults();
3852 #endif
3855 #if defined(FEAT_MULTI_LANG) || defined(PROTO)
3857 * When 'helplang' is still at its default value, set it to "lang".
3858 * Only the first two characters of "lang" are used.
3860 void
3861 set_helplang_default(lang)
3862 char_u *lang;
3864 int idx;
3866 if (lang == NULL || STRLEN(lang) < 2) /* safety check */
3867 return;
3868 idx = findoption((char_u *)"hlg");
3869 if (idx >= 0 && !(options[idx].flags & P_WAS_SET))
3871 if (options[idx].flags & P_ALLOCED)
3872 free_string_option(p_hlg);
3873 p_hlg = vim_strsave(lang);
3874 if (p_hlg == NULL)
3875 p_hlg = empty_option;
3876 else
3878 /* zh_CN becomes "cn", zh_TW becomes "tw". */
3879 if (STRNICMP(p_hlg, "zh_", 3) == 0 && STRLEN(p_hlg) >= 5)
3881 p_hlg[0] = TOLOWER_ASC(p_hlg[3]);
3882 p_hlg[1] = TOLOWER_ASC(p_hlg[4]);
3884 p_hlg[2] = NUL;
3886 options[idx].flags |= P_ALLOCED;
3889 #endif
3891 #ifdef FEAT_GUI
3892 static char_u *gui_bg_default __ARGS((void));
3894 static char_u *
3895 gui_bg_default()
3897 if (gui_get_lightness(gui.back_pixel) < 127)
3898 return (char_u *)"dark";
3899 return (char_u *)"light";
3903 * Option initializations that can only be done after opening the GUI window.
3905 void
3906 init_gui_options()
3908 /* Set the 'background' option according to the lightness of the
3909 * background color, unless the user has set it already. */
3910 if (!option_was_set((char_u *)"bg") && STRCMP(p_bg, gui_bg_default()) != 0)
3912 set_option_value((char_u *)"bg", 0L, gui_bg_default(), 0);
3913 highlight_changed();
3916 #endif
3918 #ifdef FEAT_TITLE
3920 * 'title' and 'icon' only default to true if they have not been set or reset
3921 * in .vimrc and we can read the old value.
3922 * When 'title' and 'icon' have been reset in .vimrc, we won't even check if
3923 * they can be reset. This reduces startup time when using X on a remote
3924 * machine.
3926 void
3927 set_title_defaults()
3929 int idx1;
3930 long val;
3933 * If GUI is (going to be) used, we can always set the window title and
3934 * icon name. Saves a bit of time, because the X11 display server does
3935 * not need to be contacted.
3937 idx1 = findoption((char_u *)"title");
3938 if (idx1 >= 0 && !(options[idx1].flags & P_WAS_SET))
3940 #ifdef FEAT_GUI
3941 if (gui.starting || gui.in_use)
3942 val = TRUE;
3943 else
3944 #endif
3945 val = mch_can_restore_title();
3946 options[idx1].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
3947 p_title = val;
3949 idx1 = findoption((char_u *)"icon");
3950 if (idx1 >= 0 && !(options[idx1].flags & P_WAS_SET))
3952 #ifdef FEAT_GUI
3953 if (gui.starting || gui.in_use)
3954 val = TRUE;
3955 else
3956 #endif
3957 val = mch_can_restore_icon();
3958 options[idx1].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
3959 p_icon = val;
3962 #endif
3965 * Parse 'arg' for option settings.
3967 * 'arg' may be IObuff, but only when no errors can be present and option
3968 * does not need to be expanded with option_expand().
3969 * "opt_flags":
3970 * 0 for ":set"
3971 * OPT_GLOBAL for ":setglobal"
3972 * OPT_LOCAL for ":setlocal" and a modeline
3973 * OPT_MODELINE for a modeline
3974 * OPT_WINONLY to only set window-local options
3975 * OPT_NOWIN to skip setting window-local options
3977 * returns FAIL if an error is detected, OK otherwise
3980 do_set(arg, opt_flags)
3981 char_u *arg; /* option string (may be written to!) */
3982 int opt_flags;
3984 int opt_idx;
3985 char_u *errmsg;
3986 char_u errbuf[80];
3987 char_u *startarg;
3988 int prefix; /* 1: nothing, 0: "no", 2: "inv" in front of name */
3989 int nextchar; /* next non-white char after option name */
3990 int afterchar; /* character just after option name */
3991 int len;
3992 int i;
3993 long value;
3994 int key;
3995 long_u flags; /* flags for current option */
3996 char_u *varp = NULL; /* pointer to variable for current option */
3997 int did_show = FALSE; /* already showed one value */
3998 int adding; /* "opt+=arg" */
3999 int prepending; /* "opt^=arg" */
4000 int removing; /* "opt-=arg" */
4001 int cp_val = 0;
4002 char_u key_name[2];
4004 if (*arg == NUL)
4006 showoptions(0, opt_flags);
4007 did_show = TRUE;
4008 goto theend;
4011 while (*arg != NUL) /* loop to process all options */
4013 errmsg = NULL;
4014 startarg = arg; /* remember for error message */
4016 if (STRNCMP(arg, "all", 3) == 0 && !isalpha(arg[3])
4017 && !(opt_flags & OPT_MODELINE))
4020 * ":set all" show all options.
4021 * ":set all&" set all options to their default value.
4023 arg += 3;
4024 if (*arg == '&')
4026 ++arg;
4027 /* Only for :set command set global value of local options. */
4028 set_options_default(OPT_FREE | opt_flags);
4030 else
4032 showoptions(1, opt_flags);
4033 did_show = TRUE;
4036 else if (STRNCMP(arg, "termcap", 7) == 0 && !(opt_flags & OPT_MODELINE))
4038 showoptions(2, opt_flags);
4039 show_termcodes();
4040 did_show = TRUE;
4041 arg += 7;
4043 else
4045 prefix = 1;
4046 if (STRNCMP(arg, "no", 2) == 0 && STRNCMP(arg, "novice", 6) != 0)
4048 prefix = 0;
4049 arg += 2;
4051 else if (STRNCMP(arg, "inv", 3) == 0)
4053 prefix = 2;
4054 arg += 3;
4057 /* find end of name */
4058 key = 0;
4059 if (*arg == '<')
4061 nextchar = 0;
4062 opt_idx = -1;
4063 /* look out for <t_>;> */
4064 if (arg[1] == 't' && arg[2] == '_' && arg[3] && arg[4])
4065 len = 5;
4066 else
4068 len = 1;
4069 while (arg[len] != NUL && arg[len] != '>')
4070 ++len;
4072 if (arg[len] != '>')
4074 errmsg = e_invarg;
4075 goto skip;
4077 arg[len] = NUL; /* put NUL after name */
4078 if (arg[1] == 't' && arg[2] == '_') /* could be term code */
4079 opt_idx = findoption(arg + 1);
4080 arg[len++] = '>'; /* restore '>' */
4081 if (opt_idx == -1)
4082 key = find_key_option(arg + 1);
4084 else
4086 len = 0;
4088 * The two characters after "t_" may not be alphanumeric.
4090 if (arg[0] == 't' && arg[1] == '_' && arg[2] && arg[3])
4091 len = 4;
4092 else
4093 while (ASCII_ISALNUM(arg[len]) || arg[len] == '_')
4094 ++len;
4095 nextchar = arg[len];
4096 arg[len] = NUL; /* put NUL after name */
4097 opt_idx = findoption(arg);
4098 arg[len] = nextchar; /* restore nextchar */
4099 if (opt_idx == -1)
4100 key = find_key_option(arg);
4103 /* remember character after option name */
4104 afterchar = arg[len];
4106 /* skip white space, allow ":set ai ?" */
4107 while (vim_iswhite(arg[len]))
4108 ++len;
4110 adding = FALSE;
4111 prepending = FALSE;
4112 removing = FALSE;
4113 if (arg[len] != NUL && arg[len + 1] == '=')
4115 if (arg[len] == '+')
4117 adding = TRUE; /* "+=" */
4118 ++len;
4120 else if (arg[len] == '^')
4122 prepending = TRUE; /* "^=" */
4123 ++len;
4125 else if (arg[len] == '-')
4127 removing = TRUE; /* "-=" */
4128 ++len;
4131 nextchar = arg[len];
4133 if (opt_idx == -1 && key == 0) /* found a mismatch: skip */
4135 errmsg = (char_u *)N_("E518: Unknown option");
4136 goto skip;
4139 if (opt_idx >= 0)
4141 if (options[opt_idx].var == NULL) /* hidden option: skip */
4143 /* Only give an error message when requesting the value of
4144 * a hidden option, ignore setting it. */
4145 if (vim_strchr((char_u *)"=:!&<", nextchar) == NULL
4146 && (!(options[opt_idx].flags & P_BOOL)
4147 || nextchar == '?'))
4148 errmsg = (char_u *)N_("E519: Option not supported");
4149 goto skip;
4152 flags = options[opt_idx].flags;
4153 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
4155 else
4157 flags = P_STRING;
4158 if (key < 0)
4160 key_name[0] = KEY2TERMCAP0(key);
4161 key_name[1] = KEY2TERMCAP1(key);
4163 else
4165 key_name[0] = KS_KEY;
4166 key_name[1] = (key & 0xff);
4170 /* Skip all options that are not window-local (used when showing
4171 * an already loaded buffer in a window). */
4172 if ((opt_flags & OPT_WINONLY)
4173 && (opt_idx < 0 || options[opt_idx].var != VAR_WIN))
4174 goto skip;
4176 /* Skip all options that are window-local (used for :vimgrep). */
4177 if ((opt_flags & OPT_NOWIN) && opt_idx >= 0
4178 && options[opt_idx].var == VAR_WIN)
4179 goto skip;
4181 /* Disallow changing some options from modelines. */
4182 if (opt_flags & OPT_MODELINE)
4184 if (flags & P_SECURE)
4186 errmsg = (char_u *)_("E520: Not allowed in a modeline");
4187 goto skip;
4189 #ifdef FEAT_DIFF
4190 /* In diff mode some options are overruled. This avoids that
4191 * 'foldmethod' becomes "marker" instead of "diff" and that
4192 * "wrap" gets set. */
4193 if (curwin->w_p_diff
4194 && (options[opt_idx].indir == PV_FDM
4195 || options[opt_idx].indir == PV_WRAP))
4196 goto skip;
4197 #endif
4200 #ifdef HAVE_SANDBOX
4201 /* Disallow changing some options in the sandbox */
4202 if (sandbox != 0 && (flags & P_SECURE))
4204 errmsg = (char_u *)_(e_sandbox);
4205 goto skip;
4207 #endif
4209 if (vim_strchr((char_u *)"?=:!&<", nextchar) != NULL)
4211 arg += len;
4212 cp_val = p_cp;
4213 if (nextchar == '&' && arg[1] == 'v' && arg[2] == 'i')
4215 if (arg[3] == 'm') /* "opt&vim": set to Vim default */
4217 cp_val = FALSE;
4218 arg += 3;
4220 else /* "opt&vi": set to Vi default */
4222 cp_val = TRUE;
4223 arg += 2;
4226 if (vim_strchr((char_u *)"?!&<", nextchar) != NULL
4227 && arg[1] != NUL && !vim_iswhite(arg[1]))
4229 errmsg = e_trailing;
4230 goto skip;
4235 * allow '=' and ':' as MSDOS command.com allows only one
4236 * '=' character per "set" command line. grrr. (jw)
4238 if (nextchar == '?'
4239 || (prefix == 1
4240 && vim_strchr((char_u *)"=:&<", nextchar) == NULL
4241 && !(flags & P_BOOL)))
4244 * print value
4246 if (did_show)
4247 msg_putchar('\n'); /* cursor below last one */
4248 else
4250 gotocmdline(TRUE); /* cursor at status line */
4251 did_show = TRUE; /* remember that we did a line */
4253 if (opt_idx >= 0)
4255 showoneopt(&options[opt_idx], opt_flags);
4256 #ifdef FEAT_EVAL
4257 if (p_verbose > 0)
4259 /* Mention where the option was last set. */
4260 if (varp == options[opt_idx].var)
4261 last_set_msg(options[opt_idx].scriptID);
4262 else if ((int)options[opt_idx].indir & PV_WIN)
4263 last_set_msg(curwin->w_p_scriptID[
4264 (int)options[opt_idx].indir & PV_MASK]);
4265 else if ((int)options[opt_idx].indir & PV_BUF)
4266 last_set_msg(curbuf->b_p_scriptID[
4267 (int)options[opt_idx].indir & PV_MASK]);
4269 #endif
4271 else
4273 char_u *p;
4275 p = find_termcode(key_name);
4276 if (p == NULL)
4278 errmsg = (char_u *)N_("E518: Unknown option");
4279 goto skip;
4281 else
4282 (void)show_one_termcode(key_name, p, TRUE);
4284 if (nextchar != '?'
4285 && nextchar != NUL && !vim_iswhite(afterchar))
4286 errmsg = e_trailing;
4288 else
4290 if (flags & P_BOOL) /* boolean */
4292 if (nextchar == '=' || nextchar == ':')
4294 errmsg = e_invarg;
4295 goto skip;
4299 * ":set opt!": invert
4300 * ":set opt&": reset to default value
4301 * ":set opt<": reset to global value
4303 if (nextchar == '!')
4304 value = *(int *)(varp) ^ 1;
4305 else if (nextchar == '&')
4306 value = (int)(long)(long_i)options[opt_idx].def_val[
4307 ((flags & P_VI_DEF) || cp_val)
4308 ? VI_DEFAULT : VIM_DEFAULT];
4309 else if (nextchar == '<')
4311 /* For 'autoread' -1 means to use global value. */
4312 if ((int *)varp == &curbuf->b_p_ar
4313 && opt_flags == OPT_LOCAL)
4314 value = -1;
4315 else
4316 value = *(int *)get_varp_scope(&(options[opt_idx]),
4317 OPT_GLOBAL);
4319 else
4322 * ":set invopt": invert
4323 * ":set opt" or ":set noopt": set or reset
4325 if (nextchar != NUL && !vim_iswhite(afterchar))
4327 errmsg = e_trailing;
4328 goto skip;
4330 if (prefix == 2) /* inv */
4331 value = *(int *)(varp) ^ 1;
4332 else
4333 value = prefix;
4336 errmsg = set_bool_option(opt_idx, varp, (int)value,
4337 opt_flags);
4339 else /* numeric or string */
4341 if (vim_strchr((char_u *)"=:&<", nextchar) == NULL
4342 || prefix != 1)
4344 errmsg = e_invarg;
4345 goto skip;
4348 if (flags & P_NUM) /* numeric */
4351 * Different ways to set a number option:
4352 * & set to default value
4353 * < set to global value
4354 * <xx> accept special key codes for 'wildchar'
4355 * c accept any non-digit for 'wildchar'
4356 * [-]0-9 set number
4357 * other error
4359 ++arg;
4360 if (nextchar == '&')
4361 value = (long)(long_i)options[opt_idx].def_val[
4362 ((flags & P_VI_DEF) || cp_val)
4363 ? VI_DEFAULT : VIM_DEFAULT];
4364 else if (nextchar == '<')
4365 value = *(long *)get_varp_scope(&(options[opt_idx]),
4366 OPT_GLOBAL);
4367 else if (((long *)varp == &p_wc
4368 || (long *)varp == &p_wcm)
4369 && (*arg == '<'
4370 || *arg == '^'
4371 || ((!arg[1] || vim_iswhite(arg[1]))
4372 && !VIM_ISDIGIT(*arg))))
4374 value = string_to_key(arg);
4375 if (value == 0 && (long *)varp != &p_wcm)
4377 errmsg = e_invarg;
4378 goto skip;
4381 /* allow negative numbers (for 'undolevels') */
4382 else if (*arg == '-' || VIM_ISDIGIT(*arg))
4384 i = 0;
4385 if (*arg == '-')
4386 i = 1;
4387 #ifdef HAVE_STRTOL
4388 value = strtol((char *)arg, NULL, 0);
4389 if (arg[i] == '0' && TOLOWER_ASC(arg[i + 1]) == 'x')
4390 i += 2;
4391 #else
4392 value = atol((char *)arg);
4393 #endif
4394 while (VIM_ISDIGIT(arg[i]))
4395 ++i;
4396 if (arg[i] != NUL && !vim_iswhite(arg[i]))
4398 errmsg = e_invarg;
4399 goto skip;
4402 else
4404 errmsg = (char_u *)N_("E521: Number required after =");
4405 goto skip;
4408 if (adding)
4409 value = *(long *)varp + value;
4410 if (prepending)
4411 value = *(long *)varp * value;
4412 if (removing)
4413 value = *(long *)varp - value;
4414 errmsg = set_num_option(opt_idx, varp, value,
4415 errbuf, sizeof(errbuf), opt_flags);
4417 else if (opt_idx >= 0) /* string */
4419 char_u *save_arg = NULL;
4420 char_u *s = NULL;
4421 char_u *oldval; /* previous value if *varp */
4422 char_u *newval;
4423 char_u *origval;
4424 unsigned newlen;
4425 int comma;
4426 int bs;
4427 int new_value_alloced; /* new string option
4428 was allocated */
4430 /* When using ":set opt=val" for a global option
4431 * with a local value the local value will be
4432 * reset, use the global value here. */
4433 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
4434 && ((int)options[opt_idx].indir & PV_BOTH))
4435 varp = options[opt_idx].var;
4437 /* The old value is kept until we are sure that the
4438 * new value is valid. */
4439 oldval = *(char_u **)varp;
4440 if (nextchar == '&') /* set to default val */
4442 newval = options[opt_idx].def_val[
4443 ((flags & P_VI_DEF) || cp_val)
4444 ? VI_DEFAULT : VIM_DEFAULT];
4445 if ((char_u **)varp == &p_bg)
4447 /* guess the value of 'background' */
4448 #ifdef FEAT_GUI
4449 if (gui.in_use)
4450 newval = gui_bg_default();
4451 else
4452 #endif
4453 newval = term_bg_default();
4456 /* expand environment variables and ~ (since the
4457 * default value was already expanded, only
4458 * required when an environment variable was set
4459 * later */
4460 if (newval == NULL)
4461 newval = empty_option;
4462 else
4464 s = option_expand(opt_idx, newval);
4465 if (s == NULL)
4466 s = newval;
4467 newval = vim_strsave(s);
4469 new_value_alloced = TRUE;
4471 else if (nextchar == '<') /* set to global val */
4473 newval = vim_strsave(*(char_u **)get_varp_scope(
4474 &(options[opt_idx]), OPT_GLOBAL));
4475 new_value_alloced = TRUE;
4477 else
4479 ++arg; /* jump to after the '=' or ':' */
4482 * Set 'keywordprg' to ":help" if an empty
4483 * value was passed to :set by the user.
4484 * Misuse errbuf[] for the resulting string.
4486 if (varp == (char_u *)&p_kp
4487 && (*arg == NUL || *arg == ' '))
4489 STRCPY(errbuf, ":help");
4490 save_arg = arg;
4491 arg = errbuf;
4494 * Convert 'whichwrap' number to string, for
4495 * backwards compatibility with Vim 3.0.
4496 * Misuse errbuf[] for the resulting string.
4498 else if (varp == (char_u *)&p_ww
4499 && VIM_ISDIGIT(*arg))
4501 *errbuf = NUL;
4502 i = getdigits(&arg);
4503 if (i & 1)
4504 STRCAT(errbuf, "b,");
4505 if (i & 2)
4506 STRCAT(errbuf, "s,");
4507 if (i & 4)
4508 STRCAT(errbuf, "h,l,");
4509 if (i & 8)
4510 STRCAT(errbuf, "<,>,");
4511 if (i & 16)
4512 STRCAT(errbuf, "[,],");
4513 if (*errbuf != NUL) /* remove trailing , */
4514 errbuf[STRLEN(errbuf) - 1] = NUL;
4515 save_arg = arg;
4516 arg = errbuf;
4519 * Remove '>' before 'dir' and 'bdir', for
4520 * backwards compatibility with version 3.0
4522 else if ( *arg == '>'
4523 && (varp == (char_u *)&p_dir
4524 || varp == (char_u *)&p_bdir))
4526 ++arg;
4529 /* When setting the local value of a global
4530 * option, the old value may be the global value. */
4531 if (((int)options[opt_idx].indir & PV_BOTH)
4532 && (opt_flags & OPT_LOCAL))
4533 origval = *(char_u **)get_varp(
4534 &options[opt_idx]);
4535 else
4536 origval = oldval;
4539 * Copy the new string into allocated memory.
4540 * Can't use set_string_option_direct(), because
4541 * we need to remove the backslashes.
4543 /* get a bit too much */
4544 newlen = (unsigned)STRLEN(arg) + 1;
4545 if (adding || prepending || removing)
4546 newlen += (unsigned)STRLEN(origval) + 1;
4547 newval = alloc(newlen);
4548 if (newval == NULL) /* out of mem, don't change */
4549 break;
4550 s = newval;
4553 * Copy the string, skip over escaped chars.
4554 * For MS-DOS and WIN32 backslashes before normal
4555 * file name characters are not removed, and keep
4556 * backslash at start, for "\\machine\path", but
4557 * do remove it for "\\\\machine\\path".
4558 * The reverse is found in ExpandOldSetting().
4560 while (*arg && !vim_iswhite(*arg))
4562 if (*arg == '\\' && arg[1] != NUL
4563 #ifdef BACKSLASH_IN_FILENAME
4564 && !((flags & P_EXPAND)
4565 && vim_isfilec(arg[1])
4566 && (arg[1] != '\\'
4567 || (s == newval
4568 && arg[2] != '\\')))
4569 #endif
4571 ++arg; /* remove backslash */
4572 #ifdef FEAT_MBYTE
4573 if (has_mbyte
4574 && (i = (*mb_ptr2len)(arg)) > 1)
4576 /* copy multibyte char */
4577 mch_memmove(s, arg, (size_t)i);
4578 arg += i;
4579 s += i;
4581 else
4582 #endif
4583 *s++ = *arg++;
4585 *s = NUL;
4588 * Expand environment variables and ~.
4589 * Don't do it when adding without inserting a
4590 * comma.
4592 if (!(adding || prepending || removing)
4593 || (flags & P_COMMA))
4595 s = option_expand(opt_idx, newval);
4596 if (s != NULL)
4598 vim_free(newval);
4599 newlen = (unsigned)STRLEN(s) + 1;
4600 if (adding || prepending || removing)
4601 newlen += (unsigned)STRLEN(origval) + 1;
4602 newval = alloc(newlen);
4603 if (newval == NULL)
4604 break;
4605 STRCPY(newval, s);
4609 /* locate newval[] in origval[] when removing it
4610 * and when adding to avoid duplicates */
4611 i = 0; /* init for GCC */
4612 if (removing || (flags & P_NODUP))
4614 i = (int)STRLEN(newval);
4615 bs = 0;
4616 for (s = origval; *s; ++s)
4618 if ((!(flags & P_COMMA)
4619 || s == origval
4620 || (s[-1] == ',' && !(bs & 1)))
4621 && STRNCMP(s, newval, i) == 0
4622 && (!(flags & P_COMMA)
4623 || s[i] == ','
4624 || s[i] == NUL))
4625 break;
4626 /* Count backspaces. Only a comma with an
4627 * even number of backspaces before it is
4628 * recognized as a separator */
4629 if (s > origval && s[-1] == '\\')
4630 ++bs;
4631 else
4632 bs = 0;
4635 /* do not add if already there */
4636 if ((adding || prepending) && *s)
4638 prepending = FALSE;
4639 adding = FALSE;
4640 STRCPY(newval, origval);
4644 /* concatenate the two strings; add a ',' if
4645 * needed */
4646 if (adding || prepending)
4648 comma = ((flags & P_COMMA) && *origval != NUL
4649 && *newval != NUL);
4650 if (adding)
4652 i = (int)STRLEN(origval);
4653 mch_memmove(newval + i + comma, newval,
4654 STRLEN(newval) + 1);
4655 mch_memmove(newval, origval, (size_t)i);
4657 else
4659 i = (int)STRLEN(newval);
4660 STRMOVE(newval + i + comma, origval);
4662 if (comma)
4663 newval[i] = ',';
4666 /* Remove newval[] from origval[]. (Note: "i" has
4667 * been set above and is used here). */
4668 if (removing)
4670 STRCPY(newval, origval);
4671 if (*s)
4673 /* may need to remove a comma */
4674 if (flags & P_COMMA)
4676 if (s == origval)
4678 /* include comma after string */
4679 if (s[i] == ',')
4680 ++i;
4682 else
4684 /* include comma before string */
4685 --s;
4686 ++i;
4689 STRMOVE(newval + (s - origval), s + i);
4693 if (flags & P_FLAGLIST)
4695 /* Remove flags that appear twice. */
4696 for (s = newval; *s; ++s)
4697 if ((!(flags & P_COMMA) || *s != ',')
4698 && vim_strchr(s + 1, *s) != NULL)
4700 STRMOVE(s, s + 1);
4701 --s;
4705 if (save_arg != NULL) /* number for 'whichwrap' */
4706 arg = save_arg;
4707 new_value_alloced = TRUE;
4710 /* Set the new value. */
4711 *(char_u **)(varp) = newval;
4713 /* Handle side effects, and set the global value for
4714 * ":set" on local options. */
4715 errmsg = did_set_string_option(opt_idx, (char_u **)varp,
4716 new_value_alloced, oldval, errbuf, opt_flags);
4718 /* If error detected, print the error message. */
4719 if (errmsg != NULL)
4720 goto skip;
4722 else /* key code option */
4724 char_u *p;
4726 if (nextchar == '&')
4728 if (add_termcap_entry(key_name, TRUE) == FAIL)
4729 errmsg = (char_u *)N_("E522: Not found in termcap");
4731 else
4733 ++arg; /* jump to after the '=' or ':' */
4734 for (p = arg; *p && !vim_iswhite(*p); ++p)
4735 if (*p == '\\' && p[1] != NUL)
4736 ++p;
4737 nextchar = *p;
4738 *p = NUL;
4739 add_termcode(key_name, arg, FALSE);
4740 *p = nextchar;
4742 if (full_screen)
4743 ttest(FALSE);
4744 redraw_all_later(CLEAR);
4748 if (opt_idx >= 0)
4749 did_set_option(opt_idx, opt_flags,
4750 !prepending && !adding && !removing);
4753 skip:
4755 * Advance to next argument.
4756 * - skip until a blank found, taking care of backslashes
4757 * - skip blanks
4758 * - skip one "=val" argument (for hidden options ":set gfn =xx")
4760 for (i = 0; i < 2 ; ++i)
4762 while (*arg != NUL && !vim_iswhite(*arg))
4763 if (*arg++ == '\\' && *arg != NUL)
4764 ++arg;
4765 arg = skipwhite(arg);
4766 if (*arg != '=')
4767 break;
4771 if (errmsg != NULL)
4773 vim_strncpy(IObuff, (char_u *)_(errmsg), IOSIZE - 1);
4774 i = (int)STRLEN(IObuff) + 2;
4775 if (i + (arg - startarg) < IOSIZE)
4777 /* append the argument with the error */
4778 STRCAT(IObuff, ": ");
4779 mch_memmove(IObuff + i, startarg, (arg - startarg));
4780 IObuff[i + (arg - startarg)] = NUL;
4782 /* make sure all characters are printable */
4783 trans_characters(IObuff, IOSIZE);
4785 ++no_wait_return; /* wait_return done later */
4786 emsg(IObuff); /* show error highlighted */
4787 --no_wait_return;
4789 return FAIL;
4792 arg = skipwhite(arg);
4795 theend:
4796 if (silent_mode && did_show)
4798 /* After displaying option values in silent mode. */
4799 silent_mode = FALSE;
4800 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
4801 msg_putchar('\n');
4802 cursor_on(); /* msg_start() switches it off */
4803 out_flush();
4804 silent_mode = TRUE;
4805 info_message = FALSE; /* use mch_msg(), not mch_errmsg() */
4808 return OK;
4812 * Call this when an option has been given a new value through a user command.
4813 * Sets the P_WAS_SET flag and takes care of the P_INSECURE flag.
4815 static void
4816 did_set_option(opt_idx, opt_flags, new_value)
4817 int opt_idx;
4818 int opt_flags; /* possibly with OPT_MODELINE */
4819 int new_value; /* value was replaced completely */
4821 long_u *p;
4823 options[opt_idx].flags |= P_WAS_SET;
4825 /* When an option is set in the sandbox, from a modeline or in secure mode
4826 * set the P_INSECURE flag. Otherwise, if a new value is stored reset the
4827 * flag. */
4828 p = insecure_flag(opt_idx, opt_flags);
4829 if (secure
4830 #ifdef HAVE_SANDBOX
4831 || sandbox != 0
4832 #endif
4833 || (opt_flags & OPT_MODELINE))
4834 *p = *p | P_INSECURE;
4835 else if (new_value)
4836 *p = *p & ~P_INSECURE;
4839 static char_u *
4840 illegal_char(errbuf, c)
4841 char_u *errbuf;
4842 int c;
4844 if (errbuf == NULL)
4845 return (char_u *)"";
4846 sprintf((char *)errbuf, _("E539: Illegal character <%s>"),
4847 (char *)transchar(c));
4848 return errbuf;
4852 * Convert a key name or string into a key value.
4853 * Used for 'wildchar' and 'cedit' options.
4855 static int
4856 string_to_key(arg)
4857 char_u *arg;
4859 if (*arg == '<')
4860 return find_key_option(arg + 1);
4861 if (*arg == '^')
4862 return Ctrl_chr(arg[1]);
4863 return *arg;
4866 #ifdef FEAT_CMDWIN
4868 * Check value of 'cedit' and set cedit_key.
4869 * Returns NULL if value is OK, error message otherwise.
4871 static char_u *
4872 check_cedit()
4874 int n;
4876 if (*p_cedit == NUL)
4877 cedit_key = -1;
4878 else
4880 n = string_to_key(p_cedit);
4881 if (vim_isprintc(n))
4882 return e_invarg;
4883 cedit_key = n;
4885 return NULL;
4887 #endif
4889 #ifdef FEAT_TITLE
4891 * When changing 'title', 'titlestring', 'icon' or 'iconstring', call
4892 * maketitle() to create and display it.
4893 * When switching the title or icon off, call mch_restore_title() to get
4894 * the old value back.
4896 static void
4897 did_set_title(icon)
4898 int icon; /* Did set icon instead of title */
4900 if (starting != NO_SCREEN
4901 #ifdef FEAT_GUI
4902 && !gui.starting
4903 #endif
4906 maketitle();
4907 if (icon)
4909 if (!p_icon)
4910 mch_restore_title(2);
4912 else
4914 if (!p_title)
4915 mch_restore_title(1);
4919 #endif
4922 * set_options_bin - called when 'bin' changes value.
4924 void
4925 set_options_bin(oldval, newval, opt_flags)
4926 int oldval;
4927 int newval;
4928 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
4931 * The option values that are changed when 'bin' changes are
4932 * copied when 'bin is set and restored when 'bin' is reset.
4934 if (newval)
4936 if (!oldval) /* switched on */
4938 if (!(opt_flags & OPT_GLOBAL))
4940 curbuf->b_p_tw_nobin = curbuf->b_p_tw;
4941 curbuf->b_p_wm_nobin = curbuf->b_p_wm;
4942 curbuf->b_p_ml_nobin = curbuf->b_p_ml;
4943 curbuf->b_p_et_nobin = curbuf->b_p_et;
4945 if (!(opt_flags & OPT_LOCAL))
4947 p_tw_nobin = p_tw;
4948 p_wm_nobin = p_wm;
4949 p_ml_nobin = p_ml;
4950 p_et_nobin = p_et;
4954 if (!(opt_flags & OPT_GLOBAL))
4956 curbuf->b_p_tw = 0; /* no automatic line wrap */
4957 curbuf->b_p_wm = 0; /* no automatic line wrap */
4958 curbuf->b_p_ml = 0; /* no modelines */
4959 curbuf->b_p_et = 0; /* no expandtab */
4961 if (!(opt_flags & OPT_LOCAL))
4963 p_tw = 0;
4964 p_wm = 0;
4965 p_ml = FALSE;
4966 p_et = FALSE;
4967 p_bin = TRUE; /* needed when called for the "-b" argument */
4970 else if (oldval) /* switched off */
4972 if (!(opt_flags & OPT_GLOBAL))
4974 curbuf->b_p_tw = curbuf->b_p_tw_nobin;
4975 curbuf->b_p_wm = curbuf->b_p_wm_nobin;
4976 curbuf->b_p_ml = curbuf->b_p_ml_nobin;
4977 curbuf->b_p_et = curbuf->b_p_et_nobin;
4979 if (!(opt_flags & OPT_LOCAL))
4981 p_tw = p_tw_nobin;
4982 p_wm = p_wm_nobin;
4983 p_ml = p_ml_nobin;
4984 p_et = p_et_nobin;
4989 #ifdef FEAT_VIMINFO
4991 * Find the parameter represented by the given character (eg ', :, ", or /),
4992 * and return its associated value in the 'viminfo' string.
4993 * Only works for number parameters, not for 'r' or 'n'.
4994 * If the parameter is not specified in the string or there is no following
4995 * number, return -1.
4998 get_viminfo_parameter(type)
4999 int type;
5001 char_u *p;
5003 p = find_viminfo_parameter(type);
5004 if (p != NULL && VIM_ISDIGIT(*p))
5005 return atoi((char *)p);
5006 return -1;
5010 * Find the parameter represented by the given character (eg ''', ':', '"', or
5011 * '/') in the 'viminfo' option and return a pointer to the string after it.
5012 * Return NULL if the parameter is not specified in the string.
5014 char_u *
5015 find_viminfo_parameter(type)
5016 int type;
5018 char_u *p;
5020 for (p = p_viminfo; *p; ++p)
5022 if (*p == type)
5023 return p + 1;
5024 if (*p == 'n') /* 'n' is always the last one */
5025 break;
5026 p = vim_strchr(p, ','); /* skip until next ',' */
5027 if (p == NULL) /* hit the end without finding parameter */
5028 break;
5030 return NULL;
5032 #endif
5035 * Expand environment variables for some string options.
5036 * These string options cannot be indirect!
5037 * If "val" is NULL expand the current value of the option.
5038 * Return pointer to NameBuff, or NULL when not expanded.
5040 static char_u *
5041 option_expand(opt_idx, val)
5042 int opt_idx;
5043 char_u *val;
5045 /* if option doesn't need expansion nothing to do */
5046 if (!(options[opt_idx].flags & P_EXPAND) || options[opt_idx].var == NULL)
5047 return NULL;
5049 /* If val is longer than MAXPATHL no meaningful expansion can be done,
5050 * expand_env() would truncate the string. */
5051 if (val != NULL && STRLEN(val) > MAXPATHL)
5052 return NULL;
5054 if (val == NULL)
5055 val = *(char_u **)options[opt_idx].var;
5058 * Expanding this with NameBuff, expand_env() must not be passed IObuff.
5059 * Escape spaces when expanding 'tags', they are used to separate file
5060 * names.
5061 * For 'spellsuggest' expand after "file:".
5063 expand_env_esc(val, NameBuff, MAXPATHL,
5064 (char_u **)options[opt_idx].var == &p_tags, FALSE,
5065 #ifdef FEAT_SPELL
5066 (char_u **)options[opt_idx].var == &p_sps ? (char_u *)"file:" :
5067 #endif
5068 NULL);
5069 if (STRCMP(NameBuff, val) == 0) /* they are the same */
5070 return NULL;
5072 return NameBuff;
5076 * After setting various option values: recompute variables that depend on
5077 * option values.
5079 static void
5080 didset_options()
5082 /* initialize the table for 'iskeyword' et.al. */
5083 (void)init_chartab();
5085 #ifdef FEAT_MBYTE
5086 (void)opt_strings_flags(p_cmp, p_cmp_values, &cmp_flags, TRUE);
5087 #endif
5088 (void)opt_strings_flags(p_bkc, p_bkc_values, &bkc_flags, TRUE);
5089 #ifdef FEAT_SESSION
5090 (void)opt_strings_flags(p_ssop, p_ssop_values, &ssop_flags, TRUE);
5091 (void)opt_strings_flags(p_vop, p_ssop_values, &vop_flags, TRUE);
5092 #endif
5093 #ifdef FEAT_FOLDING
5094 (void)opt_strings_flags(p_fdo, p_fdo_values, &fdo_flags, TRUE);
5095 #endif
5096 (void)opt_strings_flags(p_dy, p_dy_values, &dy_flags, TRUE);
5097 #ifdef FEAT_VIRTUALEDIT
5098 (void)opt_strings_flags(p_ve, p_ve_values, &ve_flags, TRUE);
5099 #endif
5100 #if defined(FEAT_MOUSE) && (defined(UNIX) || defined(VMS))
5101 (void)opt_strings_flags(p_ttym, p_ttym_values, &ttym_flags, FALSE);
5102 #endif
5103 #ifdef FEAT_SPELL
5104 (void)spell_check_msm();
5105 (void)spell_check_sps();
5106 (void)compile_cap_prog(curbuf);
5107 #endif
5108 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
5109 (void)opt_strings_flags(p_toolbar, p_toolbar_values, &toolbar_flags, TRUE);
5110 #endif
5111 #if defined(FEAT_TOOLBAR) && defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)
5112 (void)opt_strings_flags(p_tbis, p_tbis_values, &tbis_flags, FALSE);
5113 #endif
5114 #ifdef FEAT_CMDWIN
5115 /* set cedit_key */
5116 (void)check_cedit();
5117 #endif
5121 * Check for string options that are NULL (normally only termcap options).
5123 void
5124 check_options()
5126 int opt_idx;
5128 for (opt_idx = 0; options[opt_idx].fullname != NULL; opt_idx++)
5129 if ((options[opt_idx].flags & P_STRING) && options[opt_idx].var != NULL)
5130 check_string_option((char_u **)get_varp(&(options[opt_idx])));
5134 * Check string options in a buffer for NULL value.
5136 void
5137 check_buf_options(buf)
5138 buf_T *buf;
5140 #if defined(FEAT_QUICKFIX)
5141 check_string_option(&buf->b_p_bh);
5142 check_string_option(&buf->b_p_bt);
5143 #endif
5144 #ifdef FEAT_MBYTE
5145 check_string_option(&buf->b_p_fenc);
5146 #endif
5147 check_string_option(&buf->b_p_ff);
5148 #ifdef FEAT_FIND_ID
5149 check_string_option(&buf->b_p_def);
5150 check_string_option(&buf->b_p_inc);
5151 # ifdef FEAT_EVAL
5152 check_string_option(&buf->b_p_inex);
5153 # endif
5154 #endif
5155 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
5156 check_string_option(&buf->b_p_inde);
5157 check_string_option(&buf->b_p_indk);
5158 #endif
5159 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
5160 check_string_option(&buf->b_p_bexpr);
5161 #endif
5162 #if defined(FEAT_EVAL)
5163 check_string_option(&buf->b_p_fex);
5164 #endif
5165 #ifdef FEAT_CRYPT
5166 check_string_option(&buf->b_p_key);
5167 #endif
5168 check_string_option(&buf->b_p_kp);
5169 check_string_option(&buf->b_p_mps);
5170 check_string_option(&buf->b_p_fo);
5171 check_string_option(&buf->b_p_flp);
5172 check_string_option(&buf->b_p_isk);
5173 #ifdef FEAT_COMMENTS
5174 check_string_option(&buf->b_p_com);
5175 #endif
5176 #ifdef FEAT_FOLDING
5177 check_string_option(&buf->b_p_cms);
5178 #endif
5179 check_string_option(&buf->b_p_nf);
5180 #ifdef FEAT_TEXTOBJ
5181 check_string_option(&buf->b_p_qe);
5182 #endif
5183 #ifdef FEAT_SYN_HL
5184 check_string_option(&buf->b_p_syn);
5185 #endif
5186 #ifdef FEAT_SPELL
5187 check_string_option(&buf->b_p_spc);
5188 check_string_option(&buf->b_p_spf);
5189 check_string_option(&buf->b_p_spl);
5190 #endif
5191 #ifdef FEAT_SEARCHPATH
5192 check_string_option(&buf->b_p_sua);
5193 #endif
5194 #ifdef FEAT_CINDENT
5195 check_string_option(&buf->b_p_cink);
5196 check_string_option(&buf->b_p_cino);
5197 #endif
5198 #ifdef FEAT_AUTOCMD
5199 check_string_option(&buf->b_p_ft);
5200 #endif
5201 #ifdef FEAT_OSFILETYPE
5202 check_string_option(&buf->b_p_oft);
5203 #endif
5204 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
5205 check_string_option(&buf->b_p_cinw);
5206 #endif
5207 #ifdef FEAT_INS_EXPAND
5208 check_string_option(&buf->b_p_cpt);
5209 #endif
5210 #ifdef FEAT_COMPL_FUNC
5211 check_string_option(&buf->b_p_cfu);
5212 check_string_option(&buf->b_p_ofu);
5213 check_string_option(&buf->b_p_tfu);
5214 #endif
5215 #ifdef FEAT_KEYMAP
5216 check_string_option(&buf->b_p_keymap);
5217 #endif
5218 #ifdef FEAT_QUICKFIX
5219 check_string_option(&buf->b_p_gp);
5220 check_string_option(&buf->b_p_mp);
5221 check_string_option(&buf->b_p_efm);
5222 #endif
5223 check_string_option(&buf->b_p_ep);
5224 check_string_option(&buf->b_p_path);
5225 check_string_option(&buf->b_p_tags);
5226 #ifdef FEAT_INS_EXPAND
5227 check_string_option(&buf->b_p_dict);
5228 check_string_option(&buf->b_p_tsr);
5229 #endif
5233 * Free the string allocated for an option.
5234 * Checks for the string being empty_option. This may happen if we're out of
5235 * memory, vim_strsave() returned NULL, which was replaced by empty_option by
5236 * check_options().
5237 * Does NOT check for P_ALLOCED flag!
5239 void
5240 free_string_option(p)
5241 char_u *p;
5243 if (p != empty_option)
5244 vim_free(p);
5247 void
5248 clear_string_option(pp)
5249 char_u **pp;
5251 if (*pp != empty_option)
5252 vim_free(*pp);
5253 *pp = empty_option;
5256 static void
5257 check_string_option(pp)
5258 char_u **pp;
5260 if (*pp == NULL)
5261 *pp = empty_option;
5265 * Mark a terminal option as allocated, found by a pointer into term_strings[].
5267 void
5268 set_term_option_alloced(p)
5269 char_u **p;
5271 int opt_idx;
5273 for (opt_idx = 1; options[opt_idx].fullname != NULL; opt_idx++)
5274 if (options[opt_idx].var == (char_u *)p)
5276 options[opt_idx].flags |= P_ALLOCED;
5277 return;
5279 return; /* cannot happen: didn't find it! */
5282 #if defined(FEAT_EVAL) || defined(PROTO)
5284 * Return TRUE when option "opt" was set from a modeline or in secure mode.
5285 * Return FALSE when it wasn't.
5286 * Return -1 for an unknown option.
5289 was_set_insecurely(opt, opt_flags)
5290 char_u *opt;
5291 int opt_flags;
5293 int idx = findoption(opt);
5294 long_u *flagp;
5296 if (idx >= 0)
5298 flagp = insecure_flag(idx, opt_flags);
5299 return (*flagp & P_INSECURE) != 0;
5301 EMSG2(_(e_intern2), "was_set_insecurely()");
5302 return -1;
5306 * Get a pointer to the flags used for the P_INSECURE flag of option
5307 * "opt_idx". For some local options a local flags field is used.
5309 static long_u *
5310 insecure_flag(opt_idx, opt_flags)
5311 int opt_idx;
5312 int opt_flags;
5314 if (opt_flags & OPT_LOCAL)
5315 switch ((int)options[opt_idx].indir)
5317 #ifdef FEAT_STL_OPT
5318 case PV_STL: return &curwin->w_p_stl_flags;
5319 #endif
5320 #ifdef FEAT_EVAL
5321 # ifdef FEAT_FOLDING
5322 case PV_FDE: return &curwin->w_p_fde_flags;
5323 case PV_FDT: return &curwin->w_p_fdt_flags;
5324 # endif
5325 # ifdef FEAT_BEVAL
5326 case PV_BEXPR: return &curbuf->b_p_bexpr_flags;
5327 # endif
5328 # if defined(FEAT_CINDENT)
5329 case PV_INDE: return &curbuf->b_p_inde_flags;
5330 # endif
5331 case PV_FEX: return &curbuf->b_p_fex_flags;
5332 # ifdef FEAT_FIND_ID
5333 case PV_INEX: return &curbuf->b_p_inex_flags;
5334 # endif
5335 #endif
5338 /* Nothing special, return global flags field. */
5339 return &options[opt_idx].flags;
5341 #endif
5343 #ifdef FEAT_TITLE
5344 static void redraw_titles __ARGS((void));
5347 * Redraw the window title and/or tab page text later.
5349 static void redraw_titles()
5351 need_maketitle = TRUE;
5352 # ifdef FEAT_WINDOWS
5353 redraw_tabline = TRUE;
5354 # endif
5356 #endif
5359 * Set a string option to a new value (without checking the effect).
5360 * The string is copied into allocated memory.
5361 * if ("opt_idx" == -1) "name" is used, otherwise "opt_idx" is used.
5362 * When "set_sid" is zero set the scriptID to current_SID. When "set_sid" is
5363 * SID_NONE don't set the scriptID. Otherwise set the scriptID to "set_sid".
5365 void
5366 set_string_option_direct(name, opt_idx, val, opt_flags, set_sid)
5367 char_u *name;
5368 int opt_idx;
5369 char_u *val;
5370 int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */
5371 int set_sid UNUSED;
5373 char_u *s;
5374 char_u **varp;
5375 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
5376 int idx = opt_idx;
5378 if (idx == -1) /* use name */
5380 idx = findoption(name);
5381 if (idx < 0) /* not found (should not happen) */
5383 EMSG2(_(e_intern2), "set_string_option_direct()");
5384 return;
5388 if (options[idx].var == NULL) /* can't set hidden option */
5389 return;
5391 s = vim_strsave(val);
5392 if (s != NULL)
5394 varp = (char_u **)get_varp_scope(&(options[idx]),
5395 both ? OPT_LOCAL : opt_flags);
5396 if ((opt_flags & OPT_FREE) && (options[idx].flags & P_ALLOCED))
5397 free_string_option(*varp);
5398 *varp = s;
5400 /* For buffer/window local option may also set the global value. */
5401 if (both)
5402 set_string_option_global(idx, varp);
5404 options[idx].flags |= P_ALLOCED;
5406 /* When setting both values of a global option with a local value,
5407 * make the local value empty, so that the global value is used. */
5408 if (((int)options[idx].indir & PV_BOTH) && both)
5410 free_string_option(*varp);
5411 *varp = empty_option;
5413 # ifdef FEAT_EVAL
5414 if (set_sid != SID_NONE)
5415 set_option_scriptID_idx(idx, opt_flags,
5416 set_sid == 0 ? current_SID : set_sid);
5417 # endif
5422 * Set global value for string option when it's a local option.
5424 static void
5425 set_string_option_global(opt_idx, varp)
5426 int opt_idx; /* option index */
5427 char_u **varp; /* pointer to option variable */
5429 char_u **p, *s;
5431 /* the global value is always allocated */
5432 if (options[opt_idx].var == VAR_WIN)
5433 p = (char_u **)GLOBAL_WO(varp);
5434 else
5435 p = (char_u **)options[opt_idx].var;
5436 if (options[opt_idx].indir != PV_NONE
5437 && p != varp
5438 && (s = vim_strsave(*varp)) != NULL)
5440 free_string_option(*p);
5441 *p = s;
5446 * Set a string option to a new value, and handle the effects.
5448 static void
5449 set_string_option(opt_idx, value, opt_flags)
5450 int opt_idx;
5451 char_u *value;
5452 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
5454 char_u *s;
5455 char_u **varp;
5456 char_u *oldval;
5458 if (options[opt_idx].var == NULL) /* don't set hidden option */
5459 return;
5461 s = vim_strsave(value);
5462 if (s != NULL)
5464 varp = (char_u **)get_varp_scope(&(options[opt_idx]),
5465 (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
5466 ? (((int)options[opt_idx].indir & PV_BOTH)
5467 ? OPT_GLOBAL : OPT_LOCAL)
5468 : opt_flags);
5469 oldval = *varp;
5470 *varp = s;
5471 if (did_set_string_option(opt_idx, varp, TRUE, oldval, NULL,
5472 opt_flags) == NULL)
5473 did_set_option(opt_idx, opt_flags, TRUE);
5478 * Handle string options that need some action to perform when changed.
5479 * Returns NULL for success, or an error message for an error.
5481 static char_u *
5482 did_set_string_option(opt_idx, varp, new_value_alloced, oldval, errbuf,
5483 opt_flags)
5484 int opt_idx; /* index in options[] table */
5485 char_u **varp; /* pointer to the option variable */
5486 int new_value_alloced; /* new value was allocated */
5487 char_u *oldval; /* previous value of the option */
5488 char_u *errbuf; /* buffer for errors, or NULL */
5489 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
5491 char_u *errmsg = NULL;
5492 char_u *s, *p;
5493 int did_chartab = FALSE;
5494 char_u **gvarp;
5495 long_u free_oldval = (options[opt_idx].flags & P_ALLOCED);
5496 #ifdef FEAT_GUI
5497 /* set when changing an option that only requires a redraw in the GUI */
5498 int redraw_gui_only = FALSE;
5499 #endif
5501 /* Get the global option to compare with, otherwise we would have to check
5502 * two values for all local options. */
5503 gvarp = (char_u **)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL);
5505 /* Disallow changing some options from secure mode */
5506 if ((secure
5507 #ifdef HAVE_SANDBOX
5508 || sandbox != 0
5509 #endif
5510 ) && (options[opt_idx].flags & P_SECURE))
5512 errmsg = e_secure;
5515 /* Check for a "normal" file name in some options. Disallow a path
5516 * separator (slash and/or backslash), wildcards and characters that are
5517 * often illegal in a file name. */
5518 else if ((options[opt_idx].flags & P_NFNAME)
5519 && vim_strpbrk(*varp, (char_u *)"/\\*?[|<>") != NULL)
5521 errmsg = e_invarg;
5524 /* 'term' */
5525 else if (varp == &T_NAME)
5527 if (T_NAME[0] == NUL)
5528 errmsg = (char_u *)N_("E529: Cannot set 'term' to empty string");
5529 #ifdef FEAT_GUI
5530 if (gui.in_use)
5531 errmsg = (char_u *)N_("E530: Cannot change term in GUI");
5532 else if (term_is_gui(T_NAME))
5533 errmsg = (char_u *)N_("E531: Use \":gui\" to start the GUI");
5534 #endif
5535 else if (set_termname(T_NAME) == FAIL)
5536 errmsg = (char_u *)N_("E522: Not found in termcap");
5537 else
5538 /* Screen colors may have changed. */
5539 redraw_later_clear();
5542 /* 'backupcopy' */
5543 else if (varp == &p_bkc)
5545 if (opt_strings_flags(p_bkc, p_bkc_values, &bkc_flags, TRUE) != OK)
5546 errmsg = e_invarg;
5547 if (((bkc_flags & BKC_AUTO) != 0)
5548 + ((bkc_flags & BKC_YES) != 0)
5549 + ((bkc_flags & BKC_NO) != 0) != 1)
5551 /* Must have exactly one of "auto", "yes" and "no". */
5552 (void)opt_strings_flags(oldval, p_bkc_values, &bkc_flags, TRUE);
5553 errmsg = e_invarg;
5557 /* 'backupext' and 'patchmode' */
5558 else if (varp == &p_bex || varp == &p_pm)
5560 if (STRCMP(*p_bex == '.' ? p_bex + 1 : p_bex,
5561 *p_pm == '.' ? p_pm + 1 : p_pm) == 0)
5562 errmsg = (char_u *)N_("E589: 'backupext' and 'patchmode' are equal");
5566 * 'isident', 'iskeyword', 'isprint or 'isfname' option: refill chartab[]
5567 * If the new option is invalid, use old value. 'lisp' option: refill
5568 * chartab[] for '-' char
5570 else if ( varp == &p_isi
5571 || varp == &(curbuf->b_p_isk)
5572 || varp == &p_isp
5573 || varp == &p_isf)
5575 if (init_chartab() == FAIL)
5577 did_chartab = TRUE; /* need to restore it below */
5578 errmsg = e_invarg; /* error in value */
5582 /* 'helpfile' */
5583 else if (varp == &p_hf)
5585 /* May compute new values for $VIM and $VIMRUNTIME */
5586 if (didset_vim)
5588 vim_setenv((char_u *)"VIM", (char_u *)"");
5589 didset_vim = FALSE;
5591 if (didset_vimruntime)
5593 vim_setenv((char_u *)"VIMRUNTIME", (char_u *)"");
5594 didset_vimruntime = FALSE;
5598 #ifdef FEAT_MULTI_LANG
5599 /* 'helplang' */
5600 else if (varp == &p_hlg)
5602 /* Check for "", "ab", "ab,cd", etc. */
5603 for (s = p_hlg; *s != NUL; s += 3)
5605 if (s[1] == NUL || ((s[2] != ',' || s[3] == NUL) && s[2] != NUL))
5607 errmsg = e_invarg;
5608 break;
5610 if (s[2] == NUL)
5611 break;
5614 #endif
5616 /* 'highlight' */
5617 else if (varp == &p_hl)
5619 if (highlight_changed() == FAIL)
5620 errmsg = e_invarg; /* invalid flags */
5623 /* 'nrformats' */
5624 else if (gvarp == &p_nf)
5626 if (check_opt_strings(*varp, p_nf_values, TRUE) != OK)
5627 errmsg = e_invarg;
5630 #ifdef FEAT_SESSION
5631 /* 'sessionoptions' */
5632 else if (varp == &p_ssop)
5634 if (opt_strings_flags(p_ssop, p_ssop_values, &ssop_flags, TRUE) != OK)
5635 errmsg = e_invarg;
5636 if ((ssop_flags & SSOP_CURDIR) && (ssop_flags & SSOP_SESDIR))
5638 /* Don't allow both "sesdir" and "curdir". */
5639 (void)opt_strings_flags(oldval, p_ssop_values, &ssop_flags, TRUE);
5640 errmsg = e_invarg;
5643 /* 'viewoptions' */
5644 else if (varp == &p_vop)
5646 if (opt_strings_flags(p_vop, p_ssop_values, &vop_flags, TRUE) != OK)
5647 errmsg = e_invarg;
5649 #endif
5651 /* 'scrollopt' */
5652 #ifdef FEAT_SCROLLBIND
5653 else if (varp == &p_sbo)
5655 if (check_opt_strings(p_sbo, p_scbopt_values, TRUE) != OK)
5656 errmsg = e_invarg;
5658 #endif
5660 /* 'ambiwidth' */
5661 #ifdef FEAT_MBYTE
5662 else if (varp == &p_ambw)
5664 if (check_opt_strings(p_ambw, p_ambw_values, FALSE) != OK)
5665 errmsg = e_invarg;
5667 #endif
5669 /* 'background' */
5670 else if (varp == &p_bg)
5672 if (check_opt_strings(p_bg, p_bg_values, FALSE) == OK)
5674 #ifdef FEAT_EVAL
5675 int dark = (*p_bg == 'd');
5676 #endif
5678 init_highlight(FALSE, FALSE);
5680 #ifdef FEAT_EVAL
5681 if (dark != (*p_bg == 'd')
5682 && get_var_value((char_u *)"g:colors_name") != NULL)
5684 /* The color scheme must have set 'background' back to another
5685 * value, that's not what we want here. Disable the color
5686 * scheme and set the colors again. */
5687 do_unlet((char_u *)"g:colors_name", TRUE);
5688 free_string_option(p_bg);
5689 p_bg = vim_strsave((char_u *)(dark ? "dark" : "light"));
5690 check_string_option(&p_bg);
5691 init_highlight(FALSE, FALSE);
5693 #endif
5695 else
5696 errmsg = e_invarg;
5699 /* 'wildmode' */
5700 else if (varp == &p_wim)
5702 if (check_opt_wim() == FAIL)
5703 errmsg = e_invarg;
5706 #ifdef FEAT_CMDL_COMPL
5707 /* 'wildoptions' */
5708 else if (varp == &p_wop)
5710 if (check_opt_strings(p_wop, p_wop_values, TRUE) != OK)
5711 errmsg = e_invarg;
5713 #endif
5715 #ifdef FEAT_WAK
5716 /* 'winaltkeys' */
5717 else if (varp == &p_wak)
5719 if (*p_wak == NUL
5720 || check_opt_strings(p_wak, p_wak_values, FALSE) != OK)
5721 errmsg = e_invarg;
5722 # ifdef FEAT_MENU
5723 # ifdef FEAT_GUI_MOTIF
5724 else if (gui.in_use)
5725 gui_motif_set_mnemonics(p_wak[0] == 'y' || p_wak[0] == 'm');
5726 # else
5727 # ifdef FEAT_GUI_GTK
5728 else if (gui.in_use)
5729 gui_gtk_set_mnemonics(p_wak[0] == 'y' || p_wak[0] == 'm');
5730 # endif
5731 # endif
5732 # endif
5734 #endif
5736 #ifdef FEAT_AUTOCMD
5737 /* 'eventignore' */
5738 else if (varp == &p_ei)
5740 if (check_ei() == FAIL)
5741 errmsg = e_invarg;
5743 #endif
5745 #ifdef FEAT_MBYTE
5746 /* 'encoding' and 'fileencoding' */
5747 else if (varp == &p_enc || gvarp == &p_fenc || varp == &p_tenc)
5749 if (gvarp == &p_fenc)
5751 if (!curbuf->b_p_ma && opt_flags != OPT_GLOBAL)
5752 errmsg = e_modifiable;
5753 else if (vim_strchr(*varp, ',') != NULL)
5754 /* No comma allowed in 'fileencoding'; catches confusing it
5755 * with 'fileencodings'. */
5756 errmsg = e_invarg;
5757 else
5759 # ifdef FEAT_TITLE
5760 /* May show a "+" in the title now. */
5761 redraw_titles();
5762 # endif
5763 /* Add 'fileencoding' to the swap file. */
5764 ml_setflags(curbuf);
5767 if (errmsg == NULL)
5769 /* canonize the value, so that STRCMP() can be used on it */
5770 p = enc_canonize(*varp);
5771 if (p != NULL)
5773 vim_free(*varp);
5774 *varp = p;
5776 if (varp == &p_enc)
5778 errmsg = mb_init();
5779 # ifdef FEAT_TITLE
5780 redraw_titles();
5781 # endif
5785 # if defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)
5786 if (errmsg == NULL && varp == &p_tenc && gui.in_use)
5788 /* GTK+ 2 uses only a single encoding, and that is UTF-8. */
5789 if (STRCMP(p_tenc, "utf-8") != 0)
5790 errmsg = (char_u *)N_("E617: Cannot be changed in the GTK+ 2 GUI");
5792 # endif
5794 if (errmsg == NULL)
5796 # ifdef FEAT_KEYMAP
5797 /* When 'keymap' is used and 'encoding' changes, reload the keymap
5798 * (with another encoding). */
5799 if (varp == &p_enc && *curbuf->b_p_keymap != NUL)
5800 (void)keymap_init();
5801 # endif
5803 /* When 'termencoding' is not empty and 'encoding' changes or when
5804 * 'termencoding' changes, need to setup for keyboard input and
5805 * display output conversion. */
5806 if (((varp == &p_enc && *p_tenc != NUL) || varp == &p_tenc))
5808 convert_setup(&input_conv, p_tenc, p_enc);
5809 convert_setup(&output_conv, p_enc, p_tenc);
5812 # if defined(WIN3264) && defined(FEAT_MBYTE)
5813 /* $HOME may have characters in active code page. */
5814 if (varp == &p_enc)
5815 init_homedir();
5816 # endif
5819 #endif
5821 #if defined(FEAT_POSTSCRIPT)
5822 else if (varp == &p_penc)
5824 /* Canonize printencoding if VIM standard one */
5825 p = enc_canonize(p_penc);
5826 if (p != NULL)
5828 vim_free(p_penc);
5829 p_penc = p;
5831 else
5833 /* Ensure lower case and '-' for '_' */
5834 for (s = p_penc; *s != NUL; s++)
5836 if (*s == '_')
5837 *s = '-';
5838 else
5839 *s = TOLOWER_ASC(*s);
5843 #endif
5845 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
5846 else if (varp == &p_imak)
5848 if (gui.in_use && !im_xim_isvalid_imactivate())
5849 errmsg = e_invarg;
5851 #endif
5853 #ifdef FEAT_KEYMAP
5854 else if (varp == &curbuf->b_p_keymap)
5856 /* load or unload key mapping tables */
5857 errmsg = keymap_init();
5859 if (errmsg == NULL)
5861 if (*curbuf->b_p_keymap != NUL)
5863 /* Installed a new keymap, switch on using it. */
5864 curbuf->b_p_iminsert = B_IMODE_LMAP;
5865 if (curbuf->b_p_imsearch != B_IMODE_USE_INSERT)
5866 curbuf->b_p_imsearch = B_IMODE_LMAP;
5868 else
5870 /* Cleared the keymap, may reset 'iminsert' and 'imsearch'. */
5871 if (curbuf->b_p_iminsert == B_IMODE_LMAP)
5872 curbuf->b_p_iminsert = B_IMODE_NONE;
5873 if (curbuf->b_p_imsearch == B_IMODE_LMAP)
5874 curbuf->b_p_imsearch = B_IMODE_USE_INSERT;
5876 if ((opt_flags & OPT_LOCAL) == 0)
5878 set_iminsert_global();
5879 set_imsearch_global();
5881 # ifdef FEAT_WINDOWS
5882 status_redraw_curbuf();
5883 # endif
5886 #endif
5888 /* 'fileformat' */
5889 else if (gvarp == &p_ff)
5891 if (!curbuf->b_p_ma && !(opt_flags & OPT_GLOBAL))
5892 errmsg = e_modifiable;
5893 else if (check_opt_strings(*varp, p_ff_values, FALSE) != OK)
5894 errmsg = e_invarg;
5895 else
5897 /* may also change 'textmode' */
5898 if (get_fileformat(curbuf) == EOL_DOS)
5899 curbuf->b_p_tx = TRUE;
5900 else
5901 curbuf->b_p_tx = FALSE;
5902 #ifdef FEAT_TITLE
5903 redraw_titles();
5904 #endif
5905 /* update flag in swap file */
5906 ml_setflags(curbuf);
5907 /* Redraw needed when switching to/from "mac": a CR in the text
5908 * will be displayed differently. */
5909 if (get_fileformat(curbuf) == EOL_MAC || *oldval == 'm')
5910 redraw_curbuf_later(NOT_VALID);
5914 /* 'fileformats' */
5915 else if (varp == &p_ffs)
5917 if (check_opt_strings(p_ffs, p_ff_values, TRUE) != OK)
5918 errmsg = e_invarg;
5919 else
5921 /* also change 'textauto' */
5922 if (*p_ffs == NUL)
5923 p_ta = FALSE;
5924 else
5925 p_ta = TRUE;
5929 #if defined(FEAT_CRYPT) && defined(FEAT_CMDHIST)
5930 /* 'cryptkey' */
5931 else if (gvarp == &p_key)
5933 /* Make sure the ":set" command doesn't show the new value in the
5934 * history. */
5935 remove_key_from_history();
5937 #endif
5939 /* 'matchpairs' */
5940 else if (gvarp == &p_mps)
5942 /* Check for "x:y,x:y" */
5943 for (p = *varp; *p != NUL; p += 4)
5945 if (p[1] != ':' || p[2] == NUL || (p[3] != NUL && p[3] != ','))
5947 errmsg = e_invarg;
5948 break;
5950 if (p[3] == NUL)
5951 break;
5955 #ifdef FEAT_COMMENTS
5956 /* 'comments' */
5957 else if (gvarp == &p_com)
5959 for (s = *varp; *s; )
5961 while (*s && *s != ':')
5963 if (vim_strchr((char_u *)COM_ALL, *s) == NULL
5964 && !VIM_ISDIGIT(*s) && *s != '-')
5966 errmsg = illegal_char(errbuf, *s);
5967 break;
5969 ++s;
5971 if (*s++ == NUL)
5972 errmsg = (char_u *)N_("E524: Missing colon");
5973 else if (*s == ',' || *s == NUL)
5974 errmsg = (char_u *)N_("E525: Zero length string");
5975 if (errmsg != NULL)
5976 break;
5977 while (*s && *s != ',')
5979 if (*s == '\\' && s[1] != NUL)
5980 ++s;
5981 ++s;
5983 s = skip_to_option_part(s);
5986 #endif
5988 /* 'listchars' */
5989 else if (varp == &p_lcs)
5991 errmsg = set_chars_option(varp);
5994 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
5995 /* 'fillchars' */
5996 else if (varp == &p_fcs)
5998 errmsg = set_chars_option(varp);
6000 #endif
6002 #ifdef FEAT_CMDWIN
6003 /* 'cedit' */
6004 else if (varp == &p_cedit)
6006 errmsg = check_cedit();
6008 #endif
6010 /* 'verbosefile' */
6011 else if (varp == &p_vfile)
6013 verbose_stop();
6014 if (*p_vfile != NUL && verbose_open() == FAIL)
6015 errmsg = e_invarg;
6018 #ifdef FEAT_VIMINFO
6019 /* 'viminfo' */
6020 else if (varp == &p_viminfo)
6022 for (s = p_viminfo; *s;)
6024 /* Check it's a valid character */
6025 if (vim_strchr((char_u *)"!\"%'/:<@cfhnrs", *s) == NULL)
6027 errmsg = illegal_char(errbuf, *s);
6028 break;
6030 if (*s == 'n') /* name is always last one */
6032 break;
6034 else if (*s == 'r') /* skip until next ',' */
6036 while (*++s && *s != ',')
6039 else if (*s == '%')
6041 /* optional number */
6042 while (vim_isdigit(*++s))
6045 else if (*s == '!' || *s == 'h' || *s == 'c')
6046 ++s; /* no extra chars */
6047 else /* must have a number */
6049 while (vim_isdigit(*++s))
6052 if (!VIM_ISDIGIT(*(s - 1)))
6054 if (errbuf != NULL)
6056 sprintf((char *)errbuf,
6057 _("E526: Missing number after <%s>"),
6058 transchar_byte(*(s - 1)));
6059 errmsg = errbuf;
6061 else
6062 errmsg = (char_u *)"";
6063 break;
6066 if (*s == ',')
6067 ++s;
6068 else if (*s)
6070 if (errbuf != NULL)
6071 errmsg = (char_u *)N_("E527: Missing comma");
6072 else
6073 errmsg = (char_u *)"";
6074 break;
6077 if (*p_viminfo && errmsg == NULL && get_viminfo_parameter('\'') < 0)
6078 errmsg = (char_u *)N_("E528: Must specify a ' value");
6080 #endif /* FEAT_VIMINFO */
6082 /* terminal options */
6083 else if (istermoption(&options[opt_idx]) && full_screen)
6085 /* ":set t_Co=0" and ":set t_Co=1" do ":set t_Co=" */
6086 if (varp == &T_CCO)
6088 int colors = atoi((char *)T_CCO);
6090 /* Only reinitialize colors if t_Co value has really changed to
6091 * avoid expensive reload of colorscheme if t_Co is set to the
6092 * same value multiple times. */
6093 if (colors != t_colors)
6095 t_colors = colors;
6096 if (t_colors <= 1)
6098 if (new_value_alloced)
6099 vim_free(T_CCO);
6100 T_CCO = empty_option;
6102 /* We now have a different color setup, initialize it again. */
6103 init_highlight(TRUE, FALSE);
6106 ttest(FALSE);
6107 if (varp == &T_ME)
6109 out_str(T_ME);
6110 redraw_later(CLEAR);
6111 #if defined(MSDOS) || (defined(WIN3264) && !defined(FEAT_GUI_W32))
6112 /* Since t_me has been set, this probably means that the user
6113 * wants to use this as default colors. Need to reset default
6114 * background/foreground colors. */
6115 mch_set_normal_colors();
6116 #endif
6120 #ifdef FEAT_LINEBREAK
6121 /* 'showbreak' */
6122 else if (varp == &p_sbr)
6124 for (s = p_sbr; *s; )
6126 if (ptr2cells(s) != 1)
6127 errmsg = (char_u *)N_("E595: contains unprintable or wide character");
6128 mb_ptr_adv(s);
6131 #endif
6133 #ifdef FEAT_GUI
6134 /* 'guifont' */
6135 else if (varp == &p_guifont)
6137 if (gui.in_use)
6139 p = p_guifont;
6140 # if defined(FEAT_GUI_GTK)
6142 * Put up a font dialog and let the user select a new value.
6143 * If this is cancelled go back to the old value but don't
6144 * give an error message.
6146 if (STRCMP(p, "*") == 0)
6148 p = gui_mch_font_dialog(oldval);
6150 if (new_value_alloced)
6151 free_string_option(p_guifont);
6153 p_guifont = (p != NULL) ? p : vim_strsave(oldval);
6154 new_value_alloced = TRUE;
6156 # endif
6157 if (p != NULL && gui_init_font(p_guifont, FALSE) != OK)
6159 # if defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_PHOTON)
6160 if (STRCMP(p_guifont, "*") == 0)
6162 /* Dialog was cancelled: Keep the old value without giving
6163 * an error message. */
6164 if (new_value_alloced)
6165 free_string_option(p_guifont);
6166 p_guifont = vim_strsave(oldval);
6167 new_value_alloced = TRUE;
6169 else
6170 # endif
6171 errmsg = (char_u *)N_("E596: Invalid font(s)");
6174 redraw_gui_only = TRUE;
6176 # ifdef FEAT_XFONTSET
6177 else if (varp == &p_guifontset)
6179 if (STRCMP(p_guifontset, "*") == 0)
6180 errmsg = (char_u *)N_("E597: can't select fontset");
6181 else if (gui.in_use && gui_init_font(p_guifontset, TRUE) != OK)
6182 errmsg = (char_u *)N_("E598: Invalid fontset");
6183 redraw_gui_only = TRUE;
6185 # endif
6186 # ifdef FEAT_MBYTE
6187 else if (varp == &p_guifontwide)
6189 if (STRCMP(p_guifontwide, "*") == 0)
6190 errmsg = (char_u *)N_("E533: can't select wide font");
6191 else if (gui_get_wide_font() == FAIL)
6192 errmsg = (char_u *)N_("E534: Invalid wide font");
6193 redraw_gui_only = TRUE;
6195 # endif
6196 #endif
6198 #ifdef CURSOR_SHAPE
6199 /* 'guicursor' */
6200 else if (varp == &p_guicursor)
6201 errmsg = parse_shape_opt(SHAPE_CURSOR);
6202 #endif
6204 #ifdef FEAT_MOUSESHAPE
6205 /* 'mouseshape' */
6206 else if (varp == &p_mouseshape)
6208 errmsg = parse_shape_opt(SHAPE_MOUSE);
6209 update_mouseshape(-1);
6211 #endif
6213 #ifdef FEAT_PRINTER
6214 else if (varp == &p_popt)
6215 errmsg = parse_printoptions();
6216 # if defined(FEAT_MBYTE) && defined(FEAT_POSTSCRIPT)
6217 else if (varp == &p_pmfn)
6218 errmsg = parse_printmbfont();
6219 # endif
6220 #endif
6222 #ifdef FEAT_LANGMAP
6223 /* 'langmap' */
6224 else if (varp == &p_langmap)
6225 langmap_set();
6226 #endif
6228 #ifdef FEAT_LINEBREAK
6229 /* 'breakat' */
6230 else if (varp == &p_breakat)
6231 fill_breakat_flags();
6232 #endif
6234 #ifdef FEAT_TITLE
6235 /* 'titlestring' and 'iconstring' */
6236 else if (varp == &p_titlestring || varp == &p_iconstring)
6238 # ifdef FEAT_STL_OPT
6239 int flagval = (varp == &p_titlestring) ? STL_IN_TITLE : STL_IN_ICON;
6241 /* NULL => statusline syntax */
6242 if (vim_strchr(*varp, '%') && check_stl_option(*varp) == NULL)
6243 stl_syntax |= flagval;
6244 else
6245 stl_syntax &= ~flagval;
6246 # endif
6247 did_set_title(varp == &p_iconstring);
6250 #endif
6252 #ifdef FEAT_GUI
6253 /* 'guioptions' */
6254 else if (varp == &p_go)
6256 gui_init_which_components(oldval);
6257 redraw_gui_only = TRUE;
6259 #endif
6261 #if defined(FEAT_GUI_TABLINE)
6262 /* 'guitablabel' */
6263 else if (varp == &p_gtl)
6265 redraw_tabline = TRUE;
6266 redraw_gui_only = TRUE;
6268 /* 'guitabtooltip' */
6269 else if (varp == &p_gtt)
6271 redraw_gui_only = TRUE;
6273 #endif
6275 #if defined(FEAT_MOUSE_TTY) && (defined(UNIX) || defined(VMS))
6276 /* 'ttymouse' */
6277 else if (varp == &p_ttym)
6279 /* Switch the mouse off before changing the escape sequences used for
6280 * that. */
6281 mch_setmouse(FALSE);
6282 if (opt_strings_flags(p_ttym, p_ttym_values, &ttym_flags, FALSE) != OK)
6283 errmsg = e_invarg;
6284 else
6285 check_mouse_termcode();
6286 if (termcap_active)
6287 setmouse(); /* may switch it on again */
6289 #endif
6291 #ifdef FEAT_VISUAL
6292 /* 'selection' */
6293 else if (varp == &p_sel)
6295 if (*p_sel == NUL
6296 || check_opt_strings(p_sel, p_sel_values, FALSE) != OK)
6297 errmsg = e_invarg;
6300 /* 'selectmode' */
6301 else if (varp == &p_slm)
6303 if (check_opt_strings(p_slm, p_slm_values, TRUE) != OK)
6304 errmsg = e_invarg;
6306 #endif
6308 #ifdef FEAT_BROWSE
6309 /* 'browsedir' */
6310 else if (varp == &p_bsdir)
6312 if (check_opt_strings(p_bsdir, p_bsdir_values, FALSE) != OK
6313 && !mch_isdir(p_bsdir))
6314 errmsg = e_invarg;
6316 #endif
6318 #ifdef FEAT_VISUAL
6319 /* 'keymodel' */
6320 else if (varp == &p_km)
6322 if (check_opt_strings(p_km, p_km_values, TRUE) != OK)
6323 errmsg = e_invarg;
6324 else
6326 km_stopsel = (vim_strchr(p_km, 'o') != NULL);
6327 km_startsel = (vim_strchr(p_km, 'a') != NULL);
6330 #endif
6332 /* 'mousemodel' */
6333 else if (varp == &p_mousem)
6335 if (check_opt_strings(p_mousem, p_mousem_values, FALSE) != OK)
6336 errmsg = e_invarg;
6337 #if defined(FEAT_GUI_MOTIF) && defined(FEAT_MENU) && (XmVersion <= 1002)
6338 else if (*p_mousem != *oldval)
6339 /* Changed from "extend" to "popup" or "popup_setpos" or vv: need
6340 * to create or delete the popup menus. */
6341 gui_motif_update_mousemodel(root_menu);
6342 #endif
6345 /* 'switchbuf' */
6346 else if (varp == &p_swb)
6348 if (opt_strings_flags(p_swb, p_swb_values, &swb_flags, TRUE) != OK)
6349 errmsg = e_invarg;
6352 /* 'debug' */
6353 else if (varp == &p_debug)
6355 if (check_opt_strings(p_debug, p_debug_values, TRUE) != OK)
6356 errmsg = e_invarg;
6359 /* 'display' */
6360 else if (varp == &p_dy)
6362 if (opt_strings_flags(p_dy, p_dy_values, &dy_flags, TRUE) != OK)
6363 errmsg = e_invarg;
6364 else
6365 (void)init_chartab();
6369 #ifdef FEAT_VERTSPLIT
6370 /* 'eadirection' */
6371 else if (varp == &p_ead)
6373 if (check_opt_strings(p_ead, p_ead_values, FALSE) != OK)
6374 errmsg = e_invarg;
6376 #endif
6378 #ifdef FEAT_CLIPBOARD
6379 /* 'clipboard' */
6380 else if (varp == &p_cb)
6381 errmsg = check_clipboard_option();
6382 #endif
6384 #ifdef FEAT_SPELL
6385 /* When 'spelllang' or 'spellfile' is set and there is a window for this
6386 * buffer in which 'spell' is set load the wordlists. */
6387 else if (varp == &(curbuf->b_p_spl) || varp == &(curbuf->b_p_spf))
6389 win_T *wp;
6390 int l;
6392 if (varp == &(curbuf->b_p_spf))
6394 l = (int)STRLEN(curbuf->b_p_spf);
6395 if (l > 0 && (l < 4 || STRCMP(curbuf->b_p_spf + l - 4,
6396 ".add") != 0))
6397 errmsg = e_invarg;
6400 if (errmsg == NULL)
6402 FOR_ALL_WINDOWS(wp)
6403 if (wp->w_buffer == curbuf && wp->w_p_spell)
6405 errmsg = did_set_spelllang(curbuf);
6406 # ifdef FEAT_WINDOWS
6407 break;
6408 # endif
6412 /* When 'spellcapcheck' is set compile the regexp program. */
6413 else if (varp == &(curbuf->b_p_spc))
6415 errmsg = compile_cap_prog(curbuf);
6417 /* 'spellsuggest' */
6418 else if (varp == &p_sps)
6420 if (spell_check_sps() != OK)
6421 errmsg = e_invarg;
6423 /* 'mkspellmem' */
6424 else if (varp == &p_msm)
6426 if (spell_check_msm() != OK)
6427 errmsg = e_invarg;
6429 #endif
6431 #ifdef FEAT_QUICKFIX
6432 /* When 'bufhidden' is set, check for valid value. */
6433 else if (gvarp == &p_bh)
6435 if (check_opt_strings(curbuf->b_p_bh, p_bufhidden_values, FALSE) != OK)
6436 errmsg = e_invarg;
6439 /* When 'buftype' is set, check for valid value. */
6440 else if (gvarp == &p_bt)
6442 if (check_opt_strings(curbuf->b_p_bt, p_buftype_values, FALSE) != OK)
6443 errmsg = e_invarg;
6444 else
6446 # ifdef FEAT_WINDOWS
6447 if (curwin->w_status_height)
6449 curwin->w_redr_status = TRUE;
6450 redraw_later(VALID);
6452 # endif
6453 curbuf->b_help = (curbuf->b_p_bt[0] == 'h');
6454 # ifdef FEAT_TITLE
6455 redraw_titles();
6456 # endif
6459 #endif
6461 #ifdef FEAT_STL_OPT
6462 /* 'statusline' or 'rulerformat' */
6463 else if (gvarp == &p_stl || varp == &p_ruf)
6465 int wid;
6467 if (varp == &p_ruf) /* reset ru_wid first */
6468 ru_wid = 0;
6469 s = *varp;
6470 if (varp == &p_ruf && *s == '%')
6472 /* set ru_wid if 'ruf' starts with "%99(" */
6473 if (*++s == '-') /* ignore a '-' */
6474 s++;
6475 wid = getdigits(&s);
6476 if (wid && *s == '(' && (errmsg = check_stl_option(p_ruf)) == NULL)
6477 ru_wid = wid;
6478 else
6479 errmsg = check_stl_option(p_ruf);
6481 /* check 'statusline' only if it doesn't start with "%!" */
6482 else if (varp == &p_ruf || s[0] != '%' || s[1] != '!')
6483 errmsg = check_stl_option(s);
6484 if (varp == &p_ruf && errmsg == NULL)
6485 comp_col();
6487 #endif
6489 #ifdef FEAT_INS_EXPAND
6490 /* check if it is a valid value for 'complete' -- Acevedo */
6491 else if (gvarp == &p_cpt)
6493 for (s = *varp; *s;)
6495 while(*s == ',' || *s == ' ')
6496 s++;
6497 if (!*s)
6498 break;
6499 if (vim_strchr((char_u *)".wbuksid]tU", *s) == NULL)
6501 errmsg = illegal_char(errbuf, *s);
6502 break;
6504 if (*++s != NUL && *s != ',' && *s != ' ')
6506 if (s[-1] == 'k' || s[-1] == 's')
6508 /* skip optional filename after 'k' and 's' */
6509 while (*s && *s != ',' && *s != ' ')
6511 if (*s == '\\')
6512 ++s;
6513 ++s;
6516 else
6518 if (errbuf != NULL)
6520 sprintf((char *)errbuf,
6521 _("E535: Illegal character after <%c>"),
6522 *--s);
6523 errmsg = errbuf;
6525 else
6526 errmsg = (char_u *)"";
6527 break;
6533 /* 'completeopt' */
6534 else if (varp == &p_cot)
6536 if (check_opt_strings(p_cot, p_cot_values, TRUE) != OK)
6537 errmsg = e_invarg;
6539 #endif /* FEAT_INS_EXPAND */
6542 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
6543 else if (varp == &p_toolbar)
6545 if (opt_strings_flags(p_toolbar, p_toolbar_values,
6546 &toolbar_flags, TRUE) != OK)
6547 errmsg = e_invarg;
6548 else
6550 out_flush();
6551 gui_mch_show_toolbar((toolbar_flags &
6552 (TOOLBAR_TEXT | TOOLBAR_ICONS)) != 0);
6555 #endif
6557 #if defined(FEAT_TOOLBAR) && defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)
6558 /* 'toolbariconsize': GTK+ 2 only */
6559 else if (varp == &p_tbis)
6561 if (opt_strings_flags(p_tbis, p_tbis_values, &tbis_flags, FALSE) != OK)
6562 errmsg = e_invarg;
6563 else
6565 out_flush();
6566 gui_mch_show_toolbar((toolbar_flags &
6567 (TOOLBAR_TEXT | TOOLBAR_ICONS)) != 0);
6570 #endif
6572 /* 'pastetoggle': translate key codes like in a mapping */
6573 else if (varp == &p_pt)
6575 if (*p_pt)
6577 (void)replace_termcodes(p_pt, &p, TRUE, TRUE, FALSE);
6578 if (p != NULL)
6580 if (new_value_alloced)
6581 free_string_option(p_pt);
6582 p_pt = p;
6583 new_value_alloced = TRUE;
6588 /* 'backspace' */
6589 else if (varp == &p_bs)
6591 if (VIM_ISDIGIT(*p_bs))
6593 if (*p_bs >'2' || p_bs[1] != NUL)
6594 errmsg = e_invarg;
6596 else if (check_opt_strings(p_bs, p_bs_values, TRUE) != OK)
6597 errmsg = e_invarg;
6600 #ifdef FEAT_MBYTE
6601 /* 'casemap' */
6602 else if (varp == &p_cmp)
6604 if (opt_strings_flags(p_cmp, p_cmp_values, &cmp_flags, TRUE) != OK)
6605 errmsg = e_invarg;
6607 #endif
6609 #ifdef FEAT_DIFF
6610 /* 'diffopt' */
6611 else if (varp == &p_dip)
6613 if (diffopt_changed() == FAIL)
6614 errmsg = e_invarg;
6616 #endif
6618 #ifdef FEAT_FOLDING
6619 /* 'foldmethod' */
6620 else if (gvarp == &curwin->w_allbuf_opt.wo_fdm)
6622 if (check_opt_strings(*varp, p_fdm_values, FALSE) != OK
6623 || *curwin->w_p_fdm == NUL)
6624 errmsg = e_invarg;
6625 else
6627 foldUpdateAll(curwin);
6628 if (foldmethodIsDiff(curwin))
6629 newFoldLevel();
6632 # ifdef FEAT_EVAL
6633 /* 'foldexpr' */
6634 else if (varp == &curwin->w_p_fde)
6636 if (foldmethodIsExpr(curwin))
6637 foldUpdateAll(curwin);
6639 # endif
6640 /* 'foldmarker' */
6641 else if (gvarp == &curwin->w_allbuf_opt.wo_fmr)
6643 p = vim_strchr(*varp, ',');
6644 if (p == NULL)
6645 errmsg = (char_u *)N_("E536: comma required");
6646 else if (p == *varp || p[1] == NUL)
6647 errmsg = e_invarg;
6648 else if (foldmethodIsMarker(curwin))
6649 foldUpdateAll(curwin);
6651 /* 'commentstring' */
6652 else if (gvarp == &p_cms)
6654 if (**varp != NUL && strstr((char *)*varp, "%s") == NULL)
6655 errmsg = (char_u *)N_("E537: 'commentstring' must be empty or contain %s");
6657 /* 'foldopen' */
6658 else if (varp == &p_fdo)
6660 if (opt_strings_flags(p_fdo, p_fdo_values, &fdo_flags, TRUE) != OK)
6661 errmsg = e_invarg;
6663 /* 'foldclose' */
6664 else if (varp == &p_fcl)
6666 if (check_opt_strings(p_fcl, p_fcl_values, TRUE) != OK)
6667 errmsg = e_invarg;
6669 /* 'foldignore' */
6670 else if (gvarp == &curwin->w_allbuf_opt.wo_fdi)
6672 if (foldmethodIsIndent(curwin))
6673 foldUpdateAll(curwin);
6675 #endif
6677 #ifdef FEAT_VIRTUALEDIT
6678 /* 'virtualedit' */
6679 else if (varp == &p_ve)
6681 if (opt_strings_flags(p_ve, p_ve_values, &ve_flags, TRUE) != OK)
6682 errmsg = e_invarg;
6683 else if (STRCMP(p_ve, oldval) != 0)
6685 /* Recompute cursor position in case the new 've' setting
6686 * changes something. */
6687 validate_virtcol();
6688 coladvance(curwin->w_virtcol);
6691 #endif
6693 #if defined(FEAT_CSCOPE) && defined(FEAT_QUICKFIX)
6694 else if (varp == &p_csqf)
6696 if (p_csqf != NULL)
6698 p = p_csqf;
6699 while (*p != NUL)
6701 if (vim_strchr((char_u *)CSQF_CMDS, *p) == NULL
6702 || p[1] == NUL
6703 || vim_strchr((char_u *)CSQF_FLAGS, p[1]) == NULL
6704 || (p[2] != NUL && p[2] != ','))
6706 errmsg = e_invarg;
6707 break;
6709 else if (p[2] == NUL)
6710 break;
6711 else
6712 p += 3;
6716 #endif
6718 /* Options that are a list of flags. */
6719 else
6721 p = NULL;
6722 if (varp == &p_ww)
6723 p = (char_u *)WW_ALL;
6724 if (varp == &p_shm)
6725 p = (char_u *)SHM_ALL;
6726 else if (varp == &(p_cpo))
6727 p = (char_u *)CPO_ALL;
6728 else if (varp == &(curbuf->b_p_fo))
6729 p = (char_u *)FO_ALL;
6730 else if (varp == &p_mouse)
6732 #ifdef FEAT_MOUSE
6733 p = (char_u *)MOUSE_ALL;
6734 #else
6735 if (*p_mouse != NUL)
6736 errmsg = (char_u *)N_("E538: No mouse support");
6737 #endif
6739 #if defined(FEAT_GUI)
6740 else if (varp == &p_go)
6741 p = (char_u *)GO_ALL;
6742 #endif
6743 if (p != NULL)
6745 for (s = *varp; *s; ++s)
6746 if (vim_strchr(p, *s) == NULL)
6748 errmsg = illegal_char(errbuf, *s);
6749 break;
6755 * If error detected, restore the previous value.
6757 if (errmsg != NULL)
6759 if (new_value_alloced)
6760 free_string_option(*varp);
6761 *varp = oldval;
6763 * When resetting some values, need to act on it.
6765 if (did_chartab)
6766 (void)init_chartab();
6767 if (varp == &p_hl)
6768 (void)highlight_changed();
6770 else
6772 #ifdef FEAT_EVAL
6773 /* Remember where the option was set. */
6774 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
6775 #endif
6777 * Free string options that are in allocated memory.
6778 * Use "free_oldval", because recursiveness may change the flags under
6779 * our fingers (esp. init_highlight()).
6781 if (free_oldval)
6782 free_string_option(oldval);
6783 if (new_value_alloced)
6784 options[opt_idx].flags |= P_ALLOCED;
6785 else
6786 options[opt_idx].flags &= ~P_ALLOCED;
6788 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
6789 && ((int)options[opt_idx].indir & PV_BOTH))
6791 /* global option with local value set to use global value; free
6792 * the local value and make it empty */
6793 p = get_varp_scope(&(options[opt_idx]), OPT_LOCAL);
6794 free_string_option(*(char_u **)p);
6795 *(char_u **)p = empty_option;
6798 /* May set global value for local option. */
6799 else if (!(opt_flags & OPT_LOCAL) && opt_flags != OPT_GLOBAL)
6800 set_string_option_global(opt_idx, varp);
6802 #ifdef FEAT_AUTOCMD
6804 * Trigger the autocommand only after setting the flags.
6806 # ifdef FEAT_SYN_HL
6807 /* When 'syntax' is set, load the syntax of that name */
6808 if (varp == &(curbuf->b_p_syn))
6810 apply_autocmds(EVENT_SYNTAX, curbuf->b_p_syn,
6811 curbuf->b_fname, TRUE, curbuf);
6813 # endif
6814 else if (varp == &(curbuf->b_p_ft))
6816 /* 'filetype' is set, trigger the FileType autocommand */
6817 did_filetype = TRUE;
6818 apply_autocmds(EVENT_FILETYPE, curbuf->b_p_ft,
6819 curbuf->b_fname, TRUE, curbuf);
6821 #endif
6822 #ifdef FEAT_SPELL
6823 if (varp == &(curbuf->b_p_spl))
6825 char_u fname[200];
6828 * Source the spell/LANG.vim in 'runtimepath'.
6829 * They could set 'spellcapcheck' depending on the language.
6830 * Use the first name in 'spelllang' up to '_region' or
6831 * '.encoding'.
6833 for (p = curbuf->b_p_spl; *p != NUL; ++p)
6834 if (vim_strchr((char_u *)"_.,", *p) != NULL)
6835 break;
6836 vim_snprintf((char *)fname, 200, "spell/%.*s.vim",
6837 (int)(p - curbuf->b_p_spl), curbuf->b_p_spl);
6838 source_runtime(fname, TRUE);
6840 #endif
6843 #ifdef FEAT_MOUSE
6844 if (varp == &p_mouse)
6846 # ifdef FEAT_MOUSE_TTY
6847 if (*p_mouse == NUL)
6848 mch_setmouse(FALSE); /* switch mouse off */
6849 else
6850 # endif
6851 setmouse(); /* in case 'mouse' changed */
6853 #endif
6855 if (curwin->w_curswant != MAXCOL)
6856 curwin->w_set_curswant = TRUE; /* in case 'showbreak' changed */
6857 #ifdef FEAT_GUI
6858 /* check redraw when it's not a GUI option or the GUI is active. */
6859 if (!redraw_gui_only || gui.in_use)
6860 #endif
6861 check_redraw(options[opt_idx].flags);
6863 return errmsg;
6867 * Handle setting 'listchars' or 'fillchars'.
6868 * Returns error message, NULL if it's OK.
6870 static char_u *
6871 set_chars_option(varp)
6872 char_u **varp;
6874 int round, i, len, entries;
6875 char_u *p, *s;
6876 int c1, c2 = 0;
6877 struct charstab
6879 int *cp;
6880 char *name;
6882 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6883 static struct charstab filltab[] =
6885 {&fill_stl, "stl"},
6886 {&fill_stlnc, "stlnc"},
6887 {&fill_vert, "vert"},
6888 {&fill_fold, "fold"},
6889 {&fill_diff, "diff"},
6891 #endif
6892 static struct charstab lcstab[] =
6894 {&lcs_eol, "eol"},
6895 {&lcs_ext, "extends"},
6896 {&lcs_nbsp, "nbsp"},
6897 {&lcs_prec, "precedes"},
6898 {&lcs_tab2, "tab"},
6899 {&lcs_trail, "trail"},
6901 struct charstab *tab;
6903 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6904 if (varp == &p_lcs)
6905 #endif
6907 tab = lcstab;
6908 entries = sizeof(lcstab) / sizeof(struct charstab);
6910 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6911 else
6913 tab = filltab;
6914 entries = sizeof(filltab) / sizeof(struct charstab);
6916 #endif
6918 /* first round: check for valid value, second round: assign values */
6919 for (round = 0; round <= 1; ++round)
6921 if (round)
6923 /* After checking that the value is valid: set defaults: space for
6924 * 'fillchars', NUL for 'listchars' */
6925 for (i = 0; i < entries; ++i)
6926 *(tab[i].cp) = (varp == &p_lcs ? NUL : ' ');
6927 if (varp == &p_lcs)
6928 lcs_tab1 = NUL;
6929 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6930 else
6931 fill_diff = '-';
6932 #endif
6934 p = *varp;
6935 while (*p)
6937 for (i = 0; i < entries; ++i)
6939 len = (int)STRLEN(tab[i].name);
6940 if (STRNCMP(p, tab[i].name, len) == 0
6941 && p[len] == ':'
6942 && p[len + 1] != NUL)
6944 s = p + len + 1;
6945 #ifdef FEAT_MBYTE
6946 c1 = mb_ptr2char_adv(&s);
6947 if (mb_char2cells(c1) > 1)
6948 continue;
6949 #else
6950 c1 = *s++;
6951 #endif
6952 if (tab[i].cp == &lcs_tab2)
6954 if (*s == NUL)
6955 continue;
6956 #ifdef FEAT_MBYTE
6957 c2 = mb_ptr2char_adv(&s);
6958 if (mb_char2cells(c2) > 1)
6959 continue;
6960 #else
6961 c2 = *s++;
6962 #endif
6964 if (*s == ',' || *s == NUL)
6966 if (round)
6968 if (tab[i].cp == &lcs_tab2)
6970 lcs_tab1 = c1;
6971 lcs_tab2 = c2;
6973 else
6974 *(tab[i].cp) = c1;
6977 p = s;
6978 break;
6983 if (i == entries)
6984 return e_invarg;
6985 if (*p == ',')
6986 ++p;
6990 return NULL; /* no error */
6993 #ifdef FEAT_STL_OPT
6995 * Check validity of options with the 'statusline' format.
6996 * Return error message or NULL.
6998 char_u *
6999 check_stl_option(s)
7000 char_u *s;
7002 int itemcnt = 0;
7003 int groupdepth = 0;
7004 static char_u errbuf[80];
7006 while (*s && itemcnt < STL_MAX_ITEM)
7008 /* Check for valid keys after % sequences */
7009 while (*s && *s != '%')
7010 s++;
7011 if (!*s)
7012 break;
7013 s++;
7014 if (*s != '%' && *s != ')')
7015 ++itemcnt;
7016 if (*s == '%' || *s == STL_TRUNCMARK || *s == STL_MIDDLEMARK)
7018 s++;
7019 continue;
7021 if (*s == ')')
7023 s++;
7024 if (--groupdepth < 0)
7025 break;
7026 continue;
7028 if (*s == '-')
7029 s++;
7030 while (VIM_ISDIGIT(*s))
7031 s++;
7032 if (*s == STL_USER_HL)
7033 continue;
7034 if (*s == '.')
7036 s++;
7037 while (*s && VIM_ISDIGIT(*s))
7038 s++;
7040 if (*s == '(')
7042 groupdepth++;
7043 continue;
7045 if (vim_strchr(STL_ALL, *s) == NULL)
7047 return illegal_char(errbuf, *s);
7049 if (*s == '{')
7051 s++;
7052 while (*s != '}' && *s)
7053 s++;
7054 if (*s != '}')
7055 return (char_u *)N_("E540: Unclosed expression sequence");
7058 if (itemcnt >= STL_MAX_ITEM)
7059 return (char_u *)N_("E541: too many items");
7060 if (groupdepth != 0)
7061 return (char_u *)N_("E542: unbalanced groups");
7062 return NULL;
7064 #endif
7066 #ifdef FEAT_CLIPBOARD
7068 * Extract the items in the 'clipboard' option and set global values.
7070 static char_u *
7071 check_clipboard_option()
7073 int new_unnamed = FALSE;
7074 int new_autoselect = FALSE;
7075 int new_autoselectml = FALSE;
7076 int new_html = FALSE;
7077 regprog_T *new_exclude_prog = NULL;
7078 char_u *errmsg = NULL;
7079 char_u *p;
7081 for (p = p_cb; *p != NUL; )
7083 if (STRNCMP(p, "unnamed", 7) == 0 && (p[7] == ',' || p[7] == NUL))
7085 new_unnamed = TRUE;
7086 p += 7;
7088 else if (STRNCMP(p, "autoselect", 10) == 0
7089 && (p[10] == ',' || p[10] == NUL))
7091 new_autoselect = TRUE;
7092 p += 10;
7094 else if (STRNCMP(p, "autoselectml", 12) == 0
7095 && (p[12] == ',' || p[12] == NUL))
7097 new_autoselectml = TRUE;
7098 p += 12;
7100 else if (STRNCMP(p, "html", 4) == 0 && (p[4] == ',' || p[4] == NUL))
7102 new_html = TRUE;
7103 p += 4;
7105 else if (STRNCMP(p, "exclude:", 8) == 0 && new_exclude_prog == NULL)
7107 p += 8;
7108 new_exclude_prog = vim_regcomp(p, RE_MAGIC);
7109 if (new_exclude_prog == NULL)
7110 errmsg = e_invarg;
7111 break;
7113 else
7115 errmsg = e_invarg;
7116 break;
7118 if (*p == ',')
7119 ++p;
7121 if (errmsg == NULL)
7123 clip_unnamed = new_unnamed;
7124 clip_autoselect = new_autoselect;
7125 clip_autoselectml = new_autoselectml;
7126 clip_html = new_html;
7127 vim_free(clip_exclude_prog);
7128 clip_exclude_prog = new_exclude_prog;
7129 #ifdef FEAT_GUI_GTK
7130 if (gui.in_use)
7132 gui_gtk_set_selection_targets();
7133 gui_gtk_set_dnd_targets();
7135 #endif
7137 else
7138 vim_free(new_exclude_prog);
7140 return errmsg;
7142 #endif
7144 #ifdef FEAT_SPELL
7146 * Set curbuf->b_cap_prog to the regexp program for 'spellcapcheck'.
7147 * Return error message when failed, NULL when OK.
7149 static char_u *
7150 compile_cap_prog(buf)
7151 buf_T *buf;
7153 regprog_T *rp = buf->b_cap_prog;
7154 char_u *re;
7156 if (*buf->b_p_spc == NUL)
7157 buf->b_cap_prog = NULL;
7158 else
7160 /* Prepend a ^ so that we only match at one column */
7161 re = concat_str((char_u *)"^", buf->b_p_spc);
7162 if (re != NULL)
7164 buf->b_cap_prog = vim_regcomp(re, RE_MAGIC);
7165 if (buf->b_cap_prog == NULL)
7167 buf->b_cap_prog = rp; /* restore the previous program */
7168 return e_invarg;
7170 vim_free(re);
7174 vim_free(rp);
7175 return NULL;
7177 #endif
7179 #if defined(FEAT_EVAL) || defined(PROTO)
7181 * Set the scriptID for an option, taking care of setting the buffer- or
7182 * window-local value.
7184 static void
7185 set_option_scriptID_idx(opt_idx, opt_flags, id)
7186 int opt_idx;
7187 int opt_flags;
7188 int id;
7190 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
7191 int indir = (int)options[opt_idx].indir;
7193 /* Remember where the option was set. For local options need to do that
7194 * in the buffer or window structure. */
7195 if (both || (opt_flags & OPT_GLOBAL) || (indir & (PV_BUF|PV_WIN)) == 0)
7196 options[opt_idx].scriptID = id;
7197 if (both || (opt_flags & OPT_LOCAL))
7199 if (indir & PV_BUF)
7200 curbuf->b_p_scriptID[indir & PV_MASK] = id;
7201 else if (indir & PV_WIN)
7202 curwin->w_p_scriptID[indir & PV_MASK] = id;
7205 #endif
7208 * Set the value of a boolean option, and take care of side effects.
7209 * Returns NULL for success, or an error message for an error.
7211 static char_u *
7212 set_bool_option(opt_idx, varp, value, opt_flags)
7213 int opt_idx; /* index in options[] table */
7214 char_u *varp; /* pointer to the option variable */
7215 int value; /* new value */
7216 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
7218 int old_value = *(int *)varp;
7220 /* Disallow changing some options from secure mode */
7221 if ((secure
7222 #ifdef HAVE_SANDBOX
7223 || sandbox != 0
7224 #endif
7225 ) && (options[opt_idx].flags & P_SECURE))
7226 return e_secure;
7228 *(int *)varp = value; /* set the new value */
7229 #ifdef FEAT_EVAL
7230 /* Remember where the option was set. */
7231 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
7232 #endif
7234 #ifdef FEAT_GUI
7235 need_mouse_correct = TRUE;
7236 #endif
7238 /* May set global value for local option. */
7239 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0)
7240 *(int *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) = value;
7243 * Handle side effects of changing a bool option.
7246 /* 'compatible' */
7247 if ((int *)varp == &p_cp)
7249 compatible_set();
7252 /* 'list', 'number' */
7253 else if ((int *)varp == &curwin->w_p_list
7254 || (int *)varp == &curwin->w_p_nu)
7256 if (curwin->w_curswant != MAXCOL)
7257 curwin->w_set_curswant = TRUE;
7260 else if ((int *)varp == &curbuf->b_p_ro)
7262 /* when 'readonly' is reset globally, also reset readonlymode */
7263 if (!curbuf->b_p_ro && (opt_flags & OPT_LOCAL) == 0)
7264 readonlymode = FALSE;
7266 /* when 'readonly' is set may give W10 again */
7267 if (curbuf->b_p_ro)
7268 curbuf->b_did_warn = FALSE;
7270 #ifdef FEAT_TITLE
7271 redraw_titles();
7272 #endif
7275 #ifdef FEAT_TITLE
7276 /* when 'modifiable' is changed, redraw the window title */
7277 else if ((int *)varp == &curbuf->b_p_ma)
7279 redraw_titles();
7281 /* when 'endofline' is changed, redraw the window title */
7282 else if ((int *)varp == &curbuf->b_p_eol)
7284 redraw_titles();
7286 # ifdef FEAT_MBYTE
7287 /* when 'bomb' is changed, redraw the window title and tab page text */
7288 else if ((int *)varp == &curbuf->b_p_bomb)
7290 redraw_titles();
7292 # endif
7293 #endif
7295 /* when 'bin' is set also set some other options */
7296 else if ((int *)varp == &curbuf->b_p_bin)
7298 set_options_bin(old_value, curbuf->b_p_bin, opt_flags);
7299 #ifdef FEAT_TITLE
7300 redraw_titles();
7301 #endif
7304 #ifdef FEAT_AUTOCMD
7305 /* when 'buflisted' changes, trigger autocommands */
7306 else if ((int *)varp == &curbuf->b_p_bl && old_value != curbuf->b_p_bl)
7308 apply_autocmds(curbuf->b_p_bl ? EVENT_BUFADD : EVENT_BUFDELETE,
7309 NULL, NULL, TRUE, curbuf);
7311 #endif
7313 /* when 'swf' is set, create swapfile, when reset remove swapfile */
7314 else if ((int *)varp == &curbuf->b_p_swf)
7316 if (curbuf->b_p_swf && p_uc)
7317 ml_open_file(curbuf); /* create the swap file */
7318 else
7319 /* no need to reset curbuf->b_may_swap, ml_open_file() will check
7320 * buf->b_p_swf */
7321 mf_close_file(curbuf, TRUE); /* remove the swap file */
7324 /* when 'terse' is set change 'shortmess' */
7325 else if ((int *)varp == &p_terse)
7327 char_u *p;
7329 p = vim_strchr(p_shm, SHM_SEARCH);
7331 /* insert 's' in p_shm */
7332 if (p_terse && p == NULL)
7334 STRCPY(IObuff, p_shm);
7335 STRCAT(IObuff, "s");
7336 set_string_option_direct((char_u *)"shm", -1, IObuff, OPT_FREE, 0);
7338 /* remove 's' from p_shm */
7339 else if (!p_terse && p != NULL)
7340 STRMOVE(p, p + 1);
7343 /* when 'paste' is set or reset also change other options */
7344 else if ((int *)varp == &p_paste)
7346 paste_option_changed();
7349 /* when 'insertmode' is set from an autocommand need to do work here */
7350 else if ((int *)varp == &p_im)
7352 if (p_im)
7354 if ((State & INSERT) == 0)
7355 need_start_insertmode = TRUE;
7356 stop_insert_mode = FALSE;
7358 else
7360 need_start_insertmode = FALSE;
7361 stop_insert_mode = TRUE;
7362 if (restart_edit != 0 && mode_displayed)
7363 clear_cmdline = TRUE; /* remove "(insert)" */
7364 restart_edit = 0;
7368 /* when 'ignorecase' is set or reset and 'hlsearch' is set, redraw */
7369 else if ((int *)varp == &p_ic && p_hls)
7371 redraw_all_later(SOME_VALID);
7374 #ifdef FEAT_SEARCH_EXTRA
7375 /* when 'hlsearch' is set or reset: reset no_hlsearch */
7376 else if ((int *)varp == &p_hls)
7378 no_hlsearch = FALSE;
7380 #endif
7382 #ifdef FEAT_SCROLLBIND
7383 /* when 'scrollbind' is set: snapshot the current position to avoid a jump
7384 * at the end of normal_cmd() */
7385 else if ((int *)varp == &curwin->w_p_scb)
7387 if (curwin->w_p_scb)
7388 do_check_scrollbind(FALSE);
7390 #endif
7392 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
7393 /* There can be only one window with 'previewwindow' set. */
7394 else if ((int *)varp == &curwin->w_p_pvw)
7396 if (curwin->w_p_pvw)
7398 win_T *win;
7400 for (win = firstwin; win != NULL; win = win->w_next)
7401 if (win->w_p_pvw && win != curwin)
7403 curwin->w_p_pvw = FALSE;
7404 return (char_u *)N_("E590: A preview window already exists");
7408 #endif
7410 /* when 'textmode' is set or reset also change 'fileformat' */
7411 else if ((int *)varp == &curbuf->b_p_tx)
7413 set_fileformat(curbuf->b_p_tx ? EOL_DOS : EOL_UNIX, opt_flags);
7416 /* when 'textauto' is set or reset also change 'fileformats' */
7417 else if ((int *)varp == &p_ta)
7418 set_string_option_direct((char_u *)"ffs", -1,
7419 p_ta ? (char_u *)DFLT_FFS_VIM : (char_u *)"",
7420 OPT_FREE | opt_flags, 0);
7423 * When 'lisp' option changes include/exclude '-' in
7424 * keyword characters.
7426 #ifdef FEAT_LISP
7427 else if (varp == (char_u *)&(curbuf->b_p_lisp))
7429 (void)buf_init_chartab(curbuf, FALSE); /* ignore errors */
7431 #endif
7433 #ifdef FEAT_TITLE
7434 /* when 'title' changed, may need to change the title; same for 'icon' */
7435 else if ((int *)varp == &p_title)
7437 did_set_title(FALSE);
7440 else if ((int *)varp == &p_icon)
7442 did_set_title(TRUE);
7444 #endif
7446 else if ((int *)varp == &curbuf->b_changed)
7448 if (!value)
7449 save_file_ff(curbuf); /* Buffer is unchanged */
7450 #ifdef FEAT_TITLE
7451 redraw_titles();
7452 #endif
7453 #ifdef FEAT_AUTOCMD
7454 modified_was_set = value;
7455 #endif
7458 #ifdef BACKSLASH_IN_FILENAME
7459 else if ((int *)varp == &p_ssl)
7461 if (p_ssl)
7463 psepc = '/';
7464 psepcN = '\\';
7465 pseps[0] = '/';
7467 else
7469 psepc = '\\';
7470 psepcN = '/';
7471 pseps[0] = '\\';
7474 /* need to adjust the file name arguments and buffer names. */
7475 buflist_slash_adjust();
7476 alist_slash_adjust();
7477 # ifdef FEAT_EVAL
7478 scriptnames_slash_adjust();
7479 # endif
7481 #endif
7483 /* If 'wrap' is set, set w_leftcol to zero. */
7484 else if ((int *)varp == &curwin->w_p_wrap)
7486 if (curwin->w_p_wrap)
7487 curwin->w_leftcol = 0;
7488 if (curwin->w_curswant != MAXCOL)
7489 curwin->w_set_curswant = TRUE;
7492 #ifdef FEAT_WINDOWS
7493 else if ((int *)varp == &p_ea)
7495 if (p_ea && !old_value)
7496 win_equal(curwin, FALSE, 0);
7498 #endif
7500 else if ((int *)varp == &p_wiv)
7503 * When 'weirdinvert' changed, set/reset 't_xs'.
7504 * Then set 'weirdinvert' according to value of 't_xs'.
7506 if (p_wiv && !old_value)
7507 T_XS = (char_u *)"y";
7508 else if (!p_wiv && old_value)
7509 T_XS = empty_option;
7510 p_wiv = (*T_XS != NUL);
7513 #ifdef FEAT_BEVAL
7514 else if ((int *)varp == &p_beval)
7516 if (p_beval == TRUE)
7517 gui_mch_enable_beval_area(balloonEval);
7518 else
7519 gui_mch_disable_beval_area(balloonEval);
7521 #endif
7523 #ifdef FEAT_AUTOCHDIR
7524 else if ((int *)varp == &p_acd)
7526 /* Change directories when the 'acd' option is set now. */
7527 DO_AUTOCHDIR
7529 #endif
7531 #ifdef FEAT_DIFF
7532 /* 'diff' */
7533 else if ((int *)varp == &curwin->w_p_diff)
7535 /* May add or remove the buffer from the list of diff buffers. */
7536 diff_buf_adjust(curwin);
7537 # ifdef FEAT_FOLDING
7538 if (foldmethodIsDiff(curwin))
7539 foldUpdateAll(curwin);
7540 # endif
7542 #endif
7544 #ifdef USE_IM_CONTROL
7545 /* 'imdisable' */
7546 else if ((int *)varp == &p_imdisable)
7548 /* Only de-activate it here, it will be enabled when changing mode. */
7549 if (p_imdisable)
7550 im_set_active(FALSE);
7552 #endif
7554 #ifdef FEAT_SPELL
7555 /* 'spell' */
7556 else if ((int *)varp == &curwin->w_p_spell)
7558 if (curwin->w_p_spell)
7560 char_u *errmsg = did_set_spelllang(curbuf);
7562 if (errmsg != NULL)
7563 EMSG(_(errmsg));
7566 #endif
7568 #ifdef FEAT_FKMAP
7569 else if ((int *)varp == &p_altkeymap)
7571 if (old_value != p_altkeymap)
7573 if (!p_altkeymap)
7575 p_hkmap = p_fkmap;
7576 p_fkmap = 0;
7578 else
7580 p_fkmap = p_hkmap;
7581 p_hkmap = 0;
7583 (void)init_chartab();
7588 * In case some second language keymapping options have changed, check
7589 * and correct the setting in a consistent way.
7593 * If hkmap or fkmap are set, reset Arabic keymapping.
7595 if ((p_hkmap || p_fkmap) && p_altkeymap)
7597 p_altkeymap = p_fkmap;
7598 # ifdef FEAT_ARABIC
7599 curwin->w_p_arab = FALSE;
7600 # endif
7601 (void)init_chartab();
7605 * If hkmap set, reset Farsi keymapping.
7607 if (p_hkmap && p_altkeymap)
7609 p_altkeymap = 0;
7610 p_fkmap = 0;
7611 # ifdef FEAT_ARABIC
7612 curwin->w_p_arab = FALSE;
7613 # endif
7614 (void)init_chartab();
7618 * If fkmap set, reset Hebrew keymapping.
7620 if (p_fkmap && !p_altkeymap)
7622 p_altkeymap = 1;
7623 p_hkmap = 0;
7624 # ifdef FEAT_ARABIC
7625 curwin->w_p_arab = FALSE;
7626 # endif
7627 (void)init_chartab();
7629 #endif
7631 #ifdef FEAT_ARABIC
7632 if ((int *)varp == &curwin->w_p_arab)
7634 if (curwin->w_p_arab)
7637 * 'arabic' is set, handle various sub-settings.
7639 if (!p_tbidi)
7641 /* set rightleft mode */
7642 if (!curwin->w_p_rl)
7644 curwin->w_p_rl = TRUE;
7645 changed_window_setting();
7648 /* Enable Arabic shaping (major part of what Arabic requires) */
7649 if (!p_arshape)
7651 p_arshape = TRUE;
7652 redraw_later_clear();
7656 /* Arabic requires a utf-8 encoding, inform the user if its not
7657 * set. */
7658 if (STRCMP(p_enc, "utf-8") != 0)
7660 static char *w_arabic = N_("W17: Arabic requires UTF-8, do ':set encoding=utf-8'");
7662 msg_source(hl_attr(HLF_W));
7663 MSG_ATTR(_(w_arabic), hl_attr(HLF_W));
7664 #ifdef FEAT_EVAL
7665 set_vim_var_string(VV_WARNINGMSG, (char_u *)_(w_arabic), -1);
7666 #endif
7669 # ifdef FEAT_MBYTE
7670 /* set 'delcombine' */
7671 p_deco = TRUE;
7672 # endif
7674 # ifdef FEAT_KEYMAP
7675 /* Force-set the necessary keymap for arabic */
7676 set_option_value((char_u *)"keymap", 0L, (char_u *)"arabic",
7677 OPT_LOCAL);
7678 # endif
7679 # ifdef FEAT_FKMAP
7680 p_altkeymap = 0;
7681 p_hkmap = 0;
7682 p_fkmap = 0;
7683 (void)init_chartab();
7684 # endif
7686 else
7689 * 'arabic' is reset, handle various sub-settings.
7691 if (!p_tbidi)
7693 /* reset rightleft mode */
7694 if (curwin->w_p_rl)
7696 curwin->w_p_rl = FALSE;
7697 changed_window_setting();
7700 /* 'arabicshape' isn't reset, it is a global option and
7701 * another window may still need it "on". */
7704 /* 'delcombine' isn't reset, it is a global option and another
7705 * window may still want it "on". */
7707 # ifdef FEAT_KEYMAP
7708 /* Revert to the default keymap */
7709 curbuf->b_p_iminsert = B_IMODE_NONE;
7710 curbuf->b_p_imsearch = B_IMODE_USE_INSERT;
7711 # endif
7713 if (curwin->w_curswant != MAXCOL)
7714 curwin->w_set_curswant = TRUE;
7717 else if ((int *)varp == &p_arshape)
7719 if (curwin->w_curswant != MAXCOL)
7720 curwin->w_set_curswant = TRUE;
7722 #endif
7724 #ifdef FEAT_LINEBREAK
7725 if ((int *)varp == &curwin->w_p_lbr)
7727 if (curwin->w_curswant != MAXCOL)
7728 curwin->w_set_curswant = TRUE;
7730 #endif
7732 #ifdef FEAT_RIGHTLEFT
7733 if ((int *)varp == &curwin->w_p_rl)
7735 if (curwin->w_curswant != MAXCOL)
7736 curwin->w_set_curswant = TRUE;
7738 #endif
7741 * End of handling side effects for bool options.
7744 options[opt_idx].flags |= P_WAS_SET;
7746 comp_col(); /* in case 'ruler' or 'showcmd' changed */
7748 check_redraw(options[opt_idx].flags);
7750 return NULL;
7754 * Set the value of a number option, and take care of side effects.
7755 * Returns NULL for success, or an error message for an error.
7757 static char_u *
7758 set_num_option(opt_idx, varp, value, errbuf, errbuflen, opt_flags)
7759 int opt_idx; /* index in options[] table */
7760 char_u *varp; /* pointer to the option variable */
7761 long value; /* new value */
7762 char_u *errbuf; /* buffer for error messages */
7763 size_t errbuflen; /* length of "errbuf" */
7764 int opt_flags; /* OPT_LOCAL, OPT_GLOBAL and
7765 OPT_MODELINE */
7767 char_u *errmsg = NULL;
7768 long old_value = *(long *)varp;
7769 long old_Rows = Rows; /* remember old Rows */
7770 long old_Columns = Columns; /* remember old Columns */
7771 long *pp = (long *)varp;
7773 /* Disallow changing some options from secure mode. */
7774 if ((secure
7775 #ifdef HAVE_SANDBOX
7776 || sandbox != 0
7777 #endif
7778 ) && (options[opt_idx].flags & P_SECURE))
7779 return e_secure;
7781 *pp = value;
7782 #ifdef FEAT_EVAL
7783 /* Remember where the option was set. */
7784 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
7785 #endif
7786 #ifdef FEAT_GUI
7787 need_mouse_correct = TRUE;
7788 #endif
7790 if (curbuf->b_p_sw <= 0)
7792 errmsg = e_positive;
7793 curbuf->b_p_sw = curbuf->b_p_ts;
7797 * Number options that need some action when changed
7799 #ifdef FEAT_WINDOWS
7800 if (pp == &p_wh || pp == &p_hh)
7802 if (p_wh < 1)
7804 errmsg = e_positive;
7805 p_wh = 1;
7807 if (p_wmh > p_wh)
7809 errmsg = e_winheight;
7810 p_wh = p_wmh;
7812 if (p_hh < 0)
7814 errmsg = e_positive;
7815 p_hh = 0;
7818 /* Change window height NOW */
7819 if (lastwin != firstwin)
7821 if (pp == &p_wh && curwin->w_height < p_wh)
7822 win_setheight((int)p_wh);
7823 if (pp == &p_hh && curbuf->b_help && curwin->w_height < p_hh)
7824 win_setheight((int)p_hh);
7828 /* 'winminheight' */
7829 else if (pp == &p_wmh)
7831 if (p_wmh < 0)
7833 errmsg = e_positive;
7834 p_wmh = 0;
7836 if (p_wmh > p_wh)
7838 errmsg = e_winheight;
7839 p_wmh = p_wh;
7841 win_setminheight();
7844 # ifdef FEAT_VERTSPLIT
7845 else if (pp == &p_wiw)
7847 if (p_wiw < 1)
7849 errmsg = e_positive;
7850 p_wiw = 1;
7852 if (p_wmw > p_wiw)
7854 errmsg = e_winwidth;
7855 p_wiw = p_wmw;
7858 /* Change window width NOW */
7859 if (lastwin != firstwin && curwin->w_width < p_wiw)
7860 win_setwidth((int)p_wiw);
7863 /* 'winminwidth' */
7864 else if (pp == &p_wmw)
7866 if (p_wmw < 0)
7868 errmsg = e_positive;
7869 p_wmw = 0;
7871 if (p_wmw > p_wiw)
7873 errmsg = e_winwidth;
7874 p_wmw = p_wiw;
7876 win_setminheight();
7878 # endif
7880 #endif
7882 #ifdef FEAT_WINDOWS
7883 /* (re)set last window status line */
7884 else if (pp == &p_ls)
7886 last_status(FALSE);
7889 /* (re)set tab page line */
7890 else if (pp == &p_stal)
7892 shell_new_rows(); /* recompute window positions and heights */
7894 #endif
7896 #ifdef FEAT_GUI
7897 else if (pp == &p_linespace)
7899 /* Recompute gui.char_height and resize the Vim window to keep the
7900 * same number of lines. */
7901 if (gui.in_use && gui_mch_adjust_charheight() == OK)
7902 gui_set_shellsize(FALSE, FALSE, RESIZE_VERT);
7904 #endif
7906 #ifdef FEAT_FOLDING
7907 /* 'foldlevel' */
7908 else if (pp == &curwin->w_p_fdl)
7910 if (curwin->w_p_fdl < 0)
7911 curwin->w_p_fdl = 0;
7912 newFoldLevel();
7915 /* 'foldminlines' */
7916 else if (pp == &curwin->w_p_fml)
7918 foldUpdateAll(curwin);
7921 /* 'foldnestmax' */
7922 else if (pp == &curwin->w_p_fdn)
7924 if (foldmethodIsSyntax(curwin) || foldmethodIsIndent(curwin))
7925 foldUpdateAll(curwin);
7928 /* 'foldcolumn' */
7929 else if (pp == &curwin->w_p_fdc)
7931 if (curwin->w_p_fdc < 0)
7933 errmsg = e_positive;
7934 curwin->w_p_fdc = 0;
7936 else if (curwin->w_p_fdc > 12)
7938 errmsg = e_invarg;
7939 curwin->w_p_fdc = 12;
7943 /* 'shiftwidth' or 'tabstop' */
7944 else if (pp == &curbuf->b_p_sw || pp == &curbuf->b_p_ts)
7946 if (foldmethodIsIndent(curwin))
7947 foldUpdateAll(curwin);
7949 #endif /* FEAT_FOLDING */
7951 #ifdef FEAT_MBYTE
7952 /* 'maxcombine' */
7953 else if (pp == &p_mco)
7955 if (p_mco > MAX_MCO)
7956 p_mco = MAX_MCO;
7957 else if (p_mco < 0)
7958 p_mco = 0;
7959 screenclear(); /* will re-allocate the screen */
7961 #endif
7963 else if (pp == &curbuf->b_p_iminsert)
7965 if (curbuf->b_p_iminsert < 0 || curbuf->b_p_iminsert > B_IMODE_LAST)
7967 errmsg = e_invarg;
7968 curbuf->b_p_iminsert = B_IMODE_NONE;
7970 p_iminsert = curbuf->b_p_iminsert;
7971 if (termcap_active) /* don't do this in the alternate screen */
7972 showmode();
7973 #if defined(FEAT_WINDOWS) && defined(FEAT_KEYMAP)
7974 /* Show/unshow value of 'keymap' in status lines. */
7975 status_redraw_curbuf();
7976 #endif
7979 else if (pp == &p_window)
7981 if (p_window < 1)
7982 p_window = 1;
7983 else if (p_window >= Rows)
7984 p_window = Rows - 1;
7987 else if (pp == &curbuf->b_p_imsearch)
7989 if (curbuf->b_p_imsearch < -1 || curbuf->b_p_imsearch > B_IMODE_LAST)
7991 errmsg = e_invarg;
7992 curbuf->b_p_imsearch = B_IMODE_NONE;
7994 p_imsearch = curbuf->b_p_imsearch;
7997 #ifdef FEAT_TITLE
7998 /* if 'titlelen' has changed, redraw the title */
7999 else if (pp == &p_titlelen)
8001 if (p_titlelen < 0)
8003 errmsg = e_positive;
8004 p_titlelen = 85;
8006 if (starting != NO_SCREEN && old_value != p_titlelen)
8007 need_maketitle = TRUE;
8009 #endif
8011 /* if p_ch changed value, change the command line height */
8012 else if (pp == &p_ch)
8014 if (p_ch < 1)
8016 errmsg = e_positive;
8017 p_ch = 1;
8019 if (p_ch > Rows - min_rows() + 1)
8020 p_ch = Rows - min_rows() + 1;
8022 /* Only compute the new window layout when startup has been
8023 * completed. Otherwise the frame sizes may be wrong. */
8024 if (p_ch != old_value && full_screen
8025 #ifdef FEAT_GUI
8026 && !gui.starting
8027 #endif
8029 command_height();
8032 /* when 'updatecount' changes from zero to non-zero, open swap files */
8033 else if (pp == &p_uc)
8035 if (p_uc < 0)
8037 errmsg = e_positive;
8038 p_uc = 100;
8040 if (p_uc && !old_value)
8041 ml_open_files();
8043 #ifdef MZSCHEME_GUI_THREADS
8044 else if (pp == &p_mzq)
8045 mzvim_reset_timer();
8046 #endif
8048 /* sync undo before 'undolevels' changes */
8049 else if (pp == &p_ul)
8051 /* use the old value, otherwise u_sync() may not work properly */
8052 p_ul = old_value;
8053 u_sync(TRUE);
8054 p_ul = value;
8057 #ifdef FEAT_LINEBREAK
8058 /* 'numberwidth' must be positive */
8059 else if (pp == &curwin->w_p_nuw)
8061 if (curwin->w_p_nuw < 1)
8063 errmsg = e_positive;
8064 curwin->w_p_nuw = 1;
8066 if (curwin->w_p_nuw > 10)
8068 errmsg = e_invarg;
8069 curwin->w_p_nuw = 10;
8071 curwin->w_nrwidth_line_count = 0;
8073 #endif
8076 * Check the bounds for numeric options here
8078 if (Rows < min_rows() && full_screen)
8080 if (errbuf != NULL)
8082 vim_snprintf((char *)errbuf, errbuflen,
8083 _("E593: Need at least %d lines"), min_rows());
8084 errmsg = errbuf;
8086 Rows = min_rows();
8088 if (Columns < MIN_COLUMNS && full_screen)
8090 if (errbuf != NULL)
8092 vim_snprintf((char *)errbuf, errbuflen,
8093 _("E594: Need at least %d columns"), MIN_COLUMNS);
8094 errmsg = errbuf;
8096 Columns = MIN_COLUMNS;
8098 /* Limit the values to avoid an overflow in Rows * Columns. */
8099 if (Columns > 10000)
8100 Columns = 10000;
8101 if (Rows > 1000)
8102 Rows = 1000;
8104 #ifdef DJGPP
8105 /* avoid a crash by checking for a too large value of 'columns' */
8106 if (old_Columns != Columns && full_screen && term_console)
8107 mch_check_columns();
8108 #endif
8111 * If the screen (shell) height has been changed, assume it is the
8112 * physical screenheight.
8114 if (old_Rows != Rows || old_Columns != Columns)
8116 /* Changing the screen size is not allowed while updating the screen. */
8117 if (updating_screen)
8118 *pp = old_value;
8119 else if (full_screen
8120 #ifdef FEAT_GUI
8121 && !gui.starting
8122 #endif
8124 set_shellsize((int)Columns, (int)Rows, TRUE);
8125 else
8127 /* Postpone the resizing; check the size and cmdline position for
8128 * messages. */
8129 check_shellsize();
8130 if (cmdline_row > Rows - p_ch && Rows > p_ch)
8131 cmdline_row = Rows - p_ch;
8133 if (p_window >= Rows || !option_was_set((char_u *)"window"))
8134 p_window = Rows - 1;
8137 if (curbuf->b_p_sts < 0)
8139 errmsg = e_positive;
8140 curbuf->b_p_sts = 0;
8142 if (curbuf->b_p_ts <= 0)
8144 errmsg = e_positive;
8145 curbuf->b_p_ts = 8;
8147 if (curbuf->b_p_tw < 0)
8149 errmsg = e_positive;
8150 curbuf->b_p_tw = 0;
8152 if (p_tm < 0)
8154 errmsg = e_positive;
8155 p_tm = 0;
8157 if ((curwin->w_p_scr <= 0
8158 || (curwin->w_p_scr > curwin->w_height
8159 && curwin->w_height > 0))
8160 && full_screen)
8162 if (pp == &(curwin->w_p_scr))
8164 if (curwin->w_p_scr != 0)
8165 errmsg = e_scroll;
8166 win_comp_scroll(curwin);
8168 /* If 'scroll' became invalid because of a side effect silently adjust
8169 * it. */
8170 else if (curwin->w_p_scr <= 0)
8171 curwin->w_p_scr = 1;
8172 else /* curwin->w_p_scr > curwin->w_height */
8173 curwin->w_p_scr = curwin->w_height;
8175 if (p_hi < 0)
8177 errmsg = e_positive;
8178 p_hi = 0;
8180 if (p_report < 0)
8182 errmsg = e_positive;
8183 p_report = 1;
8185 if ((p_sj < -100 || p_sj >= Rows) && full_screen)
8187 if (Rows != old_Rows) /* Rows changed, just adjust p_sj */
8188 p_sj = Rows / 2;
8189 else
8191 errmsg = e_scroll;
8192 p_sj = 1;
8195 if (p_so < 0 && full_screen)
8197 errmsg = e_scroll;
8198 p_so = 0;
8200 if (p_siso < 0 && full_screen)
8202 errmsg = e_positive;
8203 p_siso = 0;
8205 #ifdef FEAT_CMDWIN
8206 if (p_cwh < 1)
8208 errmsg = e_positive;
8209 p_cwh = 1;
8211 #endif
8212 if (p_ut < 0)
8214 errmsg = e_positive;
8215 p_ut = 2000;
8217 if (p_ss < 0)
8219 errmsg = e_positive;
8220 p_ss = 0;
8223 /* May set global value for local option. */
8224 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0)
8225 *(long *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) = *pp;
8227 options[opt_idx].flags |= P_WAS_SET;
8229 comp_col(); /* in case 'columns' or 'ls' changed */
8230 if (curwin->w_curswant != MAXCOL)
8231 curwin->w_set_curswant = TRUE; /* in case 'tabstop' changed */
8232 check_redraw(options[opt_idx].flags);
8234 return errmsg;
8238 * Called after an option changed: check if something needs to be redrawn.
8240 static void
8241 check_redraw(flags)
8242 long_u flags;
8244 /* Careful: P_RCLR and P_RALL are a combination of other P_ flags */
8245 int clear = (flags & P_RCLR) == P_RCLR;
8246 int all = ((flags & P_RALL) == P_RALL || clear);
8248 #ifdef FEAT_WINDOWS
8249 if ((flags & P_RSTAT) || all) /* mark all status lines dirty */
8250 status_redraw_all();
8251 #endif
8253 if ((flags & P_RBUF) || (flags & P_RWIN) || all)
8254 changed_window_setting();
8255 if (flags & P_RBUF)
8256 redraw_curbuf_later(NOT_VALID);
8257 if (clear)
8258 redraw_all_later(CLEAR);
8259 else if (all)
8260 redraw_all_later(NOT_VALID);
8264 * Find index for option 'arg'.
8265 * Return -1 if not found.
8267 static int
8268 findoption(arg)
8269 char_u *arg;
8271 int opt_idx;
8272 char *s, *p;
8273 static short quick_tab[27] = {0, 0}; /* quick access table */
8274 int is_term_opt;
8277 * For first call: Initialize the quick-access table.
8278 * It contains the index for the first option that starts with a certain
8279 * letter. There are 26 letters, plus the first "t_" option.
8281 if (quick_tab[1] == 0)
8283 p = options[0].fullname;
8284 for (opt_idx = 1; (s = options[opt_idx].fullname) != NULL; opt_idx++)
8286 if (s[0] != p[0])
8288 if (s[0] == 't' && s[1] == '_')
8289 quick_tab[26] = opt_idx;
8290 else
8291 quick_tab[CharOrdLow(s[0])] = opt_idx;
8293 p = s;
8298 * Check for name starting with an illegal character.
8300 #ifdef EBCDIC
8301 if (!islower(arg[0]))
8302 #else
8303 if (arg[0] < 'a' || arg[0] > 'z')
8304 #endif
8305 return -1;
8307 is_term_opt = (arg[0] == 't' && arg[1] == '_');
8308 if (is_term_opt)
8309 opt_idx = quick_tab[26];
8310 else
8311 opt_idx = quick_tab[CharOrdLow(arg[0])];
8312 for ( ; (s = options[opt_idx].fullname) != NULL; opt_idx++)
8314 if (STRCMP(arg, s) == 0) /* match full name */
8315 break;
8317 if (s == NULL && !is_term_opt)
8319 opt_idx = quick_tab[CharOrdLow(arg[0])];
8320 for ( ; options[opt_idx].fullname != NULL; opt_idx++)
8322 s = options[opt_idx].shortname;
8323 if (s != NULL && STRCMP(arg, s) == 0) /* match short name */
8324 break;
8325 s = NULL;
8328 if (s == NULL)
8329 opt_idx = -1;
8330 return opt_idx;
8333 #if defined(FEAT_EVAL) || defined(FEAT_TCL) || defined(FEAT_MZSCHEME)
8335 * Get the value for an option.
8337 * Returns:
8338 * Number or Toggle option: 1, *numval gets value.
8339 * String option: 0, *stringval gets allocated string.
8340 * Hidden Number or Toggle option: -1.
8341 * hidden String option: -2.
8342 * unknown option: -3.
8345 get_option_value(name, numval, stringval, opt_flags)
8346 char_u *name;
8347 long *numval;
8348 char_u **stringval; /* NULL when only checking existance */
8349 int opt_flags;
8351 int opt_idx;
8352 char_u *varp;
8354 opt_idx = findoption(name);
8355 if (opt_idx < 0) /* unknown option */
8356 return -3;
8358 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
8360 if (options[opt_idx].flags & P_STRING)
8362 if (varp == NULL) /* hidden option */
8363 return -2;
8364 if (stringval != NULL)
8366 #ifdef FEAT_CRYPT
8367 /* never return the value of the crypt key */
8368 if ((char_u **)varp == &curbuf->b_p_key
8369 && **(char_u **)(varp) != NUL)
8370 *stringval = vim_strsave((char_u *)"*****");
8371 else
8372 #endif
8373 *stringval = vim_strsave(*(char_u **)(varp));
8375 return 0;
8378 if (varp == NULL) /* hidden option */
8379 return -1;
8380 if (options[opt_idx].flags & P_NUM)
8381 *numval = *(long *)varp;
8382 else
8384 /* Special case: 'modified' is b_changed, but we also want to consider
8385 * it set when 'ff' or 'fenc' changed. */
8386 if ((int *)varp == &curbuf->b_changed)
8387 *numval = curbufIsChanged();
8388 else
8389 *numval = *(int *)varp;
8391 return 1;
8393 #endif
8396 * Set the value of option "name".
8397 * Use "string" for string options, use "number" for other options.
8399 void
8400 set_option_value(name, number, string, opt_flags)
8401 char_u *name;
8402 long number;
8403 char_u *string;
8404 int opt_flags; /* OPT_LOCAL or 0 (both) */
8406 int opt_idx;
8407 char_u *varp;
8408 long_u flags;
8410 opt_idx = findoption(name);
8411 if (opt_idx < 0)
8412 EMSG2(_("E355: Unknown option: %s"), name);
8413 else
8415 flags = options[opt_idx].flags;
8416 #ifdef HAVE_SANDBOX
8417 /* Disallow changing some options in the sandbox */
8418 if (sandbox > 0 && (flags & P_SECURE))
8420 EMSG(_(e_sandbox));
8421 return;
8423 #endif
8424 if (flags & P_STRING)
8425 set_string_option(opt_idx, string, opt_flags);
8426 else
8428 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
8429 if (varp != NULL) /* hidden option is not changed */
8431 if (number == 0 && string != NULL)
8433 int idx;
8435 /* Either we are given a string or we are setting option
8436 * to zero. */
8437 for (idx = 0; string[idx] == '0'; ++idx)
8439 if (string[idx] != NUL || idx == 0)
8441 /* There's another character after zeros or the string
8442 * is empty. In both cases, we are trying to set a
8443 * num option using a string. */
8444 EMSG3(_("E521: Number required: &%s = '%s'"),
8445 name, string);
8446 return; /* do nothing as we hit an error */
8450 if (flags & P_NUM)
8451 (void)set_num_option(opt_idx, varp, number,
8452 NULL, 0, opt_flags);
8453 else
8454 (void)set_bool_option(opt_idx, varp, (int)number,
8455 opt_flags);
8462 * Get the terminal code for a terminal option.
8463 * Returns NULL when not found.
8465 char_u *
8466 get_term_code(tname)
8467 char_u *tname;
8469 int opt_idx;
8470 char_u *varp;
8472 if (tname[0] != 't' || tname[1] != '_' ||
8473 tname[2] == NUL || tname[3] == NUL)
8474 return NULL;
8475 if ((opt_idx = findoption(tname)) >= 0)
8477 varp = get_varp(&(options[opt_idx]));
8478 if (varp != NULL)
8479 varp = *(char_u **)(varp);
8480 return varp;
8482 return find_termcode(tname + 2);
8485 char_u *
8486 get_highlight_default()
8488 int i;
8490 i = findoption((char_u *)"hl");
8491 if (i >= 0)
8492 return options[i].def_val[VI_DEFAULT];
8493 return (char_u *)NULL;
8496 #if defined(FEAT_MBYTE) || defined(PROTO)
8497 char_u *
8498 get_encoding_default()
8500 int i;
8502 i = findoption((char_u *)"enc");
8503 if (i >= 0)
8504 return options[i].def_val[VI_DEFAULT];
8505 return (char_u *)NULL;
8507 #endif
8510 * Translate a string like "t_xx", "<t_xx>" or "<S-Tab>" to a key number.
8512 static int
8513 find_key_option(arg)
8514 char_u *arg;
8516 int key;
8517 int modifiers;
8520 * Don't use get_special_key_code() for t_xx, we don't want it to call
8521 * add_termcap_entry().
8523 if (arg[0] == 't' && arg[1] == '_' && arg[2] && arg[3])
8524 key = TERMCAP2KEY(arg[2], arg[3]);
8525 else
8527 --arg; /* put arg at the '<' */
8528 modifiers = 0;
8529 key = find_special_key(&arg, &modifiers, TRUE, TRUE);
8530 if (modifiers) /* can't handle modifiers here */
8531 key = 0;
8533 return key;
8537 * if 'all' == 0: show changed options
8538 * if 'all' == 1: show all normal options
8539 * if 'all' == 2: show all terminal options
8541 static void
8542 showoptions(all, opt_flags)
8543 int all;
8544 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
8546 struct vimoption *p;
8547 int col;
8548 int isterm;
8549 char_u *varp;
8550 struct vimoption **items;
8551 int item_count;
8552 int run;
8553 int row, rows;
8554 int cols;
8555 int i;
8556 int len;
8558 #define INC 20
8559 #define GAP 3
8561 items = (struct vimoption **)alloc((unsigned)(sizeof(struct vimoption *) *
8562 PARAM_COUNT));
8563 if (items == NULL)
8564 return;
8566 /* Highlight title */
8567 if (all == 2)
8568 MSG_PUTS_TITLE(_("\n--- Terminal codes ---"));
8569 else if (opt_flags & OPT_GLOBAL)
8570 MSG_PUTS_TITLE(_("\n--- Global option values ---"));
8571 else if (opt_flags & OPT_LOCAL)
8572 MSG_PUTS_TITLE(_("\n--- Local option values ---"));
8573 else
8574 MSG_PUTS_TITLE(_("\n--- Options ---"));
8577 * do the loop two times:
8578 * 1. display the short items
8579 * 2. display the long items (only strings and numbers)
8581 for (run = 1; run <= 2 && !got_int; ++run)
8584 * collect the items in items[]
8586 item_count = 0;
8587 for (p = &options[0]; p->fullname != NULL; p++)
8589 varp = NULL;
8590 isterm = istermoption(p);
8591 if (opt_flags != 0)
8593 if (p->indir != PV_NONE && !isterm)
8594 varp = get_varp_scope(p, opt_flags);
8596 else
8597 varp = get_varp(p);
8598 if (varp != NULL
8599 && ((all == 2 && isterm)
8600 || (all == 1 && !isterm)
8601 || (all == 0 && !optval_default(p, varp))))
8603 if (p->flags & P_BOOL)
8604 len = 1; /* a toggle option fits always */
8605 else
8607 option_value2string(p, opt_flags);
8608 len = (int)STRLEN(p->fullname) + vim_strsize(NameBuff) + 1;
8610 if ((len <= INC - GAP && run == 1) ||
8611 (len > INC - GAP && run == 2))
8612 items[item_count++] = p;
8617 * display the items
8619 if (run == 1)
8621 cols = (Columns + GAP - 3) / INC;
8622 if (cols == 0)
8623 cols = 1;
8624 rows = (item_count + cols - 1) / cols;
8626 else /* run == 2 */
8627 rows = item_count;
8628 for (row = 0; row < rows && !got_int; ++row)
8630 msg_putchar('\n'); /* go to next line */
8631 if (got_int) /* 'q' typed in more */
8632 break;
8633 col = 0;
8634 for (i = row; i < item_count; i += rows)
8636 msg_col = col; /* make columns */
8637 showoneopt(items[i], opt_flags);
8638 col += INC;
8640 out_flush();
8641 ui_breakcheck();
8644 vim_free(items);
8648 * Return TRUE if option "p" has its default value.
8650 static int
8651 optval_default(p, varp)
8652 struct vimoption *p;
8653 char_u *varp;
8655 int dvi;
8657 if (varp == NULL)
8658 return TRUE; /* hidden option is always at default */
8659 dvi = ((p->flags & P_VI_DEF) || p_cp) ? VI_DEFAULT : VIM_DEFAULT;
8660 if (p->flags & P_NUM)
8661 return (*(long *)varp == (long)(long_i)p->def_val[dvi]);
8662 if (p->flags & P_BOOL)
8663 /* the cast to long is required for Manx C, long_i is
8664 * needed for MSVC */
8665 return (*(int *)varp == (int)(long)(long_i)p->def_val[dvi]);
8666 /* P_STRING */
8667 return (STRCMP(*(char_u **)varp, p->def_val[dvi]) == 0);
8671 * showoneopt: show the value of one option
8672 * must not be called with a hidden option!
8674 static void
8675 showoneopt(p, opt_flags)
8676 struct vimoption *p;
8677 int opt_flags; /* OPT_LOCAL or OPT_GLOBAL */
8679 char_u *varp;
8680 int save_silent = silent_mode;
8682 silent_mode = FALSE;
8683 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
8685 varp = get_varp_scope(p, opt_flags);
8687 /* for 'modified' we also need to check if 'ff' or 'fenc' changed. */
8688 if ((p->flags & P_BOOL) && ((int *)varp == &curbuf->b_changed
8689 ? !curbufIsChanged() : !*(int *)varp))
8690 MSG_PUTS("no");
8691 else if ((p->flags & P_BOOL) && *(int *)varp < 0)
8692 MSG_PUTS("--");
8693 else
8694 MSG_PUTS(" ");
8695 MSG_PUTS(p->fullname);
8696 if (!(p->flags & P_BOOL))
8698 msg_putchar('=');
8699 /* put value string in NameBuff */
8700 option_value2string(p, opt_flags);
8701 msg_outtrans(NameBuff);
8704 silent_mode = save_silent;
8705 info_message = FALSE;
8709 * Write modified options as ":set" commands to a file.
8711 * There are three values for "opt_flags":
8712 * OPT_GLOBAL: Write global option values and fresh values of
8713 * buffer-local options (used for start of a session
8714 * file).
8715 * OPT_GLOBAL + OPT_LOCAL: Idem, add fresh values of window-local options for
8716 * curwin (used for a vimrc file).
8717 * OPT_LOCAL: Write buffer-local option values for curbuf, fresh
8718 * and local values for window-local options of
8719 * curwin. Local values are also written when at the
8720 * default value, because a modeline or autocommand
8721 * may have set them when doing ":edit file" and the
8722 * user has set them back at the default or fresh
8723 * value.
8724 * When "local_only" is TRUE, don't write fresh
8725 * values, only local values (for ":mkview").
8726 * (fresh value = value used for a new buffer or window for a local option).
8728 * Return FAIL on error, OK otherwise.
8731 makeset(fd, opt_flags, local_only)
8732 FILE *fd;
8733 int opt_flags;
8734 int local_only;
8736 struct vimoption *p;
8737 char_u *varp; /* currently used value */
8738 char_u *varp_fresh; /* local value */
8739 char_u *varp_local = NULL; /* fresh value */
8740 char *cmd;
8741 int round;
8742 int pri;
8745 * The options that don't have a default (terminal name, columns, lines)
8746 * are never written. Terminal options are also not written.
8747 * Do the loop over "options[]" twice: once for options with the
8748 * P_PRI_MKRC flag and once without.
8750 for (pri = 1; pri >= 0; --pri)
8752 for (p = &options[0]; !istermoption(p); p++)
8753 if (!(p->flags & P_NO_MKRC)
8754 && !istermoption(p)
8755 && ((pri == 1) == ((p->flags & P_PRI_MKRC) != 0)))
8757 /* skip global option when only doing locals */
8758 if (p->indir == PV_NONE && !(opt_flags & OPT_GLOBAL))
8759 continue;
8761 /* Do not store options like 'bufhidden' and 'syntax' in a vimrc
8762 * file, they are always buffer-specific. */
8763 if ((opt_flags & OPT_GLOBAL) && (p->flags & P_NOGLOB))
8764 continue;
8766 /* Global values are only written when not at the default value. */
8767 varp = get_varp_scope(p, opt_flags);
8768 if ((opt_flags & OPT_GLOBAL) && optval_default(p, varp))
8769 continue;
8771 round = 2;
8772 if (p->indir != PV_NONE)
8774 if (p->var == VAR_WIN)
8776 /* skip window-local option when only doing globals */
8777 if (!(opt_flags & OPT_LOCAL))
8778 continue;
8779 /* When fresh value of window-local option is not at the
8780 * default, need to write it too. */
8781 if (!(opt_flags & OPT_GLOBAL) && !local_only)
8783 varp_fresh = get_varp_scope(p, OPT_GLOBAL);
8784 if (!optval_default(p, varp_fresh))
8786 round = 1;
8787 varp_local = varp;
8788 varp = varp_fresh;
8794 /* Round 1: fresh value for window-local options.
8795 * Round 2: other values */
8796 for ( ; round <= 2; varp = varp_local, ++round)
8798 if (round == 1 || (opt_flags & OPT_GLOBAL))
8799 cmd = "set";
8800 else
8801 cmd = "setlocal";
8803 if (p->flags & P_BOOL)
8805 if (put_setbool(fd, cmd, p->fullname, *(int *)varp) == FAIL)
8806 return FAIL;
8808 else if (p->flags & P_NUM)
8810 if (put_setnum(fd, cmd, p->fullname, (long *)varp) == FAIL)
8811 return FAIL;
8813 else /* P_STRING */
8815 #if defined(FEAT_SYN_HL) || defined(FEAT_AUTOCMD)
8816 int do_endif = FALSE;
8818 /* Don't set 'syntax' and 'filetype' again if the value is
8819 * already right, avoids reloading the syntax file. */
8820 if (
8821 # if defined(FEAT_SYN_HL)
8822 p->indir == PV_SYN
8823 # if defined(FEAT_AUTOCMD)
8825 # endif
8826 # endif
8827 # if defined(FEAT_AUTOCMD)
8828 p->indir == PV_FT
8829 # endif
8832 if (fprintf(fd, "if &%s != '%s'", p->fullname,
8833 *(char_u **)(varp)) < 0
8834 || put_eol(fd) < 0)
8835 return FAIL;
8836 do_endif = TRUE;
8838 #endif
8839 if (put_setstring(fd, cmd, p->fullname, (char_u **)varp,
8840 (p->flags & P_EXPAND) != 0) == FAIL)
8841 return FAIL;
8842 #if defined(FEAT_SYN_HL) || defined(FEAT_AUTOCMD)
8843 if (do_endif)
8845 if (put_line(fd, "endif") == FAIL)
8846 return FAIL;
8848 #endif
8853 return OK;
8856 #if defined(FEAT_FOLDING) || defined(PROTO)
8858 * Generate set commands for the local fold options only. Used when
8859 * 'sessionoptions' or 'viewoptions' contains "folds" but not "options".
8862 makefoldset(fd)
8863 FILE *fd;
8865 if (put_setstring(fd, "setlocal", "fdm", &curwin->w_p_fdm, FALSE) == FAIL
8866 # ifdef FEAT_EVAL
8867 || put_setstring(fd, "setlocal", "fde", &curwin->w_p_fde, FALSE)
8868 == FAIL
8869 # endif
8870 || put_setstring(fd, "setlocal", "fmr", &curwin->w_p_fmr, FALSE)
8871 == FAIL
8872 || put_setstring(fd, "setlocal", "fdi", &curwin->w_p_fdi, FALSE)
8873 == FAIL
8874 || put_setnum(fd, "setlocal", "fdl", &curwin->w_p_fdl) == FAIL
8875 || put_setnum(fd, "setlocal", "fml", &curwin->w_p_fml) == FAIL
8876 || put_setnum(fd, "setlocal", "fdn", &curwin->w_p_fdn) == FAIL
8877 || put_setbool(fd, "setlocal", "fen", curwin->w_p_fen) == FAIL
8879 return FAIL;
8881 return OK;
8883 #endif
8885 static int
8886 put_setstring(fd, cmd, name, valuep, expand)
8887 FILE *fd;
8888 char *cmd;
8889 char *name;
8890 char_u **valuep;
8891 int expand;
8893 char_u *s;
8894 char_u buf[MAXPATHL];
8896 if (fprintf(fd, "%s %s=", cmd, name) < 0)
8897 return FAIL;
8898 if (*valuep != NULL)
8900 /* Output 'pastetoggle' as key names. For other
8901 * options some characters have to be escaped with
8902 * CTRL-V or backslash */
8903 if (valuep == &p_pt)
8905 s = *valuep;
8906 while (*s != NUL)
8907 if (put_escstr(fd, str2special(&s, FALSE), 2) == FAIL)
8908 return FAIL;
8910 else if (expand)
8912 home_replace(NULL, *valuep, buf, MAXPATHL, FALSE);
8913 if (put_escstr(fd, buf, 2) == FAIL)
8914 return FAIL;
8916 else if (put_escstr(fd, *valuep, 2) == FAIL)
8917 return FAIL;
8919 if (put_eol(fd) < 0)
8920 return FAIL;
8921 return OK;
8924 static int
8925 put_setnum(fd, cmd, name, valuep)
8926 FILE *fd;
8927 char *cmd;
8928 char *name;
8929 long *valuep;
8931 long wc;
8933 if (fprintf(fd, "%s %s=", cmd, name) < 0)
8934 return FAIL;
8935 if (wc_use_keyname((char_u *)valuep, &wc))
8937 /* print 'wildchar' and 'wildcharm' as a key name */
8938 if (fputs((char *)get_special_key_name((int)wc, 0), fd) < 0)
8939 return FAIL;
8941 else if (fprintf(fd, "%ld", *valuep) < 0)
8942 return FAIL;
8943 if (put_eol(fd) < 0)
8944 return FAIL;
8945 return OK;
8948 static int
8949 put_setbool(fd, cmd, name, value)
8950 FILE *fd;
8951 char *cmd;
8952 char *name;
8953 int value;
8955 if (value < 0) /* global/local option using global value */
8956 return OK;
8957 if (fprintf(fd, "%s %s%s", cmd, value ? "" : "no", name) < 0
8958 || put_eol(fd) < 0)
8959 return FAIL;
8960 return OK;
8964 * Clear all the terminal options.
8965 * If the option has been allocated, free the memory.
8966 * Terminal options are never hidden or indirect.
8968 void
8969 clear_termoptions()
8972 * Reset a few things before clearing the old options. This may cause
8973 * outputting a few things that the terminal doesn't understand, but the
8974 * screen will be cleared later, so this is OK.
8976 #ifdef FEAT_MOUSE_TTY
8977 mch_setmouse(FALSE); /* switch mouse off */
8978 #endif
8979 #ifdef FEAT_TITLE
8980 mch_restore_title(3); /* restore window titles */
8981 #endif
8982 #if defined(FEAT_XCLIPBOARD) && defined(FEAT_GUI)
8983 /* When starting the GUI close the display opened for the clipboard.
8984 * After restoring the title, because that will need the display. */
8985 if (gui.starting)
8986 clear_xterm_clip();
8987 #endif
8988 #ifdef WIN3264
8990 * Check if this is allowed now.
8992 if (can_end_termcap_mode(FALSE) == TRUE)
8993 #endif
8994 stoptermcap(); /* stop termcap mode */
8996 free_termoptions();
8999 void
9000 free_termoptions()
9002 struct vimoption *p;
9004 for (p = &options[0]; p->fullname != NULL; p++)
9005 if (istermoption(p))
9007 if (p->flags & P_ALLOCED)
9008 free_string_option(*(char_u **)(p->var));
9009 if (p->flags & P_DEF_ALLOCED)
9010 free_string_option(p->def_val[VI_DEFAULT]);
9011 *(char_u **)(p->var) = empty_option;
9012 p->def_val[VI_DEFAULT] = empty_option;
9013 p->flags &= ~(P_ALLOCED|P_DEF_ALLOCED);
9015 clear_termcodes();
9019 * Free the string for one term option, if it was allocated.
9020 * Set the string to empty_option and clear allocated flag.
9021 * "var" points to the option value.
9023 void
9024 free_one_termoption(var)
9025 char_u *var;
9027 struct vimoption *p;
9029 for (p = &options[0]; p->fullname != NULL; p++)
9030 if (p->var == var)
9032 if (p->flags & P_ALLOCED)
9033 free_string_option(*(char_u **)(p->var));
9034 *(char_u **)(p->var) = empty_option;
9035 p->flags &= ~P_ALLOCED;
9036 break;
9041 * Set the terminal option defaults to the current value.
9042 * Used after setting the terminal name.
9044 void
9045 set_term_defaults()
9047 struct vimoption *p;
9049 for (p = &options[0]; p->fullname != NULL; p++)
9051 if (istermoption(p) && p->def_val[VI_DEFAULT] != *(char_u **)(p->var))
9053 if (p->flags & P_DEF_ALLOCED)
9055 free_string_option(p->def_val[VI_DEFAULT]);
9056 p->flags &= ~P_DEF_ALLOCED;
9058 p->def_val[VI_DEFAULT] = *(char_u **)(p->var);
9059 if (p->flags & P_ALLOCED)
9061 p->flags |= P_DEF_ALLOCED;
9062 p->flags &= ~P_ALLOCED; /* don't free the value now */
9069 * return TRUE if 'p' starts with 't_'
9071 static int
9072 istermoption(p)
9073 struct vimoption *p;
9075 return (p->fullname[0] == 't' && p->fullname[1] == '_');
9079 * Compute columns for ruler and shown command. 'sc_col' is also used to
9080 * decide what the maximum length of a message on the status line can be.
9081 * If there is a status line for the last window, 'sc_col' is independent
9082 * of 'ru_col'.
9085 #define COL_RULER 17 /* columns needed by standard ruler */
9087 void
9088 comp_col()
9090 #if defined(FEAT_CMDL_INFO) && defined(FEAT_WINDOWS)
9091 int last_has_status = (p_ls == 2 || (p_ls == 1 && firstwin != lastwin));
9093 sc_col = 0;
9094 ru_col = 0;
9095 if (p_ru)
9097 #ifdef FEAT_STL_OPT
9098 ru_col = (ru_wid ? ru_wid : COL_RULER) + 1;
9099 #else
9100 ru_col = COL_RULER + 1;
9101 #endif
9102 /* no last status line, adjust sc_col */
9103 if (!last_has_status)
9104 sc_col = ru_col;
9106 if (p_sc)
9108 sc_col += SHOWCMD_COLS;
9109 if (!p_ru || last_has_status) /* no need for separating space */
9110 ++sc_col;
9112 sc_col = Columns - sc_col;
9113 ru_col = Columns - ru_col;
9114 if (sc_col <= 0) /* screen too narrow, will become a mess */
9115 sc_col = 1;
9116 if (ru_col <= 0)
9117 ru_col = 1;
9118 #else
9119 sc_col = Columns;
9120 ru_col = Columns;
9121 #endif
9125 * Get pointer to option variable, depending on local or global scope.
9127 static char_u *
9128 get_varp_scope(p, opt_flags)
9129 struct vimoption *p;
9130 int opt_flags;
9132 if ((opt_flags & OPT_GLOBAL) && p->indir != PV_NONE)
9134 if (p->var == VAR_WIN)
9135 return (char_u *)GLOBAL_WO(get_varp(p));
9136 return p->var;
9138 if ((opt_flags & OPT_LOCAL) && ((int)p->indir & PV_BOTH))
9140 switch ((int)p->indir)
9142 #ifdef FEAT_QUICKFIX
9143 case PV_EFM: return (char_u *)&(curbuf->b_p_efm);
9144 case PV_GP: return (char_u *)&(curbuf->b_p_gp);
9145 case PV_MP: return (char_u *)&(curbuf->b_p_mp);
9146 #endif
9147 case PV_EP: return (char_u *)&(curbuf->b_p_ep);
9148 case PV_KP: return (char_u *)&(curbuf->b_p_kp);
9149 case PV_PATH: return (char_u *)&(curbuf->b_p_path);
9150 case PV_AR: return (char_u *)&(curbuf->b_p_ar);
9151 case PV_TAGS: return (char_u *)&(curbuf->b_p_tags);
9152 #ifdef FEAT_FIND_ID
9153 case PV_DEF: return (char_u *)&(curbuf->b_p_def);
9154 case PV_INC: return (char_u *)&(curbuf->b_p_inc);
9155 #endif
9156 #ifdef FEAT_INS_EXPAND
9157 case PV_DICT: return (char_u *)&(curbuf->b_p_dict);
9158 case PV_TSR: return (char_u *)&(curbuf->b_p_tsr);
9159 #endif
9160 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9161 case PV_BEXPR: return (char_u *)&(curbuf->b_p_bexpr);
9162 #endif
9163 #ifdef FEAT_STL_OPT
9164 case PV_STL: return (char_u *)&(curwin->w_p_stl);
9165 #endif
9167 return NULL; /* "cannot happen" */
9169 return get_varp(p);
9173 * Get pointer to option variable.
9175 static char_u *
9176 get_varp(p)
9177 struct vimoption *p;
9179 /* hidden option, always return NULL */
9180 if (p->var == NULL)
9181 return NULL;
9183 switch ((int)p->indir)
9185 case PV_NONE: return p->var;
9187 /* global option with local value: use local value if it's been set */
9188 case PV_EP: return *curbuf->b_p_ep != NUL
9189 ? (char_u *)&curbuf->b_p_ep : p->var;
9190 case PV_KP: return *curbuf->b_p_kp != NUL
9191 ? (char_u *)&curbuf->b_p_kp : p->var;
9192 case PV_PATH: return *curbuf->b_p_path != NUL
9193 ? (char_u *)&(curbuf->b_p_path) : p->var;
9194 case PV_AR: return curbuf->b_p_ar >= 0
9195 ? (char_u *)&(curbuf->b_p_ar) : p->var;
9196 case PV_TAGS: return *curbuf->b_p_tags != NUL
9197 ? (char_u *)&(curbuf->b_p_tags) : p->var;
9198 #ifdef FEAT_FIND_ID
9199 case PV_DEF: return *curbuf->b_p_def != NUL
9200 ? (char_u *)&(curbuf->b_p_def) : p->var;
9201 case PV_INC: return *curbuf->b_p_inc != NUL
9202 ? (char_u *)&(curbuf->b_p_inc) : p->var;
9203 #endif
9204 #ifdef FEAT_INS_EXPAND
9205 case PV_DICT: return *curbuf->b_p_dict != NUL
9206 ? (char_u *)&(curbuf->b_p_dict) : p->var;
9207 case PV_TSR: return *curbuf->b_p_tsr != NUL
9208 ? (char_u *)&(curbuf->b_p_tsr) : p->var;
9209 #endif
9210 #ifdef FEAT_QUICKFIX
9211 case PV_EFM: return *curbuf->b_p_efm != NUL
9212 ? (char_u *)&(curbuf->b_p_efm) : p->var;
9213 case PV_GP: return *curbuf->b_p_gp != NUL
9214 ? (char_u *)&(curbuf->b_p_gp) : p->var;
9215 case PV_MP: return *curbuf->b_p_mp != NUL
9216 ? (char_u *)&(curbuf->b_p_mp) : p->var;
9217 #endif
9218 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9219 case PV_BEXPR: return *curbuf->b_p_bexpr != NUL
9220 ? (char_u *)&(curbuf->b_p_bexpr) : p->var;
9221 #endif
9222 #ifdef FEAT_STL_OPT
9223 case PV_STL: return *curwin->w_p_stl != NUL
9224 ? (char_u *)&(curwin->w_p_stl) : p->var;
9225 #endif
9227 #ifdef FEAT_ARABIC
9228 case PV_ARAB: return (char_u *)&(curwin->w_p_arab);
9229 #endif
9230 case PV_LIST: return (char_u *)&(curwin->w_p_list);
9231 #ifdef FEAT_SPELL
9232 case PV_SPELL: return (char_u *)&(curwin->w_p_spell);
9233 #endif
9234 #ifdef FEAT_SYN_HL
9235 case PV_CUC: return (char_u *)&(curwin->w_p_cuc);
9236 case PV_CUL: return (char_u *)&(curwin->w_p_cul);
9237 #endif
9238 #ifdef FEAT_DIFF
9239 case PV_DIFF: return (char_u *)&(curwin->w_p_diff);
9240 #endif
9241 #ifdef FEAT_FOLDING
9242 case PV_FDC: return (char_u *)&(curwin->w_p_fdc);
9243 case PV_FEN: return (char_u *)&(curwin->w_p_fen);
9244 case PV_FDI: return (char_u *)&(curwin->w_p_fdi);
9245 case PV_FDL: return (char_u *)&(curwin->w_p_fdl);
9246 case PV_FDM: return (char_u *)&(curwin->w_p_fdm);
9247 case PV_FML: return (char_u *)&(curwin->w_p_fml);
9248 case PV_FDN: return (char_u *)&(curwin->w_p_fdn);
9249 # ifdef FEAT_EVAL
9250 case PV_FDE: return (char_u *)&(curwin->w_p_fde);
9251 case PV_FDT: return (char_u *)&(curwin->w_p_fdt);
9252 # endif
9253 case PV_FMR: return (char_u *)&(curwin->w_p_fmr);
9254 #endif
9255 case PV_NU: return (char_u *)&(curwin->w_p_nu);
9256 #ifdef FEAT_LINEBREAK
9257 case PV_NUW: return (char_u *)&(curwin->w_p_nuw);
9258 #endif
9259 #ifdef FEAT_WINDOWS
9260 case PV_WFH: return (char_u *)&(curwin->w_p_wfh);
9261 #endif
9262 #ifdef FEAT_VERTSPLIT
9263 case PV_WFW: return (char_u *)&(curwin->w_p_wfw);
9264 #endif
9265 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
9266 case PV_PVW: return (char_u *)&(curwin->w_p_pvw);
9267 #endif
9268 #ifdef FEAT_RIGHTLEFT
9269 case PV_RL: return (char_u *)&(curwin->w_p_rl);
9270 case PV_RLC: return (char_u *)&(curwin->w_p_rlc);
9271 #endif
9272 case PV_SCROLL: return (char_u *)&(curwin->w_p_scr);
9273 case PV_WRAP: return (char_u *)&(curwin->w_p_wrap);
9274 #ifdef FEAT_LINEBREAK
9275 case PV_LBR: return (char_u *)&(curwin->w_p_lbr);
9276 #endif
9277 #ifdef FEAT_SCROLLBIND
9278 case PV_SCBIND: return (char_u *)&(curwin->w_p_scb);
9279 #endif
9281 case PV_AI: return (char_u *)&(curbuf->b_p_ai);
9282 case PV_BIN: return (char_u *)&(curbuf->b_p_bin);
9283 #ifdef FEAT_MBYTE
9284 case PV_BOMB: return (char_u *)&(curbuf->b_p_bomb);
9285 #endif
9286 #if defined(FEAT_QUICKFIX)
9287 case PV_BH: return (char_u *)&(curbuf->b_p_bh);
9288 case PV_BT: return (char_u *)&(curbuf->b_p_bt);
9289 #endif
9290 case PV_BL: return (char_u *)&(curbuf->b_p_bl);
9291 case PV_CI: return (char_u *)&(curbuf->b_p_ci);
9292 #ifdef FEAT_CINDENT
9293 case PV_CIN: return (char_u *)&(curbuf->b_p_cin);
9294 case PV_CINK: return (char_u *)&(curbuf->b_p_cink);
9295 case PV_CINO: return (char_u *)&(curbuf->b_p_cino);
9296 #endif
9297 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
9298 case PV_CINW: return (char_u *)&(curbuf->b_p_cinw);
9299 #endif
9300 #ifdef FEAT_COMMENTS
9301 case PV_COM: return (char_u *)&(curbuf->b_p_com);
9302 #endif
9303 #ifdef FEAT_FOLDING
9304 case PV_CMS: return (char_u *)&(curbuf->b_p_cms);
9305 #endif
9306 #ifdef FEAT_INS_EXPAND
9307 case PV_CPT: return (char_u *)&(curbuf->b_p_cpt);
9308 #endif
9309 #ifdef FEAT_COMPL_FUNC
9310 case PV_CFU: return (char_u *)&(curbuf->b_p_cfu);
9311 case PV_OFU: return (char_u *)&(curbuf->b_p_ofu);
9312 case PV_TFU: return (char_u *)&(curbuf->b_p_tfu);
9313 #endif
9314 case PV_EOL: return (char_u *)&(curbuf->b_p_eol);
9315 case PV_ET: return (char_u *)&(curbuf->b_p_et);
9316 #ifdef FEAT_MBYTE
9317 case PV_FENC: return (char_u *)&(curbuf->b_p_fenc);
9318 #endif
9319 case PV_FF: return (char_u *)&(curbuf->b_p_ff);
9320 #ifdef FEAT_AUTOCMD
9321 case PV_FT: return (char_u *)&(curbuf->b_p_ft);
9322 #endif
9323 case PV_FO: return (char_u *)&(curbuf->b_p_fo);
9324 case PV_FLP: return (char_u *)&(curbuf->b_p_flp);
9325 case PV_IMI: return (char_u *)&(curbuf->b_p_iminsert);
9326 case PV_IMS: return (char_u *)&(curbuf->b_p_imsearch);
9327 case PV_INF: return (char_u *)&(curbuf->b_p_inf);
9328 case PV_ISK: return (char_u *)&(curbuf->b_p_isk);
9329 #ifdef FEAT_FIND_ID
9330 # ifdef FEAT_EVAL
9331 case PV_INEX: return (char_u *)&(curbuf->b_p_inex);
9332 # endif
9333 #endif
9334 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
9335 case PV_INDE: return (char_u *)&(curbuf->b_p_inde);
9336 case PV_INDK: return (char_u *)&(curbuf->b_p_indk);
9337 #endif
9338 #ifdef FEAT_EVAL
9339 case PV_FEX: return (char_u *)&(curbuf->b_p_fex);
9340 #endif
9341 #ifdef FEAT_CRYPT
9342 case PV_KEY: return (char_u *)&(curbuf->b_p_key);
9343 #endif
9344 #ifdef FEAT_LISP
9345 case PV_LISP: return (char_u *)&(curbuf->b_p_lisp);
9346 #endif
9347 case PV_ML: return (char_u *)&(curbuf->b_p_ml);
9348 case PV_MPS: return (char_u *)&(curbuf->b_p_mps);
9349 case PV_MA: return (char_u *)&(curbuf->b_p_ma);
9350 case PV_MOD: return (char_u *)&(curbuf->b_changed);
9351 case PV_NF: return (char_u *)&(curbuf->b_p_nf);
9352 #ifdef FEAT_OSFILETYPE
9353 case PV_OFT: return (char_u *)&(curbuf->b_p_oft);
9354 #endif
9355 case PV_PI: return (char_u *)&(curbuf->b_p_pi);
9356 #ifdef FEAT_TEXTOBJ
9357 case PV_QE: return (char_u *)&(curbuf->b_p_qe);
9358 #endif
9359 case PV_RO: return (char_u *)&(curbuf->b_p_ro);
9360 #ifdef FEAT_SMARTINDENT
9361 case PV_SI: return (char_u *)&(curbuf->b_p_si);
9362 #endif
9363 #ifndef SHORT_FNAME
9364 case PV_SN: return (char_u *)&(curbuf->b_p_sn);
9365 #endif
9366 case PV_STS: return (char_u *)&(curbuf->b_p_sts);
9367 #ifdef FEAT_SEARCHPATH
9368 case PV_SUA: return (char_u *)&(curbuf->b_p_sua);
9369 #endif
9370 case PV_SWF: return (char_u *)&(curbuf->b_p_swf);
9371 #ifdef FEAT_SYN_HL
9372 case PV_SMC: return (char_u *)&(curbuf->b_p_smc);
9373 case PV_SYN: return (char_u *)&(curbuf->b_p_syn);
9374 #endif
9375 #ifdef FEAT_SPELL
9376 case PV_SPC: return (char_u *)&(curbuf->b_p_spc);
9377 case PV_SPF: return (char_u *)&(curbuf->b_p_spf);
9378 case PV_SPL: return (char_u *)&(curbuf->b_p_spl);
9379 #endif
9380 case PV_SW: return (char_u *)&(curbuf->b_p_sw);
9381 case PV_TS: return (char_u *)&(curbuf->b_p_ts);
9382 case PV_TW: return (char_u *)&(curbuf->b_p_tw);
9383 case PV_TX: return (char_u *)&(curbuf->b_p_tx);
9384 case PV_WM: return (char_u *)&(curbuf->b_p_wm);
9385 #ifdef FEAT_KEYMAP
9386 case PV_KMAP: return (char_u *)&(curbuf->b_p_keymap);
9387 #endif
9388 default: EMSG(_("E356: get_varp ERROR"));
9390 /* always return a valid pointer to avoid a crash! */
9391 return (char_u *)&(curbuf->b_p_wm);
9395 * Get the value of 'equalprg', either the buffer-local one or the global one.
9397 char_u *
9398 get_equalprg()
9400 if (*curbuf->b_p_ep == NUL)
9401 return p_ep;
9402 return curbuf->b_p_ep;
9405 #if defined(FEAT_WINDOWS) || defined(PROTO)
9407 * Copy options from one window to another.
9408 * Used when splitting a window.
9410 void
9411 win_copy_options(wp_from, wp_to)
9412 win_T *wp_from;
9413 win_T *wp_to;
9415 copy_winopt(&wp_from->w_onebuf_opt, &wp_to->w_onebuf_opt);
9416 copy_winopt(&wp_from->w_allbuf_opt, &wp_to->w_allbuf_opt);
9417 # ifdef FEAT_RIGHTLEFT
9418 # ifdef FEAT_FKMAP
9419 /* Is this right? */
9420 wp_to->w_farsi = wp_from->w_farsi;
9421 # endif
9422 # endif
9424 #endif
9427 * Copy the options from one winopt_T to another.
9428 * Doesn't free the old option values in "to", use clear_winopt() for that.
9429 * The 'scroll' option is not copied, because it depends on the window height.
9430 * The 'previewwindow' option is reset, there can be only one preview window.
9432 void
9433 copy_winopt(from, to)
9434 winopt_T *from;
9435 winopt_T *to;
9437 #ifdef FEAT_ARABIC
9438 to->wo_arab = from->wo_arab;
9439 #endif
9440 to->wo_list = from->wo_list;
9441 to->wo_nu = from->wo_nu;
9442 #ifdef FEAT_LINEBREAK
9443 to->wo_nuw = from->wo_nuw;
9444 #endif
9445 #ifdef FEAT_RIGHTLEFT
9446 to->wo_rl = from->wo_rl;
9447 to->wo_rlc = vim_strsave(from->wo_rlc);
9448 #endif
9449 #ifdef FEAT_STL_OPT
9450 to->wo_stl = vim_strsave(from->wo_stl);
9451 #endif
9452 to->wo_wrap = from->wo_wrap;
9453 #ifdef FEAT_LINEBREAK
9454 to->wo_lbr = from->wo_lbr;
9455 #endif
9456 #ifdef FEAT_SCROLLBIND
9457 to->wo_scb = from->wo_scb;
9458 #endif
9459 #ifdef FEAT_SPELL
9460 to->wo_spell = from->wo_spell;
9461 #endif
9462 #ifdef FEAT_SYN_HL
9463 to->wo_cuc = from->wo_cuc;
9464 to->wo_cul = from->wo_cul;
9465 #endif
9466 #ifdef FEAT_DIFF
9467 to->wo_diff = from->wo_diff;
9468 #endif
9469 #ifdef FEAT_FOLDING
9470 to->wo_fdc = from->wo_fdc;
9471 to->wo_fen = from->wo_fen;
9472 to->wo_fdi = vim_strsave(from->wo_fdi);
9473 to->wo_fml = from->wo_fml;
9474 to->wo_fdl = from->wo_fdl;
9475 to->wo_fdm = vim_strsave(from->wo_fdm);
9476 to->wo_fdn = from->wo_fdn;
9477 # ifdef FEAT_EVAL
9478 to->wo_fde = vim_strsave(from->wo_fde);
9479 to->wo_fdt = vim_strsave(from->wo_fdt);
9480 # endif
9481 to->wo_fmr = vim_strsave(from->wo_fmr);
9482 #endif
9483 check_winopt(to); /* don't want NULL pointers */
9487 * Check string options in a window for a NULL value.
9489 void
9490 check_win_options(win)
9491 win_T *win;
9493 check_winopt(&win->w_onebuf_opt);
9494 check_winopt(&win->w_allbuf_opt);
9498 * Check for NULL pointers in a winopt_T and replace them with empty_option.
9500 void
9501 check_winopt(wop)
9502 winopt_T *wop UNUSED;
9504 #ifdef FEAT_FOLDING
9505 check_string_option(&wop->wo_fdi);
9506 check_string_option(&wop->wo_fdm);
9507 # ifdef FEAT_EVAL
9508 check_string_option(&wop->wo_fde);
9509 check_string_option(&wop->wo_fdt);
9510 # endif
9511 check_string_option(&wop->wo_fmr);
9512 #endif
9513 #ifdef FEAT_RIGHTLEFT
9514 check_string_option(&wop->wo_rlc);
9515 #endif
9516 #ifdef FEAT_STL_OPT
9517 check_string_option(&wop->wo_stl);
9518 #endif
9522 * Free the allocated memory inside a winopt_T.
9524 void
9525 clear_winopt(wop)
9526 winopt_T *wop UNUSED;
9528 #ifdef FEAT_FOLDING
9529 clear_string_option(&wop->wo_fdi);
9530 clear_string_option(&wop->wo_fdm);
9531 # ifdef FEAT_EVAL
9532 clear_string_option(&wop->wo_fde);
9533 clear_string_option(&wop->wo_fdt);
9534 # endif
9535 clear_string_option(&wop->wo_fmr);
9536 #endif
9537 #ifdef FEAT_RIGHTLEFT
9538 clear_string_option(&wop->wo_rlc);
9539 #endif
9540 #ifdef FEAT_STL_OPT
9541 clear_string_option(&wop->wo_stl);
9542 #endif
9546 * Copy global option values to local options for one buffer.
9547 * Used when creating a new buffer and sometimes when entering a buffer.
9548 * flags:
9549 * BCO_ENTER We will enter the buf buffer.
9550 * BCO_ALWAYS Always copy the options, but only set b_p_initialized when
9551 * appropriate.
9552 * BCO_NOHELP Don't copy the values to a help buffer.
9554 void
9555 buf_copy_options(buf, flags)
9556 buf_T *buf;
9557 int flags;
9559 int should_copy = TRUE;
9560 char_u *save_p_isk = NULL; /* init for GCC */
9561 int dont_do_help;
9562 int did_isk = FALSE;
9565 * Don't do anything of the buffer is invalid.
9567 if (buf == NULL || !buf_valid(buf))
9568 return;
9571 * Skip this when the option defaults have not been set yet. Happens when
9572 * main() allocates the first buffer.
9574 if (p_cpo != NULL)
9577 * Always copy when entering and 'cpo' contains 'S'.
9578 * Don't copy when already initialized.
9579 * Don't copy when 'cpo' contains 's' and not entering.
9580 * 'S' BCO_ENTER initialized 's' should_copy
9581 * yes yes X X TRUE
9582 * yes no yes X FALSE
9583 * no X yes X FALSE
9584 * X no no yes FALSE
9585 * X no no no TRUE
9586 * no yes no X TRUE
9588 if ((vim_strchr(p_cpo, CPO_BUFOPTGLOB) == NULL || !(flags & BCO_ENTER))
9589 && (buf->b_p_initialized
9590 || (!(flags & BCO_ENTER)
9591 && vim_strchr(p_cpo, CPO_BUFOPT) != NULL)))
9592 should_copy = FALSE;
9594 if (should_copy || (flags & BCO_ALWAYS))
9596 /* Don't copy the options specific to a help buffer when
9597 * BCO_NOHELP is given or the options were initialized already
9598 * (jumping back to a help file with CTRL-T or CTRL-O) */
9599 dont_do_help = ((flags & BCO_NOHELP) && buf->b_help)
9600 || buf->b_p_initialized;
9601 if (dont_do_help) /* don't free b_p_isk */
9603 save_p_isk = buf->b_p_isk;
9604 buf->b_p_isk = NULL;
9607 * Always free the allocated strings.
9608 * If not already initialized, set 'readonly' and copy 'fileformat'.
9610 if (!buf->b_p_initialized)
9612 free_buf_options(buf, TRUE);
9613 buf->b_p_ro = FALSE; /* don't copy readonly */
9614 buf->b_p_tx = p_tx;
9615 #ifdef FEAT_MBYTE
9616 buf->b_p_fenc = vim_strsave(p_fenc);
9617 #endif
9618 buf->b_p_ff = vim_strsave(p_ff);
9619 #if defined(FEAT_QUICKFIX)
9620 buf->b_p_bh = empty_option;
9621 buf->b_p_bt = empty_option;
9622 #endif
9624 else
9625 free_buf_options(buf, FALSE);
9627 buf->b_p_ai = p_ai;
9628 buf->b_p_ai_nopaste = p_ai_nopaste;
9629 buf->b_p_sw = p_sw;
9630 buf->b_p_tw = p_tw;
9631 buf->b_p_tw_nopaste = p_tw_nopaste;
9632 buf->b_p_tw_nobin = p_tw_nobin;
9633 buf->b_p_wm = p_wm;
9634 buf->b_p_wm_nopaste = p_wm_nopaste;
9635 buf->b_p_wm_nobin = p_wm_nobin;
9636 buf->b_p_bin = p_bin;
9637 #ifdef FEAT_MBYTE
9638 buf->b_p_bomb = p_bomb;
9639 #endif
9640 buf->b_p_et = p_et;
9641 buf->b_p_et_nobin = p_et_nobin;
9642 buf->b_p_ml = p_ml;
9643 buf->b_p_ml_nobin = p_ml_nobin;
9644 buf->b_p_inf = p_inf;
9645 buf->b_p_swf = p_swf;
9646 #ifdef FEAT_INS_EXPAND
9647 buf->b_p_cpt = vim_strsave(p_cpt);
9648 #endif
9649 #ifdef FEAT_COMPL_FUNC
9650 buf->b_p_cfu = vim_strsave(p_cfu);
9651 buf->b_p_ofu = vim_strsave(p_ofu);
9652 buf->b_p_tfu = vim_strsave(p_tfu);
9653 #endif
9654 buf->b_p_sts = p_sts;
9655 buf->b_p_sts_nopaste = p_sts_nopaste;
9656 #ifndef SHORT_FNAME
9657 buf->b_p_sn = p_sn;
9658 #endif
9659 #ifdef FEAT_COMMENTS
9660 buf->b_p_com = vim_strsave(p_com);
9661 #endif
9662 #ifdef FEAT_FOLDING
9663 buf->b_p_cms = vim_strsave(p_cms);
9664 #endif
9665 buf->b_p_fo = vim_strsave(p_fo);
9666 buf->b_p_flp = vim_strsave(p_flp);
9667 buf->b_p_nf = vim_strsave(p_nf);
9668 buf->b_p_mps = vim_strsave(p_mps);
9669 #ifdef FEAT_SMARTINDENT
9670 buf->b_p_si = p_si;
9671 #endif
9672 buf->b_p_ci = p_ci;
9673 #ifdef FEAT_CINDENT
9674 buf->b_p_cin = p_cin;
9675 buf->b_p_cink = vim_strsave(p_cink);
9676 buf->b_p_cino = vim_strsave(p_cino);
9677 #endif
9678 #ifdef FEAT_AUTOCMD
9679 /* Don't copy 'filetype', it must be detected */
9680 buf->b_p_ft = empty_option;
9681 #endif
9682 #ifdef FEAT_OSFILETYPE
9683 buf->b_p_oft = vim_strsave(p_oft);
9684 #endif
9685 buf->b_p_pi = p_pi;
9686 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
9687 buf->b_p_cinw = vim_strsave(p_cinw);
9688 #endif
9689 #ifdef FEAT_LISP
9690 buf->b_p_lisp = p_lisp;
9691 #endif
9692 #ifdef FEAT_SYN_HL
9693 /* Don't copy 'syntax', it must be set */
9694 buf->b_p_syn = empty_option;
9695 buf->b_p_smc = p_smc;
9696 #endif
9697 #ifdef FEAT_SPELL
9698 buf->b_p_spc = vim_strsave(p_spc);
9699 (void)compile_cap_prog(buf);
9700 buf->b_p_spf = vim_strsave(p_spf);
9701 buf->b_p_spl = vim_strsave(p_spl);
9702 #endif
9703 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
9704 buf->b_p_inde = vim_strsave(p_inde);
9705 buf->b_p_indk = vim_strsave(p_indk);
9706 #endif
9707 #if defined(FEAT_EVAL)
9708 buf->b_p_fex = vim_strsave(p_fex);
9709 #endif
9710 #ifdef FEAT_CRYPT
9711 buf->b_p_key = vim_strsave(p_key);
9712 #endif
9713 #ifdef FEAT_SEARCHPATH
9714 buf->b_p_sua = vim_strsave(p_sua);
9715 #endif
9716 #ifdef FEAT_KEYMAP
9717 buf->b_p_keymap = vim_strsave(p_keymap);
9718 buf->b_kmap_state |= KEYMAP_INIT;
9719 #endif
9720 /* This isn't really an option, but copying the langmap and IME
9721 * state from the current buffer is better than resetting it. */
9722 buf->b_p_iminsert = p_iminsert;
9723 buf->b_p_imsearch = p_imsearch;
9725 /* options that are normally global but also have a local value
9726 * are not copied, start using the global value */
9727 buf->b_p_ar = -1;
9728 #ifdef FEAT_QUICKFIX
9729 buf->b_p_gp = empty_option;
9730 buf->b_p_mp = empty_option;
9731 buf->b_p_efm = empty_option;
9732 #endif
9733 buf->b_p_ep = empty_option;
9734 buf->b_p_kp = empty_option;
9735 buf->b_p_path = empty_option;
9736 buf->b_p_tags = empty_option;
9737 #ifdef FEAT_FIND_ID
9738 buf->b_p_def = empty_option;
9739 buf->b_p_inc = empty_option;
9740 # ifdef FEAT_EVAL
9741 buf->b_p_inex = vim_strsave(p_inex);
9742 # endif
9743 #endif
9744 #ifdef FEAT_INS_EXPAND
9745 buf->b_p_dict = empty_option;
9746 buf->b_p_tsr = empty_option;
9747 #endif
9748 #ifdef FEAT_TEXTOBJ
9749 buf->b_p_qe = vim_strsave(p_qe);
9750 #endif
9751 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9752 buf->b_p_bexpr = empty_option;
9753 #endif
9756 * Don't copy the options set by ex_help(), use the saved values,
9757 * when going from a help buffer to a non-help buffer.
9758 * Don't touch these at all when BCO_NOHELP is used and going from
9759 * or to a help buffer.
9761 if (dont_do_help)
9762 buf->b_p_isk = save_p_isk;
9763 else
9765 buf->b_p_isk = vim_strsave(p_isk);
9766 did_isk = TRUE;
9767 buf->b_p_ts = p_ts;
9768 buf->b_help = FALSE;
9769 #ifdef FEAT_QUICKFIX
9770 if (buf->b_p_bt[0] == 'h')
9771 clear_string_option(&buf->b_p_bt);
9772 #endif
9773 buf->b_p_ma = p_ma;
9778 * When the options should be copied (ignoring BCO_ALWAYS), set the
9779 * flag that indicates that the options have been initialized.
9781 if (should_copy)
9782 buf->b_p_initialized = TRUE;
9785 check_buf_options(buf); /* make sure we don't have NULLs */
9786 if (did_isk)
9787 (void)buf_init_chartab(buf, FALSE);
9791 * Reset the 'modifiable' option and its default value.
9793 void
9794 reset_modifiable()
9796 int opt_idx;
9798 curbuf->b_p_ma = FALSE;
9799 p_ma = FALSE;
9800 opt_idx = findoption((char_u *)"ma");
9801 if (opt_idx >= 0)
9802 options[opt_idx].def_val[VI_DEFAULT] = FALSE;
9806 * Set the global value for 'iminsert' to the local value.
9808 void
9809 set_iminsert_global()
9811 p_iminsert = curbuf->b_p_iminsert;
9815 * Set the global value for 'imsearch' to the local value.
9817 void
9818 set_imsearch_global()
9820 p_imsearch = curbuf->b_p_imsearch;
9823 #if defined(FEAT_CMDL_COMPL) || defined(PROTO)
9824 static int expand_option_idx = -1;
9825 static char_u expand_option_name[5] = {'t', '_', NUL, NUL, NUL};
9826 static int expand_option_flags = 0;
9828 void
9829 set_context_in_set_cmd(xp, arg, opt_flags)
9830 expand_T *xp;
9831 char_u *arg;
9832 int opt_flags; /* OPT_GLOBAL and/or OPT_LOCAL */
9834 int nextchar;
9835 long_u flags = 0; /* init for GCC */
9836 int opt_idx = 0; /* init for GCC */
9837 char_u *p;
9838 char_u *s;
9839 int is_term_option = FALSE;
9840 int key;
9842 expand_option_flags = opt_flags;
9844 xp->xp_context = EXPAND_SETTINGS;
9845 if (*arg == NUL)
9847 xp->xp_pattern = arg;
9848 return;
9850 p = arg + STRLEN(arg) - 1;
9851 if (*p == ' ' && *(p - 1) != '\\')
9853 xp->xp_pattern = p + 1;
9854 return;
9856 while (p > arg)
9858 s = p;
9859 /* count number of backslashes before ' ' or ',' */
9860 if (*p == ' ' || *p == ',')
9862 while (s > arg && *(s - 1) == '\\')
9863 --s;
9865 /* break at a space with an even number of backslashes */
9866 if (*p == ' ' && ((p - s) & 1) == 0)
9868 ++p;
9869 break;
9871 --p;
9873 if (STRNCMP(p, "no", 2) == 0 && STRNCMP(p, "novice", 6) != 0)
9875 xp->xp_context = EXPAND_BOOL_SETTINGS;
9876 p += 2;
9878 if (STRNCMP(p, "inv", 3) == 0)
9880 xp->xp_context = EXPAND_BOOL_SETTINGS;
9881 p += 3;
9883 xp->xp_pattern = arg = p;
9884 if (*arg == '<')
9886 while (*p != '>')
9887 if (*p++ == NUL) /* expand terminal option name */
9888 return;
9889 key = get_special_key_code(arg + 1);
9890 if (key == 0) /* unknown name */
9892 xp->xp_context = EXPAND_NOTHING;
9893 return;
9895 nextchar = *++p;
9896 is_term_option = TRUE;
9897 expand_option_name[2] = KEY2TERMCAP0(key);
9898 expand_option_name[3] = KEY2TERMCAP1(key);
9900 else
9902 if (p[0] == 't' && p[1] == '_')
9904 p += 2;
9905 if (*p != NUL)
9906 ++p;
9907 if (*p == NUL)
9908 return; /* expand option name */
9909 nextchar = *++p;
9910 is_term_option = TRUE;
9911 expand_option_name[2] = p[-2];
9912 expand_option_name[3] = p[-1];
9914 else
9916 /* Allow * wildcard */
9917 while (ASCII_ISALNUM(*p) || *p == '_' || *p == '*')
9918 p++;
9919 if (*p == NUL)
9920 return;
9921 nextchar = *p;
9922 *p = NUL;
9923 opt_idx = findoption(arg);
9924 *p = nextchar;
9925 if (opt_idx == -1 || options[opt_idx].var == NULL)
9927 xp->xp_context = EXPAND_NOTHING;
9928 return;
9930 flags = options[opt_idx].flags;
9931 if (flags & P_BOOL)
9933 xp->xp_context = EXPAND_NOTHING;
9934 return;
9938 /* handle "-=" and "+=" */
9939 if ((nextchar == '-' || nextchar == '+' || nextchar == '^') && p[1] == '=')
9941 ++p;
9942 nextchar = '=';
9944 if ((nextchar != '=' && nextchar != ':')
9945 || xp->xp_context == EXPAND_BOOL_SETTINGS)
9947 xp->xp_context = EXPAND_UNSUCCESSFUL;
9948 return;
9950 if (xp->xp_context != EXPAND_BOOL_SETTINGS && p[1] == NUL)
9952 xp->xp_context = EXPAND_OLD_SETTING;
9953 if (is_term_option)
9954 expand_option_idx = -1;
9955 else
9956 expand_option_idx = opt_idx;
9957 xp->xp_pattern = p + 1;
9958 return;
9960 xp->xp_context = EXPAND_NOTHING;
9961 if (is_term_option || (flags & P_NUM))
9962 return;
9964 xp->xp_pattern = p + 1;
9966 if (flags & P_EXPAND)
9968 p = options[opt_idx].var;
9969 if (p == (char_u *)&p_bdir
9970 || p == (char_u *)&p_dir
9971 || p == (char_u *)&p_path
9972 || p == (char_u *)&p_rtp
9973 #ifdef FEAT_SEARCHPATH
9974 || p == (char_u *)&p_cdpath
9975 #endif
9976 #ifdef FEAT_SESSION
9977 || p == (char_u *)&p_vdir
9978 #endif
9981 xp->xp_context = EXPAND_DIRECTORIES;
9982 if (p == (char_u *)&p_path
9983 #ifdef FEAT_SEARCHPATH
9984 || p == (char_u *)&p_cdpath
9985 #endif
9987 xp->xp_backslash = XP_BS_THREE;
9988 else
9989 xp->xp_backslash = XP_BS_ONE;
9991 else
9993 xp->xp_context = EXPAND_FILES;
9994 /* for 'tags' need three backslashes for a space */
9995 if (p == (char_u *)&p_tags)
9996 xp->xp_backslash = XP_BS_THREE;
9997 else
9998 xp->xp_backslash = XP_BS_ONE;
10002 /* For an option that is a list of file names, find the start of the
10003 * last file name. */
10004 for (p = arg + STRLEN(arg) - 1; p > xp->xp_pattern; --p)
10006 /* count number of backslashes before ' ' or ',' */
10007 if (*p == ' ' || *p == ',')
10009 s = p;
10010 while (s > xp->xp_pattern && *(s - 1) == '\\')
10011 --s;
10012 if ((*p == ' ' && (xp->xp_backslash == XP_BS_THREE && (p - s) < 3))
10013 || (*p == ',' && (flags & P_COMMA) && ((p - s) & 1) == 0))
10015 xp->xp_pattern = p + 1;
10016 break;
10020 #ifdef FEAT_SPELL
10021 /* for 'spellsuggest' start at "file:" */
10022 if (options[opt_idx].var == (char_u *)&p_sps
10023 && STRNCMP(p, "file:", 5) == 0)
10025 xp->xp_pattern = p + 5;
10026 break;
10028 #endif
10031 return;
10035 ExpandSettings(xp, regmatch, num_file, file)
10036 expand_T *xp;
10037 regmatch_T *regmatch;
10038 int *num_file;
10039 char_u ***file;
10041 int num_normal = 0; /* Nr of matching non-term-code settings */
10042 int num_term = 0; /* Nr of matching terminal code settings */
10043 int opt_idx;
10044 int match;
10045 int count = 0;
10046 char_u *str;
10047 int loop;
10048 int is_term_opt;
10049 char_u name_buf[MAX_KEY_NAME_LEN];
10050 static char *(names[]) = {"all", "termcap"};
10051 int ic = regmatch->rm_ic; /* remember the ignore-case flag */
10053 /* do this loop twice:
10054 * loop == 0: count the number of matching options
10055 * loop == 1: copy the matching options into allocated memory
10057 for (loop = 0; loop <= 1; ++loop)
10059 regmatch->rm_ic = ic;
10060 if (xp->xp_context != EXPAND_BOOL_SETTINGS)
10062 for (match = 0; match < (int)(sizeof(names) / sizeof(char *));
10063 ++match)
10064 if (vim_regexec(regmatch, (char_u *)names[match], (colnr_T)0))
10066 if (loop == 0)
10067 num_normal++;
10068 else
10069 (*file)[count++] = vim_strsave((char_u *)names[match]);
10072 for (opt_idx = 0; (str = (char_u *)options[opt_idx].fullname) != NULL;
10073 opt_idx++)
10075 if (options[opt_idx].var == NULL)
10076 continue;
10077 if (xp->xp_context == EXPAND_BOOL_SETTINGS
10078 && !(options[opt_idx].flags & P_BOOL))
10079 continue;
10080 is_term_opt = istermoption(&options[opt_idx]);
10081 if (is_term_opt && num_normal > 0)
10082 continue;
10083 match = FALSE;
10084 if (vim_regexec(regmatch, str, (colnr_T)0)
10085 || (options[opt_idx].shortname != NULL
10086 && vim_regexec(regmatch,
10087 (char_u *)options[opt_idx].shortname, (colnr_T)0)))
10088 match = TRUE;
10089 else if (is_term_opt)
10091 name_buf[0] = '<';
10092 name_buf[1] = 't';
10093 name_buf[2] = '_';
10094 name_buf[3] = str[2];
10095 name_buf[4] = str[3];
10096 name_buf[5] = '>';
10097 name_buf[6] = NUL;
10098 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10100 match = TRUE;
10101 str = name_buf;
10104 if (match)
10106 if (loop == 0)
10108 if (is_term_opt)
10109 num_term++;
10110 else
10111 num_normal++;
10113 else
10114 (*file)[count++] = vim_strsave(str);
10118 * Check terminal key codes, these are not in the option table
10120 if (xp->xp_context != EXPAND_BOOL_SETTINGS && num_normal == 0)
10122 for (opt_idx = 0; (str = get_termcode(opt_idx)) != NULL; opt_idx++)
10124 if (!isprint(str[0]) || !isprint(str[1]))
10125 continue;
10127 name_buf[0] = 't';
10128 name_buf[1] = '_';
10129 name_buf[2] = str[0];
10130 name_buf[3] = str[1];
10131 name_buf[4] = NUL;
10133 match = FALSE;
10134 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10135 match = TRUE;
10136 else
10138 name_buf[0] = '<';
10139 name_buf[1] = 't';
10140 name_buf[2] = '_';
10141 name_buf[3] = str[0];
10142 name_buf[4] = str[1];
10143 name_buf[5] = '>';
10144 name_buf[6] = NUL;
10146 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10147 match = TRUE;
10149 if (match)
10151 if (loop == 0)
10152 num_term++;
10153 else
10154 (*file)[count++] = vim_strsave(name_buf);
10159 * Check special key names.
10161 regmatch->rm_ic = TRUE; /* ignore case here */
10162 for (opt_idx = 0; (str = get_key_name(opt_idx)) != NULL; opt_idx++)
10164 name_buf[0] = '<';
10165 STRCPY(name_buf + 1, str);
10166 STRCAT(name_buf, ">");
10168 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10170 if (loop == 0)
10171 num_term++;
10172 else
10173 (*file)[count++] = vim_strsave(name_buf);
10177 if (loop == 0)
10179 if (num_normal > 0)
10180 *num_file = num_normal;
10181 else if (num_term > 0)
10182 *num_file = num_term;
10183 else
10184 return OK;
10185 *file = (char_u **)alloc((unsigned)(*num_file * sizeof(char_u *)));
10186 if (*file == NULL)
10188 *file = (char_u **)"";
10189 return FAIL;
10193 return OK;
10197 ExpandOldSetting(num_file, file)
10198 int *num_file;
10199 char_u ***file;
10201 char_u *var = NULL; /* init for GCC */
10202 char_u *buf;
10204 *num_file = 0;
10205 *file = (char_u **)alloc((unsigned)sizeof(char_u *));
10206 if (*file == NULL)
10207 return FAIL;
10210 * For a terminal key code expand_option_idx is < 0.
10212 if (expand_option_idx < 0)
10214 var = find_termcode(expand_option_name + 2);
10215 if (var == NULL)
10216 expand_option_idx = findoption(expand_option_name);
10219 if (expand_option_idx >= 0)
10221 /* put string of option value in NameBuff */
10222 option_value2string(&options[expand_option_idx], expand_option_flags);
10223 var = NameBuff;
10225 else if (var == NULL)
10226 var = (char_u *)"";
10228 /* A backslash is required before some characters. This is the reverse of
10229 * what happens in do_set(). */
10230 buf = vim_strsave_escaped(var, escape_chars);
10232 if (buf == NULL)
10234 vim_free(*file);
10235 *file = NULL;
10236 return FAIL;
10239 #ifdef BACKSLASH_IN_FILENAME
10240 /* For MS-Windows et al. we don't double backslashes at the start and
10241 * before a file name character. */
10242 for (var = buf; *var != NUL; mb_ptr_adv(var))
10243 if (var[0] == '\\' && var[1] == '\\'
10244 && expand_option_idx >= 0
10245 && (options[expand_option_idx].flags & P_EXPAND)
10246 && vim_isfilec(var[2])
10247 && (var[2] != '\\' || (var == buf && var[4] != '\\')))
10248 STRMOVE(var, var + 1);
10249 #endif
10251 *file[0] = buf;
10252 *num_file = 1;
10253 return OK;
10255 #endif
10258 * Get the value for the numeric or string option *opp in a nice format into
10259 * NameBuff[]. Must not be called with a hidden option!
10261 static void
10262 option_value2string(opp, opt_flags)
10263 struct vimoption *opp;
10264 int opt_flags; /* OPT_GLOBAL and/or OPT_LOCAL */
10266 char_u *varp;
10268 varp = get_varp_scope(opp, opt_flags);
10270 if (opp->flags & P_NUM)
10272 long wc = 0;
10274 if (wc_use_keyname(varp, &wc))
10275 STRCPY(NameBuff, get_special_key_name((int)wc, 0));
10276 else if (wc != 0)
10277 STRCPY(NameBuff, transchar((int)wc));
10278 else
10279 sprintf((char *)NameBuff, "%ld", *(long *)varp);
10281 else /* P_STRING */
10283 varp = *(char_u **)(varp);
10284 if (varp == NULL) /* just in case */
10285 NameBuff[0] = NUL;
10286 #ifdef FEAT_CRYPT
10287 /* don't show the actual value of 'key', only that it's set */
10288 else if (opp->var == (char_u *)&p_key && *varp)
10289 STRCPY(NameBuff, "*****");
10290 #endif
10291 else if (opp->flags & P_EXPAND)
10292 home_replace(NULL, varp, NameBuff, MAXPATHL, FALSE);
10293 /* Translate 'pastetoggle' into special key names */
10294 else if ((char_u **)opp->var == &p_pt)
10295 str2specialbuf(p_pt, NameBuff, MAXPATHL);
10296 else
10297 vim_strncpy(NameBuff, varp, MAXPATHL - 1);
10302 * Return TRUE if "varp" points to 'wildchar' or 'wildcharm' and it can be
10303 * printed as a keyname.
10304 * "*wcp" is set to the value of the option if it's 'wildchar' or 'wildcharm'.
10306 static int
10307 wc_use_keyname(varp, wcp)
10308 char_u *varp;
10309 long *wcp;
10311 if (((long *)varp == &p_wc) || ((long *)varp == &p_wcm))
10313 *wcp = *(long *)varp;
10314 if (IS_SPECIAL(*wcp) || find_special_key_in_table((int)*wcp) >= 0)
10315 return TRUE;
10317 return FALSE;
10320 #ifdef FEAT_LANGMAP
10322 * Any character has an equivalent 'langmap' character. This is used for
10323 * keyboards that have a special language mode that sends characters above
10324 * 128 (although other characters can be translated too). The "to" field is a
10325 * Vim command character. This avoids having to switch the keyboard back to
10326 * ASCII mode when leaving Insert mode.
10328 * langmap_mapchar[] maps any of 256 chars to an ASCII char used for Vim
10329 * commands.
10330 * When FEAT_MBYTE is defined langmap_mapga.ga_data is a sorted table of
10331 * langmap_entry_T. This does the same as langmap_mapchar[] for characters >=
10332 * 256.
10334 # ifdef FEAT_MBYTE
10336 * With multi-byte support use growarray for 'langmap' chars >= 256
10338 typedef struct
10340 int from;
10341 int to;
10342 } langmap_entry_T;
10344 static garray_T langmap_mapga;
10345 static void langmap_set_entry __ARGS((int from, int to));
10348 * Search for an entry in "langmap_mapga" for "from". If found set the "to"
10349 * field. If not found insert a new entry at the appropriate location.
10351 static void
10352 langmap_set_entry(from, to)
10353 int from;
10354 int to;
10356 langmap_entry_T *entries = (langmap_entry_T *)(langmap_mapga.ga_data);
10357 int a = 0;
10358 int b = langmap_mapga.ga_len;
10360 /* Do a binary search for an existing entry. */
10361 while (a != b)
10363 int i = (a + b) / 2;
10364 int d = entries[i].from - from;
10366 if (d == 0)
10368 entries[i].to = to;
10369 return;
10371 if (d < 0)
10372 a = i + 1;
10373 else
10374 b = i;
10377 if (ga_grow(&langmap_mapga, 1) != OK)
10378 return; /* out of memory */
10380 /* insert new entry at position "a" */
10381 entries = (langmap_entry_T *)(langmap_mapga.ga_data) + a;
10382 mch_memmove(entries + 1, entries,
10383 (langmap_mapga.ga_len - a) * sizeof(langmap_entry_T));
10384 ++langmap_mapga.ga_len;
10385 entries[0].from = from;
10386 entries[0].to = to;
10390 * Apply 'langmap' to multi-byte character "c" and return the result.
10393 langmap_adjust_mb(c)
10394 int c;
10396 langmap_entry_T *entries = (langmap_entry_T *)(langmap_mapga.ga_data);
10397 int a = 0;
10398 int b = langmap_mapga.ga_len;
10400 while (a != b)
10402 int i = (a + b) / 2;
10403 int d = entries[i].from - c;
10405 if (d == 0)
10406 return entries[i].to; /* found matching entry */
10407 if (d < 0)
10408 a = i + 1;
10409 else
10410 b = i;
10412 return c; /* no entry found, return "c" unmodified */
10414 # endif
10416 static void
10417 langmap_init()
10419 int i;
10421 for (i = 0; i < 256; i++)
10422 langmap_mapchar[i] = i; /* we init with a one-to-one map */
10423 # ifdef FEAT_MBYTE
10424 ga_init2(&langmap_mapga, sizeof(langmap_entry_T), 8);
10425 # endif
10429 * Called when langmap option is set; the language map can be
10430 * changed at any time!
10432 static void
10433 langmap_set()
10435 char_u *p;
10436 char_u *p2;
10437 int from, to;
10439 #ifdef FEAT_MBYTE
10440 ga_clear(&langmap_mapga); /* clear the previous map first */
10441 #endif
10442 langmap_init(); /* back to one-to-one map */
10444 for (p = p_langmap; p[0] != NUL; )
10446 for (p2 = p; p2[0] != NUL && p2[0] != ',' && p2[0] != ';';
10447 mb_ptr_adv(p2))
10449 if (p2[0] == '\\' && p2[1] != NUL)
10450 ++p2;
10452 if (p2[0] == ';')
10453 ++p2; /* abcd;ABCD form, p2 points to A */
10454 else
10455 p2 = NULL; /* aAbBcCdD form, p2 is NULL */
10456 while (p[0])
10458 if (p[0] == ',')
10460 ++p;
10461 break;
10463 if (p[0] == '\\' && p[1] != NUL)
10464 ++p;
10465 #ifdef FEAT_MBYTE
10466 from = (*mb_ptr2char)(p);
10467 #else
10468 from = p[0];
10469 #endif
10470 to = NUL;
10471 if (p2 == NULL)
10473 mb_ptr_adv(p);
10474 if (p[0] != ',')
10476 if (p[0] == '\\')
10477 ++p;
10478 #ifdef FEAT_MBYTE
10479 to = (*mb_ptr2char)(p);
10480 #else
10481 to = p[0];
10482 #endif
10485 else
10487 if (p2[0] != ',')
10489 if (p2[0] == '\\')
10490 ++p2;
10491 #ifdef FEAT_MBYTE
10492 to = (*mb_ptr2char)(p2);
10493 #else
10494 to = p2[0];
10495 #endif
10498 if (to == NUL)
10500 EMSG2(_("E357: 'langmap': Matching character missing for %s"),
10501 transchar(from));
10502 return;
10505 #ifdef FEAT_MBYTE
10506 if (from >= 256)
10507 langmap_set_entry(from, to);
10508 else
10509 #endif
10510 langmap_mapchar[from & 255] = to;
10512 /* Advance to next pair */
10513 mb_ptr_adv(p);
10514 if (p2 != NULL)
10516 mb_ptr_adv(p2);
10517 if (*p == ';')
10519 p = p2;
10520 if (p[0] != NUL)
10522 if (p[0] != ',')
10524 EMSG2(_("E358: 'langmap': Extra characters after semicolon: %s"), p);
10525 return;
10527 ++p;
10529 break;
10535 #endif
10538 * Return TRUE if format option 'x' is in effect.
10539 * Take care of no formatting when 'paste' is set.
10542 has_format_option(x)
10543 int x;
10545 if (p_paste)
10546 return FALSE;
10547 return (vim_strchr(curbuf->b_p_fo, x) != NULL);
10551 * Return TRUE if "x" is present in 'shortmess' option, or
10552 * 'shortmess' contains 'a' and "x" is present in SHM_A.
10555 shortmess(x)
10556 int x;
10558 return ( vim_strchr(p_shm, x) != NULL
10559 || (vim_strchr(p_shm, 'a') != NULL
10560 && vim_strchr((char_u *)SHM_A, x) != NULL));
10564 * paste_option_changed() - Called after p_paste was set or reset.
10566 static void
10567 paste_option_changed()
10569 static int old_p_paste = FALSE;
10570 static int save_sm = 0;
10571 #ifdef FEAT_CMDL_INFO
10572 static int save_ru = 0;
10573 #endif
10574 #ifdef FEAT_RIGHTLEFT
10575 static int save_ri = 0;
10576 static int save_hkmap = 0;
10577 #endif
10578 buf_T *buf;
10580 if (p_paste)
10583 * Paste switched from off to on.
10584 * Save the current values, so they can be restored later.
10586 if (!old_p_paste)
10588 /* save options for each buffer */
10589 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10591 buf->b_p_tw_nopaste = buf->b_p_tw;
10592 buf->b_p_wm_nopaste = buf->b_p_wm;
10593 buf->b_p_sts_nopaste = buf->b_p_sts;
10594 buf->b_p_ai_nopaste = buf->b_p_ai;
10597 /* save global options */
10598 save_sm = p_sm;
10599 #ifdef FEAT_CMDL_INFO
10600 save_ru = p_ru;
10601 #endif
10602 #ifdef FEAT_RIGHTLEFT
10603 save_ri = p_ri;
10604 save_hkmap = p_hkmap;
10605 #endif
10606 /* save global values for local buffer options */
10607 p_tw_nopaste = p_tw;
10608 p_wm_nopaste = p_wm;
10609 p_sts_nopaste = p_sts;
10610 p_ai_nopaste = p_ai;
10614 * Always set the option values, also when 'paste' is set when it is
10615 * already on.
10617 /* set options for each buffer */
10618 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10620 buf->b_p_tw = 0; /* textwidth is 0 */
10621 buf->b_p_wm = 0; /* wrapmargin is 0 */
10622 buf->b_p_sts = 0; /* softtabstop is 0 */
10623 buf->b_p_ai = 0; /* no auto-indent */
10626 /* set global options */
10627 p_sm = 0; /* no showmatch */
10628 #ifdef FEAT_CMDL_INFO
10629 # ifdef FEAT_WINDOWS
10630 if (p_ru)
10631 status_redraw_all(); /* redraw to remove the ruler */
10632 # endif
10633 p_ru = 0; /* no ruler */
10634 #endif
10635 #ifdef FEAT_RIGHTLEFT
10636 p_ri = 0; /* no reverse insert */
10637 p_hkmap = 0; /* no Hebrew keyboard */
10638 #endif
10639 /* set global values for local buffer options */
10640 p_tw = 0;
10641 p_wm = 0;
10642 p_sts = 0;
10643 p_ai = 0;
10647 * Paste switched from on to off: Restore saved values.
10649 else if (old_p_paste)
10651 /* restore options for each buffer */
10652 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10654 buf->b_p_tw = buf->b_p_tw_nopaste;
10655 buf->b_p_wm = buf->b_p_wm_nopaste;
10656 buf->b_p_sts = buf->b_p_sts_nopaste;
10657 buf->b_p_ai = buf->b_p_ai_nopaste;
10660 /* restore global options */
10661 p_sm = save_sm;
10662 #ifdef FEAT_CMDL_INFO
10663 # ifdef FEAT_WINDOWS
10664 if (p_ru != save_ru)
10665 status_redraw_all(); /* redraw to draw the ruler */
10666 # endif
10667 p_ru = save_ru;
10668 #endif
10669 #ifdef FEAT_RIGHTLEFT
10670 p_ri = save_ri;
10671 p_hkmap = save_hkmap;
10672 #endif
10673 /* set global values for local buffer options */
10674 p_tw = p_tw_nopaste;
10675 p_wm = p_wm_nopaste;
10676 p_sts = p_sts_nopaste;
10677 p_ai = p_ai_nopaste;
10680 old_p_paste = p_paste;
10684 * vimrc_found() - Called when a ".vimrc" or "VIMINIT" has been found.
10686 * Reset 'compatible' and set the values for options that didn't get set yet
10687 * to the Vim defaults.
10688 * Don't do this if the 'compatible' option has been set or reset before.
10689 * When "fname" is not NULL, use it to set $"envname" when it wasn't set yet.
10691 void
10692 vimrc_found(fname, envname)
10693 char_u *fname;
10694 char_u *envname;
10696 int opt_idx;
10697 int dofree = FALSE;
10698 char_u *p;
10700 if (!option_was_set((char_u *)"cp"))
10702 p_cp = FALSE;
10703 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
10704 if (!(options[opt_idx].flags & (P_WAS_SET|P_VI_DEF)))
10705 set_option_default(opt_idx, OPT_FREE, FALSE);
10706 didset_options();
10709 if (fname != NULL)
10711 p = vim_getenv(envname, &dofree);
10712 if (p == NULL)
10714 /* Set $MYVIMRC to the first vimrc file found. */
10715 p = FullName_save(fname, FALSE);
10716 if (p != NULL)
10718 vim_setenv(envname, p);
10719 vim_free(p);
10722 else if (dofree)
10723 vim_free(p);
10728 * Set 'compatible' on or off. Called for "-C" and "-N" command line arg.
10730 void
10731 change_compatible(on)
10732 int on;
10734 int opt_idx;
10736 if (p_cp != on)
10738 p_cp = on;
10739 compatible_set();
10741 opt_idx = findoption((char_u *)"cp");
10742 if (opt_idx >= 0)
10743 options[opt_idx].flags |= P_WAS_SET;
10747 * Return TRUE when option "name" has been set.
10750 option_was_set(name)
10751 char_u *name;
10753 int idx;
10755 idx = findoption(name);
10756 if (idx < 0) /* unknown option */
10757 return FALSE;
10758 if (options[idx].flags & P_WAS_SET)
10759 return TRUE;
10760 return FALSE;
10764 * compatible_set() - Called when 'compatible' has been set or unset.
10766 * When 'compatible' set: Set all relevant options (those that have the P_VIM)
10767 * flag) to a Vi compatible value.
10768 * When 'compatible' is unset: Set all options that have a different default
10769 * for Vim (without the P_VI_DEF flag) to that default.
10771 static void
10772 compatible_set()
10774 int opt_idx;
10776 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
10777 if ( ((options[opt_idx].flags & P_VIM) && p_cp)
10778 || (!(options[opt_idx].flags & P_VI_DEF) && !p_cp))
10779 set_option_default(opt_idx, OPT_FREE, p_cp);
10780 didset_options();
10783 #ifdef FEAT_LINEBREAK
10785 # if defined(__BORLANDC__) && (__BORLANDC__ < 0x500)
10786 /* Borland C++ screws up loop optimisation here (negri) */
10787 #pragma option -O-l
10788 # endif
10791 * fill_breakat_flags() -- called when 'breakat' changes value.
10793 static void
10794 fill_breakat_flags()
10796 char_u *p;
10797 int i;
10799 for (i = 0; i < 256; i++)
10800 breakat_flags[i] = FALSE;
10802 if (p_breakat != NULL)
10803 for (p = p_breakat; *p; p++)
10804 breakat_flags[*p] = TRUE;
10807 # if defined(__BORLANDC__) && (__BORLANDC__ < 0x500)
10808 #pragma option -O.l
10809 # endif
10811 #endif
10814 * Check an option that can be a range of string values.
10816 * Return OK for correct value, FAIL otherwise.
10817 * Empty is always OK.
10819 static int
10820 check_opt_strings(val, values, list)
10821 char_u *val;
10822 char **values;
10823 int list; /* when TRUE: accept a list of values */
10825 return opt_strings_flags(val, values, NULL, list);
10829 * Handle an option that can be a range of string values.
10830 * Set a flag in "*flagp" for each string present.
10832 * Return OK for correct value, FAIL otherwise.
10833 * Empty is always OK.
10835 static int
10836 opt_strings_flags(val, values, flagp, list)
10837 char_u *val; /* new value */
10838 char **values; /* array of valid string values */
10839 unsigned *flagp;
10840 int list; /* when TRUE: accept a list of values */
10842 int i;
10843 int len;
10844 unsigned new_flags = 0;
10846 while (*val)
10848 for (i = 0; ; ++i)
10850 if (values[i] == NULL) /* val not found in values[] */
10851 return FAIL;
10853 len = (int)STRLEN(values[i]);
10854 if (STRNCMP(values[i], val, len) == 0
10855 && ((list && val[len] == ',') || val[len] == NUL))
10857 val += len + (val[len] == ',');
10858 new_flags |= (1 << i);
10859 break; /* check next item in val list */
10863 if (flagp != NULL)
10864 *flagp = new_flags;
10866 return OK;
10870 * Read the 'wildmode' option, fill wim_flags[].
10872 static int
10873 check_opt_wim()
10875 char_u new_wim_flags[4];
10876 char_u *p;
10877 int i;
10878 int idx = 0;
10880 for (i = 0; i < 4; ++i)
10881 new_wim_flags[i] = 0;
10883 for (p = p_wim; *p; ++p)
10885 for (i = 0; ASCII_ISALPHA(p[i]); ++i)
10887 if (p[i] != NUL && p[i] != ',' && p[i] != ':')
10888 return FAIL;
10889 if (i == 7 && STRNCMP(p, "longest", 7) == 0)
10890 new_wim_flags[idx] |= WIM_LONGEST;
10891 else if (i == 4 && STRNCMP(p, "full", 4) == 0)
10892 new_wim_flags[idx] |= WIM_FULL;
10893 else if (i == 4 && STRNCMP(p, "list", 4) == 0)
10894 new_wim_flags[idx] |= WIM_LIST;
10895 else
10896 return FAIL;
10897 p += i;
10898 if (*p == NUL)
10899 break;
10900 if (*p == ',')
10902 if (idx == 3)
10903 return FAIL;
10904 ++idx;
10908 /* fill remaining entries with last flag */
10909 while (idx < 3)
10911 new_wim_flags[idx + 1] = new_wim_flags[idx];
10912 ++idx;
10915 /* only when there are no errors, wim_flags[] is changed */
10916 for (i = 0; i < 4; ++i)
10917 wim_flags[i] = new_wim_flags[i];
10918 return OK;
10922 * Check if backspacing over something is allowed.
10925 can_bs(what)
10926 int what; /* BS_INDENT, BS_EOL or BS_START */
10928 switch (*p_bs)
10930 case '2': return TRUE;
10931 case '1': return (what != BS_START);
10932 case '0': return FALSE;
10934 return vim_strchr(p_bs, what) != NULL;
10938 * Save the current values of 'fileformat' and 'fileencoding', so that we know
10939 * the file must be considered changed when the value is different.
10941 void
10942 save_file_ff(buf)
10943 buf_T *buf;
10945 buf->b_start_ffc = *buf->b_p_ff;
10946 buf->b_start_eol = buf->b_p_eol;
10947 #ifdef FEAT_MBYTE
10948 buf->b_start_bomb = buf->b_p_bomb;
10950 /* Only use free/alloc when necessary, they take time. */
10951 if (buf->b_start_fenc == NULL
10952 || STRCMP(buf->b_start_fenc, buf->b_p_fenc) != 0)
10954 vim_free(buf->b_start_fenc);
10955 buf->b_start_fenc = vim_strsave(buf->b_p_fenc);
10957 #endif
10961 * Return TRUE if 'fileformat' and/or 'fileencoding' has a different value
10962 * from when editing started (save_file_ff() called).
10963 * Also when 'endofline' was changed and 'binary' is set, or when 'bomb' was
10964 * changed and 'binary' is not set.
10965 * Don't consider a new, empty buffer to be changed.
10968 file_ff_differs(buf)
10969 buf_T *buf;
10971 /* In a buffer that was never loaded the options are not valid. */
10972 if (buf->b_flags & BF_NEVERLOADED)
10973 return FALSE;
10974 if ((buf->b_flags & BF_NEW)
10975 && buf->b_ml.ml_line_count == 1
10976 && *ml_get_buf(buf, (linenr_T)1, FALSE) == NUL)
10977 return FALSE;
10978 if (buf->b_start_ffc != *buf->b_p_ff)
10979 return TRUE;
10980 if (buf->b_p_bin && buf->b_start_eol != buf->b_p_eol)
10981 return TRUE;
10982 #ifdef FEAT_MBYTE
10983 if (!buf->b_p_bin && buf->b_start_bomb != buf->b_p_bomb)
10984 return TRUE;
10985 if (buf->b_start_fenc == NULL)
10986 return (*buf->b_p_fenc != NUL);
10987 return (STRCMP(buf->b_start_fenc, buf->b_p_fenc) != 0);
10988 #else
10989 return FALSE;
10990 #endif
10994 * return OK if "p" is a valid fileformat name, FAIL otherwise.
10997 check_ff_value(p)
10998 char_u *p;
11000 return check_opt_strings(p, p_ff_values, FALSE);