merge changes from upstream
[MacVim/jjgod.git] / src / option.c
blobd2d2fa5fe88d19b992eed78ada920291bf680a33
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 #if defined(FEAT_GUI) && defined(MACOS_X)
482 (char_u *)&p_antialias, PV_NONE,
483 {(char_u *)FALSE, (char_u *)FALSE}
484 #else
485 (char_u *)NULL, PV_NONE,
486 {(char_u *)FALSE, (char_u *)FALSE}
487 #endif
489 {"arabic", "arab", P_BOOL|P_VI_DEF|P_VIM,
490 #ifdef FEAT_ARABIC
491 (char_u *)VAR_WIN, PV_ARAB,
492 #else
493 (char_u *)NULL, PV_NONE,
494 #endif
495 {(char_u *)FALSE, (char_u *)0L}},
496 {"arabicshape", "arshape", P_BOOL|P_VI_DEF|P_VIM|P_RCLR,
497 #ifdef FEAT_ARABIC
498 (char_u *)&p_arshape, PV_NONE,
499 #else
500 (char_u *)NULL, PV_NONE,
501 #endif
502 {(char_u *)TRUE, (char_u *)0L}},
503 {"allowrevins", "ari", P_BOOL|P_VI_DEF|P_VIM,
504 #ifdef FEAT_RIGHTLEFT
505 (char_u *)&p_ari, PV_NONE,
506 #else
507 (char_u *)NULL, PV_NONE,
508 #endif
509 {(char_u *)FALSE, (char_u *)0L}},
510 {"altkeymap", "akm", P_BOOL|P_VI_DEF,
511 #ifdef FEAT_FKMAP
512 (char_u *)&p_altkeymap, PV_NONE,
513 #else
514 (char_u *)NULL, PV_NONE,
515 #endif
516 {(char_u *)FALSE, (char_u *)0L}},
517 {"ambiwidth", "ambw", P_STRING|P_VI_DEF|P_RCLR,
518 #if defined(FEAT_MBYTE)
519 (char_u *)&p_ambw, PV_NONE,
520 {(char_u *)"single", (char_u *)0L}
521 #else
522 (char_u *)NULL, PV_NONE,
523 {(char_u *)0L, (char_u *)0L}
524 #endif
526 #ifdef FEAT_AUTOCHDIR
527 {"autochdir", "acd", P_BOOL|P_VI_DEF,
528 (char_u *)&p_acd, PV_NONE,
529 {(char_u *)FALSE, (char_u *)0L}},
530 #endif
531 {"autoindent", "ai", P_BOOL|P_VI_DEF,
532 (char_u *)&p_ai, PV_AI,
533 {(char_u *)FALSE, (char_u *)0L}},
534 {"autoprint", "ap", P_BOOL|P_VI_DEF,
535 (char_u *)NULL, PV_NONE,
536 {(char_u *)FALSE, (char_u *)0L}},
537 {"autoread", "ar", P_BOOL|P_VI_DEF,
538 (char_u *)&p_ar, PV_AR,
539 {(char_u *)FALSE, (char_u *)0L}},
540 {"autowrite", "aw", P_BOOL|P_VI_DEF,
541 (char_u *)&p_aw, PV_NONE,
542 {(char_u *)FALSE, (char_u *)0L}},
543 {"autowriteall","awa", P_BOOL|P_VI_DEF,
544 (char_u *)&p_awa, PV_NONE,
545 {(char_u *)FALSE, (char_u *)0L}},
546 {"background", "bg", P_STRING|P_VI_DEF|P_RCLR,
547 (char_u *)&p_bg, PV_NONE,
549 #if (defined(MSDOS) || defined(OS2) || defined(WIN3264)) && !defined(FEAT_GUI)
550 (char_u *)"dark",
551 #else
552 (char_u *)"light",
553 #endif
554 (char_u *)0L}},
555 {"backspace", "bs", P_STRING|P_VI_DEF|P_VIM|P_COMMA|P_NODUP,
556 (char_u *)&p_bs, PV_NONE,
557 {(char_u *)"", (char_u *)0L}},
558 {"backup", "bk", P_BOOL|P_VI_DEF|P_VIM,
559 (char_u *)&p_bk, PV_NONE,
560 {(char_u *)FALSE, (char_u *)0L}},
561 {"backupcopy", "bkc", P_STRING|P_VIM|P_COMMA|P_NODUP,
562 (char_u *)&p_bkc, PV_NONE,
563 #ifdef UNIX
564 {(char_u *)"yes", (char_u *)"auto"}
565 #else
566 {(char_u *)"auto", (char_u *)"auto"}
567 #endif
569 {"backupdir", "bdir", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP|P_SECURE,
570 (char_u *)&p_bdir, PV_NONE,
571 {(char_u *)DFLT_BDIR, (char_u *)0L}},
572 {"backupext", "bex", P_STRING|P_VI_DEF|P_NFNAME,
573 (char_u *)&p_bex, PV_NONE,
575 #ifdef VMS
576 (char_u *)"_",
577 #else
578 (char_u *)"~",
579 #endif
580 (char_u *)0L}},
581 {"backupskip", "bsk", P_STRING|P_VI_DEF|P_COMMA,
582 #ifdef FEAT_WILDIGN
583 (char_u *)&p_bsk, PV_NONE,
584 {(char_u *)"", (char_u *)0L}
585 #else
586 (char_u *)NULL, PV_NONE,
587 {(char_u *)0L, (char_u *)0L}
588 #endif
590 #ifdef FEAT_BEVAL
591 {"balloondelay","bdlay",P_NUM|P_VI_DEF,
592 (char_u *)&p_bdlay, PV_NONE,
593 {(char_u *)600L, (char_u *)0L}},
594 {"ballooneval", "beval",P_BOOL|P_VI_DEF|P_NO_MKRC,
595 (char_u *)&p_beval, PV_NONE,
596 {(char_u *)FALSE, (char_u *)0L}},
597 # ifdef FEAT_EVAL
598 {"balloonexpr", "bexpr", P_STRING|P_ALLOCED|P_VI_DEF|P_VIM,
599 (char_u *)&p_bexpr, PV_BEXPR,
600 {(char_u *)"", (char_u *)0L}},
601 # endif
602 #endif
603 {"beautify", "bf", P_BOOL|P_VI_DEF,
604 (char_u *)NULL, PV_NONE,
605 {(char_u *)FALSE, (char_u *)0L}},
606 {"binary", "bin", P_BOOL|P_VI_DEF|P_RSTAT,
607 (char_u *)&p_bin, PV_BIN,
608 {(char_u *)FALSE, (char_u *)0L}},
609 {"bioskey", "biosk",P_BOOL|P_VI_DEF,
610 #ifdef MSDOS
611 (char_u *)&p_biosk, PV_NONE,
612 #else
613 (char_u *)NULL, PV_NONE,
614 #endif
615 {(char_u *)TRUE, (char_u *)0L}},
616 {"bomb", NULL, P_BOOL|P_NO_MKRC|P_VI_DEF|P_RSTAT,
617 #ifdef FEAT_MBYTE
618 (char_u *)&p_bomb, PV_BOMB,
619 #else
620 (char_u *)NULL, PV_NONE,
621 #endif
622 {(char_u *)FALSE, (char_u *)0L}},
623 {"breakat", "brk", P_STRING|P_VI_DEF|P_RALL|P_FLAGLIST,
624 #ifdef FEAT_LINEBREAK
625 (char_u *)&p_breakat, PV_NONE,
626 {(char_u *)" \t!@*-+;:,./?", (char_u *)0L}
627 #else
628 (char_u *)NULL, PV_NONE,
629 {(char_u *)0L, (char_u *)0L}
630 #endif
632 {"browsedir", "bsdir",P_STRING|P_VI_DEF,
633 #ifdef FEAT_BROWSE
634 (char_u *)&p_bsdir, PV_NONE,
635 {(char_u *)"last", (char_u *)0L}
636 #else
637 (char_u *)NULL, PV_NONE,
638 {(char_u *)0L, (char_u *)0L}
639 #endif
641 {"bufhidden", "bh", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB,
642 #if defined(FEAT_QUICKFIX)
643 (char_u *)&p_bh, PV_BH,
644 {(char_u *)"", (char_u *)0L}
645 #else
646 (char_u *)NULL, PV_NONE,
647 {(char_u *)0L, (char_u *)0L}
648 #endif
650 {"buflisted", "bl", P_BOOL|P_VI_DEF|P_NOGLOB,
651 (char_u *)&p_bl, PV_BL,
652 {(char_u *)1L, (char_u *)0L}
654 {"buftype", "bt", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB,
655 #if defined(FEAT_QUICKFIX)
656 (char_u *)&p_bt, PV_BT,
657 {(char_u *)"", (char_u *)0L}
658 #else
659 (char_u *)NULL, PV_NONE,
660 {(char_u *)0L, (char_u *)0L}
661 #endif
663 {"casemap", "cmp", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
664 #ifdef FEAT_MBYTE
665 (char_u *)&p_cmp, PV_NONE,
666 {(char_u *)"internal,keepascii", (char_u *)0L}
667 #else
668 (char_u *)NULL, PV_NONE,
669 {(char_u *)0L, (char_u *)0L}
670 #endif
672 {"cdpath", "cd", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
673 #ifdef FEAT_SEARCHPATH
674 (char_u *)&p_cdpath, PV_NONE,
675 {(char_u *)",,", (char_u *)0L}
676 #else
677 (char_u *)NULL, PV_NONE,
678 {(char_u *)0L, (char_u *)0L}
679 #endif
681 {"cedit", NULL, P_STRING,
682 #ifdef FEAT_CMDWIN
683 (char_u *)&p_cedit, PV_NONE,
684 {(char_u *)"", (char_u *)CTRL_F_STR}
685 #else
686 (char_u *)NULL, PV_NONE,
687 {(char_u *)0L, (char_u *)0L}
688 #endif
690 {"charconvert", "ccv", P_STRING|P_VI_DEF|P_SECURE,
691 #if defined(FEAT_MBYTE) && defined(FEAT_EVAL)
692 (char_u *)&p_ccv, PV_NONE,
693 {(char_u *)"", (char_u *)0L}
694 #else
695 (char_u *)NULL, PV_NONE,
696 {(char_u *)0L, (char_u *)0L}
697 #endif
699 {"cindent", "cin", P_BOOL|P_VI_DEF|P_VIM,
700 #ifdef FEAT_CINDENT
701 (char_u *)&p_cin, PV_CIN,
702 #else
703 (char_u *)NULL, PV_NONE,
704 #endif
705 {(char_u *)FALSE, (char_u *)0L}},
706 {"cinkeys", "cink", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
707 #ifdef FEAT_CINDENT
708 (char_u *)&p_cink, PV_CINK,
709 {(char_u *)"0{,0},0),:,0#,!^F,o,O,e", (char_u *)0L}
710 #else
711 (char_u *)NULL, PV_NONE,
712 {(char_u *)0L, (char_u *)0L}
713 #endif
715 {"cinoptions", "cino", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
716 #ifdef FEAT_CINDENT
717 (char_u *)&p_cino, PV_CINO,
718 #else
719 (char_u *)NULL, PV_NONE,
720 #endif
721 {(char_u *)"", (char_u *)0L}},
722 {"cinwords", "cinw", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
723 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
724 (char_u *)&p_cinw, PV_CINW,
725 {(char_u *)"if,else,while,do,for,switch",
726 (char_u *)0L}
727 #else
728 (char_u *)NULL, PV_NONE,
729 {(char_u *)0L, (char_u *)0L}
730 #endif
732 {"clipboard", "cb", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
733 #ifdef FEAT_CLIPBOARD
734 (char_u *)&p_cb, PV_NONE,
735 # ifdef FEAT_XCLIPBOARD
736 {(char_u *)"autoselect,exclude:cons\\|linux",
737 (char_u *)0L}
738 # else
739 {(char_u *)"", (char_u *)0L}
740 # endif
741 #else
742 (char_u *)NULL, PV_NONE,
743 {(char_u *)"", (char_u *)0L}
744 #endif
746 {"cmdheight", "ch", P_NUM|P_VI_DEF|P_RALL,
747 (char_u *)&p_ch, PV_NONE,
748 {(char_u *)1L, (char_u *)0L}},
749 {"cmdwinheight", "cwh", P_NUM|P_VI_DEF,
750 #ifdef FEAT_CMDWIN
751 (char_u *)&p_cwh, PV_NONE,
752 #else
753 (char_u *)NULL, PV_NONE,
754 #endif
755 {(char_u *)7L, (char_u *)0L}},
756 {"columns", "co", P_NUM|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RCLR,
757 (char_u *)&Columns, PV_NONE,
758 {(char_u *)80L, (char_u *)0L}},
759 {"comments", "com", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
760 #ifdef FEAT_COMMENTS
761 (char_u *)&p_com, PV_COM,
762 {(char_u *)"s1:/*,mb:*,ex:*/,://,b:#,:%,:XCOMM,n:>,fb:-",
763 (char_u *)0L}
764 #else
765 (char_u *)NULL, PV_NONE,
766 {(char_u *)0L, (char_u *)0L}
767 #endif
769 {"commentstring", "cms", P_STRING|P_ALLOCED|P_VI_DEF,
770 #ifdef FEAT_FOLDING
771 (char_u *)&p_cms, PV_CMS,
772 {(char_u *)"/*%s*/", (char_u *)0L}
773 #else
774 (char_u *)NULL, PV_NONE,
775 {(char_u *)0L, (char_u *)0L}
776 #endif
778 /* P_PRI_MKRC isn't needed here, optval_default()
779 * always returns TRUE for 'compatible' */
780 {"compatible", "cp", P_BOOL|P_RALL,
781 (char_u *)&p_cp, PV_NONE,
782 {(char_u *)TRUE, (char_u *)FALSE}},
783 {"complete", "cpt", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
784 #ifdef FEAT_INS_EXPAND
785 (char_u *)&p_cpt, PV_CPT,
786 {(char_u *)".,w,b,u,t,i", (char_u *)0L}
787 #else
788 (char_u *)NULL, PV_NONE,
789 {(char_u *)0L, (char_u *)0L}
790 #endif
792 {"completefunc", "cfu", P_STRING|P_ALLOCED|P_VI_DEF|P_SECURE,
793 #ifdef FEAT_COMPL_FUNC
794 (char_u *)&p_cfu, PV_CFU,
795 {(char_u *)"", (char_u *)0L}
796 #else
797 (char_u *)NULL, PV_NONE,
798 {(char_u *)0L, (char_u *)0L}
799 #endif
801 {"completeopt", "cot", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
802 #ifdef FEAT_INS_EXPAND
803 (char_u *)&p_cot, PV_NONE,
804 {(char_u *)"menu,preview", (char_u *)0L}
805 #else
806 (char_u *)NULL, PV_NONE,
807 {(char_u *)0L, (char_u *)0L}
808 #endif
810 {"confirm", "cf", P_BOOL|P_VI_DEF,
811 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
812 (char_u *)&p_confirm, PV_NONE,
813 #else
814 (char_u *)NULL, PV_NONE,
815 #endif
816 {(char_u *)FALSE, (char_u *)0L}},
817 {"conskey", "consk",P_BOOL|P_VI_DEF,
818 #ifdef MSDOS
819 (char_u *)&p_consk, PV_NONE,
820 #else
821 (char_u *)NULL, PV_NONE,
822 #endif
823 {(char_u *)FALSE, (char_u *)0L}},
824 {"copyindent", "ci", P_BOOL|P_VI_DEF|P_VIM,
825 (char_u *)&p_ci, PV_CI,
826 {(char_u *)FALSE, (char_u *)0L}},
827 {"cpoptions", "cpo", P_STRING|P_VIM|P_RALL|P_FLAGLIST,
828 (char_u *)&p_cpo, PV_NONE,
829 {(char_u *)CPO_VI, (char_u *)CPO_VIM}},
830 {"cscopepathcomp", "cspc", P_NUM|P_VI_DEF|P_VIM,
831 #ifdef FEAT_CSCOPE
832 (char_u *)&p_cspc, PV_NONE,
833 #else
834 (char_u *)NULL, PV_NONE,
835 #endif
836 {(char_u *)0L, (char_u *)0L}},
837 {"cscopeprg", "csprg", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
838 #ifdef FEAT_CSCOPE
839 (char_u *)&p_csprg, PV_NONE,
840 {(char_u *)"cscope", (char_u *)0L}
841 #else
842 (char_u *)NULL, PV_NONE,
843 {(char_u *)0L, (char_u *)0L}
844 #endif
846 {"cscopequickfix", "csqf", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
847 #if defined(FEAT_CSCOPE) && defined(FEAT_QUICKFIX)
848 (char_u *)&p_csqf, PV_NONE,
849 {(char_u *)"", (char_u *)0L}
850 #else
851 (char_u *)NULL, PV_NONE,
852 {(char_u *)0L, (char_u *)0L}
853 #endif
855 {"cscopetag", "cst", P_BOOL|P_VI_DEF|P_VIM,
856 #ifdef FEAT_CSCOPE
857 (char_u *)&p_cst, PV_NONE,
858 #else
859 (char_u *)NULL, PV_NONE,
860 #endif
861 {(char_u *)0L, (char_u *)0L}},
862 {"cscopetagorder", "csto", P_NUM|P_VI_DEF|P_VIM,
863 #ifdef FEAT_CSCOPE
864 (char_u *)&p_csto, PV_NONE,
865 #else
866 (char_u *)NULL, PV_NONE,
867 #endif
868 {(char_u *)0L, (char_u *)0L}},
869 {"cscopeverbose", "csverb", P_BOOL|P_VI_DEF|P_VIM,
870 #ifdef FEAT_CSCOPE
871 (char_u *)&p_csverbose, PV_NONE,
872 #else
873 (char_u *)NULL, PV_NONE,
874 #endif
875 {(char_u *)0L, (char_u *)0L}},
876 {"cursorcolumn", "cuc", P_BOOL|P_VI_DEF|P_RWIN,
877 #ifdef FEAT_SYN_HL
878 (char_u *)VAR_WIN, PV_CUC,
879 #else
880 (char_u *)NULL, PV_NONE,
881 #endif
882 {(char_u *)FALSE, (char_u *)0L}},
883 {"cursorline", "cul", P_BOOL|P_VI_DEF|P_RWIN,
884 #ifdef FEAT_SYN_HL
885 (char_u *)VAR_WIN, PV_CUL,
886 #else
887 (char_u *)NULL, PV_NONE,
888 #endif
889 {(char_u *)FALSE, (char_u *)0L}},
890 {"debug", NULL, P_STRING|P_VI_DEF,
891 (char_u *)&p_debug, PV_NONE,
892 {(char_u *)"", (char_u *)0L}},
893 {"define", "def", P_STRING|P_ALLOCED|P_VI_DEF,
894 #ifdef FEAT_FIND_ID
895 (char_u *)&p_def, PV_DEF,
896 {(char_u *)"^\\s*#\\s*define", (char_u *)0L}
897 #else
898 (char_u *)NULL, PV_NONE,
899 {(char_u *)NULL, (char_u *)0L}
900 #endif
902 {"delcombine", "deco", P_BOOL|P_VI_DEF|P_VIM,
903 #ifdef FEAT_MBYTE
904 (char_u *)&p_deco, PV_NONE,
905 #else
906 (char_u *)NULL, PV_NONE,
907 #endif
908 {(char_u *)FALSE, (char_u *)0L}},
909 {"dictionary", "dict", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
910 #ifdef FEAT_INS_EXPAND
911 (char_u *)&p_dict, PV_DICT,
912 #else
913 (char_u *)NULL, PV_NONE,
914 #endif
915 {(char_u *)"", (char_u *)0L}},
916 {"diff", NULL, P_BOOL|P_VI_DEF|P_RWIN|P_NOGLOB,
917 #ifdef FEAT_DIFF
918 (char_u *)VAR_WIN, PV_DIFF,
919 #else
920 (char_u *)NULL, PV_NONE,
921 #endif
922 {(char_u *)FALSE, (char_u *)0L}},
923 {"diffexpr", "dex", P_STRING|P_VI_DEF|P_SECURE,
924 #if defined(FEAT_DIFF) && defined(FEAT_EVAL)
925 (char_u *)&p_dex, PV_NONE,
926 {(char_u *)"", (char_u *)0L}
927 #else
928 (char_u *)NULL, PV_NONE,
929 {(char_u *)0L, (char_u *)0L}
930 #endif
932 {"diffopt", "dip", P_STRING|P_ALLOCED|P_VI_DEF|P_RWIN|P_COMMA|P_NODUP,
933 #ifdef FEAT_DIFF
934 (char_u *)&p_dip, PV_NONE,
935 {(char_u *)"filler", (char_u *)NULL}
936 #else
937 (char_u *)NULL, PV_NONE,
938 {(char_u *)"", (char_u *)NULL}
939 #endif
941 {"digraph", "dg", P_BOOL|P_VI_DEF|P_VIM,
942 #ifdef FEAT_DIGRAPHS
943 (char_u *)&p_dg, PV_NONE,
944 #else
945 (char_u *)NULL, PV_NONE,
946 #endif
947 {(char_u *)FALSE, (char_u *)0L}},
948 {"directory", "dir", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP|P_SECURE,
949 (char_u *)&p_dir, PV_NONE,
950 {(char_u *)DFLT_DIR, (char_u *)0L}},
951 {"display", "dy", P_STRING|P_VI_DEF|P_COMMA|P_RALL|P_NODUP,
952 (char_u *)&p_dy, PV_NONE,
953 {(char_u *)"", (char_u *)0L}},
954 {"eadirection", "ead", P_STRING|P_VI_DEF,
955 #ifdef FEAT_VERTSPLIT
956 (char_u *)&p_ead, PV_NONE,
957 {(char_u *)"both", (char_u *)0L}
958 #else
959 (char_u *)NULL, PV_NONE,
960 {(char_u *)NULL, (char_u *)0L}
961 #endif
963 {"edcompatible","ed", P_BOOL|P_VI_DEF,
964 (char_u *)&p_ed, PV_NONE,
965 {(char_u *)FALSE, (char_u *)0L}},
966 {"encoding", "enc", P_STRING|P_VI_DEF|P_RCLR,
967 #ifdef FEAT_MBYTE
968 (char_u *)&p_enc, PV_NONE,
969 {(char_u *)ENC_DFLT, (char_u *)0L}
970 #else
971 (char_u *)NULL, PV_NONE,
972 {(char_u *)0L, (char_u *)0L}
973 #endif
975 {"endofline", "eol", P_BOOL|P_NO_MKRC|P_VI_DEF|P_RSTAT,
976 (char_u *)&p_eol, PV_EOL,
977 {(char_u *)TRUE, (char_u *)0L}},
978 {"equalalways", "ea", P_BOOL|P_VI_DEF|P_RALL,
979 (char_u *)&p_ea, PV_NONE,
980 {(char_u *)TRUE, (char_u *)0L}},
981 {"equalprg", "ep", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
982 (char_u *)&p_ep, PV_EP,
983 {(char_u *)"", (char_u *)0L}},
984 {"errorbells", "eb", P_BOOL|P_VI_DEF,
985 (char_u *)&p_eb, PV_NONE,
986 {(char_u *)FALSE, (char_u *)0L}},
987 {"errorfile", "ef", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
988 #ifdef FEAT_QUICKFIX
989 (char_u *)&p_ef, PV_NONE,
990 {(char_u *)DFLT_ERRORFILE, (char_u *)0L}
991 #else
992 (char_u *)NULL, PV_NONE,
993 {(char_u *)NULL, (char_u *)0L}
994 #endif
996 {"errorformat", "efm", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
997 #ifdef FEAT_QUICKFIX
998 (char_u *)&p_efm, PV_EFM,
999 {(char_u *)DFLT_EFM, (char_u *)0L},
1000 #else
1001 (char_u *)NULL, PV_NONE,
1002 {(char_u *)NULL, (char_u *)0L}
1003 #endif
1005 {"esckeys", "ek", P_BOOL|P_VIM,
1006 (char_u *)&p_ek, PV_NONE,
1007 {(char_u *)FALSE, (char_u *)TRUE}},
1008 {"eventignore", "ei", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1009 #ifdef FEAT_AUTOCMD
1010 (char_u *)&p_ei, PV_NONE,
1011 #else
1012 (char_u *)NULL, PV_NONE,
1013 #endif
1014 {(char_u *)"", (char_u *)0L}},
1015 {"expandtab", "et", P_BOOL|P_VI_DEF|P_VIM,
1016 (char_u *)&p_et, PV_ET,
1017 {(char_u *)FALSE, (char_u *)0L}},
1018 {"exrc", "ex", P_BOOL|P_VI_DEF|P_SECURE,
1019 (char_u *)&p_exrc, PV_NONE,
1020 {(char_u *)FALSE, (char_u *)0L}},
1021 {"fileencoding","fenc", P_STRING|P_ALLOCED|P_VI_DEF|P_RSTAT|P_RBUF|P_NO_MKRC,
1022 #ifdef FEAT_MBYTE
1023 (char_u *)&p_fenc, PV_FENC,
1024 {(char_u *)"", (char_u *)0L}
1025 #else
1026 (char_u *)NULL, PV_NONE,
1027 {(char_u *)0L, (char_u *)0L}
1028 #endif
1030 {"fileencodings","fencs", P_STRING|P_VI_DEF|P_COMMA,
1031 #ifdef FEAT_MBYTE
1032 (char_u *)&p_fencs, PV_NONE,
1033 {(char_u *)"ucs-bom", (char_u *)0L}
1034 #else
1035 (char_u *)NULL, PV_NONE,
1036 {(char_u *)0L, (char_u *)0L}
1037 #endif
1039 {"fileformat", "ff", P_STRING|P_ALLOCED|P_VI_DEF|P_RSTAT|P_NO_MKRC,
1040 (char_u *)&p_ff, PV_FF,
1041 {(char_u *)DFLT_FF, (char_u *)0L}},
1042 {"fileformats", "ffs", P_STRING|P_VIM|P_COMMA|P_NODUP,
1043 (char_u *)&p_ffs, PV_NONE,
1044 {(char_u *)DFLT_FFS_VI, (char_u *)DFLT_FFS_VIM}},
1045 {"filetype", "ft", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB|P_NFNAME,
1046 #ifdef FEAT_AUTOCMD
1047 (char_u *)&p_ft, PV_FT,
1048 {(char_u *)"", (char_u *)0L}
1049 #else
1050 (char_u *)NULL, PV_NONE,
1051 {(char_u *)0L, (char_u *)0L}
1052 #endif
1054 {"fillchars", "fcs", P_STRING|P_VI_DEF|P_RALL|P_COMMA|P_NODUP,
1055 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
1056 (char_u *)&p_fcs, PV_NONE,
1057 {(char_u *)"vert:|,fold:-", (char_u *)0L}
1058 #else
1059 (char_u *)NULL, PV_NONE,
1060 {(char_u *)"", (char_u *)0L}
1061 #endif
1063 {"fkmap", "fk", P_BOOL|P_VI_DEF,
1064 #ifdef FEAT_FKMAP
1065 (char_u *)&p_fkmap, PV_NONE,
1066 #else
1067 (char_u *)NULL, PV_NONE,
1068 #endif
1069 {(char_u *)FALSE, (char_u *)0L}},
1070 {"flash", "fl", P_BOOL|P_VI_DEF,
1071 (char_u *)NULL, PV_NONE,
1072 {(char_u *)FALSE, (char_u *)0L}},
1073 #ifdef FEAT_FOLDING
1074 {"foldclose", "fcl", P_STRING|P_VI_DEF|P_COMMA|P_NODUP|P_RWIN,
1075 (char_u *)&p_fcl, PV_NONE,
1076 {(char_u *)"", (char_u *)0L}},
1077 {"foldcolumn", "fdc", P_NUM|P_VI_DEF|P_RWIN,
1078 (char_u *)VAR_WIN, PV_FDC,
1079 {(char_u *)FALSE, (char_u *)0L}},
1080 {"foldenable", "fen", P_BOOL|P_VI_DEF|P_RWIN,
1081 (char_u *)VAR_WIN, PV_FEN,
1082 {(char_u *)TRUE, (char_u *)0L}},
1083 {"foldexpr", "fde", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1084 # ifdef FEAT_EVAL
1085 (char_u *)VAR_WIN, PV_FDE,
1086 {(char_u *)"0", (char_u *)NULL}
1087 # else
1088 (char_u *)NULL, PV_NONE,
1089 {(char_u *)NULL, (char_u *)0L}
1090 # endif
1092 {"foldignore", "fdi", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1093 (char_u *)VAR_WIN, PV_FDI,
1094 {(char_u *)"#", (char_u *)NULL}},
1095 {"foldlevel", "fdl", P_NUM|P_VI_DEF|P_RWIN,
1096 (char_u *)VAR_WIN, PV_FDL,
1097 {(char_u *)0L, (char_u *)0L}},
1098 {"foldlevelstart","fdls", P_NUM|P_VI_DEF,
1099 (char_u *)&p_fdls, PV_NONE,
1100 {(char_u *)-1L, (char_u *)0L}},
1101 {"foldmarker", "fmr", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|
1102 P_RWIN|P_COMMA|P_NODUP,
1103 (char_u *)VAR_WIN, PV_FMR,
1104 {(char_u *)"{{{,}}}", (char_u *)NULL}},
1105 {"foldmethod", "fdm", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1106 (char_u *)VAR_WIN, PV_FDM,
1107 {(char_u *)"manual", (char_u *)NULL}},
1108 {"foldminlines","fml", P_NUM|P_VI_DEF|P_RWIN,
1109 (char_u *)VAR_WIN, PV_FML,
1110 {(char_u *)1L, (char_u *)0L}},
1111 {"foldnestmax", "fdn", P_NUM|P_VI_DEF|P_RWIN,
1112 (char_u *)VAR_WIN, PV_FDN,
1113 {(char_u *)20L, (char_u *)0L}},
1114 {"foldopen", "fdo", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1115 (char_u *)&p_fdo, PV_NONE,
1116 {(char_u *)"block,hor,mark,percent,quickfix,search,tag,undo",
1117 (char_u *)0L}},
1118 {"foldtext", "fdt", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1119 # ifdef FEAT_EVAL
1120 (char_u *)VAR_WIN, PV_FDT,
1121 {(char_u *)"foldtext()", (char_u *)NULL}
1122 # else
1123 (char_u *)NULL, PV_NONE,
1124 {(char_u *)NULL, (char_u *)0L}
1125 # endif
1127 #endif
1128 {"formatexpr", "fex", P_STRING|P_ALLOCED|P_VI_DEF|P_VIM,
1129 #ifdef FEAT_EVAL
1130 (char_u *)&p_fex, PV_FEX,
1131 {(char_u *)"", (char_u *)0L}
1132 #else
1133 (char_u *)NULL, PV_NONE,
1134 {(char_u *)0L, (char_u *)0L}
1135 #endif
1137 {"formatoptions","fo", P_STRING|P_ALLOCED|P_VIM|P_FLAGLIST,
1138 (char_u *)&p_fo, PV_FO,
1139 {(char_u *)DFLT_FO_VI, (char_u *)DFLT_FO_VIM}},
1140 {"formatlistpat","flp", P_STRING|P_ALLOCED|P_VI_DEF,
1141 (char_u *)&p_flp, PV_FLP,
1142 {(char_u *)"^\\s*\\d\\+[\\]:.)}\\t ]\\s*", (char_u *)0L}},
1143 {"formatprg", "fp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1144 (char_u *)&p_fp, PV_NONE,
1145 {(char_u *)"", (char_u *)0L}},
1146 {"fsync", "fs", P_BOOL|P_SECURE|P_VI_DEF,
1147 #ifdef HAVE_FSYNC
1148 (char_u *)&p_fs, PV_NONE,
1149 {(char_u *)TRUE, (char_u *)0L}
1150 #else
1151 (char_u *)NULL, PV_NONE,
1152 {(char_u *)FALSE, (char_u *)0L}
1153 #endif
1155 {"fullscreen", "fu", P_BOOL,
1156 #ifdef FEAT_FULLSCREEN
1157 (char_u *)&p_fullscreen, PV_NONE,
1158 #else
1159 (char_u *)NULL, PV_NONE,
1160 #endif
1161 {(char_u *)FALSE, (char_u *)0L}},
1162 {"gdefault", "gd", P_BOOL|P_VI_DEF|P_VIM,
1163 (char_u *)&p_gd, PV_NONE,
1164 {(char_u *)FALSE, (char_u *)0L}},
1165 {"graphic", "gr", P_BOOL|P_VI_DEF,
1166 (char_u *)NULL, PV_NONE,
1167 {(char_u *)FALSE, (char_u *)0L}},
1168 {"grepformat", "gfm", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1169 #ifdef FEAT_QUICKFIX
1170 (char_u *)&p_gefm, PV_NONE,
1171 {(char_u *)DFLT_GREPFORMAT, (char_u *)0L},
1172 #else
1173 (char_u *)NULL, PV_NONE,
1174 {(char_u *)NULL, (char_u *)0L}
1175 #endif
1177 {"grepprg", "gp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1178 #ifdef FEAT_QUICKFIX
1179 (char_u *)&p_gp, PV_GP,
1181 # ifdef WIN3264
1182 /* may be changed to "grep -n" in os_win32.c */
1183 (char_u *)"findstr /n",
1184 # else
1185 # ifdef UNIX
1186 /* Add an extra file name so that grep will always
1187 * insert a file name in the match line. */
1188 (char_u *)"grep -n $* /dev/null",
1189 # else
1190 # ifdef VMS
1191 (char_u *)"SEARCH/NUMBERS ",
1192 # else
1193 (char_u *)"grep -n ",
1194 #endif
1195 #endif
1196 # endif
1197 (char_u *)0L},
1198 #else
1199 (char_u *)NULL, PV_NONE,
1200 {(char_u *)NULL, (char_u *)0L}
1201 #endif
1203 {"guicursor", "gcr", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1204 #ifdef CURSOR_SHAPE
1205 (char_u *)&p_guicursor, PV_NONE,
1207 # ifdef FEAT_GUI
1208 (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",
1209 # else /* MSDOS or Win32 console */
1210 (char_u *)"n-v-c:block,o:hor50,i-ci:hor15,r-cr:hor30,sm:block",
1211 # endif
1212 (char_u *)0L}
1213 #else
1214 (char_u *)NULL, PV_NONE,
1215 {(char_u *)NULL, (char_u *)0L}
1216 #endif
1218 {"guifont", "gfn", P_STRING|P_VI_DEF|P_RCLR|P_COMMA|P_NODUP,
1219 #ifdef FEAT_GUI
1220 (char_u *)&p_guifont, PV_NONE,
1221 {(char_u *)"", (char_u *)0L}
1222 #else
1223 (char_u *)NULL, PV_NONE,
1224 {(char_u *)NULL, (char_u *)0L}
1225 #endif
1227 {"guifontset", "gfs", P_STRING|P_VI_DEF|P_RCLR|P_COMMA,
1228 #if defined(FEAT_GUI) && defined(FEAT_XFONTSET)
1229 (char_u *)&p_guifontset, PV_NONE,
1230 {(char_u *)"", (char_u *)0L}
1231 #else
1232 (char_u *)NULL, PV_NONE,
1233 {(char_u *)NULL, (char_u *)0L}
1234 #endif
1236 {"guifontwide", "gfw", P_STRING|P_VI_DEF|P_RCLR|P_COMMA|P_NODUP,
1237 #if defined(FEAT_GUI) && defined(FEAT_MBYTE)
1238 (char_u *)&p_guifontwide, PV_NONE,
1239 {(char_u *)"", (char_u *)0L}
1240 #else
1241 (char_u *)NULL, PV_NONE,
1242 {(char_u *)NULL, (char_u *)0L}
1243 #endif
1245 {"guiheadroom", "ghr", P_NUM|P_VI_DEF,
1246 #if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11)
1247 (char_u *)&p_ghr, PV_NONE,
1248 #else
1249 (char_u *)NULL, PV_NONE,
1250 #endif
1251 {(char_u *)50L, (char_u *)0L}},
1252 {"guioptions", "go", P_STRING|P_VI_DEF|P_RALL|P_FLAGLIST,
1253 #if defined(FEAT_GUI)
1254 (char_u *)&p_go, PV_NONE,
1255 # if defined(UNIX) && !defined(MACOS)
1256 {(char_u *)"aegimrLtT", (char_u *)0L}
1257 # else
1258 {(char_u *)"egmrLtT", (char_u *)0L}
1259 # endif
1260 #else
1261 (char_u *)NULL, PV_NONE,
1262 {(char_u *)NULL, (char_u *)0L}
1263 #endif
1265 {"guipty", NULL, P_BOOL|P_VI_DEF,
1266 #if defined(FEAT_GUI)
1267 (char_u *)&p_guipty, PV_NONE,
1268 #else
1269 (char_u *)NULL, PV_NONE,
1270 #endif
1271 {(char_u *)TRUE, (char_u *)0L}},
1272 {"guitablabel", "gtl", P_STRING|P_VI_DEF|P_RWIN,
1273 #if defined(FEAT_GUI_TABLINE)
1274 (char_u *)&p_gtl, PV_NONE,
1275 {(char_u *)"", (char_u *)0L}
1276 #else
1277 (char_u *)NULL, PV_NONE,
1278 {(char_u *)NULL, (char_u *)0L}
1279 #endif
1281 {"guitabtooltip", "gtt", P_STRING|P_VI_DEF|P_RWIN,
1282 #if defined(FEAT_GUI_TABLINE)
1283 (char_u *)&p_gtt, PV_NONE,
1284 {(char_u *)"", (char_u *)0L}
1285 #else
1286 (char_u *)NULL, PV_NONE,
1287 {(char_u *)NULL, (char_u *)0L}
1288 #endif
1290 {"hardtabs", "ht", P_NUM|P_VI_DEF,
1291 (char_u *)NULL, PV_NONE,
1292 {(char_u *)0L, (char_u *)0L}},
1293 {"helpfile", "hf", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1294 (char_u *)&p_hf, PV_NONE,
1295 {(char_u *)DFLT_HELPFILE, (char_u *)0L}},
1296 {"helpheight", "hh", P_NUM|P_VI_DEF,
1297 #ifdef FEAT_WINDOWS
1298 (char_u *)&p_hh, PV_NONE,
1299 #else
1300 (char_u *)NULL, PV_NONE,
1301 #endif
1302 {(char_u *)20L, (char_u *)0L}},
1303 {"helplang", "hlg", P_STRING|P_VI_DEF|P_COMMA,
1304 #ifdef FEAT_MULTI_LANG
1305 (char_u *)&p_hlg, PV_NONE,
1306 {(char_u *)"", (char_u *)0L}
1307 #else
1308 (char_u *)NULL, PV_NONE,
1309 {(char_u *)0L, (char_u *)0L}
1310 #endif
1312 {"hidden", "hid", P_BOOL|P_VI_DEF,
1313 (char_u *)&p_hid, PV_NONE,
1314 {(char_u *)FALSE, (char_u *)0L}},
1315 {"highlight", "hl", P_STRING|P_VI_DEF|P_RCLR|P_COMMA|P_NODUP,
1316 (char_u *)&p_hl, PV_NONE,
1317 {(char_u *)HIGHLIGHT_INIT, (char_u *)0L}},
1318 {"history", "hi", P_NUM|P_VIM,
1319 (char_u *)&p_hi, PV_NONE,
1320 {(char_u *)0L, (char_u *)20L}},
1321 {"hkmap", "hk", P_BOOL|P_VI_DEF|P_VIM,
1322 #ifdef FEAT_RIGHTLEFT
1323 (char_u *)&p_hkmap, PV_NONE,
1324 #else
1325 (char_u *)NULL, PV_NONE,
1326 #endif
1327 {(char_u *)FALSE, (char_u *)0L}},
1328 {"hkmapp", "hkp", P_BOOL|P_VI_DEF|P_VIM,
1329 #ifdef FEAT_RIGHTLEFT
1330 (char_u *)&p_hkmapp, PV_NONE,
1331 #else
1332 (char_u *)NULL, PV_NONE,
1333 #endif
1334 {(char_u *)FALSE, (char_u *)0L}},
1335 {"hlsearch", "hls", P_BOOL|P_VI_DEF|P_VIM|P_RALL,
1336 (char_u *)&p_hls, PV_NONE,
1337 {(char_u *)FALSE, (char_u *)0L}},
1338 {"icon", NULL, P_BOOL|P_VI_DEF,
1339 #ifdef FEAT_TITLE
1340 (char_u *)&p_icon, PV_NONE,
1341 #else
1342 (char_u *)NULL, PV_NONE,
1343 #endif
1344 {(char_u *)FALSE, (char_u *)0L}},
1345 {"iconstring", NULL, P_STRING|P_VI_DEF,
1346 #ifdef FEAT_TITLE
1347 (char_u *)&p_iconstring, PV_NONE,
1348 #else
1349 (char_u *)NULL, PV_NONE,
1350 #endif
1351 {(char_u *)"", (char_u *)0L}},
1352 {"ignorecase", "ic", P_BOOL|P_VI_DEF,
1353 (char_u *)&p_ic, PV_NONE,
1354 {(char_u *)FALSE, (char_u *)0L}},
1355 {"imactivatekey","imak",P_STRING|P_VI_DEF,
1356 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
1357 (char_u *)&p_imak, PV_NONE,
1358 #else
1359 (char_u *)NULL, PV_NONE,
1360 #endif
1361 {(char_u *)"", (char_u *)0L}},
1362 {"imcmdline", "imc", P_BOOL|P_VI_DEF,
1363 #ifdef USE_IM_CONTROL
1364 (char_u *)&p_imcmdline, PV_NONE,
1365 #else
1366 (char_u *)NULL, PV_NONE,
1367 #endif
1368 {(char_u *)FALSE, (char_u *)0L}},
1369 {"imdisable", "imd", P_BOOL|P_VI_DEF,
1370 #ifdef USE_IM_CONTROL
1371 (char_u *)&p_imdisable, PV_NONE,
1372 #else
1373 (char_u *)NULL, PV_NONE,
1374 #endif
1375 #ifdef __sgi
1376 {(char_u *)TRUE, (char_u *)0L}
1377 #else
1378 {(char_u *)FALSE, (char_u *)0L}
1379 #endif
1381 {"iminsert", "imi", P_NUM|P_VI_DEF,
1382 (char_u *)&p_iminsert, PV_IMI,
1383 #ifdef B_IMODE_IM
1384 {(char_u *)B_IMODE_IM, (char_u *)0L}
1385 #else
1386 {(char_u *)B_IMODE_NONE, (char_u *)0L}
1387 #endif
1389 {"imsearch", "ims", P_NUM|P_VI_DEF,
1390 (char_u *)&p_imsearch, PV_IMS,
1391 #ifdef B_IMODE_IM
1392 {(char_u *)B_IMODE_IM, (char_u *)0L}
1393 #else
1394 {(char_u *)B_IMODE_NONE, (char_u *)0L}
1395 #endif
1397 {"include", "inc", P_STRING|P_ALLOCED|P_VI_DEF,
1398 #ifdef FEAT_FIND_ID
1399 (char_u *)&p_inc, PV_INC,
1400 {(char_u *)"^\\s*#\\s*include", (char_u *)0L}
1401 #else
1402 (char_u *)NULL, PV_NONE,
1403 {(char_u *)0L, (char_u *)0L}
1404 #endif
1406 {"includeexpr", "inex", P_STRING|P_ALLOCED|P_VI_DEF,
1407 #if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
1408 (char_u *)&p_inex, PV_INEX,
1409 {(char_u *)"", (char_u *)0L}
1410 #else
1411 (char_u *)NULL, PV_NONE,
1412 {(char_u *)0L, (char_u *)0L}
1413 #endif
1415 {"incsearch", "is", P_BOOL|P_VI_DEF|P_VIM,
1416 (char_u *)&p_is, PV_NONE,
1417 {(char_u *)FALSE, (char_u *)0L}},
1418 {"indentexpr", "inde", P_STRING|P_ALLOCED|P_VI_DEF|P_VIM,
1419 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
1420 (char_u *)&p_inde, PV_INDE,
1421 {(char_u *)"", (char_u *)0L}
1422 #else
1423 (char_u *)NULL, PV_NONE,
1424 {(char_u *)0L, (char_u *)0L}
1425 #endif
1427 {"indentkeys", "indk", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
1428 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
1429 (char_u *)&p_indk, PV_INDK,
1430 {(char_u *)"0{,0},:,0#,!^F,o,O,e", (char_u *)0L}
1431 #else
1432 (char_u *)NULL, PV_NONE,
1433 {(char_u *)0L, (char_u *)0L}
1434 #endif
1436 {"infercase", "inf", P_BOOL|P_VI_DEF,
1437 (char_u *)&p_inf, PV_INF,
1438 {(char_u *)FALSE, (char_u *)0L}},
1439 {"insertmode", "im", P_BOOL|P_VI_DEF|P_VIM,
1440 (char_u *)&p_im, PV_NONE,
1441 {(char_u *)FALSE, (char_u *)0L}},
1442 {"isfname", "isf", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1443 (char_u *)&p_isf, PV_NONE,
1445 #ifdef BACKSLASH_IN_FILENAME
1446 /* Excluded are: & and ^ are special in cmd.exe
1447 * ( and ) are used in text separating fnames */
1448 (char_u *)"@,48-57,/,\\,.,-,_,+,,,#,$,%,{,},[,],:,@-@,!,~,=",
1449 #else
1450 # ifdef AMIGA
1451 (char_u *)"@,48-57,/,.,-,_,+,,,$,:",
1452 # else
1453 # ifdef VMS
1454 (char_u *)"@,48-57,/,.,-,_,+,,,#,$,%,<,>,[,],:,;,~",
1455 # else /* UNIX et al. */
1456 # ifdef EBCDIC
1457 (char_u *)"@,240-249,/,.,-,_,+,,,#,$,%,~,=",
1458 # else
1459 (char_u *)"@,48-57,/,.,-,_,+,,,#,$,%,~,=",
1460 # endif
1461 # endif
1462 # endif
1463 #endif
1464 (char_u *)0L}},
1465 {"isident", "isi", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1466 (char_u *)&p_isi, PV_NONE,
1468 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
1469 (char_u *)"@,48-57,_,128-167,224-235",
1470 #else
1471 # ifdef EBCDIC
1472 /* TODO: EBCDIC Check this! @ == isalpha()*/
1473 (char_u *)"@,240-249,_,66-73,81-89,98-105,"
1474 "112-120,128,140-142,156,158,172,"
1475 "174,186,191,203-207,219-225,235-239,"
1476 "251-254",
1477 # else
1478 (char_u *)"@,48-57,_,192-255",
1479 # endif
1480 #endif
1481 (char_u *)0L}},
1482 {"iskeyword", "isk", P_STRING|P_ALLOCED|P_VIM|P_COMMA|P_NODUP,
1483 (char_u *)&p_isk, PV_ISK,
1485 #ifdef EBCDIC
1486 (char_u *)"@,240-249,_",
1487 /* TODO: EBCDIC Check this! @ == isalpha()*/
1488 (char_u *)"@,240-249,_,66-73,81-89,98-105,"
1489 "112-120,128,140-142,156,158,172,"
1490 "174,186,191,203-207,219-225,235-239,"
1491 "251-254",
1492 #else
1493 (char_u *)"@,48-57,_",
1494 # if defined(MSDOS) || defined(MSWIN) || defined(OS2)
1495 (char_u *)"@,48-57,_,128-167,224-235"
1496 # else
1497 ISK_LATIN1
1498 # endif
1499 #endif
1501 {"isprint", "isp", P_STRING|P_VI_DEF|P_RALL|P_COMMA|P_NODUP,
1502 (char_u *)&p_isp, PV_NONE,
1504 #if defined(MSDOS) || defined(MSWIN) || defined(OS2) \
1505 || (defined(MACOS) && !defined(MACOS_X)) \
1506 || defined(VMS)
1507 (char_u *)"@,~-255",
1508 #else
1509 # ifdef EBCDIC
1510 /* all chars above 63 are printable */
1511 (char_u *)"63-255",
1512 # else
1513 ISP_LATIN1,
1514 # endif
1515 #endif
1516 (char_u *)0L}},
1517 {"joinspaces", "js", P_BOOL|P_VI_DEF|P_VIM,
1518 (char_u *)&p_js, PV_NONE,
1519 {(char_u *)TRUE, (char_u *)0L}},
1520 {"key", NULL, P_STRING|P_ALLOCED|P_VI_DEF|P_NO_MKRC,
1521 #ifdef FEAT_CRYPT
1522 (char_u *)&p_key, PV_KEY,
1523 {(char_u *)"", (char_u *)0L}
1524 #else
1525 (char_u *)NULL, PV_NONE,
1526 {(char_u *)0L, (char_u *)0L}
1527 #endif
1529 {"keymap", "kmp", P_STRING|P_ALLOCED|P_VI_DEF|P_RBUF|P_RSTAT|P_NFNAME|P_PRI_MKRC,
1530 #ifdef FEAT_KEYMAP
1531 (char_u *)&p_keymap, PV_KMAP,
1532 {(char_u *)"", (char_u *)0L}
1533 #else
1534 (char_u *)NULL, PV_NONE,
1535 {(char_u *)"", (char_u *)0L}
1536 #endif
1538 {"keymodel", "km", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1539 #ifdef FEAT_VISUAL
1540 (char_u *)&p_km, PV_NONE,
1541 #else
1542 (char_u *)NULL, PV_NONE,
1543 #endif
1544 {(char_u *)"", (char_u *)0L}},
1545 {"keywordprg", "kp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1546 (char_u *)&p_kp, PV_KP,
1548 #if defined(MSDOS) || defined(MSWIN)
1549 (char_u *)":help",
1550 #else
1551 #ifdef VMS
1552 (char_u *)"help",
1553 #else
1554 # if defined(OS2)
1555 (char_u *)"view /",
1556 # else
1557 # ifdef USEMAN_S
1558 (char_u *)"man -s",
1559 # else
1560 (char_u *)"man",
1561 # endif
1562 # endif
1563 #endif
1564 #endif
1565 (char_u *)0L}},
1566 {"langmap", "lmap", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1567 #ifdef FEAT_LANGMAP
1568 (char_u *)&p_langmap, PV_NONE,
1569 {(char_u *)"", /* unmatched } */
1570 #else
1571 (char_u *)NULL, PV_NONE,
1572 {(char_u *)NULL,
1573 #endif
1574 (char_u *)0L}},
1575 {"langmenu", "lm", P_STRING|P_VI_DEF|P_NFNAME,
1576 #if defined(FEAT_MENU) && defined(FEAT_MULTI_LANG)
1577 (char_u *)&p_lm, PV_NONE,
1578 #else
1579 (char_u *)NULL, PV_NONE,
1580 #endif
1581 {(char_u *)"", (char_u *)0L}},
1582 {"laststatus", "ls", P_NUM|P_VI_DEF|P_RALL,
1583 #ifdef FEAT_WINDOWS
1584 (char_u *)&p_ls, PV_NONE,
1585 #else
1586 (char_u *)NULL, PV_NONE,
1587 #endif
1588 {(char_u *)1L, (char_u *)0L}},
1589 {"lazyredraw", "lz", P_BOOL|P_VI_DEF,
1590 (char_u *)&p_lz, PV_NONE,
1591 {(char_u *)FALSE, (char_u *)0L}},
1592 {"linebreak", "lbr", P_BOOL|P_VI_DEF|P_RWIN,
1593 #ifdef FEAT_LINEBREAK
1594 (char_u *)VAR_WIN, PV_LBR,
1595 #else
1596 (char_u *)NULL, PV_NONE,
1597 #endif
1598 {(char_u *)FALSE, (char_u *)0L}},
1599 {"lines", NULL, P_NUM|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RCLR,
1600 (char_u *)&Rows, PV_NONE,
1602 #if defined(MSDOS) || defined(WIN3264) || defined(OS2)
1603 (char_u *)25L,
1604 #else
1605 (char_u *)24L,
1606 #endif
1607 (char_u *)0L}},
1608 {"linespace", "lsp", P_NUM|P_VI_DEF|P_RCLR,
1609 #ifdef FEAT_GUI
1610 (char_u *)&p_linespace, PV_NONE,
1611 #else
1612 (char_u *)NULL, PV_NONE,
1613 #endif
1614 #ifdef FEAT_GUI_W32
1615 {(char_u *)1L, (char_u *)0L}
1616 #else
1617 {(char_u *)0L, (char_u *)0L}
1618 #endif
1620 {"lisp", NULL, P_BOOL|P_VI_DEF,
1621 #ifdef FEAT_LISP
1622 (char_u *)&p_lisp, PV_LISP,
1623 #else
1624 (char_u *)NULL, PV_NONE,
1625 #endif
1626 {(char_u *)FALSE, (char_u *)0L}},
1627 {"lispwords", "lw", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1628 #ifdef FEAT_LISP
1629 (char_u *)&p_lispwords, PV_NONE,
1630 {(char_u *)LISPWORD_VALUE, (char_u *)0L}
1631 #else
1632 (char_u *)NULL, PV_NONE,
1633 {(char_u *)"", (char_u *)0L}
1634 #endif
1636 {"list", NULL, P_BOOL|P_VI_DEF|P_RWIN,
1637 (char_u *)VAR_WIN, PV_LIST,
1638 {(char_u *)FALSE, (char_u *)0L}},
1639 {"listchars", "lcs", P_STRING|P_VI_DEF|P_RALL|P_COMMA|P_NODUP,
1640 (char_u *)&p_lcs, PV_NONE,
1641 {(char_u *)"eol:$", (char_u *)0L}},
1642 {"loadplugins", "lpl", P_BOOL|P_VI_DEF,
1643 (char_u *)&p_lpl, PV_NONE,
1644 {(char_u *)TRUE, (char_u *)0L}},
1645 #ifdef FEAT_GUI_MAC
1646 {"macatsui", NULL, P_BOOL|P_VI_DEF|P_RCLR,
1647 (char_u *)&p_macatsui, PV_NONE,
1648 {(char_u *)TRUE, (char_u *)0L}},
1649 #endif
1650 {"magic", NULL, P_BOOL|P_VI_DEF,
1651 (char_u *)&p_magic, PV_NONE,
1652 {(char_u *)TRUE, (char_u *)0L}},
1653 {"makeef", "mef", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1654 #ifdef FEAT_QUICKFIX
1655 (char_u *)&p_mef, PV_NONE,
1656 {(char_u *)"", (char_u *)0L}
1657 #else
1658 (char_u *)NULL, PV_NONE,
1659 {(char_u *)NULL, (char_u *)0L}
1660 #endif
1662 {"makeprg", "mp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1663 #ifdef FEAT_QUICKFIX
1664 (char_u *)&p_mp, PV_MP,
1665 # ifdef VMS
1666 {(char_u *)"MMS", (char_u *)0L}
1667 # else
1668 {(char_u *)"make", (char_u *)0L}
1669 # endif
1670 #else
1671 (char_u *)NULL, PV_NONE,
1672 {(char_u *)NULL, (char_u *)0L}
1673 #endif
1675 {"matchpairs", "mps", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
1676 (char_u *)&p_mps, PV_MPS,
1677 {(char_u *)"(:),{:},[:]", (char_u *)0L}},
1678 {"matchtime", "mat", P_NUM|P_VI_DEF,
1679 (char_u *)&p_mat, PV_NONE,
1680 {(char_u *)5L, (char_u *)0L}},
1681 {"maxcombine", "mco", P_NUM|P_VI_DEF,
1682 #ifdef FEAT_MBYTE
1683 (char_u *)&p_mco, PV_NONE,
1684 #else
1685 (char_u *)NULL, PV_NONE,
1686 #endif
1687 {(char_u *)2, (char_u *)0L}},
1688 {"maxfuncdepth", "mfd", P_NUM|P_VI_DEF,
1689 #ifdef FEAT_EVAL
1690 (char_u *)&p_mfd, PV_NONE,
1691 #else
1692 (char_u *)NULL, PV_NONE,
1693 #endif
1694 {(char_u *)100L, (char_u *)0L}},
1695 {"maxmapdepth", "mmd", P_NUM|P_VI_DEF,
1696 (char_u *)&p_mmd, PV_NONE,
1697 {(char_u *)1000L, (char_u *)0L}},
1698 {"maxmem", "mm", P_NUM|P_VI_DEF,
1699 (char_u *)&p_mm, PV_NONE,
1700 {(char_u *)DFLT_MAXMEM, (char_u *)0L}},
1701 {"maxmempattern","mmp", P_NUM|P_VI_DEF,
1702 (char_u *)&p_mmp, PV_NONE,
1703 {(char_u *)1000L, (char_u *)0L}},
1704 {"maxmemtot", "mmt", P_NUM|P_VI_DEF,
1705 (char_u *)&p_mmt, PV_NONE,
1706 {(char_u *)DFLT_MAXMEMTOT, (char_u *)0L}},
1707 {"menuitems", "mis", P_NUM|P_VI_DEF,
1708 #ifdef FEAT_MENU
1709 (char_u *)&p_mis, PV_NONE,
1710 #else
1711 (char_u *)NULL, PV_NONE,
1712 #endif
1713 {(char_u *)25L, (char_u *)0L}},
1714 {"mesg", NULL, P_BOOL|P_VI_DEF,
1715 (char_u *)NULL, PV_NONE,
1716 {(char_u *)FALSE, (char_u *)0L}},
1717 {"mkspellmem", "msm", P_STRING|P_VI_DEF|P_EXPAND|P_SECURE,
1718 #ifdef FEAT_SPELL
1719 (char_u *)&p_msm, PV_NONE,
1720 {(char_u *)"460000,2000,500", (char_u *)0L}
1721 #else
1722 (char_u *)NULL, PV_NONE,
1723 {(char_u *)0L, (char_u *)0L}
1724 #endif
1726 {"modeline", "ml", P_BOOL|P_VIM,
1727 (char_u *)&p_ml, PV_ML,
1728 {(char_u *)FALSE, (char_u *)TRUE}},
1729 {"modelines", "mls", P_NUM|P_VI_DEF,
1730 (char_u *)&p_mls, PV_NONE,
1731 {(char_u *)5L, (char_u *)0L}},
1732 {"modifiable", "ma", P_BOOL|P_VI_DEF|P_NOGLOB,
1733 (char_u *)&p_ma, PV_MA,
1734 {(char_u *)TRUE, (char_u *)0L}},
1735 {"modified", "mod", P_BOOL|P_NO_MKRC|P_VI_DEF|P_RSTAT,
1736 (char_u *)&p_mod, PV_MOD,
1737 {(char_u *)FALSE, (char_u *)0L}},
1738 {"more", NULL, P_BOOL|P_VIM,
1739 (char_u *)&p_more, PV_NONE,
1740 {(char_u *)FALSE, (char_u *)TRUE}},
1741 {"mouse", NULL, P_STRING|P_VI_DEF|P_FLAGLIST,
1742 (char_u *)&p_mouse, PV_NONE,
1744 #if defined(MSDOS) || defined(WIN3264)
1745 (char_u *)"a",
1746 #else
1747 (char_u *)"",
1748 #endif
1749 (char_u *)0L}},
1750 {"mousefocus", "mousef", P_BOOL|P_VI_DEF,
1751 #ifdef FEAT_GUI
1752 (char_u *)&p_mousef, PV_NONE,
1753 #else
1754 (char_u *)NULL, PV_NONE,
1755 #endif
1756 {(char_u *)FALSE, (char_u *)0L}},
1757 {"mousehide", "mh", P_BOOL|P_VI_DEF,
1758 #ifdef FEAT_GUI
1759 (char_u *)&p_mh, PV_NONE,
1760 #else
1761 (char_u *)NULL, PV_NONE,
1762 #endif
1763 {(char_u *)TRUE, (char_u *)0L}},
1764 {"mousemodel", "mousem", P_STRING|P_VI_DEF,
1765 (char_u *)&p_mousem, PV_NONE,
1767 #if defined(MSDOS) || defined(MSWIN)
1768 (char_u *)"popup",
1769 #else
1770 # if defined(MACOS)
1771 (char_u *)"popup_setpos",
1772 # else
1773 (char_u *)"extend",
1774 # endif
1775 #endif
1776 (char_u *)0L}},
1777 {"mouseshape", "mouses", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1778 #ifdef FEAT_MOUSESHAPE
1779 (char_u *)&p_mouseshape, PV_NONE,
1780 {(char_u *)"i-r:beam,s:updown,sd:udsizing,vs:leftright,vd:lrsizing,m:no,ml:up-arrow,v:rightup-arrow", (char_u *)0L}
1781 #else
1782 (char_u *)NULL, PV_NONE,
1783 {(char_u *)NULL, (char_u *)0L}
1784 #endif
1786 {"mousetime", "mouset", P_NUM|P_VI_DEF,
1787 (char_u *)&p_mouset, PV_NONE,
1788 {(char_u *)500L, (char_u *)0L}},
1789 {"mzquantum", "mzq", P_NUM,
1790 #ifdef FEAT_MZSCHEME
1791 (char_u *)&p_mzq, PV_NONE,
1792 #else
1793 (char_u *)NULL, PV_NONE,
1794 #endif
1795 {(char_u *)100L, (char_u *)100L}},
1796 {"novice", NULL, P_BOOL|P_VI_DEF,
1797 (char_u *)NULL, PV_NONE,
1798 {(char_u *)FALSE, (char_u *)0L}},
1799 {"nrformats", "nf", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
1800 (char_u *)&p_nf, PV_NF,
1801 {(char_u *)"octal,hex", (char_u *)0L}},
1802 {"number", "nu", P_BOOL|P_VI_DEF|P_RWIN,
1803 (char_u *)VAR_WIN, PV_NU,
1804 {(char_u *)FALSE, (char_u *)0L}},
1805 {"numberwidth", "nuw", P_NUM|P_RWIN|P_VIM,
1806 #ifdef FEAT_LINEBREAK
1807 (char_u *)VAR_WIN, PV_NUW,
1808 #else
1809 (char_u *)NULL, PV_NONE,
1810 #endif
1811 {(char_u *)8L, (char_u *)4L}},
1812 {"omnifunc", "ofu", P_STRING|P_ALLOCED|P_VI_DEF|P_SECURE,
1813 #ifdef FEAT_COMPL_FUNC
1814 (char_u *)&p_ofu, PV_OFU,
1815 {(char_u *)"", (char_u *)0L}
1816 #else
1817 (char_u *)NULL, PV_NONE,
1818 {(char_u *)0L, (char_u *)0L}
1819 #endif
1821 {"open", NULL, P_BOOL|P_VI_DEF,
1822 (char_u *)NULL, PV_NONE,
1823 {(char_u *)FALSE, (char_u *)0L}},
1824 {"opendevice", "odev", P_BOOL|P_VI_DEF,
1825 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
1826 (char_u *)&p_odev, PV_NONE,
1827 #else
1828 (char_u *)NULL, PV_NONE,
1829 #endif
1830 {(char_u *)FALSE, (char_u *)FALSE}
1832 {"operatorfunc", "opfunc", P_STRING|P_VI_DEF|P_SECURE,
1833 (char_u *)&p_opfunc, PV_NONE,
1834 {(char_u *)"", (char_u *)0L} },
1835 {"optimize", "opt", P_BOOL|P_VI_DEF,
1836 (char_u *)NULL, PV_NONE,
1837 {(char_u *)FALSE, (char_u *)0L}},
1838 {"osfiletype", "oft", P_STRING|P_ALLOCED|P_VI_DEF,
1839 #ifdef FEAT_OSFILETYPE
1840 (char_u *)&p_oft, PV_OFT,
1841 {(char_u *)DFLT_OFT, (char_u *)0L}
1842 #else
1843 (char_u *)NULL, PV_NONE,
1844 {(char_u *)0L, (char_u *)0L}
1845 #endif
1847 {"paragraphs", "para", P_STRING|P_VI_DEF,
1848 (char_u *)&p_para, PV_NONE,
1849 {(char_u *)"IPLPPPQPP LIpplpipbp", (char_u *)0L}},
1850 {"paste", NULL, P_BOOL|P_VI_DEF|P_PRI_MKRC,
1851 (char_u *)&p_paste, PV_NONE,
1852 {(char_u *)FALSE, (char_u *)0L}},
1853 {"pastetoggle", "pt", P_STRING|P_VI_DEF,
1854 (char_u *)&p_pt, PV_NONE,
1855 {(char_u *)"", (char_u *)0L}},
1856 {"patchexpr", "pex", P_STRING|P_VI_DEF|P_SECURE,
1857 #if defined(FEAT_DIFF) && defined(FEAT_EVAL)
1858 (char_u *)&p_pex, PV_NONE,
1859 {(char_u *)"", (char_u *)0L}
1860 #else
1861 (char_u *)NULL, PV_NONE,
1862 {(char_u *)0L, (char_u *)0L}
1863 #endif
1865 {"patchmode", "pm", P_STRING|P_VI_DEF|P_NFNAME,
1866 (char_u *)&p_pm, PV_NONE,
1867 {(char_u *)"", (char_u *)0L}},
1868 {"path", "pa", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
1869 (char_u *)&p_path, PV_PATH,
1871 #if defined AMIGA || defined MSDOS || defined MSWIN
1872 (char_u *)".,,",
1873 #else
1874 # if defined(__EMX__)
1875 (char_u *)".,/emx/include,,",
1876 # else /* Unix, probably */
1877 (char_u *)".,/usr/include,,",
1878 # endif
1879 #endif
1880 (char_u *)0L}},
1881 {"preserveindent", "pi", P_BOOL|P_VI_DEF|P_VIM,
1882 (char_u *)&p_pi, PV_PI,
1883 {(char_u *)FALSE, (char_u *)0L}},
1884 {"previewheight", "pvh", P_NUM|P_VI_DEF,
1885 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
1886 (char_u *)&p_pvh, PV_NONE,
1887 #else
1888 (char_u *)NULL, PV_NONE,
1889 #endif
1890 {(char_u *)12L, (char_u *)0L}},
1891 {"previewwindow", "pvw", P_BOOL|P_VI_DEF|P_RSTAT|P_NOGLOB,
1892 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
1893 (char_u *)VAR_WIN, PV_PVW,
1894 #else
1895 (char_u *)NULL, PV_NONE,
1896 #endif
1897 {(char_u *)FALSE, (char_u *)0L}},
1898 {"printdevice", "pdev", P_STRING|P_VI_DEF|P_SECURE,
1899 #ifdef FEAT_PRINTER
1900 (char_u *)&p_pdev, PV_NONE,
1901 {(char_u *)"", (char_u *)0L}
1902 #else
1903 (char_u *)NULL, PV_NONE,
1904 {(char_u *)NULL, (char_u *)0L}
1905 #endif
1907 {"printencoding", "penc", P_STRING|P_VI_DEF,
1908 #ifdef FEAT_POSTSCRIPT
1909 (char_u *)&p_penc, PV_NONE,
1910 {(char_u *)"", (char_u *)0L}
1911 #else
1912 (char_u *)NULL, PV_NONE,
1913 {(char_u *)NULL, (char_u *)0L}
1914 #endif
1916 {"printexpr", "pexpr", P_STRING|P_VI_DEF,
1917 #ifdef FEAT_POSTSCRIPT
1918 (char_u *)&p_pexpr, PV_NONE,
1919 {(char_u *)"", (char_u *)0L}
1920 #else
1921 (char_u *)NULL, PV_NONE,
1922 {(char_u *)NULL, (char_u *)0L}
1923 #endif
1925 {"printfont", "pfn", P_STRING|P_VI_DEF,
1926 #ifdef FEAT_PRINTER
1927 (char_u *)&p_pfn, PV_NONE,
1929 # ifdef MSWIN
1930 (char_u *)"Courier_New:h10",
1931 # else
1932 (char_u *)"courier",
1933 # endif
1934 (char_u *)0L}
1935 #else
1936 (char_u *)NULL, PV_NONE,
1937 {(char_u *)NULL, (char_u *)0L}
1938 #endif
1940 {"printheader", "pheader", P_STRING|P_VI_DEF|P_GETTEXT,
1941 #ifdef FEAT_PRINTER
1942 (char_u *)&p_header, PV_NONE,
1943 {(char_u *)N_("%<%f%h%m%=Page %N"), (char_u *)0L}
1944 #else
1945 (char_u *)NULL, PV_NONE,
1946 {(char_u *)NULL, (char_u *)0L}
1947 #endif
1949 {"printmbcharset", "pmbcs", P_STRING|P_VI_DEF,
1950 #if defined(FEAT_POSTSCRIPT) && defined(FEAT_MBYTE)
1951 (char_u *)&p_pmcs, PV_NONE,
1952 {(char_u *)"", (char_u *)0L}
1953 #else
1954 (char_u *)NULL, PV_NONE,
1955 {(char_u *)NULL, (char_u *)0L}
1956 #endif
1958 {"printmbfont", "pmbfn", P_STRING|P_VI_DEF,
1959 #if defined(FEAT_POSTSCRIPT) && defined(FEAT_MBYTE)
1960 (char_u *)&p_pmfn, PV_NONE,
1961 {(char_u *)"", (char_u *)0L}
1962 #else
1963 (char_u *)NULL, PV_NONE,
1964 {(char_u *)NULL, (char_u *)0L}
1965 #endif
1967 {"printoptions", "popt", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1968 #ifdef FEAT_PRINTER
1969 (char_u *)&p_popt, PV_NONE,
1970 {(char_u *)"", (char_u *)0L}
1971 #else
1972 (char_u *)NULL, PV_NONE,
1973 {(char_u *)NULL, (char_u *)0L}
1974 #endif
1976 {"prompt", NULL, P_BOOL|P_VI_DEF,
1977 (char_u *)&p_prompt, PV_NONE,
1978 {(char_u *)TRUE, (char_u *)0L}},
1979 {"pumheight", "ph", P_NUM|P_VI_DEF,
1980 #ifdef FEAT_INS_EXPAND
1981 (char_u *)&p_ph, PV_NONE,
1982 #else
1983 (char_u *)NULL, PV_NONE,
1984 #endif
1985 {(char_u *)0L, (char_u *)0L}},
1986 {"quoteescape", "qe", P_STRING|P_ALLOCED|P_VI_DEF,
1987 #ifdef FEAT_TEXTOBJ
1988 (char_u *)&p_qe, PV_QE,
1989 {(char_u *)"\\", (char_u *)0L}
1990 #else
1991 (char_u *)NULL, PV_NONE,
1992 {(char_u *)NULL, (char_u *)0L}
1993 #endif
1995 {"readonly", "ro", P_BOOL|P_VI_DEF|P_RSTAT|P_NOGLOB,
1996 (char_u *)&p_ro, PV_RO,
1997 {(char_u *)FALSE, (char_u *)0L}},
1998 {"redraw", NULL, P_BOOL|P_VI_DEF,
1999 (char_u *)NULL, PV_NONE,
2000 {(char_u *)FALSE, (char_u *)0L}},
2001 {"remap", NULL, P_BOOL|P_VI_DEF,
2002 (char_u *)&p_remap, PV_NONE,
2003 {(char_u *)TRUE, (char_u *)0L}},
2004 {"report", NULL, P_NUM|P_VI_DEF,
2005 (char_u *)&p_report, PV_NONE,
2006 {(char_u *)2L, (char_u *)0L}},
2007 {"restorescreen", "rs", P_BOOL|P_VI_DEF,
2008 #ifdef WIN3264
2009 (char_u *)&p_rs, PV_NONE,
2010 #else
2011 (char_u *)NULL, PV_NONE,
2012 #endif
2013 {(char_u *)TRUE, (char_u *)0L}},
2014 {"revins", "ri", P_BOOL|P_VI_DEF|P_VIM,
2015 #ifdef FEAT_RIGHTLEFT
2016 (char_u *)&p_ri, PV_NONE,
2017 #else
2018 (char_u *)NULL, PV_NONE,
2019 #endif
2020 {(char_u *)FALSE, (char_u *)0L}},
2021 {"rightleft", "rl", P_BOOL|P_VI_DEF|P_RWIN,
2022 #ifdef FEAT_RIGHTLEFT
2023 (char_u *)VAR_WIN, PV_RL,
2024 #else
2025 (char_u *)NULL, PV_NONE,
2026 #endif
2027 {(char_u *)FALSE, (char_u *)0L}},
2028 {"rightleftcmd", "rlc", P_STRING|P_ALLOCED|P_VI_DEF|P_RWIN,
2029 #ifdef FEAT_RIGHTLEFT
2030 (char_u *)VAR_WIN, PV_RLC,
2031 {(char_u *)"search", (char_u *)NULL}
2032 #else
2033 (char_u *)NULL, PV_NONE,
2034 {(char_u *)NULL, (char_u *)0L}
2035 #endif
2037 {"ruler", "ru", P_BOOL|P_VI_DEF|P_VIM|P_RSTAT,
2038 #ifdef FEAT_CMDL_INFO
2039 (char_u *)&p_ru, PV_NONE,
2040 #else
2041 (char_u *)NULL, PV_NONE,
2042 #endif
2043 {(char_u *)FALSE, (char_u *)0L}},
2044 {"rulerformat", "ruf", P_STRING|P_VI_DEF|P_ALLOCED|P_RSTAT,
2045 #ifdef FEAT_STL_OPT
2046 (char_u *)&p_ruf, PV_NONE,
2047 #else
2048 (char_u *)NULL, PV_NONE,
2049 #endif
2050 {(char_u *)"", (char_u *)0L}},
2051 {"runtimepath", "rtp", P_STRING|P_VI_DEF|P_EXPAND|P_COMMA|P_NODUP|P_SECURE,
2052 (char_u *)&p_rtp, PV_NONE,
2053 {(char_u *)DFLT_RUNTIMEPATH, (char_u *)0L}},
2054 {"scroll", "scr", P_NUM|P_NO_MKRC|P_VI_DEF,
2055 (char_u *)VAR_WIN, PV_SCROLL,
2056 {(char_u *)12L, (char_u *)0L}},
2057 {"scrollbind", "scb", P_BOOL|P_VI_DEF,
2058 #ifdef FEAT_SCROLLBIND
2059 (char_u *)VAR_WIN, PV_SCBIND,
2060 #else
2061 (char_u *)NULL, PV_NONE,
2062 #endif
2063 {(char_u *)FALSE, (char_u *)0L}},
2064 {"scrolljump", "sj", P_NUM|P_VI_DEF|P_VIM,
2065 (char_u *)&p_sj, PV_NONE,
2066 {(char_u *)1L, (char_u *)0L}},
2067 {"scrolloff", "so", P_NUM|P_VI_DEF|P_VIM|P_RALL,
2068 (char_u *)&p_so, PV_NONE,
2069 {(char_u *)0L, (char_u *)0L}},
2070 {"scrollopt", "sbo", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2071 #ifdef FEAT_SCROLLBIND
2072 (char_u *)&p_sbo, PV_NONE,
2073 {(char_u *)"ver,jump", (char_u *)0L}
2074 #else
2075 (char_u *)NULL, PV_NONE,
2076 {(char_u *)0L, (char_u *)0L}
2077 #endif
2079 {"sections", "sect", P_STRING|P_VI_DEF,
2080 (char_u *)&p_sections, PV_NONE,
2081 {(char_u *)"SHNHH HUnhsh", (char_u *)0L}},
2082 {"secure", NULL, P_BOOL|P_VI_DEF|P_SECURE,
2083 (char_u *)&p_secure, PV_NONE,
2084 {(char_u *)FALSE, (char_u *)0L}},
2085 {"selection", "sel", P_STRING|P_VI_DEF,
2086 #ifdef FEAT_VISUAL
2087 (char_u *)&p_sel, PV_NONE,
2088 #else
2089 (char_u *)NULL, PV_NONE,
2090 #endif
2091 {(char_u *)"inclusive", (char_u *)0L}},
2092 {"selectmode", "slm", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2093 #ifdef FEAT_VISUAL
2094 (char_u *)&p_slm, PV_NONE,
2095 #else
2096 (char_u *)NULL, PV_NONE,
2097 #endif
2098 {(char_u *)"", (char_u *)0L}},
2099 {"sessionoptions", "ssop", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2100 #ifdef FEAT_SESSION
2101 (char_u *)&p_ssop, PV_NONE,
2102 {(char_u *)"blank,buffers,curdir,folds,help,options,tabpages,winsize",
2103 (char_u *)0L}
2104 #else
2105 (char_u *)NULL, PV_NONE,
2106 {(char_u *)0L, (char_u *)0L}
2107 #endif
2109 {"shell", "sh", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
2110 (char_u *)&p_sh, PV_NONE,
2112 #ifdef VMS
2113 (char_u *)"-",
2114 #else
2115 # if defined(MSDOS)
2116 (char_u *)"command",
2117 # else
2118 # if defined(WIN16)
2119 (char_u *)"command.com",
2120 # else
2121 # if defined(WIN3264)
2122 (char_u *)"", /* set in set_init_1() */
2123 # else
2124 # if defined(OS2)
2125 (char_u *)"cmd.exe",
2126 # else
2127 # if defined(ARCHIE)
2128 (char_u *)"gos",
2129 # else
2130 (char_u *)"sh",
2131 # endif
2132 # endif
2133 # endif
2134 # endif
2135 # endif
2136 #endif /* VMS */
2137 (char_u *)0L}},
2138 {"shellcmdflag","shcf", P_STRING|P_VI_DEF|P_SECURE,
2139 (char_u *)&p_shcf, PV_NONE,
2141 #if defined(MSDOS) || defined(MSWIN)
2142 (char_u *)"/c",
2143 #else
2144 # if defined(OS2)
2145 (char_u *)"/c",
2146 # else
2147 (char_u *)"-c",
2148 # endif
2149 #endif
2150 (char_u *)0L}},
2151 {"shellpipe", "sp", P_STRING|P_VI_DEF|P_SECURE,
2152 #ifdef FEAT_QUICKFIX
2153 (char_u *)&p_sp, PV_NONE,
2155 #if defined(UNIX) || defined(OS2)
2156 # ifdef ARCHIE
2157 (char_u *)"2>",
2158 # else
2159 (char_u *)"| tee",
2160 # endif
2161 #else
2162 (char_u *)">",
2163 #endif
2164 (char_u *)0L}
2165 #else
2166 (char_u *)NULL, PV_NONE,
2167 {(char_u *)0L, (char_u *)0L}
2168 #endif
2170 {"shellquote", "shq", P_STRING|P_VI_DEF|P_SECURE,
2171 (char_u *)&p_shq, PV_NONE,
2172 {(char_u *)"", (char_u *)0L}},
2173 {"shellredir", "srr", P_STRING|P_VI_DEF|P_SECURE,
2174 (char_u *)&p_srr, PV_NONE,
2175 {(char_u *)">", (char_u *)0L}},
2176 {"shellslash", "ssl", P_BOOL|P_VI_DEF,
2177 #ifdef BACKSLASH_IN_FILENAME
2178 (char_u *)&p_ssl, PV_NONE,
2179 #else
2180 (char_u *)NULL, PV_NONE,
2181 #endif
2182 {(char_u *)FALSE, (char_u *)0L}},
2183 {"shelltemp", "stmp", P_BOOL,
2184 (char_u *)&p_stmp, PV_NONE,
2185 {(char_u *)FALSE, (char_u *)TRUE}},
2186 {"shelltype", "st", P_NUM|P_VI_DEF,
2187 #ifdef AMIGA
2188 (char_u *)&p_st, PV_NONE,
2189 #else
2190 (char_u *)NULL, PV_NONE,
2191 #endif
2192 {(char_u *)0L, (char_u *)0L}},
2193 {"shellxquote", "sxq", P_STRING|P_VI_DEF|P_SECURE,
2194 (char_u *)&p_sxq, PV_NONE,
2196 #if defined(UNIX) && defined(USE_SYSTEM) && !defined(__EMX__)
2197 (char_u *)"\"",
2198 #else
2199 (char_u *)"",
2200 #endif
2201 (char_u *)0L}},
2202 {"shiftround", "sr", P_BOOL|P_VI_DEF|P_VIM,
2203 (char_u *)&p_sr, PV_NONE,
2204 {(char_u *)FALSE, (char_u *)0L}},
2205 {"shiftwidth", "sw", P_NUM|P_VI_DEF,
2206 (char_u *)&p_sw, PV_SW,
2207 {(char_u *)8L, (char_u *)0L}},
2208 {"shortmess", "shm", P_STRING|P_VIM|P_FLAGLIST,
2209 (char_u *)&p_shm, PV_NONE,
2210 {(char_u *)"", (char_u *)"filnxtToO"}},
2211 {"shortname", "sn", P_BOOL|P_VI_DEF,
2212 #ifdef SHORT_FNAME
2213 (char_u *)NULL, PV_NONE,
2214 #else
2215 (char_u *)&p_sn, PV_SN,
2216 #endif
2217 {(char_u *)FALSE, (char_u *)0L}},
2218 {"showbreak", "sbr", P_STRING|P_VI_DEF|P_RALL,
2219 #ifdef FEAT_LINEBREAK
2220 (char_u *)&p_sbr, PV_NONE,
2221 #else
2222 (char_u *)NULL, PV_NONE,
2223 #endif
2224 {(char_u *)"", (char_u *)0L}},
2225 {"showcmd", "sc", P_BOOL|P_VIM,
2226 #ifdef FEAT_CMDL_INFO
2227 (char_u *)&p_sc, PV_NONE,
2228 #else
2229 (char_u *)NULL, PV_NONE,
2230 #endif
2231 {(char_u *)FALSE,
2232 #ifdef UNIX
2233 (char_u *)FALSE
2234 #else
2235 (char_u *)TRUE
2236 #endif
2238 {"showfulltag", "sft", P_BOOL|P_VI_DEF,
2239 (char_u *)&p_sft, PV_NONE,
2240 {(char_u *)FALSE, (char_u *)0L}},
2241 {"showmatch", "sm", P_BOOL|P_VI_DEF,
2242 (char_u *)&p_sm, PV_NONE,
2243 {(char_u *)FALSE, (char_u *)0L}},
2244 {"showmode", "smd", P_BOOL|P_VIM,
2245 (char_u *)&p_smd, PV_NONE,
2246 {(char_u *)FALSE, (char_u *)TRUE}},
2247 {"showtabline", "stal", P_NUM|P_VI_DEF|P_RALL,
2248 #ifdef FEAT_WINDOWS
2249 (char_u *)&p_stal, PV_NONE,
2250 #else
2251 (char_u *)NULL, PV_NONE,
2252 #endif
2253 {(char_u *)1L, (char_u *)0L}},
2254 {"sidescroll", "ss", P_NUM|P_VI_DEF,
2255 (char_u *)&p_ss, PV_NONE,
2256 {(char_u *)0L, (char_u *)0L}},
2257 {"sidescrolloff", "siso", P_NUM|P_VI_DEF|P_VIM|P_RBUF,
2258 (char_u *)&p_siso, PV_NONE,
2259 {(char_u *)0L, (char_u *)0L}},
2260 {"slowopen", "slow", P_BOOL|P_VI_DEF,
2261 (char_u *)NULL, PV_NONE,
2262 {(char_u *)FALSE, (char_u *)0L}},
2263 {"smartcase", "scs", P_BOOL|P_VI_DEF|P_VIM,
2264 (char_u *)&p_scs, PV_NONE,
2265 {(char_u *)FALSE, (char_u *)0L}},
2266 {"smartindent", "si", P_BOOL|P_VI_DEF|P_VIM,
2267 #ifdef FEAT_SMARTINDENT
2268 (char_u *)&p_si, PV_SI,
2269 #else
2270 (char_u *)NULL, PV_NONE,
2271 #endif
2272 {(char_u *)FALSE, (char_u *)0L}},
2273 {"smarttab", "sta", P_BOOL|P_VI_DEF|P_VIM,
2274 (char_u *)&p_sta, PV_NONE,
2275 {(char_u *)FALSE, (char_u *)0L}},
2276 {"softtabstop", "sts", P_NUM|P_VI_DEF|P_VIM,
2277 (char_u *)&p_sts, PV_STS,
2278 {(char_u *)0L, (char_u *)0L}},
2279 {"sourceany", NULL, P_BOOL|P_VI_DEF,
2280 (char_u *)NULL, PV_NONE,
2281 {(char_u *)FALSE, (char_u *)0L}},
2282 {"spell", NULL, P_BOOL|P_VI_DEF|P_RWIN,
2283 #ifdef FEAT_SPELL
2284 (char_u *)VAR_WIN, PV_SPELL,
2285 #else
2286 (char_u *)NULL, PV_NONE,
2287 #endif
2288 {(char_u *)FALSE, (char_u *)0L}},
2289 {"spellcapcheck", "spc", P_STRING|P_ALLOCED|P_VI_DEF|P_RBUF,
2290 #ifdef FEAT_SPELL
2291 (char_u *)&p_spc, PV_SPC,
2292 {(char_u *)"[.?!]\\_[\\])'\" ]\\+", (char_u *)0L}
2293 #else
2294 (char_u *)NULL, PV_NONE,
2295 {(char_u *)0L, (char_u *)0L}
2296 #endif
2298 {"spellfile", "spf", P_STRING|P_EXPAND|P_ALLOCED|P_VI_DEF|P_SECURE|P_COMMA,
2299 #ifdef FEAT_SPELL
2300 (char_u *)&p_spf, PV_SPF,
2301 {(char_u *)"", (char_u *)0L}
2302 #else
2303 (char_u *)NULL, PV_NONE,
2304 {(char_u *)0L, (char_u *)0L}
2305 #endif
2307 {"spelllang", "spl", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_RBUF|P_EXPAND,
2308 #ifdef FEAT_SPELL
2309 (char_u *)&p_spl, PV_SPL,
2310 {(char_u *)"en", (char_u *)0L}
2311 #else
2312 (char_u *)NULL, PV_NONE,
2313 {(char_u *)0L, (char_u *)0L}
2314 #endif
2316 {"spellsuggest", "sps", P_STRING|P_VI_DEF|P_EXPAND|P_SECURE|P_COMMA,
2317 #ifdef FEAT_SPELL
2318 (char_u *)&p_sps, PV_NONE,
2319 {(char_u *)"best", (char_u *)0L}
2320 #else
2321 (char_u *)NULL, PV_NONE,
2322 {(char_u *)0L, (char_u *)0L}
2323 #endif
2325 {"splitbelow", "sb", P_BOOL|P_VI_DEF,
2326 #ifdef FEAT_WINDOWS
2327 (char_u *)&p_sb, PV_NONE,
2328 #else
2329 (char_u *)NULL, PV_NONE,
2330 #endif
2331 {(char_u *)FALSE, (char_u *)0L}},
2332 {"splitright", "spr", P_BOOL|P_VI_DEF,
2333 #ifdef FEAT_VERTSPLIT
2334 (char_u *)&p_spr, PV_NONE,
2335 #else
2336 (char_u *)NULL, PV_NONE,
2337 #endif
2338 {(char_u *)FALSE, (char_u *)0L}},
2339 {"startofline", "sol", P_BOOL|P_VI_DEF|P_VIM,
2340 (char_u *)&p_sol, PV_NONE,
2341 {(char_u *)TRUE, (char_u *)0L}},
2342 {"statusline" ,"stl", P_STRING|P_VI_DEF|P_ALLOCED|P_RSTAT,
2343 #ifdef FEAT_STL_OPT
2344 (char_u *)&p_stl, PV_STL,
2345 #else
2346 (char_u *)NULL, PV_NONE,
2347 #endif
2348 {(char_u *)"", (char_u *)0L}},
2349 {"suffixes", "su", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2350 (char_u *)&p_su, PV_NONE,
2351 {(char_u *)".bak,~,.o,.h,.info,.swp,.obj",
2352 (char_u *)0L}},
2353 {"suffixesadd", "sua", P_STRING|P_VI_DEF|P_ALLOCED|P_COMMA|P_NODUP,
2354 #ifdef FEAT_SEARCHPATH
2355 (char_u *)&p_sua, PV_SUA,
2356 {(char_u *)"", (char_u *)0L}
2357 #else
2358 (char_u *)NULL, PV_NONE,
2359 {(char_u *)0L, (char_u *)0L}
2360 #endif
2362 {"swapfile", "swf", P_BOOL|P_VI_DEF|P_RSTAT,
2363 (char_u *)&p_swf, PV_SWF,
2364 {(char_u *)TRUE, (char_u *)0L}},
2365 {"swapsync", "sws", P_STRING|P_VI_DEF,
2366 (char_u *)&p_sws, PV_NONE,
2367 {(char_u *)"fsync", (char_u *)0L}},
2368 {"switchbuf", "swb", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2369 (char_u *)&p_swb, PV_NONE,
2370 {(char_u *)"", (char_u *)0L}},
2371 {"synmaxcol", "smc", P_NUM|P_VI_DEF|P_RBUF,
2372 #ifdef FEAT_SYN_HL
2373 (char_u *)&p_smc, PV_SMC,
2374 {(char_u *)3000L, (char_u *)0L}
2375 #else
2376 (char_u *)NULL, PV_NONE,
2377 {(char_u *)0L, (char_u *)0L}
2378 #endif
2380 {"syntax", "syn", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB|P_NFNAME,
2381 #ifdef FEAT_SYN_HL
2382 (char_u *)&p_syn, PV_SYN,
2383 {(char_u *)"", (char_u *)0L}
2384 #else
2385 (char_u *)NULL, PV_NONE,
2386 {(char_u *)0L, (char_u *)0L}
2387 #endif
2389 {"tabline", "tal", P_STRING|P_VI_DEF|P_RALL,
2390 #ifdef FEAT_STL_OPT
2391 (char_u *)&p_tal, PV_NONE,
2392 #else
2393 (char_u *)NULL, PV_NONE,
2394 #endif
2395 {(char_u *)"", (char_u *)0L}},
2396 {"tabpagemax", "tpm", P_NUM|P_VI_DEF,
2397 #ifdef FEAT_WINDOWS
2398 (char_u *)&p_tpm, PV_NONE,
2399 #else
2400 (char_u *)NULL, PV_NONE,
2401 #endif
2402 {(char_u *)10L, (char_u *)0L}},
2403 {"tabstop", "ts", P_NUM|P_VI_DEF|P_RBUF,
2404 (char_u *)&p_ts, PV_TS,
2405 {(char_u *)8L, (char_u *)0L}},
2406 {"tagbsearch", "tbs", P_BOOL|P_VI_DEF,
2407 (char_u *)&p_tbs, PV_NONE,
2408 #ifdef VMS /* binary searching doesn't appear to work on VMS */
2409 {(char_u *)0L, (char_u *)0L}
2410 #else
2411 {(char_u *)TRUE, (char_u *)0L}
2412 #endif
2414 {"taglength", "tl", P_NUM|P_VI_DEF,
2415 (char_u *)&p_tl, PV_NONE,
2416 {(char_u *)0L, (char_u *)0L}},
2417 {"tagrelative", "tr", P_BOOL|P_VIM,
2418 (char_u *)&p_tr, PV_NONE,
2419 {(char_u *)FALSE, (char_u *)TRUE}},
2420 {"tags", "tag", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
2421 (char_u *)&p_tags, PV_TAGS,
2423 #if defined(FEAT_EMACS_TAGS) && !defined(CASE_INSENSITIVE_FILENAME)
2424 (char_u *)"./tags,./TAGS,tags,TAGS",
2425 #else
2426 (char_u *)"./tags,tags",
2427 #endif
2428 (char_u *)0L}},
2429 {"tagstack", "tgst", P_BOOL|P_VI_DEF,
2430 (char_u *)&p_tgst, PV_NONE,
2431 {(char_u *)TRUE, (char_u *)0L}},
2432 {"term", NULL, P_STRING|P_EXPAND|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RALL,
2433 (char_u *)&T_NAME, PV_NONE,
2434 {(char_u *)"", (char_u *)0L}},
2435 {"termbidi", "tbidi", P_BOOL|P_VI_DEF,
2436 #ifdef FEAT_ARABIC
2437 (char_u *)&p_tbidi, PV_NONE,
2438 #else
2439 (char_u *)NULL, PV_NONE,
2440 #endif
2441 {(char_u *)FALSE, (char_u *)0L}},
2442 {"termencoding", "tenc", P_STRING|P_VI_DEF|P_RCLR,
2443 #ifdef FEAT_MBYTE
2444 (char_u *)&p_tenc, PV_NONE,
2445 {(char_u *)"", (char_u *)0L}
2446 #else
2447 (char_u *)NULL, PV_NONE,
2448 {(char_u *)0L, (char_u *)0L}
2449 #endif
2451 {"terse", NULL, P_BOOL|P_VI_DEF,
2452 (char_u *)&p_terse, PV_NONE,
2453 {(char_u *)FALSE, (char_u *)0L}},
2454 {"textauto", "ta", P_BOOL|P_VIM,
2455 (char_u *)&p_ta, PV_NONE,
2456 {(char_u *)DFLT_TEXTAUTO, (char_u *)TRUE}},
2457 {"textmode", "tx", P_BOOL|P_VI_DEF|P_NO_MKRC,
2458 (char_u *)&p_tx, PV_TX,
2460 #ifdef USE_CRNL
2461 (char_u *)TRUE,
2462 #else
2463 (char_u *)FALSE,
2464 #endif
2465 (char_u *)0L}},
2466 {"textwidth", "tw", P_NUM|P_VI_DEF|P_VIM,
2467 (char_u *)&p_tw, PV_TW,
2468 {(char_u *)0L, (char_u *)0L}},
2469 {"thesaurus", "tsr", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
2470 #ifdef FEAT_INS_EXPAND
2471 (char_u *)&p_tsr, PV_TSR,
2472 #else
2473 (char_u *)NULL, PV_NONE,
2474 #endif
2475 {(char_u *)"", (char_u *)0L}},
2476 {"tildeop", "top", P_BOOL|P_VI_DEF|P_VIM,
2477 (char_u *)&p_to, PV_NONE,
2478 {(char_u *)FALSE, (char_u *)0L}},
2479 {"timeout", "to", P_BOOL|P_VI_DEF,
2480 (char_u *)&p_timeout, PV_NONE,
2481 {(char_u *)TRUE, (char_u *)0L}},
2482 {"timeoutlen", "tm", P_NUM|P_VI_DEF,
2483 (char_u *)&p_tm, PV_NONE,
2484 {(char_u *)1000L, (char_u *)0L}},
2485 {"title", NULL, P_BOOL|P_VI_DEF,
2486 #ifdef FEAT_TITLE
2487 (char_u *)&p_title, PV_NONE,
2488 #else
2489 (char_u *)NULL, PV_NONE,
2490 #endif
2491 {(char_u *)FALSE, (char_u *)0L}},
2492 {"titlelen", NULL, P_NUM|P_VI_DEF,
2493 #ifdef FEAT_TITLE
2494 (char_u *)&p_titlelen, PV_NONE,
2495 #else
2496 (char_u *)NULL, PV_NONE,
2497 #endif
2498 {(char_u *)85L, (char_u *)0L}},
2499 {"titleold", NULL, P_STRING|P_VI_DEF|P_GETTEXT|P_SECURE|P_NO_MKRC,
2500 #ifdef FEAT_TITLE
2501 (char_u *)&p_titleold, PV_NONE,
2502 {(char_u *)N_("Thanks for flying Vim"),
2503 (char_u *)0L}
2504 #else
2505 (char_u *)NULL, PV_NONE,
2506 {(char_u *)0L, (char_u *)0L}
2507 #endif
2509 {"titlestring", NULL, P_STRING|P_VI_DEF,
2510 #ifdef FEAT_TITLE
2511 (char_u *)&p_titlestring, PV_NONE,
2512 #else
2513 (char_u *)NULL, PV_NONE,
2514 #endif
2515 {(char_u *)"", (char_u *)0L}},
2516 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
2517 {"toolbar", "tb", P_STRING|P_COMMA|P_VI_DEF|P_NODUP,
2518 (char_u *)&p_toolbar, PV_NONE,
2519 {(char_u *)"icons,tooltips", (char_u *)0L}},
2520 #endif
2521 #if defined(FEAT_TOOLBAR) && ((defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)) \
2522 || defined(FEAT_GUI_MACVIM))
2523 {"toolbariconsize", "tbis", P_STRING|P_VI_DEF,
2524 (char_u *)&p_tbis, PV_NONE,
2525 {(char_u *)"small", (char_u *)0L}},
2526 #endif
2527 {"transparency", "transp", P_NUM|P_VIM|P_RCLR,
2528 #ifdef FEAT_TRANSPARENCY
2529 (char_u *)&p_transp, PV_NONE,
2530 #else
2531 (char_u *)NULL, PV_NONE,
2532 #endif
2533 {(char_u *)0L, (char_u *)0L} },
2534 {"ttimeout", NULL, P_BOOL|P_VI_DEF|P_VIM,
2535 (char_u *)&p_ttimeout, PV_NONE,
2536 {(char_u *)FALSE, (char_u *)0L}},
2537 {"ttimeoutlen", "ttm", P_NUM|P_VI_DEF,
2538 (char_u *)&p_ttm, PV_NONE,
2539 {(char_u *)-1L, (char_u *)0L}},
2540 {"ttybuiltin", "tbi", P_BOOL|P_VI_DEF,
2541 (char_u *)&p_tbi, PV_NONE,
2542 {(char_u *)TRUE, (char_u *)0L}},
2543 {"ttyfast", "tf", P_BOOL|P_NO_MKRC|P_VI_DEF,
2544 (char_u *)&p_tf, PV_NONE,
2545 {(char_u *)FALSE, (char_u *)0L}},
2546 {"ttymouse", "ttym", P_STRING|P_NODEFAULT|P_NO_MKRC|P_VI_DEF,
2547 #if defined(FEAT_MOUSE) && (defined(UNIX) || defined(VMS))
2548 (char_u *)&p_ttym, PV_NONE,
2549 #else
2550 (char_u *)NULL, PV_NONE,
2551 #endif
2552 {(char_u *)"", (char_u *)0L}},
2553 {"ttyscroll", "tsl", P_NUM|P_VI_DEF,
2554 (char_u *)&p_ttyscroll, PV_NONE,
2555 {(char_u *)999L, (char_u *)0L}},
2556 {"ttytype", "tty", P_STRING|P_EXPAND|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RALL,
2557 (char_u *)&T_NAME, PV_NONE,
2558 {(char_u *)"", (char_u *)0L}},
2559 {"undolevels", "ul", P_NUM|P_VI_DEF,
2560 (char_u *)&p_ul, PV_NONE,
2562 #if defined(UNIX) || defined(WIN3264) || defined(OS2) || defined(VMS)
2563 (char_u *)1000L,
2564 #else
2565 (char_u *)100L,
2566 #endif
2567 (char_u *)0L}},
2568 {"updatecount", "uc", P_NUM|P_VI_DEF,
2569 (char_u *)&p_uc, PV_NONE,
2570 {(char_u *)200L, (char_u *)0L}},
2571 {"updatetime", "ut", P_NUM|P_VI_DEF,
2572 (char_u *)&p_ut, PV_NONE,
2573 {(char_u *)4000L, (char_u *)0L}},
2574 {"verbose", "vbs", P_NUM|P_VI_DEF,
2575 (char_u *)&p_verbose, PV_NONE,
2576 {(char_u *)0L, (char_u *)0L}},
2577 {"verbosefile", "vfile", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
2578 (char_u *)&p_vfile, PV_NONE,
2579 {(char_u *)"", (char_u *)0L}},
2580 {"viewdir", "vdir", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
2581 #ifdef FEAT_SESSION
2582 (char_u *)&p_vdir, PV_NONE,
2583 {(char_u *)DFLT_VDIR, (char_u *)0L}
2584 #else
2585 (char_u *)NULL, PV_NONE,
2586 {(char_u *)0L, (char_u *)0L}
2587 #endif
2589 {"viewoptions", "vop", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2590 #ifdef FEAT_SESSION
2591 (char_u *)&p_vop, PV_NONE,
2592 {(char_u *)"folds,options,cursor", (char_u *)0L}
2593 #else
2594 (char_u *)NULL, PV_NONE,
2595 {(char_u *)0L, (char_u *)0L}
2596 #endif
2598 {"viminfo", "vi", P_STRING|P_COMMA|P_NODUP|P_SECURE,
2599 #ifdef FEAT_VIMINFO
2600 (char_u *)&p_viminfo, PV_NONE,
2601 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
2602 {(char_u *)"", (char_u *)"'20,<50,s10,h,rA:,rB:"}
2603 #else
2604 # ifdef AMIGA
2605 {(char_u *)"",
2606 (char_u *)"'20,<50,s10,h,rdf0:,rdf1:,rdf2:"}
2607 # else
2608 {(char_u *)"", (char_u *)"'20,<50,s10,h"}
2609 # endif
2610 #endif
2611 #else
2612 (char_u *)NULL, PV_NONE,
2613 {(char_u *)0L, (char_u *)0L}
2614 #endif
2616 {"virtualedit", "ve", P_STRING|P_COMMA|P_NODUP|P_VI_DEF|P_VIM,
2617 #ifdef FEAT_VIRTUALEDIT
2618 (char_u *)&p_ve, PV_NONE,
2619 {(char_u *)"", (char_u *)""}
2620 #else
2621 (char_u *)NULL, PV_NONE,
2622 {(char_u *)0L, (char_u *)0L}
2623 #endif
2625 {"visualbell", "vb", P_BOOL|P_VI_DEF,
2626 (char_u *)&p_vb, PV_NONE,
2627 {(char_u *)FALSE, (char_u *)0L}},
2628 {"w300", NULL, P_NUM|P_VI_DEF,
2629 (char_u *)NULL, PV_NONE,
2630 {(char_u *)0L, (char_u *)0L}},
2631 {"w1200", NULL, P_NUM|P_VI_DEF,
2632 (char_u *)NULL, PV_NONE,
2633 {(char_u *)0L, (char_u *)0L}},
2634 {"w9600", NULL, P_NUM|P_VI_DEF,
2635 (char_u *)NULL, PV_NONE,
2636 {(char_u *)0L, (char_u *)0L}},
2637 {"warn", NULL, P_BOOL|P_VI_DEF,
2638 (char_u *)&p_warn, PV_NONE,
2639 {(char_u *)TRUE, (char_u *)0L}},
2640 {"weirdinvert", "wiv", P_BOOL|P_VI_DEF|P_RCLR,
2641 (char_u *)&p_wiv, PV_NONE,
2642 {(char_u *)FALSE, (char_u *)0L}},
2643 {"whichwrap", "ww", P_STRING|P_VIM|P_COMMA|P_FLAGLIST,
2644 (char_u *)&p_ww, PV_NONE,
2645 {(char_u *)"", (char_u *)"b,s"}},
2646 {"wildchar", "wc", P_NUM|P_VIM,
2647 (char_u *)&p_wc, PV_NONE,
2648 {(char_u *)(long)Ctrl_E, (char_u *)(long)TAB}},
2649 {"wildcharm", "wcm", P_NUM|P_VI_DEF,
2650 (char_u *)&p_wcm, PV_NONE,
2651 {(char_u *)0L, (char_u *)0L}},
2652 {"wildignore", "wig", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2653 #ifdef FEAT_WILDIGN
2654 (char_u *)&p_wig, PV_NONE,
2655 #else
2656 (char_u *)NULL, PV_NONE,
2657 #endif
2658 {(char_u *)"", (char_u *)0L}},
2659 {"wildmenu", "wmnu", P_BOOL|P_VI_DEF,
2660 #ifdef FEAT_WILDMENU
2661 (char_u *)&p_wmnu, PV_NONE,
2662 #else
2663 (char_u *)NULL, PV_NONE,
2664 #endif
2665 {(char_u *)FALSE, (char_u *)0L}},
2666 {"wildmode", "wim", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2667 (char_u *)&p_wim, PV_NONE,
2668 {(char_u *)"full", (char_u *)0L}},
2669 {"wildoptions", "wop", P_STRING|P_VI_DEF,
2670 #ifdef FEAT_CMDL_COMPL
2671 (char_u *)&p_wop, PV_NONE,
2672 {(char_u *)"", (char_u *)0L}
2673 #else
2674 (char_u *)NULL, PV_NONE,
2675 {(char_u *)NULL, (char_u *)0L}
2676 #endif
2678 {"winaltkeys", "wak", P_STRING|P_VI_DEF,
2679 #ifdef FEAT_WAK
2680 (char_u *)&p_wak, PV_NONE,
2681 {(char_u *)"menu", (char_u *)0L}
2682 #else
2683 (char_u *)NULL, PV_NONE,
2684 {(char_u *)NULL, (char_u *)0L}
2685 #endif
2687 {"window", "wi", P_NUM|P_VI_DEF,
2688 (char_u *)&p_window, PV_NONE,
2689 {(char_u *)0L, (char_u *)0L}},
2690 {"winheight", "wh", P_NUM|P_VI_DEF,
2691 #ifdef FEAT_WINDOWS
2692 (char_u *)&p_wh, PV_NONE,
2693 #else
2694 (char_u *)NULL, PV_NONE,
2695 #endif
2696 {(char_u *)1L, (char_u *)0L}},
2697 {"winfixheight", "wfh", P_BOOL|P_VI_DEF|P_RSTAT,
2698 #ifdef FEAT_WINDOWS
2699 (char_u *)VAR_WIN, PV_WFH,
2700 #else
2701 (char_u *)NULL, PV_NONE,
2702 #endif
2703 {(char_u *)FALSE, (char_u *)0L}},
2704 {"winfixwidth", "wfw", P_BOOL|P_VI_DEF|P_RSTAT,
2705 #ifdef FEAT_VERTSPLIT
2706 (char_u *)VAR_WIN, PV_WFW,
2707 #else
2708 (char_u *)NULL, PV_NONE,
2709 #endif
2710 {(char_u *)FALSE, (char_u *)0L}},
2711 {"winminheight", "wmh", P_NUM|P_VI_DEF,
2712 #ifdef FEAT_WINDOWS
2713 (char_u *)&p_wmh, PV_NONE,
2714 #else
2715 (char_u *)NULL, PV_NONE,
2716 #endif
2717 {(char_u *)1L, (char_u *)0L}},
2718 {"winminwidth", "wmw", P_NUM|P_VI_DEF,
2719 #ifdef FEAT_VERTSPLIT
2720 (char_u *)&p_wmw, PV_NONE,
2721 #else
2722 (char_u *)NULL, PV_NONE,
2723 #endif
2724 {(char_u *)1L, (char_u *)0L}},
2725 {"winwidth", "wiw", P_NUM|P_VI_DEF,
2726 #ifdef FEAT_VERTSPLIT
2727 (char_u *)&p_wiw, PV_NONE,
2728 #else
2729 (char_u *)NULL, PV_NONE,
2730 #endif
2731 {(char_u *)20L, (char_u *)0L}},
2732 {"wrap", NULL, P_BOOL|P_VI_DEF|P_RWIN,
2733 (char_u *)VAR_WIN, PV_WRAP,
2734 {(char_u *)TRUE, (char_u *)0L}},
2735 {"wrapmargin", "wm", P_NUM|P_VI_DEF,
2736 (char_u *)&p_wm, PV_WM,
2737 {(char_u *)0L, (char_u *)0L}},
2738 {"wrapscan", "ws", P_BOOL|P_VI_DEF,
2739 (char_u *)&p_ws, PV_NONE,
2740 {(char_u *)TRUE, (char_u *)0L}},
2741 {"write", NULL, P_BOOL|P_VI_DEF,
2742 (char_u *)&p_write, PV_NONE,
2743 {(char_u *)TRUE, (char_u *)0L}},
2744 {"writeany", "wa", P_BOOL|P_VI_DEF,
2745 (char_u *)&p_wa, PV_NONE,
2746 {(char_u *)FALSE, (char_u *)0L}},
2747 {"writebackup", "wb", P_BOOL|P_VI_DEF|P_VIM,
2748 (char_u *)&p_wb, PV_NONE,
2750 #ifdef FEAT_WRITEBACKUP
2751 (char_u *)TRUE,
2752 #else
2753 (char_u *)FALSE,
2754 #endif
2755 (char_u *)0L}},
2756 {"writedelay", "wd", P_NUM|P_VI_DEF,
2757 (char_u *)&p_wd, PV_NONE,
2758 {(char_u *)0L, (char_u *)0L}},
2760 /* terminal output codes */
2761 #define p_term(sss, vvv) {sss, NULL, P_STRING|P_VI_DEF|P_RALL|P_SECURE, \
2762 (char_u *)&vvv, PV_NONE, \
2763 {(char_u *)"", (char_u *)0L}},
2765 p_term("t_AB", T_CAB)
2766 p_term("t_AF", T_CAF)
2767 p_term("t_AL", T_CAL)
2768 p_term("t_al", T_AL)
2769 p_term("t_bc", T_BC)
2770 p_term("t_cd", T_CD)
2771 p_term("t_ce", T_CE)
2772 p_term("t_cl", T_CL)
2773 p_term("t_cm", T_CM)
2774 p_term("t_Co", T_CCO)
2775 p_term("t_CS", T_CCS)
2776 p_term("t_cs", T_CS)
2777 #ifdef FEAT_VERTSPLIT
2778 p_term("t_CV", T_CSV)
2779 #endif
2780 p_term("t_ut", T_UT)
2781 p_term("t_da", T_DA)
2782 p_term("t_db", T_DB)
2783 p_term("t_DL", T_CDL)
2784 p_term("t_dl", T_DL)
2785 p_term("t_fs", T_FS)
2786 p_term("t_IE", T_CIE)
2787 p_term("t_IS", T_CIS)
2788 p_term("t_ke", T_KE)
2789 p_term("t_ks", T_KS)
2790 p_term("t_le", T_LE)
2791 p_term("t_mb", T_MB)
2792 p_term("t_md", T_MD)
2793 p_term("t_me", T_ME)
2794 p_term("t_mr", T_MR)
2795 p_term("t_ms", T_MS)
2796 p_term("t_nd", T_ND)
2797 p_term("t_op", T_OP)
2798 p_term("t_RI", T_CRI)
2799 p_term("t_RV", T_CRV)
2800 p_term("t_Sb", T_CSB)
2801 p_term("t_Sf", T_CSF)
2802 p_term("t_se", T_SE)
2803 p_term("t_so", T_SO)
2804 p_term("t_sr", T_SR)
2805 p_term("t_ts", T_TS)
2806 p_term("t_te", T_TE)
2807 p_term("t_ti", T_TI)
2808 p_term("t_ue", T_UE)
2809 p_term("t_us", T_US)
2810 p_term("t_vb", T_VB)
2811 p_term("t_ve", T_VE)
2812 p_term("t_vi", T_VI)
2813 p_term("t_vs", T_VS)
2814 p_term("t_WP", T_CWP)
2815 p_term("t_WS", T_CWS)
2816 p_term("t_SI", T_CSI)
2817 p_term("t_EI", T_CEI)
2818 p_term("t_xs", T_XS)
2819 p_term("t_ZH", T_CZH)
2820 p_term("t_ZR", T_CZR)
2822 /* terminal key codes are not in here */
2824 {NULL, NULL, 0, NULL, PV_NONE, {NULL, NULL}} /* end marker */
2827 #define PARAM_COUNT (sizeof(options) / sizeof(struct vimoption))
2829 #ifdef FEAT_MBYTE
2830 static char *(p_ambw_values[]) = {"single", "double", NULL};
2831 #endif
2832 static char *(p_bg_values[]) = {"light", "dark", NULL};
2833 static char *(p_nf_values[]) = {"octal", "hex", "alpha", NULL};
2834 static char *(p_ff_values[]) = {FF_UNIX, FF_DOS, FF_MAC, NULL};
2835 #ifdef FEAT_CMDL_COMPL
2836 static char *(p_wop_values[]) = {"tagfile", NULL};
2837 #endif
2838 #ifdef FEAT_WAK
2839 static char *(p_wak_values[]) = {"yes", "menu", "no", NULL};
2840 #endif
2841 static char *(p_mousem_values[]) = {"extend", "popup", "popup_setpos", "mac", NULL};
2842 #ifdef FEAT_VISUAL
2843 static char *(p_sel_values[]) = {"inclusive", "exclusive", "old", NULL};
2844 static char *(p_slm_values[]) = {"mouse", "key", "cmd", NULL};
2845 #endif
2846 #ifdef FEAT_VISUAL
2847 static char *(p_km_values[]) = {"startsel", "stopsel", NULL};
2848 #endif
2849 #ifdef FEAT_BROWSE
2850 static char *(p_bsdir_values[]) = {"current", "last", "buffer", NULL};
2851 #endif
2852 #ifdef FEAT_SCROLLBIND
2853 static char *(p_scbopt_values[]) = {"ver", "hor", "jump", NULL};
2854 #endif
2855 static char *(p_swb_values[]) = {"useopen", "usetab", "split", NULL};
2856 static char *(p_debug_values[]) = {"msg", "throw", "beep", NULL};
2857 #ifdef FEAT_VERTSPLIT
2858 static char *(p_ead_values[]) = {"both", "ver", "hor", NULL};
2859 #endif
2860 #if defined(FEAT_QUICKFIX)
2861 # ifdef FEAT_AUTOCMD
2862 static char *(p_buftype_values[]) = {"nofile", "nowrite", "quickfix", "help", "acwrite", NULL};
2863 # else
2864 static char *(p_buftype_values[]) = {"nofile", "nowrite", "quickfix", "help", NULL};
2865 # endif
2866 static char *(p_bufhidden_values[]) = {"hide", "unload", "delete", "wipe", NULL};
2867 #endif
2868 static char *(p_bs_values[]) = {"indent", "eol", "start", NULL};
2869 #ifdef FEAT_FOLDING
2870 static char *(p_fdm_values[]) = {"manual", "expr", "marker", "indent", "syntax",
2871 # ifdef FEAT_DIFF
2872 "diff",
2873 # endif
2874 NULL};
2875 static char *(p_fcl_values[]) = {"all", NULL};
2876 #endif
2877 #ifdef FEAT_INS_EXPAND
2878 static char *(p_cot_values[]) = {"menu", "menuone", "longest", "preview", NULL};
2879 #endif
2881 static void set_option_default __ARGS((int, int opt_flags, int compatible));
2882 static void set_options_default __ARGS((int opt_flags));
2883 static char_u *term_bg_default __ARGS((void));
2884 static void did_set_option __ARGS((int opt_idx, int opt_flags, int new_value));
2885 static char_u *illegal_char __ARGS((char_u *, int));
2886 static int string_to_key __ARGS((char_u *arg));
2887 #ifdef FEAT_CMDWIN
2888 static char_u *check_cedit __ARGS((void));
2889 #endif
2890 #ifdef FEAT_TITLE
2891 static void did_set_title __ARGS((int icon));
2892 #endif
2893 static char_u *option_expand __ARGS((int opt_idx, char_u *val));
2894 static void didset_options __ARGS((void));
2895 static void check_string_option __ARGS((char_u **pp));
2896 #if defined(FEAT_EVAL) || defined(PROTO)
2897 static long_u *insecure_flag __ARGS((int opt_idx, int opt_flags));
2898 #else
2899 # define insecure_flag(opt_idx, opt_flags) (&options[opt_idx].flags)
2900 #endif
2901 static void set_string_option_global __ARGS((int opt_idx, char_u **varp));
2902 static void set_string_option __ARGS((int opt_idx, char_u *value, int opt_flags));
2903 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));
2904 static char_u *set_chars_option __ARGS((char_u **varp));
2905 #ifdef FEAT_CLIPBOARD
2906 static char_u *check_clipboard_option __ARGS((void));
2907 #endif
2908 #ifdef FEAT_SPELL
2909 static char_u *compile_cap_prog __ARGS((buf_T *buf));
2910 #endif
2911 #ifdef FEAT_EVAL
2912 static void set_option_scriptID_idx __ARGS((int opt_idx, int opt_flags, int id));
2913 #endif
2914 static char_u *set_bool_option __ARGS((int opt_idx, char_u *varp, int value, int opt_flags));
2915 static char_u *set_num_option __ARGS((int opt_idx, char_u *varp, long value, char_u *errbuf, size_t errbuflen, int opt_flags));
2916 static void check_redraw __ARGS((long_u flags));
2917 static int findoption __ARGS((char_u *));
2918 static int find_key_option __ARGS((char_u *));
2919 static void showoptions __ARGS((int all, int opt_flags));
2920 static int optval_default __ARGS((struct vimoption *, char_u *varp));
2921 static void showoneopt __ARGS((struct vimoption *, int opt_flags));
2922 static int put_setstring __ARGS((FILE *fd, char *cmd, char *name, char_u **valuep, int expand));
2923 static int put_setnum __ARGS((FILE *fd, char *cmd, char *name, long *valuep));
2924 static int put_setbool __ARGS((FILE *fd, char *cmd, char *name, int value));
2925 static int istermoption __ARGS((struct vimoption *));
2926 static char_u *get_varp_scope __ARGS((struct vimoption *p, int opt_flags));
2927 static char_u *get_varp __ARGS((struct vimoption *));
2928 static void option_value2string __ARGS((struct vimoption *, int opt_flags));
2929 static int wc_use_keyname __ARGS((char_u *varp, long *wcp));
2930 #ifdef FEAT_LANGMAP
2931 static void langmap_init __ARGS((void));
2932 static void langmap_set __ARGS((void));
2933 #endif
2934 static void paste_option_changed __ARGS((void));
2935 static void compatible_set __ARGS((void));
2936 #ifdef FEAT_LINEBREAK
2937 static void fill_breakat_flags __ARGS((void));
2938 #endif
2939 static int opt_strings_flags __ARGS((char_u *val, char **values, unsigned *flagp, int list));
2940 static int check_opt_strings __ARGS((char_u *val, char **values, int));
2941 static int check_opt_wim __ARGS((void));
2944 * Initialize the options, first part.
2946 * Called only once from main(), just after creating the first buffer.
2948 void
2949 set_init_1()
2951 char_u *p;
2952 int opt_idx;
2953 long_u n;
2954 #if defined(FEAT_GUI_MACVIM) && defined(FEAT_MBYTE)
2955 int did_mb_init;
2956 #endif
2958 #ifdef FEAT_LANGMAP
2959 langmap_init();
2960 #endif
2962 /* Be Vi compatible by default */
2963 p_cp = TRUE;
2965 /* Use POSIX compatibility when $VIM_POSIX is set. */
2966 if (mch_getenv((char_u *)"VIM_POSIX") != NULL)
2968 set_string_default("cpo", (char_u *)CPO_ALL);
2969 set_string_default("shm", (char_u *)"A");
2973 * Find default value for 'shell' option.
2974 * Don't use it if it is empty.
2976 if (((p = mch_getenv((char_u *)"SHELL")) != NULL && *p != NUL)
2977 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
2978 # ifdef __EMX__
2979 || ((p = mch_getenv((char_u *)"EMXSHELL")) != NULL && *p != NUL)
2980 # endif
2981 || ((p = mch_getenv((char_u *)"COMSPEC")) != NULL && *p != NUL)
2982 # ifdef WIN3264
2983 || ((p = default_shell()) != NULL && *p != NUL)
2984 # endif
2985 #endif
2987 set_string_default("sh", p);
2989 #ifdef FEAT_WILDIGN
2991 * Set the default for 'backupskip' to include environment variables for
2992 * temp files.
2995 # ifdef UNIX
2996 static char *(names[4]) = {"", "TMPDIR", "TEMP", "TMP"};
2997 # else
2998 static char *(names[3]) = {"TMPDIR", "TEMP", "TMP"};
2999 # endif
3000 int len;
3001 garray_T ga;
3002 int mustfree;
3004 ga_init2(&ga, 1, 100);
3005 for (n = 0; n < (long)(sizeof(names) / sizeof(char *)); ++n)
3007 mustfree = FALSE;
3008 # ifdef UNIX
3009 if (*names[n] == NUL)
3010 p = (char_u *)"/tmp";
3011 else
3012 # endif
3013 p = vim_getenv((char_u *)names[n], &mustfree);
3014 if (p != NULL && *p != NUL)
3016 /* First time count the NUL, otherwise count the ','. */
3017 len = (int)STRLEN(p) + 3;
3018 if (ga_grow(&ga, len) == OK)
3020 if (ga.ga_len > 0)
3021 STRCAT(ga.ga_data, ",");
3022 STRCAT(ga.ga_data, p);
3023 add_pathsep(ga.ga_data);
3024 STRCAT(ga.ga_data, "*");
3025 ga.ga_len += len;
3028 if (mustfree)
3029 vim_free(p);
3031 if (ga.ga_data != NULL)
3033 set_string_default("bsk", ga.ga_data);
3034 vim_free(ga.ga_data);
3037 #endif
3040 * 'maxmemtot' and 'maxmem' may have to be adjusted for available memory
3042 opt_idx = findoption((char_u *)"maxmemtot");
3043 if (opt_idx >= 0)
3045 #if !defined(HAVE_AVAIL_MEM) && !defined(HAVE_TOTAL_MEM)
3046 if (options[opt_idx].def_val[VI_DEFAULT] == (char_u *)0L)
3047 #endif
3049 #ifdef HAVE_AVAIL_MEM
3050 /* Use amount of memory available at this moment. */
3051 n = (mch_avail_mem(FALSE) >> 11);
3052 #else
3053 # ifdef HAVE_TOTAL_MEM
3054 /* Use amount of memory available to Vim. */
3055 n = (mch_total_mem(FALSE) >> 1);
3056 # else
3057 n = (0x7fffffff >> 11);
3058 # endif
3059 #endif
3060 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)n;
3061 opt_idx = findoption((char_u *)"maxmem");
3062 if (opt_idx >= 0)
3064 #if !defined(HAVE_AVAIL_MEM) && !defined(HAVE_TOTAL_MEM)
3065 if ((long)options[opt_idx].def_val[VI_DEFAULT] > n
3066 || (long)options[opt_idx].def_val[VI_DEFAULT] == 0L)
3067 #endif
3068 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)n;
3073 #ifdef FEAT_GUI_W32
3074 /* force 'shortname' for Win32s */
3075 if (gui_is_win32s())
3077 opt_idx = findoption((char_u *)"shortname");
3078 if (opt_idx >= 0)
3079 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)TRUE;
3081 #endif
3083 #ifdef FEAT_SEARCHPATH
3085 char_u *cdpath;
3086 char_u *buf;
3087 int i;
3088 int j;
3089 int mustfree = FALSE;
3091 /* Initialize the 'cdpath' option's default value. */
3092 cdpath = vim_getenv((char_u *)"CDPATH", &mustfree);
3093 if (cdpath != NULL)
3095 buf = alloc((unsigned)((STRLEN(cdpath) << 1) + 2));
3096 if (buf != NULL)
3098 buf[0] = ','; /* start with ",", current dir first */
3099 j = 1;
3100 for (i = 0; cdpath[i] != NUL; ++i)
3102 if (vim_ispathlistsep(cdpath[i]))
3103 buf[j++] = ',';
3104 else
3106 if (cdpath[i] == ' ' || cdpath[i] == ',')
3107 buf[j++] = '\\';
3108 buf[j++] = cdpath[i];
3111 buf[j] = NUL;
3112 opt_idx = findoption((char_u *)"cdpath");
3113 if (opt_idx >= 0)
3115 options[opt_idx].def_val[VI_DEFAULT] = buf;
3116 options[opt_idx].flags |= P_DEF_ALLOCED;
3119 if (mustfree)
3120 vim_free(cdpath);
3123 #endif
3125 #if defined(FEAT_POSTSCRIPT) && (defined(MSWIN) || defined(OS2) || defined(VMS) || defined(EBCDIC) || defined(MAC) || defined(hpux))
3126 /* Set print encoding on platforms that don't default to latin1 */
3127 set_string_default("penc",
3128 # if defined(MSWIN) || defined(OS2)
3129 (char_u *)"cp1252"
3130 # else
3131 # ifdef VMS
3132 (char_u *)"dec-mcs"
3133 # else
3134 # ifdef EBCDIC
3135 (char_u *)"ebcdic-uk"
3136 # else
3137 # ifdef MAC
3138 (char_u *)"mac-roman"
3139 # else /* HPUX */
3140 (char_u *)"hp-roman8"
3141 # endif
3142 # endif
3143 # endif
3144 # endif
3146 #endif
3148 #ifdef FEAT_POSTSCRIPT
3149 /* 'printexpr' must be allocated to be able to evaluate it. */
3150 set_string_default("pexpr",
3151 # if defined(MSWIN) || defined(MSDOS) || defined(OS2)
3152 (char_u *)"system('copy' . ' ' . v:fname_in . (&printdevice == '' ? ' LPT1:' : (' \"' . &printdevice . '\"'))) . delete(v:fname_in)"
3153 # else
3154 # ifdef VMS
3155 (char_u *)"system('print/delete' . (&printdevice == '' ? '' : ' /queue=' . &printdevice) . ' ' . v:fname_in)"
3157 # else
3158 (char_u *)"system('lpr' . (&printdevice == '' ? '' : ' -P' . &printdevice) . ' ' . v:fname_in) . delete(v:fname_in) + v:shell_error"
3159 # endif
3160 # endif
3162 #endif
3165 * Set all the options (except the terminal options) to their default
3166 * value. Also set the global value for local options.
3168 set_options_default(0);
3170 #ifdef FEAT_GUI
3171 if (found_reverse_arg)
3172 set_option_value((char_u *)"bg", 0L, (char_u *)"dark", 0);
3173 #endif
3175 curbuf->b_p_initialized = TRUE;
3176 curbuf->b_p_ar = -1; /* no local 'autoread' value */
3177 check_buf_options(curbuf);
3178 check_win_options(curwin);
3179 check_options();
3181 /* Must be before option_expand(), because that one needs vim_isIDc() */
3182 didset_options();
3184 #ifdef FEAT_SPELL
3185 /* Use the current chartab for the generic chartab. */
3186 init_spell_chartab();
3187 #endif
3189 #ifdef FEAT_LINEBREAK
3191 * initialize the table for 'breakat'.
3193 fill_breakat_flags();
3194 #endif
3197 * Expand environment variables and things like "~" for the defaults.
3198 * If option_expand() returns non-NULL the variable is expanded. This can
3199 * only happen for non-indirect options.
3200 * Also set the default to the expanded value, so ":set" does not list
3201 * them.
3202 * Don't set the P_ALLOCED flag, because we don't want to free the
3203 * default.
3205 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
3207 if ((options[opt_idx].flags & P_GETTEXT)
3208 && options[opt_idx].var != NULL)
3209 p = (char_u *)_(*(char **)options[opt_idx].var);
3210 else
3211 p = option_expand(opt_idx, NULL);
3212 if (p != NULL && (p = vim_strsave(p)) != NULL)
3214 *(char_u **)options[opt_idx].var = p;
3215 /* VIMEXP
3216 * Defaults for all expanded options are currently the same for Vi
3217 * and Vim. When this changes, add some code here! Also need to
3218 * split P_DEF_ALLOCED in two.
3220 if (options[opt_idx].flags & P_DEF_ALLOCED)
3221 vim_free(options[opt_idx].def_val[VI_DEFAULT]);
3222 options[opt_idx].def_val[VI_DEFAULT] = p;
3223 options[opt_idx].flags |= P_DEF_ALLOCED;
3227 /* Initialize the highlight_attr[] table. */
3228 highlight_changed();
3230 save_file_ff(curbuf); /* Buffer is unchanged */
3232 /* Parse default for 'wildmode' */
3233 check_opt_wim();
3235 #if defined(FEAT_ARABIC)
3236 /* Detect use of mlterm.
3237 * Mlterm is a terminal emulator akin to xterm that has some special
3238 * abilities (bidi namely).
3239 * NOTE: mlterm's author is being asked to 'set' a variable
3240 * instead of an environment variable due to inheritance.
3242 if (mch_getenv((char_u *)"MLTERM") != NULL)
3243 set_option_value((char_u *)"tbidi", 1L, NULL, 0);
3244 #endif
3246 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
3247 /* Parse default for 'fillchars'. */
3248 (void)set_chars_option(&p_fcs);
3249 #endif
3251 #ifdef FEAT_CLIPBOARD
3252 /* Parse default for 'clipboard' */
3253 (void)check_clipboard_option();
3254 #endif
3256 #ifdef FEAT_MBYTE
3257 # if defined(WIN3264) && defined(FEAT_GETTEXT)
3259 * If $LANG isn't set, try to get a good value for it. This makes the
3260 * right language be used automatically. Don't do this for English.
3262 if (mch_getenv((char_u *)"LANG") == NULL)
3264 char buf[20];
3266 /* Could use LOCALE_SISO639LANGNAME, but it's not in Win95.
3267 * LOCALE_SABBREVLANGNAME gives us three letters, like "enu", we use
3268 * only the first two. */
3269 n = GetLocaleInfo(LOCALE_USER_DEFAULT, LOCALE_SABBREVLANGNAME,
3270 (LPTSTR)buf, 20);
3271 if (n >= 2 && STRNICMP(buf, "en", 2) != 0)
3273 /* There are a few exceptions (probably more) */
3274 if (STRNICMP(buf, "cht", 3) == 0 || STRNICMP(buf, "zht", 3) == 0)
3275 STRCPY(buf, "zh_TW");
3276 else if (STRNICMP(buf, "chs", 3) == 0
3277 || STRNICMP(buf, "zhc", 3) == 0)
3278 STRCPY(buf, "zh_CN");
3279 else if (STRNICMP(buf, "jp", 2) == 0)
3280 STRCPY(buf, "ja");
3281 else
3282 buf[2] = NUL; /* truncate to two-letter code */
3283 vim_setenv("LANG", buf);
3286 # else
3287 # ifdef MACOS_CONVERT
3288 if (mch_getenv((char_u *)"LANG") == NULL)
3290 char buf[20];
3291 if (LocaleRefGetPartString(NULL,
3292 kLocaleLanguageMask | kLocaleLanguageVariantMask |
3293 kLocaleRegionMask | kLocaleRegionVariantMask,
3294 sizeof buf, buf) == noErr && *buf)
3296 vim_setenv((char_u *)"LANG", (char_u *)buf);
3297 # ifdef HAVE_LOCALE_H
3298 setlocale(LC_ALL, "");
3299 # endif
3302 # endif
3303 # endif
3305 /* enc_locale() will try to find the encoding of the current locale. */
3306 p = enc_locale();
3307 if (p != NULL)
3309 char_u *save_enc;
3311 /* Try setting 'encoding' and check if the value is valid.
3312 * If not, go back to the default "latin1". */
3313 save_enc = p_enc;
3314 p_enc = p;
3315 if (STRCMP(p_enc, "gb18030") == 0)
3317 /* We don't support "gb18030", but "cp936" is a good substitute
3318 * for practical purposes, thus use that. It's not an alias to
3319 * still support conversion between gb18030 and utf-8. */
3320 p_enc = vim_strsave((char_u *)"cp936");
3321 vim_free(p);
3323 #if defined(FEAT_GUI_MACVIM)
3324 did_mb_init = (mb_init() == NULL);
3325 if (!did_mb_init)
3327 /* The encoding returned by enc_locale() was invalid, so fall back
3328 * on using utf-8 as the default encoding in MacVim. */
3329 vim_free(p_enc);
3330 p_enc = vim_strsave((char_u *)"utf-8");
3331 did_mb_init = (mb_init() == NULL);
3334 /* did_mb_init should always be TRUE, but check just in case. */
3335 if (did_mb_init)
3336 #else
3337 if (mb_init() == NULL)
3338 #endif
3340 opt_idx = findoption((char_u *)"encoding");
3341 if (opt_idx >= 0)
3343 options[opt_idx].def_val[VI_DEFAULT] = p_enc;
3344 options[opt_idx].flags |= P_DEF_ALLOCED;
3347 #if defined(MSDOS) || defined(MSWIN) || defined(OS2) || defined(MACOS) \
3348 || defined(VMS)
3349 if (STRCMP(p_enc, "latin1") == 0
3350 # ifdef FEAT_MBYTE
3351 || enc_utf8
3352 # endif
3355 /* Adjust the default for 'isprint' and 'iskeyword' to match
3356 * latin1. Also set the defaults for when 'nocompatible' is
3357 * set. */
3358 set_string_option_direct((char_u *)"isp", -1,
3359 ISP_LATIN1, OPT_FREE, SID_NONE);
3360 set_string_option_direct((char_u *)"isk", -1,
3361 ISK_LATIN1, OPT_FREE, SID_NONE);
3362 opt_idx = findoption((char_u *)"isp");
3363 if (opt_idx >= 0)
3364 options[opt_idx].def_val[VIM_DEFAULT] = ISP_LATIN1;
3365 opt_idx = findoption((char_u *)"isk");
3366 if (opt_idx >= 0)
3367 options[opt_idx].def_val[VIM_DEFAULT] = ISK_LATIN1;
3368 (void)init_chartab();
3370 #endif
3372 # if defined(WIN3264) && !defined(FEAT_GUI)
3373 /* Win32 console: When GetACP() returns a different value from
3374 * GetConsoleCP() set 'termencoding'. */
3375 if (GetACP() != GetConsoleCP())
3377 char buf[50];
3379 sprintf(buf, "cp%ld", (long)GetConsoleCP());
3380 p_tenc = vim_strsave((char_u *)buf);
3381 if (p_tenc != NULL)
3383 opt_idx = findoption((char_u *)"termencoding");
3384 if (opt_idx >= 0)
3386 options[opt_idx].def_val[VI_DEFAULT] = p_tenc;
3387 options[opt_idx].flags |= P_DEF_ALLOCED;
3389 convert_setup(&input_conv, p_tenc, p_enc);
3390 convert_setup(&output_conv, p_enc, p_tenc);
3392 else
3393 p_tenc = empty_option;
3395 # endif
3396 # if defined(WIN3264) && defined(FEAT_MBYTE)
3397 /* $HOME may have characters in active code page. */
3398 init_homedir();
3399 # endif
3401 else
3403 vim_free(p_enc);
3404 p_enc = save_enc;
3407 #endif
3409 #ifdef FEAT_MULTI_LANG
3410 /* Set the default for 'helplang'. */
3411 set_helplang_default(get_mess_lang());
3412 #endif
3416 * Set an option to its default value.
3417 * This does not take care of side effects!
3419 static void
3420 set_option_default(opt_idx, opt_flags, compatible)
3421 int opt_idx;
3422 int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */
3423 int compatible; /* use Vi default value */
3425 char_u *varp; /* pointer to variable for current option */
3426 int dvi; /* index in def_val[] */
3427 long_u flags;
3428 long_u *flagsp;
3429 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
3431 varp = get_varp_scope(&(options[opt_idx]), both ? OPT_LOCAL : opt_flags);
3432 flags = options[opt_idx].flags;
3433 if (varp != NULL) /* skip hidden option, nothing to do for it */
3435 dvi = ((flags & P_VI_DEF) || compatible) ? VI_DEFAULT : VIM_DEFAULT;
3436 if (flags & P_STRING)
3438 /* Use set_string_option_direct() for local options to handle
3439 * freeing and allocating the value. */
3440 if (options[opt_idx].indir != PV_NONE)
3441 set_string_option_direct(NULL, opt_idx,
3442 options[opt_idx].def_val[dvi], opt_flags, 0);
3443 else
3445 if ((opt_flags & OPT_FREE) && (flags & P_ALLOCED))
3446 free_string_option(*(char_u **)(varp));
3447 *(char_u **)varp = options[opt_idx].def_val[dvi];
3448 options[opt_idx].flags &= ~P_ALLOCED;
3451 else if (flags & P_NUM)
3453 if (options[opt_idx].indir == PV_SCROLL)
3454 win_comp_scroll(curwin);
3455 else
3457 *(long *)varp = (long)(long_i)options[opt_idx].def_val[dvi];
3458 /* May also set global value for local option. */
3459 if (both)
3460 *(long *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) =
3461 *(long *)varp;
3464 else /* P_BOOL */
3466 /* the cast to long is required for Manx C, long_i is needed for
3467 * MSVC */
3468 *(int *)varp = (int)(long)(long_i)options[opt_idx].def_val[dvi];
3469 #ifdef UNIX
3470 /* 'modeline' defaults to off for root */
3471 if (options[opt_idx].indir == PV_ML && getuid() == ROOT_UID)
3472 *(int *)varp = FALSE;
3473 #endif
3474 /* May also set global value for local option. */
3475 if (both)
3476 *(int *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) =
3477 *(int *)varp;
3480 /* The default value is not insecure. */
3481 flagsp = insecure_flag(opt_idx, opt_flags);
3482 *flagsp = *flagsp & ~P_INSECURE;
3485 #ifdef FEAT_EVAL
3486 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
3487 #endif
3491 * Set all options (except terminal options) to their default value.
3493 static void
3494 set_options_default(opt_flags)
3495 int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */
3497 int i;
3498 #ifdef FEAT_WINDOWS
3499 win_T *wp;
3500 tabpage_T *tp;
3501 #endif
3503 for (i = 0; !istermoption(&options[i]); i++)
3504 if (!(options[i].flags & P_NODEFAULT))
3505 set_option_default(i, opt_flags, p_cp);
3507 #ifdef FEAT_WINDOWS
3508 /* The 'scroll' option must be computed for all windows. */
3509 FOR_ALL_TAB_WINDOWS(tp, wp)
3510 win_comp_scroll(wp);
3511 #else
3512 win_comp_scroll(curwin);
3513 #endif
3517 * Set the Vi-default value of a string option.
3518 * Used for 'sh', 'backupskip' and 'term'.
3520 void
3521 set_string_default(name, val)
3522 char *name;
3523 char_u *val;
3525 char_u *p;
3526 int opt_idx;
3528 p = vim_strsave(val);
3529 if (p != NULL) /* we don't want a NULL */
3531 opt_idx = findoption((char_u *)name);
3532 if (opt_idx >= 0)
3534 if (options[opt_idx].flags & P_DEF_ALLOCED)
3535 vim_free(options[opt_idx].def_val[VI_DEFAULT]);
3536 options[opt_idx].def_val[VI_DEFAULT] = p;
3537 options[opt_idx].flags |= P_DEF_ALLOCED;
3543 * Set the Vi-default value of a number option.
3544 * Used for 'lines' and 'columns'.
3546 void
3547 set_number_default(name, val)
3548 char *name;
3549 long val;
3551 int opt_idx;
3553 opt_idx = findoption((char_u *)name);
3554 if (opt_idx >= 0)
3555 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
3558 #if defined(EXITFREE) || defined(PROTO)
3560 * Free all options.
3562 void
3563 free_all_options()
3565 int i;
3567 for (i = 0; !istermoption(&options[i]); i++)
3569 if (options[i].indir == PV_NONE)
3571 /* global option: free value and default value. */
3572 if (options[i].flags & P_ALLOCED && options[i].var != NULL)
3573 free_string_option(*(char_u **)options[i].var);
3574 if (options[i].flags & P_DEF_ALLOCED)
3575 free_string_option(options[i].def_val[VI_DEFAULT]);
3577 else if (options[i].var != VAR_WIN
3578 && (options[i].flags & P_STRING))
3579 /* buffer-local option: free global value */
3580 free_string_option(*(char_u **)options[i].var);
3583 #endif
3587 * Initialize the options, part two: After getting Rows and Columns and
3588 * setting 'term'.
3590 void
3591 set_init_2()
3593 int idx;
3596 * 'scroll' defaults to half the window height. Note that this default is
3597 * wrong when the window height changes.
3599 set_number_default("scroll", (long)((long_u)Rows >> 1));
3600 idx = findoption((char_u *)"scroll");
3601 if (idx >= 0 && !(options[idx].flags & P_WAS_SET))
3602 set_option_default(idx, OPT_LOCAL, p_cp);
3603 comp_col();
3606 * 'window' is only for backwards compatibility with Vi.
3607 * Default is Rows - 1.
3609 if (!option_was_set((char_u *)"window"))
3610 p_window = Rows - 1;
3611 set_number_default("window", Rows - 1);
3613 /* For DOS console the default is always black. */
3614 #if !((defined(MSDOS) || defined(OS2) || defined(WIN3264)) && !defined(FEAT_GUI))
3616 * If 'background' wasn't set by the user, try guessing the value,
3617 * depending on the terminal name. Only need to check for terminals
3618 * with a dark background, that can handle color.
3620 idx = findoption((char_u *)"bg");
3621 if (idx >= 0 && !(options[idx].flags & P_WAS_SET)
3622 && *term_bg_default() == 'd')
3624 set_string_option_direct(NULL, idx, (char_u *)"dark", OPT_FREE, 0);
3625 /* don't mark it as set, when starting the GUI it may be
3626 * changed again */
3627 options[idx].flags &= ~P_WAS_SET;
3629 #endif
3631 #ifdef CURSOR_SHAPE
3632 parse_shape_opt(SHAPE_CURSOR); /* set cursor shapes from 'guicursor' */
3633 #endif
3634 #ifdef FEAT_MOUSESHAPE
3635 parse_shape_opt(SHAPE_MOUSE); /* set mouse shapes from 'mouseshape' */
3636 #endif
3637 #ifdef FEAT_PRINTER
3638 (void)parse_printoptions(); /* parse 'printoptions' default value */
3639 #endif
3643 * Return "dark" or "light" depending on the kind of terminal.
3644 * This is just guessing! Recognized are:
3645 * "linux" Linux console
3646 * "screen.linux" Linux console with screen
3647 * "cygwin" Cygwin shell
3648 * "putty" Putty program
3649 * We also check the COLORFGBG environment variable, which is set by
3650 * rxvt and derivatives. This variable contains either two or three
3651 * values separated by semicolons; we want the last value in either
3652 * case. If this value is 0-6 or 8, our background is dark.
3654 static char_u *
3655 term_bg_default()
3657 #if defined(MSDOS) || defined(OS2) || defined(WIN3264)
3658 /* DOS console nearly always black */
3659 return (char_u *)"dark";
3660 #else
3661 char_u *p;
3663 if (STRCMP(T_NAME, "linux") == 0
3664 || STRCMP(T_NAME, "screen.linux") == 0
3665 || STRCMP(T_NAME, "cygwin") == 0
3666 || STRCMP(T_NAME, "putty") == 0
3667 || ((p = mch_getenv((char_u *)"COLORFGBG")) != NULL
3668 && (p = vim_strrchr(p, ';')) != NULL
3669 && ((p[1] >= '0' && p[1] <= '6') || p[1] == '8')
3670 && p[2] == NUL))
3671 return (char_u *)"dark";
3672 return (char_u *)"light";
3673 #endif
3677 * Initialize the options, part three: After reading the .vimrc
3679 void
3680 set_init_3()
3682 #if defined(UNIX) || defined(OS2) || defined(WIN3264)
3684 * Set 'shellpipe' and 'shellredir', depending on the 'shell' option.
3685 * This is done after other initializations, where 'shell' might have been
3686 * set, but only if they have not been set before.
3688 char_u *p;
3689 int idx_srr;
3690 int do_srr;
3691 #ifdef FEAT_QUICKFIX
3692 int idx_sp;
3693 int do_sp;
3694 #endif
3696 idx_srr = findoption((char_u *)"srr");
3697 if (idx_srr < 0)
3698 do_srr = FALSE;
3699 else
3700 do_srr = !(options[idx_srr].flags & P_WAS_SET);
3701 #ifdef FEAT_QUICKFIX
3702 idx_sp = findoption((char_u *)"sp");
3703 if (idx_sp < 0)
3704 do_sp = FALSE;
3705 else
3706 do_sp = !(options[idx_sp].flags & P_WAS_SET);
3707 #endif
3710 * Isolate the name of the shell:
3711 * - Skip beyond any path. E.g., "/usr/bin/csh -f" -> "csh -f".
3712 * - Remove any argument. E.g., "csh -f" -> "csh".
3714 p = gettail(p_sh);
3715 p = vim_strnsave(p, (int)(skiptowhite(p) - p));
3716 if (p != NULL)
3719 * Default for p_sp is "| tee", for p_srr is ">".
3720 * For known shells it is changed here to include stderr.
3722 if ( fnamecmp(p, "csh") == 0
3723 || fnamecmp(p, "tcsh") == 0
3724 # if defined(OS2) || defined(WIN3264) /* also check with .exe extension */
3725 || fnamecmp(p, "csh.exe") == 0
3726 || fnamecmp(p, "tcsh.exe") == 0
3727 # endif
3730 #if defined(FEAT_QUICKFIX)
3731 if (do_sp)
3733 # ifdef WIN3264
3734 p_sp = (char_u *)">&";
3735 # else
3736 p_sp = (char_u *)"|& tee";
3737 # endif
3738 options[idx_sp].def_val[VI_DEFAULT] = p_sp;
3740 #endif
3741 if (do_srr)
3743 p_srr = (char_u *)">&";
3744 options[idx_srr].def_val[VI_DEFAULT] = p_srr;
3747 else
3748 # ifndef OS2 /* Always use bourne shell style redirection if we reach this */
3749 if ( fnamecmp(p, "sh") == 0
3750 || fnamecmp(p, "ksh") == 0
3751 || fnamecmp(p, "zsh") == 0
3752 || fnamecmp(p, "zsh-beta") == 0
3753 || fnamecmp(p, "bash") == 0
3754 # ifdef WIN3264
3755 || fnamecmp(p, "cmd") == 0
3756 || fnamecmp(p, "sh.exe") == 0
3757 || fnamecmp(p, "ksh.exe") == 0
3758 || fnamecmp(p, "zsh.exe") == 0
3759 || fnamecmp(p, "zsh-beta.exe") == 0
3760 || fnamecmp(p, "bash.exe") == 0
3761 || fnamecmp(p, "cmd.exe") == 0
3762 # endif
3764 # endif
3766 #if defined(FEAT_QUICKFIX)
3767 if (do_sp)
3769 # ifdef WIN3264
3770 p_sp = (char_u *)">%s 2>&1";
3771 # else
3772 p_sp = (char_u *)"2>&1| tee";
3773 # endif
3774 options[idx_sp].def_val[VI_DEFAULT] = p_sp;
3776 #endif
3777 if (do_srr)
3779 p_srr = (char_u *)">%s 2>&1";
3780 options[idx_srr].def_val[VI_DEFAULT] = p_srr;
3783 vim_free(p);
3785 #endif
3787 #if defined(MSDOS) || defined(WIN3264) || defined(OS2)
3789 * Set 'shellcmdflag and 'shellquote' depending on the 'shell' option.
3790 * This is done after other initializations, where 'shell' might have been
3791 * set, but only if they have not been set before. Default for p_shcf is
3792 * "/c", for p_shq is "". For "sh" like shells it is changed here to
3793 * "-c" and "\"", but not for DJGPP, because it starts the shell without
3794 * command.com. And for Win32 we need to set p_sxq instead.
3796 if (strstr((char *)gettail(p_sh), "sh") != NULL)
3798 int idx3;
3800 idx3 = findoption((char_u *)"shcf");
3801 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
3803 p_shcf = (char_u *)"-c";
3804 options[idx3].def_val[VI_DEFAULT] = p_shcf;
3807 # ifndef DJGPP
3808 # ifdef WIN3264
3809 /* Somehow Win32 requires the quotes around the redirection too */
3810 idx3 = findoption((char_u *)"sxq");
3811 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
3813 p_sxq = (char_u *)"\"";
3814 options[idx3].def_val[VI_DEFAULT] = p_sxq;
3816 # else
3817 idx3 = findoption((char_u *)"shq");
3818 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
3820 p_shq = (char_u *)"\"";
3821 options[idx3].def_val[VI_DEFAULT] = p_shq;
3823 # endif
3824 # endif
3826 #endif
3828 #ifdef FEAT_TITLE
3829 set_title_defaults();
3830 #endif
3833 #if defined(FEAT_MULTI_LANG) || defined(PROTO)
3835 * When 'helplang' is still at its default value, set it to "lang".
3836 * Only the first two characters of "lang" are used.
3838 void
3839 set_helplang_default(lang)
3840 char_u *lang;
3842 int idx;
3844 if (lang == NULL || STRLEN(lang) < 2) /* safety check */
3845 return;
3846 idx = findoption((char_u *)"hlg");
3847 if (idx >= 0 && !(options[idx].flags & P_WAS_SET))
3849 if (options[idx].flags & P_ALLOCED)
3850 free_string_option(p_hlg);
3851 p_hlg = vim_strsave(lang);
3852 if (p_hlg == NULL)
3853 p_hlg = empty_option;
3854 else
3856 /* zh_CN becomes "cn", zh_TW becomes "tw". */
3857 if (STRNICMP(p_hlg, "zh_", 3) == 0 && STRLEN(p_hlg) >= 5)
3859 p_hlg[0] = TOLOWER_ASC(p_hlg[3]);
3860 p_hlg[1] = TOLOWER_ASC(p_hlg[4]);
3862 p_hlg[2] = NUL;
3864 options[idx].flags |= P_ALLOCED;
3867 #endif
3869 #ifdef FEAT_GUI
3870 static char_u *gui_bg_default __ARGS((void));
3872 static char_u *
3873 gui_bg_default()
3875 if (gui_get_lightness(gui.back_pixel) < 127)
3876 return (char_u *)"dark";
3877 return (char_u *)"light";
3881 * Option initializations that can only be done after opening the GUI window.
3883 void
3884 init_gui_options()
3886 /* Set the 'background' option according to the lightness of the
3887 * background color, unless the user has set it already. */
3888 if (!option_was_set((char_u *)"bg") && STRCMP(p_bg, gui_bg_default()) != 0)
3890 set_option_value((char_u *)"bg", 0L, gui_bg_default(), 0);
3891 highlight_changed();
3894 #endif
3896 #ifdef FEAT_TITLE
3898 * 'title' and 'icon' only default to true if they have not been set or reset
3899 * in .vimrc and we can read the old value.
3900 * When 'title' and 'icon' have been reset in .vimrc, we won't even check if
3901 * they can be reset. This reduces startup time when using X on a remote
3902 * machine.
3904 void
3905 set_title_defaults()
3907 int idx1;
3908 long val;
3911 * If GUI is (going to be) used, we can always set the window title and
3912 * icon name. Saves a bit of time, because the X11 display server does
3913 * not need to be contacted.
3915 idx1 = findoption((char_u *)"title");
3916 if (idx1 >= 0 && !(options[idx1].flags & P_WAS_SET))
3918 #ifdef FEAT_GUI
3919 if (gui.starting || gui.in_use)
3920 val = TRUE;
3921 else
3922 #endif
3923 val = mch_can_restore_title();
3924 options[idx1].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
3925 p_title = val;
3927 idx1 = findoption((char_u *)"icon");
3928 if (idx1 >= 0 && !(options[idx1].flags & P_WAS_SET))
3930 #ifdef FEAT_GUI
3931 if (gui.starting || gui.in_use)
3932 val = TRUE;
3933 else
3934 #endif
3935 val = mch_can_restore_icon();
3936 options[idx1].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
3937 p_icon = val;
3940 #endif
3943 * Parse 'arg' for option settings.
3945 * 'arg' may be IObuff, but only when no errors can be present and option
3946 * does not need to be expanded with option_expand().
3947 * "opt_flags":
3948 * 0 for ":set"
3949 * OPT_GLOBAL for ":setglobal"
3950 * OPT_LOCAL for ":setlocal" and a modeline
3951 * OPT_MODELINE for a modeline
3952 * OPT_WINONLY to only set window-local options
3953 * OPT_NOWIN to skip setting window-local options
3955 * returns FAIL if an error is detected, OK otherwise
3958 do_set(arg, opt_flags)
3959 char_u *arg; /* option string (may be written to!) */
3960 int opt_flags;
3962 int opt_idx;
3963 char_u *errmsg;
3964 char_u errbuf[80];
3965 char_u *startarg;
3966 int prefix; /* 1: nothing, 0: "no", 2: "inv" in front of name */
3967 int nextchar; /* next non-white char after option name */
3968 int afterchar; /* character just after option name */
3969 int len;
3970 int i;
3971 long value;
3972 int key;
3973 long_u flags; /* flags for current option */
3974 char_u *varp = NULL; /* pointer to variable for current option */
3975 int did_show = FALSE; /* already showed one value */
3976 int adding; /* "opt+=arg" */
3977 int prepending; /* "opt^=arg" */
3978 int removing; /* "opt-=arg" */
3979 int cp_val = 0;
3980 char_u key_name[2];
3982 if (*arg == NUL)
3984 showoptions(0, opt_flags);
3985 did_show = TRUE;
3986 goto theend;
3989 while (*arg != NUL) /* loop to process all options */
3991 errmsg = NULL;
3992 startarg = arg; /* remember for error message */
3994 if (STRNCMP(arg, "all", 3) == 0 && !isalpha(arg[3])
3995 && !(opt_flags & OPT_MODELINE))
3998 * ":set all" show all options.
3999 * ":set all&" set all options to their default value.
4001 arg += 3;
4002 if (*arg == '&')
4004 ++arg;
4005 /* Only for :set command set global value of local options. */
4006 set_options_default(OPT_FREE | opt_flags);
4008 else
4010 showoptions(1, opt_flags);
4011 did_show = TRUE;
4014 else if (STRNCMP(arg, "termcap", 7) == 0 && !(opt_flags & OPT_MODELINE))
4016 showoptions(2, opt_flags);
4017 show_termcodes();
4018 did_show = TRUE;
4019 arg += 7;
4021 else
4023 prefix = 1;
4024 if (STRNCMP(arg, "no", 2) == 0)
4026 prefix = 0;
4027 arg += 2;
4029 else if (STRNCMP(arg, "inv", 3) == 0)
4031 prefix = 2;
4032 arg += 3;
4035 /* find end of name */
4036 key = 0;
4037 if (*arg == '<')
4039 nextchar = 0;
4040 opt_idx = -1;
4041 /* look out for <t_>;> */
4042 if (arg[1] == 't' && arg[2] == '_' && arg[3] && arg[4])
4043 len = 5;
4044 else
4046 len = 1;
4047 while (arg[len] != NUL && arg[len] != '>')
4048 ++len;
4050 if (arg[len] != '>')
4052 errmsg = e_invarg;
4053 goto skip;
4055 arg[len] = NUL; /* put NUL after name */
4056 if (arg[1] == 't' && arg[2] == '_') /* could be term code */
4057 opt_idx = findoption(arg + 1);
4058 arg[len++] = '>'; /* restore '>' */
4059 if (opt_idx == -1)
4060 key = find_key_option(arg + 1);
4062 else
4064 len = 0;
4066 * The two characters after "t_" may not be alphanumeric.
4068 if (arg[0] == 't' && arg[1] == '_' && arg[2] && arg[3])
4069 len = 4;
4070 else
4071 while (ASCII_ISALNUM(arg[len]) || arg[len] == '_')
4072 ++len;
4073 nextchar = arg[len];
4074 arg[len] = NUL; /* put NUL after name */
4075 opt_idx = findoption(arg);
4076 arg[len] = nextchar; /* restore nextchar */
4077 if (opt_idx == -1)
4078 key = find_key_option(arg);
4081 /* remember character after option name */
4082 afterchar = arg[len];
4084 /* skip white space, allow ":set ai ?" */
4085 while (vim_iswhite(arg[len]))
4086 ++len;
4088 adding = FALSE;
4089 prepending = FALSE;
4090 removing = FALSE;
4091 if (arg[len] != NUL && arg[len + 1] == '=')
4093 if (arg[len] == '+')
4095 adding = TRUE; /* "+=" */
4096 ++len;
4098 else if (arg[len] == '^')
4100 prepending = TRUE; /* "^=" */
4101 ++len;
4103 else if (arg[len] == '-')
4105 removing = TRUE; /* "-=" */
4106 ++len;
4109 nextchar = arg[len];
4111 if (opt_idx == -1 && key == 0) /* found a mismatch: skip */
4113 errmsg = (char_u *)N_("E518: Unknown option");
4114 goto skip;
4117 if (opt_idx >= 0)
4119 if (options[opt_idx].var == NULL) /* hidden option: skip */
4121 /* Only give an error message when requesting the value of
4122 * a hidden option, ignore setting it. */
4123 if (vim_strchr((char_u *)"=:!&<", nextchar) == NULL
4124 && (!(options[opt_idx].flags & P_BOOL)
4125 || nextchar == '?'))
4126 errmsg = (char_u *)N_("E519: Option not supported");
4127 goto skip;
4130 flags = options[opt_idx].flags;
4131 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
4133 else
4135 flags = P_STRING;
4136 if (key < 0)
4138 key_name[0] = KEY2TERMCAP0(key);
4139 key_name[1] = KEY2TERMCAP1(key);
4141 else
4143 key_name[0] = KS_KEY;
4144 key_name[1] = (key & 0xff);
4148 /* Skip all options that are not window-local (used when showing
4149 * an already loaded buffer in a window). */
4150 if ((opt_flags & OPT_WINONLY)
4151 && (opt_idx < 0 || options[opt_idx].var != VAR_WIN))
4152 goto skip;
4154 /* Skip all options that are window-local (used for :vimgrep). */
4155 if ((opt_flags & OPT_NOWIN) && opt_idx >= 0
4156 && options[opt_idx].var == VAR_WIN)
4157 goto skip;
4159 /* Disallow changing some options from modelines */
4160 if ((opt_flags & OPT_MODELINE) && (flags & P_SECURE))
4162 errmsg = (char_u *)_("E520: Not allowed in a modeline");
4163 goto skip;
4166 #ifdef HAVE_SANDBOX
4167 /* Disallow changing some options in the sandbox */
4168 if (sandbox != 0 && (flags & P_SECURE))
4170 errmsg = (char_u *)_(e_sandbox);
4171 goto skip;
4173 #endif
4175 if (vim_strchr((char_u *)"?=:!&<", nextchar) != NULL)
4177 arg += len;
4178 cp_val = p_cp;
4179 if (nextchar == '&' && arg[1] == 'v' && arg[2] == 'i')
4181 if (arg[3] == 'm') /* "opt&vim": set to Vim default */
4183 cp_val = FALSE;
4184 arg += 3;
4186 else /* "opt&vi": set to Vi default */
4188 cp_val = TRUE;
4189 arg += 2;
4192 if (vim_strchr((char_u *)"?!&<", nextchar) != NULL
4193 && arg[1] != NUL && !vim_iswhite(arg[1]))
4195 errmsg = e_trailing;
4196 goto skip;
4201 * allow '=' and ':' as MSDOS command.com allows only one
4202 * '=' character per "set" command line. grrr. (jw)
4204 if (nextchar == '?'
4205 || (prefix == 1
4206 && vim_strchr((char_u *)"=:&<", nextchar) == NULL
4207 && !(flags & P_BOOL)))
4210 * print value
4212 if (did_show)
4213 msg_putchar('\n'); /* cursor below last one */
4214 else
4216 gotocmdline(TRUE); /* cursor at status line */
4217 did_show = TRUE; /* remember that we did a line */
4219 if (opt_idx >= 0)
4221 showoneopt(&options[opt_idx], opt_flags);
4222 #ifdef FEAT_EVAL
4223 if (p_verbose > 0)
4225 /* Mention where the option was last set. */
4226 if (varp == options[opt_idx].var)
4227 last_set_msg(options[opt_idx].scriptID);
4228 else if ((int)options[opt_idx].indir & PV_WIN)
4229 last_set_msg(curwin->w_p_scriptID[
4230 (int)options[opt_idx].indir & PV_MASK]);
4231 else if ((int)options[opt_idx].indir & PV_BUF)
4232 last_set_msg(curbuf->b_p_scriptID[
4233 (int)options[opt_idx].indir & PV_MASK]);
4235 #endif
4237 else
4239 char_u *p;
4241 p = find_termcode(key_name);
4242 if (p == NULL)
4244 errmsg = (char_u *)N_("E518: Unknown option");
4245 goto skip;
4247 else
4248 (void)show_one_termcode(key_name, p, TRUE);
4250 if (nextchar != '?'
4251 && nextchar != NUL && !vim_iswhite(afterchar))
4252 errmsg = e_trailing;
4254 else
4256 if (flags & P_BOOL) /* boolean */
4258 if (nextchar == '=' || nextchar == ':')
4260 errmsg = e_invarg;
4261 goto skip;
4265 * ":set opt!": invert
4266 * ":set opt&": reset to default value
4267 * ":set opt<": reset to global value
4269 if (nextchar == '!')
4270 value = *(int *)(varp) ^ 1;
4271 else if (nextchar == '&')
4272 value = (int)(long)(long_i)options[opt_idx].def_val[
4273 ((flags & P_VI_DEF) || cp_val)
4274 ? VI_DEFAULT : VIM_DEFAULT];
4275 else if (nextchar == '<')
4277 /* For 'autoread' -1 means to use global value. */
4278 if ((int *)varp == &curbuf->b_p_ar
4279 && opt_flags == OPT_LOCAL)
4280 value = -1;
4281 else
4282 value = *(int *)get_varp_scope(&(options[opt_idx]),
4283 OPT_GLOBAL);
4285 else
4288 * ":set invopt": invert
4289 * ":set opt" or ":set noopt": set or reset
4291 if (nextchar != NUL && !vim_iswhite(afterchar))
4293 errmsg = e_trailing;
4294 goto skip;
4296 if (prefix == 2) /* inv */
4297 value = *(int *)(varp) ^ 1;
4298 else
4299 value = prefix;
4302 errmsg = set_bool_option(opt_idx, varp, (int)value,
4303 opt_flags);
4305 else /* numeric or string */
4307 if (vim_strchr((char_u *)"=:&<", nextchar) == NULL
4308 || prefix != 1)
4310 errmsg = e_invarg;
4311 goto skip;
4314 if (flags & P_NUM) /* numeric */
4317 * Different ways to set a number option:
4318 * & set to default value
4319 * < set to global value
4320 * <xx> accept special key codes for 'wildchar'
4321 * c accept any non-digit for 'wildchar'
4322 * [-]0-9 set number
4323 * other error
4325 ++arg;
4326 if (nextchar == '&')
4327 value = (long)(long_i)options[opt_idx].def_val[
4328 ((flags & P_VI_DEF) || cp_val)
4329 ? VI_DEFAULT : VIM_DEFAULT];
4330 else if (nextchar == '<')
4331 value = *(long *)get_varp_scope(&(options[opt_idx]),
4332 OPT_GLOBAL);
4333 else if (((long *)varp == &p_wc
4334 || (long *)varp == &p_wcm)
4335 && (*arg == '<'
4336 || *arg == '^'
4337 || ((!arg[1] || vim_iswhite(arg[1]))
4338 && !VIM_ISDIGIT(*arg))))
4340 value = string_to_key(arg);
4341 if (value == 0 && (long *)varp != &p_wcm)
4343 errmsg = e_invarg;
4344 goto skip;
4347 /* allow negative numbers (for 'undolevels') */
4348 else if (*arg == '-' || VIM_ISDIGIT(*arg))
4350 i = 0;
4351 if (*arg == '-')
4352 i = 1;
4353 #ifdef HAVE_STRTOL
4354 value = strtol((char *)arg, NULL, 0);
4355 if (arg[i] == '0' && TOLOWER_ASC(arg[i + 1]) == 'x')
4356 i += 2;
4357 #else
4358 value = atol((char *)arg);
4359 #endif
4360 while (VIM_ISDIGIT(arg[i]))
4361 ++i;
4362 if (arg[i] != NUL && !vim_iswhite(arg[i]))
4364 errmsg = e_invarg;
4365 goto skip;
4368 else
4370 errmsg = (char_u *)N_("E521: Number required after =");
4371 goto skip;
4374 if (adding)
4375 value = *(long *)varp + value;
4376 if (prepending)
4377 value = *(long *)varp * value;
4378 if (removing)
4379 value = *(long *)varp - value;
4380 errmsg = set_num_option(opt_idx, varp, value,
4381 errbuf, sizeof(errbuf), opt_flags);
4383 else if (opt_idx >= 0) /* string */
4385 char_u *save_arg = NULL;
4386 char_u *s = NULL;
4387 char_u *oldval; /* previous value if *varp */
4388 char_u *newval;
4389 char_u *origval;
4390 unsigned newlen;
4391 int comma;
4392 int bs;
4393 int new_value_alloced; /* new string option
4394 was allocated */
4396 /* When using ":set opt=val" for a global option
4397 * with a local value the local value will be
4398 * reset, use the global value here. */
4399 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
4400 && ((int)options[opt_idx].indir & PV_BOTH))
4401 varp = options[opt_idx].var;
4403 /* The old value is kept until we are sure that the
4404 * new value is valid. */
4405 oldval = *(char_u **)varp;
4406 if (nextchar == '&') /* set to default val */
4408 newval = options[opt_idx].def_val[
4409 ((flags & P_VI_DEF) || cp_val)
4410 ? VI_DEFAULT : VIM_DEFAULT];
4411 if ((char_u **)varp == &p_bg)
4413 /* guess the value of 'background' */
4414 #ifdef FEAT_GUI
4415 if (gui.in_use)
4416 newval = gui_bg_default();
4417 else
4418 #endif
4419 newval = term_bg_default();
4422 /* expand environment variables and ~ (since the
4423 * default value was already expanded, only
4424 * required when an environment variable was set
4425 * later */
4426 if (newval == NULL)
4427 newval = empty_option;
4428 else
4430 s = option_expand(opt_idx, newval);
4431 if (s == NULL)
4432 s = newval;
4433 newval = vim_strsave(s);
4435 new_value_alloced = TRUE;
4437 else if (nextchar == '<') /* set to global val */
4439 newval = vim_strsave(*(char_u **)get_varp_scope(
4440 &(options[opt_idx]), OPT_GLOBAL));
4441 new_value_alloced = TRUE;
4443 else
4445 ++arg; /* jump to after the '=' or ':' */
4448 * Set 'keywordprg' to ":help" if an empty
4449 * value was passed to :set by the user.
4450 * Misuse errbuf[] for the resulting string.
4452 if (varp == (char_u *)&p_kp
4453 && (*arg == NUL || *arg == ' '))
4455 STRCPY(errbuf, ":help");
4456 save_arg = arg;
4457 arg = errbuf;
4460 * Convert 'whichwrap' number to string, for
4461 * backwards compatibility with Vim 3.0.
4462 * Misuse errbuf[] for the resulting string.
4464 else if (varp == (char_u *)&p_ww
4465 && VIM_ISDIGIT(*arg))
4467 *errbuf = NUL;
4468 i = getdigits(&arg);
4469 if (i & 1)
4470 STRCAT(errbuf, "b,");
4471 if (i & 2)
4472 STRCAT(errbuf, "s,");
4473 if (i & 4)
4474 STRCAT(errbuf, "h,l,");
4475 if (i & 8)
4476 STRCAT(errbuf, "<,>,");
4477 if (i & 16)
4478 STRCAT(errbuf, "[,],");
4479 if (*errbuf != NUL) /* remove trailing , */
4480 errbuf[STRLEN(errbuf) - 1] = NUL;
4481 save_arg = arg;
4482 arg = errbuf;
4485 * Remove '>' before 'dir' and 'bdir', for
4486 * backwards compatibility with version 3.0
4488 else if ( *arg == '>'
4489 && (varp == (char_u *)&p_dir
4490 || varp == (char_u *)&p_bdir))
4492 ++arg;
4495 /* When setting the local value of a global
4496 * option, the old value may be the global value. */
4497 if (((int)options[opt_idx].indir & PV_BOTH)
4498 && (opt_flags & OPT_LOCAL))
4499 origval = *(char_u **)get_varp(
4500 &options[opt_idx]);
4501 else
4502 origval = oldval;
4505 * Copy the new string into allocated memory.
4506 * Can't use set_string_option_direct(), because
4507 * we need to remove the backslashes.
4509 /* get a bit too much */
4510 newlen = (unsigned)STRLEN(arg) + 1;
4511 if (adding || prepending || removing)
4512 newlen += (unsigned)STRLEN(origval) + 1;
4513 newval = alloc(newlen);
4514 if (newval == NULL) /* out of mem, don't change */
4515 break;
4516 s = newval;
4519 * Copy the string, skip over escaped chars.
4520 * For MS-DOS and WIN32 backslashes before normal
4521 * file name characters are not removed, and keep
4522 * backslash at start, for "\\machine\path", but
4523 * do remove it for "\\\\machine\\path".
4524 * The reverse is found in ExpandOldSetting().
4526 while (*arg && !vim_iswhite(*arg))
4528 if (*arg == '\\' && arg[1] != NUL
4529 #ifdef BACKSLASH_IN_FILENAME
4530 && !((flags & P_EXPAND)
4531 && vim_isfilec(arg[1])
4532 && (arg[1] != '\\'
4533 || (s == newval
4534 && arg[2] != '\\')))
4535 #endif
4537 ++arg; /* remove backslash */
4538 #ifdef FEAT_MBYTE
4539 if (has_mbyte
4540 && (i = (*mb_ptr2len)(arg)) > 1)
4542 /* copy multibyte char */
4543 mch_memmove(s, arg, (size_t)i);
4544 arg += i;
4545 s += i;
4547 else
4548 #endif
4549 *s++ = *arg++;
4551 *s = NUL;
4554 * Expand environment variables and ~.
4555 * Don't do it when adding without inserting a
4556 * comma.
4558 if (!(adding || prepending || removing)
4559 || (flags & P_COMMA))
4561 s = option_expand(opt_idx, newval);
4562 if (s != NULL)
4564 vim_free(newval);
4565 newlen = (unsigned)STRLEN(s) + 1;
4566 if (adding || prepending || removing)
4567 newlen += (unsigned)STRLEN(origval) + 1;
4568 newval = alloc(newlen);
4569 if (newval == NULL)
4570 break;
4571 STRCPY(newval, s);
4575 /* locate newval[] in origval[] when removing it
4576 * and when adding to avoid duplicates */
4577 i = 0; /* init for GCC */
4578 if (removing || (flags & P_NODUP))
4580 i = (int)STRLEN(newval);
4581 bs = 0;
4582 for (s = origval; *s; ++s)
4584 if ((!(flags & P_COMMA)
4585 || s == origval
4586 || (s[-1] == ',' && !(bs & 1)))
4587 && STRNCMP(s, newval, i) == 0
4588 && (!(flags & P_COMMA)
4589 || s[i] == ','
4590 || s[i] == NUL))
4591 break;
4592 /* Count backspaces. Only a comma with an
4593 * even number of backspaces before it is
4594 * recognized as a separator */
4595 if (s > origval && s[-1] == '\\')
4596 ++bs;
4597 else
4598 bs = 0;
4601 /* do not add if already there */
4602 if ((adding || prepending) && *s)
4604 prepending = FALSE;
4605 adding = FALSE;
4606 STRCPY(newval, origval);
4610 /* concatenate the two strings; add a ',' if
4611 * needed */
4612 if (adding || prepending)
4614 comma = ((flags & P_COMMA) && *origval != NUL
4615 && *newval != NUL);
4616 if (adding)
4618 i = (int)STRLEN(origval);
4619 mch_memmove(newval + i + comma, newval,
4620 STRLEN(newval) + 1);
4621 mch_memmove(newval, origval, (size_t)i);
4623 else
4625 i = (int)STRLEN(newval);
4626 mch_memmove(newval + i + comma, origval,
4627 STRLEN(origval) + 1);
4629 if (comma)
4630 newval[i] = ',';
4633 /* Remove newval[] from origval[]. (Note: "i" has
4634 * been set above and is used here). */
4635 if (removing)
4637 STRCPY(newval, origval);
4638 if (*s)
4640 /* may need to remove a comma */
4641 if (flags & P_COMMA)
4643 if (s == origval)
4645 /* include comma after string */
4646 if (s[i] == ',')
4647 ++i;
4649 else
4651 /* include comma before string */
4652 --s;
4653 ++i;
4656 mch_memmove(newval + (s - origval), s + i,
4657 STRLEN(s + i) + 1);
4661 if (flags & P_FLAGLIST)
4663 /* Remove flags that appear twice. */
4664 for (s = newval; *s; ++s)
4665 if ((!(flags & P_COMMA) || *s != ',')
4666 && vim_strchr(s + 1, *s) != NULL)
4668 mch_memmove(s, s + 1, STRLEN(s));
4669 --s;
4673 if (save_arg != NULL) /* number for 'whichwrap' */
4674 arg = save_arg;
4675 new_value_alloced = TRUE;
4678 /* Set the new value. */
4679 *(char_u **)(varp) = newval;
4681 /* Handle side effects, and set the global value for
4682 * ":set" on local options. */
4683 errmsg = did_set_string_option(opt_idx, (char_u **)varp,
4684 new_value_alloced, oldval, errbuf, opt_flags);
4686 /* If error detected, print the error message. */
4687 if (errmsg != NULL)
4688 goto skip;
4690 else /* key code option */
4692 char_u *p;
4694 if (nextchar == '&')
4696 if (add_termcap_entry(key_name, TRUE) == FAIL)
4697 errmsg = (char_u *)N_("E522: Not found in termcap");
4699 else
4701 ++arg; /* jump to after the '=' or ':' */
4702 for (p = arg; *p && !vim_iswhite(*p); ++p)
4703 if (*p == '\\' && p[1] != NUL)
4704 ++p;
4705 nextchar = *p;
4706 *p = NUL;
4707 add_termcode(key_name, arg, FALSE);
4708 *p = nextchar;
4710 if (full_screen)
4711 ttest(FALSE);
4712 redraw_all_later(CLEAR);
4716 if (opt_idx >= 0)
4717 did_set_option(opt_idx, opt_flags,
4718 !prepending && !adding && !removing);
4721 skip:
4723 * Advance to next argument.
4724 * - skip until a blank found, taking care of backslashes
4725 * - skip blanks
4726 * - skip one "=val" argument (for hidden options ":set gfn =xx")
4728 for (i = 0; i < 2 ; ++i)
4730 while (*arg != NUL && !vim_iswhite(*arg))
4731 if (*arg++ == '\\' && *arg != NUL)
4732 ++arg;
4733 arg = skipwhite(arg);
4734 if (*arg != '=')
4735 break;
4739 if (errmsg != NULL)
4741 vim_strncpy(IObuff, (char_u *)_(errmsg), IOSIZE - 1);
4742 i = (int)STRLEN(IObuff) + 2;
4743 if (i + (arg - startarg) < IOSIZE)
4745 /* append the argument with the error */
4746 STRCAT(IObuff, ": ");
4747 mch_memmove(IObuff + i, startarg, (arg - startarg));
4748 IObuff[i + (arg - startarg)] = NUL;
4750 /* make sure all characters are printable */
4751 trans_characters(IObuff, IOSIZE);
4753 ++no_wait_return; /* wait_return done later */
4754 emsg(IObuff); /* show error highlighted */
4755 --no_wait_return;
4757 return FAIL;
4760 arg = skipwhite(arg);
4763 theend:
4764 if (silent_mode && did_show)
4766 /* After displaying option values in silent mode. */
4767 silent_mode = FALSE;
4768 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
4769 msg_putchar('\n');
4770 cursor_on(); /* msg_start() switches it off */
4771 out_flush();
4772 silent_mode = TRUE;
4773 info_message = FALSE; /* use mch_msg(), not mch_errmsg() */
4776 return OK;
4780 * Call this when an option has been given a new value through a user command.
4781 * Sets the P_WAS_SET flag and takes care of the P_INSECURE flag.
4783 static void
4784 did_set_option(opt_idx, opt_flags, new_value)
4785 int opt_idx;
4786 int opt_flags; /* possibly with OPT_MODELINE */
4787 int new_value; /* value was replaced completely */
4789 long_u *p;
4791 options[opt_idx].flags |= P_WAS_SET;
4793 /* When an option is set in the sandbox, from a modeline or in secure mode
4794 * set the P_INSECURE flag. Otherwise, if a new value is stored reset the
4795 * flag. */
4796 p = insecure_flag(opt_idx, opt_flags);
4797 if (secure
4798 #ifdef HAVE_SANDBOX
4799 || sandbox != 0
4800 #endif
4801 || (opt_flags & OPT_MODELINE))
4802 *p = *p | P_INSECURE;
4803 else if (new_value)
4804 *p = *p & ~P_INSECURE;
4807 static char_u *
4808 illegal_char(errbuf, c)
4809 char_u *errbuf;
4810 int c;
4812 if (errbuf == NULL)
4813 return (char_u *)"";
4814 sprintf((char *)errbuf, _("E539: Illegal character <%s>"),
4815 (char *)transchar(c));
4816 return errbuf;
4820 * Convert a key name or string into a key value.
4821 * Used for 'wildchar' and 'cedit' options.
4823 static int
4824 string_to_key(arg)
4825 char_u *arg;
4827 if (*arg == '<')
4828 return find_key_option(arg + 1);
4829 if (*arg == '^')
4830 return Ctrl_chr(arg[1]);
4831 return *arg;
4834 #ifdef FEAT_CMDWIN
4836 * Check value of 'cedit' and set cedit_key.
4837 * Returns NULL if value is OK, error message otherwise.
4839 static char_u *
4840 check_cedit()
4842 int n;
4844 if (*p_cedit == NUL)
4845 cedit_key = -1;
4846 else
4848 n = string_to_key(p_cedit);
4849 if (vim_isprintc(n))
4850 return e_invarg;
4851 cedit_key = n;
4853 return NULL;
4855 #endif
4857 #ifdef FEAT_TITLE
4859 * When changing 'title', 'titlestring', 'icon' or 'iconstring', call
4860 * maketitle() to create and display it.
4861 * When switching the title or icon off, call mch_restore_title() to get
4862 * the old value back.
4864 static void
4865 did_set_title(icon)
4866 int icon; /* Did set icon instead of title */
4868 if (starting != NO_SCREEN
4869 #ifdef FEAT_GUI
4870 && !gui.starting
4871 #endif
4874 maketitle();
4875 if (icon)
4877 if (!p_icon)
4878 mch_restore_title(2);
4880 else
4882 if (!p_title)
4883 mch_restore_title(1);
4887 #endif
4890 * set_options_bin - called when 'bin' changes value.
4892 void
4893 set_options_bin(oldval, newval, opt_flags)
4894 int oldval;
4895 int newval;
4896 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
4899 * The option values that are changed when 'bin' changes are
4900 * copied when 'bin is set and restored when 'bin' is reset.
4902 if (newval)
4904 if (!oldval) /* switched on */
4906 if (!(opt_flags & OPT_GLOBAL))
4908 curbuf->b_p_tw_nobin = curbuf->b_p_tw;
4909 curbuf->b_p_wm_nobin = curbuf->b_p_wm;
4910 curbuf->b_p_ml_nobin = curbuf->b_p_ml;
4911 curbuf->b_p_et_nobin = curbuf->b_p_et;
4913 if (!(opt_flags & OPT_LOCAL))
4915 p_tw_nobin = p_tw;
4916 p_wm_nobin = p_wm;
4917 p_ml_nobin = p_ml;
4918 p_et_nobin = p_et;
4922 if (!(opt_flags & OPT_GLOBAL))
4924 curbuf->b_p_tw = 0; /* no automatic line wrap */
4925 curbuf->b_p_wm = 0; /* no automatic line wrap */
4926 curbuf->b_p_ml = 0; /* no modelines */
4927 curbuf->b_p_et = 0; /* no expandtab */
4929 if (!(opt_flags & OPT_LOCAL))
4931 p_tw = 0;
4932 p_wm = 0;
4933 p_ml = FALSE;
4934 p_et = FALSE;
4935 p_bin = TRUE; /* needed when called for the "-b" argument */
4938 else if (oldval) /* switched off */
4940 if (!(opt_flags & OPT_GLOBAL))
4942 curbuf->b_p_tw = curbuf->b_p_tw_nobin;
4943 curbuf->b_p_wm = curbuf->b_p_wm_nobin;
4944 curbuf->b_p_ml = curbuf->b_p_ml_nobin;
4945 curbuf->b_p_et = curbuf->b_p_et_nobin;
4947 if (!(opt_flags & OPT_LOCAL))
4949 p_tw = p_tw_nobin;
4950 p_wm = p_wm_nobin;
4951 p_ml = p_ml_nobin;
4952 p_et = p_et_nobin;
4957 #ifdef FEAT_VIMINFO
4959 * Find the parameter represented by the given character (eg ', :, ", or /),
4960 * and return its associated value in the 'viminfo' string.
4961 * Only works for number parameters, not for 'r' or 'n'.
4962 * If the parameter is not specified in the string or there is no following
4963 * number, return -1.
4966 get_viminfo_parameter(type)
4967 int type;
4969 char_u *p;
4971 p = find_viminfo_parameter(type);
4972 if (p != NULL && VIM_ISDIGIT(*p))
4973 return atoi((char *)p);
4974 return -1;
4978 * Find the parameter represented by the given character (eg ''', ':', '"', or
4979 * '/') in the 'viminfo' option and return a pointer to the string after it.
4980 * Return NULL if the parameter is not specified in the string.
4982 char_u *
4983 find_viminfo_parameter(type)
4984 int type;
4986 char_u *p;
4988 for (p = p_viminfo; *p; ++p)
4990 if (*p == type)
4991 return p + 1;
4992 if (*p == 'n') /* 'n' is always the last one */
4993 break;
4994 p = vim_strchr(p, ','); /* skip until next ',' */
4995 if (p == NULL) /* hit the end without finding parameter */
4996 break;
4998 return NULL;
5000 #endif
5003 * Expand environment variables for some string options.
5004 * These string options cannot be indirect!
5005 * If "val" is NULL expand the current value of the option.
5006 * Return pointer to NameBuff, or NULL when not expanded.
5008 static char_u *
5009 option_expand(opt_idx, val)
5010 int opt_idx;
5011 char_u *val;
5013 /* if option doesn't need expansion nothing to do */
5014 if (!(options[opt_idx].flags & P_EXPAND) || options[opt_idx].var == NULL)
5015 return NULL;
5017 /* If val is longer than MAXPATHL no meaningful expansion can be done,
5018 * expand_env() would truncate the string. */
5019 if (val != NULL && STRLEN(val) > MAXPATHL)
5020 return NULL;
5022 if (val == NULL)
5023 val = *(char_u **)options[opt_idx].var;
5026 * Expanding this with NameBuff, expand_env() must not be passed IObuff.
5027 * Escape spaces when expanding 'tags', they are used to separate file
5028 * names.
5029 * For 'spellsuggest' expand after "file:".
5031 expand_env_esc(val, NameBuff, MAXPATHL,
5032 (char_u **)options[opt_idx].var == &p_tags, FALSE,
5033 #ifdef FEAT_SPELL
5034 (char_u **)options[opt_idx].var == &p_sps ? (char_u *)"file:" :
5035 #endif
5036 NULL);
5037 if (STRCMP(NameBuff, val) == 0) /* they are the same */
5038 return NULL;
5040 return NameBuff;
5044 * After setting various option values: recompute variables that depend on
5045 * option values.
5047 static void
5048 didset_options()
5050 /* initialize the table for 'iskeyword' et.al. */
5051 (void)init_chartab();
5053 #ifdef FEAT_MBYTE
5054 (void)opt_strings_flags(p_cmp, p_cmp_values, &cmp_flags, TRUE);
5055 #endif
5056 (void)opt_strings_flags(p_bkc, p_bkc_values, &bkc_flags, TRUE);
5057 #ifdef FEAT_SESSION
5058 (void)opt_strings_flags(p_ssop, p_ssop_values, &ssop_flags, TRUE);
5059 (void)opt_strings_flags(p_vop, p_ssop_values, &vop_flags, TRUE);
5060 #endif
5061 #ifdef FEAT_FOLDING
5062 (void)opt_strings_flags(p_fdo, p_fdo_values, &fdo_flags, TRUE);
5063 #endif
5064 (void)opt_strings_flags(p_dy, p_dy_values, &dy_flags, TRUE);
5065 #ifdef FEAT_VIRTUALEDIT
5066 (void)opt_strings_flags(p_ve, p_ve_values, &ve_flags, TRUE);
5067 #endif
5068 #if defined(FEAT_MOUSE) && (defined(UNIX) || defined(VMS))
5069 (void)opt_strings_flags(p_ttym, p_ttym_values, &ttym_flags, FALSE);
5070 #endif
5071 #ifdef FEAT_SPELL
5072 (void)spell_check_msm();
5073 (void)spell_check_sps();
5074 (void)compile_cap_prog(curbuf);
5075 #endif
5076 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
5077 (void)opt_strings_flags(p_toolbar, p_toolbar_values, &toolbar_flags, TRUE);
5078 #endif
5079 #if defined(FEAT_TOOLBAR) && ((defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)) \
5080 || defined(FEAT_GUI_MACVIM))
5081 (void)opt_strings_flags(p_tbis, p_tbis_values, &tbis_flags, FALSE);
5082 #endif
5083 #ifdef FEAT_CMDWIN
5084 /* set cedit_key */
5085 (void)check_cedit();
5086 #endif
5090 * Check for string options that are NULL (normally only termcap options).
5092 void
5093 check_options()
5095 int opt_idx;
5097 for (opt_idx = 0; options[opt_idx].fullname != NULL; opt_idx++)
5098 if ((options[opt_idx].flags & P_STRING) && options[opt_idx].var != NULL)
5099 check_string_option((char_u **)get_varp(&(options[opt_idx])));
5103 * Check string options in a buffer for NULL value.
5105 void
5106 check_buf_options(buf)
5107 buf_T *buf;
5109 #if defined(FEAT_QUICKFIX)
5110 check_string_option(&buf->b_p_bh);
5111 check_string_option(&buf->b_p_bt);
5112 #endif
5113 #ifdef FEAT_MBYTE
5114 check_string_option(&buf->b_p_fenc);
5115 #endif
5116 check_string_option(&buf->b_p_ff);
5117 #ifdef FEAT_FIND_ID
5118 check_string_option(&buf->b_p_def);
5119 check_string_option(&buf->b_p_inc);
5120 # ifdef FEAT_EVAL
5121 check_string_option(&buf->b_p_inex);
5122 # endif
5123 #endif
5124 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
5125 check_string_option(&buf->b_p_inde);
5126 check_string_option(&buf->b_p_indk);
5127 #endif
5128 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
5129 check_string_option(&buf->b_p_bexpr);
5130 #endif
5131 #if defined(FEAT_EVAL)
5132 check_string_option(&buf->b_p_fex);
5133 #endif
5134 #ifdef FEAT_CRYPT
5135 check_string_option(&buf->b_p_key);
5136 #endif
5137 check_string_option(&buf->b_p_kp);
5138 check_string_option(&buf->b_p_mps);
5139 check_string_option(&buf->b_p_fo);
5140 check_string_option(&buf->b_p_flp);
5141 check_string_option(&buf->b_p_isk);
5142 #ifdef FEAT_COMMENTS
5143 check_string_option(&buf->b_p_com);
5144 #endif
5145 #ifdef FEAT_FOLDING
5146 check_string_option(&buf->b_p_cms);
5147 #endif
5148 check_string_option(&buf->b_p_nf);
5149 #ifdef FEAT_TEXTOBJ
5150 check_string_option(&buf->b_p_qe);
5151 #endif
5152 #ifdef FEAT_SYN_HL
5153 check_string_option(&buf->b_p_syn);
5154 #endif
5155 #ifdef FEAT_SPELL
5156 check_string_option(&buf->b_p_spc);
5157 check_string_option(&buf->b_p_spf);
5158 check_string_option(&buf->b_p_spl);
5159 #endif
5160 #ifdef FEAT_SEARCHPATH
5161 check_string_option(&buf->b_p_sua);
5162 #endif
5163 #ifdef FEAT_CINDENT
5164 check_string_option(&buf->b_p_cink);
5165 check_string_option(&buf->b_p_cino);
5166 #endif
5167 #ifdef FEAT_AUTOCMD
5168 check_string_option(&buf->b_p_ft);
5169 #endif
5170 #ifdef FEAT_OSFILETYPE
5171 check_string_option(&buf->b_p_oft);
5172 #endif
5173 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
5174 check_string_option(&buf->b_p_cinw);
5175 #endif
5176 #ifdef FEAT_INS_EXPAND
5177 check_string_option(&buf->b_p_cpt);
5178 #endif
5179 #ifdef FEAT_COMPL_FUNC
5180 check_string_option(&buf->b_p_cfu);
5181 check_string_option(&buf->b_p_ofu);
5182 #endif
5183 #ifdef FEAT_KEYMAP
5184 check_string_option(&buf->b_p_keymap);
5185 #endif
5186 #ifdef FEAT_QUICKFIX
5187 check_string_option(&buf->b_p_gp);
5188 check_string_option(&buf->b_p_mp);
5189 check_string_option(&buf->b_p_efm);
5190 #endif
5191 check_string_option(&buf->b_p_ep);
5192 check_string_option(&buf->b_p_path);
5193 check_string_option(&buf->b_p_tags);
5194 #ifdef FEAT_INS_EXPAND
5195 check_string_option(&buf->b_p_dict);
5196 check_string_option(&buf->b_p_tsr);
5197 #endif
5201 * Free the string allocated for an option.
5202 * Checks for the string being empty_option. This may happen if we're out of
5203 * memory, vim_strsave() returned NULL, which was replaced by empty_option by
5204 * check_options().
5205 * Does NOT check for P_ALLOCED flag!
5207 void
5208 free_string_option(p)
5209 char_u *p;
5211 if (p != empty_option)
5212 vim_free(p);
5215 void
5216 clear_string_option(pp)
5217 char_u **pp;
5219 if (*pp != empty_option)
5220 vim_free(*pp);
5221 *pp = empty_option;
5224 static void
5225 check_string_option(pp)
5226 char_u **pp;
5228 if (*pp == NULL)
5229 *pp = empty_option;
5233 * Mark a terminal option as allocated, found by a pointer into term_strings[].
5235 void
5236 set_term_option_alloced(p)
5237 char_u **p;
5239 int opt_idx;
5241 for (opt_idx = 1; options[opt_idx].fullname != NULL; opt_idx++)
5242 if (options[opt_idx].var == (char_u *)p)
5244 options[opt_idx].flags |= P_ALLOCED;
5245 return;
5247 return; /* cannot happen: didn't find it! */
5250 #if defined(FEAT_EVAL) || defined(PROTO)
5252 * Return TRUE when option "opt" was set from a modeline or in secure mode.
5253 * Return FALSE when it wasn't.
5254 * Return -1 for an unknown option.
5257 was_set_insecurely(opt, opt_flags)
5258 char_u *opt;
5259 int opt_flags;
5261 int idx = findoption(opt);
5262 long_u *flagp;
5264 if (idx >= 0)
5266 flagp = insecure_flag(idx, opt_flags);
5267 return (*flagp & P_INSECURE) != 0;
5269 EMSG2(_(e_intern2), "was_set_insecurely()");
5270 return -1;
5274 * Get a pointer to the flags used for the P_INSECURE flag of option
5275 * "opt_idx". For some local options a local flags field is used.
5277 static long_u *
5278 insecure_flag(opt_idx, opt_flags)
5279 int opt_idx;
5280 int opt_flags;
5282 if (opt_flags & OPT_LOCAL)
5283 switch ((int)options[opt_idx].indir)
5285 #ifdef FEAT_STL_OPT
5286 case PV_STL: return &curwin->w_p_stl_flags;
5287 #endif
5288 #ifdef FEAT_EVAL
5289 # ifdef FEAT_FOLDING
5290 case PV_FDE: return &curwin->w_p_fde_flags;
5291 case PV_FDT: return &curwin->w_p_fdt_flags;
5292 # endif
5293 # ifdef FEAT_BEVAL
5294 case PV_BEXPR: return &curbuf->b_p_bexpr_flags;
5295 # endif
5296 # if defined(FEAT_CINDENT)
5297 case PV_INDE: return &curbuf->b_p_inde_flags;
5298 # endif
5299 case PV_FEX: return &curbuf->b_p_fex_flags;
5300 # ifdef FEAT_FIND_ID
5301 case PV_INEX: return &curbuf->b_p_inex_flags;
5302 # endif
5303 #endif
5306 /* Nothing special, return global flags field. */
5307 return &options[opt_idx].flags;
5309 #endif
5312 * Set a string option to a new value (without checking the effect).
5313 * The string is copied into allocated memory.
5314 * if ("opt_idx" == -1) "name" is used, otherwise "opt_idx" is used.
5315 * When "set_sid" is zero set the scriptID to current_SID. When "set_sid" is
5316 * SID_NONE don't set the scriptID. Otherwise set the scriptID to "set_sid".
5318 /*ARGSUSED*/
5319 void
5320 set_string_option_direct(name, opt_idx, val, opt_flags, set_sid)
5321 char_u *name;
5322 int opt_idx;
5323 char_u *val;
5324 int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */
5325 int set_sid;
5327 char_u *s;
5328 char_u **varp;
5329 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
5330 int idx = opt_idx;
5332 if (idx == -1) /* use name */
5334 idx = findoption(name);
5335 if (idx < 0) /* not found (should not happen) */
5337 EMSG2(_(e_intern2), "set_string_option_direct()");
5338 return;
5342 if (options[idx].var == NULL) /* can't set hidden option */
5343 return;
5345 s = vim_strsave(val);
5346 if (s != NULL)
5348 varp = (char_u **)get_varp_scope(&(options[idx]),
5349 both ? OPT_LOCAL : opt_flags);
5350 if ((opt_flags & OPT_FREE) && (options[idx].flags & P_ALLOCED))
5351 free_string_option(*varp);
5352 *varp = s;
5354 /* For buffer/window local option may also set the global value. */
5355 if (both)
5356 set_string_option_global(idx, varp);
5358 options[idx].flags |= P_ALLOCED;
5360 /* When setting both values of a global option with a local value,
5361 * make the local value empty, so that the global value is used. */
5362 if (((int)options[idx].indir & PV_BOTH) && both)
5364 free_string_option(*varp);
5365 *varp = empty_option;
5367 # ifdef FEAT_EVAL
5368 if (set_sid != SID_NONE)
5369 set_option_scriptID_idx(idx, opt_flags,
5370 set_sid == 0 ? current_SID : set_sid);
5371 # endif
5376 * Set global value for string option when it's a local option.
5378 static void
5379 set_string_option_global(opt_idx, varp)
5380 int opt_idx; /* option index */
5381 char_u **varp; /* pointer to option variable */
5383 char_u **p, *s;
5385 /* the global value is always allocated */
5386 if (options[opt_idx].var == VAR_WIN)
5387 p = (char_u **)GLOBAL_WO(varp);
5388 else
5389 p = (char_u **)options[opt_idx].var;
5390 if (options[opt_idx].indir != PV_NONE
5391 && p != varp
5392 && (s = vim_strsave(*varp)) != NULL)
5394 free_string_option(*p);
5395 *p = s;
5400 * Set a string option to a new value, and handle the effects.
5402 static void
5403 set_string_option(opt_idx, value, opt_flags)
5404 int opt_idx;
5405 char_u *value;
5406 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
5408 char_u *s;
5409 char_u **varp;
5410 char_u *oldval;
5412 if (options[opt_idx].var == NULL) /* don't set hidden option */
5413 return;
5415 s = vim_strsave(value);
5416 if (s != NULL)
5418 varp = (char_u **)get_varp_scope(&(options[opt_idx]),
5419 (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
5420 ? (((int)options[opt_idx].indir & PV_BOTH)
5421 ? OPT_GLOBAL : OPT_LOCAL)
5422 : opt_flags);
5423 oldval = *varp;
5424 *varp = s;
5425 if (did_set_string_option(opt_idx, varp, TRUE, oldval, NULL,
5426 opt_flags) == NULL)
5427 did_set_option(opt_idx, opt_flags, TRUE);
5432 * Handle string options that need some action to perform when changed.
5433 * Returns NULL for success, or an error message for an error.
5435 static char_u *
5436 did_set_string_option(opt_idx, varp, new_value_alloced, oldval, errbuf,
5437 opt_flags)
5438 int opt_idx; /* index in options[] table */
5439 char_u **varp; /* pointer to the option variable */
5440 int new_value_alloced; /* new value was allocated */
5441 char_u *oldval; /* previous value of the option */
5442 char_u *errbuf; /* buffer for errors, or NULL */
5443 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
5445 char_u *errmsg = NULL;
5446 char_u *s, *p;
5447 int did_chartab = FALSE;
5448 char_u **gvarp;
5449 long_u free_oldval = (options[opt_idx].flags & P_ALLOCED);
5451 /* Get the global option to compare with, otherwise we would have to check
5452 * two values for all local options. */
5453 gvarp = (char_u **)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL);
5455 /* Disallow changing some options from secure mode */
5456 if ((secure
5457 #ifdef HAVE_SANDBOX
5458 || sandbox != 0
5459 #endif
5460 ) && (options[opt_idx].flags & P_SECURE))
5462 errmsg = e_secure;
5465 /* Check for a "normal" file name in some options. Disallow a path
5466 * separator (slash and/or backslash), wildcards and characters that are
5467 * often illegal in a file name. */
5468 else if ((options[opt_idx].flags & P_NFNAME)
5469 && vim_strpbrk(*varp, (char_u *)"/\\*?[|<>") != NULL)
5471 errmsg = e_invarg;
5474 /* 'term' */
5475 else if (varp == &T_NAME)
5477 if (T_NAME[0] == NUL)
5478 errmsg = (char_u *)N_("E529: Cannot set 'term' to empty string");
5479 #ifdef FEAT_GUI
5480 if (gui.in_use)
5481 errmsg = (char_u *)N_("E530: Cannot change term in GUI");
5482 else if (term_is_gui(T_NAME))
5483 errmsg = (char_u *)N_("E531: Use \":gui\" to start the GUI");
5484 #endif
5485 else if (set_termname(T_NAME) == FAIL)
5486 errmsg = (char_u *)N_("E522: Not found in termcap");
5487 else
5488 /* Screen colors may have changed. */
5489 redraw_later_clear();
5492 /* 'backupcopy' */
5493 else if (varp == &p_bkc)
5495 if (opt_strings_flags(p_bkc, p_bkc_values, &bkc_flags, TRUE) != OK)
5496 errmsg = e_invarg;
5497 if (((bkc_flags & BKC_AUTO) != 0)
5498 + ((bkc_flags & BKC_YES) != 0)
5499 + ((bkc_flags & BKC_NO) != 0) != 1)
5501 /* Must have exactly one of "auto", "yes" and "no". */
5502 (void)opt_strings_flags(oldval, p_bkc_values, &bkc_flags, TRUE);
5503 errmsg = e_invarg;
5507 /* 'backupext' and 'patchmode' */
5508 else if (varp == &p_bex || varp == &p_pm)
5510 if (STRCMP(*p_bex == '.' ? p_bex + 1 : p_bex,
5511 *p_pm == '.' ? p_pm + 1 : p_pm) == 0)
5512 errmsg = (char_u *)N_("E589: 'backupext' and 'patchmode' are equal");
5516 * 'isident', 'iskeyword', 'isprint or 'isfname' option: refill chartab[]
5517 * If the new option is invalid, use old value. 'lisp' option: refill
5518 * chartab[] for '-' char
5520 else if ( varp == &p_isi
5521 || varp == &(curbuf->b_p_isk)
5522 || varp == &p_isp
5523 || varp == &p_isf)
5525 if (init_chartab() == FAIL)
5527 did_chartab = TRUE; /* need to restore it below */
5528 errmsg = e_invarg; /* error in value */
5532 /* 'helpfile' */
5533 else if (varp == &p_hf)
5535 /* May compute new values for $VIM and $VIMRUNTIME */
5536 if (didset_vim)
5538 vim_setenv((char_u *)"VIM", (char_u *)"");
5539 didset_vim = FALSE;
5541 if (didset_vimruntime)
5543 vim_setenv((char_u *)"VIMRUNTIME", (char_u *)"");
5544 didset_vimruntime = FALSE;
5548 #ifdef FEAT_MULTI_LANG
5549 /* 'helplang' */
5550 else if (varp == &p_hlg)
5552 /* Check for "", "ab", "ab,cd", etc. */
5553 for (s = p_hlg; *s != NUL; s += 3)
5555 if (s[1] == NUL || ((s[2] != ',' || s[3] == NUL) && s[2] != NUL))
5557 errmsg = e_invarg;
5558 break;
5560 if (s[2] == NUL)
5561 break;
5564 #endif
5566 /* 'highlight' */
5567 else if (varp == &p_hl)
5569 if (highlight_changed() == FAIL)
5570 errmsg = e_invarg; /* invalid flags */
5573 /* 'nrformats' */
5574 else if (gvarp == &p_nf)
5576 if (check_opt_strings(*varp, p_nf_values, TRUE) != OK)
5577 errmsg = e_invarg;
5580 #ifdef FEAT_SESSION
5581 /* 'sessionoptions' */
5582 else if (varp == &p_ssop)
5584 if (opt_strings_flags(p_ssop, p_ssop_values, &ssop_flags, TRUE) != OK)
5585 errmsg = e_invarg;
5586 if ((ssop_flags & SSOP_CURDIR) && (ssop_flags & SSOP_SESDIR))
5588 /* Don't allow both "sesdir" and "curdir". */
5589 (void)opt_strings_flags(oldval, p_ssop_values, &ssop_flags, TRUE);
5590 errmsg = e_invarg;
5593 /* 'viewoptions' */
5594 else if (varp == &p_vop)
5596 if (opt_strings_flags(p_vop, p_ssop_values, &vop_flags, TRUE) != OK)
5597 errmsg = e_invarg;
5599 #endif
5601 /* 'scrollopt' */
5602 #ifdef FEAT_SCROLLBIND
5603 else if (varp == &p_sbo)
5605 if (check_opt_strings(p_sbo, p_scbopt_values, TRUE) != OK)
5606 errmsg = e_invarg;
5608 #endif
5610 /* 'ambiwidth' */
5611 #ifdef FEAT_MBYTE
5612 else if (varp == &p_ambw)
5614 if (check_opt_strings(p_ambw, p_ambw_values, FALSE) != OK)
5615 errmsg = e_invarg;
5617 #endif
5619 /* 'background' */
5620 else if (varp == &p_bg)
5622 if (check_opt_strings(p_bg, p_bg_values, FALSE) == OK)
5624 #ifdef FEAT_EVAL
5625 int dark = (*p_bg == 'd');
5626 #endif
5628 init_highlight(FALSE, FALSE);
5630 #ifdef FEAT_EVAL
5631 if (dark != (*p_bg == 'd')
5632 && get_var_value((char_u *)"g:colors_name") != NULL)
5634 /* The color scheme must have set 'background' back to another
5635 * value, that's not what we want here. Disable the color
5636 * scheme and set the colors again. */
5637 do_unlet((char_u *)"g:colors_name", TRUE);
5638 free_string_option(p_bg);
5639 p_bg = vim_strsave((char_u *)(dark ? "dark" : "light"));
5640 check_string_option(&p_bg);
5641 init_highlight(FALSE, FALSE);
5643 #endif
5645 else
5646 errmsg = e_invarg;
5649 /* 'wildmode' */
5650 else if (varp == &p_wim)
5652 if (check_opt_wim() == FAIL)
5653 errmsg = e_invarg;
5656 #ifdef FEAT_CMDL_COMPL
5657 /* 'wildoptions' */
5658 else if (varp == &p_wop)
5660 if (check_opt_strings(p_wop, p_wop_values, TRUE) != OK)
5661 errmsg = e_invarg;
5663 #endif
5665 #ifdef FEAT_WAK
5666 /* 'winaltkeys' */
5667 else if (varp == &p_wak)
5669 if (*p_wak == NUL
5670 || check_opt_strings(p_wak, p_wak_values, FALSE) != OK)
5671 errmsg = e_invarg;
5672 # ifdef FEAT_MENU
5673 # ifdef FEAT_GUI_MOTIF
5674 else if (gui.in_use)
5675 gui_motif_set_mnemonics(p_wak[0] == 'y' || p_wak[0] == 'm');
5676 # else
5677 # ifdef FEAT_GUI_GTK
5678 else if (gui.in_use)
5679 gui_gtk_set_mnemonics(p_wak[0] == 'y' || p_wak[0] == 'm');
5680 # endif
5681 # endif
5682 # endif
5684 #endif
5686 #ifdef FEAT_AUTOCMD
5687 /* 'eventignore' */
5688 else if (varp == &p_ei)
5690 if (check_ei() == FAIL)
5691 errmsg = e_invarg;
5693 #endif
5695 #ifdef FEAT_MBYTE
5696 /* 'encoding' and 'fileencoding' */
5697 else if (varp == &p_enc || gvarp == &p_fenc || varp == &p_tenc)
5699 if (gvarp == &p_fenc)
5701 if (!curbuf->b_p_ma)
5702 errmsg = e_modifiable;
5703 else if (vim_strchr(*varp, ',') != NULL)
5704 /* No comma allowed in 'fileencoding'; catches confusing it
5705 * with 'fileencodings'. */
5706 errmsg = e_invarg;
5707 else
5709 # ifdef FEAT_TITLE
5710 /* May show a "+" in the title now. */
5711 need_maketitle = TRUE;
5712 # endif
5713 /* Add 'fileencoding' to the swap file. */
5714 ml_setflags(curbuf);
5717 if (errmsg == NULL)
5719 /* canonize the value, so that STRCMP() can be used on it */
5720 p = enc_canonize(*varp);
5721 if (p != NULL)
5723 vim_free(*varp);
5724 *varp = p;
5726 if (varp == &p_enc)
5728 errmsg = mb_init();
5729 # ifdef FEAT_TITLE
5730 need_maketitle = TRUE;
5731 # endif
5735 # if (defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)) || defined(FEAT_GUI_MACVIM)
5736 if (errmsg == NULL && varp == &p_tenc && gui.in_use)
5738 /* MacVim and GTK+ 2 GUIs force 'tenc' to UTF-8. */
5739 if (STRCMP(p_tenc, "utf-8") != 0)
5740 # if defined(FEAT_GUI_MACVIM)
5741 errmsg = (char_u *)N_("E617: Cannot be changed in MacVim");
5742 # else
5743 errmsg = (char_u *)N_("E617: Cannot be changed in the GTK+ 2 GUI");
5744 # endif
5746 # endif
5748 if (errmsg == NULL)
5750 # ifdef FEAT_KEYMAP
5751 /* When 'keymap' is used and 'encoding' changes, reload the keymap
5752 * (with another encoding). */
5753 if (varp == &p_enc && *curbuf->b_p_keymap != NUL)
5754 (void)keymap_init();
5755 # endif
5757 /* When 'termencoding' is not empty and 'encoding' changes or when
5758 * 'termencoding' changes, need to setup for keyboard input and
5759 * display output conversion. */
5760 if (((varp == &p_enc && *p_tenc != NUL) || varp == &p_tenc))
5762 convert_setup(&input_conv, p_tenc, p_enc);
5763 convert_setup(&output_conv, p_enc, p_tenc);
5766 # if defined(WIN3264) && defined(FEAT_MBYTE)
5767 /* $HOME may have characters in active code page. */
5768 if (varp == &p_enc)
5769 init_homedir();
5770 # endif
5773 #endif
5775 #if defined(FEAT_POSTSCRIPT)
5776 else if (varp == &p_penc)
5778 /* Canonize printencoding if VIM standard one */
5779 p = enc_canonize(p_penc);
5780 if (p != NULL)
5782 vim_free(p_penc);
5783 p_penc = p;
5785 else
5787 /* Ensure lower case and '-' for '_' */
5788 for (s = p_penc; *s != NUL; s++)
5790 if (*s == '_')
5791 *s = '-';
5792 else
5793 *s = TOLOWER_ASC(*s);
5797 #endif
5799 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
5800 else if (varp == &p_imak)
5802 if (gui.in_use && !im_xim_isvalid_imactivate())
5803 errmsg = e_invarg;
5805 #endif
5807 #ifdef FEAT_KEYMAP
5808 else if (varp == &curbuf->b_p_keymap)
5810 /* load or unload key mapping tables */
5811 errmsg = keymap_init();
5813 /* When successfully installed a new keymap switch on using it. */
5814 if (*curbuf->b_p_keymap != NUL && errmsg == NULL)
5816 curbuf->b_p_iminsert = B_IMODE_LMAP;
5817 if (curbuf->b_p_imsearch != B_IMODE_USE_INSERT)
5818 curbuf->b_p_imsearch = B_IMODE_LMAP;
5819 set_iminsert_global();
5820 set_imsearch_global();
5821 # ifdef FEAT_WINDOWS
5822 status_redraw_curbuf();
5823 # endif
5826 #endif
5828 /* 'fileformat' */
5829 else if (gvarp == &p_ff)
5831 if (!curbuf->b_p_ma && !(opt_flags & OPT_GLOBAL))
5832 errmsg = e_modifiable;
5833 else if (check_opt_strings(*varp, p_ff_values, FALSE) != OK)
5834 errmsg = e_invarg;
5835 else
5837 /* may also change 'textmode' */
5838 if (get_fileformat(curbuf) == EOL_DOS)
5839 curbuf->b_p_tx = TRUE;
5840 else
5841 curbuf->b_p_tx = FALSE;
5842 #ifdef FEAT_TITLE
5843 need_maketitle = TRUE;
5844 #endif
5845 /* update flag in swap file */
5846 ml_setflags(curbuf);
5850 /* 'fileformats' */
5851 else if (varp == &p_ffs)
5853 if (check_opt_strings(p_ffs, p_ff_values, TRUE) != OK)
5854 errmsg = e_invarg;
5855 else
5857 /* also change 'textauto' */
5858 if (*p_ffs == NUL)
5859 p_ta = FALSE;
5860 else
5861 p_ta = TRUE;
5865 #if defined(FEAT_CRYPT) && defined(FEAT_CMDHIST)
5866 /* 'cryptkey' */
5867 else if (gvarp == &p_key)
5869 /* Make sure the ":set" command doesn't show the new value in the
5870 * history. */
5871 remove_key_from_history();
5873 #endif
5875 /* 'matchpairs' */
5876 else if (gvarp == &p_mps)
5878 /* Check for "x:y,x:y" */
5879 for (p = *varp; *p != NUL; p += 4)
5881 if (p[1] != ':' || p[2] == NUL || (p[3] != NUL && p[3] != ','))
5883 errmsg = e_invarg;
5884 break;
5886 if (p[3] == NUL)
5887 break;
5891 #ifdef FEAT_COMMENTS
5892 /* 'comments' */
5893 else if (gvarp == &p_com)
5895 for (s = *varp; *s; )
5897 while (*s && *s != ':')
5899 if (vim_strchr((char_u *)COM_ALL, *s) == NULL
5900 && !VIM_ISDIGIT(*s) && *s != '-')
5902 errmsg = illegal_char(errbuf, *s);
5903 break;
5905 ++s;
5907 if (*s++ == NUL)
5908 errmsg = (char_u *)N_("E524: Missing colon");
5909 else if (*s == ',' || *s == NUL)
5910 errmsg = (char_u *)N_("E525: Zero length string");
5911 if (errmsg != NULL)
5912 break;
5913 while (*s && *s != ',')
5915 if (*s == '\\' && s[1] != NUL)
5916 ++s;
5917 ++s;
5919 s = skip_to_option_part(s);
5922 #endif
5924 /* 'listchars' */
5925 else if (varp == &p_lcs)
5927 errmsg = set_chars_option(varp);
5930 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
5931 /* 'fillchars' */
5932 else if (varp == &p_fcs)
5934 errmsg = set_chars_option(varp);
5936 #endif
5938 #ifdef FEAT_CMDWIN
5939 /* 'cedit' */
5940 else if (varp == &p_cedit)
5942 errmsg = check_cedit();
5944 #endif
5946 /* 'verbosefile' */
5947 else if (varp == &p_vfile)
5949 verbose_stop();
5950 if (*p_vfile != NUL && verbose_open() == FAIL)
5951 errmsg = e_invarg;
5954 #ifdef FEAT_VIMINFO
5955 /* 'viminfo' */
5956 else if (varp == &p_viminfo)
5958 for (s = p_viminfo; *s;)
5960 /* Check it's a valid character */
5961 if (vim_strchr((char_u *)"!\"%'/:<@cfhnrs", *s) == NULL)
5963 errmsg = illegal_char(errbuf, *s);
5964 break;
5966 if (*s == 'n') /* name is always last one */
5968 break;
5970 else if (*s == 'r') /* skip until next ',' */
5972 while (*++s && *s != ',')
5975 else if (*s == '%')
5977 /* optional number */
5978 while (vim_isdigit(*++s))
5981 else if (*s == '!' || *s == 'h' || *s == 'c')
5982 ++s; /* no extra chars */
5983 else /* must have a number */
5985 while (vim_isdigit(*++s))
5988 if (!VIM_ISDIGIT(*(s - 1)))
5990 if (errbuf != NULL)
5992 sprintf((char *)errbuf,
5993 _("E526: Missing number after <%s>"),
5994 transchar_byte(*(s - 1)));
5995 errmsg = errbuf;
5997 else
5998 errmsg = (char_u *)"";
5999 break;
6002 if (*s == ',')
6003 ++s;
6004 else if (*s)
6006 if (errbuf != NULL)
6007 errmsg = (char_u *)N_("E527: Missing comma");
6008 else
6009 errmsg = (char_u *)"";
6010 break;
6013 if (*p_viminfo && errmsg == NULL && get_viminfo_parameter('\'') < 0)
6014 errmsg = (char_u *)N_("E528: Must specify a ' value");
6016 #endif /* FEAT_VIMINFO */
6018 /* terminal options */
6019 else if (istermoption(&options[opt_idx]) && full_screen)
6021 /* ":set t_Co=0" and ":set t_Co=1" do ":set t_Co=" */
6022 if (varp == &T_CCO)
6024 t_colors = atoi((char *)T_CCO);
6025 if (t_colors <= 1)
6027 if (new_value_alloced)
6028 vim_free(T_CCO);
6029 T_CCO = empty_option;
6031 /* We now have a different color setup, initialize it again. */
6032 init_highlight(TRUE, FALSE);
6034 ttest(FALSE);
6035 if (varp == &T_ME)
6037 out_str(T_ME);
6038 redraw_later(CLEAR);
6039 #if defined(MSDOS) || (defined(WIN3264) && !defined(FEAT_GUI_W32))
6040 /* Since t_me has been set, this probably means that the user
6041 * wants to use this as default colors. Need to reset default
6042 * background/foreground colors. */
6043 mch_set_normal_colors();
6044 #endif
6048 #ifdef FEAT_LINEBREAK
6049 /* 'showbreak' */
6050 else if (varp == &p_sbr)
6052 for (s = p_sbr; *s; )
6054 if (ptr2cells(s) != 1)
6055 errmsg = (char_u *)N_("E595: contains unprintable or wide character");
6056 mb_ptr_adv(s);
6059 #endif
6061 #ifdef FEAT_GUI
6062 /* 'guifont' */
6063 else if (varp == &p_guifont)
6065 if (gui.in_use)
6067 p = p_guifont;
6068 # if defined(FEAT_GUI_GTK)
6070 * Put up a font dialog and let the user select a new value.
6071 * If this is cancelled go back to the old value but don't
6072 * give an error message.
6074 if (STRCMP(p, "*") == 0)
6076 p = gui_mch_font_dialog(oldval);
6078 if (new_value_alloced)
6079 free_string_option(p_guifont);
6081 p_guifont = (p != NULL) ? p : vim_strsave(oldval);
6082 new_value_alloced = TRUE;
6084 # endif
6085 if (p != NULL && gui_init_font(p_guifont, FALSE) != OK)
6087 # if defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_PHOTON) \
6088 || defined(FEAT_GUI_MACVIM)
6089 if (STRCMP(p_guifont, "*") == 0)
6091 /* Dialog was cancelled: Keep the old value without giving
6092 * an error message. */
6093 if (new_value_alloced)
6094 free_string_option(p_guifont);
6095 p_guifont = vim_strsave(oldval);
6096 new_value_alloced = TRUE;
6098 else
6099 # endif
6100 errmsg = (char_u *)N_("E596: Invalid font(s)");
6104 # ifdef FEAT_XFONTSET
6105 else if (varp == &p_guifontset)
6107 if (STRCMP(p_guifontset, "*") == 0)
6108 errmsg = (char_u *)N_("E597: can't select fontset");
6109 else if (gui.in_use && gui_init_font(p_guifontset, TRUE) != OK)
6110 errmsg = (char_u *)N_("E598: Invalid fontset");
6112 # endif
6113 # ifdef FEAT_MBYTE
6114 else if (varp == &p_guifontwide)
6116 if (STRCMP(p_guifontwide, "*") == 0)
6117 errmsg = (char_u *)N_("E533: can't select wide font");
6118 else if (gui_get_wide_font() == FAIL)
6119 errmsg = (char_u *)N_("E534: Invalid wide font");
6121 # endif
6122 #endif
6124 #ifdef CURSOR_SHAPE
6125 /* 'guicursor' */
6126 else if (varp == &p_guicursor)
6127 errmsg = parse_shape_opt(SHAPE_CURSOR);
6128 #endif
6130 #ifdef FEAT_MOUSESHAPE
6131 /* 'mouseshape' */
6132 else if (varp == &p_mouseshape)
6134 errmsg = parse_shape_opt(SHAPE_MOUSE);
6135 update_mouseshape(-1);
6137 #endif
6139 #ifdef FEAT_PRINTER
6140 else if (varp == &p_popt)
6141 errmsg = parse_printoptions();
6142 # if defined(FEAT_MBYTE) && defined(FEAT_POSTSCRIPT)
6143 else if (varp == &p_pmfn)
6144 errmsg = parse_printmbfont();
6145 # endif
6146 #endif
6148 #ifdef FEAT_LANGMAP
6149 /* 'langmap' */
6150 else if (varp == &p_langmap)
6151 langmap_set();
6152 #endif
6154 #ifdef FEAT_LINEBREAK
6155 /* 'breakat' */
6156 else if (varp == &p_breakat)
6157 fill_breakat_flags();
6158 #endif
6160 #ifdef FEAT_TITLE
6161 /* 'titlestring' and 'iconstring' */
6162 else if (varp == &p_titlestring || varp == &p_iconstring)
6164 # ifdef FEAT_STL_OPT
6165 int flagval = (varp == &p_titlestring) ? STL_IN_TITLE : STL_IN_ICON;
6167 /* NULL => statusline syntax */
6168 if (vim_strchr(*varp, '%') && check_stl_option(*varp) == NULL)
6169 stl_syntax |= flagval;
6170 else
6171 stl_syntax &= ~flagval;
6172 # endif
6173 did_set_title(varp == &p_iconstring);
6176 #endif
6178 #ifdef FEAT_GUI
6179 /* 'guioptions' */
6180 else if (varp == &p_go)
6181 gui_init_which_components(oldval);
6182 #endif
6184 #if defined(FEAT_GUI_TABLINE)
6185 /* 'guitablabel' */
6186 else if (varp == &p_gtl)
6187 redraw_tabline = TRUE;
6188 #endif
6190 #if defined(FEAT_MOUSE_TTY) && (defined(UNIX) || defined(VMS))
6191 /* 'ttymouse' */
6192 else if (varp == &p_ttym)
6194 /* Switch the mouse off before changing the escape sequences used for
6195 * that. */
6196 mch_setmouse(FALSE);
6197 if (opt_strings_flags(p_ttym, p_ttym_values, &ttym_flags, FALSE) != OK)
6198 errmsg = e_invarg;
6199 else
6200 check_mouse_termcode();
6201 if (termcap_active)
6202 setmouse(); /* may switch it on again */
6204 #endif
6206 #ifdef FEAT_VISUAL
6207 /* 'selection' */
6208 else if (varp == &p_sel)
6210 if (*p_sel == NUL
6211 || check_opt_strings(p_sel, p_sel_values, FALSE) != OK)
6212 errmsg = e_invarg;
6215 /* 'selectmode' */
6216 else if (varp == &p_slm)
6218 if (check_opt_strings(p_slm, p_slm_values, TRUE) != OK)
6219 errmsg = e_invarg;
6221 #endif
6223 #ifdef FEAT_BROWSE
6224 /* 'browsedir' */
6225 else if (varp == &p_bsdir)
6227 if (check_opt_strings(p_bsdir, p_bsdir_values, FALSE) != OK
6228 && !mch_isdir(p_bsdir))
6229 errmsg = e_invarg;
6231 #endif
6233 #ifdef FEAT_VISUAL
6234 /* 'keymodel' */
6235 else if (varp == &p_km)
6237 if (check_opt_strings(p_km, p_km_values, TRUE) != OK)
6238 errmsg = e_invarg;
6239 else
6241 km_stopsel = (vim_strchr(p_km, 'o') != NULL);
6242 km_startsel = (vim_strchr(p_km, 'a') != NULL);
6245 #endif
6247 /* 'mousemodel' */
6248 else if (varp == &p_mousem)
6250 if (check_opt_strings(p_mousem, p_mousem_values, FALSE) != OK)
6251 errmsg = e_invarg;
6252 #if defined(FEAT_GUI_MOTIF) && defined(FEAT_MENU) && (XmVersion <= 1002)
6253 else if (*p_mousem != *oldval)
6254 /* Changed from "extend" to "popup" or "popup_setpos" or vv: need
6255 * to create or delete the popup menus. */
6256 gui_motif_update_mousemodel(root_menu);
6257 #endif
6260 /* 'switchbuf' */
6261 else if (varp == &p_swb)
6263 if (check_opt_strings(p_swb, p_swb_values, TRUE) != OK)
6264 errmsg = e_invarg;
6267 /* 'debug' */
6268 else if (varp == &p_debug)
6270 if (check_opt_strings(p_debug, p_debug_values, TRUE) != OK)
6271 errmsg = e_invarg;
6274 /* 'display' */
6275 else if (varp == &p_dy)
6277 if (opt_strings_flags(p_dy, p_dy_values, &dy_flags, TRUE) != OK)
6278 errmsg = e_invarg;
6279 else
6280 (void)init_chartab();
6284 #ifdef FEAT_VERTSPLIT
6285 /* 'eadirection' */
6286 else if (varp == &p_ead)
6288 if (check_opt_strings(p_ead, p_ead_values, FALSE) != OK)
6289 errmsg = e_invarg;
6291 #endif
6293 #ifdef FEAT_CLIPBOARD
6294 /* 'clipboard' */
6295 else if (varp == &p_cb)
6296 errmsg = check_clipboard_option();
6297 #endif
6299 #ifdef FEAT_SPELL
6300 /* When 'spelllang' or 'spellfile' is set and there is a window for this
6301 * buffer in which 'spell' is set load the wordlists. */
6302 else if (varp == &(curbuf->b_p_spl) || varp == &(curbuf->b_p_spf))
6304 win_T *wp;
6305 int l;
6307 if (varp == &(curbuf->b_p_spf))
6309 l = (int)STRLEN(curbuf->b_p_spf);
6310 if (l > 0 && (l < 4 || STRCMP(curbuf->b_p_spf + l - 4,
6311 ".add") != 0))
6312 errmsg = e_invarg;
6315 if (errmsg == NULL)
6317 FOR_ALL_WINDOWS(wp)
6318 if (wp->w_buffer == curbuf && wp->w_p_spell)
6320 errmsg = did_set_spelllang(curbuf);
6321 # ifdef FEAT_WINDOWS
6322 break;
6323 # endif
6327 /* When 'spellcapcheck' is set compile the regexp program. */
6328 else if (varp == &(curbuf->b_p_spc))
6330 errmsg = compile_cap_prog(curbuf);
6332 /* 'spellsuggest' */
6333 else if (varp == &p_sps)
6335 if (spell_check_sps() != OK)
6336 errmsg = e_invarg;
6338 /* 'mkspellmem' */
6339 else if (varp == &p_msm)
6341 if (spell_check_msm() != OK)
6342 errmsg = e_invarg;
6344 #endif
6346 #ifdef FEAT_QUICKFIX
6347 /* When 'bufhidden' is set, check for valid value. */
6348 else if (gvarp == &p_bh)
6350 if (check_opt_strings(curbuf->b_p_bh, p_bufhidden_values, FALSE) != OK)
6351 errmsg = e_invarg;
6354 /* When 'buftype' is set, check for valid value. */
6355 else if (gvarp == &p_bt)
6357 if (check_opt_strings(curbuf->b_p_bt, p_buftype_values, FALSE) != OK)
6358 errmsg = e_invarg;
6359 else
6361 # ifdef FEAT_WINDOWS
6362 if (curwin->w_status_height)
6364 curwin->w_redr_status = TRUE;
6365 redraw_later(VALID);
6367 # endif
6368 curbuf->b_help = (curbuf->b_p_bt[0] == 'h');
6371 #endif
6373 #ifdef FEAT_STL_OPT
6374 /* 'statusline' or 'rulerformat' */
6375 else if (gvarp == &p_stl || varp == &p_ruf)
6377 int wid;
6379 if (varp == &p_ruf) /* reset ru_wid first */
6380 ru_wid = 0;
6381 s = *varp;
6382 if (varp == &p_ruf && *s == '%')
6384 /* set ru_wid if 'ruf' starts with "%99(" */
6385 if (*++s == '-') /* ignore a '-' */
6386 s++;
6387 wid = getdigits(&s);
6388 if (wid && *s == '(' && (errmsg = check_stl_option(p_ruf)) == NULL)
6389 ru_wid = wid;
6390 else
6391 errmsg = check_stl_option(p_ruf);
6393 /* check 'statusline' only if it doesn't start with "%!" */
6394 else if (varp == &p_ruf || s[0] != '%' || s[1] != '!')
6395 errmsg = check_stl_option(s);
6396 if (varp == &p_ruf && errmsg == NULL)
6397 comp_col();
6399 #endif
6401 #ifdef FEAT_INS_EXPAND
6402 /* check if it is a valid value for 'complete' -- Acevedo */
6403 else if (gvarp == &p_cpt)
6405 for (s = *varp; *s;)
6407 while(*s == ',' || *s == ' ')
6408 s++;
6409 if (!*s)
6410 break;
6411 if (vim_strchr((char_u *)".wbuksid]tU", *s) == NULL)
6413 errmsg = illegal_char(errbuf, *s);
6414 break;
6416 if (*++s != NUL && *s != ',' && *s != ' ')
6418 if (s[-1] == 'k' || s[-1] == 's')
6420 /* skip optional filename after 'k' and 's' */
6421 while (*s && *s != ',' && *s != ' ')
6423 if (*s == '\\')
6424 ++s;
6425 ++s;
6428 else
6430 if (errbuf != NULL)
6432 sprintf((char *)errbuf,
6433 _("E535: Illegal character after <%c>"),
6434 *--s);
6435 errmsg = errbuf;
6437 else
6438 errmsg = (char_u *)"";
6439 break;
6445 /* 'completeopt' */
6446 else if (varp == &p_cot)
6448 if (check_opt_strings(p_cot, p_cot_values, TRUE) != OK)
6449 errmsg = e_invarg;
6451 #endif /* FEAT_INS_EXPAND */
6454 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
6455 else if (varp == &p_toolbar)
6457 if (opt_strings_flags(p_toolbar, p_toolbar_values,
6458 &toolbar_flags, TRUE) != OK)
6459 errmsg = e_invarg;
6460 else
6462 out_flush();
6463 gui_mch_show_toolbar((toolbar_flags &
6464 (TOOLBAR_TEXT | TOOLBAR_ICONS)) != 0);
6467 #endif
6469 #if defined(FEAT_TOOLBAR) && ((defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)) \
6470 || defined(FEAT_GUI_MACVIM))
6471 /* 'toolbariconsize': GTK+ 2 and MacVim only */
6472 else if (varp == &p_tbis)
6474 if (opt_strings_flags(p_tbis, p_tbis_values, &tbis_flags, FALSE) != OK)
6475 errmsg = e_invarg;
6476 else
6478 out_flush();
6479 gui_mch_show_toolbar((toolbar_flags &
6480 (TOOLBAR_TEXT | TOOLBAR_ICONS)) != 0);
6483 #endif
6485 /* 'pastetoggle': translate key codes like in a mapping */
6486 else if (varp == &p_pt)
6488 if (*p_pt)
6490 (void)replace_termcodes(p_pt, &p, TRUE, TRUE, FALSE);
6491 if (p != NULL)
6493 if (new_value_alloced)
6494 free_string_option(p_pt);
6495 p_pt = p;
6496 new_value_alloced = TRUE;
6501 /* 'backspace' */
6502 else if (varp == &p_bs)
6504 if (VIM_ISDIGIT(*p_bs))
6506 if (*p_bs >'2' || p_bs[1] != NUL)
6507 errmsg = e_invarg;
6509 else if (check_opt_strings(p_bs, p_bs_values, TRUE) != OK)
6510 errmsg = e_invarg;
6513 #ifdef FEAT_MBYTE
6514 /* 'casemap' */
6515 else if (varp == &p_cmp)
6517 if (opt_strings_flags(p_cmp, p_cmp_values, &cmp_flags, TRUE) != OK)
6518 errmsg = e_invarg;
6520 #endif
6522 #ifdef FEAT_DIFF
6523 /* 'diffopt' */
6524 else if (varp == &p_dip)
6526 if (diffopt_changed() == FAIL)
6527 errmsg = e_invarg;
6529 #endif
6531 #ifdef FEAT_FOLDING
6532 /* 'foldmethod' */
6533 else if (gvarp == &curwin->w_allbuf_opt.wo_fdm)
6535 if (check_opt_strings(*varp, p_fdm_values, FALSE) != OK
6536 || *curwin->w_p_fdm == NUL)
6537 errmsg = e_invarg;
6538 else
6539 foldUpdateAll(curwin);
6541 # ifdef FEAT_EVAL
6542 /* 'foldexpr' */
6543 else if (varp == &curwin->w_p_fde)
6545 if (foldmethodIsExpr(curwin))
6546 foldUpdateAll(curwin);
6548 # endif
6549 /* 'foldmarker' */
6550 else if (gvarp == &curwin->w_allbuf_opt.wo_fmr)
6552 p = vim_strchr(*varp, ',');
6553 if (p == NULL)
6554 errmsg = (char_u *)N_("E536: comma required");
6555 else if (p == *varp || p[1] == NUL)
6556 errmsg = e_invarg;
6557 else if (foldmethodIsMarker(curwin))
6558 foldUpdateAll(curwin);
6560 /* 'commentstring' */
6561 else if (gvarp == &p_cms)
6563 if (**varp != NUL && strstr((char *)*varp, "%s") == NULL)
6564 errmsg = (char_u *)N_("E537: 'commentstring' must be empty or contain %s");
6566 /* 'foldopen' */
6567 else if (varp == &p_fdo)
6569 if (opt_strings_flags(p_fdo, p_fdo_values, &fdo_flags, TRUE) != OK)
6570 errmsg = e_invarg;
6572 /* 'foldclose' */
6573 else if (varp == &p_fcl)
6575 if (check_opt_strings(p_fcl, p_fcl_values, TRUE) != OK)
6576 errmsg = e_invarg;
6578 /* 'foldignore' */
6579 else if (gvarp == &curwin->w_allbuf_opt.wo_fdi)
6581 if (foldmethodIsIndent(curwin))
6582 foldUpdateAll(curwin);
6584 #endif
6586 #ifdef FEAT_VIRTUALEDIT
6587 /* 'virtualedit' */
6588 else if (varp == &p_ve)
6590 if (opt_strings_flags(p_ve, p_ve_values, &ve_flags, TRUE) != OK)
6591 errmsg = e_invarg;
6592 else if (STRCMP(p_ve, oldval) != 0)
6594 /* Recompute cursor position in case the new 've' setting
6595 * changes something. */
6596 validate_virtcol();
6597 coladvance(curwin->w_virtcol);
6600 #endif
6602 #if defined(FEAT_CSCOPE) && defined(FEAT_QUICKFIX)
6603 else if (varp == &p_csqf)
6605 if (p_csqf != NULL)
6607 p = p_csqf;
6608 while (*p != NUL)
6610 if (vim_strchr((char_u *)CSQF_CMDS, *p) == NULL
6611 || p[1] == NUL
6612 || vim_strchr((char_u *)CSQF_FLAGS, p[1]) == NULL
6613 || (p[2] != NUL && p[2] != ','))
6615 errmsg = e_invarg;
6616 break;
6618 else if (p[2] == NUL)
6619 break;
6620 else
6621 p += 3;
6625 #endif
6627 /* Options that are a list of flags. */
6628 else
6630 p = NULL;
6631 if (varp == &p_ww)
6632 p = (char_u *)WW_ALL;
6633 if (varp == &p_shm)
6634 p = (char_u *)SHM_ALL;
6635 else if (varp == &(p_cpo))
6636 p = (char_u *)CPO_ALL;
6637 else if (varp == &(curbuf->b_p_fo))
6638 p = (char_u *)FO_ALL;
6639 else if (varp == &p_mouse)
6641 #ifdef FEAT_MOUSE
6642 p = (char_u *)MOUSE_ALL;
6643 #else
6644 if (*p_mouse != NUL)
6645 errmsg = (char_u *)N_("E538: No mouse support");
6646 #endif
6648 #if defined(FEAT_GUI)
6649 else if (varp == &p_go)
6650 p = (char_u *)GO_ALL;
6651 #endif
6652 if (p != NULL)
6654 for (s = *varp; *s; ++s)
6655 if (vim_strchr(p, *s) == NULL)
6657 errmsg = illegal_char(errbuf, *s);
6658 break;
6664 * If error detected, restore the previous value.
6666 if (errmsg != NULL)
6668 if (new_value_alloced)
6669 free_string_option(*varp);
6670 *varp = oldval;
6672 * When resetting some values, need to act on it.
6674 if (did_chartab)
6675 (void)init_chartab();
6676 if (varp == &p_hl)
6677 (void)highlight_changed();
6679 else
6681 #ifdef FEAT_EVAL
6682 /* Remember where the option was set. */
6683 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
6684 #endif
6686 * Free string options that are in allocated memory.
6687 * Use "free_oldval", because recursiveness may change the flags under
6688 * our fingers (esp. init_highlight()).
6690 if (free_oldval)
6691 free_string_option(oldval);
6692 if (new_value_alloced)
6693 options[opt_idx].flags |= P_ALLOCED;
6694 else
6695 options[opt_idx].flags &= ~P_ALLOCED;
6697 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
6698 && ((int)options[opt_idx].indir & PV_BOTH))
6700 /* global option with local value set to use global value; free
6701 * the local value and make it empty */
6702 p = get_varp_scope(&(options[opt_idx]), OPT_LOCAL);
6703 free_string_option(*(char_u **)p);
6704 *(char_u **)p = empty_option;
6707 /* May set global value for local option. */
6708 else if (!(opt_flags & OPT_LOCAL) && opt_flags != OPT_GLOBAL)
6709 set_string_option_global(opt_idx, varp);
6711 #ifdef FEAT_AUTOCMD
6713 * Trigger the autocommand only after setting the flags.
6715 # ifdef FEAT_SYN_HL
6716 /* When 'syntax' is set, load the syntax of that name */
6717 if (varp == &(curbuf->b_p_syn))
6719 apply_autocmds(EVENT_SYNTAX, curbuf->b_p_syn,
6720 curbuf->b_fname, TRUE, curbuf);
6722 # endif
6723 else if (varp == &(curbuf->b_p_ft))
6725 /* 'filetype' is set, trigger the FileType autocommand */
6726 did_filetype = TRUE;
6727 apply_autocmds(EVENT_FILETYPE, curbuf->b_p_ft,
6728 curbuf->b_fname, TRUE, curbuf);
6730 #endif
6731 #ifdef FEAT_SPELL
6732 if (varp == &(curbuf->b_p_spl))
6734 char_u fname[200];
6737 * Source the spell/LANG.vim in 'runtimepath'.
6738 * They could set 'spellcapcheck' depending on the language.
6739 * Use the first name in 'spelllang' up to '_region' or
6740 * '.encoding'.
6742 for (p = curbuf->b_p_spl; *p != NUL; ++p)
6743 if (vim_strchr((char_u *)"_.,", *p) != NULL)
6744 break;
6745 vim_snprintf((char *)fname, 200, "spell/%.*s.vim",
6746 (int)(p - curbuf->b_p_spl), curbuf->b_p_spl);
6747 source_runtime(fname, TRUE);
6749 #endif
6752 #ifdef FEAT_MOUSE
6753 if (varp == &p_mouse)
6755 # ifdef FEAT_MOUSE_TTY
6756 if (*p_mouse == NUL)
6757 mch_setmouse(FALSE); /* switch mouse off */
6758 else
6759 # endif
6760 setmouse(); /* in case 'mouse' changed */
6762 #endif
6764 if (curwin->w_curswant != MAXCOL)
6765 curwin->w_set_curswant = TRUE; /* in case 'showbreak' changed */
6766 check_redraw(options[opt_idx].flags);
6768 return errmsg;
6772 * Handle setting 'listchars' or 'fillchars'.
6773 * Returns error message, NULL if it's OK.
6775 static char_u *
6776 set_chars_option(varp)
6777 char_u **varp;
6779 int round, i, len, entries;
6780 char_u *p, *s;
6781 int c1, c2 = 0;
6782 struct charstab
6784 int *cp;
6785 char *name;
6787 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6788 static struct charstab filltab[] =
6790 {&fill_stl, "stl"},
6791 {&fill_stlnc, "stlnc"},
6792 {&fill_vert, "vert"},
6793 {&fill_fold, "fold"},
6794 {&fill_diff, "diff"},
6796 #endif
6797 static struct charstab lcstab[] =
6799 {&lcs_eol, "eol"},
6800 {&lcs_ext, "extends"},
6801 {&lcs_nbsp, "nbsp"},
6802 {&lcs_prec, "precedes"},
6803 {&lcs_tab2, "tab"},
6804 {&lcs_trail, "trail"},
6806 struct charstab *tab;
6808 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6809 if (varp == &p_lcs)
6810 #endif
6812 tab = lcstab;
6813 entries = sizeof(lcstab) / sizeof(struct charstab);
6815 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6816 else
6818 tab = filltab;
6819 entries = sizeof(filltab) / sizeof(struct charstab);
6821 #endif
6823 /* first round: check for valid value, second round: assign values */
6824 for (round = 0; round <= 1; ++round)
6826 if (round)
6828 /* After checking that the value is valid: set defaults: space for
6829 * 'fillchars', NUL for 'listchars' */
6830 for (i = 0; i < entries; ++i)
6831 *(tab[i].cp) = (varp == &p_lcs ? NUL : ' ');
6832 if (varp == &p_lcs)
6833 lcs_tab1 = NUL;
6834 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6835 else
6836 fill_diff = '-';
6837 #endif
6839 p = *varp;
6840 while (*p)
6842 for (i = 0; i < entries; ++i)
6844 len = (int)STRLEN(tab[i].name);
6845 if (STRNCMP(p, tab[i].name, len) == 0
6846 && p[len] == ':'
6847 && p[len + 1] != NUL)
6849 s = p + len + 1;
6850 #ifdef FEAT_MBYTE
6851 c1 = mb_ptr2char_adv(&s);
6852 if (mb_char2cells(c1) > 1)
6853 continue;
6854 #else
6855 c1 = *s++;
6856 #endif
6857 if (tab[i].cp == &lcs_tab2)
6859 if (*s == NUL)
6860 continue;
6861 #ifdef FEAT_MBYTE
6862 c2 = mb_ptr2char_adv(&s);
6863 if (mb_char2cells(c2) > 1)
6864 continue;
6865 #else
6866 c2 = *s++;
6867 #endif
6869 if (*s == ',' || *s == NUL)
6871 if (round)
6873 if (tab[i].cp == &lcs_tab2)
6875 lcs_tab1 = c1;
6876 lcs_tab2 = c2;
6878 else
6879 *(tab[i].cp) = c1;
6882 p = s;
6883 break;
6888 if (i == entries)
6889 return e_invarg;
6890 if (*p == ',')
6891 ++p;
6895 return NULL; /* no error */
6898 #ifdef FEAT_STL_OPT
6900 * Check validity of options with the 'statusline' format.
6901 * Return error message or NULL.
6903 char_u *
6904 check_stl_option(s)
6905 char_u *s;
6907 int itemcnt = 0;
6908 int groupdepth = 0;
6909 static char_u errbuf[80];
6911 while (*s && itemcnt < STL_MAX_ITEM)
6913 /* Check for valid keys after % sequences */
6914 while (*s && *s != '%')
6915 s++;
6916 if (!*s)
6917 break;
6918 s++;
6919 if (*s != '%' && *s != ')')
6920 ++itemcnt;
6921 if (*s == '%' || *s == STL_TRUNCMARK || *s == STL_MIDDLEMARK)
6923 s++;
6924 continue;
6926 if (*s == ')')
6928 s++;
6929 if (--groupdepth < 0)
6930 break;
6931 continue;
6933 if (*s == '-')
6934 s++;
6935 while (VIM_ISDIGIT(*s))
6936 s++;
6937 if (*s == STL_USER_HL)
6938 continue;
6939 if (*s == '.')
6941 s++;
6942 while (*s && VIM_ISDIGIT(*s))
6943 s++;
6945 if (*s == '(')
6947 groupdepth++;
6948 continue;
6950 if (vim_strchr(STL_ALL, *s) == NULL)
6952 return illegal_char(errbuf, *s);
6954 if (*s == '{')
6956 s++;
6957 while (*s != '}' && *s)
6958 s++;
6959 if (*s != '}')
6960 return (char_u *)N_("E540: Unclosed expression sequence");
6963 if (itemcnt >= STL_MAX_ITEM)
6964 return (char_u *)N_("E541: too many items");
6965 if (groupdepth != 0)
6966 return (char_u *)N_("E542: unbalanced groups");
6967 return NULL;
6969 #endif
6971 #ifdef FEAT_CLIPBOARD
6973 * Extract the items in the 'clipboard' option and set global values.
6975 static char_u *
6976 check_clipboard_option()
6978 int new_unnamed = FALSE;
6979 int new_autoselect = FALSE;
6980 int new_autoselectml = FALSE;
6981 regprog_T *new_exclude_prog = NULL;
6982 char_u *errmsg = NULL;
6983 char_u *p;
6985 for (p = p_cb; *p != NUL; )
6987 if (STRNCMP(p, "unnamed", 7) == 0 && (p[7] == ',' || p[7] == NUL))
6989 new_unnamed = TRUE;
6990 p += 7;
6992 else if (STRNCMP(p, "autoselect", 10) == 0
6993 && (p[10] == ',' || p[10] == NUL))
6995 new_autoselect = TRUE;
6996 p += 10;
6998 else if (STRNCMP(p, "autoselectml", 12) == 0
6999 && (p[12] == ',' || p[12] == NUL))
7001 new_autoselectml = TRUE;
7002 p += 12;
7004 else if (STRNCMP(p, "exclude:", 8) == 0 && new_exclude_prog == NULL)
7006 p += 8;
7007 new_exclude_prog = vim_regcomp(p, RE_MAGIC);
7008 if (new_exclude_prog == NULL)
7009 errmsg = e_invarg;
7010 break;
7012 else
7014 errmsg = e_invarg;
7015 break;
7017 if (*p == ',')
7018 ++p;
7020 if (errmsg == NULL)
7022 clip_unnamed = new_unnamed;
7023 clip_autoselect = new_autoselect;
7024 clip_autoselectml = new_autoselectml;
7025 vim_free(clip_exclude_prog);
7026 clip_exclude_prog = new_exclude_prog;
7028 else
7029 vim_free(new_exclude_prog);
7031 return errmsg;
7033 #endif
7035 #ifdef FEAT_SPELL
7037 * Set curbuf->b_cap_prog to the regexp program for 'spellcapcheck'.
7038 * Return error message when failed, NULL when OK.
7040 static char_u *
7041 compile_cap_prog(buf)
7042 buf_T *buf;
7044 regprog_T *rp = buf->b_cap_prog;
7045 char_u *re;
7047 if (*buf->b_p_spc == NUL)
7048 buf->b_cap_prog = NULL;
7049 else
7051 /* Prepend a ^ so that we only match at one column */
7052 re = concat_str((char_u *)"^", buf->b_p_spc);
7053 if (re != NULL)
7055 buf->b_cap_prog = vim_regcomp(re, RE_MAGIC);
7056 if (buf->b_cap_prog == NULL)
7058 buf->b_cap_prog = rp; /* restore the previous program */
7059 return e_invarg;
7061 vim_free(re);
7065 vim_free(rp);
7066 return NULL;
7068 #endif
7070 #if defined(FEAT_EVAL) || defined(PROTO)
7072 * Set the scriptID for an option, taking care of setting the buffer- or
7073 * window-local value.
7075 static void
7076 set_option_scriptID_idx(opt_idx, opt_flags, id)
7077 int opt_idx;
7078 int opt_flags;
7079 int id;
7081 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
7082 int indir = (int)options[opt_idx].indir;
7084 /* Remember where the option was set. For local options need to do that
7085 * in the buffer or window structure. */
7086 if (both || (opt_flags & OPT_GLOBAL) || (indir & (PV_BUF|PV_WIN)) == 0)
7087 options[opt_idx].scriptID = id;
7088 if (both || (opt_flags & OPT_LOCAL))
7090 if (indir & PV_BUF)
7091 curbuf->b_p_scriptID[indir & PV_MASK] = id;
7092 else if (indir & PV_WIN)
7093 curwin->w_p_scriptID[indir & PV_MASK] = id;
7096 #endif
7099 * Set the value of a boolean option, and take care of side effects.
7100 * Returns NULL for success, or an error message for an error.
7102 static char_u *
7103 set_bool_option(opt_idx, varp, value, opt_flags)
7104 int opt_idx; /* index in options[] table */
7105 char_u *varp; /* pointer to the option variable */
7106 int value; /* new value */
7107 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
7109 int old_value = *(int *)varp;
7111 /* Disallow changing some options from secure mode */
7112 if ((secure
7113 #ifdef HAVE_SANDBOX
7114 || sandbox != 0
7115 #endif
7116 ) && (options[opt_idx].flags & P_SECURE))
7117 return e_secure;
7119 *(int *)varp = value; /* set the new value */
7120 #ifdef FEAT_EVAL
7121 /* Remember where the option was set. */
7122 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
7123 #endif
7125 #ifdef FEAT_GUI
7126 need_mouse_correct = TRUE;
7127 #endif
7129 /* May set global value for local option. */
7130 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0)
7131 *(int *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) = value;
7134 * Handle side effects of changing a bool option.
7137 /* 'compatible' */
7138 if ((int *)varp == &p_cp)
7140 compatible_set();
7143 else if ((int *)varp == &curbuf->b_p_ro)
7145 /* when 'readonly' is reset globally, also reset readonlymode */
7146 if (!curbuf->b_p_ro && (opt_flags & OPT_LOCAL) == 0)
7147 readonlymode = FALSE;
7149 /* when 'readonly' is set may give W10 again */
7150 if (curbuf->b_p_ro)
7151 curbuf->b_did_warn = FALSE;
7153 #ifdef FEAT_TITLE
7154 need_maketitle = TRUE;
7155 #endif
7158 #ifdef FEAT_TITLE
7159 /* when 'modifiable' is changed, redraw the window title */
7160 else if ((int *)varp == &curbuf->b_p_ma)
7161 need_maketitle = TRUE;
7162 /* when 'endofline' is changed, redraw the window title */
7163 else if ((int *)varp == &curbuf->b_p_eol)
7164 need_maketitle = TRUE;
7165 #ifdef FEAT_MBYTE
7166 /* when 'bomb' is changed, redraw the window title */
7167 else if ((int *)varp == &curbuf->b_p_bomb)
7168 need_maketitle = TRUE;
7169 #endif
7170 #endif
7172 /* when 'bin' is set also set some other options */
7173 else if ((int *)varp == &curbuf->b_p_bin)
7175 set_options_bin(old_value, curbuf->b_p_bin, opt_flags);
7176 #ifdef FEAT_TITLE
7177 need_maketitle = TRUE;
7178 #endif
7181 #ifdef FEAT_AUTOCMD
7182 /* when 'buflisted' changes, trigger autocommands */
7183 else if ((int *)varp == &curbuf->b_p_bl && old_value != curbuf->b_p_bl)
7185 apply_autocmds(curbuf->b_p_bl ? EVENT_BUFADD : EVENT_BUFDELETE,
7186 NULL, NULL, TRUE, curbuf);
7188 #endif
7190 /* when 'swf' is set, create swapfile, when reset remove swapfile */
7191 else if ((int *)varp == &curbuf->b_p_swf)
7193 if (curbuf->b_p_swf && p_uc)
7194 ml_open_file(curbuf); /* create the swap file */
7195 else
7196 /* no need to reset curbuf->b_may_swap, ml_open_file() will check
7197 * buf->b_p_swf */
7198 mf_close_file(curbuf, TRUE); /* remove the swap file */
7201 /* when 'terse' is set change 'shortmess' */
7202 else if ((int *)varp == &p_terse)
7204 char_u *p;
7206 p = vim_strchr(p_shm, SHM_SEARCH);
7208 /* insert 's' in p_shm */
7209 if (p_terse && p == NULL)
7211 STRCPY(IObuff, p_shm);
7212 STRCAT(IObuff, "s");
7213 set_string_option_direct((char_u *)"shm", -1, IObuff, OPT_FREE, 0);
7215 /* remove 's' from p_shm */
7216 else if (!p_terse && p != NULL)
7217 mch_memmove(p, p + 1, STRLEN(p));
7220 /* when 'paste' is set or reset also change other options */
7221 else if ((int *)varp == &p_paste)
7223 paste_option_changed();
7226 /* when 'insertmode' is set from an autocommand need to do work here */
7227 else if ((int *)varp == &p_im)
7229 if (p_im)
7231 if ((State & INSERT) == 0)
7232 need_start_insertmode = TRUE;
7233 stop_insert_mode = FALSE;
7235 else
7237 need_start_insertmode = FALSE;
7238 stop_insert_mode = TRUE;
7239 if (restart_edit != 0 && mode_displayed)
7240 clear_cmdline = TRUE; /* remove "(insert)" */
7241 restart_edit = 0;
7245 /* when 'ignorecase' is set or reset and 'hlsearch' is set, redraw */
7246 else if ((int *)varp == &p_ic && p_hls)
7248 redraw_all_later(SOME_VALID);
7251 #ifdef FEAT_SEARCH_EXTRA
7252 /* when 'hlsearch' is set or reset: reset no_hlsearch */
7253 else if ((int *)varp == &p_hls)
7255 no_hlsearch = FALSE;
7257 #endif
7259 #ifdef FEAT_SCROLLBIND
7260 /* when 'scrollbind' is set: snapshot the current position to avoid a jump
7261 * at the end of normal_cmd() */
7262 else if ((int *)varp == &curwin->w_p_scb)
7264 if (curwin->w_p_scb)
7265 do_check_scrollbind(FALSE);
7267 #endif
7269 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
7270 /* There can be only one window with 'previewwindow' set. */
7271 else if ((int *)varp == &curwin->w_p_pvw)
7273 if (curwin->w_p_pvw)
7275 win_T *win;
7277 for (win = firstwin; win != NULL; win = win->w_next)
7278 if (win->w_p_pvw && win != curwin)
7280 curwin->w_p_pvw = FALSE;
7281 return (char_u *)N_("E590: A preview window already exists");
7285 #endif
7287 /* when 'textmode' is set or reset also change 'fileformat' */
7288 else if ((int *)varp == &curbuf->b_p_tx)
7290 set_fileformat(curbuf->b_p_tx ? EOL_DOS : EOL_UNIX, opt_flags);
7293 #ifdef FEAT_FULLSCREEN
7294 /* when 'fullscreen' changes, forward it to the gui */
7295 else if ((int *)varp == &p_fullscreen && gui.in_use)
7297 if (p_fullscreen && !old_value)
7298 gui_mch_enter_fullscreen();
7299 else if (!p_fullscreen && old_value)
7300 gui_mch_leave_fullscreen();
7302 #endif
7304 /* when 'textauto' is set or reset also change 'fileformats' */
7305 else if ((int *)varp == &p_ta)
7306 set_string_option_direct((char_u *)"ffs", -1,
7307 p_ta ? (char_u *)DFLT_FFS_VIM : (char_u *)"",
7308 OPT_FREE | opt_flags, 0);
7311 * When 'lisp' option changes include/exclude '-' in
7312 * keyword characters.
7314 #ifdef FEAT_LISP
7315 else if (varp == (char_u *)&(curbuf->b_p_lisp))
7317 (void)buf_init_chartab(curbuf, FALSE); /* ignore errors */
7319 #endif
7321 #ifdef FEAT_TITLE
7322 /* when 'title' changed, may need to change the title; same for 'icon' */
7323 else if ((int *)varp == &p_title)
7325 did_set_title(FALSE);
7328 else if ((int *)varp == &p_icon)
7330 did_set_title(TRUE);
7332 #endif
7334 else if ((int *)varp == &curbuf->b_changed)
7336 if (!value)
7337 save_file_ff(curbuf); /* Buffer is unchanged */
7338 #ifdef FEAT_TITLE
7339 need_maketitle = TRUE;
7340 #endif
7341 #ifdef FEAT_AUTOCMD
7342 modified_was_set = value;
7343 #endif
7346 #ifdef BACKSLASH_IN_FILENAME
7347 else if ((int *)varp == &p_ssl)
7349 if (p_ssl)
7351 psepc = '/';
7352 psepcN = '\\';
7353 pseps[0] = '/';
7355 else
7357 psepc = '\\';
7358 psepcN = '/';
7359 pseps[0] = '\\';
7362 /* need to adjust the file name arguments and buffer names. */
7363 buflist_slash_adjust();
7364 alist_slash_adjust();
7365 # ifdef FEAT_EVAL
7366 scriptnames_slash_adjust();
7367 # endif
7369 #endif
7371 /* If 'wrap' is set, set w_leftcol to zero. */
7372 else if ((int *)varp == &curwin->w_p_wrap)
7374 if (curwin->w_p_wrap)
7375 curwin->w_leftcol = 0;
7378 #ifdef FEAT_WINDOWS
7379 else if ((int *)varp == &p_ea)
7381 if (p_ea && !old_value)
7382 win_equal(curwin, FALSE, 0);
7384 #endif
7386 else if ((int *)varp == &p_wiv)
7389 * When 'weirdinvert' changed, set/reset 't_xs'.
7390 * Then set 'weirdinvert' according to value of 't_xs'.
7392 if (p_wiv && !old_value)
7393 T_XS = (char_u *)"y";
7394 else if (!p_wiv && old_value)
7395 T_XS = empty_option;
7396 p_wiv = (*T_XS != NUL);
7399 #ifdef FEAT_BEVAL
7400 else if ((int *)varp == &p_beval)
7402 if (p_beval == TRUE)
7403 gui_mch_enable_beval_area(balloonEval);
7404 else
7405 gui_mch_disable_beval_area(balloonEval);
7407 #endif
7409 #ifdef FEAT_AUTOCHDIR
7410 else if ((int *)varp == &p_acd)
7412 /* Change directories when the 'acd' option is set now. */
7413 DO_AUTOCHDIR
7415 #endif
7417 #ifdef FEAT_DIFF
7418 /* 'diff' */
7419 else if ((int *)varp == &curwin->w_p_diff)
7421 /* May add or remove the buffer from the list of diff buffers. */
7422 diff_buf_adjust(curwin);
7423 # ifdef FEAT_FOLDING
7424 if (foldmethodIsDiff(curwin))
7425 foldUpdateAll(curwin);
7426 # endif
7428 #endif
7430 #ifdef USE_IM_CONTROL
7431 /* 'imdisable' */
7432 else if ((int *)varp == &p_imdisable)
7434 /* Only de-activate it here, it will be enabled when changing mode. */
7435 if (p_imdisable)
7436 im_set_active(FALSE);
7438 #endif
7440 #ifdef FEAT_SPELL
7441 /* 'spell' */
7442 else if ((int *)varp == &curwin->w_p_spell)
7444 if (curwin->w_p_spell)
7446 char_u *errmsg = did_set_spelllang(curbuf);
7448 if (errmsg != NULL)
7449 EMSG(_(errmsg));
7452 #endif
7454 #ifdef FEAT_FKMAP
7455 else if ((int *)varp == &p_altkeymap)
7457 if (old_value != p_altkeymap)
7459 if (!p_altkeymap)
7461 p_hkmap = p_fkmap;
7462 p_fkmap = 0;
7464 else
7466 p_fkmap = p_hkmap;
7467 p_hkmap = 0;
7469 (void)init_chartab();
7474 * In case some second language keymapping options have changed, check
7475 * and correct the setting in a consistent way.
7479 * If hkmap or fkmap are set, reset Arabic keymapping.
7481 if ((p_hkmap || p_fkmap) && p_altkeymap)
7483 p_altkeymap = p_fkmap;
7484 # ifdef FEAT_ARABIC
7485 curwin->w_p_arab = FALSE;
7486 # endif
7487 (void)init_chartab();
7491 * If hkmap set, reset Farsi keymapping.
7493 if (p_hkmap && p_altkeymap)
7495 p_altkeymap = 0;
7496 p_fkmap = 0;
7497 # ifdef FEAT_ARABIC
7498 curwin->w_p_arab = FALSE;
7499 # endif
7500 (void)init_chartab();
7504 * If fkmap set, reset Hebrew keymapping.
7506 if (p_fkmap && !p_altkeymap)
7508 p_altkeymap = 1;
7509 p_hkmap = 0;
7510 # ifdef FEAT_ARABIC
7511 curwin->w_p_arab = FALSE;
7512 # endif
7513 (void)init_chartab();
7515 #endif
7517 #ifdef FEAT_ARABIC
7518 if ((int *)varp == &curwin->w_p_arab)
7520 if (curwin->w_p_arab)
7523 * 'arabic' is set, handle various sub-settings.
7525 if (!p_tbidi)
7527 /* set rightleft mode */
7528 if (!curwin->w_p_rl)
7530 curwin->w_p_rl = TRUE;
7531 changed_window_setting();
7534 /* Enable Arabic shaping (major part of what Arabic requires) */
7535 if (!p_arshape)
7537 p_arshape = TRUE;
7538 redraw_later_clear();
7542 /* Arabic requires a utf-8 encoding, inform the user if its not
7543 * set. */
7544 if (STRCMP(p_enc, "utf-8") != 0)
7546 msg_source(hl_attr(HLF_W));
7547 MSG_ATTR(_("W17: Arabic requires UTF-8, do ':set encoding=utf-8'"),
7548 hl_attr(HLF_W));
7551 # ifdef FEAT_MBYTE
7552 /* set 'delcombine' */
7553 p_deco = TRUE;
7554 # endif
7556 # ifdef FEAT_KEYMAP
7557 /* Force-set the necessary keymap for arabic */
7558 set_option_value((char_u *)"keymap", 0L, (char_u *)"arabic",
7559 OPT_LOCAL);
7560 # endif
7561 # ifdef FEAT_FKMAP
7562 p_altkeymap = 0;
7563 p_hkmap = 0;
7564 p_fkmap = 0;
7565 (void)init_chartab();
7566 # endif
7568 else
7571 * 'arabic' is reset, handle various sub-settings.
7573 if (!p_tbidi)
7575 /* reset rightleft mode */
7576 if (curwin->w_p_rl)
7578 curwin->w_p_rl = FALSE;
7579 changed_window_setting();
7582 /* 'arabicshape' isn't reset, it is a global option and
7583 * another window may still need it "on". */
7586 /* 'delcombine' isn't reset, it is a global option and another
7587 * window may still want it "on". */
7589 # ifdef FEAT_KEYMAP
7590 /* Revert to the default keymap */
7591 curbuf->b_p_iminsert = B_IMODE_NONE;
7592 curbuf->b_p_imsearch = B_IMODE_USE_INSERT;
7593 # endif
7596 #endif
7599 * End of handling side effects for bool options.
7602 options[opt_idx].flags |= P_WAS_SET;
7604 comp_col(); /* in case 'ruler' or 'showcmd' changed */
7605 if (curwin->w_curswant != MAXCOL)
7606 curwin->w_set_curswant = TRUE; /* in case 'list' changed */
7607 check_redraw(options[opt_idx].flags);
7609 return NULL;
7613 * Set the value of a number option, and take care of side effects.
7614 * Returns NULL for success, or an error message for an error.
7616 static char_u *
7617 set_num_option(opt_idx, varp, value, errbuf, errbuflen, opt_flags)
7618 int opt_idx; /* index in options[] table */
7619 char_u *varp; /* pointer to the option variable */
7620 long value; /* new value */
7621 char_u *errbuf; /* buffer for error messages */
7622 size_t errbuflen; /* length of "errbuf" */
7623 int opt_flags; /* OPT_LOCAL, OPT_GLOBAL and
7624 OPT_MODELINE */
7626 char_u *errmsg = NULL;
7627 long old_value = *(long *)varp;
7628 long old_Rows = Rows; /* remember old Rows */
7629 long old_Columns = Columns; /* remember old Columns */
7630 long *pp = (long *)varp;
7632 /* Disallow changing some options from secure mode. */
7633 if ((secure
7634 #ifdef HAVE_SANDBOX
7635 || sandbox != 0
7636 #endif
7637 ) && (options[opt_idx].flags & P_SECURE))
7638 return e_secure;
7640 *pp = value;
7641 #ifdef FEAT_EVAL
7642 /* Remember where the option was set. */
7643 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
7644 #endif
7645 #ifdef FEAT_GUI
7646 need_mouse_correct = TRUE;
7647 #endif
7649 if (curbuf->b_p_sw <= 0)
7651 errmsg = e_positive;
7652 curbuf->b_p_sw = curbuf->b_p_ts;
7656 * Number options that need some action when changed
7658 #ifdef FEAT_WINDOWS
7659 if (pp == &p_wh || pp == &p_hh)
7661 if (p_wh < 1)
7663 errmsg = e_positive;
7664 p_wh = 1;
7666 if (p_wmh > p_wh)
7668 errmsg = e_winheight;
7669 p_wh = p_wmh;
7671 if (p_hh < 0)
7673 errmsg = e_positive;
7674 p_hh = 0;
7677 /* Change window height NOW */
7678 if (lastwin != firstwin)
7680 if (pp == &p_wh && curwin->w_height < p_wh)
7681 win_setheight((int)p_wh);
7682 if (pp == &p_hh && curbuf->b_help && curwin->w_height < p_hh)
7683 win_setheight((int)p_hh);
7687 /* 'winminheight' */
7688 else if (pp == &p_wmh)
7690 if (p_wmh < 0)
7692 errmsg = e_positive;
7693 p_wmh = 0;
7695 if (p_wmh > p_wh)
7697 errmsg = e_winheight;
7698 p_wmh = p_wh;
7700 win_setminheight();
7703 # ifdef FEAT_VERTSPLIT
7704 else if (pp == &p_wiw)
7706 if (p_wiw < 1)
7708 errmsg = e_positive;
7709 p_wiw = 1;
7711 if (p_wmw > p_wiw)
7713 errmsg = e_winwidth;
7714 p_wiw = p_wmw;
7717 /* Change window width NOW */
7718 if (lastwin != firstwin && curwin->w_width < p_wiw)
7719 win_setwidth((int)p_wiw);
7722 /* 'winminwidth' */
7723 else if (pp == &p_wmw)
7725 if (p_wmw < 0)
7727 errmsg = e_positive;
7728 p_wmw = 0;
7730 if (p_wmw > p_wiw)
7732 errmsg = e_winwidth;
7733 p_wmw = p_wiw;
7735 win_setminheight();
7737 # endif
7739 #endif
7741 #ifdef FEAT_WINDOWS
7742 /* (re)set last window status line */
7743 else if (pp == &p_ls)
7745 last_status(FALSE);
7748 /* (re)set tab page line */
7749 else if (pp == &p_stal)
7751 shell_new_rows(); /* recompute window positions and heights */
7753 #endif
7755 #ifdef FEAT_GUI
7756 else if (pp == &p_linespace)
7758 /* Recompute gui.char_height and resize the Vim window to keep the
7759 * same number of lines. */
7760 if (gui.in_use && gui_mch_adjust_charheight() == OK)
7761 gui_set_shellsize(FALSE, FALSE, RESIZE_VERT);
7763 #endif
7765 #ifdef FEAT_FOLDING
7766 /* 'foldlevel' */
7767 else if (pp == &curwin->w_p_fdl)
7769 if (curwin->w_p_fdl < 0)
7770 curwin->w_p_fdl = 0;
7771 newFoldLevel();
7774 /* 'foldminlevel' */
7775 else if (pp == &curwin->w_p_fml)
7777 foldUpdateAll(curwin);
7780 /* 'foldnestmax' */
7781 else if (pp == &curwin->w_p_fdn)
7783 if (foldmethodIsSyntax(curwin) || foldmethodIsIndent(curwin))
7784 foldUpdateAll(curwin);
7787 /* 'foldcolumn' */
7788 else if (pp == &curwin->w_p_fdc)
7790 if (curwin->w_p_fdc < 0)
7792 errmsg = e_positive;
7793 curwin->w_p_fdc = 0;
7795 else if (curwin->w_p_fdc > 12)
7797 errmsg = e_invarg;
7798 curwin->w_p_fdc = 12;
7802 /* 'shiftwidth' or 'tabstop' */
7803 else if (pp == &curbuf->b_p_sw || pp == &curbuf->b_p_ts)
7805 if (foldmethodIsIndent(curwin))
7806 foldUpdateAll(curwin);
7808 #endif /* FEAT_FOLDING */
7810 #ifdef FEAT_MBYTE
7811 /* 'maxcombine' */
7812 else if (pp == &p_mco)
7814 if (p_mco > MAX_MCO)
7815 p_mco = MAX_MCO;
7816 else if (p_mco < 0)
7817 p_mco = 0;
7818 screenclear(); /* will re-allocate the screen */
7820 #endif
7822 else if (pp == &curbuf->b_p_iminsert)
7824 if (curbuf->b_p_iminsert < 0 || curbuf->b_p_iminsert > B_IMODE_LAST)
7826 errmsg = e_invarg;
7827 curbuf->b_p_iminsert = B_IMODE_NONE;
7829 p_iminsert = curbuf->b_p_iminsert;
7830 if (termcap_active) /* don't do this in the alternate screen */
7831 showmode();
7832 #if defined(FEAT_WINDOWS) && defined(FEAT_KEYMAP)
7833 /* Show/unshow value of 'keymap' in status lines. */
7834 status_redraw_curbuf();
7835 #endif
7838 else if (pp == &p_window)
7840 if (p_window < 1)
7841 p_window = 1;
7842 else if (p_window >= Rows)
7843 p_window = Rows - 1;
7846 else if (pp == &curbuf->b_p_imsearch)
7848 if (curbuf->b_p_imsearch < -1 || curbuf->b_p_imsearch > B_IMODE_LAST)
7850 errmsg = e_invarg;
7851 curbuf->b_p_imsearch = B_IMODE_NONE;
7853 p_imsearch = curbuf->b_p_imsearch;
7856 #ifdef FEAT_TITLE
7857 /* if 'titlelen' has changed, redraw the title */
7858 else if (pp == &p_titlelen)
7860 if (p_titlelen < 0)
7862 errmsg = e_positive;
7863 p_titlelen = 85;
7865 if (starting != NO_SCREEN && old_value != p_titlelen)
7866 need_maketitle = TRUE;
7868 #endif
7870 /* if p_ch changed value, change the command line height */
7871 else if (pp == &p_ch)
7873 if (p_ch < 1)
7875 errmsg = e_positive;
7876 p_ch = 1;
7878 if (p_ch > Rows - min_rows() + 1)
7879 p_ch = Rows - min_rows() + 1;
7881 /* Only compute the new window layout when startup has been
7882 * completed. Otherwise the frame sizes may be wrong. */
7883 if (p_ch != old_value && full_screen
7884 #ifdef FEAT_GUI
7885 && !gui.starting
7886 #endif
7888 command_height();
7891 /* when 'updatecount' changes from zero to non-zero, open swap files */
7892 else if (pp == &p_uc)
7894 if (p_uc < 0)
7896 errmsg = e_positive;
7897 p_uc = 100;
7899 if (p_uc && !old_value)
7900 ml_open_files();
7902 #ifdef MZSCHEME_GUI_THREADS
7903 else if (pp == &p_mzq)
7904 mzvim_reset_timer();
7905 #endif
7907 /* sync undo before 'undolevels' changes */
7908 else if (pp == &p_ul)
7910 /* use the old value, otherwise u_sync() may not work properly */
7911 p_ul = old_value;
7912 u_sync(TRUE);
7913 p_ul = value;
7916 #ifdef FEAT_LINEBREAK
7917 /* 'numberwidth' must be positive */
7918 else if (pp == &curwin->w_p_nuw)
7920 if (curwin->w_p_nuw < 1)
7922 errmsg = e_positive;
7923 curwin->w_p_nuw = 1;
7925 if (curwin->w_p_nuw > 10)
7927 errmsg = e_invarg;
7928 curwin->w_p_nuw = 10;
7930 curwin->w_nrwidth_line_count = 0;
7932 #endif
7934 #if defined(FEAT_TRANSPARENCY)
7935 /* 'transparency' is a number between 0 and 100 */
7936 else if (pp == &p_transp)
7938 if (p_transp < 0 || p_transp > 100)
7940 errmsg = e_invarg;
7941 p_transp = old_value;
7943 else if (gui.in_use)
7944 gui_mch_new_colors();
7946 #endif
7949 * Check the bounds for numeric options here
7951 if (Rows < min_rows() && full_screen)
7953 if (errbuf != NULL)
7955 vim_snprintf((char *)errbuf, errbuflen,
7956 _("E593: Need at least %d lines"), min_rows());
7957 errmsg = errbuf;
7959 Rows = min_rows();
7961 if (Columns < MIN_COLUMNS && full_screen)
7963 if (errbuf != NULL)
7965 vim_snprintf((char *)errbuf, errbuflen,
7966 _("E594: Need at least %d columns"), MIN_COLUMNS);
7967 errmsg = errbuf;
7969 Columns = MIN_COLUMNS;
7971 /* Limit the values to avoid an overflow in Rows * Columns. */
7972 if (Columns > 10000)
7973 Columns = 10000;
7974 if (Rows > 1000)
7975 Rows = 1000;
7977 #ifdef DJGPP
7978 /* avoid a crash by checking for a too large value of 'columns' */
7979 if (old_Columns != Columns && full_screen && term_console)
7980 mch_check_columns();
7981 #endif
7984 * If the screen (shell) height has been changed, assume it is the
7985 * physical screenheight.
7987 if (old_Rows != Rows || old_Columns != Columns)
7989 /* Changing the screen size is not allowed while updating the screen. */
7990 if (updating_screen)
7991 *pp = old_value;
7992 else if (full_screen
7993 #ifdef FEAT_GUI
7994 && !gui.starting
7995 #endif
7997 set_shellsize((int)Columns, (int)Rows, TRUE);
7998 else
8000 /* Postpone the resizing; check the size and cmdline position for
8001 * messages. */
8002 check_shellsize();
8003 if (cmdline_row > Rows - p_ch && Rows > p_ch)
8004 cmdline_row = Rows - p_ch;
8006 if (p_window >= Rows || !option_was_set((char_u *)"window"))
8007 p_window = Rows - 1;
8010 if (curbuf->b_p_sts < 0)
8012 errmsg = e_positive;
8013 curbuf->b_p_sts = 0;
8015 if (curbuf->b_p_ts <= 0)
8017 errmsg = e_positive;
8018 curbuf->b_p_ts = 8;
8020 if (curbuf->b_p_tw < 0)
8022 errmsg = e_positive;
8023 curbuf->b_p_tw = 0;
8025 if (p_tm < 0)
8027 errmsg = e_positive;
8028 p_tm = 0;
8030 if ((curwin->w_p_scr <= 0
8031 || (curwin->w_p_scr > curwin->w_height
8032 && curwin->w_height > 0))
8033 && full_screen)
8035 if (pp == &(curwin->w_p_scr))
8037 if (curwin->w_p_scr != 0)
8038 errmsg = e_scroll;
8039 win_comp_scroll(curwin);
8041 /* If 'scroll' became invalid because of a side effect silently adjust
8042 * it. */
8043 else if (curwin->w_p_scr <= 0)
8044 curwin->w_p_scr = 1;
8045 else /* curwin->w_p_scr > curwin->w_height */
8046 curwin->w_p_scr = curwin->w_height;
8048 if (p_report < 0)
8050 errmsg = e_positive;
8051 p_report = 1;
8053 if ((p_sj < -100 || p_sj >= Rows) && full_screen)
8055 if (Rows != old_Rows) /* Rows changed, just adjust p_sj */
8056 p_sj = Rows / 2;
8057 else
8059 errmsg = e_scroll;
8060 p_sj = 1;
8063 if (p_so < 0 && full_screen)
8065 errmsg = e_scroll;
8066 p_so = 0;
8068 if (p_siso < 0 && full_screen)
8070 errmsg = e_positive;
8071 p_siso = 0;
8073 #ifdef FEAT_CMDWIN
8074 if (p_cwh < 1)
8076 errmsg = e_positive;
8077 p_cwh = 1;
8079 #endif
8080 if (p_ut < 0)
8082 errmsg = e_positive;
8083 p_ut = 2000;
8085 if (p_ss < 0)
8087 errmsg = e_positive;
8088 p_ss = 0;
8091 /* May set global value for local option. */
8092 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0)
8093 *(long *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) = *pp;
8095 options[opt_idx].flags |= P_WAS_SET;
8097 comp_col(); /* in case 'columns' or 'ls' changed */
8098 if (curwin->w_curswant != MAXCOL)
8099 curwin->w_set_curswant = TRUE; /* in case 'tabstop' changed */
8100 check_redraw(options[opt_idx].flags);
8102 return errmsg;
8106 * Called after an option changed: check if something needs to be redrawn.
8108 static void
8109 check_redraw(flags)
8110 long_u flags;
8112 /* Careful: P_RCLR and P_RALL are a combination of other P_ flags */
8113 int clear = (flags & P_RCLR) == P_RCLR;
8114 int all = ((flags & P_RALL) == P_RALL || clear);
8116 #ifdef FEAT_WINDOWS
8117 if ((flags & P_RSTAT) || all) /* mark all status lines dirty */
8118 status_redraw_all();
8119 #endif
8121 if ((flags & P_RBUF) || (flags & P_RWIN) || all)
8122 changed_window_setting();
8123 if (flags & P_RBUF)
8124 redraw_curbuf_later(NOT_VALID);
8125 if (clear)
8126 redraw_all_later(CLEAR);
8127 else if (all)
8128 redraw_all_later(NOT_VALID);
8132 * Find index for option 'arg'.
8133 * Return -1 if not found.
8135 static int
8136 findoption(arg)
8137 char_u *arg;
8139 int opt_idx;
8140 char *s, *p;
8141 static short quick_tab[27] = {0, 0}; /* quick access table */
8142 int is_term_opt;
8145 * For first call: Initialize the quick-access table.
8146 * It contains the index for the first option that starts with a certain
8147 * letter. There are 26 letters, plus the first "t_" option.
8149 if (quick_tab[1] == 0)
8151 p = options[0].fullname;
8152 for (opt_idx = 1; (s = options[opt_idx].fullname) != NULL; opt_idx++)
8154 if (s[0] != p[0])
8156 if (s[0] == 't' && s[1] == '_')
8157 quick_tab[26] = opt_idx;
8158 else
8159 quick_tab[CharOrdLow(s[0])] = opt_idx;
8161 p = s;
8166 * Check for name starting with an illegal character.
8168 #ifdef EBCDIC
8169 if (!islower(arg[0]))
8170 #else
8171 if (arg[0] < 'a' || arg[0] > 'z')
8172 #endif
8173 return -1;
8175 is_term_opt = (arg[0] == 't' && arg[1] == '_');
8176 if (is_term_opt)
8177 opt_idx = quick_tab[26];
8178 else
8179 opt_idx = quick_tab[CharOrdLow(arg[0])];
8180 for ( ; (s = options[opt_idx].fullname) != NULL; opt_idx++)
8182 if (STRCMP(arg, s) == 0) /* match full name */
8183 break;
8185 if (s == NULL && !is_term_opt)
8187 opt_idx = quick_tab[CharOrdLow(arg[0])];
8188 for ( ; options[opt_idx].fullname != NULL; opt_idx++)
8190 s = options[opt_idx].shortname;
8191 if (s != NULL && STRCMP(arg, s) == 0) /* match short name */
8192 break;
8193 s = NULL;
8196 if (s == NULL)
8197 opt_idx = -1;
8198 return opt_idx;
8201 #if defined(FEAT_EVAL) || defined(FEAT_TCL) || defined(FEAT_MZSCHEME)
8203 * Get the value for an option.
8205 * Returns:
8206 * Number or Toggle option: 1, *numval gets value.
8207 * String option: 0, *stringval gets allocated string.
8208 * Hidden Number or Toggle option: -1.
8209 * hidden String option: -2.
8210 * unknown option: -3.
8213 get_option_value(name, numval, stringval, opt_flags)
8214 char_u *name;
8215 long *numval;
8216 char_u **stringval; /* NULL when only checking existance */
8217 int opt_flags;
8219 int opt_idx;
8220 char_u *varp;
8222 opt_idx = findoption(name);
8223 if (opt_idx < 0) /* unknown option */
8224 return -3;
8226 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
8228 if (options[opt_idx].flags & P_STRING)
8230 if (varp == NULL) /* hidden option */
8231 return -2;
8232 if (stringval != NULL)
8234 #ifdef FEAT_CRYPT
8235 /* never return the value of the crypt key */
8236 if ((char_u **)varp == &curbuf->b_p_key)
8237 *stringval = vim_strsave((char_u *)"*****");
8238 else
8239 #endif
8240 *stringval = vim_strsave(*(char_u **)(varp));
8242 return 0;
8245 if (varp == NULL) /* hidden option */
8246 return -1;
8247 if (options[opt_idx].flags & P_NUM)
8248 *numval = *(long *)varp;
8249 else
8251 /* Special case: 'modified' is b_changed, but we also want to consider
8252 * it set when 'ff' or 'fenc' changed. */
8253 if ((int *)varp == &curbuf->b_changed)
8254 *numval = curbufIsChanged();
8255 else
8256 *numval = *(int *)varp;
8258 return 1;
8260 #endif
8263 * Set the value of option "name".
8264 * Use "string" for string options, use "number" for other options.
8266 void
8267 set_option_value(name, number, string, opt_flags)
8268 char_u *name;
8269 long number;
8270 char_u *string;
8271 int opt_flags; /* OPT_LOCAL or 0 (both) */
8273 int opt_idx;
8274 char_u *varp;
8275 long_u flags;
8277 opt_idx = findoption(name);
8278 if (opt_idx < 0)
8279 EMSG2(_("E355: Unknown option: %s"), name);
8280 else
8282 flags = options[opt_idx].flags;
8283 #ifdef HAVE_SANDBOX
8284 /* Disallow changing some options in the sandbox */
8285 if (sandbox > 0 && (flags & P_SECURE))
8287 EMSG(_(e_sandbox));
8288 return;
8290 #endif
8291 if (flags & P_STRING)
8292 set_string_option(opt_idx, string, opt_flags);
8293 else
8295 varp = get_varp(&options[opt_idx]);
8296 if (varp != NULL) /* hidden option is not changed */
8298 if (number == 0 && string != NULL)
8300 int index;
8302 /* Either we are given a string or we are setting option
8303 * to zero. */
8304 for (index = 0; string[index] == '0'; ++index)
8306 if (string[index] != NUL || index == 0)
8308 /* There's another character after zeros or the string
8309 * is empty. In both cases, we are trying to set a
8310 * num option using a string. */
8311 EMSG3(_("E521: Number required: &%s = '%s'"),
8312 name, string);
8313 return; /* do nothing as we hit an error */
8317 if (flags & P_NUM)
8318 (void)set_num_option(opt_idx, varp, number,
8319 NULL, 0, opt_flags);
8320 else
8321 (void)set_bool_option(opt_idx, varp, (int)number,
8322 opt_flags);
8329 * Get the terminal code for a terminal option.
8330 * Returns NULL when not found.
8332 char_u *
8333 get_term_code(tname)
8334 char_u *tname;
8336 int opt_idx;
8337 char_u *varp;
8339 if (tname[0] != 't' || tname[1] != '_' ||
8340 tname[2] == NUL || tname[3] == NUL)
8341 return NULL;
8342 if ((opt_idx = findoption(tname)) >= 0)
8344 varp = get_varp(&(options[opt_idx]));
8345 if (varp != NULL)
8346 varp = *(char_u **)(varp);
8347 return varp;
8349 return find_termcode(tname + 2);
8352 char_u *
8353 get_highlight_default()
8355 int i;
8357 i = findoption((char_u *)"hl");
8358 if (i >= 0)
8359 return options[i].def_val[VI_DEFAULT];
8360 return (char_u *)NULL;
8363 #if defined(FEAT_MBYTE) || defined(PROTO)
8364 char_u *
8365 get_encoding_default()
8367 int i;
8369 i = findoption((char_u *)"enc");
8370 if (i >= 0)
8371 return options[i].def_val[VI_DEFAULT];
8372 return (char_u *)NULL;
8374 #endif
8377 * Translate a string like "t_xx", "<t_xx>" or "<S-Tab>" to a key number.
8379 static int
8380 find_key_option(arg)
8381 char_u *arg;
8383 int key;
8384 int modifiers;
8387 * Don't use get_special_key_code() for t_xx, we don't want it to call
8388 * add_termcap_entry().
8390 if (arg[0] == 't' && arg[1] == '_' && arg[2] && arg[3])
8391 key = TERMCAP2KEY(arg[2], arg[3]);
8392 else
8394 --arg; /* put arg at the '<' */
8395 modifiers = 0;
8396 key = find_special_key(&arg, &modifiers, TRUE);
8397 if (modifiers) /* can't handle modifiers here */
8398 key = 0;
8400 return key;
8404 * if 'all' == 0: show changed options
8405 * if 'all' == 1: show all normal options
8406 * if 'all' == 2: show all terminal options
8408 static void
8409 showoptions(all, opt_flags)
8410 int all;
8411 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
8413 struct vimoption *p;
8414 int col;
8415 int isterm;
8416 char_u *varp;
8417 struct vimoption **items;
8418 int item_count;
8419 int run;
8420 int row, rows;
8421 int cols;
8422 int i;
8423 int len;
8425 #define INC 20
8426 #define GAP 3
8428 items = (struct vimoption **)alloc((unsigned)(sizeof(struct vimoption *) *
8429 PARAM_COUNT));
8430 if (items == NULL)
8431 return;
8433 /* Highlight title */
8434 if (all == 2)
8435 MSG_PUTS_TITLE(_("\n--- Terminal codes ---"));
8436 else if (opt_flags & OPT_GLOBAL)
8437 MSG_PUTS_TITLE(_("\n--- Global option values ---"));
8438 else if (opt_flags & OPT_LOCAL)
8439 MSG_PUTS_TITLE(_("\n--- Local option values ---"));
8440 else
8441 MSG_PUTS_TITLE(_("\n--- Options ---"));
8444 * do the loop two times:
8445 * 1. display the short items
8446 * 2. display the long items (only strings and numbers)
8448 for (run = 1; run <= 2 && !got_int; ++run)
8451 * collect the items in items[]
8453 item_count = 0;
8454 for (p = &options[0]; p->fullname != NULL; p++)
8456 varp = NULL;
8457 isterm = istermoption(p);
8458 if (opt_flags != 0)
8460 if (p->indir != PV_NONE && !isterm)
8461 varp = get_varp_scope(p, opt_flags);
8463 else
8464 varp = get_varp(p);
8465 if (varp != NULL
8466 && ((all == 2 && isterm)
8467 || (all == 1 && !isterm)
8468 || (all == 0 && !optval_default(p, varp))))
8470 if (p->flags & P_BOOL)
8471 len = 1; /* a toggle option fits always */
8472 else
8474 option_value2string(p, opt_flags);
8475 len = (int)STRLEN(p->fullname) + vim_strsize(NameBuff) + 1;
8477 if ((len <= INC - GAP && run == 1) ||
8478 (len > INC - GAP && run == 2))
8479 items[item_count++] = p;
8484 * display the items
8486 if (run == 1)
8488 cols = (Columns + GAP - 3) / INC;
8489 if (cols == 0)
8490 cols = 1;
8491 rows = (item_count + cols - 1) / cols;
8493 else /* run == 2 */
8494 rows = item_count;
8495 for (row = 0; row < rows && !got_int; ++row)
8497 msg_putchar('\n'); /* go to next line */
8498 if (got_int) /* 'q' typed in more */
8499 break;
8500 col = 0;
8501 for (i = row; i < item_count; i += rows)
8503 msg_col = col; /* make columns */
8504 showoneopt(items[i], opt_flags);
8505 col += INC;
8507 out_flush();
8508 ui_breakcheck();
8511 vim_free(items);
8515 * Return TRUE if option "p" has its default value.
8517 static int
8518 optval_default(p, varp)
8519 struct vimoption *p;
8520 char_u *varp;
8522 int dvi;
8524 if (varp == NULL)
8525 return TRUE; /* hidden option is always at default */
8526 dvi = ((p->flags & P_VI_DEF) || p_cp) ? VI_DEFAULT : VIM_DEFAULT;
8527 if (p->flags & P_NUM)
8528 return (*(long *)varp == (long)(long_i)p->def_val[dvi]);
8529 if (p->flags & P_BOOL)
8530 /* the cast to long is required for Manx C, long_i is
8531 * needed for MSVC */
8532 return (*(int *)varp == (int)(long)(long_i)p->def_val[dvi]);
8533 /* P_STRING */
8534 return (STRCMP(*(char_u **)varp, p->def_val[dvi]) == 0);
8538 * showoneopt: show the value of one option
8539 * must not be called with a hidden option!
8541 static void
8542 showoneopt(p, opt_flags)
8543 struct vimoption *p;
8544 int opt_flags; /* OPT_LOCAL or OPT_GLOBAL */
8546 char_u *varp;
8547 int save_silent = silent_mode;
8549 silent_mode = FALSE;
8550 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
8552 varp = get_varp_scope(p, opt_flags);
8554 /* for 'modified' we also need to check if 'ff' or 'fenc' changed. */
8555 if ((p->flags & P_BOOL) && ((int *)varp == &curbuf->b_changed
8556 ? !curbufIsChanged() : !*(int *)varp))
8557 MSG_PUTS("no");
8558 else if ((p->flags & P_BOOL) && *(int *)varp < 0)
8559 MSG_PUTS("--");
8560 else
8561 MSG_PUTS(" ");
8562 MSG_PUTS(p->fullname);
8563 if (!(p->flags & P_BOOL))
8565 msg_putchar('=');
8566 /* put value string in NameBuff */
8567 option_value2string(p, opt_flags);
8568 msg_outtrans(NameBuff);
8571 silent_mode = save_silent;
8572 info_message = FALSE;
8576 * Write modified options as ":set" commands to a file.
8578 * There are three values for "opt_flags":
8579 * OPT_GLOBAL: Write global option values and fresh values of
8580 * buffer-local options (used for start of a session
8581 * file).
8582 * OPT_GLOBAL + OPT_LOCAL: Idem, add fresh values of window-local options for
8583 * curwin (used for a vimrc file).
8584 * OPT_LOCAL: Write buffer-local option values for curbuf, fresh
8585 * and local values for window-local options of
8586 * curwin. Local values are also written when at the
8587 * default value, because a modeline or autocommand
8588 * may have set them when doing ":edit file" and the
8589 * user has set them back at the default or fresh
8590 * value.
8591 * When "local_only" is TRUE, don't write fresh
8592 * values, only local values (for ":mkview").
8593 * (fresh value = value used for a new buffer or window for a local option).
8595 * Return FAIL on error, OK otherwise.
8598 makeset(fd, opt_flags, local_only)
8599 FILE *fd;
8600 int opt_flags;
8601 int local_only;
8603 struct vimoption *p;
8604 char_u *varp; /* currently used value */
8605 char_u *varp_fresh; /* local value */
8606 char_u *varp_local = NULL; /* fresh value */
8607 char *cmd;
8608 int round;
8609 int pri;
8612 * The options that don't have a default (terminal name, columns, lines)
8613 * are never written. Terminal options are also not written.
8614 * Do the loop over "options[]" twice: once for options with the
8615 * P_PRI_MKRC flag and once without.
8617 for (pri = 1; pri >= 0; --pri)
8619 for (p = &options[0]; !istermoption(p); p++)
8620 if (!(p->flags & P_NO_MKRC)
8621 && !istermoption(p)
8622 && ((pri == 1) == ((p->flags & P_PRI_MKRC) != 0)))
8624 /* skip global option when only doing locals */
8625 if (p->indir == PV_NONE && !(opt_flags & OPT_GLOBAL))
8626 continue;
8628 /* Do not store options like 'bufhidden' and 'syntax' in a vimrc
8629 * file, they are always buffer-specific. */
8630 if ((opt_flags & OPT_GLOBAL) && (p->flags & P_NOGLOB))
8631 continue;
8633 /* Global values are only written when not at the default value. */
8634 varp = get_varp_scope(p, opt_flags);
8635 if ((opt_flags & OPT_GLOBAL) && optval_default(p, varp))
8636 continue;
8638 round = 2;
8639 if (p->indir != PV_NONE)
8641 if (p->var == VAR_WIN)
8643 /* skip window-local option when only doing globals */
8644 if (!(opt_flags & OPT_LOCAL))
8645 continue;
8646 /* When fresh value of window-local option is not at the
8647 * default, need to write it too. */
8648 if (!(opt_flags & OPT_GLOBAL) && !local_only)
8650 varp_fresh = get_varp_scope(p, OPT_GLOBAL);
8651 if (!optval_default(p, varp_fresh))
8653 round = 1;
8654 varp_local = varp;
8655 varp = varp_fresh;
8661 /* Round 1: fresh value for window-local options.
8662 * Round 2: other values */
8663 for ( ; round <= 2; varp = varp_local, ++round)
8665 if (round == 1 || (opt_flags & OPT_GLOBAL))
8666 cmd = "set";
8667 else
8668 cmd = "setlocal";
8670 if (p->flags & P_BOOL)
8672 if (put_setbool(fd, cmd, p->fullname, *(int *)varp) == FAIL)
8673 return FAIL;
8675 else if (p->flags & P_NUM)
8677 if (put_setnum(fd, cmd, p->fullname, (long *)varp) == FAIL)
8678 return FAIL;
8680 else /* P_STRING */
8682 #if defined(FEAT_SYN_HL) || defined(FEAT_AUTOCMD)
8683 int do_endif = FALSE;
8685 /* Don't set 'syntax' and 'filetype' again if the value is
8686 * already right, avoids reloading the syntax file. */
8687 if (
8688 # if defined(FEAT_SYN_HL)
8689 p->indir == PV_SYN
8690 # if defined(FEAT_AUTOCMD)
8692 # endif
8693 # endif
8694 # if defined(FEAT_AUTOCMD)
8695 p->indir == PV_FT)
8696 # endif
8698 if (fprintf(fd, "if &%s != '%s'", p->fullname,
8699 *(char_u **)(varp)) < 0
8700 || put_eol(fd) < 0)
8701 return FAIL;
8702 do_endif = TRUE;
8704 #endif
8705 if (put_setstring(fd, cmd, p->fullname, (char_u **)varp,
8706 (p->flags & P_EXPAND) != 0) == FAIL)
8707 return FAIL;
8708 #if defined(FEAT_SYN_HL) || defined(FEAT_AUTOCMD)
8709 if (do_endif)
8711 if (put_line(fd, "endif") == FAIL)
8712 return FAIL;
8714 #endif
8719 return OK;
8722 #if defined(FEAT_FOLDING) || defined(PROTO)
8724 * Generate set commands for the local fold options only. Used when
8725 * 'sessionoptions' or 'viewoptions' contains "folds" but not "options".
8728 makefoldset(fd)
8729 FILE *fd;
8731 if (put_setstring(fd, "setlocal", "fdm", &curwin->w_p_fdm, FALSE) == FAIL
8732 # ifdef FEAT_EVAL
8733 || put_setstring(fd, "setlocal", "fde", &curwin->w_p_fde, FALSE)
8734 == FAIL
8735 # endif
8736 || put_setstring(fd, "setlocal", "fmr", &curwin->w_p_fmr, FALSE)
8737 == FAIL
8738 || put_setstring(fd, "setlocal", "fdi", &curwin->w_p_fdi, FALSE)
8739 == FAIL
8740 || put_setnum(fd, "setlocal", "fdl", &curwin->w_p_fdl) == FAIL
8741 || put_setnum(fd, "setlocal", "fml", &curwin->w_p_fml) == FAIL
8742 || put_setnum(fd, "setlocal", "fdn", &curwin->w_p_fdn) == FAIL
8743 || put_setbool(fd, "setlocal", "fen", curwin->w_p_fen) == FAIL
8745 return FAIL;
8747 return OK;
8749 #endif
8751 static int
8752 put_setstring(fd, cmd, name, valuep, expand)
8753 FILE *fd;
8754 char *cmd;
8755 char *name;
8756 char_u **valuep;
8757 int expand;
8759 char_u *s;
8760 char_u buf[MAXPATHL];
8762 if (fprintf(fd, "%s %s=", cmd, name) < 0)
8763 return FAIL;
8764 if (*valuep != NULL)
8766 /* Output 'pastetoggle' as key names. For other
8767 * options some characters have to be escaped with
8768 * CTRL-V or backslash */
8769 if (valuep == &p_pt)
8771 s = *valuep;
8772 while (*s != NUL)
8773 if (fputs((char *)str2special(&s, FALSE), fd) < 0)
8774 return FAIL;
8776 else if (expand)
8778 home_replace(NULL, *valuep, buf, MAXPATHL, FALSE);
8779 if (put_escstr(fd, buf, 2) == FAIL)
8780 return FAIL;
8782 else if (put_escstr(fd, *valuep, 2) == FAIL)
8783 return FAIL;
8785 if (put_eol(fd) < 0)
8786 return FAIL;
8787 return OK;
8790 static int
8791 put_setnum(fd, cmd, name, valuep)
8792 FILE *fd;
8793 char *cmd;
8794 char *name;
8795 long *valuep;
8797 long wc;
8799 if (fprintf(fd, "%s %s=", cmd, name) < 0)
8800 return FAIL;
8801 if (wc_use_keyname((char_u *)valuep, &wc))
8803 /* print 'wildchar' and 'wildcharm' as a key name */
8804 if (fputs((char *)get_special_key_name((int)wc, 0), fd) < 0)
8805 return FAIL;
8807 else if (fprintf(fd, "%ld", *valuep) < 0)
8808 return FAIL;
8809 if (put_eol(fd) < 0)
8810 return FAIL;
8811 return OK;
8814 static int
8815 put_setbool(fd, cmd, name, value)
8816 FILE *fd;
8817 char *cmd;
8818 char *name;
8819 int value;
8821 if (value < 0) /* global/local option using global value */
8822 return OK;
8823 if (fprintf(fd, "%s %s%s", cmd, value ? "" : "no", name) < 0
8824 || put_eol(fd) < 0)
8825 return FAIL;
8826 return OK;
8830 * Clear all the terminal options.
8831 * If the option has been allocated, free the memory.
8832 * Terminal options are never hidden or indirect.
8834 void
8835 clear_termoptions()
8838 * Reset a few things before clearing the old options. This may cause
8839 * outputting a few things that the terminal doesn't understand, but the
8840 * screen will be cleared later, so this is OK.
8842 #ifdef FEAT_MOUSE_TTY
8843 mch_setmouse(FALSE); /* switch mouse off */
8844 #endif
8845 #ifdef FEAT_TITLE
8846 mch_restore_title(3); /* restore window titles */
8847 #endif
8848 #if defined(FEAT_XCLIPBOARD) && defined(FEAT_GUI)
8849 /* When starting the GUI close the display opened for the clipboard.
8850 * After restoring the title, because that will need the display. */
8851 if (gui.starting)
8852 clear_xterm_clip();
8853 #endif
8854 #ifdef WIN3264
8856 * Check if this is allowed now.
8858 if (can_end_termcap_mode(FALSE) == TRUE)
8859 #endif
8860 stoptermcap(); /* stop termcap mode */
8862 free_termoptions();
8865 void
8866 free_termoptions()
8868 struct vimoption *p;
8870 for (p = &options[0]; p->fullname != NULL; p++)
8871 if (istermoption(p))
8873 if (p->flags & P_ALLOCED)
8874 free_string_option(*(char_u **)(p->var));
8875 if (p->flags & P_DEF_ALLOCED)
8876 free_string_option(p->def_val[VI_DEFAULT]);
8877 *(char_u **)(p->var) = empty_option;
8878 p->def_val[VI_DEFAULT] = empty_option;
8879 p->flags &= ~(P_ALLOCED|P_DEF_ALLOCED);
8881 clear_termcodes();
8885 * Set the terminal option defaults to the current value.
8886 * Used after setting the terminal name.
8888 void
8889 set_term_defaults()
8891 struct vimoption *p;
8893 for (p = &options[0]; p->fullname != NULL; p++)
8895 if (istermoption(p) && p->def_val[VI_DEFAULT] != *(char_u **)(p->var))
8897 if (p->flags & P_DEF_ALLOCED)
8899 free_string_option(p->def_val[VI_DEFAULT]);
8900 p->flags &= ~P_DEF_ALLOCED;
8902 p->def_val[VI_DEFAULT] = *(char_u **)(p->var);
8903 if (p->flags & P_ALLOCED)
8905 p->flags |= P_DEF_ALLOCED;
8906 p->flags &= ~P_ALLOCED; /* don't free the value now */
8913 * return TRUE if 'p' starts with 't_'
8915 static int
8916 istermoption(p)
8917 struct vimoption *p;
8919 return (p->fullname[0] == 't' && p->fullname[1] == '_');
8923 * Compute columns for ruler and shown command. 'sc_col' is also used to
8924 * decide what the maximum length of a message on the status line can be.
8925 * If there is a status line for the last window, 'sc_col' is independent
8926 * of 'ru_col'.
8929 #define COL_RULER 17 /* columns needed by standard ruler */
8931 void
8932 comp_col()
8934 #if defined(FEAT_CMDL_INFO) && defined(FEAT_WINDOWS)
8935 int last_has_status = (p_ls == 2 || (p_ls == 1 && firstwin != lastwin));
8937 sc_col = 0;
8938 ru_col = 0;
8939 if (p_ru)
8941 #ifdef FEAT_STL_OPT
8942 ru_col = (ru_wid ? ru_wid : COL_RULER) + 1;
8943 #else
8944 ru_col = COL_RULER + 1;
8945 #endif
8946 /* no last status line, adjust sc_col */
8947 if (!last_has_status)
8948 sc_col = ru_col;
8950 if (p_sc)
8952 sc_col += SHOWCMD_COLS;
8953 if (!p_ru || last_has_status) /* no need for separating space */
8954 ++sc_col;
8956 sc_col = Columns - sc_col;
8957 ru_col = Columns - ru_col;
8958 if (sc_col <= 0) /* screen too narrow, will become a mess */
8959 sc_col = 1;
8960 if (ru_col <= 0)
8961 ru_col = 1;
8962 #else
8963 sc_col = Columns;
8964 ru_col = Columns;
8965 #endif
8969 * Get pointer to option variable, depending on local or global scope.
8971 static char_u *
8972 get_varp_scope(p, opt_flags)
8973 struct vimoption *p;
8974 int opt_flags;
8976 if ((opt_flags & OPT_GLOBAL) && p->indir != PV_NONE)
8978 if (p->var == VAR_WIN)
8979 return (char_u *)GLOBAL_WO(get_varp(p));
8980 return p->var;
8982 if ((opt_flags & OPT_LOCAL) && ((int)p->indir & PV_BOTH))
8984 switch ((int)p->indir)
8986 #ifdef FEAT_QUICKFIX
8987 case PV_EFM: return (char_u *)&(curbuf->b_p_efm);
8988 case PV_GP: return (char_u *)&(curbuf->b_p_gp);
8989 case PV_MP: return (char_u *)&(curbuf->b_p_mp);
8990 #endif
8991 case PV_EP: return (char_u *)&(curbuf->b_p_ep);
8992 case PV_KP: return (char_u *)&(curbuf->b_p_kp);
8993 case PV_PATH: return (char_u *)&(curbuf->b_p_path);
8994 case PV_AR: return (char_u *)&(curbuf->b_p_ar);
8995 case PV_TAGS: return (char_u *)&(curbuf->b_p_tags);
8996 #ifdef FEAT_FIND_ID
8997 case PV_DEF: return (char_u *)&(curbuf->b_p_def);
8998 case PV_INC: return (char_u *)&(curbuf->b_p_inc);
8999 #endif
9000 #ifdef FEAT_INS_EXPAND
9001 case PV_DICT: return (char_u *)&(curbuf->b_p_dict);
9002 case PV_TSR: return (char_u *)&(curbuf->b_p_tsr);
9003 #endif
9004 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9005 case PV_BEXPR: return (char_u *)&(curbuf->b_p_bexpr);
9006 #endif
9007 #ifdef FEAT_STL_OPT
9008 case PV_STL: return (char_u *)&(curwin->w_p_stl);
9009 #endif
9011 return NULL; /* "cannot happen" */
9013 return get_varp(p);
9017 * Get pointer to option variable.
9019 static char_u *
9020 get_varp(p)
9021 struct vimoption *p;
9023 /* hidden option, always return NULL */
9024 if (p->var == NULL)
9025 return NULL;
9027 switch ((int)p->indir)
9029 case PV_NONE: return p->var;
9031 /* global option with local value: use local value if it's been set */
9032 case PV_EP: return *curbuf->b_p_ep != NUL
9033 ? (char_u *)&curbuf->b_p_ep : p->var;
9034 case PV_KP: return *curbuf->b_p_kp != NUL
9035 ? (char_u *)&curbuf->b_p_kp : p->var;
9036 case PV_PATH: return *curbuf->b_p_path != NUL
9037 ? (char_u *)&(curbuf->b_p_path) : p->var;
9038 case PV_AR: return curbuf->b_p_ar >= 0
9039 ? (char_u *)&(curbuf->b_p_ar) : p->var;
9040 case PV_TAGS: return *curbuf->b_p_tags != NUL
9041 ? (char_u *)&(curbuf->b_p_tags) : p->var;
9042 #ifdef FEAT_FIND_ID
9043 case PV_DEF: return *curbuf->b_p_def != NUL
9044 ? (char_u *)&(curbuf->b_p_def) : p->var;
9045 case PV_INC: return *curbuf->b_p_inc != NUL
9046 ? (char_u *)&(curbuf->b_p_inc) : p->var;
9047 #endif
9048 #ifdef FEAT_INS_EXPAND
9049 case PV_DICT: return *curbuf->b_p_dict != NUL
9050 ? (char_u *)&(curbuf->b_p_dict) : p->var;
9051 case PV_TSR: return *curbuf->b_p_tsr != NUL
9052 ? (char_u *)&(curbuf->b_p_tsr) : p->var;
9053 #endif
9054 #ifdef FEAT_QUICKFIX
9055 case PV_EFM: return *curbuf->b_p_efm != NUL
9056 ? (char_u *)&(curbuf->b_p_efm) : p->var;
9057 case PV_GP: return *curbuf->b_p_gp != NUL
9058 ? (char_u *)&(curbuf->b_p_gp) : p->var;
9059 case PV_MP: return *curbuf->b_p_mp != NUL
9060 ? (char_u *)&(curbuf->b_p_mp) : p->var;
9061 #endif
9062 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9063 case PV_BEXPR: return *curbuf->b_p_bexpr != NUL
9064 ? (char_u *)&(curbuf->b_p_bexpr) : p->var;
9065 #endif
9066 #ifdef FEAT_STL_OPT
9067 case PV_STL: return *curwin->w_p_stl != NUL
9068 ? (char_u *)&(curwin->w_p_stl) : p->var;
9069 #endif
9071 #ifdef FEAT_ARABIC
9072 case PV_ARAB: return (char_u *)&(curwin->w_p_arab);
9073 #endif
9074 case PV_LIST: return (char_u *)&(curwin->w_p_list);
9075 #ifdef FEAT_SPELL
9076 case PV_SPELL: return (char_u *)&(curwin->w_p_spell);
9077 #endif
9078 #ifdef FEAT_SYN_HL
9079 case PV_CUC: return (char_u *)&(curwin->w_p_cuc);
9080 case PV_CUL: return (char_u *)&(curwin->w_p_cul);
9081 #endif
9082 #ifdef FEAT_DIFF
9083 case PV_DIFF: return (char_u *)&(curwin->w_p_diff);
9084 #endif
9085 #ifdef FEAT_FOLDING
9086 case PV_FDC: return (char_u *)&(curwin->w_p_fdc);
9087 case PV_FEN: return (char_u *)&(curwin->w_p_fen);
9088 case PV_FDI: return (char_u *)&(curwin->w_p_fdi);
9089 case PV_FDL: return (char_u *)&(curwin->w_p_fdl);
9090 case PV_FDM: return (char_u *)&(curwin->w_p_fdm);
9091 case PV_FML: return (char_u *)&(curwin->w_p_fml);
9092 case PV_FDN: return (char_u *)&(curwin->w_p_fdn);
9093 # ifdef FEAT_EVAL
9094 case PV_FDE: return (char_u *)&(curwin->w_p_fde);
9095 case PV_FDT: return (char_u *)&(curwin->w_p_fdt);
9096 # endif
9097 case PV_FMR: return (char_u *)&(curwin->w_p_fmr);
9098 #endif
9099 case PV_NU: return (char_u *)&(curwin->w_p_nu);
9100 #ifdef FEAT_LINEBREAK
9101 case PV_NUW: return (char_u *)&(curwin->w_p_nuw);
9102 #endif
9103 #ifdef FEAT_WINDOWS
9104 case PV_WFH: return (char_u *)&(curwin->w_p_wfh);
9105 #endif
9106 #ifdef FEAT_VERTSPLIT
9107 case PV_WFW: return (char_u *)&(curwin->w_p_wfw);
9108 #endif
9109 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
9110 case PV_PVW: return (char_u *)&(curwin->w_p_pvw);
9111 #endif
9112 #ifdef FEAT_RIGHTLEFT
9113 case PV_RL: return (char_u *)&(curwin->w_p_rl);
9114 case PV_RLC: return (char_u *)&(curwin->w_p_rlc);
9115 #endif
9116 case PV_SCROLL: return (char_u *)&(curwin->w_p_scr);
9117 case PV_WRAP: return (char_u *)&(curwin->w_p_wrap);
9118 #ifdef FEAT_LINEBREAK
9119 case PV_LBR: return (char_u *)&(curwin->w_p_lbr);
9120 #endif
9121 #ifdef FEAT_SCROLLBIND
9122 case PV_SCBIND: return (char_u *)&(curwin->w_p_scb);
9123 #endif
9125 case PV_AI: return (char_u *)&(curbuf->b_p_ai);
9126 case PV_BIN: return (char_u *)&(curbuf->b_p_bin);
9127 #ifdef FEAT_MBYTE
9128 case PV_BOMB: return (char_u *)&(curbuf->b_p_bomb);
9129 #endif
9130 #if defined(FEAT_QUICKFIX)
9131 case PV_BH: return (char_u *)&(curbuf->b_p_bh);
9132 case PV_BT: return (char_u *)&(curbuf->b_p_bt);
9133 #endif
9134 case PV_BL: return (char_u *)&(curbuf->b_p_bl);
9135 case PV_CI: return (char_u *)&(curbuf->b_p_ci);
9136 #ifdef FEAT_CINDENT
9137 case PV_CIN: return (char_u *)&(curbuf->b_p_cin);
9138 case PV_CINK: return (char_u *)&(curbuf->b_p_cink);
9139 case PV_CINO: return (char_u *)&(curbuf->b_p_cino);
9140 #endif
9141 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
9142 case PV_CINW: return (char_u *)&(curbuf->b_p_cinw);
9143 #endif
9144 #ifdef FEAT_COMMENTS
9145 case PV_COM: return (char_u *)&(curbuf->b_p_com);
9146 #endif
9147 #ifdef FEAT_FOLDING
9148 case PV_CMS: return (char_u *)&(curbuf->b_p_cms);
9149 #endif
9150 #ifdef FEAT_INS_EXPAND
9151 case PV_CPT: return (char_u *)&(curbuf->b_p_cpt);
9152 #endif
9153 #ifdef FEAT_COMPL_FUNC
9154 case PV_CFU: return (char_u *)&(curbuf->b_p_cfu);
9155 case PV_OFU: return (char_u *)&(curbuf->b_p_ofu);
9156 #endif
9157 case PV_EOL: return (char_u *)&(curbuf->b_p_eol);
9158 case PV_ET: return (char_u *)&(curbuf->b_p_et);
9159 #ifdef FEAT_MBYTE
9160 case PV_FENC: return (char_u *)&(curbuf->b_p_fenc);
9161 #endif
9162 case PV_FF: return (char_u *)&(curbuf->b_p_ff);
9163 #ifdef FEAT_AUTOCMD
9164 case PV_FT: return (char_u *)&(curbuf->b_p_ft);
9165 #endif
9166 case PV_FO: return (char_u *)&(curbuf->b_p_fo);
9167 case PV_FLP: return (char_u *)&(curbuf->b_p_flp);
9168 case PV_IMI: return (char_u *)&(curbuf->b_p_iminsert);
9169 case PV_IMS: return (char_u *)&(curbuf->b_p_imsearch);
9170 case PV_INF: return (char_u *)&(curbuf->b_p_inf);
9171 case PV_ISK: return (char_u *)&(curbuf->b_p_isk);
9172 #ifdef FEAT_FIND_ID
9173 # ifdef FEAT_EVAL
9174 case PV_INEX: return (char_u *)&(curbuf->b_p_inex);
9175 # endif
9176 #endif
9177 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
9178 case PV_INDE: return (char_u *)&(curbuf->b_p_inde);
9179 case PV_INDK: return (char_u *)&(curbuf->b_p_indk);
9180 #endif
9181 #ifdef FEAT_EVAL
9182 case PV_FEX: return (char_u *)&(curbuf->b_p_fex);
9183 #endif
9184 #ifdef FEAT_CRYPT
9185 case PV_KEY: return (char_u *)&(curbuf->b_p_key);
9186 #endif
9187 #ifdef FEAT_LISP
9188 case PV_LISP: return (char_u *)&(curbuf->b_p_lisp);
9189 #endif
9190 case PV_ML: return (char_u *)&(curbuf->b_p_ml);
9191 case PV_MPS: return (char_u *)&(curbuf->b_p_mps);
9192 case PV_MA: return (char_u *)&(curbuf->b_p_ma);
9193 case PV_MOD: return (char_u *)&(curbuf->b_changed);
9194 case PV_NF: return (char_u *)&(curbuf->b_p_nf);
9195 #ifdef FEAT_OSFILETYPE
9196 case PV_OFT: return (char_u *)&(curbuf->b_p_oft);
9197 #endif
9198 case PV_PI: return (char_u *)&(curbuf->b_p_pi);
9199 #ifdef FEAT_TEXTOBJ
9200 case PV_QE: return (char_u *)&(curbuf->b_p_qe);
9201 #endif
9202 case PV_RO: return (char_u *)&(curbuf->b_p_ro);
9203 #ifdef FEAT_SMARTINDENT
9204 case PV_SI: return (char_u *)&(curbuf->b_p_si);
9205 #endif
9206 #ifndef SHORT_FNAME
9207 case PV_SN: return (char_u *)&(curbuf->b_p_sn);
9208 #endif
9209 case PV_STS: return (char_u *)&(curbuf->b_p_sts);
9210 #ifdef FEAT_SEARCHPATH
9211 case PV_SUA: return (char_u *)&(curbuf->b_p_sua);
9212 #endif
9213 case PV_SWF: return (char_u *)&(curbuf->b_p_swf);
9214 #ifdef FEAT_SYN_HL
9215 case PV_SMC: return (char_u *)&(curbuf->b_p_smc);
9216 case PV_SYN: return (char_u *)&(curbuf->b_p_syn);
9217 #endif
9218 #ifdef FEAT_SPELL
9219 case PV_SPC: return (char_u *)&(curbuf->b_p_spc);
9220 case PV_SPF: return (char_u *)&(curbuf->b_p_spf);
9221 case PV_SPL: return (char_u *)&(curbuf->b_p_spl);
9222 #endif
9223 case PV_SW: return (char_u *)&(curbuf->b_p_sw);
9224 case PV_TS: return (char_u *)&(curbuf->b_p_ts);
9225 case PV_TW: return (char_u *)&(curbuf->b_p_tw);
9226 case PV_TX: return (char_u *)&(curbuf->b_p_tx);
9227 case PV_WM: return (char_u *)&(curbuf->b_p_wm);
9228 #ifdef FEAT_KEYMAP
9229 case PV_KMAP: return (char_u *)&(curbuf->b_p_keymap);
9230 #endif
9231 default: EMSG(_("E356: get_varp ERROR"));
9233 /* always return a valid pointer to avoid a crash! */
9234 return (char_u *)&(curbuf->b_p_wm);
9238 * Get the value of 'equalprg', either the buffer-local one or the global one.
9240 char_u *
9241 get_equalprg()
9243 if (*curbuf->b_p_ep == NUL)
9244 return p_ep;
9245 return curbuf->b_p_ep;
9248 #if defined(FEAT_WINDOWS) || defined(PROTO)
9250 * Copy options from one window to another.
9251 * Used when splitting a window.
9253 void
9254 win_copy_options(wp_from, wp_to)
9255 win_T *wp_from;
9256 win_T *wp_to;
9258 copy_winopt(&wp_from->w_onebuf_opt, &wp_to->w_onebuf_opt);
9259 copy_winopt(&wp_from->w_allbuf_opt, &wp_to->w_allbuf_opt);
9260 # ifdef FEAT_RIGHTLEFT
9261 # ifdef FEAT_FKMAP
9262 /* Is this right? */
9263 wp_to->w_farsi = wp_from->w_farsi;
9264 # endif
9265 # endif
9267 #endif
9270 * Copy the options from one winopt_T to another.
9271 * Doesn't free the old option values in "to", use clear_winopt() for that.
9272 * The 'scroll' option is not copied, because it depends on the window height.
9273 * The 'previewwindow' option is reset, there can be only one preview window.
9275 void
9276 copy_winopt(from, to)
9277 winopt_T *from;
9278 winopt_T *to;
9280 #ifdef FEAT_ARABIC
9281 to->wo_arab = from->wo_arab;
9282 #endif
9283 to->wo_list = from->wo_list;
9284 to->wo_nu = from->wo_nu;
9285 #ifdef FEAT_LINEBREAK
9286 to->wo_nuw = from->wo_nuw;
9287 #endif
9288 #ifdef FEAT_RIGHTLEFT
9289 to->wo_rl = from->wo_rl;
9290 to->wo_rlc = vim_strsave(from->wo_rlc);
9291 #endif
9292 #ifdef FEAT_STL_OPT
9293 to->wo_stl = vim_strsave(from->wo_stl);
9294 #endif
9295 to->wo_wrap = from->wo_wrap;
9296 #ifdef FEAT_LINEBREAK
9297 to->wo_lbr = from->wo_lbr;
9298 #endif
9299 #ifdef FEAT_SCROLLBIND
9300 to->wo_scb = from->wo_scb;
9301 #endif
9302 #ifdef FEAT_SPELL
9303 to->wo_spell = from->wo_spell;
9304 #endif
9305 #ifdef FEAT_SYN_HL
9306 to->wo_cuc = from->wo_cuc;
9307 to->wo_cul = from->wo_cul;
9308 #endif
9309 #ifdef FEAT_DIFF
9310 to->wo_diff = from->wo_diff;
9311 #endif
9312 #ifdef FEAT_FOLDING
9313 to->wo_fdc = from->wo_fdc;
9314 to->wo_fen = from->wo_fen;
9315 to->wo_fdi = vim_strsave(from->wo_fdi);
9316 to->wo_fml = from->wo_fml;
9317 to->wo_fdl = from->wo_fdl;
9318 to->wo_fdm = vim_strsave(from->wo_fdm);
9319 to->wo_fdn = from->wo_fdn;
9320 # ifdef FEAT_EVAL
9321 to->wo_fde = vim_strsave(from->wo_fde);
9322 to->wo_fdt = vim_strsave(from->wo_fdt);
9323 # endif
9324 to->wo_fmr = vim_strsave(from->wo_fmr);
9325 #endif
9326 check_winopt(to); /* don't want NULL pointers */
9330 * Check string options in a window for a NULL value.
9332 void
9333 check_win_options(win)
9334 win_T *win;
9336 check_winopt(&win->w_onebuf_opt);
9337 check_winopt(&win->w_allbuf_opt);
9341 * Check for NULL pointers in a winopt_T and replace them with empty_option.
9343 /*ARGSUSED*/
9344 void
9345 check_winopt(wop)
9346 winopt_T *wop;
9348 #ifdef FEAT_FOLDING
9349 check_string_option(&wop->wo_fdi);
9350 check_string_option(&wop->wo_fdm);
9351 # ifdef FEAT_EVAL
9352 check_string_option(&wop->wo_fde);
9353 check_string_option(&wop->wo_fdt);
9354 # endif
9355 check_string_option(&wop->wo_fmr);
9356 #endif
9357 #ifdef FEAT_RIGHTLEFT
9358 check_string_option(&wop->wo_rlc);
9359 #endif
9360 #ifdef FEAT_STL_OPT
9361 check_string_option(&wop->wo_stl);
9362 #endif
9366 * Free the allocated memory inside a winopt_T.
9368 /*ARGSUSED*/
9369 void
9370 clear_winopt(wop)
9371 winopt_T *wop;
9373 #ifdef FEAT_FOLDING
9374 clear_string_option(&wop->wo_fdi);
9375 clear_string_option(&wop->wo_fdm);
9376 # ifdef FEAT_EVAL
9377 clear_string_option(&wop->wo_fde);
9378 clear_string_option(&wop->wo_fdt);
9379 # endif
9380 clear_string_option(&wop->wo_fmr);
9381 #endif
9382 #ifdef FEAT_RIGHTLEFT
9383 clear_string_option(&wop->wo_rlc);
9384 #endif
9385 #ifdef FEAT_STL_OPT
9386 clear_string_option(&wop->wo_stl);
9387 #endif
9391 * Copy global option values to local options for one buffer.
9392 * Used when creating a new buffer and sometimes when entering a buffer.
9393 * flags:
9394 * BCO_ENTER We will enter the buf buffer.
9395 * BCO_ALWAYS Always copy the options, but only set b_p_initialized when
9396 * appropriate.
9397 * BCO_NOHELP Don't copy the values to a help buffer.
9399 void
9400 buf_copy_options(buf, flags)
9401 buf_T *buf;
9402 int flags;
9404 int should_copy = TRUE;
9405 char_u *save_p_isk = NULL; /* init for GCC */
9406 int dont_do_help;
9407 int did_isk = FALSE;
9410 * Don't do anything of the buffer is invalid.
9412 if (buf == NULL || !buf_valid(buf))
9413 return;
9416 * Skip this when the option defaults have not been set yet. Happens when
9417 * main() allocates the first buffer.
9419 if (p_cpo != NULL)
9422 * Always copy when entering and 'cpo' contains 'S'.
9423 * Don't copy when already initialized.
9424 * Don't copy when 'cpo' contains 's' and not entering.
9425 * 'S' BCO_ENTER initialized 's' should_copy
9426 * yes yes X X TRUE
9427 * yes no yes X FALSE
9428 * no X yes X FALSE
9429 * X no no yes FALSE
9430 * X no no no TRUE
9431 * no yes no X TRUE
9433 if ((vim_strchr(p_cpo, CPO_BUFOPTGLOB) == NULL || !(flags & BCO_ENTER))
9434 && (buf->b_p_initialized
9435 || (!(flags & BCO_ENTER)
9436 && vim_strchr(p_cpo, CPO_BUFOPT) != NULL)))
9437 should_copy = FALSE;
9439 if (should_copy || (flags & BCO_ALWAYS))
9441 /* Don't copy the options specific to a help buffer when
9442 * BCO_NOHELP is given or the options were initialized already
9443 * (jumping back to a help file with CTRL-T or CTRL-O) */
9444 dont_do_help = ((flags & BCO_NOHELP) && buf->b_help)
9445 || buf->b_p_initialized;
9446 if (dont_do_help) /* don't free b_p_isk */
9448 save_p_isk = buf->b_p_isk;
9449 buf->b_p_isk = NULL;
9452 * Always free the allocated strings.
9453 * If not already initialized, set 'readonly' and copy 'fileformat'.
9455 if (!buf->b_p_initialized)
9457 free_buf_options(buf, TRUE);
9458 buf->b_p_ro = FALSE; /* don't copy readonly */
9459 buf->b_p_tx = p_tx;
9460 #ifdef FEAT_MBYTE
9461 buf->b_p_fenc = vim_strsave(p_fenc);
9462 #endif
9463 buf->b_p_ff = vim_strsave(p_ff);
9464 #if defined(FEAT_QUICKFIX)
9465 buf->b_p_bh = empty_option;
9466 buf->b_p_bt = empty_option;
9467 #endif
9469 else
9470 free_buf_options(buf, FALSE);
9472 buf->b_p_ai = p_ai;
9473 buf->b_p_ai_nopaste = p_ai_nopaste;
9474 buf->b_p_sw = p_sw;
9475 buf->b_p_tw = p_tw;
9476 buf->b_p_tw_nopaste = p_tw_nopaste;
9477 buf->b_p_tw_nobin = p_tw_nobin;
9478 buf->b_p_wm = p_wm;
9479 buf->b_p_wm_nopaste = p_wm_nopaste;
9480 buf->b_p_wm_nobin = p_wm_nobin;
9481 buf->b_p_bin = p_bin;
9482 #ifdef FEAT_MBYTE
9483 buf->b_p_bomb = p_bomb;
9484 #endif
9485 buf->b_p_et = p_et;
9486 buf->b_p_et_nobin = p_et_nobin;
9487 buf->b_p_ml = p_ml;
9488 buf->b_p_ml_nobin = p_ml_nobin;
9489 buf->b_p_inf = p_inf;
9490 buf->b_p_swf = p_swf;
9491 #ifdef FEAT_INS_EXPAND
9492 buf->b_p_cpt = vim_strsave(p_cpt);
9493 #endif
9494 #ifdef FEAT_COMPL_FUNC
9495 buf->b_p_cfu = vim_strsave(p_cfu);
9496 buf->b_p_ofu = vim_strsave(p_ofu);
9497 #endif
9498 buf->b_p_sts = p_sts;
9499 buf->b_p_sts_nopaste = p_sts_nopaste;
9500 #ifndef SHORT_FNAME
9501 buf->b_p_sn = p_sn;
9502 #endif
9503 #ifdef FEAT_COMMENTS
9504 buf->b_p_com = vim_strsave(p_com);
9505 #endif
9506 #ifdef FEAT_FOLDING
9507 buf->b_p_cms = vim_strsave(p_cms);
9508 #endif
9509 buf->b_p_fo = vim_strsave(p_fo);
9510 buf->b_p_flp = vim_strsave(p_flp);
9511 buf->b_p_nf = vim_strsave(p_nf);
9512 buf->b_p_mps = vim_strsave(p_mps);
9513 #ifdef FEAT_SMARTINDENT
9514 buf->b_p_si = p_si;
9515 #endif
9516 buf->b_p_ci = p_ci;
9517 #ifdef FEAT_CINDENT
9518 buf->b_p_cin = p_cin;
9519 buf->b_p_cink = vim_strsave(p_cink);
9520 buf->b_p_cino = vim_strsave(p_cino);
9521 #endif
9522 #ifdef FEAT_AUTOCMD
9523 /* Don't copy 'filetype', it must be detected */
9524 buf->b_p_ft = empty_option;
9525 #endif
9526 #ifdef FEAT_OSFILETYPE
9527 buf->b_p_oft = vim_strsave(p_oft);
9528 #endif
9529 buf->b_p_pi = p_pi;
9530 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
9531 buf->b_p_cinw = vim_strsave(p_cinw);
9532 #endif
9533 #ifdef FEAT_LISP
9534 buf->b_p_lisp = p_lisp;
9535 #endif
9536 #ifdef FEAT_SYN_HL
9537 /* Don't copy 'syntax', it must be set */
9538 buf->b_p_syn = empty_option;
9539 buf->b_p_smc = p_smc;
9540 #endif
9541 #ifdef FEAT_SPELL
9542 buf->b_p_spc = vim_strsave(p_spc);
9543 (void)compile_cap_prog(buf);
9544 buf->b_p_spf = vim_strsave(p_spf);
9545 buf->b_p_spl = vim_strsave(p_spl);
9546 #endif
9547 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
9548 buf->b_p_inde = vim_strsave(p_inde);
9549 buf->b_p_indk = vim_strsave(p_indk);
9550 #endif
9551 #if defined(FEAT_EVAL)
9552 buf->b_p_fex = vim_strsave(p_fex);
9553 #endif
9554 #ifdef FEAT_CRYPT
9555 buf->b_p_key = vim_strsave(p_key);
9556 #endif
9557 #ifdef FEAT_SEARCHPATH
9558 buf->b_p_sua = vim_strsave(p_sua);
9559 #endif
9560 #ifdef FEAT_KEYMAP
9561 buf->b_p_keymap = vim_strsave(p_keymap);
9562 buf->b_kmap_state |= KEYMAP_INIT;
9563 #endif
9564 /* This isn't really an option, but copying the langmap and IME
9565 * state from the current buffer is better than resetting it. */
9566 buf->b_p_iminsert = p_iminsert;
9567 buf->b_p_imsearch = p_imsearch;
9569 /* options that are normally global but also have a local value
9570 * are not copied, start using the global value */
9571 buf->b_p_ar = -1;
9572 #ifdef FEAT_QUICKFIX
9573 buf->b_p_gp = empty_option;
9574 buf->b_p_mp = empty_option;
9575 buf->b_p_efm = empty_option;
9576 #endif
9577 buf->b_p_ep = empty_option;
9578 buf->b_p_kp = empty_option;
9579 buf->b_p_path = empty_option;
9580 buf->b_p_tags = empty_option;
9581 #ifdef FEAT_FIND_ID
9582 buf->b_p_def = empty_option;
9583 buf->b_p_inc = empty_option;
9584 # ifdef FEAT_EVAL
9585 buf->b_p_inex = vim_strsave(p_inex);
9586 # endif
9587 #endif
9588 #ifdef FEAT_INS_EXPAND
9589 buf->b_p_dict = empty_option;
9590 buf->b_p_tsr = empty_option;
9591 #endif
9592 #ifdef FEAT_TEXTOBJ
9593 buf->b_p_qe = vim_strsave(p_qe);
9594 #endif
9595 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9596 buf->b_p_bexpr = empty_option;
9597 #endif
9600 * Don't copy the options set by ex_help(), use the saved values,
9601 * when going from a help buffer to a non-help buffer.
9602 * Don't touch these at all when BCO_NOHELP is used and going from
9603 * or to a help buffer.
9605 if (dont_do_help)
9606 buf->b_p_isk = save_p_isk;
9607 else
9609 buf->b_p_isk = vim_strsave(p_isk);
9610 did_isk = TRUE;
9611 buf->b_p_ts = p_ts;
9612 buf->b_help = FALSE;
9613 #ifdef FEAT_QUICKFIX
9614 if (buf->b_p_bt[0] == 'h')
9615 clear_string_option(&buf->b_p_bt);
9616 #endif
9617 buf->b_p_ma = p_ma;
9622 * When the options should be copied (ignoring BCO_ALWAYS), set the
9623 * flag that indicates that the options have been initialized.
9625 if (should_copy)
9626 buf->b_p_initialized = TRUE;
9629 check_buf_options(buf); /* make sure we don't have NULLs */
9630 if (did_isk)
9631 (void)buf_init_chartab(buf, FALSE);
9635 * Reset the 'modifiable' option and its default value.
9637 void
9638 reset_modifiable()
9640 int opt_idx;
9642 curbuf->b_p_ma = FALSE;
9643 p_ma = FALSE;
9644 opt_idx = findoption((char_u *)"ma");
9645 if (opt_idx >= 0)
9646 options[opt_idx].def_val[VI_DEFAULT] = FALSE;
9650 * Set the global value for 'iminsert' to the local value.
9652 void
9653 set_iminsert_global()
9655 p_iminsert = curbuf->b_p_iminsert;
9659 * Set the global value for 'imsearch' to the local value.
9661 void
9662 set_imsearch_global()
9664 p_imsearch = curbuf->b_p_imsearch;
9667 #if defined(FEAT_CMDL_COMPL) || defined(PROTO)
9668 static int expand_option_idx = -1;
9669 static char_u expand_option_name[5] = {'t', '_', NUL, NUL, NUL};
9670 static int expand_option_flags = 0;
9672 void
9673 set_context_in_set_cmd(xp, arg, opt_flags)
9674 expand_T *xp;
9675 char_u *arg;
9676 int opt_flags; /* OPT_GLOBAL and/or OPT_LOCAL */
9678 int nextchar;
9679 long_u flags = 0; /* init for GCC */
9680 int opt_idx = 0; /* init for GCC */
9681 char_u *p;
9682 char_u *s;
9683 int is_term_option = FALSE;
9684 int key;
9686 expand_option_flags = opt_flags;
9688 xp->xp_context = EXPAND_SETTINGS;
9689 if (*arg == NUL)
9691 xp->xp_pattern = arg;
9692 return;
9694 p = arg + STRLEN(arg) - 1;
9695 if (*p == ' ' && *(p - 1) != '\\')
9697 xp->xp_pattern = p + 1;
9698 return;
9700 while (p > arg)
9702 s = p;
9703 /* count number of backslashes before ' ' or ',' */
9704 if (*p == ' ' || *p == ',')
9706 while (s > arg && *(s - 1) == '\\')
9707 --s;
9709 /* break at a space with an even number of backslashes */
9710 if (*p == ' ' && ((p - s) & 1) == 0)
9712 ++p;
9713 break;
9715 --p;
9717 if (STRNCMP(p, "no", 2) == 0)
9719 xp->xp_context = EXPAND_BOOL_SETTINGS;
9720 p += 2;
9722 if (STRNCMP(p, "inv", 3) == 0)
9724 xp->xp_context = EXPAND_BOOL_SETTINGS;
9725 p += 3;
9727 xp->xp_pattern = arg = p;
9728 if (*arg == '<')
9730 while (*p != '>')
9731 if (*p++ == NUL) /* expand terminal option name */
9732 return;
9733 key = get_special_key_code(arg + 1);
9734 if (key == 0) /* unknown name */
9736 xp->xp_context = EXPAND_NOTHING;
9737 return;
9739 nextchar = *++p;
9740 is_term_option = TRUE;
9741 expand_option_name[2] = KEY2TERMCAP0(key);
9742 expand_option_name[3] = KEY2TERMCAP1(key);
9744 else
9746 if (p[0] == 't' && p[1] == '_')
9748 p += 2;
9749 if (*p != NUL)
9750 ++p;
9751 if (*p == NUL)
9752 return; /* expand option name */
9753 nextchar = *++p;
9754 is_term_option = TRUE;
9755 expand_option_name[2] = p[-2];
9756 expand_option_name[3] = p[-1];
9758 else
9760 /* Allow * wildcard */
9761 while (ASCII_ISALNUM(*p) || *p == '_' || *p == '*')
9762 p++;
9763 if (*p == NUL)
9764 return;
9765 nextchar = *p;
9766 *p = NUL;
9767 opt_idx = findoption(arg);
9768 *p = nextchar;
9769 if (opt_idx == -1 || options[opt_idx].var == NULL)
9771 xp->xp_context = EXPAND_NOTHING;
9772 return;
9774 flags = options[opt_idx].flags;
9775 if (flags & P_BOOL)
9777 xp->xp_context = EXPAND_NOTHING;
9778 return;
9782 /* handle "-=" and "+=" */
9783 if ((nextchar == '-' || nextchar == '+' || nextchar == '^') && p[1] == '=')
9785 ++p;
9786 nextchar = '=';
9788 if ((nextchar != '=' && nextchar != ':')
9789 || xp->xp_context == EXPAND_BOOL_SETTINGS)
9791 xp->xp_context = EXPAND_UNSUCCESSFUL;
9792 return;
9794 if (xp->xp_context != EXPAND_BOOL_SETTINGS && p[1] == NUL)
9796 xp->xp_context = EXPAND_OLD_SETTING;
9797 if (is_term_option)
9798 expand_option_idx = -1;
9799 else
9800 expand_option_idx = opt_idx;
9801 xp->xp_pattern = p + 1;
9802 return;
9804 xp->xp_context = EXPAND_NOTHING;
9805 if (is_term_option || (flags & P_NUM))
9806 return;
9808 xp->xp_pattern = p + 1;
9810 if (flags & P_EXPAND)
9812 p = options[opt_idx].var;
9813 if (p == (char_u *)&p_bdir
9814 || p == (char_u *)&p_dir
9815 || p == (char_u *)&p_path
9816 || p == (char_u *)&p_rtp
9817 #ifdef FEAT_SEARCHPATH
9818 || p == (char_u *)&p_cdpath
9819 #endif
9820 #ifdef FEAT_SESSION
9821 || p == (char_u *)&p_vdir
9822 #endif
9825 xp->xp_context = EXPAND_DIRECTORIES;
9826 if (p == (char_u *)&p_path
9827 #ifdef FEAT_SEARCHPATH
9828 || p == (char_u *)&p_cdpath
9829 #endif
9831 xp->xp_backslash = XP_BS_THREE;
9832 else
9833 xp->xp_backslash = XP_BS_ONE;
9835 else
9837 xp->xp_context = EXPAND_FILES;
9838 /* for 'tags' need three backslashes for a space */
9839 if (p == (char_u *)&p_tags)
9840 xp->xp_backslash = XP_BS_THREE;
9841 else
9842 xp->xp_backslash = XP_BS_ONE;
9846 /* For an option that is a list of file names, find the start of the
9847 * last file name. */
9848 for (p = arg + STRLEN(arg) - 1; p > xp->xp_pattern; --p)
9850 /* count number of backslashes before ' ' or ',' */
9851 if (*p == ' ' || *p == ',')
9853 s = p;
9854 while (s > xp->xp_pattern && *(s - 1) == '\\')
9855 --s;
9856 if ((*p == ' ' && (xp->xp_backslash == XP_BS_THREE && (p - s) < 3))
9857 || (*p == ',' && (flags & P_COMMA) && ((p - s) & 1) == 0))
9859 xp->xp_pattern = p + 1;
9860 break;
9864 #ifdef FEAT_SPELL
9865 /* for 'spellsuggest' start at "file:" */
9866 if (options[opt_idx].var == (char_u *)&p_sps
9867 && STRNCMP(p, "file:", 5) == 0)
9869 xp->xp_pattern = p + 5;
9870 break;
9872 #endif
9875 return;
9879 ExpandSettings(xp, regmatch, num_file, file)
9880 expand_T *xp;
9881 regmatch_T *regmatch;
9882 int *num_file;
9883 char_u ***file;
9885 int num_normal = 0; /* Nr of matching non-term-code settings */
9886 int num_term = 0; /* Nr of matching terminal code settings */
9887 int opt_idx;
9888 int match;
9889 int count = 0;
9890 char_u *str;
9891 int loop;
9892 int is_term_opt;
9893 char_u name_buf[MAX_KEY_NAME_LEN];
9894 static char *(names[]) = {"all", "termcap"};
9895 int ic = regmatch->rm_ic; /* remember the ignore-case flag */
9897 /* do this loop twice:
9898 * loop == 0: count the number of matching options
9899 * loop == 1: copy the matching options into allocated memory
9901 for (loop = 0; loop <= 1; ++loop)
9903 regmatch->rm_ic = ic;
9904 if (xp->xp_context != EXPAND_BOOL_SETTINGS)
9906 for (match = 0; match < sizeof(names) / sizeof(char *); ++match)
9907 if (vim_regexec(regmatch, (char_u *)names[match], (colnr_T)0))
9909 if (loop == 0)
9910 num_normal++;
9911 else
9912 (*file)[count++] = vim_strsave((char_u *)names[match]);
9915 for (opt_idx = 0; (str = (char_u *)options[opt_idx].fullname) != NULL;
9916 opt_idx++)
9918 if (options[opt_idx].var == NULL)
9919 continue;
9920 if (xp->xp_context == EXPAND_BOOL_SETTINGS
9921 && !(options[opt_idx].flags & P_BOOL))
9922 continue;
9923 is_term_opt = istermoption(&options[opt_idx]);
9924 if (is_term_opt && num_normal > 0)
9925 continue;
9926 match = FALSE;
9927 if (vim_regexec(regmatch, str, (colnr_T)0)
9928 || (options[opt_idx].shortname != NULL
9929 && vim_regexec(regmatch,
9930 (char_u *)options[opt_idx].shortname, (colnr_T)0)))
9931 match = TRUE;
9932 else if (is_term_opt)
9934 name_buf[0] = '<';
9935 name_buf[1] = 't';
9936 name_buf[2] = '_';
9937 name_buf[3] = str[2];
9938 name_buf[4] = str[3];
9939 name_buf[5] = '>';
9940 name_buf[6] = NUL;
9941 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
9943 match = TRUE;
9944 str = name_buf;
9947 if (match)
9949 if (loop == 0)
9951 if (is_term_opt)
9952 num_term++;
9953 else
9954 num_normal++;
9956 else
9957 (*file)[count++] = vim_strsave(str);
9961 * Check terminal key codes, these are not in the option table
9963 if (xp->xp_context != EXPAND_BOOL_SETTINGS && num_normal == 0)
9965 for (opt_idx = 0; (str = get_termcode(opt_idx)) != NULL; opt_idx++)
9967 if (!isprint(str[0]) || !isprint(str[1]))
9968 continue;
9970 name_buf[0] = 't';
9971 name_buf[1] = '_';
9972 name_buf[2] = str[0];
9973 name_buf[3] = str[1];
9974 name_buf[4] = NUL;
9976 match = FALSE;
9977 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
9978 match = TRUE;
9979 else
9981 name_buf[0] = '<';
9982 name_buf[1] = 't';
9983 name_buf[2] = '_';
9984 name_buf[3] = str[0];
9985 name_buf[4] = str[1];
9986 name_buf[5] = '>';
9987 name_buf[6] = NUL;
9989 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
9990 match = TRUE;
9992 if (match)
9994 if (loop == 0)
9995 num_term++;
9996 else
9997 (*file)[count++] = vim_strsave(name_buf);
10002 * Check special key names.
10004 regmatch->rm_ic = TRUE; /* ignore case here */
10005 for (opt_idx = 0; (str = get_key_name(opt_idx)) != NULL; opt_idx++)
10007 name_buf[0] = '<';
10008 STRCPY(name_buf + 1, str);
10009 STRCAT(name_buf, ">");
10011 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10013 if (loop == 0)
10014 num_term++;
10015 else
10016 (*file)[count++] = vim_strsave(name_buf);
10020 if (loop == 0)
10022 if (num_normal > 0)
10023 *num_file = num_normal;
10024 else if (num_term > 0)
10025 *num_file = num_term;
10026 else
10027 return OK;
10028 *file = (char_u **)alloc((unsigned)(*num_file * sizeof(char_u *)));
10029 if (*file == NULL)
10031 *file = (char_u **)"";
10032 return FAIL;
10036 return OK;
10040 ExpandOldSetting(num_file, file)
10041 int *num_file;
10042 char_u ***file;
10044 char_u *var = NULL; /* init for GCC */
10045 char_u *buf;
10047 *num_file = 0;
10048 *file = (char_u **)alloc((unsigned)sizeof(char_u *));
10049 if (*file == NULL)
10050 return FAIL;
10053 * For a terminal key code expand_option_idx is < 0.
10055 if (expand_option_idx < 0)
10057 var = find_termcode(expand_option_name + 2);
10058 if (var == NULL)
10059 expand_option_idx = findoption(expand_option_name);
10062 if (expand_option_idx >= 0)
10064 /* put string of option value in NameBuff */
10065 option_value2string(&options[expand_option_idx], expand_option_flags);
10066 var = NameBuff;
10068 else if (var == NULL)
10069 var = (char_u *)"";
10071 /* A backslash is required before some characters. This is the reverse of
10072 * what happens in do_set(). */
10073 buf = vim_strsave_escaped(var, escape_chars);
10075 if (buf == NULL)
10077 vim_free(*file);
10078 *file = NULL;
10079 return FAIL;
10082 #ifdef BACKSLASH_IN_FILENAME
10083 /* For MS-Windows et al. we don't double backslashes at the start and
10084 * before a file name character. */
10085 for (var = buf; *var != NUL; mb_ptr_adv(var))
10086 if (var[0] == '\\' && var[1] == '\\'
10087 && expand_option_idx >= 0
10088 && (options[expand_option_idx].flags & P_EXPAND)
10089 && vim_isfilec(var[2])
10090 && (var[2] != '\\' || (var == buf && var[4] != '\\')))
10091 mch_memmove(var, var + 1, STRLEN(var));
10092 #endif
10094 *file[0] = buf;
10095 *num_file = 1;
10096 return OK;
10098 #endif
10101 * Get the value for the numeric or string option *opp in a nice format into
10102 * NameBuff[]. Must not be called with a hidden option!
10104 static void
10105 option_value2string(opp, opt_flags)
10106 struct vimoption *opp;
10107 int opt_flags; /* OPT_GLOBAL and/or OPT_LOCAL */
10109 char_u *varp;
10111 varp = get_varp_scope(opp, opt_flags);
10113 if (opp->flags & P_NUM)
10115 long wc = 0;
10117 if (wc_use_keyname(varp, &wc))
10118 STRCPY(NameBuff, get_special_key_name((int)wc, 0));
10119 else if (wc != 0)
10120 STRCPY(NameBuff, transchar((int)wc));
10121 else
10122 sprintf((char *)NameBuff, "%ld", *(long *)varp);
10124 else /* P_STRING */
10126 varp = *(char_u **)(varp);
10127 if (varp == NULL) /* just in case */
10128 NameBuff[0] = NUL;
10129 #ifdef FEAT_CRYPT
10130 /* don't show the actual value of 'key', only that it's set */
10131 else if (opp->var == (char_u *)&p_key && *varp)
10132 STRCPY(NameBuff, "*****");
10133 #endif
10134 else if (opp->flags & P_EXPAND)
10135 home_replace(NULL, varp, NameBuff, MAXPATHL, FALSE);
10136 /* Translate 'pastetoggle' into special key names */
10137 else if ((char_u **)opp->var == &p_pt)
10138 str2specialbuf(p_pt, NameBuff, MAXPATHL);
10139 else
10140 vim_strncpy(NameBuff, varp, MAXPATHL - 1);
10145 * Return TRUE if "varp" points to 'wildchar' or 'wildcharm' and it can be
10146 * printed as a keyname.
10147 * "*wcp" is set to the value of the option if it's 'wildchar' or 'wildcharm'.
10149 static int
10150 wc_use_keyname(varp, wcp)
10151 char_u *varp;
10152 long *wcp;
10154 if (((long *)varp == &p_wc) || ((long *)varp == &p_wcm))
10156 *wcp = *(long *)varp;
10157 if (IS_SPECIAL(*wcp) || find_special_key_in_table((int)*wcp) >= 0)
10158 return TRUE;
10160 return FALSE;
10163 #ifdef FEAT_LANGMAP
10165 * Any character has an equivalent character. This is used for keyboards that
10166 * have a special language mode that sends characters above 128 (although
10167 * other characters can be translated too).
10171 * char_u langmap_mapchar[256];
10172 * Normally maps each of the 128 upper chars to an <128 ascii char; used to
10173 * "translate" native lang chars in normal mode or some cases of
10174 * insert mode without having to tediously switch lang mode back&forth.
10177 static void
10178 langmap_init()
10180 int i;
10182 for (i = 0; i < 256; i++) /* we init with a-one-to one map */
10183 langmap_mapchar[i] = i;
10187 * Called when langmap option is set; the language map can be
10188 * changed at any time!
10190 static void
10191 langmap_set()
10193 char_u *p;
10194 char_u *p2;
10195 int from, to;
10197 langmap_init(); /* back to one-to-one map first */
10199 for (p = p_langmap; p[0] != NUL; )
10201 for (p2 = p; p2[0] != NUL && p2[0] != ',' && p2[0] != ';';
10202 mb_ptr_adv(p2))
10204 if (p2[0] == '\\' && p2[1] != NUL)
10205 ++p2;
10207 if (p2[0] == ';')
10208 ++p2; /* abcd;ABCD form, p2 points to A */
10209 else
10210 p2 = NULL; /* aAbBcCdD form, p2 is NULL */
10211 while (p[0])
10213 if (p[0] == '\\' && p[1] != NUL)
10214 ++p;
10215 #ifdef FEAT_MBYTE
10216 from = (*mb_ptr2char)(p);
10217 #else
10218 from = p[0];
10219 #endif
10220 if (p2 == NULL)
10222 mb_ptr_adv(p);
10223 if (p[0] == '\\')
10224 ++p;
10225 #ifdef FEAT_MBYTE
10226 to = (*mb_ptr2char)(p);
10227 #else
10228 to = p[0];
10229 #endif
10231 else
10233 if (p2[0] == '\\')
10234 ++p2;
10235 #ifdef FEAT_MBYTE
10236 to = (*mb_ptr2char)(p2);
10237 #else
10238 to = p2[0];
10239 #endif
10241 if (to == NUL)
10243 EMSG2(_("E357: 'langmap': Matching character missing for %s"),
10244 transchar(from));
10245 return;
10247 langmap_mapchar[from & 255] = to;
10249 /* Advance to next pair */
10250 mb_ptr_adv(p);
10251 if (p2 == NULL)
10253 if (p[0] == ',')
10255 ++p;
10256 break;
10259 else
10261 mb_ptr_adv(p2);
10262 if (*p == ';')
10264 p = p2;
10265 if (p[0] != NUL)
10267 if (p[0] != ',')
10269 EMSG2(_("E358: 'langmap': Extra characters after semicolon: %s"), p);
10270 return;
10272 ++p;
10274 break;
10280 #endif
10283 * Return TRUE if format option 'x' is in effect.
10284 * Take care of no formatting when 'paste' is set.
10287 has_format_option(x)
10288 int x;
10290 if (p_paste)
10291 return FALSE;
10292 return (vim_strchr(curbuf->b_p_fo, x) != NULL);
10296 * Return TRUE if "x" is present in 'shortmess' option, or
10297 * 'shortmess' contains 'a' and "x" is present in SHM_A.
10300 shortmess(x)
10301 int x;
10303 return ( vim_strchr(p_shm, x) != NULL
10304 || (vim_strchr(p_shm, 'a') != NULL
10305 && vim_strchr((char_u *)SHM_A, x) != NULL));
10309 * paste_option_changed() - Called after p_paste was set or reset.
10311 static void
10312 paste_option_changed()
10314 static int old_p_paste = FALSE;
10315 static int save_sm = 0;
10316 #ifdef FEAT_CMDL_INFO
10317 static int save_ru = 0;
10318 #endif
10319 #ifdef FEAT_RIGHTLEFT
10320 static int save_ri = 0;
10321 static int save_hkmap = 0;
10322 #endif
10323 buf_T *buf;
10325 if (p_paste)
10328 * Paste switched from off to on.
10329 * Save the current values, so they can be restored later.
10331 if (!old_p_paste)
10333 /* save options for each buffer */
10334 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10336 buf->b_p_tw_nopaste = buf->b_p_tw;
10337 buf->b_p_wm_nopaste = buf->b_p_wm;
10338 buf->b_p_sts_nopaste = buf->b_p_sts;
10339 buf->b_p_ai_nopaste = buf->b_p_ai;
10342 /* save global options */
10343 save_sm = p_sm;
10344 #ifdef FEAT_CMDL_INFO
10345 save_ru = p_ru;
10346 #endif
10347 #ifdef FEAT_RIGHTLEFT
10348 save_ri = p_ri;
10349 save_hkmap = p_hkmap;
10350 #endif
10351 /* save global values for local buffer options */
10352 p_tw_nopaste = p_tw;
10353 p_wm_nopaste = p_wm;
10354 p_sts_nopaste = p_sts;
10355 p_ai_nopaste = p_ai;
10359 * Always set the option values, also when 'paste' is set when it is
10360 * already on.
10362 /* set options for each buffer */
10363 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10365 buf->b_p_tw = 0; /* textwidth is 0 */
10366 buf->b_p_wm = 0; /* wrapmargin is 0 */
10367 buf->b_p_sts = 0; /* softtabstop is 0 */
10368 buf->b_p_ai = 0; /* no auto-indent */
10371 /* set global options */
10372 p_sm = 0; /* no showmatch */
10373 #ifdef FEAT_CMDL_INFO
10374 # ifdef FEAT_WINDOWS
10375 if (p_ru)
10376 status_redraw_all(); /* redraw to remove the ruler */
10377 # endif
10378 p_ru = 0; /* no ruler */
10379 #endif
10380 #ifdef FEAT_RIGHTLEFT
10381 p_ri = 0; /* no reverse insert */
10382 p_hkmap = 0; /* no Hebrew keyboard */
10383 #endif
10384 /* set global values for local buffer options */
10385 p_tw = 0;
10386 p_wm = 0;
10387 p_sts = 0;
10388 p_ai = 0;
10392 * Paste switched from on to off: Restore saved values.
10394 else if (old_p_paste)
10396 /* restore options for each buffer */
10397 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10399 buf->b_p_tw = buf->b_p_tw_nopaste;
10400 buf->b_p_wm = buf->b_p_wm_nopaste;
10401 buf->b_p_sts = buf->b_p_sts_nopaste;
10402 buf->b_p_ai = buf->b_p_ai_nopaste;
10405 /* restore global options */
10406 p_sm = save_sm;
10407 #ifdef FEAT_CMDL_INFO
10408 # ifdef FEAT_WINDOWS
10409 if (p_ru != save_ru)
10410 status_redraw_all(); /* redraw to draw the ruler */
10411 # endif
10412 p_ru = save_ru;
10413 #endif
10414 #ifdef FEAT_RIGHTLEFT
10415 p_ri = save_ri;
10416 p_hkmap = save_hkmap;
10417 #endif
10418 /* set global values for local buffer options */
10419 p_tw = p_tw_nopaste;
10420 p_wm = p_wm_nopaste;
10421 p_sts = p_sts_nopaste;
10422 p_ai = p_ai_nopaste;
10425 old_p_paste = p_paste;
10429 * vimrc_found() - Called when a ".vimrc" or "VIMINIT" has been found.
10431 * Reset 'compatible' and set the values for options that didn't get set yet
10432 * to the Vim defaults.
10433 * Don't do this if the 'compatible' option has been set or reset before.
10434 * When "fname" is not NULL, use it to set $"envname" when it wasn't set yet.
10436 void
10437 vimrc_found(fname, envname)
10438 char_u *fname;
10439 char_u *envname;
10441 int opt_idx;
10442 int dofree = FALSE;
10443 char_u *p;
10445 if (!option_was_set((char_u *)"cp"))
10447 p_cp = FALSE;
10448 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
10449 if (!(options[opt_idx].flags & (P_WAS_SET|P_VI_DEF)))
10450 set_option_default(opt_idx, OPT_FREE, FALSE);
10451 didset_options();
10454 if (fname != NULL)
10456 p = vim_getenv(envname, &dofree);
10457 if (p == NULL)
10459 /* Set $MYVIMRC to the first vimrc file found. */
10460 p = FullName_save(fname, FALSE);
10461 if (p != NULL)
10463 vim_setenv(envname, p);
10464 vim_free(p);
10467 else if (dofree)
10468 vim_free(p);
10473 * Set 'compatible' on or off. Called for "-C" and "-N" command line arg.
10475 void
10476 change_compatible(on)
10477 int on;
10479 int opt_idx;
10481 if (p_cp != on)
10483 p_cp = on;
10484 compatible_set();
10486 opt_idx = findoption((char_u *)"cp");
10487 if (opt_idx >= 0)
10488 options[opt_idx].flags |= P_WAS_SET;
10492 * Return TRUE when option "name" has been set.
10495 option_was_set(name)
10496 char_u *name;
10498 int idx;
10500 idx = findoption(name);
10501 if (idx < 0) /* unknown option */
10502 return FALSE;
10503 if (options[idx].flags & P_WAS_SET)
10504 return TRUE;
10505 return FALSE;
10509 * compatible_set() - Called when 'compatible' has been set or unset.
10511 * When 'compatible' set: Set all relevant options (those that have the P_VIM)
10512 * flag) to a Vi compatible value.
10513 * When 'compatible' is unset: Set all options that have a different default
10514 * for Vim (without the P_VI_DEF flag) to that default.
10516 static void
10517 compatible_set()
10519 int opt_idx;
10521 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
10522 if ( ((options[opt_idx].flags & P_VIM) && p_cp)
10523 || (!(options[opt_idx].flags & P_VI_DEF) && !p_cp))
10524 set_option_default(opt_idx, OPT_FREE, p_cp);
10525 didset_options();
10528 #ifdef FEAT_LINEBREAK
10530 # if defined(__BORLANDC__) && (__BORLANDC__ < 0x500)
10531 /* Borland C++ screws up loop optimisation here (negri) */
10532 #pragma option -O-l
10533 # endif
10536 * fill_breakat_flags() -- called when 'breakat' changes value.
10538 static void
10539 fill_breakat_flags()
10541 char_u *p;
10542 int i;
10544 for (i = 0; i < 256; i++)
10545 breakat_flags[i] = FALSE;
10547 if (p_breakat != NULL)
10548 for (p = p_breakat; *p; p++)
10549 breakat_flags[*p] = TRUE;
10552 # if defined(__BORLANDC__) && (__BORLANDC__ < 0x500)
10553 #pragma option -O.l
10554 # endif
10556 #endif
10559 * Check an option that can be a range of string values.
10561 * Return OK for correct value, FAIL otherwise.
10562 * Empty is always OK.
10564 static int
10565 check_opt_strings(val, values, list)
10566 char_u *val;
10567 char **values;
10568 int list; /* when TRUE: accept a list of values */
10570 return opt_strings_flags(val, values, NULL, list);
10574 * Handle an option that can be a range of string values.
10575 * Set a flag in "*flagp" for each string present.
10577 * Return OK for correct value, FAIL otherwise.
10578 * Empty is always OK.
10580 static int
10581 opt_strings_flags(val, values, flagp, list)
10582 char_u *val; /* new value */
10583 char **values; /* array of valid string values */
10584 unsigned *flagp;
10585 int list; /* when TRUE: accept a list of values */
10587 int i;
10588 int len;
10589 unsigned new_flags = 0;
10591 while (*val)
10593 for (i = 0; ; ++i)
10595 if (values[i] == NULL) /* val not found in values[] */
10596 return FAIL;
10598 len = (int)STRLEN(values[i]);
10599 if (STRNCMP(values[i], val, len) == 0
10600 && ((list && val[len] == ',') || val[len] == NUL))
10602 val += len + (val[len] == ',');
10603 new_flags |= (1 << i);
10604 break; /* check next item in val list */
10608 if (flagp != NULL)
10609 *flagp = new_flags;
10611 return OK;
10615 * Read the 'wildmode' option, fill wim_flags[].
10617 static int
10618 check_opt_wim()
10620 char_u new_wim_flags[4];
10621 char_u *p;
10622 int i;
10623 int idx = 0;
10625 for (i = 0; i < 4; ++i)
10626 new_wim_flags[i] = 0;
10628 for (p = p_wim; *p; ++p)
10630 for (i = 0; ASCII_ISALPHA(p[i]); ++i)
10632 if (p[i] != NUL && p[i] != ',' && p[i] != ':')
10633 return FAIL;
10634 if (i == 7 && STRNCMP(p, "longest", 7) == 0)
10635 new_wim_flags[idx] |= WIM_LONGEST;
10636 else if (i == 4 && STRNCMP(p, "full", 4) == 0)
10637 new_wim_flags[idx] |= WIM_FULL;
10638 else if (i == 4 && STRNCMP(p, "list", 4) == 0)
10639 new_wim_flags[idx] |= WIM_LIST;
10640 else
10641 return FAIL;
10642 p += i;
10643 if (*p == NUL)
10644 break;
10645 if (*p == ',')
10647 if (idx == 3)
10648 return FAIL;
10649 ++idx;
10653 /* fill remaining entries with last flag */
10654 while (idx < 3)
10656 new_wim_flags[idx + 1] = new_wim_flags[idx];
10657 ++idx;
10660 /* only when there are no errors, wim_flags[] is changed */
10661 for (i = 0; i < 4; ++i)
10662 wim_flags[i] = new_wim_flags[i];
10663 return OK;
10667 * Check if backspacing over something is allowed.
10670 can_bs(what)
10671 int what; /* BS_INDENT, BS_EOL or BS_START */
10673 switch (*p_bs)
10675 case '2': return TRUE;
10676 case '1': return (what != BS_START);
10677 case '0': return FALSE;
10679 return vim_strchr(p_bs, what) != NULL;
10683 * Save the current values of 'fileformat' and 'fileencoding', so that we know
10684 * the file must be considered changed when the value is different.
10686 void
10687 save_file_ff(buf)
10688 buf_T *buf;
10690 buf->b_start_ffc = *buf->b_p_ff;
10691 buf->b_start_eol = buf->b_p_eol;
10692 #ifdef FEAT_MBYTE
10693 buf->b_start_bomb = buf->b_p_bomb;
10695 /* Only use free/alloc when necessary, they take time. */
10696 if (buf->b_start_fenc == NULL
10697 || STRCMP(buf->b_start_fenc, buf->b_p_fenc) != 0)
10699 vim_free(buf->b_start_fenc);
10700 buf->b_start_fenc = vim_strsave(buf->b_p_fenc);
10702 #endif
10706 * Return TRUE if 'fileformat' and/or 'fileencoding' has a different value
10707 * from when editing started (save_file_ff() called).
10708 * Also when 'endofline' was changed and 'binary' is set, or when 'bomb' was
10709 * changed and 'binary' is not set.
10710 * Don't consider a new, empty buffer to be changed.
10713 file_ff_differs(buf)
10714 buf_T *buf;
10716 /* In a buffer that was never loaded the options are not valid. */
10717 if (buf->b_flags & BF_NEVERLOADED)
10718 return FALSE;
10719 if ((buf->b_flags & BF_NEW)
10720 && buf->b_ml.ml_line_count == 1
10721 && *ml_get_buf(buf, (linenr_T)1, FALSE) == NUL)
10722 return FALSE;
10723 if (buf->b_start_ffc != *buf->b_p_ff)
10724 return TRUE;
10725 if (buf->b_p_bin && buf->b_start_eol != buf->b_p_eol)
10726 return TRUE;
10727 #ifdef FEAT_MBYTE
10728 if (!buf->b_p_bin && buf->b_start_bomb != buf->b_p_bomb)
10729 return TRUE;
10730 if (buf->b_start_fenc == NULL)
10731 return (*buf->b_p_fenc != NUL);
10732 return (STRCMP(buf->b_start_fenc, buf->b_p_fenc) != 0);
10733 #else
10734 return FALSE;
10735 #endif
10739 * return OK if "p" is a valid fileformat name, FAIL otherwise.
10742 check_ff_value(p)
10743 char_u *p;
10745 return check_opt_strings(p, p_ff_values, FALSE);