Merge branch 'feat/tagfunc'
[vim_extended.git] / src / option.c
blob13de394cae152aff53c114c9c8d1a87f6ef17140
1 /* vi:set ts=8 sts=4 sw=4:
3 * VIM - Vi IMproved by Bram Moolenaar
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
11 * Code to handle user-settable options. This is all pretty much table-
12 * driven. Checklist for adding a new option:
13 * - Put it in the options array below (copy an existing entry).
14 * - For a global option: Add a variable for it in option.h.
15 * - For a buffer or window local option:
16 * - Add a PV_XX entry to the enum below.
17 * - Add a variable to the window or buffer struct in structs.h.
18 * - For a window option, add some code to copy_winopt().
19 * - For a buffer option, add some code to buf_copy_options().
20 * - For a buffer string option, add code to check_buf_options().
21 * - If it's a numeric option, add any necessary bounds checks to do_set().
22 * - If it's a list of flags, add some code in do_set(), search for WW_ALL.
23 * - When adding an option with expansion (P_EXPAND), but with a different
24 * default for Vi and Vim (no P_VI_DEF), add some code at VIMEXP.
25 * - Add documentation! One line in doc/help.txt, full description in
26 * options.txt, and any other related places.
27 * - Add an entry in runtime/optwin.vim.
28 * When making changes:
29 * - Adjust the help for the option in doc/option.txt.
30 * - When an entry has the P_VIM flag, or is lacking the P_VI_DEF flag, add a
31 * comment at the help for the 'compatible' option.
34 #define IN_OPTION_C
35 #include "vim.h"
38 * The options that are local to a window or buffer have "indir" set to one of
39 * these values. Special values:
40 * PV_NONE: global option.
41 * PV_WIN is added: window-local option
42 * PV_BUF is added: buffer-local option
43 * PV_BOTH is added: global option which also has a local value.
45 #define PV_BOTH 0x1000
46 #define PV_WIN 0x2000
47 #define PV_BUF 0x4000
48 #define PV_MASK 0x0fff
49 #define OPT_WIN(x) (idopt_T)(PV_WIN + (int)(x))
50 #define OPT_BUF(x) (idopt_T)(PV_BUF + (int)(x))
51 #define OPT_BOTH(x) (idopt_T)(PV_BOTH + (int)(x))
54 * Definition of the PV_ values for buffer-local options.
55 * The BV_ values are defined in option.h.
57 #define PV_AI OPT_BUF(BV_AI)
58 #define PV_AR OPT_BOTH(OPT_BUF(BV_AR))
59 #ifdef FEAT_QUICKFIX
60 # define PV_BH OPT_BUF(BV_BH)
61 # define PV_BT OPT_BUF(BV_BT)
62 # define PV_EFM OPT_BOTH(OPT_BUF(BV_EFM))
63 # define PV_GP OPT_BOTH(OPT_BUF(BV_GP))
64 # define PV_MP OPT_BOTH(OPT_BUF(BV_MP))
65 #endif
66 #define PV_BIN OPT_BUF(BV_BIN)
67 #define PV_BL OPT_BUF(BV_BL)
68 #ifdef FEAT_MBYTE
69 # define PV_BOMB OPT_BUF(BV_BOMB)
70 #endif
71 #define PV_CI OPT_BUF(BV_CI)
72 #ifdef FEAT_CINDENT
73 # define PV_CIN OPT_BUF(BV_CIN)
74 # define PV_CINK OPT_BUF(BV_CINK)
75 # define PV_CINO OPT_BUF(BV_CINO)
76 #endif
77 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
78 # define PV_CINW OPT_BUF(BV_CINW)
79 #endif
80 #ifdef FEAT_FOLDING
81 # define PV_CMS OPT_BUF(BV_CMS)
82 #endif
83 #ifdef FEAT_COMMENTS
84 # define PV_COM OPT_BUF(BV_COM)
85 #endif
86 #ifdef FEAT_INS_EXPAND
87 # define PV_CPT OPT_BUF(BV_CPT)
88 # define PV_DICT OPT_BOTH(OPT_BUF(BV_DICT))
89 # define PV_TSR OPT_BOTH(OPT_BUF(BV_TSR))
90 #endif
91 #ifdef FEAT_COMPL_FUNC
92 # define PV_CFU OPT_BUF(BV_CFU)
93 #endif
94 #ifdef FEAT_FIND_ID
95 # define PV_DEF OPT_BOTH(OPT_BUF(BV_DEF))
96 # define PV_INC OPT_BOTH(OPT_BUF(BV_INC))
97 #endif
98 #define PV_EOL OPT_BUF(BV_EOL)
99 #define PV_EP OPT_BOTH(OPT_BUF(BV_EP))
100 #define PV_ET OPT_BUF(BV_ET)
101 #ifdef FEAT_MBYTE
102 # define PV_FENC OPT_BUF(BV_FENC)
103 #endif
104 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
105 # define PV_BEXPR OPT_BOTH(OPT_BUF(BV_BEXPR))
106 #endif
107 #ifdef FEAT_EVAL
108 # define PV_FEX OPT_BUF(BV_FEX)
109 #endif
110 #define PV_FF OPT_BUF(BV_FF)
111 #define PV_FLP OPT_BUF(BV_FLP)
112 #define PV_FO OPT_BUF(BV_FO)
113 #ifdef FEAT_AUTOCMD
114 # define PV_FT OPT_BUF(BV_FT)
115 #endif
116 #define PV_IMI OPT_BUF(BV_IMI)
117 #define PV_IMS OPT_BUF(BV_IMS)
118 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
119 # define PV_INDE OPT_BUF(BV_INDE)
120 # define PV_INDK OPT_BUF(BV_INDK)
121 #endif
122 #if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
123 # define PV_INEX OPT_BUF(BV_INEX)
124 #endif
125 #define PV_INF OPT_BUF(BV_INF)
126 #define PV_ISK OPT_BUF(BV_ISK)
127 #ifdef FEAT_CRYPT
128 # define PV_KEY OPT_BUF(BV_KEY)
129 #endif
130 #ifdef FEAT_KEYMAP
131 # define PV_KMAP OPT_BUF(BV_KMAP)
132 #endif
133 #define PV_KP OPT_BOTH(OPT_BUF(BV_KP))
134 #ifdef FEAT_LISP
135 # define PV_LISP OPT_BUF(BV_LISP)
136 #endif
137 #define PV_MA OPT_BUF(BV_MA)
138 #define PV_ML OPT_BUF(BV_ML)
139 #define PV_MOD OPT_BUF(BV_MOD)
140 #define PV_MPS OPT_BUF(BV_MPS)
141 #define PV_NF OPT_BUF(BV_NF)
142 #ifdef FEAT_OSFILETYPE
143 # define PV_OFT OPT_BUF(BV_OFT)
144 #endif
145 #ifdef FEAT_COMPL_FUNC
146 # define PV_OFU OPT_BUF(BV_OFU)
147 #endif
148 #define PV_PATH OPT_BOTH(OPT_BUF(BV_PATH))
149 #define PV_PI OPT_BUF(BV_PI)
150 #ifdef FEAT_TEXTOBJ
151 # define PV_QE OPT_BUF(BV_QE)
152 #endif
153 #define PV_RO OPT_BUF(BV_RO)
154 #ifdef FEAT_SMARTINDENT
155 # define PV_SI OPT_BUF(BV_SI)
156 #endif
157 #ifndef SHORT_FNAME
158 # define PV_SN OPT_BUF(BV_SN)
159 #endif
160 #ifdef FEAT_SYN_HL
161 # define PV_SMC OPT_BUF(BV_SMC)
162 # define PV_SYN OPT_BUF(BV_SYN)
163 #endif
164 #ifdef FEAT_SPELL
165 # define PV_SPC OPT_BUF(BV_SPC)
166 # define PV_SPF OPT_BUF(BV_SPF)
167 # define PV_SPL OPT_BUF(BV_SPL)
168 #endif
169 #define PV_STS OPT_BUF(BV_STS)
170 #ifdef FEAT_SEARCHPATH
171 # define PV_SUA OPT_BUF(BV_SUA)
172 #endif
173 #define PV_SW OPT_BUF(BV_SW)
174 #define PV_SWF OPT_BUF(BV_SWF)
175 #ifdef FEAT_COMPL_FUNC
176 # define PV_TFU OPT_BUF(BV_TFU)
177 #endif
178 #define PV_TAGS OPT_BOTH(OPT_BUF(BV_TAGS))
179 #define PV_TS OPT_BUF(BV_TS)
180 #define PV_TW OPT_BUF(BV_TW)
181 #define PV_TX OPT_BUF(BV_TX)
182 #ifdef FEAT_PERSISTENT_UNDO
183 #define PV_UDF OPT_BUF(BV_UDF)
184 #endif
185 #define PV_WM OPT_BUF(BV_WM)
186 #ifdef FEAT_VARTABS
187 #define PV_VSTS OPT_BUF(BV_VSTS)
188 #define PV_VTS OPT_BUF(BV_VTS)
189 #endif
192 * Definition of the PV_ values for window-local options.
193 * The WV_ values are defined in option.h.
195 #define PV_LIST OPT_WIN(WV_LIST)
196 #ifdef FEAT_ARABIC
197 # define PV_ARAB OPT_WIN(WV_ARAB)
198 #endif
199 #ifdef FEAT_LINEBREAK
200 # define PV_BRI OPT_WIN(WV_BRI)
201 # define PV_BRIMIN OPT_WIN(WV_BRIMIN)
202 # define PV_BRISHIFT OPT_WIN(WV_BRISHIFT)
203 #endif
204 #ifdef FEAT_DIFF
205 # define PV_DIFF OPT_WIN(WV_DIFF)
206 #endif
207 #ifdef FEAT_FOLDING
208 # define PV_FDC OPT_WIN(WV_FDC)
209 # define PV_FEN OPT_WIN(WV_FEN)
210 # define PV_FDI OPT_WIN(WV_FDI)
211 # define PV_FDL OPT_WIN(WV_FDL)
212 # define PV_FDM OPT_WIN(WV_FDM)
213 # define PV_FML OPT_WIN(WV_FML)
214 # define PV_FDN OPT_WIN(WV_FDN)
215 # ifdef FEAT_EVAL
216 # define PV_FDE OPT_WIN(WV_FDE)
217 # define PV_FDT OPT_WIN(WV_FDT)
218 # endif
219 # define PV_FMR OPT_WIN(WV_FMR)
220 #endif
221 #ifdef FEAT_LINEBREAK
222 # define PV_LBR OPT_WIN(WV_LBR)
223 #endif
224 #define PV_NU OPT_WIN(WV_NU)
225 #define PV_RNU OPT_WIN(WV_RNU)
226 #ifdef FEAT_LINEBREAK
227 # define PV_NUW OPT_WIN(WV_NUW)
228 #endif
229 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
230 # define PV_PVW OPT_WIN(WV_PVW)
231 #endif
232 #ifdef FEAT_RIGHTLEFT
233 # define PV_RL OPT_WIN(WV_RL)
234 # define PV_RLC OPT_WIN(WV_RLC)
235 #endif
236 #ifdef FEAT_SCROLLBIND
237 # define PV_SCBIND OPT_WIN(WV_SCBIND)
238 #endif
239 #define PV_SCROLL OPT_WIN(WV_SCROLL)
240 #ifdef FEAT_SPELL
241 # define PV_SPELL OPT_WIN(WV_SPELL)
242 #endif
243 #ifdef FEAT_SYN_HL
244 # define PV_CUC OPT_WIN(WV_CUC)
245 # define PV_CUL OPT_WIN(WV_CUL)
246 #endif
247 #ifdef FEAT_STL_OPT
248 # define PV_STL OPT_BOTH(OPT_WIN(WV_STL))
249 #endif
250 #ifdef FEAT_WINDOWS
251 # define PV_WFH OPT_WIN(WV_WFH)
252 #endif
253 #ifdef FEAT_VERTSPLIT
254 # define PV_WFW OPT_WIN(WV_WFW)
255 #endif
256 #define PV_WRAP OPT_WIN(WV_WRAP)
259 /* WV_ and BV_ values get typecasted to this for the "indir" field */
260 typedef enum
262 PV_NONE = 0,
263 PV_MAXVAL = 0xffff /* to avoid warnings for value out of range */
264 } idopt_T;
267 * Options local to a window have a value local to a buffer and global to all
268 * buffers. Indicate this by setting "var" to VAR_WIN.
270 #define VAR_WIN ((char_u *)-1)
273 * These are the global values for options which are also local to a buffer.
274 * Only to be used in option.c!
276 static int p_ai;
277 static int p_bin;
278 #ifdef FEAT_MBYTE
279 static int p_bomb;
280 #endif
281 #if defined(FEAT_QUICKFIX)
282 static char_u *p_bh;
283 static char_u *p_bt;
284 #endif
285 static int p_bl;
286 static int p_ci;
287 #ifdef FEAT_CINDENT
288 static int p_cin;
289 static char_u *p_cink;
290 static char_u *p_cino;
291 #endif
292 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
293 static char_u *p_cinw;
294 #endif
295 #ifdef FEAT_COMMENTS
296 static char_u *p_com;
297 #endif
298 #ifdef FEAT_FOLDING
299 static char_u *p_cms;
300 #endif
301 #ifdef FEAT_INS_EXPAND
302 static char_u *p_cpt;
303 #endif
304 #ifdef FEAT_COMPL_FUNC
305 static char_u *p_cfu;
306 static char_u *p_ofu;
307 static char_u *p_tfu;
308 #endif
309 static int p_eol;
310 static int p_et;
311 #ifdef FEAT_MBYTE
312 static char_u *p_fenc;
313 #endif
314 static char_u *p_ff;
315 static char_u *p_fo;
316 static char_u *p_flp;
317 #ifdef FEAT_AUTOCMD
318 static char_u *p_ft;
319 #endif
320 static long p_iminsert;
321 static long p_imsearch;
322 #if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
323 static char_u *p_inex;
324 #endif
325 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
326 static char_u *p_inde;
327 static char_u *p_indk;
328 #endif
329 #if defined(FEAT_EVAL)
330 static char_u *p_fex;
331 #endif
332 static int p_inf;
333 static char_u *p_isk;
334 #ifdef FEAT_CRYPT
335 static char_u *p_key;
336 #endif
337 #ifdef FEAT_LISP
338 static int p_lisp;
339 #endif
340 static int p_ml;
341 static int p_ma;
342 static int p_mod;
343 static char_u *p_mps;
344 static char_u *p_nf;
345 #ifdef FEAT_OSFILETYPE
346 static char_u *p_oft;
347 #endif
348 static int p_pi;
349 #ifdef FEAT_TEXTOBJ
350 static char_u *p_qe;
351 #endif
352 static int p_ro;
353 #ifdef FEAT_SMARTINDENT
354 static int p_si;
355 #endif
356 #ifndef SHORT_FNAME
357 static int p_sn;
358 #endif
359 static long p_sts;
360 #if defined(FEAT_SEARCHPATH)
361 static char_u *p_sua;
362 #endif
363 static long p_sw;
364 static int p_swf;
365 #ifdef FEAT_SYN_HL
366 static long p_smc;
367 static char_u *p_syn;
368 #endif
369 #ifdef FEAT_SPELL
370 static char_u *p_spc;
371 static char_u *p_spf;
372 static char_u *p_spl;
373 #endif
374 static long p_ts;
375 static long p_tw;
376 static int p_tx;
377 #ifdef FEAT_PERSISTENT_UNDO
378 static int p_udf;
379 #endif
380 static long p_wm;
381 #ifdef FEAT_VARTABS
382 static char_u *p_vsts;
383 static char_u *p_vts;
384 #endif
385 #ifdef FEAT_KEYMAP
386 static char_u *p_keymap;
387 #endif
389 /* Saved values for when 'bin' is set. */
390 static int p_et_nobin;
391 static int p_ml_nobin;
392 static long p_tw_nobin;
393 static long p_wm_nobin;
395 /* Saved values for when 'paste' is set */
396 static long p_tw_nopaste;
397 static long p_wm_nopaste;
398 static long p_sts_nopaste;
399 static int p_ai_nopaste;
400 #ifdef FEAT_VARTABS
401 static char_u *p_vsts_nopaste;
402 #endif
404 struct vimoption
406 char *fullname; /* full option name */
407 char *shortname; /* permissible abbreviation */
408 long_u flags; /* see below */
409 char_u *var; /* global option: pointer to variable;
410 * window-local option: VAR_WIN;
411 * buffer-local option: global value */
412 idopt_T indir; /* global option: PV_NONE;
413 * local option: indirect option index */
414 char_u *def_val[2]; /* default values for variable (vi and vim) */
415 #ifdef FEAT_EVAL
416 scid_T scriptID; /* script in which the option was last set */
417 # define SCRIPTID_INIT , 0
418 #else
419 # define SCRIPTID_INIT
420 #endif
423 #define VI_DEFAULT 0 /* def_val[VI_DEFAULT] is Vi default value */
424 #define VIM_DEFAULT 1 /* def_val[VIM_DEFAULT] is Vim default value */
427 * Flags
429 #define P_BOOL 0x01 /* the option is boolean */
430 #define P_NUM 0x02 /* the option is numeric */
431 #define P_STRING 0x04 /* the option is a string */
432 #define P_ALLOCED 0x08 /* the string option is in allocated memory,
433 must use free_string_option() when
434 assigning new value. Not set if default is
435 the same. */
436 #define P_EXPAND 0x10 /* environment expansion. NOTE: P_EXPAND can
437 never be used for local or hidden options! */
438 #define P_NODEFAULT 0x40 /* don't set to default value */
439 #define P_DEF_ALLOCED 0x80 /* default value is in allocated memory, must
440 use vim_free() when assigning new value */
441 #define P_WAS_SET 0x100 /* option has been set/reset */
442 #define P_NO_MKRC 0x200 /* don't include in :mkvimrc output */
443 #define P_VI_DEF 0x400 /* Use Vi default for Vim */
444 #define P_VIM 0x800 /* Vim option, reset when 'cp' set */
446 /* when option changed, what to display: */
447 #define P_RSTAT 0x1000 /* redraw status lines */
448 #define P_RWIN 0x2000 /* redraw current window */
449 #define P_RBUF 0x4000 /* redraw current buffer */
450 #define P_RALL 0x6000 /* redraw all windows */
451 #define P_RCLR 0x7000 /* clear and redraw all */
453 #define P_COMMA 0x8000 /* comma separated list */
454 #define P_NODUP 0x10000L/* don't allow duplicate strings */
455 #define P_FLAGLIST 0x20000L/* list of single-char flags */
457 #define P_SECURE 0x40000L/* cannot change in modeline or secure mode */
458 #define P_GETTEXT 0x80000L/* expand default value with _() */
459 #define P_NOGLOB 0x100000L/* do not use local value for global vimrc */
460 #define P_NFNAME 0x200000L/* only normal file name chars allowed */
461 #define P_INSECURE 0x400000L/* option was set from a modeline */
462 #define P_PRI_MKRC 0x800000L/* priority for :mkvimrc (setting option has
463 side effects) */
465 #define ISK_LATIN1 (char_u *)"@,48-57,_,192-255"
467 /* 'isprint' for latin1 is also used for MS-Windows cp1252, where 0x80 is used
468 * for the currency sign. */
469 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
470 # define ISP_LATIN1 (char_u *)"@,~-255"
471 #else
472 # define ISP_LATIN1 (char_u *)"@,161-255"
473 #endif
475 /* The 16 bit MS-DOS version is low on space, make the string as short as
476 * possible when compiling with few features. */
477 #if defined(FEAT_DIFF) || defined(FEAT_FOLDING) || defined(FEAT_SPELL) \
478 || defined(FEAT_VERTSPLIT) || defined(FEAT_CLIPBOARD) \
479 || defined(FEAT_INS_EXPAND) || defined(FEAT_SYN_HL)
480 # 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"
481 #else
482 # 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"
483 #endif
486 * options[] is initialized here.
487 * The order of the options MUST be alphabetic for ":set all" and findoption().
488 * All option names MUST start with a lowercase letter (for findoption()).
489 * Exception: "t_" options are at the end.
490 * The options with a NULL variable are 'hidden': a set command for them is
491 * ignored and they are not printed.
493 static struct vimoption
494 #ifdef FEAT_GUI_W16
495 _far
496 #endif
497 options[] =
499 {"aleph", "al", P_NUM|P_VI_DEF,
500 #ifdef FEAT_RIGHTLEFT
501 (char_u *)&p_aleph, PV_NONE,
502 #else
503 (char_u *)NULL, PV_NONE,
504 #endif
506 #if (defined(MSDOS) || defined(WIN3264) || defined(OS2)) && !defined(FEAT_GUI_W32)
507 (char_u *)128L,
508 #else
509 (char_u *)224L,
510 #endif
511 (char_u *)0L} SCRIPTID_INIT},
512 {"antialias", "anti", P_BOOL|P_VI_DEF|P_VIM|P_RCLR,
513 #if defined(FEAT_GUI) && defined(MACOS_X)
514 (char_u *)&p_antialias, PV_NONE,
515 {(char_u *)FALSE, (char_u *)FALSE}
516 #else
517 (char_u *)NULL, PV_NONE,
518 {(char_u *)FALSE, (char_u *)FALSE}
519 #endif
520 SCRIPTID_INIT},
521 {"arabic", "arab", P_BOOL|P_VI_DEF|P_VIM,
522 #ifdef FEAT_ARABIC
523 (char_u *)VAR_WIN, PV_ARAB,
524 #else
525 (char_u *)NULL, PV_NONE,
526 #endif
527 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
528 {"arabicshape", "arshape", P_BOOL|P_VI_DEF|P_VIM|P_RCLR,
529 #ifdef FEAT_ARABIC
530 (char_u *)&p_arshape, PV_NONE,
531 #else
532 (char_u *)NULL, PV_NONE,
533 #endif
534 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
535 {"allowrevins", "ari", P_BOOL|P_VI_DEF|P_VIM,
536 #ifdef FEAT_RIGHTLEFT
537 (char_u *)&p_ari, PV_NONE,
538 #else
539 (char_u *)NULL, PV_NONE,
540 #endif
541 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
542 {"altkeymap", "akm", P_BOOL|P_VI_DEF,
543 #ifdef FEAT_FKMAP
544 (char_u *)&p_altkeymap, PV_NONE,
545 #else
546 (char_u *)NULL, PV_NONE,
547 #endif
548 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
549 {"ambiwidth", "ambw", P_STRING|P_VI_DEF|P_RCLR,
550 #if defined(FEAT_MBYTE)
551 (char_u *)&p_ambw, PV_NONE,
552 {(char_u *)"single", (char_u *)0L}
553 #else
554 (char_u *)NULL, PV_NONE,
555 {(char_u *)0L, (char_u *)0L}
556 #endif
557 SCRIPTID_INIT},
558 #ifdef FEAT_AUTOCHDIR
559 {"autochdir", "acd", P_BOOL|P_VI_DEF,
560 (char_u *)&p_acd, PV_NONE,
561 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
562 #endif
563 {"autoindent", "ai", P_BOOL|P_VI_DEF,
564 (char_u *)&p_ai, PV_AI,
565 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
566 {"autoprint", "ap", P_BOOL|P_VI_DEF,
567 (char_u *)NULL, PV_NONE,
568 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
569 {"autoread", "ar", P_BOOL|P_VI_DEF,
570 (char_u *)&p_ar, PV_AR,
571 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
572 {"autowrite", "aw", P_BOOL|P_VI_DEF,
573 (char_u *)&p_aw, PV_NONE,
574 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
575 {"autowriteall","awa", P_BOOL|P_VI_DEF,
576 (char_u *)&p_awa, PV_NONE,
577 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
578 {"background", "bg", P_STRING|P_VI_DEF|P_RCLR,
579 (char_u *)&p_bg, PV_NONE,
581 #if (defined(MSDOS) || defined(OS2) || defined(WIN3264)) && !defined(FEAT_GUI)
582 (char_u *)"dark",
583 #else
584 (char_u *)"light",
585 #endif
586 (char_u *)0L} SCRIPTID_INIT},
587 {"backspace", "bs", P_STRING|P_VI_DEF|P_VIM|P_COMMA|P_NODUP,
588 (char_u *)&p_bs, PV_NONE,
589 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
590 {"backup", "bk", P_BOOL|P_VI_DEF|P_VIM,
591 (char_u *)&p_bk, PV_NONE,
592 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
593 {"backupcopy", "bkc", P_STRING|P_VIM|P_COMMA|P_NODUP,
594 (char_u *)&p_bkc, PV_NONE,
595 #ifdef UNIX
596 {(char_u *)"yes", (char_u *)"auto"}
597 #else
598 {(char_u *)"auto", (char_u *)"auto"}
599 #endif
600 SCRIPTID_INIT},
601 {"backupdir", "bdir", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP|P_SECURE,
602 (char_u *)&p_bdir, PV_NONE,
603 {(char_u *)DFLT_BDIR, (char_u *)0L} SCRIPTID_INIT},
604 {"backupext", "bex", P_STRING|P_VI_DEF|P_NFNAME,
605 (char_u *)&p_bex, PV_NONE,
607 #ifdef VMS
608 (char_u *)"_",
609 #else
610 (char_u *)"~",
611 #endif
612 (char_u *)0L} SCRIPTID_INIT},
613 {"backupskip", "bsk", P_STRING|P_VI_DEF|P_COMMA,
614 #ifdef FEAT_WILDIGN
615 (char_u *)&p_bsk, PV_NONE,
616 {(char_u *)"", (char_u *)0L}
617 #else
618 (char_u *)NULL, PV_NONE,
619 {(char_u *)0L, (char_u *)0L}
620 #endif
621 SCRIPTID_INIT},
622 #ifdef FEAT_BEVAL
623 {"balloondelay","bdlay",P_NUM|P_VI_DEF,
624 (char_u *)&p_bdlay, PV_NONE,
625 {(char_u *)600L, (char_u *)0L} SCRIPTID_INIT},
626 {"ballooneval", "beval",P_BOOL|P_VI_DEF|P_NO_MKRC,
627 (char_u *)&p_beval, PV_NONE,
628 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
629 # ifdef FEAT_EVAL
630 {"balloonexpr", "bexpr", P_STRING|P_ALLOCED|P_VI_DEF|P_VIM,
631 (char_u *)&p_bexpr, PV_BEXPR,
632 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
633 # endif
634 #endif
635 {"beautify", "bf", P_BOOL|P_VI_DEF,
636 (char_u *)NULL, PV_NONE,
637 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
638 {"binary", "bin", P_BOOL|P_VI_DEF|P_RSTAT,
639 (char_u *)&p_bin, PV_BIN,
640 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
641 {"bioskey", "biosk",P_BOOL|P_VI_DEF,
642 #ifdef MSDOS
643 (char_u *)&p_biosk, PV_NONE,
644 #else
645 (char_u *)NULL, PV_NONE,
646 #endif
647 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
648 {"bomb", NULL, P_BOOL|P_NO_MKRC|P_VI_DEF|P_RSTAT,
649 #ifdef FEAT_MBYTE
650 (char_u *)&p_bomb, PV_BOMB,
651 #else
652 (char_u *)NULL, PV_NONE,
653 #endif
654 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
655 {"breakat", "brk", P_STRING|P_VI_DEF|P_RALL|P_FLAGLIST,
656 #ifdef FEAT_LINEBREAK
657 (char_u *)&p_breakat, PV_NONE,
658 {(char_u *)" \t!@*-+;:,./?", (char_u *)0L}
659 #else
660 (char_u *)NULL, PV_NONE,
661 {(char_u *)0L, (char_u *)0L}
662 #endif
663 SCRIPTID_INIT},
664 {"breakindent", "bri", P_BOOL|P_VI_DEF|P_VIM|P_RWIN,
665 #ifdef FEAT_LINEBREAK
666 (char_u *)VAR_WIN, PV_BRI,
667 #else
668 (char_u *)NULL, PV_NONE,
669 #endif
670 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
671 {"breakindentmin", "brimin", P_NUM|P_VI_DEF|P_VIM|P_RWIN,
672 #ifdef FEAT_LINEBREAK
673 (char_u *)VAR_WIN, PV_BRIMIN,
674 #else
675 (char_u *)NULL, PV_NONE,
676 #endif
677 {(char_u *)20L, (char_u *)20L} SCRIPTID_INIT},
678 {"breakindentshift", "brishift", P_NUM|P_VI_DEF|P_VIM|P_RWIN,
679 #ifdef FEAT_LINEBREAK
680 (char_u *)VAR_WIN, PV_BRISHIFT,
681 #else
682 (char_u *)NULL, PV_NONE,
683 #endif
684 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
685 {"browsedir", "bsdir",P_STRING|P_VI_DEF,
686 #ifdef FEAT_BROWSE
687 (char_u *)&p_bsdir, PV_NONE,
688 {(char_u *)"last", (char_u *)0L}
689 #else
690 (char_u *)NULL, PV_NONE,
691 {(char_u *)0L, (char_u *)0L}
692 #endif
693 SCRIPTID_INIT},
694 {"bufhidden", "bh", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB,
695 #if defined(FEAT_QUICKFIX)
696 (char_u *)&p_bh, PV_BH,
697 {(char_u *)"", (char_u *)0L}
698 #else
699 (char_u *)NULL, PV_NONE,
700 {(char_u *)0L, (char_u *)0L}
701 #endif
702 SCRIPTID_INIT},
703 {"buflisted", "bl", P_BOOL|P_VI_DEF|P_NOGLOB,
704 (char_u *)&p_bl, PV_BL,
705 {(char_u *)1L, (char_u *)0L}
706 SCRIPTID_INIT},
707 {"buftype", "bt", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB,
708 #if defined(FEAT_QUICKFIX)
709 (char_u *)&p_bt, PV_BT,
710 {(char_u *)"", (char_u *)0L}
711 #else
712 (char_u *)NULL, PV_NONE,
713 {(char_u *)0L, (char_u *)0L}
714 #endif
715 SCRIPTID_INIT},
716 {"casemap", "cmp", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
717 #ifdef FEAT_MBYTE
718 (char_u *)&p_cmp, PV_NONE,
719 {(char_u *)"internal,keepascii", (char_u *)0L}
720 #else
721 (char_u *)NULL, PV_NONE,
722 {(char_u *)0L, (char_u *)0L}
723 #endif
724 SCRIPTID_INIT},
725 {"cdpath", "cd", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
726 #ifdef FEAT_SEARCHPATH
727 (char_u *)&p_cdpath, PV_NONE,
728 {(char_u *)",,", (char_u *)0L}
729 #else
730 (char_u *)NULL, PV_NONE,
731 {(char_u *)0L, (char_u *)0L}
732 #endif
733 SCRIPTID_INIT},
734 {"cedit", NULL, P_STRING,
735 #ifdef FEAT_CMDWIN
736 (char_u *)&p_cedit, PV_NONE,
737 {(char_u *)"", (char_u *)CTRL_F_STR}
738 #else
739 (char_u *)NULL, PV_NONE,
740 {(char_u *)0L, (char_u *)0L}
741 #endif
742 SCRIPTID_INIT},
743 {"charconvert", "ccv", P_STRING|P_VI_DEF|P_SECURE,
744 #if defined(FEAT_MBYTE) && defined(FEAT_EVAL)
745 (char_u *)&p_ccv, PV_NONE,
746 {(char_u *)"", (char_u *)0L}
747 #else
748 (char_u *)NULL, PV_NONE,
749 {(char_u *)0L, (char_u *)0L}
750 #endif
751 SCRIPTID_INIT},
752 {"cindent", "cin", P_BOOL|P_VI_DEF|P_VIM,
753 #ifdef FEAT_CINDENT
754 (char_u *)&p_cin, PV_CIN,
755 #else
756 (char_u *)NULL, PV_NONE,
757 #endif
758 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
759 {"cinkeys", "cink", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
760 #ifdef FEAT_CINDENT
761 (char_u *)&p_cink, PV_CINK,
762 {(char_u *)"0{,0},0),:,0#,!^F,o,O,e", (char_u *)0L}
763 #else
764 (char_u *)NULL, PV_NONE,
765 {(char_u *)0L, (char_u *)0L}
766 #endif
767 SCRIPTID_INIT},
768 {"cinoptions", "cino", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
769 #ifdef FEAT_CINDENT
770 (char_u *)&p_cino, PV_CINO,
771 #else
772 (char_u *)NULL, PV_NONE,
773 #endif
774 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
775 {"cinwords", "cinw", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
776 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
777 (char_u *)&p_cinw, PV_CINW,
778 {(char_u *)"if,else,while,do,for,switch",
779 (char_u *)0L}
780 #else
781 (char_u *)NULL, PV_NONE,
782 {(char_u *)0L, (char_u *)0L}
783 #endif
784 SCRIPTID_INIT},
785 {"clipboard", "cb", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
786 #ifdef FEAT_CLIPBOARD
787 (char_u *)&p_cb, PV_NONE,
788 # ifdef FEAT_XCLIPBOARD
789 {(char_u *)"autoselect,exclude:cons\\|linux",
790 (char_u *)0L}
791 # else
792 {(char_u *)"", (char_u *)0L}
793 # endif
794 #else
795 (char_u *)NULL, PV_NONE,
796 {(char_u *)"", (char_u *)0L}
797 #endif
798 SCRIPTID_INIT},
799 {"cmdheight", "ch", P_NUM|P_VI_DEF|P_RALL,
800 (char_u *)&p_ch, PV_NONE,
801 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
802 {"cmdwinheight", "cwh", P_NUM|P_VI_DEF,
803 #ifdef FEAT_CMDWIN
804 (char_u *)&p_cwh, PV_NONE,
805 #else
806 (char_u *)NULL, PV_NONE,
807 #endif
808 {(char_u *)7L, (char_u *)0L} SCRIPTID_INIT},
809 {"columns", "co", P_NUM|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RCLR,
810 (char_u *)&Columns, PV_NONE,
811 {(char_u *)80L, (char_u *)0L} SCRIPTID_INIT},
812 {"comments", "com", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
813 #ifdef FEAT_COMMENTS
814 (char_u *)&p_com, PV_COM,
815 {(char_u *)"s1:/*,mb:*,ex:*/,://,b:#,:%,:XCOMM,n:>,fb:-",
816 (char_u *)0L}
817 #else
818 (char_u *)NULL, PV_NONE,
819 {(char_u *)0L, (char_u *)0L}
820 #endif
821 SCRIPTID_INIT},
822 {"commentstring", "cms", P_STRING|P_ALLOCED|P_VI_DEF,
823 #ifdef FEAT_FOLDING
824 (char_u *)&p_cms, PV_CMS,
825 {(char_u *)"/*%s*/", (char_u *)0L}
826 #else
827 (char_u *)NULL, PV_NONE,
828 {(char_u *)0L, (char_u *)0L}
829 #endif
830 SCRIPTID_INIT},
831 /* P_PRI_MKRC isn't needed here, optval_default()
832 * always returns TRUE for 'compatible' */
833 {"compatible", "cp", P_BOOL|P_RALL,
834 (char_u *)&p_cp, PV_NONE,
835 {(char_u *)TRUE, (char_u *)FALSE} SCRIPTID_INIT},
836 {"complete", "cpt", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
837 #ifdef FEAT_INS_EXPAND
838 (char_u *)&p_cpt, PV_CPT,
839 {(char_u *)".,w,b,u,t,i", (char_u *)0L}
840 #else
841 (char_u *)NULL, PV_NONE,
842 {(char_u *)0L, (char_u *)0L}
843 #endif
844 SCRIPTID_INIT},
845 {"completefunc", "cfu", P_STRING|P_ALLOCED|P_VI_DEF|P_SECURE,
846 #ifdef FEAT_COMPL_FUNC
847 (char_u *)&p_cfu, PV_CFU,
848 {(char_u *)"", (char_u *)0L}
849 #else
850 (char_u *)NULL, PV_NONE,
851 {(char_u *)0L, (char_u *)0L}
852 #endif
853 SCRIPTID_INIT},
854 {"completeopt", "cot", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
855 #ifdef FEAT_INS_EXPAND
856 (char_u *)&p_cot, PV_NONE,
857 {(char_u *)"menu,preview", (char_u *)0L}
858 #else
859 (char_u *)NULL, PV_NONE,
860 {(char_u *)0L, (char_u *)0L}
861 #endif
862 SCRIPTID_INIT},
863 {"confirm", "cf", P_BOOL|P_VI_DEF,
864 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
865 (char_u *)&p_confirm, PV_NONE,
866 #else
867 (char_u *)NULL, PV_NONE,
868 #endif
869 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
870 {"conskey", "consk",P_BOOL|P_VI_DEF,
871 #ifdef MSDOS
872 (char_u *)&p_consk, PV_NONE,
873 #else
874 (char_u *)NULL, PV_NONE,
875 #endif
876 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
877 {"copyindent", "ci", P_BOOL|P_VI_DEF|P_VIM,
878 (char_u *)&p_ci, PV_CI,
879 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
880 {"cpoptions", "cpo", P_STRING|P_VIM|P_RALL|P_FLAGLIST,
881 (char_u *)&p_cpo, PV_NONE,
882 {(char_u *)CPO_VI, (char_u *)CPO_VIM}
883 SCRIPTID_INIT},
884 {"cscopepathcomp", "cspc", P_NUM|P_VI_DEF|P_VIM,
885 #ifdef FEAT_CSCOPE
886 (char_u *)&p_cspc, PV_NONE,
887 #else
888 (char_u *)NULL, PV_NONE,
889 #endif
890 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
891 {"cscopeprg", "csprg", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
892 #ifdef FEAT_CSCOPE
893 (char_u *)&p_csprg, PV_NONE,
894 {(char_u *)"cscope", (char_u *)0L}
895 #else
896 (char_u *)NULL, PV_NONE,
897 {(char_u *)0L, (char_u *)0L}
898 #endif
899 SCRIPTID_INIT},
900 {"cscopequickfix", "csqf", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
901 #if defined(FEAT_CSCOPE) && defined(FEAT_QUICKFIX)
902 (char_u *)&p_csqf, PV_NONE,
903 {(char_u *)"", (char_u *)0L}
904 #else
905 (char_u *)NULL, PV_NONE,
906 {(char_u *)0L, (char_u *)0L}
907 #endif
908 SCRIPTID_INIT},
909 {"cscopetag", "cst", P_BOOL|P_VI_DEF|P_VIM,
910 #ifdef FEAT_CSCOPE
911 (char_u *)&p_cst, PV_NONE,
912 #else
913 (char_u *)NULL, PV_NONE,
914 #endif
915 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
916 {"cscopetagorder", "csto", P_NUM|P_VI_DEF|P_VIM,
917 #ifdef FEAT_CSCOPE
918 (char_u *)&p_csto, PV_NONE,
919 #else
920 (char_u *)NULL, PV_NONE,
921 #endif
922 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
923 {"cscopeverbose", "csverb", P_BOOL|P_VI_DEF|P_VIM,
924 #ifdef FEAT_CSCOPE
925 (char_u *)&p_csverbose, PV_NONE,
926 #else
927 (char_u *)NULL, PV_NONE,
928 #endif
929 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
930 {"cursorcolumn", "cuc", P_BOOL|P_VI_DEF|P_RWIN,
931 #ifdef FEAT_SYN_HL
932 (char_u *)VAR_WIN, PV_CUC,
933 #else
934 (char_u *)NULL, PV_NONE,
935 #endif
936 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
937 {"cursorline", "cul", P_BOOL|P_VI_DEF|P_RWIN,
938 #ifdef FEAT_SYN_HL
939 (char_u *)VAR_WIN, PV_CUL,
940 #else
941 (char_u *)NULL, PV_NONE,
942 #endif
943 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
944 {"debug", NULL, P_STRING|P_VI_DEF,
945 (char_u *)&p_debug, PV_NONE,
946 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
947 {"define", "def", P_STRING|P_ALLOCED|P_VI_DEF,
948 #ifdef FEAT_FIND_ID
949 (char_u *)&p_def, PV_DEF,
950 {(char_u *)"^\\s*#\\s*define", (char_u *)0L}
951 #else
952 (char_u *)NULL, PV_NONE,
953 {(char_u *)NULL, (char_u *)0L}
954 #endif
955 SCRIPTID_INIT},
956 {"delcombine", "deco", P_BOOL|P_VI_DEF|P_VIM,
957 #ifdef FEAT_MBYTE
958 (char_u *)&p_deco, PV_NONE,
959 #else
960 (char_u *)NULL, PV_NONE,
961 #endif
962 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
963 {"dictionary", "dict", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
964 #ifdef FEAT_INS_EXPAND
965 (char_u *)&p_dict, PV_DICT,
966 #else
967 (char_u *)NULL, PV_NONE,
968 #endif
969 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
970 {"diff", NULL, P_BOOL|P_VI_DEF|P_RWIN|P_NOGLOB,
971 #ifdef FEAT_DIFF
972 (char_u *)VAR_WIN, PV_DIFF,
973 #else
974 (char_u *)NULL, PV_NONE,
975 #endif
976 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
977 {"diffexpr", "dex", P_STRING|P_VI_DEF|P_SECURE,
978 #if defined(FEAT_DIFF) && defined(FEAT_EVAL)
979 (char_u *)&p_dex, PV_NONE,
980 {(char_u *)"", (char_u *)0L}
981 #else
982 (char_u *)NULL, PV_NONE,
983 {(char_u *)0L, (char_u *)0L}
984 #endif
985 SCRIPTID_INIT},
986 {"diffopt", "dip", P_STRING|P_ALLOCED|P_VI_DEF|P_RWIN|P_COMMA|P_NODUP,
987 #ifdef FEAT_DIFF
988 (char_u *)&p_dip, PV_NONE,
989 {(char_u *)"filler", (char_u *)NULL}
990 #else
991 (char_u *)NULL, PV_NONE,
992 {(char_u *)"", (char_u *)NULL}
993 #endif
994 SCRIPTID_INIT},
995 {"digraph", "dg", P_BOOL|P_VI_DEF|P_VIM,
996 #ifdef FEAT_DIGRAPHS
997 (char_u *)&p_dg, PV_NONE,
998 #else
999 (char_u *)NULL, PV_NONE,
1000 #endif
1001 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1002 {"directory", "dir", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP|P_SECURE,
1003 (char_u *)&p_dir, PV_NONE,
1004 {(char_u *)DFLT_DIR, (char_u *)0L} SCRIPTID_INIT},
1005 {"display", "dy", P_STRING|P_VI_DEF|P_COMMA|P_RALL|P_NODUP,
1006 (char_u *)&p_dy, PV_NONE,
1007 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1008 {"eadirection", "ead", P_STRING|P_VI_DEF,
1009 #ifdef FEAT_VERTSPLIT
1010 (char_u *)&p_ead, PV_NONE,
1011 {(char_u *)"both", (char_u *)0L}
1012 #else
1013 (char_u *)NULL, PV_NONE,
1014 {(char_u *)NULL, (char_u *)0L}
1015 #endif
1016 SCRIPTID_INIT},
1017 {"edcompatible","ed", P_BOOL|P_VI_DEF,
1018 (char_u *)&p_ed, PV_NONE,
1019 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1020 {"encoding", "enc", P_STRING|P_VI_DEF|P_RCLR,
1021 #ifdef FEAT_MBYTE
1022 (char_u *)&p_enc, PV_NONE,
1023 {(char_u *)ENC_DFLT, (char_u *)0L}
1024 #else
1025 (char_u *)NULL, PV_NONE,
1026 {(char_u *)0L, (char_u *)0L}
1027 #endif
1028 SCRIPTID_INIT},
1029 {"endofline", "eol", P_BOOL|P_NO_MKRC|P_VI_DEF|P_RSTAT,
1030 (char_u *)&p_eol, PV_EOL,
1031 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1032 {"equalalways", "ea", P_BOOL|P_VI_DEF|P_RALL,
1033 (char_u *)&p_ea, PV_NONE,
1034 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1035 {"equalprg", "ep", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1036 (char_u *)&p_ep, PV_EP,
1037 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1038 {"errorbells", "eb", P_BOOL|P_VI_DEF,
1039 (char_u *)&p_eb, PV_NONE,
1040 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1041 {"errorfile", "ef", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1042 #ifdef FEAT_QUICKFIX
1043 (char_u *)&p_ef, PV_NONE,
1044 {(char_u *)DFLT_ERRORFILE, (char_u *)0L}
1045 #else
1046 (char_u *)NULL, PV_NONE,
1047 {(char_u *)NULL, (char_u *)0L}
1048 #endif
1049 SCRIPTID_INIT},
1050 {"errorformat", "efm", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1051 #ifdef FEAT_QUICKFIX
1052 (char_u *)&p_efm, PV_EFM,
1053 {(char_u *)DFLT_EFM, (char_u *)0L}
1054 #else
1055 (char_u *)NULL, PV_NONE,
1056 {(char_u *)NULL, (char_u *)0L}
1057 #endif
1058 SCRIPTID_INIT},
1059 {"esckeys", "ek", P_BOOL|P_VIM,
1060 (char_u *)&p_ek, PV_NONE,
1061 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
1062 {"eventignore", "ei", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1063 #ifdef FEAT_AUTOCMD
1064 (char_u *)&p_ei, PV_NONE,
1065 #else
1066 (char_u *)NULL, PV_NONE,
1067 #endif
1068 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1069 {"expandtab", "et", P_BOOL|P_VI_DEF|P_VIM,
1070 (char_u *)&p_et, PV_ET,
1071 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1072 {"exrc", "ex", P_BOOL|P_VI_DEF|P_SECURE,
1073 (char_u *)&p_exrc, PV_NONE,
1074 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1075 {"fileencoding","fenc", P_STRING|P_ALLOCED|P_VI_DEF|P_RSTAT|P_RBUF|P_NO_MKRC,
1076 #ifdef FEAT_MBYTE
1077 (char_u *)&p_fenc, PV_FENC,
1078 {(char_u *)"", (char_u *)0L}
1079 #else
1080 (char_u *)NULL, PV_NONE,
1081 {(char_u *)0L, (char_u *)0L}
1082 #endif
1083 SCRIPTID_INIT},
1084 {"fileencodings","fencs", P_STRING|P_VI_DEF|P_COMMA,
1085 #ifdef FEAT_MBYTE
1086 (char_u *)&p_fencs, PV_NONE,
1087 {(char_u *)"ucs-bom", (char_u *)0L}
1088 #else
1089 (char_u *)NULL, PV_NONE,
1090 {(char_u *)0L, (char_u *)0L}
1091 #endif
1092 SCRIPTID_INIT},
1093 {"fileformat", "ff", P_STRING|P_ALLOCED|P_VI_DEF|P_RSTAT|P_NO_MKRC,
1094 (char_u *)&p_ff, PV_FF,
1095 {(char_u *)DFLT_FF, (char_u *)0L} SCRIPTID_INIT},
1096 {"fileformats", "ffs", P_STRING|P_VIM|P_COMMA|P_NODUP,
1097 (char_u *)&p_ffs, PV_NONE,
1098 {(char_u *)DFLT_FFS_VI, (char_u *)DFLT_FFS_VIM}
1099 SCRIPTID_INIT},
1100 {"filetype", "ft", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB|P_NFNAME,
1101 #ifdef FEAT_AUTOCMD
1102 (char_u *)&p_ft, PV_FT,
1103 {(char_u *)"", (char_u *)0L}
1104 #else
1105 (char_u *)NULL, PV_NONE,
1106 {(char_u *)0L, (char_u *)0L}
1107 #endif
1108 SCRIPTID_INIT},
1109 {"fillchars", "fcs", P_STRING|P_VI_DEF|P_RALL|P_COMMA|P_NODUP,
1110 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
1111 (char_u *)&p_fcs, PV_NONE,
1112 {(char_u *)"vert:|,fold:-", (char_u *)0L}
1113 #else
1114 (char_u *)NULL, PV_NONE,
1115 {(char_u *)"", (char_u *)0L}
1116 #endif
1117 SCRIPTID_INIT},
1118 {"fkmap", "fk", P_BOOL|P_VI_DEF,
1119 #ifdef FEAT_FKMAP
1120 (char_u *)&p_fkmap, PV_NONE,
1121 #else
1122 (char_u *)NULL, PV_NONE,
1123 #endif
1124 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1125 {"flash", "fl", P_BOOL|P_VI_DEF,
1126 (char_u *)NULL, PV_NONE,
1127 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1128 #ifdef FEAT_FOLDING
1129 {"foldclose", "fcl", P_STRING|P_VI_DEF|P_COMMA|P_NODUP|P_RWIN,
1130 (char_u *)&p_fcl, PV_NONE,
1131 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1132 {"foldcolumn", "fdc", P_NUM|P_VI_DEF|P_RWIN,
1133 (char_u *)VAR_WIN, PV_FDC,
1134 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1135 {"foldenable", "fen", P_BOOL|P_VI_DEF|P_RWIN,
1136 (char_u *)VAR_WIN, PV_FEN,
1137 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1138 {"foldexpr", "fde", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1139 # ifdef FEAT_EVAL
1140 (char_u *)VAR_WIN, PV_FDE,
1141 {(char_u *)"0", (char_u *)NULL}
1142 # else
1143 (char_u *)NULL, PV_NONE,
1144 {(char_u *)NULL, (char_u *)0L}
1145 # endif
1146 SCRIPTID_INIT},
1147 {"foldignore", "fdi", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1148 (char_u *)VAR_WIN, PV_FDI,
1149 {(char_u *)"#", (char_u *)NULL} SCRIPTID_INIT},
1150 {"foldlevel", "fdl", P_NUM|P_VI_DEF|P_RWIN,
1151 (char_u *)VAR_WIN, PV_FDL,
1152 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
1153 {"foldlevelstart","fdls", P_NUM|P_VI_DEF,
1154 (char_u *)&p_fdls, PV_NONE,
1155 {(char_u *)-1L, (char_u *)0L} SCRIPTID_INIT},
1156 {"foldmarker", "fmr", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|
1157 P_RWIN|P_COMMA|P_NODUP,
1158 (char_u *)VAR_WIN, PV_FMR,
1159 {(char_u *)"{{{,}}}", (char_u *)NULL}
1160 SCRIPTID_INIT},
1161 {"foldmethod", "fdm", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1162 (char_u *)VAR_WIN, PV_FDM,
1163 {(char_u *)"manual", (char_u *)NULL} SCRIPTID_INIT},
1164 {"foldminlines","fml", P_NUM|P_VI_DEF|P_RWIN,
1165 (char_u *)VAR_WIN, PV_FML,
1166 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
1167 {"foldnestmax", "fdn", P_NUM|P_VI_DEF|P_RWIN,
1168 (char_u *)VAR_WIN, PV_FDN,
1169 {(char_u *)20L, (char_u *)0L} SCRIPTID_INIT},
1170 {"foldopen", "fdo", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1171 (char_u *)&p_fdo, PV_NONE,
1172 {(char_u *)"block,hor,mark,percent,quickfix,search,tag,undo",
1173 (char_u *)0L} SCRIPTID_INIT},
1174 {"foldtext", "fdt", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1175 # ifdef FEAT_EVAL
1176 (char_u *)VAR_WIN, PV_FDT,
1177 {(char_u *)"foldtext()", (char_u *)NULL}
1178 # else
1179 (char_u *)NULL, PV_NONE,
1180 {(char_u *)NULL, (char_u *)0L}
1181 # endif
1182 SCRIPTID_INIT},
1183 #endif
1184 {"formatexpr", "fex", P_STRING|P_ALLOCED|P_VI_DEF|P_VIM,
1185 #ifdef FEAT_EVAL
1186 (char_u *)&p_fex, PV_FEX,
1187 {(char_u *)"", (char_u *)0L}
1188 #else
1189 (char_u *)NULL, PV_NONE,
1190 {(char_u *)0L, (char_u *)0L}
1191 #endif
1192 SCRIPTID_INIT},
1193 {"formatoptions","fo", P_STRING|P_ALLOCED|P_VIM|P_FLAGLIST,
1194 (char_u *)&p_fo, PV_FO,
1195 {(char_u *)DFLT_FO_VI, (char_u *)DFLT_FO_VIM}
1196 SCRIPTID_INIT},
1197 {"formatlistpat","flp", P_STRING|P_ALLOCED|P_VI_DEF,
1198 (char_u *)&p_flp, PV_FLP,
1199 {(char_u *)"^\\s*\\d\\+[\\]:.)}\\t ]\\s*",
1200 (char_u *)0L} SCRIPTID_INIT},
1201 {"formatprg", "fp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1202 (char_u *)&p_fp, PV_NONE,
1203 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1204 {"fsync", "fs", P_BOOL|P_SECURE|P_VI_DEF,
1205 #ifdef HAVE_FSYNC
1206 (char_u *)&p_fs, PV_NONE,
1207 {(char_u *)TRUE, (char_u *)0L}
1208 #else
1209 (char_u *)NULL, PV_NONE,
1210 {(char_u *)FALSE, (char_u *)0L}
1211 #endif
1212 SCRIPTID_INIT},
1213 {"gdefault", "gd", P_BOOL|P_VI_DEF|P_VIM,
1214 (char_u *)&p_gd, PV_NONE,
1215 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1216 {"graphic", "gr", P_BOOL|P_VI_DEF,
1217 (char_u *)NULL, PV_NONE,
1218 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1219 {"grepformat", "gfm", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1220 #ifdef FEAT_QUICKFIX
1221 (char_u *)&p_gefm, PV_NONE,
1222 {(char_u *)DFLT_GREPFORMAT, (char_u *)0L}
1223 #else
1224 (char_u *)NULL, PV_NONE,
1225 {(char_u *)NULL, (char_u *)0L}
1226 #endif
1227 SCRIPTID_INIT},
1228 {"grepprg", "gp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1229 #ifdef FEAT_QUICKFIX
1230 (char_u *)&p_gp, PV_GP,
1232 # ifdef WIN3264
1233 /* may be changed to "grep -n" in os_win32.c */
1234 (char_u *)"findstr /n",
1235 # else
1236 # ifdef UNIX
1237 /* Add an extra file name so that grep will always
1238 * insert a file name in the match line. */
1239 (char_u *)"grep -n $* /dev/null",
1240 # else
1241 # ifdef VMS
1242 (char_u *)"SEARCH/NUMBERS ",
1243 # else
1244 (char_u *)"grep -n ",
1245 # endif
1246 # endif
1247 # endif
1248 (char_u *)0L}
1249 #else
1250 (char_u *)NULL, PV_NONE,
1251 {(char_u *)NULL, (char_u *)0L}
1252 #endif
1253 SCRIPTID_INIT},
1254 {"guicursor", "gcr", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1255 #ifdef CURSOR_SHAPE
1256 (char_u *)&p_guicursor, PV_NONE,
1258 # ifdef FEAT_GUI
1259 (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",
1260 # else /* MSDOS or Win32 console */
1261 (char_u *)"n-v-c:block,o:hor50,i-ci:hor15,r-cr:hor30,sm:block",
1262 # endif
1263 (char_u *)0L}
1264 #else
1265 (char_u *)NULL, PV_NONE,
1266 {(char_u *)NULL, (char_u *)0L}
1267 #endif
1268 SCRIPTID_INIT},
1269 {"guifont", "gfn", P_STRING|P_VI_DEF|P_RCLR|P_COMMA|P_NODUP,
1270 #ifdef FEAT_GUI
1271 (char_u *)&p_guifont, PV_NONE,
1272 {(char_u *)"", (char_u *)0L}
1273 #else
1274 (char_u *)NULL, PV_NONE,
1275 {(char_u *)NULL, (char_u *)0L}
1276 #endif
1277 SCRIPTID_INIT},
1278 {"guifontset", "gfs", P_STRING|P_VI_DEF|P_RCLR|P_COMMA,
1279 #if defined(FEAT_GUI) && defined(FEAT_XFONTSET)
1280 (char_u *)&p_guifontset, PV_NONE,
1281 {(char_u *)"", (char_u *)0L}
1282 #else
1283 (char_u *)NULL, PV_NONE,
1284 {(char_u *)NULL, (char_u *)0L}
1285 #endif
1286 SCRIPTID_INIT},
1287 {"guifontwide", "gfw", P_STRING|P_VI_DEF|P_RCLR|P_COMMA|P_NODUP,
1288 #if defined(FEAT_GUI) && defined(FEAT_MBYTE)
1289 (char_u *)&p_guifontwide, PV_NONE,
1290 {(char_u *)"", (char_u *)0L}
1291 #else
1292 (char_u *)NULL, PV_NONE,
1293 {(char_u *)NULL, (char_u *)0L}
1294 #endif
1295 SCRIPTID_INIT},
1296 {"guiheadroom", "ghr", P_NUM|P_VI_DEF,
1297 #if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11)
1298 (char_u *)&p_ghr, PV_NONE,
1299 #else
1300 (char_u *)NULL, PV_NONE,
1301 #endif
1302 {(char_u *)50L, (char_u *)0L} SCRIPTID_INIT},
1303 {"guioptions", "go", P_STRING|P_VI_DEF|P_RALL|P_FLAGLIST,
1304 #if defined(FEAT_GUI)
1305 (char_u *)&p_go, PV_NONE,
1306 # if defined(UNIX) && !defined(MACOS)
1307 {(char_u *)"aegimrLtT", (char_u *)0L}
1308 # else
1309 {(char_u *)"egmrLtT", (char_u *)0L}
1310 # endif
1311 #else
1312 (char_u *)NULL, PV_NONE,
1313 {(char_u *)NULL, (char_u *)0L}
1314 #endif
1315 SCRIPTID_INIT},
1316 {"guipty", NULL, P_BOOL|P_VI_DEF,
1317 #if defined(FEAT_GUI)
1318 (char_u *)&p_guipty, PV_NONE,
1319 #else
1320 (char_u *)NULL, PV_NONE,
1321 #endif
1322 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1323 {"guitablabel", "gtl", P_STRING|P_VI_DEF|P_RWIN,
1324 #if defined(FEAT_GUI_TABLINE)
1325 (char_u *)&p_gtl, PV_NONE,
1326 {(char_u *)"", (char_u *)0L}
1327 #else
1328 (char_u *)NULL, PV_NONE,
1329 {(char_u *)NULL, (char_u *)0L}
1330 #endif
1331 SCRIPTID_INIT},
1332 {"guitabtooltip", "gtt", P_STRING|P_VI_DEF|P_RWIN,
1333 #if defined(FEAT_GUI_TABLINE)
1334 (char_u *)&p_gtt, PV_NONE,
1335 {(char_u *)"", (char_u *)0L}
1336 #else
1337 (char_u *)NULL, PV_NONE,
1338 {(char_u *)NULL, (char_u *)0L}
1339 #endif
1340 SCRIPTID_INIT},
1341 {"hardtabs", "ht", P_NUM|P_VI_DEF,
1342 (char_u *)NULL, PV_NONE,
1343 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
1344 {"helpfile", "hf", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1345 (char_u *)&p_hf, PV_NONE,
1346 {(char_u *)DFLT_HELPFILE, (char_u *)0L}
1347 SCRIPTID_INIT},
1348 {"helpheight", "hh", P_NUM|P_VI_DEF,
1349 #ifdef FEAT_WINDOWS
1350 (char_u *)&p_hh, PV_NONE,
1351 #else
1352 (char_u *)NULL, PV_NONE,
1353 #endif
1354 {(char_u *)20L, (char_u *)0L} SCRIPTID_INIT},
1355 {"helplang", "hlg", P_STRING|P_VI_DEF|P_COMMA,
1356 #ifdef FEAT_MULTI_LANG
1357 (char_u *)&p_hlg, PV_NONE,
1358 {(char_u *)"", (char_u *)0L}
1359 #else
1360 (char_u *)NULL, PV_NONE,
1361 {(char_u *)0L, (char_u *)0L}
1362 #endif
1363 SCRIPTID_INIT},
1364 {"hidden", "hid", P_BOOL|P_VI_DEF,
1365 (char_u *)&p_hid, PV_NONE,
1366 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1367 {"highlight", "hl", P_STRING|P_VI_DEF|P_RCLR|P_COMMA|P_NODUP,
1368 (char_u *)&p_hl, PV_NONE,
1369 {(char_u *)HIGHLIGHT_INIT, (char_u *)0L}
1370 SCRIPTID_INIT},
1371 {"history", "hi", P_NUM|P_VIM,
1372 (char_u *)&p_hi, PV_NONE,
1373 {(char_u *)0L, (char_u *)20L} SCRIPTID_INIT},
1374 {"hkmap", "hk", P_BOOL|P_VI_DEF|P_VIM,
1375 #ifdef FEAT_RIGHTLEFT
1376 (char_u *)&p_hkmap, PV_NONE,
1377 #else
1378 (char_u *)NULL, PV_NONE,
1379 #endif
1380 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1381 {"hkmapp", "hkp", P_BOOL|P_VI_DEF|P_VIM,
1382 #ifdef FEAT_RIGHTLEFT
1383 (char_u *)&p_hkmapp, PV_NONE,
1384 #else
1385 (char_u *)NULL, PV_NONE,
1386 #endif
1387 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1388 {"hlsearch", "hls", P_BOOL|P_VI_DEF|P_VIM|P_RALL,
1389 (char_u *)&p_hls, PV_NONE,
1390 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1391 {"icon", NULL, P_BOOL|P_VI_DEF,
1392 #ifdef FEAT_TITLE
1393 (char_u *)&p_icon, PV_NONE,
1394 #else
1395 (char_u *)NULL, PV_NONE,
1396 #endif
1397 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1398 {"iconstring", NULL, P_STRING|P_VI_DEF,
1399 #ifdef FEAT_TITLE
1400 (char_u *)&p_iconstring, PV_NONE,
1401 #else
1402 (char_u *)NULL, PV_NONE,
1403 #endif
1404 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1405 {"ignorecase", "ic", P_BOOL|P_VI_DEF,
1406 (char_u *)&p_ic, PV_NONE,
1407 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1408 {"imactivatekey","imak",P_STRING|P_VI_DEF,
1409 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
1410 (char_u *)&p_imak, PV_NONE,
1411 #else
1412 (char_u *)NULL, PV_NONE,
1413 #endif
1414 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1415 {"imcmdline", "imc", P_BOOL|P_VI_DEF,
1416 #ifdef USE_IM_CONTROL
1417 (char_u *)&p_imcmdline, PV_NONE,
1418 #else
1419 (char_u *)NULL, PV_NONE,
1420 #endif
1421 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1422 {"imdisable", "imd", P_BOOL|P_VI_DEF,
1423 #ifdef USE_IM_CONTROL
1424 (char_u *)&p_imdisable, PV_NONE,
1425 #else
1426 (char_u *)NULL, PV_NONE,
1427 #endif
1428 #ifdef __sgi
1429 {(char_u *)TRUE, (char_u *)0L}
1430 #else
1431 {(char_u *)FALSE, (char_u *)0L}
1432 #endif
1433 SCRIPTID_INIT},
1434 {"iminsert", "imi", P_NUM|P_VI_DEF,
1435 (char_u *)&p_iminsert, PV_IMI,
1436 #ifdef B_IMODE_IM
1437 {(char_u *)B_IMODE_IM, (char_u *)0L}
1438 #else
1439 {(char_u *)B_IMODE_NONE, (char_u *)0L}
1440 #endif
1441 SCRIPTID_INIT},
1442 {"imsearch", "ims", P_NUM|P_VI_DEF,
1443 (char_u *)&p_imsearch, PV_IMS,
1444 #ifdef B_IMODE_IM
1445 {(char_u *)B_IMODE_IM, (char_u *)0L}
1446 #else
1447 {(char_u *)B_IMODE_NONE, (char_u *)0L}
1448 #endif
1449 SCRIPTID_INIT},
1450 {"include", "inc", P_STRING|P_ALLOCED|P_VI_DEF,
1451 #ifdef FEAT_FIND_ID
1452 (char_u *)&p_inc, PV_INC,
1453 {(char_u *)"^\\s*#\\s*include", (char_u *)0L}
1454 #else
1455 (char_u *)NULL, PV_NONE,
1456 {(char_u *)0L, (char_u *)0L}
1457 #endif
1458 SCRIPTID_INIT},
1459 {"includeexpr", "inex", P_STRING|P_ALLOCED|P_VI_DEF,
1460 #if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
1461 (char_u *)&p_inex, PV_INEX,
1462 {(char_u *)"", (char_u *)0L}
1463 #else
1464 (char_u *)NULL, PV_NONE,
1465 {(char_u *)0L, (char_u *)0L}
1466 #endif
1467 SCRIPTID_INIT},
1468 {"incsearch", "is", P_BOOL|P_VI_DEF|P_VIM,
1469 (char_u *)&p_is, PV_NONE,
1470 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1471 {"indentexpr", "inde", P_STRING|P_ALLOCED|P_VI_DEF|P_VIM,
1472 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
1473 (char_u *)&p_inde, PV_INDE,
1474 {(char_u *)"", (char_u *)0L}
1475 #else
1476 (char_u *)NULL, PV_NONE,
1477 {(char_u *)0L, (char_u *)0L}
1478 #endif
1479 SCRIPTID_INIT},
1480 {"indentkeys", "indk", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
1481 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
1482 (char_u *)&p_indk, PV_INDK,
1483 {(char_u *)"0{,0},:,0#,!^F,o,O,e", (char_u *)0L}
1484 #else
1485 (char_u *)NULL, PV_NONE,
1486 {(char_u *)0L, (char_u *)0L}
1487 #endif
1488 SCRIPTID_INIT},
1489 {"infercase", "inf", P_BOOL|P_VI_DEF,
1490 (char_u *)&p_inf, PV_INF,
1491 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1492 {"insertmode", "im", P_BOOL|P_VI_DEF|P_VIM,
1493 (char_u *)&p_im, PV_NONE,
1494 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1495 {"isfname", "isf", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1496 (char_u *)&p_isf, PV_NONE,
1498 #ifdef BACKSLASH_IN_FILENAME
1499 /* Excluded are: & and ^ are special in cmd.exe
1500 * ( and ) are used in text separating fnames */
1501 (char_u *)"@,48-57,/,\\,.,-,_,+,,,#,$,%,{,},[,],:,@-@,!,~,=",
1502 #else
1503 # ifdef AMIGA
1504 (char_u *)"@,48-57,/,.,-,_,+,,,$,:",
1505 # else
1506 # ifdef VMS
1507 (char_u *)"@,48-57,/,.,-,_,+,,,#,$,%,<,>,[,],:,;,~",
1508 # else /* UNIX et al. */
1509 # ifdef EBCDIC
1510 (char_u *)"@,240-249,/,.,-,_,+,,,#,$,%,~,=",
1511 # else
1512 (char_u *)"@,48-57,/,.,-,_,+,,,#,$,%,~,=",
1513 # endif
1514 # endif
1515 # endif
1516 #endif
1517 (char_u *)0L} SCRIPTID_INIT},
1518 {"isident", "isi", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1519 (char_u *)&p_isi, PV_NONE,
1521 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
1522 (char_u *)"@,48-57,_,128-167,224-235",
1523 #else
1524 # ifdef EBCDIC
1525 /* TODO: EBCDIC Check this! @ == isalpha()*/
1526 (char_u *)"@,240-249,_,66-73,81-89,98-105,"
1527 "112-120,128,140-142,156,158,172,"
1528 "174,186,191,203-207,219-225,235-239,"
1529 "251-254",
1530 # else
1531 (char_u *)"@,48-57,_,192-255",
1532 # endif
1533 #endif
1534 (char_u *)0L} SCRIPTID_INIT},
1535 {"iskeyword", "isk", P_STRING|P_ALLOCED|P_VIM|P_COMMA|P_NODUP,
1536 (char_u *)&p_isk, PV_ISK,
1538 #ifdef EBCDIC
1539 (char_u *)"@,240-249,_",
1540 /* TODO: EBCDIC Check this! @ == isalpha()*/
1541 (char_u *)"@,240-249,_,66-73,81-89,98-105,"
1542 "112-120,128,140-142,156,158,172,"
1543 "174,186,191,203-207,219-225,235-239,"
1544 "251-254",
1545 #else
1546 (char_u *)"@,48-57,_",
1547 # if defined(MSDOS) || defined(MSWIN) || defined(OS2)
1548 (char_u *)"@,48-57,_,128-167,224-235"
1549 # else
1550 ISK_LATIN1
1551 # endif
1552 #endif
1553 } SCRIPTID_INIT},
1554 {"isprint", "isp", P_STRING|P_VI_DEF|P_RALL|P_COMMA|P_NODUP,
1555 (char_u *)&p_isp, PV_NONE,
1557 #if defined(MSDOS) || defined(MSWIN) || defined(OS2) \
1558 || (defined(MACOS) && !defined(MACOS_X)) \
1559 || defined(VMS)
1560 (char_u *)"@,~-255",
1561 #else
1562 # ifdef EBCDIC
1563 /* all chars above 63 are printable */
1564 (char_u *)"63-255",
1565 # else
1566 ISP_LATIN1,
1567 # endif
1568 #endif
1569 (char_u *)0L} SCRIPTID_INIT},
1570 {"joinspaces", "js", P_BOOL|P_VI_DEF|P_VIM,
1571 (char_u *)&p_js, PV_NONE,
1572 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1573 {"key", NULL, P_STRING|P_ALLOCED|P_VI_DEF|P_NO_MKRC,
1574 #ifdef FEAT_CRYPT
1575 (char_u *)&p_key, PV_KEY,
1576 {(char_u *)"", (char_u *)0L}
1577 #else
1578 (char_u *)NULL, PV_NONE,
1579 {(char_u *)0L, (char_u *)0L}
1580 #endif
1581 SCRIPTID_INIT},
1582 {"keymap", "kmp", P_STRING|P_ALLOCED|P_VI_DEF|P_RBUF|P_RSTAT|P_NFNAME|P_PRI_MKRC,
1583 #ifdef FEAT_KEYMAP
1584 (char_u *)&p_keymap, PV_KMAP,
1585 {(char_u *)"", (char_u *)0L}
1586 #else
1587 (char_u *)NULL, PV_NONE,
1588 {(char_u *)"", (char_u *)0L}
1589 #endif
1590 SCRIPTID_INIT},
1591 {"keymodel", "km", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1592 #ifdef FEAT_VISUAL
1593 (char_u *)&p_km, PV_NONE,
1594 #else
1595 (char_u *)NULL, PV_NONE,
1596 #endif
1597 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1598 {"keywordprg", "kp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1599 (char_u *)&p_kp, PV_KP,
1601 #if defined(MSDOS) || defined(MSWIN)
1602 (char_u *)":help",
1603 #else
1604 #ifdef VMS
1605 (char_u *)"help",
1606 #else
1607 # if defined(OS2)
1608 (char_u *)"view /",
1609 # else
1610 # ifdef USEMAN_S
1611 (char_u *)"man -s",
1612 # else
1613 (char_u *)"man",
1614 # endif
1615 # endif
1616 #endif
1617 #endif
1618 (char_u *)0L} SCRIPTID_INIT},
1619 {"langmap", "lmap", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1620 #ifdef FEAT_LANGMAP
1621 (char_u *)&p_langmap, PV_NONE,
1622 {(char_u *)"", /* unmatched } */
1623 #else
1624 (char_u *)NULL, PV_NONE,
1625 {(char_u *)NULL,
1626 #endif
1627 (char_u *)0L} SCRIPTID_INIT},
1628 {"langmenu", "lm", P_STRING|P_VI_DEF|P_NFNAME,
1629 #if defined(FEAT_MENU) && defined(FEAT_MULTI_LANG)
1630 (char_u *)&p_lm, PV_NONE,
1631 #else
1632 (char_u *)NULL, PV_NONE,
1633 #endif
1634 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1635 {"laststatus", "ls", P_NUM|P_VI_DEF|P_RALL,
1636 #ifdef FEAT_WINDOWS
1637 (char_u *)&p_ls, PV_NONE,
1638 #else
1639 (char_u *)NULL, PV_NONE,
1640 #endif
1641 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
1642 {"lazyredraw", "lz", P_BOOL|P_VI_DEF,
1643 (char_u *)&p_lz, PV_NONE,
1644 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1645 {"linebreak", "lbr", P_BOOL|P_VI_DEF|P_RWIN,
1646 #ifdef FEAT_LINEBREAK
1647 (char_u *)VAR_WIN, PV_LBR,
1648 #else
1649 (char_u *)NULL, PV_NONE,
1650 #endif
1651 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1652 {"lines", NULL, P_NUM|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RCLR,
1653 (char_u *)&Rows, PV_NONE,
1655 #if defined(MSDOS) || defined(WIN3264) || defined(OS2)
1656 (char_u *)25L,
1657 #else
1658 (char_u *)24L,
1659 #endif
1660 (char_u *)0L} SCRIPTID_INIT},
1661 {"linespace", "lsp", P_NUM|P_VI_DEF|P_RCLR,
1662 #ifdef FEAT_GUI
1663 (char_u *)&p_linespace, PV_NONE,
1664 #else
1665 (char_u *)NULL, PV_NONE,
1666 #endif
1667 #ifdef FEAT_GUI_W32
1668 {(char_u *)1L, (char_u *)0L}
1669 #else
1670 {(char_u *)0L, (char_u *)0L}
1671 #endif
1672 SCRIPTID_INIT},
1673 {"lisp", NULL, P_BOOL|P_VI_DEF,
1674 #ifdef FEAT_LISP
1675 (char_u *)&p_lisp, PV_LISP,
1676 #else
1677 (char_u *)NULL, PV_NONE,
1678 #endif
1679 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1680 {"lispwords", "lw", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1681 #ifdef FEAT_LISP
1682 (char_u *)&p_lispwords, PV_NONE,
1683 {(char_u *)LISPWORD_VALUE, (char_u *)0L}
1684 #else
1685 (char_u *)NULL, PV_NONE,
1686 {(char_u *)"", (char_u *)0L}
1687 #endif
1688 SCRIPTID_INIT},
1689 {"list", NULL, P_BOOL|P_VI_DEF|P_RWIN,
1690 (char_u *)VAR_WIN, PV_LIST,
1691 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1692 {"listchars", "lcs", P_STRING|P_VI_DEF|P_RALL|P_COMMA|P_NODUP,
1693 (char_u *)&p_lcs, PV_NONE,
1694 {(char_u *)"eol:$", (char_u *)0L} SCRIPTID_INIT},
1695 {"loadplugins", "lpl", P_BOOL|P_VI_DEF,
1696 (char_u *)&p_lpl, PV_NONE,
1697 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1698 #ifdef FEAT_GUI_MAC
1699 {"macatsui", NULL, P_BOOL|P_VI_DEF|P_RCLR,
1700 (char_u *)&p_macatsui, PV_NONE,
1701 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1702 #endif
1703 {"magic", NULL, P_BOOL|P_VI_DEF,
1704 (char_u *)&p_magic, PV_NONE,
1705 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1706 {"makeef", "mef", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1707 #ifdef FEAT_QUICKFIX
1708 (char_u *)&p_mef, PV_NONE,
1709 {(char_u *)"", (char_u *)0L}
1710 #else
1711 (char_u *)NULL, PV_NONE,
1712 {(char_u *)NULL, (char_u *)0L}
1713 #endif
1714 SCRIPTID_INIT},
1715 {"makeprg", "mp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1716 #ifdef FEAT_QUICKFIX
1717 (char_u *)&p_mp, PV_MP,
1718 # ifdef VMS
1719 {(char_u *)"MMS", (char_u *)0L}
1720 # else
1721 {(char_u *)"make", (char_u *)0L}
1722 # endif
1723 #else
1724 (char_u *)NULL, PV_NONE,
1725 {(char_u *)NULL, (char_u *)0L}
1726 #endif
1727 SCRIPTID_INIT},
1728 {"matchpairs", "mps", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
1729 (char_u *)&p_mps, PV_MPS,
1730 {(char_u *)"(:),{:},[:]", (char_u *)0L}
1731 SCRIPTID_INIT},
1732 {"matchtime", "mat", P_NUM|P_VI_DEF,
1733 (char_u *)&p_mat, PV_NONE,
1734 {(char_u *)5L, (char_u *)0L} SCRIPTID_INIT},
1735 {"maxcombine", "mco", P_NUM|P_VI_DEF,
1736 #ifdef FEAT_MBYTE
1737 (char_u *)&p_mco, PV_NONE,
1738 #else
1739 (char_u *)NULL, PV_NONE,
1740 #endif
1741 {(char_u *)2, (char_u *)0L} SCRIPTID_INIT},
1742 {"maxfuncdepth", "mfd", P_NUM|P_VI_DEF,
1743 #ifdef FEAT_EVAL
1744 (char_u *)&p_mfd, PV_NONE,
1745 #else
1746 (char_u *)NULL, PV_NONE,
1747 #endif
1748 {(char_u *)100L, (char_u *)0L} SCRIPTID_INIT},
1749 {"maxmapdepth", "mmd", P_NUM|P_VI_DEF,
1750 (char_u *)&p_mmd, PV_NONE,
1751 {(char_u *)1000L, (char_u *)0L} SCRIPTID_INIT},
1752 {"maxmem", "mm", P_NUM|P_VI_DEF,
1753 (char_u *)&p_mm, PV_NONE,
1754 {(char_u *)DFLT_MAXMEM, (char_u *)0L}
1755 SCRIPTID_INIT},
1756 {"maxmempattern","mmp", P_NUM|P_VI_DEF,
1757 (char_u *)&p_mmp, PV_NONE,
1758 {(char_u *)1000L, (char_u *)0L} SCRIPTID_INIT},
1759 {"maxmemtot", "mmt", P_NUM|P_VI_DEF,
1760 (char_u *)&p_mmt, PV_NONE,
1761 {(char_u *)DFLT_MAXMEMTOT, (char_u *)0L}
1762 SCRIPTID_INIT},
1763 {"menuitems", "mis", P_NUM|P_VI_DEF,
1764 #ifdef FEAT_MENU
1765 (char_u *)&p_mis, PV_NONE,
1766 #else
1767 (char_u *)NULL, PV_NONE,
1768 #endif
1769 {(char_u *)25L, (char_u *)0L} SCRIPTID_INIT},
1770 {"mesg", NULL, P_BOOL|P_VI_DEF,
1771 (char_u *)NULL, PV_NONE,
1772 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1773 {"mkspellmem", "msm", P_STRING|P_VI_DEF|P_EXPAND|P_SECURE,
1774 #ifdef FEAT_SPELL
1775 (char_u *)&p_msm, PV_NONE,
1776 {(char_u *)"460000,2000,500", (char_u *)0L}
1777 #else
1778 (char_u *)NULL, PV_NONE,
1779 {(char_u *)0L, (char_u *)0L}
1780 #endif
1781 SCRIPTID_INIT},
1782 {"modeline", "ml", P_BOOL|P_VIM,
1783 (char_u *)&p_ml, PV_ML,
1784 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
1785 {"modelines", "mls", P_NUM|P_VI_DEF,
1786 (char_u *)&p_mls, PV_NONE,
1787 {(char_u *)5L, (char_u *)0L} SCRIPTID_INIT},
1788 {"modifiable", "ma", P_BOOL|P_VI_DEF|P_NOGLOB,
1789 (char_u *)&p_ma, PV_MA,
1790 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1791 {"modified", "mod", P_BOOL|P_NO_MKRC|P_VI_DEF|P_RSTAT,
1792 (char_u *)&p_mod, PV_MOD,
1793 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1794 {"more", NULL, P_BOOL|P_VIM,
1795 (char_u *)&p_more, PV_NONE,
1796 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
1797 {"mouse", NULL, P_STRING|P_VI_DEF|P_FLAGLIST,
1798 (char_u *)&p_mouse, PV_NONE,
1800 #if defined(MSDOS) || defined(WIN3264)
1801 (char_u *)"a",
1802 #else
1803 (char_u *)"",
1804 #endif
1805 (char_u *)0L} SCRIPTID_INIT},
1806 {"mousefocus", "mousef", P_BOOL|P_VI_DEF,
1807 #ifdef FEAT_GUI
1808 (char_u *)&p_mousef, PV_NONE,
1809 #else
1810 (char_u *)NULL, PV_NONE,
1811 #endif
1812 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1813 {"mousehide", "mh", P_BOOL|P_VI_DEF,
1814 #ifdef FEAT_GUI
1815 (char_u *)&p_mh, PV_NONE,
1816 #else
1817 (char_u *)NULL, PV_NONE,
1818 #endif
1819 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1820 {"mousemodel", "mousem", P_STRING|P_VI_DEF,
1821 (char_u *)&p_mousem, PV_NONE,
1823 #if defined(MSDOS) || defined(MSWIN)
1824 (char_u *)"popup",
1825 #else
1826 # if defined(MACOS)
1827 (char_u *)"popup_setpos",
1828 # else
1829 (char_u *)"extend",
1830 # endif
1831 #endif
1832 (char_u *)0L} SCRIPTID_INIT},
1833 {"mouseshape", "mouses", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1834 #ifdef FEAT_MOUSESHAPE
1835 (char_u *)&p_mouseshape, PV_NONE,
1836 {(char_u *)"i-r:beam,s:updown,sd:udsizing,vs:leftright,vd:lrsizing,m:no,ml:up-arrow,v:rightup-arrow", (char_u *)0L}
1837 #else
1838 (char_u *)NULL, PV_NONE,
1839 {(char_u *)NULL, (char_u *)0L}
1840 #endif
1841 SCRIPTID_INIT},
1842 {"mousetime", "mouset", P_NUM|P_VI_DEF,
1843 (char_u *)&p_mouset, PV_NONE,
1844 {(char_u *)500L, (char_u *)0L} SCRIPTID_INIT},
1845 {"mzquantum", "mzq", P_NUM,
1846 #ifdef FEAT_MZSCHEME
1847 (char_u *)&p_mzq, PV_NONE,
1848 #else
1849 (char_u *)NULL, PV_NONE,
1850 #endif
1851 {(char_u *)100L, (char_u *)100L} SCRIPTID_INIT},
1852 {"novice", NULL, P_BOOL|P_VI_DEF,
1853 (char_u *)NULL, PV_NONE,
1854 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1855 {"nrformats", "nf", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
1856 (char_u *)&p_nf, PV_NF,
1857 {(char_u *)"octal,hex", (char_u *)0L}
1858 SCRIPTID_INIT},
1859 {"number", "nu", P_BOOL|P_VI_DEF|P_RWIN,
1860 (char_u *)VAR_WIN, PV_NU,
1861 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1862 {"numberwidth", "nuw", P_NUM|P_RWIN|P_VIM,
1863 #ifdef FEAT_LINEBREAK
1864 (char_u *)VAR_WIN, PV_NUW,
1865 #else
1866 (char_u *)NULL, PV_NONE,
1867 #endif
1868 {(char_u *)8L, (char_u *)4L} SCRIPTID_INIT},
1869 {"omnifunc", "ofu", P_STRING|P_ALLOCED|P_VI_DEF|P_SECURE,
1870 #ifdef FEAT_COMPL_FUNC
1871 (char_u *)&p_ofu, PV_OFU,
1872 {(char_u *)"", (char_u *)0L}
1873 #else
1874 (char_u *)NULL, PV_NONE,
1875 {(char_u *)0L, (char_u *)0L}
1876 #endif
1877 SCRIPTID_INIT},
1878 {"open", NULL, P_BOOL|P_VI_DEF,
1879 (char_u *)NULL, PV_NONE,
1880 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1881 {"opendevice", "odev", P_BOOL|P_VI_DEF,
1882 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
1883 (char_u *)&p_odev, PV_NONE,
1884 #else
1885 (char_u *)NULL, PV_NONE,
1886 #endif
1887 {(char_u *)FALSE, (char_u *)FALSE}
1888 SCRIPTID_INIT},
1889 {"operatorfunc", "opfunc", P_STRING|P_VI_DEF|P_SECURE,
1890 (char_u *)&p_opfunc, PV_NONE,
1891 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1892 {"optimize", "opt", P_BOOL|P_VI_DEF,
1893 (char_u *)NULL, PV_NONE,
1894 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1895 {"osfiletype", "oft", P_STRING|P_ALLOCED|P_VI_DEF,
1896 #ifdef FEAT_OSFILETYPE
1897 (char_u *)&p_oft, PV_OFT,
1898 {(char_u *)DFLT_OFT, (char_u *)0L}
1899 #else
1900 (char_u *)NULL, PV_NONE,
1901 {(char_u *)0L, (char_u *)0L}
1902 #endif
1903 SCRIPTID_INIT},
1904 {"paragraphs", "para", P_STRING|P_VI_DEF,
1905 (char_u *)&p_para, PV_NONE,
1906 {(char_u *)"IPLPPPQPP TPHPLIPpLpItpplpipbp",
1907 (char_u *)0L} SCRIPTID_INIT},
1908 {"paste", NULL, P_BOOL|P_VI_DEF|P_PRI_MKRC,
1909 (char_u *)&p_paste, PV_NONE,
1910 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1911 {"pastetoggle", "pt", P_STRING|P_VI_DEF,
1912 (char_u *)&p_pt, PV_NONE,
1913 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1914 {"patchexpr", "pex", P_STRING|P_VI_DEF|P_SECURE,
1915 #if defined(FEAT_DIFF) && defined(FEAT_EVAL)
1916 (char_u *)&p_pex, PV_NONE,
1917 {(char_u *)"", (char_u *)0L}
1918 #else
1919 (char_u *)NULL, PV_NONE,
1920 {(char_u *)0L, (char_u *)0L}
1921 #endif
1922 SCRIPTID_INIT},
1923 {"patchmode", "pm", P_STRING|P_VI_DEF|P_NFNAME,
1924 (char_u *)&p_pm, PV_NONE,
1925 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1926 {"path", "pa", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
1927 (char_u *)&p_path, PV_PATH,
1929 #if defined AMIGA || defined MSDOS || defined MSWIN
1930 (char_u *)".,,",
1931 #else
1932 # if defined(__EMX__)
1933 (char_u *)".,/emx/include,,",
1934 # else /* Unix, probably */
1935 (char_u *)".,/usr/include,,",
1936 # endif
1937 #endif
1938 (char_u *)0L} SCRIPTID_INIT},
1939 {"preserveindent", "pi", P_BOOL|P_VI_DEF|P_VIM,
1940 (char_u *)&p_pi, PV_PI,
1941 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1942 {"previewheight", "pvh", P_NUM|P_VI_DEF,
1943 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
1944 (char_u *)&p_pvh, PV_NONE,
1945 #else
1946 (char_u *)NULL, PV_NONE,
1947 #endif
1948 {(char_u *)12L, (char_u *)0L} SCRIPTID_INIT},
1949 {"previewwindow", "pvw", P_BOOL|P_VI_DEF|P_RSTAT|P_NOGLOB,
1950 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
1951 (char_u *)VAR_WIN, PV_PVW,
1952 #else
1953 (char_u *)NULL, PV_NONE,
1954 #endif
1955 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1956 {"printdevice", "pdev", P_STRING|P_VI_DEF|P_SECURE,
1957 #ifdef FEAT_PRINTER
1958 (char_u *)&p_pdev, PV_NONE,
1959 {(char_u *)"", (char_u *)0L}
1960 #else
1961 (char_u *)NULL, PV_NONE,
1962 {(char_u *)NULL, (char_u *)0L}
1963 #endif
1964 SCRIPTID_INIT},
1965 {"printencoding", "penc", P_STRING|P_VI_DEF,
1966 #ifdef FEAT_POSTSCRIPT
1967 (char_u *)&p_penc, PV_NONE,
1968 {(char_u *)"", (char_u *)0L}
1969 #else
1970 (char_u *)NULL, PV_NONE,
1971 {(char_u *)NULL, (char_u *)0L}
1972 #endif
1973 SCRIPTID_INIT},
1974 {"printexpr", "pexpr", P_STRING|P_VI_DEF,
1975 #ifdef FEAT_POSTSCRIPT
1976 (char_u *)&p_pexpr, PV_NONE,
1977 {(char_u *)"", (char_u *)0L}
1978 #else
1979 (char_u *)NULL, PV_NONE,
1980 {(char_u *)NULL, (char_u *)0L}
1981 #endif
1982 SCRIPTID_INIT},
1983 {"printfont", "pfn", P_STRING|P_VI_DEF,
1984 #ifdef FEAT_PRINTER
1985 (char_u *)&p_pfn, PV_NONE,
1987 # ifdef MSWIN
1988 (char_u *)"Courier_New:h10",
1989 # else
1990 (char_u *)"courier",
1991 # endif
1992 (char_u *)0L}
1993 #else
1994 (char_u *)NULL, PV_NONE,
1995 {(char_u *)NULL, (char_u *)0L}
1996 #endif
1997 SCRIPTID_INIT},
1998 {"printheader", "pheader", P_STRING|P_VI_DEF|P_GETTEXT,
1999 #ifdef FEAT_PRINTER
2000 (char_u *)&p_header, PV_NONE,
2001 {(char_u *)N_("%<%f%h%m%=Page %N"), (char_u *)0L}
2002 #else
2003 (char_u *)NULL, PV_NONE,
2004 {(char_u *)NULL, (char_u *)0L}
2005 #endif
2006 SCRIPTID_INIT},
2007 {"printmbcharset", "pmbcs", P_STRING|P_VI_DEF,
2008 #if defined(FEAT_POSTSCRIPT) && defined(FEAT_MBYTE)
2009 (char_u *)&p_pmcs, PV_NONE,
2010 {(char_u *)"", (char_u *)0L}
2011 #else
2012 (char_u *)NULL, PV_NONE,
2013 {(char_u *)NULL, (char_u *)0L}
2014 #endif
2015 SCRIPTID_INIT},
2016 {"printmbfont", "pmbfn", P_STRING|P_VI_DEF,
2017 #if defined(FEAT_POSTSCRIPT) && defined(FEAT_MBYTE)
2018 (char_u *)&p_pmfn, PV_NONE,
2019 {(char_u *)"", (char_u *)0L}
2020 #else
2021 (char_u *)NULL, PV_NONE,
2022 {(char_u *)NULL, (char_u *)0L}
2023 #endif
2024 SCRIPTID_INIT},
2025 {"printoptions", "popt", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2026 #ifdef FEAT_PRINTER
2027 (char_u *)&p_popt, PV_NONE,
2028 {(char_u *)"", (char_u *)0L}
2029 #else
2030 (char_u *)NULL, PV_NONE,
2031 {(char_u *)NULL, (char_u *)0L}
2032 #endif
2033 SCRIPTID_INIT},
2034 {"prompt", NULL, P_BOOL|P_VI_DEF,
2035 (char_u *)&p_prompt, PV_NONE,
2036 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2037 {"pumheight", "ph", P_NUM|P_VI_DEF,
2038 #ifdef FEAT_INS_EXPAND
2039 (char_u *)&p_ph, PV_NONE,
2040 #else
2041 (char_u *)NULL, PV_NONE,
2042 #endif
2043 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2044 {"quoteescape", "qe", P_STRING|P_ALLOCED|P_VI_DEF,
2045 #ifdef FEAT_TEXTOBJ
2046 (char_u *)&p_qe, PV_QE,
2047 {(char_u *)"\\", (char_u *)0L}
2048 #else
2049 (char_u *)NULL, PV_NONE,
2050 {(char_u *)NULL, (char_u *)0L}
2051 #endif
2052 SCRIPTID_INIT},
2053 {"readonly", "ro", P_BOOL|P_VI_DEF|P_RSTAT|P_NOGLOB,
2054 (char_u *)&p_ro, PV_RO,
2055 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2056 {"redraw", NULL, P_BOOL|P_VI_DEF,
2057 (char_u *)NULL, PV_NONE,
2058 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2059 {"redrawtime", "rdt", P_NUM|P_VI_DEF,
2060 #ifdef FEAT_RELTIME
2061 (char_u *)&p_rdt, PV_NONE,
2062 #else
2063 (char_u *)NULL, PV_NONE,
2064 #endif
2065 {(char_u *)2000L, (char_u *)0L} SCRIPTID_INIT},
2066 {"relativenumber", "rnu", P_BOOL|P_VI_DEF|P_RWIN,
2067 (char_u *)VAR_WIN, PV_RNU,
2068 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2069 {"remap", NULL, P_BOOL|P_VI_DEF,
2070 (char_u *)&p_remap, PV_NONE,
2071 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2072 {"report", NULL, P_NUM|P_VI_DEF,
2073 (char_u *)&p_report, PV_NONE,
2074 {(char_u *)2L, (char_u *)0L} SCRIPTID_INIT},
2075 {"restorescreen", "rs", P_BOOL|P_VI_DEF,
2076 #ifdef WIN3264
2077 (char_u *)&p_rs, PV_NONE,
2078 #else
2079 (char_u *)NULL, PV_NONE,
2080 #endif
2081 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2082 {"revins", "ri", P_BOOL|P_VI_DEF|P_VIM,
2083 #ifdef FEAT_RIGHTLEFT
2084 (char_u *)&p_ri, PV_NONE,
2085 #else
2086 (char_u *)NULL, PV_NONE,
2087 #endif
2088 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2089 {"rightleft", "rl", P_BOOL|P_VI_DEF|P_RWIN,
2090 #ifdef FEAT_RIGHTLEFT
2091 (char_u *)VAR_WIN, PV_RL,
2092 #else
2093 (char_u *)NULL, PV_NONE,
2094 #endif
2095 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2096 {"rightleftcmd", "rlc", P_STRING|P_ALLOCED|P_VI_DEF|P_RWIN,
2097 #ifdef FEAT_RIGHTLEFT
2098 (char_u *)VAR_WIN, PV_RLC,
2099 {(char_u *)"search", (char_u *)NULL}
2100 #else
2101 (char_u *)NULL, PV_NONE,
2102 {(char_u *)NULL, (char_u *)0L}
2103 #endif
2104 SCRIPTID_INIT},
2105 {"ruler", "ru", P_BOOL|P_VI_DEF|P_VIM|P_RSTAT,
2106 #ifdef FEAT_CMDL_INFO
2107 (char_u *)&p_ru, PV_NONE,
2108 #else
2109 (char_u *)NULL, PV_NONE,
2110 #endif
2111 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2112 {"rulerformat", "ruf", P_STRING|P_VI_DEF|P_ALLOCED|P_RSTAT,
2113 #ifdef FEAT_STL_OPT
2114 (char_u *)&p_ruf, PV_NONE,
2115 #else
2116 (char_u *)NULL, PV_NONE,
2117 #endif
2118 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2119 {"runtimepath", "rtp", P_STRING|P_VI_DEF|P_EXPAND|P_COMMA|P_NODUP|P_SECURE,
2120 (char_u *)&p_rtp, PV_NONE,
2121 {(char_u *)DFLT_RUNTIMEPATH, (char_u *)0L}
2122 SCRIPTID_INIT},
2123 {"scroll", "scr", P_NUM|P_NO_MKRC|P_VI_DEF,
2124 (char_u *)VAR_WIN, PV_SCROLL,
2125 {(char_u *)12L, (char_u *)0L} SCRIPTID_INIT},
2126 {"scrollbind", "scb", P_BOOL|P_VI_DEF,
2127 #ifdef FEAT_SCROLLBIND
2128 (char_u *)VAR_WIN, PV_SCBIND,
2129 #else
2130 (char_u *)NULL, PV_NONE,
2131 #endif
2132 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2133 {"scrolljump", "sj", P_NUM|P_VI_DEF|P_VIM,
2134 (char_u *)&p_sj, PV_NONE,
2135 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
2136 {"scrolloff", "so", P_NUM|P_VI_DEF|P_VIM|P_RALL,
2137 (char_u *)&p_so, PV_NONE,
2138 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2139 {"scrollopt", "sbo", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2140 #ifdef FEAT_SCROLLBIND
2141 (char_u *)&p_sbo, PV_NONE,
2142 {(char_u *)"ver,jump", (char_u *)0L}
2143 #else
2144 (char_u *)NULL, PV_NONE,
2145 {(char_u *)0L, (char_u *)0L}
2146 #endif
2147 SCRIPTID_INIT},
2148 {"sections", "sect", P_STRING|P_VI_DEF,
2149 (char_u *)&p_sections, PV_NONE,
2150 {(char_u *)"SHNHH HUnhsh", (char_u *)0L}
2151 SCRIPTID_INIT},
2152 {"secure", NULL, P_BOOL|P_VI_DEF|P_SECURE,
2153 (char_u *)&p_secure, PV_NONE,
2154 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2155 {"selection", "sel", P_STRING|P_VI_DEF,
2156 #ifdef FEAT_VISUAL
2157 (char_u *)&p_sel, PV_NONE,
2158 #else
2159 (char_u *)NULL, PV_NONE,
2160 #endif
2161 {(char_u *)"inclusive", (char_u *)0L}
2162 SCRIPTID_INIT},
2163 {"selectmode", "slm", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2164 #ifdef FEAT_VISUAL
2165 (char_u *)&p_slm, PV_NONE,
2166 #else
2167 (char_u *)NULL, PV_NONE,
2168 #endif
2169 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2170 {"sessionoptions", "ssop", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2171 #ifdef FEAT_SESSION
2172 (char_u *)&p_ssop, PV_NONE,
2173 {(char_u *)"blank,buffers,curdir,folds,help,options,tabpages,winsize",
2174 (char_u *)0L}
2175 #else
2176 (char_u *)NULL, PV_NONE,
2177 {(char_u *)0L, (char_u *)0L}
2178 #endif
2179 SCRIPTID_INIT},
2180 {"shell", "sh", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
2181 (char_u *)&p_sh, PV_NONE,
2183 #ifdef VMS
2184 (char_u *)"-",
2185 #else
2186 # if defined(MSDOS)
2187 (char_u *)"command",
2188 # else
2189 # if defined(WIN16)
2190 (char_u *)"command.com",
2191 # else
2192 # if defined(WIN3264)
2193 (char_u *)"", /* set in set_init_1() */
2194 # else
2195 # if defined(OS2)
2196 (char_u *)"cmd.exe",
2197 # else
2198 # if defined(ARCHIE)
2199 (char_u *)"gos",
2200 # else
2201 (char_u *)"sh",
2202 # endif
2203 # endif
2204 # endif
2205 # endif
2206 # endif
2207 #endif /* VMS */
2208 (char_u *)0L} SCRIPTID_INIT},
2209 {"shellcmdflag","shcf", P_STRING|P_VI_DEF|P_SECURE,
2210 (char_u *)&p_shcf, PV_NONE,
2212 #if defined(MSDOS) || defined(MSWIN)
2213 (char_u *)"/c",
2214 #else
2215 # if defined(OS2)
2216 (char_u *)"/c",
2217 # else
2218 (char_u *)"-c",
2219 # endif
2220 #endif
2221 (char_u *)0L} SCRIPTID_INIT},
2222 {"shellpipe", "sp", P_STRING|P_VI_DEF|P_SECURE,
2223 #ifdef FEAT_QUICKFIX
2224 (char_u *)&p_sp, PV_NONE,
2226 #if defined(UNIX) || defined(OS2)
2227 # ifdef ARCHIE
2228 (char_u *)"2>",
2229 # else
2230 (char_u *)"| tee",
2231 # endif
2232 #else
2233 (char_u *)">",
2234 #endif
2235 (char_u *)0L}
2236 #else
2237 (char_u *)NULL, PV_NONE,
2238 {(char_u *)0L, (char_u *)0L}
2239 #endif
2240 SCRIPTID_INIT},
2241 {"shellquote", "shq", P_STRING|P_VI_DEF|P_SECURE,
2242 (char_u *)&p_shq, PV_NONE,
2243 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2244 {"shellredir", "srr", P_STRING|P_VI_DEF|P_SECURE,
2245 (char_u *)&p_srr, PV_NONE,
2246 {(char_u *)">", (char_u *)0L} SCRIPTID_INIT},
2247 {"shellslash", "ssl", P_BOOL|P_VI_DEF,
2248 #ifdef BACKSLASH_IN_FILENAME
2249 (char_u *)&p_ssl, PV_NONE,
2250 #else
2251 (char_u *)NULL, PV_NONE,
2252 #endif
2253 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2254 {"shelltemp", "stmp", P_BOOL,
2255 (char_u *)&p_stmp, PV_NONE,
2256 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
2257 {"shelltype", "st", P_NUM|P_VI_DEF,
2258 #ifdef AMIGA
2259 (char_u *)&p_st, PV_NONE,
2260 #else
2261 (char_u *)NULL, PV_NONE,
2262 #endif
2263 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2264 {"shellxquote", "sxq", P_STRING|P_VI_DEF|P_SECURE,
2265 (char_u *)&p_sxq, PV_NONE,
2267 #if defined(UNIX) && defined(USE_SYSTEM) && !defined(__EMX__)
2268 (char_u *)"\"",
2269 #else
2270 (char_u *)"",
2271 #endif
2272 (char_u *)0L} SCRIPTID_INIT},
2273 {"shiftround", "sr", P_BOOL|P_VI_DEF|P_VIM,
2274 (char_u *)&p_sr, PV_NONE,
2275 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2276 {"shiftwidth", "sw", P_NUM|P_VI_DEF,
2277 (char_u *)&p_sw, PV_SW,
2278 {(char_u *)8L, (char_u *)0L} SCRIPTID_INIT},
2279 {"shortmess", "shm", P_STRING|P_VIM|P_FLAGLIST,
2280 (char_u *)&p_shm, PV_NONE,
2281 {(char_u *)"", (char_u *)"filnxtToO"}
2282 SCRIPTID_INIT},
2283 {"shortname", "sn", P_BOOL|P_VI_DEF,
2284 #ifdef SHORT_FNAME
2285 (char_u *)NULL, PV_NONE,
2286 #else
2287 (char_u *)&p_sn, PV_SN,
2288 #endif
2289 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2290 {"showbreak", "sbr", P_STRING|P_VI_DEF|P_RALL,
2291 #ifdef FEAT_LINEBREAK
2292 (char_u *)&p_sbr, PV_NONE,
2293 #else
2294 (char_u *)NULL, PV_NONE,
2295 #endif
2296 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2297 {"showcmd", "sc", P_BOOL|P_VIM,
2298 #ifdef FEAT_CMDL_INFO
2299 (char_u *)&p_sc, PV_NONE,
2300 #else
2301 (char_u *)NULL, PV_NONE,
2302 #endif
2303 {(char_u *)FALSE,
2304 #ifdef UNIX
2305 (char_u *)FALSE
2306 #else
2307 (char_u *)TRUE
2308 #endif
2309 } SCRIPTID_INIT},
2310 {"showfulltag", "sft", P_BOOL|P_VI_DEF,
2311 (char_u *)&p_sft, PV_NONE,
2312 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2313 {"showmatch", "sm", P_BOOL|P_VI_DEF,
2314 (char_u *)&p_sm, PV_NONE,
2315 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2316 {"showmode", "smd", P_BOOL|P_VIM,
2317 (char_u *)&p_smd, PV_NONE,
2318 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
2319 {"showtabline", "stal", P_NUM|P_VI_DEF|P_RALL,
2320 #ifdef FEAT_WINDOWS
2321 (char_u *)&p_stal, PV_NONE,
2322 #else
2323 (char_u *)NULL, PV_NONE,
2324 #endif
2325 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
2326 {"sidescroll", "ss", P_NUM|P_VI_DEF,
2327 (char_u *)&p_ss, PV_NONE,
2328 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2329 {"sidescrolloff", "siso", P_NUM|P_VI_DEF|P_VIM|P_RBUF,
2330 (char_u *)&p_siso, PV_NONE,
2331 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2332 {"slowopen", "slow", P_BOOL|P_VI_DEF,
2333 (char_u *)NULL, PV_NONE,
2334 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2335 {"smartcase", "scs", P_BOOL|P_VI_DEF|P_VIM,
2336 (char_u *)&p_scs, PV_NONE,
2337 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2338 {"smartindent", "si", P_BOOL|P_VI_DEF|P_VIM,
2339 #ifdef FEAT_SMARTINDENT
2340 (char_u *)&p_si, PV_SI,
2341 #else
2342 (char_u *)NULL, PV_NONE,
2343 #endif
2344 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2345 {"smarttab", "sta", P_BOOL|P_VI_DEF|P_VIM,
2346 (char_u *)&p_sta, PV_NONE,
2347 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2348 {"softtabstop", "sts", P_NUM|P_VI_DEF|P_VIM,
2349 (char_u *)&p_sts, PV_STS,
2350 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2351 {"sourceany", NULL, P_BOOL|P_VI_DEF,
2352 (char_u *)NULL, PV_NONE,
2353 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2354 {"spell", NULL, P_BOOL|P_VI_DEF|P_RWIN,
2355 #ifdef FEAT_SPELL
2356 (char_u *)VAR_WIN, PV_SPELL,
2357 #else
2358 (char_u *)NULL, PV_NONE,
2359 #endif
2360 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2361 {"spellcapcheck", "spc", P_STRING|P_ALLOCED|P_VI_DEF|P_RBUF,
2362 #ifdef FEAT_SPELL
2363 (char_u *)&p_spc, PV_SPC,
2364 {(char_u *)"[.?!]\\_[\\])'\" ]\\+", (char_u *)0L}
2365 #else
2366 (char_u *)NULL, PV_NONE,
2367 {(char_u *)0L, (char_u *)0L}
2368 #endif
2369 SCRIPTID_INIT},
2370 {"spellfile", "spf", P_STRING|P_EXPAND|P_ALLOCED|P_VI_DEF|P_SECURE|P_COMMA,
2371 #ifdef FEAT_SPELL
2372 (char_u *)&p_spf, PV_SPF,
2373 {(char_u *)"", (char_u *)0L}
2374 #else
2375 (char_u *)NULL, PV_NONE,
2376 {(char_u *)0L, (char_u *)0L}
2377 #endif
2378 SCRIPTID_INIT},
2379 {"spelllang", "spl", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_RBUF|P_EXPAND,
2380 #ifdef FEAT_SPELL
2381 (char_u *)&p_spl, PV_SPL,
2382 {(char_u *)"en", (char_u *)0L}
2383 #else
2384 (char_u *)NULL, PV_NONE,
2385 {(char_u *)0L, (char_u *)0L}
2386 #endif
2387 SCRIPTID_INIT},
2388 {"spellsuggest", "sps", P_STRING|P_VI_DEF|P_EXPAND|P_SECURE|P_COMMA,
2389 #ifdef FEAT_SPELL
2390 (char_u *)&p_sps, PV_NONE,
2391 {(char_u *)"best", (char_u *)0L}
2392 #else
2393 (char_u *)NULL, PV_NONE,
2394 {(char_u *)0L, (char_u *)0L}
2395 #endif
2396 SCRIPTID_INIT},
2397 {"splitbelow", "sb", P_BOOL|P_VI_DEF,
2398 #ifdef FEAT_WINDOWS
2399 (char_u *)&p_sb, PV_NONE,
2400 #else
2401 (char_u *)NULL, PV_NONE,
2402 #endif
2403 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2404 {"splitright", "spr", P_BOOL|P_VI_DEF,
2405 #ifdef FEAT_VERTSPLIT
2406 (char_u *)&p_spr, PV_NONE,
2407 #else
2408 (char_u *)NULL, PV_NONE,
2409 #endif
2410 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2411 {"startofline", "sol", P_BOOL|P_VI_DEF|P_VIM,
2412 (char_u *)&p_sol, PV_NONE,
2413 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2414 {"statusline" ,"stl", P_STRING|P_VI_DEF|P_ALLOCED|P_RSTAT,
2415 #ifdef FEAT_STL_OPT
2416 (char_u *)&p_stl, PV_STL,
2417 #else
2418 (char_u *)NULL, PV_NONE,
2419 #endif
2420 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2421 {"suffixes", "su", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2422 (char_u *)&p_su, PV_NONE,
2423 {(char_u *)".bak,~,.o,.h,.info,.swp,.obj",
2424 (char_u *)0L} SCRIPTID_INIT},
2425 {"suffixesadd", "sua", P_STRING|P_VI_DEF|P_ALLOCED|P_COMMA|P_NODUP,
2426 #ifdef FEAT_SEARCHPATH
2427 (char_u *)&p_sua, PV_SUA,
2428 {(char_u *)"", (char_u *)0L}
2429 #else
2430 (char_u *)NULL, PV_NONE,
2431 {(char_u *)0L, (char_u *)0L}
2432 #endif
2433 SCRIPTID_INIT},
2434 {"swapfile", "swf", P_BOOL|P_VI_DEF|P_RSTAT,
2435 (char_u *)&p_swf, PV_SWF,
2436 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2437 {"swapsync", "sws", P_STRING|P_VI_DEF,
2438 (char_u *)&p_sws, PV_NONE,
2439 {(char_u *)"fsync", (char_u *)0L} SCRIPTID_INIT},
2440 {"switchbuf", "swb", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2441 (char_u *)&p_swb, PV_NONE,
2442 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2443 {"synmaxcol", "smc", P_NUM|P_VI_DEF|P_RBUF,
2444 #ifdef FEAT_SYN_HL
2445 (char_u *)&p_smc, PV_SMC,
2446 {(char_u *)3000L, (char_u *)0L}
2447 #else
2448 (char_u *)NULL, PV_NONE,
2449 {(char_u *)0L, (char_u *)0L}
2450 #endif
2451 SCRIPTID_INIT},
2452 {"syntax", "syn", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB|P_NFNAME,
2453 #ifdef FEAT_SYN_HL
2454 (char_u *)&p_syn, PV_SYN,
2455 {(char_u *)"", (char_u *)0L}
2456 #else
2457 (char_u *)NULL, PV_NONE,
2458 {(char_u *)0L, (char_u *)0L}
2459 #endif
2460 SCRIPTID_INIT},
2461 {"tabline", "tal", P_STRING|P_VI_DEF|P_RALL,
2462 #ifdef FEAT_STL_OPT
2463 (char_u *)&p_tal, PV_NONE,
2464 #else
2465 (char_u *)NULL, PV_NONE,
2466 #endif
2467 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2468 {"tabpagemax", "tpm", P_NUM|P_VI_DEF,
2469 #ifdef FEAT_WINDOWS
2470 (char_u *)&p_tpm, PV_NONE,
2471 #else
2472 (char_u *)NULL, PV_NONE,
2473 #endif
2474 {(char_u *)10L, (char_u *)0L} SCRIPTID_INIT},
2475 {"tabstop", "ts", P_NUM|P_VI_DEF|P_RBUF,
2476 (char_u *)&p_ts, PV_TS,
2477 {(char_u *)8L, (char_u *)0L} SCRIPTID_INIT},
2478 {"tagbsearch", "tbs", P_BOOL|P_VI_DEF,
2479 (char_u *)&p_tbs, PV_NONE,
2480 #ifdef VMS /* binary searching doesn't appear to work on VMS */
2481 {(char_u *)0L, (char_u *)0L}
2482 #else
2483 {(char_u *)TRUE, (char_u *)0L}
2484 #endif
2485 SCRIPTID_INIT},
2486 {"tagfunc", "tfu", P_STRING|P_ALLOCED|P_VI_DEF|P_SECURE,
2487 #ifdef FEAT_COMPL_FUNC
2488 (char_u *)&p_tfu, PV_TFU,
2489 {(char_u *)"", (char_u *)0L}
2490 #else
2491 (char_u *)NULL, PV_NONE,
2492 {(char_u *)0L, (char_u *)0L}
2493 #endif
2494 SCRIPTID_INIT},
2495 {"taglength", "tl", P_NUM|P_VI_DEF,
2496 (char_u *)&p_tl, PV_NONE,
2497 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2498 {"tagrelative", "tr", P_BOOL|P_VIM,
2499 (char_u *)&p_tr, PV_NONE,
2500 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
2501 {"tags", "tag", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
2502 (char_u *)&p_tags, PV_TAGS,
2504 #if defined(FEAT_EMACS_TAGS) && !defined(CASE_INSENSITIVE_FILENAME)
2505 (char_u *)"./tags,./TAGS,tags,TAGS",
2506 #else
2507 (char_u *)"./tags,tags",
2508 #endif
2509 (char_u *)0L} SCRIPTID_INIT},
2510 {"tagstack", "tgst", P_BOOL|P_VI_DEF,
2511 (char_u *)&p_tgst, PV_NONE,
2512 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2513 {"term", NULL, P_STRING|P_EXPAND|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RALL,
2514 (char_u *)&T_NAME, PV_NONE,
2515 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2516 {"termbidi", "tbidi", P_BOOL|P_VI_DEF,
2517 #ifdef FEAT_ARABIC
2518 (char_u *)&p_tbidi, PV_NONE,
2519 #else
2520 (char_u *)NULL, PV_NONE,
2521 #endif
2522 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2523 {"termencoding", "tenc", P_STRING|P_VI_DEF|P_RCLR,
2524 #ifdef FEAT_MBYTE
2525 (char_u *)&p_tenc, PV_NONE,
2526 {(char_u *)"", (char_u *)0L}
2527 #else
2528 (char_u *)NULL, PV_NONE,
2529 {(char_u *)0L, (char_u *)0L}
2530 #endif
2531 SCRIPTID_INIT},
2532 {"terse", NULL, P_BOOL|P_VI_DEF,
2533 (char_u *)&p_terse, PV_NONE,
2534 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2535 {"textauto", "ta", P_BOOL|P_VIM,
2536 (char_u *)&p_ta, PV_NONE,
2537 {(char_u *)DFLT_TEXTAUTO, (char_u *)TRUE}
2538 SCRIPTID_INIT},
2539 {"textmode", "tx", P_BOOL|P_VI_DEF|P_NO_MKRC,
2540 (char_u *)&p_tx, PV_TX,
2542 #ifdef USE_CRNL
2543 (char_u *)TRUE,
2544 #else
2545 (char_u *)FALSE,
2546 #endif
2547 (char_u *)0L} SCRIPTID_INIT},
2548 {"textwidth", "tw", P_NUM|P_VI_DEF|P_VIM,
2549 (char_u *)&p_tw, PV_TW,
2550 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2551 {"thesaurus", "tsr", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
2552 #ifdef FEAT_INS_EXPAND
2553 (char_u *)&p_tsr, PV_TSR,
2554 #else
2555 (char_u *)NULL, PV_NONE,
2556 #endif
2557 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2558 {"tildeop", "top", P_BOOL|P_VI_DEF|P_VIM,
2559 (char_u *)&p_to, PV_NONE,
2560 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2561 {"timeout", "to", P_BOOL|P_VI_DEF,
2562 (char_u *)&p_timeout, PV_NONE,
2563 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2564 {"timeoutlen", "tm", P_NUM|P_VI_DEF,
2565 (char_u *)&p_tm, PV_NONE,
2566 {(char_u *)1000L, (char_u *)0L} SCRIPTID_INIT},
2567 {"title", NULL, P_BOOL|P_VI_DEF,
2568 #ifdef FEAT_TITLE
2569 (char_u *)&p_title, PV_NONE,
2570 #else
2571 (char_u *)NULL, PV_NONE,
2572 #endif
2573 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2574 {"titlelen", NULL, P_NUM|P_VI_DEF,
2575 #ifdef FEAT_TITLE
2576 (char_u *)&p_titlelen, PV_NONE,
2577 #else
2578 (char_u *)NULL, PV_NONE,
2579 #endif
2580 {(char_u *)85L, (char_u *)0L} SCRIPTID_INIT},
2581 {"titleold", NULL, P_STRING|P_VI_DEF|P_GETTEXT|P_SECURE|P_NO_MKRC,
2582 #ifdef FEAT_TITLE
2583 (char_u *)&p_titleold, PV_NONE,
2584 {(char_u *)N_("Thanks for flying Vim"),
2585 (char_u *)0L}
2586 #else
2587 (char_u *)NULL, PV_NONE,
2588 {(char_u *)0L, (char_u *)0L}
2589 #endif
2590 SCRIPTID_INIT},
2591 {"titlestring", NULL, P_STRING|P_VI_DEF,
2592 #ifdef FEAT_TITLE
2593 (char_u *)&p_titlestring, PV_NONE,
2594 #else
2595 (char_u *)NULL, PV_NONE,
2596 #endif
2597 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2598 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
2599 {"toolbar", "tb", P_STRING|P_COMMA|P_VI_DEF|P_NODUP,
2600 (char_u *)&p_toolbar, PV_NONE,
2601 {(char_u *)"icons,tooltips", (char_u *)0L}
2602 SCRIPTID_INIT},
2603 #endif
2604 #if defined(FEAT_TOOLBAR) && defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)
2605 {"toolbariconsize", "tbis", P_STRING|P_VI_DEF,
2606 (char_u *)&p_tbis, PV_NONE,
2607 {(char_u *)"small", (char_u *)0L} SCRIPTID_INIT},
2608 #endif
2609 {"ttimeout", NULL, P_BOOL|P_VI_DEF|P_VIM,
2610 (char_u *)&p_ttimeout, PV_NONE,
2611 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2612 {"ttimeoutlen", "ttm", P_NUM|P_VI_DEF,
2613 (char_u *)&p_ttm, PV_NONE,
2614 {(char_u *)-1L, (char_u *)0L} SCRIPTID_INIT},
2615 {"ttybuiltin", "tbi", P_BOOL|P_VI_DEF,
2616 (char_u *)&p_tbi, PV_NONE,
2617 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2618 {"ttyfast", "tf", P_BOOL|P_NO_MKRC|P_VI_DEF,
2619 (char_u *)&p_tf, PV_NONE,
2620 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2621 {"ttymouse", "ttym", P_STRING|P_NODEFAULT|P_NO_MKRC|P_VI_DEF,
2622 #if defined(FEAT_MOUSE) && (defined(UNIX) || defined(VMS))
2623 (char_u *)&p_ttym, PV_NONE,
2624 #else
2625 (char_u *)NULL, PV_NONE,
2626 #endif
2627 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2628 {"ttyscroll", "tsl", P_NUM|P_VI_DEF,
2629 (char_u *)&p_ttyscroll, PV_NONE,
2630 {(char_u *)999L, (char_u *)0L} SCRIPTID_INIT},
2631 {"ttytype", "tty", P_STRING|P_EXPAND|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RALL,
2632 (char_u *)&T_NAME, PV_NONE,
2633 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2634 #ifdef FEAT_PERSISTENT_UNDO
2635 {"undodir", "udir", P_STRING|P_EXPAND|P_COMMA|P_NODUP|P_SECURE|P_VI_DEF,
2636 (char_u *)&p_udir, PV_NONE,
2637 {(char_u *)DFLT_UDIR, (char_u *)0L}},
2638 {"undofile", "udf", P_BOOL|P_VIM,
2639 (char_u *)&p_udf, PV_UDF,
2640 {(char_u *)TRUE, (char_u *)0L}},
2641 #endif
2642 {"undolevels", "ul", P_NUM|P_VI_DEF,
2643 (char_u *)&p_ul, PV_NONE,
2645 #if defined(UNIX) || defined(WIN3264) || defined(OS2) || defined(VMS)
2646 (char_u *)1000L,
2647 #else
2648 (char_u *)100L,
2649 #endif
2650 (char_u *)0L} SCRIPTID_INIT},
2651 {"updatecount", "uc", P_NUM|P_VI_DEF,
2652 (char_u *)&p_uc, PV_NONE,
2653 {(char_u *)200L, (char_u *)0L} SCRIPTID_INIT},
2654 {"updatetime", "ut", P_NUM|P_VI_DEF,
2655 (char_u *)&p_ut, PV_NONE,
2656 {(char_u *)4000L, (char_u *)0L} SCRIPTID_INIT},
2657 #ifdef FEAT_VARTABS
2658 {"varsofttabstop", "vsts", P_STRING|P_VI_DEF|P_VIM|P_COMMA,
2659 (char_u *)&p_vsts, PV_VSTS,
2660 {(char_u *)"", (char_u *)0L}},
2661 {"vartabstop", "vts", P_STRING|P_VI_DEF|P_VIM|P_RBUF|P_COMMA,
2662 (char_u *)&p_vts, PV_VTS,
2663 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2664 #endif
2665 {"verbose", "vbs", P_NUM|P_VI_DEF,
2666 (char_u *)&p_verbose, PV_NONE,
2667 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2668 {"verbosefile", "vfile", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
2669 (char_u *)&p_vfile, PV_NONE,
2670 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2671 {"viewdir", "vdir", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
2672 #ifdef FEAT_SESSION
2673 (char_u *)&p_vdir, PV_NONE,
2674 {(char_u *)DFLT_VDIR, (char_u *)0L}
2675 #else
2676 (char_u *)NULL, PV_NONE,
2677 {(char_u *)0L, (char_u *)0L}
2678 #endif
2679 SCRIPTID_INIT},
2680 {"viewoptions", "vop", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2681 #ifdef FEAT_SESSION
2682 (char_u *)&p_vop, PV_NONE,
2683 {(char_u *)"folds,options,cursor", (char_u *)0L}
2684 #else
2685 (char_u *)NULL, PV_NONE,
2686 {(char_u *)0L, (char_u *)0L}
2687 #endif
2688 SCRIPTID_INIT},
2689 {"viminfo", "vi", P_STRING|P_COMMA|P_NODUP|P_SECURE,
2690 #ifdef FEAT_VIMINFO
2691 (char_u *)&p_viminfo, PV_NONE,
2692 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
2693 {(char_u *)"", (char_u *)"'100,<50,s10,h,rA:,rB:"}
2694 #else
2695 # ifdef AMIGA
2696 {(char_u *)"",
2697 (char_u *)"'100,<50,s10,h,rdf0:,rdf1:,rdf2:"}
2698 # else
2699 {(char_u *)"", (char_u *)"'100,<50,s10,h"}
2700 # endif
2701 #endif
2702 #else
2703 (char_u *)NULL, PV_NONE,
2704 {(char_u *)0L, (char_u *)0L}
2705 #endif
2706 SCRIPTID_INIT},
2707 {"virtualedit", "ve", P_STRING|P_COMMA|P_NODUP|P_VI_DEF|P_VIM,
2708 #ifdef FEAT_VIRTUALEDIT
2709 (char_u *)&p_ve, PV_NONE,
2710 {(char_u *)"", (char_u *)""}
2711 #else
2712 (char_u *)NULL, PV_NONE,
2713 {(char_u *)0L, (char_u *)0L}
2714 #endif
2715 SCRIPTID_INIT},
2716 {"visualbell", "vb", P_BOOL|P_VI_DEF,
2717 (char_u *)&p_vb, PV_NONE,
2718 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2719 {"w300", NULL, P_NUM|P_VI_DEF,
2720 (char_u *)NULL, PV_NONE,
2721 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2722 {"w1200", NULL, P_NUM|P_VI_DEF,
2723 (char_u *)NULL, PV_NONE,
2724 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2725 {"w9600", NULL, P_NUM|P_VI_DEF,
2726 (char_u *)NULL, PV_NONE,
2727 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2728 {"warn", NULL, P_BOOL|P_VI_DEF,
2729 (char_u *)&p_warn, PV_NONE,
2730 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2731 {"weirdinvert", "wiv", P_BOOL|P_VI_DEF|P_RCLR,
2732 (char_u *)&p_wiv, PV_NONE,
2733 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2734 {"whichwrap", "ww", P_STRING|P_VIM|P_COMMA|P_FLAGLIST,
2735 (char_u *)&p_ww, PV_NONE,
2736 {(char_u *)"", (char_u *)"b,s"} SCRIPTID_INIT},
2737 {"wildchar", "wc", P_NUM|P_VIM,
2738 (char_u *)&p_wc, PV_NONE,
2739 {(char_u *)(long)Ctrl_E, (char_u *)(long)TAB}
2740 SCRIPTID_INIT},
2741 {"wildcharm", "wcm", P_NUM|P_VI_DEF,
2742 (char_u *)&p_wcm, PV_NONE,
2743 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2744 {"wildignore", "wig", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2745 #ifdef FEAT_WILDIGN
2746 (char_u *)&p_wig, PV_NONE,
2747 #else
2748 (char_u *)NULL, PV_NONE,
2749 #endif
2750 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2751 {"wildmenu", "wmnu", P_BOOL|P_VI_DEF,
2752 #ifdef FEAT_WILDMENU
2753 (char_u *)&p_wmnu, PV_NONE,
2754 #else
2755 (char_u *)NULL, PV_NONE,
2756 #endif
2757 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2758 {"wildmode", "wim", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2759 (char_u *)&p_wim, PV_NONE,
2760 {(char_u *)"full", (char_u *)0L} SCRIPTID_INIT},
2761 {"wildoptions", "wop", P_STRING|P_VI_DEF,
2762 #ifdef FEAT_CMDL_COMPL
2763 (char_u *)&p_wop, PV_NONE,
2764 {(char_u *)"", (char_u *)0L}
2765 #else
2766 (char_u *)NULL, PV_NONE,
2767 {(char_u *)NULL, (char_u *)0L}
2768 #endif
2769 SCRIPTID_INIT},
2770 {"winaltkeys", "wak", P_STRING|P_VI_DEF,
2771 #ifdef FEAT_WAK
2772 (char_u *)&p_wak, PV_NONE,
2773 {(char_u *)"menu", (char_u *)0L}
2774 #else
2775 (char_u *)NULL, PV_NONE,
2776 {(char_u *)NULL, (char_u *)0L}
2777 #endif
2778 SCRIPTID_INIT},
2779 {"window", "wi", P_NUM|P_VI_DEF,
2780 (char_u *)&p_window, PV_NONE,
2781 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2782 {"winheight", "wh", P_NUM|P_VI_DEF,
2783 #ifdef FEAT_WINDOWS
2784 (char_u *)&p_wh, PV_NONE,
2785 #else
2786 (char_u *)NULL, PV_NONE,
2787 #endif
2788 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
2789 {"winfixheight", "wfh", P_BOOL|P_VI_DEF|P_RSTAT,
2790 #ifdef FEAT_WINDOWS
2791 (char_u *)VAR_WIN, PV_WFH,
2792 #else
2793 (char_u *)NULL, PV_NONE,
2794 #endif
2795 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2796 {"winfixwidth", "wfw", P_BOOL|P_VI_DEF|P_RSTAT,
2797 #ifdef FEAT_VERTSPLIT
2798 (char_u *)VAR_WIN, PV_WFW,
2799 #else
2800 (char_u *)NULL, PV_NONE,
2801 #endif
2802 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2803 {"winminheight", "wmh", P_NUM|P_VI_DEF,
2804 #ifdef FEAT_WINDOWS
2805 (char_u *)&p_wmh, PV_NONE,
2806 #else
2807 (char_u *)NULL, PV_NONE,
2808 #endif
2809 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
2810 {"winminwidth", "wmw", P_NUM|P_VI_DEF,
2811 #ifdef FEAT_VERTSPLIT
2812 (char_u *)&p_wmw, PV_NONE,
2813 #else
2814 (char_u *)NULL, PV_NONE,
2815 #endif
2816 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
2817 {"winwidth", "wiw", P_NUM|P_VI_DEF,
2818 #ifdef FEAT_VERTSPLIT
2819 (char_u *)&p_wiw, PV_NONE,
2820 #else
2821 (char_u *)NULL, PV_NONE,
2822 #endif
2823 {(char_u *)20L, (char_u *)0L} SCRIPTID_INIT},
2824 {"wrap", NULL, P_BOOL|P_VI_DEF|P_RWIN,
2825 (char_u *)VAR_WIN, PV_WRAP,
2826 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2827 {"wrapmargin", "wm", P_NUM|P_VI_DEF,
2828 (char_u *)&p_wm, PV_WM,
2829 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2830 {"wrapscan", "ws", P_BOOL|P_VI_DEF,
2831 (char_u *)&p_ws, PV_NONE,
2832 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2833 {"write", NULL, P_BOOL|P_VI_DEF,
2834 (char_u *)&p_write, PV_NONE,
2835 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2836 {"writeany", "wa", P_BOOL|P_VI_DEF,
2837 (char_u *)&p_wa, PV_NONE,
2838 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2839 {"writebackup", "wb", P_BOOL|P_VI_DEF|P_VIM,
2840 (char_u *)&p_wb, PV_NONE,
2842 #ifdef FEAT_WRITEBACKUP
2843 (char_u *)TRUE,
2844 #else
2845 (char_u *)FALSE,
2846 #endif
2847 (char_u *)0L} SCRIPTID_INIT},
2848 {"writedelay", "wd", P_NUM|P_VI_DEF,
2849 (char_u *)&p_wd, PV_NONE,
2850 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2852 /* terminal output codes */
2853 #define p_term(sss, vvv) {sss, NULL, P_STRING|P_VI_DEF|P_RALL|P_SECURE, \
2854 (char_u *)&vvv, PV_NONE, \
2855 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2857 p_term("t_AB", T_CAB)
2858 p_term("t_AF", T_CAF)
2859 p_term("t_AL", T_CAL)
2860 p_term("t_al", T_AL)
2861 p_term("t_bc", T_BC)
2862 p_term("t_cd", T_CD)
2863 p_term("t_ce", T_CE)
2864 p_term("t_cl", T_CL)
2865 p_term("t_cm", T_CM)
2866 p_term("t_Co", T_CCO)
2867 p_term("t_CS", T_CCS)
2868 p_term("t_cs", T_CS)
2869 #ifdef FEAT_VERTSPLIT
2870 p_term("t_CV", T_CSV)
2871 #endif
2872 p_term("t_ut", T_UT)
2873 p_term("t_da", T_DA)
2874 p_term("t_db", T_DB)
2875 p_term("t_DL", T_CDL)
2876 p_term("t_dl", T_DL)
2877 p_term("t_fs", T_FS)
2878 p_term("t_IE", T_CIE)
2879 p_term("t_IS", T_CIS)
2880 p_term("t_ke", T_KE)
2881 p_term("t_ks", T_KS)
2882 p_term("t_le", T_LE)
2883 p_term("t_mb", T_MB)
2884 p_term("t_md", T_MD)
2885 p_term("t_me", T_ME)
2886 p_term("t_mr", T_MR)
2887 p_term("t_ms", T_MS)
2888 p_term("t_nd", T_ND)
2889 p_term("t_op", T_OP)
2890 p_term("t_RI", T_CRI)
2891 p_term("t_RV", T_CRV)
2892 p_term("t_Sb", T_CSB)
2893 p_term("t_Sf", T_CSF)
2894 p_term("t_se", T_SE)
2895 p_term("t_so", T_SO)
2896 p_term("t_sr", T_SR)
2897 p_term("t_ts", T_TS)
2898 p_term("t_te", T_TE)
2899 p_term("t_ti", T_TI)
2900 p_term("t_ue", T_UE)
2901 p_term("t_us", T_US)
2902 p_term("t_vb", T_VB)
2903 p_term("t_ve", T_VE)
2904 p_term("t_vi", T_VI)
2905 p_term("t_vs", T_VS)
2906 p_term("t_WP", T_CWP)
2907 p_term("t_WS", T_CWS)
2908 p_term("t_SI", T_CSI)
2909 p_term("t_EI", T_CEI)
2910 p_term("t_xs", T_XS)
2911 p_term("t_ZH", T_CZH)
2912 p_term("t_ZR", T_CZR)
2914 /* terminal key codes are not in here */
2916 /* end marker */
2917 {NULL, NULL, 0, NULL, PV_NONE, {NULL, NULL} SCRIPTID_INIT}
2920 #define PARAM_COUNT (sizeof(options) / sizeof(struct vimoption))
2922 #ifdef FEAT_MBYTE
2923 static char *(p_ambw_values[]) = {"single", "double", NULL};
2924 #endif
2925 static char *(p_bg_values[]) = {"light", "dark", NULL};
2926 static char *(p_nf_values[]) = {"octal", "hex", "alpha", NULL};
2927 static char *(p_ff_values[]) = {FF_UNIX, FF_DOS, FF_MAC, NULL};
2928 #ifdef FEAT_CMDL_COMPL
2929 static char *(p_wop_values[]) = {"tagfile", NULL};
2930 #endif
2931 #ifdef FEAT_WAK
2932 static char *(p_wak_values[]) = {"yes", "menu", "no", NULL};
2933 #endif
2934 static char *(p_mousem_values[]) = {"extend", "popup", "popup_setpos", "mac", NULL};
2935 #ifdef FEAT_VISUAL
2936 static char *(p_sel_values[]) = {"inclusive", "exclusive", "old", NULL};
2937 static char *(p_slm_values[]) = {"mouse", "key", "cmd", NULL};
2938 #endif
2939 #ifdef FEAT_VISUAL
2940 static char *(p_km_values[]) = {"startsel", "stopsel", NULL};
2941 #endif
2942 #ifdef FEAT_BROWSE
2943 static char *(p_bsdir_values[]) = {"current", "last", "buffer", NULL};
2944 #endif
2945 #ifdef FEAT_SCROLLBIND
2946 static char *(p_scbopt_values[]) = {"ver", "hor", "jump", NULL};
2947 #endif
2948 static char *(p_debug_values[]) = {"msg", "throw", "beep", NULL};
2949 #ifdef FEAT_VERTSPLIT
2950 static char *(p_ead_values[]) = {"both", "ver", "hor", NULL};
2951 #endif
2952 #if defined(FEAT_QUICKFIX)
2953 # ifdef FEAT_AUTOCMD
2954 static char *(p_buftype_values[]) = {"nofile", "nowrite", "quickfix", "help", "acwrite", NULL};
2955 # else
2956 static char *(p_buftype_values[]) = {"nofile", "nowrite", "quickfix", "help", NULL};
2957 # endif
2958 static char *(p_bufhidden_values[]) = {"hide", "unload", "delete", "wipe", NULL};
2959 #endif
2960 static char *(p_bs_values[]) = {"indent", "eol", "start", NULL};
2961 #ifdef FEAT_FOLDING
2962 static char *(p_fdm_values[]) = {"manual", "expr", "marker", "indent", "syntax",
2963 # ifdef FEAT_DIFF
2964 "diff",
2965 # endif
2966 NULL};
2967 static char *(p_fcl_values[]) = {"all", NULL};
2968 #endif
2969 #ifdef FEAT_INS_EXPAND
2970 static char *(p_cot_values[]) = {"menu", "menuone", "longest", "preview", NULL};
2971 #endif
2973 static void set_option_default __ARGS((int, int opt_flags, int compatible));
2974 static void set_options_default __ARGS((int opt_flags));
2975 static char_u *term_bg_default __ARGS((void));
2976 static void did_set_option __ARGS((int opt_idx, int opt_flags, int new_value));
2977 static char_u *illegal_char __ARGS((char_u *, int));
2978 static int string_to_key __ARGS((char_u *arg));
2979 #ifdef FEAT_CMDWIN
2980 static char_u *check_cedit __ARGS((void));
2981 #endif
2982 #ifdef FEAT_TITLE
2983 static void did_set_title __ARGS((int icon));
2984 #endif
2985 static char_u *option_expand __ARGS((int opt_idx, char_u *val));
2986 static void didset_options __ARGS((void));
2987 static void check_string_option __ARGS((char_u **pp));
2988 #if defined(FEAT_EVAL) || defined(PROTO)
2989 static long_u *insecure_flag __ARGS((int opt_idx, int opt_flags));
2990 #else
2991 # define insecure_flag(opt_idx, opt_flags) (&options[opt_idx].flags)
2992 #endif
2993 static void set_string_option_global __ARGS((int opt_idx, char_u **varp));
2994 static void set_string_option __ARGS((int opt_idx, char_u *value, int opt_flags));
2995 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));
2996 static char_u *set_chars_option __ARGS((char_u **varp));
2997 #ifdef FEAT_CLIPBOARD
2998 static char_u *check_clipboard_option __ARGS((void));
2999 #endif
3000 #ifdef FEAT_SPELL
3001 static char_u *compile_cap_prog __ARGS((buf_T *buf));
3002 #endif
3003 #ifdef FEAT_EVAL
3004 static void set_option_scriptID_idx __ARGS((int opt_idx, int opt_flags, int id));
3005 #endif
3006 static char_u *set_bool_option __ARGS((int opt_idx, char_u *varp, int value, int opt_flags));
3007 static char_u *set_num_option __ARGS((int opt_idx, char_u *varp, long value, char_u *errbuf, size_t errbuflen, int opt_flags));
3008 static void check_redraw __ARGS((long_u flags));
3009 static int findoption __ARGS((char_u *));
3010 static int find_key_option __ARGS((char_u *));
3011 static void showoptions __ARGS((int all, int opt_flags));
3012 static int optval_default __ARGS((struct vimoption *, char_u *varp));
3013 static void showoneopt __ARGS((struct vimoption *, int opt_flags));
3014 static int put_setstring __ARGS((FILE *fd, char *cmd, char *name, char_u **valuep, int expand));
3015 static int put_setnum __ARGS((FILE *fd, char *cmd, char *name, long *valuep));
3016 static int put_setbool __ARGS((FILE *fd, char *cmd, char *name, int value));
3017 static int istermoption __ARGS((struct vimoption *));
3018 static char_u *get_varp_scope __ARGS((struct vimoption *p, int opt_flags));
3019 static char_u *get_varp __ARGS((struct vimoption *));
3020 static void option_value2string __ARGS((struct vimoption *, int opt_flags));
3021 static int wc_use_keyname __ARGS((char_u *varp, long *wcp));
3022 #ifdef FEAT_LANGMAP
3023 static void langmap_init __ARGS((void));
3024 static void langmap_set __ARGS((void));
3025 #endif
3026 static void paste_option_changed __ARGS((void));
3027 static void compatible_set __ARGS((void));
3028 #ifdef FEAT_LINEBREAK
3029 static void fill_breakat_flags __ARGS((void));
3030 #endif
3031 static int opt_strings_flags __ARGS((char_u *val, char **values, unsigned *flagp, int list));
3032 static int check_opt_strings __ARGS((char_u *val, char **values, int));
3033 static int check_opt_wim __ARGS((void));
3036 * Initialize the options, first part.
3038 * Called only once from main(), just after creating the first buffer.
3040 void
3041 set_init_1()
3043 char_u *p;
3044 int opt_idx;
3045 long_u n;
3047 #ifdef FEAT_LANGMAP
3048 langmap_init();
3049 #endif
3051 /* Be Vi compatible by default */
3052 p_cp = TRUE;
3054 /* Use POSIX compatibility when $VIM_POSIX is set. */
3055 if (mch_getenv((char_u *)"VIM_POSIX") != NULL)
3057 set_string_default("cpo", (char_u *)CPO_ALL);
3058 set_string_default("shm", (char_u *)"A");
3062 * Find default value for 'shell' option.
3063 * Don't use it if it is empty.
3065 if (((p = mch_getenv((char_u *)"SHELL")) != NULL && *p != NUL)
3066 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
3067 # ifdef __EMX__
3068 || ((p = mch_getenv((char_u *)"EMXSHELL")) != NULL && *p != NUL)
3069 # endif
3070 || ((p = mch_getenv((char_u *)"COMSPEC")) != NULL && *p != NUL)
3071 # ifdef WIN3264
3072 || ((p = default_shell()) != NULL && *p != NUL)
3073 # endif
3074 #endif
3076 set_string_default("sh", p);
3078 #ifdef FEAT_WILDIGN
3080 * Set the default for 'backupskip' to include environment variables for
3081 * temp files.
3084 # ifdef UNIX
3085 static char *(names[4]) = {"", "TMPDIR", "TEMP", "TMP"};
3086 # else
3087 static char *(names[3]) = {"TMPDIR", "TEMP", "TMP"};
3088 # endif
3089 int len;
3090 garray_T ga;
3091 int mustfree;
3093 ga_init2(&ga, 1, 100);
3094 for (n = 0; n < (long)(sizeof(names) / sizeof(char *)); ++n)
3096 mustfree = FALSE;
3097 # ifdef UNIX
3098 if (*names[n] == NUL)
3099 p = (char_u *)"/tmp";
3100 else
3101 # endif
3102 p = vim_getenv((char_u *)names[n], &mustfree);
3103 if (p != NULL && *p != NUL)
3105 /* First time count the NUL, otherwise count the ','. */
3106 len = (int)STRLEN(p) + 3;
3107 if (ga_grow(&ga, len) == OK)
3109 if (ga.ga_len > 0)
3110 STRCAT(ga.ga_data, ",");
3111 STRCAT(ga.ga_data, p);
3112 add_pathsep(ga.ga_data);
3113 STRCAT(ga.ga_data, "*");
3114 ga.ga_len += len;
3117 if (mustfree)
3118 vim_free(p);
3120 if (ga.ga_data != NULL)
3122 set_string_default("bsk", ga.ga_data);
3123 vim_free(ga.ga_data);
3126 #endif
3129 * 'maxmemtot' and 'maxmem' may have to be adjusted for available memory
3131 opt_idx = findoption((char_u *)"maxmemtot");
3132 if (opt_idx >= 0)
3134 #if !defined(HAVE_AVAIL_MEM) && !defined(HAVE_TOTAL_MEM)
3135 if (options[opt_idx].def_val[VI_DEFAULT] == (char_u *)0L)
3136 #endif
3138 #ifdef HAVE_AVAIL_MEM
3139 /* Use amount of memory available at this moment. */
3140 n = (mch_avail_mem(FALSE) >> 11);
3141 #else
3142 # ifdef HAVE_TOTAL_MEM
3143 /* Use amount of memory available to Vim. */
3144 n = (mch_total_mem(FALSE) >> 1);
3145 # else
3146 n = (0x7fffffff >> 11);
3147 # endif
3148 #endif
3149 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)n;
3150 opt_idx = findoption((char_u *)"maxmem");
3151 if (opt_idx >= 0)
3153 #if !defined(HAVE_AVAIL_MEM) && !defined(HAVE_TOTAL_MEM)
3154 if ((long)options[opt_idx].def_val[VI_DEFAULT] > n
3155 || (long)options[opt_idx].def_val[VI_DEFAULT] == 0L)
3156 #endif
3157 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)n;
3162 #ifdef FEAT_GUI_W32
3163 /* force 'shortname' for Win32s */
3164 if (gui_is_win32s())
3166 opt_idx = findoption((char_u *)"shortname");
3167 if (opt_idx >= 0)
3168 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)TRUE;
3170 #endif
3172 #ifdef FEAT_SEARCHPATH
3174 char_u *cdpath;
3175 char_u *buf;
3176 int i;
3177 int j;
3178 int mustfree = FALSE;
3180 /* Initialize the 'cdpath' option's default value. */
3181 cdpath = vim_getenv((char_u *)"CDPATH", &mustfree);
3182 if (cdpath != NULL)
3184 buf = alloc((unsigned)((STRLEN(cdpath) << 1) + 2));
3185 if (buf != NULL)
3187 buf[0] = ','; /* start with ",", current dir first */
3188 j = 1;
3189 for (i = 0; cdpath[i] != NUL; ++i)
3191 if (vim_ispathlistsep(cdpath[i]))
3192 buf[j++] = ',';
3193 else
3195 if (cdpath[i] == ' ' || cdpath[i] == ',')
3196 buf[j++] = '\\';
3197 buf[j++] = cdpath[i];
3200 buf[j] = NUL;
3201 opt_idx = findoption((char_u *)"cdpath");
3202 if (opt_idx >= 0)
3204 options[opt_idx].def_val[VI_DEFAULT] = buf;
3205 options[opt_idx].flags |= P_DEF_ALLOCED;
3208 if (mustfree)
3209 vim_free(cdpath);
3212 #endif
3214 #if defined(FEAT_POSTSCRIPT) && (defined(MSWIN) || defined(OS2) || defined(VMS) || defined(EBCDIC) || defined(MAC) || defined(hpux))
3215 /* Set print encoding on platforms that don't default to latin1 */
3216 set_string_default("penc",
3217 # if defined(MSWIN) || defined(OS2)
3218 (char_u *)"cp1252"
3219 # else
3220 # ifdef VMS
3221 (char_u *)"dec-mcs"
3222 # else
3223 # ifdef EBCDIC
3224 (char_u *)"ebcdic-uk"
3225 # else
3226 # ifdef MAC
3227 (char_u *)"mac-roman"
3228 # else /* HPUX */
3229 (char_u *)"hp-roman8"
3230 # endif
3231 # endif
3232 # endif
3233 # endif
3235 #endif
3237 #ifdef FEAT_POSTSCRIPT
3238 /* 'printexpr' must be allocated to be able to evaluate it. */
3239 set_string_default("pexpr",
3240 # if defined(MSWIN) || defined(MSDOS) || defined(OS2)
3241 (char_u *)"system('copy' . ' ' . v:fname_in . (&printdevice == '' ? ' LPT1:' : (' \"' . &printdevice . '\"'))) . delete(v:fname_in)"
3242 # else
3243 # ifdef VMS
3244 (char_u *)"system('print/delete' . (&printdevice == '' ? '' : ' /queue=' . &printdevice) . ' ' . v:fname_in)"
3246 # else
3247 (char_u *)"system('lpr' . (&printdevice == '' ? '' : ' -P' . &printdevice) . ' ' . v:fname_in) . delete(v:fname_in) + v:shell_error"
3248 # endif
3249 # endif
3251 #endif
3254 * Set all the options (except the terminal options) to their default
3255 * value. Also set the global value for local options.
3257 set_options_default(0);
3259 #ifdef FEAT_GUI
3260 if (found_reverse_arg)
3261 set_option_value((char_u *)"bg", 0L, (char_u *)"dark", 0);
3262 #endif
3264 curbuf->b_p_initialized = TRUE;
3265 curbuf->b_p_ar = -1; /* no local 'autoread' value */
3266 check_buf_options(curbuf);
3267 check_win_options(curwin);
3268 check_options();
3270 /* Must be before option_expand(), because that one needs vim_isIDc() */
3271 didset_options();
3273 #ifdef FEAT_SPELL
3274 /* Use the current chartab for the generic chartab. */
3275 init_spell_chartab();
3276 #endif
3278 #ifdef FEAT_LINEBREAK
3280 * initialize the table for 'breakat'.
3282 fill_breakat_flags();
3283 #endif
3286 * Expand environment variables and things like "~" for the defaults.
3287 * If option_expand() returns non-NULL the variable is expanded. This can
3288 * only happen for non-indirect options.
3289 * Also set the default to the expanded value, so ":set" does not list
3290 * them.
3291 * Don't set the P_ALLOCED flag, because we don't want to free the
3292 * default.
3294 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
3296 if ((options[opt_idx].flags & P_GETTEXT)
3297 && options[opt_idx].var != NULL)
3298 p = (char_u *)_(*(char **)options[opt_idx].var);
3299 else
3300 p = option_expand(opt_idx, NULL);
3301 if (p != NULL && (p = vim_strsave(p)) != NULL)
3303 *(char_u **)options[opt_idx].var = p;
3304 /* VIMEXP
3305 * Defaults for all expanded options are currently the same for Vi
3306 * and Vim. When this changes, add some code here! Also need to
3307 * split P_DEF_ALLOCED in two.
3309 if (options[opt_idx].flags & P_DEF_ALLOCED)
3310 vim_free(options[opt_idx].def_val[VI_DEFAULT]);
3311 options[opt_idx].def_val[VI_DEFAULT] = p;
3312 options[opt_idx].flags |= P_DEF_ALLOCED;
3316 /* Initialize the highlight_attr[] table. */
3317 highlight_changed();
3319 save_file_ff(curbuf); /* Buffer is unchanged */
3321 /* Parse default for 'wildmode' */
3322 check_opt_wim();
3324 #if defined(FEAT_ARABIC)
3325 /* Detect use of mlterm.
3326 * Mlterm is a terminal emulator akin to xterm that has some special
3327 * abilities (bidi namely).
3328 * NOTE: mlterm's author is being asked to 'set' a variable
3329 * instead of an environment variable due to inheritance.
3331 if (mch_getenv((char_u *)"MLTERM") != NULL)
3332 set_option_value((char_u *)"tbidi", 1L, NULL, 0);
3333 #endif
3335 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
3336 /* Parse default for 'fillchars'. */
3337 (void)set_chars_option(&p_fcs);
3338 #endif
3340 #ifdef FEAT_CLIPBOARD
3341 /* Parse default for 'clipboard' */
3342 (void)check_clipboard_option();
3343 #endif
3345 #ifdef FEAT_MBYTE
3346 # if defined(WIN3264) && defined(FEAT_GETTEXT)
3348 * If $LANG isn't set, try to get a good value for it. This makes the
3349 * right language be used automatically. Don't do this for English.
3351 if (mch_getenv((char_u *)"LANG") == NULL)
3353 char buf[20];
3355 /* Could use LOCALE_SISO639LANGNAME, but it's not in Win95.
3356 * LOCALE_SABBREVLANGNAME gives us three letters, like "enu", we use
3357 * only the first two. */
3358 n = GetLocaleInfo(LOCALE_USER_DEFAULT, LOCALE_SABBREVLANGNAME,
3359 (LPTSTR)buf, 20);
3360 if (n >= 2 && STRNICMP(buf, "en", 2) != 0)
3362 /* There are a few exceptions (probably more) */
3363 if (STRNICMP(buf, "cht", 3) == 0 || STRNICMP(buf, "zht", 3) == 0)
3364 STRCPY(buf, "zh_TW");
3365 else if (STRNICMP(buf, "chs", 3) == 0
3366 || STRNICMP(buf, "zhc", 3) == 0)
3367 STRCPY(buf, "zh_CN");
3368 else if (STRNICMP(buf, "jp", 2) == 0)
3369 STRCPY(buf, "ja");
3370 else
3371 buf[2] = NUL; /* truncate to two-letter code */
3372 vim_setenv("LANG", buf);
3375 # else
3376 # ifdef MACOS_CONVERT
3377 /* Moved to os_mac_conv.c to avoid dependency problems. */
3378 mac_lang_init();
3379 # endif
3380 # endif
3382 /* enc_locale() will try to find the encoding of the current locale. */
3383 p = enc_locale();
3384 if (p != NULL)
3386 char_u *save_enc;
3388 /* Try setting 'encoding' and check if the value is valid.
3389 * If not, go back to the default "latin1". */
3390 save_enc = p_enc;
3391 p_enc = p;
3392 if (STRCMP(p_enc, "gb18030") == 0)
3394 /* We don't support "gb18030", but "cp936" is a good substitute
3395 * for practical purposes, thus use that. It's not an alias to
3396 * still support conversion between gb18030 and utf-8. */
3397 p_enc = vim_strsave((char_u *)"cp936");
3398 vim_free(p);
3400 if (mb_init() == NULL)
3402 opt_idx = findoption((char_u *)"encoding");
3403 if (opt_idx >= 0)
3405 options[opt_idx].def_val[VI_DEFAULT] = p_enc;
3406 options[opt_idx].flags |= P_DEF_ALLOCED;
3409 #if defined(MSDOS) || defined(MSWIN) || defined(OS2) || defined(MACOS) \
3410 || defined(VMS)
3411 if (STRCMP(p_enc, "latin1") == 0
3412 # ifdef FEAT_MBYTE
3413 || enc_utf8
3414 # endif
3417 /* Adjust the default for 'isprint' and 'iskeyword' to match
3418 * latin1. Also set the defaults for when 'nocompatible' is
3419 * set. */
3420 set_string_option_direct((char_u *)"isp", -1,
3421 ISP_LATIN1, OPT_FREE, SID_NONE);
3422 set_string_option_direct((char_u *)"isk", -1,
3423 ISK_LATIN1, OPT_FREE, SID_NONE);
3424 opt_idx = findoption((char_u *)"isp");
3425 if (opt_idx >= 0)
3426 options[opt_idx].def_val[VIM_DEFAULT] = ISP_LATIN1;
3427 opt_idx = findoption((char_u *)"isk");
3428 if (opt_idx >= 0)
3429 options[opt_idx].def_val[VIM_DEFAULT] = ISK_LATIN1;
3430 (void)init_chartab();
3432 #endif
3434 # if defined(WIN3264) && !defined(FEAT_GUI)
3435 /* Win32 console: When GetACP() returns a different value from
3436 * GetConsoleCP() set 'termencoding'. */
3437 if (GetACP() != GetConsoleCP())
3439 char buf[50];
3441 sprintf(buf, "cp%ld", (long)GetConsoleCP());
3442 p_tenc = vim_strsave((char_u *)buf);
3443 if (p_tenc != NULL)
3445 opt_idx = findoption((char_u *)"termencoding");
3446 if (opt_idx >= 0)
3448 options[opt_idx].def_val[VI_DEFAULT] = p_tenc;
3449 options[opt_idx].flags |= P_DEF_ALLOCED;
3451 convert_setup(&input_conv, p_tenc, p_enc);
3452 convert_setup(&output_conv, p_enc, p_tenc);
3454 else
3455 p_tenc = empty_option;
3457 # endif
3458 # if defined(WIN3264) && defined(FEAT_MBYTE)
3459 /* $HOME may have characters in active code page. */
3460 init_homedir();
3461 # endif
3463 else
3465 vim_free(p_enc);
3466 p_enc = save_enc;
3469 #endif
3471 #ifdef FEAT_MULTI_LANG
3472 /* Set the default for 'helplang'. */
3473 set_helplang_default(get_mess_lang());
3474 #endif
3478 * Set an option to its default value.
3479 * This does not take care of side effects!
3481 static void
3482 set_option_default(opt_idx, opt_flags, compatible)
3483 int opt_idx;
3484 int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */
3485 int compatible; /* use Vi default value */
3487 char_u *varp; /* pointer to variable for current option */
3488 int dvi; /* index in def_val[] */
3489 long_u flags;
3490 long_u *flagsp;
3491 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
3493 varp = get_varp_scope(&(options[opt_idx]), both ? OPT_LOCAL : opt_flags);
3494 flags = options[opt_idx].flags;
3495 if (varp != NULL) /* skip hidden option, nothing to do for it */
3497 dvi = ((flags & P_VI_DEF) || compatible) ? VI_DEFAULT : VIM_DEFAULT;
3498 if (flags & P_STRING)
3500 /* Use set_string_option_direct() for local options to handle
3501 * freeing and allocating the value. */
3502 if (options[opt_idx].indir != PV_NONE)
3503 set_string_option_direct(NULL, opt_idx,
3504 options[opt_idx].def_val[dvi], opt_flags, 0);
3505 else
3507 if ((opt_flags & OPT_FREE) && (flags & P_ALLOCED))
3508 free_string_option(*(char_u **)(varp));
3509 *(char_u **)varp = options[opt_idx].def_val[dvi];
3510 options[opt_idx].flags &= ~P_ALLOCED;
3513 else if (flags & P_NUM)
3515 if (options[opt_idx].indir == PV_SCROLL)
3516 win_comp_scroll(curwin);
3517 else
3519 *(long *)varp = (long)(long_i)options[opt_idx].def_val[dvi];
3520 /* May also set global value for local option. */
3521 if (both)
3522 *(long *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) =
3523 *(long *)varp;
3526 else /* P_BOOL */
3528 /* the cast to long is required for Manx C, long_i is needed for
3529 * MSVC */
3530 *(int *)varp = (int)(long)(long_i)options[opt_idx].def_val[dvi];
3531 #ifdef UNIX
3532 /* 'modeline' defaults to off for root */
3533 if (options[opt_idx].indir == PV_ML && getuid() == ROOT_UID)
3534 *(int *)varp = FALSE;
3535 #endif
3536 /* May also set global value for local option. */
3537 if (both)
3538 *(int *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) =
3539 *(int *)varp;
3542 /* The default value is not insecure. */
3543 flagsp = insecure_flag(opt_idx, opt_flags);
3544 *flagsp = *flagsp & ~P_INSECURE;
3547 #ifdef FEAT_EVAL
3548 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
3549 #endif
3553 * Set all options (except terminal options) to their default value.
3555 static void
3556 set_options_default(opt_flags)
3557 int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */
3559 int i;
3560 #ifdef FEAT_WINDOWS
3561 win_T *wp;
3562 tabpage_T *tp;
3563 #endif
3565 for (i = 0; !istermoption(&options[i]); i++)
3566 if (!(options[i].flags & P_NODEFAULT))
3567 set_option_default(i, opt_flags, p_cp);
3569 #ifdef FEAT_WINDOWS
3570 /* The 'scroll' option must be computed for all windows. */
3571 FOR_ALL_TAB_WINDOWS(tp, wp)
3572 win_comp_scroll(wp);
3573 #else
3574 win_comp_scroll(curwin);
3575 #endif
3579 * Set the Vi-default value of a string option.
3580 * Used for 'sh', 'backupskip' and 'term'.
3582 void
3583 set_string_default(name, val)
3584 char *name;
3585 char_u *val;
3587 char_u *p;
3588 int opt_idx;
3590 p = vim_strsave(val);
3591 if (p != NULL) /* we don't want a NULL */
3593 opt_idx = findoption((char_u *)name);
3594 if (opt_idx >= 0)
3596 if (options[opt_idx].flags & P_DEF_ALLOCED)
3597 vim_free(options[opt_idx].def_val[VI_DEFAULT]);
3598 options[opt_idx].def_val[VI_DEFAULT] = p;
3599 options[opt_idx].flags |= P_DEF_ALLOCED;
3605 * Set the Vi-default value of a number option.
3606 * Used for 'lines' and 'columns'.
3608 void
3609 set_number_default(name, val)
3610 char *name;
3611 long val;
3613 int opt_idx;
3615 opt_idx = findoption((char_u *)name);
3616 if (opt_idx >= 0)
3617 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
3620 #if defined(EXITFREE) || defined(PROTO)
3622 * Free all options.
3624 void
3625 free_all_options()
3627 int i;
3629 for (i = 0; !istermoption(&options[i]); i++)
3631 if (options[i].indir == PV_NONE)
3633 /* global option: free value and default value. */
3634 if (options[i].flags & P_ALLOCED && options[i].var != NULL)
3635 free_string_option(*(char_u **)options[i].var);
3636 if (options[i].flags & P_DEF_ALLOCED)
3637 free_string_option(options[i].def_val[VI_DEFAULT]);
3639 else if (options[i].var != VAR_WIN
3640 && (options[i].flags & P_STRING))
3641 /* buffer-local option: free global value */
3642 free_string_option(*(char_u **)options[i].var);
3645 #endif
3649 * Initialize the options, part two: After getting Rows and Columns and
3650 * setting 'term'.
3652 void
3653 set_init_2()
3655 int idx;
3658 * 'scroll' defaults to half the window height. Note that this default is
3659 * wrong when the window height changes.
3661 set_number_default("scroll", (long)((long_u)Rows >> 1));
3662 idx = findoption((char_u *)"scroll");
3663 if (idx >= 0 && !(options[idx].flags & P_WAS_SET))
3664 set_option_default(idx, OPT_LOCAL, p_cp);
3665 comp_col();
3668 * 'window' is only for backwards compatibility with Vi.
3669 * Default is Rows - 1.
3671 if (!option_was_set((char_u *)"window"))
3672 p_window = Rows - 1;
3673 set_number_default("window", Rows - 1);
3675 /* For DOS console the default is always black. */
3676 #if !((defined(MSDOS) || defined(OS2) || defined(WIN3264)) && !defined(FEAT_GUI))
3678 * If 'background' wasn't set by the user, try guessing the value,
3679 * depending on the terminal name. Only need to check for terminals
3680 * with a dark background, that can handle color.
3682 idx = findoption((char_u *)"bg");
3683 if (idx >= 0 && !(options[idx].flags & P_WAS_SET)
3684 && *term_bg_default() == 'd')
3686 set_string_option_direct(NULL, idx, (char_u *)"dark", OPT_FREE, 0);
3687 /* don't mark it as set, when starting the GUI it may be
3688 * changed again */
3689 options[idx].flags &= ~P_WAS_SET;
3691 #endif
3693 #ifdef CURSOR_SHAPE
3694 parse_shape_opt(SHAPE_CURSOR); /* set cursor shapes from 'guicursor' */
3695 #endif
3696 #ifdef FEAT_MOUSESHAPE
3697 parse_shape_opt(SHAPE_MOUSE); /* set mouse shapes from 'mouseshape' */
3698 #endif
3699 #ifdef FEAT_PRINTER
3700 (void)parse_printoptions(); /* parse 'printoptions' default value */
3701 #endif
3705 * Return "dark" or "light" depending on the kind of terminal.
3706 * This is just guessing! Recognized are:
3707 * "linux" Linux console
3708 * "screen.linux" Linux console with screen
3709 * "cygwin" Cygwin shell
3710 * "putty" Putty program
3711 * We also check the COLORFGBG environment variable, which is set by
3712 * rxvt and derivatives. This variable contains either two or three
3713 * values separated by semicolons; we want the last value in either
3714 * case. If this value is 0-6 or 8, our background is dark.
3716 static char_u *
3717 term_bg_default()
3719 #if defined(MSDOS) || defined(OS2) || defined(WIN3264)
3720 /* DOS console nearly always black */
3721 return (char_u *)"dark";
3722 #else
3723 char_u *p;
3725 if (STRCMP(T_NAME, "linux") == 0
3726 || STRCMP(T_NAME, "screen.linux") == 0
3727 || STRCMP(T_NAME, "cygwin") == 0
3728 || STRCMP(T_NAME, "putty") == 0
3729 || ((p = mch_getenv((char_u *)"COLORFGBG")) != NULL
3730 && (p = vim_strrchr(p, ';')) != NULL
3731 && ((p[1] >= '0' && p[1] <= '6') || p[1] == '8')
3732 && p[2] == NUL))
3733 return (char_u *)"dark";
3734 return (char_u *)"light";
3735 #endif
3739 * Initialize the options, part three: After reading the .vimrc
3741 void
3742 set_init_3()
3744 #if defined(UNIX) || defined(OS2) || defined(WIN3264)
3746 * Set 'shellpipe' and 'shellredir', depending on the 'shell' option.
3747 * This is done after other initializations, where 'shell' might have been
3748 * set, but only if they have not been set before.
3750 char_u *p;
3751 int idx_srr;
3752 int do_srr;
3753 #ifdef FEAT_QUICKFIX
3754 int idx_sp;
3755 int do_sp;
3756 #endif
3758 idx_srr = findoption((char_u *)"srr");
3759 if (idx_srr < 0)
3760 do_srr = FALSE;
3761 else
3762 do_srr = !(options[idx_srr].flags & P_WAS_SET);
3763 #ifdef FEAT_QUICKFIX
3764 idx_sp = findoption((char_u *)"sp");
3765 if (idx_sp < 0)
3766 do_sp = FALSE;
3767 else
3768 do_sp = !(options[idx_sp].flags & P_WAS_SET);
3769 #endif
3772 * Isolate the name of the shell:
3773 * - Skip beyond any path. E.g., "/usr/bin/csh -f" -> "csh -f".
3774 * - Remove any argument. E.g., "csh -f" -> "csh".
3775 * But don't allow a space in the path, so that this works:
3776 * "/usr/bin/csh --rcfile ~/.cshrc"
3777 * But don't do that for Windows, it's common to have a space in the path.
3779 #ifdef WIN3264
3780 p = gettail(p_sh);
3781 p = vim_strnsave(p, (int)(skiptowhite(p) - p));
3782 #else
3783 p = skiptowhite(p_sh);
3784 if (*p == NUL)
3786 /* No white space, use the tail. */
3787 p = vim_strsave(gettail(p_sh));
3789 else
3791 char_u *p1, *p2;
3793 /* Find the last path separator before the space. */
3794 p1 = p_sh;
3795 for (p2 = p_sh; p2 < p; mb_ptr_adv(p2))
3796 if (vim_ispathsep(*p2))
3797 p1 = p2 + 1;
3798 p = vim_strnsave(p1, (int)(p - p1));
3800 #endif
3801 if (p != NULL)
3804 * Default for p_sp is "| tee", for p_srr is ">".
3805 * For known shells it is changed here to include stderr.
3807 if ( fnamecmp(p, "csh") == 0
3808 || fnamecmp(p, "tcsh") == 0
3809 # if defined(OS2) || defined(WIN3264) /* also check with .exe extension */
3810 || fnamecmp(p, "csh.exe") == 0
3811 || fnamecmp(p, "tcsh.exe") == 0
3812 # endif
3815 #if defined(FEAT_QUICKFIX)
3816 if (do_sp)
3818 # ifdef WIN3264
3819 p_sp = (char_u *)">&";
3820 # else
3821 p_sp = (char_u *)"|& tee";
3822 # endif
3823 options[idx_sp].def_val[VI_DEFAULT] = p_sp;
3825 #endif
3826 if (do_srr)
3828 p_srr = (char_u *)">&";
3829 options[idx_srr].def_val[VI_DEFAULT] = p_srr;
3832 else
3833 # ifndef OS2 /* Always use bourne shell style redirection if we reach this */
3834 if ( fnamecmp(p, "sh") == 0
3835 || fnamecmp(p, "ksh") == 0
3836 || fnamecmp(p, "zsh") == 0
3837 || fnamecmp(p, "zsh-beta") == 0
3838 || fnamecmp(p, "bash") == 0
3839 # ifdef WIN3264
3840 || fnamecmp(p, "cmd") == 0
3841 || fnamecmp(p, "sh.exe") == 0
3842 || fnamecmp(p, "ksh.exe") == 0
3843 || fnamecmp(p, "zsh.exe") == 0
3844 || fnamecmp(p, "zsh-beta.exe") == 0
3845 || fnamecmp(p, "bash.exe") == 0
3846 || fnamecmp(p, "cmd.exe") == 0
3847 # endif
3849 # endif
3851 #if defined(FEAT_QUICKFIX)
3852 if (do_sp)
3854 # ifdef WIN3264
3855 p_sp = (char_u *)">%s 2>&1";
3856 # else
3857 p_sp = (char_u *)"2>&1| tee";
3858 # endif
3859 options[idx_sp].def_val[VI_DEFAULT] = p_sp;
3861 #endif
3862 if (do_srr)
3864 p_srr = (char_u *)">%s 2>&1";
3865 options[idx_srr].def_val[VI_DEFAULT] = p_srr;
3868 vim_free(p);
3870 #endif
3872 #if defined(MSDOS) || defined(WIN3264) || defined(OS2)
3874 * Set 'shellcmdflag and 'shellquote' depending on the 'shell' option.
3875 * This is done after other initializations, where 'shell' might have been
3876 * set, but only if they have not been set before. Default for p_shcf is
3877 * "/c", for p_shq is "". For "sh" like shells it is changed here to
3878 * "-c" and "\"", but not for DJGPP, because it starts the shell without
3879 * command.com. And for Win32 we need to set p_sxq instead.
3881 if (strstr((char *)gettail(p_sh), "sh") != NULL)
3883 int idx3;
3885 idx3 = findoption((char_u *)"shcf");
3886 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
3888 p_shcf = (char_u *)"-c";
3889 options[idx3].def_val[VI_DEFAULT] = p_shcf;
3892 # ifndef DJGPP
3893 # ifdef WIN3264
3894 /* Somehow Win32 requires the quotes around the redirection too */
3895 idx3 = findoption((char_u *)"sxq");
3896 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
3898 p_sxq = (char_u *)"\"";
3899 options[idx3].def_val[VI_DEFAULT] = p_sxq;
3901 # else
3902 idx3 = findoption((char_u *)"shq");
3903 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
3905 p_shq = (char_u *)"\"";
3906 options[idx3].def_val[VI_DEFAULT] = p_shq;
3908 # endif
3909 # endif
3911 #endif
3913 #ifdef FEAT_TITLE
3914 set_title_defaults();
3915 #endif
3918 #if defined(FEAT_MULTI_LANG) || defined(PROTO)
3920 * When 'helplang' is still at its default value, set it to "lang".
3921 * Only the first two characters of "lang" are used.
3923 void
3924 set_helplang_default(lang)
3925 char_u *lang;
3927 int idx;
3929 if (lang == NULL || STRLEN(lang) < 2) /* safety check */
3930 return;
3931 idx = findoption((char_u *)"hlg");
3932 if (idx >= 0 && !(options[idx].flags & P_WAS_SET))
3934 if (options[idx].flags & P_ALLOCED)
3935 free_string_option(p_hlg);
3936 p_hlg = vim_strsave(lang);
3937 if (p_hlg == NULL)
3938 p_hlg = empty_option;
3939 else
3941 /* zh_CN becomes "cn", zh_TW becomes "tw". */
3942 if (STRNICMP(p_hlg, "zh_", 3) == 0 && STRLEN(p_hlg) >= 5)
3944 p_hlg[0] = TOLOWER_ASC(p_hlg[3]);
3945 p_hlg[1] = TOLOWER_ASC(p_hlg[4]);
3947 p_hlg[2] = NUL;
3949 options[idx].flags |= P_ALLOCED;
3952 #endif
3954 #ifdef FEAT_GUI
3955 static char_u *gui_bg_default __ARGS((void));
3957 static char_u *
3958 gui_bg_default()
3960 if (gui_get_lightness(gui.back_pixel) < 127)
3961 return (char_u *)"dark";
3962 return (char_u *)"light";
3966 * Option initializations that can only be done after opening the GUI window.
3968 void
3969 init_gui_options()
3971 /* Set the 'background' option according to the lightness of the
3972 * background color, unless the user has set it already. */
3973 if (!option_was_set((char_u *)"bg") && STRCMP(p_bg, gui_bg_default()) != 0)
3975 set_option_value((char_u *)"bg", 0L, gui_bg_default(), 0);
3976 highlight_changed();
3979 #endif
3981 #ifdef FEAT_TITLE
3983 * 'title' and 'icon' only default to true if they have not been set or reset
3984 * in .vimrc and we can read the old value.
3985 * When 'title' and 'icon' have been reset in .vimrc, we won't even check if
3986 * they can be reset. This reduces startup time when using X on a remote
3987 * machine.
3989 void
3990 set_title_defaults()
3992 int idx1;
3993 long val;
3996 * If GUI is (going to be) used, we can always set the window title and
3997 * icon name. Saves a bit of time, because the X11 display server does
3998 * not need to be contacted.
4000 idx1 = findoption((char_u *)"title");
4001 if (idx1 >= 0 && !(options[idx1].flags & P_WAS_SET))
4003 #ifdef FEAT_GUI
4004 if (gui.starting || gui.in_use)
4005 val = TRUE;
4006 else
4007 #endif
4008 val = mch_can_restore_title();
4009 options[idx1].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
4010 p_title = val;
4012 idx1 = findoption((char_u *)"icon");
4013 if (idx1 >= 0 && !(options[idx1].flags & P_WAS_SET))
4015 #ifdef FEAT_GUI
4016 if (gui.starting || gui.in_use)
4017 val = TRUE;
4018 else
4019 #endif
4020 val = mch_can_restore_icon();
4021 options[idx1].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
4022 p_icon = val;
4025 #endif
4028 * Parse 'arg' for option settings.
4030 * 'arg' may be IObuff, but only when no errors can be present and option
4031 * does not need to be expanded with option_expand().
4032 * "opt_flags":
4033 * 0 for ":set"
4034 * OPT_GLOBAL for ":setglobal"
4035 * OPT_LOCAL for ":setlocal" and a modeline
4036 * OPT_MODELINE for a modeline
4037 * OPT_WINONLY to only set window-local options
4038 * OPT_NOWIN to skip setting window-local options
4040 * returns FAIL if an error is detected, OK otherwise
4043 do_set(arg, opt_flags)
4044 char_u *arg; /* option string (may be written to!) */
4045 int opt_flags;
4047 int opt_idx;
4048 char_u *errmsg;
4049 char_u errbuf[80];
4050 char_u *startarg;
4051 int prefix; /* 1: nothing, 0: "no", 2: "inv" in front of name */
4052 int nextchar; /* next non-white char after option name */
4053 int afterchar; /* character just after option name */
4054 int len;
4055 int i;
4056 long value;
4057 int key;
4058 long_u flags; /* flags for current option */
4059 char_u *varp = NULL; /* pointer to variable for current option */
4060 int did_show = FALSE; /* already showed one value */
4061 int adding; /* "opt+=arg" */
4062 int prepending; /* "opt^=arg" */
4063 int removing; /* "opt-=arg" */
4064 int cp_val = 0;
4065 char_u key_name[2];
4067 if (*arg == NUL)
4069 showoptions(0, opt_flags);
4070 did_show = TRUE;
4071 goto theend;
4074 while (*arg != NUL) /* loop to process all options */
4076 errmsg = NULL;
4077 startarg = arg; /* remember for error message */
4079 if (STRNCMP(arg, "all", 3) == 0 && !isalpha(arg[3])
4080 && !(opt_flags & OPT_MODELINE))
4083 * ":set all" show all options.
4084 * ":set all&" set all options to their default value.
4086 arg += 3;
4087 if (*arg == '&')
4089 ++arg;
4090 /* Only for :set command set global value of local options. */
4091 set_options_default(OPT_FREE | opt_flags);
4093 else
4095 showoptions(1, opt_flags);
4096 did_show = TRUE;
4099 else if (STRNCMP(arg, "termcap", 7) == 0 && !(opt_flags & OPT_MODELINE))
4101 showoptions(2, opt_flags);
4102 show_termcodes();
4103 did_show = TRUE;
4104 arg += 7;
4106 else
4108 prefix = 1;
4109 if (STRNCMP(arg, "no", 2) == 0 && STRNCMP(arg, "novice", 6) != 0)
4111 prefix = 0;
4112 arg += 2;
4114 else if (STRNCMP(arg, "inv", 3) == 0)
4116 prefix = 2;
4117 arg += 3;
4120 /* find end of name */
4121 key = 0;
4122 if (*arg == '<')
4124 nextchar = 0;
4125 opt_idx = -1;
4126 /* look out for <t_>;> */
4127 if (arg[1] == 't' && arg[2] == '_' && arg[3] && arg[4])
4128 len = 5;
4129 else
4131 len = 1;
4132 while (arg[len] != NUL && arg[len] != '>')
4133 ++len;
4135 if (arg[len] != '>')
4137 errmsg = e_invarg;
4138 goto skip;
4140 arg[len] = NUL; /* put NUL after name */
4141 if (arg[1] == 't' && arg[2] == '_') /* could be term code */
4142 opt_idx = findoption(arg + 1);
4143 arg[len++] = '>'; /* restore '>' */
4144 if (opt_idx == -1)
4145 key = find_key_option(arg + 1);
4147 else
4149 len = 0;
4151 * The two characters after "t_" may not be alphanumeric.
4153 if (arg[0] == 't' && arg[1] == '_' && arg[2] && arg[3])
4154 len = 4;
4155 else
4156 while (ASCII_ISALNUM(arg[len]) || arg[len] == '_')
4157 ++len;
4158 nextchar = arg[len];
4159 arg[len] = NUL; /* put NUL after name */
4160 opt_idx = findoption(arg);
4161 arg[len] = nextchar; /* restore nextchar */
4162 if (opt_idx == -1)
4163 key = find_key_option(arg);
4166 /* remember character after option name */
4167 afterchar = arg[len];
4169 /* skip white space, allow ":set ai ?" */
4170 while (vim_iswhite(arg[len]))
4171 ++len;
4173 adding = FALSE;
4174 prepending = FALSE;
4175 removing = FALSE;
4176 if (arg[len] != NUL && arg[len + 1] == '=')
4178 if (arg[len] == '+')
4180 adding = TRUE; /* "+=" */
4181 ++len;
4183 else if (arg[len] == '^')
4185 prepending = TRUE; /* "^=" */
4186 ++len;
4188 else if (arg[len] == '-')
4190 removing = TRUE; /* "-=" */
4191 ++len;
4194 nextchar = arg[len];
4196 if (opt_idx == -1 && key == 0) /* found a mismatch: skip */
4198 errmsg = (char_u *)N_("E518: Unknown option");
4199 goto skip;
4202 if (opt_idx >= 0)
4204 if (options[opt_idx].var == NULL) /* hidden option: skip */
4206 /* Only give an error message when requesting the value of
4207 * a hidden option, ignore setting it. */
4208 if (vim_strchr((char_u *)"=:!&<", nextchar) == NULL
4209 && (!(options[opt_idx].flags & P_BOOL)
4210 || nextchar == '?'))
4211 errmsg = (char_u *)N_("E519: Option not supported");
4212 goto skip;
4215 flags = options[opt_idx].flags;
4216 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
4218 else
4220 flags = P_STRING;
4221 if (key < 0)
4223 key_name[0] = KEY2TERMCAP0(key);
4224 key_name[1] = KEY2TERMCAP1(key);
4226 else
4228 key_name[0] = KS_KEY;
4229 key_name[1] = (key & 0xff);
4233 /* Skip all options that are not window-local (used when showing
4234 * an already loaded buffer in a window). */
4235 if ((opt_flags & OPT_WINONLY)
4236 && (opt_idx < 0 || options[opt_idx].var != VAR_WIN))
4237 goto skip;
4239 /* Skip all options that are window-local (used for :vimgrep). */
4240 if ((opt_flags & OPT_NOWIN) && opt_idx >= 0
4241 && options[opt_idx].var == VAR_WIN)
4242 goto skip;
4244 /* Disallow changing some options from modelines. */
4245 if (opt_flags & OPT_MODELINE)
4247 if (flags & P_SECURE)
4249 errmsg = (char_u *)_("E520: Not allowed in a modeline");
4250 goto skip;
4252 #ifdef FEAT_DIFF
4253 /* In diff mode some options are overruled. This avoids that
4254 * 'foldmethod' becomes "marker" instead of "diff" and that
4255 * "wrap" gets set. */
4256 if (curwin->w_p_diff
4257 && (options[opt_idx].indir == PV_FDM
4258 || options[opt_idx].indir == PV_WRAP))
4259 goto skip;
4260 #endif
4263 #ifdef HAVE_SANDBOX
4264 /* Disallow changing some options in the sandbox */
4265 if (sandbox != 0 && (flags & P_SECURE))
4267 errmsg = (char_u *)_(e_sandbox);
4268 goto skip;
4270 #endif
4272 if (vim_strchr((char_u *)"?=:!&<", nextchar) != NULL)
4274 arg += len;
4275 cp_val = p_cp;
4276 if (nextchar == '&' && arg[1] == 'v' && arg[2] == 'i')
4278 if (arg[3] == 'm') /* "opt&vim": set to Vim default */
4280 cp_val = FALSE;
4281 arg += 3;
4283 else /* "opt&vi": set to Vi default */
4285 cp_val = TRUE;
4286 arg += 2;
4289 if (vim_strchr((char_u *)"?!&<", nextchar) != NULL
4290 && arg[1] != NUL && !vim_iswhite(arg[1]))
4292 errmsg = e_trailing;
4293 goto skip;
4298 * allow '=' and ':' as MSDOS command.com allows only one
4299 * '=' character per "set" command line. grrr. (jw)
4301 if (nextchar == '?'
4302 || (prefix == 1
4303 && vim_strchr((char_u *)"=:&<", nextchar) == NULL
4304 && !(flags & P_BOOL)))
4307 * print value
4309 if (did_show)
4310 msg_putchar('\n'); /* cursor below last one */
4311 else
4313 gotocmdline(TRUE); /* cursor at status line */
4314 did_show = TRUE; /* remember that we did a line */
4316 if (opt_idx >= 0)
4318 showoneopt(&options[opt_idx], opt_flags);
4319 #ifdef FEAT_EVAL
4320 if (p_verbose > 0)
4322 /* Mention where the option was last set. */
4323 if (varp == options[opt_idx].var)
4324 last_set_msg(options[opt_idx].scriptID);
4325 else if ((int)options[opt_idx].indir & PV_WIN)
4326 last_set_msg(curwin->w_p_scriptID[
4327 (int)options[opt_idx].indir & PV_MASK]);
4328 else if ((int)options[opt_idx].indir & PV_BUF)
4329 last_set_msg(curbuf->b_p_scriptID[
4330 (int)options[opt_idx].indir & PV_MASK]);
4332 #endif
4334 else
4336 char_u *p;
4338 p = find_termcode(key_name);
4339 if (p == NULL)
4341 errmsg = (char_u *)N_("E518: Unknown option");
4342 goto skip;
4344 else
4345 (void)show_one_termcode(key_name, p, TRUE);
4347 if (nextchar != '?'
4348 && nextchar != NUL && !vim_iswhite(afterchar))
4349 errmsg = e_trailing;
4351 else
4353 if (flags & P_BOOL) /* boolean */
4355 if (nextchar == '=' || nextchar == ':')
4357 errmsg = e_invarg;
4358 goto skip;
4362 * ":set opt!": invert
4363 * ":set opt&": reset to default value
4364 * ":set opt<": reset to global value
4366 if (nextchar == '!')
4367 value = *(int *)(varp) ^ 1;
4368 else if (nextchar == '&')
4369 value = (int)(long)(long_i)options[opt_idx].def_val[
4370 ((flags & P_VI_DEF) || cp_val)
4371 ? VI_DEFAULT : VIM_DEFAULT];
4372 else if (nextchar == '<')
4374 /* For 'autoread' -1 means to use global value. */
4375 if ((int *)varp == &curbuf->b_p_ar
4376 && opt_flags == OPT_LOCAL)
4377 value = -1;
4378 else
4379 value = *(int *)get_varp_scope(&(options[opt_idx]),
4380 OPT_GLOBAL);
4382 else
4385 * ":set invopt": invert
4386 * ":set opt" or ":set noopt": set or reset
4388 if (nextchar != NUL && !vim_iswhite(afterchar))
4390 errmsg = e_trailing;
4391 goto skip;
4393 if (prefix == 2) /* inv */
4394 value = *(int *)(varp) ^ 1;
4395 else
4396 value = prefix;
4399 errmsg = set_bool_option(opt_idx, varp, (int)value,
4400 opt_flags);
4402 else /* numeric or string */
4404 if (vim_strchr((char_u *)"=:&<", nextchar) == NULL
4405 || prefix != 1)
4407 errmsg = e_invarg;
4408 goto skip;
4411 if (flags & P_NUM) /* numeric */
4414 * Different ways to set a number option:
4415 * & set to default value
4416 * < set to global value
4417 * <xx> accept special key codes for 'wildchar'
4418 * c accept any non-digit for 'wildchar'
4419 * [-]0-9 set number
4420 * other error
4422 ++arg;
4423 if (nextchar == '&')
4424 value = (long)(long_i)options[opt_idx].def_val[
4425 ((flags & P_VI_DEF) || cp_val)
4426 ? VI_DEFAULT : VIM_DEFAULT];
4427 else if (nextchar == '<')
4428 value = *(long *)get_varp_scope(&(options[opt_idx]),
4429 OPT_GLOBAL);
4430 else if (((long *)varp == &p_wc
4431 || (long *)varp == &p_wcm)
4432 && (*arg == '<'
4433 || *arg == '^'
4434 || ((!arg[1] || vim_iswhite(arg[1]))
4435 && !VIM_ISDIGIT(*arg))))
4437 value = string_to_key(arg);
4438 if (value == 0 && (long *)varp != &p_wcm)
4440 errmsg = e_invarg;
4441 goto skip;
4444 /* allow negative numbers (for 'undolevels') */
4445 else if (*arg == '-' || VIM_ISDIGIT(*arg))
4447 i = 0;
4448 if (*arg == '-')
4449 i = 1;
4450 #ifdef HAVE_STRTOL
4451 value = strtol((char *)arg, NULL, 0);
4452 if (arg[i] == '0' && TOLOWER_ASC(arg[i + 1]) == 'x')
4453 i += 2;
4454 #else
4455 value = atol((char *)arg);
4456 #endif
4457 while (VIM_ISDIGIT(arg[i]))
4458 ++i;
4459 if (arg[i] != NUL && !vim_iswhite(arg[i]))
4461 errmsg = e_invarg;
4462 goto skip;
4465 else
4467 errmsg = (char_u *)N_("E521: Number required after =");
4468 goto skip;
4471 if (adding)
4472 value = *(long *)varp + value;
4473 if (prepending)
4474 value = *(long *)varp * value;
4475 if (removing)
4476 value = *(long *)varp - value;
4477 errmsg = set_num_option(opt_idx, varp, value,
4478 errbuf, sizeof(errbuf), opt_flags);
4480 else if (opt_idx >= 0) /* string */
4482 char_u *save_arg = NULL;
4483 char_u *s = NULL;
4484 char_u *oldval; /* previous value if *varp */
4485 char_u *newval;
4486 char_u *origval;
4487 unsigned newlen;
4488 int comma;
4489 int bs;
4490 int new_value_alloced; /* new string option
4491 was allocated */
4493 /* When using ":set opt=val" for a global option
4494 * with a local value the local value will be
4495 * reset, use the global value here. */
4496 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
4497 && ((int)options[opt_idx].indir & PV_BOTH))
4498 varp = options[opt_idx].var;
4500 /* The old value is kept until we are sure that the
4501 * new value is valid. */
4502 oldval = *(char_u **)varp;
4503 if (nextchar == '&') /* set to default val */
4505 newval = options[opt_idx].def_val[
4506 ((flags & P_VI_DEF) || cp_val)
4507 ? VI_DEFAULT : VIM_DEFAULT];
4508 if ((char_u **)varp == &p_bg)
4510 /* guess the value of 'background' */
4511 #ifdef FEAT_GUI
4512 if (gui.in_use)
4513 newval = gui_bg_default();
4514 else
4515 #endif
4516 newval = term_bg_default();
4519 /* expand environment variables and ~ (since the
4520 * default value was already expanded, only
4521 * required when an environment variable was set
4522 * later */
4523 if (newval == NULL)
4524 newval = empty_option;
4525 else
4527 s = option_expand(opt_idx, newval);
4528 if (s == NULL)
4529 s = newval;
4530 newval = vim_strsave(s);
4532 new_value_alloced = TRUE;
4534 else if (nextchar == '<') /* set to global val */
4536 newval = vim_strsave(*(char_u **)get_varp_scope(
4537 &(options[opt_idx]), OPT_GLOBAL));
4538 new_value_alloced = TRUE;
4540 else
4542 ++arg; /* jump to after the '=' or ':' */
4545 * Set 'keywordprg' to ":help" if an empty
4546 * value was passed to :set by the user.
4547 * Misuse errbuf[] for the resulting string.
4549 if (varp == (char_u *)&p_kp
4550 && (*arg == NUL || *arg == ' '))
4552 STRCPY(errbuf, ":help");
4553 save_arg = arg;
4554 arg = errbuf;
4557 * Convert 'whichwrap' number to string, for
4558 * backwards compatibility with Vim 3.0.
4559 * Misuse errbuf[] for the resulting string.
4561 else if (varp == (char_u *)&p_ww
4562 && VIM_ISDIGIT(*arg))
4564 *errbuf = NUL;
4565 i = getdigits(&arg);
4566 if (i & 1)
4567 STRCAT(errbuf, "b,");
4568 if (i & 2)
4569 STRCAT(errbuf, "s,");
4570 if (i & 4)
4571 STRCAT(errbuf, "h,l,");
4572 if (i & 8)
4573 STRCAT(errbuf, "<,>,");
4574 if (i & 16)
4575 STRCAT(errbuf, "[,],");
4576 if (*errbuf != NUL) /* remove trailing , */
4577 errbuf[STRLEN(errbuf) - 1] = NUL;
4578 save_arg = arg;
4579 arg = errbuf;
4582 * Remove '>' before 'dir' and 'bdir', for
4583 * backwards compatibility with version 3.0
4585 else if ( *arg == '>'
4586 && (varp == (char_u *)&p_dir
4587 || varp == (char_u *)&p_bdir))
4589 ++arg;
4592 /* When setting the local value of a global
4593 * option, the old value may be the global value. */
4594 if (((int)options[opt_idx].indir & PV_BOTH)
4595 && (opt_flags & OPT_LOCAL))
4596 origval = *(char_u **)get_varp(
4597 &options[opt_idx]);
4598 else
4599 origval = oldval;
4602 * Copy the new string into allocated memory.
4603 * Can't use set_string_option_direct(), because
4604 * we need to remove the backslashes.
4606 /* get a bit too much */
4607 newlen = (unsigned)STRLEN(arg) + 1;
4608 if (adding || prepending || removing)
4609 newlen += (unsigned)STRLEN(origval) + 1;
4610 newval = alloc(newlen);
4611 if (newval == NULL) /* out of mem, don't change */
4612 break;
4613 s = newval;
4616 * Copy the string, skip over escaped chars.
4617 * For MS-DOS and WIN32 backslashes before normal
4618 * file name characters are not removed, and keep
4619 * backslash at start, for "\\machine\path", but
4620 * do remove it for "\\\\machine\\path".
4621 * The reverse is found in ExpandOldSetting().
4623 while (*arg && !vim_iswhite(*arg))
4625 if (*arg == '\\' && arg[1] != NUL
4626 #ifdef BACKSLASH_IN_FILENAME
4627 && !((flags & P_EXPAND)
4628 && vim_isfilec(arg[1])
4629 && (arg[1] != '\\'
4630 || (s == newval
4631 && arg[2] != '\\')))
4632 #endif
4634 ++arg; /* remove backslash */
4635 #ifdef FEAT_MBYTE
4636 if (has_mbyte
4637 && (i = (*mb_ptr2len)(arg)) > 1)
4639 /* copy multibyte char */
4640 mch_memmove(s, arg, (size_t)i);
4641 arg += i;
4642 s += i;
4644 else
4645 #endif
4646 *s++ = *arg++;
4648 *s = NUL;
4651 * Expand environment variables and ~.
4652 * Don't do it when adding without inserting a
4653 * comma.
4655 if (!(adding || prepending || removing)
4656 || (flags & P_COMMA))
4658 s = option_expand(opt_idx, newval);
4659 if (s != NULL)
4661 vim_free(newval);
4662 newlen = (unsigned)STRLEN(s) + 1;
4663 if (adding || prepending || removing)
4664 newlen += (unsigned)STRLEN(origval) + 1;
4665 newval = alloc(newlen);
4666 if (newval == NULL)
4667 break;
4668 STRCPY(newval, s);
4672 /* locate newval[] in origval[] when removing it
4673 * and when adding to avoid duplicates */
4674 i = 0; /* init for GCC */
4675 if (removing || (flags & P_NODUP))
4677 i = (int)STRLEN(newval);
4678 bs = 0;
4679 for (s = origval; *s; ++s)
4681 if ((!(flags & P_COMMA)
4682 || s == origval
4683 || (s[-1] == ',' && !(bs & 1)))
4684 && STRNCMP(s, newval, i) == 0
4685 && (!(flags & P_COMMA)
4686 || s[i] == ','
4687 || s[i] == NUL))
4688 break;
4689 /* Count backspaces. Only a comma with an
4690 * even number of backspaces before it is
4691 * recognized as a separator */
4692 if (s > origval && s[-1] == '\\')
4693 ++bs;
4694 else
4695 bs = 0;
4698 /* do not add if already there */
4699 if ((adding || prepending) && *s)
4701 prepending = FALSE;
4702 adding = FALSE;
4703 STRCPY(newval, origval);
4707 /* concatenate the two strings; add a ',' if
4708 * needed */
4709 if (adding || prepending)
4711 comma = ((flags & P_COMMA) && *origval != NUL
4712 && *newval != NUL);
4713 if (adding)
4715 i = (int)STRLEN(origval);
4716 mch_memmove(newval + i + comma, newval,
4717 STRLEN(newval) + 1);
4718 mch_memmove(newval, origval, (size_t)i);
4720 else
4722 i = (int)STRLEN(newval);
4723 STRMOVE(newval + i + comma, origval);
4725 if (comma)
4726 newval[i] = ',';
4729 /* Remove newval[] from origval[]. (Note: "i" has
4730 * been set above and is used here). */
4731 if (removing)
4733 STRCPY(newval, origval);
4734 if (*s)
4736 /* may need to remove a comma */
4737 if (flags & P_COMMA)
4739 if (s == origval)
4741 /* include comma after string */
4742 if (s[i] == ',')
4743 ++i;
4745 else
4747 /* include comma before string */
4748 --s;
4749 ++i;
4752 STRMOVE(newval + (s - origval), s + i);
4756 if (flags & P_FLAGLIST)
4758 /* Remove flags that appear twice. */
4759 for (s = newval; *s; ++s)
4760 if ((!(flags & P_COMMA) || *s != ',')
4761 && vim_strchr(s + 1, *s) != NULL)
4763 STRMOVE(s, s + 1);
4764 --s;
4768 if (save_arg != NULL) /* number for 'whichwrap' */
4769 arg = save_arg;
4770 new_value_alloced = TRUE;
4773 /* Set the new value. */
4774 *(char_u **)(varp) = newval;
4776 /* Handle side effects, and set the global value for
4777 * ":set" on local options. */
4778 errmsg = did_set_string_option(opt_idx, (char_u **)varp,
4779 new_value_alloced, oldval, errbuf, opt_flags);
4781 /* If error detected, print the error message. */
4782 if (errmsg != NULL)
4783 goto skip;
4785 else /* key code option */
4787 char_u *p;
4789 if (nextchar == '&')
4791 if (add_termcap_entry(key_name, TRUE) == FAIL)
4792 errmsg = (char_u *)N_("E522: Not found in termcap");
4794 else
4796 ++arg; /* jump to after the '=' or ':' */
4797 for (p = arg; *p && !vim_iswhite(*p); ++p)
4798 if (*p == '\\' && p[1] != NUL)
4799 ++p;
4800 nextchar = *p;
4801 *p = NUL;
4802 add_termcode(key_name, arg, FALSE);
4803 *p = nextchar;
4805 if (full_screen)
4806 ttest(FALSE);
4807 redraw_all_later(CLEAR);
4811 if (opt_idx >= 0)
4812 did_set_option(opt_idx, opt_flags,
4813 !prepending && !adding && !removing);
4816 skip:
4818 * Advance to next argument.
4819 * - skip until a blank found, taking care of backslashes
4820 * - skip blanks
4821 * - skip one "=val" argument (for hidden options ":set gfn =xx")
4823 for (i = 0; i < 2 ; ++i)
4825 while (*arg != NUL && !vim_iswhite(*arg))
4826 if (*arg++ == '\\' && *arg != NUL)
4827 ++arg;
4828 arg = skipwhite(arg);
4829 if (*arg != '=')
4830 break;
4834 if (errmsg != NULL)
4836 vim_strncpy(IObuff, (char_u *)_(errmsg), IOSIZE - 1);
4837 i = (int)STRLEN(IObuff) + 2;
4838 if (i + (arg - startarg) < IOSIZE)
4840 /* append the argument with the error */
4841 STRCAT(IObuff, ": ");
4842 mch_memmove(IObuff + i, startarg, (arg - startarg));
4843 IObuff[i + (arg - startarg)] = NUL;
4845 /* make sure all characters are printable */
4846 trans_characters(IObuff, IOSIZE);
4848 ++no_wait_return; /* wait_return done later */
4849 emsg(IObuff); /* show error highlighted */
4850 --no_wait_return;
4852 return FAIL;
4855 arg = skipwhite(arg);
4858 theend:
4859 if (silent_mode && did_show)
4861 /* After displaying option values in silent mode. */
4862 silent_mode = FALSE;
4863 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
4864 msg_putchar('\n');
4865 cursor_on(); /* msg_start() switches it off */
4866 out_flush();
4867 silent_mode = TRUE;
4868 info_message = FALSE; /* use mch_msg(), not mch_errmsg() */
4871 return OK;
4875 * Call this when an option has been given a new value through a user command.
4876 * Sets the P_WAS_SET flag and takes care of the P_INSECURE flag.
4878 static void
4879 did_set_option(opt_idx, opt_flags, new_value)
4880 int opt_idx;
4881 int opt_flags; /* possibly with OPT_MODELINE */
4882 int new_value; /* value was replaced completely */
4884 long_u *p;
4886 options[opt_idx].flags |= P_WAS_SET;
4888 /* When an option is set in the sandbox, from a modeline or in secure mode
4889 * set the P_INSECURE flag. Otherwise, if a new value is stored reset the
4890 * flag. */
4891 p = insecure_flag(opt_idx, opt_flags);
4892 if (secure
4893 #ifdef HAVE_SANDBOX
4894 || sandbox != 0
4895 #endif
4896 || (opt_flags & OPT_MODELINE))
4897 *p = *p | P_INSECURE;
4898 else if (new_value)
4899 *p = *p & ~P_INSECURE;
4902 static char_u *
4903 illegal_char(errbuf, c)
4904 char_u *errbuf;
4905 int c;
4907 if (errbuf == NULL)
4908 return (char_u *)"";
4909 sprintf((char *)errbuf, _("E539: Illegal character <%s>"),
4910 (char *)transchar(c));
4911 return errbuf;
4915 * Convert a key name or string into a key value.
4916 * Used for 'wildchar' and 'cedit' options.
4918 static int
4919 string_to_key(arg)
4920 char_u *arg;
4922 if (*arg == '<')
4923 return find_key_option(arg + 1);
4924 if (*arg == '^')
4925 return Ctrl_chr(arg[1]);
4926 return *arg;
4929 #ifdef FEAT_CMDWIN
4931 * Check value of 'cedit' and set cedit_key.
4932 * Returns NULL if value is OK, error message otherwise.
4934 static char_u *
4935 check_cedit()
4937 int n;
4939 if (*p_cedit == NUL)
4940 cedit_key = -1;
4941 else
4943 n = string_to_key(p_cedit);
4944 if (vim_isprintc(n))
4945 return e_invarg;
4946 cedit_key = n;
4948 return NULL;
4950 #endif
4952 #ifdef FEAT_TITLE
4954 * When changing 'title', 'titlestring', 'icon' or 'iconstring', call
4955 * maketitle() to create and display it.
4956 * When switching the title or icon off, call mch_restore_title() to get
4957 * the old value back.
4959 static void
4960 did_set_title(icon)
4961 int icon; /* Did set icon instead of title */
4963 if (starting != NO_SCREEN
4964 #ifdef FEAT_GUI
4965 && !gui.starting
4966 #endif
4969 maketitle();
4970 if (icon)
4972 if (!p_icon)
4973 mch_restore_title(2);
4975 else
4977 if (!p_title)
4978 mch_restore_title(1);
4982 #endif
4985 * set_options_bin - called when 'bin' changes value.
4987 void
4988 set_options_bin(oldval, newval, opt_flags)
4989 int oldval;
4990 int newval;
4991 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
4994 * The option values that are changed when 'bin' changes are
4995 * copied when 'bin is set and restored when 'bin' is reset.
4997 if (newval)
4999 if (!oldval) /* switched on */
5001 if (!(opt_flags & OPT_GLOBAL))
5003 curbuf->b_p_tw_nobin = curbuf->b_p_tw;
5004 curbuf->b_p_wm_nobin = curbuf->b_p_wm;
5005 curbuf->b_p_ml_nobin = curbuf->b_p_ml;
5006 curbuf->b_p_et_nobin = curbuf->b_p_et;
5008 if (!(opt_flags & OPT_LOCAL))
5010 p_tw_nobin = p_tw;
5011 p_wm_nobin = p_wm;
5012 p_ml_nobin = p_ml;
5013 p_et_nobin = p_et;
5017 if (!(opt_flags & OPT_GLOBAL))
5019 curbuf->b_p_tw = 0; /* no automatic line wrap */
5020 curbuf->b_p_wm = 0; /* no automatic line wrap */
5021 curbuf->b_p_ml = 0; /* no modelines */
5022 curbuf->b_p_et = 0; /* no expandtab */
5024 if (!(opt_flags & OPT_LOCAL))
5026 p_tw = 0;
5027 p_wm = 0;
5028 p_ml = FALSE;
5029 p_et = FALSE;
5030 p_bin = TRUE; /* needed when called for the "-b" argument */
5033 else if (oldval) /* switched off */
5035 if (!(opt_flags & OPT_GLOBAL))
5037 curbuf->b_p_tw = curbuf->b_p_tw_nobin;
5038 curbuf->b_p_wm = curbuf->b_p_wm_nobin;
5039 curbuf->b_p_ml = curbuf->b_p_ml_nobin;
5040 curbuf->b_p_et = curbuf->b_p_et_nobin;
5042 if (!(opt_flags & OPT_LOCAL))
5044 p_tw = p_tw_nobin;
5045 p_wm = p_wm_nobin;
5046 p_ml = p_ml_nobin;
5047 p_et = p_et_nobin;
5052 #ifdef FEAT_VIMINFO
5054 * Find the parameter represented by the given character (eg ', :, ", or /),
5055 * and return its associated value in the 'viminfo' string.
5056 * Only works for number parameters, not for 'r' or 'n'.
5057 * If the parameter is not specified in the string or there is no following
5058 * number, return -1.
5061 get_viminfo_parameter(type)
5062 int type;
5064 char_u *p;
5066 p = find_viminfo_parameter(type);
5067 if (p != NULL && VIM_ISDIGIT(*p))
5068 return atoi((char *)p);
5069 return -1;
5073 * Find the parameter represented by the given character (eg ''', ':', '"', or
5074 * '/') in the 'viminfo' option and return a pointer to the string after it.
5075 * Return NULL if the parameter is not specified in the string.
5077 char_u *
5078 find_viminfo_parameter(type)
5079 int type;
5081 char_u *p;
5083 for (p = p_viminfo; *p; ++p)
5085 if (*p == type)
5086 return p + 1;
5087 if (*p == 'n') /* 'n' is always the last one */
5088 break;
5089 p = vim_strchr(p, ','); /* skip until next ',' */
5090 if (p == NULL) /* hit the end without finding parameter */
5091 break;
5093 return NULL;
5095 #endif
5098 * Expand environment variables for some string options.
5099 * These string options cannot be indirect!
5100 * If "val" is NULL expand the current value of the option.
5101 * Return pointer to NameBuff, or NULL when not expanded.
5103 static char_u *
5104 option_expand(opt_idx, val)
5105 int opt_idx;
5106 char_u *val;
5108 /* if option doesn't need expansion nothing to do */
5109 if (!(options[opt_idx].flags & P_EXPAND) || options[opt_idx].var == NULL)
5110 return NULL;
5112 /* If val is longer than MAXPATHL no meaningful expansion can be done,
5113 * expand_env() would truncate the string. */
5114 if (val != NULL && STRLEN(val) > MAXPATHL)
5115 return NULL;
5117 if (val == NULL)
5118 val = *(char_u **)options[opt_idx].var;
5121 * Expanding this with NameBuff, expand_env() must not be passed IObuff.
5122 * Escape spaces when expanding 'tags', they are used to separate file
5123 * names.
5124 * For 'spellsuggest' expand after "file:".
5126 expand_env_esc(val, NameBuff, MAXPATHL,
5127 (char_u **)options[opt_idx].var == &p_tags, FALSE,
5128 #ifdef FEAT_SPELL
5129 (char_u **)options[opt_idx].var == &p_sps ? (char_u *)"file:" :
5130 #endif
5131 NULL);
5132 if (STRCMP(NameBuff, val) == 0) /* they are the same */
5133 return NULL;
5135 return NameBuff;
5139 * After setting various option values: recompute variables that depend on
5140 * option values.
5142 static void
5143 didset_options()
5145 /* initialize the table for 'iskeyword' et.al. */
5146 (void)init_chartab();
5148 #ifdef FEAT_MBYTE
5149 (void)opt_strings_flags(p_cmp, p_cmp_values, &cmp_flags, TRUE);
5150 #endif
5151 (void)opt_strings_flags(p_bkc, p_bkc_values, &bkc_flags, TRUE);
5152 #ifdef FEAT_SESSION
5153 (void)opt_strings_flags(p_ssop, p_ssop_values, &ssop_flags, TRUE);
5154 (void)opt_strings_flags(p_vop, p_ssop_values, &vop_flags, TRUE);
5155 #endif
5156 #ifdef FEAT_FOLDING
5157 (void)opt_strings_flags(p_fdo, p_fdo_values, &fdo_flags, TRUE);
5158 #endif
5159 (void)opt_strings_flags(p_dy, p_dy_values, &dy_flags, TRUE);
5160 #ifdef FEAT_VIRTUALEDIT
5161 (void)opt_strings_flags(p_ve, p_ve_values, &ve_flags, TRUE);
5162 #endif
5163 #if defined(FEAT_MOUSE) && (defined(UNIX) || defined(VMS))
5164 (void)opt_strings_flags(p_ttym, p_ttym_values, &ttym_flags, FALSE);
5165 #endif
5166 #ifdef FEAT_SPELL
5167 (void)spell_check_msm();
5168 (void)spell_check_sps();
5169 (void)compile_cap_prog(curbuf);
5170 #endif
5171 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
5172 (void)opt_strings_flags(p_toolbar, p_toolbar_values, &toolbar_flags, TRUE);
5173 #endif
5174 #if defined(FEAT_TOOLBAR) && defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)
5175 (void)opt_strings_flags(p_tbis, p_tbis_values, &tbis_flags, FALSE);
5176 #endif
5177 #ifdef FEAT_CMDWIN
5178 /* set cedit_key */
5179 (void)check_cedit();
5180 #endif
5181 #ifdef FEAT_VARTABS
5182 tabstop_set(curbuf->b_p_vsts, &curbuf->b_p_vsts_ary);
5183 tabstop_set(curbuf->b_p_vts, &curbuf->b_p_vts_ary);
5184 #endif
5188 * Check for string options that are NULL (normally only termcap options).
5190 void
5191 check_options()
5193 int opt_idx;
5195 for (opt_idx = 0; options[opt_idx].fullname != NULL; opt_idx++)
5196 if ((options[opt_idx].flags & P_STRING) && options[opt_idx].var != NULL)
5197 check_string_option((char_u **)get_varp(&(options[opt_idx])));
5201 * Check string options in a buffer for NULL value.
5203 void
5204 check_buf_options(buf)
5205 buf_T *buf;
5207 #if defined(FEAT_QUICKFIX)
5208 check_string_option(&buf->b_p_bh);
5209 check_string_option(&buf->b_p_bt);
5210 #endif
5211 #ifdef FEAT_MBYTE
5212 check_string_option(&buf->b_p_fenc);
5213 #endif
5214 check_string_option(&buf->b_p_ff);
5215 #ifdef FEAT_FIND_ID
5216 check_string_option(&buf->b_p_def);
5217 check_string_option(&buf->b_p_inc);
5218 # ifdef FEAT_EVAL
5219 check_string_option(&buf->b_p_inex);
5220 # endif
5221 #endif
5222 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
5223 check_string_option(&buf->b_p_inde);
5224 check_string_option(&buf->b_p_indk);
5225 #endif
5226 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
5227 check_string_option(&buf->b_p_bexpr);
5228 #endif
5229 #if defined(FEAT_EVAL)
5230 check_string_option(&buf->b_p_fex);
5231 #endif
5232 #ifdef FEAT_CRYPT
5233 check_string_option(&buf->b_p_key);
5234 #endif
5235 check_string_option(&buf->b_p_kp);
5236 check_string_option(&buf->b_p_mps);
5237 check_string_option(&buf->b_p_fo);
5238 check_string_option(&buf->b_p_flp);
5239 check_string_option(&buf->b_p_isk);
5240 #ifdef FEAT_COMMENTS
5241 check_string_option(&buf->b_p_com);
5242 #endif
5243 #ifdef FEAT_FOLDING
5244 check_string_option(&buf->b_p_cms);
5245 #endif
5246 check_string_option(&buf->b_p_nf);
5247 #ifdef FEAT_TEXTOBJ
5248 check_string_option(&buf->b_p_qe);
5249 #endif
5250 #ifdef FEAT_SYN_HL
5251 check_string_option(&buf->b_p_syn);
5252 #endif
5253 #ifdef FEAT_SPELL
5254 check_string_option(&buf->b_p_spc);
5255 check_string_option(&buf->b_p_spf);
5256 check_string_option(&buf->b_p_spl);
5257 #endif
5258 #ifdef FEAT_SEARCHPATH
5259 check_string_option(&buf->b_p_sua);
5260 #endif
5261 #ifdef FEAT_CINDENT
5262 check_string_option(&buf->b_p_cink);
5263 check_string_option(&buf->b_p_cino);
5264 #endif
5265 #ifdef FEAT_AUTOCMD
5266 check_string_option(&buf->b_p_ft);
5267 #endif
5268 #ifdef FEAT_OSFILETYPE
5269 check_string_option(&buf->b_p_oft);
5270 #endif
5271 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
5272 check_string_option(&buf->b_p_cinw);
5273 #endif
5274 #ifdef FEAT_INS_EXPAND
5275 check_string_option(&buf->b_p_cpt);
5276 #endif
5277 #ifdef FEAT_COMPL_FUNC
5278 check_string_option(&buf->b_p_cfu);
5279 check_string_option(&buf->b_p_ofu);
5280 check_string_option(&buf->b_p_tfu);
5281 #endif
5282 #ifdef FEAT_KEYMAP
5283 check_string_option(&buf->b_p_keymap);
5284 #endif
5285 #ifdef FEAT_QUICKFIX
5286 check_string_option(&buf->b_p_gp);
5287 check_string_option(&buf->b_p_mp);
5288 check_string_option(&buf->b_p_efm);
5289 #endif
5290 check_string_option(&buf->b_p_ep);
5291 check_string_option(&buf->b_p_path);
5292 check_string_option(&buf->b_p_tags);
5293 #ifdef FEAT_INS_EXPAND
5294 check_string_option(&buf->b_p_dict);
5295 check_string_option(&buf->b_p_tsr);
5296 #endif
5297 #ifdef FEAT_VARTABS
5298 check_string_option(&buf->b_p_vsts);
5299 check_string_option(&buf->b_p_vts);
5300 #endif
5304 * Free the string allocated for an option.
5305 * Checks for the string being empty_option. This may happen if we're out of
5306 * memory, vim_strsave() returned NULL, which was replaced by empty_option by
5307 * check_options().
5308 * Does NOT check for P_ALLOCED flag!
5310 void
5311 free_string_option(p)
5312 char_u *p;
5314 if (p != empty_option)
5315 vim_free(p);
5318 void
5319 clear_string_option(pp)
5320 char_u **pp;
5322 if (*pp != empty_option)
5323 vim_free(*pp);
5324 *pp = empty_option;
5327 static void
5328 check_string_option(pp)
5329 char_u **pp;
5331 if (*pp == NULL)
5332 *pp = empty_option;
5336 * Mark a terminal option as allocated, found by a pointer into term_strings[].
5338 void
5339 set_term_option_alloced(p)
5340 char_u **p;
5342 int opt_idx;
5344 for (opt_idx = 1; options[opt_idx].fullname != NULL; opt_idx++)
5345 if (options[opt_idx].var == (char_u *)p)
5347 options[opt_idx].flags |= P_ALLOCED;
5348 return;
5350 return; /* cannot happen: didn't find it! */
5353 #if defined(FEAT_EVAL) || defined(PROTO)
5355 * Return TRUE when option "opt" was set from a modeline or in secure mode.
5356 * Return FALSE when it wasn't.
5357 * Return -1 for an unknown option.
5360 was_set_insecurely(opt, opt_flags)
5361 char_u *opt;
5362 int opt_flags;
5364 int idx = findoption(opt);
5365 long_u *flagp;
5367 if (idx >= 0)
5369 flagp = insecure_flag(idx, opt_flags);
5370 return (*flagp & P_INSECURE) != 0;
5372 EMSG2(_(e_intern2), "was_set_insecurely()");
5373 return -1;
5377 * Get a pointer to the flags used for the P_INSECURE flag of option
5378 * "opt_idx". For some local options a local flags field is used.
5380 static long_u *
5381 insecure_flag(opt_idx, opt_flags)
5382 int opt_idx;
5383 int opt_flags;
5385 if (opt_flags & OPT_LOCAL)
5386 switch ((int)options[opt_idx].indir)
5388 #ifdef FEAT_STL_OPT
5389 case PV_STL: return &curwin->w_p_stl_flags;
5390 #endif
5391 #ifdef FEAT_EVAL
5392 # ifdef FEAT_FOLDING
5393 case PV_FDE: return &curwin->w_p_fde_flags;
5394 case PV_FDT: return &curwin->w_p_fdt_flags;
5395 # endif
5396 # ifdef FEAT_BEVAL
5397 case PV_BEXPR: return &curbuf->b_p_bexpr_flags;
5398 # endif
5399 # if defined(FEAT_CINDENT)
5400 case PV_INDE: return &curbuf->b_p_inde_flags;
5401 # endif
5402 case PV_FEX: return &curbuf->b_p_fex_flags;
5403 # ifdef FEAT_FIND_ID
5404 case PV_INEX: return &curbuf->b_p_inex_flags;
5405 # endif
5406 #endif
5409 /* Nothing special, return global flags field. */
5410 return &options[opt_idx].flags;
5412 #endif
5414 #ifdef FEAT_TITLE
5415 static void redraw_titles __ARGS((void));
5418 * Redraw the window title and/or tab page text later.
5420 static void redraw_titles()
5422 need_maketitle = TRUE;
5423 # ifdef FEAT_WINDOWS
5424 redraw_tabline = TRUE;
5425 # endif
5427 #endif
5430 * Set a string option to a new value (without checking the effect).
5431 * The string is copied into allocated memory.
5432 * if ("opt_idx" == -1) "name" is used, otherwise "opt_idx" is used.
5433 * When "set_sid" is zero set the scriptID to current_SID. When "set_sid" is
5434 * SID_NONE don't set the scriptID. Otherwise set the scriptID to "set_sid".
5436 void
5437 set_string_option_direct(name, opt_idx, val, opt_flags, set_sid)
5438 char_u *name;
5439 int opt_idx;
5440 char_u *val;
5441 int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */
5442 int set_sid UNUSED;
5444 char_u *s;
5445 char_u **varp;
5446 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
5447 int idx = opt_idx;
5449 if (idx == -1) /* use name */
5451 idx = findoption(name);
5452 if (idx < 0) /* not found (should not happen) */
5454 EMSG2(_(e_intern2), "set_string_option_direct()");
5455 return;
5459 if (options[idx].var == NULL) /* can't set hidden option */
5460 return;
5462 s = vim_strsave(val);
5463 if (s != NULL)
5465 varp = (char_u **)get_varp_scope(&(options[idx]),
5466 both ? OPT_LOCAL : opt_flags);
5467 if ((opt_flags & OPT_FREE) && (options[idx].flags & P_ALLOCED))
5468 free_string_option(*varp);
5469 *varp = s;
5471 /* For buffer/window local option may also set the global value. */
5472 if (both)
5473 set_string_option_global(idx, varp);
5475 options[idx].flags |= P_ALLOCED;
5477 /* When setting both values of a global option with a local value,
5478 * make the local value empty, so that the global value is used. */
5479 if (((int)options[idx].indir & PV_BOTH) && both)
5481 free_string_option(*varp);
5482 *varp = empty_option;
5484 # ifdef FEAT_EVAL
5485 if (set_sid != SID_NONE)
5486 set_option_scriptID_idx(idx, opt_flags,
5487 set_sid == 0 ? current_SID : set_sid);
5488 # endif
5493 * Set global value for string option when it's a local option.
5495 static void
5496 set_string_option_global(opt_idx, varp)
5497 int opt_idx; /* option index */
5498 char_u **varp; /* pointer to option variable */
5500 char_u **p, *s;
5502 /* the global value is always allocated */
5503 if (options[opt_idx].var == VAR_WIN)
5504 p = (char_u **)GLOBAL_WO(varp);
5505 else
5506 p = (char_u **)options[opt_idx].var;
5507 if (options[opt_idx].indir != PV_NONE
5508 && p != varp
5509 && (s = vim_strsave(*varp)) != NULL)
5511 free_string_option(*p);
5512 *p = s;
5517 * Set a string option to a new value, and handle the effects.
5519 static void
5520 set_string_option(opt_idx, value, opt_flags)
5521 int opt_idx;
5522 char_u *value;
5523 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
5525 char_u *s;
5526 char_u **varp;
5527 char_u *oldval;
5529 if (options[opt_idx].var == NULL) /* don't set hidden option */
5530 return;
5532 s = vim_strsave(value);
5533 if (s != NULL)
5535 varp = (char_u **)get_varp_scope(&(options[opt_idx]),
5536 (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
5537 ? (((int)options[opt_idx].indir & PV_BOTH)
5538 ? OPT_GLOBAL : OPT_LOCAL)
5539 : opt_flags);
5540 oldval = *varp;
5541 *varp = s;
5542 if (did_set_string_option(opt_idx, varp, TRUE, oldval, NULL,
5543 opt_flags) == NULL)
5544 did_set_option(opt_idx, opt_flags, TRUE);
5549 * Handle string options that need some action to perform when changed.
5550 * Returns NULL for success, or an error message for an error.
5552 static char_u *
5553 did_set_string_option(opt_idx, varp, new_value_alloced, oldval, errbuf,
5554 opt_flags)
5555 int opt_idx; /* index in options[] table */
5556 char_u **varp; /* pointer to the option variable */
5557 int new_value_alloced; /* new value was allocated */
5558 char_u *oldval; /* previous value of the option */
5559 char_u *errbuf; /* buffer for errors, or NULL */
5560 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
5562 char_u *errmsg = NULL;
5563 char_u *s, *p;
5564 int did_chartab = FALSE;
5565 char_u **gvarp;
5566 long_u free_oldval = (options[opt_idx].flags & P_ALLOCED);
5567 #ifdef FEAT_GUI
5568 /* set when changing an option that only requires a redraw in the GUI */
5569 int redraw_gui_only = FALSE;
5570 #endif
5572 /* Get the global option to compare with, otherwise we would have to check
5573 * two values for all local options. */
5574 gvarp = (char_u **)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL);
5576 /* Disallow changing some options from secure mode */
5577 if ((secure
5578 #ifdef HAVE_SANDBOX
5579 || sandbox != 0
5580 #endif
5581 ) && (options[opt_idx].flags & P_SECURE))
5583 errmsg = e_secure;
5586 /* Check for a "normal" file name in some options. Disallow a path
5587 * separator (slash and/or backslash), wildcards and characters that are
5588 * often illegal in a file name. */
5589 else if ((options[opt_idx].flags & P_NFNAME)
5590 && vim_strpbrk(*varp, (char_u *)"/\\*?[|<>") != NULL)
5592 errmsg = e_invarg;
5595 /* 'term' */
5596 else if (varp == &T_NAME)
5598 if (T_NAME[0] == NUL)
5599 errmsg = (char_u *)N_("E529: Cannot set 'term' to empty string");
5600 #ifdef FEAT_GUI
5601 if (gui.in_use)
5602 errmsg = (char_u *)N_("E530: Cannot change term in GUI");
5603 else if (term_is_gui(T_NAME))
5604 errmsg = (char_u *)N_("E531: Use \":gui\" to start the GUI");
5605 #endif
5606 else if (set_termname(T_NAME) == FAIL)
5607 errmsg = (char_u *)N_("E522: Not found in termcap");
5608 else
5609 /* Screen colors may have changed. */
5610 redraw_later_clear();
5613 /* 'backupcopy' */
5614 else if (varp == &p_bkc)
5616 if (opt_strings_flags(p_bkc, p_bkc_values, &bkc_flags, TRUE) != OK)
5617 errmsg = e_invarg;
5618 if (((bkc_flags & BKC_AUTO) != 0)
5619 + ((bkc_flags & BKC_YES) != 0)
5620 + ((bkc_flags & BKC_NO) != 0) != 1)
5622 /* Must have exactly one of "auto", "yes" and "no". */
5623 (void)opt_strings_flags(oldval, p_bkc_values, &bkc_flags, TRUE);
5624 errmsg = e_invarg;
5628 /* 'backupext' and 'patchmode' */
5629 else if (varp == &p_bex || varp == &p_pm)
5631 if (STRCMP(*p_bex == '.' ? p_bex + 1 : p_bex,
5632 *p_pm == '.' ? p_pm + 1 : p_pm) == 0)
5633 errmsg = (char_u *)N_("E589: 'backupext' and 'patchmode' are equal");
5637 * 'isident', 'iskeyword', 'isprint or 'isfname' option: refill chartab[]
5638 * If the new option is invalid, use old value. 'lisp' option: refill
5639 * chartab[] for '-' char
5641 else if ( varp == &p_isi
5642 || varp == &(curbuf->b_p_isk)
5643 || varp == &p_isp
5644 || varp == &p_isf)
5646 if (init_chartab() == FAIL)
5648 did_chartab = TRUE; /* need to restore it below */
5649 errmsg = e_invarg; /* error in value */
5653 /* 'helpfile' */
5654 else if (varp == &p_hf)
5656 /* May compute new values for $VIM and $VIMRUNTIME */
5657 if (didset_vim)
5659 vim_setenv((char_u *)"VIM", (char_u *)"");
5660 didset_vim = FALSE;
5662 if (didset_vimruntime)
5664 vim_setenv((char_u *)"VIMRUNTIME", (char_u *)"");
5665 didset_vimruntime = FALSE;
5669 #ifdef FEAT_MULTI_LANG
5670 /* 'helplang' */
5671 else if (varp == &p_hlg)
5673 /* Check for "", "ab", "ab,cd", etc. */
5674 for (s = p_hlg; *s != NUL; s += 3)
5676 if (s[1] == NUL || ((s[2] != ',' || s[3] == NUL) && s[2] != NUL))
5678 errmsg = e_invarg;
5679 break;
5681 if (s[2] == NUL)
5682 break;
5685 #endif
5687 /* 'highlight' */
5688 else if (varp == &p_hl)
5690 if (highlight_changed() == FAIL)
5691 errmsg = e_invarg; /* invalid flags */
5694 /* 'nrformats' */
5695 else if (gvarp == &p_nf)
5697 if (check_opt_strings(*varp, p_nf_values, TRUE) != OK)
5698 errmsg = e_invarg;
5701 #ifdef FEAT_SESSION
5702 /* 'sessionoptions' */
5703 else if (varp == &p_ssop)
5705 if (opt_strings_flags(p_ssop, p_ssop_values, &ssop_flags, TRUE) != OK)
5706 errmsg = e_invarg;
5707 if ((ssop_flags & SSOP_CURDIR) && (ssop_flags & SSOP_SESDIR))
5709 /* Don't allow both "sesdir" and "curdir". */
5710 (void)opt_strings_flags(oldval, p_ssop_values, &ssop_flags, TRUE);
5711 errmsg = e_invarg;
5714 /* 'viewoptions' */
5715 else if (varp == &p_vop)
5717 if (opt_strings_flags(p_vop, p_ssop_values, &vop_flags, TRUE) != OK)
5718 errmsg = e_invarg;
5720 #endif
5722 /* 'scrollopt' */
5723 #ifdef FEAT_SCROLLBIND
5724 else if (varp == &p_sbo)
5726 if (check_opt_strings(p_sbo, p_scbopt_values, TRUE) != OK)
5727 errmsg = e_invarg;
5729 #endif
5731 /* 'ambiwidth' */
5732 #ifdef FEAT_MBYTE
5733 else if (varp == &p_ambw)
5735 if (check_opt_strings(p_ambw, p_ambw_values, FALSE) != OK)
5736 errmsg = e_invarg;
5738 #endif
5740 /* 'background' */
5741 else if (varp == &p_bg)
5743 if (check_opt_strings(p_bg, p_bg_values, FALSE) == OK)
5745 #ifdef FEAT_EVAL
5746 int dark = (*p_bg == 'd');
5747 #endif
5749 init_highlight(FALSE, FALSE);
5751 #ifdef FEAT_EVAL
5752 if (dark != (*p_bg == 'd')
5753 && get_var_value((char_u *)"g:colors_name") != NULL)
5755 /* The color scheme must have set 'background' back to another
5756 * value, that's not what we want here. Disable the color
5757 * scheme and set the colors again. */
5758 do_unlet((char_u *)"g:colors_name", TRUE);
5759 free_string_option(p_bg);
5760 p_bg = vim_strsave((char_u *)(dark ? "dark" : "light"));
5761 check_string_option(&p_bg);
5762 init_highlight(FALSE, FALSE);
5764 #endif
5766 else
5767 errmsg = e_invarg;
5770 /* 'wildmode' */
5771 else if (varp == &p_wim)
5773 if (check_opt_wim() == FAIL)
5774 errmsg = e_invarg;
5777 #ifdef FEAT_CMDL_COMPL
5778 /* 'wildoptions' */
5779 else if (varp == &p_wop)
5781 if (check_opt_strings(p_wop, p_wop_values, TRUE) != OK)
5782 errmsg = e_invarg;
5784 #endif
5786 #ifdef FEAT_WAK
5787 /* 'winaltkeys' */
5788 else if (varp == &p_wak)
5790 if (*p_wak == NUL
5791 || check_opt_strings(p_wak, p_wak_values, FALSE) != OK)
5792 errmsg = e_invarg;
5793 # ifdef FEAT_MENU
5794 # ifdef FEAT_GUI_MOTIF
5795 else if (gui.in_use)
5796 gui_motif_set_mnemonics(p_wak[0] == 'y' || p_wak[0] == 'm');
5797 # else
5798 # ifdef FEAT_GUI_GTK
5799 else if (gui.in_use)
5800 gui_gtk_set_mnemonics(p_wak[0] == 'y' || p_wak[0] == 'm');
5801 # endif
5802 # endif
5803 # endif
5805 #endif
5807 #ifdef FEAT_AUTOCMD
5808 /* 'eventignore' */
5809 else if (varp == &p_ei)
5811 if (check_ei() == FAIL)
5812 errmsg = e_invarg;
5814 #endif
5816 #ifdef FEAT_MBYTE
5817 /* 'encoding' and 'fileencoding' */
5818 else if (varp == &p_enc || gvarp == &p_fenc || varp == &p_tenc)
5820 if (gvarp == &p_fenc)
5822 if (!curbuf->b_p_ma && opt_flags != OPT_GLOBAL)
5823 errmsg = e_modifiable;
5824 else if (vim_strchr(*varp, ',') != NULL)
5825 /* No comma allowed in 'fileencoding'; catches confusing it
5826 * with 'fileencodings'. */
5827 errmsg = e_invarg;
5828 else
5830 # ifdef FEAT_TITLE
5831 /* May show a "+" in the title now. */
5832 redraw_titles();
5833 # endif
5834 /* Add 'fileencoding' to the swap file. */
5835 ml_setflags(curbuf);
5838 if (errmsg == NULL)
5840 /* canonize the value, so that STRCMP() can be used on it */
5841 p = enc_canonize(*varp);
5842 if (p != NULL)
5844 vim_free(*varp);
5845 *varp = p;
5847 if (varp == &p_enc)
5849 errmsg = mb_init();
5850 # ifdef FEAT_TITLE
5851 redraw_titles();
5852 # endif
5856 # if defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)
5857 if (errmsg == NULL && varp == &p_tenc && gui.in_use)
5859 /* GTK+ 2 uses only a single encoding, and that is UTF-8. */
5860 if (STRCMP(p_tenc, "utf-8") != 0)
5861 errmsg = (char_u *)N_("E617: Cannot be changed in the GTK+ 2 GUI");
5863 # endif
5865 if (errmsg == NULL)
5867 # ifdef FEAT_KEYMAP
5868 /* When 'keymap' is used and 'encoding' changes, reload the keymap
5869 * (with another encoding). */
5870 if (varp == &p_enc && *curbuf->b_p_keymap != NUL)
5871 (void)keymap_init();
5872 # endif
5874 /* When 'termencoding' is not empty and 'encoding' changes or when
5875 * 'termencoding' changes, need to setup for keyboard input and
5876 * display output conversion. */
5877 if (((varp == &p_enc && *p_tenc != NUL) || varp == &p_tenc))
5879 convert_setup(&input_conv, p_tenc, p_enc);
5880 convert_setup(&output_conv, p_enc, p_tenc);
5883 # if defined(WIN3264) && defined(FEAT_MBYTE)
5884 /* $HOME may have characters in active code page. */
5885 if (varp == &p_enc)
5886 init_homedir();
5887 # endif
5890 #endif
5892 #if defined(FEAT_POSTSCRIPT)
5893 else if (varp == &p_penc)
5895 /* Canonize printencoding if VIM standard one */
5896 p = enc_canonize(p_penc);
5897 if (p != NULL)
5899 vim_free(p_penc);
5900 p_penc = p;
5902 else
5904 /* Ensure lower case and '-' for '_' */
5905 for (s = p_penc; *s != NUL; s++)
5907 if (*s == '_')
5908 *s = '-';
5909 else
5910 *s = TOLOWER_ASC(*s);
5914 #endif
5916 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
5917 else if (varp == &p_imak)
5919 if (gui.in_use && !im_xim_isvalid_imactivate())
5920 errmsg = e_invarg;
5922 #endif
5924 #ifdef FEAT_KEYMAP
5925 else if (varp == &curbuf->b_p_keymap)
5927 /* load or unload key mapping tables */
5928 errmsg = keymap_init();
5930 if (errmsg == NULL)
5932 if (*curbuf->b_p_keymap != NUL)
5934 /* Installed a new keymap, switch on using it. */
5935 curbuf->b_p_iminsert = B_IMODE_LMAP;
5936 if (curbuf->b_p_imsearch != B_IMODE_USE_INSERT)
5937 curbuf->b_p_imsearch = B_IMODE_LMAP;
5939 else
5941 /* Cleared the keymap, may reset 'iminsert' and 'imsearch'. */
5942 if (curbuf->b_p_iminsert == B_IMODE_LMAP)
5943 curbuf->b_p_iminsert = B_IMODE_NONE;
5944 if (curbuf->b_p_imsearch == B_IMODE_LMAP)
5945 curbuf->b_p_imsearch = B_IMODE_USE_INSERT;
5947 if ((opt_flags & OPT_LOCAL) == 0)
5949 set_iminsert_global();
5950 set_imsearch_global();
5952 # ifdef FEAT_WINDOWS
5953 status_redraw_curbuf();
5954 # endif
5957 #endif
5959 /* 'fileformat' */
5960 else if (gvarp == &p_ff)
5962 if (!curbuf->b_p_ma && !(opt_flags & OPT_GLOBAL))
5963 errmsg = e_modifiable;
5964 else if (check_opt_strings(*varp, p_ff_values, FALSE) != OK)
5965 errmsg = e_invarg;
5966 else
5968 /* may also change 'textmode' */
5969 if (get_fileformat(curbuf) == EOL_DOS)
5970 curbuf->b_p_tx = TRUE;
5971 else
5972 curbuf->b_p_tx = FALSE;
5973 #ifdef FEAT_TITLE
5974 redraw_titles();
5975 #endif
5976 /* update flag in swap file */
5977 ml_setflags(curbuf);
5978 /* Redraw needed when switching to/from "mac": a CR in the text
5979 * will be displayed differently. */
5980 if (get_fileformat(curbuf) == EOL_MAC || *oldval == 'm')
5981 redraw_curbuf_later(NOT_VALID);
5985 /* 'fileformats' */
5986 else if (varp == &p_ffs)
5988 if (check_opt_strings(p_ffs, p_ff_values, TRUE) != OK)
5989 errmsg = e_invarg;
5990 else
5992 /* also change 'textauto' */
5993 if (*p_ffs == NUL)
5994 p_ta = FALSE;
5995 else
5996 p_ta = TRUE;
6000 #if defined(FEAT_CRYPT) && defined(FEAT_CMDHIST)
6001 /* 'cryptkey' */
6002 else if (gvarp == &p_key)
6004 /* Make sure the ":set" command doesn't show the new value in the
6005 * history. */
6006 remove_key_from_history();
6008 #endif
6010 /* 'matchpairs' */
6011 else if (gvarp == &p_mps)
6013 /* Check for "x:y,x:y" */
6014 for (p = *varp; *p != NUL; p += 4)
6016 if (p[1] != ':' || p[2] == NUL || (p[3] != NUL && p[3] != ','))
6018 errmsg = e_invarg;
6019 break;
6021 if (p[3] == NUL)
6022 break;
6026 #ifdef FEAT_COMMENTS
6027 /* 'comments' */
6028 else if (gvarp == &p_com)
6030 for (s = *varp; *s; )
6032 while (*s && *s != ':')
6034 if (vim_strchr((char_u *)COM_ALL, *s) == NULL
6035 && !VIM_ISDIGIT(*s) && *s != '-')
6037 errmsg = illegal_char(errbuf, *s);
6038 break;
6040 ++s;
6042 if (*s++ == NUL)
6043 errmsg = (char_u *)N_("E524: Missing colon");
6044 else if (*s == ',' || *s == NUL)
6045 errmsg = (char_u *)N_("E525: Zero length string");
6046 if (errmsg != NULL)
6047 break;
6048 while (*s && *s != ',')
6050 if (*s == '\\' && s[1] != NUL)
6051 ++s;
6052 ++s;
6054 s = skip_to_option_part(s);
6057 #endif
6059 /* 'listchars' */
6060 else if (varp == &p_lcs)
6062 errmsg = set_chars_option(varp);
6065 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6066 /* 'fillchars' */
6067 else if (varp == &p_fcs)
6069 errmsg = set_chars_option(varp);
6071 #endif
6073 #ifdef FEAT_CMDWIN
6074 /* 'cedit' */
6075 else if (varp == &p_cedit)
6077 errmsg = check_cedit();
6079 #endif
6081 /* 'verbosefile' */
6082 else if (varp == &p_vfile)
6084 verbose_stop();
6085 if (*p_vfile != NUL && verbose_open() == FAIL)
6086 errmsg = e_invarg;
6089 #ifdef FEAT_VIMINFO
6090 /* 'viminfo' */
6091 else if (varp == &p_viminfo)
6093 for (s = p_viminfo; *s;)
6095 /* Check it's a valid character */
6096 if (vim_strchr((char_u *)"!\"%'/:<@cfhnrs", *s) == NULL)
6098 errmsg = illegal_char(errbuf, *s);
6099 break;
6101 if (*s == 'n') /* name is always last one */
6103 break;
6105 else if (*s == 'r') /* skip until next ',' */
6107 while (*++s && *s != ',')
6110 else if (*s == '%')
6112 /* optional number */
6113 while (vim_isdigit(*++s))
6116 else if (*s == '!' || *s == 'h' || *s == 'c')
6117 ++s; /* no extra chars */
6118 else /* must have a number */
6120 while (vim_isdigit(*++s))
6123 if (!VIM_ISDIGIT(*(s - 1)))
6125 if (errbuf != NULL)
6127 sprintf((char *)errbuf,
6128 _("E526: Missing number after <%s>"),
6129 transchar_byte(*(s - 1)));
6130 errmsg = errbuf;
6132 else
6133 errmsg = (char_u *)"";
6134 break;
6137 if (*s == ',')
6138 ++s;
6139 else if (*s)
6141 if (errbuf != NULL)
6142 errmsg = (char_u *)N_("E527: Missing comma");
6143 else
6144 errmsg = (char_u *)"";
6145 break;
6148 if (*p_viminfo && errmsg == NULL && get_viminfo_parameter('\'') < 0)
6149 errmsg = (char_u *)N_("E528: Must specify a ' value");
6151 #endif /* FEAT_VIMINFO */
6153 /* terminal options */
6154 else if (istermoption(&options[opt_idx]) && full_screen)
6156 /* ":set t_Co=0" and ":set t_Co=1" do ":set t_Co=" */
6157 if (varp == &T_CCO)
6159 int colors = atoi((char *)T_CCO);
6161 /* Only reinitialize colors if t_Co value has really changed to
6162 * avoid expensive reload of colorscheme if t_Co is set to the
6163 * same value multiple times. */
6164 if (colors != t_colors)
6166 t_colors = colors;
6167 if (t_colors <= 1)
6169 if (new_value_alloced)
6170 vim_free(T_CCO);
6171 T_CCO = empty_option;
6173 /* We now have a different color setup, initialize it again. */
6174 init_highlight(TRUE, FALSE);
6177 ttest(FALSE);
6178 if (varp == &T_ME)
6180 out_str(T_ME);
6181 redraw_later(CLEAR);
6182 #if defined(MSDOS) || (defined(WIN3264) && !defined(FEAT_GUI_W32))
6183 /* Since t_me has been set, this probably means that the user
6184 * wants to use this as default colors. Need to reset default
6185 * background/foreground colors. */
6186 mch_set_normal_colors();
6187 #endif
6191 #ifdef FEAT_LINEBREAK
6192 /* 'showbreak' */
6193 else if (varp == &p_sbr)
6195 for (s = p_sbr; *s; )
6197 if (ptr2cells(s) != 1)
6198 errmsg = (char_u *)N_("E595: contains unprintable or wide character");
6199 mb_ptr_adv(s);
6202 #endif
6204 #ifdef FEAT_GUI
6205 /* 'guifont' */
6206 else if (varp == &p_guifont)
6208 if (gui.in_use)
6210 p = p_guifont;
6211 # if defined(FEAT_GUI_GTK)
6213 * Put up a font dialog and let the user select a new value.
6214 * If this is cancelled go back to the old value but don't
6215 * give an error message.
6217 if (STRCMP(p, "*") == 0)
6219 p = gui_mch_font_dialog(oldval);
6221 if (new_value_alloced)
6222 free_string_option(p_guifont);
6224 p_guifont = (p != NULL) ? p : vim_strsave(oldval);
6225 new_value_alloced = TRUE;
6227 # endif
6228 if (p != NULL && gui_init_font(p_guifont, FALSE) != OK)
6230 # if defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_PHOTON)
6231 if (STRCMP(p_guifont, "*") == 0)
6233 /* Dialog was cancelled: Keep the old value without giving
6234 * an error message. */
6235 if (new_value_alloced)
6236 free_string_option(p_guifont);
6237 p_guifont = vim_strsave(oldval);
6238 new_value_alloced = TRUE;
6240 else
6241 # endif
6242 errmsg = (char_u *)N_("E596: Invalid font(s)");
6245 redraw_gui_only = TRUE;
6247 # ifdef FEAT_XFONTSET
6248 else if (varp == &p_guifontset)
6250 if (STRCMP(p_guifontset, "*") == 0)
6251 errmsg = (char_u *)N_("E597: can't select fontset");
6252 else if (gui.in_use && gui_init_font(p_guifontset, TRUE) != OK)
6253 errmsg = (char_u *)N_("E598: Invalid fontset");
6254 redraw_gui_only = TRUE;
6256 # endif
6257 # ifdef FEAT_MBYTE
6258 else if (varp == &p_guifontwide)
6260 if (STRCMP(p_guifontwide, "*") == 0)
6261 errmsg = (char_u *)N_("E533: can't select wide font");
6262 else if (gui_get_wide_font() == FAIL)
6263 errmsg = (char_u *)N_("E534: Invalid wide font");
6264 redraw_gui_only = TRUE;
6266 # endif
6267 #endif
6269 #ifdef CURSOR_SHAPE
6270 /* 'guicursor' */
6271 else if (varp == &p_guicursor)
6272 errmsg = parse_shape_opt(SHAPE_CURSOR);
6273 #endif
6275 #ifdef FEAT_MOUSESHAPE
6276 /* 'mouseshape' */
6277 else if (varp == &p_mouseshape)
6279 errmsg = parse_shape_opt(SHAPE_MOUSE);
6280 update_mouseshape(-1);
6282 #endif
6284 #ifdef FEAT_PRINTER
6285 else if (varp == &p_popt)
6286 errmsg = parse_printoptions();
6287 # if defined(FEAT_MBYTE) && defined(FEAT_POSTSCRIPT)
6288 else if (varp == &p_pmfn)
6289 errmsg = parse_printmbfont();
6290 # endif
6291 #endif
6293 #ifdef FEAT_LANGMAP
6294 /* 'langmap' */
6295 else if (varp == &p_langmap)
6296 langmap_set();
6297 #endif
6299 #ifdef FEAT_LINEBREAK
6300 /* 'breakat' */
6301 else if (varp == &p_breakat)
6302 fill_breakat_flags();
6303 #endif
6305 #ifdef FEAT_TITLE
6306 /* 'titlestring' and 'iconstring' */
6307 else if (varp == &p_titlestring || varp == &p_iconstring)
6309 # ifdef FEAT_STL_OPT
6310 int flagval = (varp == &p_titlestring) ? STL_IN_TITLE : STL_IN_ICON;
6312 /* NULL => statusline syntax */
6313 if (vim_strchr(*varp, '%') && check_stl_option(*varp) == NULL)
6314 stl_syntax |= flagval;
6315 else
6316 stl_syntax &= ~flagval;
6317 # endif
6318 did_set_title(varp == &p_iconstring);
6321 #endif
6323 #ifdef FEAT_GUI
6324 /* 'guioptions' */
6325 else if (varp == &p_go)
6327 gui_init_which_components(oldval);
6328 redraw_gui_only = TRUE;
6330 #endif
6332 #if defined(FEAT_GUI_TABLINE)
6333 /* 'guitablabel' */
6334 else if (varp == &p_gtl)
6336 redraw_tabline = TRUE;
6337 redraw_gui_only = TRUE;
6339 /* 'guitabtooltip' */
6340 else if (varp == &p_gtt)
6342 redraw_gui_only = TRUE;
6344 #endif
6346 #if defined(FEAT_MOUSE_TTY) && (defined(UNIX) || defined(VMS))
6347 /* 'ttymouse' */
6348 else if (varp == &p_ttym)
6350 /* Switch the mouse off before changing the escape sequences used for
6351 * that. */
6352 mch_setmouse(FALSE);
6353 if (opt_strings_flags(p_ttym, p_ttym_values, &ttym_flags, FALSE) != OK)
6354 errmsg = e_invarg;
6355 else
6356 check_mouse_termcode();
6357 if (termcap_active)
6358 setmouse(); /* may switch it on again */
6360 #endif
6362 #ifdef FEAT_VISUAL
6363 /* 'selection' */
6364 else if (varp == &p_sel)
6366 if (*p_sel == NUL
6367 || check_opt_strings(p_sel, p_sel_values, FALSE) != OK)
6368 errmsg = e_invarg;
6371 /* 'selectmode' */
6372 else if (varp == &p_slm)
6374 if (check_opt_strings(p_slm, p_slm_values, TRUE) != OK)
6375 errmsg = e_invarg;
6377 #endif
6379 #ifdef FEAT_BROWSE
6380 /* 'browsedir' */
6381 else if (varp == &p_bsdir)
6383 if (check_opt_strings(p_bsdir, p_bsdir_values, FALSE) != OK
6384 && !mch_isdir(p_bsdir))
6385 errmsg = e_invarg;
6387 #endif
6389 #ifdef FEAT_VISUAL
6390 /* 'keymodel' */
6391 else if (varp == &p_km)
6393 if (check_opt_strings(p_km, p_km_values, TRUE) != OK)
6394 errmsg = e_invarg;
6395 else
6397 km_stopsel = (vim_strchr(p_km, 'o') != NULL);
6398 km_startsel = (vim_strchr(p_km, 'a') != NULL);
6401 #endif
6403 /* 'mousemodel' */
6404 else if (varp == &p_mousem)
6406 if (check_opt_strings(p_mousem, p_mousem_values, FALSE) != OK)
6407 errmsg = e_invarg;
6408 #if defined(FEAT_GUI_MOTIF) && defined(FEAT_MENU) && (XmVersion <= 1002)
6409 else if (*p_mousem != *oldval)
6410 /* Changed from "extend" to "popup" or "popup_setpos" or vv: need
6411 * to create or delete the popup menus. */
6412 gui_motif_update_mousemodel(root_menu);
6413 #endif
6416 /* 'switchbuf' */
6417 else if (varp == &p_swb)
6419 if (opt_strings_flags(p_swb, p_swb_values, &swb_flags, TRUE) != OK)
6420 errmsg = e_invarg;
6423 /* 'debug' */
6424 else if (varp == &p_debug)
6426 if (check_opt_strings(p_debug, p_debug_values, TRUE) != OK)
6427 errmsg = e_invarg;
6430 /* 'display' */
6431 else if (varp == &p_dy)
6433 if (opt_strings_flags(p_dy, p_dy_values, &dy_flags, TRUE) != OK)
6434 errmsg = e_invarg;
6435 else
6436 (void)init_chartab();
6440 #ifdef FEAT_VERTSPLIT
6441 /* 'eadirection' */
6442 else if (varp == &p_ead)
6444 if (check_opt_strings(p_ead, p_ead_values, FALSE) != OK)
6445 errmsg = e_invarg;
6447 #endif
6449 #ifdef FEAT_CLIPBOARD
6450 /* 'clipboard' */
6451 else if (varp == &p_cb)
6452 errmsg = check_clipboard_option();
6453 #endif
6455 #ifdef FEAT_SPELL
6456 /* When 'spelllang' or 'spellfile' is set and there is a window for this
6457 * buffer in which 'spell' is set load the wordlists. */
6458 else if (varp == &(curbuf->b_p_spl) || varp == &(curbuf->b_p_spf))
6460 win_T *wp;
6461 int l;
6463 if (varp == &(curbuf->b_p_spf))
6465 l = (int)STRLEN(curbuf->b_p_spf);
6466 if (l > 0 && (l < 4 || STRCMP(curbuf->b_p_spf + l - 4,
6467 ".add") != 0))
6468 errmsg = e_invarg;
6471 if (errmsg == NULL)
6473 FOR_ALL_WINDOWS(wp)
6474 if (wp->w_buffer == curbuf && wp->w_p_spell)
6476 errmsg = did_set_spelllang(curbuf);
6477 # ifdef FEAT_WINDOWS
6478 break;
6479 # endif
6483 /* When 'spellcapcheck' is set compile the regexp program. */
6484 else if (varp == &(curbuf->b_p_spc))
6486 errmsg = compile_cap_prog(curbuf);
6488 /* 'spellsuggest' */
6489 else if (varp == &p_sps)
6491 if (spell_check_sps() != OK)
6492 errmsg = e_invarg;
6494 /* 'mkspellmem' */
6495 else if (varp == &p_msm)
6497 if (spell_check_msm() != OK)
6498 errmsg = e_invarg;
6500 #endif
6502 #ifdef FEAT_QUICKFIX
6503 /* When 'bufhidden' is set, check for valid value. */
6504 else if (gvarp == &p_bh)
6506 if (check_opt_strings(curbuf->b_p_bh, p_bufhidden_values, FALSE) != OK)
6507 errmsg = e_invarg;
6510 /* When 'buftype' is set, check for valid value. */
6511 else if (gvarp == &p_bt)
6513 if (check_opt_strings(curbuf->b_p_bt, p_buftype_values, FALSE) != OK)
6514 errmsg = e_invarg;
6515 else
6517 # ifdef FEAT_WINDOWS
6518 if (curwin->w_status_height)
6520 curwin->w_redr_status = TRUE;
6521 redraw_later(VALID);
6523 # endif
6524 curbuf->b_help = (curbuf->b_p_bt[0] == 'h');
6525 # ifdef FEAT_TITLE
6526 redraw_titles();
6527 # endif
6530 #endif
6532 #ifdef FEAT_STL_OPT
6533 /* 'statusline' or 'rulerformat' */
6534 else if (gvarp == &p_stl || varp == &p_ruf)
6536 int wid;
6538 if (varp == &p_ruf) /* reset ru_wid first */
6539 ru_wid = 0;
6540 s = *varp;
6541 if (varp == &p_ruf && *s == '%')
6543 /* set ru_wid if 'ruf' starts with "%99(" */
6544 if (*++s == '-') /* ignore a '-' */
6545 s++;
6546 wid = getdigits(&s);
6547 if (wid && *s == '(' && (errmsg = check_stl_option(p_ruf)) == NULL)
6548 ru_wid = wid;
6549 else
6550 errmsg = check_stl_option(p_ruf);
6552 /* check 'statusline' only if it doesn't start with "%!" */
6553 else if (varp == &p_ruf || s[0] != '%' || s[1] != '!')
6554 errmsg = check_stl_option(s);
6555 if (varp == &p_ruf && errmsg == NULL)
6556 comp_col();
6558 #endif
6560 #ifdef FEAT_INS_EXPAND
6561 /* check if it is a valid value for 'complete' -- Acevedo */
6562 else if (gvarp == &p_cpt)
6564 for (s = *varp; *s;)
6566 while(*s == ',' || *s == ' ')
6567 s++;
6568 if (!*s)
6569 break;
6570 if (vim_strchr((char_u *)".wbuksid]tU", *s) == NULL)
6572 errmsg = illegal_char(errbuf, *s);
6573 break;
6575 if (*++s != NUL && *s != ',' && *s != ' ')
6577 if (s[-1] == 'k' || s[-1] == 's')
6579 /* skip optional filename after 'k' and 's' */
6580 while (*s && *s != ',' && *s != ' ')
6582 if (*s == '\\')
6583 ++s;
6584 ++s;
6587 else
6589 if (errbuf != NULL)
6591 sprintf((char *)errbuf,
6592 _("E535: Illegal character after <%c>"),
6593 *--s);
6594 errmsg = errbuf;
6596 else
6597 errmsg = (char_u *)"";
6598 break;
6604 /* 'completeopt' */
6605 else if (varp == &p_cot)
6607 if (check_opt_strings(p_cot, p_cot_values, TRUE) != OK)
6608 errmsg = e_invarg;
6610 #endif /* FEAT_INS_EXPAND */
6613 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
6614 else if (varp == &p_toolbar)
6616 if (opt_strings_flags(p_toolbar, p_toolbar_values,
6617 &toolbar_flags, TRUE) != OK)
6618 errmsg = e_invarg;
6619 else
6621 out_flush();
6622 gui_mch_show_toolbar((toolbar_flags &
6623 (TOOLBAR_TEXT | TOOLBAR_ICONS)) != 0);
6626 #endif
6628 #if defined(FEAT_TOOLBAR) && defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)
6629 /* 'toolbariconsize': GTK+ 2 only */
6630 else if (varp == &p_tbis)
6632 if (opt_strings_flags(p_tbis, p_tbis_values, &tbis_flags, FALSE) != OK)
6633 errmsg = e_invarg;
6634 else
6636 out_flush();
6637 gui_mch_show_toolbar((toolbar_flags &
6638 (TOOLBAR_TEXT | TOOLBAR_ICONS)) != 0);
6641 #endif
6643 /* 'pastetoggle': translate key codes like in a mapping */
6644 else if (varp == &p_pt)
6646 if (*p_pt)
6648 (void)replace_termcodes(p_pt, &p, TRUE, TRUE, FALSE);
6649 if (p != NULL)
6651 if (new_value_alloced)
6652 free_string_option(p_pt);
6653 p_pt = p;
6654 new_value_alloced = TRUE;
6659 /* 'backspace' */
6660 else if (varp == &p_bs)
6662 if (VIM_ISDIGIT(*p_bs))
6664 if (*p_bs >'2' || p_bs[1] != NUL)
6665 errmsg = e_invarg;
6667 else if (check_opt_strings(p_bs, p_bs_values, TRUE) != OK)
6668 errmsg = e_invarg;
6671 #ifdef FEAT_MBYTE
6672 /* 'casemap' */
6673 else if (varp == &p_cmp)
6675 if (opt_strings_flags(p_cmp, p_cmp_values, &cmp_flags, TRUE) != OK)
6676 errmsg = e_invarg;
6678 #endif
6680 #ifdef FEAT_DIFF
6681 /* 'diffopt' */
6682 else if (varp == &p_dip)
6684 if (diffopt_changed() == FAIL)
6685 errmsg = e_invarg;
6687 #endif
6689 #ifdef FEAT_FOLDING
6690 /* 'foldmethod' */
6691 else if (gvarp == &curwin->w_allbuf_opt.wo_fdm)
6693 if (check_opt_strings(*varp, p_fdm_values, FALSE) != OK
6694 || *curwin->w_p_fdm == NUL)
6695 errmsg = e_invarg;
6696 else
6698 foldUpdateAll(curwin);
6699 if (foldmethodIsDiff(curwin))
6700 newFoldLevel();
6703 # ifdef FEAT_EVAL
6704 /* 'foldexpr' */
6705 else if (varp == &curwin->w_p_fde)
6707 if (foldmethodIsExpr(curwin))
6708 foldUpdateAll(curwin);
6710 # endif
6711 /* 'foldmarker' */
6712 else if (gvarp == &curwin->w_allbuf_opt.wo_fmr)
6714 p = vim_strchr(*varp, ',');
6715 if (p == NULL)
6716 errmsg = (char_u *)N_("E536: comma required");
6717 else if (p == *varp || p[1] == NUL)
6718 errmsg = e_invarg;
6719 else if (foldmethodIsMarker(curwin))
6720 foldUpdateAll(curwin);
6722 /* 'commentstring' */
6723 else if (gvarp == &p_cms)
6725 if (**varp != NUL && strstr((char *)*varp, "%s") == NULL)
6726 errmsg = (char_u *)N_("E537: 'commentstring' must be empty or contain %s");
6728 /* 'foldopen' */
6729 else if (varp == &p_fdo)
6731 if (opt_strings_flags(p_fdo, p_fdo_values, &fdo_flags, TRUE) != OK)
6732 errmsg = e_invarg;
6734 /* 'foldclose' */
6735 else if (varp == &p_fcl)
6737 if (check_opt_strings(p_fcl, p_fcl_values, TRUE) != OK)
6738 errmsg = e_invarg;
6740 /* 'foldignore' */
6741 else if (gvarp == &curwin->w_allbuf_opt.wo_fdi)
6743 if (foldmethodIsIndent(curwin))
6744 foldUpdateAll(curwin);
6746 #endif
6748 #ifdef FEAT_VIRTUALEDIT
6749 /* 'virtualedit' */
6750 else if (varp == &p_ve)
6752 if (opt_strings_flags(p_ve, p_ve_values, &ve_flags, TRUE) != OK)
6753 errmsg = e_invarg;
6754 else if (STRCMP(p_ve, oldval) != 0)
6756 /* Recompute cursor position in case the new 've' setting
6757 * changes something. */
6758 validate_virtcol();
6759 coladvance(curwin->w_virtcol);
6762 #endif
6764 #if defined(FEAT_CSCOPE) && defined(FEAT_QUICKFIX)
6765 else if (varp == &p_csqf)
6767 if (p_csqf != NULL)
6769 p = p_csqf;
6770 while (*p != NUL)
6772 if (vim_strchr((char_u *)CSQF_CMDS, *p) == NULL
6773 || p[1] == NUL
6774 || vim_strchr((char_u *)CSQF_FLAGS, p[1]) == NULL
6775 || (p[2] != NUL && p[2] != ','))
6777 errmsg = e_invarg;
6778 break;
6780 else if (p[2] == NUL)
6781 break;
6782 else
6783 p += 3;
6787 #endif
6789 #ifdef FEAT_VARTABS
6790 /* 'varsofttabstop' */
6791 else if (varp == &(curbuf->b_p_vsts))
6793 char_u *cp;
6795 if (!(*varp)[0] || ((*varp)[0] == '0' && !(*varp)[1]))
6797 if (curbuf->b_p_vsts_ary)
6799 vim_free(curbuf->b_p_vsts_ary);
6800 curbuf->b_p_vsts_ary = 0;
6803 else
6805 for (cp = *varp; *cp; ++cp)
6807 if (vim_isdigit(*cp))
6808 continue;
6809 if (*cp == ',' && cp > *varp && *(cp-1) != ',')
6810 continue;
6811 errmsg = e_invarg;
6812 break;
6814 if (errmsg == NULL)
6816 int *oldarray = curbuf->b_p_vsts_ary;
6817 if (tabstop_set(*varp, &(curbuf->b_p_vsts_ary)))
6819 if (oldarray)
6820 vim_free(oldarray);
6822 else
6823 errmsg = e_invarg;
6828 /* 'vartabstop' */
6829 else if (varp == &(curbuf->b_p_vts))
6831 char_u *cp;
6833 if (!(*varp)[0] || ((*varp)[0] == '0' && !(*varp)[1]))
6835 if (curbuf->b_p_vts_ary)
6837 vim_free(curbuf->b_p_vts_ary);
6838 curbuf->b_p_vts_ary = 0;
6841 else
6843 for (cp = *varp; *cp; ++cp)
6845 if (vim_isdigit(*cp))
6846 continue;
6847 if (*cp == ',' && cp > *varp && *(cp-1) != ',')
6848 continue;
6849 errmsg = e_invarg;
6850 break;
6852 if (errmsg == NULL)
6854 int *oldarray = curbuf->b_p_vts_ary;
6855 if (tabstop_set(*varp, &(curbuf->b_p_vts_ary)))
6857 if (oldarray)
6858 vim_free(oldarray);
6859 #ifdef FEAT_FOLDING
6860 if (foldmethodIsIndent(curwin))
6861 foldUpdateAll(curwin);
6862 #endif /* FEAT_FOLDING */
6864 else
6865 errmsg = e_invarg;
6869 #endif
6871 /* Options that are a list of flags. */
6872 else
6874 p = NULL;
6875 if (varp == &p_ww)
6876 p = (char_u *)WW_ALL;
6877 if (varp == &p_shm)
6878 p = (char_u *)SHM_ALL;
6879 else if (varp == &(p_cpo))
6880 p = (char_u *)CPO_ALL;
6881 else if (varp == &(curbuf->b_p_fo))
6882 p = (char_u *)FO_ALL;
6883 else if (varp == &p_mouse)
6885 #ifdef FEAT_MOUSE
6886 p = (char_u *)MOUSE_ALL;
6887 #else
6888 if (*p_mouse != NUL)
6889 errmsg = (char_u *)N_("E538: No mouse support");
6890 #endif
6892 #if defined(FEAT_GUI)
6893 else if (varp == &p_go)
6894 p = (char_u *)GO_ALL;
6895 #endif
6896 if (p != NULL)
6898 for (s = *varp; *s; ++s)
6899 if (vim_strchr(p, *s) == NULL)
6901 errmsg = illegal_char(errbuf, *s);
6902 break;
6908 * If error detected, restore the previous value.
6910 if (errmsg != NULL)
6912 if (new_value_alloced)
6913 free_string_option(*varp);
6914 *varp = oldval;
6916 * When resetting some values, need to act on it.
6918 if (did_chartab)
6919 (void)init_chartab();
6920 if (varp == &p_hl)
6921 (void)highlight_changed();
6923 else
6925 #ifdef FEAT_EVAL
6926 /* Remember where the option was set. */
6927 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
6928 #endif
6930 * Free string options that are in allocated memory.
6931 * Use "free_oldval", because recursiveness may change the flags under
6932 * our fingers (esp. init_highlight()).
6934 if (free_oldval)
6935 free_string_option(oldval);
6936 if (new_value_alloced)
6937 options[opt_idx].flags |= P_ALLOCED;
6938 else
6939 options[opt_idx].flags &= ~P_ALLOCED;
6941 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
6942 && ((int)options[opt_idx].indir & PV_BOTH))
6944 /* global option with local value set to use global value; free
6945 * the local value and make it empty */
6946 p = get_varp_scope(&(options[opt_idx]), OPT_LOCAL);
6947 free_string_option(*(char_u **)p);
6948 *(char_u **)p = empty_option;
6951 /* May set global value for local option. */
6952 else if (!(opt_flags & OPT_LOCAL) && opt_flags != OPT_GLOBAL)
6953 set_string_option_global(opt_idx, varp);
6955 #ifdef FEAT_AUTOCMD
6957 * Trigger the autocommand only after setting the flags.
6959 # ifdef FEAT_SYN_HL
6960 /* When 'syntax' is set, load the syntax of that name */
6961 if (varp == &(curbuf->b_p_syn))
6963 apply_autocmds(EVENT_SYNTAX, curbuf->b_p_syn,
6964 curbuf->b_fname, TRUE, curbuf);
6966 # endif
6967 else if (varp == &(curbuf->b_p_ft))
6969 /* 'filetype' is set, trigger the FileType autocommand */
6970 did_filetype = TRUE;
6971 apply_autocmds(EVENT_FILETYPE, curbuf->b_p_ft,
6972 curbuf->b_fname, TRUE, curbuf);
6974 #endif
6975 #ifdef FEAT_SPELL
6976 if (varp == &(curbuf->b_p_spl))
6978 char_u fname[200];
6981 * Source the spell/LANG.vim in 'runtimepath'.
6982 * They could set 'spellcapcheck' depending on the language.
6983 * Use the first name in 'spelllang' up to '_region' or
6984 * '.encoding'.
6986 for (p = curbuf->b_p_spl; *p != NUL; ++p)
6987 if (vim_strchr((char_u *)"_.,", *p) != NULL)
6988 break;
6989 vim_snprintf((char *)fname, 200, "spell/%.*s.vim",
6990 (int)(p - curbuf->b_p_spl), curbuf->b_p_spl);
6991 source_runtime(fname, TRUE);
6993 #endif
6996 #ifdef FEAT_MOUSE
6997 if (varp == &p_mouse)
6999 # ifdef FEAT_MOUSE_TTY
7000 if (*p_mouse == NUL)
7001 mch_setmouse(FALSE); /* switch mouse off */
7002 else
7003 # endif
7004 setmouse(); /* in case 'mouse' changed */
7006 #endif
7008 if (curwin->w_curswant != MAXCOL)
7009 curwin->w_set_curswant = TRUE; /* in case 'showbreak' changed */
7010 #ifdef FEAT_GUI
7011 /* check redraw when it's not a GUI option or the GUI is active. */
7012 if (!redraw_gui_only || gui.in_use)
7013 #endif
7014 check_redraw(options[opt_idx].flags);
7016 return errmsg;
7020 * Handle setting 'listchars' or 'fillchars'.
7021 * Returns error message, NULL if it's OK.
7023 static char_u *
7024 set_chars_option(varp)
7025 char_u **varp;
7027 int round, i, len, entries;
7028 char_u *p, *s;
7029 int c1, c2 = 0;
7030 struct charstab
7032 int *cp;
7033 char *name;
7035 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
7036 static struct charstab filltab[] =
7038 {&fill_stl, "stl"},
7039 {&fill_stlnc, "stlnc"},
7040 {&fill_vert, "vert"},
7041 {&fill_fold, "fold"},
7042 {&fill_diff, "diff"},
7044 #endif
7045 static struct charstab lcstab[] =
7047 {&lcs_eol, "eol"},
7048 {&lcs_ext, "extends"},
7049 {&lcs_nbsp, "nbsp"},
7050 {&lcs_prec, "precedes"},
7051 {&lcs_tab2, "tab"},
7052 {&lcs_trail, "trail"},
7054 struct charstab *tab;
7056 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
7057 if (varp == &p_lcs)
7058 #endif
7060 tab = lcstab;
7061 entries = sizeof(lcstab) / sizeof(struct charstab);
7063 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
7064 else
7066 tab = filltab;
7067 entries = sizeof(filltab) / sizeof(struct charstab);
7069 #endif
7071 /* first round: check for valid value, second round: assign values */
7072 for (round = 0; round <= 1; ++round)
7074 if (round)
7076 /* After checking that the value is valid: set defaults: space for
7077 * 'fillchars', NUL for 'listchars' */
7078 for (i = 0; i < entries; ++i)
7079 *(tab[i].cp) = (varp == &p_lcs ? NUL : ' ');
7080 if (varp == &p_lcs)
7081 lcs_tab1 = NUL;
7082 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
7083 else
7084 fill_diff = '-';
7085 #endif
7087 p = *varp;
7088 while (*p)
7090 for (i = 0; i < entries; ++i)
7092 len = (int)STRLEN(tab[i].name);
7093 if (STRNCMP(p, tab[i].name, len) == 0
7094 && p[len] == ':'
7095 && p[len + 1] != NUL)
7097 s = p + len + 1;
7098 #ifdef FEAT_MBYTE
7099 c1 = mb_ptr2char_adv(&s);
7100 if (mb_char2cells(c1) > 1)
7101 continue;
7102 #else
7103 c1 = *s++;
7104 #endif
7105 if (tab[i].cp == &lcs_tab2)
7107 if (*s == NUL)
7108 continue;
7109 #ifdef FEAT_MBYTE
7110 c2 = mb_ptr2char_adv(&s);
7111 if (mb_char2cells(c2) > 1)
7112 continue;
7113 #else
7114 c2 = *s++;
7115 #endif
7117 if (*s == ',' || *s == NUL)
7119 if (round)
7121 if (tab[i].cp == &lcs_tab2)
7123 lcs_tab1 = c1;
7124 lcs_tab2 = c2;
7126 else
7127 *(tab[i].cp) = c1;
7130 p = s;
7131 break;
7136 if (i == entries)
7137 return e_invarg;
7138 if (*p == ',')
7139 ++p;
7143 return NULL; /* no error */
7146 #ifdef FEAT_STL_OPT
7148 * Check validity of options with the 'statusline' format.
7149 * Return error message or NULL.
7151 char_u *
7152 check_stl_option(s)
7153 char_u *s;
7155 int itemcnt = 0;
7156 int groupdepth = 0;
7157 static char_u errbuf[80];
7159 while (*s && itemcnt < STL_MAX_ITEM)
7161 /* Check for valid keys after % sequences */
7162 while (*s && *s != '%')
7163 s++;
7164 if (!*s)
7165 break;
7166 s++;
7167 if (*s != '%' && *s != ')')
7168 ++itemcnt;
7169 if (*s == '%' || *s == STL_TRUNCMARK || *s == STL_MIDDLEMARK)
7171 s++;
7172 continue;
7174 if (*s == ')')
7176 s++;
7177 if (--groupdepth < 0)
7178 break;
7179 continue;
7181 if (*s == '-')
7182 s++;
7183 while (VIM_ISDIGIT(*s))
7184 s++;
7185 if (*s == STL_USER_HL)
7186 continue;
7187 if (*s == '.')
7189 s++;
7190 while (*s && VIM_ISDIGIT(*s))
7191 s++;
7193 if (*s == '(')
7195 groupdepth++;
7196 continue;
7198 if (vim_strchr(STL_ALL, *s) == NULL)
7200 return illegal_char(errbuf, *s);
7202 if (*s == '{')
7204 s++;
7205 while (*s != '}' && *s)
7206 s++;
7207 if (*s != '}')
7208 return (char_u *)N_("E540: Unclosed expression sequence");
7211 if (itemcnt >= STL_MAX_ITEM)
7212 return (char_u *)N_("E541: too many items");
7213 if (groupdepth != 0)
7214 return (char_u *)N_("E542: unbalanced groups");
7215 return NULL;
7217 #endif
7219 #ifdef FEAT_CLIPBOARD
7221 * Extract the items in the 'clipboard' option and set global values.
7223 static char_u *
7224 check_clipboard_option()
7226 int new_unnamed = FALSE;
7227 int new_autoselect = FALSE;
7228 int new_autoselectml = FALSE;
7229 int new_html = FALSE;
7230 regprog_T *new_exclude_prog = NULL;
7231 char_u *errmsg = NULL;
7232 char_u *p;
7234 for (p = p_cb; *p != NUL; )
7236 if (STRNCMP(p, "unnamed", 7) == 0 && (p[7] == ',' || p[7] == NUL))
7238 new_unnamed = TRUE;
7239 p += 7;
7241 else if (STRNCMP(p, "autoselect", 10) == 0
7242 && (p[10] == ',' || p[10] == NUL))
7244 new_autoselect = TRUE;
7245 p += 10;
7247 else if (STRNCMP(p, "autoselectml", 12) == 0
7248 && (p[12] == ',' || p[12] == NUL))
7250 new_autoselectml = TRUE;
7251 p += 12;
7253 else if (STRNCMP(p, "html", 4) == 0 && (p[4] == ',' || p[4] == NUL))
7255 new_html = TRUE;
7256 p += 4;
7258 else if (STRNCMP(p, "exclude:", 8) == 0 && new_exclude_prog == NULL)
7260 p += 8;
7261 new_exclude_prog = vim_regcomp(p, RE_MAGIC);
7262 if (new_exclude_prog == NULL)
7263 errmsg = e_invarg;
7264 break;
7266 else
7268 errmsg = e_invarg;
7269 break;
7271 if (*p == ',')
7272 ++p;
7274 if (errmsg == NULL)
7276 clip_unnamed = new_unnamed;
7277 clip_autoselect = new_autoselect;
7278 clip_autoselectml = new_autoselectml;
7279 clip_html = new_html;
7280 vim_free(clip_exclude_prog);
7281 clip_exclude_prog = new_exclude_prog;
7282 #ifdef HAVE_GTK2 /* for GTK 1 we can't change the list of targets */
7283 if (gui.in_use)
7285 gui_gtk_set_selection_targets();
7286 gui_gtk_set_dnd_targets();
7288 #endif
7290 else
7291 vim_free(new_exclude_prog);
7293 return errmsg;
7295 #endif
7297 #ifdef FEAT_SPELL
7299 * Set curbuf->b_cap_prog to the regexp program for 'spellcapcheck'.
7300 * Return error message when failed, NULL when OK.
7302 static char_u *
7303 compile_cap_prog(buf)
7304 buf_T *buf;
7306 regprog_T *rp = buf->b_cap_prog;
7307 char_u *re;
7309 if (*buf->b_p_spc == NUL)
7310 buf->b_cap_prog = NULL;
7311 else
7313 /* Prepend a ^ so that we only match at one column */
7314 re = concat_str((char_u *)"^", buf->b_p_spc);
7315 if (re != NULL)
7317 buf->b_cap_prog = vim_regcomp(re, RE_MAGIC);
7318 if (buf->b_cap_prog == NULL)
7320 buf->b_cap_prog = rp; /* restore the previous program */
7321 return e_invarg;
7323 vim_free(re);
7327 vim_free(rp);
7328 return NULL;
7330 #endif
7332 #if defined(FEAT_EVAL) || defined(PROTO)
7334 * Set the scriptID for an option, taking care of setting the buffer- or
7335 * window-local value.
7337 static void
7338 set_option_scriptID_idx(opt_idx, opt_flags, id)
7339 int opt_idx;
7340 int opt_flags;
7341 int id;
7343 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
7344 int indir = (int)options[opt_idx].indir;
7346 /* Remember where the option was set. For local options need to do that
7347 * in the buffer or window structure. */
7348 if (both || (opt_flags & OPT_GLOBAL) || (indir & (PV_BUF|PV_WIN)) == 0)
7349 options[opt_idx].scriptID = id;
7350 if (both || (opt_flags & OPT_LOCAL))
7352 if (indir & PV_BUF)
7353 curbuf->b_p_scriptID[indir & PV_MASK] = id;
7354 else if (indir & PV_WIN)
7355 curwin->w_p_scriptID[indir & PV_MASK] = id;
7358 #endif
7361 * Set the value of a boolean option, and take care of side effects.
7362 * Returns NULL for success, or an error message for an error.
7364 static char_u *
7365 set_bool_option(opt_idx, varp, value, opt_flags)
7366 int opt_idx; /* index in options[] table */
7367 char_u *varp; /* pointer to the option variable */
7368 int value; /* new value */
7369 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
7371 int old_value = *(int *)varp;
7373 /* Disallow changing some options from secure mode */
7374 if ((secure
7375 #ifdef HAVE_SANDBOX
7376 || sandbox != 0
7377 #endif
7378 ) && (options[opt_idx].flags & P_SECURE))
7379 return e_secure;
7381 *(int *)varp = value; /* set the new value */
7382 #ifdef FEAT_EVAL
7383 /* Remember where the option was set. */
7384 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
7385 #endif
7387 #ifdef FEAT_GUI
7388 need_mouse_correct = TRUE;
7389 #endif
7391 /* May set global value for local option. */
7392 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0)
7393 *(int *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) = value;
7396 * Handle side effects of changing a bool option.
7399 /* 'compatible' */
7400 if ((int *)varp == &p_cp)
7402 compatible_set();
7405 /* 'list', 'number' */
7406 else if ((int *)varp == &curwin->w_p_list
7407 || (int *)varp == &curwin->w_p_nu)
7409 if (curwin->w_curswant != MAXCOL)
7410 curwin->w_set_curswant = TRUE;
7413 else if ((int *)varp == &curbuf->b_p_ro)
7415 /* when 'readonly' is reset globally, also reset readonlymode */
7416 if (!curbuf->b_p_ro && (opt_flags & OPT_LOCAL) == 0)
7417 readonlymode = FALSE;
7419 /* when 'readonly' is set may give W10 again */
7420 if (curbuf->b_p_ro)
7421 curbuf->b_did_warn = FALSE;
7423 #ifdef FEAT_TITLE
7424 redraw_titles();
7425 #endif
7428 #ifdef FEAT_TITLE
7429 /* when 'modifiable' is changed, redraw the window title */
7430 else if ((int *)varp == &curbuf->b_p_ma)
7432 redraw_titles();
7434 /* when 'endofline' is changed, redraw the window title */
7435 else if ((int *)varp == &curbuf->b_p_eol)
7437 redraw_titles();
7439 # ifdef FEAT_MBYTE
7440 /* when 'bomb' is changed, redraw the window title and tab page text */
7441 else if ((int *)varp == &curbuf->b_p_bomb)
7443 redraw_titles();
7445 # endif
7446 #endif
7448 /* when 'bin' is set also set some other options */
7449 else if ((int *)varp == &curbuf->b_p_bin)
7451 set_options_bin(old_value, curbuf->b_p_bin, opt_flags);
7452 #ifdef FEAT_TITLE
7453 redraw_titles();
7454 #endif
7457 #ifdef FEAT_AUTOCMD
7458 /* when 'buflisted' changes, trigger autocommands */
7459 else if ((int *)varp == &curbuf->b_p_bl && old_value != curbuf->b_p_bl)
7461 apply_autocmds(curbuf->b_p_bl ? EVENT_BUFADD : EVENT_BUFDELETE,
7462 NULL, NULL, TRUE, curbuf);
7464 #endif
7466 /* when 'swf' is set, create swapfile, when reset remove swapfile */
7467 else if ((int *)varp == &curbuf->b_p_swf)
7469 if (curbuf->b_p_swf && p_uc)
7470 ml_open_file(curbuf); /* create the swap file */
7471 else
7472 /* no need to reset curbuf->b_may_swap, ml_open_file() will check
7473 * buf->b_p_swf */
7474 mf_close_file(curbuf, TRUE); /* remove the swap file */
7477 /* when 'terse' is set change 'shortmess' */
7478 else if ((int *)varp == &p_terse)
7480 char_u *p;
7482 p = vim_strchr(p_shm, SHM_SEARCH);
7484 /* insert 's' in p_shm */
7485 if (p_terse && p == NULL)
7487 STRCPY(IObuff, p_shm);
7488 STRCAT(IObuff, "s");
7489 set_string_option_direct((char_u *)"shm", -1, IObuff, OPT_FREE, 0);
7491 /* remove 's' from p_shm */
7492 else if (!p_terse && p != NULL)
7493 STRMOVE(p, p + 1);
7496 /* when 'paste' is set or reset also change other options */
7497 else if ((int *)varp == &p_paste)
7499 paste_option_changed();
7502 /* when 'insertmode' is set from an autocommand need to do work here */
7503 else if ((int *)varp == &p_im)
7505 if (p_im)
7507 if ((State & INSERT) == 0)
7508 need_start_insertmode = TRUE;
7509 stop_insert_mode = FALSE;
7511 else
7513 need_start_insertmode = FALSE;
7514 stop_insert_mode = TRUE;
7515 if (restart_edit != 0 && mode_displayed)
7516 clear_cmdline = TRUE; /* remove "(insert)" */
7517 restart_edit = 0;
7521 /* when 'ignorecase' is set or reset and 'hlsearch' is set, redraw */
7522 else if ((int *)varp == &p_ic && p_hls)
7524 redraw_all_later(SOME_VALID);
7527 #ifdef FEAT_SEARCH_EXTRA
7528 /* when 'hlsearch' is set or reset: reset no_hlsearch */
7529 else if ((int *)varp == &p_hls)
7531 no_hlsearch = FALSE;
7533 #endif
7535 #ifdef FEAT_SCROLLBIND
7536 /* when 'scrollbind' is set: snapshot the current position to avoid a jump
7537 * at the end of normal_cmd() */
7538 else if ((int *)varp == &curwin->w_p_scb)
7540 if (curwin->w_p_scb)
7541 do_check_scrollbind(FALSE);
7543 #endif
7545 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
7546 /* There can be only one window with 'previewwindow' set. */
7547 else if ((int *)varp == &curwin->w_p_pvw)
7549 if (curwin->w_p_pvw)
7551 win_T *win;
7553 for (win = firstwin; win != NULL; win = win->w_next)
7554 if (win->w_p_pvw && win != curwin)
7556 curwin->w_p_pvw = FALSE;
7557 return (char_u *)N_("E590: A preview window already exists");
7561 #endif
7563 /* when 'textmode' is set or reset also change 'fileformat' */
7564 else if ((int *)varp == &curbuf->b_p_tx)
7566 set_fileformat(curbuf->b_p_tx ? EOL_DOS : EOL_UNIX, opt_flags);
7569 /* when 'textauto' is set or reset also change 'fileformats' */
7570 else if ((int *)varp == &p_ta)
7571 set_string_option_direct((char_u *)"ffs", -1,
7572 p_ta ? (char_u *)DFLT_FFS_VIM : (char_u *)"",
7573 OPT_FREE | opt_flags, 0);
7576 * When 'lisp' option changes include/exclude '-' in
7577 * keyword characters.
7579 #ifdef FEAT_LISP
7580 else if (varp == (char_u *)&(curbuf->b_p_lisp))
7582 (void)buf_init_chartab(curbuf, FALSE); /* ignore errors */
7584 #endif
7586 #ifdef FEAT_TITLE
7587 /* when 'title' changed, may need to change the title; same for 'icon' */
7588 else if ((int *)varp == &p_title)
7590 did_set_title(FALSE);
7593 else if ((int *)varp == &p_icon)
7595 did_set_title(TRUE);
7597 #endif
7599 else if ((int *)varp == &curbuf->b_changed)
7601 if (!value)
7602 save_file_ff(curbuf); /* Buffer is unchanged */
7603 #ifdef FEAT_TITLE
7604 redraw_titles();
7605 #endif
7606 #ifdef FEAT_AUTOCMD
7607 modified_was_set = value;
7608 #endif
7611 #ifdef BACKSLASH_IN_FILENAME
7612 else if ((int *)varp == &p_ssl)
7614 if (p_ssl)
7616 psepc = '/';
7617 psepcN = '\\';
7618 pseps[0] = '/';
7620 else
7622 psepc = '\\';
7623 psepcN = '/';
7624 pseps[0] = '\\';
7627 /* need to adjust the file name arguments and buffer names. */
7628 buflist_slash_adjust();
7629 alist_slash_adjust();
7630 # ifdef FEAT_EVAL
7631 scriptnames_slash_adjust();
7632 # endif
7634 #endif
7636 /* If 'wrap' is set, set w_leftcol to zero. */
7637 else if ((int *)varp == &curwin->w_p_wrap)
7639 if (curwin->w_p_wrap)
7640 curwin->w_leftcol = 0;
7641 if (curwin->w_curswant != MAXCOL)
7642 curwin->w_set_curswant = TRUE;
7645 /* If 'number' is set, reset 'relativenumber'. */
7646 else if ((int *)varp == &curwin->w_p_nu)
7648 if (curwin->w_p_nu)
7649 curwin->w_p_rnu = FALSE;
7651 /* If 'relativenumber' is set, reset 'number'. */
7652 else if ((int *)varp == &curwin->w_p_rnu)
7654 if (curwin->w_p_rnu)
7655 curwin->w_p_nu = FALSE;
7658 #ifdef FEAT_WINDOWS
7659 else if ((int *)varp == &p_ea)
7661 if (p_ea && !old_value)
7662 win_equal(curwin, FALSE, 0);
7664 #endif
7666 else if ((int *)varp == &p_wiv)
7669 * When 'weirdinvert' changed, set/reset 't_xs'.
7670 * Then set 'weirdinvert' according to value of 't_xs'.
7672 if (p_wiv && !old_value)
7673 T_XS = (char_u *)"y";
7674 else if (!p_wiv && old_value)
7675 T_XS = empty_option;
7676 p_wiv = (*T_XS != NUL);
7679 #ifdef FEAT_BEVAL
7680 else if ((int *)varp == &p_beval)
7682 if (p_beval == TRUE)
7683 gui_mch_enable_beval_area(balloonEval);
7684 else
7685 gui_mch_disable_beval_area(balloonEval);
7687 #endif
7689 #ifdef FEAT_AUTOCHDIR
7690 else if ((int *)varp == &p_acd)
7692 /* Change directories when the 'acd' option is set now. */
7693 DO_AUTOCHDIR
7695 #endif
7697 #ifdef FEAT_DIFF
7698 /* 'diff' */
7699 else if ((int *)varp == &curwin->w_p_diff)
7701 /* May add or remove the buffer from the list of diff buffers. */
7702 diff_buf_adjust(curwin);
7703 # ifdef FEAT_FOLDING
7704 if (foldmethodIsDiff(curwin))
7705 foldUpdateAll(curwin);
7706 # endif
7708 #endif
7710 #ifdef USE_IM_CONTROL
7711 /* 'imdisable' */
7712 else if ((int *)varp == &p_imdisable)
7714 /* Only de-activate it here, it will be enabled when changing mode. */
7715 if (p_imdisable)
7716 im_set_active(FALSE);
7718 #endif
7720 #ifdef FEAT_SPELL
7721 /* 'spell' */
7722 else if ((int *)varp == &curwin->w_p_spell)
7724 if (curwin->w_p_spell)
7726 char_u *errmsg = did_set_spelllang(curbuf);
7728 if (errmsg != NULL)
7729 EMSG(_(errmsg));
7732 #endif
7734 #ifdef FEAT_FKMAP
7735 else if ((int *)varp == &p_altkeymap)
7737 if (old_value != p_altkeymap)
7739 if (!p_altkeymap)
7741 p_hkmap = p_fkmap;
7742 p_fkmap = 0;
7744 else
7746 p_fkmap = p_hkmap;
7747 p_hkmap = 0;
7749 (void)init_chartab();
7754 * In case some second language keymapping options have changed, check
7755 * and correct the setting in a consistent way.
7759 * If hkmap or fkmap are set, reset Arabic keymapping.
7761 if ((p_hkmap || p_fkmap) && p_altkeymap)
7763 p_altkeymap = p_fkmap;
7764 # ifdef FEAT_ARABIC
7765 curwin->w_p_arab = FALSE;
7766 # endif
7767 (void)init_chartab();
7771 * If hkmap set, reset Farsi keymapping.
7773 if (p_hkmap && p_altkeymap)
7775 p_altkeymap = 0;
7776 p_fkmap = 0;
7777 # ifdef FEAT_ARABIC
7778 curwin->w_p_arab = FALSE;
7779 # endif
7780 (void)init_chartab();
7784 * If fkmap set, reset Hebrew keymapping.
7786 if (p_fkmap && !p_altkeymap)
7788 p_altkeymap = 1;
7789 p_hkmap = 0;
7790 # ifdef FEAT_ARABIC
7791 curwin->w_p_arab = FALSE;
7792 # endif
7793 (void)init_chartab();
7795 #endif
7797 #ifdef FEAT_ARABIC
7798 if ((int *)varp == &curwin->w_p_arab)
7800 if (curwin->w_p_arab)
7803 * 'arabic' is set, handle various sub-settings.
7805 if (!p_tbidi)
7807 /* set rightleft mode */
7808 if (!curwin->w_p_rl)
7810 curwin->w_p_rl = TRUE;
7811 changed_window_setting();
7814 /* Enable Arabic shaping (major part of what Arabic requires) */
7815 if (!p_arshape)
7817 p_arshape = TRUE;
7818 redraw_later_clear();
7822 /* Arabic requires a utf-8 encoding, inform the user if its not
7823 * set. */
7824 if (STRCMP(p_enc, "utf-8") != 0)
7826 static char *w_arabic = N_("W17: Arabic requires UTF-8, do ':set encoding=utf-8'");
7828 msg_source(hl_attr(HLF_W));
7829 MSG_ATTR(_(w_arabic), hl_attr(HLF_W));
7830 #ifdef FEAT_EVAL
7831 set_vim_var_string(VV_WARNINGMSG, (char_u *)_(w_arabic), -1);
7832 #endif
7835 # ifdef FEAT_MBYTE
7836 /* set 'delcombine' */
7837 p_deco = TRUE;
7838 # endif
7840 # ifdef FEAT_KEYMAP
7841 /* Force-set the necessary keymap for arabic */
7842 set_option_value((char_u *)"keymap", 0L, (char_u *)"arabic",
7843 OPT_LOCAL);
7844 # endif
7845 # ifdef FEAT_FKMAP
7846 p_altkeymap = 0;
7847 p_hkmap = 0;
7848 p_fkmap = 0;
7849 (void)init_chartab();
7850 # endif
7852 else
7855 * 'arabic' is reset, handle various sub-settings.
7857 if (!p_tbidi)
7859 /* reset rightleft mode */
7860 if (curwin->w_p_rl)
7862 curwin->w_p_rl = FALSE;
7863 changed_window_setting();
7866 /* 'arabicshape' isn't reset, it is a global option and
7867 * another window may still need it "on". */
7870 /* 'delcombine' isn't reset, it is a global option and another
7871 * window may still want it "on". */
7873 # ifdef FEAT_KEYMAP
7874 /* Revert to the default keymap */
7875 curbuf->b_p_iminsert = B_IMODE_NONE;
7876 curbuf->b_p_imsearch = B_IMODE_USE_INSERT;
7877 # endif
7879 if (curwin->w_curswant != MAXCOL)
7880 curwin->w_set_curswant = TRUE;
7883 else if ((int *)varp == &p_arshape)
7885 if (curwin->w_curswant != MAXCOL)
7886 curwin->w_set_curswant = TRUE;
7888 #endif
7890 #ifdef FEAT_LINEBREAK
7891 if ((int *)varp == &curwin->w_p_lbr)
7893 if (curwin->w_curswant != MAXCOL)
7894 curwin->w_set_curswant = TRUE;
7896 #endif
7898 #ifdef FEAT_RIGHTLEFT
7899 if ((int *)varp == &curwin->w_p_rl)
7901 if (curwin->w_curswant != MAXCOL)
7902 curwin->w_set_curswant = TRUE;
7904 #endif
7907 * End of handling side effects for bool options.
7910 options[opt_idx].flags |= P_WAS_SET;
7912 comp_col(); /* in case 'ruler' or 'showcmd' changed */
7914 check_redraw(options[opt_idx].flags);
7916 return NULL;
7920 * Set the value of a number option, and take care of side effects.
7921 * Returns NULL for success, or an error message for an error.
7923 static char_u *
7924 set_num_option(opt_idx, varp, value, errbuf, errbuflen, opt_flags)
7925 int opt_idx; /* index in options[] table */
7926 char_u *varp; /* pointer to the option variable */
7927 long value; /* new value */
7928 char_u *errbuf; /* buffer for error messages */
7929 size_t errbuflen; /* length of "errbuf" */
7930 int opt_flags; /* OPT_LOCAL, OPT_GLOBAL and
7931 OPT_MODELINE */
7933 char_u *errmsg = NULL;
7934 long old_value = *(long *)varp;
7935 long old_Rows = Rows; /* remember old Rows */
7936 long old_Columns = Columns; /* remember old Columns */
7937 long *pp = (long *)varp;
7939 /* Disallow changing some options from secure mode. */
7940 if ((secure
7941 #ifdef HAVE_SANDBOX
7942 || sandbox != 0
7943 #endif
7944 ) && (options[opt_idx].flags & P_SECURE))
7945 return e_secure;
7947 *pp = value;
7948 #ifdef FEAT_EVAL
7949 /* Remember where the option was set. */
7950 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
7951 #endif
7952 #ifdef FEAT_GUI
7953 need_mouse_correct = TRUE;
7954 #endif
7956 if (curbuf->b_p_sw <= 0)
7958 errmsg = e_positive;
7959 #ifdef FEAT_VARTABS
7960 /* Use the first 'vartabstop' value, or 'tabstop' if vts isn't in use. */
7961 curbuf->b_p_sw = tabstop_count(curbuf->b_p_vts_ary) > 0
7962 ? tabstop_first(curbuf->b_p_vts_ary)
7963 : curbuf->b_p_ts;
7964 #else
7965 curbuf->b_p_sw = curbuf->b_p_ts;
7966 #endif
7970 * Number options that need some action when changed
7972 #ifdef FEAT_WINDOWS
7973 if (pp == &p_wh || pp == &p_hh)
7975 if (p_wh < 1)
7977 errmsg = e_positive;
7978 p_wh = 1;
7980 if (p_wmh > p_wh)
7982 errmsg = e_winheight;
7983 p_wh = p_wmh;
7985 if (p_hh < 0)
7987 errmsg = e_positive;
7988 p_hh = 0;
7991 /* Change window height NOW */
7992 if (lastwin != firstwin)
7994 if (pp == &p_wh && curwin->w_height < p_wh)
7995 win_setheight((int)p_wh);
7996 if (pp == &p_hh && curbuf->b_help && curwin->w_height < p_hh)
7997 win_setheight((int)p_hh);
8001 /* 'winminheight' */
8002 else if (pp == &p_wmh)
8004 if (p_wmh < 0)
8006 errmsg = e_positive;
8007 p_wmh = 0;
8009 if (p_wmh > p_wh)
8011 errmsg = e_winheight;
8012 p_wmh = p_wh;
8014 win_setminheight();
8017 # ifdef FEAT_VERTSPLIT
8018 else if (pp == &p_wiw)
8020 if (p_wiw < 1)
8022 errmsg = e_positive;
8023 p_wiw = 1;
8025 if (p_wmw > p_wiw)
8027 errmsg = e_winwidth;
8028 p_wiw = p_wmw;
8031 /* Change window width NOW */
8032 if (lastwin != firstwin && curwin->w_width < p_wiw)
8033 win_setwidth((int)p_wiw);
8036 /* 'winminwidth' */
8037 else if (pp == &p_wmw)
8039 if (p_wmw < 0)
8041 errmsg = e_positive;
8042 p_wmw = 0;
8044 if (p_wmw > p_wiw)
8046 errmsg = e_winwidth;
8047 p_wmw = p_wiw;
8049 win_setminheight();
8051 # endif
8053 #endif
8055 #ifdef FEAT_WINDOWS
8056 /* (re)set last window status line */
8057 else if (pp == &p_ls)
8059 last_status(FALSE);
8062 /* (re)set tab page line */
8063 else if (pp == &p_stal)
8065 shell_new_rows(); /* recompute window positions and heights */
8067 #endif
8069 #ifdef FEAT_GUI
8070 else if (pp == &p_linespace)
8072 /* Recompute gui.char_height and resize the Vim window to keep the
8073 * same number of lines. */
8074 if (gui.in_use && gui_mch_adjust_charheight() == OK)
8075 gui_set_shellsize(FALSE, FALSE, RESIZE_VERT);
8077 #endif
8079 #ifdef FEAT_FOLDING
8080 /* 'foldlevel' */
8081 else if (pp == &curwin->w_p_fdl)
8083 if (curwin->w_p_fdl < 0)
8084 curwin->w_p_fdl = 0;
8085 newFoldLevel();
8088 /* 'foldminlines' */
8089 else if (pp == &curwin->w_p_fml)
8091 foldUpdateAll(curwin);
8094 /* 'foldnestmax' */
8095 else if (pp == &curwin->w_p_fdn)
8097 if (foldmethodIsSyntax(curwin) || foldmethodIsIndent(curwin))
8098 foldUpdateAll(curwin);
8101 /* 'foldcolumn' */
8102 else if (pp == &curwin->w_p_fdc)
8104 if (curwin->w_p_fdc < 0)
8106 errmsg = e_positive;
8107 curwin->w_p_fdc = 0;
8109 else if (curwin->w_p_fdc > 12)
8111 errmsg = e_invarg;
8112 curwin->w_p_fdc = 12;
8116 /* 'shiftwidth' or 'tabstop' */
8117 else if (pp == &curbuf->b_p_sw || pp == &curbuf->b_p_ts)
8119 if (foldmethodIsIndent(curwin))
8120 foldUpdateAll(curwin);
8122 #endif /* FEAT_FOLDING */
8124 #ifdef FEAT_MBYTE
8125 /* 'maxcombine' */
8126 else if (pp == &p_mco)
8128 if (p_mco > MAX_MCO)
8129 p_mco = MAX_MCO;
8130 else if (p_mco < 0)
8131 p_mco = 0;
8132 screenclear(); /* will re-allocate the screen */
8134 #endif
8136 else if (pp == &curbuf->b_p_iminsert)
8138 if (curbuf->b_p_iminsert < 0 || curbuf->b_p_iminsert > B_IMODE_LAST)
8140 errmsg = e_invarg;
8141 curbuf->b_p_iminsert = B_IMODE_NONE;
8143 p_iminsert = curbuf->b_p_iminsert;
8144 if (termcap_active) /* don't do this in the alternate screen */
8145 showmode();
8146 #if defined(FEAT_WINDOWS) && defined(FEAT_KEYMAP)
8147 /* Show/unshow value of 'keymap' in status lines. */
8148 status_redraw_curbuf();
8149 #endif
8152 else if (pp == &p_window)
8154 if (p_window < 1)
8155 p_window = 1;
8156 else if (p_window >= Rows)
8157 p_window = Rows - 1;
8160 else if (pp == &curbuf->b_p_imsearch)
8162 if (curbuf->b_p_imsearch < -1 || curbuf->b_p_imsearch > B_IMODE_LAST)
8164 errmsg = e_invarg;
8165 curbuf->b_p_imsearch = B_IMODE_NONE;
8167 p_imsearch = curbuf->b_p_imsearch;
8170 #ifdef FEAT_TITLE
8171 /* if 'titlelen' has changed, redraw the title */
8172 else if (pp == &p_titlelen)
8174 if (p_titlelen < 0)
8176 errmsg = e_positive;
8177 p_titlelen = 85;
8179 if (starting != NO_SCREEN && old_value != p_titlelen)
8180 need_maketitle = TRUE;
8182 #endif
8184 /* if p_ch changed value, change the command line height */
8185 else if (pp == &p_ch)
8187 if (p_ch < 1)
8189 errmsg = e_positive;
8190 p_ch = 1;
8192 if (p_ch > Rows - min_rows() + 1)
8193 p_ch = Rows - min_rows() + 1;
8195 /* Only compute the new window layout when startup has been
8196 * completed. Otherwise the frame sizes may be wrong. */
8197 if (p_ch != old_value && full_screen
8198 #ifdef FEAT_GUI
8199 && !gui.starting
8200 #endif
8202 command_height();
8205 /* when 'updatecount' changes from zero to non-zero, open swap files */
8206 else if (pp == &p_uc)
8208 if (p_uc < 0)
8210 errmsg = e_positive;
8211 p_uc = 100;
8213 if (p_uc && !old_value)
8214 ml_open_files();
8216 #ifdef MZSCHEME_GUI_THREADS
8217 else if (pp == &p_mzq)
8218 mzvim_reset_timer();
8219 #endif
8221 /* sync undo before 'undolevels' changes */
8222 else if (pp == &p_ul)
8224 /* use the old value, otherwise u_sync() may not work properly */
8225 p_ul = old_value;
8226 u_sync(TRUE);
8227 p_ul = value;
8230 #ifdef FEAT_LINEBREAK
8231 /* 'numberwidth' must be positive */
8232 else if (pp == &curwin->w_p_nuw)
8234 if (curwin->w_p_nuw < 1)
8236 errmsg = e_positive;
8237 curwin->w_p_nuw = 1;
8239 if (curwin->w_p_nuw > 10)
8241 errmsg = e_invarg;
8242 curwin->w_p_nuw = 10;
8244 curwin->w_nrwidth_line_count = 0;
8247 /* 'breakindentmin' must be positive */
8248 else if (pp == &curwin->w_p_brimin)
8250 if (curwin->w_p_brimin < 1)
8252 errmsg = e_positive;
8253 curwin->w_p_brimin = 1;
8256 #endif
8259 * Check the bounds for numeric options here
8261 if (Rows < min_rows() && full_screen)
8263 if (errbuf != NULL)
8265 vim_snprintf((char *)errbuf, errbuflen,
8266 _("E593: Need at least %d lines"), min_rows());
8267 errmsg = errbuf;
8269 Rows = min_rows();
8271 if (Columns < MIN_COLUMNS && full_screen)
8273 if (errbuf != NULL)
8275 vim_snprintf((char *)errbuf, errbuflen,
8276 _("E594: Need at least %d columns"), MIN_COLUMNS);
8277 errmsg = errbuf;
8279 Columns = MIN_COLUMNS;
8281 /* Limit the values to avoid an overflow in Rows * Columns. */
8282 if (Columns > 10000)
8283 Columns = 10000;
8284 if (Rows > 1000)
8285 Rows = 1000;
8287 #ifdef DJGPP
8288 /* avoid a crash by checking for a too large value of 'columns' */
8289 if (old_Columns != Columns && full_screen && term_console)
8290 mch_check_columns();
8291 #endif
8294 * If the screen (shell) height has been changed, assume it is the
8295 * physical screenheight.
8297 if (old_Rows != Rows || old_Columns != Columns)
8299 /* Changing the screen size is not allowed while updating the screen. */
8300 if (updating_screen)
8301 *pp = old_value;
8302 else if (full_screen
8303 #ifdef FEAT_GUI
8304 && !gui.starting
8305 #endif
8307 set_shellsize((int)Columns, (int)Rows, TRUE);
8308 else
8310 /* Postpone the resizing; check the size and cmdline position for
8311 * messages. */
8312 check_shellsize();
8313 if (cmdline_row > Rows - p_ch && Rows > p_ch)
8314 cmdline_row = Rows - p_ch;
8316 if (p_window >= Rows || !option_was_set((char_u *)"window"))
8317 p_window = Rows - 1;
8320 if (curbuf->b_p_sts < 0)
8322 errmsg = e_positive;
8323 curbuf->b_p_sts = 0;
8325 if (curbuf->b_p_ts <= 0)
8327 errmsg = e_positive;
8328 curbuf->b_p_ts = 8;
8330 if (curbuf->b_p_tw < 0)
8332 errmsg = e_positive;
8333 curbuf->b_p_tw = 0;
8335 if (p_tm < 0)
8337 errmsg = e_positive;
8338 p_tm = 0;
8340 if ((curwin->w_p_scr <= 0
8341 || (curwin->w_p_scr > curwin->w_height
8342 && curwin->w_height > 0))
8343 && full_screen)
8345 if (pp == &(curwin->w_p_scr))
8347 if (curwin->w_p_scr != 0)
8348 errmsg = e_scroll;
8349 win_comp_scroll(curwin);
8351 /* If 'scroll' became invalid because of a side effect silently adjust
8352 * it. */
8353 else if (curwin->w_p_scr <= 0)
8354 curwin->w_p_scr = 1;
8355 else /* curwin->w_p_scr > curwin->w_height */
8356 curwin->w_p_scr = curwin->w_height;
8358 if (p_hi < 0)
8360 errmsg = e_positive;
8361 p_hi = 0;
8363 if (p_report < 0)
8365 errmsg = e_positive;
8366 p_report = 1;
8368 if ((p_sj < -100 || p_sj >= Rows) && full_screen)
8370 if (Rows != old_Rows) /* Rows changed, just adjust p_sj */
8371 p_sj = Rows / 2;
8372 else
8374 errmsg = e_scroll;
8375 p_sj = 1;
8378 if (p_so < 0 && full_screen)
8380 errmsg = e_scroll;
8381 p_so = 0;
8383 if (p_siso < 0 && full_screen)
8385 errmsg = e_positive;
8386 p_siso = 0;
8388 #ifdef FEAT_CMDWIN
8389 if (p_cwh < 1)
8391 errmsg = e_positive;
8392 p_cwh = 1;
8394 #endif
8395 if (p_ut < 0)
8397 errmsg = e_positive;
8398 p_ut = 2000;
8400 if (p_ss < 0)
8402 errmsg = e_positive;
8403 p_ss = 0;
8406 /* May set global value for local option. */
8407 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0)
8408 *(long *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) = *pp;
8410 options[opt_idx].flags |= P_WAS_SET;
8412 comp_col(); /* in case 'columns' or 'ls' changed */
8413 if (curwin->w_curswant != MAXCOL)
8414 curwin->w_set_curswant = TRUE; /* in case 'tabstop' changed */
8415 check_redraw(options[opt_idx].flags);
8417 return errmsg;
8421 * Called after an option changed: check if something needs to be redrawn.
8423 static void
8424 check_redraw(flags)
8425 long_u flags;
8427 /* Careful: P_RCLR and P_RALL are a combination of other P_ flags */
8428 int clear = (flags & P_RCLR) == P_RCLR;
8429 int all = ((flags & P_RALL) == P_RALL || clear);
8431 #ifdef FEAT_WINDOWS
8432 if ((flags & P_RSTAT) || all) /* mark all status lines dirty */
8433 status_redraw_all();
8434 #endif
8436 if ((flags & P_RBUF) || (flags & P_RWIN) || all)
8437 changed_window_setting();
8438 if (flags & P_RBUF)
8439 redraw_curbuf_later(NOT_VALID);
8440 if (clear)
8441 redraw_all_later(CLEAR);
8442 else if (all)
8443 redraw_all_later(NOT_VALID);
8447 * Find index for option 'arg'.
8448 * Return -1 if not found.
8450 static int
8451 findoption(arg)
8452 char_u *arg;
8454 int opt_idx;
8455 char *s, *p;
8456 static short quick_tab[27] = {0, 0}; /* quick access table */
8457 int is_term_opt;
8460 * For first call: Initialize the quick-access table.
8461 * It contains the index for the first option that starts with a certain
8462 * letter. There are 26 letters, plus the first "t_" option.
8464 if (quick_tab[1] == 0)
8466 p = options[0].fullname;
8467 for (opt_idx = 1; (s = options[opt_idx].fullname) != NULL; opt_idx++)
8469 if (s[0] != p[0])
8471 if (s[0] == 't' && s[1] == '_')
8472 quick_tab[26] = opt_idx;
8473 else
8474 quick_tab[CharOrdLow(s[0])] = opt_idx;
8476 p = s;
8481 * Check for name starting with an illegal character.
8483 #ifdef EBCDIC
8484 if (!islower(arg[0]))
8485 #else
8486 if (arg[0] < 'a' || arg[0] > 'z')
8487 #endif
8488 return -1;
8490 is_term_opt = (arg[0] == 't' && arg[1] == '_');
8491 if (is_term_opt)
8492 opt_idx = quick_tab[26];
8493 else
8494 opt_idx = quick_tab[CharOrdLow(arg[0])];
8495 for ( ; (s = options[opt_idx].fullname) != NULL; opt_idx++)
8497 if (STRCMP(arg, s) == 0) /* match full name */
8498 break;
8500 if (s == NULL && !is_term_opt)
8502 opt_idx = quick_tab[CharOrdLow(arg[0])];
8503 for ( ; options[opt_idx].fullname != NULL; opt_idx++)
8505 s = options[opt_idx].shortname;
8506 if (s != NULL && STRCMP(arg, s) == 0) /* match short name */
8507 break;
8508 s = NULL;
8511 if (s == NULL)
8512 opt_idx = -1;
8513 return opt_idx;
8516 #if defined(FEAT_EVAL) || defined(FEAT_TCL) || defined(FEAT_MZSCHEME)
8518 * Get the value for an option.
8520 * Returns:
8521 * Number or Toggle option: 1, *numval gets value.
8522 * String option: 0, *stringval gets allocated string.
8523 * Hidden Number or Toggle option: -1.
8524 * hidden String option: -2.
8525 * unknown option: -3.
8528 get_option_value(name, numval, stringval, opt_flags)
8529 char_u *name;
8530 long *numval;
8531 char_u **stringval; /* NULL when only checking existance */
8532 int opt_flags;
8534 int opt_idx;
8535 char_u *varp;
8537 opt_idx = findoption(name);
8538 if (opt_idx < 0) /* unknown option */
8539 return -3;
8541 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
8543 if (options[opt_idx].flags & P_STRING)
8545 if (varp == NULL) /* hidden option */
8546 return -2;
8547 if (stringval != NULL)
8549 #ifdef FEAT_CRYPT
8550 /* never return the value of the crypt key */
8551 if ((char_u **)varp == &curbuf->b_p_key
8552 && **(char_u **)(varp) != NUL)
8553 *stringval = vim_strsave((char_u *)"*****");
8554 else
8555 #endif
8556 *stringval = vim_strsave(*(char_u **)(varp));
8558 return 0;
8561 if (varp == NULL) /* hidden option */
8562 return -1;
8563 if (options[opt_idx].flags & P_NUM)
8564 *numval = *(long *)varp;
8565 else
8567 /* Special case: 'modified' is b_changed, but we also want to consider
8568 * it set when 'ff' or 'fenc' changed. */
8569 if ((int *)varp == &curbuf->b_changed)
8570 *numval = curbufIsChanged();
8571 else
8572 *numval = *(int *)varp;
8574 return 1;
8576 #endif
8579 * Set the value of option "name".
8580 * Use "string" for string options, use "number" for other options.
8582 void
8583 set_option_value(name, number, string, opt_flags)
8584 char_u *name;
8585 long number;
8586 char_u *string;
8587 int opt_flags; /* OPT_LOCAL or 0 (both) */
8589 int opt_idx;
8590 char_u *varp;
8591 long_u flags;
8593 opt_idx = findoption(name);
8594 if (opt_idx < 0)
8595 EMSG2(_("E355: Unknown option: %s"), name);
8596 else
8598 flags = options[opt_idx].flags;
8599 #ifdef HAVE_SANDBOX
8600 /* Disallow changing some options in the sandbox */
8601 if (sandbox > 0 && (flags & P_SECURE))
8603 EMSG(_(e_sandbox));
8604 return;
8606 #endif
8607 if (flags & P_STRING)
8608 set_string_option(opt_idx, string, opt_flags);
8609 else
8611 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
8612 if (varp != NULL) /* hidden option is not changed */
8614 if (number == 0 && string != NULL)
8616 int idx;
8618 /* Either we are given a string or we are setting option
8619 * to zero. */
8620 for (idx = 0; string[idx] == '0'; ++idx)
8622 if (string[idx] != NUL || idx == 0)
8624 /* There's another character after zeros or the string
8625 * is empty. In both cases, we are trying to set a
8626 * num option using a string. */
8627 EMSG3(_("E521: Number required: &%s = '%s'"),
8628 name, string);
8629 return; /* do nothing as we hit an error */
8633 if (flags & P_NUM)
8634 (void)set_num_option(opt_idx, varp, number,
8635 NULL, 0, opt_flags);
8636 else
8637 (void)set_bool_option(opt_idx, varp, (int)number,
8638 opt_flags);
8645 * Get the terminal code for a terminal option.
8646 * Returns NULL when not found.
8648 char_u *
8649 get_term_code(tname)
8650 char_u *tname;
8652 int opt_idx;
8653 char_u *varp;
8655 if (tname[0] != 't' || tname[1] != '_' ||
8656 tname[2] == NUL || tname[3] == NUL)
8657 return NULL;
8658 if ((opt_idx = findoption(tname)) >= 0)
8660 varp = get_varp(&(options[opt_idx]));
8661 if (varp != NULL)
8662 varp = *(char_u **)(varp);
8663 return varp;
8665 return find_termcode(tname + 2);
8668 char_u *
8669 get_highlight_default()
8671 int i;
8673 i = findoption((char_u *)"hl");
8674 if (i >= 0)
8675 return options[i].def_val[VI_DEFAULT];
8676 return (char_u *)NULL;
8679 #if defined(FEAT_MBYTE) || defined(PROTO)
8680 char_u *
8681 get_encoding_default()
8683 int i;
8685 i = findoption((char_u *)"enc");
8686 if (i >= 0)
8687 return options[i].def_val[VI_DEFAULT];
8688 return (char_u *)NULL;
8690 #endif
8693 * Translate a string like "t_xx", "<t_xx>" or "<S-Tab>" to a key number.
8695 static int
8696 find_key_option(arg)
8697 char_u *arg;
8699 int key;
8700 int modifiers;
8703 * Don't use get_special_key_code() for t_xx, we don't want it to call
8704 * add_termcap_entry().
8706 if (arg[0] == 't' && arg[1] == '_' && arg[2] && arg[3])
8707 key = TERMCAP2KEY(arg[2], arg[3]);
8708 else
8710 --arg; /* put arg at the '<' */
8711 modifiers = 0;
8712 key = find_special_key(&arg, &modifiers, TRUE, TRUE);
8713 if (modifiers) /* can't handle modifiers here */
8714 key = 0;
8716 return key;
8720 * if 'all' == 0: show changed options
8721 * if 'all' == 1: show all normal options
8722 * if 'all' == 2: show all terminal options
8724 static void
8725 showoptions(all, opt_flags)
8726 int all;
8727 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
8729 struct vimoption *p;
8730 int col;
8731 int isterm;
8732 char_u *varp;
8733 struct vimoption **items;
8734 int item_count;
8735 int run;
8736 int row, rows;
8737 int cols;
8738 int i;
8739 int len;
8741 #define INC 20
8742 #define GAP 3
8744 items = (struct vimoption **)alloc((unsigned)(sizeof(struct vimoption *) *
8745 PARAM_COUNT));
8746 if (items == NULL)
8747 return;
8749 /* Highlight title */
8750 if (all == 2)
8751 MSG_PUTS_TITLE(_("\n--- Terminal codes ---"));
8752 else if (opt_flags & OPT_GLOBAL)
8753 MSG_PUTS_TITLE(_("\n--- Global option values ---"));
8754 else if (opt_flags & OPT_LOCAL)
8755 MSG_PUTS_TITLE(_("\n--- Local option values ---"));
8756 else
8757 MSG_PUTS_TITLE(_("\n--- Options ---"));
8760 * do the loop two times:
8761 * 1. display the short items
8762 * 2. display the long items (only strings and numbers)
8764 for (run = 1; run <= 2 && !got_int; ++run)
8767 * collect the items in items[]
8769 item_count = 0;
8770 for (p = &options[0]; p->fullname != NULL; p++)
8772 varp = NULL;
8773 isterm = istermoption(p);
8774 if (opt_flags != 0)
8776 if (p->indir != PV_NONE && !isterm)
8777 varp = get_varp_scope(p, opt_flags);
8779 else
8780 varp = get_varp(p);
8781 if (varp != NULL
8782 && ((all == 2 && isterm)
8783 || (all == 1 && !isterm)
8784 || (all == 0 && !optval_default(p, varp))))
8786 if (p->flags & P_BOOL)
8787 len = 1; /* a toggle option fits always */
8788 else
8790 option_value2string(p, opt_flags);
8791 len = (int)STRLEN(p->fullname) + vim_strsize(NameBuff) + 1;
8793 if ((len <= INC - GAP && run == 1) ||
8794 (len > INC - GAP && run == 2))
8795 items[item_count++] = p;
8800 * display the items
8802 if (run == 1)
8804 cols = (Columns + GAP - 3) / INC;
8805 if (cols == 0)
8806 cols = 1;
8807 rows = (item_count + cols - 1) / cols;
8809 else /* run == 2 */
8810 rows = item_count;
8811 for (row = 0; row < rows && !got_int; ++row)
8813 msg_putchar('\n'); /* go to next line */
8814 if (got_int) /* 'q' typed in more */
8815 break;
8816 col = 0;
8817 for (i = row; i < item_count; i += rows)
8819 msg_col = col; /* make columns */
8820 showoneopt(items[i], opt_flags);
8821 col += INC;
8823 out_flush();
8824 ui_breakcheck();
8827 vim_free(items);
8831 * Return TRUE if option "p" has its default value.
8833 static int
8834 optval_default(p, varp)
8835 struct vimoption *p;
8836 char_u *varp;
8838 int dvi;
8840 if (varp == NULL)
8841 return TRUE; /* hidden option is always at default */
8842 dvi = ((p->flags & P_VI_DEF) || p_cp) ? VI_DEFAULT : VIM_DEFAULT;
8843 if (p->flags & P_NUM)
8844 return (*(long *)varp == (long)(long_i)p->def_val[dvi]);
8845 if (p->flags & P_BOOL)
8846 /* the cast to long is required for Manx C, long_i is
8847 * needed for MSVC */
8848 return (*(int *)varp == (int)(long)(long_i)p->def_val[dvi]);
8849 /* P_STRING */
8850 return (STRCMP(*(char_u **)varp, p->def_val[dvi]) == 0);
8854 * showoneopt: show the value of one option
8855 * must not be called with a hidden option!
8857 static void
8858 showoneopt(p, opt_flags)
8859 struct vimoption *p;
8860 int opt_flags; /* OPT_LOCAL or OPT_GLOBAL */
8862 char_u *varp;
8863 int save_silent = silent_mode;
8865 silent_mode = FALSE;
8866 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
8868 varp = get_varp_scope(p, opt_flags);
8870 /* for 'modified' we also need to check if 'ff' or 'fenc' changed. */
8871 if ((p->flags & P_BOOL) && ((int *)varp == &curbuf->b_changed
8872 ? !curbufIsChanged() : !*(int *)varp))
8873 MSG_PUTS("no");
8874 else if ((p->flags & P_BOOL) && *(int *)varp < 0)
8875 MSG_PUTS("--");
8876 else
8877 MSG_PUTS(" ");
8878 MSG_PUTS(p->fullname);
8879 if (!(p->flags & P_BOOL))
8881 msg_putchar('=');
8882 /* put value string in NameBuff */
8883 option_value2string(p, opt_flags);
8884 msg_outtrans(NameBuff);
8887 silent_mode = save_silent;
8888 info_message = FALSE;
8892 * Write modified options as ":set" commands to a file.
8894 * There are three values for "opt_flags":
8895 * OPT_GLOBAL: Write global option values and fresh values of
8896 * buffer-local options (used for start of a session
8897 * file).
8898 * OPT_GLOBAL + OPT_LOCAL: Idem, add fresh values of window-local options for
8899 * curwin (used for a vimrc file).
8900 * OPT_LOCAL: Write buffer-local option values for curbuf, fresh
8901 * and local values for window-local options of
8902 * curwin. Local values are also written when at the
8903 * default value, because a modeline or autocommand
8904 * may have set them when doing ":edit file" and the
8905 * user has set them back at the default or fresh
8906 * value.
8907 * When "local_only" is TRUE, don't write fresh
8908 * values, only local values (for ":mkview").
8909 * (fresh value = value used for a new buffer or window for a local option).
8911 * Return FAIL on error, OK otherwise.
8914 makeset(fd, opt_flags, local_only)
8915 FILE *fd;
8916 int opt_flags;
8917 int local_only;
8919 struct vimoption *p;
8920 char_u *varp; /* currently used value */
8921 char_u *varp_fresh; /* local value */
8922 char_u *varp_local = NULL; /* fresh value */
8923 char *cmd;
8924 int round;
8925 int pri;
8928 * The options that don't have a default (terminal name, columns, lines)
8929 * are never written. Terminal options are also not written.
8930 * Do the loop over "options[]" twice: once for options with the
8931 * P_PRI_MKRC flag and once without.
8933 for (pri = 1; pri >= 0; --pri)
8935 for (p = &options[0]; !istermoption(p); p++)
8936 if (!(p->flags & P_NO_MKRC)
8937 && !istermoption(p)
8938 && ((pri == 1) == ((p->flags & P_PRI_MKRC) != 0)))
8940 /* skip global option when only doing locals */
8941 if (p->indir == PV_NONE && !(opt_flags & OPT_GLOBAL))
8942 continue;
8944 /* Do not store options like 'bufhidden' and 'syntax' in a vimrc
8945 * file, they are always buffer-specific. */
8946 if ((opt_flags & OPT_GLOBAL) && (p->flags & P_NOGLOB))
8947 continue;
8949 /* Global values are only written when not at the default value. */
8950 varp = get_varp_scope(p, opt_flags);
8951 if ((opt_flags & OPT_GLOBAL) && optval_default(p, varp))
8952 continue;
8954 round = 2;
8955 if (p->indir != PV_NONE)
8957 if (p->var == VAR_WIN)
8959 /* skip window-local option when only doing globals */
8960 if (!(opt_flags & OPT_LOCAL))
8961 continue;
8962 /* When fresh value of window-local option is not at the
8963 * default, need to write it too. */
8964 if (!(opt_flags & OPT_GLOBAL) && !local_only)
8966 varp_fresh = get_varp_scope(p, OPT_GLOBAL);
8967 if (!optval_default(p, varp_fresh))
8969 round = 1;
8970 varp_local = varp;
8971 varp = varp_fresh;
8977 /* Round 1: fresh value for window-local options.
8978 * Round 2: other values */
8979 for ( ; round <= 2; varp = varp_local, ++round)
8981 if (round == 1 || (opt_flags & OPT_GLOBAL))
8982 cmd = "set";
8983 else
8984 cmd = "setlocal";
8986 if (p->flags & P_BOOL)
8988 if (put_setbool(fd, cmd, p->fullname, *(int *)varp) == FAIL)
8989 return FAIL;
8991 else if (p->flags & P_NUM)
8993 if (put_setnum(fd, cmd, p->fullname, (long *)varp) == FAIL)
8994 return FAIL;
8996 else /* P_STRING */
8998 #if defined(FEAT_SYN_HL) || defined(FEAT_AUTOCMD)
8999 int do_endif = FALSE;
9001 /* Don't set 'syntax' and 'filetype' again if the value is
9002 * already right, avoids reloading the syntax file. */
9003 if (
9004 # if defined(FEAT_SYN_HL)
9005 p->indir == PV_SYN
9006 # if defined(FEAT_AUTOCMD)
9008 # endif
9009 # endif
9010 # if defined(FEAT_AUTOCMD)
9011 p->indir == PV_FT
9012 # endif
9015 if (fprintf(fd, "if &%s != '%s'", p->fullname,
9016 *(char_u **)(varp)) < 0
9017 || put_eol(fd) < 0)
9018 return FAIL;
9019 do_endif = TRUE;
9021 #endif
9022 if (put_setstring(fd, cmd, p->fullname, (char_u **)varp,
9023 (p->flags & P_EXPAND) != 0) == FAIL)
9024 return FAIL;
9025 #if defined(FEAT_SYN_HL) || defined(FEAT_AUTOCMD)
9026 if (do_endif)
9028 if (put_line(fd, "endif") == FAIL)
9029 return FAIL;
9031 #endif
9036 return OK;
9039 #if defined(FEAT_FOLDING) || defined(PROTO)
9041 * Generate set commands for the local fold options only. Used when
9042 * 'sessionoptions' or 'viewoptions' contains "folds" but not "options".
9045 makefoldset(fd)
9046 FILE *fd;
9048 if (put_setstring(fd, "setlocal", "fdm", &curwin->w_p_fdm, FALSE) == FAIL
9049 # ifdef FEAT_EVAL
9050 || put_setstring(fd, "setlocal", "fde", &curwin->w_p_fde, FALSE)
9051 == FAIL
9052 # endif
9053 || put_setstring(fd, "setlocal", "fmr", &curwin->w_p_fmr, FALSE)
9054 == FAIL
9055 || put_setstring(fd, "setlocal", "fdi", &curwin->w_p_fdi, FALSE)
9056 == FAIL
9057 || put_setnum(fd, "setlocal", "fdl", &curwin->w_p_fdl) == FAIL
9058 || put_setnum(fd, "setlocal", "fml", &curwin->w_p_fml) == FAIL
9059 || put_setnum(fd, "setlocal", "fdn", &curwin->w_p_fdn) == FAIL
9060 || put_setbool(fd, "setlocal", "fen", curwin->w_p_fen) == FAIL
9062 return FAIL;
9064 return OK;
9066 #endif
9068 static int
9069 put_setstring(fd, cmd, name, valuep, expand)
9070 FILE *fd;
9071 char *cmd;
9072 char *name;
9073 char_u **valuep;
9074 int expand;
9076 char_u *s;
9077 char_u buf[MAXPATHL];
9079 if (fprintf(fd, "%s %s=", cmd, name) < 0)
9080 return FAIL;
9081 if (*valuep != NULL)
9083 /* Output 'pastetoggle' as key names. For other
9084 * options some characters have to be escaped with
9085 * CTRL-V or backslash */
9086 if (valuep == &p_pt)
9088 s = *valuep;
9089 while (*s != NUL)
9090 if (put_escstr(fd, str2special(&s, FALSE), 2) == FAIL)
9091 return FAIL;
9093 else if (expand)
9095 home_replace(NULL, *valuep, buf, MAXPATHL, FALSE);
9096 if (put_escstr(fd, buf, 2) == FAIL)
9097 return FAIL;
9099 else if (put_escstr(fd, *valuep, 2) == FAIL)
9100 return FAIL;
9102 if (put_eol(fd) < 0)
9103 return FAIL;
9104 return OK;
9107 static int
9108 put_setnum(fd, cmd, name, valuep)
9109 FILE *fd;
9110 char *cmd;
9111 char *name;
9112 long *valuep;
9114 long wc;
9116 if (fprintf(fd, "%s %s=", cmd, name) < 0)
9117 return FAIL;
9118 if (wc_use_keyname((char_u *)valuep, &wc))
9120 /* print 'wildchar' and 'wildcharm' as a key name */
9121 if (fputs((char *)get_special_key_name((int)wc, 0), fd) < 0)
9122 return FAIL;
9124 else if (fprintf(fd, "%ld", *valuep) < 0)
9125 return FAIL;
9126 if (put_eol(fd) < 0)
9127 return FAIL;
9128 return OK;
9131 static int
9132 put_setbool(fd, cmd, name, value)
9133 FILE *fd;
9134 char *cmd;
9135 char *name;
9136 int value;
9138 if (value < 0) /* global/local option using global value */
9139 return OK;
9140 if (fprintf(fd, "%s %s%s", cmd, value ? "" : "no", name) < 0
9141 || put_eol(fd) < 0)
9142 return FAIL;
9143 return OK;
9147 * Clear all the terminal options.
9148 * If the option has been allocated, free the memory.
9149 * Terminal options are never hidden or indirect.
9151 void
9152 clear_termoptions()
9155 * Reset a few things before clearing the old options. This may cause
9156 * outputting a few things that the terminal doesn't understand, but the
9157 * screen will be cleared later, so this is OK.
9159 #ifdef FEAT_MOUSE_TTY
9160 mch_setmouse(FALSE); /* switch mouse off */
9161 #endif
9162 #ifdef FEAT_TITLE
9163 mch_restore_title(3); /* restore window titles */
9164 #endif
9165 #if defined(FEAT_XCLIPBOARD) && defined(FEAT_GUI)
9166 /* When starting the GUI close the display opened for the clipboard.
9167 * After restoring the title, because that will need the display. */
9168 if (gui.starting)
9169 clear_xterm_clip();
9170 #endif
9171 #ifdef WIN3264
9173 * Check if this is allowed now.
9175 if (can_end_termcap_mode(FALSE) == TRUE)
9176 #endif
9177 stoptermcap(); /* stop termcap mode */
9179 free_termoptions();
9182 void
9183 free_termoptions()
9185 struct vimoption *p;
9187 for (p = &options[0]; p->fullname != NULL; p++)
9188 if (istermoption(p))
9190 if (p->flags & P_ALLOCED)
9191 free_string_option(*(char_u **)(p->var));
9192 if (p->flags & P_DEF_ALLOCED)
9193 free_string_option(p->def_val[VI_DEFAULT]);
9194 *(char_u **)(p->var) = empty_option;
9195 p->def_val[VI_DEFAULT] = empty_option;
9196 p->flags &= ~(P_ALLOCED|P_DEF_ALLOCED);
9198 clear_termcodes();
9202 * Free the string for one term option, if it was allocated.
9203 * Set the string to empty_option and clear allocated flag.
9204 * "var" points to the option value.
9206 void
9207 free_one_termoption(var)
9208 char_u *var;
9210 struct vimoption *p;
9212 for (p = &options[0]; p->fullname != NULL; p++)
9213 if (p->var == var)
9215 if (p->flags & P_ALLOCED)
9216 free_string_option(*(char_u **)(p->var));
9217 *(char_u **)(p->var) = empty_option;
9218 p->flags &= ~P_ALLOCED;
9219 break;
9224 * Set the terminal option defaults to the current value.
9225 * Used after setting the terminal name.
9227 void
9228 set_term_defaults()
9230 struct vimoption *p;
9232 for (p = &options[0]; p->fullname != NULL; p++)
9234 if (istermoption(p) && p->def_val[VI_DEFAULT] != *(char_u **)(p->var))
9236 if (p->flags & P_DEF_ALLOCED)
9238 free_string_option(p->def_val[VI_DEFAULT]);
9239 p->flags &= ~P_DEF_ALLOCED;
9241 p->def_val[VI_DEFAULT] = *(char_u **)(p->var);
9242 if (p->flags & P_ALLOCED)
9244 p->flags |= P_DEF_ALLOCED;
9245 p->flags &= ~P_ALLOCED; /* don't free the value now */
9252 * return TRUE if 'p' starts with 't_'
9254 static int
9255 istermoption(p)
9256 struct vimoption *p;
9258 return (p->fullname[0] == 't' && p->fullname[1] == '_');
9262 * Compute columns for ruler and shown command. 'sc_col' is also used to
9263 * decide what the maximum length of a message on the status line can be.
9264 * If there is a status line for the last window, 'sc_col' is independent
9265 * of 'ru_col'.
9268 #define COL_RULER 17 /* columns needed by standard ruler */
9270 void
9271 comp_col()
9273 #if defined(FEAT_CMDL_INFO) && defined(FEAT_WINDOWS)
9274 int last_has_status = (p_ls == 2 || (p_ls == 1 && firstwin != lastwin));
9276 sc_col = 0;
9277 ru_col = 0;
9278 if (p_ru)
9280 #ifdef FEAT_STL_OPT
9281 ru_col = (ru_wid ? ru_wid : COL_RULER) + 1;
9282 #else
9283 ru_col = COL_RULER + 1;
9284 #endif
9285 /* no last status line, adjust sc_col */
9286 if (!last_has_status)
9287 sc_col = ru_col;
9289 if (p_sc)
9291 sc_col += SHOWCMD_COLS;
9292 if (!p_ru || last_has_status) /* no need for separating space */
9293 ++sc_col;
9295 sc_col = Columns - sc_col;
9296 ru_col = Columns - ru_col;
9297 if (sc_col <= 0) /* screen too narrow, will become a mess */
9298 sc_col = 1;
9299 if (ru_col <= 0)
9300 ru_col = 1;
9301 #else
9302 sc_col = Columns;
9303 ru_col = Columns;
9304 #endif
9308 * Get pointer to option variable, depending on local or global scope.
9310 static char_u *
9311 get_varp_scope(p, opt_flags)
9312 struct vimoption *p;
9313 int opt_flags;
9315 if ((opt_flags & OPT_GLOBAL) && p->indir != PV_NONE)
9317 if (p->var == VAR_WIN)
9318 return (char_u *)GLOBAL_WO(get_varp(p));
9319 return p->var;
9321 if ((opt_flags & OPT_LOCAL) && ((int)p->indir & PV_BOTH))
9323 switch ((int)p->indir)
9325 #ifdef FEAT_QUICKFIX
9326 case PV_EFM: return (char_u *)&(curbuf->b_p_efm);
9327 case PV_GP: return (char_u *)&(curbuf->b_p_gp);
9328 case PV_MP: return (char_u *)&(curbuf->b_p_mp);
9329 #endif
9330 case PV_EP: return (char_u *)&(curbuf->b_p_ep);
9331 case PV_KP: return (char_u *)&(curbuf->b_p_kp);
9332 case PV_PATH: return (char_u *)&(curbuf->b_p_path);
9333 case PV_AR: return (char_u *)&(curbuf->b_p_ar);
9334 case PV_TAGS: return (char_u *)&(curbuf->b_p_tags);
9335 #ifdef FEAT_FIND_ID
9336 case PV_DEF: return (char_u *)&(curbuf->b_p_def);
9337 case PV_INC: return (char_u *)&(curbuf->b_p_inc);
9338 #endif
9339 #ifdef FEAT_INS_EXPAND
9340 case PV_DICT: return (char_u *)&(curbuf->b_p_dict);
9341 case PV_TSR: return (char_u *)&(curbuf->b_p_tsr);
9342 #endif
9343 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9344 case PV_BEXPR: return (char_u *)&(curbuf->b_p_bexpr);
9345 #endif
9346 #ifdef FEAT_STL_OPT
9347 case PV_STL: return (char_u *)&(curwin->w_p_stl);
9348 #endif
9350 return NULL; /* "cannot happen" */
9352 return get_varp(p);
9356 * Get pointer to option variable.
9358 static char_u *
9359 get_varp(p)
9360 struct vimoption *p;
9362 /* hidden option, always return NULL */
9363 if (p->var == NULL)
9364 return NULL;
9366 switch ((int)p->indir)
9368 case PV_NONE: return p->var;
9370 /* global option with local value: use local value if it's been set */
9371 case PV_EP: return *curbuf->b_p_ep != NUL
9372 ? (char_u *)&curbuf->b_p_ep : p->var;
9373 case PV_KP: return *curbuf->b_p_kp != NUL
9374 ? (char_u *)&curbuf->b_p_kp : p->var;
9375 case PV_PATH: return *curbuf->b_p_path != NUL
9376 ? (char_u *)&(curbuf->b_p_path) : p->var;
9377 case PV_AR: return curbuf->b_p_ar >= 0
9378 ? (char_u *)&(curbuf->b_p_ar) : p->var;
9379 case PV_TAGS: return *curbuf->b_p_tags != NUL
9380 ? (char_u *)&(curbuf->b_p_tags) : p->var;
9381 #ifdef FEAT_FIND_ID
9382 case PV_DEF: return *curbuf->b_p_def != NUL
9383 ? (char_u *)&(curbuf->b_p_def) : p->var;
9384 case PV_INC: return *curbuf->b_p_inc != NUL
9385 ? (char_u *)&(curbuf->b_p_inc) : p->var;
9386 #endif
9387 #ifdef FEAT_INS_EXPAND
9388 case PV_DICT: return *curbuf->b_p_dict != NUL
9389 ? (char_u *)&(curbuf->b_p_dict) : p->var;
9390 case PV_TSR: return *curbuf->b_p_tsr != NUL
9391 ? (char_u *)&(curbuf->b_p_tsr) : p->var;
9392 #endif
9393 #ifdef FEAT_QUICKFIX
9394 case PV_EFM: return *curbuf->b_p_efm != NUL
9395 ? (char_u *)&(curbuf->b_p_efm) : p->var;
9396 case PV_GP: return *curbuf->b_p_gp != NUL
9397 ? (char_u *)&(curbuf->b_p_gp) : p->var;
9398 case PV_MP: return *curbuf->b_p_mp != NUL
9399 ? (char_u *)&(curbuf->b_p_mp) : p->var;
9400 #endif
9401 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9402 case PV_BEXPR: return *curbuf->b_p_bexpr != NUL
9403 ? (char_u *)&(curbuf->b_p_bexpr) : p->var;
9404 #endif
9405 #ifdef FEAT_STL_OPT
9406 case PV_STL: return *curwin->w_p_stl != NUL
9407 ? (char_u *)&(curwin->w_p_stl) : p->var;
9408 #endif
9410 #ifdef FEAT_ARABIC
9411 case PV_ARAB: return (char_u *)&(curwin->w_p_arab);
9412 #endif
9413 case PV_LIST: return (char_u *)&(curwin->w_p_list);
9414 #ifdef FEAT_SPELL
9415 case PV_SPELL: return (char_u *)&(curwin->w_p_spell);
9416 #endif
9417 #ifdef FEAT_SYN_HL
9418 case PV_CUC: return (char_u *)&(curwin->w_p_cuc);
9419 case PV_CUL: return (char_u *)&(curwin->w_p_cul);
9420 #endif
9421 #ifdef FEAT_DIFF
9422 case PV_DIFF: return (char_u *)&(curwin->w_p_diff);
9423 #endif
9424 #ifdef FEAT_FOLDING
9425 case PV_FDC: return (char_u *)&(curwin->w_p_fdc);
9426 case PV_FEN: return (char_u *)&(curwin->w_p_fen);
9427 case PV_FDI: return (char_u *)&(curwin->w_p_fdi);
9428 case PV_FDL: return (char_u *)&(curwin->w_p_fdl);
9429 case PV_FDM: return (char_u *)&(curwin->w_p_fdm);
9430 case PV_FML: return (char_u *)&(curwin->w_p_fml);
9431 case PV_FDN: return (char_u *)&(curwin->w_p_fdn);
9432 # ifdef FEAT_EVAL
9433 case PV_FDE: return (char_u *)&(curwin->w_p_fde);
9434 case PV_FDT: return (char_u *)&(curwin->w_p_fdt);
9435 # endif
9436 case PV_FMR: return (char_u *)&(curwin->w_p_fmr);
9437 #endif
9438 case PV_NU: return (char_u *)&(curwin->w_p_nu);
9439 case PV_RNU: return (char_u *)&(curwin->w_p_rnu);
9440 #ifdef FEAT_LINEBREAK
9441 case PV_NUW: return (char_u *)&(curwin->w_p_nuw);
9442 #endif
9443 #ifdef FEAT_WINDOWS
9444 case PV_WFH: return (char_u *)&(curwin->w_p_wfh);
9445 #endif
9446 #ifdef FEAT_VERTSPLIT
9447 case PV_WFW: return (char_u *)&(curwin->w_p_wfw);
9448 #endif
9449 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
9450 case PV_PVW: return (char_u *)&(curwin->w_p_pvw);
9451 #endif
9452 #ifdef FEAT_RIGHTLEFT
9453 case PV_RL: return (char_u *)&(curwin->w_p_rl);
9454 case PV_RLC: return (char_u *)&(curwin->w_p_rlc);
9455 #endif
9456 case PV_SCROLL: return (char_u *)&(curwin->w_p_scr);
9457 case PV_WRAP: return (char_u *)&(curwin->w_p_wrap);
9458 #ifdef FEAT_LINEBREAK
9459 case PV_LBR: return (char_u *)&(curwin->w_p_lbr);
9460 case PV_BRI: return (char_u *)&(curwin->w_p_bri);
9461 case PV_BRIMIN: return (char_u *)&(curwin->w_p_brimin);
9462 case PV_BRISHIFT: return (char_u *)&(curwin->w_p_brishift);
9463 #endif
9464 #ifdef FEAT_SCROLLBIND
9465 case PV_SCBIND: return (char_u *)&(curwin->w_p_scb);
9466 #endif
9468 case PV_AI: return (char_u *)&(curbuf->b_p_ai);
9469 case PV_BIN: return (char_u *)&(curbuf->b_p_bin);
9470 #ifdef FEAT_MBYTE
9471 case PV_BOMB: return (char_u *)&(curbuf->b_p_bomb);
9472 #endif
9473 #if defined(FEAT_QUICKFIX)
9474 case PV_BH: return (char_u *)&(curbuf->b_p_bh);
9475 case PV_BT: return (char_u *)&(curbuf->b_p_bt);
9476 #endif
9477 case PV_BL: return (char_u *)&(curbuf->b_p_bl);
9478 case PV_CI: return (char_u *)&(curbuf->b_p_ci);
9479 #ifdef FEAT_CINDENT
9480 case PV_CIN: return (char_u *)&(curbuf->b_p_cin);
9481 case PV_CINK: return (char_u *)&(curbuf->b_p_cink);
9482 case PV_CINO: return (char_u *)&(curbuf->b_p_cino);
9483 #endif
9484 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
9485 case PV_CINW: return (char_u *)&(curbuf->b_p_cinw);
9486 #endif
9487 #ifdef FEAT_COMMENTS
9488 case PV_COM: return (char_u *)&(curbuf->b_p_com);
9489 #endif
9490 #ifdef FEAT_FOLDING
9491 case PV_CMS: return (char_u *)&(curbuf->b_p_cms);
9492 #endif
9493 #ifdef FEAT_INS_EXPAND
9494 case PV_CPT: return (char_u *)&(curbuf->b_p_cpt);
9495 #endif
9496 #ifdef FEAT_COMPL_FUNC
9497 case PV_CFU: return (char_u *)&(curbuf->b_p_cfu);
9498 case PV_OFU: return (char_u *)&(curbuf->b_p_ofu);
9499 case PV_TFU: return (char_u *)&(curbuf->b_p_tfu);
9500 #endif
9501 case PV_EOL: return (char_u *)&(curbuf->b_p_eol);
9502 case PV_ET: return (char_u *)&(curbuf->b_p_et);
9503 #ifdef FEAT_MBYTE
9504 case PV_FENC: return (char_u *)&(curbuf->b_p_fenc);
9505 #endif
9506 case PV_FF: return (char_u *)&(curbuf->b_p_ff);
9507 #ifdef FEAT_AUTOCMD
9508 case PV_FT: return (char_u *)&(curbuf->b_p_ft);
9509 #endif
9510 case PV_FO: return (char_u *)&(curbuf->b_p_fo);
9511 case PV_FLP: return (char_u *)&(curbuf->b_p_flp);
9512 case PV_IMI: return (char_u *)&(curbuf->b_p_iminsert);
9513 case PV_IMS: return (char_u *)&(curbuf->b_p_imsearch);
9514 case PV_INF: return (char_u *)&(curbuf->b_p_inf);
9515 case PV_ISK: return (char_u *)&(curbuf->b_p_isk);
9516 #ifdef FEAT_FIND_ID
9517 # ifdef FEAT_EVAL
9518 case PV_INEX: return (char_u *)&(curbuf->b_p_inex);
9519 # endif
9520 #endif
9521 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
9522 case PV_INDE: return (char_u *)&(curbuf->b_p_inde);
9523 case PV_INDK: return (char_u *)&(curbuf->b_p_indk);
9524 #endif
9525 #ifdef FEAT_EVAL
9526 case PV_FEX: return (char_u *)&(curbuf->b_p_fex);
9527 #endif
9528 #ifdef FEAT_CRYPT
9529 case PV_KEY: return (char_u *)&(curbuf->b_p_key);
9530 #endif
9531 #ifdef FEAT_LISP
9532 case PV_LISP: return (char_u *)&(curbuf->b_p_lisp);
9533 #endif
9534 case PV_ML: return (char_u *)&(curbuf->b_p_ml);
9535 case PV_MPS: return (char_u *)&(curbuf->b_p_mps);
9536 case PV_MA: return (char_u *)&(curbuf->b_p_ma);
9537 case PV_MOD: return (char_u *)&(curbuf->b_changed);
9538 case PV_NF: return (char_u *)&(curbuf->b_p_nf);
9539 #ifdef FEAT_OSFILETYPE
9540 case PV_OFT: return (char_u *)&(curbuf->b_p_oft);
9541 #endif
9542 case PV_PI: return (char_u *)&(curbuf->b_p_pi);
9543 #ifdef FEAT_TEXTOBJ
9544 case PV_QE: return (char_u *)&(curbuf->b_p_qe);
9545 #endif
9546 case PV_RO: return (char_u *)&(curbuf->b_p_ro);
9547 #ifdef FEAT_SMARTINDENT
9548 case PV_SI: return (char_u *)&(curbuf->b_p_si);
9549 #endif
9550 #ifndef SHORT_FNAME
9551 case PV_SN: return (char_u *)&(curbuf->b_p_sn);
9552 #endif
9553 case PV_STS: return (char_u *)&(curbuf->b_p_sts);
9554 #ifdef FEAT_SEARCHPATH
9555 case PV_SUA: return (char_u *)&(curbuf->b_p_sua);
9556 #endif
9557 case PV_SWF: return (char_u *)&(curbuf->b_p_swf);
9558 #ifdef FEAT_SYN_HL
9559 case PV_SMC: return (char_u *)&(curbuf->b_p_smc);
9560 case PV_SYN: return (char_u *)&(curbuf->b_p_syn);
9561 #endif
9562 #ifdef FEAT_SPELL
9563 case PV_SPC: return (char_u *)&(curbuf->b_p_spc);
9564 case PV_SPF: return (char_u *)&(curbuf->b_p_spf);
9565 case PV_SPL: return (char_u *)&(curbuf->b_p_spl);
9566 #endif
9567 case PV_SW: return (char_u *)&(curbuf->b_p_sw);
9568 case PV_TS: return (char_u *)&(curbuf->b_p_ts);
9569 case PV_TW: return (char_u *)&(curbuf->b_p_tw);
9570 case PV_TX: return (char_u *)&(curbuf->b_p_tx);
9571 #ifdef FEAT_PERSISTENT_UNDO
9572 case PV_UDF: return (char_u *)&(curbuf->b_p_udf);
9573 #endif
9574 case PV_WM: return (char_u *)&(curbuf->b_p_wm);
9575 #ifdef FEAT_KEYMAP
9576 case PV_KMAP: return (char_u *)&(curbuf->b_p_keymap);
9577 #endif
9578 #ifdef FEAT_VARTABS
9579 case PV_VSTS: return (char_u *)&(curbuf->b_p_vsts);
9580 case PV_VTS: return (char_u *)&(curbuf->b_p_vts);
9581 #endif
9582 default: EMSG(_("E356: get_varp ERROR"));
9584 /* always return a valid pointer to avoid a crash! */
9585 return (char_u *)&(curbuf->b_p_wm);
9589 * Get the value of 'equalprg', either the buffer-local one or the global one.
9591 char_u *
9592 get_equalprg()
9594 if (*curbuf->b_p_ep == NUL)
9595 return p_ep;
9596 return curbuf->b_p_ep;
9599 #if defined(FEAT_WINDOWS) || defined(PROTO)
9601 * Copy options from one window to another.
9602 * Used when splitting a window.
9604 void
9605 win_copy_options(wp_from, wp_to)
9606 win_T *wp_from;
9607 win_T *wp_to;
9609 copy_winopt(&wp_from->w_onebuf_opt, &wp_to->w_onebuf_opt);
9610 copy_winopt(&wp_from->w_allbuf_opt, &wp_to->w_allbuf_opt);
9611 # ifdef FEAT_RIGHTLEFT
9612 # ifdef FEAT_FKMAP
9613 /* Is this right? */
9614 wp_to->w_farsi = wp_from->w_farsi;
9615 # endif
9616 # endif
9618 #endif
9621 * Copy the options from one winopt_T to another.
9622 * Doesn't free the old option values in "to", use clear_winopt() for that.
9623 * The 'scroll' option is not copied, because it depends on the window height.
9624 * The 'previewwindow' option is reset, there can be only one preview window.
9626 void
9627 copy_winopt(from, to)
9628 winopt_T *from;
9629 winopt_T *to;
9631 #ifdef FEAT_ARABIC
9632 to->wo_arab = from->wo_arab;
9633 #endif
9634 to->wo_list = from->wo_list;
9635 to->wo_nu = from->wo_nu;
9636 to->wo_rnu = from->wo_rnu;
9637 #ifdef FEAT_LINEBREAK
9638 to->wo_nuw = from->wo_nuw;
9639 #endif
9640 #ifdef FEAT_RIGHTLEFT
9641 to->wo_rl = from->wo_rl;
9642 to->wo_rlc = vim_strsave(from->wo_rlc);
9643 #endif
9644 #ifdef FEAT_STL_OPT
9645 to->wo_stl = vim_strsave(from->wo_stl);
9646 #endif
9647 to->wo_wrap = from->wo_wrap;
9648 #ifdef FEAT_LINEBREAK
9649 to->wo_lbr = from->wo_lbr;
9650 to->wo_bri = from->wo_bri;
9651 to->wo_brimin = from->wo_brimin;
9652 #endif
9653 #ifdef FEAT_SCROLLBIND
9654 to->wo_scb = from->wo_scb;
9655 #endif
9656 #ifdef FEAT_SPELL
9657 to->wo_spell = from->wo_spell;
9658 #endif
9659 #ifdef FEAT_SYN_HL
9660 to->wo_cuc = from->wo_cuc;
9661 to->wo_cul = from->wo_cul;
9662 #endif
9663 #ifdef FEAT_DIFF
9664 to->wo_diff = from->wo_diff;
9665 #endif
9666 #ifdef FEAT_FOLDING
9667 to->wo_fdc = from->wo_fdc;
9668 to->wo_fen = from->wo_fen;
9669 to->wo_fdi = vim_strsave(from->wo_fdi);
9670 to->wo_fml = from->wo_fml;
9671 to->wo_fdl = from->wo_fdl;
9672 to->wo_fdm = vim_strsave(from->wo_fdm);
9673 to->wo_fdn = from->wo_fdn;
9674 # ifdef FEAT_EVAL
9675 to->wo_fde = vim_strsave(from->wo_fde);
9676 to->wo_fdt = vim_strsave(from->wo_fdt);
9677 # endif
9678 to->wo_fmr = vim_strsave(from->wo_fmr);
9679 #endif
9680 check_winopt(to); /* don't want NULL pointers */
9684 * Check string options in a window for a NULL value.
9686 void
9687 check_win_options(win)
9688 win_T *win;
9690 check_winopt(&win->w_onebuf_opt);
9691 check_winopt(&win->w_allbuf_opt);
9695 * Check for NULL pointers in a winopt_T and replace them with empty_option.
9697 void
9698 check_winopt(wop)
9699 winopt_T *wop UNUSED;
9701 #ifdef FEAT_FOLDING
9702 check_string_option(&wop->wo_fdi);
9703 check_string_option(&wop->wo_fdm);
9704 # ifdef FEAT_EVAL
9705 check_string_option(&wop->wo_fde);
9706 check_string_option(&wop->wo_fdt);
9707 # endif
9708 check_string_option(&wop->wo_fmr);
9709 #endif
9710 #ifdef FEAT_RIGHTLEFT
9711 check_string_option(&wop->wo_rlc);
9712 #endif
9713 #ifdef FEAT_STL_OPT
9714 check_string_option(&wop->wo_stl);
9715 #endif
9719 * Free the allocated memory inside a winopt_T.
9721 void
9722 clear_winopt(wop)
9723 winopt_T *wop UNUSED;
9725 #ifdef FEAT_FOLDING
9726 clear_string_option(&wop->wo_fdi);
9727 clear_string_option(&wop->wo_fdm);
9728 # ifdef FEAT_EVAL
9729 clear_string_option(&wop->wo_fde);
9730 clear_string_option(&wop->wo_fdt);
9731 # endif
9732 clear_string_option(&wop->wo_fmr);
9733 #endif
9734 #ifdef FEAT_RIGHTLEFT
9735 clear_string_option(&wop->wo_rlc);
9736 #endif
9737 #ifdef FEAT_STL_OPT
9738 clear_string_option(&wop->wo_stl);
9739 #endif
9743 * Copy global option values to local options for one buffer.
9744 * Used when creating a new buffer and sometimes when entering a buffer.
9745 * flags:
9746 * BCO_ENTER We will enter the buf buffer.
9747 * BCO_ALWAYS Always copy the options, but only set b_p_initialized when
9748 * appropriate.
9749 * BCO_NOHELP Don't copy the values to a help buffer.
9751 void
9752 buf_copy_options(buf, flags)
9753 buf_T *buf;
9754 int flags;
9756 int should_copy = TRUE;
9757 char_u *save_p_isk = NULL; /* init for GCC */
9758 int dont_do_help;
9759 int did_isk = FALSE;
9762 * Don't do anything of the buffer is invalid.
9764 if (buf == NULL || !buf_valid(buf))
9765 return;
9768 * Skip this when the option defaults have not been set yet. Happens when
9769 * main() allocates the first buffer.
9771 if (p_cpo != NULL)
9774 * Always copy when entering and 'cpo' contains 'S'.
9775 * Don't copy when already initialized.
9776 * Don't copy when 'cpo' contains 's' and not entering.
9777 * 'S' BCO_ENTER initialized 's' should_copy
9778 * yes yes X X TRUE
9779 * yes no yes X FALSE
9780 * no X yes X FALSE
9781 * X no no yes FALSE
9782 * X no no no TRUE
9783 * no yes no X TRUE
9785 if ((vim_strchr(p_cpo, CPO_BUFOPTGLOB) == NULL || !(flags & BCO_ENTER))
9786 && (buf->b_p_initialized
9787 || (!(flags & BCO_ENTER)
9788 && vim_strchr(p_cpo, CPO_BUFOPT) != NULL)))
9789 should_copy = FALSE;
9791 if (should_copy || (flags & BCO_ALWAYS))
9793 /* Don't copy the options specific to a help buffer when
9794 * BCO_NOHELP is given or the options were initialized already
9795 * (jumping back to a help file with CTRL-T or CTRL-O) */
9796 dont_do_help = ((flags & BCO_NOHELP) && buf->b_help)
9797 || buf->b_p_initialized;
9798 if (dont_do_help) /* don't free b_p_isk */
9800 save_p_isk = buf->b_p_isk;
9801 buf->b_p_isk = NULL;
9804 * Always free the allocated strings.
9805 * If not already initialized, set 'readonly' and copy 'fileformat'.
9807 if (!buf->b_p_initialized)
9809 free_buf_options(buf, TRUE);
9810 buf->b_p_ro = FALSE; /* don't copy readonly */
9811 buf->b_p_tx = p_tx;
9812 #ifdef FEAT_MBYTE
9813 buf->b_p_fenc = vim_strsave(p_fenc);
9814 #endif
9815 buf->b_p_ff = vim_strsave(p_ff);
9816 #if defined(FEAT_QUICKFIX)
9817 buf->b_p_bh = empty_option;
9818 buf->b_p_bt = empty_option;
9819 #endif
9821 else
9822 free_buf_options(buf, FALSE);
9824 buf->b_p_ai = p_ai;
9825 buf->b_p_ai_nopaste = p_ai_nopaste;
9826 buf->b_p_sw = p_sw;
9827 buf->b_p_tw = p_tw;
9828 buf->b_p_tw_nopaste = p_tw_nopaste;
9829 buf->b_p_tw_nobin = p_tw_nobin;
9830 buf->b_p_wm = p_wm;
9831 buf->b_p_wm_nopaste = p_wm_nopaste;
9832 buf->b_p_wm_nobin = p_wm_nobin;
9833 buf->b_p_bin = p_bin;
9834 #ifdef FEAT_MBYTE
9835 buf->b_p_bomb = p_bomb;
9836 #endif
9837 buf->b_p_et = p_et;
9838 buf->b_p_et_nobin = p_et_nobin;
9839 buf->b_p_ml = p_ml;
9840 buf->b_p_ml_nobin = p_ml_nobin;
9841 buf->b_p_inf = p_inf;
9842 buf->b_p_swf = p_swf;
9843 #ifdef FEAT_INS_EXPAND
9844 buf->b_p_cpt = vim_strsave(p_cpt);
9845 #endif
9846 #ifdef FEAT_COMPL_FUNC
9847 buf->b_p_cfu = vim_strsave(p_cfu);
9848 buf->b_p_ofu = vim_strsave(p_ofu);
9849 buf->b_p_tfu = vim_strsave(p_tfu);
9850 #endif
9851 buf->b_p_sts = p_sts;
9852 buf->b_p_sts_nopaste = p_sts_nopaste;
9853 #ifdef FEAT_VARTABS
9854 buf->b_p_vsts = vim_strsave(p_vsts);
9855 if (p_vsts && p_vsts != empty_option)
9856 tabstop_set(p_vsts, &buf->b_p_vsts_ary);
9857 else
9858 buf->b_p_vsts_ary = 0;
9859 buf->b_p_vsts_nopaste = p_vsts_nopaste
9860 ? vim_strsave(p_vsts_nopaste) : NULL;
9861 #endif
9862 #ifndef SHORT_FNAME
9863 buf->b_p_sn = p_sn;
9864 #endif
9865 #ifdef FEAT_COMMENTS
9866 buf->b_p_com = vim_strsave(p_com);
9867 #endif
9868 #ifdef FEAT_FOLDING
9869 buf->b_p_cms = vim_strsave(p_cms);
9870 #endif
9871 buf->b_p_fo = vim_strsave(p_fo);
9872 buf->b_p_flp = vim_strsave(p_flp);
9873 buf->b_p_nf = vim_strsave(p_nf);
9874 buf->b_p_mps = vim_strsave(p_mps);
9875 #ifdef FEAT_SMARTINDENT
9876 buf->b_p_si = p_si;
9877 #endif
9878 buf->b_p_ci = p_ci;
9879 #ifdef FEAT_CINDENT
9880 buf->b_p_cin = p_cin;
9881 buf->b_p_cink = vim_strsave(p_cink);
9882 buf->b_p_cino = vim_strsave(p_cino);
9883 #endif
9884 #ifdef FEAT_AUTOCMD
9885 /* Don't copy 'filetype', it must be detected */
9886 buf->b_p_ft = empty_option;
9887 #endif
9888 #ifdef FEAT_OSFILETYPE
9889 buf->b_p_oft = vim_strsave(p_oft);
9890 #endif
9891 buf->b_p_pi = p_pi;
9892 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
9893 buf->b_p_cinw = vim_strsave(p_cinw);
9894 #endif
9895 #ifdef FEAT_LISP
9896 buf->b_p_lisp = p_lisp;
9897 #endif
9898 #ifdef FEAT_SYN_HL
9899 /* Don't copy 'syntax', it must be set */
9900 buf->b_p_syn = empty_option;
9901 buf->b_p_smc = p_smc;
9902 #endif
9903 #ifdef FEAT_SPELL
9904 buf->b_p_spc = vim_strsave(p_spc);
9905 (void)compile_cap_prog(buf);
9906 buf->b_p_spf = vim_strsave(p_spf);
9907 buf->b_p_spl = vim_strsave(p_spl);
9908 #endif
9909 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
9910 buf->b_p_inde = vim_strsave(p_inde);
9911 buf->b_p_indk = vim_strsave(p_indk);
9912 #endif
9913 #if defined(FEAT_EVAL)
9914 buf->b_p_fex = vim_strsave(p_fex);
9915 #endif
9916 #ifdef FEAT_CRYPT
9917 buf->b_p_key = vim_strsave(p_key);
9918 #endif
9919 #ifdef FEAT_SEARCHPATH
9920 buf->b_p_sua = vim_strsave(p_sua);
9921 #endif
9922 #ifdef FEAT_KEYMAP
9923 buf->b_p_keymap = vim_strsave(p_keymap);
9924 buf->b_kmap_state |= KEYMAP_INIT;
9925 #endif
9926 /* This isn't really an option, but copying the langmap and IME
9927 * state from the current buffer is better than resetting it. */
9928 buf->b_p_iminsert = p_iminsert;
9929 buf->b_p_imsearch = p_imsearch;
9931 /* options that are normally global but also have a local value
9932 * are not copied, start using the global value */
9933 buf->b_p_ar = -1;
9934 #ifdef FEAT_QUICKFIX
9935 buf->b_p_gp = empty_option;
9936 buf->b_p_mp = empty_option;
9937 buf->b_p_efm = empty_option;
9938 #endif
9939 buf->b_p_ep = empty_option;
9940 buf->b_p_kp = empty_option;
9941 buf->b_p_path = empty_option;
9942 buf->b_p_tags = empty_option;
9943 #ifdef FEAT_FIND_ID
9944 buf->b_p_def = empty_option;
9945 buf->b_p_inc = empty_option;
9946 # ifdef FEAT_EVAL
9947 buf->b_p_inex = vim_strsave(p_inex);
9948 # endif
9949 #endif
9950 #ifdef FEAT_INS_EXPAND
9951 buf->b_p_dict = empty_option;
9952 buf->b_p_tsr = empty_option;
9953 #endif
9954 #ifdef FEAT_TEXTOBJ
9955 buf->b_p_qe = vim_strsave(p_qe);
9956 #endif
9957 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9958 buf->b_p_bexpr = empty_option;
9959 #endif
9960 #ifdef FEAT_PERSISTENT_UNDO
9961 buf->b_p_udf = p_udf;
9962 #endif
9965 * Don't copy the options set by ex_help(), use the saved values,
9966 * when going from a help buffer to a non-help buffer.
9967 * Don't touch these at all when BCO_NOHELP is used and going from
9968 * or to a help buffer.
9970 if (dont_do_help)
9972 buf->b_p_isk = save_p_isk;
9973 #ifdef FEAT_VARTABS
9974 if (p_vts && p_vts != empty_option && !buf->b_p_vts_ary)
9975 tabstop_set(p_vts, &buf->b_p_vts_ary);
9976 else
9977 buf->b_p_vts_ary = 0;
9978 #endif
9980 else
9982 buf->b_p_isk = vim_strsave(p_isk);
9983 did_isk = TRUE;
9984 buf->b_p_ts = p_ts;
9985 #ifdef FEAT_VARTABS
9986 buf->b_p_vts = vim_strsave(p_vts);
9987 if (p_vts && p_vts != empty_option && !buf->b_p_vts_ary)
9988 tabstop_set(p_vts, &buf->b_p_vts_ary);
9989 else
9990 buf->b_p_vts_ary = 0;
9991 #endif
9992 buf->b_help = FALSE;
9993 #ifdef FEAT_QUICKFIX
9994 if (buf->b_p_bt[0] == 'h')
9995 clear_string_option(&buf->b_p_bt);
9996 #endif
9997 buf->b_p_ma = p_ma;
10002 * When the options should be copied (ignoring BCO_ALWAYS), set the
10003 * flag that indicates that the options have been initialized.
10005 if (should_copy)
10006 buf->b_p_initialized = TRUE;
10009 check_buf_options(buf); /* make sure we don't have NULLs */
10010 if (did_isk)
10011 (void)buf_init_chartab(buf, FALSE);
10015 * Reset the 'modifiable' option and its default value.
10017 void
10018 reset_modifiable()
10020 int opt_idx;
10022 curbuf->b_p_ma = FALSE;
10023 p_ma = FALSE;
10024 opt_idx = findoption((char_u *)"ma");
10025 if (opt_idx >= 0)
10026 options[opt_idx].def_val[VI_DEFAULT] = FALSE;
10030 * Set the global value for 'iminsert' to the local value.
10032 void
10033 set_iminsert_global()
10035 p_iminsert = curbuf->b_p_iminsert;
10039 * Set the global value for 'imsearch' to the local value.
10041 void
10042 set_imsearch_global()
10044 p_imsearch = curbuf->b_p_imsearch;
10047 #if defined(FEAT_CMDL_COMPL) || defined(PROTO)
10048 static int expand_option_idx = -1;
10049 static char_u expand_option_name[5] = {'t', '_', NUL, NUL, NUL};
10050 static int expand_option_flags = 0;
10052 void
10053 set_context_in_set_cmd(xp, arg, opt_flags)
10054 expand_T *xp;
10055 char_u *arg;
10056 int opt_flags; /* OPT_GLOBAL and/or OPT_LOCAL */
10058 int nextchar;
10059 long_u flags = 0; /* init for GCC */
10060 int opt_idx = 0; /* init for GCC */
10061 char_u *p;
10062 char_u *s;
10063 int is_term_option = FALSE;
10064 int key;
10066 expand_option_flags = opt_flags;
10068 xp->xp_context = EXPAND_SETTINGS;
10069 if (*arg == NUL)
10071 xp->xp_pattern = arg;
10072 return;
10074 p = arg + STRLEN(arg) - 1;
10075 if (*p == ' ' && *(p - 1) != '\\')
10077 xp->xp_pattern = p + 1;
10078 return;
10080 while (p > arg)
10082 s = p;
10083 /* count number of backslashes before ' ' or ',' */
10084 if (*p == ' ' || *p == ',')
10086 while (s > arg && *(s - 1) == '\\')
10087 --s;
10089 /* break at a space with an even number of backslashes */
10090 if (*p == ' ' && ((p - s) & 1) == 0)
10092 ++p;
10093 break;
10095 --p;
10097 if (STRNCMP(p, "no", 2) == 0 && STRNCMP(p, "novice", 6) != 0)
10099 xp->xp_context = EXPAND_BOOL_SETTINGS;
10100 p += 2;
10102 if (STRNCMP(p, "inv", 3) == 0)
10104 xp->xp_context = EXPAND_BOOL_SETTINGS;
10105 p += 3;
10107 xp->xp_pattern = arg = p;
10108 if (*arg == '<')
10110 while (*p != '>')
10111 if (*p++ == NUL) /* expand terminal option name */
10112 return;
10113 key = get_special_key_code(arg + 1);
10114 if (key == 0) /* unknown name */
10116 xp->xp_context = EXPAND_NOTHING;
10117 return;
10119 nextchar = *++p;
10120 is_term_option = TRUE;
10121 expand_option_name[2] = KEY2TERMCAP0(key);
10122 expand_option_name[3] = KEY2TERMCAP1(key);
10124 else
10126 if (p[0] == 't' && p[1] == '_')
10128 p += 2;
10129 if (*p != NUL)
10130 ++p;
10131 if (*p == NUL)
10132 return; /* expand option name */
10133 nextchar = *++p;
10134 is_term_option = TRUE;
10135 expand_option_name[2] = p[-2];
10136 expand_option_name[3] = p[-1];
10138 else
10140 /* Allow * wildcard */
10141 while (ASCII_ISALNUM(*p) || *p == '_' || *p == '*')
10142 p++;
10143 if (*p == NUL)
10144 return;
10145 nextchar = *p;
10146 *p = NUL;
10147 opt_idx = findoption(arg);
10148 *p = nextchar;
10149 if (opt_idx == -1 || options[opt_idx].var == NULL)
10151 xp->xp_context = EXPAND_NOTHING;
10152 return;
10154 flags = options[opt_idx].flags;
10155 if (flags & P_BOOL)
10157 xp->xp_context = EXPAND_NOTHING;
10158 return;
10162 /* handle "-=" and "+=" */
10163 if ((nextchar == '-' || nextchar == '+' || nextchar == '^') && p[1] == '=')
10165 ++p;
10166 nextchar = '=';
10168 if ((nextchar != '=' && nextchar != ':')
10169 || xp->xp_context == EXPAND_BOOL_SETTINGS)
10171 xp->xp_context = EXPAND_UNSUCCESSFUL;
10172 return;
10174 if (xp->xp_context != EXPAND_BOOL_SETTINGS && p[1] == NUL)
10176 xp->xp_context = EXPAND_OLD_SETTING;
10177 if (is_term_option)
10178 expand_option_idx = -1;
10179 else
10180 expand_option_idx = opt_idx;
10181 xp->xp_pattern = p + 1;
10182 return;
10184 xp->xp_context = EXPAND_NOTHING;
10185 if (is_term_option || (flags & P_NUM))
10186 return;
10188 xp->xp_pattern = p + 1;
10190 if (flags & P_EXPAND)
10192 p = options[opt_idx].var;
10193 if (p == (char_u *)&p_bdir
10194 || p == (char_u *)&p_dir
10195 || p == (char_u *)&p_path
10196 || p == (char_u *)&p_rtp
10197 #ifdef FEAT_SEARCHPATH
10198 || p == (char_u *)&p_cdpath
10199 #endif
10200 #ifdef FEAT_SESSION
10201 || p == (char_u *)&p_vdir
10202 #endif
10205 xp->xp_context = EXPAND_DIRECTORIES;
10206 if (p == (char_u *)&p_path
10207 #ifdef FEAT_SEARCHPATH
10208 || p == (char_u *)&p_cdpath
10209 #endif
10211 xp->xp_backslash = XP_BS_THREE;
10212 else
10213 xp->xp_backslash = XP_BS_ONE;
10215 else
10217 xp->xp_context = EXPAND_FILES;
10218 /* for 'tags' need three backslashes for a space */
10219 if (p == (char_u *)&p_tags)
10220 xp->xp_backslash = XP_BS_THREE;
10221 else
10222 xp->xp_backslash = XP_BS_ONE;
10226 /* For an option that is a list of file names, find the start of the
10227 * last file name. */
10228 for (p = arg + STRLEN(arg) - 1; p > xp->xp_pattern; --p)
10230 /* count number of backslashes before ' ' or ',' */
10231 if (*p == ' ' || *p == ',')
10233 s = p;
10234 while (s > xp->xp_pattern && *(s - 1) == '\\')
10235 --s;
10236 if ((*p == ' ' && (xp->xp_backslash == XP_BS_THREE && (p - s) < 3))
10237 || (*p == ',' && (flags & P_COMMA) && ((p - s) & 1) == 0))
10239 xp->xp_pattern = p + 1;
10240 break;
10244 #ifdef FEAT_SPELL
10245 /* for 'spellsuggest' start at "file:" */
10246 if (options[opt_idx].var == (char_u *)&p_sps
10247 && STRNCMP(p, "file:", 5) == 0)
10249 xp->xp_pattern = p + 5;
10250 break;
10252 #endif
10255 return;
10259 ExpandSettings(xp, regmatch, num_file, file)
10260 expand_T *xp;
10261 regmatch_T *regmatch;
10262 int *num_file;
10263 char_u ***file;
10265 int num_normal = 0; /* Nr of matching non-term-code settings */
10266 int num_term = 0; /* Nr of matching terminal code settings */
10267 int opt_idx;
10268 int match;
10269 int count = 0;
10270 char_u *str;
10271 int loop;
10272 int is_term_opt;
10273 char_u name_buf[MAX_KEY_NAME_LEN];
10274 static char *(names[]) = {"all", "termcap"};
10275 int ic = regmatch->rm_ic; /* remember the ignore-case flag */
10277 /* do this loop twice:
10278 * loop == 0: count the number of matching options
10279 * loop == 1: copy the matching options into allocated memory
10281 for (loop = 0; loop <= 1; ++loop)
10283 regmatch->rm_ic = ic;
10284 if (xp->xp_context != EXPAND_BOOL_SETTINGS)
10286 for (match = 0; match < (int)(sizeof(names) / sizeof(char *));
10287 ++match)
10288 if (vim_regexec(regmatch, (char_u *)names[match], (colnr_T)0))
10290 if (loop == 0)
10291 num_normal++;
10292 else
10293 (*file)[count++] = vim_strsave((char_u *)names[match]);
10296 for (opt_idx = 0; (str = (char_u *)options[opt_idx].fullname) != NULL;
10297 opt_idx++)
10299 if (options[opt_idx].var == NULL)
10300 continue;
10301 if (xp->xp_context == EXPAND_BOOL_SETTINGS
10302 && !(options[opt_idx].flags & P_BOOL))
10303 continue;
10304 is_term_opt = istermoption(&options[opt_idx]);
10305 if (is_term_opt && num_normal > 0)
10306 continue;
10307 match = FALSE;
10308 if (vim_regexec(regmatch, str, (colnr_T)0)
10309 || (options[opt_idx].shortname != NULL
10310 && vim_regexec(regmatch,
10311 (char_u *)options[opt_idx].shortname, (colnr_T)0)))
10312 match = TRUE;
10313 else if (is_term_opt)
10315 name_buf[0] = '<';
10316 name_buf[1] = 't';
10317 name_buf[2] = '_';
10318 name_buf[3] = str[2];
10319 name_buf[4] = str[3];
10320 name_buf[5] = '>';
10321 name_buf[6] = NUL;
10322 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10324 match = TRUE;
10325 str = name_buf;
10328 if (match)
10330 if (loop == 0)
10332 if (is_term_opt)
10333 num_term++;
10334 else
10335 num_normal++;
10337 else
10338 (*file)[count++] = vim_strsave(str);
10342 * Check terminal key codes, these are not in the option table
10344 if (xp->xp_context != EXPAND_BOOL_SETTINGS && num_normal == 0)
10346 for (opt_idx = 0; (str = get_termcode(opt_idx)) != NULL; opt_idx++)
10348 if (!isprint(str[0]) || !isprint(str[1]))
10349 continue;
10351 name_buf[0] = 't';
10352 name_buf[1] = '_';
10353 name_buf[2] = str[0];
10354 name_buf[3] = str[1];
10355 name_buf[4] = NUL;
10357 match = FALSE;
10358 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10359 match = TRUE;
10360 else
10362 name_buf[0] = '<';
10363 name_buf[1] = 't';
10364 name_buf[2] = '_';
10365 name_buf[3] = str[0];
10366 name_buf[4] = str[1];
10367 name_buf[5] = '>';
10368 name_buf[6] = NUL;
10370 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10371 match = TRUE;
10373 if (match)
10375 if (loop == 0)
10376 num_term++;
10377 else
10378 (*file)[count++] = vim_strsave(name_buf);
10383 * Check special key names.
10385 regmatch->rm_ic = TRUE; /* ignore case here */
10386 for (opt_idx = 0; (str = get_key_name(opt_idx)) != NULL; opt_idx++)
10388 name_buf[0] = '<';
10389 STRCPY(name_buf + 1, str);
10390 STRCAT(name_buf, ">");
10392 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10394 if (loop == 0)
10395 num_term++;
10396 else
10397 (*file)[count++] = vim_strsave(name_buf);
10401 if (loop == 0)
10403 if (num_normal > 0)
10404 *num_file = num_normal;
10405 else if (num_term > 0)
10406 *num_file = num_term;
10407 else
10408 return OK;
10409 *file = (char_u **)alloc((unsigned)(*num_file * sizeof(char_u *)));
10410 if (*file == NULL)
10412 *file = (char_u **)"";
10413 return FAIL;
10417 return OK;
10421 ExpandOldSetting(num_file, file)
10422 int *num_file;
10423 char_u ***file;
10425 char_u *var = NULL; /* init for GCC */
10426 char_u *buf;
10428 *num_file = 0;
10429 *file = (char_u **)alloc((unsigned)sizeof(char_u *));
10430 if (*file == NULL)
10431 return FAIL;
10434 * For a terminal key code expand_option_idx is < 0.
10436 if (expand_option_idx < 0)
10438 var = find_termcode(expand_option_name + 2);
10439 if (var == NULL)
10440 expand_option_idx = findoption(expand_option_name);
10443 if (expand_option_idx >= 0)
10445 /* put string of option value in NameBuff */
10446 option_value2string(&options[expand_option_idx], expand_option_flags);
10447 var = NameBuff;
10449 else if (var == NULL)
10450 var = (char_u *)"";
10452 /* A backslash is required before some characters. This is the reverse of
10453 * what happens in do_set(). */
10454 buf = vim_strsave_escaped(var, escape_chars);
10456 if (buf == NULL)
10458 vim_free(*file);
10459 *file = NULL;
10460 return FAIL;
10463 #ifdef BACKSLASH_IN_FILENAME
10464 /* For MS-Windows et al. we don't double backslashes at the start and
10465 * before a file name character. */
10466 for (var = buf; *var != NUL; mb_ptr_adv(var))
10467 if (var[0] == '\\' && var[1] == '\\'
10468 && expand_option_idx >= 0
10469 && (options[expand_option_idx].flags & P_EXPAND)
10470 && vim_isfilec(var[2])
10471 && (var[2] != '\\' || (var == buf && var[4] != '\\')))
10472 STRMOVE(var, var + 1);
10473 #endif
10475 *file[0] = buf;
10476 *num_file = 1;
10477 return OK;
10479 #endif
10482 * Get the value for the numeric or string option *opp in a nice format into
10483 * NameBuff[]. Must not be called with a hidden option!
10485 static void
10486 option_value2string(opp, opt_flags)
10487 struct vimoption *opp;
10488 int opt_flags; /* OPT_GLOBAL and/or OPT_LOCAL */
10490 char_u *varp;
10492 varp = get_varp_scope(opp, opt_flags);
10494 if (opp->flags & P_NUM)
10496 long wc = 0;
10498 if (wc_use_keyname(varp, &wc))
10499 STRCPY(NameBuff, get_special_key_name((int)wc, 0));
10500 else if (wc != 0)
10501 STRCPY(NameBuff, transchar((int)wc));
10502 else
10503 sprintf((char *)NameBuff, "%ld", *(long *)varp);
10505 else /* P_STRING */
10507 varp = *(char_u **)(varp);
10508 if (varp == NULL) /* just in case */
10509 NameBuff[0] = NUL;
10510 #ifdef FEAT_CRYPT
10511 /* don't show the actual value of 'key', only that it's set */
10512 else if (opp->var == (char_u *)&p_key && *varp)
10513 STRCPY(NameBuff, "*****");
10514 #endif
10515 else if (opp->flags & P_EXPAND)
10516 home_replace(NULL, varp, NameBuff, MAXPATHL, FALSE);
10517 /* Translate 'pastetoggle' into special key names */
10518 else if ((char_u **)opp->var == &p_pt)
10519 str2specialbuf(p_pt, NameBuff, MAXPATHL);
10520 else
10521 vim_strncpy(NameBuff, varp, MAXPATHL - 1);
10526 * Return TRUE if "varp" points to 'wildchar' or 'wildcharm' and it can be
10527 * printed as a keyname.
10528 * "*wcp" is set to the value of the option if it's 'wildchar' or 'wildcharm'.
10530 static int
10531 wc_use_keyname(varp, wcp)
10532 char_u *varp;
10533 long *wcp;
10535 if (((long *)varp == &p_wc) || ((long *)varp == &p_wcm))
10537 *wcp = *(long *)varp;
10538 if (IS_SPECIAL(*wcp) || find_special_key_in_table((int)*wcp) >= 0)
10539 return TRUE;
10541 return FALSE;
10544 #ifdef FEAT_LANGMAP
10546 * Any character has an equivalent 'langmap' character. This is used for
10547 * keyboards that have a special language mode that sends characters above
10548 * 128 (although other characters can be translated too). The "to" field is a
10549 * Vim command character. This avoids having to switch the keyboard back to
10550 * ASCII mode when leaving Insert mode.
10552 * langmap_mapchar[] maps any of 256 chars to an ASCII char used for Vim
10553 * commands.
10554 * When FEAT_MBYTE is defined langmap_mapga.ga_data is a sorted table of
10555 * langmap_entry_T. This does the same as langmap_mapchar[] for characters >=
10556 * 256.
10558 # ifdef FEAT_MBYTE
10560 * With multi-byte support use growarray for 'langmap' chars >= 256
10562 typedef struct
10564 int from;
10565 int to;
10566 } langmap_entry_T;
10568 static garray_T langmap_mapga;
10569 static void langmap_set_entry __ARGS((int from, int to));
10572 * Search for an entry in "langmap_mapga" for "from". If found set the "to"
10573 * field. If not found insert a new entry at the appropriate location.
10575 static void
10576 langmap_set_entry(from, to)
10577 int from;
10578 int to;
10580 langmap_entry_T *entries = (langmap_entry_T *)(langmap_mapga.ga_data);
10581 int a = 0;
10582 int b = langmap_mapga.ga_len;
10584 /* Do a binary search for an existing entry. */
10585 while (a != b)
10587 int i = (a + b) / 2;
10588 int d = entries[i].from - from;
10590 if (d == 0)
10592 entries[i].to = to;
10593 return;
10595 if (d < 0)
10596 a = i + 1;
10597 else
10598 b = i;
10601 if (ga_grow(&langmap_mapga, 1) != OK)
10602 return; /* out of memory */
10604 /* insert new entry at position "a" */
10605 entries = (langmap_entry_T *)(langmap_mapga.ga_data) + a;
10606 mch_memmove(entries + 1, entries,
10607 (langmap_mapga.ga_len - a) * sizeof(langmap_entry_T));
10608 ++langmap_mapga.ga_len;
10609 entries[0].from = from;
10610 entries[0].to = to;
10614 * Apply 'langmap' to multi-byte character "c" and return the result.
10617 langmap_adjust_mb(c)
10618 int c;
10620 langmap_entry_T *entries = (langmap_entry_T *)(langmap_mapga.ga_data);
10621 int a = 0;
10622 int b = langmap_mapga.ga_len;
10624 while (a != b)
10626 int i = (a + b) / 2;
10627 int d = entries[i].from - c;
10629 if (d == 0)
10630 return entries[i].to; /* found matching entry */
10631 if (d < 0)
10632 a = i + 1;
10633 else
10634 b = i;
10636 return c; /* no entry found, return "c" unmodified */
10638 # endif
10640 static void
10641 langmap_init()
10643 int i;
10645 for (i = 0; i < 256; i++)
10646 langmap_mapchar[i] = i; /* we init with a one-to-one map */
10647 # ifdef FEAT_MBYTE
10648 ga_init2(&langmap_mapga, sizeof(langmap_entry_T), 8);
10649 # endif
10653 * Called when langmap option is set; the language map can be
10654 * changed at any time!
10656 static void
10657 langmap_set()
10659 char_u *p;
10660 char_u *p2;
10661 int from, to;
10663 #ifdef FEAT_MBYTE
10664 ga_clear(&langmap_mapga); /* clear the previous map first */
10665 #endif
10666 langmap_init(); /* back to one-to-one map */
10668 for (p = p_langmap; p[0] != NUL; )
10670 for (p2 = p; p2[0] != NUL && p2[0] != ',' && p2[0] != ';';
10671 mb_ptr_adv(p2))
10673 if (p2[0] == '\\' && p2[1] != NUL)
10674 ++p2;
10676 if (p2[0] == ';')
10677 ++p2; /* abcd;ABCD form, p2 points to A */
10678 else
10679 p2 = NULL; /* aAbBcCdD form, p2 is NULL */
10680 while (p[0])
10682 if (p[0] == ',')
10684 ++p;
10685 break;
10687 if (p[0] == '\\' && p[1] != NUL)
10688 ++p;
10689 #ifdef FEAT_MBYTE
10690 from = (*mb_ptr2char)(p);
10691 #else
10692 from = p[0];
10693 #endif
10694 to = NUL;
10695 if (p2 == NULL)
10697 mb_ptr_adv(p);
10698 if (p[0] != ',')
10700 if (p[0] == '\\')
10701 ++p;
10702 #ifdef FEAT_MBYTE
10703 to = (*mb_ptr2char)(p);
10704 #else
10705 to = p[0];
10706 #endif
10709 else
10711 if (p2[0] != ',')
10713 if (p2[0] == '\\')
10714 ++p2;
10715 #ifdef FEAT_MBYTE
10716 to = (*mb_ptr2char)(p2);
10717 #else
10718 to = p2[0];
10719 #endif
10722 if (to == NUL)
10724 EMSG2(_("E357: 'langmap': Matching character missing for %s"),
10725 transchar(from));
10726 return;
10729 #ifdef FEAT_MBYTE
10730 if (from >= 256)
10731 langmap_set_entry(from, to);
10732 else
10733 #endif
10734 langmap_mapchar[from & 255] = to;
10736 /* Advance to next pair */
10737 mb_ptr_adv(p);
10738 if (p2 != NULL)
10740 mb_ptr_adv(p2);
10741 if (*p == ';')
10743 p = p2;
10744 if (p[0] != NUL)
10746 if (p[0] != ',')
10748 EMSG2(_("E358: 'langmap': Extra characters after semicolon: %s"), p);
10749 return;
10751 ++p;
10753 break;
10759 #endif
10762 * Return TRUE if format option 'x' is in effect.
10763 * Take care of no formatting when 'paste' is set.
10766 has_format_option(x)
10767 int x;
10769 if (p_paste)
10770 return FALSE;
10771 return (vim_strchr(curbuf->b_p_fo, x) != NULL);
10775 * Return TRUE if "x" is present in 'shortmess' option, or
10776 * 'shortmess' contains 'a' and "x" is present in SHM_A.
10779 shortmess(x)
10780 int x;
10782 return ( vim_strchr(p_shm, x) != NULL
10783 || (vim_strchr(p_shm, 'a') != NULL
10784 && vim_strchr((char_u *)SHM_A, x) != NULL));
10788 * paste_option_changed() - Called after p_paste was set or reset.
10790 static void
10791 paste_option_changed()
10793 static int old_p_paste = FALSE;
10794 static int save_sm = 0;
10795 #ifdef FEAT_CMDL_INFO
10796 static int save_ru = 0;
10797 #endif
10798 #ifdef FEAT_RIGHTLEFT
10799 static int save_ri = 0;
10800 static int save_hkmap = 0;
10801 #endif
10802 buf_T *buf;
10804 if (p_paste)
10807 * Paste switched from off to on.
10808 * Save the current values, so they can be restored later.
10810 if (!old_p_paste)
10812 /* save options for each buffer */
10813 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10815 buf->b_p_tw_nopaste = buf->b_p_tw;
10816 buf->b_p_wm_nopaste = buf->b_p_wm;
10817 buf->b_p_sts_nopaste = buf->b_p_sts;
10818 buf->b_p_ai_nopaste = buf->b_p_ai;
10819 #ifdef FEAT_VARTABS
10820 if (buf->b_p_vsts_nopaste)
10821 vim_free(buf->b_p_vsts_nopaste);
10822 buf->b_p_vsts_nopaste = buf->b_p_vsts && buf->b_p_vsts != empty_option
10823 ? vim_strsave(buf->b_p_vsts) : NULL;
10824 #endif
10827 /* save global options */
10828 save_sm = p_sm;
10829 #ifdef FEAT_CMDL_INFO
10830 save_ru = p_ru;
10831 #endif
10832 #ifdef FEAT_RIGHTLEFT
10833 save_ri = p_ri;
10834 save_hkmap = p_hkmap;
10835 #endif
10836 /* save global values for local buffer options */
10837 p_tw_nopaste = p_tw;
10838 p_wm_nopaste = p_wm;
10839 p_sts_nopaste = p_sts;
10840 p_ai_nopaste = p_ai;
10841 #ifdef FEAT_VARTABS
10842 if (p_vsts_nopaste)
10843 vim_free(p_vsts_nopaste);
10844 p_vsts_nopaste = p_vsts && p_vsts != empty_option ? vim_strsave(p_vsts) : NULL;
10845 #endif
10849 * Always set the option values, also when 'paste' is set when it is
10850 * already on.
10852 /* set options for each buffer */
10853 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10855 buf->b_p_tw = 0; /* textwidth is 0 */
10856 buf->b_p_wm = 0; /* wrapmargin is 0 */
10857 buf->b_p_sts = 0; /* softtabstop is 0 */
10858 buf->b_p_ai = 0; /* no auto-indent */
10859 #ifdef FEAT_VARTABS
10860 if (buf->b_p_vsts)
10861 free_string_option(buf->b_p_vsts);
10862 buf->b_p_vsts = empty_option;
10863 if (buf->b_p_vsts_ary)
10864 vim_free(buf->b_p_vsts_ary);
10865 buf->b_p_vsts_ary = 0;
10866 #endif
10869 /* set global options */
10870 p_sm = 0; /* no showmatch */
10871 #ifdef FEAT_CMDL_INFO
10872 # ifdef FEAT_WINDOWS
10873 if (p_ru)
10874 status_redraw_all(); /* redraw to remove the ruler */
10875 # endif
10876 p_ru = 0; /* no ruler */
10877 #endif
10878 #ifdef FEAT_RIGHTLEFT
10879 p_ri = 0; /* no reverse insert */
10880 p_hkmap = 0; /* no Hebrew keyboard */
10881 #endif
10882 /* set global values for local buffer options */
10883 p_tw = 0;
10884 p_wm = 0;
10885 p_sts = 0;
10886 p_ai = 0;
10887 #ifdef FEAT_VARTABS
10888 if (p_vsts)
10889 free_string_option(p_vsts);
10890 p_vsts = empty_option;
10891 #endif
10895 * Paste switched from on to off: Restore saved values.
10897 else if (old_p_paste)
10899 /* restore options for each buffer */
10900 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10902 buf->b_p_tw = buf->b_p_tw_nopaste;
10903 buf->b_p_wm = buf->b_p_wm_nopaste;
10904 buf->b_p_sts = buf->b_p_sts_nopaste;
10905 buf->b_p_ai = buf->b_p_ai_nopaste;
10906 #ifdef FEAT_VARTABS
10907 if (buf->b_p_vsts)
10908 free_string_option(buf->b_p_vsts);
10909 buf->b_p_vsts = buf->b_p_vsts_nopaste
10910 ? vim_strsave(buf->b_p_vsts_nopaste) : empty_option;
10911 if (buf->b_p_vsts_ary)
10912 vim_free(buf->b_p_vsts_ary);
10913 if (buf->b_p_vsts && buf->b_p_vsts != empty_option)
10914 tabstop_set(buf->b_p_vsts, &buf->b_p_vsts_ary);
10915 else
10916 buf->b_p_vsts_ary = 0;
10917 #endif
10920 /* restore global options */
10921 p_sm = save_sm;
10922 #ifdef FEAT_CMDL_INFO
10923 # ifdef FEAT_WINDOWS
10924 if (p_ru != save_ru)
10925 status_redraw_all(); /* redraw to draw the ruler */
10926 # endif
10927 p_ru = save_ru;
10928 #endif
10929 #ifdef FEAT_RIGHTLEFT
10930 p_ri = save_ri;
10931 p_hkmap = save_hkmap;
10932 #endif
10933 /* set global values for local buffer options */
10934 p_tw = p_tw_nopaste;
10935 p_wm = p_wm_nopaste;
10936 p_sts = p_sts_nopaste;
10937 p_ai = p_ai_nopaste;
10938 #ifdef FEAT_VARTABS
10939 if (p_vsts)
10940 free_string_option(p_vsts);
10941 p_vsts = p_vsts_nopaste ? vim_strsave(p_vsts_nopaste) : empty_option;
10942 #endif
10945 old_p_paste = p_paste;
10949 * vimrc_found() - Called when a ".vimrc" or "VIMINIT" has been found.
10951 * Reset 'compatible' and set the values for options that didn't get set yet
10952 * to the Vim defaults.
10953 * Don't do this if the 'compatible' option has been set or reset before.
10954 * When "fname" is not NULL, use it to set $"envname" when it wasn't set yet.
10956 void
10957 vimrc_found(fname, envname)
10958 char_u *fname;
10959 char_u *envname;
10961 int opt_idx;
10962 int dofree = FALSE;
10963 char_u *p;
10965 if (!option_was_set((char_u *)"cp"))
10967 p_cp = FALSE;
10968 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
10969 if (!(options[opt_idx].flags & (P_WAS_SET|P_VI_DEF)))
10970 set_option_default(opt_idx, OPT_FREE, FALSE);
10971 didset_options();
10974 if (fname != NULL)
10976 p = vim_getenv(envname, &dofree);
10977 if (p == NULL)
10979 /* Set $MYVIMRC to the first vimrc file found. */
10980 p = FullName_save(fname, FALSE);
10981 if (p != NULL)
10983 vim_setenv(envname, p);
10984 vim_free(p);
10987 else if (dofree)
10988 vim_free(p);
10993 * Set 'compatible' on or off. Called for "-C" and "-N" command line arg.
10995 void
10996 change_compatible(on)
10997 int on;
10999 int opt_idx;
11001 if (p_cp != on)
11003 p_cp = on;
11004 compatible_set();
11006 opt_idx = findoption((char_u *)"cp");
11007 if (opt_idx >= 0)
11008 options[opt_idx].flags |= P_WAS_SET;
11012 * Return TRUE when option "name" has been set.
11015 option_was_set(name)
11016 char_u *name;
11018 int idx;
11020 idx = findoption(name);
11021 if (idx < 0) /* unknown option */
11022 return FALSE;
11023 if (options[idx].flags & P_WAS_SET)
11024 return TRUE;
11025 return FALSE;
11029 * compatible_set() - Called when 'compatible' has been set or unset.
11031 * When 'compatible' set: Set all relevant options (those that have the P_VIM)
11032 * flag) to a Vi compatible value.
11033 * When 'compatible' is unset: Set all options that have a different default
11034 * for Vim (without the P_VI_DEF flag) to that default.
11036 static void
11037 compatible_set()
11039 int opt_idx;
11041 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
11042 if ( ((options[opt_idx].flags & P_VIM) && p_cp)
11043 || (!(options[opt_idx].flags & P_VI_DEF) && !p_cp))
11044 set_option_default(opt_idx, OPT_FREE, p_cp);
11045 didset_options();
11048 #ifdef FEAT_LINEBREAK
11050 # if defined(__BORLANDC__) && (__BORLANDC__ < 0x500)
11051 /* Borland C++ screws up loop optimisation here (negri) */
11052 #pragma option -O-l
11053 # endif
11056 * fill_breakat_flags() -- called when 'breakat' changes value.
11058 static void
11059 fill_breakat_flags()
11061 char_u *p;
11062 int i;
11064 for (i = 0; i < 256; i++)
11065 breakat_flags[i] = FALSE;
11067 if (p_breakat != NULL)
11068 for (p = p_breakat; *p; p++)
11069 breakat_flags[*p] = TRUE;
11072 # if defined(__BORLANDC__) && (__BORLANDC__ < 0x500)
11073 #pragma option -O.l
11074 # endif
11076 #endif
11079 * Check an option that can be a range of string values.
11081 * Return OK for correct value, FAIL otherwise.
11082 * Empty is always OK.
11084 static int
11085 check_opt_strings(val, values, list)
11086 char_u *val;
11087 char **values;
11088 int list; /* when TRUE: accept a list of values */
11090 return opt_strings_flags(val, values, NULL, list);
11094 * Handle an option that can be a range of string values.
11095 * Set a flag in "*flagp" for each string present.
11097 * Return OK for correct value, FAIL otherwise.
11098 * Empty is always OK.
11100 static int
11101 opt_strings_flags(val, values, flagp, list)
11102 char_u *val; /* new value */
11103 char **values; /* array of valid string values */
11104 unsigned *flagp;
11105 int list; /* when TRUE: accept a list of values */
11107 int i;
11108 int len;
11109 unsigned new_flags = 0;
11111 while (*val)
11113 for (i = 0; ; ++i)
11115 if (values[i] == NULL) /* val not found in values[] */
11116 return FAIL;
11118 len = (int)STRLEN(values[i]);
11119 if (STRNCMP(values[i], val, len) == 0
11120 && ((list && val[len] == ',') || val[len] == NUL))
11122 val += len + (val[len] == ',');
11123 new_flags |= (1 << i);
11124 break; /* check next item in val list */
11128 if (flagp != NULL)
11129 *flagp = new_flags;
11131 return OK;
11135 * Read the 'wildmode' option, fill wim_flags[].
11137 static int
11138 check_opt_wim()
11140 char_u new_wim_flags[4];
11141 char_u *p;
11142 int i;
11143 int idx = 0;
11145 for (i = 0; i < 4; ++i)
11146 new_wim_flags[i] = 0;
11148 for (p = p_wim; *p; ++p)
11150 for (i = 0; ASCII_ISALPHA(p[i]); ++i)
11152 if (p[i] != NUL && p[i] != ',' && p[i] != ':')
11153 return FAIL;
11154 if (i == 7 && STRNCMP(p, "longest", 7) == 0)
11155 new_wim_flags[idx] |= WIM_LONGEST;
11156 else if (i == 4 && STRNCMP(p, "full", 4) == 0)
11157 new_wim_flags[idx] |= WIM_FULL;
11158 else if (i == 4 && STRNCMP(p, "list", 4) == 0)
11159 new_wim_flags[idx] |= WIM_LIST;
11160 else
11161 return FAIL;
11162 p += i;
11163 if (*p == NUL)
11164 break;
11165 if (*p == ',')
11167 if (idx == 3)
11168 return FAIL;
11169 ++idx;
11173 /* fill remaining entries with last flag */
11174 while (idx < 3)
11176 new_wim_flags[idx + 1] = new_wim_flags[idx];
11177 ++idx;
11180 /* only when there are no errors, wim_flags[] is changed */
11181 for (i = 0; i < 4; ++i)
11182 wim_flags[i] = new_wim_flags[i];
11183 return OK;
11187 * Check if backspacing over something is allowed.
11190 can_bs(what)
11191 int what; /* BS_INDENT, BS_EOL or BS_START */
11193 switch (*p_bs)
11195 case '2': return TRUE;
11196 case '1': return (what != BS_START);
11197 case '0': return FALSE;
11199 return vim_strchr(p_bs, what) != NULL;
11203 * Save the current values of 'fileformat' and 'fileencoding', so that we know
11204 * the file must be considered changed when the value is different.
11206 void
11207 save_file_ff(buf)
11208 buf_T *buf;
11210 buf->b_start_ffc = *buf->b_p_ff;
11211 buf->b_start_eol = buf->b_p_eol;
11212 #ifdef FEAT_MBYTE
11213 buf->b_start_bomb = buf->b_p_bomb;
11215 /* Only use free/alloc when necessary, they take time. */
11216 if (buf->b_start_fenc == NULL
11217 || STRCMP(buf->b_start_fenc, buf->b_p_fenc) != 0)
11219 vim_free(buf->b_start_fenc);
11220 buf->b_start_fenc = vim_strsave(buf->b_p_fenc);
11222 #endif
11226 * Return TRUE if 'fileformat' and/or 'fileencoding' has a different value
11227 * from when editing started (save_file_ff() called).
11228 * Also when 'endofline' was changed and 'binary' is set, or when 'bomb' was
11229 * changed and 'binary' is not set.
11230 * Don't consider a new, empty buffer to be changed.
11233 file_ff_differs(buf)
11234 buf_T *buf;
11236 /* In a buffer that was never loaded the options are not valid. */
11237 if (buf->b_flags & BF_NEVERLOADED)
11238 return FALSE;
11239 if ((buf->b_flags & BF_NEW)
11240 && buf->b_ml.ml_line_count == 1
11241 && *ml_get_buf(buf, (linenr_T)1, FALSE) == NUL)
11242 return FALSE;
11243 if (buf->b_start_ffc != *buf->b_p_ff)
11244 return TRUE;
11245 if (buf->b_p_bin && buf->b_start_eol != buf->b_p_eol)
11246 return TRUE;
11247 #ifdef FEAT_MBYTE
11248 if (!buf->b_p_bin && buf->b_start_bomb != buf->b_p_bomb)
11249 return TRUE;
11250 if (buf->b_start_fenc == NULL)
11251 return (*buf->b_p_fenc != NUL);
11252 return (STRCMP(buf->b_start_fenc, buf->b_p_fenc) != 0);
11253 #else
11254 return FALSE;
11255 #endif
11259 * return OK if "p" is a valid fileformat name, FAIL otherwise.
11262 check_ff_value(p)
11263 char_u *p;
11265 return check_opt_strings(p, p_ff_values, FALSE);
11268 #ifdef FEAT_VARTABS
11271 * Set the integer values corresponding to the string setting of 'vartabstop'.
11274 tabstop_set(var, array)
11275 char_u *var;
11276 int **array;
11278 int valcount = 1;
11279 int t;
11280 char_u *cp;
11282 if ((!var[0] || (var[0] == '0' && !var[1])))
11284 *array = (int *)0;
11285 return TRUE;
11288 for (cp = var; *cp; ++cp)
11290 if (cp == var || *(cp - 1) == ',')
11291 if (atoi((char *)cp) <= 0)
11292 return FALSE;
11294 if (VIM_ISDIGIT(*cp))
11295 continue;
11296 if (*cp == ',' && cp > var && *(cp - 1) != ',')
11298 ++valcount;
11299 continue;
11301 return FALSE;
11304 *array = (int *) alloc((unsigned) ((valcount + 1) * sizeof(int)));
11305 (*array)[0] = valcount;
11307 t = 1;
11308 for (cp = var; *cp;)
11310 (*array)[t++] = atoi((char *)cp);
11311 while (*cp && *cp != ',')
11312 ++cp;
11313 if (*cp)
11314 ++cp;
11317 return TRUE;
11321 * Calculate the number of screen spaces a tab will occupy.
11322 * If vts is set then the tab widths are taken from that array,
11323 * otherwise the value of ts is used.
11326 tabstop_padding(col, ts, vts)
11327 colnr_T col;
11328 int ts;
11329 int *vts;
11331 int tabcount;
11332 colnr_T tabcol = 0;
11333 int t;
11334 int padding = 0;
11336 if (ts == 0)
11337 ts = 8;
11338 if (vts == 0 || vts[0] == 0)
11339 return ts - (col % ts);
11341 tabcount = vts[0];
11343 for (t = 1; t <= tabcount; ++t)
11345 tabcol += vts[t];
11346 if (tabcol > col)
11348 padding = (int)(tabcol - col);
11349 break;
11352 if (t > tabcount)
11353 padding = vts[tabcount] - (int)((col - tabcol) % vts[tabcount]);
11355 return padding;
11359 * Find the size of the tab that covers a particular column.
11362 tabstop_at(col, ts, vts)
11363 colnr_T col;
11364 int ts;
11365 int *vts;
11367 int tabcount;
11368 colnr_T tabcol = 0;
11369 int t;
11370 int tab_size = 0;
11372 if (vts == 0 || vts[0] == 0)
11373 return ts;
11375 tabcount = vts[0];
11376 for (t = 1; t <= tabcount; ++t)
11378 tabcol += vts[t];
11379 if (tabcol > col)
11381 tab_size = vts[t];
11382 break;
11385 if (t > tabcount)
11386 tab_size = vts[tabcount];
11388 return tab_size;
11392 * Find the column on which a tab starts.
11394 colnr_T
11395 tabstop_start(col, ts, vts)
11396 colnr_T col;
11397 int ts;
11398 int *vts;
11400 int tabcount;
11401 colnr_T tabcol = 0;
11402 int t;
11404 if (vts == 0 || vts[0] == 0)
11405 return (col / ts) * ts;
11407 tabcount = vts[0];
11408 for (t = 1; t <= tabcount; ++t)
11410 tabcol += vts[t];
11411 if (tabcol > col)
11412 return tabcol - vts[t];
11415 int excess = tabcol % vts[tabcount];
11416 return excess + ((col - excess) / vts[tabcount]) * vts[tabcount];
11420 * Find the number of tabs and spaces necessary to get from one column
11421 * to another.
11423 void
11424 tabstop_fromto(start_col, end_col, ts, vts, ntabs, nspcs)
11425 colnr_T start_col;
11426 colnr_T end_col;
11427 int ts;
11428 int *vts;
11429 int *ntabs;
11430 int *nspcs;
11432 int spaces = end_col - start_col;
11433 colnr_T tabcol = 0;
11434 int padding = 0;
11435 int tabcount;
11436 int t;
11438 if (vts == 0 || vts[0] == 0)
11440 int tabs = 0;
11441 int initspc = ts - (start_col % ts);
11442 if (spaces >= initspc)
11444 spaces -= initspc;
11445 tabs++;
11447 tabs += spaces / ts;
11448 spaces -= (spaces / ts) * ts;
11450 *ntabs = tabs;
11451 *nspcs = spaces;
11452 return;
11455 /* Find the padding needed to reach the next tabstop. */
11456 tabcount = vts[0];
11457 for (t = 1; t <= tabcount; ++t)
11459 tabcol += vts[t];
11460 if (tabcol > start_col)
11462 padding = (int)(tabcol - start_col);
11463 break;
11466 if (t > tabcount)
11467 padding = vts[tabcount] - (int)((start_col - tabcol) % vts[tabcount]);
11469 /* If the space needed is less than the padding no tabs can be used. */
11470 if (spaces < padding)
11472 *ntabs = 0;
11473 *nspcs = spaces;
11474 return;
11477 *ntabs = 1;
11478 spaces -= padding;
11480 /* At least one tab has been used. See if any more will fit. */
11481 while (spaces != 0 && ++t <= tabcount)
11483 padding = vts[t];
11484 if (spaces < padding)
11486 *nspcs = spaces;
11487 return;
11489 ++*ntabs;
11490 spaces -= padding;
11493 *ntabs += spaces / vts[tabcount];
11494 *nspcs = spaces % vts[tabcount];
11498 * See if two tabstop arrays contain the same values.
11501 tabstop_eq(ts1, ts2)
11502 int *ts1;
11503 int *ts2;
11505 int t;
11507 if ((ts1 == 0 && ts2) || (ts1 && ts2 == 0))
11508 return FALSE;
11509 if (ts1 == ts2)
11510 return TRUE;
11511 if (ts1[0] != ts2[0])
11512 return FALSE;
11514 for (t = 1; t <= ts1[0]; ++t)
11515 if (ts1[t] != ts2[t])
11516 return FALSE;
11518 return TRUE;
11522 * Copy a tabstop array, allocating space for the new array.
11524 int *
11525 tabstop_copy(oldts)
11526 int *oldts;
11528 int *newts;
11529 int t;
11531 if (oldts == 0)
11532 return 0;
11534 newts = (int *) alloc((unsigned) ((oldts[0] + 1) * sizeof(int)));
11535 for (t = 0; t <= oldts[0]; ++t)
11536 newts[t] = oldts[t];
11538 return newts;
11542 * Return a count of the number of tabstops.
11545 tabstop_count(ts)
11546 int *ts;
11548 return ts ? ts[0] : 0;
11552 * Return the first tabstop, or 8 if there are no tabstops defined.
11555 tabstop_first(ts)
11556 int *ts;
11558 return ts ? ts[1] : 8;
11561 #endif