Don't include Carbon.h in os_mac.h
[MacVim.git] / src / option.c
blob94d212ca881e39a62e1df6e75049f53d9418643b
1 /* vi:set ts=8 sts=4 sw=4:
3 * VIM - Vi IMproved by Bram Moolenaar
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
11 * Code to handle user-settable options. This is all pretty much table-
12 * driven. Checklist for adding a new option:
13 * - Put it in the options array below (copy an existing entry).
14 * - For a global option: Add a variable for it in option.h.
15 * - For a buffer or window local option:
16 * - Add a PV_XX entry to the enum below.
17 * - Add a variable to the window or buffer struct in structs.h.
18 * - For a window option, add some code to copy_winopt().
19 * - For a buffer option, add some code to buf_copy_options().
20 * - For a buffer string option, add code to check_buf_options().
21 * - If it's a numeric option, add any necessary bounds checks to do_set().
22 * - If it's a list of flags, add some code in do_set(), search for WW_ALL.
23 * - When adding an option with expansion (P_EXPAND), but with a different
24 * default for Vi and Vim (no P_VI_DEF), add some code at VIMEXP.
25 * - Add documentation! One line in doc/help.txt, full description in
26 * options.txt, and any other related places.
27 * - Add an entry in runtime/optwin.vim.
28 * When making changes:
29 * - Adjust the help for the option in doc/option.txt.
30 * - When an entry has the P_VIM flag, or is lacking the P_VI_DEF flag, add a
31 * comment at the help for the 'compatible' option.
34 #define IN_OPTION_C
35 #include "vim.h"
38 * The options that are local to a window or buffer have "indir" set to one of
39 * these values. Special values:
40 * PV_NONE: global option.
41 * PV_WIN is added: window-local option
42 * PV_BUF is added: buffer-local option
43 * PV_BOTH is added: global option which also has a local value.
45 #define PV_BOTH 0x1000
46 #define PV_WIN 0x2000
47 #define PV_BUF 0x4000
48 #define PV_MASK 0x0fff
49 #define OPT_WIN(x) (idopt_T)(PV_WIN + (int)(x))
50 #define OPT_BUF(x) (idopt_T)(PV_BUF + (int)(x))
51 #define OPT_BOTH(x) (idopt_T)(PV_BOTH + (int)(x))
54 * Definition of the PV_ values for buffer-local options.
55 * The BV_ values are defined in option.h.
57 #define PV_AI OPT_BUF(BV_AI)
58 #define PV_AR OPT_BOTH(OPT_BUF(BV_AR))
59 #ifdef FEAT_QUICKFIX
60 # define PV_BH OPT_BUF(BV_BH)
61 # define PV_BT OPT_BUF(BV_BT)
62 # define PV_EFM OPT_BOTH(OPT_BUF(BV_EFM))
63 # define PV_GP OPT_BOTH(OPT_BUF(BV_GP))
64 # define PV_MP OPT_BOTH(OPT_BUF(BV_MP))
65 #endif
66 #define PV_BIN OPT_BUF(BV_BIN)
67 #define PV_BL OPT_BUF(BV_BL)
68 #ifdef FEAT_MBYTE
69 # define PV_BOMB OPT_BUF(BV_BOMB)
70 #endif
71 #define PV_CI OPT_BUF(BV_CI)
72 #ifdef FEAT_CINDENT
73 # define PV_CIN OPT_BUF(BV_CIN)
74 # define PV_CINK OPT_BUF(BV_CINK)
75 # define PV_CINO OPT_BUF(BV_CINO)
76 #endif
77 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
78 # define PV_CINW OPT_BUF(BV_CINW)
79 #endif
80 #ifdef FEAT_FOLDING
81 # define PV_CMS OPT_BUF(BV_CMS)
82 #endif
83 #ifdef FEAT_COMMENTS
84 # define PV_COM OPT_BUF(BV_COM)
85 #endif
86 #ifdef FEAT_INS_EXPAND
87 # define PV_CPT OPT_BUF(BV_CPT)
88 # define PV_DICT OPT_BOTH(OPT_BUF(BV_DICT))
89 # define PV_TSR OPT_BOTH(OPT_BUF(BV_TSR))
90 #endif
91 #ifdef FEAT_COMPL_FUNC
92 # define PV_CFU OPT_BUF(BV_CFU)
93 #endif
94 #ifdef FEAT_FIND_ID
95 # define PV_DEF OPT_BOTH(OPT_BUF(BV_DEF))
96 # define PV_INC OPT_BOTH(OPT_BUF(BV_INC))
97 #endif
98 #define PV_EOL OPT_BUF(BV_EOL)
99 #define PV_EP OPT_BOTH(OPT_BUF(BV_EP))
100 #define PV_ET OPT_BUF(BV_ET)
101 #ifdef FEAT_MBYTE
102 # define PV_FENC OPT_BUF(BV_FENC)
103 #endif
104 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
105 # define PV_BEXPR OPT_BOTH(OPT_BUF(BV_BEXPR))
106 #endif
107 #ifdef FEAT_EVAL
108 # define PV_FEX OPT_BUF(BV_FEX)
109 #endif
110 #define PV_FF OPT_BUF(BV_FF)
111 #define PV_FLP OPT_BUF(BV_FLP)
112 #define PV_FO OPT_BUF(BV_FO)
113 #ifdef FEAT_AUTOCMD
114 # define PV_FT OPT_BUF(BV_FT)
115 #endif
116 #define PV_IMI OPT_BUF(BV_IMI)
117 #define PV_IMS OPT_BUF(BV_IMS)
118 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
119 # define PV_INDE OPT_BUF(BV_INDE)
120 # define PV_INDK OPT_BUF(BV_INDK)
121 #endif
122 #if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
123 # define PV_INEX OPT_BUF(BV_INEX)
124 #endif
125 #define PV_INF OPT_BUF(BV_INF)
126 #define PV_ISK OPT_BUF(BV_ISK)
127 #ifdef FEAT_CRYPT
128 # define PV_KEY OPT_BUF(BV_KEY)
129 #endif
130 #ifdef FEAT_KEYMAP
131 # define PV_KMAP OPT_BUF(BV_KMAP)
132 #endif
133 #define PV_KP OPT_BOTH(OPT_BUF(BV_KP))
134 #ifdef FEAT_LISP
135 # define PV_LISP OPT_BUF(BV_LISP)
136 #endif
137 #define PV_MA OPT_BUF(BV_MA)
138 #define PV_ML OPT_BUF(BV_ML)
139 #define PV_MOD OPT_BUF(BV_MOD)
140 #define PV_MPS OPT_BUF(BV_MPS)
141 #ifdef FEAT_GUI_MACVIM
142 #define PV_MMTA OPT_BUF(BV_MMTA)
143 #endif
144 #define PV_NF OPT_BUF(BV_NF)
145 #ifdef FEAT_OSFILETYPE
146 # define PV_OFT OPT_BUF(BV_OFT)
147 #endif
148 #ifdef FEAT_COMPL_FUNC
149 # define PV_OFU OPT_BUF(BV_OFU)
150 #endif
151 #define PV_PATH OPT_BOTH(OPT_BUF(BV_PATH))
152 #define PV_PI OPT_BUF(BV_PI)
153 #ifdef FEAT_TEXTOBJ
154 # define PV_QE OPT_BUF(BV_QE)
155 #endif
156 #define PV_RO OPT_BUF(BV_RO)
157 #ifdef FEAT_SMARTINDENT
158 # define PV_SI OPT_BUF(BV_SI)
159 #endif
160 #ifndef SHORT_FNAME
161 # define PV_SN OPT_BUF(BV_SN)
162 #endif
163 #ifdef FEAT_SYN_HL
164 # define PV_SMC OPT_BUF(BV_SMC)
165 # define PV_SYN OPT_BUF(BV_SYN)
166 #endif
167 #ifdef FEAT_SPELL
168 # define PV_SPC OPT_BUF(BV_SPC)
169 # define PV_SPF OPT_BUF(BV_SPF)
170 # define PV_SPL OPT_BUF(BV_SPL)
171 #endif
172 #define PV_STS OPT_BUF(BV_STS)
173 #ifdef FEAT_SEARCHPATH
174 # define PV_SUA OPT_BUF(BV_SUA)
175 #endif
176 #define PV_SW OPT_BUF(BV_SW)
177 #define PV_SWF OPT_BUF(BV_SWF)
178 #define PV_TAGS OPT_BOTH(OPT_BUF(BV_TAGS))
179 #define PV_TS OPT_BUF(BV_TS)
180 #define PV_TW OPT_BUF(BV_TW)
181 #define PV_TX OPT_BUF(BV_TX)
182 #define PV_WM OPT_BUF(BV_WM)
185 * Definition of the PV_ values for window-local options.
186 * The WV_ values are defined in option.h.
188 #define PV_LIST OPT_WIN(WV_LIST)
189 #ifdef FEAT_ARABIC
190 # define PV_ARAB OPT_WIN(WV_ARAB)
191 #endif
192 #ifdef FEAT_DIFF
193 # define PV_DIFF OPT_WIN(WV_DIFF)
194 #endif
195 #ifdef FEAT_FOLDING
196 # define PV_FDC OPT_WIN(WV_FDC)
197 # define PV_FEN OPT_WIN(WV_FEN)
198 # define PV_FDI OPT_WIN(WV_FDI)
199 # define PV_FDL OPT_WIN(WV_FDL)
200 # define PV_FDM OPT_WIN(WV_FDM)
201 # define PV_FML OPT_WIN(WV_FML)
202 # define PV_FDN OPT_WIN(WV_FDN)
203 # ifdef FEAT_EVAL
204 # define PV_FDE OPT_WIN(WV_FDE)
205 # define PV_FDT OPT_WIN(WV_FDT)
206 # endif
207 # define PV_FMR OPT_WIN(WV_FMR)
208 #endif
209 #ifdef FEAT_LINEBREAK
210 # define PV_LBR OPT_WIN(WV_LBR)
211 #endif
212 #define PV_NU OPT_WIN(WV_NU)
213 #ifdef FEAT_LINEBREAK
214 # define PV_NUW OPT_WIN(WV_NUW)
215 #endif
216 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
217 # define PV_PVW OPT_WIN(WV_PVW)
218 #endif
219 #ifdef FEAT_RIGHTLEFT
220 # define PV_RL OPT_WIN(WV_RL)
221 # define PV_RLC OPT_WIN(WV_RLC)
222 #endif
223 #ifdef FEAT_SCROLLBIND
224 # define PV_SCBIND OPT_WIN(WV_SCBIND)
225 #endif
226 #define PV_SCROLL OPT_WIN(WV_SCROLL)
227 #ifdef FEAT_SPELL
228 # define PV_SPELL OPT_WIN(WV_SPELL)
229 #endif
230 #ifdef FEAT_SYN_HL
231 # define PV_CUC OPT_WIN(WV_CUC)
232 # define PV_CUL OPT_WIN(WV_CUL)
233 #endif
234 #ifdef FEAT_STL_OPT
235 # define PV_STL OPT_BOTH(OPT_WIN(WV_STL))
236 #endif
237 #ifdef FEAT_WINDOWS
238 # define PV_WFH OPT_WIN(WV_WFH)
239 #endif
240 #ifdef FEAT_VERTSPLIT
241 # define PV_WFW OPT_WIN(WV_WFW)
242 #endif
243 #define PV_WRAP OPT_WIN(WV_WRAP)
246 /* WV_ and BV_ values get typecasted to this for the "indir" field */
247 typedef enum
249 PV_NONE = 0,
250 PV_MAXVAL = 0xffff /* to avoid warnings for value out of range */
251 } idopt_T;
254 * Options local to a window have a value local to a buffer and global to all
255 * buffers. Indicate this by setting "var" to VAR_WIN.
257 #define VAR_WIN ((char_u *)-1)
260 * These are the global values for options which are also local to a buffer.
261 * Only to be used in option.c!
263 static int p_ai;
264 static int p_bin;
265 #ifdef FEAT_MBYTE
266 static int p_bomb;
267 #endif
268 #if defined(FEAT_QUICKFIX)
269 static char_u *p_bh;
270 static char_u *p_bt;
271 #endif
272 static int p_bl;
273 static int p_ci;
274 #ifdef FEAT_CINDENT
275 static int p_cin;
276 static char_u *p_cink;
277 static char_u *p_cino;
278 #endif
279 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
280 static char_u *p_cinw;
281 #endif
282 #ifdef FEAT_COMMENTS
283 static char_u *p_com;
284 #endif
285 #ifdef FEAT_FOLDING
286 static char_u *p_cms;
287 #endif
288 #ifdef FEAT_INS_EXPAND
289 static char_u *p_cpt;
290 #endif
291 #ifdef FEAT_COMPL_FUNC
292 static char_u *p_cfu;
293 static char_u *p_ofu;
294 #endif
295 static int p_eol;
296 static int p_et;
297 #ifdef FEAT_MBYTE
298 static char_u *p_fenc;
299 #endif
300 static char_u *p_ff;
301 static char_u *p_fo;
302 static char_u *p_flp;
303 #ifdef FEAT_AUTOCMD
304 static char_u *p_ft;
305 #endif
306 static long p_iminsert;
307 static long p_imsearch;
308 #if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
309 static char_u *p_inex;
310 #endif
311 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
312 static char_u *p_inde;
313 static char_u *p_indk;
314 #endif
315 #if defined(FEAT_EVAL)
316 static char_u *p_fex;
317 #endif
318 static int p_inf;
319 static char_u *p_isk;
320 #ifdef FEAT_CRYPT
321 static char_u *p_key;
322 #endif
323 #ifdef FEAT_LISP
324 static int p_lisp;
325 #endif
326 static int p_ml;
327 static int p_ma;
328 #ifdef FEAT_GUI_MACVIM
329 static int p_mmta;
330 #endif
331 static int p_mod;
332 static char_u *p_mps;
333 static char_u *p_nf;
334 #ifdef FEAT_OSFILETYPE
335 static char_u *p_oft;
336 #endif
337 static int p_pi;
338 #ifdef FEAT_TEXTOBJ
339 static char_u *p_qe;
340 #endif
341 static int p_ro;
342 #ifdef FEAT_SMARTINDENT
343 static int p_si;
344 #endif
345 #ifndef SHORT_FNAME
346 static int p_sn;
347 #endif
348 static long p_sts;
349 #if defined(FEAT_SEARCHPATH)
350 static char_u *p_sua;
351 #endif
352 static long p_sw;
353 static int p_swf;
354 #ifdef FEAT_SYN_HL
355 static long p_smc;
356 static char_u *p_syn;
357 #endif
358 #ifdef FEAT_SPELL
359 static char_u *p_spc;
360 static char_u *p_spf;
361 static char_u *p_spl;
362 #endif
363 static long p_ts;
364 static long p_tw;
365 static int p_tx;
366 static long p_wm;
367 #ifdef FEAT_KEYMAP
368 static char_u *p_keymap;
369 #endif
371 /* Saved values for when 'bin' is set. */
372 static int p_et_nobin;
373 static int p_ml_nobin;
374 static long p_tw_nobin;
375 static long p_wm_nobin;
377 /* Saved values for when 'paste' is set */
378 static long p_tw_nopaste;
379 static long p_wm_nopaste;
380 static long p_sts_nopaste;
381 static int p_ai_nopaste;
383 struct vimoption
385 char *fullname; /* full option name */
386 char *shortname; /* permissible abbreviation */
387 long_u flags; /* see below */
388 char_u *var; /* global option: pointer to variable;
389 * window-local option: VAR_WIN;
390 * buffer-local option: global value */
391 idopt_T indir; /* global option: PV_NONE;
392 * local option: indirect option index */
393 char_u *def_val[2]; /* default values for variable (vi and vim) */
394 #ifdef FEAT_EVAL
395 scid_T scriptID; /* script in which the option was last set */
396 # define SCRIPTID_INIT , 0
397 #else
398 # define SCRIPTID_INIT
399 #endif
402 #define VI_DEFAULT 0 /* def_val[VI_DEFAULT] is Vi default value */
403 #define VIM_DEFAULT 1 /* def_val[VIM_DEFAULT] is Vim default value */
406 * Flags
408 #define P_BOOL 0x01 /* the option is boolean */
409 #define P_NUM 0x02 /* the option is numeric */
410 #define P_STRING 0x04 /* the option is a string */
411 #define P_ALLOCED 0x08 /* the string option is in allocated memory,
412 must use free_string_option() when
413 assigning new value. Not set if default is
414 the same. */
415 #define P_EXPAND 0x10 /* environment expansion. NOTE: P_EXPAND can
416 never be used for local or hidden options! */
417 #define P_NODEFAULT 0x40 /* don't set to default value */
418 #define P_DEF_ALLOCED 0x80 /* default value is in allocated memory, must
419 use vim_free() when assigning new value */
420 #define P_WAS_SET 0x100 /* option has been set/reset */
421 #define P_NO_MKRC 0x200 /* don't include in :mkvimrc output */
422 #define P_VI_DEF 0x400 /* Use Vi default for Vim */
423 #define P_VIM 0x800 /* Vim option, reset when 'cp' set */
425 /* when option changed, what to display: */
426 #define P_RSTAT 0x1000 /* redraw status lines */
427 #define P_RWIN 0x2000 /* redraw current window */
428 #define P_RBUF 0x4000 /* redraw current buffer */
429 #define P_RALL 0x6000 /* redraw all windows */
430 #define P_RCLR 0x7000 /* clear and redraw all */
432 #define P_COMMA 0x8000 /* comma separated list */
433 #define P_NODUP 0x10000L/* don't allow duplicate strings */
434 #define P_FLAGLIST 0x20000L/* list of single-char flags */
436 #define P_SECURE 0x40000L/* cannot change in modeline or secure mode */
437 #define P_GETTEXT 0x80000L/* expand default value with _() */
438 #define P_NOGLOB 0x100000L/* do not use local value for global vimrc */
439 #define P_NFNAME 0x200000L/* only normal file name chars allowed */
440 #define P_INSECURE 0x400000L/* option was set from a modeline */
441 #define P_PRI_MKRC 0x800000L/* priority for :mkvimrc (setting option has
442 side effects) */
444 #define ISK_LATIN1 (char_u *)"@,48-57,_,192-255"
446 /* 'isprint' for latin1 is also used for MS-Windows cp1252, where 0x80 is used
447 * for the currency sign. */
448 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
449 # define ISP_LATIN1 (char_u *)"@,~-255"
450 #else
451 # define ISP_LATIN1 (char_u *)"@,161-255"
452 #endif
454 /* The 16 bit MS-DOS version is low on space, make the string as short as
455 * possible when compiling with few features. */
456 #if defined(FEAT_DIFF) || defined(FEAT_FOLDING) || defined(FEAT_SPELL) \
457 || defined(FEAT_VERTSPLIT) || defined(FEAT_CLIPBOARD) \
458 || defined(FEAT_INS_EXPAND) || defined(FEAT_SYN_HL)
459 # define HIGHLIGHT_INIT "8:SpecialKey,@:NonText,d:Directory,e:ErrorMsg,i:IncSearch,l:Search,m:MoreMsg,M:ModeMsg,n:LineNr,r:Question,s:StatusLine,S:StatusLineNC,c:VertSplit,t:Title,v:Visual,V:VisualNOS,w:WarningMsg,W:WildMenu,f:Folded,F:FoldColumn,A:DiffAdd,C:DiffChange,D:DiffDelete,T:DiffText,>:SignColumn,B:SpellBad,P:SpellCap,R:SpellRare,L:SpellLocal,+:Pmenu,=:PmenuSel,x:PmenuSbar,X:PmenuThumb,*:TabLine,#:TabLineSel,_:TabLineFill,!:CursorColumn,.:CursorLine"
460 #else
461 # define HIGHLIGHT_INIT "8:SpecialKey,@:NonText,d:Directory,e:ErrorMsg,i:IncSearch,l:Search,m:MoreMsg,M:ModeMsg,n:LineNr,r:Question,s:StatusLine,S:StatusLineNC,t:Title,v:Visual,w:WarningMsg,W:WildMenu,>:SignColumn,*:TabLine,#:TabLineSel,_:TabLineFill"
462 #endif
465 * options[] is initialized here.
466 * The order of the options MUST be alphabetic for ":set all" and findoption().
467 * All option names MUST start with a lowercase letter (for findoption()).
468 * Exception: "t_" options are at the end.
469 * The options with a NULL variable are 'hidden': a set command for them is
470 * ignored and they are not printed.
472 static struct vimoption
473 #ifdef FEAT_GUI_W16
474 _far
475 #endif
476 options[] =
478 {"aleph", "al", P_NUM|P_VI_DEF,
479 #ifdef FEAT_RIGHTLEFT
480 (char_u *)&p_aleph, PV_NONE,
481 #else
482 (char_u *)NULL, PV_NONE,
483 #endif
485 #if (defined(MSDOS) || defined(WIN3264) || defined(OS2)) && !defined(FEAT_GUI_W32)
486 (char_u *)128L,
487 #else
488 (char_u *)224L,
489 #endif
490 (char_u *)0L} SCRIPTID_INIT},
491 {"antialias", "anti", P_BOOL|P_VI_DEF|P_VIM|P_RCLR,
492 #ifdef FEAT_ANTIALIAS
493 (char_u *)&p_antialias, PV_NONE,
494 #else
495 (char_u *)NULL, PV_NONE,
496 #endif
498 #if FEAT_GUI_MACVIM
499 (char_u *)TRUE,
500 #else
501 (char_u *)FALSE,
502 #endif
503 (char_u *)0L} SCRIPTID_INIT},
504 {"arabic", "arab", P_BOOL|P_VI_DEF|P_VIM,
505 #ifdef FEAT_ARABIC
506 (char_u *)VAR_WIN, PV_ARAB,
507 #else
508 (char_u *)NULL, PV_NONE,
509 #endif
510 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
511 {"arabicshape", "arshape", P_BOOL|P_VI_DEF|P_VIM|P_RCLR,
512 #ifdef FEAT_ARABIC
513 (char_u *)&p_arshape, PV_NONE,
514 #else
515 (char_u *)NULL, PV_NONE,
516 #endif
517 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
518 {"allowrevins", "ari", P_BOOL|P_VI_DEF|P_VIM,
519 #ifdef FEAT_RIGHTLEFT
520 (char_u *)&p_ari, PV_NONE,
521 #else
522 (char_u *)NULL, PV_NONE,
523 #endif
524 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
525 {"altkeymap", "akm", P_BOOL|P_VI_DEF,
526 #ifdef FEAT_FKMAP
527 (char_u *)&p_altkeymap, PV_NONE,
528 #else
529 (char_u *)NULL, PV_NONE,
530 #endif
531 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
532 {"ambiwidth", "ambw", P_STRING|P_VI_DEF|P_RCLR,
533 #if defined(FEAT_MBYTE)
534 (char_u *)&p_ambw, PV_NONE,
535 {(char_u *)"single", (char_u *)0L}
536 #else
537 (char_u *)NULL, PV_NONE,
538 {(char_u *)0L, (char_u *)0L}
539 #endif
540 SCRIPTID_INIT},
541 #ifdef FEAT_AUTOCHDIR
542 {"autochdir", "acd", P_BOOL|P_VI_DEF,
543 (char_u *)&p_acd, PV_NONE,
544 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
545 #endif
546 {"autoindent", "ai", P_BOOL|P_VI_DEF,
547 (char_u *)&p_ai, PV_AI,
548 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
549 {"autoprint", "ap", P_BOOL|P_VI_DEF,
550 (char_u *)NULL, PV_NONE,
551 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
552 {"autoread", "ar", P_BOOL|P_VI_DEF,
553 (char_u *)&p_ar, PV_AR,
554 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
555 {"autowrite", "aw", P_BOOL|P_VI_DEF,
556 (char_u *)&p_aw, PV_NONE,
557 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
558 {"autowriteall","awa", P_BOOL|P_VI_DEF,
559 (char_u *)&p_awa, PV_NONE,
560 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
561 {"background", "bg", P_STRING|P_VI_DEF|P_RCLR,
562 (char_u *)&p_bg, PV_NONE,
564 #if (defined(MSDOS) || defined(OS2) || defined(WIN3264)) && !defined(FEAT_GUI)
565 (char_u *)"dark",
566 #else
567 (char_u *)"light",
568 #endif
569 (char_u *)0L} SCRIPTID_INIT},
570 {"backspace", "bs", P_STRING|P_VI_DEF|P_VIM|P_COMMA|P_NODUP,
571 (char_u *)&p_bs, PV_NONE,
572 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
573 {"backup", "bk", P_BOOL|P_VI_DEF|P_VIM,
574 (char_u *)&p_bk, PV_NONE,
575 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
576 {"backupcopy", "bkc", P_STRING|P_VIM|P_COMMA|P_NODUP,
577 (char_u *)&p_bkc, PV_NONE,
578 #ifdef UNIX
579 {(char_u *)"yes", (char_u *)"auto"}
580 #else
581 {(char_u *)"auto", (char_u *)"auto"}
582 #endif
583 SCRIPTID_INIT},
584 {"backupdir", "bdir", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP|P_SECURE,
585 (char_u *)&p_bdir, PV_NONE,
586 {(char_u *)DFLT_BDIR, (char_u *)0L} SCRIPTID_INIT},
587 {"backupext", "bex", P_STRING|P_VI_DEF|P_NFNAME,
588 (char_u *)&p_bex, PV_NONE,
590 #ifdef VMS
591 (char_u *)"_",
592 #else
593 (char_u *)"~",
594 #endif
595 (char_u *)0L} SCRIPTID_INIT},
596 {"backupskip", "bsk", P_STRING|P_VI_DEF|P_COMMA,
597 #ifdef FEAT_WILDIGN
598 (char_u *)&p_bsk, PV_NONE,
599 {(char_u *)"", (char_u *)0L}
600 #else
601 (char_u *)NULL, PV_NONE,
602 {(char_u *)0L, (char_u *)0L}
603 #endif
604 SCRIPTID_INIT},
605 #ifdef FEAT_BEVAL
606 {"balloondelay","bdlay",P_NUM|P_VI_DEF,
607 (char_u *)&p_bdlay, PV_NONE,
608 {(char_u *)600L, (char_u *)0L} SCRIPTID_INIT},
609 {"ballooneval", "beval",P_BOOL|P_VI_DEF|P_NO_MKRC,
610 (char_u *)&p_beval, PV_NONE,
611 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
612 # ifdef FEAT_EVAL
613 {"balloonexpr", "bexpr", P_STRING|P_ALLOCED|P_VI_DEF|P_VIM,
614 (char_u *)&p_bexpr, PV_BEXPR,
615 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
616 # endif
617 #endif
618 {"beautify", "bf", P_BOOL|P_VI_DEF,
619 (char_u *)NULL, PV_NONE,
620 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
621 {"binary", "bin", P_BOOL|P_VI_DEF|P_RSTAT,
622 (char_u *)&p_bin, PV_BIN,
623 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
624 {"bioskey", "biosk",P_BOOL|P_VI_DEF,
625 #ifdef MSDOS
626 (char_u *)&p_biosk, PV_NONE,
627 #else
628 (char_u *)NULL, PV_NONE,
629 #endif
630 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
631 {"bomb", NULL, P_BOOL|P_NO_MKRC|P_VI_DEF|P_RSTAT,
632 #ifdef FEAT_MBYTE
633 (char_u *)&p_bomb, PV_BOMB,
634 #else
635 (char_u *)NULL, PV_NONE,
636 #endif
637 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
638 {"breakat", "brk", P_STRING|P_VI_DEF|P_RALL|P_FLAGLIST,
639 #ifdef FEAT_LINEBREAK
640 (char_u *)&p_breakat, PV_NONE,
641 {(char_u *)" \t!@*-+;:,./?", (char_u *)0L}
642 #else
643 (char_u *)NULL, PV_NONE,
644 {(char_u *)0L, (char_u *)0L}
645 #endif
646 SCRIPTID_INIT},
647 {"browsedir", "bsdir",P_STRING|P_VI_DEF,
648 #ifdef FEAT_BROWSE
649 (char_u *)&p_bsdir, PV_NONE,
650 {(char_u *)"last", (char_u *)0L}
651 #else
652 (char_u *)NULL, PV_NONE,
653 {(char_u *)0L, (char_u *)0L}
654 #endif
655 SCRIPTID_INIT},
656 {"bufhidden", "bh", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB,
657 #if defined(FEAT_QUICKFIX)
658 (char_u *)&p_bh, PV_BH,
659 {(char_u *)"", (char_u *)0L}
660 #else
661 (char_u *)NULL, PV_NONE,
662 {(char_u *)0L, (char_u *)0L}
663 #endif
664 SCRIPTID_INIT},
665 {"buflisted", "bl", P_BOOL|P_VI_DEF|P_NOGLOB,
666 (char_u *)&p_bl, PV_BL,
667 {(char_u *)1L, (char_u *)0L}
668 SCRIPTID_INIT},
669 {"buftype", "bt", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB,
670 #if defined(FEAT_QUICKFIX)
671 (char_u *)&p_bt, PV_BT,
672 {(char_u *)"", (char_u *)0L}
673 #else
674 (char_u *)NULL, PV_NONE,
675 {(char_u *)0L, (char_u *)0L}
676 #endif
677 SCRIPTID_INIT},
678 {"casemap", "cmp", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
679 #ifdef FEAT_MBYTE
680 (char_u *)&p_cmp, PV_NONE,
681 {(char_u *)"internal,keepascii", (char_u *)0L}
682 #else
683 (char_u *)NULL, PV_NONE,
684 {(char_u *)0L, (char_u *)0L}
685 #endif
686 SCRIPTID_INIT},
687 {"cdpath", "cd", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
688 #ifdef FEAT_SEARCHPATH
689 (char_u *)&p_cdpath, PV_NONE,
690 {(char_u *)",,", (char_u *)0L}
691 #else
692 (char_u *)NULL, PV_NONE,
693 {(char_u *)0L, (char_u *)0L}
694 #endif
695 SCRIPTID_INIT},
696 {"cedit", NULL, P_STRING,
697 #ifdef FEAT_CMDWIN
698 (char_u *)&p_cedit, PV_NONE,
699 {(char_u *)"", (char_u *)CTRL_F_STR}
700 #else
701 (char_u *)NULL, PV_NONE,
702 {(char_u *)0L, (char_u *)0L}
703 #endif
704 SCRIPTID_INIT},
705 {"charconvert", "ccv", P_STRING|P_VI_DEF|P_SECURE,
706 #if defined(FEAT_MBYTE) && defined(FEAT_EVAL)
707 (char_u *)&p_ccv, PV_NONE,
708 {(char_u *)"", (char_u *)0L}
709 #else
710 (char_u *)NULL, PV_NONE,
711 {(char_u *)0L, (char_u *)0L}
712 #endif
713 SCRIPTID_INIT},
714 {"cindent", "cin", P_BOOL|P_VI_DEF|P_VIM,
715 #ifdef FEAT_CINDENT
716 (char_u *)&p_cin, PV_CIN,
717 #else
718 (char_u *)NULL, PV_NONE,
719 #endif
720 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
721 {"cinkeys", "cink", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
722 #ifdef FEAT_CINDENT
723 (char_u *)&p_cink, PV_CINK,
724 {(char_u *)"0{,0},0),:,0#,!^F,o,O,e", (char_u *)0L}
725 #else
726 (char_u *)NULL, PV_NONE,
727 {(char_u *)0L, (char_u *)0L}
728 #endif
729 SCRIPTID_INIT},
730 {"cinoptions", "cino", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
731 #ifdef FEAT_CINDENT
732 (char_u *)&p_cino, PV_CINO,
733 #else
734 (char_u *)NULL, PV_NONE,
735 #endif
736 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
737 {"cinwords", "cinw", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
738 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
739 (char_u *)&p_cinw, PV_CINW,
740 {(char_u *)"if,else,while,do,for,switch",
741 (char_u *)0L}
742 #else
743 (char_u *)NULL, PV_NONE,
744 {(char_u *)0L, (char_u *)0L}
745 #endif
746 SCRIPTID_INIT},
747 {"clipboard", "cb", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
748 #ifdef FEAT_CLIPBOARD
749 (char_u *)&p_cb, PV_NONE,
750 # ifdef FEAT_XCLIPBOARD
751 {(char_u *)"autoselect,exclude:cons\\|linux",
752 (char_u *)0L}
753 # else
754 {(char_u *)"", (char_u *)0L}
755 # endif
756 #else
757 (char_u *)NULL, PV_NONE,
758 {(char_u *)"", (char_u *)0L}
759 #endif
760 SCRIPTID_INIT},
761 {"cmdheight", "ch", P_NUM|P_VI_DEF|P_RALL,
762 (char_u *)&p_ch, PV_NONE,
763 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
764 {"cmdwinheight", "cwh", P_NUM|P_VI_DEF,
765 #ifdef FEAT_CMDWIN
766 (char_u *)&p_cwh, PV_NONE,
767 #else
768 (char_u *)NULL, PV_NONE,
769 #endif
770 {(char_u *)7L, (char_u *)0L} SCRIPTID_INIT},
771 {"columns", "co", P_NUM|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RCLR,
772 (char_u *)&Columns, PV_NONE,
773 {(char_u *)80L, (char_u *)0L} SCRIPTID_INIT},
774 {"comments", "com", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
775 #ifdef FEAT_COMMENTS
776 (char_u *)&p_com, PV_COM,
777 {(char_u *)"s1:/*,mb:*,ex:*/,://,b:#,:%,:XCOMM,n:>,fb:-",
778 (char_u *)0L}
779 #else
780 (char_u *)NULL, PV_NONE,
781 {(char_u *)0L, (char_u *)0L}
782 #endif
783 SCRIPTID_INIT},
784 {"commentstring", "cms", P_STRING|P_ALLOCED|P_VI_DEF,
785 #ifdef FEAT_FOLDING
786 (char_u *)&p_cms, PV_CMS,
787 {(char_u *)"/*%s*/", (char_u *)0L}
788 #else
789 (char_u *)NULL, PV_NONE,
790 {(char_u *)0L, (char_u *)0L}
791 #endif
792 SCRIPTID_INIT},
793 /* P_PRI_MKRC isn't needed here, optval_default()
794 * always returns TRUE for 'compatible' */
795 {"compatible", "cp", P_BOOL|P_RALL,
796 (char_u *)&p_cp, PV_NONE,
797 {(char_u *)TRUE, (char_u *)FALSE} SCRIPTID_INIT},
798 {"complete", "cpt", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
799 #ifdef FEAT_INS_EXPAND
800 (char_u *)&p_cpt, PV_CPT,
801 {(char_u *)".,w,b,u,t,i", (char_u *)0L}
802 #else
803 (char_u *)NULL, PV_NONE,
804 {(char_u *)0L, (char_u *)0L}
805 #endif
806 SCRIPTID_INIT},
807 {"completefunc", "cfu", P_STRING|P_ALLOCED|P_VI_DEF|P_SECURE,
808 #ifdef FEAT_COMPL_FUNC
809 (char_u *)&p_cfu, PV_CFU,
810 {(char_u *)"", (char_u *)0L}
811 #else
812 (char_u *)NULL, PV_NONE,
813 {(char_u *)0L, (char_u *)0L}
814 #endif
815 SCRIPTID_INIT},
816 {"completeopt", "cot", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
817 #ifdef FEAT_INS_EXPAND
818 (char_u *)&p_cot, PV_NONE,
819 {(char_u *)"menu,preview", (char_u *)0L}
820 #else
821 (char_u *)NULL, PV_NONE,
822 {(char_u *)0L, (char_u *)0L}
823 #endif
824 SCRIPTID_INIT},
825 {"confirm", "cf", P_BOOL|P_VI_DEF,
826 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
827 (char_u *)&p_confirm, PV_NONE,
828 #else
829 (char_u *)NULL, PV_NONE,
830 #endif
831 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
832 {"conskey", "consk",P_BOOL|P_VI_DEF,
833 #ifdef MSDOS
834 (char_u *)&p_consk, PV_NONE,
835 #else
836 (char_u *)NULL, PV_NONE,
837 #endif
838 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
839 {"copyindent", "ci", P_BOOL|P_VI_DEF|P_VIM,
840 (char_u *)&p_ci, PV_CI,
841 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
842 {"cpoptions", "cpo", P_STRING|P_VIM|P_RALL|P_FLAGLIST,
843 (char_u *)&p_cpo, PV_NONE,
844 {(char_u *)CPO_VI, (char_u *)CPO_VIM}
845 SCRIPTID_INIT},
846 {"cscopepathcomp", "cspc", P_NUM|P_VI_DEF|P_VIM,
847 #ifdef FEAT_CSCOPE
848 (char_u *)&p_cspc, PV_NONE,
849 #else
850 (char_u *)NULL, PV_NONE,
851 #endif
852 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
853 {"cscopeprg", "csprg", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
854 #ifdef FEAT_CSCOPE
855 (char_u *)&p_csprg, PV_NONE,
856 {(char_u *)"cscope", (char_u *)0L}
857 #else
858 (char_u *)NULL, PV_NONE,
859 {(char_u *)0L, (char_u *)0L}
860 #endif
861 SCRIPTID_INIT},
862 {"cscopequickfix", "csqf", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
863 #if defined(FEAT_CSCOPE) && defined(FEAT_QUICKFIX)
864 (char_u *)&p_csqf, PV_NONE,
865 {(char_u *)"", (char_u *)0L}
866 #else
867 (char_u *)NULL, PV_NONE,
868 {(char_u *)0L, (char_u *)0L}
869 #endif
870 SCRIPTID_INIT},
871 {"cscopetag", "cst", P_BOOL|P_VI_DEF|P_VIM,
872 #ifdef FEAT_CSCOPE
873 (char_u *)&p_cst, PV_NONE,
874 #else
875 (char_u *)NULL, PV_NONE,
876 #endif
877 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
878 {"cscopetagorder", "csto", P_NUM|P_VI_DEF|P_VIM,
879 #ifdef FEAT_CSCOPE
880 (char_u *)&p_csto, PV_NONE,
881 #else
882 (char_u *)NULL, PV_NONE,
883 #endif
884 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
885 {"cscopeverbose", "csverb", P_BOOL|P_VI_DEF|P_VIM,
886 #ifdef FEAT_CSCOPE
887 (char_u *)&p_csverbose, PV_NONE,
888 #else
889 (char_u *)NULL, PV_NONE,
890 #endif
891 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
892 {"cursorcolumn", "cuc", P_BOOL|P_VI_DEF|P_RWIN,
893 #ifdef FEAT_SYN_HL
894 (char_u *)VAR_WIN, PV_CUC,
895 #else
896 (char_u *)NULL, PV_NONE,
897 #endif
898 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
899 {"cursorline", "cul", P_BOOL|P_VI_DEF|P_RWIN,
900 #ifdef FEAT_SYN_HL
901 (char_u *)VAR_WIN, PV_CUL,
902 #else
903 (char_u *)NULL, PV_NONE,
904 #endif
905 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
906 {"debug", NULL, P_STRING|P_VI_DEF,
907 (char_u *)&p_debug, PV_NONE,
908 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
909 {"define", "def", P_STRING|P_ALLOCED|P_VI_DEF,
910 #ifdef FEAT_FIND_ID
911 (char_u *)&p_def, PV_DEF,
912 {(char_u *)"^\\s*#\\s*define", (char_u *)0L}
913 #else
914 (char_u *)NULL, PV_NONE,
915 {(char_u *)NULL, (char_u *)0L}
916 #endif
917 SCRIPTID_INIT},
918 {"delcombine", "deco", P_BOOL|P_VI_DEF|P_VIM,
919 #ifdef FEAT_MBYTE
920 (char_u *)&p_deco, PV_NONE,
921 #else
922 (char_u *)NULL, PV_NONE,
923 #endif
924 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
925 {"dictionary", "dict", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
926 #ifdef FEAT_INS_EXPAND
927 (char_u *)&p_dict, PV_DICT,
928 #else
929 (char_u *)NULL, PV_NONE,
930 #endif
931 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
932 {"diff", NULL, P_BOOL|P_VI_DEF|P_RWIN|P_NOGLOB,
933 #ifdef FEAT_DIFF
934 (char_u *)VAR_WIN, PV_DIFF,
935 #else
936 (char_u *)NULL, PV_NONE,
937 #endif
938 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
939 {"diffexpr", "dex", P_STRING|P_VI_DEF|P_SECURE,
940 #if defined(FEAT_DIFF) && defined(FEAT_EVAL)
941 (char_u *)&p_dex, PV_NONE,
942 {(char_u *)"", (char_u *)0L}
943 #else
944 (char_u *)NULL, PV_NONE,
945 {(char_u *)0L, (char_u *)0L}
946 #endif
947 SCRIPTID_INIT},
948 {"diffopt", "dip", P_STRING|P_ALLOCED|P_VI_DEF|P_RWIN|P_COMMA|P_NODUP,
949 #ifdef FEAT_DIFF
950 (char_u *)&p_dip, PV_NONE,
951 {(char_u *)"filler", (char_u *)NULL}
952 #else
953 (char_u *)NULL, PV_NONE,
954 {(char_u *)"", (char_u *)NULL}
955 #endif
956 SCRIPTID_INIT},
957 {"digraph", "dg", P_BOOL|P_VI_DEF|P_VIM,
958 #ifdef FEAT_DIGRAPHS
959 (char_u *)&p_dg, PV_NONE,
960 #else
961 (char_u *)NULL, PV_NONE,
962 #endif
963 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
964 {"directory", "dir", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP|P_SECURE,
965 (char_u *)&p_dir, PV_NONE,
966 {(char_u *)DFLT_DIR, (char_u *)0L} SCRIPTID_INIT},
967 {"display", "dy", P_STRING|P_VI_DEF|P_COMMA|P_RALL|P_NODUP,
968 (char_u *)&p_dy, PV_NONE,
969 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
970 {"eadirection", "ead", P_STRING|P_VI_DEF,
971 #ifdef FEAT_VERTSPLIT
972 (char_u *)&p_ead, PV_NONE,
973 {(char_u *)"both", (char_u *)0L}
974 #else
975 (char_u *)NULL, PV_NONE,
976 {(char_u *)NULL, (char_u *)0L}
977 #endif
978 SCRIPTID_INIT},
979 {"edcompatible","ed", P_BOOL|P_VI_DEF,
980 (char_u *)&p_ed, PV_NONE,
981 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
982 {"encoding", "enc", P_STRING|P_VI_DEF|P_RCLR,
983 #ifdef FEAT_MBYTE
984 (char_u *)&p_enc, PV_NONE,
985 {(char_u *)ENC_DFLT, (char_u *)0L}
986 #else
987 (char_u *)NULL, PV_NONE,
988 {(char_u *)0L, (char_u *)0L}
989 #endif
990 SCRIPTID_INIT},
991 {"endofline", "eol", P_BOOL|P_NO_MKRC|P_VI_DEF|P_RSTAT,
992 (char_u *)&p_eol, PV_EOL,
993 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
994 {"equalalways", "ea", P_BOOL|P_VI_DEF|P_RALL,
995 (char_u *)&p_ea, PV_NONE,
996 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
997 {"equalprg", "ep", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
998 (char_u *)&p_ep, PV_EP,
999 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1000 {"errorbells", "eb", P_BOOL|P_VI_DEF,
1001 (char_u *)&p_eb, PV_NONE,
1002 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1003 {"errorfile", "ef", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1004 #ifdef FEAT_QUICKFIX
1005 (char_u *)&p_ef, PV_NONE,
1006 {(char_u *)DFLT_ERRORFILE, (char_u *)0L}
1007 #else
1008 (char_u *)NULL, PV_NONE,
1009 {(char_u *)NULL, (char_u *)0L}
1010 #endif
1011 SCRIPTID_INIT},
1012 {"errorformat", "efm", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1013 #ifdef FEAT_QUICKFIX
1014 (char_u *)&p_efm, PV_EFM,
1015 {(char_u *)DFLT_EFM, (char_u *)0L}
1016 #else
1017 (char_u *)NULL, PV_NONE,
1018 {(char_u *)NULL, (char_u *)0L}
1019 #endif
1020 SCRIPTID_INIT},
1021 {"esckeys", "ek", P_BOOL|P_VIM,
1022 (char_u *)&p_ek, PV_NONE,
1023 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
1024 {"eventignore", "ei", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1025 #ifdef FEAT_AUTOCMD
1026 (char_u *)&p_ei, PV_NONE,
1027 #else
1028 (char_u *)NULL, PV_NONE,
1029 #endif
1030 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1031 {"expandtab", "et", P_BOOL|P_VI_DEF|P_VIM,
1032 (char_u *)&p_et, PV_ET,
1033 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1034 {"exrc", "ex", P_BOOL|P_VI_DEF|P_SECURE,
1035 (char_u *)&p_exrc, PV_NONE,
1036 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1037 {"fileencoding","fenc", P_STRING|P_ALLOCED|P_VI_DEF|P_RSTAT|P_RBUF|P_NO_MKRC,
1038 #ifdef FEAT_MBYTE
1039 (char_u *)&p_fenc, PV_FENC,
1040 {(char_u *)"", (char_u *)0L}
1041 #else
1042 (char_u *)NULL, PV_NONE,
1043 {(char_u *)0L, (char_u *)0L}
1044 #endif
1045 SCRIPTID_INIT},
1046 {"fileencodings","fencs", P_STRING|P_VI_DEF|P_COMMA,
1047 #ifdef FEAT_MBYTE
1048 (char_u *)&p_fencs, PV_NONE,
1049 {(char_u *)"ucs-bom", (char_u *)0L}
1050 #else
1051 (char_u *)NULL, PV_NONE,
1052 {(char_u *)0L, (char_u *)0L}
1053 #endif
1054 SCRIPTID_INIT},
1055 {"fileformat", "ff", P_STRING|P_ALLOCED|P_VI_DEF|P_RSTAT|P_NO_MKRC,
1056 (char_u *)&p_ff, PV_FF,
1057 {(char_u *)DFLT_FF, (char_u *)0L} SCRIPTID_INIT},
1058 {"fileformats", "ffs", P_STRING|P_VIM|P_COMMA|P_NODUP,
1059 (char_u *)&p_ffs, PV_NONE,
1060 {(char_u *)DFLT_FFS_VI, (char_u *)DFLT_FFS_VIM}
1061 SCRIPTID_INIT},
1062 {"filetype", "ft", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB|P_NFNAME,
1063 #ifdef FEAT_AUTOCMD
1064 (char_u *)&p_ft, PV_FT,
1065 {(char_u *)"", (char_u *)0L}
1066 #else
1067 (char_u *)NULL, PV_NONE,
1068 {(char_u *)0L, (char_u *)0L}
1069 #endif
1070 SCRIPTID_INIT},
1071 {"fillchars", "fcs", P_STRING|P_VI_DEF|P_RALL|P_COMMA|P_NODUP,
1072 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
1073 (char_u *)&p_fcs, PV_NONE,
1074 {(char_u *)"vert:|,fold:-", (char_u *)0L}
1075 #else
1076 (char_u *)NULL, PV_NONE,
1077 {(char_u *)"", (char_u *)0L}
1078 #endif
1079 SCRIPTID_INIT},
1080 {"fkmap", "fk", P_BOOL|P_VI_DEF,
1081 #ifdef FEAT_FKMAP
1082 (char_u *)&p_fkmap, PV_NONE,
1083 #else
1084 (char_u *)NULL, PV_NONE,
1085 #endif
1086 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1087 {"flash", "fl", P_BOOL|P_VI_DEF,
1088 (char_u *)NULL, PV_NONE,
1089 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1090 #ifdef FEAT_FOLDING
1091 {"foldclose", "fcl", P_STRING|P_VI_DEF|P_COMMA|P_NODUP|P_RWIN,
1092 (char_u *)&p_fcl, PV_NONE,
1093 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1094 {"foldcolumn", "fdc", P_NUM|P_VI_DEF|P_RWIN,
1095 (char_u *)VAR_WIN, PV_FDC,
1096 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1097 {"foldenable", "fen", P_BOOL|P_VI_DEF|P_RWIN,
1098 (char_u *)VAR_WIN, PV_FEN,
1099 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1100 {"foldexpr", "fde", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1101 # ifdef FEAT_EVAL
1102 (char_u *)VAR_WIN, PV_FDE,
1103 {(char_u *)"0", (char_u *)NULL}
1104 # else
1105 (char_u *)NULL, PV_NONE,
1106 {(char_u *)NULL, (char_u *)0L}
1107 # endif
1108 SCRIPTID_INIT},
1109 {"foldignore", "fdi", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1110 (char_u *)VAR_WIN, PV_FDI,
1111 {(char_u *)"#", (char_u *)NULL} SCRIPTID_INIT},
1112 {"foldlevel", "fdl", P_NUM|P_VI_DEF|P_RWIN,
1113 (char_u *)VAR_WIN, PV_FDL,
1114 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
1115 {"foldlevelstart","fdls", P_NUM|P_VI_DEF,
1116 (char_u *)&p_fdls, PV_NONE,
1117 {(char_u *)-1L, (char_u *)0L} SCRIPTID_INIT},
1118 {"foldmarker", "fmr", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|
1119 P_RWIN|P_COMMA|P_NODUP,
1120 (char_u *)VAR_WIN, PV_FMR,
1121 {(char_u *)"{{{,}}}", (char_u *)NULL}
1122 SCRIPTID_INIT},
1123 {"foldmethod", "fdm", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1124 (char_u *)VAR_WIN, PV_FDM,
1125 {(char_u *)"manual", (char_u *)NULL} SCRIPTID_INIT},
1126 {"foldminlines","fml", P_NUM|P_VI_DEF|P_RWIN,
1127 (char_u *)VAR_WIN, PV_FML,
1128 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
1129 {"foldnestmax", "fdn", P_NUM|P_VI_DEF|P_RWIN,
1130 (char_u *)VAR_WIN, PV_FDN,
1131 {(char_u *)20L, (char_u *)0L} SCRIPTID_INIT},
1132 {"foldopen", "fdo", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1133 (char_u *)&p_fdo, PV_NONE,
1134 {(char_u *)"block,hor,mark,percent,quickfix,search,tag,undo",
1135 (char_u *)0L} SCRIPTID_INIT},
1136 {"foldtext", "fdt", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1137 # ifdef FEAT_EVAL
1138 (char_u *)VAR_WIN, PV_FDT,
1139 {(char_u *)"foldtext()", (char_u *)NULL}
1140 # else
1141 (char_u *)NULL, PV_NONE,
1142 {(char_u *)NULL, (char_u *)0L}
1143 # endif
1144 SCRIPTID_INIT},
1145 #endif
1146 {"formatexpr", "fex", P_STRING|P_ALLOCED|P_VI_DEF|P_VIM,
1147 #ifdef FEAT_EVAL
1148 (char_u *)&p_fex, PV_FEX,
1149 {(char_u *)"", (char_u *)0L}
1150 #else
1151 (char_u *)NULL, PV_NONE,
1152 {(char_u *)0L, (char_u *)0L}
1153 #endif
1154 SCRIPTID_INIT},
1155 {"formatoptions","fo", P_STRING|P_ALLOCED|P_VIM|P_FLAGLIST,
1156 (char_u *)&p_fo, PV_FO,
1157 {(char_u *)DFLT_FO_VI, (char_u *)DFLT_FO_VIM}
1158 SCRIPTID_INIT},
1159 {"formatlistpat","flp", P_STRING|P_ALLOCED|P_VI_DEF,
1160 (char_u *)&p_flp, PV_FLP,
1161 {(char_u *)"^\\s*\\d\\+[\\]:.)}\\t ]\\s*",
1162 (char_u *)0L} SCRIPTID_INIT},
1163 {"formatprg", "fp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1164 (char_u *)&p_fp, PV_NONE,
1165 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1166 {"fsync", "fs", P_BOOL|P_SECURE|P_VI_DEF,
1167 #ifdef HAVE_FSYNC
1168 (char_u *)&p_fs, PV_NONE,
1169 {(char_u *)TRUE, (char_u *)0L}
1170 #else
1171 (char_u *)NULL, PV_NONE,
1172 {(char_u *)FALSE, (char_u *)0L}
1173 #endif
1174 SCRIPTID_INIT},
1175 {"fullscreen", "fu", P_BOOL|P_NO_MKRC,
1176 #ifdef FEAT_FULLSCREEN
1177 (char_u *)&p_fullscreen, PV_NONE,
1178 #else
1179 (char_u *)NULL, PV_NONE,
1180 #endif
1181 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1182 {"fuoptions", "fuopt", P_STRING|P_COMMA|P_NODUP|P_VI_DEF,
1183 #ifdef FEAT_FULLSCREEN
1184 (char_u *)&p_fuoptions, PV_NONE,
1185 {(char_u *)"maxvert", (char_u *)0L}
1186 #else
1187 (char_u *)NULL, PV_NONE,
1188 {(char_u *)NULL, (char_u *)0L}
1189 #endif
1190 SCRIPTID_INIT},
1191 {"gdefault", "gd", P_BOOL|P_VI_DEF|P_VIM,
1192 (char_u *)&p_gd, PV_NONE,
1193 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1194 {"graphic", "gr", P_BOOL|P_VI_DEF,
1195 (char_u *)NULL, PV_NONE,
1196 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1197 {"grepformat", "gfm", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1198 #ifdef FEAT_QUICKFIX
1199 (char_u *)&p_gefm, PV_NONE,
1200 {(char_u *)DFLT_GREPFORMAT, (char_u *)0L}
1201 #else
1202 (char_u *)NULL, PV_NONE,
1203 {(char_u *)NULL, (char_u *)0L}
1204 #endif
1205 SCRIPTID_INIT},
1206 {"grepprg", "gp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1207 #ifdef FEAT_QUICKFIX
1208 (char_u *)&p_gp, PV_GP,
1210 # ifdef WIN3264
1211 /* may be changed to "grep -n" in os_win32.c */
1212 (char_u *)"findstr /n",
1213 # else
1214 # ifdef UNIX
1215 /* Add an extra file name so that grep will always
1216 * insert a file name in the match line. */
1217 (char_u *)"grep -n $* /dev/null",
1218 # else
1219 # ifdef VMS
1220 (char_u *)"SEARCH/NUMBERS ",
1221 # else
1222 (char_u *)"grep -n ",
1223 # endif
1224 # endif
1225 # endif
1226 (char_u *)0L}
1227 #else
1228 (char_u *)NULL, PV_NONE,
1229 {(char_u *)NULL, (char_u *)0L}
1230 #endif
1231 SCRIPTID_INIT},
1232 {"guicursor", "gcr", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1233 #ifdef CURSOR_SHAPE
1234 (char_u *)&p_guicursor, PV_NONE,
1236 # ifdef FEAT_GUI
1237 (char_u *)"n-v-c:block-Cursor/lCursor,ve:ver35-Cursor,o:hor50-Cursor,i-ci:ver25-Cursor/lCursor,r-cr:hor20-Cursor/lCursor,sm:block-Cursor-blinkwait175-blinkoff150-blinkon175",
1238 # else /* MSDOS or Win32 console */
1239 (char_u *)"n-v-c:block,o:hor50,i-ci:hor15,r-cr:hor30,sm:block",
1240 # endif
1241 (char_u *)0L}
1242 #else
1243 (char_u *)NULL, PV_NONE,
1244 {(char_u *)NULL, (char_u *)0L}
1245 #endif
1246 SCRIPTID_INIT},
1247 {"guifont", "gfn", P_STRING|P_VI_DEF|P_RCLR|P_COMMA|P_NODUP,
1248 #ifdef FEAT_GUI
1249 (char_u *)&p_guifont, PV_NONE,
1250 {(char_u *)"", (char_u *)0L}
1251 #else
1252 (char_u *)NULL, PV_NONE,
1253 {(char_u *)NULL, (char_u *)0L}
1254 #endif
1255 SCRIPTID_INIT},
1256 {"guifontset", "gfs", P_STRING|P_VI_DEF|P_RCLR|P_COMMA,
1257 #if defined(FEAT_GUI) && defined(FEAT_XFONTSET)
1258 (char_u *)&p_guifontset, PV_NONE,
1259 {(char_u *)"", (char_u *)0L}
1260 #else
1261 (char_u *)NULL, PV_NONE,
1262 {(char_u *)NULL, (char_u *)0L}
1263 #endif
1264 SCRIPTID_INIT},
1265 {"guifontwide", "gfw", P_STRING|P_VI_DEF|P_RCLR|P_COMMA|P_NODUP,
1266 #if defined(FEAT_GUI) && defined(FEAT_MBYTE)
1267 (char_u *)&p_guifontwide, PV_NONE,
1268 {(char_u *)"", (char_u *)0L}
1269 #else
1270 (char_u *)NULL, PV_NONE,
1271 {(char_u *)NULL, (char_u *)0L}
1272 #endif
1273 SCRIPTID_INIT},
1274 {"guiheadroom", "ghr", P_NUM|P_VI_DEF,
1275 #if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11)
1276 (char_u *)&p_ghr, PV_NONE,
1277 #else
1278 (char_u *)NULL, PV_NONE,
1279 #endif
1280 {(char_u *)50L, (char_u *)0L} SCRIPTID_INIT},
1281 {"guioptions", "go", P_STRING|P_VI_DEF|P_RALL|P_FLAGLIST,
1282 #if defined(FEAT_GUI)
1283 (char_u *)&p_go, PV_NONE,
1284 # if defined(UNIX) && !defined(MACOS)
1285 {(char_u *)"aegimrLtT", (char_u *)0L}
1286 # else
1287 {(char_u *)"egmrLtT", (char_u *)0L}
1288 # endif
1289 #else
1290 (char_u *)NULL, PV_NONE,
1291 {(char_u *)NULL, (char_u *)0L}
1292 #endif
1293 SCRIPTID_INIT},
1294 {"guipty", NULL, P_BOOL|P_VI_DEF,
1295 #if defined(FEAT_GUI)
1296 (char_u *)&p_guipty, PV_NONE,
1297 #else
1298 (char_u *)NULL, PV_NONE,
1299 #endif
1300 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1301 {"guitablabel", "gtl", P_STRING|P_VI_DEF|P_RWIN,
1302 #if defined(FEAT_GUI_TABLINE)
1303 (char_u *)&p_gtl, PV_NONE,
1304 {(char_u *)"", (char_u *)0L}
1305 #else
1306 (char_u *)NULL, PV_NONE,
1307 {(char_u *)NULL, (char_u *)0L}
1308 #endif
1309 SCRIPTID_INIT},
1310 {"guitabtooltip", "gtt", P_STRING|P_VI_DEF|P_RWIN,
1311 #if defined(FEAT_GUI_TABLINE)
1312 (char_u *)&p_gtt, PV_NONE,
1313 {(char_u *)"", (char_u *)0L}
1314 #else
1315 (char_u *)NULL, PV_NONE,
1316 {(char_u *)NULL, (char_u *)0L}
1317 #endif
1318 SCRIPTID_INIT},
1319 {"hardtabs", "ht", P_NUM|P_VI_DEF,
1320 (char_u *)NULL, PV_NONE,
1321 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
1322 {"helpfile", "hf", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1323 (char_u *)&p_hf, PV_NONE,
1324 {(char_u *)DFLT_HELPFILE, (char_u *)0L}
1325 SCRIPTID_INIT},
1326 {"helpheight", "hh", P_NUM|P_VI_DEF,
1327 #ifdef FEAT_WINDOWS
1328 (char_u *)&p_hh, PV_NONE,
1329 #else
1330 (char_u *)NULL, PV_NONE,
1331 #endif
1332 {(char_u *)20L, (char_u *)0L} SCRIPTID_INIT},
1333 {"helplang", "hlg", P_STRING|P_VI_DEF|P_COMMA,
1334 #ifdef FEAT_MULTI_LANG
1335 (char_u *)&p_hlg, PV_NONE,
1336 {(char_u *)"", (char_u *)0L}
1337 #else
1338 (char_u *)NULL, PV_NONE,
1339 {(char_u *)0L, (char_u *)0L}
1340 #endif
1341 SCRIPTID_INIT},
1342 {"hidden", "hid", P_BOOL|P_VI_DEF,
1343 (char_u *)&p_hid, PV_NONE,
1344 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1345 {"highlight", "hl", P_STRING|P_VI_DEF|P_RCLR|P_COMMA|P_NODUP,
1346 (char_u *)&p_hl, PV_NONE,
1347 {(char_u *)HIGHLIGHT_INIT, (char_u *)0L}
1348 SCRIPTID_INIT},
1349 {"history", "hi", P_NUM|P_VIM,
1350 (char_u *)&p_hi, PV_NONE,
1351 {(char_u *)0L, (char_u *)20L} SCRIPTID_INIT},
1352 {"hkmap", "hk", P_BOOL|P_VI_DEF|P_VIM,
1353 #ifdef FEAT_RIGHTLEFT
1354 (char_u *)&p_hkmap, PV_NONE,
1355 #else
1356 (char_u *)NULL, PV_NONE,
1357 #endif
1358 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1359 {"hkmapp", "hkp", P_BOOL|P_VI_DEF|P_VIM,
1360 #ifdef FEAT_RIGHTLEFT
1361 (char_u *)&p_hkmapp, PV_NONE,
1362 #else
1363 (char_u *)NULL, PV_NONE,
1364 #endif
1365 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1366 {"hlsearch", "hls", P_BOOL|P_VI_DEF|P_VIM|P_RALL,
1367 (char_u *)&p_hls, PV_NONE,
1368 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1369 {"icon", NULL, P_BOOL|P_VI_DEF,
1370 #ifdef FEAT_TITLE
1371 (char_u *)&p_icon, PV_NONE,
1372 #else
1373 (char_u *)NULL, PV_NONE,
1374 #endif
1375 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1376 {"iconstring", NULL, P_STRING|P_VI_DEF,
1377 #ifdef FEAT_TITLE
1378 (char_u *)&p_iconstring, PV_NONE,
1379 #else
1380 (char_u *)NULL, PV_NONE,
1381 #endif
1382 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1383 {"ignorecase", "ic", P_BOOL|P_VI_DEF,
1384 (char_u *)&p_ic, PV_NONE,
1385 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1386 {"imactivatekey","imak",P_STRING|P_VI_DEF,
1387 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
1388 (char_u *)&p_imak, PV_NONE,
1389 #else
1390 (char_u *)NULL, PV_NONE,
1391 #endif
1392 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1393 {"imcmdline", "imc", P_BOOL|P_VI_DEF,
1394 #ifdef USE_IM_CONTROL
1395 (char_u *)&p_imcmdline, PV_NONE,
1396 #else
1397 (char_u *)NULL, PV_NONE,
1398 #endif
1399 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1400 {"imdisable", "imd", P_BOOL|P_VI_DEF,
1401 #ifdef USE_IM_CONTROL
1402 (char_u *)&p_imdisable, PV_NONE,
1403 #else
1404 (char_u *)NULL, PV_NONE,
1405 #endif
1406 #if defined(__sgi) || defined(FEAT_GUI_MACVIM)
1407 {(char_u *)TRUE, (char_u *)0L}
1408 #else
1409 {(char_u *)FALSE, (char_u *)0L}
1410 #endif
1411 SCRIPTID_INIT},
1412 {"iminsert", "imi", P_NUM|P_VI_DEF,
1413 (char_u *)&p_iminsert, PV_IMI,
1414 #ifdef B_IMODE_IM
1415 {(char_u *)B_IMODE_IM, (char_u *)0L}
1416 #else
1417 {(char_u *)B_IMODE_NONE, (char_u *)0L}
1418 #endif
1419 SCRIPTID_INIT},
1420 {"imsearch", "ims", P_NUM|P_VI_DEF,
1421 (char_u *)&p_imsearch, PV_IMS,
1422 #ifdef B_IMODE_IM
1423 {(char_u *)B_IMODE_IM, (char_u *)0L}
1424 #else
1425 {(char_u *)B_IMODE_NONE, (char_u *)0L}
1426 #endif
1427 SCRIPTID_INIT},
1428 {"include", "inc", P_STRING|P_ALLOCED|P_VI_DEF,
1429 #ifdef FEAT_FIND_ID
1430 (char_u *)&p_inc, PV_INC,
1431 {(char_u *)"^\\s*#\\s*include", (char_u *)0L}
1432 #else
1433 (char_u *)NULL, PV_NONE,
1434 {(char_u *)0L, (char_u *)0L}
1435 #endif
1436 SCRIPTID_INIT},
1437 {"includeexpr", "inex", P_STRING|P_ALLOCED|P_VI_DEF,
1438 #if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
1439 (char_u *)&p_inex, PV_INEX,
1440 {(char_u *)"", (char_u *)0L}
1441 #else
1442 (char_u *)NULL, PV_NONE,
1443 {(char_u *)0L, (char_u *)0L}
1444 #endif
1445 SCRIPTID_INIT},
1446 {"incsearch", "is", P_BOOL|P_VI_DEF|P_VIM,
1447 (char_u *)&p_is, PV_NONE,
1448 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1449 {"indentexpr", "inde", P_STRING|P_ALLOCED|P_VI_DEF|P_VIM,
1450 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
1451 (char_u *)&p_inde, PV_INDE,
1452 {(char_u *)"", (char_u *)0L}
1453 #else
1454 (char_u *)NULL, PV_NONE,
1455 {(char_u *)0L, (char_u *)0L}
1456 #endif
1457 SCRIPTID_INIT},
1458 {"indentkeys", "indk", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
1459 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
1460 (char_u *)&p_indk, PV_INDK,
1461 {(char_u *)"0{,0},:,0#,!^F,o,O,e", (char_u *)0L}
1462 #else
1463 (char_u *)NULL, PV_NONE,
1464 {(char_u *)0L, (char_u *)0L}
1465 #endif
1466 SCRIPTID_INIT},
1467 {"infercase", "inf", P_BOOL|P_VI_DEF,
1468 (char_u *)&p_inf, PV_INF,
1469 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1470 {"insertmode", "im", P_BOOL|P_VI_DEF|P_VIM,
1471 (char_u *)&p_im, PV_NONE,
1472 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1473 {"isfname", "isf", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1474 (char_u *)&p_isf, PV_NONE,
1476 #ifdef BACKSLASH_IN_FILENAME
1477 /* Excluded are: & and ^ are special in cmd.exe
1478 * ( and ) are used in text separating fnames */
1479 (char_u *)"@,48-57,/,\\,.,-,_,+,,,#,$,%,{,},[,],:,@-@,!,~,=",
1480 #else
1481 # ifdef AMIGA
1482 (char_u *)"@,48-57,/,.,-,_,+,,,$,:",
1483 # else
1484 # ifdef VMS
1485 (char_u *)"@,48-57,/,.,-,_,+,,,#,$,%,<,>,[,],:,;,~",
1486 # else /* UNIX et al. */
1487 # ifdef EBCDIC
1488 (char_u *)"@,240-249,/,.,-,_,+,,,#,$,%,~,=",
1489 # else
1490 (char_u *)"@,48-57,/,.,-,_,+,,,#,$,%,~,=",
1491 # endif
1492 # endif
1493 # endif
1494 #endif
1495 (char_u *)0L} SCRIPTID_INIT},
1496 {"isident", "isi", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1497 (char_u *)&p_isi, PV_NONE,
1499 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
1500 (char_u *)"@,48-57,_,128-167,224-235",
1501 #else
1502 # ifdef EBCDIC
1503 /* TODO: EBCDIC Check this! @ == isalpha()*/
1504 (char_u *)"@,240-249,_,66-73,81-89,98-105,"
1505 "112-120,128,140-142,156,158,172,"
1506 "174,186,191,203-207,219-225,235-239,"
1507 "251-254",
1508 # else
1509 (char_u *)"@,48-57,_,192-255",
1510 # endif
1511 #endif
1512 (char_u *)0L} SCRIPTID_INIT},
1513 {"iskeyword", "isk", P_STRING|P_ALLOCED|P_VIM|P_COMMA|P_NODUP,
1514 (char_u *)&p_isk, PV_ISK,
1516 #ifdef EBCDIC
1517 (char_u *)"@,240-249,_",
1518 /* TODO: EBCDIC Check this! @ == isalpha()*/
1519 (char_u *)"@,240-249,_,66-73,81-89,98-105,"
1520 "112-120,128,140-142,156,158,172,"
1521 "174,186,191,203-207,219-225,235-239,"
1522 "251-254",
1523 #else
1524 (char_u *)"@,48-57,_",
1525 # if defined(MSDOS) || defined(MSWIN) || defined(OS2)
1526 (char_u *)"@,48-57,_,128-167,224-235"
1527 # else
1528 ISK_LATIN1
1529 # endif
1530 #endif
1531 } SCRIPTID_INIT},
1532 {"isprint", "isp", P_STRING|P_VI_DEF|P_RALL|P_COMMA|P_NODUP,
1533 (char_u *)&p_isp, PV_NONE,
1535 #if defined(MSDOS) || defined(MSWIN) || defined(OS2) \
1536 || (defined(MACOS) && !defined(MACOS_X)) \
1537 || defined(VMS)
1538 (char_u *)"@,~-255",
1539 #else
1540 # ifdef EBCDIC
1541 /* all chars above 63 are printable */
1542 (char_u *)"63-255",
1543 # else
1544 ISP_LATIN1,
1545 # endif
1546 #endif
1547 (char_u *)0L} SCRIPTID_INIT},
1548 {"joinspaces", "js", P_BOOL|P_VI_DEF|P_VIM,
1549 (char_u *)&p_js, PV_NONE,
1550 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1551 {"key", NULL, P_STRING|P_ALLOCED|P_VI_DEF|P_NO_MKRC,
1552 #ifdef FEAT_CRYPT
1553 (char_u *)&p_key, PV_KEY,
1554 {(char_u *)"", (char_u *)0L}
1555 #else
1556 (char_u *)NULL, PV_NONE,
1557 {(char_u *)0L, (char_u *)0L}
1558 #endif
1559 SCRIPTID_INIT},
1560 {"keymap", "kmp", P_STRING|P_ALLOCED|P_VI_DEF|P_RBUF|P_RSTAT|P_NFNAME|P_PRI_MKRC,
1561 #ifdef FEAT_KEYMAP
1562 (char_u *)&p_keymap, PV_KMAP,
1563 {(char_u *)"", (char_u *)0L}
1564 #else
1565 (char_u *)NULL, PV_NONE,
1566 {(char_u *)"", (char_u *)0L}
1567 #endif
1568 SCRIPTID_INIT},
1569 {"keymodel", "km", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1570 #ifdef FEAT_VISUAL
1571 (char_u *)&p_km, PV_NONE,
1572 #else
1573 (char_u *)NULL, PV_NONE,
1574 #endif
1575 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1576 {"keywordprg", "kp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1577 (char_u *)&p_kp, PV_KP,
1579 #if defined(MSDOS) || defined(MSWIN)
1580 (char_u *)":help",
1581 #else
1582 #ifdef VMS
1583 (char_u *)"help",
1584 #else
1585 # if defined(OS2)
1586 (char_u *)"view /",
1587 # else
1588 # ifdef USEMAN_S
1589 (char_u *)"man -s",
1590 # else
1591 (char_u *)"man",
1592 # endif
1593 # endif
1594 #endif
1595 #endif
1596 (char_u *)0L} SCRIPTID_INIT},
1597 {"langmap", "lmap", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1598 #ifdef FEAT_LANGMAP
1599 (char_u *)&p_langmap, PV_NONE,
1600 {(char_u *)"", /* unmatched } */
1601 #else
1602 (char_u *)NULL, PV_NONE,
1603 {(char_u *)NULL,
1604 #endif
1605 (char_u *)0L} SCRIPTID_INIT},
1606 {"langmenu", "lm", P_STRING|P_VI_DEF|P_NFNAME,
1607 #if defined(FEAT_MENU) && defined(FEAT_MULTI_LANG)
1608 (char_u *)&p_lm, PV_NONE,
1609 #else
1610 (char_u *)NULL, PV_NONE,
1611 #endif
1612 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1613 {"laststatus", "ls", P_NUM|P_VI_DEF|P_RALL,
1614 #ifdef FEAT_WINDOWS
1615 (char_u *)&p_ls, PV_NONE,
1616 #else
1617 (char_u *)NULL, PV_NONE,
1618 #endif
1619 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
1620 {"lazyredraw", "lz", P_BOOL|P_VI_DEF,
1621 (char_u *)&p_lz, PV_NONE,
1622 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1623 {"linebreak", "lbr", P_BOOL|P_VI_DEF|P_RWIN,
1624 #ifdef FEAT_LINEBREAK
1625 (char_u *)VAR_WIN, PV_LBR,
1626 #else
1627 (char_u *)NULL, PV_NONE,
1628 #endif
1629 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1630 {"lines", NULL, P_NUM|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RCLR,
1631 (char_u *)&Rows, PV_NONE,
1633 #if defined(MSDOS) || defined(WIN3264) || defined(OS2)
1634 (char_u *)25L,
1635 #else
1636 (char_u *)24L,
1637 #endif
1638 (char_u *)0L} SCRIPTID_INIT},
1639 {"linespace", "lsp", P_NUM|P_VI_DEF|P_RCLR,
1640 #ifdef FEAT_GUI
1641 (char_u *)&p_linespace, PV_NONE,
1642 #else
1643 (char_u *)NULL, PV_NONE,
1644 #endif
1645 #ifdef FEAT_GUI_W32
1646 {(char_u *)1L, (char_u *)0L}
1647 #else
1648 {(char_u *)0L, (char_u *)0L}
1649 #endif
1650 SCRIPTID_INIT},
1651 {"lisp", NULL, P_BOOL|P_VI_DEF,
1652 #ifdef FEAT_LISP
1653 (char_u *)&p_lisp, PV_LISP,
1654 #else
1655 (char_u *)NULL, PV_NONE,
1656 #endif
1657 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1658 {"lispwords", "lw", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1659 #ifdef FEAT_LISP
1660 (char_u *)&p_lispwords, PV_NONE,
1661 {(char_u *)LISPWORD_VALUE, (char_u *)0L}
1662 #else
1663 (char_u *)NULL, PV_NONE,
1664 {(char_u *)"", (char_u *)0L}
1665 #endif
1666 SCRIPTID_INIT},
1667 {"list", NULL, P_BOOL|P_VI_DEF|P_RWIN,
1668 (char_u *)VAR_WIN, PV_LIST,
1669 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1670 {"listchars", "lcs", P_STRING|P_VI_DEF|P_RALL|P_COMMA|P_NODUP,
1671 (char_u *)&p_lcs, PV_NONE,
1672 {(char_u *)"eol:$", (char_u *)0L} SCRIPTID_INIT},
1673 {"loadplugins", "lpl", P_BOOL|P_VI_DEF,
1674 (char_u *)&p_lpl, PV_NONE,
1675 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1676 #ifdef FEAT_GUI_MAC
1677 {"macatsui", NULL, P_BOOL|P_VI_DEF|P_RCLR,
1678 (char_u *)&p_macatsui, PV_NONE,
1679 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1680 #endif
1681 {"macmeta", "mmta", P_BOOL|P_VI_DEF,
1682 #ifdef FEAT_GUI_MACVIM
1683 (char_u *)&p_mmta, PV_MMTA,
1684 #else
1685 (char_u *)NULL, PV_NONE,
1686 #endif
1687 {(char_u *)FALSE, (char_u *)0L}},
1688 {"magic", NULL, P_BOOL|P_VI_DEF,
1689 (char_u *)&p_magic, PV_NONE,
1690 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1691 {"makeef", "mef", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1692 #ifdef FEAT_QUICKFIX
1693 (char_u *)&p_mef, PV_NONE,
1694 {(char_u *)"", (char_u *)0L}
1695 #else
1696 (char_u *)NULL, PV_NONE,
1697 {(char_u *)NULL, (char_u *)0L}
1698 #endif
1699 SCRIPTID_INIT},
1700 {"makeprg", "mp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1701 #ifdef FEAT_QUICKFIX
1702 (char_u *)&p_mp, PV_MP,
1703 # ifdef VMS
1704 {(char_u *)"MMS", (char_u *)0L}
1705 # else
1706 {(char_u *)"make", (char_u *)0L}
1707 # endif
1708 #else
1709 (char_u *)NULL, PV_NONE,
1710 {(char_u *)NULL, (char_u *)0L}
1711 #endif
1712 SCRIPTID_INIT},
1713 {"matchpairs", "mps", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
1714 (char_u *)&p_mps, PV_MPS,
1715 {(char_u *)"(:),{:},[:]", (char_u *)0L}
1716 SCRIPTID_INIT},
1717 {"matchtime", "mat", P_NUM|P_VI_DEF,
1718 (char_u *)&p_mat, PV_NONE,
1719 {(char_u *)5L, (char_u *)0L} SCRIPTID_INIT},
1720 {"maxcombine", "mco", P_NUM|P_VI_DEF,
1721 #ifdef FEAT_MBYTE
1722 (char_u *)&p_mco, PV_NONE,
1723 #else
1724 (char_u *)NULL, PV_NONE,
1725 #endif
1726 {(char_u *)2, (char_u *)0L} SCRIPTID_INIT},
1727 {"maxfuncdepth", "mfd", P_NUM|P_VI_DEF,
1728 #ifdef FEAT_EVAL
1729 (char_u *)&p_mfd, PV_NONE,
1730 #else
1731 (char_u *)NULL, PV_NONE,
1732 #endif
1733 {(char_u *)100L, (char_u *)0L} SCRIPTID_INIT},
1734 {"maxmapdepth", "mmd", P_NUM|P_VI_DEF,
1735 (char_u *)&p_mmd, PV_NONE,
1736 {(char_u *)1000L, (char_u *)0L} SCRIPTID_INIT},
1737 {"maxmem", "mm", P_NUM|P_VI_DEF,
1738 (char_u *)&p_mm, PV_NONE,
1739 {(char_u *)DFLT_MAXMEM, (char_u *)0L}
1740 SCRIPTID_INIT},
1741 {"maxmempattern","mmp", P_NUM|P_VI_DEF,
1742 (char_u *)&p_mmp, PV_NONE,
1743 {(char_u *)1000L, (char_u *)0L} SCRIPTID_INIT},
1744 {"maxmemtot", "mmt", P_NUM|P_VI_DEF,
1745 (char_u *)&p_mmt, PV_NONE,
1746 {(char_u *)DFLT_MAXMEMTOT, (char_u *)0L}
1747 SCRIPTID_INIT},
1748 {"menuitems", "mis", P_NUM|P_VI_DEF,
1749 #ifdef FEAT_MENU
1750 (char_u *)&p_mis, PV_NONE,
1751 #else
1752 (char_u *)NULL, PV_NONE,
1753 #endif
1754 {(char_u *)25L, (char_u *)0L} SCRIPTID_INIT},
1755 {"mesg", NULL, P_BOOL|P_VI_DEF,
1756 (char_u *)NULL, PV_NONE,
1757 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1758 {"mkspellmem", "msm", P_STRING|P_VI_DEF|P_EXPAND|P_SECURE,
1759 #ifdef FEAT_SPELL
1760 (char_u *)&p_msm, PV_NONE,
1761 {(char_u *)"460000,2000,500", (char_u *)0L}
1762 #else
1763 (char_u *)NULL, PV_NONE,
1764 {(char_u *)0L, (char_u *)0L}
1765 #endif
1766 SCRIPTID_INIT},
1767 {"modeline", "ml", P_BOOL|P_VIM,
1768 (char_u *)&p_ml, PV_ML,
1769 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
1770 {"modelines", "mls", P_NUM|P_VI_DEF,
1771 (char_u *)&p_mls, PV_NONE,
1772 {(char_u *)5L, (char_u *)0L} SCRIPTID_INIT},
1773 {"modifiable", "ma", P_BOOL|P_VI_DEF|P_NOGLOB,
1774 (char_u *)&p_ma, PV_MA,
1775 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1776 {"modified", "mod", P_BOOL|P_NO_MKRC|P_VI_DEF|P_RSTAT,
1777 (char_u *)&p_mod, PV_MOD,
1778 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1779 {"more", NULL, P_BOOL|P_VIM,
1780 (char_u *)&p_more, PV_NONE,
1781 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
1782 {"mouse", NULL, P_STRING|P_VI_DEF|P_FLAGLIST,
1783 (char_u *)&p_mouse, PV_NONE,
1785 #if defined(MSDOS) || defined(WIN3264)
1786 (char_u *)"a",
1787 #else
1788 (char_u *)"",
1789 #endif
1790 (char_u *)0L} SCRIPTID_INIT},
1791 {"mousefocus", "mousef", P_BOOL|P_VI_DEF,
1792 #ifdef FEAT_GUI
1793 (char_u *)&p_mousef, PV_NONE,
1794 #else
1795 (char_u *)NULL, PV_NONE,
1796 #endif
1797 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1798 {"mousehide", "mh", P_BOOL|P_VI_DEF,
1799 #ifdef FEAT_GUI
1800 (char_u *)&p_mh, PV_NONE,
1801 #else
1802 (char_u *)NULL, PV_NONE,
1803 #endif
1804 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1805 {"mousemodel", "mousem", P_STRING|P_VI_DEF,
1806 (char_u *)&p_mousem, PV_NONE,
1808 #if defined(MSDOS) || defined(MSWIN)
1809 (char_u *)"popup",
1810 #else
1811 # if defined(MACOS)
1812 (char_u *)"popup_setpos",
1813 # else
1814 (char_u *)"extend",
1815 # endif
1816 #endif
1817 (char_u *)0L} SCRIPTID_INIT},
1818 {"mouseshape", "mouses", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1819 #ifdef FEAT_MOUSESHAPE
1820 (char_u *)&p_mouseshape, PV_NONE,
1821 {(char_u *)"i-r:beam,s:updown,sd:udsizing,vs:leftright,vd:lrsizing,m:no,ml:up-arrow,v:rightup-arrow", (char_u *)0L}
1822 #else
1823 (char_u *)NULL, PV_NONE,
1824 {(char_u *)NULL, (char_u *)0L}
1825 #endif
1826 SCRIPTID_INIT},
1827 {"mousetime", "mouset", P_NUM|P_VI_DEF,
1828 (char_u *)&p_mouset, PV_NONE,
1829 {(char_u *)500L, (char_u *)0L} SCRIPTID_INIT},
1830 {"mzquantum", "mzq", P_NUM,
1831 #ifdef FEAT_MZSCHEME
1832 (char_u *)&p_mzq, PV_NONE,
1833 #else
1834 (char_u *)NULL, PV_NONE,
1835 #endif
1836 {(char_u *)100L, (char_u *)100L} SCRIPTID_INIT},
1837 {"novice", NULL, P_BOOL|P_VI_DEF,
1838 (char_u *)NULL, PV_NONE,
1839 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1840 {"nrformats", "nf", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
1841 (char_u *)&p_nf, PV_NF,
1842 {(char_u *)"octal,hex", (char_u *)0L}
1843 SCRIPTID_INIT},
1844 {"number", "nu", P_BOOL|P_VI_DEF|P_RWIN,
1845 (char_u *)VAR_WIN, PV_NU,
1846 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1847 {"numberwidth", "nuw", P_NUM|P_RWIN|P_VIM,
1848 #ifdef FEAT_LINEBREAK
1849 (char_u *)VAR_WIN, PV_NUW,
1850 #else
1851 (char_u *)NULL, PV_NONE,
1852 #endif
1853 {(char_u *)8L, (char_u *)4L} SCRIPTID_INIT},
1854 {"omnifunc", "ofu", P_STRING|P_ALLOCED|P_VI_DEF|P_SECURE,
1855 #ifdef FEAT_COMPL_FUNC
1856 (char_u *)&p_ofu, PV_OFU,
1857 {(char_u *)"", (char_u *)0L}
1858 #else
1859 (char_u *)NULL, PV_NONE,
1860 {(char_u *)0L, (char_u *)0L}
1861 #endif
1862 SCRIPTID_INIT},
1863 {"open", NULL, P_BOOL|P_VI_DEF,
1864 (char_u *)NULL, PV_NONE,
1865 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1866 {"opendevice", "odev", P_BOOL|P_VI_DEF,
1867 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
1868 (char_u *)&p_odev, PV_NONE,
1869 #else
1870 (char_u *)NULL, PV_NONE,
1871 #endif
1872 {(char_u *)FALSE, (char_u *)FALSE}
1873 SCRIPTID_INIT},
1874 {"operatorfunc", "opfunc", P_STRING|P_VI_DEF|P_SECURE,
1875 (char_u *)&p_opfunc, PV_NONE,
1876 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1877 {"optimize", "opt", P_BOOL|P_VI_DEF,
1878 (char_u *)NULL, PV_NONE,
1879 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1880 {"osfiletype", "oft", P_STRING|P_ALLOCED|P_VI_DEF,
1881 #ifdef FEAT_OSFILETYPE
1882 (char_u *)&p_oft, PV_OFT,
1883 {(char_u *)DFLT_OFT, (char_u *)0L}
1884 #else
1885 (char_u *)NULL, PV_NONE,
1886 {(char_u *)0L, (char_u *)0L}
1887 #endif
1888 SCRIPTID_INIT},
1889 {"paragraphs", "para", P_STRING|P_VI_DEF,
1890 (char_u *)&p_para, PV_NONE,
1891 {(char_u *)"IPLPPPQPP TPHPLIPpLpItpplpipbp",
1892 (char_u *)0L} SCRIPTID_INIT},
1893 {"paste", NULL, P_BOOL|P_VI_DEF|P_PRI_MKRC,
1894 (char_u *)&p_paste, PV_NONE,
1895 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1896 {"pastetoggle", "pt", P_STRING|P_VI_DEF,
1897 (char_u *)&p_pt, PV_NONE,
1898 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1899 {"patchexpr", "pex", P_STRING|P_VI_DEF|P_SECURE,
1900 #if defined(FEAT_DIFF) && defined(FEAT_EVAL)
1901 (char_u *)&p_pex, PV_NONE,
1902 {(char_u *)"", (char_u *)0L}
1903 #else
1904 (char_u *)NULL, PV_NONE,
1905 {(char_u *)0L, (char_u *)0L}
1906 #endif
1907 SCRIPTID_INIT},
1908 {"patchmode", "pm", P_STRING|P_VI_DEF|P_NFNAME,
1909 (char_u *)&p_pm, PV_NONE,
1910 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1911 {"path", "pa", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
1912 (char_u *)&p_path, PV_PATH,
1914 #if defined AMIGA || defined MSDOS || defined MSWIN
1915 (char_u *)".,,",
1916 #else
1917 # if defined(__EMX__)
1918 (char_u *)".,/emx/include,,",
1919 # else /* Unix, probably */
1920 (char_u *)".,/usr/include,,",
1921 # endif
1922 #endif
1923 (char_u *)0L} SCRIPTID_INIT},
1924 {"preserveindent", "pi", P_BOOL|P_VI_DEF|P_VIM,
1925 (char_u *)&p_pi, PV_PI,
1926 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1927 {"previewheight", "pvh", P_NUM|P_VI_DEF,
1928 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
1929 (char_u *)&p_pvh, PV_NONE,
1930 #else
1931 (char_u *)NULL, PV_NONE,
1932 #endif
1933 {(char_u *)12L, (char_u *)0L} SCRIPTID_INIT},
1934 {"previewwindow", "pvw", P_BOOL|P_VI_DEF|P_RSTAT|P_NOGLOB,
1935 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
1936 (char_u *)VAR_WIN, PV_PVW,
1937 #else
1938 (char_u *)NULL, PV_NONE,
1939 #endif
1940 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1941 {"printdevice", "pdev", P_STRING|P_VI_DEF|P_SECURE,
1942 #ifdef FEAT_PRINTER
1943 (char_u *)&p_pdev, PV_NONE,
1944 {(char_u *)"", (char_u *)0L}
1945 #else
1946 (char_u *)NULL, PV_NONE,
1947 {(char_u *)NULL, (char_u *)0L}
1948 #endif
1949 SCRIPTID_INIT},
1950 {"printencoding", "penc", P_STRING|P_VI_DEF,
1951 #ifdef FEAT_POSTSCRIPT
1952 (char_u *)&p_penc, PV_NONE,
1953 {(char_u *)"", (char_u *)0L}
1954 #else
1955 (char_u *)NULL, PV_NONE,
1956 {(char_u *)NULL, (char_u *)0L}
1957 #endif
1958 SCRIPTID_INIT},
1959 {"printexpr", "pexpr", P_STRING|P_VI_DEF,
1960 #ifdef FEAT_POSTSCRIPT
1961 (char_u *)&p_pexpr, PV_NONE,
1962 {(char_u *)"", (char_u *)0L}
1963 #else
1964 (char_u *)NULL, PV_NONE,
1965 {(char_u *)NULL, (char_u *)0L}
1966 #endif
1967 SCRIPTID_INIT},
1968 {"printfont", "pfn", P_STRING|P_VI_DEF,
1969 #ifdef FEAT_PRINTER
1970 (char_u *)&p_pfn, PV_NONE,
1972 # ifdef MSWIN
1973 (char_u *)"Courier_New:h10",
1974 # else
1975 (char_u *)"courier",
1976 # endif
1977 (char_u *)0L}
1978 #else
1979 (char_u *)NULL, PV_NONE,
1980 {(char_u *)NULL, (char_u *)0L}
1981 #endif
1982 SCRIPTID_INIT},
1983 {"printheader", "pheader", P_STRING|P_VI_DEF|P_GETTEXT,
1984 #ifdef FEAT_PRINTER
1985 (char_u *)&p_header, PV_NONE,
1986 {(char_u *)N_("%<%f%h%m%=Page %N"), (char_u *)0L}
1987 #else
1988 (char_u *)NULL, PV_NONE,
1989 {(char_u *)NULL, (char_u *)0L}
1990 #endif
1991 SCRIPTID_INIT},
1992 {"printmbcharset", "pmbcs", P_STRING|P_VI_DEF,
1993 #if defined(FEAT_POSTSCRIPT) && defined(FEAT_MBYTE)
1994 (char_u *)&p_pmcs, PV_NONE,
1995 {(char_u *)"", (char_u *)0L}
1996 #else
1997 (char_u *)NULL, PV_NONE,
1998 {(char_u *)NULL, (char_u *)0L}
1999 #endif
2000 SCRIPTID_INIT},
2001 {"printmbfont", "pmbfn", P_STRING|P_VI_DEF,
2002 #if defined(FEAT_POSTSCRIPT) && defined(FEAT_MBYTE)
2003 (char_u *)&p_pmfn, PV_NONE,
2004 {(char_u *)"", (char_u *)0L}
2005 #else
2006 (char_u *)NULL, PV_NONE,
2007 {(char_u *)NULL, (char_u *)0L}
2008 #endif
2009 SCRIPTID_INIT},
2010 {"printoptions", "popt", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2011 #ifdef FEAT_PRINTER
2012 (char_u *)&p_popt, PV_NONE,
2013 {(char_u *)"", (char_u *)0L}
2014 #else
2015 (char_u *)NULL, PV_NONE,
2016 {(char_u *)NULL, (char_u *)0L}
2017 #endif
2018 SCRIPTID_INIT},
2019 {"prompt", NULL, P_BOOL|P_VI_DEF,
2020 (char_u *)&p_prompt, PV_NONE,
2021 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2022 {"pumheight", "ph", P_NUM|P_VI_DEF,
2023 #ifdef FEAT_INS_EXPAND
2024 (char_u *)&p_ph, PV_NONE,
2025 #else
2026 (char_u *)NULL, PV_NONE,
2027 #endif
2028 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2029 {"quoteescape", "qe", P_STRING|P_ALLOCED|P_VI_DEF,
2030 #ifdef FEAT_TEXTOBJ
2031 (char_u *)&p_qe, PV_QE,
2032 {(char_u *)"\\", (char_u *)0L}
2033 #else
2034 (char_u *)NULL, PV_NONE,
2035 {(char_u *)NULL, (char_u *)0L}
2036 #endif
2037 SCRIPTID_INIT},
2038 {"readonly", "ro", P_BOOL|P_VI_DEF|P_RSTAT|P_NOGLOB,
2039 (char_u *)&p_ro, PV_RO,
2040 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2041 {"redraw", NULL, P_BOOL|P_VI_DEF,
2042 (char_u *)NULL, PV_NONE,
2043 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2044 {"redrawtime", "rdt", P_NUM|P_VI_DEF,
2045 #ifdef FEAT_RELTIME
2046 (char_u *)&p_rdt, PV_NONE,
2047 #else
2048 (char_u *)NULL, PV_NONE,
2049 #endif
2050 {(char_u *)2000L, (char_u *)0L} SCRIPTID_INIT},
2051 {"remap", NULL, P_BOOL|P_VI_DEF,
2052 (char_u *)&p_remap, PV_NONE,
2053 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2054 {"report", NULL, P_NUM|P_VI_DEF,
2055 (char_u *)&p_report, PV_NONE,
2056 {(char_u *)2L, (char_u *)0L} SCRIPTID_INIT},
2057 {"restorescreen", "rs", P_BOOL|P_VI_DEF,
2058 #ifdef WIN3264
2059 (char_u *)&p_rs, PV_NONE,
2060 #else
2061 (char_u *)NULL, PV_NONE,
2062 #endif
2063 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2064 {"revins", "ri", P_BOOL|P_VI_DEF|P_VIM,
2065 #ifdef FEAT_RIGHTLEFT
2066 (char_u *)&p_ri, PV_NONE,
2067 #else
2068 (char_u *)NULL, PV_NONE,
2069 #endif
2070 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2071 {"rightleft", "rl", P_BOOL|P_VI_DEF|P_RWIN,
2072 #ifdef FEAT_RIGHTLEFT
2073 (char_u *)VAR_WIN, PV_RL,
2074 #else
2075 (char_u *)NULL, PV_NONE,
2076 #endif
2077 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2078 {"rightleftcmd", "rlc", P_STRING|P_ALLOCED|P_VI_DEF|P_RWIN,
2079 #ifdef FEAT_RIGHTLEFT
2080 (char_u *)VAR_WIN, PV_RLC,
2081 {(char_u *)"search", (char_u *)NULL}
2082 #else
2083 (char_u *)NULL, PV_NONE,
2084 {(char_u *)NULL, (char_u *)0L}
2085 #endif
2086 SCRIPTID_INIT},
2087 {"ruler", "ru", P_BOOL|P_VI_DEF|P_VIM|P_RSTAT,
2088 #ifdef FEAT_CMDL_INFO
2089 (char_u *)&p_ru, PV_NONE,
2090 #else
2091 (char_u *)NULL, PV_NONE,
2092 #endif
2093 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2094 {"rulerformat", "ruf", P_STRING|P_VI_DEF|P_ALLOCED|P_RSTAT,
2095 #ifdef FEAT_STL_OPT
2096 (char_u *)&p_ruf, PV_NONE,
2097 #else
2098 (char_u *)NULL, PV_NONE,
2099 #endif
2100 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2101 {"runtimepath", "rtp", P_STRING|P_VI_DEF|P_EXPAND|P_COMMA|P_NODUP|P_SECURE,
2102 (char_u *)&p_rtp, PV_NONE,
2103 {(char_u *)DFLT_RUNTIMEPATH, (char_u *)0L}
2104 SCRIPTID_INIT},
2105 {"scroll", "scr", P_NUM|P_NO_MKRC|P_VI_DEF,
2106 (char_u *)VAR_WIN, PV_SCROLL,
2107 {(char_u *)12L, (char_u *)0L} SCRIPTID_INIT},
2108 {"scrollbind", "scb", P_BOOL|P_VI_DEF,
2109 #ifdef FEAT_SCROLLBIND
2110 (char_u *)VAR_WIN, PV_SCBIND,
2111 #else
2112 (char_u *)NULL, PV_NONE,
2113 #endif
2114 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2115 {"scrolljump", "sj", P_NUM|P_VI_DEF|P_VIM,
2116 (char_u *)&p_sj, PV_NONE,
2117 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
2118 {"scrolloff", "so", P_NUM|P_VI_DEF|P_VIM|P_RALL,
2119 (char_u *)&p_so, PV_NONE,
2120 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2121 {"scrollopt", "sbo", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2122 #ifdef FEAT_SCROLLBIND
2123 (char_u *)&p_sbo, PV_NONE,
2124 {(char_u *)"ver,jump", (char_u *)0L}
2125 #else
2126 (char_u *)NULL, PV_NONE,
2127 {(char_u *)0L, (char_u *)0L}
2128 #endif
2129 SCRIPTID_INIT},
2130 {"sections", "sect", P_STRING|P_VI_DEF,
2131 (char_u *)&p_sections, PV_NONE,
2132 {(char_u *)"SHNHH HUnhsh", (char_u *)0L}
2133 SCRIPTID_INIT},
2134 {"secure", NULL, P_BOOL|P_VI_DEF|P_SECURE,
2135 (char_u *)&p_secure, PV_NONE,
2136 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2137 {"selection", "sel", P_STRING|P_VI_DEF,
2138 #ifdef FEAT_VISUAL
2139 (char_u *)&p_sel, PV_NONE,
2140 #else
2141 (char_u *)NULL, PV_NONE,
2142 #endif
2143 {(char_u *)"inclusive", (char_u *)0L}
2144 SCRIPTID_INIT},
2145 {"selectmode", "slm", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2146 #ifdef FEAT_VISUAL
2147 (char_u *)&p_slm, PV_NONE,
2148 #else
2149 (char_u *)NULL, PV_NONE,
2150 #endif
2151 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2152 {"sessionoptions", "ssop", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2153 #ifdef FEAT_SESSION
2154 (char_u *)&p_ssop, PV_NONE,
2155 {(char_u *)"blank,buffers,curdir,folds,help,options,tabpages,winsize",
2156 (char_u *)0L}
2157 #else
2158 (char_u *)NULL, PV_NONE,
2159 {(char_u *)0L, (char_u *)0L}
2160 #endif
2161 SCRIPTID_INIT},
2162 {"shell", "sh", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
2163 (char_u *)&p_sh, PV_NONE,
2165 #ifdef VMS
2166 (char_u *)"-",
2167 #else
2168 # if defined(MSDOS)
2169 (char_u *)"command",
2170 # else
2171 # if defined(WIN16)
2172 (char_u *)"command.com",
2173 # else
2174 # if defined(WIN3264)
2175 (char_u *)"", /* set in set_init_1() */
2176 # else
2177 # if defined(OS2)
2178 (char_u *)"cmd.exe",
2179 # else
2180 # if defined(ARCHIE)
2181 (char_u *)"gos",
2182 # else
2183 (char_u *)"sh",
2184 # endif
2185 # endif
2186 # endif
2187 # endif
2188 # endif
2189 #endif /* VMS */
2190 (char_u *)0L} SCRIPTID_INIT},
2191 {"shellcmdflag","shcf", P_STRING|P_VI_DEF|P_SECURE,
2192 (char_u *)&p_shcf, PV_NONE,
2194 #if defined(MSDOS) || defined(MSWIN)
2195 (char_u *)"/c",
2196 #else
2197 # if defined(OS2)
2198 (char_u *)"/c",
2199 # else
2200 (char_u *)"-c",
2201 # endif
2202 #endif
2203 (char_u *)0L} SCRIPTID_INIT},
2204 {"shellpipe", "sp", P_STRING|P_VI_DEF|P_SECURE,
2205 #ifdef FEAT_QUICKFIX
2206 (char_u *)&p_sp, PV_NONE,
2208 #if defined(UNIX) || defined(OS2)
2209 # ifdef ARCHIE
2210 (char_u *)"2>",
2211 # else
2212 (char_u *)"| tee",
2213 # endif
2214 #else
2215 (char_u *)">",
2216 #endif
2217 (char_u *)0L}
2218 #else
2219 (char_u *)NULL, PV_NONE,
2220 {(char_u *)0L, (char_u *)0L}
2221 #endif
2222 SCRIPTID_INIT},
2223 {"shellquote", "shq", P_STRING|P_VI_DEF|P_SECURE,
2224 (char_u *)&p_shq, PV_NONE,
2225 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2226 {"shellredir", "srr", P_STRING|P_VI_DEF|P_SECURE,
2227 (char_u *)&p_srr, PV_NONE,
2228 {(char_u *)">", (char_u *)0L} SCRIPTID_INIT},
2229 {"shellslash", "ssl", P_BOOL|P_VI_DEF,
2230 #ifdef BACKSLASH_IN_FILENAME
2231 (char_u *)&p_ssl, PV_NONE,
2232 #else
2233 (char_u *)NULL, PV_NONE,
2234 #endif
2235 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2236 {"shelltemp", "stmp", P_BOOL,
2237 (char_u *)&p_stmp, PV_NONE,
2238 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
2239 {"shelltype", "st", P_NUM|P_VI_DEF,
2240 #ifdef AMIGA
2241 (char_u *)&p_st, PV_NONE,
2242 #else
2243 (char_u *)NULL, PV_NONE,
2244 #endif
2245 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2246 {"shellxquote", "sxq", P_STRING|P_VI_DEF|P_SECURE,
2247 (char_u *)&p_sxq, PV_NONE,
2249 #if defined(UNIX) && defined(USE_SYSTEM) && !defined(__EMX__)
2250 (char_u *)"\"",
2251 #else
2252 (char_u *)"",
2253 #endif
2254 (char_u *)0L} SCRIPTID_INIT},
2255 {"shiftround", "sr", P_BOOL|P_VI_DEF|P_VIM,
2256 (char_u *)&p_sr, PV_NONE,
2257 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2258 {"shiftwidth", "sw", P_NUM|P_VI_DEF,
2259 (char_u *)&p_sw, PV_SW,
2260 {(char_u *)8L, (char_u *)0L} SCRIPTID_INIT},
2261 {"shortmess", "shm", P_STRING|P_VIM|P_FLAGLIST,
2262 (char_u *)&p_shm, PV_NONE,
2263 {(char_u *)"", (char_u *)"filnxtToO"}
2264 SCRIPTID_INIT},
2265 {"shortname", "sn", P_BOOL|P_VI_DEF,
2266 #ifdef SHORT_FNAME
2267 (char_u *)NULL, PV_NONE,
2268 #else
2269 (char_u *)&p_sn, PV_SN,
2270 #endif
2271 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2272 {"showbreak", "sbr", P_STRING|P_VI_DEF|P_RALL,
2273 #ifdef FEAT_LINEBREAK
2274 (char_u *)&p_sbr, PV_NONE,
2275 #else
2276 (char_u *)NULL, PV_NONE,
2277 #endif
2278 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2279 {"showcmd", "sc", P_BOOL|P_VIM,
2280 #ifdef FEAT_CMDL_INFO
2281 (char_u *)&p_sc, PV_NONE,
2282 #else
2283 (char_u *)NULL, PV_NONE,
2284 #endif
2285 {(char_u *)FALSE,
2286 #ifdef UNIX
2287 (char_u *)FALSE
2288 #else
2289 (char_u *)TRUE
2290 #endif
2291 } SCRIPTID_INIT},
2292 {"showfulltag", "sft", P_BOOL|P_VI_DEF,
2293 (char_u *)&p_sft, PV_NONE,
2294 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2295 {"showmatch", "sm", P_BOOL|P_VI_DEF,
2296 (char_u *)&p_sm, PV_NONE,
2297 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2298 {"showmode", "smd", P_BOOL|P_VIM,
2299 (char_u *)&p_smd, PV_NONE,
2300 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
2301 {"showtabline", "stal", P_NUM|P_VI_DEF|P_RALL,
2302 #ifdef FEAT_WINDOWS
2303 (char_u *)&p_stal, PV_NONE,
2304 #else
2305 (char_u *)NULL, PV_NONE,
2306 #endif
2307 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
2308 {"sidescroll", "ss", P_NUM|P_VI_DEF,
2309 (char_u *)&p_ss, PV_NONE,
2310 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2311 {"sidescrolloff", "siso", P_NUM|P_VI_DEF|P_VIM|P_RBUF,
2312 (char_u *)&p_siso, PV_NONE,
2313 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2314 {"slowopen", "slow", P_BOOL|P_VI_DEF,
2315 (char_u *)NULL, PV_NONE,
2316 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2317 {"smartcase", "scs", P_BOOL|P_VI_DEF|P_VIM,
2318 (char_u *)&p_scs, PV_NONE,
2319 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2320 {"smartindent", "si", P_BOOL|P_VI_DEF|P_VIM,
2321 #ifdef FEAT_SMARTINDENT
2322 (char_u *)&p_si, PV_SI,
2323 #else
2324 (char_u *)NULL, PV_NONE,
2325 #endif
2326 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2327 {"smarttab", "sta", P_BOOL|P_VI_DEF|P_VIM,
2328 (char_u *)&p_sta, PV_NONE,
2329 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2330 {"softtabstop", "sts", P_NUM|P_VI_DEF|P_VIM,
2331 (char_u *)&p_sts, PV_STS,
2332 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2333 {"sourceany", NULL, P_BOOL|P_VI_DEF,
2334 (char_u *)NULL, PV_NONE,
2335 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2336 {"spell", NULL, P_BOOL|P_VI_DEF|P_RWIN,
2337 #ifdef FEAT_SPELL
2338 (char_u *)VAR_WIN, PV_SPELL,
2339 #else
2340 (char_u *)NULL, PV_NONE,
2341 #endif
2342 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2343 {"spellcapcheck", "spc", P_STRING|P_ALLOCED|P_VI_DEF|P_RBUF,
2344 #ifdef FEAT_SPELL
2345 (char_u *)&p_spc, PV_SPC,
2346 {(char_u *)"[.?!]\\_[\\])'\" ]\\+", (char_u *)0L}
2347 #else
2348 (char_u *)NULL, PV_NONE,
2349 {(char_u *)0L, (char_u *)0L}
2350 #endif
2351 SCRIPTID_INIT},
2352 {"spellfile", "spf", P_STRING|P_EXPAND|P_ALLOCED|P_VI_DEF|P_SECURE|P_COMMA,
2353 #ifdef FEAT_SPELL
2354 (char_u *)&p_spf, PV_SPF,
2355 {(char_u *)"", (char_u *)0L}
2356 #else
2357 (char_u *)NULL, PV_NONE,
2358 {(char_u *)0L, (char_u *)0L}
2359 #endif
2360 SCRIPTID_INIT},
2361 {"spelllang", "spl", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_RBUF|P_EXPAND,
2362 #ifdef FEAT_SPELL
2363 (char_u *)&p_spl, PV_SPL,
2364 {(char_u *)"en", (char_u *)0L}
2365 #else
2366 (char_u *)NULL, PV_NONE,
2367 {(char_u *)0L, (char_u *)0L}
2368 #endif
2369 SCRIPTID_INIT},
2370 {"spellsuggest", "sps", P_STRING|P_VI_DEF|P_EXPAND|P_SECURE|P_COMMA,
2371 #ifdef FEAT_SPELL
2372 (char_u *)&p_sps, PV_NONE,
2373 {(char_u *)"best", (char_u *)0L}
2374 #else
2375 (char_u *)NULL, PV_NONE,
2376 {(char_u *)0L, (char_u *)0L}
2377 #endif
2378 SCRIPTID_INIT},
2379 {"splitbelow", "sb", P_BOOL|P_VI_DEF,
2380 #ifdef FEAT_WINDOWS
2381 (char_u *)&p_sb, PV_NONE,
2382 #else
2383 (char_u *)NULL, PV_NONE,
2384 #endif
2385 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2386 {"splitright", "spr", P_BOOL|P_VI_DEF,
2387 #ifdef FEAT_VERTSPLIT
2388 (char_u *)&p_spr, PV_NONE,
2389 #else
2390 (char_u *)NULL, PV_NONE,
2391 #endif
2392 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2393 {"startofline", "sol", P_BOOL|P_VI_DEF|P_VIM,
2394 (char_u *)&p_sol, PV_NONE,
2395 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2396 {"statusline" ,"stl", P_STRING|P_VI_DEF|P_ALLOCED|P_RSTAT,
2397 #ifdef FEAT_STL_OPT
2398 (char_u *)&p_stl, PV_STL,
2399 #else
2400 (char_u *)NULL, PV_NONE,
2401 #endif
2402 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2403 {"suffixes", "su", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2404 (char_u *)&p_su, PV_NONE,
2405 {(char_u *)".bak,~,.o,.h,.info,.swp,.obj",
2406 (char_u *)0L} SCRIPTID_INIT},
2407 {"suffixesadd", "sua", P_STRING|P_VI_DEF|P_ALLOCED|P_COMMA|P_NODUP,
2408 #ifdef FEAT_SEARCHPATH
2409 (char_u *)&p_sua, PV_SUA,
2410 {(char_u *)"", (char_u *)0L}
2411 #else
2412 (char_u *)NULL, PV_NONE,
2413 {(char_u *)0L, (char_u *)0L}
2414 #endif
2415 SCRIPTID_INIT},
2416 {"swapfile", "swf", P_BOOL|P_VI_DEF|P_RSTAT,
2417 (char_u *)&p_swf, PV_SWF,
2418 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2419 {"swapsync", "sws", P_STRING|P_VI_DEF,
2420 (char_u *)&p_sws, PV_NONE,
2421 {(char_u *)"fsync", (char_u *)0L} SCRIPTID_INIT},
2422 {"switchbuf", "swb", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2423 (char_u *)&p_swb, PV_NONE,
2424 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2425 {"synmaxcol", "smc", P_NUM|P_VI_DEF|P_RBUF,
2426 #ifdef FEAT_SYN_HL
2427 (char_u *)&p_smc, PV_SMC,
2428 {(char_u *)3000L, (char_u *)0L}
2429 #else
2430 (char_u *)NULL, PV_NONE,
2431 {(char_u *)0L, (char_u *)0L}
2432 #endif
2433 SCRIPTID_INIT},
2434 {"syntax", "syn", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB|P_NFNAME,
2435 #ifdef FEAT_SYN_HL
2436 (char_u *)&p_syn, PV_SYN,
2437 {(char_u *)"", (char_u *)0L}
2438 #else
2439 (char_u *)NULL, PV_NONE,
2440 {(char_u *)0L, (char_u *)0L}
2441 #endif
2442 SCRIPTID_INIT},
2443 {"tabline", "tal", P_STRING|P_VI_DEF|P_RALL,
2444 #ifdef FEAT_STL_OPT
2445 (char_u *)&p_tal, PV_NONE,
2446 #else
2447 (char_u *)NULL, PV_NONE,
2448 #endif
2449 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2450 {"tabpagemax", "tpm", P_NUM|P_VI_DEF,
2451 #ifdef FEAT_WINDOWS
2452 (char_u *)&p_tpm, PV_NONE,
2453 #else
2454 (char_u *)NULL, PV_NONE,
2455 #endif
2456 {(char_u *)10L, (char_u *)0L} SCRIPTID_INIT},
2457 {"tabstop", "ts", P_NUM|P_VI_DEF|P_RBUF,
2458 (char_u *)&p_ts, PV_TS,
2459 {(char_u *)8L, (char_u *)0L} SCRIPTID_INIT},
2460 {"tagbsearch", "tbs", P_BOOL|P_VI_DEF,
2461 (char_u *)&p_tbs, PV_NONE,
2462 #ifdef VMS /* binary searching doesn't appear to work on VMS */
2463 {(char_u *)0L, (char_u *)0L}
2464 #else
2465 {(char_u *)TRUE, (char_u *)0L}
2466 #endif
2467 SCRIPTID_INIT},
2468 {"taglength", "tl", P_NUM|P_VI_DEF,
2469 (char_u *)&p_tl, PV_NONE,
2470 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2471 {"tagrelative", "tr", P_BOOL|P_VIM,
2472 (char_u *)&p_tr, PV_NONE,
2473 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
2474 {"tags", "tag", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
2475 (char_u *)&p_tags, PV_TAGS,
2477 #if defined(FEAT_EMACS_TAGS) && !defined(CASE_INSENSITIVE_FILENAME)
2478 (char_u *)"./tags,./TAGS,tags,TAGS",
2479 #else
2480 (char_u *)"./tags,tags",
2481 #endif
2482 (char_u *)0L} SCRIPTID_INIT},
2483 {"tagstack", "tgst", P_BOOL|P_VI_DEF,
2484 (char_u *)&p_tgst, PV_NONE,
2485 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2486 {"term", NULL, P_STRING|P_EXPAND|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RALL,
2487 (char_u *)&T_NAME, PV_NONE,
2488 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2489 {"termbidi", "tbidi", P_BOOL|P_VI_DEF,
2490 #ifdef FEAT_ARABIC
2491 (char_u *)&p_tbidi, PV_NONE,
2492 #else
2493 (char_u *)NULL, PV_NONE,
2494 #endif
2495 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2496 {"termencoding", "tenc", P_STRING|P_VI_DEF|P_RCLR,
2497 #ifdef FEAT_MBYTE
2498 (char_u *)&p_tenc, PV_NONE,
2499 {(char_u *)"", (char_u *)0L}
2500 #else
2501 (char_u *)NULL, PV_NONE,
2502 {(char_u *)0L, (char_u *)0L}
2503 #endif
2504 SCRIPTID_INIT},
2505 {"terse", NULL, P_BOOL|P_VI_DEF,
2506 (char_u *)&p_terse, PV_NONE,
2507 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2508 {"textauto", "ta", P_BOOL|P_VIM,
2509 (char_u *)&p_ta, PV_NONE,
2510 {(char_u *)DFLT_TEXTAUTO, (char_u *)TRUE}
2511 SCRIPTID_INIT},
2512 {"textmode", "tx", P_BOOL|P_VI_DEF|P_NO_MKRC,
2513 (char_u *)&p_tx, PV_TX,
2515 #ifdef USE_CRNL
2516 (char_u *)TRUE,
2517 #else
2518 (char_u *)FALSE,
2519 #endif
2520 (char_u *)0L} SCRIPTID_INIT},
2521 {"textwidth", "tw", P_NUM|P_VI_DEF|P_VIM,
2522 (char_u *)&p_tw, PV_TW,
2523 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2524 {"thesaurus", "tsr", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
2525 #ifdef FEAT_INS_EXPAND
2526 (char_u *)&p_tsr, PV_TSR,
2527 #else
2528 (char_u *)NULL, PV_NONE,
2529 #endif
2530 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2531 {"tildeop", "top", P_BOOL|P_VI_DEF|P_VIM,
2532 (char_u *)&p_to, PV_NONE,
2533 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2534 {"timeout", "to", P_BOOL|P_VI_DEF,
2535 (char_u *)&p_timeout, PV_NONE,
2536 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2537 {"timeoutlen", "tm", P_NUM|P_VI_DEF,
2538 (char_u *)&p_tm, PV_NONE,
2539 {(char_u *)1000L, (char_u *)0L} SCRIPTID_INIT},
2540 {"title", NULL, P_BOOL|P_VI_DEF,
2541 #ifdef FEAT_TITLE
2542 (char_u *)&p_title, PV_NONE,
2543 #else
2544 (char_u *)NULL, PV_NONE,
2545 #endif
2546 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2547 {"titlelen", NULL, P_NUM|P_VI_DEF,
2548 #ifdef FEAT_TITLE
2549 (char_u *)&p_titlelen, PV_NONE,
2550 #else
2551 (char_u *)NULL, PV_NONE,
2552 #endif
2553 {(char_u *)85L, (char_u *)0L} SCRIPTID_INIT},
2554 {"titleold", NULL, P_STRING|P_VI_DEF|P_GETTEXT|P_SECURE|P_NO_MKRC,
2555 #ifdef FEAT_TITLE
2556 (char_u *)&p_titleold, PV_NONE,
2557 {(char_u *)N_("Thanks for flying Vim"),
2558 (char_u *)0L}
2559 #else
2560 (char_u *)NULL, PV_NONE,
2561 {(char_u *)0L, (char_u *)0L}
2562 #endif
2563 SCRIPTID_INIT},
2564 {"titlestring", NULL, P_STRING|P_VI_DEF,
2565 #ifdef FEAT_TITLE
2566 (char_u *)&p_titlestring, PV_NONE,
2567 #else
2568 (char_u *)NULL, PV_NONE,
2569 #endif
2570 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2571 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
2572 {"toolbar", "tb", P_STRING|P_COMMA|P_VI_DEF|P_NODUP,
2573 (char_u *)&p_toolbar, PV_NONE,
2574 {(char_u *)"icons,tooltips", (char_u *)0L}
2575 SCRIPTID_INIT},
2576 #endif
2577 #if defined(FEAT_TOOLBAR) && ((defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)) \
2578 || defined(FEAT_GUI_MACVIM))
2579 {"toolbariconsize", "tbis", P_STRING|P_VI_DEF,
2580 (char_u *)&p_tbis, PV_NONE,
2581 {(char_u *)"small", (char_u *)0L} SCRIPTID_INIT},
2582 #endif
2583 {"transparency", "transp", P_NUM|P_VIM|P_RCLR,
2584 #ifdef FEAT_TRANSPARENCY
2585 (char_u *)&p_transp, PV_NONE,
2586 #else
2587 (char_u *)NULL, PV_NONE,
2588 #endif
2589 {(char_u *)0L, (char_u *)0L} },
2590 {"ttimeout", NULL, P_BOOL|P_VI_DEF|P_VIM,
2591 (char_u *)&p_ttimeout, PV_NONE,
2592 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2593 {"ttimeoutlen", "ttm", P_NUM|P_VI_DEF,
2594 (char_u *)&p_ttm, PV_NONE,
2595 {(char_u *)-1L, (char_u *)0L} SCRIPTID_INIT},
2596 {"ttybuiltin", "tbi", P_BOOL|P_VI_DEF,
2597 (char_u *)&p_tbi, PV_NONE,
2598 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2599 {"ttyfast", "tf", P_BOOL|P_NO_MKRC|P_VI_DEF,
2600 (char_u *)&p_tf, PV_NONE,
2601 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2602 {"ttymouse", "ttym", P_STRING|P_NODEFAULT|P_NO_MKRC|P_VI_DEF,
2603 #if defined(FEAT_MOUSE) && (defined(UNIX) || defined(VMS))
2604 (char_u *)&p_ttym, PV_NONE,
2605 #else
2606 (char_u *)NULL, PV_NONE,
2607 #endif
2608 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2609 {"ttyscroll", "tsl", P_NUM|P_VI_DEF,
2610 (char_u *)&p_ttyscroll, PV_NONE,
2611 {(char_u *)999L, (char_u *)0L} SCRIPTID_INIT},
2612 {"ttytype", "tty", P_STRING|P_EXPAND|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RALL,
2613 (char_u *)&T_NAME, PV_NONE,
2614 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2615 {"undolevels", "ul", P_NUM|P_VI_DEF,
2616 (char_u *)&p_ul, PV_NONE,
2618 #if defined(UNIX) || defined(WIN3264) || defined(OS2) || defined(VMS)
2619 (char_u *)1000L,
2620 #else
2621 (char_u *)100L,
2622 #endif
2623 (char_u *)0L} SCRIPTID_INIT},
2624 {"updatecount", "uc", P_NUM|P_VI_DEF,
2625 (char_u *)&p_uc, PV_NONE,
2626 {(char_u *)200L, (char_u *)0L} SCRIPTID_INIT},
2627 {"updatetime", "ut", P_NUM|P_VI_DEF,
2628 (char_u *)&p_ut, PV_NONE,
2629 {(char_u *)4000L, (char_u *)0L} SCRIPTID_INIT},
2630 {"verbose", "vbs", P_NUM|P_VI_DEF,
2631 (char_u *)&p_verbose, PV_NONE,
2632 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2633 {"verbosefile", "vfile", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
2634 (char_u *)&p_vfile, PV_NONE,
2635 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2636 {"viewdir", "vdir", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
2637 #ifdef FEAT_SESSION
2638 (char_u *)&p_vdir, PV_NONE,
2639 {(char_u *)DFLT_VDIR, (char_u *)0L}
2640 #else
2641 (char_u *)NULL, PV_NONE,
2642 {(char_u *)0L, (char_u *)0L}
2643 #endif
2644 SCRIPTID_INIT},
2645 {"viewoptions", "vop", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2646 #ifdef FEAT_SESSION
2647 (char_u *)&p_vop, PV_NONE,
2648 {(char_u *)"folds,options,cursor", (char_u *)0L}
2649 #else
2650 (char_u *)NULL, PV_NONE,
2651 {(char_u *)0L, (char_u *)0L}
2652 #endif
2653 SCRIPTID_INIT},
2654 {"viminfo", "vi", P_STRING|P_COMMA|P_NODUP|P_SECURE,
2655 #ifdef FEAT_VIMINFO
2656 (char_u *)&p_viminfo, PV_NONE,
2657 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
2658 {(char_u *)"", (char_u *)"'100,<50,s10,h,rA:,rB:"}
2659 #else
2660 # ifdef AMIGA
2661 {(char_u *)"",
2662 (char_u *)"'100,<50,s10,h,rdf0:,rdf1:,rdf2:"}
2663 # else
2664 {(char_u *)"", (char_u *)"'100,<50,s10,h"}
2665 # endif
2666 #endif
2667 #else
2668 (char_u *)NULL, PV_NONE,
2669 {(char_u *)0L, (char_u *)0L}
2670 #endif
2671 SCRIPTID_INIT},
2672 {"virtualedit", "ve", P_STRING|P_COMMA|P_NODUP|P_VI_DEF|P_VIM,
2673 #ifdef FEAT_VIRTUALEDIT
2674 (char_u *)&p_ve, PV_NONE,
2675 {(char_u *)"", (char_u *)""}
2676 #else
2677 (char_u *)NULL, PV_NONE,
2678 {(char_u *)0L, (char_u *)0L}
2679 #endif
2680 SCRIPTID_INIT},
2681 {"visualbell", "vb", P_BOOL|P_VI_DEF,
2682 (char_u *)&p_vb, PV_NONE,
2683 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2684 {"w300", NULL, P_NUM|P_VI_DEF,
2685 (char_u *)NULL, PV_NONE,
2686 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2687 {"w1200", NULL, P_NUM|P_VI_DEF,
2688 (char_u *)NULL, PV_NONE,
2689 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2690 {"w9600", NULL, P_NUM|P_VI_DEF,
2691 (char_u *)NULL, PV_NONE,
2692 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2693 {"warn", NULL, P_BOOL|P_VI_DEF,
2694 (char_u *)&p_warn, PV_NONE,
2695 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2696 {"weirdinvert", "wiv", P_BOOL|P_VI_DEF|P_RCLR,
2697 (char_u *)&p_wiv, PV_NONE,
2698 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2699 {"whichwrap", "ww", P_STRING|P_VIM|P_COMMA|P_FLAGLIST,
2700 (char_u *)&p_ww, PV_NONE,
2701 {(char_u *)"", (char_u *)"b,s"} SCRIPTID_INIT},
2702 {"wildchar", "wc", P_NUM|P_VIM,
2703 (char_u *)&p_wc, PV_NONE,
2704 {(char_u *)(long)Ctrl_E, (char_u *)(long)TAB}
2705 SCRIPTID_INIT},
2706 {"wildcharm", "wcm", P_NUM|P_VI_DEF,
2707 (char_u *)&p_wcm, PV_NONE,
2708 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2709 {"wildignore", "wig", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2710 #ifdef FEAT_WILDIGN
2711 (char_u *)&p_wig, PV_NONE,
2712 #else
2713 (char_u *)NULL, PV_NONE,
2714 #endif
2715 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2716 {"wildmenu", "wmnu", P_BOOL|P_VI_DEF,
2717 #ifdef FEAT_WILDMENU
2718 (char_u *)&p_wmnu, PV_NONE,
2719 #else
2720 (char_u *)NULL, PV_NONE,
2721 #endif
2722 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2723 {"wildmode", "wim", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2724 (char_u *)&p_wim, PV_NONE,
2725 {(char_u *)"full", (char_u *)0L} SCRIPTID_INIT},
2726 {"wildoptions", "wop", P_STRING|P_VI_DEF,
2727 #ifdef FEAT_CMDL_COMPL
2728 (char_u *)&p_wop, PV_NONE,
2729 {(char_u *)"", (char_u *)0L}
2730 #else
2731 (char_u *)NULL, PV_NONE,
2732 {(char_u *)NULL, (char_u *)0L}
2733 #endif
2734 SCRIPTID_INIT},
2735 {"winaltkeys", "wak", P_STRING|P_VI_DEF,
2736 #ifdef FEAT_WAK
2737 (char_u *)&p_wak, PV_NONE,
2738 {(char_u *)"menu", (char_u *)0L}
2739 #else
2740 (char_u *)NULL, PV_NONE,
2741 {(char_u *)NULL, (char_u *)0L}
2742 #endif
2743 SCRIPTID_INIT},
2744 {"window", "wi", P_NUM|P_VI_DEF,
2745 (char_u *)&p_window, PV_NONE,
2746 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2747 {"winheight", "wh", P_NUM|P_VI_DEF,
2748 #ifdef FEAT_WINDOWS
2749 (char_u *)&p_wh, PV_NONE,
2750 #else
2751 (char_u *)NULL, PV_NONE,
2752 #endif
2753 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
2754 {"winfixheight", "wfh", P_BOOL|P_VI_DEF|P_RSTAT,
2755 #ifdef FEAT_WINDOWS
2756 (char_u *)VAR_WIN, PV_WFH,
2757 #else
2758 (char_u *)NULL, PV_NONE,
2759 #endif
2760 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2761 {"winfixwidth", "wfw", P_BOOL|P_VI_DEF|P_RSTAT,
2762 #ifdef FEAT_VERTSPLIT
2763 (char_u *)VAR_WIN, PV_WFW,
2764 #else
2765 (char_u *)NULL, PV_NONE,
2766 #endif
2767 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2768 {"winminheight", "wmh", P_NUM|P_VI_DEF,
2769 #ifdef FEAT_WINDOWS
2770 (char_u *)&p_wmh, PV_NONE,
2771 #else
2772 (char_u *)NULL, PV_NONE,
2773 #endif
2774 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
2775 {"winminwidth", "wmw", P_NUM|P_VI_DEF,
2776 #ifdef FEAT_VERTSPLIT
2777 (char_u *)&p_wmw, PV_NONE,
2778 #else
2779 (char_u *)NULL, PV_NONE,
2780 #endif
2781 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
2782 {"winwidth", "wiw", P_NUM|P_VI_DEF,
2783 #ifdef FEAT_VERTSPLIT
2784 (char_u *)&p_wiw, PV_NONE,
2785 #else
2786 (char_u *)NULL, PV_NONE,
2787 #endif
2788 {(char_u *)20L, (char_u *)0L} SCRIPTID_INIT},
2789 {"wrap", NULL, P_BOOL|P_VI_DEF|P_RWIN,
2790 (char_u *)VAR_WIN, PV_WRAP,
2791 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2792 {"wrapmargin", "wm", P_NUM|P_VI_DEF,
2793 (char_u *)&p_wm, PV_WM,
2794 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2795 {"wrapscan", "ws", P_BOOL|P_VI_DEF,
2796 (char_u *)&p_ws, PV_NONE,
2797 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2798 {"write", NULL, P_BOOL|P_VI_DEF,
2799 (char_u *)&p_write, PV_NONE,
2800 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2801 {"writeany", "wa", P_BOOL|P_VI_DEF,
2802 (char_u *)&p_wa, PV_NONE,
2803 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2804 {"writebackup", "wb", P_BOOL|P_VI_DEF|P_VIM,
2805 (char_u *)&p_wb, PV_NONE,
2807 #ifdef FEAT_WRITEBACKUP
2808 (char_u *)TRUE,
2809 #else
2810 (char_u *)FALSE,
2811 #endif
2812 (char_u *)0L} SCRIPTID_INIT},
2813 {"writedelay", "wd", P_NUM|P_VI_DEF,
2814 (char_u *)&p_wd, PV_NONE,
2815 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2817 /* terminal output codes */
2818 #define p_term(sss, vvv) {sss, NULL, P_STRING|P_VI_DEF|P_RALL|P_SECURE, \
2819 (char_u *)&vvv, PV_NONE, \
2820 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2822 p_term("t_AB", T_CAB)
2823 p_term("t_AF", T_CAF)
2824 p_term("t_AL", T_CAL)
2825 p_term("t_al", T_AL)
2826 p_term("t_bc", T_BC)
2827 p_term("t_cd", T_CD)
2828 p_term("t_ce", T_CE)
2829 p_term("t_cl", T_CL)
2830 p_term("t_cm", T_CM)
2831 p_term("t_Co", T_CCO)
2832 p_term("t_CS", T_CCS)
2833 p_term("t_cs", T_CS)
2834 #ifdef FEAT_VERTSPLIT
2835 p_term("t_CV", T_CSV)
2836 #endif
2837 p_term("t_ut", T_UT)
2838 p_term("t_da", T_DA)
2839 p_term("t_db", T_DB)
2840 p_term("t_DL", T_CDL)
2841 p_term("t_dl", T_DL)
2842 p_term("t_fs", T_FS)
2843 p_term("t_IE", T_CIE)
2844 p_term("t_IS", T_CIS)
2845 p_term("t_ke", T_KE)
2846 p_term("t_ks", T_KS)
2847 p_term("t_le", T_LE)
2848 p_term("t_mb", T_MB)
2849 p_term("t_md", T_MD)
2850 p_term("t_me", T_ME)
2851 p_term("t_mr", T_MR)
2852 p_term("t_ms", T_MS)
2853 p_term("t_nd", T_ND)
2854 p_term("t_op", T_OP)
2855 p_term("t_RI", T_CRI)
2856 p_term("t_RV", T_CRV)
2857 p_term("t_Sb", T_CSB)
2858 p_term("t_Sf", T_CSF)
2859 p_term("t_se", T_SE)
2860 p_term("t_so", T_SO)
2861 p_term("t_sr", T_SR)
2862 p_term("t_ts", T_TS)
2863 p_term("t_te", T_TE)
2864 p_term("t_ti", T_TI)
2865 p_term("t_ue", T_UE)
2866 p_term("t_us", T_US)
2867 p_term("t_vb", T_VB)
2868 p_term("t_ve", T_VE)
2869 p_term("t_vi", T_VI)
2870 p_term("t_vs", T_VS)
2871 p_term("t_WP", T_CWP)
2872 p_term("t_WS", T_CWS)
2873 p_term("t_SI", T_CSI)
2874 p_term("t_EI", T_CEI)
2875 p_term("t_xs", T_XS)
2876 p_term("t_ZH", T_CZH)
2877 p_term("t_ZR", T_CZR)
2879 /* terminal key codes are not in here */
2881 /* end marker */
2882 {NULL, NULL, 0, NULL, PV_NONE, {NULL, NULL} SCRIPTID_INIT}
2885 #define PARAM_COUNT (sizeof(options) / sizeof(struct vimoption))
2887 #ifdef FEAT_MBYTE
2888 static char *(p_ambw_values[]) = {"single", "double", NULL};
2889 #endif
2890 static char *(p_bg_values[]) = {"light", "dark", NULL};
2891 static char *(p_nf_values[]) = {"octal", "hex", "alpha", NULL};
2892 static char *(p_ff_values[]) = {FF_UNIX, FF_DOS, FF_MAC, NULL};
2893 #ifdef FEAT_CMDL_COMPL
2894 static char *(p_wop_values[]) = {"tagfile", NULL};
2895 #endif
2896 #ifdef FEAT_WAK
2897 static char *(p_wak_values[]) = {"yes", "menu", "no", NULL};
2898 #endif
2899 static char *(p_mousem_values[]) = {"extend", "popup", "popup_setpos", "mac", NULL};
2900 #ifdef FEAT_VISUAL
2901 static char *(p_sel_values[]) = {"inclusive", "exclusive", "old", NULL};
2902 static char *(p_slm_values[]) = {"mouse", "key", "cmd", NULL};
2903 #endif
2904 #ifdef FEAT_VISUAL
2905 static char *(p_km_values[]) = {"startsel", "stopsel", NULL};
2906 #endif
2907 #ifdef FEAT_BROWSE
2908 static char *(p_bsdir_values[]) = {"current", "last", "buffer", NULL};
2909 #endif
2910 #ifdef FEAT_SCROLLBIND
2911 static char *(p_scbopt_values[]) = {"ver", "hor", "jump", NULL};
2912 #endif
2913 static char *(p_debug_values[]) = {"msg", "throw", "beep", NULL};
2914 #ifdef FEAT_VERTSPLIT
2915 static char *(p_ead_values[]) = {"both", "ver", "hor", NULL};
2916 #endif
2917 #if defined(FEAT_QUICKFIX)
2918 # ifdef FEAT_AUTOCMD
2919 static char *(p_buftype_values[]) = {"nofile", "nowrite", "quickfix", "help", "acwrite", NULL};
2920 # else
2921 static char *(p_buftype_values[]) = {"nofile", "nowrite", "quickfix", "help", NULL};
2922 # endif
2923 static char *(p_bufhidden_values[]) = {"hide", "unload", "delete", "wipe", NULL};
2924 #endif
2925 static char *(p_bs_values[]) = {"indent", "eol", "start", NULL};
2926 #ifdef FEAT_FOLDING
2927 static char *(p_fdm_values[]) = {"manual", "expr", "marker", "indent", "syntax",
2928 # ifdef FEAT_DIFF
2929 "diff",
2930 # endif
2931 NULL};
2932 static char *(p_fcl_values[]) = {"all", NULL};
2933 #endif
2934 #ifdef FEAT_INS_EXPAND
2935 static char *(p_cot_values[]) = {"menu", "menuone", "longest", "preview", NULL};
2936 #endif
2938 static void set_option_default __ARGS((int, int opt_flags, int compatible));
2939 static void set_options_default __ARGS((int opt_flags));
2940 static char_u *term_bg_default __ARGS((void));
2941 static void did_set_option __ARGS((int opt_idx, int opt_flags, int new_value));
2942 static char_u *illegal_char __ARGS((char_u *, int));
2943 static int string_to_key __ARGS((char_u *arg));
2944 #ifdef FEAT_CMDWIN
2945 static char_u *check_cedit __ARGS((void));
2946 #endif
2947 #ifdef FEAT_TITLE
2948 static void did_set_title __ARGS((int icon));
2949 #endif
2950 static char_u *option_expand __ARGS((int opt_idx, char_u *val));
2951 static void didset_options __ARGS((void));
2952 static void check_string_option __ARGS((char_u **pp));
2953 #if defined(FEAT_EVAL) || defined(PROTO)
2954 static long_u *insecure_flag __ARGS((int opt_idx, int opt_flags));
2955 #else
2956 # define insecure_flag(opt_idx, opt_flags) (&options[opt_idx].flags)
2957 #endif
2958 static void set_string_option_global __ARGS((int opt_idx, char_u **varp));
2959 static void set_string_option __ARGS((int opt_idx, char_u *value, int opt_flags));
2960 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));
2961 static char_u *set_chars_option __ARGS((char_u **varp));
2962 #ifdef FEAT_CLIPBOARD
2963 static char_u *check_clipboard_option __ARGS((void));
2964 #endif
2965 #ifdef FEAT_SPELL
2966 static char_u *compile_cap_prog __ARGS((buf_T *buf));
2967 #endif
2968 #ifdef FEAT_EVAL
2969 static void set_option_scriptID_idx __ARGS((int opt_idx, int opt_flags, int id));
2970 #endif
2971 static char_u *set_bool_option __ARGS((int opt_idx, char_u *varp, int value, int opt_flags));
2972 static char_u *set_num_option __ARGS((int opt_idx, char_u *varp, long value, char_u *errbuf, size_t errbuflen, int opt_flags));
2973 static void check_redraw __ARGS((long_u flags));
2974 static int findoption __ARGS((char_u *));
2975 static int find_key_option __ARGS((char_u *));
2976 static void showoptions __ARGS((int all, int opt_flags));
2977 static int optval_default __ARGS((struct vimoption *, char_u *varp));
2978 static void showoneopt __ARGS((struct vimoption *, int opt_flags));
2979 static int put_setstring __ARGS((FILE *fd, char *cmd, char *name, char_u **valuep, int expand));
2980 static int put_setnum __ARGS((FILE *fd, char *cmd, char *name, long *valuep));
2981 static int put_setbool __ARGS((FILE *fd, char *cmd, char *name, int value));
2982 static int istermoption __ARGS((struct vimoption *));
2983 static char_u *get_varp_scope __ARGS((struct vimoption *p, int opt_flags));
2984 static char_u *get_varp __ARGS((struct vimoption *));
2985 static void option_value2string __ARGS((struct vimoption *, int opt_flags));
2986 static int wc_use_keyname __ARGS((char_u *varp, long *wcp));
2987 #ifdef FEAT_LANGMAP
2988 static void langmap_init __ARGS((void));
2989 static void langmap_set __ARGS((void));
2990 #endif
2991 static void paste_option_changed __ARGS((void));
2992 static void compatible_set __ARGS((void));
2993 #ifdef FEAT_LINEBREAK
2994 static void fill_breakat_flags __ARGS((void));
2995 #endif
2996 static int opt_strings_flags __ARGS((char_u *val, char **values, unsigned *flagp, int list));
2997 static int check_opt_strings __ARGS((char_u *val, char **values, int));
2998 static int check_opt_wim __ARGS((void));
2999 #ifdef FEAT_FULLSCREEN
3000 static int check_fuoptions __ARGS((char_u *, unsigned *, int *));
3001 #endif
3004 * Initialize the options, first part.
3006 * Called only once from main(), just after creating the first buffer.
3008 void
3009 set_init_1()
3011 char_u *p;
3012 int opt_idx;
3013 long_u n;
3014 #if defined(FEAT_GUI_MACVIM) && defined(FEAT_MBYTE)
3015 int did_mb_init;
3016 #endif
3018 #ifdef FEAT_LANGMAP
3019 langmap_init();
3020 #endif
3022 /* Be Vi compatible by default */
3023 p_cp = TRUE;
3025 /* Use POSIX compatibility when $VIM_POSIX is set. */
3026 if (mch_getenv((char_u *)"VIM_POSIX") != NULL)
3028 set_string_default("cpo", (char_u *)CPO_ALL);
3029 set_string_default("shm", (char_u *)"A");
3033 * Find default value for 'shell' option.
3034 * Don't use it if it is empty.
3036 if (((p = mch_getenv((char_u *)"SHELL")) != NULL && *p != NUL)
3037 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
3038 # ifdef __EMX__
3039 || ((p = mch_getenv((char_u *)"EMXSHELL")) != NULL && *p != NUL)
3040 # endif
3041 || ((p = mch_getenv((char_u *)"COMSPEC")) != NULL && *p != NUL)
3042 # ifdef WIN3264
3043 || ((p = default_shell()) != NULL && *p != NUL)
3044 # endif
3045 #endif
3047 set_string_default("sh", p);
3049 #ifdef FEAT_WILDIGN
3051 * Set the default for 'backupskip' to include environment variables for
3052 * temp files.
3055 # ifdef UNIX
3056 static char *(names[4]) = {"", "TMPDIR", "TEMP", "TMP"};
3057 # else
3058 static char *(names[3]) = {"TMPDIR", "TEMP", "TMP"};
3059 # endif
3060 int len;
3061 garray_T ga;
3062 int mustfree;
3064 ga_init2(&ga, 1, 100);
3065 for (n = 0; n < (long)(sizeof(names) / sizeof(char *)); ++n)
3067 mustfree = FALSE;
3068 # ifdef UNIX
3069 if (*names[n] == NUL)
3070 p = (char_u *)"/tmp";
3071 else
3072 # endif
3073 p = vim_getenv((char_u *)names[n], &mustfree);
3074 if (p != NULL && *p != NUL)
3076 /* First time count the NUL, otherwise count the ','. */
3077 len = (int)STRLEN(p) + 3;
3078 if (ga_grow(&ga, len) == OK)
3080 if (ga.ga_len > 0)
3081 STRCAT(ga.ga_data, ",");
3082 STRCAT(ga.ga_data, p);
3083 add_pathsep(ga.ga_data);
3084 STRCAT(ga.ga_data, "*");
3085 ga.ga_len += len;
3088 if (mustfree)
3089 vim_free(p);
3091 if (ga.ga_data != NULL)
3093 set_string_default("bsk", ga.ga_data);
3094 vim_free(ga.ga_data);
3097 #endif
3100 * 'maxmemtot' and 'maxmem' may have to be adjusted for available memory
3102 opt_idx = findoption((char_u *)"maxmemtot");
3103 if (opt_idx >= 0)
3105 #if !defined(HAVE_AVAIL_MEM) && !defined(HAVE_TOTAL_MEM)
3106 if (options[opt_idx].def_val[VI_DEFAULT] == (char_u *)0L)
3107 #endif
3109 #ifdef HAVE_AVAIL_MEM
3110 /* Use amount of memory available at this moment. */
3111 n = (mch_avail_mem(FALSE) >> 11);
3112 #else
3113 # ifdef HAVE_TOTAL_MEM
3114 /* Use amount of memory available to Vim. */
3115 n = (mch_total_mem(FALSE) >> 1);
3116 # else
3117 n = (0x7fffffff >> 11);
3118 # endif
3119 #endif
3120 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)n;
3121 opt_idx = findoption((char_u *)"maxmem");
3122 if (opt_idx >= 0)
3124 #if !defined(HAVE_AVAIL_MEM) && !defined(HAVE_TOTAL_MEM)
3125 if ((long)options[opt_idx].def_val[VI_DEFAULT] > n
3126 || (long)options[opt_idx].def_val[VI_DEFAULT] == 0L)
3127 #endif
3128 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)n;
3133 #ifdef FEAT_GUI_W32
3134 /* force 'shortname' for Win32s */
3135 if (gui_is_win32s())
3137 opt_idx = findoption((char_u *)"shortname");
3138 if (opt_idx >= 0)
3139 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)TRUE;
3141 #endif
3143 #ifdef FEAT_SEARCHPATH
3145 char_u *cdpath;
3146 char_u *buf;
3147 int i;
3148 int j;
3149 int mustfree = FALSE;
3151 /* Initialize the 'cdpath' option's default value. */
3152 cdpath = vim_getenv((char_u *)"CDPATH", &mustfree);
3153 if (cdpath != NULL)
3155 buf = alloc((unsigned)((STRLEN(cdpath) << 1) + 2));
3156 if (buf != NULL)
3158 buf[0] = ','; /* start with ",", current dir first */
3159 j = 1;
3160 for (i = 0; cdpath[i] != NUL; ++i)
3162 if (vim_ispathlistsep(cdpath[i]))
3163 buf[j++] = ',';
3164 else
3166 if (cdpath[i] == ' ' || cdpath[i] == ',')
3167 buf[j++] = '\\';
3168 buf[j++] = cdpath[i];
3171 buf[j] = NUL;
3172 opt_idx = findoption((char_u *)"cdpath");
3173 if (opt_idx >= 0)
3175 options[opt_idx].def_val[VI_DEFAULT] = buf;
3176 options[opt_idx].flags |= P_DEF_ALLOCED;
3179 if (mustfree)
3180 vim_free(cdpath);
3183 #endif
3185 #if defined(FEAT_POSTSCRIPT) && (defined(MSWIN) || defined(OS2) || defined(VMS) || defined(EBCDIC) || defined(MAC) || defined(hpux))
3186 /* Set print encoding on platforms that don't default to latin1 */
3187 set_string_default("penc",
3188 # if defined(MSWIN) || defined(OS2)
3189 (char_u *)"cp1252"
3190 # else
3191 # ifdef VMS
3192 (char_u *)"dec-mcs"
3193 # else
3194 # ifdef EBCDIC
3195 (char_u *)"ebcdic-uk"
3196 # else
3197 # ifdef MAC
3198 (char_u *)"mac-roman"
3199 # else /* HPUX */
3200 (char_u *)"hp-roman8"
3201 # endif
3202 # endif
3203 # endif
3204 # endif
3206 #endif
3208 #ifdef FEAT_POSTSCRIPT
3209 /* 'printexpr' must be allocated to be able to evaluate it. */
3210 set_string_default("pexpr",
3211 # if defined(MSWIN) || defined(MSDOS) || defined(OS2)
3212 (char_u *)"system('copy' . ' ' . v:fname_in . (&printdevice == '' ? ' LPT1:' : (' \"' . &printdevice . '\"'))) . delete(v:fname_in)"
3213 # else
3214 # ifdef VMS
3215 (char_u *)"system('print/delete' . (&printdevice == '' ? '' : ' /queue=' . &printdevice) . ' ' . v:fname_in)"
3217 # else
3218 (char_u *)"system('lpr' . (&printdevice == '' ? '' : ' -P' . &printdevice) . ' ' . v:fname_in) . delete(v:fname_in) + v:shell_error"
3219 # endif
3220 # endif
3222 #endif
3225 * Set all the options (except the terminal options) to their default
3226 * value. Also set the global value for local options.
3228 set_options_default(0);
3230 #ifdef FEAT_GUI
3231 if (found_reverse_arg)
3232 set_option_value((char_u *)"bg", 0L, (char_u *)"dark", 0);
3233 #endif
3235 curbuf->b_p_initialized = TRUE;
3236 curbuf->b_p_ar = -1; /* no local 'autoread' value */
3237 check_buf_options(curbuf);
3238 check_win_options(curwin);
3239 check_options();
3241 /* Must be before option_expand(), because that one needs vim_isIDc() */
3242 didset_options();
3244 #ifdef FEAT_SPELL
3245 /* Use the current chartab for the generic chartab. */
3246 init_spell_chartab();
3247 #endif
3249 #ifdef FEAT_LINEBREAK
3251 * initialize the table for 'breakat'.
3253 fill_breakat_flags();
3254 #endif
3257 * Expand environment variables and things like "~" for the defaults.
3258 * If option_expand() returns non-NULL the variable is expanded. This can
3259 * only happen for non-indirect options.
3260 * Also set the default to the expanded value, so ":set" does not list
3261 * them.
3262 * Don't set the P_ALLOCED flag, because we don't want to free the
3263 * default.
3265 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
3267 if ((options[opt_idx].flags & P_GETTEXT)
3268 && options[opt_idx].var != NULL)
3269 p = (char_u *)_(*(char **)options[opt_idx].var);
3270 else
3271 p = option_expand(opt_idx, NULL);
3272 if (p != NULL && (p = vim_strsave(p)) != NULL)
3274 *(char_u **)options[opt_idx].var = p;
3275 /* VIMEXP
3276 * Defaults for all expanded options are currently the same for Vi
3277 * and Vim. When this changes, add some code here! Also need to
3278 * split P_DEF_ALLOCED in two.
3280 if (options[opt_idx].flags & P_DEF_ALLOCED)
3281 vim_free(options[opt_idx].def_val[VI_DEFAULT]);
3282 options[opt_idx].def_val[VI_DEFAULT] = p;
3283 options[opt_idx].flags |= P_DEF_ALLOCED;
3287 /* Initialize the highlight_attr[] table. */
3288 highlight_changed();
3290 save_file_ff(curbuf); /* Buffer is unchanged */
3292 /* Parse default for 'wildmode' */
3293 check_opt_wim();
3295 #if defined(FEAT_ARABIC)
3296 /* Detect use of mlterm.
3297 * Mlterm is a terminal emulator akin to xterm that has some special
3298 * abilities (bidi namely).
3299 * NOTE: mlterm's author is being asked to 'set' a variable
3300 * instead of an environment variable due to inheritance.
3302 if (mch_getenv((char_u *)"MLTERM") != NULL)
3303 set_option_value((char_u *)"tbidi", 1L, NULL, 0);
3304 #endif
3306 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
3307 /* Parse default for 'fillchars'. */
3308 (void)set_chars_option(&p_fcs);
3309 #endif
3311 #ifdef FEAT_CLIPBOARD
3312 /* Parse default for 'clipboard' */
3313 (void)check_clipboard_option();
3314 #endif
3316 #ifdef FEAT_MBYTE
3317 # if defined(WIN3264) && defined(FEAT_GETTEXT)
3319 * If $LANG isn't set, try to get a good value for it. This makes the
3320 * right language be used automatically. Don't do this for English.
3322 if (mch_getenv((char_u *)"LANG") == NULL)
3324 char buf[20];
3326 /* Could use LOCALE_SISO639LANGNAME, but it's not in Win95.
3327 * LOCALE_SABBREVLANGNAME gives us three letters, like "enu", we use
3328 * only the first two. */
3329 n = GetLocaleInfo(LOCALE_USER_DEFAULT, LOCALE_SABBREVLANGNAME,
3330 (LPTSTR)buf, 20);
3331 if (n >= 2 && STRNICMP(buf, "en", 2) != 0)
3333 /* There are a few exceptions (probably more) */
3334 if (STRNICMP(buf, "cht", 3) == 0 || STRNICMP(buf, "zht", 3) == 0)
3335 STRCPY(buf, "zh_TW");
3336 else if (STRNICMP(buf, "chs", 3) == 0
3337 || STRNICMP(buf, "zhc", 3) == 0)
3338 STRCPY(buf, "zh_CN");
3339 else if (STRNICMP(buf, "jp", 2) == 0)
3340 STRCPY(buf, "ja");
3341 else
3342 buf[2] = NUL; /* truncate to two-letter code */
3343 vim_setenv("LANG", buf);
3346 # else
3347 # ifdef MACOS_CONVERT
3348 /* Moved to os_mac_conv.c to avoid dependency problems. */
3349 mac_lang_init();
3350 # endif
3351 # endif
3353 /* enc_locale() will try to find the encoding of the current locale. */
3354 p = enc_locale();
3355 if (p != NULL)
3357 char_u *save_enc;
3359 /* Try setting 'encoding' and check if the value is valid.
3360 * If not, go back to the default "latin1". */
3361 save_enc = p_enc;
3362 p_enc = p;
3363 if (STRCMP(p_enc, "gb18030") == 0)
3365 /* We don't support "gb18030", but "cp936" is a good substitute
3366 * for practical purposes, thus use that. It's not an alias to
3367 * still support conversion between gb18030 and utf-8. */
3368 p_enc = vim_strsave((char_u *)"cp936");
3369 vim_free(p);
3371 #if defined(FEAT_GUI_MACVIM)
3372 did_mb_init = (mb_init() == NULL);
3373 if (!did_mb_init)
3375 /* The encoding returned by enc_locale() was invalid, so fall back
3376 * on using utf-8 as the default encoding in MacVim. */
3377 vim_free(p_enc);
3378 p_enc = vim_strsave((char_u *)"utf-8");
3379 did_mb_init = (mb_init() == NULL);
3382 /* did_mb_init should always be TRUE, but check just in case. */
3383 if (did_mb_init)
3384 #else
3385 if (mb_init() == NULL)
3386 #endif
3388 opt_idx = findoption((char_u *)"encoding");
3389 if (opt_idx >= 0)
3391 options[opt_idx].def_val[VI_DEFAULT] = p_enc;
3392 options[opt_idx].flags |= P_DEF_ALLOCED;
3395 #if defined(MSDOS) || defined(MSWIN) || defined(OS2) || defined(MACOS) \
3396 || defined(VMS)
3397 if (STRCMP(p_enc, "latin1") == 0
3398 # ifdef FEAT_MBYTE
3399 || enc_utf8
3400 # endif
3403 /* Adjust the default for 'isprint' and 'iskeyword' to match
3404 * latin1. Also set the defaults for when 'nocompatible' is
3405 * set. */
3406 set_string_option_direct((char_u *)"isp", -1,
3407 ISP_LATIN1, OPT_FREE, SID_NONE);
3408 set_string_option_direct((char_u *)"isk", -1,
3409 ISK_LATIN1, OPT_FREE, SID_NONE);
3410 opt_idx = findoption((char_u *)"isp");
3411 if (opt_idx >= 0)
3412 options[opt_idx].def_val[VIM_DEFAULT] = ISP_LATIN1;
3413 opt_idx = findoption((char_u *)"isk");
3414 if (opt_idx >= 0)
3415 options[opt_idx].def_val[VIM_DEFAULT] = ISK_LATIN1;
3416 (void)init_chartab();
3418 #endif
3420 # if defined(WIN3264) && !defined(FEAT_GUI)
3421 /* Win32 console: When GetACP() returns a different value from
3422 * GetConsoleCP() set 'termencoding'. */
3423 if (GetACP() != GetConsoleCP())
3425 char buf[50];
3427 sprintf(buf, "cp%ld", (long)GetConsoleCP());
3428 p_tenc = vim_strsave((char_u *)buf);
3429 if (p_tenc != NULL)
3431 opt_idx = findoption((char_u *)"termencoding");
3432 if (opt_idx >= 0)
3434 options[opt_idx].def_val[VI_DEFAULT] = p_tenc;
3435 options[opt_idx].flags |= P_DEF_ALLOCED;
3437 convert_setup(&input_conv, p_tenc, p_enc);
3438 convert_setup(&output_conv, p_enc, p_tenc);
3440 else
3441 p_tenc = empty_option;
3443 # endif
3444 # if defined(WIN3264) && defined(FEAT_MBYTE)
3445 /* $HOME may have characters in active code page. */
3446 init_homedir();
3447 # endif
3449 else
3451 vim_free(p_enc);
3452 p_enc = save_enc;
3455 #endif
3457 #ifdef FEAT_MULTI_LANG
3458 /* Set the default for 'helplang'. */
3459 set_helplang_default(get_mess_lang());
3460 #endif
3464 * Set an option to its default value.
3465 * This does not take care of side effects!
3467 static void
3468 set_option_default(opt_idx, opt_flags, compatible)
3469 int opt_idx;
3470 int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */
3471 int compatible; /* use Vi default value */
3473 char_u *varp; /* pointer to variable for current option */
3474 int dvi; /* index in def_val[] */
3475 long_u flags;
3476 long_u *flagsp;
3477 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
3479 varp = get_varp_scope(&(options[opt_idx]), both ? OPT_LOCAL : opt_flags);
3480 flags = options[opt_idx].flags;
3481 if (varp != NULL) /* skip hidden option, nothing to do for it */
3483 dvi = ((flags & P_VI_DEF) || compatible) ? VI_DEFAULT : VIM_DEFAULT;
3484 if (flags & P_STRING)
3486 /* Use set_string_option_direct() for local options to handle
3487 * freeing and allocating the value. */
3488 if (options[opt_idx].indir != PV_NONE)
3489 set_string_option_direct(NULL, opt_idx,
3490 options[opt_idx].def_val[dvi], opt_flags, 0);
3491 else
3493 if ((opt_flags & OPT_FREE) && (flags & P_ALLOCED))
3494 free_string_option(*(char_u **)(varp));
3495 *(char_u **)varp = options[opt_idx].def_val[dvi];
3496 options[opt_idx].flags &= ~P_ALLOCED;
3499 else if (flags & P_NUM)
3501 if (options[opt_idx].indir == PV_SCROLL)
3502 win_comp_scroll(curwin);
3503 else
3505 *(long *)varp = (long)(long_i)options[opt_idx].def_val[dvi];
3506 /* May also set global value for local option. */
3507 if (both)
3508 *(long *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) =
3509 *(long *)varp;
3512 else /* P_BOOL */
3514 /* the cast to long is required for Manx C, long_i is needed for
3515 * MSVC */
3516 *(int *)varp = (int)(long)(long_i)options[opt_idx].def_val[dvi];
3517 #ifdef UNIX
3518 /* 'modeline' defaults to off for root */
3519 if (options[opt_idx].indir == PV_ML && getuid() == ROOT_UID)
3520 *(int *)varp = FALSE;
3521 #endif
3522 /* May also set global value for local option. */
3523 if (both)
3524 *(int *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) =
3525 *(int *)varp;
3528 /* The default value is not insecure. */
3529 flagsp = insecure_flag(opt_idx, opt_flags);
3530 *flagsp = *flagsp & ~P_INSECURE;
3533 #ifdef FEAT_EVAL
3534 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
3535 #endif
3539 * Set all options (except terminal options) to their default value.
3541 static void
3542 set_options_default(opt_flags)
3543 int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */
3545 int i;
3546 #ifdef FEAT_WINDOWS
3547 win_T *wp;
3548 tabpage_T *tp;
3549 #endif
3551 for (i = 0; !istermoption(&options[i]); i++)
3552 if (!(options[i].flags & P_NODEFAULT))
3553 set_option_default(i, opt_flags, p_cp);
3555 #ifdef FEAT_WINDOWS
3556 /* The 'scroll' option must be computed for all windows. */
3557 FOR_ALL_TAB_WINDOWS(tp, wp)
3558 win_comp_scroll(wp);
3559 #else
3560 win_comp_scroll(curwin);
3561 #endif
3565 * Set the Vi-default value of a string option.
3566 * Used for 'sh', 'backupskip' and 'term'.
3568 void
3569 set_string_default(name, val)
3570 char *name;
3571 char_u *val;
3573 char_u *p;
3574 int opt_idx;
3576 p = vim_strsave(val);
3577 if (p != NULL) /* we don't want a NULL */
3579 opt_idx = findoption((char_u *)name);
3580 if (opt_idx >= 0)
3582 if (options[opt_idx].flags & P_DEF_ALLOCED)
3583 vim_free(options[opt_idx].def_val[VI_DEFAULT]);
3584 options[opt_idx].def_val[VI_DEFAULT] = p;
3585 options[opt_idx].flags |= P_DEF_ALLOCED;
3591 * Set the Vi-default value of a number option.
3592 * Used for 'lines' and 'columns'.
3594 void
3595 set_number_default(name, val)
3596 char *name;
3597 long val;
3599 int opt_idx;
3601 opt_idx = findoption((char_u *)name);
3602 if (opt_idx >= 0)
3603 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
3606 #if defined(EXITFREE) || defined(PROTO)
3608 * Free all options.
3610 void
3611 free_all_options()
3613 int i;
3615 for (i = 0; !istermoption(&options[i]); i++)
3617 if (options[i].indir == PV_NONE)
3619 /* global option: free value and default value. */
3620 if (options[i].flags & P_ALLOCED && options[i].var != NULL)
3621 free_string_option(*(char_u **)options[i].var);
3622 if (options[i].flags & P_DEF_ALLOCED)
3623 free_string_option(options[i].def_val[VI_DEFAULT]);
3625 else if (options[i].var != VAR_WIN
3626 && (options[i].flags & P_STRING))
3627 /* buffer-local option: free global value */
3628 free_string_option(*(char_u **)options[i].var);
3631 #endif
3635 * Initialize the options, part two: After getting Rows and Columns and
3636 * setting 'term'.
3638 void
3639 set_init_2()
3641 int idx;
3644 * 'scroll' defaults to half the window height. Note that this default is
3645 * wrong when the window height changes.
3647 set_number_default("scroll", (long)((long_u)Rows >> 1));
3648 idx = findoption((char_u *)"scroll");
3649 if (idx >= 0 && !(options[idx].flags & P_WAS_SET))
3650 set_option_default(idx, OPT_LOCAL, p_cp);
3651 comp_col();
3654 * 'window' is only for backwards compatibility with Vi.
3655 * Default is Rows - 1.
3657 if (!option_was_set((char_u *)"window"))
3658 p_window = Rows - 1;
3659 set_number_default("window", Rows - 1);
3661 /* For DOS console the default is always black. */
3662 #if !((defined(MSDOS) || defined(OS2) || defined(WIN3264)) && !defined(FEAT_GUI))
3664 * If 'background' wasn't set by the user, try guessing the value,
3665 * depending on the terminal name. Only need to check for terminals
3666 * with a dark background, that can handle color.
3668 idx = findoption((char_u *)"bg");
3669 if (idx >= 0 && !(options[idx].flags & P_WAS_SET)
3670 && *term_bg_default() == 'd')
3672 set_string_option_direct(NULL, idx, (char_u *)"dark", OPT_FREE, 0);
3673 /* don't mark it as set, when starting the GUI it may be
3674 * changed again */
3675 options[idx].flags &= ~P_WAS_SET;
3677 #endif
3679 #ifdef CURSOR_SHAPE
3680 parse_shape_opt(SHAPE_CURSOR); /* set cursor shapes from 'guicursor' */
3681 #endif
3682 #ifdef FEAT_MOUSESHAPE
3683 parse_shape_opt(SHAPE_MOUSE); /* set mouse shapes from 'mouseshape' */
3684 #endif
3685 #ifdef FEAT_PRINTER
3686 (void)parse_printoptions(); /* parse 'printoptions' default value */
3687 #endif
3691 * Return "dark" or "light" depending on the kind of terminal.
3692 * This is just guessing! Recognized are:
3693 * "linux" Linux console
3694 * "screen.linux" Linux console with screen
3695 * "cygwin" Cygwin shell
3696 * "putty" Putty program
3697 * We also check the COLORFGBG environment variable, which is set by
3698 * rxvt and derivatives. This variable contains either two or three
3699 * values separated by semicolons; we want the last value in either
3700 * case. If this value is 0-6 or 8, our background is dark.
3702 static char_u *
3703 term_bg_default()
3705 #if defined(MSDOS) || defined(OS2) || defined(WIN3264)
3706 /* DOS console nearly always black */
3707 return (char_u *)"dark";
3708 #else
3709 char_u *p;
3711 if (STRCMP(T_NAME, "linux") == 0
3712 || STRCMP(T_NAME, "screen.linux") == 0
3713 || STRCMP(T_NAME, "cygwin") == 0
3714 || STRCMP(T_NAME, "putty") == 0
3715 || ((p = mch_getenv((char_u *)"COLORFGBG")) != NULL
3716 && (p = vim_strrchr(p, ';')) != NULL
3717 && ((p[1] >= '0' && p[1] <= '6') || p[1] == '8')
3718 && p[2] == NUL))
3719 return (char_u *)"dark";
3720 return (char_u *)"light";
3721 #endif
3725 * Initialize the options, part three: After reading the .vimrc
3727 void
3728 set_init_3()
3730 #if defined(UNIX) || defined(OS2) || defined(WIN3264)
3732 * Set 'shellpipe' and 'shellredir', depending on the 'shell' option.
3733 * This is done after other initializations, where 'shell' might have been
3734 * set, but only if they have not been set before.
3736 char_u *p;
3737 int idx_srr;
3738 int do_srr;
3739 #ifdef FEAT_QUICKFIX
3740 int idx_sp;
3741 int do_sp;
3742 #endif
3744 idx_srr = findoption((char_u *)"srr");
3745 if (idx_srr < 0)
3746 do_srr = FALSE;
3747 else
3748 do_srr = !(options[idx_srr].flags & P_WAS_SET);
3749 #ifdef FEAT_QUICKFIX
3750 idx_sp = findoption((char_u *)"sp");
3751 if (idx_sp < 0)
3752 do_sp = FALSE;
3753 else
3754 do_sp = !(options[idx_sp].flags & P_WAS_SET);
3755 #endif
3758 * Isolate the name of the shell:
3759 * - Skip beyond any path. E.g., "/usr/bin/csh -f" -> "csh -f".
3760 * - Remove any argument. E.g., "csh -f" -> "csh".
3762 p = gettail(p_sh);
3763 p = vim_strnsave(p, (int)(skiptowhite(p) - p));
3764 if (p != NULL)
3767 * Default for p_sp is "| tee", for p_srr is ">".
3768 * For known shells it is changed here to include stderr.
3770 if ( fnamecmp(p, "csh") == 0
3771 || fnamecmp(p, "tcsh") == 0
3772 # if defined(OS2) || defined(WIN3264) /* also check with .exe extension */
3773 || fnamecmp(p, "csh.exe") == 0
3774 || fnamecmp(p, "tcsh.exe") == 0
3775 # endif
3778 #if defined(FEAT_QUICKFIX)
3779 if (do_sp)
3781 # ifdef WIN3264
3782 p_sp = (char_u *)">&";
3783 # else
3784 p_sp = (char_u *)"|& tee";
3785 # endif
3786 options[idx_sp].def_val[VI_DEFAULT] = p_sp;
3788 #endif
3789 if (do_srr)
3791 p_srr = (char_u *)">&";
3792 options[idx_srr].def_val[VI_DEFAULT] = p_srr;
3795 else
3796 # ifndef OS2 /* Always use bourne shell style redirection if we reach this */
3797 if ( fnamecmp(p, "sh") == 0
3798 || fnamecmp(p, "ksh") == 0
3799 || fnamecmp(p, "zsh") == 0
3800 || fnamecmp(p, "zsh-beta") == 0
3801 || fnamecmp(p, "bash") == 0
3802 # ifdef WIN3264
3803 || fnamecmp(p, "cmd") == 0
3804 || fnamecmp(p, "sh.exe") == 0
3805 || fnamecmp(p, "ksh.exe") == 0
3806 || fnamecmp(p, "zsh.exe") == 0
3807 || fnamecmp(p, "zsh-beta.exe") == 0
3808 || fnamecmp(p, "bash.exe") == 0
3809 || fnamecmp(p, "cmd.exe") == 0
3810 # endif
3812 # endif
3814 #if defined(FEAT_QUICKFIX)
3815 if (do_sp)
3817 # ifdef WIN3264
3818 p_sp = (char_u *)">%s 2>&1";
3819 # else
3820 p_sp = (char_u *)"2>&1| tee";
3821 # endif
3822 options[idx_sp].def_val[VI_DEFAULT] = p_sp;
3824 #endif
3825 if (do_srr)
3827 p_srr = (char_u *)">%s 2>&1";
3828 options[idx_srr].def_val[VI_DEFAULT] = p_srr;
3831 vim_free(p);
3833 #endif
3835 #if defined(MSDOS) || defined(WIN3264) || defined(OS2)
3837 * Set 'shellcmdflag and 'shellquote' depending on the 'shell' option.
3838 * This is done after other initializations, where 'shell' might have been
3839 * set, but only if they have not been set before. Default for p_shcf is
3840 * "/c", for p_shq is "". For "sh" like shells it is changed here to
3841 * "-c" and "\"", but not for DJGPP, because it starts the shell without
3842 * command.com. And for Win32 we need to set p_sxq instead.
3844 if (strstr((char *)gettail(p_sh), "sh") != NULL)
3846 int idx3;
3848 idx3 = findoption((char_u *)"shcf");
3849 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
3851 p_shcf = (char_u *)"-c";
3852 options[idx3].def_val[VI_DEFAULT] = p_shcf;
3855 # ifndef DJGPP
3856 # ifdef WIN3264
3857 /* Somehow Win32 requires the quotes around the redirection too */
3858 idx3 = findoption((char_u *)"sxq");
3859 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
3861 p_sxq = (char_u *)"\"";
3862 options[idx3].def_val[VI_DEFAULT] = p_sxq;
3864 # else
3865 idx3 = findoption((char_u *)"shq");
3866 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
3868 p_shq = (char_u *)"\"";
3869 options[idx3].def_val[VI_DEFAULT] = p_shq;
3871 # endif
3872 # endif
3874 #endif
3876 #ifdef FEAT_TITLE
3877 set_title_defaults();
3878 #endif
3881 #if defined(FEAT_MULTI_LANG) || defined(PROTO)
3883 * When 'helplang' is still at its default value, set it to "lang".
3884 * Only the first two characters of "lang" are used.
3886 void
3887 set_helplang_default(lang)
3888 char_u *lang;
3890 int idx;
3892 if (lang == NULL || STRLEN(lang) < 2) /* safety check */
3893 return;
3894 idx = findoption((char_u *)"hlg");
3895 if (idx >= 0 && !(options[idx].flags & P_WAS_SET))
3897 if (options[idx].flags & P_ALLOCED)
3898 free_string_option(p_hlg);
3899 p_hlg = vim_strsave(lang);
3900 if (p_hlg == NULL)
3901 p_hlg = empty_option;
3902 else
3904 /* zh_CN becomes "cn", zh_TW becomes "tw". */
3905 if (STRNICMP(p_hlg, "zh_", 3) == 0 && STRLEN(p_hlg) >= 5)
3907 p_hlg[0] = TOLOWER_ASC(p_hlg[3]);
3908 p_hlg[1] = TOLOWER_ASC(p_hlg[4]);
3910 p_hlg[2] = NUL;
3912 options[idx].flags |= P_ALLOCED;
3915 #endif
3917 #ifdef FEAT_GUI
3918 static char_u *gui_bg_default __ARGS((void));
3920 static char_u *
3921 gui_bg_default()
3923 if (gui_get_lightness(gui.back_pixel) < 127)
3924 return (char_u *)"dark";
3925 return (char_u *)"light";
3929 * Option initializations that can only be done after opening the GUI window.
3931 void
3932 init_gui_options()
3934 /* Set the 'background' option according to the lightness of the
3935 * background color, unless the user has set it already. */
3936 if (!option_was_set((char_u *)"bg") && STRCMP(p_bg, gui_bg_default()) != 0)
3938 set_option_value((char_u *)"bg", 0L, gui_bg_default(), 0);
3939 highlight_changed();
3942 #endif
3944 #ifdef FEAT_TITLE
3946 * 'title' and 'icon' only default to true if they have not been set or reset
3947 * in .vimrc and we can read the old value.
3948 * When 'title' and 'icon' have been reset in .vimrc, we won't even check if
3949 * they can be reset. This reduces startup time when using X on a remote
3950 * machine.
3952 void
3953 set_title_defaults()
3955 int idx1;
3956 long val;
3959 * If GUI is (going to be) used, we can always set the window title and
3960 * icon name. Saves a bit of time, because the X11 display server does
3961 * not need to be contacted.
3963 idx1 = findoption((char_u *)"title");
3964 if (idx1 >= 0 && !(options[idx1].flags & P_WAS_SET))
3966 #ifdef FEAT_GUI
3967 if (gui.starting || gui.in_use)
3968 val = TRUE;
3969 else
3970 #endif
3971 val = mch_can_restore_title();
3972 options[idx1].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
3973 p_title = val;
3975 idx1 = findoption((char_u *)"icon");
3976 if (idx1 >= 0 && !(options[idx1].flags & P_WAS_SET))
3978 #ifdef FEAT_GUI
3979 if (gui.starting || gui.in_use)
3980 val = TRUE;
3981 else
3982 #endif
3983 val = mch_can_restore_icon();
3984 options[idx1].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
3985 p_icon = val;
3988 #endif
3991 * Parse 'arg' for option settings.
3993 * 'arg' may be IObuff, but only when no errors can be present and option
3994 * does not need to be expanded with option_expand().
3995 * "opt_flags":
3996 * 0 for ":set"
3997 * OPT_GLOBAL for ":setglobal"
3998 * OPT_LOCAL for ":setlocal" and a modeline
3999 * OPT_MODELINE for a modeline
4000 * OPT_WINONLY to only set window-local options
4001 * OPT_NOWIN to skip setting window-local options
4003 * returns FAIL if an error is detected, OK otherwise
4006 do_set(arg, opt_flags)
4007 char_u *arg; /* option string (may be written to!) */
4008 int opt_flags;
4010 int opt_idx;
4011 char_u *errmsg;
4012 char_u errbuf[80];
4013 char_u *startarg;
4014 int prefix; /* 1: nothing, 0: "no", 2: "inv" in front of name */
4015 int nextchar; /* next non-white char after option name */
4016 int afterchar; /* character just after option name */
4017 int len;
4018 int i;
4019 long value;
4020 int key;
4021 long_u flags; /* flags for current option */
4022 char_u *varp = NULL; /* pointer to variable for current option */
4023 int did_show = FALSE; /* already showed one value */
4024 int adding; /* "opt+=arg" */
4025 int prepending; /* "opt^=arg" */
4026 int removing; /* "opt-=arg" */
4027 int cp_val = 0;
4028 char_u key_name[2];
4030 if (*arg == NUL)
4032 showoptions(0, opt_flags);
4033 did_show = TRUE;
4034 goto theend;
4037 while (*arg != NUL) /* loop to process all options */
4039 errmsg = NULL;
4040 startarg = arg; /* remember for error message */
4042 if (STRNCMP(arg, "all", 3) == 0 && !isalpha(arg[3])
4043 && !(opt_flags & OPT_MODELINE))
4046 * ":set all" show all options.
4047 * ":set all&" set all options to their default value.
4049 arg += 3;
4050 if (*arg == '&')
4052 ++arg;
4053 /* Only for :set command set global value of local options. */
4054 set_options_default(OPT_FREE | opt_flags);
4056 else
4058 showoptions(1, opt_flags);
4059 did_show = TRUE;
4062 else if (STRNCMP(arg, "termcap", 7) == 0 && !(opt_flags & OPT_MODELINE))
4064 showoptions(2, opt_flags);
4065 show_termcodes();
4066 did_show = TRUE;
4067 arg += 7;
4069 else
4071 prefix = 1;
4072 if (STRNCMP(arg, "no", 2) == 0 && STRNCMP(arg, "novice", 6) != 0)
4074 prefix = 0;
4075 arg += 2;
4077 else if (STRNCMP(arg, "inv", 3) == 0)
4079 prefix = 2;
4080 arg += 3;
4083 /* find end of name */
4084 key = 0;
4085 if (*arg == '<')
4087 nextchar = 0;
4088 opt_idx = -1;
4089 /* look out for <t_>;> */
4090 if (arg[1] == 't' && arg[2] == '_' && arg[3] && arg[4])
4091 len = 5;
4092 else
4094 len = 1;
4095 while (arg[len] != NUL && arg[len] != '>')
4096 ++len;
4098 if (arg[len] != '>')
4100 errmsg = e_invarg;
4101 goto skip;
4103 arg[len] = NUL; /* put NUL after name */
4104 if (arg[1] == 't' && arg[2] == '_') /* could be term code */
4105 opt_idx = findoption(arg + 1);
4106 arg[len++] = '>'; /* restore '>' */
4107 if (opt_idx == -1)
4108 key = find_key_option(arg + 1);
4110 else
4112 len = 0;
4114 * The two characters after "t_" may not be alphanumeric.
4116 if (arg[0] == 't' && arg[1] == '_' && arg[2] && arg[3])
4117 len = 4;
4118 else
4119 while (ASCII_ISALNUM(arg[len]) || arg[len] == '_')
4120 ++len;
4121 nextchar = arg[len];
4122 arg[len] = NUL; /* put NUL after name */
4123 opt_idx = findoption(arg);
4124 arg[len] = nextchar; /* restore nextchar */
4125 if (opt_idx == -1)
4126 key = find_key_option(arg);
4129 /* remember character after option name */
4130 afterchar = arg[len];
4132 /* skip white space, allow ":set ai ?" */
4133 while (vim_iswhite(arg[len]))
4134 ++len;
4136 adding = FALSE;
4137 prepending = FALSE;
4138 removing = FALSE;
4139 if (arg[len] != NUL && arg[len + 1] == '=')
4141 if (arg[len] == '+')
4143 adding = TRUE; /* "+=" */
4144 ++len;
4146 else if (arg[len] == '^')
4148 prepending = TRUE; /* "^=" */
4149 ++len;
4151 else if (arg[len] == '-')
4153 removing = TRUE; /* "-=" */
4154 ++len;
4157 nextchar = arg[len];
4159 if (opt_idx == -1 && key == 0) /* found a mismatch: skip */
4161 errmsg = (char_u *)N_("E518: Unknown option");
4162 goto skip;
4165 if (opt_idx >= 0)
4167 if (options[opt_idx].var == NULL) /* hidden option: skip */
4169 /* Only give an error message when requesting the value of
4170 * a hidden option, ignore setting it. */
4171 if (vim_strchr((char_u *)"=:!&<", nextchar) == NULL
4172 && (!(options[opt_idx].flags & P_BOOL)
4173 || nextchar == '?'))
4174 errmsg = (char_u *)N_("E519: Option not supported");
4175 goto skip;
4178 flags = options[opt_idx].flags;
4179 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
4181 else
4183 flags = P_STRING;
4184 if (key < 0)
4186 key_name[0] = KEY2TERMCAP0(key);
4187 key_name[1] = KEY2TERMCAP1(key);
4189 else
4191 key_name[0] = KS_KEY;
4192 key_name[1] = (key & 0xff);
4196 /* Skip all options that are not window-local (used when showing
4197 * an already loaded buffer in a window). */
4198 if ((opt_flags & OPT_WINONLY)
4199 && (opt_idx < 0 || options[opt_idx].var != VAR_WIN))
4200 goto skip;
4202 /* Skip all options that are window-local (used for :vimgrep). */
4203 if ((opt_flags & OPT_NOWIN) && opt_idx >= 0
4204 && options[opt_idx].var == VAR_WIN)
4205 goto skip;
4207 /* Disallow changing some options from modelines. */
4208 if (opt_flags & OPT_MODELINE)
4210 if (flags & P_SECURE)
4212 errmsg = (char_u *)_("E520: Not allowed in a modeline");
4213 goto skip;
4215 #ifdef FEAT_DIFF
4216 /* In diff mode some options are overruled. This avoids that
4217 * 'foldmethod' becomes "marker" instead of "diff" and that
4218 * "wrap" gets set. */
4219 if (curwin->w_p_diff
4220 && (options[opt_idx].indir == PV_FDM
4221 || options[opt_idx].indir == PV_WRAP))
4222 goto skip;
4223 #endif
4226 #ifdef HAVE_SANDBOX
4227 /* Disallow changing some options in the sandbox */
4228 if (sandbox != 0 && (flags & P_SECURE))
4230 errmsg = (char_u *)_(e_sandbox);
4231 goto skip;
4233 #endif
4235 if (vim_strchr((char_u *)"?=:!&<", nextchar) != NULL)
4237 arg += len;
4238 cp_val = p_cp;
4239 if (nextchar == '&' && arg[1] == 'v' && arg[2] == 'i')
4241 if (arg[3] == 'm') /* "opt&vim": set to Vim default */
4243 cp_val = FALSE;
4244 arg += 3;
4246 else /* "opt&vi": set to Vi default */
4248 cp_val = TRUE;
4249 arg += 2;
4252 if (vim_strchr((char_u *)"?!&<", nextchar) != NULL
4253 && arg[1] != NUL && !vim_iswhite(arg[1]))
4255 errmsg = e_trailing;
4256 goto skip;
4261 * allow '=' and ':' as MSDOS command.com allows only one
4262 * '=' character per "set" command line. grrr. (jw)
4264 if (nextchar == '?'
4265 || (prefix == 1
4266 && vim_strchr((char_u *)"=:&<", nextchar) == NULL
4267 && !(flags & P_BOOL)))
4270 * print value
4272 if (did_show)
4273 msg_putchar('\n'); /* cursor below last one */
4274 else
4276 gotocmdline(TRUE); /* cursor at status line */
4277 did_show = TRUE; /* remember that we did a line */
4279 if (opt_idx >= 0)
4281 showoneopt(&options[opt_idx], opt_flags);
4282 #ifdef FEAT_EVAL
4283 if (p_verbose > 0)
4285 /* Mention where the option was last set. */
4286 if (varp == options[opt_idx].var)
4287 last_set_msg(options[opt_idx].scriptID);
4288 else if ((int)options[opt_idx].indir & PV_WIN)
4289 last_set_msg(curwin->w_p_scriptID[
4290 (int)options[opt_idx].indir & PV_MASK]);
4291 else if ((int)options[opt_idx].indir & PV_BUF)
4292 last_set_msg(curbuf->b_p_scriptID[
4293 (int)options[opt_idx].indir & PV_MASK]);
4295 #endif
4297 else
4299 char_u *p;
4301 p = find_termcode(key_name);
4302 if (p == NULL)
4304 errmsg = (char_u *)N_("E518: Unknown option");
4305 goto skip;
4307 else
4308 (void)show_one_termcode(key_name, p, TRUE);
4310 if (nextchar != '?'
4311 && nextchar != NUL && !vim_iswhite(afterchar))
4312 errmsg = e_trailing;
4314 else
4316 if (flags & P_BOOL) /* boolean */
4318 if (nextchar == '=' || nextchar == ':')
4320 errmsg = e_invarg;
4321 goto skip;
4325 * ":set opt!": invert
4326 * ":set opt&": reset to default value
4327 * ":set opt<": reset to global value
4329 if (nextchar == '!')
4330 value = *(int *)(varp) ^ 1;
4331 else if (nextchar == '&')
4332 value = (int)(long)(long_i)options[opt_idx].def_val[
4333 ((flags & P_VI_DEF) || cp_val)
4334 ? VI_DEFAULT : VIM_DEFAULT];
4335 else if (nextchar == '<')
4337 /* For 'autoread' -1 means to use global value. */
4338 if ((int *)varp == &curbuf->b_p_ar
4339 && opt_flags == OPT_LOCAL)
4340 value = -1;
4341 else
4342 value = *(int *)get_varp_scope(&(options[opt_idx]),
4343 OPT_GLOBAL);
4345 else
4348 * ":set invopt": invert
4349 * ":set opt" or ":set noopt": set or reset
4351 if (nextchar != NUL && !vim_iswhite(afterchar))
4353 errmsg = e_trailing;
4354 goto skip;
4356 if (prefix == 2) /* inv */
4357 value = *(int *)(varp) ^ 1;
4358 else
4359 value = prefix;
4362 errmsg = set_bool_option(opt_idx, varp, (int)value,
4363 opt_flags);
4365 else /* numeric or string */
4367 if (vim_strchr((char_u *)"=:&<", nextchar) == NULL
4368 || prefix != 1)
4370 errmsg = e_invarg;
4371 goto skip;
4374 if (flags & P_NUM) /* numeric */
4377 * Different ways to set a number option:
4378 * & set to default value
4379 * < set to global value
4380 * <xx> accept special key codes for 'wildchar'
4381 * c accept any non-digit for 'wildchar'
4382 * [-]0-9 set number
4383 * other error
4385 ++arg;
4386 if (nextchar == '&')
4387 value = (long)(long_i)options[opt_idx].def_val[
4388 ((flags & P_VI_DEF) || cp_val)
4389 ? VI_DEFAULT : VIM_DEFAULT];
4390 else if (nextchar == '<')
4391 value = *(long *)get_varp_scope(&(options[opt_idx]),
4392 OPT_GLOBAL);
4393 else if (((long *)varp == &p_wc
4394 || (long *)varp == &p_wcm)
4395 && (*arg == '<'
4396 || *arg == '^'
4397 || ((!arg[1] || vim_iswhite(arg[1]))
4398 && !VIM_ISDIGIT(*arg))))
4400 value = string_to_key(arg);
4401 if (value == 0 && (long *)varp != &p_wcm)
4403 errmsg = e_invarg;
4404 goto skip;
4407 /* allow negative numbers (for 'undolevels') */
4408 else if (*arg == '-' || VIM_ISDIGIT(*arg))
4410 i = 0;
4411 if (*arg == '-')
4412 i = 1;
4413 #ifdef HAVE_STRTOL
4414 value = strtol((char *)arg, NULL, 0);
4415 if (arg[i] == '0' && TOLOWER_ASC(arg[i + 1]) == 'x')
4416 i += 2;
4417 #else
4418 value = atol((char *)arg);
4419 #endif
4420 while (VIM_ISDIGIT(arg[i]))
4421 ++i;
4422 if (arg[i] != NUL && !vim_iswhite(arg[i]))
4424 errmsg = e_invarg;
4425 goto skip;
4428 else
4430 errmsg = (char_u *)N_("E521: Number required after =");
4431 goto skip;
4434 if (adding)
4435 value = *(long *)varp + value;
4436 if (prepending)
4437 value = *(long *)varp * value;
4438 if (removing)
4439 value = *(long *)varp - value;
4440 errmsg = set_num_option(opt_idx, varp, value,
4441 errbuf, sizeof(errbuf), opt_flags);
4443 else if (opt_idx >= 0) /* string */
4445 char_u *save_arg = NULL;
4446 char_u *s = NULL;
4447 char_u *oldval; /* previous value if *varp */
4448 char_u *newval;
4449 char_u *origval;
4450 unsigned newlen;
4451 int comma;
4452 int bs;
4453 int new_value_alloced; /* new string option
4454 was allocated */
4456 /* When using ":set opt=val" for a global option
4457 * with a local value the local value will be
4458 * reset, use the global value here. */
4459 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
4460 && ((int)options[opt_idx].indir & PV_BOTH))
4461 varp = options[opt_idx].var;
4463 /* The old value is kept until we are sure that the
4464 * new value is valid. */
4465 oldval = *(char_u **)varp;
4466 if (nextchar == '&') /* set to default val */
4468 newval = options[opt_idx].def_val[
4469 ((flags & P_VI_DEF) || cp_val)
4470 ? VI_DEFAULT : VIM_DEFAULT];
4471 if ((char_u **)varp == &p_bg)
4473 /* guess the value of 'background' */
4474 #ifdef FEAT_GUI
4475 if (gui.in_use)
4476 newval = gui_bg_default();
4477 else
4478 #endif
4479 newval = term_bg_default();
4482 /* expand environment variables and ~ (since the
4483 * default value was already expanded, only
4484 * required when an environment variable was set
4485 * later */
4486 if (newval == NULL)
4487 newval = empty_option;
4488 else
4490 s = option_expand(opt_idx, newval);
4491 if (s == NULL)
4492 s = newval;
4493 newval = vim_strsave(s);
4495 new_value_alloced = TRUE;
4497 else if (nextchar == '<') /* set to global val */
4499 newval = vim_strsave(*(char_u **)get_varp_scope(
4500 &(options[opt_idx]), OPT_GLOBAL));
4501 new_value_alloced = TRUE;
4503 else
4505 ++arg; /* jump to after the '=' or ':' */
4508 * Set 'keywordprg' to ":help" if an empty
4509 * value was passed to :set by the user.
4510 * Misuse errbuf[] for the resulting string.
4512 if (varp == (char_u *)&p_kp
4513 && (*arg == NUL || *arg == ' '))
4515 STRCPY(errbuf, ":help");
4516 save_arg = arg;
4517 arg = errbuf;
4520 * Convert 'whichwrap' number to string, for
4521 * backwards compatibility with Vim 3.0.
4522 * Misuse errbuf[] for the resulting string.
4524 else if (varp == (char_u *)&p_ww
4525 && VIM_ISDIGIT(*arg))
4527 *errbuf = NUL;
4528 i = getdigits(&arg);
4529 if (i & 1)
4530 STRCAT(errbuf, "b,");
4531 if (i & 2)
4532 STRCAT(errbuf, "s,");
4533 if (i & 4)
4534 STRCAT(errbuf, "h,l,");
4535 if (i & 8)
4536 STRCAT(errbuf, "<,>,");
4537 if (i & 16)
4538 STRCAT(errbuf, "[,],");
4539 if (*errbuf != NUL) /* remove trailing , */
4540 errbuf[STRLEN(errbuf) - 1] = NUL;
4541 save_arg = arg;
4542 arg = errbuf;
4545 * Remove '>' before 'dir' and 'bdir', for
4546 * backwards compatibility with version 3.0
4548 else if ( *arg == '>'
4549 && (varp == (char_u *)&p_dir
4550 || varp == (char_u *)&p_bdir))
4552 ++arg;
4555 /* When setting the local value of a global
4556 * option, the old value may be the global value. */
4557 if (((int)options[opt_idx].indir & PV_BOTH)
4558 && (opt_flags & OPT_LOCAL))
4559 origval = *(char_u **)get_varp(
4560 &options[opt_idx]);
4561 else
4562 origval = oldval;
4565 * Copy the new string into allocated memory.
4566 * Can't use set_string_option_direct(), because
4567 * we need to remove the backslashes.
4569 /* get a bit too much */
4570 newlen = (unsigned)STRLEN(arg) + 1;
4571 if (adding || prepending || removing)
4572 newlen += (unsigned)STRLEN(origval) + 1;
4573 newval = alloc(newlen);
4574 if (newval == NULL) /* out of mem, don't change */
4575 break;
4576 s = newval;
4579 * Copy the string, skip over escaped chars.
4580 * For MS-DOS and WIN32 backslashes before normal
4581 * file name characters are not removed, and keep
4582 * backslash at start, for "\\machine\path", but
4583 * do remove it for "\\\\machine\\path".
4584 * The reverse is found in ExpandOldSetting().
4586 while (*arg && !vim_iswhite(*arg))
4588 if (*arg == '\\' && arg[1] != NUL
4589 #ifdef BACKSLASH_IN_FILENAME
4590 && !((flags & P_EXPAND)
4591 && vim_isfilec(arg[1])
4592 && (arg[1] != '\\'
4593 || (s == newval
4594 && arg[2] != '\\')))
4595 #endif
4597 ++arg; /* remove backslash */
4598 #ifdef FEAT_MBYTE
4599 if (has_mbyte
4600 && (i = (*mb_ptr2len)(arg)) > 1)
4602 /* copy multibyte char */
4603 mch_memmove(s, arg, (size_t)i);
4604 arg += i;
4605 s += i;
4607 else
4608 #endif
4609 *s++ = *arg++;
4611 *s = NUL;
4614 * Expand environment variables and ~.
4615 * Don't do it when adding without inserting a
4616 * comma.
4618 if (!(adding || prepending || removing)
4619 || (flags & P_COMMA))
4621 s = option_expand(opt_idx, newval);
4622 if (s != NULL)
4624 vim_free(newval);
4625 newlen = (unsigned)STRLEN(s) + 1;
4626 if (adding || prepending || removing)
4627 newlen += (unsigned)STRLEN(origval) + 1;
4628 newval = alloc(newlen);
4629 if (newval == NULL)
4630 break;
4631 STRCPY(newval, s);
4635 /* locate newval[] in origval[] when removing it
4636 * and when adding to avoid duplicates */
4637 i = 0; /* init for GCC */
4638 if (removing || (flags & P_NODUP))
4640 i = (int)STRLEN(newval);
4641 bs = 0;
4642 for (s = origval; *s; ++s)
4644 if ((!(flags & P_COMMA)
4645 || s == origval
4646 || (s[-1] == ',' && !(bs & 1)))
4647 && STRNCMP(s, newval, i) == 0
4648 && (!(flags & P_COMMA)
4649 || s[i] == ','
4650 || s[i] == NUL))
4651 break;
4652 /* Count backspaces. Only a comma with an
4653 * even number of backspaces before it is
4654 * recognized as a separator */
4655 if (s > origval && s[-1] == '\\')
4656 ++bs;
4657 else
4658 bs = 0;
4661 /* do not add if already there */
4662 if ((adding || prepending) && *s)
4664 prepending = FALSE;
4665 adding = FALSE;
4666 STRCPY(newval, origval);
4670 /* concatenate the two strings; add a ',' if
4671 * needed */
4672 if (adding || prepending)
4674 comma = ((flags & P_COMMA) && *origval != NUL
4675 && *newval != NUL);
4676 if (adding)
4678 i = (int)STRLEN(origval);
4679 mch_memmove(newval + i + comma, newval,
4680 STRLEN(newval) + 1);
4681 mch_memmove(newval, origval, (size_t)i);
4683 else
4685 i = (int)STRLEN(newval);
4686 STRMOVE(newval + i + comma, origval);
4688 if (comma)
4689 newval[i] = ',';
4692 /* Remove newval[] from origval[]. (Note: "i" has
4693 * been set above and is used here). */
4694 if (removing)
4696 STRCPY(newval, origval);
4697 if (*s)
4699 /* may need to remove a comma */
4700 if (flags & P_COMMA)
4702 if (s == origval)
4704 /* include comma after string */
4705 if (s[i] == ',')
4706 ++i;
4708 else
4710 /* include comma before string */
4711 --s;
4712 ++i;
4715 STRMOVE(newval + (s - origval), s + i);
4719 if (flags & P_FLAGLIST)
4721 /* Remove flags that appear twice. */
4722 for (s = newval; *s; ++s)
4723 if ((!(flags & P_COMMA) || *s != ',')
4724 && vim_strchr(s + 1, *s) != NULL)
4726 STRMOVE(s, s + 1);
4727 --s;
4731 if (save_arg != NULL) /* number for 'whichwrap' */
4732 arg = save_arg;
4733 new_value_alloced = TRUE;
4736 /* Set the new value. */
4737 *(char_u **)(varp) = newval;
4739 /* Handle side effects, and set the global value for
4740 * ":set" on local options. */
4741 errmsg = did_set_string_option(opt_idx, (char_u **)varp,
4742 new_value_alloced, oldval, errbuf, opt_flags);
4744 /* If error detected, print the error message. */
4745 if (errmsg != NULL)
4746 goto skip;
4748 else /* key code option */
4750 char_u *p;
4752 if (nextchar == '&')
4754 if (add_termcap_entry(key_name, TRUE) == FAIL)
4755 errmsg = (char_u *)N_("E522: Not found in termcap");
4757 else
4759 ++arg; /* jump to after the '=' or ':' */
4760 for (p = arg; *p && !vim_iswhite(*p); ++p)
4761 if (*p == '\\' && p[1] != NUL)
4762 ++p;
4763 nextchar = *p;
4764 *p = NUL;
4765 add_termcode(key_name, arg, FALSE);
4766 *p = nextchar;
4768 if (full_screen)
4769 ttest(FALSE);
4770 redraw_all_later(CLEAR);
4774 if (opt_idx >= 0)
4775 did_set_option(opt_idx, opt_flags,
4776 !prepending && !adding && !removing);
4779 skip:
4781 * Advance to next argument.
4782 * - skip until a blank found, taking care of backslashes
4783 * - skip blanks
4784 * - skip one "=val" argument (for hidden options ":set gfn =xx")
4786 for (i = 0; i < 2 ; ++i)
4788 while (*arg != NUL && !vim_iswhite(*arg))
4789 if (*arg++ == '\\' && *arg != NUL)
4790 ++arg;
4791 arg = skipwhite(arg);
4792 if (*arg != '=')
4793 break;
4797 if (errmsg != NULL)
4799 vim_strncpy(IObuff, (char_u *)_(errmsg), IOSIZE - 1);
4800 i = (int)STRLEN(IObuff) + 2;
4801 if (i + (arg - startarg) < IOSIZE)
4803 /* append the argument with the error */
4804 STRCAT(IObuff, ": ");
4805 mch_memmove(IObuff + i, startarg, (arg - startarg));
4806 IObuff[i + (arg - startarg)] = NUL;
4808 /* make sure all characters are printable */
4809 trans_characters(IObuff, IOSIZE);
4811 ++no_wait_return; /* wait_return done later */
4812 emsg(IObuff); /* show error highlighted */
4813 --no_wait_return;
4815 return FAIL;
4818 arg = skipwhite(arg);
4821 theend:
4822 if (silent_mode && did_show)
4824 /* After displaying option values in silent mode. */
4825 silent_mode = FALSE;
4826 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
4827 msg_putchar('\n');
4828 cursor_on(); /* msg_start() switches it off */
4829 out_flush();
4830 silent_mode = TRUE;
4831 info_message = FALSE; /* use mch_msg(), not mch_errmsg() */
4834 return OK;
4838 * Call this when an option has been given a new value through a user command.
4839 * Sets the P_WAS_SET flag and takes care of the P_INSECURE flag.
4841 static void
4842 did_set_option(opt_idx, opt_flags, new_value)
4843 int opt_idx;
4844 int opt_flags; /* possibly with OPT_MODELINE */
4845 int new_value; /* value was replaced completely */
4847 long_u *p;
4849 options[opt_idx].flags |= P_WAS_SET;
4851 /* When an option is set in the sandbox, from a modeline or in secure mode
4852 * set the P_INSECURE flag. Otherwise, if a new value is stored reset the
4853 * flag. */
4854 p = insecure_flag(opt_idx, opt_flags);
4855 if (secure
4856 #ifdef HAVE_SANDBOX
4857 || sandbox != 0
4858 #endif
4859 || (opt_flags & OPT_MODELINE))
4860 *p = *p | P_INSECURE;
4861 else if (new_value)
4862 *p = *p & ~P_INSECURE;
4865 static char_u *
4866 illegal_char(errbuf, c)
4867 char_u *errbuf;
4868 int c;
4870 if (errbuf == NULL)
4871 return (char_u *)"";
4872 sprintf((char *)errbuf, _("E539: Illegal character <%s>"),
4873 (char *)transchar(c));
4874 return errbuf;
4878 * Convert a key name or string into a key value.
4879 * Used for 'wildchar' and 'cedit' options.
4881 static int
4882 string_to_key(arg)
4883 char_u *arg;
4885 if (*arg == '<')
4886 return find_key_option(arg + 1);
4887 if (*arg == '^')
4888 return Ctrl_chr(arg[1]);
4889 return *arg;
4892 #ifdef FEAT_CMDWIN
4894 * Check value of 'cedit' and set cedit_key.
4895 * Returns NULL if value is OK, error message otherwise.
4897 static char_u *
4898 check_cedit()
4900 int n;
4902 if (*p_cedit == NUL)
4903 cedit_key = -1;
4904 else
4906 n = string_to_key(p_cedit);
4907 if (vim_isprintc(n))
4908 return e_invarg;
4909 cedit_key = n;
4911 return NULL;
4913 #endif
4915 #ifdef FEAT_TITLE
4917 * When changing 'title', 'titlestring', 'icon' or 'iconstring', call
4918 * maketitle() to create and display it.
4919 * When switching the title or icon off, call mch_restore_title() to get
4920 * the old value back.
4922 static void
4923 did_set_title(icon)
4924 int icon; /* Did set icon instead of title */
4926 if (starting != NO_SCREEN
4927 #ifdef FEAT_GUI
4928 && !gui.starting
4929 #endif
4932 maketitle();
4933 if (icon)
4935 if (!p_icon)
4936 mch_restore_title(2);
4938 else
4940 if (!p_title)
4941 mch_restore_title(1);
4945 #endif
4948 * set_options_bin - called when 'bin' changes value.
4950 void
4951 set_options_bin(oldval, newval, opt_flags)
4952 int oldval;
4953 int newval;
4954 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
4957 * The option values that are changed when 'bin' changes are
4958 * copied when 'bin is set and restored when 'bin' is reset.
4960 if (newval)
4962 if (!oldval) /* switched on */
4964 if (!(opt_flags & OPT_GLOBAL))
4966 curbuf->b_p_tw_nobin = curbuf->b_p_tw;
4967 curbuf->b_p_wm_nobin = curbuf->b_p_wm;
4968 curbuf->b_p_ml_nobin = curbuf->b_p_ml;
4969 curbuf->b_p_et_nobin = curbuf->b_p_et;
4971 if (!(opt_flags & OPT_LOCAL))
4973 p_tw_nobin = p_tw;
4974 p_wm_nobin = p_wm;
4975 p_ml_nobin = p_ml;
4976 p_et_nobin = p_et;
4980 if (!(opt_flags & OPT_GLOBAL))
4982 curbuf->b_p_tw = 0; /* no automatic line wrap */
4983 curbuf->b_p_wm = 0; /* no automatic line wrap */
4984 curbuf->b_p_ml = 0; /* no modelines */
4985 curbuf->b_p_et = 0; /* no expandtab */
4987 if (!(opt_flags & OPT_LOCAL))
4989 p_tw = 0;
4990 p_wm = 0;
4991 p_ml = FALSE;
4992 p_et = FALSE;
4993 p_bin = TRUE; /* needed when called for the "-b" argument */
4996 else if (oldval) /* switched off */
4998 if (!(opt_flags & OPT_GLOBAL))
5000 curbuf->b_p_tw = curbuf->b_p_tw_nobin;
5001 curbuf->b_p_wm = curbuf->b_p_wm_nobin;
5002 curbuf->b_p_ml = curbuf->b_p_ml_nobin;
5003 curbuf->b_p_et = curbuf->b_p_et_nobin;
5005 if (!(opt_flags & OPT_LOCAL))
5007 p_tw = p_tw_nobin;
5008 p_wm = p_wm_nobin;
5009 p_ml = p_ml_nobin;
5010 p_et = p_et_nobin;
5015 #ifdef FEAT_VIMINFO
5017 * Find the parameter represented by the given character (eg ', :, ", or /),
5018 * and return its associated value in the 'viminfo' string.
5019 * Only works for number parameters, not for 'r' or 'n'.
5020 * If the parameter is not specified in the string or there is no following
5021 * number, return -1.
5024 get_viminfo_parameter(type)
5025 int type;
5027 char_u *p;
5029 p = find_viminfo_parameter(type);
5030 if (p != NULL && VIM_ISDIGIT(*p))
5031 return atoi((char *)p);
5032 return -1;
5036 * Find the parameter represented by the given character (eg ''', ':', '"', or
5037 * '/') in the 'viminfo' option and return a pointer to the string after it.
5038 * Return NULL if the parameter is not specified in the string.
5040 char_u *
5041 find_viminfo_parameter(type)
5042 int type;
5044 char_u *p;
5046 for (p = p_viminfo; *p; ++p)
5048 if (*p == type)
5049 return p + 1;
5050 if (*p == 'n') /* 'n' is always the last one */
5051 break;
5052 p = vim_strchr(p, ','); /* skip until next ',' */
5053 if (p == NULL) /* hit the end without finding parameter */
5054 break;
5056 return NULL;
5058 #endif
5061 * Expand environment variables for some string options.
5062 * These string options cannot be indirect!
5063 * If "val" is NULL expand the current value of the option.
5064 * Return pointer to NameBuff, or NULL when not expanded.
5066 static char_u *
5067 option_expand(opt_idx, val)
5068 int opt_idx;
5069 char_u *val;
5071 /* if option doesn't need expansion nothing to do */
5072 if (!(options[opt_idx].flags & P_EXPAND) || options[opt_idx].var == NULL)
5073 return NULL;
5075 /* If val is longer than MAXPATHL no meaningful expansion can be done,
5076 * expand_env() would truncate the string. */
5077 if (val != NULL && STRLEN(val) > MAXPATHL)
5078 return NULL;
5080 if (val == NULL)
5081 val = *(char_u **)options[opt_idx].var;
5084 * Expanding this with NameBuff, expand_env() must not be passed IObuff.
5085 * Escape spaces when expanding 'tags', they are used to separate file
5086 * names.
5087 * For 'spellsuggest' expand after "file:".
5089 expand_env_esc(val, NameBuff, MAXPATHL,
5090 (char_u **)options[opt_idx].var == &p_tags, FALSE,
5091 #ifdef FEAT_SPELL
5092 (char_u **)options[opt_idx].var == &p_sps ? (char_u *)"file:" :
5093 #endif
5094 NULL);
5095 if (STRCMP(NameBuff, val) == 0) /* they are the same */
5096 return NULL;
5098 return NameBuff;
5102 * After setting various option values: recompute variables that depend on
5103 * option values.
5105 static void
5106 didset_options()
5108 /* initialize the table for 'iskeyword' et.al. */
5109 (void)init_chartab();
5111 #ifdef FEAT_MBYTE
5112 (void)opt_strings_flags(p_cmp, p_cmp_values, &cmp_flags, TRUE);
5113 #endif
5114 (void)opt_strings_flags(p_bkc, p_bkc_values, &bkc_flags, TRUE);
5115 #ifdef FEAT_SESSION
5116 (void)opt_strings_flags(p_ssop, p_ssop_values, &ssop_flags, TRUE);
5117 (void)opt_strings_flags(p_vop, p_ssop_values, &vop_flags, TRUE);
5118 #endif
5119 #ifdef FEAT_FOLDING
5120 (void)opt_strings_flags(p_fdo, p_fdo_values, &fdo_flags, TRUE);
5121 #endif
5122 #ifdef FEAT_FULLSCREEN
5123 (void)check_fuoptions(p_fuoptions, &fuoptions_flags,
5124 &fuoptions_bgcolor);
5125 #endif
5126 (void)opt_strings_flags(p_dy, p_dy_values, &dy_flags, TRUE);
5127 #ifdef FEAT_VIRTUALEDIT
5128 (void)opt_strings_flags(p_ve, p_ve_values, &ve_flags, TRUE);
5129 #endif
5130 #if defined(FEAT_MOUSE) && (defined(UNIX) || defined(VMS))
5131 (void)opt_strings_flags(p_ttym, p_ttym_values, &ttym_flags, FALSE);
5132 #endif
5133 #ifdef FEAT_SPELL
5134 (void)spell_check_msm();
5135 (void)spell_check_sps();
5136 (void)compile_cap_prog(curbuf);
5137 #endif
5138 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
5139 (void)opt_strings_flags(p_toolbar, p_toolbar_values, &toolbar_flags, TRUE);
5140 #endif
5141 #if defined(FEAT_TOOLBAR) && ((defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)) \
5142 || defined(FEAT_GUI_MACVIM))
5143 (void)opt_strings_flags(p_tbis, p_tbis_values, &tbis_flags, FALSE);
5144 #endif
5145 #ifdef FEAT_CMDWIN
5146 /* set cedit_key */
5147 (void)check_cedit();
5148 #endif
5152 * Check for string options that are NULL (normally only termcap options).
5154 void
5155 check_options()
5157 int opt_idx;
5159 for (opt_idx = 0; options[opt_idx].fullname != NULL; opt_idx++)
5160 if ((options[opt_idx].flags & P_STRING) && options[opt_idx].var != NULL)
5161 check_string_option((char_u **)get_varp(&(options[opt_idx])));
5165 * Check string options in a buffer for NULL value.
5167 void
5168 check_buf_options(buf)
5169 buf_T *buf;
5171 #if defined(FEAT_QUICKFIX)
5172 check_string_option(&buf->b_p_bh);
5173 check_string_option(&buf->b_p_bt);
5174 #endif
5175 #ifdef FEAT_MBYTE
5176 check_string_option(&buf->b_p_fenc);
5177 #endif
5178 check_string_option(&buf->b_p_ff);
5179 #ifdef FEAT_FIND_ID
5180 check_string_option(&buf->b_p_def);
5181 check_string_option(&buf->b_p_inc);
5182 # ifdef FEAT_EVAL
5183 check_string_option(&buf->b_p_inex);
5184 # endif
5185 #endif
5186 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
5187 check_string_option(&buf->b_p_inde);
5188 check_string_option(&buf->b_p_indk);
5189 #endif
5190 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
5191 check_string_option(&buf->b_p_bexpr);
5192 #endif
5193 #if defined(FEAT_EVAL)
5194 check_string_option(&buf->b_p_fex);
5195 #endif
5196 #ifdef FEAT_CRYPT
5197 check_string_option(&buf->b_p_key);
5198 #endif
5199 check_string_option(&buf->b_p_kp);
5200 check_string_option(&buf->b_p_mps);
5201 check_string_option(&buf->b_p_fo);
5202 check_string_option(&buf->b_p_flp);
5203 check_string_option(&buf->b_p_isk);
5204 #ifdef FEAT_COMMENTS
5205 check_string_option(&buf->b_p_com);
5206 #endif
5207 #ifdef FEAT_FOLDING
5208 check_string_option(&buf->b_p_cms);
5209 #endif
5210 check_string_option(&buf->b_p_nf);
5211 #ifdef FEAT_TEXTOBJ
5212 check_string_option(&buf->b_p_qe);
5213 #endif
5214 #ifdef FEAT_SYN_HL
5215 check_string_option(&buf->b_p_syn);
5216 #endif
5217 #ifdef FEAT_SPELL
5218 check_string_option(&buf->b_p_spc);
5219 check_string_option(&buf->b_p_spf);
5220 check_string_option(&buf->b_p_spl);
5221 #endif
5222 #ifdef FEAT_SEARCHPATH
5223 check_string_option(&buf->b_p_sua);
5224 #endif
5225 #ifdef FEAT_CINDENT
5226 check_string_option(&buf->b_p_cink);
5227 check_string_option(&buf->b_p_cino);
5228 #endif
5229 #ifdef FEAT_AUTOCMD
5230 check_string_option(&buf->b_p_ft);
5231 #endif
5232 #ifdef FEAT_OSFILETYPE
5233 check_string_option(&buf->b_p_oft);
5234 #endif
5235 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
5236 check_string_option(&buf->b_p_cinw);
5237 #endif
5238 #ifdef FEAT_INS_EXPAND
5239 check_string_option(&buf->b_p_cpt);
5240 #endif
5241 #ifdef FEAT_COMPL_FUNC
5242 check_string_option(&buf->b_p_cfu);
5243 check_string_option(&buf->b_p_ofu);
5244 #endif
5245 #ifdef FEAT_KEYMAP
5246 check_string_option(&buf->b_p_keymap);
5247 #endif
5248 #ifdef FEAT_QUICKFIX
5249 check_string_option(&buf->b_p_gp);
5250 check_string_option(&buf->b_p_mp);
5251 check_string_option(&buf->b_p_efm);
5252 #endif
5253 check_string_option(&buf->b_p_ep);
5254 check_string_option(&buf->b_p_path);
5255 check_string_option(&buf->b_p_tags);
5256 #ifdef FEAT_INS_EXPAND
5257 check_string_option(&buf->b_p_dict);
5258 check_string_option(&buf->b_p_tsr);
5259 #endif
5263 * Free the string allocated for an option.
5264 * Checks for the string being empty_option. This may happen if we're out of
5265 * memory, vim_strsave() returned NULL, which was replaced by empty_option by
5266 * check_options().
5267 * Does NOT check for P_ALLOCED flag!
5269 void
5270 free_string_option(p)
5271 char_u *p;
5273 if (p != empty_option)
5274 vim_free(p);
5277 void
5278 clear_string_option(pp)
5279 char_u **pp;
5281 if (*pp != empty_option)
5282 vim_free(*pp);
5283 *pp = empty_option;
5286 static void
5287 check_string_option(pp)
5288 char_u **pp;
5290 if (*pp == NULL)
5291 *pp = empty_option;
5295 * Mark a terminal option as allocated, found by a pointer into term_strings[].
5297 void
5298 set_term_option_alloced(p)
5299 char_u **p;
5301 int opt_idx;
5303 for (opt_idx = 1; options[opt_idx].fullname != NULL; opt_idx++)
5304 if (options[opt_idx].var == (char_u *)p)
5306 options[opt_idx].flags |= P_ALLOCED;
5307 return;
5309 return; /* cannot happen: didn't find it! */
5312 #if defined(FEAT_EVAL) || defined(PROTO)
5314 * Return TRUE when option "opt" was set from a modeline or in secure mode.
5315 * Return FALSE when it wasn't.
5316 * Return -1 for an unknown option.
5319 was_set_insecurely(opt, opt_flags)
5320 char_u *opt;
5321 int opt_flags;
5323 int idx = findoption(opt);
5324 long_u *flagp;
5326 if (idx >= 0)
5328 flagp = insecure_flag(idx, opt_flags);
5329 return (*flagp & P_INSECURE) != 0;
5331 EMSG2(_(e_intern2), "was_set_insecurely()");
5332 return -1;
5336 * Get a pointer to the flags used for the P_INSECURE flag of option
5337 * "opt_idx". For some local options a local flags field is used.
5339 static long_u *
5340 insecure_flag(opt_idx, opt_flags)
5341 int opt_idx;
5342 int opt_flags;
5344 if (opt_flags & OPT_LOCAL)
5345 switch ((int)options[opt_idx].indir)
5347 #ifdef FEAT_STL_OPT
5348 case PV_STL: return &curwin->w_p_stl_flags;
5349 #endif
5350 #ifdef FEAT_EVAL
5351 # ifdef FEAT_FOLDING
5352 case PV_FDE: return &curwin->w_p_fde_flags;
5353 case PV_FDT: return &curwin->w_p_fdt_flags;
5354 # endif
5355 # ifdef FEAT_BEVAL
5356 case PV_BEXPR: return &curbuf->b_p_bexpr_flags;
5357 # endif
5358 # if defined(FEAT_CINDENT)
5359 case PV_INDE: return &curbuf->b_p_inde_flags;
5360 # endif
5361 case PV_FEX: return &curbuf->b_p_fex_flags;
5362 # ifdef FEAT_FIND_ID
5363 case PV_INEX: return &curbuf->b_p_inex_flags;
5364 # endif
5365 #endif
5368 /* Nothing special, return global flags field. */
5369 return &options[opt_idx].flags;
5371 #endif
5373 #ifdef FEAT_TITLE
5374 static void redraw_titles __ARGS((void));
5377 * Redraw the window title and/or tab page text later.
5379 static void redraw_titles()
5381 need_maketitle = TRUE;
5382 # ifdef FEAT_WINDOWS
5383 redraw_tabline = TRUE;
5384 # endif
5386 #endif
5389 * Set a string option to a new value (without checking the effect).
5390 * The string is copied into allocated memory.
5391 * if ("opt_idx" == -1) "name" is used, otherwise "opt_idx" is used.
5392 * When "set_sid" is zero set the scriptID to current_SID. When "set_sid" is
5393 * SID_NONE don't set the scriptID. Otherwise set the scriptID to "set_sid".
5395 void
5396 set_string_option_direct(name, opt_idx, val, opt_flags, set_sid)
5397 char_u *name;
5398 int opt_idx;
5399 char_u *val;
5400 int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */
5401 int set_sid UNUSED;
5403 char_u *s;
5404 char_u **varp;
5405 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
5406 int idx = opt_idx;
5408 if (idx == -1) /* use name */
5410 idx = findoption(name);
5411 if (idx < 0) /* not found (should not happen) */
5413 EMSG2(_(e_intern2), "set_string_option_direct()");
5414 return;
5418 if (options[idx].var == NULL) /* can't set hidden option */
5419 return;
5421 s = vim_strsave(val);
5422 if (s != NULL)
5424 varp = (char_u **)get_varp_scope(&(options[idx]),
5425 both ? OPT_LOCAL : opt_flags);
5426 if ((opt_flags & OPT_FREE) && (options[idx].flags & P_ALLOCED))
5427 free_string_option(*varp);
5428 *varp = s;
5430 /* For buffer/window local option may also set the global value. */
5431 if (both)
5432 set_string_option_global(idx, varp);
5434 options[idx].flags |= P_ALLOCED;
5436 /* When setting both values of a global option with a local value,
5437 * make the local value empty, so that the global value is used. */
5438 if (((int)options[idx].indir & PV_BOTH) && both)
5440 free_string_option(*varp);
5441 *varp = empty_option;
5443 # ifdef FEAT_EVAL
5444 if (set_sid != SID_NONE)
5445 set_option_scriptID_idx(idx, opt_flags,
5446 set_sid == 0 ? current_SID : set_sid);
5447 # endif
5452 * Set global value for string option when it's a local option.
5454 static void
5455 set_string_option_global(opt_idx, varp)
5456 int opt_idx; /* option index */
5457 char_u **varp; /* pointer to option variable */
5459 char_u **p, *s;
5461 /* the global value is always allocated */
5462 if (options[opt_idx].var == VAR_WIN)
5463 p = (char_u **)GLOBAL_WO(varp);
5464 else
5465 p = (char_u **)options[opt_idx].var;
5466 if (options[opt_idx].indir != PV_NONE
5467 && p != varp
5468 && (s = vim_strsave(*varp)) != NULL)
5470 free_string_option(*p);
5471 *p = s;
5476 * Set a string option to a new value, and handle the effects.
5478 static void
5479 set_string_option(opt_idx, value, opt_flags)
5480 int opt_idx;
5481 char_u *value;
5482 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
5484 char_u *s;
5485 char_u **varp;
5486 char_u *oldval;
5488 if (options[opt_idx].var == NULL) /* don't set hidden option */
5489 return;
5491 s = vim_strsave(value);
5492 if (s != NULL)
5494 varp = (char_u **)get_varp_scope(&(options[opt_idx]),
5495 (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
5496 ? (((int)options[opt_idx].indir & PV_BOTH)
5497 ? OPT_GLOBAL : OPT_LOCAL)
5498 : opt_flags);
5499 oldval = *varp;
5500 *varp = s;
5501 if (did_set_string_option(opt_idx, varp, TRUE, oldval, NULL,
5502 opt_flags) == NULL)
5503 did_set_option(opt_idx, opt_flags, TRUE);
5508 * Handle string options that need some action to perform when changed.
5509 * Returns NULL for success, or an error message for an error.
5511 static char_u *
5512 did_set_string_option(opt_idx, varp, new_value_alloced, oldval, errbuf,
5513 opt_flags)
5514 int opt_idx; /* index in options[] table */
5515 char_u **varp; /* pointer to the option variable */
5516 int new_value_alloced; /* new value was allocated */
5517 char_u *oldval; /* previous value of the option */
5518 char_u *errbuf; /* buffer for errors, or NULL */
5519 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
5521 char_u *errmsg = NULL;
5522 char_u *s, *p;
5523 int did_chartab = FALSE;
5524 char_u **gvarp;
5525 long_u free_oldval = (options[opt_idx].flags & P_ALLOCED);
5526 #ifdef FEAT_GUI
5527 /* set when changing an option that only requires a redraw in the GUI */
5528 int redraw_gui_only = FALSE;
5529 #endif
5531 /* Get the global option to compare with, otherwise we would have to check
5532 * two values for all local options. */
5533 gvarp = (char_u **)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL);
5535 /* Disallow changing some options from secure mode */
5536 if ((secure
5537 #ifdef HAVE_SANDBOX
5538 || sandbox != 0
5539 #endif
5540 ) && (options[opt_idx].flags & P_SECURE))
5542 errmsg = e_secure;
5545 /* Check for a "normal" file name in some options. Disallow a path
5546 * separator (slash and/or backslash), wildcards and characters that are
5547 * often illegal in a file name. */
5548 else if ((options[opt_idx].flags & P_NFNAME)
5549 && vim_strpbrk(*varp, (char_u *)"/\\*?[|<>") != NULL)
5551 errmsg = e_invarg;
5554 /* 'term' */
5555 else if (varp == &T_NAME)
5557 if (T_NAME[0] == NUL)
5558 errmsg = (char_u *)N_("E529: Cannot set 'term' to empty string");
5559 #ifdef FEAT_GUI
5560 if (gui.in_use)
5561 errmsg = (char_u *)N_("E530: Cannot change term in GUI");
5562 else if (term_is_gui(T_NAME))
5563 errmsg = (char_u *)N_("E531: Use \":gui\" to start the GUI");
5564 #endif
5565 else if (set_termname(T_NAME) == FAIL)
5566 errmsg = (char_u *)N_("E522: Not found in termcap");
5567 else
5568 /* Screen colors may have changed. */
5569 redraw_later_clear();
5572 /* 'backupcopy' */
5573 else if (varp == &p_bkc)
5575 if (opt_strings_flags(p_bkc, p_bkc_values, &bkc_flags, TRUE) != OK)
5576 errmsg = e_invarg;
5577 if (((bkc_flags & BKC_AUTO) != 0)
5578 + ((bkc_flags & BKC_YES) != 0)
5579 + ((bkc_flags & BKC_NO) != 0) != 1)
5581 /* Must have exactly one of "auto", "yes" and "no". */
5582 (void)opt_strings_flags(oldval, p_bkc_values, &bkc_flags, TRUE);
5583 errmsg = e_invarg;
5587 /* 'backupext' and 'patchmode' */
5588 else if (varp == &p_bex || varp == &p_pm)
5590 if (STRCMP(*p_bex == '.' ? p_bex + 1 : p_bex,
5591 *p_pm == '.' ? p_pm + 1 : p_pm) == 0)
5592 errmsg = (char_u *)N_("E589: 'backupext' and 'patchmode' are equal");
5596 * 'isident', 'iskeyword', 'isprint or 'isfname' option: refill chartab[]
5597 * If the new option is invalid, use old value. 'lisp' option: refill
5598 * chartab[] for '-' char
5600 else if ( varp == &p_isi
5601 || varp == &(curbuf->b_p_isk)
5602 || varp == &p_isp
5603 || varp == &p_isf)
5605 if (init_chartab() == FAIL)
5607 did_chartab = TRUE; /* need to restore it below */
5608 errmsg = e_invarg; /* error in value */
5612 /* 'helpfile' */
5613 else if (varp == &p_hf)
5615 /* May compute new values for $VIM and $VIMRUNTIME */
5616 if (didset_vim)
5618 vim_setenv((char_u *)"VIM", (char_u *)"");
5619 didset_vim = FALSE;
5621 if (didset_vimruntime)
5623 vim_setenv((char_u *)"VIMRUNTIME", (char_u *)"");
5624 didset_vimruntime = FALSE;
5628 #ifdef FEAT_MULTI_LANG
5629 /* 'helplang' */
5630 else if (varp == &p_hlg)
5632 /* Check for "", "ab", "ab,cd", etc. */
5633 for (s = p_hlg; *s != NUL; s += 3)
5635 if (s[1] == NUL || ((s[2] != ',' || s[3] == NUL) && s[2] != NUL))
5637 errmsg = e_invarg;
5638 break;
5640 if (s[2] == NUL)
5641 break;
5644 #endif
5646 /* 'highlight' */
5647 else if (varp == &p_hl)
5649 if (highlight_changed() == FAIL)
5650 errmsg = e_invarg; /* invalid flags */
5653 /* 'nrformats' */
5654 else if (gvarp == &p_nf)
5656 if (check_opt_strings(*varp, p_nf_values, TRUE) != OK)
5657 errmsg = e_invarg;
5660 #ifdef FEAT_SESSION
5661 /* 'sessionoptions' */
5662 else if (varp == &p_ssop)
5664 if (opt_strings_flags(p_ssop, p_ssop_values, &ssop_flags, TRUE) != OK)
5665 errmsg = e_invarg;
5666 if ((ssop_flags & SSOP_CURDIR) && (ssop_flags & SSOP_SESDIR))
5668 /* Don't allow both "sesdir" and "curdir". */
5669 (void)opt_strings_flags(oldval, p_ssop_values, &ssop_flags, TRUE);
5670 errmsg = e_invarg;
5673 /* 'viewoptions' */
5674 else if (varp == &p_vop)
5676 if (opt_strings_flags(p_vop, p_ssop_values, &vop_flags, TRUE) != OK)
5677 errmsg = e_invarg;
5679 #endif
5681 /* 'scrollopt' */
5682 #ifdef FEAT_SCROLLBIND
5683 else if (varp == &p_sbo)
5685 if (check_opt_strings(p_sbo, p_scbopt_values, TRUE) != OK)
5686 errmsg = e_invarg;
5688 #endif
5690 /* 'ambiwidth' */
5691 #ifdef FEAT_MBYTE
5692 else if (varp == &p_ambw)
5694 if (check_opt_strings(p_ambw, p_ambw_values, FALSE) != OK)
5695 errmsg = e_invarg;
5697 #endif
5699 /* 'background' */
5700 else if (varp == &p_bg)
5702 if (check_opt_strings(p_bg, p_bg_values, FALSE) == OK)
5704 #ifdef FEAT_EVAL
5705 int dark = (*p_bg == 'd');
5706 #endif
5708 init_highlight(FALSE, FALSE);
5710 #ifdef FEAT_EVAL
5711 if (dark != (*p_bg == 'd')
5712 && get_var_value((char_u *)"g:colors_name") != NULL)
5714 /* The color scheme must have set 'background' back to another
5715 * value, that's not what we want here. Disable the color
5716 * scheme and set the colors again. */
5717 do_unlet((char_u *)"g:colors_name", TRUE);
5718 free_string_option(p_bg);
5719 p_bg = vim_strsave((char_u *)(dark ? "dark" : "light"));
5720 check_string_option(&p_bg);
5721 init_highlight(FALSE, FALSE);
5723 #endif
5725 else
5726 errmsg = e_invarg;
5729 /* 'wildmode' */
5730 else if (varp == &p_wim)
5732 if (check_opt_wim() == FAIL)
5733 errmsg = e_invarg;
5736 #ifdef FEAT_CMDL_COMPL
5737 /* 'wildoptions' */
5738 else if (varp == &p_wop)
5740 if (check_opt_strings(p_wop, p_wop_values, TRUE) != OK)
5741 errmsg = e_invarg;
5743 #endif
5745 #ifdef FEAT_WAK
5746 /* 'winaltkeys' */
5747 else if (varp == &p_wak)
5749 if (*p_wak == NUL
5750 || check_opt_strings(p_wak, p_wak_values, FALSE) != OK)
5751 errmsg = e_invarg;
5752 # ifdef FEAT_MENU
5753 # ifdef FEAT_GUI_MOTIF
5754 else if (gui.in_use)
5755 gui_motif_set_mnemonics(p_wak[0] == 'y' || p_wak[0] == 'm');
5756 # else
5757 # ifdef FEAT_GUI_GTK
5758 else if (gui.in_use)
5759 gui_gtk_set_mnemonics(p_wak[0] == 'y' || p_wak[0] == 'm');
5760 # endif
5761 # endif
5762 # endif
5764 #endif
5766 #ifdef FEAT_AUTOCMD
5767 /* 'eventignore' */
5768 else if (varp == &p_ei)
5770 if (check_ei() == FAIL)
5771 errmsg = e_invarg;
5773 #endif
5775 #ifdef FEAT_MBYTE
5776 /* 'encoding' and 'fileencoding' */
5777 else if (varp == &p_enc || gvarp == &p_fenc || varp == &p_tenc)
5779 if (gvarp == &p_fenc)
5781 if (!curbuf->b_p_ma && opt_flags != OPT_GLOBAL)
5782 errmsg = e_modifiable;
5783 else if (vim_strchr(*varp, ',') != NULL)
5784 /* No comma allowed in 'fileencoding'; catches confusing it
5785 * with 'fileencodings'. */
5786 errmsg = e_invarg;
5787 else
5789 # ifdef FEAT_TITLE
5790 /* May show a "+" in the title now. */
5791 redraw_titles();
5792 # endif
5793 /* Add 'fileencoding' to the swap file. */
5794 ml_setflags(curbuf);
5797 if (errmsg == NULL)
5799 /* canonize the value, so that STRCMP() can be used on it */
5800 p = enc_canonize(*varp);
5801 if (p != NULL)
5803 vim_free(*varp);
5804 *varp = p;
5806 if (varp == &p_enc)
5808 errmsg = mb_init();
5809 # ifdef FEAT_TITLE
5810 redraw_titles();
5811 # endif
5815 # if (defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)) || defined(FEAT_GUI_MACVIM)
5816 if (errmsg == NULL && varp == &p_tenc && gui.in_use)
5818 /* MacVim and GTK+ 2 GUIs force 'tenc' to UTF-8. */
5819 if (STRCMP(p_tenc, "utf-8") != 0)
5820 # if defined(FEAT_GUI_MACVIM)
5821 errmsg = (char_u *)N_("E617: Cannot be changed in MacVim");
5822 # else
5823 errmsg = (char_u *)N_("E617: Cannot be changed in the GTK+ 2 GUI");
5824 # endif
5826 # endif
5828 if (errmsg == NULL)
5830 # ifdef FEAT_KEYMAP
5831 /* When 'keymap' is used and 'encoding' changes, reload the keymap
5832 * (with another encoding). */
5833 if (varp == &p_enc && *curbuf->b_p_keymap != NUL)
5834 (void)keymap_init();
5835 # endif
5837 /* When 'termencoding' is not empty and 'encoding' changes or when
5838 * 'termencoding' changes, need to setup for keyboard input and
5839 * display output conversion. */
5840 if (((varp == &p_enc && *p_tenc != NUL) || varp == &p_tenc))
5842 convert_setup(&input_conv, p_tenc, p_enc);
5843 convert_setup(&output_conv, p_enc, p_tenc);
5846 # if defined(WIN3264) && defined(FEAT_MBYTE)
5847 /* $HOME may have characters in active code page. */
5848 if (varp == &p_enc)
5849 init_homedir();
5850 # endif
5853 #endif
5855 #if defined(FEAT_POSTSCRIPT)
5856 else if (varp == &p_penc)
5858 /* Canonize printencoding if VIM standard one */
5859 p = enc_canonize(p_penc);
5860 if (p != NULL)
5862 vim_free(p_penc);
5863 p_penc = p;
5865 else
5867 /* Ensure lower case and '-' for '_' */
5868 for (s = p_penc; *s != NUL; s++)
5870 if (*s == '_')
5871 *s = '-';
5872 else
5873 *s = TOLOWER_ASC(*s);
5877 #endif
5879 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
5880 else if (varp == &p_imak)
5882 if (gui.in_use && !im_xim_isvalid_imactivate())
5883 errmsg = e_invarg;
5885 #endif
5887 #ifdef FEAT_KEYMAP
5888 else if (varp == &curbuf->b_p_keymap)
5890 /* load or unload key mapping tables */
5891 errmsg = keymap_init();
5893 if (errmsg == NULL)
5895 if (*curbuf->b_p_keymap != NUL)
5897 /* Installed a new keymap, switch on using it. */
5898 curbuf->b_p_iminsert = B_IMODE_LMAP;
5899 if (curbuf->b_p_imsearch != B_IMODE_USE_INSERT)
5900 curbuf->b_p_imsearch = B_IMODE_LMAP;
5902 else
5904 /* Cleared the keymap, may reset 'iminsert' and 'imsearch'. */
5905 if (curbuf->b_p_iminsert == B_IMODE_LMAP)
5906 curbuf->b_p_iminsert = B_IMODE_NONE;
5907 if (curbuf->b_p_imsearch == B_IMODE_LMAP)
5908 curbuf->b_p_imsearch = B_IMODE_USE_INSERT;
5910 if ((opt_flags & OPT_LOCAL) == 0)
5912 set_iminsert_global();
5913 set_imsearch_global();
5915 # ifdef FEAT_WINDOWS
5916 status_redraw_curbuf();
5917 # endif
5920 #endif
5922 /* 'fileformat' */
5923 else if (gvarp == &p_ff)
5925 if (!curbuf->b_p_ma && !(opt_flags & OPT_GLOBAL))
5926 errmsg = e_modifiable;
5927 else if (check_opt_strings(*varp, p_ff_values, FALSE) != OK)
5928 errmsg = e_invarg;
5929 else
5931 /* may also change 'textmode' */
5932 if (get_fileformat(curbuf) == EOL_DOS)
5933 curbuf->b_p_tx = TRUE;
5934 else
5935 curbuf->b_p_tx = FALSE;
5936 #ifdef FEAT_TITLE
5937 redraw_titles();
5938 #endif
5939 /* update flag in swap file */
5940 ml_setflags(curbuf);
5944 /* 'fileformats' */
5945 else if (varp == &p_ffs)
5947 if (check_opt_strings(p_ffs, p_ff_values, TRUE) != OK)
5948 errmsg = e_invarg;
5949 else
5951 /* also change 'textauto' */
5952 if (*p_ffs == NUL)
5953 p_ta = FALSE;
5954 else
5955 p_ta = TRUE;
5959 #if defined(FEAT_CRYPT) && defined(FEAT_CMDHIST)
5960 /* 'cryptkey' */
5961 else if (gvarp == &p_key)
5963 /* Make sure the ":set" command doesn't show the new value in the
5964 * history. */
5965 remove_key_from_history();
5967 #endif
5969 /* 'matchpairs' */
5970 else if (gvarp == &p_mps)
5972 /* Check for "x:y,x:y" */
5973 for (p = *varp; *p != NUL; p += 4)
5975 if (p[1] != ':' || p[2] == NUL || (p[3] != NUL && p[3] != ','))
5977 errmsg = e_invarg;
5978 break;
5980 if (p[3] == NUL)
5981 break;
5985 #ifdef FEAT_COMMENTS
5986 /* 'comments' */
5987 else if (gvarp == &p_com)
5989 for (s = *varp; *s; )
5991 while (*s && *s != ':')
5993 if (vim_strchr((char_u *)COM_ALL, *s) == NULL
5994 && !VIM_ISDIGIT(*s) && *s != '-')
5996 errmsg = illegal_char(errbuf, *s);
5997 break;
5999 ++s;
6001 if (*s++ == NUL)
6002 errmsg = (char_u *)N_("E524: Missing colon");
6003 else if (*s == ',' || *s == NUL)
6004 errmsg = (char_u *)N_("E525: Zero length string");
6005 if (errmsg != NULL)
6006 break;
6007 while (*s && *s != ',')
6009 if (*s == '\\' && s[1] != NUL)
6010 ++s;
6011 ++s;
6013 s = skip_to_option_part(s);
6016 #endif
6018 /* 'listchars' */
6019 else if (varp == &p_lcs)
6021 errmsg = set_chars_option(varp);
6024 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6025 /* 'fillchars' */
6026 else if (varp == &p_fcs)
6028 errmsg = set_chars_option(varp);
6030 #endif
6032 #ifdef FEAT_CMDWIN
6033 /* 'cedit' */
6034 else if (varp == &p_cedit)
6036 errmsg = check_cedit();
6038 #endif
6040 /* 'verbosefile' */
6041 else if (varp == &p_vfile)
6043 verbose_stop();
6044 if (*p_vfile != NUL && verbose_open() == FAIL)
6045 errmsg = e_invarg;
6048 #ifdef FEAT_VIMINFO
6049 /* 'viminfo' */
6050 else if (varp == &p_viminfo)
6052 for (s = p_viminfo; *s;)
6054 /* Check it's a valid character */
6055 if (vim_strchr((char_u *)"!\"%'/:<@cfhnrs", *s) == NULL)
6057 errmsg = illegal_char(errbuf, *s);
6058 break;
6060 if (*s == 'n') /* name is always last one */
6062 break;
6064 else if (*s == 'r') /* skip until next ',' */
6066 while (*++s && *s != ',')
6069 else if (*s == '%')
6071 /* optional number */
6072 while (vim_isdigit(*++s))
6075 else if (*s == '!' || *s == 'h' || *s == 'c')
6076 ++s; /* no extra chars */
6077 else /* must have a number */
6079 while (vim_isdigit(*++s))
6082 if (!VIM_ISDIGIT(*(s - 1)))
6084 if (errbuf != NULL)
6086 sprintf((char *)errbuf,
6087 _("E526: Missing number after <%s>"),
6088 transchar_byte(*(s - 1)));
6089 errmsg = errbuf;
6091 else
6092 errmsg = (char_u *)"";
6093 break;
6096 if (*s == ',')
6097 ++s;
6098 else if (*s)
6100 if (errbuf != NULL)
6101 errmsg = (char_u *)N_("E527: Missing comma");
6102 else
6103 errmsg = (char_u *)"";
6104 break;
6107 if (*p_viminfo && errmsg == NULL && get_viminfo_parameter('\'') < 0)
6108 errmsg = (char_u *)N_("E528: Must specify a ' value");
6110 #endif /* FEAT_VIMINFO */
6112 /* terminal options */
6113 else if (istermoption(&options[opt_idx]) && full_screen)
6115 /* ":set t_Co=0" and ":set t_Co=1" do ":set t_Co=" */
6116 if (varp == &T_CCO)
6118 int colors = atoi((char *)T_CCO);
6120 /* Only reinitialize colors if t_Co value has really changed to
6121 * avoid expensive reload of colorscheme if t_Co is set to the
6122 * same value multiple times. */
6123 if (colors != t_colors)
6125 t_colors = colors;
6126 if (t_colors <= 1)
6128 if (new_value_alloced)
6129 vim_free(T_CCO);
6130 T_CCO = empty_option;
6132 /* We now have a different color setup, initialize it again. */
6133 init_highlight(TRUE, FALSE);
6136 ttest(FALSE);
6137 if (varp == &T_ME)
6139 out_str(T_ME);
6140 redraw_later(CLEAR);
6141 #if defined(MSDOS) || (defined(WIN3264) && !defined(FEAT_GUI_W32))
6142 /* Since t_me has been set, this probably means that the user
6143 * wants to use this as default colors. Need to reset default
6144 * background/foreground colors. */
6145 mch_set_normal_colors();
6146 #endif
6150 #ifdef FEAT_LINEBREAK
6151 /* 'showbreak' */
6152 else if (varp == &p_sbr)
6154 for (s = p_sbr; *s; )
6156 if (ptr2cells(s) != 1)
6157 errmsg = (char_u *)N_("E595: contains unprintable or wide character");
6158 mb_ptr_adv(s);
6161 #endif
6163 #ifdef FEAT_GUI
6164 /* 'guifont' */
6165 else if (varp == &p_guifont)
6167 if (gui.in_use)
6169 p = p_guifont;
6170 # if defined(FEAT_GUI_GTK)
6172 * Put up a font dialog and let the user select a new value.
6173 * If this is cancelled go back to the old value but don't
6174 * give an error message.
6176 if (STRCMP(p, "*") == 0)
6178 p = gui_mch_font_dialog(oldval);
6180 if (new_value_alloced)
6181 free_string_option(p_guifont);
6183 p_guifont = (p != NULL) ? p : vim_strsave(oldval);
6184 new_value_alloced = TRUE;
6186 # endif
6187 if (p != NULL && gui_init_font(p_guifont, FALSE) != OK)
6189 # if defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_PHOTON) \
6190 || defined(FEAT_GUI_MACVIM)
6191 if (STRCMP(p_guifont, "*") == 0)
6193 /* Dialog was cancelled: Keep the old value without giving
6194 * an error message. */
6195 if (new_value_alloced)
6196 free_string_option(p_guifont);
6197 p_guifont = vim_strsave(oldval);
6198 new_value_alloced = TRUE;
6200 else
6201 # endif
6202 errmsg = (char_u *)N_("E596: Invalid font(s)");
6205 redraw_gui_only = TRUE;
6207 # ifdef FEAT_XFONTSET
6208 else if (varp == &p_guifontset)
6210 if (STRCMP(p_guifontset, "*") == 0)
6211 errmsg = (char_u *)N_("E597: can't select fontset");
6212 else if (gui.in_use && gui_init_font(p_guifontset, TRUE) != OK)
6213 errmsg = (char_u *)N_("E598: Invalid fontset");
6214 redraw_gui_only = TRUE;
6216 # endif
6217 # ifdef FEAT_MBYTE
6218 else if (varp == &p_guifontwide)
6220 if (STRCMP(p_guifontwide, "*") == 0)
6221 errmsg = (char_u *)N_("E533: can't select wide font");
6222 else if (gui_get_wide_font() == FAIL)
6223 errmsg = (char_u *)N_("E534: Invalid wide font");
6224 redraw_gui_only = TRUE;
6226 # endif
6227 #endif
6229 #ifdef CURSOR_SHAPE
6230 /* 'guicursor' */
6231 else if (varp == &p_guicursor)
6232 errmsg = parse_shape_opt(SHAPE_CURSOR);
6233 #endif
6235 #ifdef FEAT_MOUSESHAPE
6236 /* 'mouseshape' */
6237 else if (varp == &p_mouseshape)
6239 errmsg = parse_shape_opt(SHAPE_MOUSE);
6240 update_mouseshape(-1);
6242 #endif
6244 #ifdef FEAT_PRINTER
6245 else if (varp == &p_popt)
6246 errmsg = parse_printoptions();
6247 # if defined(FEAT_MBYTE) && defined(FEAT_POSTSCRIPT)
6248 else if (varp == &p_pmfn)
6249 errmsg = parse_printmbfont();
6250 # endif
6251 #endif
6253 #ifdef FEAT_LANGMAP
6254 /* 'langmap' */
6255 else if (varp == &p_langmap)
6256 langmap_set();
6257 #endif
6259 #ifdef FEAT_LINEBREAK
6260 /* 'breakat' */
6261 else if (varp == &p_breakat)
6262 fill_breakat_flags();
6263 #endif
6265 #ifdef FEAT_TITLE
6266 /* 'titlestring' and 'iconstring' */
6267 else if (varp == &p_titlestring || varp == &p_iconstring)
6269 # ifdef FEAT_STL_OPT
6270 int flagval = (varp == &p_titlestring) ? STL_IN_TITLE : STL_IN_ICON;
6272 /* NULL => statusline syntax */
6273 if (vim_strchr(*varp, '%') && check_stl_option(*varp) == NULL)
6274 stl_syntax |= flagval;
6275 else
6276 stl_syntax &= ~flagval;
6277 # endif
6278 did_set_title(varp == &p_iconstring);
6281 #endif
6283 #ifdef FEAT_GUI
6284 /* 'guioptions' */
6285 else if (varp == &p_go)
6287 gui_init_which_components(oldval);
6288 redraw_gui_only = TRUE;
6290 #endif
6292 #if defined(FEAT_GUI_TABLINE)
6293 /* 'guitablabel' */
6294 else if (varp == &p_gtl)
6296 redraw_tabline = TRUE;
6297 redraw_gui_only = TRUE;
6299 /* 'guitabtooltip' */
6300 else if (varp == &p_gtt)
6302 redraw_gui_only = TRUE;
6304 #endif
6306 #if defined(FEAT_MOUSE_TTY) && (defined(UNIX) || defined(VMS))
6307 /* 'ttymouse' */
6308 else if (varp == &p_ttym)
6310 /* Switch the mouse off before changing the escape sequences used for
6311 * that. */
6312 mch_setmouse(FALSE);
6313 if (opt_strings_flags(p_ttym, p_ttym_values, &ttym_flags, FALSE) != OK)
6314 errmsg = e_invarg;
6315 else
6316 check_mouse_termcode();
6317 if (termcap_active)
6318 setmouse(); /* may switch it on again */
6320 #endif
6322 #ifdef FEAT_VISUAL
6323 /* 'selection' */
6324 else if (varp == &p_sel)
6326 if (*p_sel == NUL
6327 || check_opt_strings(p_sel, p_sel_values, FALSE) != OK)
6328 errmsg = e_invarg;
6331 /* 'selectmode' */
6332 else if (varp == &p_slm)
6334 if (check_opt_strings(p_slm, p_slm_values, TRUE) != OK)
6335 errmsg = e_invarg;
6337 #endif
6339 #ifdef FEAT_BROWSE
6340 /* 'browsedir' */
6341 else if (varp == &p_bsdir)
6343 if (check_opt_strings(p_bsdir, p_bsdir_values, FALSE) != OK
6344 && !mch_isdir(p_bsdir))
6345 errmsg = e_invarg;
6347 #endif
6349 #ifdef FEAT_VISUAL
6350 /* 'keymodel' */
6351 else if (varp == &p_km)
6353 if (check_opt_strings(p_km, p_km_values, TRUE) != OK)
6354 errmsg = e_invarg;
6355 else
6357 km_stopsel = (vim_strchr(p_km, 'o') != NULL);
6358 km_startsel = (vim_strchr(p_km, 'a') != NULL);
6361 #endif
6363 /* 'mousemodel' */
6364 else if (varp == &p_mousem)
6366 if (check_opt_strings(p_mousem, p_mousem_values, FALSE) != OK)
6367 errmsg = e_invarg;
6368 #if defined(FEAT_GUI_MOTIF) && defined(FEAT_MENU) && (XmVersion <= 1002)
6369 else if (*p_mousem != *oldval)
6370 /* Changed from "extend" to "popup" or "popup_setpos" or vv: need
6371 * to create or delete the popup menus. */
6372 gui_motif_update_mousemodel(root_menu);
6373 #endif
6376 /* 'switchbuf' */
6377 else if (varp == &p_swb)
6379 if (opt_strings_flags(p_swb, p_swb_values, &swb_flags, TRUE) != OK)
6380 errmsg = e_invarg;
6383 /* 'debug' */
6384 else if (varp == &p_debug)
6386 if (check_opt_strings(p_debug, p_debug_values, TRUE) != OK)
6387 errmsg = e_invarg;
6390 /* 'display' */
6391 else if (varp == &p_dy)
6393 if (opt_strings_flags(p_dy, p_dy_values, &dy_flags, TRUE) != OK)
6394 errmsg = e_invarg;
6395 else
6396 (void)init_chartab();
6400 #ifdef FEAT_VERTSPLIT
6401 /* 'eadirection' */
6402 else if (varp == &p_ead)
6404 if (check_opt_strings(p_ead, p_ead_values, FALSE) != OK)
6405 errmsg = e_invarg;
6407 #endif
6409 #ifdef FEAT_CLIPBOARD
6410 /* 'clipboard' */
6411 else if (varp == &p_cb)
6412 errmsg = check_clipboard_option();
6413 #endif
6415 #ifdef FEAT_SPELL
6416 /* When 'spelllang' or 'spellfile' is set and there is a window for this
6417 * buffer in which 'spell' is set load the wordlists. */
6418 else if (varp == &(curbuf->b_p_spl) || varp == &(curbuf->b_p_spf))
6420 win_T *wp;
6421 int l;
6423 if (varp == &(curbuf->b_p_spf))
6425 l = (int)STRLEN(curbuf->b_p_spf);
6426 if (l > 0 && (l < 4 || STRCMP(curbuf->b_p_spf + l - 4,
6427 ".add") != 0))
6428 errmsg = e_invarg;
6431 if (errmsg == NULL)
6433 FOR_ALL_WINDOWS(wp)
6434 if (wp->w_buffer == curbuf && wp->w_p_spell)
6436 errmsg = did_set_spelllang(curbuf);
6437 # ifdef FEAT_WINDOWS
6438 break;
6439 # endif
6443 /* When 'spellcapcheck' is set compile the regexp program. */
6444 else if (varp == &(curbuf->b_p_spc))
6446 errmsg = compile_cap_prog(curbuf);
6448 /* 'spellsuggest' */
6449 else if (varp == &p_sps)
6451 if (spell_check_sps() != OK)
6452 errmsg = e_invarg;
6454 /* 'mkspellmem' */
6455 else if (varp == &p_msm)
6457 if (spell_check_msm() != OK)
6458 errmsg = e_invarg;
6460 #endif
6462 #ifdef FEAT_QUICKFIX
6463 /* When 'bufhidden' is set, check for valid value. */
6464 else if (gvarp == &p_bh)
6466 if (check_opt_strings(curbuf->b_p_bh, p_bufhidden_values, FALSE) != OK)
6467 errmsg = e_invarg;
6470 /* When 'buftype' is set, check for valid value. */
6471 else if (gvarp == &p_bt)
6473 if (check_opt_strings(curbuf->b_p_bt, p_buftype_values, FALSE) != OK)
6474 errmsg = e_invarg;
6475 else
6477 # ifdef FEAT_WINDOWS
6478 if (curwin->w_status_height)
6480 curwin->w_redr_status = TRUE;
6481 redraw_later(VALID);
6483 # endif
6484 curbuf->b_help = (curbuf->b_p_bt[0] == 'h');
6487 #endif
6489 #ifdef FEAT_STL_OPT
6490 /* 'statusline' or 'rulerformat' */
6491 else if (gvarp == &p_stl || varp == &p_ruf)
6493 int wid;
6495 if (varp == &p_ruf) /* reset ru_wid first */
6496 ru_wid = 0;
6497 s = *varp;
6498 if (varp == &p_ruf && *s == '%')
6500 /* set ru_wid if 'ruf' starts with "%99(" */
6501 if (*++s == '-') /* ignore a '-' */
6502 s++;
6503 wid = getdigits(&s);
6504 if (wid && *s == '(' && (errmsg = check_stl_option(p_ruf)) == NULL)
6505 ru_wid = wid;
6506 else
6507 errmsg = check_stl_option(p_ruf);
6509 /* check 'statusline' only if it doesn't start with "%!" */
6510 else if (varp == &p_ruf || s[0] != '%' || s[1] != '!')
6511 errmsg = check_stl_option(s);
6512 if (varp == &p_ruf && errmsg == NULL)
6513 comp_col();
6515 #endif
6517 #ifdef FEAT_INS_EXPAND
6518 /* check if it is a valid value for 'complete' -- Acevedo */
6519 else if (gvarp == &p_cpt)
6521 for (s = *varp; *s;)
6523 while(*s == ',' || *s == ' ')
6524 s++;
6525 if (!*s)
6526 break;
6527 if (vim_strchr((char_u *)".wbuksid]tU", *s) == NULL)
6529 errmsg = illegal_char(errbuf, *s);
6530 break;
6532 if (*++s != NUL && *s != ',' && *s != ' ')
6534 if (s[-1] == 'k' || s[-1] == 's')
6536 /* skip optional filename after 'k' and 's' */
6537 while (*s && *s != ',' && *s != ' ')
6539 if (*s == '\\')
6540 ++s;
6541 ++s;
6544 else
6546 if (errbuf != NULL)
6548 sprintf((char *)errbuf,
6549 _("E535: Illegal character after <%c>"),
6550 *--s);
6551 errmsg = errbuf;
6553 else
6554 errmsg = (char_u *)"";
6555 break;
6561 /* 'completeopt' */
6562 else if (varp == &p_cot)
6564 if (check_opt_strings(p_cot, p_cot_values, TRUE) != OK)
6565 errmsg = e_invarg;
6567 #endif /* FEAT_INS_EXPAND */
6570 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
6571 else if (varp == &p_toolbar)
6573 if (opt_strings_flags(p_toolbar, p_toolbar_values,
6574 &toolbar_flags, TRUE) != OK)
6575 errmsg = e_invarg;
6576 else
6578 out_flush();
6579 gui_mch_show_toolbar((toolbar_flags &
6580 (TOOLBAR_TEXT | TOOLBAR_ICONS)) != 0);
6583 #endif
6585 #if defined(FEAT_TOOLBAR) && ((defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)) \
6586 || defined(FEAT_GUI_MACVIM))
6587 /* 'toolbariconsize': GTK+ 2 and MacVim only */
6588 else if (varp == &p_tbis)
6590 if (opt_strings_flags(p_tbis, p_tbis_values, &tbis_flags, FALSE) != OK)
6591 errmsg = e_invarg;
6592 else
6594 out_flush();
6595 gui_mch_show_toolbar((toolbar_flags &
6596 (TOOLBAR_TEXT | TOOLBAR_ICONS)) != 0);
6599 #endif
6601 /* 'pastetoggle': translate key codes like in a mapping */
6602 else if (varp == &p_pt)
6604 if (*p_pt)
6606 (void)replace_termcodes(p_pt, &p, TRUE, TRUE, FALSE);
6607 if (p != NULL)
6609 if (new_value_alloced)
6610 free_string_option(p_pt);
6611 p_pt = p;
6612 new_value_alloced = TRUE;
6617 /* 'backspace' */
6618 else if (varp == &p_bs)
6620 if (VIM_ISDIGIT(*p_bs))
6622 if (*p_bs >'2' || p_bs[1] != NUL)
6623 errmsg = e_invarg;
6625 else if (check_opt_strings(p_bs, p_bs_values, TRUE) != OK)
6626 errmsg = e_invarg;
6629 #ifdef FEAT_MBYTE
6630 /* 'casemap' */
6631 else if (varp == &p_cmp)
6633 if (opt_strings_flags(p_cmp, p_cmp_values, &cmp_flags, TRUE) != OK)
6634 errmsg = e_invarg;
6636 #endif
6638 #ifdef FEAT_DIFF
6639 /* 'diffopt' */
6640 else if (varp == &p_dip)
6642 if (diffopt_changed() == FAIL)
6643 errmsg = e_invarg;
6645 #endif
6647 #ifdef FEAT_FOLDING
6648 /* 'foldmethod' */
6649 else if (gvarp == &curwin->w_allbuf_opt.wo_fdm)
6651 if (check_opt_strings(*varp, p_fdm_values, FALSE) != OK
6652 || *curwin->w_p_fdm == NUL)
6653 errmsg = e_invarg;
6654 else
6655 foldUpdateAll(curwin);
6657 # ifdef FEAT_EVAL
6658 /* 'foldexpr' */
6659 else if (varp == &curwin->w_p_fde)
6661 if (foldmethodIsExpr(curwin))
6662 foldUpdateAll(curwin);
6664 # endif
6665 /* 'foldmarker' */
6666 else if (gvarp == &curwin->w_allbuf_opt.wo_fmr)
6668 p = vim_strchr(*varp, ',');
6669 if (p == NULL)
6670 errmsg = (char_u *)N_("E536: comma required");
6671 else if (p == *varp || p[1] == NUL)
6672 errmsg = e_invarg;
6673 else if (foldmethodIsMarker(curwin))
6674 foldUpdateAll(curwin);
6676 /* 'commentstring' */
6677 else if (gvarp == &p_cms)
6679 if (**varp != NUL && strstr((char *)*varp, "%s") == NULL)
6680 errmsg = (char_u *)N_("E537: 'commentstring' must be empty or contain %s");
6682 /* 'foldopen' */
6683 else if (varp == &p_fdo)
6685 if (opt_strings_flags(p_fdo, p_fdo_values, &fdo_flags, TRUE) != OK)
6686 errmsg = e_invarg;
6688 /* 'foldclose' */
6689 else if (varp == &p_fcl)
6691 if (check_opt_strings(p_fcl, p_fcl_values, TRUE) != OK)
6692 errmsg = e_invarg;
6694 /* 'foldignore' */
6695 else if (gvarp == &curwin->w_allbuf_opt.wo_fdi)
6697 if (foldmethodIsIndent(curwin))
6698 foldUpdateAll(curwin);
6700 #endif
6702 #ifdef FEAT_FULLSCREEN
6703 /* 'fuoptions' */
6704 else if (varp == &p_fuoptions)
6706 if (check_fuoptions(p_fuoptions, &fuoptions_flags,
6707 &fuoptions_bgcolor) != OK)
6708 errmsg = e_invarg;
6710 #endif
6712 #ifdef FEAT_VIRTUALEDIT
6713 /* 'virtualedit' */
6714 else if (varp == &p_ve)
6716 if (opt_strings_flags(p_ve, p_ve_values, &ve_flags, TRUE) != OK)
6717 errmsg = e_invarg;
6718 else if (STRCMP(p_ve, oldval) != 0)
6720 /* Recompute cursor position in case the new 've' setting
6721 * changes something. */
6722 validate_virtcol();
6723 coladvance(curwin->w_virtcol);
6726 #endif
6728 #if defined(FEAT_CSCOPE) && defined(FEAT_QUICKFIX)
6729 else if (varp == &p_csqf)
6731 if (p_csqf != NULL)
6733 p = p_csqf;
6734 while (*p != NUL)
6736 if (vim_strchr((char_u *)CSQF_CMDS, *p) == NULL
6737 || p[1] == NUL
6738 || vim_strchr((char_u *)CSQF_FLAGS, p[1]) == NULL
6739 || (p[2] != NUL && p[2] != ','))
6741 errmsg = e_invarg;
6742 break;
6744 else if (p[2] == NUL)
6745 break;
6746 else
6747 p += 3;
6751 #endif
6753 /* Options that are a list of flags. */
6754 else
6756 p = NULL;
6757 if (varp == &p_ww)
6758 p = (char_u *)WW_ALL;
6759 if (varp == &p_shm)
6760 p = (char_u *)SHM_ALL;
6761 else if (varp == &(p_cpo))
6762 p = (char_u *)CPO_ALL;
6763 else if (varp == &(curbuf->b_p_fo))
6764 p = (char_u *)FO_ALL;
6765 else if (varp == &p_mouse)
6767 #ifdef FEAT_MOUSE
6768 p = (char_u *)MOUSE_ALL;
6769 #else
6770 if (*p_mouse != NUL)
6771 errmsg = (char_u *)N_("E538: No mouse support");
6772 #endif
6774 #if defined(FEAT_GUI)
6775 else if (varp == &p_go)
6776 p = (char_u *)GO_ALL;
6777 #endif
6778 if (p != NULL)
6780 for (s = *varp; *s; ++s)
6781 if (vim_strchr(p, *s) == NULL)
6783 errmsg = illegal_char(errbuf, *s);
6784 break;
6790 * If error detected, restore the previous value.
6792 if (errmsg != NULL)
6794 if (new_value_alloced)
6795 free_string_option(*varp);
6796 *varp = oldval;
6798 * When resetting some values, need to act on it.
6800 if (did_chartab)
6801 (void)init_chartab();
6802 if (varp == &p_hl)
6803 (void)highlight_changed();
6805 else
6807 #ifdef FEAT_EVAL
6808 /* Remember where the option was set. */
6809 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
6810 #endif
6812 * Free string options that are in allocated memory.
6813 * Use "free_oldval", because recursiveness may change the flags under
6814 * our fingers (esp. init_highlight()).
6816 if (free_oldval)
6817 free_string_option(oldval);
6818 if (new_value_alloced)
6819 options[opt_idx].flags |= P_ALLOCED;
6820 else
6821 options[opt_idx].flags &= ~P_ALLOCED;
6823 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
6824 && ((int)options[opt_idx].indir & PV_BOTH))
6826 /* global option with local value set to use global value; free
6827 * the local value and make it empty */
6828 p = get_varp_scope(&(options[opt_idx]), OPT_LOCAL);
6829 free_string_option(*(char_u **)p);
6830 *(char_u **)p = empty_option;
6833 /* May set global value for local option. */
6834 else if (!(opt_flags & OPT_LOCAL) && opt_flags != OPT_GLOBAL)
6835 set_string_option_global(opt_idx, varp);
6837 #ifdef FEAT_AUTOCMD
6839 * Trigger the autocommand only after setting the flags.
6841 # ifdef FEAT_SYN_HL
6842 /* When 'syntax' is set, load the syntax of that name */
6843 if (varp == &(curbuf->b_p_syn))
6845 apply_autocmds(EVENT_SYNTAX, curbuf->b_p_syn,
6846 curbuf->b_fname, TRUE, curbuf);
6848 # endif
6849 else if (varp == &(curbuf->b_p_ft))
6851 /* 'filetype' is set, trigger the FileType autocommand */
6852 did_filetype = TRUE;
6853 apply_autocmds(EVENT_FILETYPE, curbuf->b_p_ft,
6854 curbuf->b_fname, TRUE, curbuf);
6856 #endif
6857 #ifdef FEAT_SPELL
6858 if (varp == &(curbuf->b_p_spl))
6860 char_u fname[200];
6863 * Source the spell/LANG.vim in 'runtimepath'.
6864 * They could set 'spellcapcheck' depending on the language.
6865 * Use the first name in 'spelllang' up to '_region' or
6866 * '.encoding'.
6868 for (p = curbuf->b_p_spl; *p != NUL; ++p)
6869 if (vim_strchr((char_u *)"_.,", *p) != NULL)
6870 break;
6871 vim_snprintf((char *)fname, 200, "spell/%.*s.vim",
6872 (int)(p - curbuf->b_p_spl), curbuf->b_p_spl);
6873 source_runtime(fname, TRUE);
6875 #endif
6878 #ifdef FEAT_MOUSE
6879 if (varp == &p_mouse)
6881 # ifdef FEAT_MOUSE_TTY
6882 if (*p_mouse == NUL)
6883 mch_setmouse(FALSE); /* switch mouse off */
6884 else
6885 # endif
6886 setmouse(); /* in case 'mouse' changed */
6888 #endif
6890 if (curwin->w_curswant != MAXCOL)
6891 curwin->w_set_curswant = TRUE; /* in case 'showbreak' changed */
6892 #ifdef FEAT_GUI
6893 /* check redraw when it's not a GUI option or the GUI is active. */
6894 if (!redraw_gui_only || gui.in_use)
6895 #endif
6896 check_redraw(options[opt_idx].flags);
6898 return errmsg;
6902 * Handle setting 'listchars' or 'fillchars'.
6903 * Returns error message, NULL if it's OK.
6905 static char_u *
6906 set_chars_option(varp)
6907 char_u **varp;
6909 int round, i, len, entries;
6910 char_u *p, *s;
6911 int c1, c2 = 0;
6912 struct charstab
6914 int *cp;
6915 char *name;
6917 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6918 static struct charstab filltab[] =
6920 {&fill_stl, "stl"},
6921 {&fill_stlnc, "stlnc"},
6922 {&fill_vert, "vert"},
6923 {&fill_fold, "fold"},
6924 {&fill_diff, "diff"},
6926 #endif
6927 static struct charstab lcstab[] =
6929 {&lcs_eol, "eol"},
6930 {&lcs_ext, "extends"},
6931 {&lcs_nbsp, "nbsp"},
6932 {&lcs_prec, "precedes"},
6933 {&lcs_tab2, "tab"},
6934 {&lcs_trail, "trail"},
6936 struct charstab *tab;
6938 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6939 if (varp == &p_lcs)
6940 #endif
6942 tab = lcstab;
6943 entries = sizeof(lcstab) / sizeof(struct charstab);
6945 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6946 else
6948 tab = filltab;
6949 entries = sizeof(filltab) / sizeof(struct charstab);
6951 #endif
6953 /* first round: check for valid value, second round: assign values */
6954 for (round = 0; round <= 1; ++round)
6956 if (round)
6958 /* After checking that the value is valid: set defaults: space for
6959 * 'fillchars', NUL for 'listchars' */
6960 for (i = 0; i < entries; ++i)
6961 *(tab[i].cp) = (varp == &p_lcs ? NUL : ' ');
6962 if (varp == &p_lcs)
6963 lcs_tab1 = NUL;
6964 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6965 else
6966 fill_diff = '-';
6967 #endif
6969 p = *varp;
6970 while (*p)
6972 for (i = 0; i < entries; ++i)
6974 len = (int)STRLEN(tab[i].name);
6975 if (STRNCMP(p, tab[i].name, len) == 0
6976 && p[len] == ':'
6977 && p[len + 1] != NUL)
6979 s = p + len + 1;
6980 #ifdef FEAT_MBYTE
6981 c1 = mb_ptr2char_adv(&s);
6982 if (mb_char2cells(c1) > 1)
6983 continue;
6984 #else
6985 c1 = *s++;
6986 #endif
6987 if (tab[i].cp == &lcs_tab2)
6989 if (*s == NUL)
6990 continue;
6991 #ifdef FEAT_MBYTE
6992 c2 = mb_ptr2char_adv(&s);
6993 if (mb_char2cells(c2) > 1)
6994 continue;
6995 #else
6996 c2 = *s++;
6997 #endif
6999 if (*s == ',' || *s == NUL)
7001 if (round)
7003 if (tab[i].cp == &lcs_tab2)
7005 lcs_tab1 = c1;
7006 lcs_tab2 = c2;
7008 else
7009 *(tab[i].cp) = c1;
7012 p = s;
7013 break;
7018 if (i == entries)
7019 return e_invarg;
7020 if (*p == ',')
7021 ++p;
7025 return NULL; /* no error */
7028 #ifdef FEAT_STL_OPT
7030 * Check validity of options with the 'statusline' format.
7031 * Return error message or NULL.
7033 char_u *
7034 check_stl_option(s)
7035 char_u *s;
7037 int itemcnt = 0;
7038 int groupdepth = 0;
7039 static char_u errbuf[80];
7041 while (*s && itemcnt < STL_MAX_ITEM)
7043 /* Check for valid keys after % sequences */
7044 while (*s && *s != '%')
7045 s++;
7046 if (!*s)
7047 break;
7048 s++;
7049 if (*s != '%' && *s != ')')
7050 ++itemcnt;
7051 if (*s == '%' || *s == STL_TRUNCMARK || *s == STL_MIDDLEMARK)
7053 s++;
7054 continue;
7056 if (*s == ')')
7058 s++;
7059 if (--groupdepth < 0)
7060 break;
7061 continue;
7063 if (*s == '-')
7064 s++;
7065 while (VIM_ISDIGIT(*s))
7066 s++;
7067 if (*s == STL_USER_HL)
7068 continue;
7069 if (*s == '.')
7071 s++;
7072 while (*s && VIM_ISDIGIT(*s))
7073 s++;
7075 if (*s == '(')
7077 groupdepth++;
7078 continue;
7080 if (vim_strchr(STL_ALL, *s) == NULL)
7082 return illegal_char(errbuf, *s);
7084 if (*s == '{')
7086 s++;
7087 while (*s != '}' && *s)
7088 s++;
7089 if (*s != '}')
7090 return (char_u *)N_("E540: Unclosed expression sequence");
7093 if (itemcnt >= STL_MAX_ITEM)
7094 return (char_u *)N_("E541: too many items");
7095 if (groupdepth != 0)
7096 return (char_u *)N_("E542: unbalanced groups");
7097 return NULL;
7099 #endif
7101 #ifdef FEAT_CLIPBOARD
7103 * Extract the items in the 'clipboard' option and set global values.
7105 static char_u *
7106 check_clipboard_option()
7108 int new_unnamed = FALSE;
7109 int new_autoselect = FALSE;
7110 int new_autoselectml = FALSE;
7111 int new_html = FALSE;
7112 regprog_T *new_exclude_prog = NULL;
7113 char_u *errmsg = NULL;
7114 char_u *p;
7116 for (p = p_cb; *p != NUL; )
7118 if (STRNCMP(p, "unnamed", 7) == 0 && (p[7] == ',' || p[7] == NUL))
7120 new_unnamed = TRUE;
7121 p += 7;
7123 else if (STRNCMP(p, "autoselect", 10) == 0
7124 && (p[10] == ',' || p[10] == NUL))
7126 new_autoselect = TRUE;
7127 p += 10;
7129 else if (STRNCMP(p, "autoselectml", 12) == 0
7130 && (p[12] == ',' || p[12] == NUL))
7132 new_autoselectml = TRUE;
7133 p += 12;
7135 else if (STRNCMP(p, "html", 4) == 0 && (p[4] == ',' || p[4] == NUL))
7137 new_html = TRUE;
7138 p += 4;
7140 else if (STRNCMP(p, "exclude:", 8) == 0 && new_exclude_prog == NULL)
7142 p += 8;
7143 new_exclude_prog = vim_regcomp(p, RE_MAGIC);
7144 if (new_exclude_prog == NULL)
7145 errmsg = e_invarg;
7146 break;
7148 else
7150 errmsg = e_invarg;
7151 break;
7153 if (*p == ',')
7154 ++p;
7156 if (errmsg == NULL)
7158 clip_unnamed = new_unnamed;
7159 clip_autoselect = new_autoselect;
7160 clip_autoselectml = new_autoselectml;
7161 clip_html = new_html;
7162 vim_free(clip_exclude_prog);
7163 clip_exclude_prog = new_exclude_prog;
7165 else
7166 vim_free(new_exclude_prog);
7168 return errmsg;
7170 #endif
7172 #ifdef FEAT_SPELL
7174 * Set curbuf->b_cap_prog to the regexp program for 'spellcapcheck'.
7175 * Return error message when failed, NULL when OK.
7177 static char_u *
7178 compile_cap_prog(buf)
7179 buf_T *buf;
7181 regprog_T *rp = buf->b_cap_prog;
7182 char_u *re;
7184 if (*buf->b_p_spc == NUL)
7185 buf->b_cap_prog = NULL;
7186 else
7188 /* Prepend a ^ so that we only match at one column */
7189 re = concat_str((char_u *)"^", buf->b_p_spc);
7190 if (re != NULL)
7192 buf->b_cap_prog = vim_regcomp(re, RE_MAGIC);
7193 if (buf->b_cap_prog == NULL)
7195 buf->b_cap_prog = rp; /* restore the previous program */
7196 return e_invarg;
7198 vim_free(re);
7202 vim_free(rp);
7203 return NULL;
7205 #endif
7207 #if defined(FEAT_EVAL) || defined(PROTO)
7209 * Set the scriptID for an option, taking care of setting the buffer- or
7210 * window-local value.
7212 static void
7213 set_option_scriptID_idx(opt_idx, opt_flags, id)
7214 int opt_idx;
7215 int opt_flags;
7216 int id;
7218 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
7219 int indir = (int)options[opt_idx].indir;
7221 /* Remember where the option was set. For local options need to do that
7222 * in the buffer or window structure. */
7223 if (both || (opt_flags & OPT_GLOBAL) || (indir & (PV_BUF|PV_WIN)) == 0)
7224 options[opt_idx].scriptID = id;
7225 if (both || (opt_flags & OPT_LOCAL))
7227 if (indir & PV_BUF)
7228 curbuf->b_p_scriptID[indir & PV_MASK] = id;
7229 else if (indir & PV_WIN)
7230 curwin->w_p_scriptID[indir & PV_MASK] = id;
7233 #endif
7236 * Set the value of a boolean option, and take care of side effects.
7237 * Returns NULL for success, or an error message for an error.
7239 static char_u *
7240 set_bool_option(opt_idx, varp, value, opt_flags)
7241 int opt_idx; /* index in options[] table */
7242 char_u *varp; /* pointer to the option variable */
7243 int value; /* new value */
7244 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
7246 int old_value = *(int *)varp;
7248 /* Disallow changing some options from secure mode */
7249 if ((secure
7250 #ifdef HAVE_SANDBOX
7251 || sandbox != 0
7252 #endif
7253 ) && (options[opt_idx].flags & P_SECURE))
7254 return e_secure;
7256 *(int *)varp = value; /* set the new value */
7257 #ifdef FEAT_EVAL
7258 /* Remember where the option was set. */
7259 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
7260 #endif
7262 #ifdef FEAT_GUI
7263 need_mouse_correct = TRUE;
7264 #endif
7266 /* May set global value for local option. */
7267 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0)
7268 *(int *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) = value;
7271 * Handle side effects of changing a bool option.
7274 /* 'compatible' */
7275 if ((int *)varp == &p_cp)
7277 compatible_set();
7280 /* 'list', 'number' */
7281 else if ((int *)varp == &curwin->w_p_list
7282 || (int *)varp == &curwin->w_p_nu)
7284 if (curwin->w_curswant != MAXCOL)
7285 curwin->w_set_curswant = TRUE;
7288 else if ((int *)varp == &curbuf->b_p_ro)
7290 /* when 'readonly' is reset globally, also reset readonlymode */
7291 if (!curbuf->b_p_ro && (opt_flags & OPT_LOCAL) == 0)
7292 readonlymode = FALSE;
7294 /* when 'readonly' is set may give W10 again */
7295 if (curbuf->b_p_ro)
7296 curbuf->b_did_warn = FALSE;
7298 #ifdef FEAT_TITLE
7299 redraw_titles();
7300 #endif
7303 #ifdef FEAT_TITLE
7304 /* when 'modifiable' is changed, redraw the window title */
7305 else if ((int *)varp == &curbuf->b_p_ma)
7307 redraw_titles();
7309 /* when 'endofline' is changed, redraw the window title */
7310 else if ((int *)varp == &curbuf->b_p_eol)
7312 redraw_titles();
7314 # ifdef FEAT_MBYTE
7315 /* when 'bomb' is changed, redraw the window title and tab page text */
7316 else if ((int *)varp == &curbuf->b_p_bomb)
7318 redraw_titles();
7320 # endif
7321 #endif
7323 /* when 'bin' is set also set some other options */
7324 else if ((int *)varp == &curbuf->b_p_bin)
7326 set_options_bin(old_value, curbuf->b_p_bin, opt_flags);
7327 #ifdef FEAT_TITLE
7328 redraw_titles();
7329 #endif
7332 #ifdef FEAT_AUTOCMD
7333 /* when 'buflisted' changes, trigger autocommands */
7334 else if ((int *)varp == &curbuf->b_p_bl && old_value != curbuf->b_p_bl)
7336 apply_autocmds(curbuf->b_p_bl ? EVENT_BUFADD : EVENT_BUFDELETE,
7337 NULL, NULL, TRUE, curbuf);
7339 #endif
7341 /* when 'swf' is set, create swapfile, when reset remove swapfile */
7342 else if ((int *)varp == &curbuf->b_p_swf)
7344 if (curbuf->b_p_swf && p_uc)
7345 ml_open_file(curbuf); /* create the swap file */
7346 else
7347 /* no need to reset curbuf->b_may_swap, ml_open_file() will check
7348 * buf->b_p_swf */
7349 mf_close_file(curbuf, TRUE); /* remove the swap file */
7352 /* when 'terse' is set change 'shortmess' */
7353 else if ((int *)varp == &p_terse)
7355 char_u *p;
7357 p = vim_strchr(p_shm, SHM_SEARCH);
7359 /* insert 's' in p_shm */
7360 if (p_terse && p == NULL)
7362 STRCPY(IObuff, p_shm);
7363 STRCAT(IObuff, "s");
7364 set_string_option_direct((char_u *)"shm", -1, IObuff, OPT_FREE, 0);
7366 /* remove 's' from p_shm */
7367 else if (!p_terse && p != NULL)
7368 STRMOVE(p, p + 1);
7371 /* when 'paste' is set or reset also change other options */
7372 else if ((int *)varp == &p_paste)
7374 paste_option_changed();
7377 /* when 'insertmode' is set from an autocommand need to do work here */
7378 else if ((int *)varp == &p_im)
7380 if (p_im)
7382 if ((State & INSERT) == 0)
7383 need_start_insertmode = TRUE;
7384 stop_insert_mode = FALSE;
7386 else
7388 need_start_insertmode = FALSE;
7389 stop_insert_mode = TRUE;
7390 if (restart_edit != 0 && mode_displayed)
7391 clear_cmdline = TRUE; /* remove "(insert)" */
7392 restart_edit = 0;
7396 /* when 'ignorecase' is set or reset and 'hlsearch' is set, redraw */
7397 else if ((int *)varp == &p_ic && p_hls)
7399 redraw_all_later(SOME_VALID);
7402 #ifdef FEAT_SEARCH_EXTRA
7403 /* when 'hlsearch' is set or reset: reset no_hlsearch */
7404 else if ((int *)varp == &p_hls)
7406 no_hlsearch = FALSE;
7408 #endif
7410 #ifdef FEAT_SCROLLBIND
7411 /* when 'scrollbind' is set: snapshot the current position to avoid a jump
7412 * at the end of normal_cmd() */
7413 else if ((int *)varp == &curwin->w_p_scb)
7415 if (curwin->w_p_scb)
7416 do_check_scrollbind(FALSE);
7418 #endif
7420 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
7421 /* There can be only one window with 'previewwindow' set. */
7422 else if ((int *)varp == &curwin->w_p_pvw)
7424 if (curwin->w_p_pvw)
7426 win_T *win;
7428 for (win = firstwin; win != NULL; win = win->w_next)
7429 if (win->w_p_pvw && win != curwin)
7431 curwin->w_p_pvw = FALSE;
7432 return (char_u *)N_("E590: A preview window already exists");
7436 #endif
7438 /* when 'textmode' is set or reset also change 'fileformat' */
7439 else if ((int *)varp == &curbuf->b_p_tx)
7441 set_fileformat(curbuf->b_p_tx ? EOL_DOS : EOL_UNIX, opt_flags);
7444 #ifdef FEAT_FULLSCREEN
7445 /* when 'fullscreen' changes, forward it to the gui */
7446 else if ((int *)varp == &p_fullscreen && gui.in_use)
7448 if (p_fullscreen && !old_value)
7450 guicolor_T fg, bg;
7451 if (fuoptions_flags & FUOPT_BGCOLOR_HLGROUP)
7453 /* Find out background color from colorscheme
7454 * via highlight group id */
7455 syn_id2colors(fuoptions_bgcolor, &fg, &bg);
7457 else
7459 /* set explicit background color */
7460 bg = fuoptions_bgcolor;
7462 gui_mch_enter_fullscreen(fuoptions_flags, bg);
7464 else if (!p_fullscreen && old_value)
7466 gui_mch_leave_fullscreen();
7469 #endif
7471 #if defined(FEAT_ANTIALIAS) && defined(FEAT_GUI_MACVIM)
7472 else if ((int *)varp == &p_antialias)
7474 gui_macvim_set_antialias(p_antialias);
7476 #endif
7478 /* when 'textauto' is set or reset also change 'fileformats' */
7479 else if ((int *)varp == &p_ta)
7480 set_string_option_direct((char_u *)"ffs", -1,
7481 p_ta ? (char_u *)DFLT_FFS_VIM : (char_u *)"",
7482 OPT_FREE | opt_flags, 0);
7485 * When 'lisp' option changes include/exclude '-' in
7486 * keyword characters.
7488 #ifdef FEAT_LISP
7489 else if (varp == (char_u *)&(curbuf->b_p_lisp))
7491 (void)buf_init_chartab(curbuf, FALSE); /* ignore errors */
7493 #endif
7495 #ifdef FEAT_TITLE
7496 /* when 'title' changed, may need to change the title; same for 'icon' */
7497 else if ((int *)varp == &p_title)
7499 did_set_title(FALSE);
7502 else if ((int *)varp == &p_icon)
7504 did_set_title(TRUE);
7506 #endif
7508 else if ((int *)varp == &curbuf->b_changed)
7510 if (!value)
7511 save_file_ff(curbuf); /* Buffer is unchanged */
7512 #ifdef FEAT_TITLE
7513 redraw_titles();
7514 #endif
7515 #ifdef FEAT_AUTOCMD
7516 modified_was_set = value;
7517 #endif
7520 #ifdef BACKSLASH_IN_FILENAME
7521 else if ((int *)varp == &p_ssl)
7523 if (p_ssl)
7525 psepc = '/';
7526 psepcN = '\\';
7527 pseps[0] = '/';
7529 else
7531 psepc = '\\';
7532 psepcN = '/';
7533 pseps[0] = '\\';
7536 /* need to adjust the file name arguments and buffer names. */
7537 buflist_slash_adjust();
7538 alist_slash_adjust();
7539 # ifdef FEAT_EVAL
7540 scriptnames_slash_adjust();
7541 # endif
7543 #endif
7545 /* If 'wrap' is set, set w_leftcol to zero. */
7546 else if ((int *)varp == &curwin->w_p_wrap)
7548 if (curwin->w_p_wrap)
7549 curwin->w_leftcol = 0;
7552 #ifdef FEAT_WINDOWS
7553 else if ((int *)varp == &p_ea)
7555 if (p_ea && !old_value)
7556 win_equal(curwin, FALSE, 0);
7558 #endif
7560 else if ((int *)varp == &p_wiv)
7563 * When 'weirdinvert' changed, set/reset 't_xs'.
7564 * Then set 'weirdinvert' according to value of 't_xs'.
7566 if (p_wiv && !old_value)
7567 T_XS = (char_u *)"y";
7568 else if (!p_wiv && old_value)
7569 T_XS = empty_option;
7570 p_wiv = (*T_XS != NUL);
7573 #ifdef FEAT_BEVAL
7574 else if ((int *)varp == &p_beval)
7576 if (p_beval == TRUE)
7577 gui_mch_enable_beval_area(balloonEval);
7578 else
7579 gui_mch_disable_beval_area(balloonEval);
7581 #endif
7583 #ifdef FEAT_AUTOCHDIR
7584 else if ((int *)varp == &p_acd)
7586 /* Change directories when the 'acd' option is set now. */
7587 DO_AUTOCHDIR
7589 #endif
7591 #ifdef FEAT_DIFF
7592 /* 'diff' */
7593 else if ((int *)varp == &curwin->w_p_diff)
7595 /* May add or remove the buffer from the list of diff buffers. */
7596 diff_buf_adjust(curwin);
7597 # ifdef FEAT_FOLDING
7598 if (foldmethodIsDiff(curwin))
7599 foldUpdateAll(curwin);
7600 # endif
7602 #endif
7604 #ifdef USE_IM_CONTROL
7605 /* 'imdisable' */
7606 else if ((int *)varp == &p_imdisable)
7608 /* Only de-activate it here, it will be enabled when changing mode. */
7609 if (p_imdisable)
7610 im_set_active(FALSE);
7611 #ifdef FEAT_GUI_MACVIM
7612 im_set_control(!p_imdisable);
7613 #endif
7615 #endif
7617 #ifdef FEAT_SPELL
7618 /* 'spell' */
7619 else if ((int *)varp == &curwin->w_p_spell)
7621 if (curwin->w_p_spell)
7623 char_u *errmsg = did_set_spelllang(curbuf);
7625 if (errmsg != NULL)
7626 EMSG(_(errmsg));
7629 #endif
7631 #ifdef FEAT_FKMAP
7632 else if ((int *)varp == &p_altkeymap)
7634 if (old_value != p_altkeymap)
7636 if (!p_altkeymap)
7638 p_hkmap = p_fkmap;
7639 p_fkmap = 0;
7641 else
7643 p_fkmap = p_hkmap;
7644 p_hkmap = 0;
7646 (void)init_chartab();
7651 * In case some second language keymapping options have changed, check
7652 * and correct the setting in a consistent way.
7656 * If hkmap or fkmap are set, reset Arabic keymapping.
7658 if ((p_hkmap || p_fkmap) && p_altkeymap)
7660 p_altkeymap = p_fkmap;
7661 # ifdef FEAT_ARABIC
7662 curwin->w_p_arab = FALSE;
7663 # endif
7664 (void)init_chartab();
7668 * If hkmap set, reset Farsi keymapping.
7670 if (p_hkmap && p_altkeymap)
7672 p_altkeymap = 0;
7673 p_fkmap = 0;
7674 # ifdef FEAT_ARABIC
7675 curwin->w_p_arab = FALSE;
7676 # endif
7677 (void)init_chartab();
7681 * If fkmap set, reset Hebrew keymapping.
7683 if (p_fkmap && !p_altkeymap)
7685 p_altkeymap = 1;
7686 p_hkmap = 0;
7687 # ifdef FEAT_ARABIC
7688 curwin->w_p_arab = FALSE;
7689 # endif
7690 (void)init_chartab();
7692 #endif
7694 #ifdef FEAT_ARABIC
7695 if ((int *)varp == &curwin->w_p_arab)
7697 if (curwin->w_p_arab)
7700 * 'arabic' is set, handle various sub-settings.
7702 if (!p_tbidi)
7704 /* set rightleft mode */
7705 if (!curwin->w_p_rl)
7707 curwin->w_p_rl = TRUE;
7708 changed_window_setting();
7711 /* Enable Arabic shaping (major part of what Arabic requires) */
7712 if (!p_arshape)
7714 p_arshape = TRUE;
7715 redraw_later_clear();
7719 /* Arabic requires a utf-8 encoding, inform the user if its not
7720 * set. */
7721 if (STRCMP(p_enc, "utf-8") != 0)
7723 static char *w_arabic = N_("W17: Arabic requires UTF-8, do ':set encoding=utf-8'");
7725 msg_source(hl_attr(HLF_W));
7726 MSG_ATTR(_(w_arabic), hl_attr(HLF_W));
7727 #ifdef FEAT_EVAL
7728 set_vim_var_string(VV_WARNINGMSG, (char_u *)_(w_arabic), -1);
7729 #endif
7732 # ifdef FEAT_MBYTE
7733 /* set 'delcombine' */
7734 p_deco = TRUE;
7735 # endif
7737 # ifdef FEAT_KEYMAP
7738 /* Force-set the necessary keymap for arabic */
7739 set_option_value((char_u *)"keymap", 0L, (char_u *)"arabic",
7740 OPT_LOCAL);
7741 # endif
7742 # ifdef FEAT_FKMAP
7743 p_altkeymap = 0;
7744 p_hkmap = 0;
7745 p_fkmap = 0;
7746 (void)init_chartab();
7747 # endif
7749 else
7752 * 'arabic' is reset, handle various sub-settings.
7754 if (!p_tbidi)
7756 /* reset rightleft mode */
7757 if (curwin->w_p_rl)
7759 curwin->w_p_rl = FALSE;
7760 changed_window_setting();
7763 /* 'arabicshape' isn't reset, it is a global option and
7764 * another window may still need it "on". */
7767 /* 'delcombine' isn't reset, it is a global option and another
7768 * window may still want it "on". */
7770 # ifdef FEAT_KEYMAP
7771 /* Revert to the default keymap */
7772 curbuf->b_p_iminsert = B_IMODE_NONE;
7773 curbuf->b_p_imsearch = B_IMODE_USE_INSERT;
7774 # endif
7776 if (curwin->w_curswant != MAXCOL)
7777 curwin->w_set_curswant = TRUE;
7780 else if ((int *)varp == &p_arshape)
7782 if (curwin->w_curswant != MAXCOL)
7783 curwin->w_set_curswant = TRUE;
7785 #endif
7788 * End of handling side effects for bool options.
7791 options[opt_idx].flags |= P_WAS_SET;
7793 comp_col(); /* in case 'ruler' or 'showcmd' changed */
7795 check_redraw(options[opt_idx].flags);
7797 return NULL;
7801 * Set the value of a number option, and take care of side effects.
7802 * Returns NULL for success, or an error message for an error.
7804 static char_u *
7805 set_num_option(opt_idx, varp, value, errbuf, errbuflen, opt_flags)
7806 int opt_idx; /* index in options[] table */
7807 char_u *varp; /* pointer to the option variable */
7808 long value; /* new value */
7809 char_u *errbuf; /* buffer for error messages */
7810 size_t errbuflen; /* length of "errbuf" */
7811 int opt_flags; /* OPT_LOCAL, OPT_GLOBAL and
7812 OPT_MODELINE */
7814 char_u *errmsg = NULL;
7815 long old_value = *(long *)varp;
7816 long old_Rows = Rows; /* remember old Rows */
7817 long old_Columns = Columns; /* remember old Columns */
7818 long *pp = (long *)varp;
7820 /* Disallow changing some options from secure mode. */
7821 if ((secure
7822 #ifdef HAVE_SANDBOX
7823 || sandbox != 0
7824 #endif
7825 ) && (options[opt_idx].flags & P_SECURE))
7826 return e_secure;
7828 *pp = value;
7829 #ifdef FEAT_EVAL
7830 /* Remember where the option was set. */
7831 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
7832 #endif
7833 #ifdef FEAT_GUI
7834 need_mouse_correct = TRUE;
7835 #endif
7837 if (curbuf->b_p_sw <= 0)
7839 errmsg = e_positive;
7840 curbuf->b_p_sw = curbuf->b_p_ts;
7844 * Number options that need some action when changed
7846 #ifdef FEAT_WINDOWS
7847 if (pp == &p_wh || pp == &p_hh)
7849 if (p_wh < 1)
7851 errmsg = e_positive;
7852 p_wh = 1;
7854 if (p_wmh > p_wh)
7856 errmsg = e_winheight;
7857 p_wh = p_wmh;
7859 if (p_hh < 0)
7861 errmsg = e_positive;
7862 p_hh = 0;
7865 /* Change window height NOW */
7866 if (lastwin != firstwin)
7868 if (pp == &p_wh && curwin->w_height < p_wh)
7869 win_setheight((int)p_wh);
7870 if (pp == &p_hh && curbuf->b_help && curwin->w_height < p_hh)
7871 win_setheight((int)p_hh);
7875 /* 'winminheight' */
7876 else if (pp == &p_wmh)
7878 if (p_wmh < 0)
7880 errmsg = e_positive;
7881 p_wmh = 0;
7883 if (p_wmh > p_wh)
7885 errmsg = e_winheight;
7886 p_wmh = p_wh;
7888 win_setminheight();
7891 # ifdef FEAT_VERTSPLIT
7892 else if (pp == &p_wiw)
7894 if (p_wiw < 1)
7896 errmsg = e_positive;
7897 p_wiw = 1;
7899 if (p_wmw > p_wiw)
7901 errmsg = e_winwidth;
7902 p_wiw = p_wmw;
7905 /* Change window width NOW */
7906 if (lastwin != firstwin && curwin->w_width < p_wiw)
7907 win_setwidth((int)p_wiw);
7910 /* 'winminwidth' */
7911 else if (pp == &p_wmw)
7913 if (p_wmw < 0)
7915 errmsg = e_positive;
7916 p_wmw = 0;
7918 if (p_wmw > p_wiw)
7920 errmsg = e_winwidth;
7921 p_wmw = p_wiw;
7923 win_setminheight();
7925 # endif
7927 #endif
7929 #ifdef FEAT_WINDOWS
7930 /* (re)set last window status line */
7931 else if (pp == &p_ls)
7933 last_status(FALSE);
7936 /* (re)set tab page line */
7937 else if (pp == &p_stal)
7939 shell_new_rows(); /* recompute window positions and heights */
7941 #endif
7943 #ifdef FEAT_GUI
7944 else if (pp == &p_linespace)
7946 /* Recompute gui.char_height and resize the Vim window to keep the
7947 * same number of lines. */
7948 if (gui.in_use && gui_mch_adjust_charheight() == OK)
7949 gui_set_shellsize(FALSE, FALSE, RESIZE_VERT);
7951 #endif
7953 #ifdef FEAT_FOLDING
7954 /* 'foldlevel' */
7955 else if (pp == &curwin->w_p_fdl)
7957 if (curwin->w_p_fdl < 0)
7958 curwin->w_p_fdl = 0;
7959 newFoldLevel();
7962 /* 'foldminlines' */
7963 else if (pp == &curwin->w_p_fml)
7965 foldUpdateAll(curwin);
7968 /* 'foldnestmax' */
7969 else if (pp == &curwin->w_p_fdn)
7971 if (foldmethodIsSyntax(curwin) || foldmethodIsIndent(curwin))
7972 foldUpdateAll(curwin);
7975 /* 'foldcolumn' */
7976 else if (pp == &curwin->w_p_fdc)
7978 if (curwin->w_p_fdc < 0)
7980 errmsg = e_positive;
7981 curwin->w_p_fdc = 0;
7983 else if (curwin->w_p_fdc > 12)
7985 errmsg = e_invarg;
7986 curwin->w_p_fdc = 12;
7990 /* 'shiftwidth' or 'tabstop' */
7991 else if (pp == &curbuf->b_p_sw || pp == &curbuf->b_p_ts)
7993 if (foldmethodIsIndent(curwin))
7994 foldUpdateAll(curwin);
7996 #endif /* FEAT_FOLDING */
7998 #ifdef FEAT_MBYTE
7999 /* 'maxcombine' */
8000 else if (pp == &p_mco)
8002 if (p_mco > MAX_MCO)
8003 p_mco = MAX_MCO;
8004 else if (p_mco < 0)
8005 p_mco = 0;
8006 screenclear(); /* will re-allocate the screen */
8008 #endif
8010 else if (pp == &curbuf->b_p_iminsert)
8012 if (curbuf->b_p_iminsert < 0 || curbuf->b_p_iminsert > B_IMODE_LAST)
8014 errmsg = e_invarg;
8015 curbuf->b_p_iminsert = B_IMODE_NONE;
8017 p_iminsert = curbuf->b_p_iminsert;
8018 if (termcap_active) /* don't do this in the alternate screen */
8019 showmode();
8020 #if defined(FEAT_WINDOWS) && defined(FEAT_KEYMAP)
8021 /* Show/unshow value of 'keymap' in status lines. */
8022 status_redraw_curbuf();
8023 #endif
8026 else if (pp == &p_window)
8028 if (p_window < 1)
8029 p_window = 1;
8030 else if (p_window >= Rows)
8031 p_window = Rows - 1;
8034 else if (pp == &curbuf->b_p_imsearch)
8036 if (curbuf->b_p_imsearch < -1 || curbuf->b_p_imsearch > B_IMODE_LAST)
8038 errmsg = e_invarg;
8039 curbuf->b_p_imsearch = B_IMODE_NONE;
8041 p_imsearch = curbuf->b_p_imsearch;
8044 #ifdef FEAT_TITLE
8045 /* if 'titlelen' has changed, redraw the title */
8046 else if (pp == &p_titlelen)
8048 if (p_titlelen < 0)
8050 errmsg = e_positive;
8051 p_titlelen = 85;
8053 if (starting != NO_SCREEN && old_value != p_titlelen)
8054 need_maketitle = TRUE;
8056 #endif
8058 /* if p_ch changed value, change the command line height */
8059 else if (pp == &p_ch)
8061 if (p_ch < 1)
8063 errmsg = e_positive;
8064 p_ch = 1;
8066 if (p_ch > Rows - min_rows() + 1)
8067 p_ch = Rows - min_rows() + 1;
8069 /* Only compute the new window layout when startup has been
8070 * completed. Otherwise the frame sizes may be wrong. */
8071 if (p_ch != old_value && full_screen
8072 #ifdef FEAT_GUI
8073 && !gui.starting
8074 #endif
8076 command_height();
8079 /* when 'updatecount' changes from zero to non-zero, open swap files */
8080 else if (pp == &p_uc)
8082 if (p_uc < 0)
8084 errmsg = e_positive;
8085 p_uc = 100;
8087 if (p_uc && !old_value)
8088 ml_open_files();
8090 #ifdef MZSCHEME_GUI_THREADS
8091 else if (pp == &p_mzq)
8092 mzvim_reset_timer();
8093 #endif
8095 /* sync undo before 'undolevels' changes */
8096 else if (pp == &p_ul)
8098 /* use the old value, otherwise u_sync() may not work properly */
8099 p_ul = old_value;
8100 u_sync(TRUE);
8101 p_ul = value;
8104 #ifdef FEAT_LINEBREAK
8105 /* 'numberwidth' must be positive */
8106 else if (pp == &curwin->w_p_nuw)
8108 if (curwin->w_p_nuw < 1)
8110 errmsg = e_positive;
8111 curwin->w_p_nuw = 1;
8113 if (curwin->w_p_nuw > 10)
8115 errmsg = e_invarg;
8116 curwin->w_p_nuw = 10;
8118 curwin->w_nrwidth_line_count = 0;
8120 #endif
8122 #if defined(FEAT_TRANSPARENCY)
8123 /* 'transparency' is a number between 0 and 100 */
8124 else if (pp == &p_transp)
8126 if (p_transp < 0 || p_transp > 100)
8128 errmsg = e_invarg;
8129 p_transp = old_value;
8131 else if (gui.in_use)
8132 gui_mch_new_colors();
8134 #endif
8137 * Check the bounds for numeric options here
8139 if (Rows < min_rows() && full_screen)
8141 if (errbuf != NULL)
8143 vim_snprintf((char *)errbuf, errbuflen,
8144 _("E593: Need at least %d lines"), min_rows());
8145 errmsg = errbuf;
8147 Rows = min_rows();
8149 if (Columns < MIN_COLUMNS && full_screen)
8151 if (errbuf != NULL)
8153 vim_snprintf((char *)errbuf, errbuflen,
8154 _("E594: Need at least %d columns"), MIN_COLUMNS);
8155 errmsg = errbuf;
8157 Columns = MIN_COLUMNS;
8159 /* Limit the values to avoid an overflow in Rows * Columns. */
8160 if (Columns > 10000)
8161 Columns = 10000;
8162 if (Rows > 1000)
8163 Rows = 1000;
8165 #ifdef DJGPP
8166 /* avoid a crash by checking for a too large value of 'columns' */
8167 if (old_Columns != Columns && full_screen && term_console)
8168 mch_check_columns();
8169 #endif
8172 * If the screen (shell) height has been changed, assume it is the
8173 * physical screenheight.
8175 if (old_Rows != Rows || old_Columns != Columns)
8177 /* Changing the screen size is not allowed while updating the screen. */
8178 if (updating_screen)
8179 *pp = old_value;
8180 else if (full_screen
8181 #ifdef FEAT_GUI
8182 && !gui.starting
8183 #endif
8185 set_shellsize((int)Columns, (int)Rows, TRUE);
8186 else
8188 /* Postpone the resizing; check the size and cmdline position for
8189 * messages. */
8190 check_shellsize();
8191 if (cmdline_row > Rows - p_ch && Rows > p_ch)
8192 cmdline_row = Rows - p_ch;
8194 if (p_window >= Rows || !option_was_set((char_u *)"window"))
8195 p_window = Rows - 1;
8198 if (curbuf->b_p_sts < 0)
8200 errmsg = e_positive;
8201 curbuf->b_p_sts = 0;
8203 if (curbuf->b_p_ts <= 0)
8205 errmsg = e_positive;
8206 curbuf->b_p_ts = 8;
8208 if (curbuf->b_p_tw < 0)
8210 errmsg = e_positive;
8211 curbuf->b_p_tw = 0;
8213 if (p_tm < 0)
8215 errmsg = e_positive;
8216 p_tm = 0;
8218 if ((curwin->w_p_scr <= 0
8219 || (curwin->w_p_scr > curwin->w_height
8220 && curwin->w_height > 0))
8221 && full_screen)
8223 if (pp == &(curwin->w_p_scr))
8225 if (curwin->w_p_scr != 0)
8226 errmsg = e_scroll;
8227 win_comp_scroll(curwin);
8229 /* If 'scroll' became invalid because of a side effect silently adjust
8230 * it. */
8231 else if (curwin->w_p_scr <= 0)
8232 curwin->w_p_scr = 1;
8233 else /* curwin->w_p_scr > curwin->w_height */
8234 curwin->w_p_scr = curwin->w_height;
8236 if (p_hi < 0)
8238 errmsg = e_positive;
8239 p_hi = 0;
8241 if (p_report < 0)
8243 errmsg = e_positive;
8244 p_report = 1;
8246 if ((p_sj < -100 || p_sj >= Rows) && full_screen)
8248 if (Rows != old_Rows) /* Rows changed, just adjust p_sj */
8249 p_sj = Rows / 2;
8250 else
8252 errmsg = e_scroll;
8253 p_sj = 1;
8256 if (p_so < 0 && full_screen)
8258 errmsg = e_scroll;
8259 p_so = 0;
8261 if (p_siso < 0 && full_screen)
8263 errmsg = e_positive;
8264 p_siso = 0;
8266 #ifdef FEAT_CMDWIN
8267 if (p_cwh < 1)
8269 errmsg = e_positive;
8270 p_cwh = 1;
8272 #endif
8273 if (p_ut < 0)
8275 errmsg = e_positive;
8276 p_ut = 2000;
8278 if (p_ss < 0)
8280 errmsg = e_positive;
8281 p_ss = 0;
8284 /* May set global value for local option. */
8285 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0)
8286 *(long *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) = *pp;
8288 options[opt_idx].flags |= P_WAS_SET;
8290 comp_col(); /* in case 'columns' or 'ls' changed */
8291 if (curwin->w_curswant != MAXCOL)
8292 curwin->w_set_curswant = TRUE; /* in case 'tabstop' changed */
8293 check_redraw(options[opt_idx].flags);
8295 return errmsg;
8299 * Called after an option changed: check if something needs to be redrawn.
8301 static void
8302 check_redraw(flags)
8303 long_u flags;
8305 /* Careful: P_RCLR and P_RALL are a combination of other P_ flags */
8306 int clear = (flags & P_RCLR) == P_RCLR;
8307 int all = ((flags & P_RALL) == P_RALL || clear);
8309 #ifdef FEAT_WINDOWS
8310 if ((flags & P_RSTAT) || all) /* mark all status lines dirty */
8311 status_redraw_all();
8312 #endif
8314 if ((flags & P_RBUF) || (flags & P_RWIN) || all)
8315 changed_window_setting();
8316 if (flags & P_RBUF)
8317 redraw_curbuf_later(NOT_VALID);
8318 if (clear)
8319 redraw_all_later(CLEAR);
8320 else if (all)
8321 redraw_all_later(NOT_VALID);
8325 * Find index for option 'arg'.
8326 * Return -1 if not found.
8328 static int
8329 findoption(arg)
8330 char_u *arg;
8332 int opt_idx;
8333 char *s, *p;
8334 static short quick_tab[27] = {0, 0}; /* quick access table */
8335 int is_term_opt;
8338 * For first call: Initialize the quick-access table.
8339 * It contains the index for the first option that starts with a certain
8340 * letter. There are 26 letters, plus the first "t_" option.
8342 if (quick_tab[1] == 0)
8344 p = options[0].fullname;
8345 for (opt_idx = 1; (s = options[opt_idx].fullname) != NULL; opt_idx++)
8347 if (s[0] != p[0])
8349 if (s[0] == 't' && s[1] == '_')
8350 quick_tab[26] = opt_idx;
8351 else
8352 quick_tab[CharOrdLow(s[0])] = opt_idx;
8354 p = s;
8359 * Check for name starting with an illegal character.
8361 #ifdef EBCDIC
8362 if (!islower(arg[0]))
8363 #else
8364 if (arg[0] < 'a' || arg[0] > 'z')
8365 #endif
8366 return -1;
8368 is_term_opt = (arg[0] == 't' && arg[1] == '_');
8369 if (is_term_opt)
8370 opt_idx = quick_tab[26];
8371 else
8372 opt_idx = quick_tab[CharOrdLow(arg[0])];
8373 for ( ; (s = options[opt_idx].fullname) != NULL; opt_idx++)
8375 if (STRCMP(arg, s) == 0) /* match full name */
8376 break;
8378 if (s == NULL && !is_term_opt)
8380 opt_idx = quick_tab[CharOrdLow(arg[0])];
8381 for ( ; options[opt_idx].fullname != NULL; opt_idx++)
8383 s = options[opt_idx].shortname;
8384 if (s != NULL && STRCMP(arg, s) == 0) /* match short name */
8385 break;
8386 s = NULL;
8389 if (s == NULL)
8390 opt_idx = -1;
8391 return opt_idx;
8394 #if defined(FEAT_EVAL) || defined(FEAT_TCL) || defined(FEAT_MZSCHEME)
8396 * Get the value for an option.
8398 * Returns:
8399 * Number or Toggle option: 1, *numval gets value.
8400 * String option: 0, *stringval gets allocated string.
8401 * Hidden Number or Toggle option: -1.
8402 * hidden String option: -2.
8403 * unknown option: -3.
8406 get_option_value(name, numval, stringval, opt_flags)
8407 char_u *name;
8408 long *numval;
8409 char_u **stringval; /* NULL when only checking existance */
8410 int opt_flags;
8412 int opt_idx;
8413 char_u *varp;
8415 opt_idx = findoption(name);
8416 if (opt_idx < 0) /* unknown option */
8417 return -3;
8419 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
8421 if (options[opt_idx].flags & P_STRING)
8423 if (varp == NULL) /* hidden option */
8424 return -2;
8425 if (stringval != NULL)
8427 #ifdef FEAT_CRYPT
8428 /* never return the value of the crypt key */
8429 if ((char_u **)varp == &curbuf->b_p_key
8430 && **(char_u **)(varp) != NUL)
8431 *stringval = vim_strsave((char_u *)"*****");
8432 else
8433 #endif
8434 *stringval = vim_strsave(*(char_u **)(varp));
8436 return 0;
8439 if (varp == NULL) /* hidden option */
8440 return -1;
8441 if (options[opt_idx].flags & P_NUM)
8442 *numval = *(long *)varp;
8443 else
8445 /* Special case: 'modified' is b_changed, but we also want to consider
8446 * it set when 'ff' or 'fenc' changed. */
8447 if ((int *)varp == &curbuf->b_changed)
8448 *numval = curbufIsChanged();
8449 else
8450 *numval = *(int *)varp;
8452 return 1;
8454 #endif
8457 * Set the value of option "name".
8458 * Use "string" for string options, use "number" for other options.
8460 void
8461 set_option_value(name, number, string, opt_flags)
8462 char_u *name;
8463 long number;
8464 char_u *string;
8465 int opt_flags; /* OPT_LOCAL or 0 (both) */
8467 int opt_idx;
8468 char_u *varp;
8469 long_u flags;
8471 opt_idx = findoption(name);
8472 if (opt_idx < 0)
8473 EMSG2(_("E355: Unknown option: %s"), name);
8474 else
8476 flags = options[opt_idx].flags;
8477 #ifdef HAVE_SANDBOX
8478 /* Disallow changing some options in the sandbox */
8479 if (sandbox > 0 && (flags & P_SECURE))
8481 EMSG(_(e_sandbox));
8482 return;
8484 #endif
8485 if (flags & P_STRING)
8486 set_string_option(opt_idx, string, opt_flags);
8487 else
8489 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
8490 if (varp != NULL) /* hidden option is not changed */
8492 if (number == 0 && string != NULL)
8494 int idx;
8496 /* Either we are given a string or we are setting option
8497 * to zero. */
8498 for (idx = 0; string[idx] == '0'; ++idx)
8500 if (string[idx] != NUL || idx == 0)
8502 /* There's another character after zeros or the string
8503 * is empty. In both cases, we are trying to set a
8504 * num option using a string. */
8505 EMSG3(_("E521: Number required: &%s = '%s'"),
8506 name, string);
8507 return; /* do nothing as we hit an error */
8511 if (flags & P_NUM)
8512 (void)set_num_option(opt_idx, varp, number,
8513 NULL, 0, opt_flags);
8514 else
8515 (void)set_bool_option(opt_idx, varp, (int)number,
8516 opt_flags);
8523 * Get the terminal code for a terminal option.
8524 * Returns NULL when not found.
8526 char_u *
8527 get_term_code(tname)
8528 char_u *tname;
8530 int opt_idx;
8531 char_u *varp;
8533 if (tname[0] != 't' || tname[1] != '_' ||
8534 tname[2] == NUL || tname[3] == NUL)
8535 return NULL;
8536 if ((opt_idx = findoption(tname)) >= 0)
8538 varp = get_varp(&(options[opt_idx]));
8539 if (varp != NULL)
8540 varp = *(char_u **)(varp);
8541 return varp;
8543 return find_termcode(tname + 2);
8546 char_u *
8547 get_highlight_default()
8549 int i;
8551 i = findoption((char_u *)"hl");
8552 if (i >= 0)
8553 return options[i].def_val[VI_DEFAULT];
8554 return (char_u *)NULL;
8557 #if defined(FEAT_MBYTE) || defined(PROTO)
8558 char_u *
8559 get_encoding_default()
8561 int i;
8563 i = findoption((char_u *)"enc");
8564 if (i >= 0)
8565 return options[i].def_val[VI_DEFAULT];
8566 return (char_u *)NULL;
8568 #endif
8571 * Translate a string like "t_xx", "<t_xx>" or "<S-Tab>" to a key number.
8573 static int
8574 find_key_option(arg)
8575 char_u *arg;
8577 int key;
8578 int modifiers;
8581 * Don't use get_special_key_code() for t_xx, we don't want it to call
8582 * add_termcap_entry().
8584 if (arg[0] == 't' && arg[1] == '_' && arg[2] && arg[3])
8585 key = TERMCAP2KEY(arg[2], arg[3]);
8586 else
8588 --arg; /* put arg at the '<' */
8589 modifiers = 0;
8590 key = find_special_key(&arg, &modifiers, TRUE, TRUE);
8591 if (modifiers) /* can't handle modifiers here */
8592 key = 0;
8594 return key;
8598 * if 'all' == 0: show changed options
8599 * if 'all' == 1: show all normal options
8600 * if 'all' == 2: show all terminal options
8602 static void
8603 showoptions(all, opt_flags)
8604 int all;
8605 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
8607 struct vimoption *p;
8608 int col;
8609 int isterm;
8610 char_u *varp;
8611 struct vimoption **items;
8612 int item_count;
8613 int run;
8614 int row, rows;
8615 int cols;
8616 int i;
8617 int len;
8619 #define INC 20
8620 #define GAP 3
8622 items = (struct vimoption **)alloc((unsigned)(sizeof(struct vimoption *) *
8623 PARAM_COUNT));
8624 if (items == NULL)
8625 return;
8627 /* Highlight title */
8628 if (all == 2)
8629 MSG_PUTS_TITLE(_("\n--- Terminal codes ---"));
8630 else if (opt_flags & OPT_GLOBAL)
8631 MSG_PUTS_TITLE(_("\n--- Global option values ---"));
8632 else if (opt_flags & OPT_LOCAL)
8633 MSG_PUTS_TITLE(_("\n--- Local option values ---"));
8634 else
8635 MSG_PUTS_TITLE(_("\n--- Options ---"));
8638 * do the loop two times:
8639 * 1. display the short items
8640 * 2. display the long items (only strings and numbers)
8642 for (run = 1; run <= 2 && !got_int; ++run)
8645 * collect the items in items[]
8647 item_count = 0;
8648 for (p = &options[0]; p->fullname != NULL; p++)
8650 varp = NULL;
8651 isterm = istermoption(p);
8652 if (opt_flags != 0)
8654 if (p->indir != PV_NONE && !isterm)
8655 varp = get_varp_scope(p, opt_flags);
8657 else
8658 varp = get_varp(p);
8659 if (varp != NULL
8660 && ((all == 2 && isterm)
8661 || (all == 1 && !isterm)
8662 || (all == 0 && !optval_default(p, varp))))
8664 if (p->flags & P_BOOL)
8665 len = 1; /* a toggle option fits always */
8666 else
8668 option_value2string(p, opt_flags);
8669 len = (int)STRLEN(p->fullname) + vim_strsize(NameBuff) + 1;
8671 if ((len <= INC - GAP && run == 1) ||
8672 (len > INC - GAP && run == 2))
8673 items[item_count++] = p;
8678 * display the items
8680 if (run == 1)
8682 cols = (Columns + GAP - 3) / INC;
8683 if (cols == 0)
8684 cols = 1;
8685 rows = (item_count + cols - 1) / cols;
8687 else /* run == 2 */
8688 rows = item_count;
8689 for (row = 0; row < rows && !got_int; ++row)
8691 msg_putchar('\n'); /* go to next line */
8692 if (got_int) /* 'q' typed in more */
8693 break;
8694 col = 0;
8695 for (i = row; i < item_count; i += rows)
8697 msg_col = col; /* make columns */
8698 showoneopt(items[i], opt_flags);
8699 col += INC;
8701 out_flush();
8702 ui_breakcheck();
8705 vim_free(items);
8709 * Return TRUE if option "p" has its default value.
8711 static int
8712 optval_default(p, varp)
8713 struct vimoption *p;
8714 char_u *varp;
8716 int dvi;
8718 if (varp == NULL)
8719 return TRUE; /* hidden option is always at default */
8720 dvi = ((p->flags & P_VI_DEF) || p_cp) ? VI_DEFAULT : VIM_DEFAULT;
8721 if (p->flags & P_NUM)
8722 return (*(long *)varp == (long)(long_i)p->def_val[dvi]);
8723 if (p->flags & P_BOOL)
8724 /* the cast to long is required for Manx C, long_i is
8725 * needed for MSVC */
8726 return (*(int *)varp == (int)(long)(long_i)p->def_val[dvi]);
8727 /* P_STRING */
8728 return (STRCMP(*(char_u **)varp, p->def_val[dvi]) == 0);
8732 * showoneopt: show the value of one option
8733 * must not be called with a hidden option!
8735 static void
8736 showoneopt(p, opt_flags)
8737 struct vimoption *p;
8738 int opt_flags; /* OPT_LOCAL or OPT_GLOBAL */
8740 char_u *varp;
8741 int save_silent = silent_mode;
8743 silent_mode = FALSE;
8744 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
8746 varp = get_varp_scope(p, opt_flags);
8748 /* for 'modified' we also need to check if 'ff' or 'fenc' changed. */
8749 if ((p->flags & P_BOOL) && ((int *)varp == &curbuf->b_changed
8750 ? !curbufIsChanged() : !*(int *)varp))
8751 MSG_PUTS("no");
8752 else if ((p->flags & P_BOOL) && *(int *)varp < 0)
8753 MSG_PUTS("--");
8754 else
8755 MSG_PUTS(" ");
8756 MSG_PUTS(p->fullname);
8757 if (!(p->flags & P_BOOL))
8759 msg_putchar('=');
8760 /* put value string in NameBuff */
8761 option_value2string(p, opt_flags);
8762 msg_outtrans(NameBuff);
8765 silent_mode = save_silent;
8766 info_message = FALSE;
8770 * Write modified options as ":set" commands to a file.
8772 * There are three values for "opt_flags":
8773 * OPT_GLOBAL: Write global option values and fresh values of
8774 * buffer-local options (used for start of a session
8775 * file).
8776 * OPT_GLOBAL + OPT_LOCAL: Idem, add fresh values of window-local options for
8777 * curwin (used for a vimrc file).
8778 * OPT_LOCAL: Write buffer-local option values for curbuf, fresh
8779 * and local values for window-local options of
8780 * curwin. Local values are also written when at the
8781 * default value, because a modeline or autocommand
8782 * may have set them when doing ":edit file" and the
8783 * user has set them back at the default or fresh
8784 * value.
8785 * When "local_only" is TRUE, don't write fresh
8786 * values, only local values (for ":mkview").
8787 * (fresh value = value used for a new buffer or window for a local option).
8789 * Return FAIL on error, OK otherwise.
8792 makeset(fd, opt_flags, local_only)
8793 FILE *fd;
8794 int opt_flags;
8795 int local_only;
8797 struct vimoption *p;
8798 char_u *varp; /* currently used value */
8799 char_u *varp_fresh; /* local value */
8800 char_u *varp_local = NULL; /* fresh value */
8801 char *cmd;
8802 int round;
8803 int pri;
8806 * The options that don't have a default (terminal name, columns, lines)
8807 * are never written. Terminal options are also not written.
8808 * Do the loop over "options[]" twice: once for options with the
8809 * P_PRI_MKRC flag and once without.
8811 for (pri = 1; pri >= 0; --pri)
8813 for (p = &options[0]; !istermoption(p); p++)
8814 if (!(p->flags & P_NO_MKRC)
8815 && !istermoption(p)
8816 && ((pri == 1) == ((p->flags & P_PRI_MKRC) != 0)))
8818 /* skip global option when only doing locals */
8819 if (p->indir == PV_NONE && !(opt_flags & OPT_GLOBAL))
8820 continue;
8822 /* Do not store options like 'bufhidden' and 'syntax' in a vimrc
8823 * file, they are always buffer-specific. */
8824 if ((opt_flags & OPT_GLOBAL) && (p->flags & P_NOGLOB))
8825 continue;
8827 /* Global values are only written when not at the default value. */
8828 varp = get_varp_scope(p, opt_flags);
8829 if ((opt_flags & OPT_GLOBAL) && optval_default(p, varp))
8830 continue;
8832 round = 2;
8833 if (p->indir != PV_NONE)
8835 if (p->var == VAR_WIN)
8837 /* skip window-local option when only doing globals */
8838 if (!(opt_flags & OPT_LOCAL))
8839 continue;
8840 /* When fresh value of window-local option is not at the
8841 * default, need to write it too. */
8842 if (!(opt_flags & OPT_GLOBAL) && !local_only)
8844 varp_fresh = get_varp_scope(p, OPT_GLOBAL);
8845 if (!optval_default(p, varp_fresh))
8847 round = 1;
8848 varp_local = varp;
8849 varp = varp_fresh;
8855 /* Round 1: fresh value for window-local options.
8856 * Round 2: other values */
8857 for ( ; round <= 2; varp = varp_local, ++round)
8859 if (round == 1 || (opt_flags & OPT_GLOBAL))
8860 cmd = "set";
8861 else
8862 cmd = "setlocal";
8864 if (p->flags & P_BOOL)
8866 if (put_setbool(fd, cmd, p->fullname, *(int *)varp) == FAIL)
8867 return FAIL;
8869 else if (p->flags & P_NUM)
8871 if (put_setnum(fd, cmd, p->fullname, (long *)varp) == FAIL)
8872 return FAIL;
8874 else /* P_STRING */
8876 #if defined(FEAT_SYN_HL) || defined(FEAT_AUTOCMD)
8877 int do_endif = FALSE;
8879 /* Don't set 'syntax' and 'filetype' again if the value is
8880 * already right, avoids reloading the syntax file. */
8881 if (
8882 # if defined(FEAT_SYN_HL)
8883 p->indir == PV_SYN
8884 # if defined(FEAT_AUTOCMD)
8886 # endif
8887 # endif
8888 # if defined(FEAT_AUTOCMD)
8889 p->indir == PV_FT
8890 # endif
8893 if (fprintf(fd, "if &%s != '%s'", p->fullname,
8894 *(char_u **)(varp)) < 0
8895 || put_eol(fd) < 0)
8896 return FAIL;
8897 do_endif = TRUE;
8899 #endif
8900 if (put_setstring(fd, cmd, p->fullname, (char_u **)varp,
8901 (p->flags & P_EXPAND) != 0) == FAIL)
8902 return FAIL;
8903 #if defined(FEAT_SYN_HL) || defined(FEAT_AUTOCMD)
8904 if (do_endif)
8906 if (put_line(fd, "endif") == FAIL)
8907 return FAIL;
8909 #endif
8914 return OK;
8917 #if defined(FEAT_FOLDING) || defined(PROTO)
8919 * Generate set commands for the local fold options only. Used when
8920 * 'sessionoptions' or 'viewoptions' contains "folds" but not "options".
8923 makefoldset(fd)
8924 FILE *fd;
8926 if (put_setstring(fd, "setlocal", "fdm", &curwin->w_p_fdm, FALSE) == FAIL
8927 # ifdef FEAT_EVAL
8928 || put_setstring(fd, "setlocal", "fde", &curwin->w_p_fde, FALSE)
8929 == FAIL
8930 # endif
8931 || put_setstring(fd, "setlocal", "fmr", &curwin->w_p_fmr, FALSE)
8932 == FAIL
8933 || put_setstring(fd, "setlocal", "fdi", &curwin->w_p_fdi, FALSE)
8934 == FAIL
8935 || put_setnum(fd, "setlocal", "fdl", &curwin->w_p_fdl) == FAIL
8936 || put_setnum(fd, "setlocal", "fml", &curwin->w_p_fml) == FAIL
8937 || put_setnum(fd, "setlocal", "fdn", &curwin->w_p_fdn) == FAIL
8938 || put_setbool(fd, "setlocal", "fen", curwin->w_p_fen) == FAIL
8940 return FAIL;
8942 return OK;
8944 #endif
8946 static int
8947 put_setstring(fd, cmd, name, valuep, expand)
8948 FILE *fd;
8949 char *cmd;
8950 char *name;
8951 char_u **valuep;
8952 int expand;
8954 char_u *s;
8955 char_u buf[MAXPATHL];
8957 if (fprintf(fd, "%s %s=", cmd, name) < 0)
8958 return FAIL;
8959 if (*valuep != NULL)
8961 /* Output 'pastetoggle' as key names. For other
8962 * options some characters have to be escaped with
8963 * CTRL-V or backslash */
8964 if (valuep == &p_pt)
8966 s = *valuep;
8967 while (*s != NUL)
8968 if (put_escstr(fd, str2special(&s, FALSE), 2) == FAIL)
8969 return FAIL;
8971 else if (expand)
8973 home_replace(NULL, *valuep, buf, MAXPATHL, FALSE);
8974 if (put_escstr(fd, buf, 2) == FAIL)
8975 return FAIL;
8977 else if (put_escstr(fd, *valuep, 2) == FAIL)
8978 return FAIL;
8980 if (put_eol(fd) < 0)
8981 return FAIL;
8982 return OK;
8985 static int
8986 put_setnum(fd, cmd, name, valuep)
8987 FILE *fd;
8988 char *cmd;
8989 char *name;
8990 long *valuep;
8992 long wc;
8994 if (fprintf(fd, "%s %s=", cmd, name) < 0)
8995 return FAIL;
8996 if (wc_use_keyname((char_u *)valuep, &wc))
8998 /* print 'wildchar' and 'wildcharm' as a key name */
8999 if (fputs((char *)get_special_key_name((int)wc, 0), fd) < 0)
9000 return FAIL;
9002 else if (fprintf(fd, "%ld", *valuep) < 0)
9003 return FAIL;
9004 if (put_eol(fd) < 0)
9005 return FAIL;
9006 return OK;
9009 static int
9010 put_setbool(fd, cmd, name, value)
9011 FILE *fd;
9012 char *cmd;
9013 char *name;
9014 int value;
9016 if (value < 0) /* global/local option using global value */
9017 return OK;
9018 if (fprintf(fd, "%s %s%s", cmd, value ? "" : "no", name) < 0
9019 || put_eol(fd) < 0)
9020 return FAIL;
9021 return OK;
9025 * Clear all the terminal options.
9026 * If the option has been allocated, free the memory.
9027 * Terminal options are never hidden or indirect.
9029 void
9030 clear_termoptions()
9033 * Reset a few things before clearing the old options. This may cause
9034 * outputting a few things that the terminal doesn't understand, but the
9035 * screen will be cleared later, so this is OK.
9037 #ifdef FEAT_MOUSE_TTY
9038 mch_setmouse(FALSE); /* switch mouse off */
9039 #endif
9040 #ifdef FEAT_TITLE
9041 mch_restore_title(3); /* restore window titles */
9042 #endif
9043 #if defined(FEAT_XCLIPBOARD) && defined(FEAT_GUI)
9044 /* When starting the GUI close the display opened for the clipboard.
9045 * After restoring the title, because that will need the display. */
9046 if (gui.starting)
9047 clear_xterm_clip();
9048 #endif
9049 #ifdef WIN3264
9051 * Check if this is allowed now.
9053 if (can_end_termcap_mode(FALSE) == TRUE)
9054 #endif
9055 stoptermcap(); /* stop termcap mode */
9057 free_termoptions();
9060 void
9061 free_termoptions()
9063 struct vimoption *p;
9065 for (p = &options[0]; p->fullname != NULL; p++)
9066 if (istermoption(p))
9068 if (p->flags & P_ALLOCED)
9069 free_string_option(*(char_u **)(p->var));
9070 if (p->flags & P_DEF_ALLOCED)
9071 free_string_option(p->def_val[VI_DEFAULT]);
9072 *(char_u **)(p->var) = empty_option;
9073 p->def_val[VI_DEFAULT] = empty_option;
9074 p->flags &= ~(P_ALLOCED|P_DEF_ALLOCED);
9076 clear_termcodes();
9080 * Free the string for one term option, if it was allocated.
9081 * Set the string to empty_option and clear allocated flag.
9082 * "var" points to the option value.
9084 void
9085 free_one_termoption(var)
9086 char_u *var;
9088 struct vimoption *p;
9090 for (p = &options[0]; p->fullname != NULL; p++)
9091 if (p->var == var)
9093 if (p->flags & P_ALLOCED)
9094 free_string_option(*(char_u **)(p->var));
9095 *(char_u **)(p->var) = empty_option;
9096 p->flags &= ~P_ALLOCED;
9097 break;
9102 * Set the terminal option defaults to the current value.
9103 * Used after setting the terminal name.
9105 void
9106 set_term_defaults()
9108 struct vimoption *p;
9110 for (p = &options[0]; p->fullname != NULL; p++)
9112 if (istermoption(p) && p->def_val[VI_DEFAULT] != *(char_u **)(p->var))
9114 if (p->flags & P_DEF_ALLOCED)
9116 free_string_option(p->def_val[VI_DEFAULT]);
9117 p->flags &= ~P_DEF_ALLOCED;
9119 p->def_val[VI_DEFAULT] = *(char_u **)(p->var);
9120 if (p->flags & P_ALLOCED)
9122 p->flags |= P_DEF_ALLOCED;
9123 p->flags &= ~P_ALLOCED; /* don't free the value now */
9130 * return TRUE if 'p' starts with 't_'
9132 static int
9133 istermoption(p)
9134 struct vimoption *p;
9136 return (p->fullname[0] == 't' && p->fullname[1] == '_');
9140 * Compute columns for ruler and shown command. 'sc_col' is also used to
9141 * decide what the maximum length of a message on the status line can be.
9142 * If there is a status line for the last window, 'sc_col' is independent
9143 * of 'ru_col'.
9146 #define COL_RULER 17 /* columns needed by standard ruler */
9148 void
9149 comp_col()
9151 #if defined(FEAT_CMDL_INFO) && defined(FEAT_WINDOWS)
9152 int last_has_status = (p_ls == 2 || (p_ls == 1 && firstwin != lastwin));
9154 sc_col = 0;
9155 ru_col = 0;
9156 if (p_ru)
9158 #ifdef FEAT_STL_OPT
9159 ru_col = (ru_wid ? ru_wid : COL_RULER) + 1;
9160 #else
9161 ru_col = COL_RULER + 1;
9162 #endif
9163 /* no last status line, adjust sc_col */
9164 if (!last_has_status)
9165 sc_col = ru_col;
9167 if (p_sc)
9169 sc_col += SHOWCMD_COLS;
9170 if (!p_ru || last_has_status) /* no need for separating space */
9171 ++sc_col;
9173 sc_col = Columns - sc_col;
9174 ru_col = Columns - ru_col;
9175 if (sc_col <= 0) /* screen too narrow, will become a mess */
9176 sc_col = 1;
9177 if (ru_col <= 0)
9178 ru_col = 1;
9179 #else
9180 sc_col = Columns;
9181 ru_col = Columns;
9182 #endif
9186 * Get pointer to option variable, depending on local or global scope.
9188 static char_u *
9189 get_varp_scope(p, opt_flags)
9190 struct vimoption *p;
9191 int opt_flags;
9193 if ((opt_flags & OPT_GLOBAL) && p->indir != PV_NONE)
9195 if (p->var == VAR_WIN)
9196 return (char_u *)GLOBAL_WO(get_varp(p));
9197 return p->var;
9199 if ((opt_flags & OPT_LOCAL) && ((int)p->indir & PV_BOTH))
9201 switch ((int)p->indir)
9203 #ifdef FEAT_QUICKFIX
9204 case PV_EFM: return (char_u *)&(curbuf->b_p_efm);
9205 case PV_GP: return (char_u *)&(curbuf->b_p_gp);
9206 case PV_MP: return (char_u *)&(curbuf->b_p_mp);
9207 #endif
9208 case PV_EP: return (char_u *)&(curbuf->b_p_ep);
9209 case PV_KP: return (char_u *)&(curbuf->b_p_kp);
9210 case PV_PATH: return (char_u *)&(curbuf->b_p_path);
9211 case PV_AR: return (char_u *)&(curbuf->b_p_ar);
9212 case PV_TAGS: return (char_u *)&(curbuf->b_p_tags);
9213 #ifdef FEAT_FIND_ID
9214 case PV_DEF: return (char_u *)&(curbuf->b_p_def);
9215 case PV_INC: return (char_u *)&(curbuf->b_p_inc);
9216 #endif
9217 #ifdef FEAT_INS_EXPAND
9218 case PV_DICT: return (char_u *)&(curbuf->b_p_dict);
9219 case PV_TSR: return (char_u *)&(curbuf->b_p_tsr);
9220 #endif
9221 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9222 case PV_BEXPR: return (char_u *)&(curbuf->b_p_bexpr);
9223 #endif
9224 #ifdef FEAT_STL_OPT
9225 case PV_STL: return (char_u *)&(curwin->w_p_stl);
9226 #endif
9228 return NULL; /* "cannot happen" */
9230 return get_varp(p);
9234 * Get pointer to option variable.
9236 static char_u *
9237 get_varp(p)
9238 struct vimoption *p;
9240 /* hidden option, always return NULL */
9241 if (p->var == NULL)
9242 return NULL;
9244 switch ((int)p->indir)
9246 case PV_NONE: return p->var;
9248 /* global option with local value: use local value if it's been set */
9249 case PV_EP: return *curbuf->b_p_ep != NUL
9250 ? (char_u *)&curbuf->b_p_ep : p->var;
9251 case PV_KP: return *curbuf->b_p_kp != NUL
9252 ? (char_u *)&curbuf->b_p_kp : p->var;
9253 case PV_PATH: return *curbuf->b_p_path != NUL
9254 ? (char_u *)&(curbuf->b_p_path) : p->var;
9255 case PV_AR: return curbuf->b_p_ar >= 0
9256 ? (char_u *)&(curbuf->b_p_ar) : p->var;
9257 case PV_TAGS: return *curbuf->b_p_tags != NUL
9258 ? (char_u *)&(curbuf->b_p_tags) : p->var;
9259 #ifdef FEAT_FIND_ID
9260 case PV_DEF: return *curbuf->b_p_def != NUL
9261 ? (char_u *)&(curbuf->b_p_def) : p->var;
9262 case PV_INC: return *curbuf->b_p_inc != NUL
9263 ? (char_u *)&(curbuf->b_p_inc) : p->var;
9264 #endif
9265 #ifdef FEAT_INS_EXPAND
9266 case PV_DICT: return *curbuf->b_p_dict != NUL
9267 ? (char_u *)&(curbuf->b_p_dict) : p->var;
9268 case PV_TSR: return *curbuf->b_p_tsr != NUL
9269 ? (char_u *)&(curbuf->b_p_tsr) : p->var;
9270 #endif
9271 #ifdef FEAT_QUICKFIX
9272 case PV_EFM: return *curbuf->b_p_efm != NUL
9273 ? (char_u *)&(curbuf->b_p_efm) : p->var;
9274 case PV_GP: return *curbuf->b_p_gp != NUL
9275 ? (char_u *)&(curbuf->b_p_gp) : p->var;
9276 case PV_MP: return *curbuf->b_p_mp != NUL
9277 ? (char_u *)&(curbuf->b_p_mp) : p->var;
9278 #endif
9279 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9280 case PV_BEXPR: return *curbuf->b_p_bexpr != NUL
9281 ? (char_u *)&(curbuf->b_p_bexpr) : p->var;
9282 #endif
9283 #ifdef FEAT_STL_OPT
9284 case PV_STL: return *curwin->w_p_stl != NUL
9285 ? (char_u *)&(curwin->w_p_stl) : p->var;
9286 #endif
9288 #ifdef FEAT_ARABIC
9289 case PV_ARAB: return (char_u *)&(curwin->w_p_arab);
9290 #endif
9291 case PV_LIST: return (char_u *)&(curwin->w_p_list);
9292 #ifdef FEAT_SPELL
9293 case PV_SPELL: return (char_u *)&(curwin->w_p_spell);
9294 #endif
9295 #ifdef FEAT_SYN_HL
9296 case PV_CUC: return (char_u *)&(curwin->w_p_cuc);
9297 case PV_CUL: return (char_u *)&(curwin->w_p_cul);
9298 #endif
9299 #ifdef FEAT_DIFF
9300 case PV_DIFF: return (char_u *)&(curwin->w_p_diff);
9301 #endif
9302 #ifdef FEAT_FOLDING
9303 case PV_FDC: return (char_u *)&(curwin->w_p_fdc);
9304 case PV_FEN: return (char_u *)&(curwin->w_p_fen);
9305 case PV_FDI: return (char_u *)&(curwin->w_p_fdi);
9306 case PV_FDL: return (char_u *)&(curwin->w_p_fdl);
9307 case PV_FDM: return (char_u *)&(curwin->w_p_fdm);
9308 case PV_FML: return (char_u *)&(curwin->w_p_fml);
9309 case PV_FDN: return (char_u *)&(curwin->w_p_fdn);
9310 # ifdef FEAT_EVAL
9311 case PV_FDE: return (char_u *)&(curwin->w_p_fde);
9312 case PV_FDT: return (char_u *)&(curwin->w_p_fdt);
9313 # endif
9314 case PV_FMR: return (char_u *)&(curwin->w_p_fmr);
9315 #endif
9316 case PV_NU: return (char_u *)&(curwin->w_p_nu);
9317 #ifdef FEAT_LINEBREAK
9318 case PV_NUW: return (char_u *)&(curwin->w_p_nuw);
9319 #endif
9320 #ifdef FEAT_WINDOWS
9321 case PV_WFH: return (char_u *)&(curwin->w_p_wfh);
9322 #endif
9323 #ifdef FEAT_VERTSPLIT
9324 case PV_WFW: return (char_u *)&(curwin->w_p_wfw);
9325 #endif
9326 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
9327 case PV_PVW: return (char_u *)&(curwin->w_p_pvw);
9328 #endif
9329 #ifdef FEAT_RIGHTLEFT
9330 case PV_RL: return (char_u *)&(curwin->w_p_rl);
9331 case PV_RLC: return (char_u *)&(curwin->w_p_rlc);
9332 #endif
9333 case PV_SCROLL: return (char_u *)&(curwin->w_p_scr);
9334 case PV_WRAP: return (char_u *)&(curwin->w_p_wrap);
9335 #ifdef FEAT_LINEBREAK
9336 case PV_LBR: return (char_u *)&(curwin->w_p_lbr);
9337 #endif
9338 #ifdef FEAT_SCROLLBIND
9339 case PV_SCBIND: return (char_u *)&(curwin->w_p_scb);
9340 #endif
9342 case PV_AI: return (char_u *)&(curbuf->b_p_ai);
9343 case PV_BIN: return (char_u *)&(curbuf->b_p_bin);
9344 #ifdef FEAT_MBYTE
9345 case PV_BOMB: return (char_u *)&(curbuf->b_p_bomb);
9346 #endif
9347 #if defined(FEAT_QUICKFIX)
9348 case PV_BH: return (char_u *)&(curbuf->b_p_bh);
9349 case PV_BT: return (char_u *)&(curbuf->b_p_bt);
9350 #endif
9351 case PV_BL: return (char_u *)&(curbuf->b_p_bl);
9352 case PV_CI: return (char_u *)&(curbuf->b_p_ci);
9353 #ifdef FEAT_CINDENT
9354 case PV_CIN: return (char_u *)&(curbuf->b_p_cin);
9355 case PV_CINK: return (char_u *)&(curbuf->b_p_cink);
9356 case PV_CINO: return (char_u *)&(curbuf->b_p_cino);
9357 #endif
9358 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
9359 case PV_CINW: return (char_u *)&(curbuf->b_p_cinw);
9360 #endif
9361 #ifdef FEAT_COMMENTS
9362 case PV_COM: return (char_u *)&(curbuf->b_p_com);
9363 #endif
9364 #ifdef FEAT_FOLDING
9365 case PV_CMS: return (char_u *)&(curbuf->b_p_cms);
9366 #endif
9367 #ifdef FEAT_INS_EXPAND
9368 case PV_CPT: return (char_u *)&(curbuf->b_p_cpt);
9369 #endif
9370 #ifdef FEAT_COMPL_FUNC
9371 case PV_CFU: return (char_u *)&(curbuf->b_p_cfu);
9372 case PV_OFU: return (char_u *)&(curbuf->b_p_ofu);
9373 #endif
9374 case PV_EOL: return (char_u *)&(curbuf->b_p_eol);
9375 case PV_ET: return (char_u *)&(curbuf->b_p_et);
9376 #ifdef FEAT_MBYTE
9377 case PV_FENC: return (char_u *)&(curbuf->b_p_fenc);
9378 #endif
9379 case PV_FF: return (char_u *)&(curbuf->b_p_ff);
9380 #ifdef FEAT_AUTOCMD
9381 case PV_FT: return (char_u *)&(curbuf->b_p_ft);
9382 #endif
9383 case PV_FO: return (char_u *)&(curbuf->b_p_fo);
9384 case PV_FLP: return (char_u *)&(curbuf->b_p_flp);
9385 case PV_IMI: return (char_u *)&(curbuf->b_p_iminsert);
9386 case PV_IMS: return (char_u *)&(curbuf->b_p_imsearch);
9387 case PV_INF: return (char_u *)&(curbuf->b_p_inf);
9388 case PV_ISK: return (char_u *)&(curbuf->b_p_isk);
9389 #ifdef FEAT_FIND_ID
9390 # ifdef FEAT_EVAL
9391 case PV_INEX: return (char_u *)&(curbuf->b_p_inex);
9392 # endif
9393 #endif
9394 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
9395 case PV_INDE: return (char_u *)&(curbuf->b_p_inde);
9396 case PV_INDK: return (char_u *)&(curbuf->b_p_indk);
9397 #endif
9398 #ifdef FEAT_EVAL
9399 case PV_FEX: return (char_u *)&(curbuf->b_p_fex);
9400 #endif
9401 #ifdef FEAT_CRYPT
9402 case PV_KEY: return (char_u *)&(curbuf->b_p_key);
9403 #endif
9404 #ifdef FEAT_LISP
9405 case PV_LISP: return (char_u *)&(curbuf->b_p_lisp);
9406 #endif
9407 case PV_ML: return (char_u *)&(curbuf->b_p_ml);
9408 case PV_MPS: return (char_u *)&(curbuf->b_p_mps);
9409 #ifdef FEAT_GUI_MACVIM
9410 case PV_MMTA: return (char_u *)&(curbuf->b_p_mmta);
9411 #endif
9412 case PV_MA: return (char_u *)&(curbuf->b_p_ma);
9413 case PV_MOD: return (char_u *)&(curbuf->b_changed);
9414 case PV_NF: return (char_u *)&(curbuf->b_p_nf);
9415 #ifdef FEAT_OSFILETYPE
9416 case PV_OFT: return (char_u *)&(curbuf->b_p_oft);
9417 #endif
9418 case PV_PI: return (char_u *)&(curbuf->b_p_pi);
9419 #ifdef FEAT_TEXTOBJ
9420 case PV_QE: return (char_u *)&(curbuf->b_p_qe);
9421 #endif
9422 case PV_RO: return (char_u *)&(curbuf->b_p_ro);
9423 #ifdef FEAT_SMARTINDENT
9424 case PV_SI: return (char_u *)&(curbuf->b_p_si);
9425 #endif
9426 #ifndef SHORT_FNAME
9427 case PV_SN: return (char_u *)&(curbuf->b_p_sn);
9428 #endif
9429 case PV_STS: return (char_u *)&(curbuf->b_p_sts);
9430 #ifdef FEAT_SEARCHPATH
9431 case PV_SUA: return (char_u *)&(curbuf->b_p_sua);
9432 #endif
9433 case PV_SWF: return (char_u *)&(curbuf->b_p_swf);
9434 #ifdef FEAT_SYN_HL
9435 case PV_SMC: return (char_u *)&(curbuf->b_p_smc);
9436 case PV_SYN: return (char_u *)&(curbuf->b_p_syn);
9437 #endif
9438 #ifdef FEAT_SPELL
9439 case PV_SPC: return (char_u *)&(curbuf->b_p_spc);
9440 case PV_SPF: return (char_u *)&(curbuf->b_p_spf);
9441 case PV_SPL: return (char_u *)&(curbuf->b_p_spl);
9442 #endif
9443 case PV_SW: return (char_u *)&(curbuf->b_p_sw);
9444 case PV_TS: return (char_u *)&(curbuf->b_p_ts);
9445 case PV_TW: return (char_u *)&(curbuf->b_p_tw);
9446 case PV_TX: return (char_u *)&(curbuf->b_p_tx);
9447 case PV_WM: return (char_u *)&(curbuf->b_p_wm);
9448 #ifdef FEAT_KEYMAP
9449 case PV_KMAP: return (char_u *)&(curbuf->b_p_keymap);
9450 #endif
9451 default: EMSG(_("E356: get_varp ERROR"));
9453 /* always return a valid pointer to avoid a crash! */
9454 return (char_u *)&(curbuf->b_p_wm);
9458 * Get the value of 'equalprg', either the buffer-local one or the global one.
9460 char_u *
9461 get_equalprg()
9463 if (*curbuf->b_p_ep == NUL)
9464 return p_ep;
9465 return curbuf->b_p_ep;
9468 #if defined(FEAT_WINDOWS) || defined(PROTO)
9470 * Copy options from one window to another.
9471 * Used when splitting a window.
9473 void
9474 win_copy_options(wp_from, wp_to)
9475 win_T *wp_from;
9476 win_T *wp_to;
9478 copy_winopt(&wp_from->w_onebuf_opt, &wp_to->w_onebuf_opt);
9479 copy_winopt(&wp_from->w_allbuf_opt, &wp_to->w_allbuf_opt);
9480 # ifdef FEAT_RIGHTLEFT
9481 # ifdef FEAT_FKMAP
9482 /* Is this right? */
9483 wp_to->w_farsi = wp_from->w_farsi;
9484 # endif
9485 # endif
9487 #endif
9490 * Copy the options from one winopt_T to another.
9491 * Doesn't free the old option values in "to", use clear_winopt() for that.
9492 * The 'scroll' option is not copied, because it depends on the window height.
9493 * The 'previewwindow' option is reset, there can be only one preview window.
9495 void
9496 copy_winopt(from, to)
9497 winopt_T *from;
9498 winopt_T *to;
9500 #ifdef FEAT_ARABIC
9501 to->wo_arab = from->wo_arab;
9502 #endif
9503 to->wo_list = from->wo_list;
9504 to->wo_nu = from->wo_nu;
9505 #ifdef FEAT_LINEBREAK
9506 to->wo_nuw = from->wo_nuw;
9507 #endif
9508 #ifdef FEAT_RIGHTLEFT
9509 to->wo_rl = from->wo_rl;
9510 to->wo_rlc = vim_strsave(from->wo_rlc);
9511 #endif
9512 #ifdef FEAT_STL_OPT
9513 to->wo_stl = vim_strsave(from->wo_stl);
9514 #endif
9515 to->wo_wrap = from->wo_wrap;
9516 #ifdef FEAT_LINEBREAK
9517 to->wo_lbr = from->wo_lbr;
9518 #endif
9519 #ifdef FEAT_SCROLLBIND
9520 to->wo_scb = from->wo_scb;
9521 #endif
9522 #ifdef FEAT_SPELL
9523 to->wo_spell = from->wo_spell;
9524 #endif
9525 #ifdef FEAT_SYN_HL
9526 to->wo_cuc = from->wo_cuc;
9527 to->wo_cul = from->wo_cul;
9528 #endif
9529 #ifdef FEAT_DIFF
9530 to->wo_diff = from->wo_diff;
9531 #endif
9532 #ifdef FEAT_FOLDING
9533 to->wo_fdc = from->wo_fdc;
9534 to->wo_fen = from->wo_fen;
9535 to->wo_fdi = vim_strsave(from->wo_fdi);
9536 to->wo_fml = from->wo_fml;
9537 to->wo_fdl = from->wo_fdl;
9538 to->wo_fdm = vim_strsave(from->wo_fdm);
9539 to->wo_fdn = from->wo_fdn;
9540 # ifdef FEAT_EVAL
9541 to->wo_fde = vim_strsave(from->wo_fde);
9542 to->wo_fdt = vim_strsave(from->wo_fdt);
9543 # endif
9544 to->wo_fmr = vim_strsave(from->wo_fmr);
9545 #endif
9546 check_winopt(to); /* don't want NULL pointers */
9550 * Check string options in a window for a NULL value.
9552 void
9553 check_win_options(win)
9554 win_T *win;
9556 check_winopt(&win->w_onebuf_opt);
9557 check_winopt(&win->w_allbuf_opt);
9561 * Check for NULL pointers in a winopt_T and replace them with empty_option.
9563 void
9564 check_winopt(wop)
9565 winopt_T *wop UNUSED;
9567 #ifdef FEAT_FOLDING
9568 check_string_option(&wop->wo_fdi);
9569 check_string_option(&wop->wo_fdm);
9570 # ifdef FEAT_EVAL
9571 check_string_option(&wop->wo_fde);
9572 check_string_option(&wop->wo_fdt);
9573 # endif
9574 check_string_option(&wop->wo_fmr);
9575 #endif
9576 #ifdef FEAT_RIGHTLEFT
9577 check_string_option(&wop->wo_rlc);
9578 #endif
9579 #ifdef FEAT_STL_OPT
9580 check_string_option(&wop->wo_stl);
9581 #endif
9585 * Free the allocated memory inside a winopt_T.
9587 void
9588 clear_winopt(wop)
9589 winopt_T *wop UNUSED;
9591 #ifdef FEAT_FOLDING
9592 clear_string_option(&wop->wo_fdi);
9593 clear_string_option(&wop->wo_fdm);
9594 # ifdef FEAT_EVAL
9595 clear_string_option(&wop->wo_fde);
9596 clear_string_option(&wop->wo_fdt);
9597 # endif
9598 clear_string_option(&wop->wo_fmr);
9599 #endif
9600 #ifdef FEAT_RIGHTLEFT
9601 clear_string_option(&wop->wo_rlc);
9602 #endif
9603 #ifdef FEAT_STL_OPT
9604 clear_string_option(&wop->wo_stl);
9605 #endif
9609 * Copy global option values to local options for one buffer.
9610 * Used when creating a new buffer and sometimes when entering a buffer.
9611 * flags:
9612 * BCO_ENTER We will enter the buf buffer.
9613 * BCO_ALWAYS Always copy the options, but only set b_p_initialized when
9614 * appropriate.
9615 * BCO_NOHELP Don't copy the values to a help buffer.
9617 void
9618 buf_copy_options(buf, flags)
9619 buf_T *buf;
9620 int flags;
9622 int should_copy = TRUE;
9623 char_u *save_p_isk = NULL; /* init for GCC */
9624 int dont_do_help;
9625 int did_isk = FALSE;
9628 * Don't do anything of the buffer is invalid.
9630 if (buf == NULL || !buf_valid(buf))
9631 return;
9634 * Skip this when the option defaults have not been set yet. Happens when
9635 * main() allocates the first buffer.
9637 if (p_cpo != NULL)
9640 * Always copy when entering and 'cpo' contains 'S'.
9641 * Don't copy when already initialized.
9642 * Don't copy when 'cpo' contains 's' and not entering.
9643 * 'S' BCO_ENTER initialized 's' should_copy
9644 * yes yes X X TRUE
9645 * yes no yes X FALSE
9646 * no X yes X FALSE
9647 * X no no yes FALSE
9648 * X no no no TRUE
9649 * no yes no X TRUE
9651 if ((vim_strchr(p_cpo, CPO_BUFOPTGLOB) == NULL || !(flags & BCO_ENTER))
9652 && (buf->b_p_initialized
9653 || (!(flags & BCO_ENTER)
9654 && vim_strchr(p_cpo, CPO_BUFOPT) != NULL)))
9655 should_copy = FALSE;
9657 if (should_copy || (flags & BCO_ALWAYS))
9659 /* Don't copy the options specific to a help buffer when
9660 * BCO_NOHELP is given or the options were initialized already
9661 * (jumping back to a help file with CTRL-T or CTRL-O) */
9662 dont_do_help = ((flags & BCO_NOHELP) && buf->b_help)
9663 || buf->b_p_initialized;
9664 if (dont_do_help) /* don't free b_p_isk */
9666 save_p_isk = buf->b_p_isk;
9667 buf->b_p_isk = NULL;
9670 * Always free the allocated strings.
9671 * If not already initialized, set 'readonly' and copy 'fileformat'.
9673 if (!buf->b_p_initialized)
9675 free_buf_options(buf, TRUE);
9676 buf->b_p_ro = FALSE; /* don't copy readonly */
9677 buf->b_p_tx = p_tx;
9678 #ifdef FEAT_MBYTE
9679 buf->b_p_fenc = vim_strsave(p_fenc);
9680 #endif
9681 buf->b_p_ff = vim_strsave(p_ff);
9682 #if defined(FEAT_QUICKFIX)
9683 buf->b_p_bh = empty_option;
9684 buf->b_p_bt = empty_option;
9685 #endif
9687 else
9688 free_buf_options(buf, FALSE);
9690 buf->b_p_ai = p_ai;
9691 buf->b_p_ai_nopaste = p_ai_nopaste;
9692 buf->b_p_sw = p_sw;
9693 buf->b_p_tw = p_tw;
9694 buf->b_p_tw_nopaste = p_tw_nopaste;
9695 buf->b_p_tw_nobin = p_tw_nobin;
9696 buf->b_p_wm = p_wm;
9697 buf->b_p_wm_nopaste = p_wm_nopaste;
9698 buf->b_p_wm_nobin = p_wm_nobin;
9699 buf->b_p_bin = p_bin;
9700 #ifdef FEAT_MBYTE
9701 buf->b_p_bomb = p_bomb;
9702 #endif
9703 buf->b_p_et = p_et;
9704 buf->b_p_et_nobin = p_et_nobin;
9705 buf->b_p_ml = p_ml;
9706 buf->b_p_ml_nobin = p_ml_nobin;
9707 buf->b_p_inf = p_inf;
9708 buf->b_p_swf = p_swf;
9709 #ifdef FEAT_INS_EXPAND
9710 buf->b_p_cpt = vim_strsave(p_cpt);
9711 #endif
9712 #ifdef FEAT_COMPL_FUNC
9713 buf->b_p_cfu = vim_strsave(p_cfu);
9714 buf->b_p_ofu = vim_strsave(p_ofu);
9715 #endif
9716 buf->b_p_sts = p_sts;
9717 buf->b_p_sts_nopaste = p_sts_nopaste;
9718 #ifndef SHORT_FNAME
9719 buf->b_p_sn = p_sn;
9720 #endif
9721 #ifdef FEAT_COMMENTS
9722 buf->b_p_com = vim_strsave(p_com);
9723 #endif
9724 #ifdef FEAT_FOLDING
9725 buf->b_p_cms = vim_strsave(p_cms);
9726 #endif
9727 buf->b_p_fo = vim_strsave(p_fo);
9728 buf->b_p_flp = vim_strsave(p_flp);
9729 buf->b_p_nf = vim_strsave(p_nf);
9730 buf->b_p_mps = vim_strsave(p_mps);
9731 #ifdef FEAT_SMARTINDENT
9732 buf->b_p_si = p_si;
9733 #endif
9734 buf->b_p_ci = p_ci;
9735 #ifdef FEAT_CINDENT
9736 buf->b_p_cin = p_cin;
9737 buf->b_p_cink = vim_strsave(p_cink);
9738 buf->b_p_cino = vim_strsave(p_cino);
9739 #endif
9740 #ifdef FEAT_AUTOCMD
9741 /* Don't copy 'filetype', it must be detected */
9742 buf->b_p_ft = empty_option;
9743 #endif
9744 #ifdef FEAT_OSFILETYPE
9745 buf->b_p_oft = vim_strsave(p_oft);
9746 #endif
9747 buf->b_p_pi = p_pi;
9748 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
9749 buf->b_p_cinw = vim_strsave(p_cinw);
9750 #endif
9751 #ifdef FEAT_LISP
9752 buf->b_p_lisp = p_lisp;
9753 #endif
9754 #ifdef FEAT_SYN_HL
9755 /* Don't copy 'syntax', it must be set */
9756 buf->b_p_syn = empty_option;
9757 buf->b_p_smc = p_smc;
9758 #endif
9759 #ifdef FEAT_SPELL
9760 buf->b_p_spc = vim_strsave(p_spc);
9761 (void)compile_cap_prog(buf);
9762 buf->b_p_spf = vim_strsave(p_spf);
9763 buf->b_p_spl = vim_strsave(p_spl);
9764 #endif
9765 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
9766 buf->b_p_inde = vim_strsave(p_inde);
9767 buf->b_p_indk = vim_strsave(p_indk);
9768 #endif
9769 #if defined(FEAT_EVAL)
9770 buf->b_p_fex = vim_strsave(p_fex);
9771 #endif
9772 #ifdef FEAT_CRYPT
9773 buf->b_p_key = vim_strsave(p_key);
9774 #endif
9775 #ifdef FEAT_SEARCHPATH
9776 buf->b_p_sua = vim_strsave(p_sua);
9777 #endif
9778 #ifdef FEAT_KEYMAP
9779 buf->b_p_keymap = vim_strsave(p_keymap);
9780 buf->b_kmap_state |= KEYMAP_INIT;
9781 #endif
9782 #ifdef FEAT_GUI_MACVIM
9783 buf->b_p_mmta = p_mmta;
9784 #endif
9785 /* This isn't really an option, but copying the langmap and IME
9786 * state from the current buffer is better than resetting it. */
9787 buf->b_p_iminsert = p_iminsert;
9788 buf->b_p_imsearch = p_imsearch;
9790 /* options that are normally global but also have a local value
9791 * are not copied, start using the global value */
9792 buf->b_p_ar = -1;
9793 #ifdef FEAT_QUICKFIX
9794 buf->b_p_gp = empty_option;
9795 buf->b_p_mp = empty_option;
9796 buf->b_p_efm = empty_option;
9797 #endif
9798 buf->b_p_ep = empty_option;
9799 buf->b_p_kp = empty_option;
9800 buf->b_p_path = empty_option;
9801 buf->b_p_tags = empty_option;
9802 #ifdef FEAT_FIND_ID
9803 buf->b_p_def = empty_option;
9804 buf->b_p_inc = empty_option;
9805 # ifdef FEAT_EVAL
9806 buf->b_p_inex = vim_strsave(p_inex);
9807 # endif
9808 #endif
9809 #ifdef FEAT_INS_EXPAND
9810 buf->b_p_dict = empty_option;
9811 buf->b_p_tsr = empty_option;
9812 #endif
9813 #ifdef FEAT_TEXTOBJ
9814 buf->b_p_qe = vim_strsave(p_qe);
9815 #endif
9816 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9817 buf->b_p_bexpr = empty_option;
9818 #endif
9821 * Don't copy the options set by ex_help(), use the saved values,
9822 * when going from a help buffer to a non-help buffer.
9823 * Don't touch these at all when BCO_NOHELP is used and going from
9824 * or to a help buffer.
9826 if (dont_do_help)
9827 buf->b_p_isk = save_p_isk;
9828 else
9830 buf->b_p_isk = vim_strsave(p_isk);
9831 did_isk = TRUE;
9832 buf->b_p_ts = p_ts;
9833 buf->b_help = FALSE;
9834 #ifdef FEAT_QUICKFIX
9835 if (buf->b_p_bt[0] == 'h')
9836 clear_string_option(&buf->b_p_bt);
9837 #endif
9838 buf->b_p_ma = p_ma;
9843 * When the options should be copied (ignoring BCO_ALWAYS), set the
9844 * flag that indicates that the options have been initialized.
9846 if (should_copy)
9847 buf->b_p_initialized = TRUE;
9850 check_buf_options(buf); /* make sure we don't have NULLs */
9851 if (did_isk)
9852 (void)buf_init_chartab(buf, FALSE);
9856 * Reset the 'modifiable' option and its default value.
9858 void
9859 reset_modifiable()
9861 int opt_idx;
9863 curbuf->b_p_ma = FALSE;
9864 p_ma = FALSE;
9865 opt_idx = findoption((char_u *)"ma");
9866 if (opt_idx >= 0)
9867 options[opt_idx].def_val[VI_DEFAULT] = FALSE;
9871 * Set the global value for 'iminsert' to the local value.
9873 void
9874 set_iminsert_global()
9876 p_iminsert = curbuf->b_p_iminsert;
9880 * Set the global value for 'imsearch' to the local value.
9882 void
9883 set_imsearch_global()
9885 p_imsearch = curbuf->b_p_imsearch;
9888 #if defined(FEAT_CMDL_COMPL) || defined(PROTO)
9889 static int expand_option_idx = -1;
9890 static char_u expand_option_name[5] = {'t', '_', NUL, NUL, NUL};
9891 static int expand_option_flags = 0;
9893 void
9894 set_context_in_set_cmd(xp, arg, opt_flags)
9895 expand_T *xp;
9896 char_u *arg;
9897 int opt_flags; /* OPT_GLOBAL and/or OPT_LOCAL */
9899 int nextchar;
9900 long_u flags = 0; /* init for GCC */
9901 int opt_idx = 0; /* init for GCC */
9902 char_u *p;
9903 char_u *s;
9904 int is_term_option = FALSE;
9905 int key;
9907 expand_option_flags = opt_flags;
9909 xp->xp_context = EXPAND_SETTINGS;
9910 if (*arg == NUL)
9912 xp->xp_pattern = arg;
9913 return;
9915 p = arg + STRLEN(arg) - 1;
9916 if (*p == ' ' && *(p - 1) != '\\')
9918 xp->xp_pattern = p + 1;
9919 return;
9921 while (p > arg)
9923 s = p;
9924 /* count number of backslashes before ' ' or ',' */
9925 if (*p == ' ' || *p == ',')
9927 while (s > arg && *(s - 1) == '\\')
9928 --s;
9930 /* break at a space with an even number of backslashes */
9931 if (*p == ' ' && ((p - s) & 1) == 0)
9933 ++p;
9934 break;
9936 --p;
9938 if (STRNCMP(p, "no", 2) == 0 && STRNCMP(p, "novice", 6) != 0)
9940 xp->xp_context = EXPAND_BOOL_SETTINGS;
9941 p += 2;
9943 if (STRNCMP(p, "inv", 3) == 0)
9945 xp->xp_context = EXPAND_BOOL_SETTINGS;
9946 p += 3;
9948 xp->xp_pattern = arg = p;
9949 if (*arg == '<')
9951 while (*p != '>')
9952 if (*p++ == NUL) /* expand terminal option name */
9953 return;
9954 key = get_special_key_code(arg + 1);
9955 if (key == 0) /* unknown name */
9957 xp->xp_context = EXPAND_NOTHING;
9958 return;
9960 nextchar = *++p;
9961 is_term_option = TRUE;
9962 expand_option_name[2] = KEY2TERMCAP0(key);
9963 expand_option_name[3] = KEY2TERMCAP1(key);
9965 else
9967 if (p[0] == 't' && p[1] == '_')
9969 p += 2;
9970 if (*p != NUL)
9971 ++p;
9972 if (*p == NUL)
9973 return; /* expand option name */
9974 nextchar = *++p;
9975 is_term_option = TRUE;
9976 expand_option_name[2] = p[-2];
9977 expand_option_name[3] = p[-1];
9979 else
9981 /* Allow * wildcard */
9982 while (ASCII_ISALNUM(*p) || *p == '_' || *p == '*')
9983 p++;
9984 if (*p == NUL)
9985 return;
9986 nextchar = *p;
9987 *p = NUL;
9988 opt_idx = findoption(arg);
9989 *p = nextchar;
9990 if (opt_idx == -1 || options[opt_idx].var == NULL)
9992 xp->xp_context = EXPAND_NOTHING;
9993 return;
9995 flags = options[opt_idx].flags;
9996 if (flags & P_BOOL)
9998 xp->xp_context = EXPAND_NOTHING;
9999 return;
10003 /* handle "-=" and "+=" */
10004 if ((nextchar == '-' || nextchar == '+' || nextchar == '^') && p[1] == '=')
10006 ++p;
10007 nextchar = '=';
10009 if ((nextchar != '=' && nextchar != ':')
10010 || xp->xp_context == EXPAND_BOOL_SETTINGS)
10012 xp->xp_context = EXPAND_UNSUCCESSFUL;
10013 return;
10015 if (xp->xp_context != EXPAND_BOOL_SETTINGS && p[1] == NUL)
10017 xp->xp_context = EXPAND_OLD_SETTING;
10018 if (is_term_option)
10019 expand_option_idx = -1;
10020 else
10021 expand_option_idx = opt_idx;
10022 xp->xp_pattern = p + 1;
10023 return;
10025 xp->xp_context = EXPAND_NOTHING;
10026 if (is_term_option || (flags & P_NUM))
10027 return;
10029 xp->xp_pattern = p + 1;
10031 if (flags & P_EXPAND)
10033 p = options[opt_idx].var;
10034 if (p == (char_u *)&p_bdir
10035 || p == (char_u *)&p_dir
10036 || p == (char_u *)&p_path
10037 || p == (char_u *)&p_rtp
10038 #ifdef FEAT_SEARCHPATH
10039 || p == (char_u *)&p_cdpath
10040 #endif
10041 #ifdef FEAT_SESSION
10042 || p == (char_u *)&p_vdir
10043 #endif
10046 xp->xp_context = EXPAND_DIRECTORIES;
10047 if (p == (char_u *)&p_path
10048 #ifdef FEAT_SEARCHPATH
10049 || p == (char_u *)&p_cdpath
10050 #endif
10052 xp->xp_backslash = XP_BS_THREE;
10053 else
10054 xp->xp_backslash = XP_BS_ONE;
10056 else
10058 xp->xp_context = EXPAND_FILES;
10059 /* for 'tags' need three backslashes for a space */
10060 if (p == (char_u *)&p_tags)
10061 xp->xp_backslash = XP_BS_THREE;
10062 else
10063 xp->xp_backslash = XP_BS_ONE;
10067 /* For an option that is a list of file names, find the start of the
10068 * last file name. */
10069 for (p = arg + STRLEN(arg) - 1; p > xp->xp_pattern; --p)
10071 /* count number of backslashes before ' ' or ',' */
10072 if (*p == ' ' || *p == ',')
10074 s = p;
10075 while (s > xp->xp_pattern && *(s - 1) == '\\')
10076 --s;
10077 if ((*p == ' ' && (xp->xp_backslash == XP_BS_THREE && (p - s) < 3))
10078 || (*p == ',' && (flags & P_COMMA) && ((p - s) & 1) == 0))
10080 xp->xp_pattern = p + 1;
10081 break;
10085 #ifdef FEAT_SPELL
10086 /* for 'spellsuggest' start at "file:" */
10087 if (options[opt_idx].var == (char_u *)&p_sps
10088 && STRNCMP(p, "file:", 5) == 0)
10090 xp->xp_pattern = p + 5;
10091 break;
10093 #endif
10096 return;
10100 ExpandSettings(xp, regmatch, num_file, file)
10101 expand_T *xp;
10102 regmatch_T *regmatch;
10103 int *num_file;
10104 char_u ***file;
10106 int num_normal = 0; /* Nr of matching non-term-code settings */
10107 int num_term = 0; /* Nr of matching terminal code settings */
10108 int opt_idx;
10109 int match;
10110 int count = 0;
10111 char_u *str;
10112 int loop;
10113 int is_term_opt;
10114 char_u name_buf[MAX_KEY_NAME_LEN];
10115 static char *(names[]) = {"all", "termcap"};
10116 int ic = regmatch->rm_ic; /* remember the ignore-case flag */
10118 /* do this loop twice:
10119 * loop == 0: count the number of matching options
10120 * loop == 1: copy the matching options into allocated memory
10122 for (loop = 0; loop <= 1; ++loop)
10124 regmatch->rm_ic = ic;
10125 if (xp->xp_context != EXPAND_BOOL_SETTINGS)
10127 for (match = 0; match < (int)(sizeof(names) / sizeof(char *));
10128 ++match)
10129 if (vim_regexec(regmatch, (char_u *)names[match], (colnr_T)0))
10131 if (loop == 0)
10132 num_normal++;
10133 else
10134 (*file)[count++] = vim_strsave((char_u *)names[match]);
10137 for (opt_idx = 0; (str = (char_u *)options[opt_idx].fullname) != NULL;
10138 opt_idx++)
10140 if (options[opt_idx].var == NULL)
10141 continue;
10142 if (xp->xp_context == EXPAND_BOOL_SETTINGS
10143 && !(options[opt_idx].flags & P_BOOL))
10144 continue;
10145 is_term_opt = istermoption(&options[opt_idx]);
10146 if (is_term_opt && num_normal > 0)
10147 continue;
10148 match = FALSE;
10149 if (vim_regexec(regmatch, str, (colnr_T)0)
10150 || (options[opt_idx].shortname != NULL
10151 && vim_regexec(regmatch,
10152 (char_u *)options[opt_idx].shortname, (colnr_T)0)))
10153 match = TRUE;
10154 else if (is_term_opt)
10156 name_buf[0] = '<';
10157 name_buf[1] = 't';
10158 name_buf[2] = '_';
10159 name_buf[3] = str[2];
10160 name_buf[4] = str[3];
10161 name_buf[5] = '>';
10162 name_buf[6] = NUL;
10163 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10165 match = TRUE;
10166 str = name_buf;
10169 if (match)
10171 if (loop == 0)
10173 if (is_term_opt)
10174 num_term++;
10175 else
10176 num_normal++;
10178 else
10179 (*file)[count++] = vim_strsave(str);
10183 * Check terminal key codes, these are not in the option table
10185 if (xp->xp_context != EXPAND_BOOL_SETTINGS && num_normal == 0)
10187 for (opt_idx = 0; (str = get_termcode(opt_idx)) != NULL; opt_idx++)
10189 if (!isprint(str[0]) || !isprint(str[1]))
10190 continue;
10192 name_buf[0] = 't';
10193 name_buf[1] = '_';
10194 name_buf[2] = str[0];
10195 name_buf[3] = str[1];
10196 name_buf[4] = NUL;
10198 match = FALSE;
10199 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10200 match = TRUE;
10201 else
10203 name_buf[0] = '<';
10204 name_buf[1] = 't';
10205 name_buf[2] = '_';
10206 name_buf[3] = str[0];
10207 name_buf[4] = str[1];
10208 name_buf[5] = '>';
10209 name_buf[6] = NUL;
10211 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10212 match = TRUE;
10214 if (match)
10216 if (loop == 0)
10217 num_term++;
10218 else
10219 (*file)[count++] = vim_strsave(name_buf);
10224 * Check special key names.
10226 regmatch->rm_ic = TRUE; /* ignore case here */
10227 for (opt_idx = 0; (str = get_key_name(opt_idx)) != NULL; opt_idx++)
10229 name_buf[0] = '<';
10230 STRCPY(name_buf + 1, str);
10231 STRCAT(name_buf, ">");
10233 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10235 if (loop == 0)
10236 num_term++;
10237 else
10238 (*file)[count++] = vim_strsave(name_buf);
10242 if (loop == 0)
10244 if (num_normal > 0)
10245 *num_file = num_normal;
10246 else if (num_term > 0)
10247 *num_file = num_term;
10248 else
10249 return OK;
10250 *file = (char_u **)alloc((unsigned)(*num_file * sizeof(char_u *)));
10251 if (*file == NULL)
10253 *file = (char_u **)"";
10254 return FAIL;
10258 return OK;
10262 ExpandOldSetting(num_file, file)
10263 int *num_file;
10264 char_u ***file;
10266 char_u *var = NULL; /* init for GCC */
10267 char_u *buf;
10269 *num_file = 0;
10270 *file = (char_u **)alloc((unsigned)sizeof(char_u *));
10271 if (*file == NULL)
10272 return FAIL;
10275 * For a terminal key code expand_option_idx is < 0.
10277 if (expand_option_idx < 0)
10279 var = find_termcode(expand_option_name + 2);
10280 if (var == NULL)
10281 expand_option_idx = findoption(expand_option_name);
10284 if (expand_option_idx >= 0)
10286 /* put string of option value in NameBuff */
10287 option_value2string(&options[expand_option_idx], expand_option_flags);
10288 var = NameBuff;
10290 else if (var == NULL)
10291 var = (char_u *)"";
10293 /* A backslash is required before some characters. This is the reverse of
10294 * what happens in do_set(). */
10295 buf = vim_strsave_escaped(var, escape_chars);
10297 if (buf == NULL)
10299 vim_free(*file);
10300 *file = NULL;
10301 return FAIL;
10304 #ifdef BACKSLASH_IN_FILENAME
10305 /* For MS-Windows et al. we don't double backslashes at the start and
10306 * before a file name character. */
10307 for (var = buf; *var != NUL; mb_ptr_adv(var))
10308 if (var[0] == '\\' && var[1] == '\\'
10309 && expand_option_idx >= 0
10310 && (options[expand_option_idx].flags & P_EXPAND)
10311 && vim_isfilec(var[2])
10312 && (var[2] != '\\' || (var == buf && var[4] != '\\')))
10313 STRMOVE(var, var + 1);
10314 #endif
10316 *file[0] = buf;
10317 *num_file = 1;
10318 return OK;
10320 #endif
10323 * Get the value for the numeric or string option *opp in a nice format into
10324 * NameBuff[]. Must not be called with a hidden option!
10326 static void
10327 option_value2string(opp, opt_flags)
10328 struct vimoption *opp;
10329 int opt_flags; /* OPT_GLOBAL and/or OPT_LOCAL */
10331 char_u *varp;
10333 varp = get_varp_scope(opp, opt_flags);
10335 if (opp->flags & P_NUM)
10337 long wc = 0;
10339 if (wc_use_keyname(varp, &wc))
10340 STRCPY(NameBuff, get_special_key_name((int)wc, 0));
10341 else if (wc != 0)
10342 STRCPY(NameBuff, transchar((int)wc));
10343 else
10344 sprintf((char *)NameBuff, "%ld", *(long *)varp);
10346 else /* P_STRING */
10348 varp = *(char_u **)(varp);
10349 if (varp == NULL) /* just in case */
10350 NameBuff[0] = NUL;
10351 #ifdef FEAT_CRYPT
10352 /* don't show the actual value of 'key', only that it's set */
10353 else if (opp->var == (char_u *)&p_key && *varp)
10354 STRCPY(NameBuff, "*****");
10355 #endif
10356 else if (opp->flags & P_EXPAND)
10357 home_replace(NULL, varp, NameBuff, MAXPATHL, FALSE);
10358 /* Translate 'pastetoggle' into special key names */
10359 else if ((char_u **)opp->var == &p_pt)
10360 str2specialbuf(p_pt, NameBuff, MAXPATHL);
10361 else
10362 vim_strncpy(NameBuff, varp, MAXPATHL - 1);
10367 * Return TRUE if "varp" points to 'wildchar' or 'wildcharm' and it can be
10368 * printed as a keyname.
10369 * "*wcp" is set to the value of the option if it's 'wildchar' or 'wildcharm'.
10371 static int
10372 wc_use_keyname(varp, wcp)
10373 char_u *varp;
10374 long *wcp;
10376 if (((long *)varp == &p_wc) || ((long *)varp == &p_wcm))
10378 *wcp = *(long *)varp;
10379 if (IS_SPECIAL(*wcp) || find_special_key_in_table((int)*wcp) >= 0)
10380 return TRUE;
10382 return FALSE;
10385 #ifdef FEAT_LANGMAP
10387 * Any character has an equivalent 'langmap' character. This is used for
10388 * keyboards that have a special language mode that sends characters above
10389 * 128 (although other characters can be translated too). The "to" field is a
10390 * Vim command character. This avoids having to switch the keyboard back to
10391 * ASCII mode when leaving Insert mode.
10393 * langmap_mapchar[] maps any of 256 chars to an ASCII char used for Vim
10394 * commands.
10395 * When FEAT_MBYTE is defined langmap_mapga.ga_data is a sorted table of
10396 * langmap_entry_T. This does the same as langmap_mapchar[] for characters >=
10397 * 256.
10399 # ifdef FEAT_MBYTE
10401 * With multi-byte support use growarray for 'langmap' chars >= 256
10403 typedef struct
10405 int from;
10406 int to;
10407 } langmap_entry_T;
10409 static garray_T langmap_mapga;
10410 static void langmap_set_entry __ARGS((int from, int to));
10413 * Search for an entry in "langmap_mapga" for "from". If found set the "to"
10414 * field. If not found insert a new entry at the appropriate location.
10416 static void
10417 langmap_set_entry(from, to)
10418 int from;
10419 int to;
10421 langmap_entry_T *entries = (langmap_entry_T *)(langmap_mapga.ga_data);
10422 int a = 0;
10423 int b = langmap_mapga.ga_len;
10425 /* Do a binary search for an existing entry. */
10426 while (a != b)
10428 int i = (a + b) / 2;
10429 int d = entries[i].from - from;
10431 if (d == 0)
10433 entries[i].to = to;
10434 return;
10436 if (d < 0)
10437 a = i + 1;
10438 else
10439 b = i;
10442 if (ga_grow(&langmap_mapga, 1) != OK)
10443 return; /* out of memory */
10445 /* insert new entry at position "a" */
10446 entries = (langmap_entry_T *)(langmap_mapga.ga_data) + a;
10447 mch_memmove(entries + 1, entries,
10448 (langmap_mapga.ga_len - a) * sizeof(langmap_entry_T));
10449 ++langmap_mapga.ga_len;
10450 entries[0].from = from;
10451 entries[0].to = to;
10455 * Apply 'langmap' to multi-byte character "c" and return the result.
10458 langmap_adjust_mb(c)
10459 int c;
10461 langmap_entry_T *entries = (langmap_entry_T *)(langmap_mapga.ga_data);
10462 int a = 0;
10463 int b = langmap_mapga.ga_len;
10465 while (a != b)
10467 int i = (a + b) / 2;
10468 int d = entries[i].from - c;
10470 if (d == 0)
10471 return entries[i].to; /* found matching entry */
10472 if (d < 0)
10473 a = i + 1;
10474 else
10475 b = i;
10477 return c; /* no entry found, return "c" unmodified */
10479 # endif
10481 static void
10482 langmap_init()
10484 int i;
10486 for (i = 0; i < 256; i++)
10487 langmap_mapchar[i] = i; /* we init with a one-to-one map */
10488 # ifdef FEAT_MBYTE
10489 ga_init2(&langmap_mapga, sizeof(langmap_entry_T), 8);
10490 # endif
10494 * Called when langmap option is set; the language map can be
10495 * changed at any time!
10497 static void
10498 langmap_set()
10500 char_u *p;
10501 char_u *p2;
10502 int from, to;
10504 #ifdef FEAT_MBYTE
10505 ga_clear(&langmap_mapga); /* clear the previous map first */
10506 #endif
10507 langmap_init(); /* back to one-to-one map */
10509 for (p = p_langmap; p[0] != NUL; )
10511 for (p2 = p; p2[0] != NUL && p2[0] != ',' && p2[0] != ';';
10512 mb_ptr_adv(p2))
10514 if (p2[0] == '\\' && p2[1] != NUL)
10515 ++p2;
10517 if (p2[0] == ';')
10518 ++p2; /* abcd;ABCD form, p2 points to A */
10519 else
10520 p2 = NULL; /* aAbBcCdD form, p2 is NULL */
10521 while (p[0])
10523 if (p[0] == '\\' && p[1] != NUL)
10524 ++p;
10525 #ifdef FEAT_MBYTE
10526 from = (*mb_ptr2char)(p);
10527 #else
10528 from = p[0];
10529 #endif
10530 if (p2 == NULL)
10532 mb_ptr_adv(p);
10533 if (p[0] == '\\')
10534 ++p;
10535 #ifdef FEAT_MBYTE
10536 to = (*mb_ptr2char)(p);
10537 #else
10538 to = p[0];
10539 #endif
10541 else
10543 if (p2[0] == '\\')
10544 ++p2;
10545 #ifdef FEAT_MBYTE
10546 to = (*mb_ptr2char)(p2);
10547 #else
10548 to = p2[0];
10549 #endif
10551 if (to == NUL)
10553 EMSG2(_("E357: 'langmap': Matching character missing for %s"),
10554 transchar(from));
10555 return;
10558 #ifdef FEAT_MBYTE
10559 if (from >= 256)
10560 langmap_set_entry(from, to);
10561 else
10562 #endif
10563 langmap_mapchar[from & 255] = to;
10565 /* Advance to next pair */
10566 mb_ptr_adv(p);
10567 if (p2 == NULL)
10569 if (p[0] == ',')
10571 ++p;
10572 break;
10575 else
10577 mb_ptr_adv(p2);
10578 if (*p == ';')
10580 p = p2;
10581 if (p[0] != NUL)
10583 if (p[0] != ',')
10585 EMSG2(_("E358: 'langmap': Extra characters after semicolon: %s"), p);
10586 return;
10588 ++p;
10590 break;
10596 #endif
10599 * Return TRUE if format option 'x' is in effect.
10600 * Take care of no formatting when 'paste' is set.
10603 has_format_option(x)
10604 int x;
10606 if (p_paste)
10607 return FALSE;
10608 return (vim_strchr(curbuf->b_p_fo, x) != NULL);
10612 * Return TRUE if "x" is present in 'shortmess' option, or
10613 * 'shortmess' contains 'a' and "x" is present in SHM_A.
10616 shortmess(x)
10617 int x;
10619 return ( vim_strchr(p_shm, x) != NULL
10620 || (vim_strchr(p_shm, 'a') != NULL
10621 && vim_strchr((char_u *)SHM_A, x) != NULL));
10625 * paste_option_changed() - Called after p_paste was set or reset.
10627 static void
10628 paste_option_changed()
10630 static int old_p_paste = FALSE;
10631 static int save_sm = 0;
10632 #ifdef FEAT_CMDL_INFO
10633 static int save_ru = 0;
10634 #endif
10635 #ifdef FEAT_RIGHTLEFT
10636 static int save_ri = 0;
10637 static int save_hkmap = 0;
10638 #endif
10639 buf_T *buf;
10641 if (p_paste)
10644 * Paste switched from off to on.
10645 * Save the current values, so they can be restored later.
10647 if (!old_p_paste)
10649 /* save options for each buffer */
10650 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10652 buf->b_p_tw_nopaste = buf->b_p_tw;
10653 buf->b_p_wm_nopaste = buf->b_p_wm;
10654 buf->b_p_sts_nopaste = buf->b_p_sts;
10655 buf->b_p_ai_nopaste = buf->b_p_ai;
10658 /* save global options */
10659 save_sm = p_sm;
10660 #ifdef FEAT_CMDL_INFO
10661 save_ru = p_ru;
10662 #endif
10663 #ifdef FEAT_RIGHTLEFT
10664 save_ri = p_ri;
10665 save_hkmap = p_hkmap;
10666 #endif
10667 /* save global values for local buffer options */
10668 p_tw_nopaste = p_tw;
10669 p_wm_nopaste = p_wm;
10670 p_sts_nopaste = p_sts;
10671 p_ai_nopaste = p_ai;
10675 * Always set the option values, also when 'paste' is set when it is
10676 * already on.
10678 /* set options for each buffer */
10679 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10681 buf->b_p_tw = 0; /* textwidth is 0 */
10682 buf->b_p_wm = 0; /* wrapmargin is 0 */
10683 buf->b_p_sts = 0; /* softtabstop is 0 */
10684 buf->b_p_ai = 0; /* no auto-indent */
10687 /* set global options */
10688 p_sm = 0; /* no showmatch */
10689 #ifdef FEAT_CMDL_INFO
10690 # ifdef FEAT_WINDOWS
10691 if (p_ru)
10692 status_redraw_all(); /* redraw to remove the ruler */
10693 # endif
10694 p_ru = 0; /* no ruler */
10695 #endif
10696 #ifdef FEAT_RIGHTLEFT
10697 p_ri = 0; /* no reverse insert */
10698 p_hkmap = 0; /* no Hebrew keyboard */
10699 #endif
10700 /* set global values for local buffer options */
10701 p_tw = 0;
10702 p_wm = 0;
10703 p_sts = 0;
10704 p_ai = 0;
10708 * Paste switched from on to off: Restore saved values.
10710 else if (old_p_paste)
10712 /* restore options for each buffer */
10713 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10715 buf->b_p_tw = buf->b_p_tw_nopaste;
10716 buf->b_p_wm = buf->b_p_wm_nopaste;
10717 buf->b_p_sts = buf->b_p_sts_nopaste;
10718 buf->b_p_ai = buf->b_p_ai_nopaste;
10721 /* restore global options */
10722 p_sm = save_sm;
10723 #ifdef FEAT_CMDL_INFO
10724 # ifdef FEAT_WINDOWS
10725 if (p_ru != save_ru)
10726 status_redraw_all(); /* redraw to draw the ruler */
10727 # endif
10728 p_ru = save_ru;
10729 #endif
10730 #ifdef FEAT_RIGHTLEFT
10731 p_ri = save_ri;
10732 p_hkmap = save_hkmap;
10733 #endif
10734 /* set global values for local buffer options */
10735 p_tw = p_tw_nopaste;
10736 p_wm = p_wm_nopaste;
10737 p_sts = p_sts_nopaste;
10738 p_ai = p_ai_nopaste;
10741 old_p_paste = p_paste;
10745 * vimrc_found() - Called when a ".vimrc" or "VIMINIT" has been found.
10747 * Reset 'compatible' and set the values for options that didn't get set yet
10748 * to the Vim defaults.
10749 * Don't do this if the 'compatible' option has been set or reset before.
10750 * When "fname" is not NULL, use it to set $"envname" when it wasn't set yet.
10752 void
10753 vimrc_found(fname, envname)
10754 char_u *fname;
10755 char_u *envname;
10757 int opt_idx;
10758 int dofree = FALSE;
10759 char_u *p;
10761 if (!option_was_set((char_u *)"cp"))
10763 p_cp = FALSE;
10764 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
10765 if (!(options[opt_idx].flags & (P_WAS_SET|P_VI_DEF)))
10766 set_option_default(opt_idx, OPT_FREE, FALSE);
10767 didset_options();
10770 if (fname != NULL)
10772 p = vim_getenv(envname, &dofree);
10773 if (p == NULL)
10775 /* Set $MYVIMRC to the first vimrc file found. */
10776 p = FullName_save(fname, FALSE);
10777 if (p != NULL)
10779 vim_setenv(envname, p);
10780 vim_free(p);
10783 else if (dofree)
10784 vim_free(p);
10789 * Set 'compatible' on or off. Called for "-C" and "-N" command line arg.
10791 void
10792 change_compatible(on)
10793 int on;
10795 int opt_idx;
10797 if (p_cp != on)
10799 p_cp = on;
10800 compatible_set();
10802 opt_idx = findoption((char_u *)"cp");
10803 if (opt_idx >= 0)
10804 options[opt_idx].flags |= P_WAS_SET;
10808 * Return TRUE when option "name" has been set.
10811 option_was_set(name)
10812 char_u *name;
10814 int idx;
10816 idx = findoption(name);
10817 if (idx < 0) /* unknown option */
10818 return FALSE;
10819 if (options[idx].flags & P_WAS_SET)
10820 return TRUE;
10821 return FALSE;
10825 * compatible_set() - Called when 'compatible' has been set or unset.
10827 * When 'compatible' set: Set all relevant options (those that have the P_VIM)
10828 * flag) to a Vi compatible value.
10829 * When 'compatible' is unset: Set all options that have a different default
10830 * for Vim (without the P_VI_DEF flag) to that default.
10832 static void
10833 compatible_set()
10835 int opt_idx;
10837 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
10838 if ( ((options[opt_idx].flags & P_VIM) && p_cp)
10839 || (!(options[opt_idx].flags & P_VI_DEF) && !p_cp))
10840 set_option_default(opt_idx, OPT_FREE, p_cp);
10841 didset_options();
10844 #ifdef FEAT_LINEBREAK
10846 # if defined(__BORLANDC__) && (__BORLANDC__ < 0x500)
10847 /* Borland C++ screws up loop optimisation here (negri) */
10848 #pragma option -O-l
10849 # endif
10852 * fill_breakat_flags() -- called when 'breakat' changes value.
10854 static void
10855 fill_breakat_flags()
10857 char_u *p;
10858 int i;
10860 for (i = 0; i < 256; i++)
10861 breakat_flags[i] = FALSE;
10863 if (p_breakat != NULL)
10864 for (p = p_breakat; *p; p++)
10865 breakat_flags[*p] = TRUE;
10868 # if defined(__BORLANDC__) && (__BORLANDC__ < 0x500)
10869 #pragma option -O.l
10870 # endif
10872 #endif
10875 * Check an option that can be a range of string values.
10877 * Return OK for correct value, FAIL otherwise.
10878 * Empty is always OK.
10880 static int
10881 check_opt_strings(val, values, list)
10882 char_u *val;
10883 char **values;
10884 int list; /* when TRUE: accept a list of values */
10886 return opt_strings_flags(val, values, NULL, list);
10890 * Handle an option that can be a range of string values.
10891 * Set a flag in "*flagp" for each string present.
10893 * Return OK for correct value, FAIL otherwise.
10894 * Empty is always OK.
10896 static int
10897 opt_strings_flags(val, values, flagp, list)
10898 char_u *val; /* new value */
10899 char **values; /* array of valid string values */
10900 unsigned *flagp;
10901 int list; /* when TRUE: accept a list of values */
10903 int i;
10904 int len;
10905 unsigned new_flags = 0;
10907 while (*val)
10909 for (i = 0; ; ++i)
10911 if (values[i] == NULL) /* val not found in values[] */
10912 return FAIL;
10914 len = (int)STRLEN(values[i]);
10915 if (STRNCMP(values[i], val, len) == 0
10916 && ((list && val[len] == ',') || val[len] == NUL))
10918 val += len + (val[len] == ',');
10919 new_flags |= (1 << i);
10920 break; /* check next item in val list */
10924 if (flagp != NULL)
10925 *flagp = new_flags;
10927 return OK;
10931 * Read the 'wildmode' option, fill wim_flags[].
10933 static int
10934 check_opt_wim()
10936 char_u new_wim_flags[4];
10937 char_u *p;
10938 int i;
10939 int idx = 0;
10941 for (i = 0; i < 4; ++i)
10942 new_wim_flags[i] = 0;
10944 for (p = p_wim; *p; ++p)
10946 for (i = 0; ASCII_ISALPHA(p[i]); ++i)
10948 if (p[i] != NUL && p[i] != ',' && p[i] != ':')
10949 return FAIL;
10950 if (i == 7 && STRNCMP(p, "longest", 7) == 0)
10951 new_wim_flags[idx] |= WIM_LONGEST;
10952 else if (i == 4 && STRNCMP(p, "full", 4) == 0)
10953 new_wim_flags[idx] |= WIM_FULL;
10954 else if (i == 4 && STRNCMP(p, "list", 4) == 0)
10955 new_wim_flags[idx] |= WIM_LIST;
10956 else
10957 return FAIL;
10958 p += i;
10959 if (*p == NUL)
10960 break;
10961 if (*p == ',')
10963 if (idx == 3)
10964 return FAIL;
10965 ++idx;
10969 /* fill remaining entries with last flag */
10970 while (idx < 3)
10972 new_wim_flags[idx + 1] = new_wim_flags[idx];
10973 ++idx;
10976 /* only when there are no errors, wim_flags[] is changed */
10977 for (i = 0; i < 4; ++i)
10978 wim_flags[i] = new_wim_flags[i];
10979 return OK;
10983 * Check if backspacing over something is allowed.
10986 can_bs(what)
10987 int what; /* BS_INDENT, BS_EOL or BS_START */
10989 switch (*p_bs)
10991 case '2': return TRUE;
10992 case '1': return (what != BS_START);
10993 case '0': return FALSE;
10995 return vim_strchr(p_bs, what) != NULL;
10999 * Save the current values of 'fileformat' and 'fileencoding', so that we know
11000 * the file must be considered changed when the value is different.
11002 void
11003 save_file_ff(buf)
11004 buf_T *buf;
11006 buf->b_start_ffc = *buf->b_p_ff;
11007 buf->b_start_eol = buf->b_p_eol;
11008 #ifdef FEAT_MBYTE
11009 buf->b_start_bomb = buf->b_p_bomb;
11011 /* Only use free/alloc when necessary, they take time. */
11012 if (buf->b_start_fenc == NULL
11013 || STRCMP(buf->b_start_fenc, buf->b_p_fenc) != 0)
11015 vim_free(buf->b_start_fenc);
11016 buf->b_start_fenc = vim_strsave(buf->b_p_fenc);
11018 #endif
11022 * Return TRUE if 'fileformat' and/or 'fileencoding' has a different value
11023 * from when editing started (save_file_ff() called).
11024 * Also when 'endofline' was changed and 'binary' is set, or when 'bomb' was
11025 * changed and 'binary' is not set.
11026 * Don't consider a new, empty buffer to be changed.
11029 file_ff_differs(buf)
11030 buf_T *buf;
11032 /* In a buffer that was never loaded the options are not valid. */
11033 if (buf->b_flags & BF_NEVERLOADED)
11034 return FALSE;
11035 if ((buf->b_flags & BF_NEW)
11036 && buf->b_ml.ml_line_count == 1
11037 && *ml_get_buf(buf, (linenr_T)1, FALSE) == NUL)
11038 return FALSE;
11039 if (buf->b_start_ffc != *buf->b_p_ff)
11040 return TRUE;
11041 if (buf->b_p_bin && buf->b_start_eol != buf->b_p_eol)
11042 return TRUE;
11043 #ifdef FEAT_MBYTE
11044 if (!buf->b_p_bin && buf->b_start_bomb != buf->b_p_bomb)
11045 return TRUE;
11046 if (buf->b_start_fenc == NULL)
11047 return (*buf->b_p_fenc != NUL);
11048 return (STRCMP(buf->b_start_fenc, buf->b_p_fenc) != 0);
11049 #else
11050 return FALSE;
11051 #endif
11055 * return OK if "p" is a valid fileformat name, FAIL otherwise.
11058 check_ff_value(p)
11059 char_u *p;
11061 return check_opt_strings(p, p_ff_values, FALSE);
11064 #ifdef FEAT_FULLSCREEN
11066 * Read the 'fuoptions' option, set fuoptions_flags and
11067 * fuoptions_bgcolor.
11069 static int
11070 check_fuoptions(p_fuoptions, flags, bgcolor)
11071 char_u *p_fuoptions; /* fuoptions string */
11072 unsigned *flags; /* fuoptions flags */
11073 int *bgcolor; /* background highlight group id */
11075 unsigned new_fuoptions_flags;
11076 int new_fuoptions_bgcolor;
11077 char_u *p;
11078 char_u hg_term; /* character terminating
11079 highlight group string in
11080 'background' option' */
11081 int i,j,k;
11083 new_fuoptions_flags = 0;
11084 new_fuoptions_bgcolor = 0xFF000000;
11086 for (p = p_fuoptions; *p; ++p)
11088 for (i = 0; ASCII_ISALPHA(p[i]); ++i)
11090 if (p[i] != NUL && p[i] != ',' && p[i] != ':')
11091 return FAIL;
11092 if (i == 10 && STRNCMP(p, "background", 10) == 0)
11094 if (p[i] != ':') return FAIL;
11095 i++;
11096 if (p[i] == NUL) return FAIL;
11097 if (p[i] == '#')
11099 /* explicit color (#aarrggbb) */
11100 i++;
11101 for (j = i; j < i+8 && vim_isxdigit(p[j]); ++j)
11103 if (j < i+8)
11104 return FAIL; /* less than 8 digits */
11105 if (p[j] != NUL && p[j] != ',')
11106 return FAIL;
11107 new_fuoptions_bgcolor = 0;
11108 for (k = 0; k < 8; k++)
11109 new_fuoptions_bgcolor = new_fuoptions_bgcolor * 16 +
11110 hex2nr(p[i+k]);
11111 i = j;
11112 /* mark bgcolor as an explicit argb color */
11113 new_fuoptions_flags &= ~FUOPT_BGCOLOR_HLGROUP;
11115 else
11117 /* highlight group name */
11118 for (j = i; ASCII_ISALPHA(p[j]); ++j)
11120 if (p[j] != NUL && p[j] != ',')
11121 return FAIL;
11122 hg_term = p[j];
11123 p[j] = NUL; /* temporarily terminate string */
11124 new_fuoptions_bgcolor = syn_name2id((char_u*)(p+i));
11125 p[j] = hg_term; /* restore string */
11126 if (! new_fuoptions_bgcolor)
11127 return FAIL;
11128 i = j;
11129 /* mark bgcolor as highlight group id */
11130 new_fuoptions_flags |= FUOPT_BGCOLOR_HLGROUP;
11133 else if (i == 7 && STRNCMP(p, "maxhorz", 7) == 0)
11134 new_fuoptions_flags |= FUOPT_MAXHORZ;
11135 else if (i == 7 && STRNCMP(p, "maxvert", 7) == 0)
11136 new_fuoptions_flags |= FUOPT_MAXVERT;
11137 else
11138 return FAIL;
11139 p += i;
11140 if (*p == NUL)
11141 break;
11142 if (*p == ':')
11143 return FAIL;
11146 *flags = new_fuoptions_flags;
11147 *bgcolor = new_fuoptions_bgcolor;
11149 /* Let the GUI know, in case the background color has changed. */
11150 gui_mch_fuopt_update();
11152 return OK;
11154 #endif