Add full-screen options
[MacVim.git] / src / option.c
blobd60b37fa124af8e3f0767630dd57da98a117af20
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 #define PV_TAGS OPT_BOTH(OPT_BUF(BV_TAGS))
176 #define PV_TS OPT_BUF(BV_TS)
177 #define PV_TW OPT_BUF(BV_TW)
178 #define PV_TX OPT_BUF(BV_TX)
179 #define PV_WM OPT_BUF(BV_WM)
182 * Definition of the PV_ values for window-local options.
183 * The WV_ values are defined in option.h.
185 #define PV_LIST OPT_WIN(WV_LIST)
186 #ifdef FEAT_ARABIC
187 # define PV_ARAB OPT_WIN(WV_ARAB)
188 #endif
189 #ifdef FEAT_DIFF
190 # define PV_DIFF OPT_WIN(WV_DIFF)
191 #endif
192 #ifdef FEAT_FOLDING
193 # define PV_FDC OPT_WIN(WV_FDC)
194 # define PV_FEN OPT_WIN(WV_FEN)
195 # define PV_FDI OPT_WIN(WV_FDI)
196 # define PV_FDL OPT_WIN(WV_FDL)
197 # define PV_FDM OPT_WIN(WV_FDM)
198 # define PV_FML OPT_WIN(WV_FML)
199 # define PV_FDN OPT_WIN(WV_FDN)
200 # ifdef FEAT_EVAL
201 # define PV_FDE OPT_WIN(WV_FDE)
202 # define PV_FDT OPT_WIN(WV_FDT)
203 # endif
204 # define PV_FMR OPT_WIN(WV_FMR)
205 #endif
206 #ifdef FEAT_LINEBREAK
207 # define PV_LBR OPT_WIN(WV_LBR)
208 #endif
209 #define PV_NU OPT_WIN(WV_NU)
210 #ifdef FEAT_LINEBREAK
211 # define PV_NUW OPT_WIN(WV_NUW)
212 #endif
213 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
214 # define PV_PVW OPT_WIN(WV_PVW)
215 #endif
216 #ifdef FEAT_RIGHTLEFT
217 # define PV_RL OPT_WIN(WV_RL)
218 # define PV_RLC OPT_WIN(WV_RLC)
219 #endif
220 #ifdef FEAT_SCROLLBIND
221 # define PV_SCBIND OPT_WIN(WV_SCBIND)
222 #endif
223 #define PV_SCROLL OPT_WIN(WV_SCROLL)
224 #ifdef FEAT_SPELL
225 # define PV_SPELL OPT_WIN(WV_SPELL)
226 #endif
227 #ifdef FEAT_SYN_HL
228 # define PV_CUC OPT_WIN(WV_CUC)
229 # define PV_CUL OPT_WIN(WV_CUL)
230 #endif
231 #ifdef FEAT_STL_OPT
232 # define PV_STL OPT_BOTH(OPT_WIN(WV_STL))
233 #endif
234 #ifdef FEAT_WINDOWS
235 # define PV_WFH OPT_WIN(WV_WFH)
236 #endif
237 #ifdef FEAT_VERTSPLIT
238 # define PV_WFW OPT_WIN(WV_WFW)
239 #endif
240 #define PV_WRAP OPT_WIN(WV_WRAP)
243 /* WV_ and BV_ values get typecasted to this for the "indir" field */
244 typedef enum
246 PV_NONE = 0
247 } idopt_T;
250 * Options local to a window have a value local to a buffer and global to all
251 * buffers. Indicate this by setting "var" to VAR_WIN.
253 #define VAR_WIN ((char_u *)-1)
256 * These are the global values for options which are also local to a buffer.
257 * Only to be used in option.c!
259 static int p_ai;
260 static int p_bin;
261 #ifdef FEAT_MBYTE
262 static int p_bomb;
263 #endif
264 #if defined(FEAT_QUICKFIX)
265 static char_u *p_bh;
266 static char_u *p_bt;
267 #endif
268 static int p_bl;
269 static int p_ci;
270 #ifdef FEAT_CINDENT
271 static int p_cin;
272 static char_u *p_cink;
273 static char_u *p_cino;
274 #endif
275 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
276 static char_u *p_cinw;
277 #endif
278 #ifdef FEAT_COMMENTS
279 static char_u *p_com;
280 #endif
281 #ifdef FEAT_FOLDING
282 static char_u *p_cms;
283 #endif
284 #ifdef FEAT_INS_EXPAND
285 static char_u *p_cpt;
286 #endif
287 #ifdef FEAT_COMPL_FUNC
288 static char_u *p_cfu;
289 static char_u *p_ofu;
290 #endif
291 static int p_eol;
292 static int p_et;
293 #ifdef FEAT_MBYTE
294 static char_u *p_fenc;
295 #endif
296 static char_u *p_ff;
297 static char_u *p_fo;
298 static char_u *p_flp;
299 #ifdef FEAT_AUTOCMD
300 static char_u *p_ft;
301 #endif
302 static long p_iminsert;
303 static long p_imsearch;
304 #if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
305 static char_u *p_inex;
306 #endif
307 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
308 static char_u *p_inde;
309 static char_u *p_indk;
310 #endif
311 #if defined(FEAT_EVAL)
312 static char_u *p_fex;
313 #endif
314 static int p_inf;
315 static char_u *p_isk;
316 #ifdef FEAT_CRYPT
317 static char_u *p_key;
318 #endif
319 #ifdef FEAT_LISP
320 static int p_lisp;
321 #endif
322 static int p_ml;
323 static int p_ma;
324 static int p_mod;
325 static char_u *p_mps;
326 static char_u *p_nf;
327 #ifdef FEAT_OSFILETYPE
328 static char_u *p_oft;
329 #endif
330 static int p_pi;
331 #ifdef FEAT_TEXTOBJ
332 static char_u *p_qe;
333 #endif
334 static int p_ro;
335 #ifdef FEAT_SMARTINDENT
336 static int p_si;
337 #endif
338 #ifndef SHORT_FNAME
339 static int p_sn;
340 #endif
341 static long p_sts;
342 #if defined(FEAT_SEARCHPATH)
343 static char_u *p_sua;
344 #endif
345 static long p_sw;
346 static int p_swf;
347 #ifdef FEAT_SYN_HL
348 static long p_smc;
349 static char_u *p_syn;
350 #endif
351 #ifdef FEAT_SPELL
352 static char_u *p_spc;
353 static char_u *p_spf;
354 static char_u *p_spl;
355 #endif
356 static long p_ts;
357 static long p_tw;
358 static int p_tx;
359 static long p_wm;
360 #ifdef FEAT_KEYMAP
361 static char_u *p_keymap;
362 #endif
364 /* Saved values for when 'bin' is set. */
365 static int p_et_nobin;
366 static int p_ml_nobin;
367 static long p_tw_nobin;
368 static long p_wm_nobin;
370 /* Saved values for when 'paste' is set */
371 static long p_tw_nopaste;
372 static long p_wm_nopaste;
373 static long p_sts_nopaste;
374 static int p_ai_nopaste;
376 struct vimoption
378 char *fullname; /* full option name */
379 char *shortname; /* permissible abbreviation */
380 long_u flags; /* see below */
381 char_u *var; /* global option: pointer to variable;
382 * window-local option: VAR_WIN;
383 * buffer-local option: global value */
384 idopt_T indir; /* global option: PV_NONE;
385 * local option: indirect option index */
386 char_u *def_val[2]; /* default values for variable (vi and vim) */
387 #ifdef FEAT_EVAL
388 scid_T scriptID; /* script in which the option was last set */
389 #endif
392 #define VI_DEFAULT 0 /* def_val[VI_DEFAULT] is Vi default value */
393 #define VIM_DEFAULT 1 /* def_val[VIM_DEFAULT] is Vim default value */
396 * Flags
398 #define P_BOOL 0x01 /* the option is boolean */
399 #define P_NUM 0x02 /* the option is numeric */
400 #define P_STRING 0x04 /* the option is a string */
401 #define P_ALLOCED 0x08 /* the string option is in allocated memory,
402 must use vim_free() when assigning new
403 value. Not set if default is the same. */
404 #define P_EXPAND 0x10 /* environment expansion. NOTE: P_EXPAND can
405 never be used for local or hidden options! */
406 #define P_NODEFAULT 0x40 /* don't set to default value */
407 #define P_DEF_ALLOCED 0x80 /* default value is in allocated memory, must
408 use vim_free() when assigning new value */
409 #define P_WAS_SET 0x100 /* option has been set/reset */
410 #define P_NO_MKRC 0x200 /* don't include in :mkvimrc output */
411 #define P_VI_DEF 0x400 /* Use Vi default for Vim */
412 #define P_VIM 0x800 /* Vim option, reset when 'cp' set */
414 /* when option changed, what to display: */
415 #define P_RSTAT 0x1000 /* redraw status lines */
416 #define P_RWIN 0x2000 /* redraw current window */
417 #define P_RBUF 0x4000 /* redraw current buffer */
418 #define P_RALL 0x6000 /* redraw all windows */
419 #define P_RCLR 0x7000 /* clear and redraw all */
421 #define P_COMMA 0x8000 /* comma separated list */
422 #define P_NODUP 0x10000L/* don't allow duplicate strings */
423 #define P_FLAGLIST 0x20000L/* list of single-char flags */
425 #define P_SECURE 0x40000L/* cannot change in modeline or secure mode */
426 #define P_GETTEXT 0x80000L/* expand default value with _() */
427 #define P_NOGLOB 0x100000L/* do not use local value for global vimrc */
428 #define P_NFNAME 0x200000L/* only normal file name chars allowed */
429 #define P_INSECURE 0x400000L/* option was set from a modeline */
430 #define P_PRI_MKRC 0x800000L/* priority for :mkvimrc (setting option has
431 side effects) */
433 #define ISK_LATIN1 (char_u *)"@,48-57,_,192-255"
435 /* 'isprint' for latin1 is also used for MS-Windows cp1252, where 0x80 is used
436 * for the currency sign. */
437 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
438 # define ISP_LATIN1 (char_u *)"@,~-255"
439 #else
440 # define ISP_LATIN1 (char_u *)"@,161-255"
441 #endif
443 /* The 16 bit MS-DOS version is low on space, make the string as short as
444 * possible when compiling with few features. */
445 #if defined(FEAT_DIFF) || defined(FEAT_FOLDING) || defined(FEAT_SPELL) \
446 || defined(FEAT_VERTSPLIT) || defined(FEAT_CLIPBOARD) \
447 || defined(FEAT_INS_EXPAND) || defined(FEAT_SYN_HL)
448 # 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"
449 #else
450 # 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"
451 #endif
454 * options[] is initialized here.
455 * The order of the options MUST be alphabetic for ":set all" and findoption().
456 * All option names MUST start with a lowercase letter (for findoption()).
457 * Exception: "t_" options are at the end.
458 * The options with a NULL variable are 'hidden': a set command for them is
459 * ignored and they are not printed.
461 static struct vimoption
462 #ifdef FEAT_GUI_W16
463 _far
464 #endif
465 options[] =
467 {"aleph", "al", P_NUM|P_VI_DEF,
468 #ifdef FEAT_RIGHTLEFT
469 (char_u *)&p_aleph, PV_NONE,
470 #else
471 (char_u *)NULL, PV_NONE,
472 #endif
474 #if (defined(MSDOS) || defined(WIN3264) || defined(OS2)) && !defined(FEAT_GUI_W32)
475 (char_u *)128L,
476 #else
477 (char_u *)224L,
478 #endif
479 (char_u *)0L}},
480 {"antialias", "anti", P_BOOL|P_VI_DEF|P_VIM|P_RCLR,
481 #ifdef FEAT_ANTIALIAS
482 (char_u *)&p_antialias, PV_NONE,
483 #else
484 (char_u *)NULL, PV_NONE,
485 #endif
486 #if FEAT_GUI_MACVIM
487 {(char_u *)TRUE, (char_u *)0L}},
488 #else
489 {(char_u *)FALSE, (char_u *)0L}},
490 #endif
491 {"arabic", "arab", P_BOOL|P_VI_DEF|P_VIM,
492 #ifdef FEAT_ARABIC
493 (char_u *)VAR_WIN, PV_ARAB,
494 #else
495 (char_u *)NULL, PV_NONE,
496 #endif
497 {(char_u *)FALSE, (char_u *)0L}},
498 {"arabicshape", "arshape", P_BOOL|P_VI_DEF|P_VIM|P_RCLR,
499 #ifdef FEAT_ARABIC
500 (char_u *)&p_arshape, PV_NONE,
501 #else
502 (char_u *)NULL, PV_NONE,
503 #endif
504 {(char_u *)TRUE, (char_u *)0L}},
505 {"allowrevins", "ari", P_BOOL|P_VI_DEF|P_VIM,
506 #ifdef FEAT_RIGHTLEFT
507 (char_u *)&p_ari, PV_NONE,
508 #else
509 (char_u *)NULL, PV_NONE,
510 #endif
511 {(char_u *)FALSE, (char_u *)0L}},
512 {"altkeymap", "akm", P_BOOL|P_VI_DEF,
513 #ifdef FEAT_FKMAP
514 (char_u *)&p_altkeymap, PV_NONE,
515 #else
516 (char_u *)NULL, PV_NONE,
517 #endif
518 {(char_u *)FALSE, (char_u *)0L}},
519 {"ambiwidth", "ambw", P_STRING|P_VI_DEF|P_RCLR,
520 #if defined(FEAT_MBYTE)
521 (char_u *)&p_ambw, PV_NONE,
522 {(char_u *)"single", (char_u *)0L}
523 #else
524 (char_u *)NULL, PV_NONE,
525 {(char_u *)0L, (char_u *)0L}
526 #endif
528 #ifdef FEAT_AUTOCHDIR
529 {"autochdir", "acd", P_BOOL|P_VI_DEF,
530 (char_u *)&p_acd, PV_NONE,
531 {(char_u *)FALSE, (char_u *)0L}},
532 #endif
533 {"autoindent", "ai", P_BOOL|P_VI_DEF,
534 (char_u *)&p_ai, PV_AI,
535 {(char_u *)FALSE, (char_u *)0L}},
536 {"autoprint", "ap", P_BOOL|P_VI_DEF,
537 (char_u *)NULL, PV_NONE,
538 {(char_u *)FALSE, (char_u *)0L}},
539 {"autoread", "ar", P_BOOL|P_VI_DEF,
540 (char_u *)&p_ar, PV_AR,
541 {(char_u *)FALSE, (char_u *)0L}},
542 {"autowrite", "aw", P_BOOL|P_VI_DEF,
543 (char_u *)&p_aw, PV_NONE,
544 {(char_u *)FALSE, (char_u *)0L}},
545 {"autowriteall","awa", P_BOOL|P_VI_DEF,
546 (char_u *)&p_awa, PV_NONE,
547 {(char_u *)FALSE, (char_u *)0L}},
548 {"background", "bg", P_STRING|P_VI_DEF|P_RCLR,
549 (char_u *)&p_bg, PV_NONE,
551 #if (defined(MSDOS) || defined(OS2) || defined(WIN3264)) && !defined(FEAT_GUI)
552 (char_u *)"dark",
553 #else
554 (char_u *)"light",
555 #endif
556 (char_u *)0L}},
557 {"backspace", "bs", P_STRING|P_VI_DEF|P_VIM|P_COMMA|P_NODUP,
558 (char_u *)&p_bs, PV_NONE,
559 {(char_u *)"", (char_u *)0L}},
560 {"backup", "bk", P_BOOL|P_VI_DEF|P_VIM,
561 (char_u *)&p_bk, PV_NONE,
562 {(char_u *)FALSE, (char_u *)0L}},
563 {"backupcopy", "bkc", P_STRING|P_VIM|P_COMMA|P_NODUP,
564 (char_u *)&p_bkc, PV_NONE,
565 #ifdef UNIX
566 {(char_u *)"yes", (char_u *)"auto"}
567 #else
568 {(char_u *)"auto", (char_u *)"auto"}
569 #endif
571 {"backupdir", "bdir", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP|P_SECURE,
572 (char_u *)&p_bdir, PV_NONE,
573 {(char_u *)DFLT_BDIR, (char_u *)0L}},
574 {"backupext", "bex", P_STRING|P_VI_DEF|P_NFNAME,
575 (char_u *)&p_bex, PV_NONE,
577 #ifdef VMS
578 (char_u *)"_",
579 #else
580 (char_u *)"~",
581 #endif
582 (char_u *)0L}},
583 {"backupskip", "bsk", P_STRING|P_VI_DEF|P_COMMA,
584 #ifdef FEAT_WILDIGN
585 (char_u *)&p_bsk, PV_NONE,
586 {(char_u *)"", (char_u *)0L}
587 #else
588 (char_u *)NULL, PV_NONE,
589 {(char_u *)0L, (char_u *)0L}
590 #endif
592 #ifdef FEAT_BEVAL
593 {"balloondelay","bdlay",P_NUM|P_VI_DEF,
594 (char_u *)&p_bdlay, PV_NONE,
595 {(char_u *)600L, (char_u *)0L}},
596 {"ballooneval", "beval",P_BOOL|P_VI_DEF|P_NO_MKRC,
597 (char_u *)&p_beval, PV_NONE,
598 {(char_u *)FALSE, (char_u *)0L}},
599 # ifdef FEAT_EVAL
600 {"balloonexpr", "bexpr", P_STRING|P_ALLOCED|P_VI_DEF|P_VIM,
601 (char_u *)&p_bexpr, PV_BEXPR,
602 {(char_u *)"", (char_u *)0L}},
603 # endif
604 #endif
605 {"beautify", "bf", P_BOOL|P_VI_DEF,
606 (char_u *)NULL, PV_NONE,
607 {(char_u *)FALSE, (char_u *)0L}},
608 {"binary", "bin", P_BOOL|P_VI_DEF|P_RSTAT,
609 (char_u *)&p_bin, PV_BIN,
610 {(char_u *)FALSE, (char_u *)0L}},
611 {"bioskey", "biosk",P_BOOL|P_VI_DEF,
612 #ifdef MSDOS
613 (char_u *)&p_biosk, PV_NONE,
614 #else
615 (char_u *)NULL, PV_NONE,
616 #endif
617 {(char_u *)TRUE, (char_u *)0L}},
618 {"bomb", NULL, P_BOOL|P_NO_MKRC|P_VI_DEF|P_RSTAT,
619 #ifdef FEAT_MBYTE
620 (char_u *)&p_bomb, PV_BOMB,
621 #else
622 (char_u *)NULL, PV_NONE,
623 #endif
624 {(char_u *)FALSE, (char_u *)0L}},
625 {"breakat", "brk", P_STRING|P_VI_DEF|P_RALL|P_FLAGLIST,
626 #ifdef FEAT_LINEBREAK
627 (char_u *)&p_breakat, PV_NONE,
628 {(char_u *)" \t!@*-+;:,./?", (char_u *)0L}
629 #else
630 (char_u *)NULL, PV_NONE,
631 {(char_u *)0L, (char_u *)0L}
632 #endif
634 {"browsedir", "bsdir",P_STRING|P_VI_DEF,
635 #ifdef FEAT_BROWSE
636 (char_u *)&p_bsdir, PV_NONE,
637 {(char_u *)"last", (char_u *)0L}
638 #else
639 (char_u *)NULL, PV_NONE,
640 {(char_u *)0L, (char_u *)0L}
641 #endif
643 {"bufhidden", "bh", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB,
644 #if defined(FEAT_QUICKFIX)
645 (char_u *)&p_bh, PV_BH,
646 {(char_u *)"", (char_u *)0L}
647 #else
648 (char_u *)NULL, PV_NONE,
649 {(char_u *)0L, (char_u *)0L}
650 #endif
652 {"buflisted", "bl", P_BOOL|P_VI_DEF|P_NOGLOB,
653 (char_u *)&p_bl, PV_BL,
654 {(char_u *)1L, (char_u *)0L}
656 {"buftype", "bt", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB,
657 #if defined(FEAT_QUICKFIX)
658 (char_u *)&p_bt, PV_BT,
659 {(char_u *)"", (char_u *)0L}
660 #else
661 (char_u *)NULL, PV_NONE,
662 {(char_u *)0L, (char_u *)0L}
663 #endif
665 {"casemap", "cmp", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
666 #ifdef FEAT_MBYTE
667 (char_u *)&p_cmp, PV_NONE,
668 {(char_u *)"internal,keepascii", (char_u *)0L}
669 #else
670 (char_u *)NULL, PV_NONE,
671 {(char_u *)0L, (char_u *)0L}
672 #endif
674 {"cdpath", "cd", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
675 #ifdef FEAT_SEARCHPATH
676 (char_u *)&p_cdpath, PV_NONE,
677 {(char_u *)",,", (char_u *)0L}
678 #else
679 (char_u *)NULL, PV_NONE,
680 {(char_u *)0L, (char_u *)0L}
681 #endif
683 {"cedit", NULL, P_STRING,
684 #ifdef FEAT_CMDWIN
685 (char_u *)&p_cedit, PV_NONE,
686 {(char_u *)"", (char_u *)CTRL_F_STR}
687 #else
688 (char_u *)NULL, PV_NONE,
689 {(char_u *)0L, (char_u *)0L}
690 #endif
692 {"charconvert", "ccv", P_STRING|P_VI_DEF|P_SECURE,
693 #if defined(FEAT_MBYTE) && defined(FEAT_EVAL)
694 (char_u *)&p_ccv, PV_NONE,
695 {(char_u *)"", (char_u *)0L}
696 #else
697 (char_u *)NULL, PV_NONE,
698 {(char_u *)0L, (char_u *)0L}
699 #endif
701 {"cindent", "cin", P_BOOL|P_VI_DEF|P_VIM,
702 #ifdef FEAT_CINDENT
703 (char_u *)&p_cin, PV_CIN,
704 #else
705 (char_u *)NULL, PV_NONE,
706 #endif
707 {(char_u *)FALSE, (char_u *)0L}},
708 {"cinkeys", "cink", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
709 #ifdef FEAT_CINDENT
710 (char_u *)&p_cink, PV_CINK,
711 {(char_u *)"0{,0},0),:,0#,!^F,o,O,e", (char_u *)0L}
712 #else
713 (char_u *)NULL, PV_NONE,
714 {(char_u *)0L, (char_u *)0L}
715 #endif
717 {"cinoptions", "cino", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
718 #ifdef FEAT_CINDENT
719 (char_u *)&p_cino, PV_CINO,
720 #else
721 (char_u *)NULL, PV_NONE,
722 #endif
723 {(char_u *)"", (char_u *)0L}},
724 {"cinwords", "cinw", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
725 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
726 (char_u *)&p_cinw, PV_CINW,
727 {(char_u *)"if,else,while,do,for,switch",
728 (char_u *)0L}
729 #else
730 (char_u *)NULL, PV_NONE,
731 {(char_u *)0L, (char_u *)0L}
732 #endif
734 {"clipboard", "cb", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
735 #ifdef FEAT_CLIPBOARD
736 (char_u *)&p_cb, PV_NONE,
737 # ifdef FEAT_XCLIPBOARD
738 {(char_u *)"autoselect,exclude:cons\\|linux",
739 (char_u *)0L}
740 # else
741 {(char_u *)"", (char_u *)0L}
742 # endif
743 #else
744 (char_u *)NULL, PV_NONE,
745 {(char_u *)"", (char_u *)0L}
746 #endif
748 {"cmdheight", "ch", P_NUM|P_VI_DEF|P_RALL,
749 (char_u *)&p_ch, PV_NONE,
750 {(char_u *)1L, (char_u *)0L}},
751 {"cmdwinheight", "cwh", P_NUM|P_VI_DEF,
752 #ifdef FEAT_CMDWIN
753 (char_u *)&p_cwh, PV_NONE,
754 #else
755 (char_u *)NULL, PV_NONE,
756 #endif
757 {(char_u *)7L, (char_u *)0L}},
758 {"columns", "co", P_NUM|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RCLR,
759 (char_u *)&Columns, PV_NONE,
760 {(char_u *)80L, (char_u *)0L}},
761 {"comments", "com", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
762 #ifdef FEAT_COMMENTS
763 (char_u *)&p_com, PV_COM,
764 {(char_u *)"s1:/*,mb:*,ex:*/,://,b:#,:%,:XCOMM,n:>,fb:-",
765 (char_u *)0L}
766 #else
767 (char_u *)NULL, PV_NONE,
768 {(char_u *)0L, (char_u *)0L}
769 #endif
771 {"commentstring", "cms", P_STRING|P_ALLOCED|P_VI_DEF,
772 #ifdef FEAT_FOLDING
773 (char_u *)&p_cms, PV_CMS,
774 {(char_u *)"/*%s*/", (char_u *)0L}
775 #else
776 (char_u *)NULL, PV_NONE,
777 {(char_u *)0L, (char_u *)0L}
778 #endif
780 /* P_PRI_MKRC isn't needed here, optval_default()
781 * always returns TRUE for 'compatible' */
782 {"compatible", "cp", P_BOOL|P_RALL,
783 (char_u *)&p_cp, PV_NONE,
784 {(char_u *)TRUE, (char_u *)FALSE}},
785 {"complete", "cpt", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
786 #ifdef FEAT_INS_EXPAND
787 (char_u *)&p_cpt, PV_CPT,
788 {(char_u *)".,w,b,u,t,i", (char_u *)0L}
789 #else
790 (char_u *)NULL, PV_NONE,
791 {(char_u *)0L, (char_u *)0L}
792 #endif
794 {"completefunc", "cfu", P_STRING|P_ALLOCED|P_VI_DEF|P_SECURE,
795 #ifdef FEAT_COMPL_FUNC
796 (char_u *)&p_cfu, PV_CFU,
797 {(char_u *)"", (char_u *)0L}
798 #else
799 (char_u *)NULL, PV_NONE,
800 {(char_u *)0L, (char_u *)0L}
801 #endif
803 {"completeopt", "cot", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
804 #ifdef FEAT_INS_EXPAND
805 (char_u *)&p_cot, PV_NONE,
806 {(char_u *)"menu,preview", (char_u *)0L}
807 #else
808 (char_u *)NULL, PV_NONE,
809 {(char_u *)0L, (char_u *)0L}
810 #endif
812 {"confirm", "cf", P_BOOL|P_VI_DEF,
813 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
814 (char_u *)&p_confirm, PV_NONE,
815 #else
816 (char_u *)NULL, PV_NONE,
817 #endif
818 {(char_u *)FALSE, (char_u *)0L}},
819 {"conskey", "consk",P_BOOL|P_VI_DEF,
820 #ifdef MSDOS
821 (char_u *)&p_consk, PV_NONE,
822 #else
823 (char_u *)NULL, PV_NONE,
824 #endif
825 {(char_u *)FALSE, (char_u *)0L}},
826 {"copyindent", "ci", P_BOOL|P_VI_DEF|P_VIM,
827 (char_u *)&p_ci, PV_CI,
828 {(char_u *)FALSE, (char_u *)0L}},
829 {"cpoptions", "cpo", P_STRING|P_VIM|P_RALL|P_FLAGLIST,
830 (char_u *)&p_cpo, PV_NONE,
831 {(char_u *)CPO_VI, (char_u *)CPO_VIM}},
832 {"cscopepathcomp", "cspc", P_NUM|P_VI_DEF|P_VIM,
833 #ifdef FEAT_CSCOPE
834 (char_u *)&p_cspc, PV_NONE,
835 #else
836 (char_u *)NULL, PV_NONE,
837 #endif
838 {(char_u *)0L, (char_u *)0L}},
839 {"cscopeprg", "csprg", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
840 #ifdef FEAT_CSCOPE
841 (char_u *)&p_csprg, PV_NONE,
842 {(char_u *)"cscope", (char_u *)0L}
843 #else
844 (char_u *)NULL, PV_NONE,
845 {(char_u *)0L, (char_u *)0L}
846 #endif
848 {"cscopequickfix", "csqf", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
849 #if defined(FEAT_CSCOPE) && defined(FEAT_QUICKFIX)
850 (char_u *)&p_csqf, PV_NONE,
851 {(char_u *)"", (char_u *)0L}
852 #else
853 (char_u *)NULL, PV_NONE,
854 {(char_u *)0L, (char_u *)0L}
855 #endif
857 {"cscopetag", "cst", P_BOOL|P_VI_DEF|P_VIM,
858 #ifdef FEAT_CSCOPE
859 (char_u *)&p_cst, PV_NONE,
860 #else
861 (char_u *)NULL, PV_NONE,
862 #endif
863 {(char_u *)0L, (char_u *)0L}},
864 {"cscopetagorder", "csto", P_NUM|P_VI_DEF|P_VIM,
865 #ifdef FEAT_CSCOPE
866 (char_u *)&p_csto, PV_NONE,
867 #else
868 (char_u *)NULL, PV_NONE,
869 #endif
870 {(char_u *)0L, (char_u *)0L}},
871 {"cscopeverbose", "csverb", P_BOOL|P_VI_DEF|P_VIM,
872 #ifdef FEAT_CSCOPE
873 (char_u *)&p_csverbose, PV_NONE,
874 #else
875 (char_u *)NULL, PV_NONE,
876 #endif
877 {(char_u *)0L, (char_u *)0L}},
878 {"cursorcolumn", "cuc", P_BOOL|P_VI_DEF|P_RWIN,
879 #ifdef FEAT_SYN_HL
880 (char_u *)VAR_WIN, PV_CUC,
881 #else
882 (char_u *)NULL, PV_NONE,
883 #endif
884 {(char_u *)FALSE, (char_u *)0L}},
885 {"cursorline", "cul", P_BOOL|P_VI_DEF|P_RWIN,
886 #ifdef FEAT_SYN_HL
887 (char_u *)VAR_WIN, PV_CUL,
888 #else
889 (char_u *)NULL, PV_NONE,
890 #endif
891 {(char_u *)FALSE, (char_u *)0L}},
892 {"debug", NULL, P_STRING|P_VI_DEF,
893 (char_u *)&p_debug, PV_NONE,
894 {(char_u *)"", (char_u *)0L}},
895 {"define", "def", P_STRING|P_ALLOCED|P_VI_DEF,
896 #ifdef FEAT_FIND_ID
897 (char_u *)&p_def, PV_DEF,
898 {(char_u *)"^\\s*#\\s*define", (char_u *)0L}
899 #else
900 (char_u *)NULL, PV_NONE,
901 {(char_u *)NULL, (char_u *)0L}
902 #endif
904 {"delcombine", "deco", P_BOOL|P_VI_DEF|P_VIM,
905 #ifdef FEAT_MBYTE
906 (char_u *)&p_deco, PV_NONE,
907 #else
908 (char_u *)NULL, PV_NONE,
909 #endif
910 {(char_u *)FALSE, (char_u *)0L}},
911 {"dictionary", "dict", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
912 #ifdef FEAT_INS_EXPAND
913 (char_u *)&p_dict, PV_DICT,
914 #else
915 (char_u *)NULL, PV_NONE,
916 #endif
917 {(char_u *)"", (char_u *)0L}},
918 {"diff", NULL, P_BOOL|P_VI_DEF|P_RWIN|P_NOGLOB,
919 #ifdef FEAT_DIFF
920 (char_u *)VAR_WIN, PV_DIFF,
921 #else
922 (char_u *)NULL, PV_NONE,
923 #endif
924 {(char_u *)FALSE, (char_u *)0L}},
925 {"diffexpr", "dex", P_STRING|P_VI_DEF|P_SECURE,
926 #if defined(FEAT_DIFF) && defined(FEAT_EVAL)
927 (char_u *)&p_dex, PV_NONE,
928 {(char_u *)"", (char_u *)0L}
929 #else
930 (char_u *)NULL, PV_NONE,
931 {(char_u *)0L, (char_u *)0L}
932 #endif
934 {"diffopt", "dip", P_STRING|P_ALLOCED|P_VI_DEF|P_RWIN|P_COMMA|P_NODUP,
935 #ifdef FEAT_DIFF
936 (char_u *)&p_dip, PV_NONE,
937 {(char_u *)"filler", (char_u *)NULL}
938 #else
939 (char_u *)NULL, PV_NONE,
940 {(char_u *)"", (char_u *)NULL}
941 #endif
943 {"digraph", "dg", P_BOOL|P_VI_DEF|P_VIM,
944 #ifdef FEAT_DIGRAPHS
945 (char_u *)&p_dg, PV_NONE,
946 #else
947 (char_u *)NULL, PV_NONE,
948 #endif
949 {(char_u *)FALSE, (char_u *)0L}},
950 {"directory", "dir", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP|P_SECURE,
951 (char_u *)&p_dir, PV_NONE,
952 {(char_u *)DFLT_DIR, (char_u *)0L}},
953 {"display", "dy", P_STRING|P_VI_DEF|P_COMMA|P_RALL|P_NODUP,
954 (char_u *)&p_dy, PV_NONE,
955 {(char_u *)"", (char_u *)0L}},
956 {"eadirection", "ead", P_STRING|P_VI_DEF,
957 #ifdef FEAT_VERTSPLIT
958 (char_u *)&p_ead, PV_NONE,
959 {(char_u *)"both", (char_u *)0L}
960 #else
961 (char_u *)NULL, PV_NONE,
962 {(char_u *)NULL, (char_u *)0L}
963 #endif
965 {"edcompatible","ed", P_BOOL|P_VI_DEF,
966 (char_u *)&p_ed, PV_NONE,
967 {(char_u *)FALSE, (char_u *)0L}},
968 {"encoding", "enc", P_STRING|P_VI_DEF|P_RCLR,
969 #ifdef FEAT_MBYTE
970 (char_u *)&p_enc, PV_NONE,
971 {(char_u *)ENC_DFLT, (char_u *)0L}
972 #else
973 (char_u *)NULL, PV_NONE,
974 {(char_u *)0L, (char_u *)0L}
975 #endif
977 {"endofline", "eol", P_BOOL|P_NO_MKRC|P_VI_DEF|P_RSTAT,
978 (char_u *)&p_eol, PV_EOL,
979 {(char_u *)TRUE, (char_u *)0L}},
980 {"equalalways", "ea", P_BOOL|P_VI_DEF|P_RALL,
981 (char_u *)&p_ea, PV_NONE,
982 {(char_u *)TRUE, (char_u *)0L}},
983 {"equalprg", "ep", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
984 (char_u *)&p_ep, PV_EP,
985 {(char_u *)"", (char_u *)0L}},
986 {"errorbells", "eb", P_BOOL|P_VI_DEF,
987 (char_u *)&p_eb, PV_NONE,
988 {(char_u *)FALSE, (char_u *)0L}},
989 {"errorfile", "ef", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
990 #ifdef FEAT_QUICKFIX
991 (char_u *)&p_ef, PV_NONE,
992 {(char_u *)DFLT_ERRORFILE, (char_u *)0L}
993 #else
994 (char_u *)NULL, PV_NONE,
995 {(char_u *)NULL, (char_u *)0L}
996 #endif
998 {"errorformat", "efm", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
999 #ifdef FEAT_QUICKFIX
1000 (char_u *)&p_efm, PV_EFM,
1001 {(char_u *)DFLT_EFM, (char_u *)0L},
1002 #else
1003 (char_u *)NULL, PV_NONE,
1004 {(char_u *)NULL, (char_u *)0L}
1005 #endif
1007 {"esckeys", "ek", P_BOOL|P_VIM,
1008 (char_u *)&p_ek, PV_NONE,
1009 {(char_u *)FALSE, (char_u *)TRUE}},
1010 {"eventignore", "ei", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1011 #ifdef FEAT_AUTOCMD
1012 (char_u *)&p_ei, PV_NONE,
1013 #else
1014 (char_u *)NULL, PV_NONE,
1015 #endif
1016 {(char_u *)"", (char_u *)0L}},
1017 {"expandtab", "et", P_BOOL|P_VI_DEF|P_VIM,
1018 (char_u *)&p_et, PV_ET,
1019 {(char_u *)FALSE, (char_u *)0L}},
1020 {"exrc", "ex", P_BOOL|P_VI_DEF|P_SECURE,
1021 (char_u *)&p_exrc, PV_NONE,
1022 {(char_u *)FALSE, (char_u *)0L}},
1023 {"fileencoding","fenc", P_STRING|P_ALLOCED|P_VI_DEF|P_RSTAT|P_RBUF|P_NO_MKRC,
1024 #ifdef FEAT_MBYTE
1025 (char_u *)&p_fenc, PV_FENC,
1026 {(char_u *)"", (char_u *)0L}
1027 #else
1028 (char_u *)NULL, PV_NONE,
1029 {(char_u *)0L, (char_u *)0L}
1030 #endif
1032 {"fileencodings","fencs", P_STRING|P_VI_DEF|P_COMMA,
1033 #ifdef FEAT_MBYTE
1034 (char_u *)&p_fencs, PV_NONE,
1035 {(char_u *)"ucs-bom", (char_u *)0L}
1036 #else
1037 (char_u *)NULL, PV_NONE,
1038 {(char_u *)0L, (char_u *)0L}
1039 #endif
1041 {"fileformat", "ff", P_STRING|P_ALLOCED|P_VI_DEF|P_RSTAT|P_NO_MKRC,
1042 (char_u *)&p_ff, PV_FF,
1043 {(char_u *)DFLT_FF, (char_u *)0L}},
1044 {"fileformats", "ffs", P_STRING|P_VIM|P_COMMA|P_NODUP,
1045 (char_u *)&p_ffs, PV_NONE,
1046 {(char_u *)DFLT_FFS_VI, (char_u *)DFLT_FFS_VIM}},
1047 {"filetype", "ft", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB|P_NFNAME,
1048 #ifdef FEAT_AUTOCMD
1049 (char_u *)&p_ft, PV_FT,
1050 {(char_u *)"", (char_u *)0L}
1051 #else
1052 (char_u *)NULL, PV_NONE,
1053 {(char_u *)0L, (char_u *)0L}
1054 #endif
1056 {"fillchars", "fcs", P_STRING|P_VI_DEF|P_RALL|P_COMMA|P_NODUP,
1057 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
1058 (char_u *)&p_fcs, PV_NONE,
1059 {(char_u *)"vert:|,fold:-", (char_u *)0L}
1060 #else
1061 (char_u *)NULL, PV_NONE,
1062 {(char_u *)"", (char_u *)0L}
1063 #endif
1065 {"fkmap", "fk", P_BOOL|P_VI_DEF,
1066 #ifdef FEAT_FKMAP
1067 (char_u *)&p_fkmap, PV_NONE,
1068 #else
1069 (char_u *)NULL, PV_NONE,
1070 #endif
1071 {(char_u *)FALSE, (char_u *)0L}},
1072 {"flash", "fl", P_BOOL|P_VI_DEF,
1073 (char_u *)NULL, PV_NONE,
1074 {(char_u *)FALSE, (char_u *)0L}},
1075 #ifdef FEAT_FOLDING
1076 {"foldclose", "fcl", P_STRING|P_VI_DEF|P_COMMA|P_NODUP|P_RWIN,
1077 (char_u *)&p_fcl, PV_NONE,
1078 {(char_u *)"", (char_u *)0L}},
1079 {"foldcolumn", "fdc", P_NUM|P_VI_DEF|P_RWIN,
1080 (char_u *)VAR_WIN, PV_FDC,
1081 {(char_u *)FALSE, (char_u *)0L}},
1082 {"foldenable", "fen", P_BOOL|P_VI_DEF|P_RWIN,
1083 (char_u *)VAR_WIN, PV_FEN,
1084 {(char_u *)TRUE, (char_u *)0L}},
1085 {"foldexpr", "fde", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1086 # ifdef FEAT_EVAL
1087 (char_u *)VAR_WIN, PV_FDE,
1088 {(char_u *)"0", (char_u *)NULL}
1089 # else
1090 (char_u *)NULL, PV_NONE,
1091 {(char_u *)NULL, (char_u *)0L}
1092 # endif
1094 {"foldignore", "fdi", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1095 (char_u *)VAR_WIN, PV_FDI,
1096 {(char_u *)"#", (char_u *)NULL}},
1097 {"foldlevel", "fdl", P_NUM|P_VI_DEF|P_RWIN,
1098 (char_u *)VAR_WIN, PV_FDL,
1099 {(char_u *)0L, (char_u *)0L}},
1100 {"foldlevelstart","fdls", P_NUM|P_VI_DEF,
1101 (char_u *)&p_fdls, PV_NONE,
1102 {(char_u *)-1L, (char_u *)0L}},
1103 {"foldmarker", "fmr", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|
1104 P_RWIN|P_COMMA|P_NODUP,
1105 (char_u *)VAR_WIN, PV_FMR,
1106 {(char_u *)"{{{,}}}", (char_u *)NULL}},
1107 {"foldmethod", "fdm", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1108 (char_u *)VAR_WIN, PV_FDM,
1109 {(char_u *)"manual", (char_u *)NULL}},
1110 {"foldminlines","fml", P_NUM|P_VI_DEF|P_RWIN,
1111 (char_u *)VAR_WIN, PV_FML,
1112 {(char_u *)1L, (char_u *)0L}},
1113 {"foldnestmax", "fdn", P_NUM|P_VI_DEF|P_RWIN,
1114 (char_u *)VAR_WIN, PV_FDN,
1115 {(char_u *)20L, (char_u *)0L}},
1116 {"foldopen", "fdo", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1117 (char_u *)&p_fdo, PV_NONE,
1118 {(char_u *)"block,hor,mark,percent,quickfix,search,tag,undo",
1119 (char_u *)0L}},
1120 {"foldtext", "fdt", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1121 # ifdef FEAT_EVAL
1122 (char_u *)VAR_WIN, PV_FDT,
1123 {(char_u *)"foldtext()", (char_u *)NULL}
1124 # else
1125 (char_u *)NULL, PV_NONE,
1126 {(char_u *)NULL, (char_u *)0L}
1127 # endif
1129 #endif
1130 {"formatexpr", "fex", P_STRING|P_ALLOCED|P_VI_DEF|P_VIM,
1131 #ifdef FEAT_EVAL
1132 (char_u *)&p_fex, PV_FEX,
1133 {(char_u *)"", (char_u *)0L}
1134 #else
1135 (char_u *)NULL, PV_NONE,
1136 {(char_u *)0L, (char_u *)0L}
1137 #endif
1139 {"formatoptions","fo", P_STRING|P_ALLOCED|P_VIM|P_FLAGLIST,
1140 (char_u *)&p_fo, PV_FO,
1141 {(char_u *)DFLT_FO_VI, (char_u *)DFLT_FO_VIM}},
1142 {"formatlistpat","flp", P_STRING|P_ALLOCED|P_VI_DEF,
1143 (char_u *)&p_flp, PV_FLP,
1144 {(char_u *)"^\\s*\\d\\+[\\]:.)}\\t ]\\s*", (char_u *)0L}},
1145 {"formatprg", "fp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1146 (char_u *)&p_fp, PV_NONE,
1147 {(char_u *)"", (char_u *)0L}},
1148 {"fsync", "fs", P_BOOL|P_SECURE|P_VI_DEF,
1149 #ifdef HAVE_FSYNC
1150 (char_u *)&p_fs, PV_NONE,
1151 {(char_u *)TRUE, (char_u *)0L}
1152 #else
1153 (char_u *)NULL, PV_NONE,
1154 {(char_u *)FALSE, (char_u *)0L}
1155 #endif
1157 {"fullscreen", "fu", P_BOOL,
1158 #ifdef FEAT_FULLSCREEN
1159 (char_u *)&p_fullscreen, PV_NONE,
1160 #else
1161 (char_u *)NULL, PV_NONE,
1162 #endif
1163 {(char_u *)FALSE, (char_u *)0L}},
1164 {"fuoptions", "fuopt", P_STRING|P_COMMA|P_NODUP|P_VI_DEF,
1165 #ifdef FEAT_FULLSCREEN
1166 (char_u *)&p_fuoptions, PV_NONE,
1167 {(char_u *)"maxvert", (char_u *)0L}},
1168 #else
1169 (char_u *)NULL, PV_NONE,
1170 {(char_u *)NULL, (char_u *)0L}},
1171 #endif
1172 {"gdefault", "gd", P_BOOL|P_VI_DEF|P_VIM,
1173 (char_u *)&p_gd, PV_NONE,
1174 {(char_u *)FALSE, (char_u *)0L}},
1175 {"graphic", "gr", P_BOOL|P_VI_DEF,
1176 (char_u *)NULL, PV_NONE,
1177 {(char_u *)FALSE, (char_u *)0L}},
1178 {"grepformat", "gfm", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1179 #ifdef FEAT_QUICKFIX
1180 (char_u *)&p_gefm, PV_NONE,
1181 {(char_u *)DFLT_GREPFORMAT, (char_u *)0L},
1182 #else
1183 (char_u *)NULL, PV_NONE,
1184 {(char_u *)NULL, (char_u *)0L}
1185 #endif
1187 {"grepprg", "gp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1188 #ifdef FEAT_QUICKFIX
1189 (char_u *)&p_gp, PV_GP,
1191 # ifdef WIN3264
1192 /* may be changed to "grep -n" in os_win32.c */
1193 (char_u *)"findstr /n",
1194 # else
1195 # ifdef UNIX
1196 /* Add an extra file name so that grep will always
1197 * insert a file name in the match line. */
1198 (char_u *)"grep -n $* /dev/null",
1199 # else
1200 # ifdef VMS
1201 (char_u *)"SEARCH/NUMBERS ",
1202 # else
1203 (char_u *)"grep -n ",
1204 #endif
1205 #endif
1206 # endif
1207 (char_u *)0L},
1208 #else
1209 (char_u *)NULL, PV_NONE,
1210 {(char_u *)NULL, (char_u *)0L}
1211 #endif
1213 {"guicursor", "gcr", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1214 #ifdef CURSOR_SHAPE
1215 (char_u *)&p_guicursor, PV_NONE,
1217 # ifdef FEAT_GUI
1218 (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",
1219 # else /* MSDOS or Win32 console */
1220 (char_u *)"n-v-c:block,o:hor50,i-ci:hor15,r-cr:hor30,sm:block",
1221 # endif
1222 (char_u *)0L}
1223 #else
1224 (char_u *)NULL, PV_NONE,
1225 {(char_u *)NULL, (char_u *)0L}
1226 #endif
1228 {"guifont", "gfn", P_STRING|P_VI_DEF|P_RCLR|P_COMMA|P_NODUP,
1229 #ifdef FEAT_GUI
1230 (char_u *)&p_guifont, PV_NONE,
1231 {(char_u *)"", (char_u *)0L}
1232 #else
1233 (char_u *)NULL, PV_NONE,
1234 {(char_u *)NULL, (char_u *)0L}
1235 #endif
1237 {"guifontset", "gfs", P_STRING|P_VI_DEF|P_RCLR|P_COMMA,
1238 #if defined(FEAT_GUI) && defined(FEAT_XFONTSET)
1239 (char_u *)&p_guifontset, PV_NONE,
1240 {(char_u *)"", (char_u *)0L}
1241 #else
1242 (char_u *)NULL, PV_NONE,
1243 {(char_u *)NULL, (char_u *)0L}
1244 #endif
1246 {"guifontwide", "gfw", P_STRING|P_VI_DEF|P_RCLR|P_COMMA|P_NODUP,
1247 #if defined(FEAT_GUI) && defined(FEAT_MBYTE)
1248 (char_u *)&p_guifontwide, PV_NONE,
1249 {(char_u *)"", (char_u *)0L}
1250 #else
1251 (char_u *)NULL, PV_NONE,
1252 {(char_u *)NULL, (char_u *)0L}
1253 #endif
1255 {"guiheadroom", "ghr", P_NUM|P_VI_DEF,
1256 #if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11)
1257 (char_u *)&p_ghr, PV_NONE,
1258 #else
1259 (char_u *)NULL, PV_NONE,
1260 #endif
1261 {(char_u *)50L, (char_u *)0L}},
1262 {"guioptions", "go", P_STRING|P_VI_DEF|P_RALL|P_FLAGLIST,
1263 #if defined(FEAT_GUI)
1264 (char_u *)&p_go, PV_NONE,
1265 # if defined(UNIX) && !defined(MACOS)
1266 {(char_u *)"aegimrLtT", (char_u *)0L}
1267 # else
1268 {(char_u *)"egmrLtT", (char_u *)0L}
1269 # endif
1270 #else
1271 (char_u *)NULL, PV_NONE,
1272 {(char_u *)NULL, (char_u *)0L}
1273 #endif
1275 {"guipty", NULL, P_BOOL|P_VI_DEF,
1276 #if defined(FEAT_GUI)
1277 (char_u *)&p_guipty, PV_NONE,
1278 #else
1279 (char_u *)NULL, PV_NONE,
1280 #endif
1281 {(char_u *)TRUE, (char_u *)0L}},
1282 {"guitablabel", "gtl", P_STRING|P_VI_DEF|P_RWIN,
1283 #if defined(FEAT_GUI_TABLINE)
1284 (char_u *)&p_gtl, PV_NONE,
1285 {(char_u *)"", (char_u *)0L}
1286 #else
1287 (char_u *)NULL, PV_NONE,
1288 {(char_u *)NULL, (char_u *)0L}
1289 #endif
1291 {"guitabtooltip", "gtt", P_STRING|P_VI_DEF|P_RWIN,
1292 #if defined(FEAT_GUI_TABLINE)
1293 (char_u *)&p_gtt, PV_NONE,
1294 {(char_u *)"", (char_u *)0L}
1295 #else
1296 (char_u *)NULL, PV_NONE,
1297 {(char_u *)NULL, (char_u *)0L}
1298 #endif
1300 {"hardtabs", "ht", P_NUM|P_VI_DEF,
1301 (char_u *)NULL, PV_NONE,
1302 {(char_u *)0L, (char_u *)0L}},
1303 {"helpfile", "hf", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1304 (char_u *)&p_hf, PV_NONE,
1305 {(char_u *)DFLT_HELPFILE, (char_u *)0L}},
1306 {"helpheight", "hh", P_NUM|P_VI_DEF,
1307 #ifdef FEAT_WINDOWS
1308 (char_u *)&p_hh, PV_NONE,
1309 #else
1310 (char_u *)NULL, PV_NONE,
1311 #endif
1312 {(char_u *)20L, (char_u *)0L}},
1313 {"helplang", "hlg", P_STRING|P_VI_DEF|P_COMMA,
1314 #ifdef FEAT_MULTI_LANG
1315 (char_u *)&p_hlg, PV_NONE,
1316 {(char_u *)"", (char_u *)0L}
1317 #else
1318 (char_u *)NULL, PV_NONE,
1319 {(char_u *)0L, (char_u *)0L}
1320 #endif
1322 {"hidden", "hid", P_BOOL|P_VI_DEF,
1323 (char_u *)&p_hid, PV_NONE,
1324 {(char_u *)FALSE, (char_u *)0L}},
1325 {"highlight", "hl", P_STRING|P_VI_DEF|P_RCLR|P_COMMA|P_NODUP,
1326 (char_u *)&p_hl, PV_NONE,
1327 {(char_u *)HIGHLIGHT_INIT, (char_u *)0L}},
1328 {"history", "hi", P_NUM|P_VIM,
1329 (char_u *)&p_hi, PV_NONE,
1330 {(char_u *)0L, (char_u *)20L}},
1331 {"hkmap", "hk", P_BOOL|P_VI_DEF|P_VIM,
1332 #ifdef FEAT_RIGHTLEFT
1333 (char_u *)&p_hkmap, PV_NONE,
1334 #else
1335 (char_u *)NULL, PV_NONE,
1336 #endif
1337 {(char_u *)FALSE, (char_u *)0L}},
1338 {"hkmapp", "hkp", P_BOOL|P_VI_DEF|P_VIM,
1339 #ifdef FEAT_RIGHTLEFT
1340 (char_u *)&p_hkmapp, PV_NONE,
1341 #else
1342 (char_u *)NULL, PV_NONE,
1343 #endif
1344 {(char_u *)FALSE, (char_u *)0L}},
1345 {"hlsearch", "hls", P_BOOL|P_VI_DEF|P_VIM|P_RALL,
1346 (char_u *)&p_hls, PV_NONE,
1347 {(char_u *)FALSE, (char_u *)0L}},
1348 {"icon", NULL, P_BOOL|P_VI_DEF,
1349 #ifdef FEAT_TITLE
1350 (char_u *)&p_icon, PV_NONE,
1351 #else
1352 (char_u *)NULL, PV_NONE,
1353 #endif
1354 {(char_u *)FALSE, (char_u *)0L}},
1355 {"iconstring", NULL, P_STRING|P_VI_DEF,
1356 #ifdef FEAT_TITLE
1357 (char_u *)&p_iconstring, PV_NONE,
1358 #else
1359 (char_u *)NULL, PV_NONE,
1360 #endif
1361 {(char_u *)"", (char_u *)0L}},
1362 {"ignorecase", "ic", P_BOOL|P_VI_DEF,
1363 (char_u *)&p_ic, PV_NONE,
1364 {(char_u *)FALSE, (char_u *)0L}},
1365 {"imactivatekey","imak",P_STRING|P_VI_DEF,
1366 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
1367 (char_u *)&p_imak, PV_NONE,
1368 #else
1369 (char_u *)NULL, PV_NONE,
1370 #endif
1371 {(char_u *)"", (char_u *)0L}},
1372 {"imcmdline", "imc", P_BOOL|P_VI_DEF,
1373 #ifdef USE_IM_CONTROL
1374 (char_u *)&p_imcmdline, PV_NONE,
1375 #else
1376 (char_u *)NULL, PV_NONE,
1377 #endif
1378 {(char_u *)FALSE, (char_u *)0L}},
1379 {"imdisable", "imd", P_BOOL|P_VI_DEF,
1380 #ifdef USE_IM_CONTROL
1381 (char_u *)&p_imdisable, PV_NONE,
1382 #else
1383 (char_u *)NULL, PV_NONE,
1384 #endif
1385 #ifdef __sgi
1386 {(char_u *)TRUE, (char_u *)0L}
1387 #else
1388 {(char_u *)FALSE, (char_u *)0L}
1389 #endif
1391 {"iminsert", "imi", P_NUM|P_VI_DEF,
1392 (char_u *)&p_iminsert, PV_IMI,
1393 #ifdef B_IMODE_IM
1394 {(char_u *)B_IMODE_IM, (char_u *)0L}
1395 #else
1396 {(char_u *)B_IMODE_NONE, (char_u *)0L}
1397 #endif
1399 {"imsearch", "ims", P_NUM|P_VI_DEF,
1400 (char_u *)&p_imsearch, PV_IMS,
1401 #ifdef B_IMODE_IM
1402 {(char_u *)B_IMODE_IM, (char_u *)0L}
1403 #else
1404 {(char_u *)B_IMODE_NONE, (char_u *)0L}
1405 #endif
1407 {"include", "inc", P_STRING|P_ALLOCED|P_VI_DEF,
1408 #ifdef FEAT_FIND_ID
1409 (char_u *)&p_inc, PV_INC,
1410 {(char_u *)"^\\s*#\\s*include", (char_u *)0L}
1411 #else
1412 (char_u *)NULL, PV_NONE,
1413 {(char_u *)0L, (char_u *)0L}
1414 #endif
1416 {"includeexpr", "inex", P_STRING|P_ALLOCED|P_VI_DEF,
1417 #if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
1418 (char_u *)&p_inex, PV_INEX,
1419 {(char_u *)"", (char_u *)0L}
1420 #else
1421 (char_u *)NULL, PV_NONE,
1422 {(char_u *)0L, (char_u *)0L}
1423 #endif
1425 {"incsearch", "is", P_BOOL|P_VI_DEF|P_VIM,
1426 (char_u *)&p_is, PV_NONE,
1427 {(char_u *)FALSE, (char_u *)0L}},
1428 {"indentexpr", "inde", P_STRING|P_ALLOCED|P_VI_DEF|P_VIM,
1429 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
1430 (char_u *)&p_inde, PV_INDE,
1431 {(char_u *)"", (char_u *)0L}
1432 #else
1433 (char_u *)NULL, PV_NONE,
1434 {(char_u *)0L, (char_u *)0L}
1435 #endif
1437 {"indentkeys", "indk", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
1438 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
1439 (char_u *)&p_indk, PV_INDK,
1440 {(char_u *)"0{,0},:,0#,!^F,o,O,e", (char_u *)0L}
1441 #else
1442 (char_u *)NULL, PV_NONE,
1443 {(char_u *)0L, (char_u *)0L}
1444 #endif
1446 {"infercase", "inf", P_BOOL|P_VI_DEF,
1447 (char_u *)&p_inf, PV_INF,
1448 {(char_u *)FALSE, (char_u *)0L}},
1449 {"insertmode", "im", P_BOOL|P_VI_DEF|P_VIM,
1450 (char_u *)&p_im, PV_NONE,
1451 {(char_u *)FALSE, (char_u *)0L}},
1452 {"isfname", "isf", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1453 (char_u *)&p_isf, PV_NONE,
1455 #ifdef BACKSLASH_IN_FILENAME
1456 /* Excluded are: & and ^ are special in cmd.exe
1457 * ( and ) are used in text separating fnames */
1458 (char_u *)"@,48-57,/,\\,.,-,_,+,,,#,$,%,{,},[,],:,@-@,!,~,=",
1459 #else
1460 # ifdef AMIGA
1461 (char_u *)"@,48-57,/,.,-,_,+,,,$,:",
1462 # else
1463 # ifdef VMS
1464 (char_u *)"@,48-57,/,.,-,_,+,,,#,$,%,<,>,[,],:,;,~",
1465 # else /* UNIX et al. */
1466 # ifdef EBCDIC
1467 (char_u *)"@,240-249,/,.,-,_,+,,,#,$,%,~,=",
1468 # else
1469 (char_u *)"@,48-57,/,.,-,_,+,,,#,$,%,~,=",
1470 # endif
1471 # endif
1472 # endif
1473 #endif
1474 (char_u *)0L}},
1475 {"isident", "isi", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1476 (char_u *)&p_isi, PV_NONE,
1478 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
1479 (char_u *)"@,48-57,_,128-167,224-235",
1480 #else
1481 # ifdef EBCDIC
1482 /* TODO: EBCDIC Check this! @ == isalpha()*/
1483 (char_u *)"@,240-249,_,66-73,81-89,98-105,"
1484 "112-120,128,140-142,156,158,172,"
1485 "174,186,191,203-207,219-225,235-239,"
1486 "251-254",
1487 # else
1488 (char_u *)"@,48-57,_,192-255",
1489 # endif
1490 #endif
1491 (char_u *)0L}},
1492 {"iskeyword", "isk", P_STRING|P_ALLOCED|P_VIM|P_COMMA|P_NODUP,
1493 (char_u *)&p_isk, PV_ISK,
1495 #ifdef EBCDIC
1496 (char_u *)"@,240-249,_",
1497 /* TODO: EBCDIC Check this! @ == isalpha()*/
1498 (char_u *)"@,240-249,_,66-73,81-89,98-105,"
1499 "112-120,128,140-142,156,158,172,"
1500 "174,186,191,203-207,219-225,235-239,"
1501 "251-254",
1502 #else
1503 (char_u *)"@,48-57,_",
1504 # if defined(MSDOS) || defined(MSWIN) || defined(OS2)
1505 (char_u *)"@,48-57,_,128-167,224-235"
1506 # else
1507 ISK_LATIN1
1508 # endif
1509 #endif
1511 {"isprint", "isp", P_STRING|P_VI_DEF|P_RALL|P_COMMA|P_NODUP,
1512 (char_u *)&p_isp, PV_NONE,
1514 #if defined(MSDOS) || defined(MSWIN) || defined(OS2) \
1515 || (defined(MACOS) && !defined(MACOS_X)) \
1516 || defined(VMS)
1517 (char_u *)"@,~-255",
1518 #else
1519 # ifdef EBCDIC
1520 /* all chars above 63 are printable */
1521 (char_u *)"63-255",
1522 # else
1523 ISP_LATIN1,
1524 # endif
1525 #endif
1526 (char_u *)0L}},
1527 {"joinspaces", "js", P_BOOL|P_VI_DEF|P_VIM,
1528 (char_u *)&p_js, PV_NONE,
1529 {(char_u *)TRUE, (char_u *)0L}},
1530 {"key", NULL, P_STRING|P_ALLOCED|P_VI_DEF|P_NO_MKRC,
1531 #ifdef FEAT_CRYPT
1532 (char_u *)&p_key, PV_KEY,
1533 {(char_u *)"", (char_u *)0L}
1534 #else
1535 (char_u *)NULL, PV_NONE,
1536 {(char_u *)0L, (char_u *)0L}
1537 #endif
1539 {"keymap", "kmp", P_STRING|P_ALLOCED|P_VI_DEF|P_RBUF|P_RSTAT|P_NFNAME|P_PRI_MKRC,
1540 #ifdef FEAT_KEYMAP
1541 (char_u *)&p_keymap, PV_KMAP,
1542 {(char_u *)"", (char_u *)0L}
1543 #else
1544 (char_u *)NULL, PV_NONE,
1545 {(char_u *)"", (char_u *)0L}
1546 #endif
1548 {"keymodel", "km", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1549 #ifdef FEAT_VISUAL
1550 (char_u *)&p_km, PV_NONE,
1551 #else
1552 (char_u *)NULL, PV_NONE,
1553 #endif
1554 {(char_u *)"", (char_u *)0L}},
1555 {"keywordprg", "kp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1556 (char_u *)&p_kp, PV_KP,
1558 #if defined(MSDOS) || defined(MSWIN)
1559 (char_u *)":help",
1560 #else
1561 #ifdef VMS
1562 (char_u *)"help",
1563 #else
1564 # if defined(OS2)
1565 (char_u *)"view /",
1566 # else
1567 # ifdef USEMAN_S
1568 (char_u *)"man -s",
1569 # else
1570 (char_u *)"man",
1571 # endif
1572 # endif
1573 #endif
1574 #endif
1575 (char_u *)0L}},
1576 {"langmap", "lmap", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1577 #ifdef FEAT_LANGMAP
1578 (char_u *)&p_langmap, PV_NONE,
1579 {(char_u *)"", /* unmatched } */
1580 #else
1581 (char_u *)NULL, PV_NONE,
1582 {(char_u *)NULL,
1583 #endif
1584 (char_u *)0L}},
1585 {"langmenu", "lm", P_STRING|P_VI_DEF|P_NFNAME,
1586 #if defined(FEAT_MENU) && defined(FEAT_MULTI_LANG)
1587 (char_u *)&p_lm, PV_NONE,
1588 #else
1589 (char_u *)NULL, PV_NONE,
1590 #endif
1591 {(char_u *)"", (char_u *)0L}},
1592 {"laststatus", "ls", P_NUM|P_VI_DEF|P_RALL,
1593 #ifdef FEAT_WINDOWS
1594 (char_u *)&p_ls, PV_NONE,
1595 #else
1596 (char_u *)NULL, PV_NONE,
1597 #endif
1598 {(char_u *)1L, (char_u *)0L}},
1599 {"lazyredraw", "lz", P_BOOL|P_VI_DEF,
1600 (char_u *)&p_lz, PV_NONE,
1601 {(char_u *)FALSE, (char_u *)0L}},
1602 {"linebreak", "lbr", P_BOOL|P_VI_DEF|P_RWIN,
1603 #ifdef FEAT_LINEBREAK
1604 (char_u *)VAR_WIN, PV_LBR,
1605 #else
1606 (char_u *)NULL, PV_NONE,
1607 #endif
1608 {(char_u *)FALSE, (char_u *)0L}},
1609 {"lines", NULL, P_NUM|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RCLR,
1610 (char_u *)&Rows, PV_NONE,
1612 #if defined(MSDOS) || defined(WIN3264) || defined(OS2)
1613 (char_u *)25L,
1614 #else
1615 (char_u *)24L,
1616 #endif
1617 (char_u *)0L}},
1618 {"linespace", "lsp", P_NUM|P_VI_DEF|P_RCLR,
1619 #ifdef FEAT_GUI
1620 (char_u *)&p_linespace, PV_NONE,
1621 #else
1622 (char_u *)NULL, PV_NONE,
1623 #endif
1624 #ifdef FEAT_GUI_W32
1625 {(char_u *)1L, (char_u *)0L}
1626 #else
1627 {(char_u *)0L, (char_u *)0L}
1628 #endif
1630 {"lisp", NULL, P_BOOL|P_VI_DEF,
1631 #ifdef FEAT_LISP
1632 (char_u *)&p_lisp, PV_LISP,
1633 #else
1634 (char_u *)NULL, PV_NONE,
1635 #endif
1636 {(char_u *)FALSE, (char_u *)0L}},
1637 {"lispwords", "lw", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1638 #ifdef FEAT_LISP
1639 (char_u *)&p_lispwords, PV_NONE,
1640 {(char_u *)LISPWORD_VALUE, (char_u *)0L}
1641 #else
1642 (char_u *)NULL, PV_NONE,
1643 {(char_u *)"", (char_u *)0L}
1644 #endif
1646 {"list", NULL, P_BOOL|P_VI_DEF|P_RWIN,
1647 (char_u *)VAR_WIN, PV_LIST,
1648 {(char_u *)FALSE, (char_u *)0L}},
1649 {"listchars", "lcs", P_STRING|P_VI_DEF|P_RALL|P_COMMA|P_NODUP,
1650 (char_u *)&p_lcs, PV_NONE,
1651 {(char_u *)"eol:$", (char_u *)0L}},
1652 {"loadplugins", "lpl", P_BOOL|P_VI_DEF,
1653 (char_u *)&p_lpl, PV_NONE,
1654 {(char_u *)TRUE, (char_u *)0L}},
1655 #ifdef FEAT_GUI_MAC
1656 {"macatsui", NULL, P_BOOL|P_VI_DEF|P_RCLR,
1657 (char_u *)&p_macatsui, PV_NONE,
1658 {(char_u *)TRUE, (char_u *)0L}},
1659 #endif
1660 {"magic", NULL, P_BOOL|P_VI_DEF,
1661 (char_u *)&p_magic, PV_NONE,
1662 {(char_u *)TRUE, (char_u *)0L}},
1663 {"makeef", "mef", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1664 #ifdef FEAT_QUICKFIX
1665 (char_u *)&p_mef, PV_NONE,
1666 {(char_u *)"", (char_u *)0L}
1667 #else
1668 (char_u *)NULL, PV_NONE,
1669 {(char_u *)NULL, (char_u *)0L}
1670 #endif
1672 {"makeprg", "mp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1673 #ifdef FEAT_QUICKFIX
1674 (char_u *)&p_mp, PV_MP,
1675 # ifdef VMS
1676 {(char_u *)"MMS", (char_u *)0L}
1677 # else
1678 {(char_u *)"make", (char_u *)0L}
1679 # endif
1680 #else
1681 (char_u *)NULL, PV_NONE,
1682 {(char_u *)NULL, (char_u *)0L}
1683 #endif
1685 {"matchpairs", "mps", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
1686 (char_u *)&p_mps, PV_MPS,
1687 {(char_u *)"(:),{:},[:]", (char_u *)0L}},
1688 {"matchtime", "mat", P_NUM|P_VI_DEF,
1689 (char_u *)&p_mat, PV_NONE,
1690 {(char_u *)5L, (char_u *)0L}},
1691 {"maxcombine", "mco", P_NUM|P_VI_DEF,
1692 #ifdef FEAT_MBYTE
1693 (char_u *)&p_mco, PV_NONE,
1694 #else
1695 (char_u *)NULL, PV_NONE,
1696 #endif
1697 {(char_u *)2, (char_u *)0L}},
1698 {"maxfuncdepth", "mfd", P_NUM|P_VI_DEF,
1699 #ifdef FEAT_EVAL
1700 (char_u *)&p_mfd, PV_NONE,
1701 #else
1702 (char_u *)NULL, PV_NONE,
1703 #endif
1704 {(char_u *)100L, (char_u *)0L}},
1705 {"maxmapdepth", "mmd", P_NUM|P_VI_DEF,
1706 (char_u *)&p_mmd, PV_NONE,
1707 {(char_u *)1000L, (char_u *)0L}},
1708 {"maxmem", "mm", P_NUM|P_VI_DEF,
1709 (char_u *)&p_mm, PV_NONE,
1710 {(char_u *)DFLT_MAXMEM, (char_u *)0L}},
1711 {"maxmempattern","mmp", P_NUM|P_VI_DEF,
1712 (char_u *)&p_mmp, PV_NONE,
1713 {(char_u *)1000L, (char_u *)0L}},
1714 {"maxmemtot", "mmt", P_NUM|P_VI_DEF,
1715 (char_u *)&p_mmt, PV_NONE,
1716 {(char_u *)DFLT_MAXMEMTOT, (char_u *)0L}},
1717 {"menuitems", "mis", P_NUM|P_VI_DEF,
1718 #ifdef FEAT_MENU
1719 (char_u *)&p_mis, PV_NONE,
1720 #else
1721 (char_u *)NULL, PV_NONE,
1722 #endif
1723 {(char_u *)25L, (char_u *)0L}},
1724 {"mesg", NULL, P_BOOL|P_VI_DEF,
1725 (char_u *)NULL, PV_NONE,
1726 {(char_u *)FALSE, (char_u *)0L}},
1727 {"mkspellmem", "msm", P_STRING|P_VI_DEF|P_EXPAND|P_SECURE,
1728 #ifdef FEAT_SPELL
1729 (char_u *)&p_msm, PV_NONE,
1730 {(char_u *)"460000,2000,500", (char_u *)0L}
1731 #else
1732 (char_u *)NULL, PV_NONE,
1733 {(char_u *)0L, (char_u *)0L}
1734 #endif
1736 {"modeline", "ml", P_BOOL|P_VIM,
1737 (char_u *)&p_ml, PV_ML,
1738 {(char_u *)FALSE, (char_u *)TRUE}},
1739 {"modelines", "mls", P_NUM|P_VI_DEF,
1740 (char_u *)&p_mls, PV_NONE,
1741 {(char_u *)5L, (char_u *)0L}},
1742 {"modifiable", "ma", P_BOOL|P_VI_DEF|P_NOGLOB,
1743 (char_u *)&p_ma, PV_MA,
1744 {(char_u *)TRUE, (char_u *)0L}},
1745 {"modified", "mod", P_BOOL|P_NO_MKRC|P_VI_DEF|P_RSTAT,
1746 (char_u *)&p_mod, PV_MOD,
1747 {(char_u *)FALSE, (char_u *)0L}},
1748 {"more", NULL, P_BOOL|P_VIM,
1749 (char_u *)&p_more, PV_NONE,
1750 {(char_u *)FALSE, (char_u *)TRUE}},
1751 {"mouse", NULL, P_STRING|P_VI_DEF|P_FLAGLIST,
1752 (char_u *)&p_mouse, PV_NONE,
1754 #if defined(MSDOS) || defined(WIN3264)
1755 (char_u *)"a",
1756 #else
1757 (char_u *)"",
1758 #endif
1759 (char_u *)0L}},
1760 {"mousefocus", "mousef", P_BOOL|P_VI_DEF,
1761 #ifdef FEAT_GUI
1762 (char_u *)&p_mousef, PV_NONE,
1763 #else
1764 (char_u *)NULL, PV_NONE,
1765 #endif
1766 {(char_u *)FALSE, (char_u *)0L}},
1767 {"mousehide", "mh", P_BOOL|P_VI_DEF,
1768 #ifdef FEAT_GUI
1769 (char_u *)&p_mh, PV_NONE,
1770 #else
1771 (char_u *)NULL, PV_NONE,
1772 #endif
1773 {(char_u *)TRUE, (char_u *)0L}},
1774 {"mousemodel", "mousem", P_STRING|P_VI_DEF,
1775 (char_u *)&p_mousem, PV_NONE,
1777 #if defined(MSDOS) || defined(MSWIN)
1778 (char_u *)"popup",
1779 #else
1780 # if defined(MACOS)
1781 (char_u *)"popup_setpos",
1782 # else
1783 (char_u *)"extend",
1784 # endif
1785 #endif
1786 (char_u *)0L}},
1787 {"mouseshape", "mouses", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1788 #ifdef FEAT_MOUSESHAPE
1789 (char_u *)&p_mouseshape, PV_NONE,
1790 {(char_u *)"i-r:beam,s:updown,sd:udsizing,vs:leftright,vd:lrsizing,m:no,ml:up-arrow,v:rightup-arrow", (char_u *)0L}
1791 #else
1792 (char_u *)NULL, PV_NONE,
1793 {(char_u *)NULL, (char_u *)0L}
1794 #endif
1796 {"mousetime", "mouset", P_NUM|P_VI_DEF,
1797 (char_u *)&p_mouset, PV_NONE,
1798 {(char_u *)500L, (char_u *)0L}},
1799 {"mzquantum", "mzq", P_NUM,
1800 #ifdef FEAT_MZSCHEME
1801 (char_u *)&p_mzq, PV_NONE,
1802 #else
1803 (char_u *)NULL, PV_NONE,
1804 #endif
1805 {(char_u *)100L, (char_u *)100L}},
1806 {"novice", NULL, P_BOOL|P_VI_DEF,
1807 (char_u *)NULL, PV_NONE,
1808 {(char_u *)FALSE, (char_u *)0L}},
1809 {"nrformats", "nf", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
1810 (char_u *)&p_nf, PV_NF,
1811 {(char_u *)"octal,hex", (char_u *)0L}},
1812 {"number", "nu", P_BOOL|P_VI_DEF|P_RWIN,
1813 (char_u *)VAR_WIN, PV_NU,
1814 {(char_u *)FALSE, (char_u *)0L}},
1815 {"numberwidth", "nuw", P_NUM|P_RWIN|P_VIM,
1816 #ifdef FEAT_LINEBREAK
1817 (char_u *)VAR_WIN, PV_NUW,
1818 #else
1819 (char_u *)NULL, PV_NONE,
1820 #endif
1821 {(char_u *)8L, (char_u *)4L}},
1822 {"omnifunc", "ofu", P_STRING|P_ALLOCED|P_VI_DEF|P_SECURE,
1823 #ifdef FEAT_COMPL_FUNC
1824 (char_u *)&p_ofu, PV_OFU,
1825 {(char_u *)"", (char_u *)0L}
1826 #else
1827 (char_u *)NULL, PV_NONE,
1828 {(char_u *)0L, (char_u *)0L}
1829 #endif
1831 {"open", NULL, P_BOOL|P_VI_DEF,
1832 (char_u *)NULL, PV_NONE,
1833 {(char_u *)FALSE, (char_u *)0L}},
1834 {"opendevice", "odev", P_BOOL|P_VI_DEF,
1835 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
1836 (char_u *)&p_odev, PV_NONE,
1837 #else
1838 (char_u *)NULL, PV_NONE,
1839 #endif
1840 {(char_u *)FALSE, (char_u *)FALSE}
1842 {"operatorfunc", "opfunc", P_STRING|P_VI_DEF|P_SECURE,
1843 (char_u *)&p_opfunc, PV_NONE,
1844 {(char_u *)"", (char_u *)0L} },
1845 {"optimize", "opt", P_BOOL|P_VI_DEF,
1846 (char_u *)NULL, PV_NONE,
1847 {(char_u *)FALSE, (char_u *)0L}},
1848 {"osfiletype", "oft", P_STRING|P_ALLOCED|P_VI_DEF,
1849 #ifdef FEAT_OSFILETYPE
1850 (char_u *)&p_oft, PV_OFT,
1851 {(char_u *)DFLT_OFT, (char_u *)0L}
1852 #else
1853 (char_u *)NULL, PV_NONE,
1854 {(char_u *)0L, (char_u *)0L}
1855 #endif
1857 {"paragraphs", "para", P_STRING|P_VI_DEF,
1858 (char_u *)&p_para, PV_NONE,
1859 {(char_u *)"IPLPPPQPP LIpplpipbp", (char_u *)0L}},
1860 {"paste", NULL, P_BOOL|P_VI_DEF|P_PRI_MKRC,
1861 (char_u *)&p_paste, PV_NONE,
1862 {(char_u *)FALSE, (char_u *)0L}},
1863 {"pastetoggle", "pt", P_STRING|P_VI_DEF,
1864 (char_u *)&p_pt, PV_NONE,
1865 {(char_u *)"", (char_u *)0L}},
1866 {"patchexpr", "pex", P_STRING|P_VI_DEF|P_SECURE,
1867 #if defined(FEAT_DIFF) && defined(FEAT_EVAL)
1868 (char_u *)&p_pex, PV_NONE,
1869 {(char_u *)"", (char_u *)0L}
1870 #else
1871 (char_u *)NULL, PV_NONE,
1872 {(char_u *)0L, (char_u *)0L}
1873 #endif
1875 {"patchmode", "pm", P_STRING|P_VI_DEF|P_NFNAME,
1876 (char_u *)&p_pm, PV_NONE,
1877 {(char_u *)"", (char_u *)0L}},
1878 {"path", "pa", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
1879 (char_u *)&p_path, PV_PATH,
1881 #if defined AMIGA || defined MSDOS || defined MSWIN
1882 (char_u *)".,,",
1883 #else
1884 # if defined(__EMX__)
1885 (char_u *)".,/emx/include,,",
1886 # else /* Unix, probably */
1887 (char_u *)".,/usr/include,,",
1888 # endif
1889 #endif
1890 (char_u *)0L}},
1891 {"preserveindent", "pi", P_BOOL|P_VI_DEF|P_VIM,
1892 (char_u *)&p_pi, PV_PI,
1893 {(char_u *)FALSE, (char_u *)0L}},
1894 {"previewheight", "pvh", P_NUM|P_VI_DEF,
1895 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
1896 (char_u *)&p_pvh, PV_NONE,
1897 #else
1898 (char_u *)NULL, PV_NONE,
1899 #endif
1900 {(char_u *)12L, (char_u *)0L}},
1901 {"previewwindow", "pvw", P_BOOL|P_VI_DEF|P_RSTAT|P_NOGLOB,
1902 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
1903 (char_u *)VAR_WIN, PV_PVW,
1904 #else
1905 (char_u *)NULL, PV_NONE,
1906 #endif
1907 {(char_u *)FALSE, (char_u *)0L}},
1908 {"printdevice", "pdev", P_STRING|P_VI_DEF|P_SECURE,
1909 #ifdef FEAT_PRINTER
1910 (char_u *)&p_pdev, PV_NONE,
1911 {(char_u *)"", (char_u *)0L}
1912 #else
1913 (char_u *)NULL, PV_NONE,
1914 {(char_u *)NULL, (char_u *)0L}
1915 #endif
1917 {"printencoding", "penc", P_STRING|P_VI_DEF,
1918 #ifdef FEAT_POSTSCRIPT
1919 (char_u *)&p_penc, PV_NONE,
1920 {(char_u *)"", (char_u *)0L}
1921 #else
1922 (char_u *)NULL, PV_NONE,
1923 {(char_u *)NULL, (char_u *)0L}
1924 #endif
1926 {"printexpr", "pexpr", P_STRING|P_VI_DEF,
1927 #ifdef FEAT_POSTSCRIPT
1928 (char_u *)&p_pexpr, PV_NONE,
1929 {(char_u *)"", (char_u *)0L}
1930 #else
1931 (char_u *)NULL, PV_NONE,
1932 {(char_u *)NULL, (char_u *)0L}
1933 #endif
1935 {"printfont", "pfn", P_STRING|P_VI_DEF,
1936 #ifdef FEAT_PRINTER
1937 (char_u *)&p_pfn, PV_NONE,
1939 # ifdef MSWIN
1940 (char_u *)"Courier_New:h10",
1941 # else
1942 (char_u *)"courier",
1943 # endif
1944 (char_u *)0L}
1945 #else
1946 (char_u *)NULL, PV_NONE,
1947 {(char_u *)NULL, (char_u *)0L}
1948 #endif
1950 {"printheader", "pheader", P_STRING|P_VI_DEF|P_GETTEXT,
1951 #ifdef FEAT_PRINTER
1952 (char_u *)&p_header, PV_NONE,
1953 {(char_u *)N_("%<%f%h%m%=Page %N"), (char_u *)0L}
1954 #else
1955 (char_u *)NULL, PV_NONE,
1956 {(char_u *)NULL, (char_u *)0L}
1957 #endif
1959 {"printmbcharset", "pmbcs", P_STRING|P_VI_DEF,
1960 #if defined(FEAT_POSTSCRIPT) && defined(FEAT_MBYTE)
1961 (char_u *)&p_pmcs, PV_NONE,
1962 {(char_u *)"", (char_u *)0L}
1963 #else
1964 (char_u *)NULL, PV_NONE,
1965 {(char_u *)NULL, (char_u *)0L}
1966 #endif
1968 {"printmbfont", "pmbfn", P_STRING|P_VI_DEF,
1969 #if defined(FEAT_POSTSCRIPT) && defined(FEAT_MBYTE)
1970 (char_u *)&p_pmfn, PV_NONE,
1971 {(char_u *)"", (char_u *)0L}
1972 #else
1973 (char_u *)NULL, PV_NONE,
1974 {(char_u *)NULL, (char_u *)0L}
1975 #endif
1977 {"printoptions", "popt", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1978 #ifdef FEAT_PRINTER
1979 (char_u *)&p_popt, PV_NONE,
1980 {(char_u *)"", (char_u *)0L}
1981 #else
1982 (char_u *)NULL, PV_NONE,
1983 {(char_u *)NULL, (char_u *)0L}
1984 #endif
1986 {"prompt", NULL, P_BOOL|P_VI_DEF,
1987 (char_u *)&p_prompt, PV_NONE,
1988 {(char_u *)TRUE, (char_u *)0L}},
1989 {"pumheight", "ph", P_NUM|P_VI_DEF,
1990 #ifdef FEAT_INS_EXPAND
1991 (char_u *)&p_ph, PV_NONE,
1992 #else
1993 (char_u *)NULL, PV_NONE,
1994 #endif
1995 {(char_u *)0L, (char_u *)0L}},
1996 {"quoteescape", "qe", P_STRING|P_ALLOCED|P_VI_DEF,
1997 #ifdef FEAT_TEXTOBJ
1998 (char_u *)&p_qe, PV_QE,
1999 {(char_u *)"\\", (char_u *)0L}
2000 #else
2001 (char_u *)NULL, PV_NONE,
2002 {(char_u *)NULL, (char_u *)0L}
2003 #endif
2005 {"readonly", "ro", P_BOOL|P_VI_DEF|P_RSTAT|P_NOGLOB,
2006 (char_u *)&p_ro, PV_RO,
2007 {(char_u *)FALSE, (char_u *)0L}},
2008 {"redraw", NULL, P_BOOL|P_VI_DEF,
2009 (char_u *)NULL, PV_NONE,
2010 {(char_u *)FALSE, (char_u *)0L}},
2011 {"redrawtime", "rdt", P_NUM|P_VI_DEF,
2012 #ifdef FEAT_RELTIME
2013 (char_u *)&p_rdt, PV_NONE,
2014 #else
2015 (char_u *)NULL, PV_NONE,
2016 #endif
2017 {(char_u *)2000L, (char_u *)0L}},
2018 {"remap", NULL, P_BOOL|P_VI_DEF,
2019 (char_u *)&p_remap, PV_NONE,
2020 {(char_u *)TRUE, (char_u *)0L}},
2021 {"report", NULL, P_NUM|P_VI_DEF,
2022 (char_u *)&p_report, PV_NONE,
2023 {(char_u *)2L, (char_u *)0L}},
2024 {"restorescreen", "rs", P_BOOL|P_VI_DEF,
2025 #ifdef WIN3264
2026 (char_u *)&p_rs, PV_NONE,
2027 #else
2028 (char_u *)NULL, PV_NONE,
2029 #endif
2030 {(char_u *)TRUE, (char_u *)0L}},
2031 {"revins", "ri", P_BOOL|P_VI_DEF|P_VIM,
2032 #ifdef FEAT_RIGHTLEFT
2033 (char_u *)&p_ri, PV_NONE,
2034 #else
2035 (char_u *)NULL, PV_NONE,
2036 #endif
2037 {(char_u *)FALSE, (char_u *)0L}},
2038 {"rightleft", "rl", P_BOOL|P_VI_DEF|P_RWIN,
2039 #ifdef FEAT_RIGHTLEFT
2040 (char_u *)VAR_WIN, PV_RL,
2041 #else
2042 (char_u *)NULL, PV_NONE,
2043 #endif
2044 {(char_u *)FALSE, (char_u *)0L}},
2045 {"rightleftcmd", "rlc", P_STRING|P_ALLOCED|P_VI_DEF|P_RWIN,
2046 #ifdef FEAT_RIGHTLEFT
2047 (char_u *)VAR_WIN, PV_RLC,
2048 {(char_u *)"search", (char_u *)NULL}
2049 #else
2050 (char_u *)NULL, PV_NONE,
2051 {(char_u *)NULL, (char_u *)0L}
2052 #endif
2054 {"ruler", "ru", P_BOOL|P_VI_DEF|P_VIM|P_RSTAT,
2055 #ifdef FEAT_CMDL_INFO
2056 (char_u *)&p_ru, PV_NONE,
2057 #else
2058 (char_u *)NULL, PV_NONE,
2059 #endif
2060 {(char_u *)FALSE, (char_u *)0L}},
2061 {"rulerformat", "ruf", P_STRING|P_VI_DEF|P_ALLOCED|P_RSTAT,
2062 #ifdef FEAT_STL_OPT
2063 (char_u *)&p_ruf, PV_NONE,
2064 #else
2065 (char_u *)NULL, PV_NONE,
2066 #endif
2067 {(char_u *)"", (char_u *)0L}},
2068 {"runtimepath", "rtp", P_STRING|P_VI_DEF|P_EXPAND|P_COMMA|P_NODUP|P_SECURE,
2069 (char_u *)&p_rtp, PV_NONE,
2070 {(char_u *)DFLT_RUNTIMEPATH, (char_u *)0L}},
2071 {"scroll", "scr", P_NUM|P_NO_MKRC|P_VI_DEF,
2072 (char_u *)VAR_WIN, PV_SCROLL,
2073 {(char_u *)12L, (char_u *)0L}},
2074 {"scrollbind", "scb", P_BOOL|P_VI_DEF,
2075 #ifdef FEAT_SCROLLBIND
2076 (char_u *)VAR_WIN, PV_SCBIND,
2077 #else
2078 (char_u *)NULL, PV_NONE,
2079 #endif
2080 {(char_u *)FALSE, (char_u *)0L}},
2081 {"scrolljump", "sj", P_NUM|P_VI_DEF|P_VIM,
2082 (char_u *)&p_sj, PV_NONE,
2083 {(char_u *)1L, (char_u *)0L}},
2084 {"scrolloff", "so", P_NUM|P_VI_DEF|P_VIM|P_RALL,
2085 (char_u *)&p_so, PV_NONE,
2086 {(char_u *)0L, (char_u *)0L}},
2087 {"scrollopt", "sbo", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2088 #ifdef FEAT_SCROLLBIND
2089 (char_u *)&p_sbo, PV_NONE,
2090 {(char_u *)"ver,jump", (char_u *)0L}
2091 #else
2092 (char_u *)NULL, PV_NONE,
2093 {(char_u *)0L, (char_u *)0L}
2094 #endif
2096 {"sections", "sect", P_STRING|P_VI_DEF,
2097 (char_u *)&p_sections, PV_NONE,
2098 {(char_u *)"SHNHH HUnhsh", (char_u *)0L}},
2099 {"secure", NULL, P_BOOL|P_VI_DEF|P_SECURE,
2100 (char_u *)&p_secure, PV_NONE,
2101 {(char_u *)FALSE, (char_u *)0L}},
2102 {"selection", "sel", P_STRING|P_VI_DEF,
2103 #ifdef FEAT_VISUAL
2104 (char_u *)&p_sel, PV_NONE,
2105 #else
2106 (char_u *)NULL, PV_NONE,
2107 #endif
2108 {(char_u *)"inclusive", (char_u *)0L}},
2109 {"selectmode", "slm", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2110 #ifdef FEAT_VISUAL
2111 (char_u *)&p_slm, PV_NONE,
2112 #else
2113 (char_u *)NULL, PV_NONE,
2114 #endif
2115 {(char_u *)"", (char_u *)0L}},
2116 {"sessionoptions", "ssop", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2117 #ifdef FEAT_SESSION
2118 (char_u *)&p_ssop, PV_NONE,
2119 {(char_u *)"blank,buffers,curdir,folds,help,options,tabpages,winsize",
2120 (char_u *)0L}
2121 #else
2122 (char_u *)NULL, PV_NONE,
2123 {(char_u *)0L, (char_u *)0L}
2124 #endif
2126 {"shell", "sh", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
2127 (char_u *)&p_sh, PV_NONE,
2129 #ifdef VMS
2130 (char_u *)"-",
2131 #else
2132 # if defined(MSDOS)
2133 (char_u *)"command",
2134 # else
2135 # if defined(WIN16)
2136 (char_u *)"command.com",
2137 # else
2138 # if defined(WIN3264)
2139 (char_u *)"", /* set in set_init_1() */
2140 # else
2141 # if defined(OS2)
2142 (char_u *)"cmd.exe",
2143 # else
2144 # if defined(ARCHIE)
2145 (char_u *)"gos",
2146 # else
2147 (char_u *)"sh",
2148 # endif
2149 # endif
2150 # endif
2151 # endif
2152 # endif
2153 #endif /* VMS */
2154 (char_u *)0L}},
2155 {"shellcmdflag","shcf", P_STRING|P_VI_DEF|P_SECURE,
2156 (char_u *)&p_shcf, PV_NONE,
2158 #if defined(MSDOS) || defined(MSWIN)
2159 (char_u *)"/c",
2160 #else
2161 # if defined(OS2)
2162 (char_u *)"/c",
2163 # else
2164 (char_u *)"-c",
2165 # endif
2166 #endif
2167 (char_u *)0L}},
2168 {"shellpipe", "sp", P_STRING|P_VI_DEF|P_SECURE,
2169 #ifdef FEAT_QUICKFIX
2170 (char_u *)&p_sp, PV_NONE,
2172 #if defined(UNIX) || defined(OS2)
2173 # ifdef ARCHIE
2174 (char_u *)"2>",
2175 # else
2176 (char_u *)"| tee",
2177 # endif
2178 #else
2179 (char_u *)">",
2180 #endif
2181 (char_u *)0L}
2182 #else
2183 (char_u *)NULL, PV_NONE,
2184 {(char_u *)0L, (char_u *)0L}
2185 #endif
2187 {"shellquote", "shq", P_STRING|P_VI_DEF|P_SECURE,
2188 (char_u *)&p_shq, PV_NONE,
2189 {(char_u *)"", (char_u *)0L}},
2190 {"shellredir", "srr", P_STRING|P_VI_DEF|P_SECURE,
2191 (char_u *)&p_srr, PV_NONE,
2192 {(char_u *)">", (char_u *)0L}},
2193 {"shellslash", "ssl", P_BOOL|P_VI_DEF,
2194 #ifdef BACKSLASH_IN_FILENAME
2195 (char_u *)&p_ssl, PV_NONE,
2196 #else
2197 (char_u *)NULL, PV_NONE,
2198 #endif
2199 {(char_u *)FALSE, (char_u *)0L}},
2200 {"shelltemp", "stmp", P_BOOL,
2201 (char_u *)&p_stmp, PV_NONE,
2202 {(char_u *)FALSE, (char_u *)TRUE}},
2203 {"shelltype", "st", P_NUM|P_VI_DEF,
2204 #ifdef AMIGA
2205 (char_u *)&p_st, PV_NONE,
2206 #else
2207 (char_u *)NULL, PV_NONE,
2208 #endif
2209 {(char_u *)0L, (char_u *)0L}},
2210 {"shellxquote", "sxq", P_STRING|P_VI_DEF|P_SECURE,
2211 (char_u *)&p_sxq, PV_NONE,
2213 #if defined(UNIX) && defined(USE_SYSTEM) && !defined(__EMX__)
2214 (char_u *)"\"",
2215 #else
2216 (char_u *)"",
2217 #endif
2218 (char_u *)0L}},
2219 {"shiftround", "sr", P_BOOL|P_VI_DEF|P_VIM,
2220 (char_u *)&p_sr, PV_NONE,
2221 {(char_u *)FALSE, (char_u *)0L}},
2222 {"shiftwidth", "sw", P_NUM|P_VI_DEF,
2223 (char_u *)&p_sw, PV_SW,
2224 {(char_u *)8L, (char_u *)0L}},
2225 {"shortmess", "shm", P_STRING|P_VIM|P_FLAGLIST,
2226 (char_u *)&p_shm, PV_NONE,
2227 {(char_u *)"", (char_u *)"filnxtToO"}},
2228 {"shortname", "sn", P_BOOL|P_VI_DEF,
2229 #ifdef SHORT_FNAME
2230 (char_u *)NULL, PV_NONE,
2231 #else
2232 (char_u *)&p_sn, PV_SN,
2233 #endif
2234 {(char_u *)FALSE, (char_u *)0L}},
2235 {"showbreak", "sbr", P_STRING|P_VI_DEF|P_RALL,
2236 #ifdef FEAT_LINEBREAK
2237 (char_u *)&p_sbr, PV_NONE,
2238 #else
2239 (char_u *)NULL, PV_NONE,
2240 #endif
2241 {(char_u *)"", (char_u *)0L}},
2242 {"showcmd", "sc", P_BOOL|P_VIM,
2243 #ifdef FEAT_CMDL_INFO
2244 (char_u *)&p_sc, PV_NONE,
2245 #else
2246 (char_u *)NULL, PV_NONE,
2247 #endif
2248 {(char_u *)FALSE,
2249 #ifdef UNIX
2250 (char_u *)FALSE
2251 #else
2252 (char_u *)TRUE
2253 #endif
2255 {"showfulltag", "sft", P_BOOL|P_VI_DEF,
2256 (char_u *)&p_sft, PV_NONE,
2257 {(char_u *)FALSE, (char_u *)0L}},
2258 {"showmatch", "sm", P_BOOL|P_VI_DEF,
2259 (char_u *)&p_sm, PV_NONE,
2260 {(char_u *)FALSE, (char_u *)0L}},
2261 {"showmode", "smd", P_BOOL|P_VIM,
2262 (char_u *)&p_smd, PV_NONE,
2263 {(char_u *)FALSE, (char_u *)TRUE}},
2264 {"showtabline", "stal", P_NUM|P_VI_DEF|P_RALL,
2265 #ifdef FEAT_WINDOWS
2266 (char_u *)&p_stal, PV_NONE,
2267 #else
2268 (char_u *)NULL, PV_NONE,
2269 #endif
2270 {(char_u *)1L, (char_u *)0L}},
2271 {"sidescroll", "ss", P_NUM|P_VI_DEF,
2272 (char_u *)&p_ss, PV_NONE,
2273 {(char_u *)0L, (char_u *)0L}},
2274 {"sidescrolloff", "siso", P_NUM|P_VI_DEF|P_VIM|P_RBUF,
2275 (char_u *)&p_siso, PV_NONE,
2276 {(char_u *)0L, (char_u *)0L}},
2277 {"slowopen", "slow", P_BOOL|P_VI_DEF,
2278 (char_u *)NULL, PV_NONE,
2279 {(char_u *)FALSE, (char_u *)0L}},
2280 {"smartcase", "scs", P_BOOL|P_VI_DEF|P_VIM,
2281 (char_u *)&p_scs, PV_NONE,
2282 {(char_u *)FALSE, (char_u *)0L}},
2283 {"smartindent", "si", P_BOOL|P_VI_DEF|P_VIM,
2284 #ifdef FEAT_SMARTINDENT
2285 (char_u *)&p_si, PV_SI,
2286 #else
2287 (char_u *)NULL, PV_NONE,
2288 #endif
2289 {(char_u *)FALSE, (char_u *)0L}},
2290 {"smarttab", "sta", P_BOOL|P_VI_DEF|P_VIM,
2291 (char_u *)&p_sta, PV_NONE,
2292 {(char_u *)FALSE, (char_u *)0L}},
2293 {"softtabstop", "sts", P_NUM|P_VI_DEF|P_VIM,
2294 (char_u *)&p_sts, PV_STS,
2295 {(char_u *)0L, (char_u *)0L}},
2296 {"sourceany", NULL, P_BOOL|P_VI_DEF,
2297 (char_u *)NULL, PV_NONE,
2298 {(char_u *)FALSE, (char_u *)0L}},
2299 {"spell", NULL, P_BOOL|P_VI_DEF|P_RWIN,
2300 #ifdef FEAT_SPELL
2301 (char_u *)VAR_WIN, PV_SPELL,
2302 #else
2303 (char_u *)NULL, PV_NONE,
2304 #endif
2305 {(char_u *)FALSE, (char_u *)0L}},
2306 {"spellcapcheck", "spc", P_STRING|P_ALLOCED|P_VI_DEF|P_RBUF,
2307 #ifdef FEAT_SPELL
2308 (char_u *)&p_spc, PV_SPC,
2309 {(char_u *)"[.?!]\\_[\\])'\" ]\\+", (char_u *)0L}
2310 #else
2311 (char_u *)NULL, PV_NONE,
2312 {(char_u *)0L, (char_u *)0L}
2313 #endif
2315 {"spellfile", "spf", P_STRING|P_EXPAND|P_ALLOCED|P_VI_DEF|P_SECURE|P_COMMA,
2316 #ifdef FEAT_SPELL
2317 (char_u *)&p_spf, PV_SPF,
2318 {(char_u *)"", (char_u *)0L}
2319 #else
2320 (char_u *)NULL, PV_NONE,
2321 {(char_u *)0L, (char_u *)0L}
2322 #endif
2324 {"spelllang", "spl", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_RBUF|P_EXPAND,
2325 #ifdef FEAT_SPELL
2326 (char_u *)&p_spl, PV_SPL,
2327 {(char_u *)"en", (char_u *)0L}
2328 #else
2329 (char_u *)NULL, PV_NONE,
2330 {(char_u *)0L, (char_u *)0L}
2331 #endif
2333 {"spellsuggest", "sps", P_STRING|P_VI_DEF|P_EXPAND|P_SECURE|P_COMMA,
2334 #ifdef FEAT_SPELL
2335 (char_u *)&p_sps, PV_NONE,
2336 {(char_u *)"best", (char_u *)0L}
2337 #else
2338 (char_u *)NULL, PV_NONE,
2339 {(char_u *)0L, (char_u *)0L}
2340 #endif
2342 {"splitbelow", "sb", P_BOOL|P_VI_DEF,
2343 #ifdef FEAT_WINDOWS
2344 (char_u *)&p_sb, PV_NONE,
2345 #else
2346 (char_u *)NULL, PV_NONE,
2347 #endif
2348 {(char_u *)FALSE, (char_u *)0L}},
2349 {"splitright", "spr", P_BOOL|P_VI_DEF,
2350 #ifdef FEAT_VERTSPLIT
2351 (char_u *)&p_spr, PV_NONE,
2352 #else
2353 (char_u *)NULL, PV_NONE,
2354 #endif
2355 {(char_u *)FALSE, (char_u *)0L}},
2356 {"startofline", "sol", P_BOOL|P_VI_DEF|P_VIM,
2357 (char_u *)&p_sol, PV_NONE,
2358 {(char_u *)TRUE, (char_u *)0L}},
2359 {"statusline" ,"stl", P_STRING|P_VI_DEF|P_ALLOCED|P_RSTAT,
2360 #ifdef FEAT_STL_OPT
2361 (char_u *)&p_stl, PV_STL,
2362 #else
2363 (char_u *)NULL, PV_NONE,
2364 #endif
2365 {(char_u *)"", (char_u *)0L}},
2366 {"suffixes", "su", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2367 (char_u *)&p_su, PV_NONE,
2368 {(char_u *)".bak,~,.o,.h,.info,.swp,.obj",
2369 (char_u *)0L}},
2370 {"suffixesadd", "sua", P_STRING|P_VI_DEF|P_ALLOCED|P_COMMA|P_NODUP,
2371 #ifdef FEAT_SEARCHPATH
2372 (char_u *)&p_sua, PV_SUA,
2373 {(char_u *)"", (char_u *)0L}
2374 #else
2375 (char_u *)NULL, PV_NONE,
2376 {(char_u *)0L, (char_u *)0L}
2377 #endif
2379 {"swapfile", "swf", P_BOOL|P_VI_DEF|P_RSTAT,
2380 (char_u *)&p_swf, PV_SWF,
2381 {(char_u *)TRUE, (char_u *)0L}},
2382 {"swapsync", "sws", P_STRING|P_VI_DEF,
2383 (char_u *)&p_sws, PV_NONE,
2384 {(char_u *)"fsync", (char_u *)0L}},
2385 {"switchbuf", "swb", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2386 (char_u *)&p_swb, PV_NONE,
2387 {(char_u *)"", (char_u *)0L}},
2388 {"synmaxcol", "smc", P_NUM|P_VI_DEF|P_RBUF,
2389 #ifdef FEAT_SYN_HL
2390 (char_u *)&p_smc, PV_SMC,
2391 {(char_u *)3000L, (char_u *)0L}
2392 #else
2393 (char_u *)NULL, PV_NONE,
2394 {(char_u *)0L, (char_u *)0L}
2395 #endif
2397 {"syntax", "syn", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB|P_NFNAME,
2398 #ifdef FEAT_SYN_HL
2399 (char_u *)&p_syn, PV_SYN,
2400 {(char_u *)"", (char_u *)0L}
2401 #else
2402 (char_u *)NULL, PV_NONE,
2403 {(char_u *)0L, (char_u *)0L}
2404 #endif
2406 {"tabline", "tal", P_STRING|P_VI_DEF|P_RALL,
2407 #ifdef FEAT_STL_OPT
2408 (char_u *)&p_tal, PV_NONE,
2409 #else
2410 (char_u *)NULL, PV_NONE,
2411 #endif
2412 {(char_u *)"", (char_u *)0L}},
2413 {"tabpagemax", "tpm", P_NUM|P_VI_DEF,
2414 #ifdef FEAT_WINDOWS
2415 (char_u *)&p_tpm, PV_NONE,
2416 #else
2417 (char_u *)NULL, PV_NONE,
2418 #endif
2419 {(char_u *)10L, (char_u *)0L}},
2420 {"tabstop", "ts", P_NUM|P_VI_DEF|P_RBUF,
2421 (char_u *)&p_ts, PV_TS,
2422 {(char_u *)8L, (char_u *)0L}},
2423 {"tagbsearch", "tbs", P_BOOL|P_VI_DEF,
2424 (char_u *)&p_tbs, PV_NONE,
2425 #ifdef VMS /* binary searching doesn't appear to work on VMS */
2426 {(char_u *)0L, (char_u *)0L}
2427 #else
2428 {(char_u *)TRUE, (char_u *)0L}
2429 #endif
2431 {"taglength", "tl", P_NUM|P_VI_DEF,
2432 (char_u *)&p_tl, PV_NONE,
2433 {(char_u *)0L, (char_u *)0L}},
2434 {"tagrelative", "tr", P_BOOL|P_VIM,
2435 (char_u *)&p_tr, PV_NONE,
2436 {(char_u *)FALSE, (char_u *)TRUE}},
2437 {"tags", "tag", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
2438 (char_u *)&p_tags, PV_TAGS,
2440 #if defined(FEAT_EMACS_TAGS) && !defined(CASE_INSENSITIVE_FILENAME)
2441 (char_u *)"./tags,./TAGS,tags,TAGS",
2442 #else
2443 (char_u *)"./tags,tags",
2444 #endif
2445 (char_u *)0L}},
2446 {"tagstack", "tgst", P_BOOL|P_VI_DEF,
2447 (char_u *)&p_tgst, PV_NONE,
2448 {(char_u *)TRUE, (char_u *)0L}},
2449 {"term", NULL, P_STRING|P_EXPAND|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RALL,
2450 (char_u *)&T_NAME, PV_NONE,
2451 {(char_u *)"", (char_u *)0L}},
2452 {"termbidi", "tbidi", P_BOOL|P_VI_DEF,
2453 #ifdef FEAT_ARABIC
2454 (char_u *)&p_tbidi, PV_NONE,
2455 #else
2456 (char_u *)NULL, PV_NONE,
2457 #endif
2458 {(char_u *)FALSE, (char_u *)0L}},
2459 {"termencoding", "tenc", P_STRING|P_VI_DEF|P_RCLR,
2460 #ifdef FEAT_MBYTE
2461 (char_u *)&p_tenc, PV_NONE,
2462 {(char_u *)"", (char_u *)0L}
2463 #else
2464 (char_u *)NULL, PV_NONE,
2465 {(char_u *)0L, (char_u *)0L}
2466 #endif
2468 {"terse", NULL, P_BOOL|P_VI_DEF,
2469 (char_u *)&p_terse, PV_NONE,
2470 {(char_u *)FALSE, (char_u *)0L}},
2471 {"textauto", "ta", P_BOOL|P_VIM,
2472 (char_u *)&p_ta, PV_NONE,
2473 {(char_u *)DFLT_TEXTAUTO, (char_u *)TRUE}},
2474 {"textmode", "tx", P_BOOL|P_VI_DEF|P_NO_MKRC,
2475 (char_u *)&p_tx, PV_TX,
2477 #ifdef USE_CRNL
2478 (char_u *)TRUE,
2479 #else
2480 (char_u *)FALSE,
2481 #endif
2482 (char_u *)0L}},
2483 {"textwidth", "tw", P_NUM|P_VI_DEF|P_VIM,
2484 (char_u *)&p_tw, PV_TW,
2485 {(char_u *)0L, (char_u *)0L}},
2486 {"thesaurus", "tsr", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
2487 #ifdef FEAT_INS_EXPAND
2488 (char_u *)&p_tsr, PV_TSR,
2489 #else
2490 (char_u *)NULL, PV_NONE,
2491 #endif
2492 {(char_u *)"", (char_u *)0L}},
2493 {"tildeop", "top", P_BOOL|P_VI_DEF|P_VIM,
2494 (char_u *)&p_to, PV_NONE,
2495 {(char_u *)FALSE, (char_u *)0L}},
2496 {"timeout", "to", P_BOOL|P_VI_DEF,
2497 (char_u *)&p_timeout, PV_NONE,
2498 {(char_u *)TRUE, (char_u *)0L}},
2499 {"timeoutlen", "tm", P_NUM|P_VI_DEF,
2500 (char_u *)&p_tm, PV_NONE,
2501 {(char_u *)1000L, (char_u *)0L}},
2502 {"title", NULL, P_BOOL|P_VI_DEF,
2503 #ifdef FEAT_TITLE
2504 (char_u *)&p_title, PV_NONE,
2505 #else
2506 (char_u *)NULL, PV_NONE,
2507 #endif
2508 {(char_u *)FALSE, (char_u *)0L}},
2509 {"titlelen", NULL, P_NUM|P_VI_DEF,
2510 #ifdef FEAT_TITLE
2511 (char_u *)&p_titlelen, PV_NONE,
2512 #else
2513 (char_u *)NULL, PV_NONE,
2514 #endif
2515 {(char_u *)85L, (char_u *)0L}},
2516 {"titleold", NULL, P_STRING|P_VI_DEF|P_GETTEXT|P_SECURE|P_NO_MKRC,
2517 #ifdef FEAT_TITLE
2518 (char_u *)&p_titleold, PV_NONE,
2519 {(char_u *)N_("Thanks for flying Vim"),
2520 (char_u *)0L}
2521 #else
2522 (char_u *)NULL, PV_NONE,
2523 {(char_u *)0L, (char_u *)0L}
2524 #endif
2526 {"titlestring", NULL, P_STRING|P_VI_DEF,
2527 #ifdef FEAT_TITLE
2528 (char_u *)&p_titlestring, PV_NONE,
2529 #else
2530 (char_u *)NULL, PV_NONE,
2531 #endif
2532 {(char_u *)"", (char_u *)0L}},
2533 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
2534 {"toolbar", "tb", P_STRING|P_COMMA|P_VI_DEF|P_NODUP,
2535 (char_u *)&p_toolbar, PV_NONE,
2536 {(char_u *)"icons,tooltips", (char_u *)0L}},
2537 #endif
2538 #if defined(FEAT_TOOLBAR) && ((defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)) \
2539 || defined(FEAT_GUI_MACVIM))
2540 {"toolbariconsize", "tbis", P_STRING|P_VI_DEF,
2541 (char_u *)&p_tbis, PV_NONE,
2542 {(char_u *)"small", (char_u *)0L}},
2543 #endif
2544 {"transparency", "transp", P_NUM|P_VIM|P_RCLR,
2545 #ifdef FEAT_TRANSPARENCY
2546 (char_u *)&p_transp, PV_NONE,
2547 #else
2548 (char_u *)NULL, PV_NONE,
2549 #endif
2550 {(char_u *)0L, (char_u *)0L} },
2551 {"ttimeout", NULL, P_BOOL|P_VI_DEF|P_VIM,
2552 (char_u *)&p_ttimeout, PV_NONE,
2553 {(char_u *)FALSE, (char_u *)0L}},
2554 {"ttimeoutlen", "ttm", P_NUM|P_VI_DEF,
2555 (char_u *)&p_ttm, PV_NONE,
2556 {(char_u *)-1L, (char_u *)0L}},
2557 {"ttybuiltin", "tbi", P_BOOL|P_VI_DEF,
2558 (char_u *)&p_tbi, PV_NONE,
2559 {(char_u *)TRUE, (char_u *)0L}},
2560 {"ttyfast", "tf", P_BOOL|P_NO_MKRC|P_VI_DEF,
2561 (char_u *)&p_tf, PV_NONE,
2562 {(char_u *)FALSE, (char_u *)0L}},
2563 {"ttymouse", "ttym", P_STRING|P_NODEFAULT|P_NO_MKRC|P_VI_DEF,
2564 #if defined(FEAT_MOUSE) && (defined(UNIX) || defined(VMS))
2565 (char_u *)&p_ttym, PV_NONE,
2566 #else
2567 (char_u *)NULL, PV_NONE,
2568 #endif
2569 {(char_u *)"", (char_u *)0L}},
2570 {"ttyscroll", "tsl", P_NUM|P_VI_DEF,
2571 (char_u *)&p_ttyscroll, PV_NONE,
2572 {(char_u *)999L, (char_u *)0L}},
2573 {"ttytype", "tty", P_STRING|P_EXPAND|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RALL,
2574 (char_u *)&T_NAME, PV_NONE,
2575 {(char_u *)"", (char_u *)0L}},
2576 {"undolevels", "ul", P_NUM|P_VI_DEF,
2577 (char_u *)&p_ul, PV_NONE,
2579 #if defined(UNIX) || defined(WIN3264) || defined(OS2) || defined(VMS)
2580 (char_u *)1000L,
2581 #else
2582 (char_u *)100L,
2583 #endif
2584 (char_u *)0L}},
2585 {"updatecount", "uc", P_NUM|P_VI_DEF,
2586 (char_u *)&p_uc, PV_NONE,
2587 {(char_u *)200L, (char_u *)0L}},
2588 {"updatetime", "ut", P_NUM|P_VI_DEF,
2589 (char_u *)&p_ut, PV_NONE,
2590 {(char_u *)4000L, (char_u *)0L}},
2591 {"verbose", "vbs", P_NUM|P_VI_DEF,
2592 (char_u *)&p_verbose, PV_NONE,
2593 {(char_u *)0L, (char_u *)0L}},
2594 {"verbosefile", "vfile", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
2595 (char_u *)&p_vfile, PV_NONE,
2596 {(char_u *)"", (char_u *)0L}},
2597 {"viewdir", "vdir", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
2598 #ifdef FEAT_SESSION
2599 (char_u *)&p_vdir, PV_NONE,
2600 {(char_u *)DFLT_VDIR, (char_u *)0L}
2601 #else
2602 (char_u *)NULL, PV_NONE,
2603 {(char_u *)0L, (char_u *)0L}
2604 #endif
2606 {"viewoptions", "vop", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2607 #ifdef FEAT_SESSION
2608 (char_u *)&p_vop, PV_NONE,
2609 {(char_u *)"folds,options,cursor", (char_u *)0L}
2610 #else
2611 (char_u *)NULL, PV_NONE,
2612 {(char_u *)0L, (char_u *)0L}
2613 #endif
2615 {"viminfo", "vi", P_STRING|P_COMMA|P_NODUP|P_SECURE,
2616 #ifdef FEAT_VIMINFO
2617 (char_u *)&p_viminfo, PV_NONE,
2618 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
2619 {(char_u *)"", (char_u *)"'20,<50,s10,h,rA:,rB:"}
2620 #else
2621 # ifdef AMIGA
2622 {(char_u *)"",
2623 (char_u *)"'20,<50,s10,h,rdf0:,rdf1:,rdf2:"}
2624 # else
2625 {(char_u *)"", (char_u *)"'20,<50,s10,h"}
2626 # endif
2627 #endif
2628 #else
2629 (char_u *)NULL, PV_NONE,
2630 {(char_u *)0L, (char_u *)0L}
2631 #endif
2633 {"virtualedit", "ve", P_STRING|P_COMMA|P_NODUP|P_VI_DEF|P_VIM,
2634 #ifdef FEAT_VIRTUALEDIT
2635 (char_u *)&p_ve, PV_NONE,
2636 {(char_u *)"", (char_u *)""}
2637 #else
2638 (char_u *)NULL, PV_NONE,
2639 {(char_u *)0L, (char_u *)0L}
2640 #endif
2642 {"visualbell", "vb", P_BOOL|P_VI_DEF,
2643 (char_u *)&p_vb, PV_NONE,
2644 {(char_u *)FALSE, (char_u *)0L}},
2645 {"w300", NULL, P_NUM|P_VI_DEF,
2646 (char_u *)NULL, PV_NONE,
2647 {(char_u *)0L, (char_u *)0L}},
2648 {"w1200", NULL, P_NUM|P_VI_DEF,
2649 (char_u *)NULL, PV_NONE,
2650 {(char_u *)0L, (char_u *)0L}},
2651 {"w9600", NULL, P_NUM|P_VI_DEF,
2652 (char_u *)NULL, PV_NONE,
2653 {(char_u *)0L, (char_u *)0L}},
2654 {"warn", NULL, P_BOOL|P_VI_DEF,
2655 (char_u *)&p_warn, PV_NONE,
2656 {(char_u *)TRUE, (char_u *)0L}},
2657 {"weirdinvert", "wiv", P_BOOL|P_VI_DEF|P_RCLR,
2658 (char_u *)&p_wiv, PV_NONE,
2659 {(char_u *)FALSE, (char_u *)0L}},
2660 {"whichwrap", "ww", P_STRING|P_VIM|P_COMMA|P_FLAGLIST,
2661 (char_u *)&p_ww, PV_NONE,
2662 {(char_u *)"", (char_u *)"b,s"}},
2663 {"wildchar", "wc", P_NUM|P_VIM,
2664 (char_u *)&p_wc, PV_NONE,
2665 {(char_u *)(long)Ctrl_E, (char_u *)(long)TAB}},
2666 {"wildcharm", "wcm", P_NUM|P_VI_DEF,
2667 (char_u *)&p_wcm, PV_NONE,
2668 {(char_u *)0L, (char_u *)0L}},
2669 {"wildignore", "wig", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2670 #ifdef FEAT_WILDIGN
2671 (char_u *)&p_wig, PV_NONE,
2672 #else
2673 (char_u *)NULL, PV_NONE,
2674 #endif
2675 {(char_u *)"", (char_u *)0L}},
2676 {"wildmenu", "wmnu", P_BOOL|P_VI_DEF,
2677 #ifdef FEAT_WILDMENU
2678 (char_u *)&p_wmnu, PV_NONE,
2679 #else
2680 (char_u *)NULL, PV_NONE,
2681 #endif
2682 {(char_u *)FALSE, (char_u *)0L}},
2683 {"wildmode", "wim", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2684 (char_u *)&p_wim, PV_NONE,
2685 {(char_u *)"full", (char_u *)0L}},
2686 {"wildoptions", "wop", P_STRING|P_VI_DEF,
2687 #ifdef FEAT_CMDL_COMPL
2688 (char_u *)&p_wop, PV_NONE,
2689 {(char_u *)"", (char_u *)0L}
2690 #else
2691 (char_u *)NULL, PV_NONE,
2692 {(char_u *)NULL, (char_u *)0L}
2693 #endif
2695 {"winaltkeys", "wak", P_STRING|P_VI_DEF,
2696 #ifdef FEAT_WAK
2697 (char_u *)&p_wak, PV_NONE,
2698 {(char_u *)"menu", (char_u *)0L}
2699 #else
2700 (char_u *)NULL, PV_NONE,
2701 {(char_u *)NULL, (char_u *)0L}
2702 #endif
2704 {"window", "wi", P_NUM|P_VI_DEF,
2705 (char_u *)&p_window, PV_NONE,
2706 {(char_u *)0L, (char_u *)0L}},
2707 {"winheight", "wh", P_NUM|P_VI_DEF,
2708 #ifdef FEAT_WINDOWS
2709 (char_u *)&p_wh, PV_NONE,
2710 #else
2711 (char_u *)NULL, PV_NONE,
2712 #endif
2713 {(char_u *)1L, (char_u *)0L}},
2714 {"winfixheight", "wfh", P_BOOL|P_VI_DEF|P_RSTAT,
2715 #ifdef FEAT_WINDOWS
2716 (char_u *)VAR_WIN, PV_WFH,
2717 #else
2718 (char_u *)NULL, PV_NONE,
2719 #endif
2720 {(char_u *)FALSE, (char_u *)0L}},
2721 {"winfixwidth", "wfw", P_BOOL|P_VI_DEF|P_RSTAT,
2722 #ifdef FEAT_VERTSPLIT
2723 (char_u *)VAR_WIN, PV_WFW,
2724 #else
2725 (char_u *)NULL, PV_NONE,
2726 #endif
2727 {(char_u *)FALSE, (char_u *)0L}},
2728 {"winminheight", "wmh", P_NUM|P_VI_DEF,
2729 #ifdef FEAT_WINDOWS
2730 (char_u *)&p_wmh, PV_NONE,
2731 #else
2732 (char_u *)NULL, PV_NONE,
2733 #endif
2734 {(char_u *)1L, (char_u *)0L}},
2735 {"winminwidth", "wmw", P_NUM|P_VI_DEF,
2736 #ifdef FEAT_VERTSPLIT
2737 (char_u *)&p_wmw, PV_NONE,
2738 #else
2739 (char_u *)NULL, PV_NONE,
2740 #endif
2741 {(char_u *)1L, (char_u *)0L}},
2742 {"winwidth", "wiw", P_NUM|P_VI_DEF,
2743 #ifdef FEAT_VERTSPLIT
2744 (char_u *)&p_wiw, PV_NONE,
2745 #else
2746 (char_u *)NULL, PV_NONE,
2747 #endif
2748 {(char_u *)20L, (char_u *)0L}},
2749 {"wrap", NULL, P_BOOL|P_VI_DEF|P_RWIN,
2750 (char_u *)VAR_WIN, PV_WRAP,
2751 {(char_u *)TRUE, (char_u *)0L}},
2752 {"wrapmargin", "wm", P_NUM|P_VI_DEF,
2753 (char_u *)&p_wm, PV_WM,
2754 {(char_u *)0L, (char_u *)0L}},
2755 {"wrapscan", "ws", P_BOOL|P_VI_DEF,
2756 (char_u *)&p_ws, PV_NONE,
2757 {(char_u *)TRUE, (char_u *)0L}},
2758 {"write", NULL, P_BOOL|P_VI_DEF,
2759 (char_u *)&p_write, PV_NONE,
2760 {(char_u *)TRUE, (char_u *)0L}},
2761 {"writeany", "wa", P_BOOL|P_VI_DEF,
2762 (char_u *)&p_wa, PV_NONE,
2763 {(char_u *)FALSE, (char_u *)0L}},
2764 {"writebackup", "wb", P_BOOL|P_VI_DEF|P_VIM,
2765 (char_u *)&p_wb, PV_NONE,
2767 #ifdef FEAT_WRITEBACKUP
2768 (char_u *)TRUE,
2769 #else
2770 (char_u *)FALSE,
2771 #endif
2772 (char_u *)0L}},
2773 {"writedelay", "wd", P_NUM|P_VI_DEF,
2774 (char_u *)&p_wd, PV_NONE,
2775 {(char_u *)0L, (char_u *)0L}},
2777 /* terminal output codes */
2778 #define p_term(sss, vvv) {sss, NULL, P_STRING|P_VI_DEF|P_RALL|P_SECURE, \
2779 (char_u *)&vvv, PV_NONE, \
2780 {(char_u *)"", (char_u *)0L}},
2782 p_term("t_AB", T_CAB)
2783 p_term("t_AF", T_CAF)
2784 p_term("t_AL", T_CAL)
2785 p_term("t_al", T_AL)
2786 p_term("t_bc", T_BC)
2787 p_term("t_cd", T_CD)
2788 p_term("t_ce", T_CE)
2789 p_term("t_cl", T_CL)
2790 p_term("t_cm", T_CM)
2791 p_term("t_Co", T_CCO)
2792 p_term("t_CS", T_CCS)
2793 p_term("t_cs", T_CS)
2794 #ifdef FEAT_VERTSPLIT
2795 p_term("t_CV", T_CSV)
2796 #endif
2797 p_term("t_ut", T_UT)
2798 p_term("t_da", T_DA)
2799 p_term("t_db", T_DB)
2800 p_term("t_DL", T_CDL)
2801 p_term("t_dl", T_DL)
2802 p_term("t_fs", T_FS)
2803 p_term("t_IE", T_CIE)
2804 p_term("t_IS", T_CIS)
2805 p_term("t_ke", T_KE)
2806 p_term("t_ks", T_KS)
2807 p_term("t_le", T_LE)
2808 p_term("t_mb", T_MB)
2809 p_term("t_md", T_MD)
2810 p_term("t_me", T_ME)
2811 p_term("t_mr", T_MR)
2812 p_term("t_ms", T_MS)
2813 p_term("t_nd", T_ND)
2814 p_term("t_op", T_OP)
2815 p_term("t_RI", T_CRI)
2816 p_term("t_RV", T_CRV)
2817 p_term("t_Sb", T_CSB)
2818 p_term("t_Sf", T_CSF)
2819 p_term("t_se", T_SE)
2820 p_term("t_so", T_SO)
2821 p_term("t_sr", T_SR)
2822 p_term("t_ts", T_TS)
2823 p_term("t_te", T_TE)
2824 p_term("t_ti", T_TI)
2825 p_term("t_ue", T_UE)
2826 p_term("t_us", T_US)
2827 p_term("t_vb", T_VB)
2828 p_term("t_ve", T_VE)
2829 p_term("t_vi", T_VI)
2830 p_term("t_vs", T_VS)
2831 p_term("t_WP", T_CWP)
2832 p_term("t_WS", T_CWS)
2833 p_term("t_SI", T_CSI)
2834 p_term("t_EI", T_CEI)
2835 p_term("t_xs", T_XS)
2836 p_term("t_ZH", T_CZH)
2837 p_term("t_ZR", T_CZR)
2839 /* terminal key codes are not in here */
2841 {NULL, NULL, 0, NULL, PV_NONE, {NULL, NULL}} /* end marker */
2844 #define PARAM_COUNT (sizeof(options) / sizeof(struct vimoption))
2846 #ifdef FEAT_MBYTE
2847 static char *(p_ambw_values[]) = {"single", "double", NULL};
2848 #endif
2849 static char *(p_bg_values[]) = {"light", "dark", NULL};
2850 static char *(p_nf_values[]) = {"octal", "hex", "alpha", NULL};
2851 static char *(p_ff_values[]) = {FF_UNIX, FF_DOS, FF_MAC, NULL};
2852 #ifdef FEAT_CMDL_COMPL
2853 static char *(p_wop_values[]) = {"tagfile", NULL};
2854 #endif
2855 #ifdef FEAT_WAK
2856 static char *(p_wak_values[]) = {"yes", "menu", "no", NULL};
2857 #endif
2858 static char *(p_mousem_values[]) = {"extend", "popup", "popup_setpos", "mac", NULL};
2859 #ifdef FEAT_VISUAL
2860 static char *(p_sel_values[]) = {"inclusive", "exclusive", "old", NULL};
2861 static char *(p_slm_values[]) = {"mouse", "key", "cmd", NULL};
2862 #endif
2863 #ifdef FEAT_VISUAL
2864 static char *(p_km_values[]) = {"startsel", "stopsel", NULL};
2865 #endif
2866 #ifdef FEAT_BROWSE
2867 static char *(p_bsdir_values[]) = {"current", "last", "buffer", NULL};
2868 #endif
2869 #ifdef FEAT_SCROLLBIND
2870 static char *(p_scbopt_values[]) = {"ver", "hor", "jump", NULL};
2871 #endif
2872 static char *(p_swb_values[]) = {"useopen", "usetab", "split", NULL};
2873 static char *(p_debug_values[]) = {"msg", "throw", "beep", NULL};
2874 #ifdef FEAT_VERTSPLIT
2875 static char *(p_ead_values[]) = {"both", "ver", "hor", NULL};
2876 #endif
2877 #if defined(FEAT_QUICKFIX)
2878 # ifdef FEAT_AUTOCMD
2879 static char *(p_buftype_values[]) = {"nofile", "nowrite", "quickfix", "help", "acwrite", NULL};
2880 # else
2881 static char *(p_buftype_values[]) = {"nofile", "nowrite", "quickfix", "help", NULL};
2882 # endif
2883 static char *(p_bufhidden_values[]) = {"hide", "unload", "delete", "wipe", NULL};
2884 #endif
2885 static char *(p_bs_values[]) = {"indent", "eol", "start", NULL};
2886 #ifdef FEAT_FOLDING
2887 static char *(p_fdm_values[]) = {"manual", "expr", "marker", "indent", "syntax",
2888 # ifdef FEAT_DIFF
2889 "diff",
2890 # endif
2891 NULL};
2892 static char *(p_fcl_values[]) = {"all", NULL};
2893 #endif
2894 #ifdef FEAT_INS_EXPAND
2895 static char *(p_cot_values[]) = {"menu", "menuone", "longest", "preview", NULL};
2896 #endif
2898 static void set_option_default __ARGS((int, int opt_flags, int compatible));
2899 static void set_options_default __ARGS((int opt_flags));
2900 static char_u *term_bg_default __ARGS((void));
2901 static void did_set_option __ARGS((int opt_idx, int opt_flags, int new_value));
2902 static char_u *illegal_char __ARGS((char_u *, int));
2903 static int string_to_key __ARGS((char_u *arg));
2904 #ifdef FEAT_CMDWIN
2905 static char_u *check_cedit __ARGS((void));
2906 #endif
2907 #ifdef FEAT_TITLE
2908 static void did_set_title __ARGS((int icon));
2909 #endif
2910 static char_u *option_expand __ARGS((int opt_idx, char_u *val));
2911 static void didset_options __ARGS((void));
2912 static void check_string_option __ARGS((char_u **pp));
2913 #if defined(FEAT_EVAL) || defined(PROTO)
2914 static long_u *insecure_flag __ARGS((int opt_idx, int opt_flags));
2915 #else
2916 # define insecure_flag(opt_idx, opt_flags) (&options[opt_idx].flags)
2917 #endif
2918 static void set_string_option_global __ARGS((int opt_idx, char_u **varp));
2919 static void set_string_option __ARGS((int opt_idx, char_u *value, int opt_flags));
2920 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));
2921 static char_u *set_chars_option __ARGS((char_u **varp));
2922 #ifdef FEAT_CLIPBOARD
2923 static char_u *check_clipboard_option __ARGS((void));
2924 #endif
2925 #ifdef FEAT_SPELL
2926 static char_u *compile_cap_prog __ARGS((buf_T *buf));
2927 #endif
2928 #ifdef FEAT_EVAL
2929 static void set_option_scriptID_idx __ARGS((int opt_idx, int opt_flags, int id));
2930 #endif
2931 static char_u *set_bool_option __ARGS((int opt_idx, char_u *varp, int value, int opt_flags));
2932 static char_u *set_num_option __ARGS((int opt_idx, char_u *varp, long value, char_u *errbuf, size_t errbuflen, int opt_flags));
2933 static void check_redraw __ARGS((long_u flags));
2934 static int findoption __ARGS((char_u *));
2935 static int find_key_option __ARGS((char_u *));
2936 static void showoptions __ARGS((int all, int opt_flags));
2937 static int optval_default __ARGS((struct vimoption *, char_u *varp));
2938 static void showoneopt __ARGS((struct vimoption *, int opt_flags));
2939 static int put_setstring __ARGS((FILE *fd, char *cmd, char *name, char_u **valuep, int expand));
2940 static int put_setnum __ARGS((FILE *fd, char *cmd, char *name, long *valuep));
2941 static int put_setbool __ARGS((FILE *fd, char *cmd, char *name, int value));
2942 static int istermoption __ARGS((struct vimoption *));
2943 static char_u *get_varp_scope __ARGS((struct vimoption *p, int opt_flags));
2944 static char_u *get_varp __ARGS((struct vimoption *));
2945 static void option_value2string __ARGS((struct vimoption *, int opt_flags));
2946 static int wc_use_keyname __ARGS((char_u *varp, long *wcp));
2947 #ifdef FEAT_LANGMAP
2948 static void langmap_init __ARGS((void));
2949 static void langmap_set __ARGS((void));
2950 #endif
2951 static void paste_option_changed __ARGS((void));
2952 static void compatible_set __ARGS((void));
2953 #ifdef FEAT_LINEBREAK
2954 static void fill_breakat_flags __ARGS((void));
2955 #endif
2956 static int opt_strings_flags __ARGS((char_u *val, char **values, unsigned *flagp, int list));
2957 static int check_opt_strings __ARGS((char_u *val, char **values, int));
2958 static int check_opt_wim __ARGS((void));
2961 * Initialize the options, first part.
2963 * Called only once from main(), just after creating the first buffer.
2965 void
2966 set_init_1()
2968 char_u *p;
2969 int opt_idx;
2970 long_u n;
2971 #if defined(FEAT_GUI_MACVIM) && defined(FEAT_MBYTE)
2972 int did_mb_init;
2973 #endif
2975 #ifdef FEAT_LANGMAP
2976 langmap_init();
2977 #endif
2979 /* Be Vi compatible by default */
2980 p_cp = TRUE;
2982 /* Use POSIX compatibility when $VIM_POSIX is set. */
2983 if (mch_getenv((char_u *)"VIM_POSIX") != NULL)
2985 set_string_default("cpo", (char_u *)CPO_ALL);
2986 set_string_default("shm", (char_u *)"A");
2990 * Find default value for 'shell' option.
2991 * Don't use it if it is empty.
2993 if (((p = mch_getenv((char_u *)"SHELL")) != NULL && *p != NUL)
2994 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
2995 # ifdef __EMX__
2996 || ((p = mch_getenv((char_u *)"EMXSHELL")) != NULL && *p != NUL)
2997 # endif
2998 || ((p = mch_getenv((char_u *)"COMSPEC")) != NULL && *p != NUL)
2999 # ifdef WIN3264
3000 || ((p = default_shell()) != NULL && *p != NUL)
3001 # endif
3002 #endif
3004 set_string_default("sh", p);
3006 #ifdef FEAT_WILDIGN
3008 * Set the default for 'backupskip' to include environment variables for
3009 * temp files.
3012 # ifdef UNIX
3013 static char *(names[4]) = {"", "TMPDIR", "TEMP", "TMP"};
3014 # else
3015 static char *(names[3]) = {"TMPDIR", "TEMP", "TMP"};
3016 # endif
3017 int len;
3018 garray_T ga;
3019 int mustfree;
3021 ga_init2(&ga, 1, 100);
3022 for (n = 0; n < (long)(sizeof(names) / sizeof(char *)); ++n)
3024 mustfree = FALSE;
3025 # ifdef UNIX
3026 if (*names[n] == NUL)
3027 p = (char_u *)"/tmp";
3028 else
3029 # endif
3030 p = vim_getenv((char_u *)names[n], &mustfree);
3031 if (p != NULL && *p != NUL)
3033 /* First time count the NUL, otherwise count the ','. */
3034 len = (int)STRLEN(p) + 3;
3035 if (ga_grow(&ga, len) == OK)
3037 if (ga.ga_len > 0)
3038 STRCAT(ga.ga_data, ",");
3039 STRCAT(ga.ga_data, p);
3040 add_pathsep(ga.ga_data);
3041 STRCAT(ga.ga_data, "*");
3042 ga.ga_len += len;
3045 if (mustfree)
3046 vim_free(p);
3048 if (ga.ga_data != NULL)
3050 set_string_default("bsk", ga.ga_data);
3051 vim_free(ga.ga_data);
3054 #endif
3057 * 'maxmemtot' and 'maxmem' may have to be adjusted for available memory
3059 opt_idx = findoption((char_u *)"maxmemtot");
3060 if (opt_idx >= 0)
3062 #if !defined(HAVE_AVAIL_MEM) && !defined(HAVE_TOTAL_MEM)
3063 if (options[opt_idx].def_val[VI_DEFAULT] == (char_u *)0L)
3064 #endif
3066 #ifdef HAVE_AVAIL_MEM
3067 /* Use amount of memory available at this moment. */
3068 n = (mch_avail_mem(FALSE) >> 11);
3069 #else
3070 # ifdef HAVE_TOTAL_MEM
3071 /* Use amount of memory available to Vim. */
3072 n = (mch_total_mem(FALSE) >> 1);
3073 # else
3074 n = (0x7fffffff >> 11);
3075 # endif
3076 #endif
3077 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)n;
3078 opt_idx = findoption((char_u *)"maxmem");
3079 if (opt_idx >= 0)
3081 #if !defined(HAVE_AVAIL_MEM) && !defined(HAVE_TOTAL_MEM)
3082 if ((long)options[opt_idx].def_val[VI_DEFAULT] > n
3083 || (long)options[opt_idx].def_val[VI_DEFAULT] == 0L)
3084 #endif
3085 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)n;
3090 #ifdef FEAT_GUI_W32
3091 /* force 'shortname' for Win32s */
3092 if (gui_is_win32s())
3094 opt_idx = findoption((char_u *)"shortname");
3095 if (opt_idx >= 0)
3096 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)TRUE;
3098 #endif
3100 #ifdef FEAT_SEARCHPATH
3102 char_u *cdpath;
3103 char_u *buf;
3104 int i;
3105 int j;
3106 int mustfree = FALSE;
3108 /* Initialize the 'cdpath' option's default value. */
3109 cdpath = vim_getenv((char_u *)"CDPATH", &mustfree);
3110 if (cdpath != NULL)
3112 buf = alloc((unsigned)((STRLEN(cdpath) << 1) + 2));
3113 if (buf != NULL)
3115 buf[0] = ','; /* start with ",", current dir first */
3116 j = 1;
3117 for (i = 0; cdpath[i] != NUL; ++i)
3119 if (vim_ispathlistsep(cdpath[i]))
3120 buf[j++] = ',';
3121 else
3123 if (cdpath[i] == ' ' || cdpath[i] == ',')
3124 buf[j++] = '\\';
3125 buf[j++] = cdpath[i];
3128 buf[j] = NUL;
3129 opt_idx = findoption((char_u *)"cdpath");
3130 if (opt_idx >= 0)
3132 options[opt_idx].def_val[VI_DEFAULT] = buf;
3133 options[opt_idx].flags |= P_DEF_ALLOCED;
3136 if (mustfree)
3137 vim_free(cdpath);
3140 #endif
3142 #if defined(FEAT_POSTSCRIPT) && (defined(MSWIN) || defined(OS2) || defined(VMS) || defined(EBCDIC) || defined(MAC) || defined(hpux))
3143 /* Set print encoding on platforms that don't default to latin1 */
3144 set_string_default("penc",
3145 # if defined(MSWIN) || defined(OS2)
3146 (char_u *)"cp1252"
3147 # else
3148 # ifdef VMS
3149 (char_u *)"dec-mcs"
3150 # else
3151 # ifdef EBCDIC
3152 (char_u *)"ebcdic-uk"
3153 # else
3154 # ifdef MAC
3155 (char_u *)"mac-roman"
3156 # else /* HPUX */
3157 (char_u *)"hp-roman8"
3158 # endif
3159 # endif
3160 # endif
3161 # endif
3163 #endif
3165 #ifdef FEAT_POSTSCRIPT
3166 /* 'printexpr' must be allocated to be able to evaluate it. */
3167 set_string_default("pexpr",
3168 # if defined(MSWIN) || defined(MSDOS) || defined(OS2)
3169 (char_u *)"system('copy' . ' ' . v:fname_in . (&printdevice == '' ? ' LPT1:' : (' \"' . &printdevice . '\"'))) . delete(v:fname_in)"
3170 # else
3171 # ifdef VMS
3172 (char_u *)"system('print/delete' . (&printdevice == '' ? '' : ' /queue=' . &printdevice) . ' ' . v:fname_in)"
3174 # else
3175 (char_u *)"system('lpr' . (&printdevice == '' ? '' : ' -P' . &printdevice) . ' ' . v:fname_in) . delete(v:fname_in) + v:shell_error"
3176 # endif
3177 # endif
3179 #endif
3182 * Set all the options (except the terminal options) to their default
3183 * value. Also set the global value for local options.
3185 set_options_default(0);
3187 #ifdef FEAT_GUI
3188 if (found_reverse_arg)
3189 set_option_value((char_u *)"bg", 0L, (char_u *)"dark", 0);
3190 #endif
3192 curbuf->b_p_initialized = TRUE;
3193 curbuf->b_p_ar = -1; /* no local 'autoread' value */
3194 check_buf_options(curbuf);
3195 check_win_options(curwin);
3196 check_options();
3198 /* Must be before option_expand(), because that one needs vim_isIDc() */
3199 didset_options();
3201 #ifdef FEAT_SPELL
3202 /* Use the current chartab for the generic chartab. */
3203 init_spell_chartab();
3204 #endif
3206 #ifdef FEAT_LINEBREAK
3208 * initialize the table for 'breakat'.
3210 fill_breakat_flags();
3211 #endif
3214 * Expand environment variables and things like "~" for the defaults.
3215 * If option_expand() returns non-NULL the variable is expanded. This can
3216 * only happen for non-indirect options.
3217 * Also set the default to the expanded value, so ":set" does not list
3218 * them.
3219 * Don't set the P_ALLOCED flag, because we don't want to free the
3220 * default.
3222 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
3224 if ((options[opt_idx].flags & P_GETTEXT)
3225 && options[opt_idx].var != NULL)
3226 p = (char_u *)_(*(char **)options[opt_idx].var);
3227 else
3228 p = option_expand(opt_idx, NULL);
3229 if (p != NULL && (p = vim_strsave(p)) != NULL)
3231 *(char_u **)options[opt_idx].var = p;
3232 /* VIMEXP
3233 * Defaults for all expanded options are currently the same for Vi
3234 * and Vim. When this changes, add some code here! Also need to
3235 * split P_DEF_ALLOCED in two.
3237 if (options[opt_idx].flags & P_DEF_ALLOCED)
3238 vim_free(options[opt_idx].def_val[VI_DEFAULT]);
3239 options[opt_idx].def_val[VI_DEFAULT] = p;
3240 options[opt_idx].flags |= P_DEF_ALLOCED;
3244 /* Initialize the highlight_attr[] table. */
3245 highlight_changed();
3247 save_file_ff(curbuf); /* Buffer is unchanged */
3249 /* Parse default for 'wildmode' */
3250 check_opt_wim();
3252 #if defined(FEAT_ARABIC)
3253 /* Detect use of mlterm.
3254 * Mlterm is a terminal emulator akin to xterm that has some special
3255 * abilities (bidi namely).
3256 * NOTE: mlterm's author is being asked to 'set' a variable
3257 * instead of an environment variable due to inheritance.
3259 if (mch_getenv((char_u *)"MLTERM") != NULL)
3260 set_option_value((char_u *)"tbidi", 1L, NULL, 0);
3261 #endif
3263 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
3264 /* Parse default for 'fillchars'. */
3265 (void)set_chars_option(&p_fcs);
3266 #endif
3268 #ifdef FEAT_CLIPBOARD
3269 /* Parse default for 'clipboard' */
3270 (void)check_clipboard_option();
3271 #endif
3273 #ifdef FEAT_MBYTE
3274 # if defined(WIN3264) && defined(FEAT_GETTEXT)
3276 * If $LANG isn't set, try to get a good value for it. This makes the
3277 * right language be used automatically. Don't do this for English.
3279 if (mch_getenv((char_u *)"LANG") == NULL)
3281 char buf[20];
3283 /* Could use LOCALE_SISO639LANGNAME, but it's not in Win95.
3284 * LOCALE_SABBREVLANGNAME gives us three letters, like "enu", we use
3285 * only the first two. */
3286 n = GetLocaleInfo(LOCALE_USER_DEFAULT, LOCALE_SABBREVLANGNAME,
3287 (LPTSTR)buf, 20);
3288 if (n >= 2 && STRNICMP(buf, "en", 2) != 0)
3290 /* There are a few exceptions (probably more) */
3291 if (STRNICMP(buf, "cht", 3) == 0 || STRNICMP(buf, "zht", 3) == 0)
3292 STRCPY(buf, "zh_TW");
3293 else if (STRNICMP(buf, "chs", 3) == 0
3294 || STRNICMP(buf, "zhc", 3) == 0)
3295 STRCPY(buf, "zh_CN");
3296 else if (STRNICMP(buf, "jp", 2) == 0)
3297 STRCPY(buf, "ja");
3298 else
3299 buf[2] = NUL; /* truncate to two-letter code */
3300 vim_setenv("LANG", buf);
3303 # else
3304 # ifdef MACOS_CONVERT
3305 if (mch_getenv((char_u *)"LANG") == NULL)
3307 char buf[20];
3308 if (LocaleRefGetPartString(NULL,
3309 kLocaleLanguageMask | kLocaleLanguageVariantMask |
3310 kLocaleRegionMask | kLocaleRegionVariantMask,
3311 sizeof buf, buf) == noErr && *buf)
3313 vim_setenv((char_u *)"LANG", (char_u *)buf);
3314 # ifdef HAVE_LOCALE_H
3315 setlocale(LC_ALL, "");
3316 # endif
3319 # endif
3320 # endif
3322 /* enc_locale() will try to find the encoding of the current locale. */
3323 p = enc_locale();
3324 if (p != NULL)
3326 char_u *save_enc;
3328 /* Try setting 'encoding' and check if the value is valid.
3329 * If not, go back to the default "latin1". */
3330 save_enc = p_enc;
3331 p_enc = p;
3332 if (STRCMP(p_enc, "gb18030") == 0)
3334 /* We don't support "gb18030", but "cp936" is a good substitute
3335 * for practical purposes, thus use that. It's not an alias to
3336 * still support conversion between gb18030 and utf-8. */
3337 p_enc = vim_strsave((char_u *)"cp936");
3338 vim_free(p);
3340 #if defined(FEAT_GUI_MACVIM)
3341 did_mb_init = (mb_init() == NULL);
3342 if (!did_mb_init)
3344 /* The encoding returned by enc_locale() was invalid, so fall back
3345 * on using utf-8 as the default encoding in MacVim. */
3346 vim_free(p_enc);
3347 p_enc = vim_strsave((char_u *)"utf-8");
3348 did_mb_init = (mb_init() == NULL);
3351 /* did_mb_init should always be TRUE, but check just in case. */
3352 if (did_mb_init)
3353 #else
3354 if (mb_init() == NULL)
3355 #endif
3357 opt_idx = findoption((char_u *)"encoding");
3358 if (opt_idx >= 0)
3360 options[opt_idx].def_val[VI_DEFAULT] = p_enc;
3361 options[opt_idx].flags |= P_DEF_ALLOCED;
3364 #if defined(MSDOS) || defined(MSWIN) || defined(OS2) || defined(MACOS) \
3365 || defined(VMS)
3366 if (STRCMP(p_enc, "latin1") == 0
3367 # ifdef FEAT_MBYTE
3368 || enc_utf8
3369 # endif
3372 /* Adjust the default for 'isprint' and 'iskeyword' to match
3373 * latin1. Also set the defaults for when 'nocompatible' is
3374 * set. */
3375 set_string_option_direct((char_u *)"isp", -1,
3376 ISP_LATIN1, OPT_FREE, SID_NONE);
3377 set_string_option_direct((char_u *)"isk", -1,
3378 ISK_LATIN1, OPT_FREE, SID_NONE);
3379 opt_idx = findoption((char_u *)"isp");
3380 if (opt_idx >= 0)
3381 options[opt_idx].def_val[VIM_DEFAULT] = ISP_LATIN1;
3382 opt_idx = findoption((char_u *)"isk");
3383 if (opt_idx >= 0)
3384 options[opt_idx].def_val[VIM_DEFAULT] = ISK_LATIN1;
3385 (void)init_chartab();
3387 #endif
3389 # if defined(WIN3264) && !defined(FEAT_GUI)
3390 /* Win32 console: When GetACP() returns a different value from
3391 * GetConsoleCP() set 'termencoding'. */
3392 if (GetACP() != GetConsoleCP())
3394 char buf[50];
3396 sprintf(buf, "cp%ld", (long)GetConsoleCP());
3397 p_tenc = vim_strsave((char_u *)buf);
3398 if (p_tenc != NULL)
3400 opt_idx = findoption((char_u *)"termencoding");
3401 if (opt_idx >= 0)
3403 options[opt_idx].def_val[VI_DEFAULT] = p_tenc;
3404 options[opt_idx].flags |= P_DEF_ALLOCED;
3406 convert_setup(&input_conv, p_tenc, p_enc);
3407 convert_setup(&output_conv, p_enc, p_tenc);
3409 else
3410 p_tenc = empty_option;
3412 # endif
3413 # if defined(WIN3264) && defined(FEAT_MBYTE)
3414 /* $HOME may have characters in active code page. */
3415 init_homedir();
3416 # endif
3418 else
3420 vim_free(p_enc);
3421 p_enc = save_enc;
3424 #endif
3426 #ifdef FEAT_MULTI_LANG
3427 /* Set the default for 'helplang'. */
3428 set_helplang_default(get_mess_lang());
3429 #endif
3433 * Set an option to its default value.
3434 * This does not take care of side effects!
3436 static void
3437 set_option_default(opt_idx, opt_flags, compatible)
3438 int opt_idx;
3439 int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */
3440 int compatible; /* use Vi default value */
3442 char_u *varp; /* pointer to variable for current option */
3443 int dvi; /* index in def_val[] */
3444 long_u flags;
3445 long_u *flagsp;
3446 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
3448 varp = get_varp_scope(&(options[opt_idx]), both ? OPT_LOCAL : opt_flags);
3449 flags = options[opt_idx].flags;
3450 if (varp != NULL) /* skip hidden option, nothing to do for it */
3452 dvi = ((flags & P_VI_DEF) || compatible) ? VI_DEFAULT : VIM_DEFAULT;
3453 if (flags & P_STRING)
3455 /* Use set_string_option_direct() for local options to handle
3456 * freeing and allocating the value. */
3457 if (options[opt_idx].indir != PV_NONE)
3458 set_string_option_direct(NULL, opt_idx,
3459 options[opt_idx].def_val[dvi], opt_flags, 0);
3460 else
3462 if ((opt_flags & OPT_FREE) && (flags & P_ALLOCED))
3463 free_string_option(*(char_u **)(varp));
3464 *(char_u **)varp = options[opt_idx].def_val[dvi];
3465 options[opt_idx].flags &= ~P_ALLOCED;
3468 else if (flags & P_NUM)
3470 if (options[opt_idx].indir == PV_SCROLL)
3471 win_comp_scroll(curwin);
3472 else
3474 *(long *)varp = (long)(long_i)options[opt_idx].def_val[dvi];
3475 /* May also set global value for local option. */
3476 if (both)
3477 *(long *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) =
3478 *(long *)varp;
3481 else /* P_BOOL */
3483 /* the cast to long is required for Manx C, long_i is needed for
3484 * MSVC */
3485 *(int *)varp = (int)(long)(long_i)options[opt_idx].def_val[dvi];
3486 #ifdef UNIX
3487 /* 'modeline' defaults to off for root */
3488 if (options[opt_idx].indir == PV_ML && getuid() == ROOT_UID)
3489 *(int *)varp = FALSE;
3490 #endif
3491 /* May also set global value for local option. */
3492 if (both)
3493 *(int *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) =
3494 *(int *)varp;
3497 /* The default value is not insecure. */
3498 flagsp = insecure_flag(opt_idx, opt_flags);
3499 *flagsp = *flagsp & ~P_INSECURE;
3502 #ifdef FEAT_EVAL
3503 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
3504 #endif
3508 * Set all options (except terminal options) to their default value.
3510 static void
3511 set_options_default(opt_flags)
3512 int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */
3514 int i;
3515 #ifdef FEAT_WINDOWS
3516 win_T *wp;
3517 tabpage_T *tp;
3518 #endif
3520 for (i = 0; !istermoption(&options[i]); i++)
3521 if (!(options[i].flags & P_NODEFAULT))
3522 set_option_default(i, opt_flags, p_cp);
3524 #ifdef FEAT_WINDOWS
3525 /* The 'scroll' option must be computed for all windows. */
3526 FOR_ALL_TAB_WINDOWS(tp, wp)
3527 win_comp_scroll(wp);
3528 #else
3529 win_comp_scroll(curwin);
3530 #endif
3534 * Set the Vi-default value of a string option.
3535 * Used for 'sh', 'backupskip' and 'term'.
3537 void
3538 set_string_default(name, val)
3539 char *name;
3540 char_u *val;
3542 char_u *p;
3543 int opt_idx;
3545 p = vim_strsave(val);
3546 if (p != NULL) /* we don't want a NULL */
3548 opt_idx = findoption((char_u *)name);
3549 if (opt_idx >= 0)
3551 if (options[opt_idx].flags & P_DEF_ALLOCED)
3552 vim_free(options[opt_idx].def_val[VI_DEFAULT]);
3553 options[opt_idx].def_val[VI_DEFAULT] = p;
3554 options[opt_idx].flags |= P_DEF_ALLOCED;
3560 * Set the Vi-default value of a number option.
3561 * Used for 'lines' and 'columns'.
3563 void
3564 set_number_default(name, val)
3565 char *name;
3566 long val;
3568 int opt_idx;
3570 opt_idx = findoption((char_u *)name);
3571 if (opt_idx >= 0)
3572 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
3575 #if defined(EXITFREE) || defined(PROTO)
3577 * Free all options.
3579 void
3580 free_all_options()
3582 int i;
3584 for (i = 0; !istermoption(&options[i]); i++)
3586 if (options[i].indir == PV_NONE)
3588 /* global option: free value and default value. */
3589 if (options[i].flags & P_ALLOCED && options[i].var != NULL)
3590 free_string_option(*(char_u **)options[i].var);
3591 if (options[i].flags & P_DEF_ALLOCED)
3592 free_string_option(options[i].def_val[VI_DEFAULT]);
3594 else if (options[i].var != VAR_WIN
3595 && (options[i].flags & P_STRING))
3596 /* buffer-local option: free global value */
3597 free_string_option(*(char_u **)options[i].var);
3600 #endif
3604 * Initialize the options, part two: After getting Rows and Columns and
3605 * setting 'term'.
3607 void
3608 set_init_2()
3610 int idx;
3613 * 'scroll' defaults to half the window height. Note that this default is
3614 * wrong when the window height changes.
3616 set_number_default("scroll", (long)((long_u)Rows >> 1));
3617 idx = findoption((char_u *)"scroll");
3618 if (idx >= 0 && !(options[idx].flags & P_WAS_SET))
3619 set_option_default(idx, OPT_LOCAL, p_cp);
3620 comp_col();
3623 * 'window' is only for backwards compatibility with Vi.
3624 * Default is Rows - 1.
3626 if (!option_was_set((char_u *)"window"))
3627 p_window = Rows - 1;
3628 set_number_default("window", Rows - 1);
3630 /* For DOS console the default is always black. */
3631 #if !((defined(MSDOS) || defined(OS2) || defined(WIN3264)) && !defined(FEAT_GUI))
3633 * If 'background' wasn't set by the user, try guessing the value,
3634 * depending on the terminal name. Only need to check for terminals
3635 * with a dark background, that can handle color.
3637 idx = findoption((char_u *)"bg");
3638 if (idx >= 0 && !(options[idx].flags & P_WAS_SET)
3639 && *term_bg_default() == 'd')
3641 set_string_option_direct(NULL, idx, (char_u *)"dark", OPT_FREE, 0);
3642 /* don't mark it as set, when starting the GUI it may be
3643 * changed again */
3644 options[idx].flags &= ~P_WAS_SET;
3646 #endif
3648 #ifdef CURSOR_SHAPE
3649 parse_shape_opt(SHAPE_CURSOR); /* set cursor shapes from 'guicursor' */
3650 #endif
3651 #ifdef FEAT_MOUSESHAPE
3652 parse_shape_opt(SHAPE_MOUSE); /* set mouse shapes from 'mouseshape' */
3653 #endif
3654 #ifdef FEAT_PRINTER
3655 (void)parse_printoptions(); /* parse 'printoptions' default value */
3656 #endif
3660 * Return "dark" or "light" depending on the kind of terminal.
3661 * This is just guessing! Recognized are:
3662 * "linux" Linux console
3663 * "screen.linux" Linux console with screen
3664 * "cygwin" Cygwin shell
3665 * "putty" Putty program
3666 * We also check the COLORFGBG environment variable, which is set by
3667 * rxvt and derivatives. This variable contains either two or three
3668 * values separated by semicolons; we want the last value in either
3669 * case. If this value is 0-6 or 8, our background is dark.
3671 static char_u *
3672 term_bg_default()
3674 #if defined(MSDOS) || defined(OS2) || defined(WIN3264)
3675 /* DOS console nearly always black */
3676 return (char_u *)"dark";
3677 #else
3678 char_u *p;
3680 if (STRCMP(T_NAME, "linux") == 0
3681 || STRCMP(T_NAME, "screen.linux") == 0
3682 || STRCMP(T_NAME, "cygwin") == 0
3683 || STRCMP(T_NAME, "putty") == 0
3684 || ((p = mch_getenv((char_u *)"COLORFGBG")) != NULL
3685 && (p = vim_strrchr(p, ';')) != NULL
3686 && ((p[1] >= '0' && p[1] <= '6') || p[1] == '8')
3687 && p[2] == NUL))
3688 return (char_u *)"dark";
3689 return (char_u *)"light";
3690 #endif
3694 * Initialize the options, part three: After reading the .vimrc
3696 void
3697 set_init_3()
3699 #if defined(UNIX) || defined(OS2) || defined(WIN3264)
3701 * Set 'shellpipe' and 'shellredir', depending on the 'shell' option.
3702 * This is done after other initializations, where 'shell' might have been
3703 * set, but only if they have not been set before.
3705 char_u *p;
3706 int idx_srr;
3707 int do_srr;
3708 #ifdef FEAT_QUICKFIX
3709 int idx_sp;
3710 int do_sp;
3711 #endif
3713 idx_srr = findoption((char_u *)"srr");
3714 if (idx_srr < 0)
3715 do_srr = FALSE;
3716 else
3717 do_srr = !(options[idx_srr].flags & P_WAS_SET);
3718 #ifdef FEAT_QUICKFIX
3719 idx_sp = findoption((char_u *)"sp");
3720 if (idx_sp < 0)
3721 do_sp = FALSE;
3722 else
3723 do_sp = !(options[idx_sp].flags & P_WAS_SET);
3724 #endif
3727 * Isolate the name of the shell:
3728 * - Skip beyond any path. E.g., "/usr/bin/csh -f" -> "csh -f".
3729 * - Remove any argument. E.g., "csh -f" -> "csh".
3731 p = gettail(p_sh);
3732 p = vim_strnsave(p, (int)(skiptowhite(p) - p));
3733 if (p != NULL)
3736 * Default for p_sp is "| tee", for p_srr is ">".
3737 * For known shells it is changed here to include stderr.
3739 if ( fnamecmp(p, "csh") == 0
3740 || fnamecmp(p, "tcsh") == 0
3741 # if defined(OS2) || defined(WIN3264) /* also check with .exe extension */
3742 || fnamecmp(p, "csh.exe") == 0
3743 || fnamecmp(p, "tcsh.exe") == 0
3744 # endif
3747 #if defined(FEAT_QUICKFIX)
3748 if (do_sp)
3750 # ifdef WIN3264
3751 p_sp = (char_u *)">&";
3752 # else
3753 p_sp = (char_u *)"|& tee";
3754 # endif
3755 options[idx_sp].def_val[VI_DEFAULT] = p_sp;
3757 #endif
3758 if (do_srr)
3760 p_srr = (char_u *)">&";
3761 options[idx_srr].def_val[VI_DEFAULT] = p_srr;
3764 else
3765 # ifndef OS2 /* Always use bourne shell style redirection if we reach this */
3766 if ( fnamecmp(p, "sh") == 0
3767 || fnamecmp(p, "ksh") == 0
3768 || fnamecmp(p, "zsh") == 0
3769 || fnamecmp(p, "zsh-beta") == 0
3770 || fnamecmp(p, "bash") == 0
3771 # ifdef WIN3264
3772 || fnamecmp(p, "cmd") == 0
3773 || fnamecmp(p, "sh.exe") == 0
3774 || fnamecmp(p, "ksh.exe") == 0
3775 || fnamecmp(p, "zsh.exe") == 0
3776 || fnamecmp(p, "zsh-beta.exe") == 0
3777 || fnamecmp(p, "bash.exe") == 0
3778 || fnamecmp(p, "cmd.exe") == 0
3779 # endif
3781 # endif
3783 #if defined(FEAT_QUICKFIX)
3784 if (do_sp)
3786 # ifdef WIN3264
3787 p_sp = (char_u *)">%s 2>&1";
3788 # else
3789 p_sp = (char_u *)"2>&1| tee";
3790 # endif
3791 options[idx_sp].def_val[VI_DEFAULT] = p_sp;
3793 #endif
3794 if (do_srr)
3796 p_srr = (char_u *)">%s 2>&1";
3797 options[idx_srr].def_val[VI_DEFAULT] = p_srr;
3800 vim_free(p);
3802 #endif
3804 #if defined(MSDOS) || defined(WIN3264) || defined(OS2)
3806 * Set 'shellcmdflag and 'shellquote' depending on the 'shell' option.
3807 * This is done after other initializations, where 'shell' might have been
3808 * set, but only if they have not been set before. Default for p_shcf is
3809 * "/c", for p_shq is "". For "sh" like shells it is changed here to
3810 * "-c" and "\"", but not for DJGPP, because it starts the shell without
3811 * command.com. And for Win32 we need to set p_sxq instead.
3813 if (strstr((char *)gettail(p_sh), "sh") != NULL)
3815 int idx3;
3817 idx3 = findoption((char_u *)"shcf");
3818 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
3820 p_shcf = (char_u *)"-c";
3821 options[idx3].def_val[VI_DEFAULT] = p_shcf;
3824 # ifndef DJGPP
3825 # ifdef WIN3264
3826 /* Somehow Win32 requires the quotes around the redirection too */
3827 idx3 = findoption((char_u *)"sxq");
3828 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
3830 p_sxq = (char_u *)"\"";
3831 options[idx3].def_val[VI_DEFAULT] = p_sxq;
3833 # else
3834 idx3 = findoption((char_u *)"shq");
3835 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
3837 p_shq = (char_u *)"\"";
3838 options[idx3].def_val[VI_DEFAULT] = p_shq;
3840 # endif
3841 # endif
3843 #endif
3845 #ifdef FEAT_TITLE
3846 set_title_defaults();
3847 #endif
3850 #if defined(FEAT_MULTI_LANG) || defined(PROTO)
3852 * When 'helplang' is still at its default value, set it to "lang".
3853 * Only the first two characters of "lang" are used.
3855 void
3856 set_helplang_default(lang)
3857 char_u *lang;
3859 int idx;
3861 if (lang == NULL || STRLEN(lang) < 2) /* safety check */
3862 return;
3863 idx = findoption((char_u *)"hlg");
3864 if (idx >= 0 && !(options[idx].flags & P_WAS_SET))
3866 if (options[idx].flags & P_ALLOCED)
3867 free_string_option(p_hlg);
3868 p_hlg = vim_strsave(lang);
3869 if (p_hlg == NULL)
3870 p_hlg = empty_option;
3871 else
3873 /* zh_CN becomes "cn", zh_TW becomes "tw". */
3874 if (STRNICMP(p_hlg, "zh_", 3) == 0 && STRLEN(p_hlg) >= 5)
3876 p_hlg[0] = TOLOWER_ASC(p_hlg[3]);
3877 p_hlg[1] = TOLOWER_ASC(p_hlg[4]);
3879 p_hlg[2] = NUL;
3881 options[idx].flags |= P_ALLOCED;
3884 #endif
3886 #ifdef FEAT_GUI
3887 static char_u *gui_bg_default __ARGS((void));
3889 static char_u *
3890 gui_bg_default()
3892 if (gui_get_lightness(gui.back_pixel) < 127)
3893 return (char_u *)"dark";
3894 return (char_u *)"light";
3898 * Option initializations that can only be done after opening the GUI window.
3900 void
3901 init_gui_options()
3903 /* Set the 'background' option according to the lightness of the
3904 * background color, unless the user has set it already. */
3905 if (!option_was_set((char_u *)"bg") && STRCMP(p_bg, gui_bg_default()) != 0)
3907 set_option_value((char_u *)"bg", 0L, gui_bg_default(), 0);
3908 highlight_changed();
3911 #endif
3913 #ifdef FEAT_TITLE
3915 * 'title' and 'icon' only default to true if they have not been set or reset
3916 * in .vimrc and we can read the old value.
3917 * When 'title' and 'icon' have been reset in .vimrc, we won't even check if
3918 * they can be reset. This reduces startup time when using X on a remote
3919 * machine.
3921 void
3922 set_title_defaults()
3924 int idx1;
3925 long val;
3928 * If GUI is (going to be) used, we can always set the window title and
3929 * icon name. Saves a bit of time, because the X11 display server does
3930 * not need to be contacted.
3932 idx1 = findoption((char_u *)"title");
3933 if (idx1 >= 0 && !(options[idx1].flags & P_WAS_SET))
3935 #ifdef FEAT_GUI
3936 if (gui.starting || gui.in_use)
3937 val = TRUE;
3938 else
3939 #endif
3940 val = mch_can_restore_title();
3941 options[idx1].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
3942 p_title = val;
3944 idx1 = findoption((char_u *)"icon");
3945 if (idx1 >= 0 && !(options[idx1].flags & P_WAS_SET))
3947 #ifdef FEAT_GUI
3948 if (gui.starting || gui.in_use)
3949 val = TRUE;
3950 else
3951 #endif
3952 val = mch_can_restore_icon();
3953 options[idx1].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
3954 p_icon = val;
3957 #endif
3960 * Parse 'arg' for option settings.
3962 * 'arg' may be IObuff, but only when no errors can be present and option
3963 * does not need to be expanded with option_expand().
3964 * "opt_flags":
3965 * 0 for ":set"
3966 * OPT_GLOBAL for ":setglobal"
3967 * OPT_LOCAL for ":setlocal" and a modeline
3968 * OPT_MODELINE for a modeline
3969 * OPT_WINONLY to only set window-local options
3970 * OPT_NOWIN to skip setting window-local options
3972 * returns FAIL if an error is detected, OK otherwise
3975 do_set(arg, opt_flags)
3976 char_u *arg; /* option string (may be written to!) */
3977 int opt_flags;
3979 int opt_idx;
3980 char_u *errmsg;
3981 char_u errbuf[80];
3982 char_u *startarg;
3983 int prefix; /* 1: nothing, 0: "no", 2: "inv" in front of name */
3984 int nextchar; /* next non-white char after option name */
3985 int afterchar; /* character just after option name */
3986 int len;
3987 int i;
3988 long value;
3989 int key;
3990 long_u flags; /* flags for current option */
3991 char_u *varp = NULL; /* pointer to variable for current option */
3992 int did_show = FALSE; /* already showed one value */
3993 int adding; /* "opt+=arg" */
3994 int prepending; /* "opt^=arg" */
3995 int removing; /* "opt-=arg" */
3996 int cp_val = 0;
3997 char_u key_name[2];
3999 if (*arg == NUL)
4001 showoptions(0, opt_flags);
4002 did_show = TRUE;
4003 goto theend;
4006 while (*arg != NUL) /* loop to process all options */
4008 errmsg = NULL;
4009 startarg = arg; /* remember for error message */
4011 if (STRNCMP(arg, "all", 3) == 0 && !isalpha(arg[3])
4012 && !(opt_flags & OPT_MODELINE))
4015 * ":set all" show all options.
4016 * ":set all&" set all options to their default value.
4018 arg += 3;
4019 if (*arg == '&')
4021 ++arg;
4022 /* Only for :set command set global value of local options. */
4023 set_options_default(OPT_FREE | opt_flags);
4025 else
4027 showoptions(1, opt_flags);
4028 did_show = TRUE;
4031 else if (STRNCMP(arg, "termcap", 7) == 0 && !(opt_flags & OPT_MODELINE))
4033 showoptions(2, opt_flags);
4034 show_termcodes();
4035 did_show = TRUE;
4036 arg += 7;
4038 else
4040 prefix = 1;
4041 if (STRNCMP(arg, "no", 2) == 0)
4043 prefix = 0;
4044 arg += 2;
4046 else if (STRNCMP(arg, "inv", 3) == 0)
4048 prefix = 2;
4049 arg += 3;
4052 /* find end of name */
4053 key = 0;
4054 if (*arg == '<')
4056 nextchar = 0;
4057 opt_idx = -1;
4058 /* look out for <t_>;> */
4059 if (arg[1] == 't' && arg[2] == '_' && arg[3] && arg[4])
4060 len = 5;
4061 else
4063 len = 1;
4064 while (arg[len] != NUL && arg[len] != '>')
4065 ++len;
4067 if (arg[len] != '>')
4069 errmsg = e_invarg;
4070 goto skip;
4072 arg[len] = NUL; /* put NUL after name */
4073 if (arg[1] == 't' && arg[2] == '_') /* could be term code */
4074 opt_idx = findoption(arg + 1);
4075 arg[len++] = '>'; /* restore '>' */
4076 if (opt_idx == -1)
4077 key = find_key_option(arg + 1);
4079 else
4081 len = 0;
4083 * The two characters after "t_" may not be alphanumeric.
4085 if (arg[0] == 't' && arg[1] == '_' && arg[2] && arg[3])
4086 len = 4;
4087 else
4088 while (ASCII_ISALNUM(arg[len]) || arg[len] == '_')
4089 ++len;
4090 nextchar = arg[len];
4091 arg[len] = NUL; /* put NUL after name */
4092 opt_idx = findoption(arg);
4093 arg[len] = nextchar; /* restore nextchar */
4094 if (opt_idx == -1)
4095 key = find_key_option(arg);
4098 /* remember character after option name */
4099 afterchar = arg[len];
4101 /* skip white space, allow ":set ai ?" */
4102 while (vim_iswhite(arg[len]))
4103 ++len;
4105 adding = FALSE;
4106 prepending = FALSE;
4107 removing = FALSE;
4108 if (arg[len] != NUL && arg[len + 1] == '=')
4110 if (arg[len] == '+')
4112 adding = TRUE; /* "+=" */
4113 ++len;
4115 else if (arg[len] == '^')
4117 prepending = TRUE; /* "^=" */
4118 ++len;
4120 else if (arg[len] == '-')
4122 removing = TRUE; /* "-=" */
4123 ++len;
4126 nextchar = arg[len];
4128 if (opt_idx == -1 && key == 0) /* found a mismatch: skip */
4130 errmsg = (char_u *)N_("E518: Unknown option");
4131 goto skip;
4134 if (opt_idx >= 0)
4136 if (options[opt_idx].var == NULL) /* hidden option: skip */
4138 /* Only give an error message when requesting the value of
4139 * a hidden option, ignore setting it. */
4140 if (vim_strchr((char_u *)"=:!&<", nextchar) == NULL
4141 && (!(options[opt_idx].flags & P_BOOL)
4142 || nextchar == '?'))
4143 errmsg = (char_u *)N_("E519: Option not supported");
4144 goto skip;
4147 flags = options[opt_idx].flags;
4148 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
4150 else
4152 flags = P_STRING;
4153 if (key < 0)
4155 key_name[0] = KEY2TERMCAP0(key);
4156 key_name[1] = KEY2TERMCAP1(key);
4158 else
4160 key_name[0] = KS_KEY;
4161 key_name[1] = (key & 0xff);
4165 /* Skip all options that are not window-local (used when showing
4166 * an already loaded buffer in a window). */
4167 if ((opt_flags & OPT_WINONLY)
4168 && (opt_idx < 0 || options[opt_idx].var != VAR_WIN))
4169 goto skip;
4171 /* Skip all options that are window-local (used for :vimgrep). */
4172 if ((opt_flags & OPT_NOWIN) && opt_idx >= 0
4173 && options[opt_idx].var == VAR_WIN)
4174 goto skip;
4176 /* Disallow changing some options from modelines */
4177 if ((opt_flags & OPT_MODELINE) && (flags & P_SECURE))
4179 errmsg = (char_u *)_("E520: Not allowed in a modeline");
4180 goto skip;
4183 #ifdef HAVE_SANDBOX
4184 /* Disallow changing some options in the sandbox */
4185 if (sandbox != 0 && (flags & P_SECURE))
4187 errmsg = (char_u *)_(e_sandbox);
4188 goto skip;
4190 #endif
4192 if (vim_strchr((char_u *)"?=:!&<", nextchar) != NULL)
4194 arg += len;
4195 cp_val = p_cp;
4196 if (nextchar == '&' && arg[1] == 'v' && arg[2] == 'i')
4198 if (arg[3] == 'm') /* "opt&vim": set to Vim default */
4200 cp_val = FALSE;
4201 arg += 3;
4203 else /* "opt&vi": set to Vi default */
4205 cp_val = TRUE;
4206 arg += 2;
4209 if (vim_strchr((char_u *)"?!&<", nextchar) != NULL
4210 && arg[1] != NUL && !vim_iswhite(arg[1]))
4212 errmsg = e_trailing;
4213 goto skip;
4218 * allow '=' and ':' as MSDOS command.com allows only one
4219 * '=' character per "set" command line. grrr. (jw)
4221 if (nextchar == '?'
4222 || (prefix == 1
4223 && vim_strchr((char_u *)"=:&<", nextchar) == NULL
4224 && !(flags & P_BOOL)))
4227 * print value
4229 if (did_show)
4230 msg_putchar('\n'); /* cursor below last one */
4231 else
4233 gotocmdline(TRUE); /* cursor at status line */
4234 did_show = TRUE; /* remember that we did a line */
4236 if (opt_idx >= 0)
4238 showoneopt(&options[opt_idx], opt_flags);
4239 #ifdef FEAT_EVAL
4240 if (p_verbose > 0)
4242 /* Mention where the option was last set. */
4243 if (varp == options[opt_idx].var)
4244 last_set_msg(options[opt_idx].scriptID);
4245 else if ((int)options[opt_idx].indir & PV_WIN)
4246 last_set_msg(curwin->w_p_scriptID[
4247 (int)options[opt_idx].indir & PV_MASK]);
4248 else if ((int)options[opt_idx].indir & PV_BUF)
4249 last_set_msg(curbuf->b_p_scriptID[
4250 (int)options[opt_idx].indir & PV_MASK]);
4252 #endif
4254 else
4256 char_u *p;
4258 p = find_termcode(key_name);
4259 if (p == NULL)
4261 errmsg = (char_u *)N_("E518: Unknown option");
4262 goto skip;
4264 else
4265 (void)show_one_termcode(key_name, p, TRUE);
4267 if (nextchar != '?'
4268 && nextchar != NUL && !vim_iswhite(afterchar))
4269 errmsg = e_trailing;
4271 else
4273 if (flags & P_BOOL) /* boolean */
4275 if (nextchar == '=' || nextchar == ':')
4277 errmsg = e_invarg;
4278 goto skip;
4282 * ":set opt!": invert
4283 * ":set opt&": reset to default value
4284 * ":set opt<": reset to global value
4286 if (nextchar == '!')
4287 value = *(int *)(varp) ^ 1;
4288 else if (nextchar == '&')
4289 value = (int)(long)(long_i)options[opt_idx].def_val[
4290 ((flags & P_VI_DEF) || cp_val)
4291 ? VI_DEFAULT : VIM_DEFAULT];
4292 else if (nextchar == '<')
4294 /* For 'autoread' -1 means to use global value. */
4295 if ((int *)varp == &curbuf->b_p_ar
4296 && opt_flags == OPT_LOCAL)
4297 value = -1;
4298 else
4299 value = *(int *)get_varp_scope(&(options[opt_idx]),
4300 OPT_GLOBAL);
4302 else
4305 * ":set invopt": invert
4306 * ":set opt" or ":set noopt": set or reset
4308 if (nextchar != NUL && !vim_iswhite(afterchar))
4310 errmsg = e_trailing;
4311 goto skip;
4313 if (prefix == 2) /* inv */
4314 value = *(int *)(varp) ^ 1;
4315 else
4316 value = prefix;
4319 errmsg = set_bool_option(opt_idx, varp, (int)value,
4320 opt_flags);
4322 else /* numeric or string */
4324 if (vim_strchr((char_u *)"=:&<", nextchar) == NULL
4325 || prefix != 1)
4327 errmsg = e_invarg;
4328 goto skip;
4331 if (flags & P_NUM) /* numeric */
4334 * Different ways to set a number option:
4335 * & set to default value
4336 * < set to global value
4337 * <xx> accept special key codes for 'wildchar'
4338 * c accept any non-digit for 'wildchar'
4339 * [-]0-9 set number
4340 * other error
4342 ++arg;
4343 if (nextchar == '&')
4344 value = (long)(long_i)options[opt_idx].def_val[
4345 ((flags & P_VI_DEF) || cp_val)
4346 ? VI_DEFAULT : VIM_DEFAULT];
4347 else if (nextchar == '<')
4348 value = *(long *)get_varp_scope(&(options[opt_idx]),
4349 OPT_GLOBAL);
4350 else if (((long *)varp == &p_wc
4351 || (long *)varp == &p_wcm)
4352 && (*arg == '<'
4353 || *arg == '^'
4354 || ((!arg[1] || vim_iswhite(arg[1]))
4355 && !VIM_ISDIGIT(*arg))))
4357 value = string_to_key(arg);
4358 if (value == 0 && (long *)varp != &p_wcm)
4360 errmsg = e_invarg;
4361 goto skip;
4364 /* allow negative numbers (for 'undolevels') */
4365 else if (*arg == '-' || VIM_ISDIGIT(*arg))
4367 i = 0;
4368 if (*arg == '-')
4369 i = 1;
4370 #ifdef HAVE_STRTOL
4371 value = strtol((char *)arg, NULL, 0);
4372 if (arg[i] == '0' && TOLOWER_ASC(arg[i + 1]) == 'x')
4373 i += 2;
4374 #else
4375 value = atol((char *)arg);
4376 #endif
4377 while (VIM_ISDIGIT(arg[i]))
4378 ++i;
4379 if (arg[i] != NUL && !vim_iswhite(arg[i]))
4381 errmsg = e_invarg;
4382 goto skip;
4385 else
4387 errmsg = (char_u *)N_("E521: Number required after =");
4388 goto skip;
4391 if (adding)
4392 value = *(long *)varp + value;
4393 if (prepending)
4394 value = *(long *)varp * value;
4395 if (removing)
4396 value = *(long *)varp - value;
4397 errmsg = set_num_option(opt_idx, varp, value,
4398 errbuf, sizeof(errbuf), opt_flags);
4400 else if (opt_idx >= 0) /* string */
4402 char_u *save_arg = NULL;
4403 char_u *s = NULL;
4404 char_u *oldval; /* previous value if *varp */
4405 char_u *newval;
4406 char_u *origval;
4407 unsigned newlen;
4408 int comma;
4409 int bs;
4410 int new_value_alloced; /* new string option
4411 was allocated */
4413 /* When using ":set opt=val" for a global option
4414 * with a local value the local value will be
4415 * reset, use the global value here. */
4416 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
4417 && ((int)options[opt_idx].indir & PV_BOTH))
4418 varp = options[opt_idx].var;
4420 /* The old value is kept until we are sure that the
4421 * new value is valid. */
4422 oldval = *(char_u **)varp;
4423 if (nextchar == '&') /* set to default val */
4425 newval = options[opt_idx].def_val[
4426 ((flags & P_VI_DEF) || cp_val)
4427 ? VI_DEFAULT : VIM_DEFAULT];
4428 if ((char_u **)varp == &p_bg)
4430 /* guess the value of 'background' */
4431 #ifdef FEAT_GUI
4432 if (gui.in_use)
4433 newval = gui_bg_default();
4434 else
4435 #endif
4436 newval = term_bg_default();
4439 /* expand environment variables and ~ (since the
4440 * default value was already expanded, only
4441 * required when an environment variable was set
4442 * later */
4443 if (newval == NULL)
4444 newval = empty_option;
4445 else
4447 s = option_expand(opt_idx, newval);
4448 if (s == NULL)
4449 s = newval;
4450 newval = vim_strsave(s);
4452 new_value_alloced = TRUE;
4454 else if (nextchar == '<') /* set to global val */
4456 newval = vim_strsave(*(char_u **)get_varp_scope(
4457 &(options[opt_idx]), OPT_GLOBAL));
4458 new_value_alloced = TRUE;
4460 else
4462 ++arg; /* jump to after the '=' or ':' */
4465 * Set 'keywordprg' to ":help" if an empty
4466 * value was passed to :set by the user.
4467 * Misuse errbuf[] for the resulting string.
4469 if (varp == (char_u *)&p_kp
4470 && (*arg == NUL || *arg == ' '))
4472 STRCPY(errbuf, ":help");
4473 save_arg = arg;
4474 arg = errbuf;
4477 * Convert 'whichwrap' number to string, for
4478 * backwards compatibility with Vim 3.0.
4479 * Misuse errbuf[] for the resulting string.
4481 else if (varp == (char_u *)&p_ww
4482 && VIM_ISDIGIT(*arg))
4484 *errbuf = NUL;
4485 i = getdigits(&arg);
4486 if (i & 1)
4487 STRCAT(errbuf, "b,");
4488 if (i & 2)
4489 STRCAT(errbuf, "s,");
4490 if (i & 4)
4491 STRCAT(errbuf, "h,l,");
4492 if (i & 8)
4493 STRCAT(errbuf, "<,>,");
4494 if (i & 16)
4495 STRCAT(errbuf, "[,],");
4496 if (*errbuf != NUL) /* remove trailing , */
4497 errbuf[STRLEN(errbuf) - 1] = NUL;
4498 save_arg = arg;
4499 arg = errbuf;
4502 * Remove '>' before 'dir' and 'bdir', for
4503 * backwards compatibility with version 3.0
4505 else if ( *arg == '>'
4506 && (varp == (char_u *)&p_dir
4507 || varp == (char_u *)&p_bdir))
4509 ++arg;
4512 /* When setting the local value of a global
4513 * option, the old value may be the global value. */
4514 if (((int)options[opt_idx].indir & PV_BOTH)
4515 && (opt_flags & OPT_LOCAL))
4516 origval = *(char_u **)get_varp(
4517 &options[opt_idx]);
4518 else
4519 origval = oldval;
4522 * Copy the new string into allocated memory.
4523 * Can't use set_string_option_direct(), because
4524 * we need to remove the backslashes.
4526 /* get a bit too much */
4527 newlen = (unsigned)STRLEN(arg) + 1;
4528 if (adding || prepending || removing)
4529 newlen += (unsigned)STRLEN(origval) + 1;
4530 newval = alloc(newlen);
4531 if (newval == NULL) /* out of mem, don't change */
4532 break;
4533 s = newval;
4536 * Copy the string, skip over escaped chars.
4537 * For MS-DOS and WIN32 backslashes before normal
4538 * file name characters are not removed, and keep
4539 * backslash at start, for "\\machine\path", but
4540 * do remove it for "\\\\machine\\path".
4541 * The reverse is found in ExpandOldSetting().
4543 while (*arg && !vim_iswhite(*arg))
4545 if (*arg == '\\' && arg[1] != NUL
4546 #ifdef BACKSLASH_IN_FILENAME
4547 && !((flags & P_EXPAND)
4548 && vim_isfilec(arg[1])
4549 && (arg[1] != '\\'
4550 || (s == newval
4551 && arg[2] != '\\')))
4552 #endif
4554 ++arg; /* remove backslash */
4555 #ifdef FEAT_MBYTE
4556 if (has_mbyte
4557 && (i = (*mb_ptr2len)(arg)) > 1)
4559 /* copy multibyte char */
4560 mch_memmove(s, arg, (size_t)i);
4561 arg += i;
4562 s += i;
4564 else
4565 #endif
4566 *s++ = *arg++;
4568 *s = NUL;
4571 * Expand environment variables and ~.
4572 * Don't do it when adding without inserting a
4573 * comma.
4575 if (!(adding || prepending || removing)
4576 || (flags & P_COMMA))
4578 s = option_expand(opt_idx, newval);
4579 if (s != NULL)
4581 vim_free(newval);
4582 newlen = (unsigned)STRLEN(s) + 1;
4583 if (adding || prepending || removing)
4584 newlen += (unsigned)STRLEN(origval) + 1;
4585 newval = alloc(newlen);
4586 if (newval == NULL)
4587 break;
4588 STRCPY(newval, s);
4592 /* locate newval[] in origval[] when removing it
4593 * and when adding to avoid duplicates */
4594 i = 0; /* init for GCC */
4595 if (removing || (flags & P_NODUP))
4597 i = (int)STRLEN(newval);
4598 bs = 0;
4599 for (s = origval; *s; ++s)
4601 if ((!(flags & P_COMMA)
4602 || s == origval
4603 || (s[-1] == ',' && !(bs & 1)))
4604 && STRNCMP(s, newval, i) == 0
4605 && (!(flags & P_COMMA)
4606 || s[i] == ','
4607 || s[i] == NUL))
4608 break;
4609 /* Count backspaces. Only a comma with an
4610 * even number of backspaces before it is
4611 * recognized as a separator */
4612 if (s > origval && s[-1] == '\\')
4613 ++bs;
4614 else
4615 bs = 0;
4618 /* do not add if already there */
4619 if ((adding || prepending) && *s)
4621 prepending = FALSE;
4622 adding = FALSE;
4623 STRCPY(newval, origval);
4627 /* concatenate the two strings; add a ',' if
4628 * needed */
4629 if (adding || prepending)
4631 comma = ((flags & P_COMMA) && *origval != NUL
4632 && *newval != NUL);
4633 if (adding)
4635 i = (int)STRLEN(origval);
4636 mch_memmove(newval + i + comma, newval,
4637 STRLEN(newval) + 1);
4638 mch_memmove(newval, origval, (size_t)i);
4640 else
4642 i = (int)STRLEN(newval);
4643 mch_memmove(newval + i + comma, origval,
4644 STRLEN(origval) + 1);
4646 if (comma)
4647 newval[i] = ',';
4650 /* Remove newval[] from origval[]. (Note: "i" has
4651 * been set above and is used here). */
4652 if (removing)
4654 STRCPY(newval, origval);
4655 if (*s)
4657 /* may need to remove a comma */
4658 if (flags & P_COMMA)
4660 if (s == origval)
4662 /* include comma after string */
4663 if (s[i] == ',')
4664 ++i;
4666 else
4668 /* include comma before string */
4669 --s;
4670 ++i;
4673 mch_memmove(newval + (s - origval), s + i,
4674 STRLEN(s + i) + 1);
4678 if (flags & P_FLAGLIST)
4680 /* Remove flags that appear twice. */
4681 for (s = newval; *s; ++s)
4682 if ((!(flags & P_COMMA) || *s != ',')
4683 && vim_strchr(s + 1, *s) != NULL)
4685 mch_memmove(s, s + 1, STRLEN(s));
4686 --s;
4690 if (save_arg != NULL) /* number for 'whichwrap' */
4691 arg = save_arg;
4692 new_value_alloced = TRUE;
4695 /* Set the new value. */
4696 *(char_u **)(varp) = newval;
4698 /* Handle side effects, and set the global value for
4699 * ":set" on local options. */
4700 errmsg = did_set_string_option(opt_idx, (char_u **)varp,
4701 new_value_alloced, oldval, errbuf, opt_flags);
4703 /* If error detected, print the error message. */
4704 if (errmsg != NULL)
4705 goto skip;
4707 else /* key code option */
4709 char_u *p;
4711 if (nextchar == '&')
4713 if (add_termcap_entry(key_name, TRUE) == FAIL)
4714 errmsg = (char_u *)N_("E522: Not found in termcap");
4716 else
4718 ++arg; /* jump to after the '=' or ':' */
4719 for (p = arg; *p && !vim_iswhite(*p); ++p)
4720 if (*p == '\\' && p[1] != NUL)
4721 ++p;
4722 nextchar = *p;
4723 *p = NUL;
4724 add_termcode(key_name, arg, FALSE);
4725 *p = nextchar;
4727 if (full_screen)
4728 ttest(FALSE);
4729 redraw_all_later(CLEAR);
4733 if (opt_idx >= 0)
4734 did_set_option(opt_idx, opt_flags,
4735 !prepending && !adding && !removing);
4738 skip:
4740 * Advance to next argument.
4741 * - skip until a blank found, taking care of backslashes
4742 * - skip blanks
4743 * - skip one "=val" argument (for hidden options ":set gfn =xx")
4745 for (i = 0; i < 2 ; ++i)
4747 while (*arg != NUL && !vim_iswhite(*arg))
4748 if (*arg++ == '\\' && *arg != NUL)
4749 ++arg;
4750 arg = skipwhite(arg);
4751 if (*arg != '=')
4752 break;
4756 if (errmsg != NULL)
4758 vim_strncpy(IObuff, (char_u *)_(errmsg), IOSIZE - 1);
4759 i = (int)STRLEN(IObuff) + 2;
4760 if (i + (arg - startarg) < IOSIZE)
4762 /* append the argument with the error */
4763 STRCAT(IObuff, ": ");
4764 mch_memmove(IObuff + i, startarg, (arg - startarg));
4765 IObuff[i + (arg - startarg)] = NUL;
4767 /* make sure all characters are printable */
4768 trans_characters(IObuff, IOSIZE);
4770 ++no_wait_return; /* wait_return done later */
4771 emsg(IObuff); /* show error highlighted */
4772 --no_wait_return;
4774 return FAIL;
4777 arg = skipwhite(arg);
4780 theend:
4781 if (silent_mode && did_show)
4783 /* After displaying option values in silent mode. */
4784 silent_mode = FALSE;
4785 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
4786 msg_putchar('\n');
4787 cursor_on(); /* msg_start() switches it off */
4788 out_flush();
4789 silent_mode = TRUE;
4790 info_message = FALSE; /* use mch_msg(), not mch_errmsg() */
4793 return OK;
4797 * Call this when an option has been given a new value through a user command.
4798 * Sets the P_WAS_SET flag and takes care of the P_INSECURE flag.
4800 static void
4801 did_set_option(opt_idx, opt_flags, new_value)
4802 int opt_idx;
4803 int opt_flags; /* possibly with OPT_MODELINE */
4804 int new_value; /* value was replaced completely */
4806 long_u *p;
4808 options[opt_idx].flags |= P_WAS_SET;
4810 /* When an option is set in the sandbox, from a modeline or in secure mode
4811 * set the P_INSECURE flag. Otherwise, if a new value is stored reset the
4812 * flag. */
4813 p = insecure_flag(opt_idx, opt_flags);
4814 if (secure
4815 #ifdef HAVE_SANDBOX
4816 || sandbox != 0
4817 #endif
4818 || (opt_flags & OPT_MODELINE))
4819 *p = *p | P_INSECURE;
4820 else if (new_value)
4821 *p = *p & ~P_INSECURE;
4824 static char_u *
4825 illegal_char(errbuf, c)
4826 char_u *errbuf;
4827 int c;
4829 if (errbuf == NULL)
4830 return (char_u *)"";
4831 sprintf((char *)errbuf, _("E539: Illegal character <%s>"),
4832 (char *)transchar(c));
4833 return errbuf;
4837 * Convert a key name or string into a key value.
4838 * Used for 'wildchar' and 'cedit' options.
4840 static int
4841 string_to_key(arg)
4842 char_u *arg;
4844 if (*arg == '<')
4845 return find_key_option(arg + 1);
4846 if (*arg == '^')
4847 return Ctrl_chr(arg[1]);
4848 return *arg;
4851 #ifdef FEAT_CMDWIN
4853 * Check value of 'cedit' and set cedit_key.
4854 * Returns NULL if value is OK, error message otherwise.
4856 static char_u *
4857 check_cedit()
4859 int n;
4861 if (*p_cedit == NUL)
4862 cedit_key = -1;
4863 else
4865 n = string_to_key(p_cedit);
4866 if (vim_isprintc(n))
4867 return e_invarg;
4868 cedit_key = n;
4870 return NULL;
4872 #endif
4874 #ifdef FEAT_TITLE
4876 * When changing 'title', 'titlestring', 'icon' or 'iconstring', call
4877 * maketitle() to create and display it.
4878 * When switching the title or icon off, call mch_restore_title() to get
4879 * the old value back.
4881 static void
4882 did_set_title(icon)
4883 int icon; /* Did set icon instead of title */
4885 if (starting != NO_SCREEN
4886 #ifdef FEAT_GUI
4887 && !gui.starting
4888 #endif
4891 maketitle();
4892 if (icon)
4894 if (!p_icon)
4895 mch_restore_title(2);
4897 else
4899 if (!p_title)
4900 mch_restore_title(1);
4904 #endif
4907 * set_options_bin - called when 'bin' changes value.
4909 void
4910 set_options_bin(oldval, newval, opt_flags)
4911 int oldval;
4912 int newval;
4913 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
4916 * The option values that are changed when 'bin' changes are
4917 * copied when 'bin is set and restored when 'bin' is reset.
4919 if (newval)
4921 if (!oldval) /* switched on */
4923 if (!(opt_flags & OPT_GLOBAL))
4925 curbuf->b_p_tw_nobin = curbuf->b_p_tw;
4926 curbuf->b_p_wm_nobin = curbuf->b_p_wm;
4927 curbuf->b_p_ml_nobin = curbuf->b_p_ml;
4928 curbuf->b_p_et_nobin = curbuf->b_p_et;
4930 if (!(opt_flags & OPT_LOCAL))
4932 p_tw_nobin = p_tw;
4933 p_wm_nobin = p_wm;
4934 p_ml_nobin = p_ml;
4935 p_et_nobin = p_et;
4939 if (!(opt_flags & OPT_GLOBAL))
4941 curbuf->b_p_tw = 0; /* no automatic line wrap */
4942 curbuf->b_p_wm = 0; /* no automatic line wrap */
4943 curbuf->b_p_ml = 0; /* no modelines */
4944 curbuf->b_p_et = 0; /* no expandtab */
4946 if (!(opt_flags & OPT_LOCAL))
4948 p_tw = 0;
4949 p_wm = 0;
4950 p_ml = FALSE;
4951 p_et = FALSE;
4952 p_bin = TRUE; /* needed when called for the "-b" argument */
4955 else if (oldval) /* switched off */
4957 if (!(opt_flags & OPT_GLOBAL))
4959 curbuf->b_p_tw = curbuf->b_p_tw_nobin;
4960 curbuf->b_p_wm = curbuf->b_p_wm_nobin;
4961 curbuf->b_p_ml = curbuf->b_p_ml_nobin;
4962 curbuf->b_p_et = curbuf->b_p_et_nobin;
4964 if (!(opt_flags & OPT_LOCAL))
4966 p_tw = p_tw_nobin;
4967 p_wm = p_wm_nobin;
4968 p_ml = p_ml_nobin;
4969 p_et = p_et_nobin;
4974 #ifdef FEAT_VIMINFO
4976 * Find the parameter represented by the given character (eg ', :, ", or /),
4977 * and return its associated value in the 'viminfo' string.
4978 * Only works for number parameters, not for 'r' or 'n'.
4979 * If the parameter is not specified in the string or there is no following
4980 * number, return -1.
4983 get_viminfo_parameter(type)
4984 int type;
4986 char_u *p;
4988 p = find_viminfo_parameter(type);
4989 if (p != NULL && VIM_ISDIGIT(*p))
4990 return atoi((char *)p);
4991 return -1;
4995 * Find the parameter represented by the given character (eg ''', ':', '"', or
4996 * '/') in the 'viminfo' option and return a pointer to the string after it.
4997 * Return NULL if the parameter is not specified in the string.
4999 char_u *
5000 find_viminfo_parameter(type)
5001 int type;
5003 char_u *p;
5005 for (p = p_viminfo; *p; ++p)
5007 if (*p == type)
5008 return p + 1;
5009 if (*p == 'n') /* 'n' is always the last one */
5010 break;
5011 p = vim_strchr(p, ','); /* skip until next ',' */
5012 if (p == NULL) /* hit the end without finding parameter */
5013 break;
5015 return NULL;
5017 #endif
5020 * Expand environment variables for some string options.
5021 * These string options cannot be indirect!
5022 * If "val" is NULL expand the current value of the option.
5023 * Return pointer to NameBuff, or NULL when not expanded.
5025 static char_u *
5026 option_expand(opt_idx, val)
5027 int opt_idx;
5028 char_u *val;
5030 /* if option doesn't need expansion nothing to do */
5031 if (!(options[opt_idx].flags & P_EXPAND) || options[opt_idx].var == NULL)
5032 return NULL;
5034 /* If val is longer than MAXPATHL no meaningful expansion can be done,
5035 * expand_env() would truncate the string. */
5036 if (val != NULL && STRLEN(val) > MAXPATHL)
5037 return NULL;
5039 if (val == NULL)
5040 val = *(char_u **)options[opt_idx].var;
5043 * Expanding this with NameBuff, expand_env() must not be passed IObuff.
5044 * Escape spaces when expanding 'tags', they are used to separate file
5045 * names.
5046 * For 'spellsuggest' expand after "file:".
5048 expand_env_esc(val, NameBuff, MAXPATHL,
5049 (char_u **)options[opt_idx].var == &p_tags, FALSE,
5050 #ifdef FEAT_SPELL
5051 (char_u **)options[opt_idx].var == &p_sps ? (char_u *)"file:" :
5052 #endif
5053 NULL);
5054 if (STRCMP(NameBuff, val) == 0) /* they are the same */
5055 return NULL;
5057 return NameBuff;
5061 * After setting various option values: recompute variables that depend on
5062 * option values.
5064 static void
5065 didset_options()
5067 /* initialize the table for 'iskeyword' et.al. */
5068 (void)init_chartab();
5070 #ifdef FEAT_MBYTE
5071 (void)opt_strings_flags(p_cmp, p_cmp_values, &cmp_flags, TRUE);
5072 #endif
5073 (void)opt_strings_flags(p_bkc, p_bkc_values, &bkc_flags, TRUE);
5074 #ifdef FEAT_SESSION
5075 (void)opt_strings_flags(p_ssop, p_ssop_values, &ssop_flags, TRUE);
5076 (void)opt_strings_flags(p_vop, p_ssop_values, &vop_flags, TRUE);
5077 #endif
5078 #ifdef FEAT_FOLDING
5079 (void)opt_strings_flags(p_fdo, p_fdo_values, &fdo_flags, TRUE);
5080 #endif
5081 #ifdef FEAT_FULLSCREEN
5082 (void)opt_strings_flags(p_fuoptions, p_fuoptions_values, &fuoptions_flags,
5083 TRUE);
5085 (void)opt_strings_flags(p_fdo, p_fdo_values, &fdo_flags, TRUE);
5086 #endif
5087 (void)opt_strings_flags(p_dy, p_dy_values, &dy_flags, TRUE);
5088 #ifdef FEAT_VIRTUALEDIT
5089 (void)opt_strings_flags(p_ve, p_ve_values, &ve_flags, TRUE);
5090 #endif
5091 #if defined(FEAT_MOUSE) && (defined(UNIX) || defined(VMS))
5092 (void)opt_strings_flags(p_ttym, p_ttym_values, &ttym_flags, FALSE);
5093 #endif
5094 #ifdef FEAT_SPELL
5095 (void)spell_check_msm();
5096 (void)spell_check_sps();
5097 (void)compile_cap_prog(curbuf);
5098 #endif
5099 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
5100 (void)opt_strings_flags(p_toolbar, p_toolbar_values, &toolbar_flags, TRUE);
5101 #endif
5102 #if defined(FEAT_TOOLBAR) && ((defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)) \
5103 || defined(FEAT_GUI_MACVIM))
5104 (void)opt_strings_flags(p_tbis, p_tbis_values, &tbis_flags, FALSE);
5105 #endif
5106 #ifdef FEAT_CMDWIN
5107 /* set cedit_key */
5108 (void)check_cedit();
5109 #endif
5113 * Check for string options that are NULL (normally only termcap options).
5115 void
5116 check_options()
5118 int opt_idx;
5120 for (opt_idx = 0; options[opt_idx].fullname != NULL; opt_idx++)
5121 if ((options[opt_idx].flags & P_STRING) && options[opt_idx].var != NULL)
5122 check_string_option((char_u **)get_varp(&(options[opt_idx])));
5126 * Check string options in a buffer for NULL value.
5128 void
5129 check_buf_options(buf)
5130 buf_T *buf;
5132 #if defined(FEAT_QUICKFIX)
5133 check_string_option(&buf->b_p_bh);
5134 check_string_option(&buf->b_p_bt);
5135 #endif
5136 #ifdef FEAT_MBYTE
5137 check_string_option(&buf->b_p_fenc);
5138 #endif
5139 check_string_option(&buf->b_p_ff);
5140 #ifdef FEAT_FIND_ID
5141 check_string_option(&buf->b_p_def);
5142 check_string_option(&buf->b_p_inc);
5143 # ifdef FEAT_EVAL
5144 check_string_option(&buf->b_p_inex);
5145 # endif
5146 #endif
5147 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
5148 check_string_option(&buf->b_p_inde);
5149 check_string_option(&buf->b_p_indk);
5150 #endif
5151 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
5152 check_string_option(&buf->b_p_bexpr);
5153 #endif
5154 #if defined(FEAT_EVAL)
5155 check_string_option(&buf->b_p_fex);
5156 #endif
5157 #ifdef FEAT_CRYPT
5158 check_string_option(&buf->b_p_key);
5159 #endif
5160 check_string_option(&buf->b_p_kp);
5161 check_string_option(&buf->b_p_mps);
5162 check_string_option(&buf->b_p_fo);
5163 check_string_option(&buf->b_p_flp);
5164 check_string_option(&buf->b_p_isk);
5165 #ifdef FEAT_COMMENTS
5166 check_string_option(&buf->b_p_com);
5167 #endif
5168 #ifdef FEAT_FOLDING
5169 check_string_option(&buf->b_p_cms);
5170 #endif
5171 check_string_option(&buf->b_p_nf);
5172 #ifdef FEAT_TEXTOBJ
5173 check_string_option(&buf->b_p_qe);
5174 #endif
5175 #ifdef FEAT_SYN_HL
5176 check_string_option(&buf->b_p_syn);
5177 #endif
5178 #ifdef FEAT_SPELL
5179 check_string_option(&buf->b_p_spc);
5180 check_string_option(&buf->b_p_spf);
5181 check_string_option(&buf->b_p_spl);
5182 #endif
5183 #ifdef FEAT_SEARCHPATH
5184 check_string_option(&buf->b_p_sua);
5185 #endif
5186 #ifdef FEAT_CINDENT
5187 check_string_option(&buf->b_p_cink);
5188 check_string_option(&buf->b_p_cino);
5189 #endif
5190 #ifdef FEAT_AUTOCMD
5191 check_string_option(&buf->b_p_ft);
5192 #endif
5193 #ifdef FEAT_OSFILETYPE
5194 check_string_option(&buf->b_p_oft);
5195 #endif
5196 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
5197 check_string_option(&buf->b_p_cinw);
5198 #endif
5199 #ifdef FEAT_INS_EXPAND
5200 check_string_option(&buf->b_p_cpt);
5201 #endif
5202 #ifdef FEAT_COMPL_FUNC
5203 check_string_option(&buf->b_p_cfu);
5204 check_string_option(&buf->b_p_ofu);
5205 #endif
5206 #ifdef FEAT_KEYMAP
5207 check_string_option(&buf->b_p_keymap);
5208 #endif
5209 #ifdef FEAT_QUICKFIX
5210 check_string_option(&buf->b_p_gp);
5211 check_string_option(&buf->b_p_mp);
5212 check_string_option(&buf->b_p_efm);
5213 #endif
5214 check_string_option(&buf->b_p_ep);
5215 check_string_option(&buf->b_p_path);
5216 check_string_option(&buf->b_p_tags);
5217 #ifdef FEAT_INS_EXPAND
5218 check_string_option(&buf->b_p_dict);
5219 check_string_option(&buf->b_p_tsr);
5220 #endif
5224 * Free the string allocated for an option.
5225 * Checks for the string being empty_option. This may happen if we're out of
5226 * memory, vim_strsave() returned NULL, which was replaced by empty_option by
5227 * check_options().
5228 * Does NOT check for P_ALLOCED flag!
5230 void
5231 free_string_option(p)
5232 char_u *p;
5234 if (p != empty_option)
5235 vim_free(p);
5238 void
5239 clear_string_option(pp)
5240 char_u **pp;
5242 if (*pp != empty_option)
5243 vim_free(*pp);
5244 *pp = empty_option;
5247 static void
5248 check_string_option(pp)
5249 char_u **pp;
5251 if (*pp == NULL)
5252 *pp = empty_option;
5256 * Mark a terminal option as allocated, found by a pointer into term_strings[].
5258 void
5259 set_term_option_alloced(p)
5260 char_u **p;
5262 int opt_idx;
5264 for (opt_idx = 1; options[opt_idx].fullname != NULL; opt_idx++)
5265 if (options[opt_idx].var == (char_u *)p)
5267 options[opt_idx].flags |= P_ALLOCED;
5268 return;
5270 return; /* cannot happen: didn't find it! */
5273 #if defined(FEAT_EVAL) || defined(PROTO)
5275 * Return TRUE when option "opt" was set from a modeline or in secure mode.
5276 * Return FALSE when it wasn't.
5277 * Return -1 for an unknown option.
5280 was_set_insecurely(opt, opt_flags)
5281 char_u *opt;
5282 int opt_flags;
5284 int idx = findoption(opt);
5285 long_u *flagp;
5287 if (idx >= 0)
5289 flagp = insecure_flag(idx, opt_flags);
5290 return (*flagp & P_INSECURE) != 0;
5292 EMSG2(_(e_intern2), "was_set_insecurely()");
5293 return -1;
5297 * Get a pointer to the flags used for the P_INSECURE flag of option
5298 * "opt_idx". For some local options a local flags field is used.
5300 static long_u *
5301 insecure_flag(opt_idx, opt_flags)
5302 int opt_idx;
5303 int opt_flags;
5305 if (opt_flags & OPT_LOCAL)
5306 switch ((int)options[opt_idx].indir)
5308 #ifdef FEAT_STL_OPT
5309 case PV_STL: return &curwin->w_p_stl_flags;
5310 #endif
5311 #ifdef FEAT_EVAL
5312 # ifdef FEAT_FOLDING
5313 case PV_FDE: return &curwin->w_p_fde_flags;
5314 case PV_FDT: return &curwin->w_p_fdt_flags;
5315 # endif
5316 # ifdef FEAT_BEVAL
5317 case PV_BEXPR: return &curbuf->b_p_bexpr_flags;
5318 # endif
5319 # if defined(FEAT_CINDENT)
5320 case PV_INDE: return &curbuf->b_p_inde_flags;
5321 # endif
5322 case PV_FEX: return &curbuf->b_p_fex_flags;
5323 # ifdef FEAT_FIND_ID
5324 case PV_INEX: return &curbuf->b_p_inex_flags;
5325 # endif
5326 #endif
5329 /* Nothing special, return global flags field. */
5330 return &options[opt_idx].flags;
5332 #endif
5335 * Set a string option to a new value (without checking the effect).
5336 * The string is copied into allocated memory.
5337 * if ("opt_idx" == -1) "name" is used, otherwise "opt_idx" is used.
5338 * When "set_sid" is zero set the scriptID to current_SID. When "set_sid" is
5339 * SID_NONE don't set the scriptID. Otherwise set the scriptID to "set_sid".
5341 /*ARGSUSED*/
5342 void
5343 set_string_option_direct(name, opt_idx, val, opt_flags, set_sid)
5344 char_u *name;
5345 int opt_idx;
5346 char_u *val;
5347 int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */
5348 int set_sid;
5350 char_u *s;
5351 char_u **varp;
5352 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
5353 int idx = opt_idx;
5355 if (idx == -1) /* use name */
5357 idx = findoption(name);
5358 if (idx < 0) /* not found (should not happen) */
5360 EMSG2(_(e_intern2), "set_string_option_direct()");
5361 return;
5365 if (options[idx].var == NULL) /* can't set hidden option */
5366 return;
5368 s = vim_strsave(val);
5369 if (s != NULL)
5371 varp = (char_u **)get_varp_scope(&(options[idx]),
5372 both ? OPT_LOCAL : opt_flags);
5373 if ((opt_flags & OPT_FREE) && (options[idx].flags & P_ALLOCED))
5374 free_string_option(*varp);
5375 *varp = s;
5377 /* For buffer/window local option may also set the global value. */
5378 if (both)
5379 set_string_option_global(idx, varp);
5381 options[idx].flags |= P_ALLOCED;
5383 /* When setting both values of a global option with a local value,
5384 * make the local value empty, so that the global value is used. */
5385 if (((int)options[idx].indir & PV_BOTH) && both)
5387 free_string_option(*varp);
5388 *varp = empty_option;
5390 # ifdef FEAT_EVAL
5391 if (set_sid != SID_NONE)
5392 set_option_scriptID_idx(idx, opt_flags,
5393 set_sid == 0 ? current_SID : set_sid);
5394 # endif
5399 * Set global value for string option when it's a local option.
5401 static void
5402 set_string_option_global(opt_idx, varp)
5403 int opt_idx; /* option index */
5404 char_u **varp; /* pointer to option variable */
5406 char_u **p, *s;
5408 /* the global value is always allocated */
5409 if (options[opt_idx].var == VAR_WIN)
5410 p = (char_u **)GLOBAL_WO(varp);
5411 else
5412 p = (char_u **)options[opt_idx].var;
5413 if (options[opt_idx].indir != PV_NONE
5414 && p != varp
5415 && (s = vim_strsave(*varp)) != NULL)
5417 free_string_option(*p);
5418 *p = s;
5423 * Set a string option to a new value, and handle the effects.
5425 static void
5426 set_string_option(opt_idx, value, opt_flags)
5427 int opt_idx;
5428 char_u *value;
5429 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
5431 char_u *s;
5432 char_u **varp;
5433 char_u *oldval;
5435 if (options[opt_idx].var == NULL) /* don't set hidden option */
5436 return;
5438 s = vim_strsave(value);
5439 if (s != NULL)
5441 varp = (char_u **)get_varp_scope(&(options[opt_idx]),
5442 (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
5443 ? (((int)options[opt_idx].indir & PV_BOTH)
5444 ? OPT_GLOBAL : OPT_LOCAL)
5445 : opt_flags);
5446 oldval = *varp;
5447 *varp = s;
5448 if (did_set_string_option(opt_idx, varp, TRUE, oldval, NULL,
5449 opt_flags) == NULL)
5450 did_set_option(opt_idx, opt_flags, TRUE);
5455 * Handle string options that need some action to perform when changed.
5456 * Returns NULL for success, or an error message for an error.
5458 static char_u *
5459 did_set_string_option(opt_idx, varp, new_value_alloced, oldval, errbuf,
5460 opt_flags)
5461 int opt_idx; /* index in options[] table */
5462 char_u **varp; /* pointer to the option variable */
5463 int new_value_alloced; /* new value was allocated */
5464 char_u *oldval; /* previous value of the option */
5465 char_u *errbuf; /* buffer for errors, or NULL */
5466 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
5468 char_u *errmsg = NULL;
5469 char_u *s, *p;
5470 int did_chartab = FALSE;
5471 char_u **gvarp;
5472 long_u free_oldval = (options[opt_idx].flags & P_ALLOCED);
5474 /* Get the global option to compare with, otherwise we would have to check
5475 * two values for all local options. */
5476 gvarp = (char_u **)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL);
5478 /* Disallow changing some options from secure mode */
5479 if ((secure
5480 #ifdef HAVE_SANDBOX
5481 || sandbox != 0
5482 #endif
5483 ) && (options[opt_idx].flags & P_SECURE))
5485 errmsg = e_secure;
5488 /* Check for a "normal" file name in some options. Disallow a path
5489 * separator (slash and/or backslash), wildcards and characters that are
5490 * often illegal in a file name. */
5491 else if ((options[opt_idx].flags & P_NFNAME)
5492 && vim_strpbrk(*varp, (char_u *)"/\\*?[|<>") != NULL)
5494 errmsg = e_invarg;
5497 /* 'term' */
5498 else if (varp == &T_NAME)
5500 if (T_NAME[0] == NUL)
5501 errmsg = (char_u *)N_("E529: Cannot set 'term' to empty string");
5502 #ifdef FEAT_GUI
5503 if (gui.in_use)
5504 errmsg = (char_u *)N_("E530: Cannot change term in GUI");
5505 else if (term_is_gui(T_NAME))
5506 errmsg = (char_u *)N_("E531: Use \":gui\" to start the GUI");
5507 #endif
5508 else if (set_termname(T_NAME) == FAIL)
5509 errmsg = (char_u *)N_("E522: Not found in termcap");
5510 else
5511 /* Screen colors may have changed. */
5512 redraw_later_clear();
5515 /* 'backupcopy' */
5516 else if (varp == &p_bkc)
5518 if (opt_strings_flags(p_bkc, p_bkc_values, &bkc_flags, TRUE) != OK)
5519 errmsg = e_invarg;
5520 if (((bkc_flags & BKC_AUTO) != 0)
5521 + ((bkc_flags & BKC_YES) != 0)
5522 + ((bkc_flags & BKC_NO) != 0) != 1)
5524 /* Must have exactly one of "auto", "yes" and "no". */
5525 (void)opt_strings_flags(oldval, p_bkc_values, &bkc_flags, TRUE);
5526 errmsg = e_invarg;
5530 /* 'backupext' and 'patchmode' */
5531 else if (varp == &p_bex || varp == &p_pm)
5533 if (STRCMP(*p_bex == '.' ? p_bex + 1 : p_bex,
5534 *p_pm == '.' ? p_pm + 1 : p_pm) == 0)
5535 errmsg = (char_u *)N_("E589: 'backupext' and 'patchmode' are equal");
5539 * 'isident', 'iskeyword', 'isprint or 'isfname' option: refill chartab[]
5540 * If the new option is invalid, use old value. 'lisp' option: refill
5541 * chartab[] for '-' char
5543 else if ( varp == &p_isi
5544 || varp == &(curbuf->b_p_isk)
5545 || varp == &p_isp
5546 || varp == &p_isf)
5548 if (init_chartab() == FAIL)
5550 did_chartab = TRUE; /* need to restore it below */
5551 errmsg = e_invarg; /* error in value */
5555 /* 'helpfile' */
5556 else if (varp == &p_hf)
5558 /* May compute new values for $VIM and $VIMRUNTIME */
5559 if (didset_vim)
5561 vim_setenv((char_u *)"VIM", (char_u *)"");
5562 didset_vim = FALSE;
5564 if (didset_vimruntime)
5566 vim_setenv((char_u *)"VIMRUNTIME", (char_u *)"");
5567 didset_vimruntime = FALSE;
5571 #ifdef FEAT_MULTI_LANG
5572 /* 'helplang' */
5573 else if (varp == &p_hlg)
5575 /* Check for "", "ab", "ab,cd", etc. */
5576 for (s = p_hlg; *s != NUL; s += 3)
5578 if (s[1] == NUL || ((s[2] != ',' || s[3] == NUL) && s[2] != NUL))
5580 errmsg = e_invarg;
5581 break;
5583 if (s[2] == NUL)
5584 break;
5587 #endif
5589 /* 'highlight' */
5590 else if (varp == &p_hl)
5592 if (highlight_changed() == FAIL)
5593 errmsg = e_invarg; /* invalid flags */
5596 /* 'nrformats' */
5597 else if (gvarp == &p_nf)
5599 if (check_opt_strings(*varp, p_nf_values, TRUE) != OK)
5600 errmsg = e_invarg;
5603 #ifdef FEAT_SESSION
5604 /* 'sessionoptions' */
5605 else if (varp == &p_ssop)
5607 if (opt_strings_flags(p_ssop, p_ssop_values, &ssop_flags, TRUE) != OK)
5608 errmsg = e_invarg;
5609 if ((ssop_flags & SSOP_CURDIR) && (ssop_flags & SSOP_SESDIR))
5611 /* Don't allow both "sesdir" and "curdir". */
5612 (void)opt_strings_flags(oldval, p_ssop_values, &ssop_flags, TRUE);
5613 errmsg = e_invarg;
5616 /* 'viewoptions' */
5617 else if (varp == &p_vop)
5619 if (opt_strings_flags(p_vop, p_ssop_values, &vop_flags, TRUE) != OK)
5620 errmsg = e_invarg;
5622 #endif
5624 /* 'scrollopt' */
5625 #ifdef FEAT_SCROLLBIND
5626 else if (varp == &p_sbo)
5628 if (check_opt_strings(p_sbo, p_scbopt_values, TRUE) != OK)
5629 errmsg = e_invarg;
5631 #endif
5633 /* 'ambiwidth' */
5634 #ifdef FEAT_MBYTE
5635 else if (varp == &p_ambw)
5637 if (check_opt_strings(p_ambw, p_ambw_values, FALSE) != OK)
5638 errmsg = e_invarg;
5640 #endif
5642 /* 'background' */
5643 else if (varp == &p_bg)
5645 if (check_opt_strings(p_bg, p_bg_values, FALSE) == OK)
5647 #ifdef FEAT_EVAL
5648 int dark = (*p_bg == 'd');
5649 #endif
5651 init_highlight(FALSE, FALSE);
5653 #ifdef FEAT_EVAL
5654 if (dark != (*p_bg == 'd')
5655 && get_var_value((char_u *)"g:colors_name") != NULL)
5657 /* The color scheme must have set 'background' back to another
5658 * value, that's not what we want here. Disable the color
5659 * scheme and set the colors again. */
5660 do_unlet((char_u *)"g:colors_name", TRUE);
5661 free_string_option(p_bg);
5662 p_bg = vim_strsave((char_u *)(dark ? "dark" : "light"));
5663 check_string_option(&p_bg);
5664 init_highlight(FALSE, FALSE);
5666 #endif
5668 else
5669 errmsg = e_invarg;
5672 /* 'wildmode' */
5673 else if (varp == &p_wim)
5675 if (check_opt_wim() == FAIL)
5676 errmsg = e_invarg;
5679 #ifdef FEAT_CMDL_COMPL
5680 /* 'wildoptions' */
5681 else if (varp == &p_wop)
5683 if (check_opt_strings(p_wop, p_wop_values, TRUE) != OK)
5684 errmsg = e_invarg;
5686 #endif
5688 #ifdef FEAT_WAK
5689 /* 'winaltkeys' */
5690 else if (varp == &p_wak)
5692 if (*p_wak == NUL
5693 || check_opt_strings(p_wak, p_wak_values, FALSE) != OK)
5694 errmsg = e_invarg;
5695 # ifdef FEAT_MENU
5696 # ifdef FEAT_GUI_MOTIF
5697 else if (gui.in_use)
5698 gui_motif_set_mnemonics(p_wak[0] == 'y' || p_wak[0] == 'm');
5699 # else
5700 # ifdef FEAT_GUI_GTK
5701 else if (gui.in_use)
5702 gui_gtk_set_mnemonics(p_wak[0] == 'y' || p_wak[0] == 'm');
5703 # endif
5704 # endif
5705 # endif
5707 #endif
5709 #ifdef FEAT_AUTOCMD
5710 /* 'eventignore' */
5711 else if (varp == &p_ei)
5713 if (check_ei() == FAIL)
5714 errmsg = e_invarg;
5716 #endif
5718 #ifdef FEAT_MBYTE
5719 /* 'encoding' and 'fileencoding' */
5720 else if (varp == &p_enc || gvarp == &p_fenc || varp == &p_tenc)
5722 if (gvarp == &p_fenc)
5724 if (!curbuf->b_p_ma && opt_flags != OPT_GLOBAL)
5725 errmsg = e_modifiable;
5726 else if (vim_strchr(*varp, ',') != NULL)
5727 /* No comma allowed in 'fileencoding'; catches confusing it
5728 * with 'fileencodings'. */
5729 errmsg = e_invarg;
5730 else
5732 # ifdef FEAT_TITLE
5733 /* May show a "+" in the title now. */
5734 need_maketitle = TRUE;
5735 # endif
5736 /* Add 'fileencoding' to the swap file. */
5737 ml_setflags(curbuf);
5740 if (errmsg == NULL)
5742 /* canonize the value, so that STRCMP() can be used on it */
5743 p = enc_canonize(*varp);
5744 if (p != NULL)
5746 vim_free(*varp);
5747 *varp = p;
5749 if (varp == &p_enc)
5751 errmsg = mb_init();
5752 # ifdef FEAT_TITLE
5753 need_maketitle = TRUE;
5754 # endif
5758 # if (defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)) || defined(FEAT_GUI_MACVIM)
5759 if (errmsg == NULL && varp == &p_tenc && gui.in_use)
5761 /* MacVim and GTK+ 2 GUIs force 'tenc' to UTF-8. */
5762 if (STRCMP(p_tenc, "utf-8") != 0)
5763 # if defined(FEAT_GUI_MACVIM)
5764 errmsg = (char_u *)N_("E617: Cannot be changed in MacVim");
5765 # else
5766 errmsg = (char_u *)N_("E617: Cannot be changed in the GTK+ 2 GUI");
5767 # endif
5769 # endif
5771 if (errmsg == NULL)
5773 # ifdef FEAT_KEYMAP
5774 /* When 'keymap' is used and 'encoding' changes, reload the keymap
5775 * (with another encoding). */
5776 if (varp == &p_enc && *curbuf->b_p_keymap != NUL)
5777 (void)keymap_init();
5778 # endif
5780 /* When 'termencoding' is not empty and 'encoding' changes or when
5781 * 'termencoding' changes, need to setup for keyboard input and
5782 * display output conversion. */
5783 if (((varp == &p_enc && *p_tenc != NUL) || varp == &p_tenc))
5785 convert_setup(&input_conv, p_tenc, p_enc);
5786 convert_setup(&output_conv, p_enc, p_tenc);
5789 # if defined(WIN3264) && defined(FEAT_MBYTE)
5790 /* $HOME may have characters in active code page. */
5791 if (varp == &p_enc)
5792 init_homedir();
5793 # endif
5796 #endif
5798 #if defined(FEAT_POSTSCRIPT)
5799 else if (varp == &p_penc)
5801 /* Canonize printencoding if VIM standard one */
5802 p = enc_canonize(p_penc);
5803 if (p != NULL)
5805 vim_free(p_penc);
5806 p_penc = p;
5808 else
5810 /* Ensure lower case and '-' for '_' */
5811 for (s = p_penc; *s != NUL; s++)
5813 if (*s == '_')
5814 *s = '-';
5815 else
5816 *s = TOLOWER_ASC(*s);
5820 #endif
5822 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
5823 else if (varp == &p_imak)
5825 if (gui.in_use && !im_xim_isvalid_imactivate())
5826 errmsg = e_invarg;
5828 #endif
5830 #ifdef FEAT_KEYMAP
5831 else if (varp == &curbuf->b_p_keymap)
5833 /* load or unload key mapping tables */
5834 errmsg = keymap_init();
5836 /* When successfully installed a new keymap switch on using it. */
5837 if (*curbuf->b_p_keymap != NUL && errmsg == NULL)
5839 curbuf->b_p_iminsert = B_IMODE_LMAP;
5840 if (curbuf->b_p_imsearch != B_IMODE_USE_INSERT)
5841 curbuf->b_p_imsearch = B_IMODE_LMAP;
5842 set_iminsert_global();
5843 set_imsearch_global();
5844 # ifdef FEAT_WINDOWS
5845 status_redraw_curbuf();
5846 # endif
5849 #endif
5851 /* 'fileformat' */
5852 else if (gvarp == &p_ff)
5854 if (!curbuf->b_p_ma && !(opt_flags & OPT_GLOBAL))
5855 errmsg = e_modifiable;
5856 else if (check_opt_strings(*varp, p_ff_values, FALSE) != OK)
5857 errmsg = e_invarg;
5858 else
5860 /* may also change 'textmode' */
5861 if (get_fileformat(curbuf) == EOL_DOS)
5862 curbuf->b_p_tx = TRUE;
5863 else
5864 curbuf->b_p_tx = FALSE;
5865 #ifdef FEAT_TITLE
5866 need_maketitle = TRUE;
5867 #endif
5868 /* update flag in swap file */
5869 ml_setflags(curbuf);
5873 /* 'fileformats' */
5874 else if (varp == &p_ffs)
5876 if (check_opt_strings(p_ffs, p_ff_values, TRUE) != OK)
5877 errmsg = e_invarg;
5878 else
5880 /* also change 'textauto' */
5881 if (*p_ffs == NUL)
5882 p_ta = FALSE;
5883 else
5884 p_ta = TRUE;
5888 #if defined(FEAT_CRYPT) && defined(FEAT_CMDHIST)
5889 /* 'cryptkey' */
5890 else if (gvarp == &p_key)
5892 /* Make sure the ":set" command doesn't show the new value in the
5893 * history. */
5894 remove_key_from_history();
5896 #endif
5898 /* 'matchpairs' */
5899 else if (gvarp == &p_mps)
5901 /* Check for "x:y,x:y" */
5902 for (p = *varp; *p != NUL; p += 4)
5904 if (p[1] != ':' || p[2] == NUL || (p[3] != NUL && p[3] != ','))
5906 errmsg = e_invarg;
5907 break;
5909 if (p[3] == NUL)
5910 break;
5914 #ifdef FEAT_COMMENTS
5915 /* 'comments' */
5916 else if (gvarp == &p_com)
5918 for (s = *varp; *s; )
5920 while (*s && *s != ':')
5922 if (vim_strchr((char_u *)COM_ALL, *s) == NULL
5923 && !VIM_ISDIGIT(*s) && *s != '-')
5925 errmsg = illegal_char(errbuf, *s);
5926 break;
5928 ++s;
5930 if (*s++ == NUL)
5931 errmsg = (char_u *)N_("E524: Missing colon");
5932 else if (*s == ',' || *s == NUL)
5933 errmsg = (char_u *)N_("E525: Zero length string");
5934 if (errmsg != NULL)
5935 break;
5936 while (*s && *s != ',')
5938 if (*s == '\\' && s[1] != NUL)
5939 ++s;
5940 ++s;
5942 s = skip_to_option_part(s);
5945 #endif
5947 /* 'listchars' */
5948 else if (varp == &p_lcs)
5950 errmsg = set_chars_option(varp);
5953 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
5954 /* 'fillchars' */
5955 else if (varp == &p_fcs)
5957 errmsg = set_chars_option(varp);
5959 #endif
5961 #ifdef FEAT_CMDWIN
5962 /* 'cedit' */
5963 else if (varp == &p_cedit)
5965 errmsg = check_cedit();
5967 #endif
5969 /* 'verbosefile' */
5970 else if (varp == &p_vfile)
5972 verbose_stop();
5973 if (*p_vfile != NUL && verbose_open() == FAIL)
5974 errmsg = e_invarg;
5977 #ifdef FEAT_VIMINFO
5978 /* 'viminfo' */
5979 else if (varp == &p_viminfo)
5981 for (s = p_viminfo; *s;)
5983 /* Check it's a valid character */
5984 if (vim_strchr((char_u *)"!\"%'/:<@cfhnrs", *s) == NULL)
5986 errmsg = illegal_char(errbuf, *s);
5987 break;
5989 if (*s == 'n') /* name is always last one */
5991 break;
5993 else if (*s == 'r') /* skip until next ',' */
5995 while (*++s && *s != ',')
5998 else if (*s == '%')
6000 /* optional number */
6001 while (vim_isdigit(*++s))
6004 else if (*s == '!' || *s == 'h' || *s == 'c')
6005 ++s; /* no extra chars */
6006 else /* must have a number */
6008 while (vim_isdigit(*++s))
6011 if (!VIM_ISDIGIT(*(s - 1)))
6013 if (errbuf != NULL)
6015 sprintf((char *)errbuf,
6016 _("E526: Missing number after <%s>"),
6017 transchar_byte(*(s - 1)));
6018 errmsg = errbuf;
6020 else
6021 errmsg = (char_u *)"";
6022 break;
6025 if (*s == ',')
6026 ++s;
6027 else if (*s)
6029 if (errbuf != NULL)
6030 errmsg = (char_u *)N_("E527: Missing comma");
6031 else
6032 errmsg = (char_u *)"";
6033 break;
6036 if (*p_viminfo && errmsg == NULL && get_viminfo_parameter('\'') < 0)
6037 errmsg = (char_u *)N_("E528: Must specify a ' value");
6039 #endif /* FEAT_VIMINFO */
6041 /* terminal options */
6042 else if (istermoption(&options[opt_idx]) && full_screen)
6044 /* ":set t_Co=0" and ":set t_Co=1" do ":set t_Co=" */
6045 if (varp == &T_CCO)
6047 t_colors = atoi((char *)T_CCO);
6048 if (t_colors <= 1)
6050 if (new_value_alloced)
6051 vim_free(T_CCO);
6052 T_CCO = empty_option;
6054 /* We now have a different color setup, initialize it again. */
6055 init_highlight(TRUE, FALSE);
6057 ttest(FALSE);
6058 if (varp == &T_ME)
6060 out_str(T_ME);
6061 redraw_later(CLEAR);
6062 #if defined(MSDOS) || (defined(WIN3264) && !defined(FEAT_GUI_W32))
6063 /* Since t_me has been set, this probably means that the user
6064 * wants to use this as default colors. Need to reset default
6065 * background/foreground colors. */
6066 mch_set_normal_colors();
6067 #endif
6071 #ifdef FEAT_LINEBREAK
6072 /* 'showbreak' */
6073 else if (varp == &p_sbr)
6075 for (s = p_sbr; *s; )
6077 if (ptr2cells(s) != 1)
6078 errmsg = (char_u *)N_("E595: contains unprintable or wide character");
6079 mb_ptr_adv(s);
6082 #endif
6084 #ifdef FEAT_GUI
6085 /* 'guifont' */
6086 else if (varp == &p_guifont)
6088 if (gui.in_use)
6090 p = p_guifont;
6091 # if defined(FEAT_GUI_GTK)
6093 * Put up a font dialog and let the user select a new value.
6094 * If this is cancelled go back to the old value but don't
6095 * give an error message.
6097 if (STRCMP(p, "*") == 0)
6099 p = gui_mch_font_dialog(oldval);
6101 if (new_value_alloced)
6102 free_string_option(p_guifont);
6104 p_guifont = (p != NULL) ? p : vim_strsave(oldval);
6105 new_value_alloced = TRUE;
6107 # endif
6108 if (p != NULL && gui_init_font(p_guifont, FALSE) != OK)
6110 # if defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_PHOTON) \
6111 || defined(FEAT_GUI_MACVIM)
6112 if (STRCMP(p_guifont, "*") == 0)
6114 /* Dialog was cancelled: Keep the old value without giving
6115 * an error message. */
6116 if (new_value_alloced)
6117 free_string_option(p_guifont);
6118 p_guifont = vim_strsave(oldval);
6119 new_value_alloced = TRUE;
6121 else
6122 # endif
6123 errmsg = (char_u *)N_("E596: Invalid font(s)");
6127 # ifdef FEAT_XFONTSET
6128 else if (varp == &p_guifontset)
6130 if (STRCMP(p_guifontset, "*") == 0)
6131 errmsg = (char_u *)N_("E597: can't select fontset");
6132 else if (gui.in_use && gui_init_font(p_guifontset, TRUE) != OK)
6133 errmsg = (char_u *)N_("E598: Invalid fontset");
6135 # endif
6136 # ifdef FEAT_MBYTE
6137 else if (varp == &p_guifontwide)
6139 if (STRCMP(p_guifontwide, "*") == 0)
6140 errmsg = (char_u *)N_("E533: can't select wide font");
6141 else if (gui_get_wide_font() == FAIL)
6142 errmsg = (char_u *)N_("E534: Invalid wide font");
6144 # endif
6145 #endif
6147 #ifdef CURSOR_SHAPE
6148 /* 'guicursor' */
6149 else if (varp == &p_guicursor)
6150 errmsg = parse_shape_opt(SHAPE_CURSOR);
6151 #endif
6153 #ifdef FEAT_MOUSESHAPE
6154 /* 'mouseshape' */
6155 else if (varp == &p_mouseshape)
6157 errmsg = parse_shape_opt(SHAPE_MOUSE);
6158 update_mouseshape(-1);
6160 #endif
6162 #ifdef FEAT_PRINTER
6163 else if (varp == &p_popt)
6164 errmsg = parse_printoptions();
6165 # if defined(FEAT_MBYTE) && defined(FEAT_POSTSCRIPT)
6166 else if (varp == &p_pmfn)
6167 errmsg = parse_printmbfont();
6168 # endif
6169 #endif
6171 #ifdef FEAT_LANGMAP
6172 /* 'langmap' */
6173 else if (varp == &p_langmap)
6174 langmap_set();
6175 #endif
6177 #ifdef FEAT_LINEBREAK
6178 /* 'breakat' */
6179 else if (varp == &p_breakat)
6180 fill_breakat_flags();
6181 #endif
6183 #ifdef FEAT_TITLE
6184 /* 'titlestring' and 'iconstring' */
6185 else if (varp == &p_titlestring || varp == &p_iconstring)
6187 # ifdef FEAT_STL_OPT
6188 int flagval = (varp == &p_titlestring) ? STL_IN_TITLE : STL_IN_ICON;
6190 /* NULL => statusline syntax */
6191 if (vim_strchr(*varp, '%') && check_stl_option(*varp) == NULL)
6192 stl_syntax |= flagval;
6193 else
6194 stl_syntax &= ~flagval;
6195 # endif
6196 did_set_title(varp == &p_iconstring);
6199 #endif
6201 #ifdef FEAT_GUI
6202 /* 'guioptions' */
6203 else if (varp == &p_go)
6204 gui_init_which_components(oldval);
6205 #endif
6207 #if defined(FEAT_GUI_TABLINE)
6208 /* 'guitablabel' */
6209 else if (varp == &p_gtl)
6210 redraw_tabline = TRUE;
6211 #endif
6213 #if defined(FEAT_MOUSE_TTY) && (defined(UNIX) || defined(VMS))
6214 /* 'ttymouse' */
6215 else if (varp == &p_ttym)
6217 /* Switch the mouse off before changing the escape sequences used for
6218 * that. */
6219 mch_setmouse(FALSE);
6220 if (opt_strings_flags(p_ttym, p_ttym_values, &ttym_flags, FALSE) != OK)
6221 errmsg = e_invarg;
6222 else
6223 check_mouse_termcode();
6224 if (termcap_active)
6225 setmouse(); /* may switch it on again */
6227 #endif
6229 #ifdef FEAT_VISUAL
6230 /* 'selection' */
6231 else if (varp == &p_sel)
6233 if (*p_sel == NUL
6234 || check_opt_strings(p_sel, p_sel_values, FALSE) != OK)
6235 errmsg = e_invarg;
6238 /* 'selectmode' */
6239 else if (varp == &p_slm)
6241 if (check_opt_strings(p_slm, p_slm_values, TRUE) != OK)
6242 errmsg = e_invarg;
6244 #endif
6246 #ifdef FEAT_BROWSE
6247 /* 'browsedir' */
6248 else if (varp == &p_bsdir)
6250 if (check_opt_strings(p_bsdir, p_bsdir_values, FALSE) != OK
6251 && !mch_isdir(p_bsdir))
6252 errmsg = e_invarg;
6254 #endif
6256 #ifdef FEAT_VISUAL
6257 /* 'keymodel' */
6258 else if (varp == &p_km)
6260 if (check_opt_strings(p_km, p_km_values, TRUE) != OK)
6261 errmsg = e_invarg;
6262 else
6264 km_stopsel = (vim_strchr(p_km, 'o') != NULL);
6265 km_startsel = (vim_strchr(p_km, 'a') != NULL);
6268 #endif
6270 /* 'mousemodel' */
6271 else if (varp == &p_mousem)
6273 if (check_opt_strings(p_mousem, p_mousem_values, FALSE) != OK)
6274 errmsg = e_invarg;
6275 #if defined(FEAT_GUI_MOTIF) && defined(FEAT_MENU) && (XmVersion <= 1002)
6276 else if (*p_mousem != *oldval)
6277 /* Changed from "extend" to "popup" or "popup_setpos" or vv: need
6278 * to create or delete the popup menus. */
6279 gui_motif_update_mousemodel(root_menu);
6280 #endif
6283 /* 'switchbuf' */
6284 else if (varp == &p_swb)
6286 if (check_opt_strings(p_swb, p_swb_values, TRUE) != OK)
6287 errmsg = e_invarg;
6290 /* 'debug' */
6291 else if (varp == &p_debug)
6293 if (check_opt_strings(p_debug, p_debug_values, TRUE) != OK)
6294 errmsg = e_invarg;
6297 /* 'display' */
6298 else if (varp == &p_dy)
6300 if (opt_strings_flags(p_dy, p_dy_values, &dy_flags, TRUE) != OK)
6301 errmsg = e_invarg;
6302 else
6303 (void)init_chartab();
6307 #ifdef FEAT_VERTSPLIT
6308 /* 'eadirection' */
6309 else if (varp == &p_ead)
6311 if (check_opt_strings(p_ead, p_ead_values, FALSE) != OK)
6312 errmsg = e_invarg;
6314 #endif
6316 #ifdef FEAT_CLIPBOARD
6317 /* 'clipboard' */
6318 else if (varp == &p_cb)
6319 errmsg = check_clipboard_option();
6320 #endif
6322 #ifdef FEAT_SPELL
6323 /* When 'spelllang' or 'spellfile' is set and there is a window for this
6324 * buffer in which 'spell' is set load the wordlists. */
6325 else if (varp == &(curbuf->b_p_spl) || varp == &(curbuf->b_p_spf))
6327 win_T *wp;
6328 int l;
6330 if (varp == &(curbuf->b_p_spf))
6332 l = (int)STRLEN(curbuf->b_p_spf);
6333 if (l > 0 && (l < 4 || STRCMP(curbuf->b_p_spf + l - 4,
6334 ".add") != 0))
6335 errmsg = e_invarg;
6338 if (errmsg == NULL)
6340 FOR_ALL_WINDOWS(wp)
6341 if (wp->w_buffer == curbuf && wp->w_p_spell)
6343 errmsg = did_set_spelllang(curbuf);
6344 # ifdef FEAT_WINDOWS
6345 break;
6346 # endif
6350 /* When 'spellcapcheck' is set compile the regexp program. */
6351 else if (varp == &(curbuf->b_p_spc))
6353 errmsg = compile_cap_prog(curbuf);
6355 /* 'spellsuggest' */
6356 else if (varp == &p_sps)
6358 if (spell_check_sps() != OK)
6359 errmsg = e_invarg;
6361 /* 'mkspellmem' */
6362 else if (varp == &p_msm)
6364 if (spell_check_msm() != OK)
6365 errmsg = e_invarg;
6367 #endif
6369 #ifdef FEAT_QUICKFIX
6370 /* When 'bufhidden' is set, check for valid value. */
6371 else if (gvarp == &p_bh)
6373 if (check_opt_strings(curbuf->b_p_bh, p_bufhidden_values, FALSE) != OK)
6374 errmsg = e_invarg;
6377 /* When 'buftype' is set, check for valid value. */
6378 else if (gvarp == &p_bt)
6380 if (check_opt_strings(curbuf->b_p_bt, p_buftype_values, FALSE) != OK)
6381 errmsg = e_invarg;
6382 else
6384 # ifdef FEAT_WINDOWS
6385 if (curwin->w_status_height)
6387 curwin->w_redr_status = TRUE;
6388 redraw_later(VALID);
6390 # endif
6391 curbuf->b_help = (curbuf->b_p_bt[0] == 'h');
6394 #endif
6396 #ifdef FEAT_STL_OPT
6397 /* 'statusline' or 'rulerformat' */
6398 else if (gvarp == &p_stl || varp == &p_ruf)
6400 int wid;
6402 if (varp == &p_ruf) /* reset ru_wid first */
6403 ru_wid = 0;
6404 s = *varp;
6405 if (varp == &p_ruf && *s == '%')
6407 /* set ru_wid if 'ruf' starts with "%99(" */
6408 if (*++s == '-') /* ignore a '-' */
6409 s++;
6410 wid = getdigits(&s);
6411 if (wid && *s == '(' && (errmsg = check_stl_option(p_ruf)) == NULL)
6412 ru_wid = wid;
6413 else
6414 errmsg = check_stl_option(p_ruf);
6416 /* check 'statusline' only if it doesn't start with "%!" */
6417 else if (varp == &p_ruf || s[0] != '%' || s[1] != '!')
6418 errmsg = check_stl_option(s);
6419 if (varp == &p_ruf && errmsg == NULL)
6420 comp_col();
6422 #endif
6424 #ifdef FEAT_INS_EXPAND
6425 /* check if it is a valid value for 'complete' -- Acevedo */
6426 else if (gvarp == &p_cpt)
6428 for (s = *varp; *s;)
6430 while(*s == ',' || *s == ' ')
6431 s++;
6432 if (!*s)
6433 break;
6434 if (vim_strchr((char_u *)".wbuksid]tU", *s) == NULL)
6436 errmsg = illegal_char(errbuf, *s);
6437 break;
6439 if (*++s != NUL && *s != ',' && *s != ' ')
6441 if (s[-1] == 'k' || s[-1] == 's')
6443 /* skip optional filename after 'k' and 's' */
6444 while (*s && *s != ',' && *s != ' ')
6446 if (*s == '\\')
6447 ++s;
6448 ++s;
6451 else
6453 if (errbuf != NULL)
6455 sprintf((char *)errbuf,
6456 _("E535: Illegal character after <%c>"),
6457 *--s);
6458 errmsg = errbuf;
6460 else
6461 errmsg = (char_u *)"";
6462 break;
6468 /* 'completeopt' */
6469 else if (varp == &p_cot)
6471 if (check_opt_strings(p_cot, p_cot_values, TRUE) != OK)
6472 errmsg = e_invarg;
6474 #endif /* FEAT_INS_EXPAND */
6477 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
6478 else if (varp == &p_toolbar)
6480 if (opt_strings_flags(p_toolbar, p_toolbar_values,
6481 &toolbar_flags, TRUE) != OK)
6482 errmsg = e_invarg;
6483 else
6485 out_flush();
6486 gui_mch_show_toolbar((toolbar_flags &
6487 (TOOLBAR_TEXT | TOOLBAR_ICONS)) != 0);
6490 #endif
6492 #if defined(FEAT_TOOLBAR) && ((defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)) \
6493 || defined(FEAT_GUI_MACVIM))
6494 /* 'toolbariconsize': GTK+ 2 and MacVim only */
6495 else if (varp == &p_tbis)
6497 if (opt_strings_flags(p_tbis, p_tbis_values, &tbis_flags, FALSE) != OK)
6498 errmsg = e_invarg;
6499 else
6501 out_flush();
6502 gui_mch_show_toolbar((toolbar_flags &
6503 (TOOLBAR_TEXT | TOOLBAR_ICONS)) != 0);
6506 #endif
6508 /* 'pastetoggle': translate key codes like in a mapping */
6509 else if (varp == &p_pt)
6511 if (*p_pt)
6513 (void)replace_termcodes(p_pt, &p, TRUE, TRUE, FALSE);
6514 if (p != NULL)
6516 if (new_value_alloced)
6517 free_string_option(p_pt);
6518 p_pt = p;
6519 new_value_alloced = TRUE;
6524 /* 'backspace' */
6525 else if (varp == &p_bs)
6527 if (VIM_ISDIGIT(*p_bs))
6529 if (*p_bs >'2' || p_bs[1] != NUL)
6530 errmsg = e_invarg;
6532 else if (check_opt_strings(p_bs, p_bs_values, TRUE) != OK)
6533 errmsg = e_invarg;
6536 #ifdef FEAT_MBYTE
6537 /* 'casemap' */
6538 else if (varp == &p_cmp)
6540 if (opt_strings_flags(p_cmp, p_cmp_values, &cmp_flags, TRUE) != OK)
6541 errmsg = e_invarg;
6543 #endif
6545 #ifdef FEAT_DIFF
6546 /* 'diffopt' */
6547 else if (varp == &p_dip)
6549 if (diffopt_changed() == FAIL)
6550 errmsg = e_invarg;
6552 #endif
6554 #ifdef FEAT_FOLDING
6555 /* 'foldmethod' */
6556 else if (gvarp == &curwin->w_allbuf_opt.wo_fdm)
6558 if (check_opt_strings(*varp, p_fdm_values, FALSE) != OK
6559 || *curwin->w_p_fdm == NUL)
6560 errmsg = e_invarg;
6561 else
6562 foldUpdateAll(curwin);
6564 # ifdef FEAT_EVAL
6565 /* 'foldexpr' */
6566 else if (varp == &curwin->w_p_fde)
6568 if (foldmethodIsExpr(curwin))
6569 foldUpdateAll(curwin);
6571 # endif
6572 /* 'foldmarker' */
6573 else if (gvarp == &curwin->w_allbuf_opt.wo_fmr)
6575 p = vim_strchr(*varp, ',');
6576 if (p == NULL)
6577 errmsg = (char_u *)N_("E536: comma required");
6578 else if (p == *varp || p[1] == NUL)
6579 errmsg = e_invarg;
6580 else if (foldmethodIsMarker(curwin))
6581 foldUpdateAll(curwin);
6583 /* 'commentstring' */
6584 else if (gvarp == &p_cms)
6586 if (**varp != NUL && strstr((char *)*varp, "%s") == NULL)
6587 errmsg = (char_u *)N_("E537: 'commentstring' must be empty or contain %s");
6589 /* 'foldopen' */
6590 else if (varp == &p_fdo)
6592 if (opt_strings_flags(p_fdo, p_fdo_values, &fdo_flags, TRUE) != OK)
6593 errmsg = e_invarg;
6595 /* 'foldclose' */
6596 else if (varp == &p_fcl)
6598 if (check_opt_strings(p_fcl, p_fcl_values, TRUE) != OK)
6599 errmsg = e_invarg;
6601 /* 'foldignore' */
6602 else if (gvarp == &curwin->w_allbuf_opt.wo_fdi)
6604 if (foldmethodIsIndent(curwin))
6605 foldUpdateAll(curwin);
6607 #endif
6609 #ifdef FEAT_FULLSCREEN
6610 /* 'fuoptions' */
6611 else if (varp == &p_fuoptions)
6613 if (opt_strings_flags(p_fuoptions, p_fuoptions_values,
6614 &fuoptions_flags, TRUE) != OK)
6615 errmsg = e_invarg;
6617 #endif
6619 #ifdef FEAT_VIRTUALEDIT
6620 /* 'virtualedit' */
6621 else if (varp == &p_ve)
6623 if (opt_strings_flags(p_ve, p_ve_values, &ve_flags, TRUE) != OK)
6624 errmsg = e_invarg;
6625 else if (STRCMP(p_ve, oldval) != 0)
6627 /* Recompute cursor position in case the new 've' setting
6628 * changes something. */
6629 validate_virtcol();
6630 coladvance(curwin->w_virtcol);
6633 #endif
6635 #if defined(FEAT_CSCOPE) && defined(FEAT_QUICKFIX)
6636 else if (varp == &p_csqf)
6638 if (p_csqf != NULL)
6640 p = p_csqf;
6641 while (*p != NUL)
6643 if (vim_strchr((char_u *)CSQF_CMDS, *p) == NULL
6644 || p[1] == NUL
6645 || vim_strchr((char_u *)CSQF_FLAGS, p[1]) == NULL
6646 || (p[2] != NUL && p[2] != ','))
6648 errmsg = e_invarg;
6649 break;
6651 else if (p[2] == NUL)
6652 break;
6653 else
6654 p += 3;
6658 #endif
6660 /* Options that are a list of flags. */
6661 else
6663 p = NULL;
6664 if (varp == &p_ww)
6665 p = (char_u *)WW_ALL;
6666 if (varp == &p_shm)
6667 p = (char_u *)SHM_ALL;
6668 else if (varp == &(p_cpo))
6669 p = (char_u *)CPO_ALL;
6670 else if (varp == &(curbuf->b_p_fo))
6671 p = (char_u *)FO_ALL;
6672 else if (varp == &p_mouse)
6674 #ifdef FEAT_MOUSE
6675 p = (char_u *)MOUSE_ALL;
6676 #else
6677 if (*p_mouse != NUL)
6678 errmsg = (char_u *)N_("E538: No mouse support");
6679 #endif
6681 #if defined(FEAT_GUI)
6682 else if (varp == &p_go)
6683 p = (char_u *)GO_ALL;
6684 #endif
6685 if (p != NULL)
6687 for (s = *varp; *s; ++s)
6688 if (vim_strchr(p, *s) == NULL)
6690 errmsg = illegal_char(errbuf, *s);
6691 break;
6697 * If error detected, restore the previous value.
6699 if (errmsg != NULL)
6701 if (new_value_alloced)
6702 free_string_option(*varp);
6703 *varp = oldval;
6705 * When resetting some values, need to act on it.
6707 if (did_chartab)
6708 (void)init_chartab();
6709 if (varp == &p_hl)
6710 (void)highlight_changed();
6712 else
6714 #ifdef FEAT_EVAL
6715 /* Remember where the option was set. */
6716 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
6717 #endif
6719 * Free string options that are in allocated memory.
6720 * Use "free_oldval", because recursiveness may change the flags under
6721 * our fingers (esp. init_highlight()).
6723 if (free_oldval)
6724 free_string_option(oldval);
6725 if (new_value_alloced)
6726 options[opt_idx].flags |= P_ALLOCED;
6727 else
6728 options[opt_idx].flags &= ~P_ALLOCED;
6730 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
6731 && ((int)options[opt_idx].indir & PV_BOTH))
6733 /* global option with local value set to use global value; free
6734 * the local value and make it empty */
6735 p = get_varp_scope(&(options[opt_idx]), OPT_LOCAL);
6736 free_string_option(*(char_u **)p);
6737 *(char_u **)p = empty_option;
6740 /* May set global value for local option. */
6741 else if (!(opt_flags & OPT_LOCAL) && opt_flags != OPT_GLOBAL)
6742 set_string_option_global(opt_idx, varp);
6744 #ifdef FEAT_AUTOCMD
6746 * Trigger the autocommand only after setting the flags.
6748 # ifdef FEAT_SYN_HL
6749 /* When 'syntax' is set, load the syntax of that name */
6750 if (varp == &(curbuf->b_p_syn))
6752 apply_autocmds(EVENT_SYNTAX, curbuf->b_p_syn,
6753 curbuf->b_fname, TRUE, curbuf);
6755 # endif
6756 else if (varp == &(curbuf->b_p_ft))
6758 /* 'filetype' is set, trigger the FileType autocommand */
6759 did_filetype = TRUE;
6760 apply_autocmds(EVENT_FILETYPE, curbuf->b_p_ft,
6761 curbuf->b_fname, TRUE, curbuf);
6763 #endif
6764 #ifdef FEAT_SPELL
6765 if (varp == &(curbuf->b_p_spl))
6767 char_u fname[200];
6770 * Source the spell/LANG.vim in 'runtimepath'.
6771 * They could set 'spellcapcheck' depending on the language.
6772 * Use the first name in 'spelllang' up to '_region' or
6773 * '.encoding'.
6775 for (p = curbuf->b_p_spl; *p != NUL; ++p)
6776 if (vim_strchr((char_u *)"_.,", *p) != NULL)
6777 break;
6778 vim_snprintf((char *)fname, 200, "spell/%.*s.vim",
6779 (int)(p - curbuf->b_p_spl), curbuf->b_p_spl);
6780 source_runtime(fname, TRUE);
6782 #endif
6785 #ifdef FEAT_MOUSE
6786 if (varp == &p_mouse)
6788 # ifdef FEAT_MOUSE_TTY
6789 if (*p_mouse == NUL)
6790 mch_setmouse(FALSE); /* switch mouse off */
6791 else
6792 # endif
6793 setmouse(); /* in case 'mouse' changed */
6795 #endif
6797 if (curwin->w_curswant != MAXCOL)
6798 curwin->w_set_curswant = TRUE; /* in case 'showbreak' changed */
6799 check_redraw(options[opt_idx].flags);
6801 return errmsg;
6805 * Handle setting 'listchars' or 'fillchars'.
6806 * Returns error message, NULL if it's OK.
6808 static char_u *
6809 set_chars_option(varp)
6810 char_u **varp;
6812 int round, i, len, entries;
6813 char_u *p, *s;
6814 int c1, c2 = 0;
6815 struct charstab
6817 int *cp;
6818 char *name;
6820 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6821 static struct charstab filltab[] =
6823 {&fill_stl, "stl"},
6824 {&fill_stlnc, "stlnc"},
6825 {&fill_vert, "vert"},
6826 {&fill_fold, "fold"},
6827 {&fill_diff, "diff"},
6829 #endif
6830 static struct charstab lcstab[] =
6832 {&lcs_eol, "eol"},
6833 {&lcs_ext, "extends"},
6834 {&lcs_nbsp, "nbsp"},
6835 {&lcs_prec, "precedes"},
6836 {&lcs_tab2, "tab"},
6837 {&lcs_trail, "trail"},
6839 struct charstab *tab;
6841 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6842 if (varp == &p_lcs)
6843 #endif
6845 tab = lcstab;
6846 entries = sizeof(lcstab) / sizeof(struct charstab);
6848 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6849 else
6851 tab = filltab;
6852 entries = sizeof(filltab) / sizeof(struct charstab);
6854 #endif
6856 /* first round: check for valid value, second round: assign values */
6857 for (round = 0; round <= 1; ++round)
6859 if (round)
6861 /* After checking that the value is valid: set defaults: space for
6862 * 'fillchars', NUL for 'listchars' */
6863 for (i = 0; i < entries; ++i)
6864 *(tab[i].cp) = (varp == &p_lcs ? NUL : ' ');
6865 if (varp == &p_lcs)
6866 lcs_tab1 = NUL;
6867 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6868 else
6869 fill_diff = '-';
6870 #endif
6872 p = *varp;
6873 while (*p)
6875 for (i = 0; i < entries; ++i)
6877 len = (int)STRLEN(tab[i].name);
6878 if (STRNCMP(p, tab[i].name, len) == 0
6879 && p[len] == ':'
6880 && p[len + 1] != NUL)
6882 s = p + len + 1;
6883 #ifdef FEAT_MBYTE
6884 c1 = mb_ptr2char_adv(&s);
6885 if (mb_char2cells(c1) > 1)
6886 continue;
6887 #else
6888 c1 = *s++;
6889 #endif
6890 if (tab[i].cp == &lcs_tab2)
6892 if (*s == NUL)
6893 continue;
6894 #ifdef FEAT_MBYTE
6895 c2 = mb_ptr2char_adv(&s);
6896 if (mb_char2cells(c2) > 1)
6897 continue;
6898 #else
6899 c2 = *s++;
6900 #endif
6902 if (*s == ',' || *s == NUL)
6904 if (round)
6906 if (tab[i].cp == &lcs_tab2)
6908 lcs_tab1 = c1;
6909 lcs_tab2 = c2;
6911 else
6912 *(tab[i].cp) = c1;
6915 p = s;
6916 break;
6921 if (i == entries)
6922 return e_invarg;
6923 if (*p == ',')
6924 ++p;
6928 return NULL; /* no error */
6931 #ifdef FEAT_STL_OPT
6933 * Check validity of options with the 'statusline' format.
6934 * Return error message or NULL.
6936 char_u *
6937 check_stl_option(s)
6938 char_u *s;
6940 int itemcnt = 0;
6941 int groupdepth = 0;
6942 static char_u errbuf[80];
6944 while (*s && itemcnt < STL_MAX_ITEM)
6946 /* Check for valid keys after % sequences */
6947 while (*s && *s != '%')
6948 s++;
6949 if (!*s)
6950 break;
6951 s++;
6952 if (*s != '%' && *s != ')')
6953 ++itemcnt;
6954 if (*s == '%' || *s == STL_TRUNCMARK || *s == STL_MIDDLEMARK)
6956 s++;
6957 continue;
6959 if (*s == ')')
6961 s++;
6962 if (--groupdepth < 0)
6963 break;
6964 continue;
6966 if (*s == '-')
6967 s++;
6968 while (VIM_ISDIGIT(*s))
6969 s++;
6970 if (*s == STL_USER_HL)
6971 continue;
6972 if (*s == '.')
6974 s++;
6975 while (*s && VIM_ISDIGIT(*s))
6976 s++;
6978 if (*s == '(')
6980 groupdepth++;
6981 continue;
6983 if (vim_strchr(STL_ALL, *s) == NULL)
6985 return illegal_char(errbuf, *s);
6987 if (*s == '{')
6989 s++;
6990 while (*s != '}' && *s)
6991 s++;
6992 if (*s != '}')
6993 return (char_u *)N_("E540: Unclosed expression sequence");
6996 if (itemcnt >= STL_MAX_ITEM)
6997 return (char_u *)N_("E541: too many items");
6998 if (groupdepth != 0)
6999 return (char_u *)N_("E542: unbalanced groups");
7000 return NULL;
7002 #endif
7004 #ifdef FEAT_CLIPBOARD
7006 * Extract the items in the 'clipboard' option and set global values.
7008 static char_u *
7009 check_clipboard_option()
7011 int new_unnamed = FALSE;
7012 int new_autoselect = FALSE;
7013 int new_autoselectml = FALSE;
7014 regprog_T *new_exclude_prog = NULL;
7015 char_u *errmsg = NULL;
7016 char_u *p;
7018 for (p = p_cb; *p != NUL; )
7020 if (STRNCMP(p, "unnamed", 7) == 0 && (p[7] == ',' || p[7] == NUL))
7022 new_unnamed = TRUE;
7023 p += 7;
7025 else if (STRNCMP(p, "autoselect", 10) == 0
7026 && (p[10] == ',' || p[10] == NUL))
7028 new_autoselect = TRUE;
7029 p += 10;
7031 else if (STRNCMP(p, "autoselectml", 12) == 0
7032 && (p[12] == ',' || p[12] == NUL))
7034 new_autoselectml = TRUE;
7035 p += 12;
7037 else if (STRNCMP(p, "exclude:", 8) == 0 && new_exclude_prog == NULL)
7039 p += 8;
7040 new_exclude_prog = vim_regcomp(p, RE_MAGIC);
7041 if (new_exclude_prog == NULL)
7042 errmsg = e_invarg;
7043 break;
7045 else
7047 errmsg = e_invarg;
7048 break;
7050 if (*p == ',')
7051 ++p;
7053 if (errmsg == NULL)
7055 clip_unnamed = new_unnamed;
7056 clip_autoselect = new_autoselect;
7057 clip_autoselectml = new_autoselectml;
7058 vim_free(clip_exclude_prog);
7059 clip_exclude_prog = new_exclude_prog;
7061 else
7062 vim_free(new_exclude_prog);
7064 return errmsg;
7066 #endif
7068 #ifdef FEAT_SPELL
7070 * Set curbuf->b_cap_prog to the regexp program for 'spellcapcheck'.
7071 * Return error message when failed, NULL when OK.
7073 static char_u *
7074 compile_cap_prog(buf)
7075 buf_T *buf;
7077 regprog_T *rp = buf->b_cap_prog;
7078 char_u *re;
7080 if (*buf->b_p_spc == NUL)
7081 buf->b_cap_prog = NULL;
7082 else
7084 /* Prepend a ^ so that we only match at one column */
7085 re = concat_str((char_u *)"^", buf->b_p_spc);
7086 if (re != NULL)
7088 buf->b_cap_prog = vim_regcomp(re, RE_MAGIC);
7089 if (buf->b_cap_prog == NULL)
7091 buf->b_cap_prog = rp; /* restore the previous program */
7092 return e_invarg;
7094 vim_free(re);
7098 vim_free(rp);
7099 return NULL;
7101 #endif
7103 #if defined(FEAT_EVAL) || defined(PROTO)
7105 * Set the scriptID for an option, taking care of setting the buffer- or
7106 * window-local value.
7108 static void
7109 set_option_scriptID_idx(opt_idx, opt_flags, id)
7110 int opt_idx;
7111 int opt_flags;
7112 int id;
7114 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
7115 int indir = (int)options[opt_idx].indir;
7117 /* Remember where the option was set. For local options need to do that
7118 * in the buffer or window structure. */
7119 if (both || (opt_flags & OPT_GLOBAL) || (indir & (PV_BUF|PV_WIN)) == 0)
7120 options[opt_idx].scriptID = id;
7121 if (both || (opt_flags & OPT_LOCAL))
7123 if (indir & PV_BUF)
7124 curbuf->b_p_scriptID[indir & PV_MASK] = id;
7125 else if (indir & PV_WIN)
7126 curwin->w_p_scriptID[indir & PV_MASK] = id;
7129 #endif
7132 * Set the value of a boolean option, and take care of side effects.
7133 * Returns NULL for success, or an error message for an error.
7135 static char_u *
7136 set_bool_option(opt_idx, varp, value, opt_flags)
7137 int opt_idx; /* index in options[] table */
7138 char_u *varp; /* pointer to the option variable */
7139 int value; /* new value */
7140 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
7142 int old_value = *(int *)varp;
7144 /* Disallow changing some options from secure mode */
7145 if ((secure
7146 #ifdef HAVE_SANDBOX
7147 || sandbox != 0
7148 #endif
7149 ) && (options[opt_idx].flags & P_SECURE))
7150 return e_secure;
7152 *(int *)varp = value; /* set the new value */
7153 #ifdef FEAT_EVAL
7154 /* Remember where the option was set. */
7155 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
7156 #endif
7158 #ifdef FEAT_GUI
7159 need_mouse_correct = TRUE;
7160 #endif
7162 /* May set global value for local option. */
7163 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0)
7164 *(int *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) = value;
7167 * Handle side effects of changing a bool option.
7170 /* 'compatible' */
7171 if ((int *)varp == &p_cp)
7173 compatible_set();
7176 else if ((int *)varp == &curbuf->b_p_ro)
7178 /* when 'readonly' is reset globally, also reset readonlymode */
7179 if (!curbuf->b_p_ro && (opt_flags & OPT_LOCAL) == 0)
7180 readonlymode = FALSE;
7182 /* when 'readonly' is set may give W10 again */
7183 if (curbuf->b_p_ro)
7184 curbuf->b_did_warn = FALSE;
7186 #ifdef FEAT_TITLE
7187 need_maketitle = TRUE;
7188 #endif
7191 #ifdef FEAT_TITLE
7192 /* when 'modifiable' is changed, redraw the window title */
7193 else if ((int *)varp == &curbuf->b_p_ma)
7194 need_maketitle = TRUE;
7195 /* when 'endofline' is changed, redraw the window title */
7196 else if ((int *)varp == &curbuf->b_p_eol)
7197 need_maketitle = TRUE;
7198 #ifdef FEAT_MBYTE
7199 /* when 'bomb' is changed, redraw the window title */
7200 else if ((int *)varp == &curbuf->b_p_bomb)
7201 need_maketitle = TRUE;
7202 #endif
7203 #endif
7205 /* when 'bin' is set also set some other options */
7206 else if ((int *)varp == &curbuf->b_p_bin)
7208 set_options_bin(old_value, curbuf->b_p_bin, opt_flags);
7209 #ifdef FEAT_TITLE
7210 need_maketitle = TRUE;
7211 #endif
7214 #ifdef FEAT_AUTOCMD
7215 /* when 'buflisted' changes, trigger autocommands */
7216 else if ((int *)varp == &curbuf->b_p_bl && old_value != curbuf->b_p_bl)
7218 apply_autocmds(curbuf->b_p_bl ? EVENT_BUFADD : EVENT_BUFDELETE,
7219 NULL, NULL, TRUE, curbuf);
7221 #endif
7223 /* when 'swf' is set, create swapfile, when reset remove swapfile */
7224 else if ((int *)varp == &curbuf->b_p_swf)
7226 if (curbuf->b_p_swf && p_uc)
7227 ml_open_file(curbuf); /* create the swap file */
7228 else
7229 /* no need to reset curbuf->b_may_swap, ml_open_file() will check
7230 * buf->b_p_swf */
7231 mf_close_file(curbuf, TRUE); /* remove the swap file */
7234 /* when 'terse' is set change 'shortmess' */
7235 else if ((int *)varp == &p_terse)
7237 char_u *p;
7239 p = vim_strchr(p_shm, SHM_SEARCH);
7241 /* insert 's' in p_shm */
7242 if (p_terse && p == NULL)
7244 STRCPY(IObuff, p_shm);
7245 STRCAT(IObuff, "s");
7246 set_string_option_direct((char_u *)"shm", -1, IObuff, OPT_FREE, 0);
7248 /* remove 's' from p_shm */
7249 else if (!p_terse && p != NULL)
7250 mch_memmove(p, p + 1, STRLEN(p));
7253 /* when 'paste' is set or reset also change other options */
7254 else if ((int *)varp == &p_paste)
7256 paste_option_changed();
7259 /* when 'insertmode' is set from an autocommand need to do work here */
7260 else if ((int *)varp == &p_im)
7262 if (p_im)
7264 if ((State & INSERT) == 0)
7265 need_start_insertmode = TRUE;
7266 stop_insert_mode = FALSE;
7268 else
7270 need_start_insertmode = FALSE;
7271 stop_insert_mode = TRUE;
7272 if (restart_edit != 0 && mode_displayed)
7273 clear_cmdline = TRUE; /* remove "(insert)" */
7274 restart_edit = 0;
7278 /* when 'ignorecase' is set or reset and 'hlsearch' is set, redraw */
7279 else if ((int *)varp == &p_ic && p_hls)
7281 redraw_all_later(SOME_VALID);
7284 #ifdef FEAT_SEARCH_EXTRA
7285 /* when 'hlsearch' is set or reset: reset no_hlsearch */
7286 else if ((int *)varp == &p_hls)
7288 no_hlsearch = FALSE;
7290 #endif
7292 #ifdef FEAT_SCROLLBIND
7293 /* when 'scrollbind' is set: snapshot the current position to avoid a jump
7294 * at the end of normal_cmd() */
7295 else if ((int *)varp == &curwin->w_p_scb)
7297 if (curwin->w_p_scb)
7298 do_check_scrollbind(FALSE);
7300 #endif
7302 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
7303 /* There can be only one window with 'previewwindow' set. */
7304 else if ((int *)varp == &curwin->w_p_pvw)
7306 if (curwin->w_p_pvw)
7308 win_T *win;
7310 for (win = firstwin; win != NULL; win = win->w_next)
7311 if (win->w_p_pvw && win != curwin)
7313 curwin->w_p_pvw = FALSE;
7314 return (char_u *)N_("E590: A preview window already exists");
7318 #endif
7320 /* when 'textmode' is set or reset also change 'fileformat' */
7321 else if ((int *)varp == &curbuf->b_p_tx)
7323 set_fileformat(curbuf->b_p_tx ? EOL_DOS : EOL_UNIX, opt_flags);
7326 #ifdef FEAT_FULLSCREEN
7327 /* when 'fullscreen' changes, forward it to the gui */
7328 else if ((int *)varp == &p_fullscreen && gui.in_use)
7330 if (p_fullscreen && !old_value)
7332 gui_mch_enter_fullscreen(fuoptions_flags);
7334 else if (!p_fullscreen && old_value)
7336 gui_mch_leave_fullscreen();
7339 #endif
7341 #if defined(FEAT_ANTIALIAS) && defined(FEAT_GUI_MACVIM)
7342 else if ((int *)varp == &p_antialias && gui.in_use)
7344 gui_macvim_set_antialias(p_antialias);
7346 #endif
7348 /* when 'textauto' is set or reset also change 'fileformats' */
7349 else if ((int *)varp == &p_ta)
7350 set_string_option_direct((char_u *)"ffs", -1,
7351 p_ta ? (char_u *)DFLT_FFS_VIM : (char_u *)"",
7352 OPT_FREE | opt_flags, 0);
7355 * When 'lisp' option changes include/exclude '-' in
7356 * keyword characters.
7358 #ifdef FEAT_LISP
7359 else if (varp == (char_u *)&(curbuf->b_p_lisp))
7361 (void)buf_init_chartab(curbuf, FALSE); /* ignore errors */
7363 #endif
7365 #ifdef FEAT_TITLE
7366 /* when 'title' changed, may need to change the title; same for 'icon' */
7367 else if ((int *)varp == &p_title)
7369 did_set_title(FALSE);
7372 else if ((int *)varp == &p_icon)
7374 did_set_title(TRUE);
7376 #endif
7378 else if ((int *)varp == &curbuf->b_changed)
7380 if (!value)
7381 save_file_ff(curbuf); /* Buffer is unchanged */
7382 #ifdef FEAT_TITLE
7383 need_maketitle = TRUE;
7384 #endif
7385 #ifdef FEAT_AUTOCMD
7386 modified_was_set = value;
7387 #endif
7390 #ifdef BACKSLASH_IN_FILENAME
7391 else if ((int *)varp == &p_ssl)
7393 if (p_ssl)
7395 psepc = '/';
7396 psepcN = '\\';
7397 pseps[0] = '/';
7399 else
7401 psepc = '\\';
7402 psepcN = '/';
7403 pseps[0] = '\\';
7406 /* need to adjust the file name arguments and buffer names. */
7407 buflist_slash_adjust();
7408 alist_slash_adjust();
7409 # ifdef FEAT_EVAL
7410 scriptnames_slash_adjust();
7411 # endif
7413 #endif
7415 /* If 'wrap' is set, set w_leftcol to zero. */
7416 else if ((int *)varp == &curwin->w_p_wrap)
7418 if (curwin->w_p_wrap)
7419 curwin->w_leftcol = 0;
7422 #ifdef FEAT_WINDOWS
7423 else if ((int *)varp == &p_ea)
7425 if (p_ea && !old_value)
7426 win_equal(curwin, FALSE, 0);
7428 #endif
7430 else if ((int *)varp == &p_wiv)
7433 * When 'weirdinvert' changed, set/reset 't_xs'.
7434 * Then set 'weirdinvert' according to value of 't_xs'.
7436 if (p_wiv && !old_value)
7437 T_XS = (char_u *)"y";
7438 else if (!p_wiv && old_value)
7439 T_XS = empty_option;
7440 p_wiv = (*T_XS != NUL);
7443 #ifdef FEAT_BEVAL
7444 else if ((int *)varp == &p_beval)
7446 if (p_beval == TRUE)
7447 gui_mch_enable_beval_area(balloonEval);
7448 else
7449 gui_mch_disable_beval_area(balloonEval);
7451 #endif
7453 #ifdef FEAT_AUTOCHDIR
7454 else if ((int *)varp == &p_acd)
7456 /* Change directories when the 'acd' option is set now. */
7457 DO_AUTOCHDIR
7459 #endif
7461 #ifdef FEAT_DIFF
7462 /* 'diff' */
7463 else if ((int *)varp == &curwin->w_p_diff)
7465 /* May add or remove the buffer from the list of diff buffers. */
7466 diff_buf_adjust(curwin);
7467 # ifdef FEAT_FOLDING
7468 if (foldmethodIsDiff(curwin))
7469 foldUpdateAll(curwin);
7470 # endif
7472 #endif
7474 #ifdef USE_IM_CONTROL
7475 /* 'imdisable' */
7476 else if ((int *)varp == &p_imdisable)
7478 /* Only de-activate it here, it will be enabled when changing mode. */
7479 if (p_imdisable)
7480 im_set_active(FALSE);
7482 #endif
7484 #ifdef FEAT_SPELL
7485 /* 'spell' */
7486 else if ((int *)varp == &curwin->w_p_spell)
7488 if (curwin->w_p_spell)
7490 char_u *errmsg = did_set_spelllang(curbuf);
7492 if (errmsg != NULL)
7493 EMSG(_(errmsg));
7496 #endif
7498 #ifdef FEAT_FKMAP
7499 else if ((int *)varp == &p_altkeymap)
7501 if (old_value != p_altkeymap)
7503 if (!p_altkeymap)
7505 p_hkmap = p_fkmap;
7506 p_fkmap = 0;
7508 else
7510 p_fkmap = p_hkmap;
7511 p_hkmap = 0;
7513 (void)init_chartab();
7518 * In case some second language keymapping options have changed, check
7519 * and correct the setting in a consistent way.
7523 * If hkmap or fkmap are set, reset Arabic keymapping.
7525 if ((p_hkmap || p_fkmap) && p_altkeymap)
7527 p_altkeymap = p_fkmap;
7528 # ifdef FEAT_ARABIC
7529 curwin->w_p_arab = FALSE;
7530 # endif
7531 (void)init_chartab();
7535 * If hkmap set, reset Farsi keymapping.
7537 if (p_hkmap && p_altkeymap)
7539 p_altkeymap = 0;
7540 p_fkmap = 0;
7541 # ifdef FEAT_ARABIC
7542 curwin->w_p_arab = FALSE;
7543 # endif
7544 (void)init_chartab();
7548 * If fkmap set, reset Hebrew keymapping.
7550 if (p_fkmap && !p_altkeymap)
7552 p_altkeymap = 1;
7553 p_hkmap = 0;
7554 # ifdef FEAT_ARABIC
7555 curwin->w_p_arab = FALSE;
7556 # endif
7557 (void)init_chartab();
7559 #endif
7561 #ifdef FEAT_ARABIC
7562 if ((int *)varp == &curwin->w_p_arab)
7564 if (curwin->w_p_arab)
7567 * 'arabic' is set, handle various sub-settings.
7569 if (!p_tbidi)
7571 /* set rightleft mode */
7572 if (!curwin->w_p_rl)
7574 curwin->w_p_rl = TRUE;
7575 changed_window_setting();
7578 /* Enable Arabic shaping (major part of what Arabic requires) */
7579 if (!p_arshape)
7581 p_arshape = TRUE;
7582 redraw_later_clear();
7586 /* Arabic requires a utf-8 encoding, inform the user if its not
7587 * set. */
7588 if (STRCMP(p_enc, "utf-8") != 0)
7590 msg_source(hl_attr(HLF_W));
7591 MSG_ATTR(_("W17: Arabic requires UTF-8, do ':set encoding=utf-8'"),
7592 hl_attr(HLF_W));
7595 # ifdef FEAT_MBYTE
7596 /* set 'delcombine' */
7597 p_deco = TRUE;
7598 # endif
7600 # ifdef FEAT_KEYMAP
7601 /* Force-set the necessary keymap for arabic */
7602 set_option_value((char_u *)"keymap", 0L, (char_u *)"arabic",
7603 OPT_LOCAL);
7604 # endif
7605 # ifdef FEAT_FKMAP
7606 p_altkeymap = 0;
7607 p_hkmap = 0;
7608 p_fkmap = 0;
7609 (void)init_chartab();
7610 # endif
7612 else
7615 * 'arabic' is reset, handle various sub-settings.
7617 if (!p_tbidi)
7619 /* reset rightleft mode */
7620 if (curwin->w_p_rl)
7622 curwin->w_p_rl = FALSE;
7623 changed_window_setting();
7626 /* 'arabicshape' isn't reset, it is a global option and
7627 * another window may still need it "on". */
7630 /* 'delcombine' isn't reset, it is a global option and another
7631 * window may still want it "on". */
7633 # ifdef FEAT_KEYMAP
7634 /* Revert to the default keymap */
7635 curbuf->b_p_iminsert = B_IMODE_NONE;
7636 curbuf->b_p_imsearch = B_IMODE_USE_INSERT;
7637 # endif
7640 #endif
7643 * End of handling side effects for bool options.
7646 options[opt_idx].flags |= P_WAS_SET;
7648 comp_col(); /* in case 'ruler' or 'showcmd' changed */
7649 if (curwin->w_curswant != MAXCOL)
7650 curwin->w_set_curswant = TRUE; /* in case 'list' changed */
7651 check_redraw(options[opt_idx].flags);
7653 return NULL;
7657 * Set the value of a number option, and take care of side effects.
7658 * Returns NULL for success, or an error message for an error.
7660 static char_u *
7661 set_num_option(opt_idx, varp, value, errbuf, errbuflen, opt_flags)
7662 int opt_idx; /* index in options[] table */
7663 char_u *varp; /* pointer to the option variable */
7664 long value; /* new value */
7665 char_u *errbuf; /* buffer for error messages */
7666 size_t errbuflen; /* length of "errbuf" */
7667 int opt_flags; /* OPT_LOCAL, OPT_GLOBAL and
7668 OPT_MODELINE */
7670 char_u *errmsg = NULL;
7671 long old_value = *(long *)varp;
7672 long old_Rows = Rows; /* remember old Rows */
7673 long old_Columns = Columns; /* remember old Columns */
7674 long *pp = (long *)varp;
7676 /* Disallow changing some options from secure mode. */
7677 if ((secure
7678 #ifdef HAVE_SANDBOX
7679 || sandbox != 0
7680 #endif
7681 ) && (options[opt_idx].flags & P_SECURE))
7682 return e_secure;
7684 *pp = value;
7685 #ifdef FEAT_EVAL
7686 /* Remember where the option was set. */
7687 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
7688 #endif
7689 #ifdef FEAT_GUI
7690 need_mouse_correct = TRUE;
7691 #endif
7693 if (curbuf->b_p_sw <= 0)
7695 errmsg = e_positive;
7696 curbuf->b_p_sw = curbuf->b_p_ts;
7700 * Number options that need some action when changed
7702 #ifdef FEAT_WINDOWS
7703 if (pp == &p_wh || pp == &p_hh)
7705 if (p_wh < 1)
7707 errmsg = e_positive;
7708 p_wh = 1;
7710 if (p_wmh > p_wh)
7712 errmsg = e_winheight;
7713 p_wh = p_wmh;
7715 if (p_hh < 0)
7717 errmsg = e_positive;
7718 p_hh = 0;
7721 /* Change window height NOW */
7722 if (lastwin != firstwin)
7724 if (pp == &p_wh && curwin->w_height < p_wh)
7725 win_setheight((int)p_wh);
7726 if (pp == &p_hh && curbuf->b_help && curwin->w_height < p_hh)
7727 win_setheight((int)p_hh);
7731 /* 'winminheight' */
7732 else if (pp == &p_wmh)
7734 if (p_wmh < 0)
7736 errmsg = e_positive;
7737 p_wmh = 0;
7739 if (p_wmh > p_wh)
7741 errmsg = e_winheight;
7742 p_wmh = p_wh;
7744 win_setminheight();
7747 # ifdef FEAT_VERTSPLIT
7748 else if (pp == &p_wiw)
7750 if (p_wiw < 1)
7752 errmsg = e_positive;
7753 p_wiw = 1;
7755 if (p_wmw > p_wiw)
7757 errmsg = e_winwidth;
7758 p_wiw = p_wmw;
7761 /* Change window width NOW */
7762 if (lastwin != firstwin && curwin->w_width < p_wiw)
7763 win_setwidth((int)p_wiw);
7766 /* 'winminwidth' */
7767 else if (pp == &p_wmw)
7769 if (p_wmw < 0)
7771 errmsg = e_positive;
7772 p_wmw = 0;
7774 if (p_wmw > p_wiw)
7776 errmsg = e_winwidth;
7777 p_wmw = p_wiw;
7779 win_setminheight();
7781 # endif
7783 #endif
7785 #ifdef FEAT_WINDOWS
7786 /* (re)set last window status line */
7787 else if (pp == &p_ls)
7789 last_status(FALSE);
7792 /* (re)set tab page line */
7793 else if (pp == &p_stal)
7795 shell_new_rows(); /* recompute window positions and heights */
7797 #endif
7799 #ifdef FEAT_GUI
7800 else if (pp == &p_linespace)
7802 /* Recompute gui.char_height and resize the Vim window to keep the
7803 * same number of lines. */
7804 if (gui.in_use && gui_mch_adjust_charheight() == OK)
7805 gui_set_shellsize(FALSE, FALSE, RESIZE_VERT);
7807 #endif
7809 #ifdef FEAT_FOLDING
7810 /* 'foldlevel' */
7811 else if (pp == &curwin->w_p_fdl)
7813 if (curwin->w_p_fdl < 0)
7814 curwin->w_p_fdl = 0;
7815 newFoldLevel();
7818 /* 'foldminlevel' */
7819 else if (pp == &curwin->w_p_fml)
7821 foldUpdateAll(curwin);
7824 /* 'foldnestmax' */
7825 else if (pp == &curwin->w_p_fdn)
7827 if (foldmethodIsSyntax(curwin) || foldmethodIsIndent(curwin))
7828 foldUpdateAll(curwin);
7831 /* 'foldcolumn' */
7832 else if (pp == &curwin->w_p_fdc)
7834 if (curwin->w_p_fdc < 0)
7836 errmsg = e_positive;
7837 curwin->w_p_fdc = 0;
7839 else if (curwin->w_p_fdc > 12)
7841 errmsg = e_invarg;
7842 curwin->w_p_fdc = 12;
7846 /* 'shiftwidth' or 'tabstop' */
7847 else if (pp == &curbuf->b_p_sw || pp == &curbuf->b_p_ts)
7849 if (foldmethodIsIndent(curwin))
7850 foldUpdateAll(curwin);
7852 #endif /* FEAT_FOLDING */
7854 #ifdef FEAT_MBYTE
7855 /* 'maxcombine' */
7856 else if (pp == &p_mco)
7858 if (p_mco > MAX_MCO)
7859 p_mco = MAX_MCO;
7860 else if (p_mco < 0)
7861 p_mco = 0;
7862 screenclear(); /* will re-allocate the screen */
7864 #endif
7866 else if (pp == &curbuf->b_p_iminsert)
7868 if (curbuf->b_p_iminsert < 0 || curbuf->b_p_iminsert > B_IMODE_LAST)
7870 errmsg = e_invarg;
7871 curbuf->b_p_iminsert = B_IMODE_NONE;
7873 p_iminsert = curbuf->b_p_iminsert;
7874 if (termcap_active) /* don't do this in the alternate screen */
7875 showmode();
7876 #if defined(FEAT_WINDOWS) && defined(FEAT_KEYMAP)
7877 /* Show/unshow value of 'keymap' in status lines. */
7878 status_redraw_curbuf();
7879 #endif
7882 else if (pp == &p_window)
7884 if (p_window < 1)
7885 p_window = 1;
7886 else if (p_window >= Rows)
7887 p_window = Rows - 1;
7890 else if (pp == &curbuf->b_p_imsearch)
7892 if (curbuf->b_p_imsearch < -1 || curbuf->b_p_imsearch > B_IMODE_LAST)
7894 errmsg = e_invarg;
7895 curbuf->b_p_imsearch = B_IMODE_NONE;
7897 p_imsearch = curbuf->b_p_imsearch;
7900 #ifdef FEAT_TITLE
7901 /* if 'titlelen' has changed, redraw the title */
7902 else if (pp == &p_titlelen)
7904 if (p_titlelen < 0)
7906 errmsg = e_positive;
7907 p_titlelen = 85;
7909 if (starting != NO_SCREEN && old_value != p_titlelen)
7910 need_maketitle = TRUE;
7912 #endif
7914 /* if p_ch changed value, change the command line height */
7915 else if (pp == &p_ch)
7917 if (p_ch < 1)
7919 errmsg = e_positive;
7920 p_ch = 1;
7922 if (p_ch > Rows - min_rows() + 1)
7923 p_ch = Rows - min_rows() + 1;
7925 /* Only compute the new window layout when startup has been
7926 * completed. Otherwise the frame sizes may be wrong. */
7927 if (p_ch != old_value && full_screen
7928 #ifdef FEAT_GUI
7929 && !gui.starting
7930 #endif
7932 command_height();
7935 /* when 'updatecount' changes from zero to non-zero, open swap files */
7936 else if (pp == &p_uc)
7938 if (p_uc < 0)
7940 errmsg = e_positive;
7941 p_uc = 100;
7943 if (p_uc && !old_value)
7944 ml_open_files();
7946 #ifdef MZSCHEME_GUI_THREADS
7947 else if (pp == &p_mzq)
7948 mzvim_reset_timer();
7949 #endif
7951 /* sync undo before 'undolevels' changes */
7952 else if (pp == &p_ul)
7954 /* use the old value, otherwise u_sync() may not work properly */
7955 p_ul = old_value;
7956 u_sync(TRUE);
7957 p_ul = value;
7960 #ifdef FEAT_LINEBREAK
7961 /* 'numberwidth' must be positive */
7962 else if (pp == &curwin->w_p_nuw)
7964 if (curwin->w_p_nuw < 1)
7966 errmsg = e_positive;
7967 curwin->w_p_nuw = 1;
7969 if (curwin->w_p_nuw > 10)
7971 errmsg = e_invarg;
7972 curwin->w_p_nuw = 10;
7974 curwin->w_nrwidth_line_count = 0;
7976 #endif
7978 #if defined(FEAT_TRANSPARENCY)
7979 /* 'transparency' is a number between 0 and 100 */
7980 else if (pp == &p_transp)
7982 if (p_transp < 0 || p_transp > 100)
7984 errmsg = e_invarg;
7985 p_transp = old_value;
7987 else if (gui.in_use)
7988 gui_mch_new_colors();
7990 #endif
7993 * Check the bounds for numeric options here
7995 if (Rows < min_rows() && full_screen)
7997 if (errbuf != NULL)
7999 vim_snprintf((char *)errbuf, errbuflen,
8000 _("E593: Need at least %d lines"), min_rows());
8001 errmsg = errbuf;
8003 Rows = min_rows();
8005 if (Columns < MIN_COLUMNS && full_screen)
8007 if (errbuf != NULL)
8009 vim_snprintf((char *)errbuf, errbuflen,
8010 _("E594: Need at least %d columns"), MIN_COLUMNS);
8011 errmsg = errbuf;
8013 Columns = MIN_COLUMNS;
8015 /* Limit the values to avoid an overflow in Rows * Columns. */
8016 if (Columns > 10000)
8017 Columns = 10000;
8018 if (Rows > 1000)
8019 Rows = 1000;
8021 #ifdef DJGPP
8022 /* avoid a crash by checking for a too large value of 'columns' */
8023 if (old_Columns != Columns && full_screen && term_console)
8024 mch_check_columns();
8025 #endif
8028 * If the screen (shell) height has been changed, assume it is the
8029 * physical screenheight.
8031 if (old_Rows != Rows || old_Columns != Columns)
8033 /* Changing the screen size is not allowed while updating the screen. */
8034 if (updating_screen)
8035 *pp = old_value;
8036 else if (full_screen
8037 #ifdef FEAT_GUI
8038 && !gui.starting
8039 #endif
8041 set_shellsize((int)Columns, (int)Rows, TRUE);
8042 else
8044 /* Postpone the resizing; check the size and cmdline position for
8045 * messages. */
8046 check_shellsize();
8047 if (cmdline_row > Rows - p_ch && Rows > p_ch)
8048 cmdline_row = Rows - p_ch;
8050 if (p_window >= Rows || !option_was_set((char_u *)"window"))
8051 p_window = Rows - 1;
8054 if (curbuf->b_p_sts < 0)
8056 errmsg = e_positive;
8057 curbuf->b_p_sts = 0;
8059 if (curbuf->b_p_ts <= 0)
8061 errmsg = e_positive;
8062 curbuf->b_p_ts = 8;
8064 if (curbuf->b_p_tw < 0)
8066 errmsg = e_positive;
8067 curbuf->b_p_tw = 0;
8069 if (p_tm < 0)
8071 errmsg = e_positive;
8072 p_tm = 0;
8074 if ((curwin->w_p_scr <= 0
8075 || (curwin->w_p_scr > curwin->w_height
8076 && curwin->w_height > 0))
8077 && full_screen)
8079 if (pp == &(curwin->w_p_scr))
8081 if (curwin->w_p_scr != 0)
8082 errmsg = e_scroll;
8083 win_comp_scroll(curwin);
8085 /* If 'scroll' became invalid because of a side effect silently adjust
8086 * it. */
8087 else if (curwin->w_p_scr <= 0)
8088 curwin->w_p_scr = 1;
8089 else /* curwin->w_p_scr > curwin->w_height */
8090 curwin->w_p_scr = curwin->w_height;
8092 if (p_report < 0)
8094 errmsg = e_positive;
8095 p_report = 1;
8097 if ((p_sj < -100 || p_sj >= Rows) && full_screen)
8099 if (Rows != old_Rows) /* Rows changed, just adjust p_sj */
8100 p_sj = Rows / 2;
8101 else
8103 errmsg = e_scroll;
8104 p_sj = 1;
8107 if (p_so < 0 && full_screen)
8109 errmsg = e_scroll;
8110 p_so = 0;
8112 if (p_siso < 0 && full_screen)
8114 errmsg = e_positive;
8115 p_siso = 0;
8117 #ifdef FEAT_CMDWIN
8118 if (p_cwh < 1)
8120 errmsg = e_positive;
8121 p_cwh = 1;
8123 #endif
8124 if (p_ut < 0)
8126 errmsg = e_positive;
8127 p_ut = 2000;
8129 if (p_ss < 0)
8131 errmsg = e_positive;
8132 p_ss = 0;
8135 /* May set global value for local option. */
8136 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0)
8137 *(long *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) = *pp;
8139 options[opt_idx].flags |= P_WAS_SET;
8141 comp_col(); /* in case 'columns' or 'ls' changed */
8142 if (curwin->w_curswant != MAXCOL)
8143 curwin->w_set_curswant = TRUE; /* in case 'tabstop' changed */
8144 check_redraw(options[opt_idx].flags);
8146 return errmsg;
8150 * Called after an option changed: check if something needs to be redrawn.
8152 static void
8153 check_redraw(flags)
8154 long_u flags;
8156 /* Careful: P_RCLR and P_RALL are a combination of other P_ flags */
8157 int clear = (flags & P_RCLR) == P_RCLR;
8158 int all = ((flags & P_RALL) == P_RALL || clear);
8160 #ifdef FEAT_WINDOWS
8161 if ((flags & P_RSTAT) || all) /* mark all status lines dirty */
8162 status_redraw_all();
8163 #endif
8165 if ((flags & P_RBUF) || (flags & P_RWIN) || all)
8166 changed_window_setting();
8167 if (flags & P_RBUF)
8168 redraw_curbuf_later(NOT_VALID);
8169 if (clear)
8170 redraw_all_later(CLEAR);
8171 else if (all)
8172 redraw_all_later(NOT_VALID);
8176 * Find index for option 'arg'.
8177 * Return -1 if not found.
8179 static int
8180 findoption(arg)
8181 char_u *arg;
8183 int opt_idx;
8184 char *s, *p;
8185 static short quick_tab[27] = {0, 0}; /* quick access table */
8186 int is_term_opt;
8189 * For first call: Initialize the quick-access table.
8190 * It contains the index for the first option that starts with a certain
8191 * letter. There are 26 letters, plus the first "t_" option.
8193 if (quick_tab[1] == 0)
8195 p = options[0].fullname;
8196 for (opt_idx = 1; (s = options[opt_idx].fullname) != NULL; opt_idx++)
8198 if (s[0] != p[0])
8200 if (s[0] == 't' && s[1] == '_')
8201 quick_tab[26] = opt_idx;
8202 else
8203 quick_tab[CharOrdLow(s[0])] = opt_idx;
8205 p = s;
8210 * Check for name starting with an illegal character.
8212 #ifdef EBCDIC
8213 if (!islower(arg[0]))
8214 #else
8215 if (arg[0] < 'a' || arg[0] > 'z')
8216 #endif
8217 return -1;
8219 is_term_opt = (arg[0] == 't' && arg[1] == '_');
8220 if (is_term_opt)
8221 opt_idx = quick_tab[26];
8222 else
8223 opt_idx = quick_tab[CharOrdLow(arg[0])];
8224 for ( ; (s = options[opt_idx].fullname) != NULL; opt_idx++)
8226 if (STRCMP(arg, s) == 0) /* match full name */
8227 break;
8229 if (s == NULL && !is_term_opt)
8231 opt_idx = quick_tab[CharOrdLow(arg[0])];
8232 for ( ; options[opt_idx].fullname != NULL; opt_idx++)
8234 s = options[opt_idx].shortname;
8235 if (s != NULL && STRCMP(arg, s) == 0) /* match short name */
8236 break;
8237 s = NULL;
8240 if (s == NULL)
8241 opt_idx = -1;
8242 return opt_idx;
8245 #if defined(FEAT_EVAL) || defined(FEAT_TCL) || defined(FEAT_MZSCHEME)
8247 * Get the value for an option.
8249 * Returns:
8250 * Number or Toggle option: 1, *numval gets value.
8251 * String option: 0, *stringval gets allocated string.
8252 * Hidden Number or Toggle option: -1.
8253 * hidden String option: -2.
8254 * unknown option: -3.
8257 get_option_value(name, numval, stringval, opt_flags)
8258 char_u *name;
8259 long *numval;
8260 char_u **stringval; /* NULL when only checking existance */
8261 int opt_flags;
8263 int opt_idx;
8264 char_u *varp;
8266 opt_idx = findoption(name);
8267 if (opt_idx < 0) /* unknown option */
8268 return -3;
8270 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
8272 if (options[opt_idx].flags & P_STRING)
8274 if (varp == NULL) /* hidden option */
8275 return -2;
8276 if (stringval != NULL)
8278 #ifdef FEAT_CRYPT
8279 /* never return the value of the crypt key */
8280 if ((char_u **)varp == &curbuf->b_p_key)
8281 *stringval = vim_strsave((char_u *)"*****");
8282 else
8283 #endif
8284 *stringval = vim_strsave(*(char_u **)(varp));
8286 return 0;
8289 if (varp == NULL) /* hidden option */
8290 return -1;
8291 if (options[opt_idx].flags & P_NUM)
8292 *numval = *(long *)varp;
8293 else
8295 /* Special case: 'modified' is b_changed, but we also want to consider
8296 * it set when 'ff' or 'fenc' changed. */
8297 if ((int *)varp == &curbuf->b_changed)
8298 *numval = curbufIsChanged();
8299 else
8300 *numval = *(int *)varp;
8302 return 1;
8304 #endif
8307 * Set the value of option "name".
8308 * Use "string" for string options, use "number" for other options.
8310 void
8311 set_option_value(name, number, string, opt_flags)
8312 char_u *name;
8313 long number;
8314 char_u *string;
8315 int opt_flags; /* OPT_LOCAL or 0 (both) */
8317 int opt_idx;
8318 char_u *varp;
8319 long_u flags;
8321 opt_idx = findoption(name);
8322 if (opt_idx < 0)
8323 EMSG2(_("E355: Unknown option: %s"), name);
8324 else
8326 flags = options[opt_idx].flags;
8327 #ifdef HAVE_SANDBOX
8328 /* Disallow changing some options in the sandbox */
8329 if (sandbox > 0 && (flags & P_SECURE))
8331 EMSG(_(e_sandbox));
8332 return;
8334 #endif
8335 if (flags & P_STRING)
8336 set_string_option(opt_idx, string, opt_flags);
8337 else
8339 varp = get_varp(&options[opt_idx]);
8340 if (varp != NULL) /* hidden option is not changed */
8342 if (number == 0 && string != NULL)
8344 int index;
8346 /* Either we are given a string or we are setting option
8347 * to zero. */
8348 for (index = 0; string[index] == '0'; ++index)
8350 if (string[index] != NUL || index == 0)
8352 /* There's another character after zeros or the string
8353 * is empty. In both cases, we are trying to set a
8354 * num option using a string. */
8355 EMSG3(_("E521: Number required: &%s = '%s'"),
8356 name, string);
8357 return; /* do nothing as we hit an error */
8361 if (flags & P_NUM)
8362 (void)set_num_option(opt_idx, varp, number,
8363 NULL, 0, opt_flags);
8364 else
8365 (void)set_bool_option(opt_idx, varp, (int)number,
8366 opt_flags);
8373 * Get the terminal code for a terminal option.
8374 * Returns NULL when not found.
8376 char_u *
8377 get_term_code(tname)
8378 char_u *tname;
8380 int opt_idx;
8381 char_u *varp;
8383 if (tname[0] != 't' || tname[1] != '_' ||
8384 tname[2] == NUL || tname[3] == NUL)
8385 return NULL;
8386 if ((opt_idx = findoption(tname)) >= 0)
8388 varp = get_varp(&(options[opt_idx]));
8389 if (varp != NULL)
8390 varp = *(char_u **)(varp);
8391 return varp;
8393 return find_termcode(tname + 2);
8396 char_u *
8397 get_highlight_default()
8399 int i;
8401 i = findoption((char_u *)"hl");
8402 if (i >= 0)
8403 return options[i].def_val[VI_DEFAULT];
8404 return (char_u *)NULL;
8407 #if defined(FEAT_MBYTE) || defined(PROTO)
8408 char_u *
8409 get_encoding_default()
8411 int i;
8413 i = findoption((char_u *)"enc");
8414 if (i >= 0)
8415 return options[i].def_val[VI_DEFAULT];
8416 return (char_u *)NULL;
8418 #endif
8421 * Translate a string like "t_xx", "<t_xx>" or "<S-Tab>" to a key number.
8423 static int
8424 find_key_option(arg)
8425 char_u *arg;
8427 int key;
8428 int modifiers;
8431 * Don't use get_special_key_code() for t_xx, we don't want it to call
8432 * add_termcap_entry().
8434 if (arg[0] == 't' && arg[1] == '_' && arg[2] && arg[3])
8435 key = TERMCAP2KEY(arg[2], arg[3]);
8436 else
8438 --arg; /* put arg at the '<' */
8439 modifiers = 0;
8440 key = find_special_key(&arg, &modifiers, TRUE);
8441 if (modifiers) /* can't handle modifiers here */
8442 key = 0;
8444 return key;
8448 * if 'all' == 0: show changed options
8449 * if 'all' == 1: show all normal options
8450 * if 'all' == 2: show all terminal options
8452 static void
8453 showoptions(all, opt_flags)
8454 int all;
8455 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
8457 struct vimoption *p;
8458 int col;
8459 int isterm;
8460 char_u *varp;
8461 struct vimoption **items;
8462 int item_count;
8463 int run;
8464 int row, rows;
8465 int cols;
8466 int i;
8467 int len;
8469 #define INC 20
8470 #define GAP 3
8472 items = (struct vimoption **)alloc((unsigned)(sizeof(struct vimoption *) *
8473 PARAM_COUNT));
8474 if (items == NULL)
8475 return;
8477 /* Highlight title */
8478 if (all == 2)
8479 MSG_PUTS_TITLE(_("\n--- Terminal codes ---"));
8480 else if (opt_flags & OPT_GLOBAL)
8481 MSG_PUTS_TITLE(_("\n--- Global option values ---"));
8482 else if (opt_flags & OPT_LOCAL)
8483 MSG_PUTS_TITLE(_("\n--- Local option values ---"));
8484 else
8485 MSG_PUTS_TITLE(_("\n--- Options ---"));
8488 * do the loop two times:
8489 * 1. display the short items
8490 * 2. display the long items (only strings and numbers)
8492 for (run = 1; run <= 2 && !got_int; ++run)
8495 * collect the items in items[]
8497 item_count = 0;
8498 for (p = &options[0]; p->fullname != NULL; p++)
8500 varp = NULL;
8501 isterm = istermoption(p);
8502 if (opt_flags != 0)
8504 if (p->indir != PV_NONE && !isterm)
8505 varp = get_varp_scope(p, opt_flags);
8507 else
8508 varp = get_varp(p);
8509 if (varp != NULL
8510 && ((all == 2 && isterm)
8511 || (all == 1 && !isterm)
8512 || (all == 0 && !optval_default(p, varp))))
8514 if (p->flags & P_BOOL)
8515 len = 1; /* a toggle option fits always */
8516 else
8518 option_value2string(p, opt_flags);
8519 len = (int)STRLEN(p->fullname) + vim_strsize(NameBuff) + 1;
8521 if ((len <= INC - GAP && run == 1) ||
8522 (len > INC - GAP && run == 2))
8523 items[item_count++] = p;
8528 * display the items
8530 if (run == 1)
8532 cols = (Columns + GAP - 3) / INC;
8533 if (cols == 0)
8534 cols = 1;
8535 rows = (item_count + cols - 1) / cols;
8537 else /* run == 2 */
8538 rows = item_count;
8539 for (row = 0; row < rows && !got_int; ++row)
8541 msg_putchar('\n'); /* go to next line */
8542 if (got_int) /* 'q' typed in more */
8543 break;
8544 col = 0;
8545 for (i = row; i < item_count; i += rows)
8547 msg_col = col; /* make columns */
8548 showoneopt(items[i], opt_flags);
8549 col += INC;
8551 out_flush();
8552 ui_breakcheck();
8555 vim_free(items);
8559 * Return TRUE if option "p" has its default value.
8561 static int
8562 optval_default(p, varp)
8563 struct vimoption *p;
8564 char_u *varp;
8566 int dvi;
8568 if (varp == NULL)
8569 return TRUE; /* hidden option is always at default */
8570 dvi = ((p->flags & P_VI_DEF) || p_cp) ? VI_DEFAULT : VIM_DEFAULT;
8571 if (p->flags & P_NUM)
8572 return (*(long *)varp == (long)(long_i)p->def_val[dvi]);
8573 if (p->flags & P_BOOL)
8574 /* the cast to long is required for Manx C, long_i is
8575 * needed for MSVC */
8576 return (*(int *)varp == (int)(long)(long_i)p->def_val[dvi]);
8577 /* P_STRING */
8578 return (STRCMP(*(char_u **)varp, p->def_val[dvi]) == 0);
8582 * showoneopt: show the value of one option
8583 * must not be called with a hidden option!
8585 static void
8586 showoneopt(p, opt_flags)
8587 struct vimoption *p;
8588 int opt_flags; /* OPT_LOCAL or OPT_GLOBAL */
8590 char_u *varp;
8591 int save_silent = silent_mode;
8593 silent_mode = FALSE;
8594 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
8596 varp = get_varp_scope(p, opt_flags);
8598 /* for 'modified' we also need to check if 'ff' or 'fenc' changed. */
8599 if ((p->flags & P_BOOL) && ((int *)varp == &curbuf->b_changed
8600 ? !curbufIsChanged() : !*(int *)varp))
8601 MSG_PUTS("no");
8602 else if ((p->flags & P_BOOL) && *(int *)varp < 0)
8603 MSG_PUTS("--");
8604 else
8605 MSG_PUTS(" ");
8606 MSG_PUTS(p->fullname);
8607 if (!(p->flags & P_BOOL))
8609 msg_putchar('=');
8610 /* put value string in NameBuff */
8611 option_value2string(p, opt_flags);
8612 msg_outtrans(NameBuff);
8615 silent_mode = save_silent;
8616 info_message = FALSE;
8620 * Write modified options as ":set" commands to a file.
8622 * There are three values for "opt_flags":
8623 * OPT_GLOBAL: Write global option values and fresh values of
8624 * buffer-local options (used for start of a session
8625 * file).
8626 * OPT_GLOBAL + OPT_LOCAL: Idem, add fresh values of window-local options for
8627 * curwin (used for a vimrc file).
8628 * OPT_LOCAL: Write buffer-local option values for curbuf, fresh
8629 * and local values for window-local options of
8630 * curwin. Local values are also written when at the
8631 * default value, because a modeline or autocommand
8632 * may have set them when doing ":edit file" and the
8633 * user has set them back at the default or fresh
8634 * value.
8635 * When "local_only" is TRUE, don't write fresh
8636 * values, only local values (for ":mkview").
8637 * (fresh value = value used for a new buffer or window for a local option).
8639 * Return FAIL on error, OK otherwise.
8642 makeset(fd, opt_flags, local_only)
8643 FILE *fd;
8644 int opt_flags;
8645 int local_only;
8647 struct vimoption *p;
8648 char_u *varp; /* currently used value */
8649 char_u *varp_fresh; /* local value */
8650 char_u *varp_local = NULL; /* fresh value */
8651 char *cmd;
8652 int round;
8653 int pri;
8656 * The options that don't have a default (terminal name, columns, lines)
8657 * are never written. Terminal options are also not written.
8658 * Do the loop over "options[]" twice: once for options with the
8659 * P_PRI_MKRC flag and once without.
8661 for (pri = 1; pri >= 0; --pri)
8663 for (p = &options[0]; !istermoption(p); p++)
8664 if (!(p->flags & P_NO_MKRC)
8665 && !istermoption(p)
8666 && ((pri == 1) == ((p->flags & P_PRI_MKRC) != 0)))
8668 /* skip global option when only doing locals */
8669 if (p->indir == PV_NONE && !(opt_flags & OPT_GLOBAL))
8670 continue;
8672 /* Do not store options like 'bufhidden' and 'syntax' in a vimrc
8673 * file, they are always buffer-specific. */
8674 if ((opt_flags & OPT_GLOBAL) && (p->flags & P_NOGLOB))
8675 continue;
8677 /* Global values are only written when not at the default value. */
8678 varp = get_varp_scope(p, opt_flags);
8679 if ((opt_flags & OPT_GLOBAL) && optval_default(p, varp))
8680 continue;
8682 round = 2;
8683 if (p->indir != PV_NONE)
8685 if (p->var == VAR_WIN)
8687 /* skip window-local option when only doing globals */
8688 if (!(opt_flags & OPT_LOCAL))
8689 continue;
8690 /* When fresh value of window-local option is not at the
8691 * default, need to write it too. */
8692 if (!(opt_flags & OPT_GLOBAL) && !local_only)
8694 varp_fresh = get_varp_scope(p, OPT_GLOBAL);
8695 if (!optval_default(p, varp_fresh))
8697 round = 1;
8698 varp_local = varp;
8699 varp = varp_fresh;
8705 /* Round 1: fresh value for window-local options.
8706 * Round 2: other values */
8707 for ( ; round <= 2; varp = varp_local, ++round)
8709 if (round == 1 || (opt_flags & OPT_GLOBAL))
8710 cmd = "set";
8711 else
8712 cmd = "setlocal";
8714 if (p->flags & P_BOOL)
8716 if (put_setbool(fd, cmd, p->fullname, *(int *)varp) == FAIL)
8717 return FAIL;
8719 else if (p->flags & P_NUM)
8721 if (put_setnum(fd, cmd, p->fullname, (long *)varp) == FAIL)
8722 return FAIL;
8724 else /* P_STRING */
8726 #if defined(FEAT_SYN_HL) || defined(FEAT_AUTOCMD)
8727 int do_endif = FALSE;
8729 /* Don't set 'syntax' and 'filetype' again if the value is
8730 * already right, avoids reloading the syntax file. */
8731 if (
8732 # if defined(FEAT_SYN_HL)
8733 p->indir == PV_SYN
8734 # if defined(FEAT_AUTOCMD)
8736 # endif
8737 # endif
8738 # if defined(FEAT_AUTOCMD)
8739 p->indir == PV_FT)
8740 # endif
8742 if (fprintf(fd, "if &%s != '%s'", p->fullname,
8743 *(char_u **)(varp)) < 0
8744 || put_eol(fd) < 0)
8745 return FAIL;
8746 do_endif = TRUE;
8748 #endif
8749 if (put_setstring(fd, cmd, p->fullname, (char_u **)varp,
8750 (p->flags & P_EXPAND) != 0) == FAIL)
8751 return FAIL;
8752 #if defined(FEAT_SYN_HL) || defined(FEAT_AUTOCMD)
8753 if (do_endif)
8755 if (put_line(fd, "endif") == FAIL)
8756 return FAIL;
8758 #endif
8763 return OK;
8766 #if defined(FEAT_FOLDING) || defined(PROTO)
8768 * Generate set commands for the local fold options only. Used when
8769 * 'sessionoptions' or 'viewoptions' contains "folds" but not "options".
8772 makefoldset(fd)
8773 FILE *fd;
8775 if (put_setstring(fd, "setlocal", "fdm", &curwin->w_p_fdm, FALSE) == FAIL
8776 # ifdef FEAT_EVAL
8777 || put_setstring(fd, "setlocal", "fde", &curwin->w_p_fde, FALSE)
8778 == FAIL
8779 # endif
8780 || put_setstring(fd, "setlocal", "fmr", &curwin->w_p_fmr, FALSE)
8781 == FAIL
8782 || put_setstring(fd, "setlocal", "fdi", &curwin->w_p_fdi, FALSE)
8783 == FAIL
8784 || put_setnum(fd, "setlocal", "fdl", &curwin->w_p_fdl) == FAIL
8785 || put_setnum(fd, "setlocal", "fml", &curwin->w_p_fml) == FAIL
8786 || put_setnum(fd, "setlocal", "fdn", &curwin->w_p_fdn) == FAIL
8787 || put_setbool(fd, "setlocal", "fen", curwin->w_p_fen) == FAIL
8789 return FAIL;
8791 return OK;
8793 #endif
8795 static int
8796 put_setstring(fd, cmd, name, valuep, expand)
8797 FILE *fd;
8798 char *cmd;
8799 char *name;
8800 char_u **valuep;
8801 int expand;
8803 char_u *s;
8804 char_u buf[MAXPATHL];
8806 if (fprintf(fd, "%s %s=", cmd, name) < 0)
8807 return FAIL;
8808 if (*valuep != NULL)
8810 /* Output 'pastetoggle' as key names. For other
8811 * options some characters have to be escaped with
8812 * CTRL-V or backslash */
8813 if (valuep == &p_pt)
8815 s = *valuep;
8816 while (*s != NUL)
8817 if (fputs((char *)str2special(&s, FALSE), fd) < 0)
8818 return FAIL;
8820 else if (expand)
8822 home_replace(NULL, *valuep, buf, MAXPATHL, FALSE);
8823 if (put_escstr(fd, buf, 2) == FAIL)
8824 return FAIL;
8826 else if (put_escstr(fd, *valuep, 2) == FAIL)
8827 return FAIL;
8829 if (put_eol(fd) < 0)
8830 return FAIL;
8831 return OK;
8834 static int
8835 put_setnum(fd, cmd, name, valuep)
8836 FILE *fd;
8837 char *cmd;
8838 char *name;
8839 long *valuep;
8841 long wc;
8843 if (fprintf(fd, "%s %s=", cmd, name) < 0)
8844 return FAIL;
8845 if (wc_use_keyname((char_u *)valuep, &wc))
8847 /* print 'wildchar' and 'wildcharm' as a key name */
8848 if (fputs((char *)get_special_key_name((int)wc, 0), fd) < 0)
8849 return FAIL;
8851 else if (fprintf(fd, "%ld", *valuep) < 0)
8852 return FAIL;
8853 if (put_eol(fd) < 0)
8854 return FAIL;
8855 return OK;
8858 static int
8859 put_setbool(fd, cmd, name, value)
8860 FILE *fd;
8861 char *cmd;
8862 char *name;
8863 int value;
8865 if (value < 0) /* global/local option using global value */
8866 return OK;
8867 if (fprintf(fd, "%s %s%s", cmd, value ? "" : "no", name) < 0
8868 || put_eol(fd) < 0)
8869 return FAIL;
8870 return OK;
8874 * Clear all the terminal options.
8875 * If the option has been allocated, free the memory.
8876 * Terminal options are never hidden or indirect.
8878 void
8879 clear_termoptions()
8882 * Reset a few things before clearing the old options. This may cause
8883 * outputting a few things that the terminal doesn't understand, but the
8884 * screen will be cleared later, so this is OK.
8886 #ifdef FEAT_MOUSE_TTY
8887 mch_setmouse(FALSE); /* switch mouse off */
8888 #endif
8889 #ifdef FEAT_TITLE
8890 mch_restore_title(3); /* restore window titles */
8891 #endif
8892 #if defined(FEAT_XCLIPBOARD) && defined(FEAT_GUI)
8893 /* When starting the GUI close the display opened for the clipboard.
8894 * After restoring the title, because that will need the display. */
8895 if (gui.starting)
8896 clear_xterm_clip();
8897 #endif
8898 #ifdef WIN3264
8900 * Check if this is allowed now.
8902 if (can_end_termcap_mode(FALSE) == TRUE)
8903 #endif
8904 stoptermcap(); /* stop termcap mode */
8906 free_termoptions();
8909 void
8910 free_termoptions()
8912 struct vimoption *p;
8914 for (p = &options[0]; p->fullname != NULL; p++)
8915 if (istermoption(p))
8917 if (p->flags & P_ALLOCED)
8918 free_string_option(*(char_u **)(p->var));
8919 if (p->flags & P_DEF_ALLOCED)
8920 free_string_option(p->def_val[VI_DEFAULT]);
8921 *(char_u **)(p->var) = empty_option;
8922 p->def_val[VI_DEFAULT] = empty_option;
8923 p->flags &= ~(P_ALLOCED|P_DEF_ALLOCED);
8925 clear_termcodes();
8929 * Set the terminal option defaults to the current value.
8930 * Used after setting the terminal name.
8932 void
8933 set_term_defaults()
8935 struct vimoption *p;
8937 for (p = &options[0]; p->fullname != NULL; p++)
8939 if (istermoption(p) && p->def_val[VI_DEFAULT] != *(char_u **)(p->var))
8941 if (p->flags & P_DEF_ALLOCED)
8943 free_string_option(p->def_val[VI_DEFAULT]);
8944 p->flags &= ~P_DEF_ALLOCED;
8946 p->def_val[VI_DEFAULT] = *(char_u **)(p->var);
8947 if (p->flags & P_ALLOCED)
8949 p->flags |= P_DEF_ALLOCED;
8950 p->flags &= ~P_ALLOCED; /* don't free the value now */
8957 * return TRUE if 'p' starts with 't_'
8959 static int
8960 istermoption(p)
8961 struct vimoption *p;
8963 return (p->fullname[0] == 't' && p->fullname[1] == '_');
8967 * Compute columns for ruler and shown command. 'sc_col' is also used to
8968 * decide what the maximum length of a message on the status line can be.
8969 * If there is a status line for the last window, 'sc_col' is independent
8970 * of 'ru_col'.
8973 #define COL_RULER 17 /* columns needed by standard ruler */
8975 void
8976 comp_col()
8978 #if defined(FEAT_CMDL_INFO) && defined(FEAT_WINDOWS)
8979 int last_has_status = (p_ls == 2 || (p_ls == 1 && firstwin != lastwin));
8981 sc_col = 0;
8982 ru_col = 0;
8983 if (p_ru)
8985 #ifdef FEAT_STL_OPT
8986 ru_col = (ru_wid ? ru_wid : COL_RULER) + 1;
8987 #else
8988 ru_col = COL_RULER + 1;
8989 #endif
8990 /* no last status line, adjust sc_col */
8991 if (!last_has_status)
8992 sc_col = ru_col;
8994 if (p_sc)
8996 sc_col += SHOWCMD_COLS;
8997 if (!p_ru || last_has_status) /* no need for separating space */
8998 ++sc_col;
9000 sc_col = Columns - sc_col;
9001 ru_col = Columns - ru_col;
9002 if (sc_col <= 0) /* screen too narrow, will become a mess */
9003 sc_col = 1;
9004 if (ru_col <= 0)
9005 ru_col = 1;
9006 #else
9007 sc_col = Columns;
9008 ru_col = Columns;
9009 #endif
9013 * Get pointer to option variable, depending on local or global scope.
9015 static char_u *
9016 get_varp_scope(p, opt_flags)
9017 struct vimoption *p;
9018 int opt_flags;
9020 if ((opt_flags & OPT_GLOBAL) && p->indir != PV_NONE)
9022 if (p->var == VAR_WIN)
9023 return (char_u *)GLOBAL_WO(get_varp(p));
9024 return p->var;
9026 if ((opt_flags & OPT_LOCAL) && ((int)p->indir & PV_BOTH))
9028 switch ((int)p->indir)
9030 #ifdef FEAT_QUICKFIX
9031 case PV_EFM: return (char_u *)&(curbuf->b_p_efm);
9032 case PV_GP: return (char_u *)&(curbuf->b_p_gp);
9033 case PV_MP: return (char_u *)&(curbuf->b_p_mp);
9034 #endif
9035 case PV_EP: return (char_u *)&(curbuf->b_p_ep);
9036 case PV_KP: return (char_u *)&(curbuf->b_p_kp);
9037 case PV_PATH: return (char_u *)&(curbuf->b_p_path);
9038 case PV_AR: return (char_u *)&(curbuf->b_p_ar);
9039 case PV_TAGS: return (char_u *)&(curbuf->b_p_tags);
9040 #ifdef FEAT_FIND_ID
9041 case PV_DEF: return (char_u *)&(curbuf->b_p_def);
9042 case PV_INC: return (char_u *)&(curbuf->b_p_inc);
9043 #endif
9044 #ifdef FEAT_INS_EXPAND
9045 case PV_DICT: return (char_u *)&(curbuf->b_p_dict);
9046 case PV_TSR: return (char_u *)&(curbuf->b_p_tsr);
9047 #endif
9048 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9049 case PV_BEXPR: return (char_u *)&(curbuf->b_p_bexpr);
9050 #endif
9051 #ifdef FEAT_STL_OPT
9052 case PV_STL: return (char_u *)&(curwin->w_p_stl);
9053 #endif
9055 return NULL; /* "cannot happen" */
9057 return get_varp(p);
9061 * Get pointer to option variable.
9063 static char_u *
9064 get_varp(p)
9065 struct vimoption *p;
9067 /* hidden option, always return NULL */
9068 if (p->var == NULL)
9069 return NULL;
9071 switch ((int)p->indir)
9073 case PV_NONE: return p->var;
9075 /* global option with local value: use local value if it's been set */
9076 case PV_EP: return *curbuf->b_p_ep != NUL
9077 ? (char_u *)&curbuf->b_p_ep : p->var;
9078 case PV_KP: return *curbuf->b_p_kp != NUL
9079 ? (char_u *)&curbuf->b_p_kp : p->var;
9080 case PV_PATH: return *curbuf->b_p_path != NUL
9081 ? (char_u *)&(curbuf->b_p_path) : p->var;
9082 case PV_AR: return curbuf->b_p_ar >= 0
9083 ? (char_u *)&(curbuf->b_p_ar) : p->var;
9084 case PV_TAGS: return *curbuf->b_p_tags != NUL
9085 ? (char_u *)&(curbuf->b_p_tags) : p->var;
9086 #ifdef FEAT_FIND_ID
9087 case PV_DEF: return *curbuf->b_p_def != NUL
9088 ? (char_u *)&(curbuf->b_p_def) : p->var;
9089 case PV_INC: return *curbuf->b_p_inc != NUL
9090 ? (char_u *)&(curbuf->b_p_inc) : p->var;
9091 #endif
9092 #ifdef FEAT_INS_EXPAND
9093 case PV_DICT: return *curbuf->b_p_dict != NUL
9094 ? (char_u *)&(curbuf->b_p_dict) : p->var;
9095 case PV_TSR: return *curbuf->b_p_tsr != NUL
9096 ? (char_u *)&(curbuf->b_p_tsr) : p->var;
9097 #endif
9098 #ifdef FEAT_QUICKFIX
9099 case PV_EFM: return *curbuf->b_p_efm != NUL
9100 ? (char_u *)&(curbuf->b_p_efm) : p->var;
9101 case PV_GP: return *curbuf->b_p_gp != NUL
9102 ? (char_u *)&(curbuf->b_p_gp) : p->var;
9103 case PV_MP: return *curbuf->b_p_mp != NUL
9104 ? (char_u *)&(curbuf->b_p_mp) : p->var;
9105 #endif
9106 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9107 case PV_BEXPR: return *curbuf->b_p_bexpr != NUL
9108 ? (char_u *)&(curbuf->b_p_bexpr) : p->var;
9109 #endif
9110 #ifdef FEAT_STL_OPT
9111 case PV_STL: return *curwin->w_p_stl != NUL
9112 ? (char_u *)&(curwin->w_p_stl) : p->var;
9113 #endif
9115 #ifdef FEAT_ARABIC
9116 case PV_ARAB: return (char_u *)&(curwin->w_p_arab);
9117 #endif
9118 case PV_LIST: return (char_u *)&(curwin->w_p_list);
9119 #ifdef FEAT_SPELL
9120 case PV_SPELL: return (char_u *)&(curwin->w_p_spell);
9121 #endif
9122 #ifdef FEAT_SYN_HL
9123 case PV_CUC: return (char_u *)&(curwin->w_p_cuc);
9124 case PV_CUL: return (char_u *)&(curwin->w_p_cul);
9125 #endif
9126 #ifdef FEAT_DIFF
9127 case PV_DIFF: return (char_u *)&(curwin->w_p_diff);
9128 #endif
9129 #ifdef FEAT_FOLDING
9130 case PV_FDC: return (char_u *)&(curwin->w_p_fdc);
9131 case PV_FEN: return (char_u *)&(curwin->w_p_fen);
9132 case PV_FDI: return (char_u *)&(curwin->w_p_fdi);
9133 case PV_FDL: return (char_u *)&(curwin->w_p_fdl);
9134 case PV_FDM: return (char_u *)&(curwin->w_p_fdm);
9135 case PV_FML: return (char_u *)&(curwin->w_p_fml);
9136 case PV_FDN: return (char_u *)&(curwin->w_p_fdn);
9137 # ifdef FEAT_EVAL
9138 case PV_FDE: return (char_u *)&(curwin->w_p_fde);
9139 case PV_FDT: return (char_u *)&(curwin->w_p_fdt);
9140 # endif
9141 case PV_FMR: return (char_u *)&(curwin->w_p_fmr);
9142 #endif
9143 case PV_NU: return (char_u *)&(curwin->w_p_nu);
9144 #ifdef FEAT_LINEBREAK
9145 case PV_NUW: return (char_u *)&(curwin->w_p_nuw);
9146 #endif
9147 #ifdef FEAT_WINDOWS
9148 case PV_WFH: return (char_u *)&(curwin->w_p_wfh);
9149 #endif
9150 #ifdef FEAT_VERTSPLIT
9151 case PV_WFW: return (char_u *)&(curwin->w_p_wfw);
9152 #endif
9153 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
9154 case PV_PVW: return (char_u *)&(curwin->w_p_pvw);
9155 #endif
9156 #ifdef FEAT_RIGHTLEFT
9157 case PV_RL: return (char_u *)&(curwin->w_p_rl);
9158 case PV_RLC: return (char_u *)&(curwin->w_p_rlc);
9159 #endif
9160 case PV_SCROLL: return (char_u *)&(curwin->w_p_scr);
9161 case PV_WRAP: return (char_u *)&(curwin->w_p_wrap);
9162 #ifdef FEAT_LINEBREAK
9163 case PV_LBR: return (char_u *)&(curwin->w_p_lbr);
9164 #endif
9165 #ifdef FEAT_SCROLLBIND
9166 case PV_SCBIND: return (char_u *)&(curwin->w_p_scb);
9167 #endif
9169 case PV_AI: return (char_u *)&(curbuf->b_p_ai);
9170 case PV_BIN: return (char_u *)&(curbuf->b_p_bin);
9171 #ifdef FEAT_MBYTE
9172 case PV_BOMB: return (char_u *)&(curbuf->b_p_bomb);
9173 #endif
9174 #if defined(FEAT_QUICKFIX)
9175 case PV_BH: return (char_u *)&(curbuf->b_p_bh);
9176 case PV_BT: return (char_u *)&(curbuf->b_p_bt);
9177 #endif
9178 case PV_BL: return (char_u *)&(curbuf->b_p_bl);
9179 case PV_CI: return (char_u *)&(curbuf->b_p_ci);
9180 #ifdef FEAT_CINDENT
9181 case PV_CIN: return (char_u *)&(curbuf->b_p_cin);
9182 case PV_CINK: return (char_u *)&(curbuf->b_p_cink);
9183 case PV_CINO: return (char_u *)&(curbuf->b_p_cino);
9184 #endif
9185 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
9186 case PV_CINW: return (char_u *)&(curbuf->b_p_cinw);
9187 #endif
9188 #ifdef FEAT_COMMENTS
9189 case PV_COM: return (char_u *)&(curbuf->b_p_com);
9190 #endif
9191 #ifdef FEAT_FOLDING
9192 case PV_CMS: return (char_u *)&(curbuf->b_p_cms);
9193 #endif
9194 #ifdef FEAT_INS_EXPAND
9195 case PV_CPT: return (char_u *)&(curbuf->b_p_cpt);
9196 #endif
9197 #ifdef FEAT_COMPL_FUNC
9198 case PV_CFU: return (char_u *)&(curbuf->b_p_cfu);
9199 case PV_OFU: return (char_u *)&(curbuf->b_p_ofu);
9200 #endif
9201 case PV_EOL: return (char_u *)&(curbuf->b_p_eol);
9202 case PV_ET: return (char_u *)&(curbuf->b_p_et);
9203 #ifdef FEAT_MBYTE
9204 case PV_FENC: return (char_u *)&(curbuf->b_p_fenc);
9205 #endif
9206 case PV_FF: return (char_u *)&(curbuf->b_p_ff);
9207 #ifdef FEAT_AUTOCMD
9208 case PV_FT: return (char_u *)&(curbuf->b_p_ft);
9209 #endif
9210 case PV_FO: return (char_u *)&(curbuf->b_p_fo);
9211 case PV_FLP: return (char_u *)&(curbuf->b_p_flp);
9212 case PV_IMI: return (char_u *)&(curbuf->b_p_iminsert);
9213 case PV_IMS: return (char_u *)&(curbuf->b_p_imsearch);
9214 case PV_INF: return (char_u *)&(curbuf->b_p_inf);
9215 case PV_ISK: return (char_u *)&(curbuf->b_p_isk);
9216 #ifdef FEAT_FIND_ID
9217 # ifdef FEAT_EVAL
9218 case PV_INEX: return (char_u *)&(curbuf->b_p_inex);
9219 # endif
9220 #endif
9221 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
9222 case PV_INDE: return (char_u *)&(curbuf->b_p_inde);
9223 case PV_INDK: return (char_u *)&(curbuf->b_p_indk);
9224 #endif
9225 #ifdef FEAT_EVAL
9226 case PV_FEX: return (char_u *)&(curbuf->b_p_fex);
9227 #endif
9228 #ifdef FEAT_CRYPT
9229 case PV_KEY: return (char_u *)&(curbuf->b_p_key);
9230 #endif
9231 #ifdef FEAT_LISP
9232 case PV_LISP: return (char_u *)&(curbuf->b_p_lisp);
9233 #endif
9234 case PV_ML: return (char_u *)&(curbuf->b_p_ml);
9235 case PV_MPS: return (char_u *)&(curbuf->b_p_mps);
9236 case PV_MA: return (char_u *)&(curbuf->b_p_ma);
9237 case PV_MOD: return (char_u *)&(curbuf->b_changed);
9238 case PV_NF: return (char_u *)&(curbuf->b_p_nf);
9239 #ifdef FEAT_OSFILETYPE
9240 case PV_OFT: return (char_u *)&(curbuf->b_p_oft);
9241 #endif
9242 case PV_PI: return (char_u *)&(curbuf->b_p_pi);
9243 #ifdef FEAT_TEXTOBJ
9244 case PV_QE: return (char_u *)&(curbuf->b_p_qe);
9245 #endif
9246 case PV_RO: return (char_u *)&(curbuf->b_p_ro);
9247 #ifdef FEAT_SMARTINDENT
9248 case PV_SI: return (char_u *)&(curbuf->b_p_si);
9249 #endif
9250 #ifndef SHORT_FNAME
9251 case PV_SN: return (char_u *)&(curbuf->b_p_sn);
9252 #endif
9253 case PV_STS: return (char_u *)&(curbuf->b_p_sts);
9254 #ifdef FEAT_SEARCHPATH
9255 case PV_SUA: return (char_u *)&(curbuf->b_p_sua);
9256 #endif
9257 case PV_SWF: return (char_u *)&(curbuf->b_p_swf);
9258 #ifdef FEAT_SYN_HL
9259 case PV_SMC: return (char_u *)&(curbuf->b_p_smc);
9260 case PV_SYN: return (char_u *)&(curbuf->b_p_syn);
9261 #endif
9262 #ifdef FEAT_SPELL
9263 case PV_SPC: return (char_u *)&(curbuf->b_p_spc);
9264 case PV_SPF: return (char_u *)&(curbuf->b_p_spf);
9265 case PV_SPL: return (char_u *)&(curbuf->b_p_spl);
9266 #endif
9267 case PV_SW: return (char_u *)&(curbuf->b_p_sw);
9268 case PV_TS: return (char_u *)&(curbuf->b_p_ts);
9269 case PV_TW: return (char_u *)&(curbuf->b_p_tw);
9270 case PV_TX: return (char_u *)&(curbuf->b_p_tx);
9271 case PV_WM: return (char_u *)&(curbuf->b_p_wm);
9272 #ifdef FEAT_KEYMAP
9273 case PV_KMAP: return (char_u *)&(curbuf->b_p_keymap);
9274 #endif
9275 default: EMSG(_("E356: get_varp ERROR"));
9277 /* always return a valid pointer to avoid a crash! */
9278 return (char_u *)&(curbuf->b_p_wm);
9282 * Get the value of 'equalprg', either the buffer-local one or the global one.
9284 char_u *
9285 get_equalprg()
9287 if (*curbuf->b_p_ep == NUL)
9288 return p_ep;
9289 return curbuf->b_p_ep;
9292 #if defined(FEAT_WINDOWS) || defined(PROTO)
9294 * Copy options from one window to another.
9295 * Used when splitting a window.
9297 void
9298 win_copy_options(wp_from, wp_to)
9299 win_T *wp_from;
9300 win_T *wp_to;
9302 copy_winopt(&wp_from->w_onebuf_opt, &wp_to->w_onebuf_opt);
9303 copy_winopt(&wp_from->w_allbuf_opt, &wp_to->w_allbuf_opt);
9304 # ifdef FEAT_RIGHTLEFT
9305 # ifdef FEAT_FKMAP
9306 /* Is this right? */
9307 wp_to->w_farsi = wp_from->w_farsi;
9308 # endif
9309 # endif
9311 #endif
9314 * Copy the options from one winopt_T to another.
9315 * Doesn't free the old option values in "to", use clear_winopt() for that.
9316 * The 'scroll' option is not copied, because it depends on the window height.
9317 * The 'previewwindow' option is reset, there can be only one preview window.
9319 void
9320 copy_winopt(from, to)
9321 winopt_T *from;
9322 winopt_T *to;
9324 #ifdef FEAT_ARABIC
9325 to->wo_arab = from->wo_arab;
9326 #endif
9327 to->wo_list = from->wo_list;
9328 to->wo_nu = from->wo_nu;
9329 #ifdef FEAT_LINEBREAK
9330 to->wo_nuw = from->wo_nuw;
9331 #endif
9332 #ifdef FEAT_RIGHTLEFT
9333 to->wo_rl = from->wo_rl;
9334 to->wo_rlc = vim_strsave(from->wo_rlc);
9335 #endif
9336 #ifdef FEAT_STL_OPT
9337 to->wo_stl = vim_strsave(from->wo_stl);
9338 #endif
9339 to->wo_wrap = from->wo_wrap;
9340 #ifdef FEAT_LINEBREAK
9341 to->wo_lbr = from->wo_lbr;
9342 #endif
9343 #ifdef FEAT_SCROLLBIND
9344 to->wo_scb = from->wo_scb;
9345 #endif
9346 #ifdef FEAT_SPELL
9347 to->wo_spell = from->wo_spell;
9348 #endif
9349 #ifdef FEAT_SYN_HL
9350 to->wo_cuc = from->wo_cuc;
9351 to->wo_cul = from->wo_cul;
9352 #endif
9353 #ifdef FEAT_DIFF
9354 to->wo_diff = from->wo_diff;
9355 #endif
9356 #ifdef FEAT_FOLDING
9357 to->wo_fdc = from->wo_fdc;
9358 to->wo_fen = from->wo_fen;
9359 to->wo_fdi = vim_strsave(from->wo_fdi);
9360 to->wo_fml = from->wo_fml;
9361 to->wo_fdl = from->wo_fdl;
9362 to->wo_fdm = vim_strsave(from->wo_fdm);
9363 to->wo_fdn = from->wo_fdn;
9364 # ifdef FEAT_EVAL
9365 to->wo_fde = vim_strsave(from->wo_fde);
9366 to->wo_fdt = vim_strsave(from->wo_fdt);
9367 # endif
9368 to->wo_fmr = vim_strsave(from->wo_fmr);
9369 #endif
9370 check_winopt(to); /* don't want NULL pointers */
9374 * Check string options in a window for a NULL value.
9376 void
9377 check_win_options(win)
9378 win_T *win;
9380 check_winopt(&win->w_onebuf_opt);
9381 check_winopt(&win->w_allbuf_opt);
9385 * Check for NULL pointers in a winopt_T and replace them with empty_option.
9387 /*ARGSUSED*/
9388 void
9389 check_winopt(wop)
9390 winopt_T *wop;
9392 #ifdef FEAT_FOLDING
9393 check_string_option(&wop->wo_fdi);
9394 check_string_option(&wop->wo_fdm);
9395 # ifdef FEAT_EVAL
9396 check_string_option(&wop->wo_fde);
9397 check_string_option(&wop->wo_fdt);
9398 # endif
9399 check_string_option(&wop->wo_fmr);
9400 #endif
9401 #ifdef FEAT_RIGHTLEFT
9402 check_string_option(&wop->wo_rlc);
9403 #endif
9404 #ifdef FEAT_STL_OPT
9405 check_string_option(&wop->wo_stl);
9406 #endif
9410 * Free the allocated memory inside a winopt_T.
9412 /*ARGSUSED*/
9413 void
9414 clear_winopt(wop)
9415 winopt_T *wop;
9417 #ifdef FEAT_FOLDING
9418 clear_string_option(&wop->wo_fdi);
9419 clear_string_option(&wop->wo_fdm);
9420 # ifdef FEAT_EVAL
9421 clear_string_option(&wop->wo_fde);
9422 clear_string_option(&wop->wo_fdt);
9423 # endif
9424 clear_string_option(&wop->wo_fmr);
9425 #endif
9426 #ifdef FEAT_RIGHTLEFT
9427 clear_string_option(&wop->wo_rlc);
9428 #endif
9429 #ifdef FEAT_STL_OPT
9430 clear_string_option(&wop->wo_stl);
9431 #endif
9435 * Copy global option values to local options for one buffer.
9436 * Used when creating a new buffer and sometimes when entering a buffer.
9437 * flags:
9438 * BCO_ENTER We will enter the buf buffer.
9439 * BCO_ALWAYS Always copy the options, but only set b_p_initialized when
9440 * appropriate.
9441 * BCO_NOHELP Don't copy the values to a help buffer.
9443 void
9444 buf_copy_options(buf, flags)
9445 buf_T *buf;
9446 int flags;
9448 int should_copy = TRUE;
9449 char_u *save_p_isk = NULL; /* init for GCC */
9450 int dont_do_help;
9451 int did_isk = FALSE;
9454 * Don't do anything of the buffer is invalid.
9456 if (buf == NULL || !buf_valid(buf))
9457 return;
9460 * Skip this when the option defaults have not been set yet. Happens when
9461 * main() allocates the first buffer.
9463 if (p_cpo != NULL)
9466 * Always copy when entering and 'cpo' contains 'S'.
9467 * Don't copy when already initialized.
9468 * Don't copy when 'cpo' contains 's' and not entering.
9469 * 'S' BCO_ENTER initialized 's' should_copy
9470 * yes yes X X TRUE
9471 * yes no yes X FALSE
9472 * no X yes X FALSE
9473 * X no no yes FALSE
9474 * X no no no TRUE
9475 * no yes no X TRUE
9477 if ((vim_strchr(p_cpo, CPO_BUFOPTGLOB) == NULL || !(flags & BCO_ENTER))
9478 && (buf->b_p_initialized
9479 || (!(flags & BCO_ENTER)
9480 && vim_strchr(p_cpo, CPO_BUFOPT) != NULL)))
9481 should_copy = FALSE;
9483 if (should_copy || (flags & BCO_ALWAYS))
9485 /* Don't copy the options specific to a help buffer when
9486 * BCO_NOHELP is given or the options were initialized already
9487 * (jumping back to a help file with CTRL-T or CTRL-O) */
9488 dont_do_help = ((flags & BCO_NOHELP) && buf->b_help)
9489 || buf->b_p_initialized;
9490 if (dont_do_help) /* don't free b_p_isk */
9492 save_p_isk = buf->b_p_isk;
9493 buf->b_p_isk = NULL;
9496 * Always free the allocated strings.
9497 * If not already initialized, set 'readonly' and copy 'fileformat'.
9499 if (!buf->b_p_initialized)
9501 free_buf_options(buf, TRUE);
9502 buf->b_p_ro = FALSE; /* don't copy readonly */
9503 buf->b_p_tx = p_tx;
9504 #ifdef FEAT_MBYTE
9505 buf->b_p_fenc = vim_strsave(p_fenc);
9506 #endif
9507 buf->b_p_ff = vim_strsave(p_ff);
9508 #if defined(FEAT_QUICKFIX)
9509 buf->b_p_bh = empty_option;
9510 buf->b_p_bt = empty_option;
9511 #endif
9513 else
9514 free_buf_options(buf, FALSE);
9516 buf->b_p_ai = p_ai;
9517 buf->b_p_ai_nopaste = p_ai_nopaste;
9518 buf->b_p_sw = p_sw;
9519 buf->b_p_tw = p_tw;
9520 buf->b_p_tw_nopaste = p_tw_nopaste;
9521 buf->b_p_tw_nobin = p_tw_nobin;
9522 buf->b_p_wm = p_wm;
9523 buf->b_p_wm_nopaste = p_wm_nopaste;
9524 buf->b_p_wm_nobin = p_wm_nobin;
9525 buf->b_p_bin = p_bin;
9526 #ifdef FEAT_MBYTE
9527 buf->b_p_bomb = p_bomb;
9528 #endif
9529 buf->b_p_et = p_et;
9530 buf->b_p_et_nobin = p_et_nobin;
9531 buf->b_p_ml = p_ml;
9532 buf->b_p_ml_nobin = p_ml_nobin;
9533 buf->b_p_inf = p_inf;
9534 buf->b_p_swf = p_swf;
9535 #ifdef FEAT_INS_EXPAND
9536 buf->b_p_cpt = vim_strsave(p_cpt);
9537 #endif
9538 #ifdef FEAT_COMPL_FUNC
9539 buf->b_p_cfu = vim_strsave(p_cfu);
9540 buf->b_p_ofu = vim_strsave(p_ofu);
9541 #endif
9542 buf->b_p_sts = p_sts;
9543 buf->b_p_sts_nopaste = p_sts_nopaste;
9544 #ifndef SHORT_FNAME
9545 buf->b_p_sn = p_sn;
9546 #endif
9547 #ifdef FEAT_COMMENTS
9548 buf->b_p_com = vim_strsave(p_com);
9549 #endif
9550 #ifdef FEAT_FOLDING
9551 buf->b_p_cms = vim_strsave(p_cms);
9552 #endif
9553 buf->b_p_fo = vim_strsave(p_fo);
9554 buf->b_p_flp = vim_strsave(p_flp);
9555 buf->b_p_nf = vim_strsave(p_nf);
9556 buf->b_p_mps = vim_strsave(p_mps);
9557 #ifdef FEAT_SMARTINDENT
9558 buf->b_p_si = p_si;
9559 #endif
9560 buf->b_p_ci = p_ci;
9561 #ifdef FEAT_CINDENT
9562 buf->b_p_cin = p_cin;
9563 buf->b_p_cink = vim_strsave(p_cink);
9564 buf->b_p_cino = vim_strsave(p_cino);
9565 #endif
9566 #ifdef FEAT_AUTOCMD
9567 /* Don't copy 'filetype', it must be detected */
9568 buf->b_p_ft = empty_option;
9569 #endif
9570 #ifdef FEAT_OSFILETYPE
9571 buf->b_p_oft = vim_strsave(p_oft);
9572 #endif
9573 buf->b_p_pi = p_pi;
9574 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
9575 buf->b_p_cinw = vim_strsave(p_cinw);
9576 #endif
9577 #ifdef FEAT_LISP
9578 buf->b_p_lisp = p_lisp;
9579 #endif
9580 #ifdef FEAT_SYN_HL
9581 /* Don't copy 'syntax', it must be set */
9582 buf->b_p_syn = empty_option;
9583 buf->b_p_smc = p_smc;
9584 #endif
9585 #ifdef FEAT_SPELL
9586 buf->b_p_spc = vim_strsave(p_spc);
9587 (void)compile_cap_prog(buf);
9588 buf->b_p_spf = vim_strsave(p_spf);
9589 buf->b_p_spl = vim_strsave(p_spl);
9590 #endif
9591 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
9592 buf->b_p_inde = vim_strsave(p_inde);
9593 buf->b_p_indk = vim_strsave(p_indk);
9594 #endif
9595 #if defined(FEAT_EVAL)
9596 buf->b_p_fex = vim_strsave(p_fex);
9597 #endif
9598 #ifdef FEAT_CRYPT
9599 buf->b_p_key = vim_strsave(p_key);
9600 #endif
9601 #ifdef FEAT_SEARCHPATH
9602 buf->b_p_sua = vim_strsave(p_sua);
9603 #endif
9604 #ifdef FEAT_KEYMAP
9605 buf->b_p_keymap = vim_strsave(p_keymap);
9606 buf->b_kmap_state |= KEYMAP_INIT;
9607 #endif
9608 /* This isn't really an option, but copying the langmap and IME
9609 * state from the current buffer is better than resetting it. */
9610 buf->b_p_iminsert = p_iminsert;
9611 buf->b_p_imsearch = p_imsearch;
9613 /* options that are normally global but also have a local value
9614 * are not copied, start using the global value */
9615 buf->b_p_ar = -1;
9616 #ifdef FEAT_QUICKFIX
9617 buf->b_p_gp = empty_option;
9618 buf->b_p_mp = empty_option;
9619 buf->b_p_efm = empty_option;
9620 #endif
9621 buf->b_p_ep = empty_option;
9622 buf->b_p_kp = empty_option;
9623 buf->b_p_path = empty_option;
9624 buf->b_p_tags = empty_option;
9625 #ifdef FEAT_FIND_ID
9626 buf->b_p_def = empty_option;
9627 buf->b_p_inc = empty_option;
9628 # ifdef FEAT_EVAL
9629 buf->b_p_inex = vim_strsave(p_inex);
9630 # endif
9631 #endif
9632 #ifdef FEAT_INS_EXPAND
9633 buf->b_p_dict = empty_option;
9634 buf->b_p_tsr = empty_option;
9635 #endif
9636 #ifdef FEAT_TEXTOBJ
9637 buf->b_p_qe = vim_strsave(p_qe);
9638 #endif
9639 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9640 buf->b_p_bexpr = empty_option;
9641 #endif
9644 * Don't copy the options set by ex_help(), use the saved values,
9645 * when going from a help buffer to a non-help buffer.
9646 * Don't touch these at all when BCO_NOHELP is used and going from
9647 * or to a help buffer.
9649 if (dont_do_help)
9650 buf->b_p_isk = save_p_isk;
9651 else
9653 buf->b_p_isk = vim_strsave(p_isk);
9654 did_isk = TRUE;
9655 buf->b_p_ts = p_ts;
9656 buf->b_help = FALSE;
9657 #ifdef FEAT_QUICKFIX
9658 if (buf->b_p_bt[0] == 'h')
9659 clear_string_option(&buf->b_p_bt);
9660 #endif
9661 buf->b_p_ma = p_ma;
9666 * When the options should be copied (ignoring BCO_ALWAYS), set the
9667 * flag that indicates that the options have been initialized.
9669 if (should_copy)
9670 buf->b_p_initialized = TRUE;
9673 check_buf_options(buf); /* make sure we don't have NULLs */
9674 if (did_isk)
9675 (void)buf_init_chartab(buf, FALSE);
9679 * Reset the 'modifiable' option and its default value.
9681 void
9682 reset_modifiable()
9684 int opt_idx;
9686 curbuf->b_p_ma = FALSE;
9687 p_ma = FALSE;
9688 opt_idx = findoption((char_u *)"ma");
9689 if (opt_idx >= 0)
9690 options[opt_idx].def_val[VI_DEFAULT] = FALSE;
9694 * Set the global value for 'iminsert' to the local value.
9696 void
9697 set_iminsert_global()
9699 p_iminsert = curbuf->b_p_iminsert;
9703 * Set the global value for 'imsearch' to the local value.
9705 void
9706 set_imsearch_global()
9708 p_imsearch = curbuf->b_p_imsearch;
9711 #if defined(FEAT_CMDL_COMPL) || defined(PROTO)
9712 static int expand_option_idx = -1;
9713 static char_u expand_option_name[5] = {'t', '_', NUL, NUL, NUL};
9714 static int expand_option_flags = 0;
9716 void
9717 set_context_in_set_cmd(xp, arg, opt_flags)
9718 expand_T *xp;
9719 char_u *arg;
9720 int opt_flags; /* OPT_GLOBAL and/or OPT_LOCAL */
9722 int nextchar;
9723 long_u flags = 0; /* init for GCC */
9724 int opt_idx = 0; /* init for GCC */
9725 char_u *p;
9726 char_u *s;
9727 int is_term_option = FALSE;
9728 int key;
9730 expand_option_flags = opt_flags;
9732 xp->xp_context = EXPAND_SETTINGS;
9733 if (*arg == NUL)
9735 xp->xp_pattern = arg;
9736 return;
9738 p = arg + STRLEN(arg) - 1;
9739 if (*p == ' ' && *(p - 1) != '\\')
9741 xp->xp_pattern = p + 1;
9742 return;
9744 while (p > arg)
9746 s = p;
9747 /* count number of backslashes before ' ' or ',' */
9748 if (*p == ' ' || *p == ',')
9750 while (s > arg && *(s - 1) == '\\')
9751 --s;
9753 /* break at a space with an even number of backslashes */
9754 if (*p == ' ' && ((p - s) & 1) == 0)
9756 ++p;
9757 break;
9759 --p;
9761 if (STRNCMP(p, "no", 2) == 0)
9763 xp->xp_context = EXPAND_BOOL_SETTINGS;
9764 p += 2;
9766 if (STRNCMP(p, "inv", 3) == 0)
9768 xp->xp_context = EXPAND_BOOL_SETTINGS;
9769 p += 3;
9771 xp->xp_pattern = arg = p;
9772 if (*arg == '<')
9774 while (*p != '>')
9775 if (*p++ == NUL) /* expand terminal option name */
9776 return;
9777 key = get_special_key_code(arg + 1);
9778 if (key == 0) /* unknown name */
9780 xp->xp_context = EXPAND_NOTHING;
9781 return;
9783 nextchar = *++p;
9784 is_term_option = TRUE;
9785 expand_option_name[2] = KEY2TERMCAP0(key);
9786 expand_option_name[3] = KEY2TERMCAP1(key);
9788 else
9790 if (p[0] == 't' && p[1] == '_')
9792 p += 2;
9793 if (*p != NUL)
9794 ++p;
9795 if (*p == NUL)
9796 return; /* expand option name */
9797 nextchar = *++p;
9798 is_term_option = TRUE;
9799 expand_option_name[2] = p[-2];
9800 expand_option_name[3] = p[-1];
9802 else
9804 /* Allow * wildcard */
9805 while (ASCII_ISALNUM(*p) || *p == '_' || *p == '*')
9806 p++;
9807 if (*p == NUL)
9808 return;
9809 nextchar = *p;
9810 *p = NUL;
9811 opt_idx = findoption(arg);
9812 *p = nextchar;
9813 if (opt_idx == -1 || options[opt_idx].var == NULL)
9815 xp->xp_context = EXPAND_NOTHING;
9816 return;
9818 flags = options[opt_idx].flags;
9819 if (flags & P_BOOL)
9821 xp->xp_context = EXPAND_NOTHING;
9822 return;
9826 /* handle "-=" and "+=" */
9827 if ((nextchar == '-' || nextchar == '+' || nextchar == '^') && p[1] == '=')
9829 ++p;
9830 nextchar = '=';
9832 if ((nextchar != '=' && nextchar != ':')
9833 || xp->xp_context == EXPAND_BOOL_SETTINGS)
9835 xp->xp_context = EXPAND_UNSUCCESSFUL;
9836 return;
9838 if (xp->xp_context != EXPAND_BOOL_SETTINGS && p[1] == NUL)
9840 xp->xp_context = EXPAND_OLD_SETTING;
9841 if (is_term_option)
9842 expand_option_idx = -1;
9843 else
9844 expand_option_idx = opt_idx;
9845 xp->xp_pattern = p + 1;
9846 return;
9848 xp->xp_context = EXPAND_NOTHING;
9849 if (is_term_option || (flags & P_NUM))
9850 return;
9852 xp->xp_pattern = p + 1;
9854 if (flags & P_EXPAND)
9856 p = options[opt_idx].var;
9857 if (p == (char_u *)&p_bdir
9858 || p == (char_u *)&p_dir
9859 || p == (char_u *)&p_path
9860 || p == (char_u *)&p_rtp
9861 #ifdef FEAT_SEARCHPATH
9862 || p == (char_u *)&p_cdpath
9863 #endif
9864 #ifdef FEAT_SESSION
9865 || p == (char_u *)&p_vdir
9866 #endif
9869 xp->xp_context = EXPAND_DIRECTORIES;
9870 if (p == (char_u *)&p_path
9871 #ifdef FEAT_SEARCHPATH
9872 || p == (char_u *)&p_cdpath
9873 #endif
9875 xp->xp_backslash = XP_BS_THREE;
9876 else
9877 xp->xp_backslash = XP_BS_ONE;
9879 else
9881 xp->xp_context = EXPAND_FILES;
9882 /* for 'tags' need three backslashes for a space */
9883 if (p == (char_u *)&p_tags)
9884 xp->xp_backslash = XP_BS_THREE;
9885 else
9886 xp->xp_backslash = XP_BS_ONE;
9890 /* For an option that is a list of file names, find the start of the
9891 * last file name. */
9892 for (p = arg + STRLEN(arg) - 1; p > xp->xp_pattern; --p)
9894 /* count number of backslashes before ' ' or ',' */
9895 if (*p == ' ' || *p == ',')
9897 s = p;
9898 while (s > xp->xp_pattern && *(s - 1) == '\\')
9899 --s;
9900 if ((*p == ' ' && (xp->xp_backslash == XP_BS_THREE && (p - s) < 3))
9901 || (*p == ',' && (flags & P_COMMA) && ((p - s) & 1) == 0))
9903 xp->xp_pattern = p + 1;
9904 break;
9908 #ifdef FEAT_SPELL
9909 /* for 'spellsuggest' start at "file:" */
9910 if (options[opt_idx].var == (char_u *)&p_sps
9911 && STRNCMP(p, "file:", 5) == 0)
9913 xp->xp_pattern = p + 5;
9914 break;
9916 #endif
9919 return;
9923 ExpandSettings(xp, regmatch, num_file, file)
9924 expand_T *xp;
9925 regmatch_T *regmatch;
9926 int *num_file;
9927 char_u ***file;
9929 int num_normal = 0; /* Nr of matching non-term-code settings */
9930 int num_term = 0; /* Nr of matching terminal code settings */
9931 int opt_idx;
9932 int match;
9933 int count = 0;
9934 char_u *str;
9935 int loop;
9936 int is_term_opt;
9937 char_u name_buf[MAX_KEY_NAME_LEN];
9938 static char *(names[]) = {"all", "termcap"};
9939 int ic = regmatch->rm_ic; /* remember the ignore-case flag */
9941 /* do this loop twice:
9942 * loop == 0: count the number of matching options
9943 * loop == 1: copy the matching options into allocated memory
9945 for (loop = 0; loop <= 1; ++loop)
9947 regmatch->rm_ic = ic;
9948 if (xp->xp_context != EXPAND_BOOL_SETTINGS)
9950 for (match = 0; match < sizeof(names) / sizeof(char *); ++match)
9951 if (vim_regexec(regmatch, (char_u *)names[match], (colnr_T)0))
9953 if (loop == 0)
9954 num_normal++;
9955 else
9956 (*file)[count++] = vim_strsave((char_u *)names[match]);
9959 for (opt_idx = 0; (str = (char_u *)options[opt_idx].fullname) != NULL;
9960 opt_idx++)
9962 if (options[opt_idx].var == NULL)
9963 continue;
9964 if (xp->xp_context == EXPAND_BOOL_SETTINGS
9965 && !(options[opt_idx].flags & P_BOOL))
9966 continue;
9967 is_term_opt = istermoption(&options[opt_idx]);
9968 if (is_term_opt && num_normal > 0)
9969 continue;
9970 match = FALSE;
9971 if (vim_regexec(regmatch, str, (colnr_T)0)
9972 || (options[opt_idx].shortname != NULL
9973 && vim_regexec(regmatch,
9974 (char_u *)options[opt_idx].shortname, (colnr_T)0)))
9975 match = TRUE;
9976 else if (is_term_opt)
9978 name_buf[0] = '<';
9979 name_buf[1] = 't';
9980 name_buf[2] = '_';
9981 name_buf[3] = str[2];
9982 name_buf[4] = str[3];
9983 name_buf[5] = '>';
9984 name_buf[6] = NUL;
9985 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
9987 match = TRUE;
9988 str = name_buf;
9991 if (match)
9993 if (loop == 0)
9995 if (is_term_opt)
9996 num_term++;
9997 else
9998 num_normal++;
10000 else
10001 (*file)[count++] = vim_strsave(str);
10005 * Check terminal key codes, these are not in the option table
10007 if (xp->xp_context != EXPAND_BOOL_SETTINGS && num_normal == 0)
10009 for (opt_idx = 0; (str = get_termcode(opt_idx)) != NULL; opt_idx++)
10011 if (!isprint(str[0]) || !isprint(str[1]))
10012 continue;
10014 name_buf[0] = 't';
10015 name_buf[1] = '_';
10016 name_buf[2] = str[0];
10017 name_buf[3] = str[1];
10018 name_buf[4] = NUL;
10020 match = FALSE;
10021 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10022 match = TRUE;
10023 else
10025 name_buf[0] = '<';
10026 name_buf[1] = 't';
10027 name_buf[2] = '_';
10028 name_buf[3] = str[0];
10029 name_buf[4] = str[1];
10030 name_buf[5] = '>';
10031 name_buf[6] = NUL;
10033 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10034 match = TRUE;
10036 if (match)
10038 if (loop == 0)
10039 num_term++;
10040 else
10041 (*file)[count++] = vim_strsave(name_buf);
10046 * Check special key names.
10048 regmatch->rm_ic = TRUE; /* ignore case here */
10049 for (opt_idx = 0; (str = get_key_name(opt_idx)) != NULL; opt_idx++)
10051 name_buf[0] = '<';
10052 STRCPY(name_buf + 1, str);
10053 STRCAT(name_buf, ">");
10055 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10057 if (loop == 0)
10058 num_term++;
10059 else
10060 (*file)[count++] = vim_strsave(name_buf);
10064 if (loop == 0)
10066 if (num_normal > 0)
10067 *num_file = num_normal;
10068 else if (num_term > 0)
10069 *num_file = num_term;
10070 else
10071 return OK;
10072 *file = (char_u **)alloc((unsigned)(*num_file * sizeof(char_u *)));
10073 if (*file == NULL)
10075 *file = (char_u **)"";
10076 return FAIL;
10080 return OK;
10084 ExpandOldSetting(num_file, file)
10085 int *num_file;
10086 char_u ***file;
10088 char_u *var = NULL; /* init for GCC */
10089 char_u *buf;
10091 *num_file = 0;
10092 *file = (char_u **)alloc((unsigned)sizeof(char_u *));
10093 if (*file == NULL)
10094 return FAIL;
10097 * For a terminal key code expand_option_idx is < 0.
10099 if (expand_option_idx < 0)
10101 var = find_termcode(expand_option_name + 2);
10102 if (var == NULL)
10103 expand_option_idx = findoption(expand_option_name);
10106 if (expand_option_idx >= 0)
10108 /* put string of option value in NameBuff */
10109 option_value2string(&options[expand_option_idx], expand_option_flags);
10110 var = NameBuff;
10112 else if (var == NULL)
10113 var = (char_u *)"";
10115 /* A backslash is required before some characters. This is the reverse of
10116 * what happens in do_set(). */
10117 buf = vim_strsave_escaped(var, escape_chars);
10119 if (buf == NULL)
10121 vim_free(*file);
10122 *file = NULL;
10123 return FAIL;
10126 #ifdef BACKSLASH_IN_FILENAME
10127 /* For MS-Windows et al. we don't double backslashes at the start and
10128 * before a file name character. */
10129 for (var = buf; *var != NUL; mb_ptr_adv(var))
10130 if (var[0] == '\\' && var[1] == '\\'
10131 && expand_option_idx >= 0
10132 && (options[expand_option_idx].flags & P_EXPAND)
10133 && vim_isfilec(var[2])
10134 && (var[2] != '\\' || (var == buf && var[4] != '\\')))
10135 mch_memmove(var, var + 1, STRLEN(var));
10136 #endif
10138 *file[0] = buf;
10139 *num_file = 1;
10140 return OK;
10142 #endif
10145 * Get the value for the numeric or string option *opp in a nice format into
10146 * NameBuff[]. Must not be called with a hidden option!
10148 static void
10149 option_value2string(opp, opt_flags)
10150 struct vimoption *opp;
10151 int opt_flags; /* OPT_GLOBAL and/or OPT_LOCAL */
10153 char_u *varp;
10155 varp = get_varp_scope(opp, opt_flags);
10157 if (opp->flags & P_NUM)
10159 long wc = 0;
10161 if (wc_use_keyname(varp, &wc))
10162 STRCPY(NameBuff, get_special_key_name((int)wc, 0));
10163 else if (wc != 0)
10164 STRCPY(NameBuff, transchar((int)wc));
10165 else
10166 sprintf((char *)NameBuff, "%ld", *(long *)varp);
10168 else /* P_STRING */
10170 varp = *(char_u **)(varp);
10171 if (varp == NULL) /* just in case */
10172 NameBuff[0] = NUL;
10173 #ifdef FEAT_CRYPT
10174 /* don't show the actual value of 'key', only that it's set */
10175 else if (opp->var == (char_u *)&p_key && *varp)
10176 STRCPY(NameBuff, "*****");
10177 #endif
10178 else if (opp->flags & P_EXPAND)
10179 home_replace(NULL, varp, NameBuff, MAXPATHL, FALSE);
10180 /* Translate 'pastetoggle' into special key names */
10181 else if ((char_u **)opp->var == &p_pt)
10182 str2specialbuf(p_pt, NameBuff, MAXPATHL);
10183 else
10184 vim_strncpy(NameBuff, varp, MAXPATHL - 1);
10189 * Return TRUE if "varp" points to 'wildchar' or 'wildcharm' and it can be
10190 * printed as a keyname.
10191 * "*wcp" is set to the value of the option if it's 'wildchar' or 'wildcharm'.
10193 static int
10194 wc_use_keyname(varp, wcp)
10195 char_u *varp;
10196 long *wcp;
10198 if (((long *)varp == &p_wc) || ((long *)varp == &p_wcm))
10200 *wcp = *(long *)varp;
10201 if (IS_SPECIAL(*wcp) || find_special_key_in_table((int)*wcp) >= 0)
10202 return TRUE;
10204 return FALSE;
10207 #ifdef FEAT_LANGMAP
10209 * Any character has an equivalent character. This is used for keyboards that
10210 * have a special language mode that sends characters above 128 (although
10211 * other characters can be translated too).
10215 * char_u langmap_mapchar[256];
10216 * Normally maps each of the 128 upper chars to an <128 ascii char; used to
10217 * "translate" native lang chars in normal mode or some cases of
10218 * insert mode without having to tediously switch lang mode back&forth.
10221 static void
10222 langmap_init()
10224 int i;
10226 for (i = 0; i < 256; i++) /* we init with a-one-to one map */
10227 langmap_mapchar[i] = i;
10231 * Called when langmap option is set; the language map can be
10232 * changed at any time!
10234 static void
10235 langmap_set()
10237 char_u *p;
10238 char_u *p2;
10239 int from, to;
10241 langmap_init(); /* back to one-to-one map first */
10243 for (p = p_langmap; p[0] != NUL; )
10245 for (p2 = p; p2[0] != NUL && p2[0] != ',' && p2[0] != ';';
10246 mb_ptr_adv(p2))
10248 if (p2[0] == '\\' && p2[1] != NUL)
10249 ++p2;
10251 if (p2[0] == ';')
10252 ++p2; /* abcd;ABCD form, p2 points to A */
10253 else
10254 p2 = NULL; /* aAbBcCdD form, p2 is NULL */
10255 while (p[0])
10257 if (p[0] == '\\' && p[1] != NUL)
10258 ++p;
10259 #ifdef FEAT_MBYTE
10260 from = (*mb_ptr2char)(p);
10261 #else
10262 from = p[0];
10263 #endif
10264 if (p2 == NULL)
10266 mb_ptr_adv(p);
10267 if (p[0] == '\\')
10268 ++p;
10269 #ifdef FEAT_MBYTE
10270 to = (*mb_ptr2char)(p);
10271 #else
10272 to = p[0];
10273 #endif
10275 else
10277 if (p2[0] == '\\')
10278 ++p2;
10279 #ifdef FEAT_MBYTE
10280 to = (*mb_ptr2char)(p2);
10281 #else
10282 to = p2[0];
10283 #endif
10285 if (to == NUL)
10287 EMSG2(_("E357: 'langmap': Matching character missing for %s"),
10288 transchar(from));
10289 return;
10291 langmap_mapchar[from & 255] = to;
10293 /* Advance to next pair */
10294 mb_ptr_adv(p);
10295 if (p2 == NULL)
10297 if (p[0] == ',')
10299 ++p;
10300 break;
10303 else
10305 mb_ptr_adv(p2);
10306 if (*p == ';')
10308 p = p2;
10309 if (p[0] != NUL)
10311 if (p[0] != ',')
10313 EMSG2(_("E358: 'langmap': Extra characters after semicolon: %s"), p);
10314 return;
10316 ++p;
10318 break;
10324 #endif
10327 * Return TRUE if format option 'x' is in effect.
10328 * Take care of no formatting when 'paste' is set.
10331 has_format_option(x)
10332 int x;
10334 if (p_paste)
10335 return FALSE;
10336 return (vim_strchr(curbuf->b_p_fo, x) != NULL);
10340 * Return TRUE if "x" is present in 'shortmess' option, or
10341 * 'shortmess' contains 'a' and "x" is present in SHM_A.
10344 shortmess(x)
10345 int x;
10347 return ( vim_strchr(p_shm, x) != NULL
10348 || (vim_strchr(p_shm, 'a') != NULL
10349 && vim_strchr((char_u *)SHM_A, x) != NULL));
10353 * paste_option_changed() - Called after p_paste was set or reset.
10355 static void
10356 paste_option_changed()
10358 static int old_p_paste = FALSE;
10359 static int save_sm = 0;
10360 #ifdef FEAT_CMDL_INFO
10361 static int save_ru = 0;
10362 #endif
10363 #ifdef FEAT_RIGHTLEFT
10364 static int save_ri = 0;
10365 static int save_hkmap = 0;
10366 #endif
10367 buf_T *buf;
10369 if (p_paste)
10372 * Paste switched from off to on.
10373 * Save the current values, so they can be restored later.
10375 if (!old_p_paste)
10377 /* save options for each buffer */
10378 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10380 buf->b_p_tw_nopaste = buf->b_p_tw;
10381 buf->b_p_wm_nopaste = buf->b_p_wm;
10382 buf->b_p_sts_nopaste = buf->b_p_sts;
10383 buf->b_p_ai_nopaste = buf->b_p_ai;
10386 /* save global options */
10387 save_sm = p_sm;
10388 #ifdef FEAT_CMDL_INFO
10389 save_ru = p_ru;
10390 #endif
10391 #ifdef FEAT_RIGHTLEFT
10392 save_ri = p_ri;
10393 save_hkmap = p_hkmap;
10394 #endif
10395 /* save global values for local buffer options */
10396 p_tw_nopaste = p_tw;
10397 p_wm_nopaste = p_wm;
10398 p_sts_nopaste = p_sts;
10399 p_ai_nopaste = p_ai;
10403 * Always set the option values, also when 'paste' is set when it is
10404 * already on.
10406 /* set options for each buffer */
10407 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10409 buf->b_p_tw = 0; /* textwidth is 0 */
10410 buf->b_p_wm = 0; /* wrapmargin is 0 */
10411 buf->b_p_sts = 0; /* softtabstop is 0 */
10412 buf->b_p_ai = 0; /* no auto-indent */
10415 /* set global options */
10416 p_sm = 0; /* no showmatch */
10417 #ifdef FEAT_CMDL_INFO
10418 # ifdef FEAT_WINDOWS
10419 if (p_ru)
10420 status_redraw_all(); /* redraw to remove the ruler */
10421 # endif
10422 p_ru = 0; /* no ruler */
10423 #endif
10424 #ifdef FEAT_RIGHTLEFT
10425 p_ri = 0; /* no reverse insert */
10426 p_hkmap = 0; /* no Hebrew keyboard */
10427 #endif
10428 /* set global values for local buffer options */
10429 p_tw = 0;
10430 p_wm = 0;
10431 p_sts = 0;
10432 p_ai = 0;
10436 * Paste switched from on to off: Restore saved values.
10438 else if (old_p_paste)
10440 /* restore options for each buffer */
10441 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10443 buf->b_p_tw = buf->b_p_tw_nopaste;
10444 buf->b_p_wm = buf->b_p_wm_nopaste;
10445 buf->b_p_sts = buf->b_p_sts_nopaste;
10446 buf->b_p_ai = buf->b_p_ai_nopaste;
10449 /* restore global options */
10450 p_sm = save_sm;
10451 #ifdef FEAT_CMDL_INFO
10452 # ifdef FEAT_WINDOWS
10453 if (p_ru != save_ru)
10454 status_redraw_all(); /* redraw to draw the ruler */
10455 # endif
10456 p_ru = save_ru;
10457 #endif
10458 #ifdef FEAT_RIGHTLEFT
10459 p_ri = save_ri;
10460 p_hkmap = save_hkmap;
10461 #endif
10462 /* set global values for local buffer options */
10463 p_tw = p_tw_nopaste;
10464 p_wm = p_wm_nopaste;
10465 p_sts = p_sts_nopaste;
10466 p_ai = p_ai_nopaste;
10469 old_p_paste = p_paste;
10473 * vimrc_found() - Called when a ".vimrc" or "VIMINIT" has been found.
10475 * Reset 'compatible' and set the values for options that didn't get set yet
10476 * to the Vim defaults.
10477 * Don't do this if the 'compatible' option has been set or reset before.
10478 * When "fname" is not NULL, use it to set $"envname" when it wasn't set yet.
10480 void
10481 vimrc_found(fname, envname)
10482 char_u *fname;
10483 char_u *envname;
10485 int opt_idx;
10486 int dofree = FALSE;
10487 char_u *p;
10489 if (!option_was_set((char_u *)"cp"))
10491 p_cp = FALSE;
10492 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
10493 if (!(options[opt_idx].flags & (P_WAS_SET|P_VI_DEF)))
10494 set_option_default(opt_idx, OPT_FREE, FALSE);
10495 didset_options();
10498 if (fname != NULL)
10500 p = vim_getenv(envname, &dofree);
10501 if (p == NULL)
10503 /* Set $MYVIMRC to the first vimrc file found. */
10504 p = FullName_save(fname, FALSE);
10505 if (p != NULL)
10507 vim_setenv(envname, p);
10508 vim_free(p);
10511 else if (dofree)
10512 vim_free(p);
10517 * Set 'compatible' on or off. Called for "-C" and "-N" command line arg.
10519 void
10520 change_compatible(on)
10521 int on;
10523 int opt_idx;
10525 if (p_cp != on)
10527 p_cp = on;
10528 compatible_set();
10530 opt_idx = findoption((char_u *)"cp");
10531 if (opt_idx >= 0)
10532 options[opt_idx].flags |= P_WAS_SET;
10536 * Return TRUE when option "name" has been set.
10539 option_was_set(name)
10540 char_u *name;
10542 int idx;
10544 idx = findoption(name);
10545 if (idx < 0) /* unknown option */
10546 return FALSE;
10547 if (options[idx].flags & P_WAS_SET)
10548 return TRUE;
10549 return FALSE;
10553 * compatible_set() - Called when 'compatible' has been set or unset.
10555 * When 'compatible' set: Set all relevant options (those that have the P_VIM)
10556 * flag) to a Vi compatible value.
10557 * When 'compatible' is unset: Set all options that have a different default
10558 * for Vim (without the P_VI_DEF flag) to that default.
10560 static void
10561 compatible_set()
10563 int opt_idx;
10565 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
10566 if ( ((options[opt_idx].flags & P_VIM) && p_cp)
10567 || (!(options[opt_idx].flags & P_VI_DEF) && !p_cp))
10568 set_option_default(opt_idx, OPT_FREE, p_cp);
10569 didset_options();
10572 #ifdef FEAT_LINEBREAK
10574 # if defined(__BORLANDC__) && (__BORLANDC__ < 0x500)
10575 /* Borland C++ screws up loop optimisation here (negri) */
10576 #pragma option -O-l
10577 # endif
10580 * fill_breakat_flags() -- called when 'breakat' changes value.
10582 static void
10583 fill_breakat_flags()
10585 char_u *p;
10586 int i;
10588 for (i = 0; i < 256; i++)
10589 breakat_flags[i] = FALSE;
10591 if (p_breakat != NULL)
10592 for (p = p_breakat; *p; p++)
10593 breakat_flags[*p] = TRUE;
10596 # if defined(__BORLANDC__) && (__BORLANDC__ < 0x500)
10597 #pragma option -O.l
10598 # endif
10600 #endif
10603 * Check an option that can be a range of string values.
10605 * Return OK for correct value, FAIL otherwise.
10606 * Empty is always OK.
10608 static int
10609 check_opt_strings(val, values, list)
10610 char_u *val;
10611 char **values;
10612 int list; /* when TRUE: accept a list of values */
10614 return opt_strings_flags(val, values, NULL, list);
10618 * Handle an option that can be a range of string values.
10619 * Set a flag in "*flagp" for each string present.
10621 * Return OK for correct value, FAIL otherwise.
10622 * Empty is always OK.
10624 static int
10625 opt_strings_flags(val, values, flagp, list)
10626 char_u *val; /* new value */
10627 char **values; /* array of valid string values */
10628 unsigned *flagp;
10629 int list; /* when TRUE: accept a list of values */
10631 int i;
10632 int len;
10633 unsigned new_flags = 0;
10635 while (*val)
10637 for (i = 0; ; ++i)
10639 if (values[i] == NULL) /* val not found in values[] */
10640 return FAIL;
10642 len = (int)STRLEN(values[i]);
10643 if (STRNCMP(values[i], val, len) == 0
10644 && ((list && val[len] == ',') || val[len] == NUL))
10646 val += len + (val[len] == ',');
10647 new_flags |= (1 << i);
10648 break; /* check next item in val list */
10652 if (flagp != NULL)
10653 *flagp = new_flags;
10655 return OK;
10659 * Read the 'wildmode' option, fill wim_flags[].
10661 static int
10662 check_opt_wim()
10664 char_u new_wim_flags[4];
10665 char_u *p;
10666 int i;
10667 int idx = 0;
10669 for (i = 0; i < 4; ++i)
10670 new_wim_flags[i] = 0;
10672 for (p = p_wim; *p; ++p)
10674 for (i = 0; ASCII_ISALPHA(p[i]); ++i)
10676 if (p[i] != NUL && p[i] != ',' && p[i] != ':')
10677 return FAIL;
10678 if (i == 7 && STRNCMP(p, "longest", 7) == 0)
10679 new_wim_flags[idx] |= WIM_LONGEST;
10680 else if (i == 4 && STRNCMP(p, "full", 4) == 0)
10681 new_wim_flags[idx] |= WIM_FULL;
10682 else if (i == 4 && STRNCMP(p, "list", 4) == 0)
10683 new_wim_flags[idx] |= WIM_LIST;
10684 else
10685 return FAIL;
10686 p += i;
10687 if (*p == NUL)
10688 break;
10689 if (*p == ',')
10691 if (idx == 3)
10692 return FAIL;
10693 ++idx;
10697 /* fill remaining entries with last flag */
10698 while (idx < 3)
10700 new_wim_flags[idx + 1] = new_wim_flags[idx];
10701 ++idx;
10704 /* only when there are no errors, wim_flags[] is changed */
10705 for (i = 0; i < 4; ++i)
10706 wim_flags[i] = new_wim_flags[i];
10707 return OK;
10711 * Check if backspacing over something is allowed.
10714 can_bs(what)
10715 int what; /* BS_INDENT, BS_EOL or BS_START */
10717 switch (*p_bs)
10719 case '2': return TRUE;
10720 case '1': return (what != BS_START);
10721 case '0': return FALSE;
10723 return vim_strchr(p_bs, what) != NULL;
10727 * Save the current values of 'fileformat' and 'fileencoding', so that we know
10728 * the file must be considered changed when the value is different.
10730 void
10731 save_file_ff(buf)
10732 buf_T *buf;
10734 buf->b_start_ffc = *buf->b_p_ff;
10735 buf->b_start_eol = buf->b_p_eol;
10736 #ifdef FEAT_MBYTE
10737 buf->b_start_bomb = buf->b_p_bomb;
10739 /* Only use free/alloc when necessary, they take time. */
10740 if (buf->b_start_fenc == NULL
10741 || STRCMP(buf->b_start_fenc, buf->b_p_fenc) != 0)
10743 vim_free(buf->b_start_fenc);
10744 buf->b_start_fenc = vim_strsave(buf->b_p_fenc);
10746 #endif
10750 * Return TRUE if 'fileformat' and/or 'fileencoding' has a different value
10751 * from when editing started (save_file_ff() called).
10752 * Also when 'endofline' was changed and 'binary' is set, or when 'bomb' was
10753 * changed and 'binary' is not set.
10754 * Don't consider a new, empty buffer to be changed.
10757 file_ff_differs(buf)
10758 buf_T *buf;
10760 /* In a buffer that was never loaded the options are not valid. */
10761 if (buf->b_flags & BF_NEVERLOADED)
10762 return FALSE;
10763 if ((buf->b_flags & BF_NEW)
10764 && buf->b_ml.ml_line_count == 1
10765 && *ml_get_buf(buf, (linenr_T)1, FALSE) == NUL)
10766 return FALSE;
10767 if (buf->b_start_ffc != *buf->b_p_ff)
10768 return TRUE;
10769 if (buf->b_p_bin && buf->b_start_eol != buf->b_p_eol)
10770 return TRUE;
10771 #ifdef FEAT_MBYTE
10772 if (!buf->b_p_bin && buf->b_start_bomb != buf->b_p_bomb)
10773 return TRUE;
10774 if (buf->b_start_fenc == NULL)
10775 return (*buf->b_p_fenc != NUL);
10776 return (STRCMP(buf->b_start_fenc, buf->b_p_fenc) != 0);
10777 #else
10778 return FALSE;
10779 #endif
10783 * return OK if "p" is a valid fileformat name, FAIL otherwise.
10786 check_ff_value(p)
10787 char_u *p;
10789 return check_opt_strings(p, p_ff_values, FALSE);