Merged from the latest developing branch.
[vim-kana.git] / src / option.c
blob1d2f2aaf74f3d2a2626fbb6689cc2e238ca067e9
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 {"gdefault", "gd", P_BOOL|P_VI_DEF|P_VIM,
1156 (char_u *)&p_gd, PV_NONE,
1157 {(char_u *)FALSE, (char_u *)0L}},
1158 {"graphic", "gr", P_BOOL|P_VI_DEF,
1159 (char_u *)NULL, PV_NONE,
1160 {(char_u *)FALSE, (char_u *)0L}},
1161 {"grepformat", "gfm", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1162 #ifdef FEAT_QUICKFIX
1163 (char_u *)&p_gefm, PV_NONE,
1164 {(char_u *)DFLT_GREPFORMAT, (char_u *)0L},
1165 #else
1166 (char_u *)NULL, PV_NONE,
1167 {(char_u *)NULL, (char_u *)0L}
1168 #endif
1170 {"grepprg", "gp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1171 #ifdef FEAT_QUICKFIX
1172 (char_u *)&p_gp, PV_GP,
1174 # ifdef WIN3264
1175 /* may be changed to "grep -n" in os_win32.c */
1176 (char_u *)"findstr /n",
1177 # else
1178 # ifdef UNIX
1179 /* Add an extra file name so that grep will always
1180 * insert a file name in the match line. */
1181 (char_u *)"grep -n $* /dev/null",
1182 # else
1183 # ifdef VMS
1184 (char_u *)"SEARCH/NUMBERS ",
1185 # else
1186 (char_u *)"grep -n ",
1187 #endif
1188 #endif
1189 # endif
1190 (char_u *)0L},
1191 #else
1192 (char_u *)NULL, PV_NONE,
1193 {(char_u *)NULL, (char_u *)0L}
1194 #endif
1196 {"guicursor", "gcr", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1197 #ifdef CURSOR_SHAPE
1198 (char_u *)&p_guicursor, PV_NONE,
1200 # ifdef FEAT_GUI
1201 (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",
1202 # else /* MSDOS or Win32 console */
1203 (char_u *)"n-v-c:block,o:hor50,i-ci:hor15,r-cr:hor30,sm:block",
1204 # endif
1205 (char_u *)0L}
1206 #else
1207 (char_u *)NULL, PV_NONE,
1208 {(char_u *)NULL, (char_u *)0L}
1209 #endif
1211 {"guifont", "gfn", P_STRING|P_VI_DEF|P_RCLR|P_COMMA|P_NODUP,
1212 #ifdef FEAT_GUI
1213 (char_u *)&p_guifont, PV_NONE,
1214 {(char_u *)"", (char_u *)0L}
1215 #else
1216 (char_u *)NULL, PV_NONE,
1217 {(char_u *)NULL, (char_u *)0L}
1218 #endif
1220 {"guifontset", "gfs", P_STRING|P_VI_DEF|P_RCLR|P_COMMA,
1221 #if defined(FEAT_GUI) && defined(FEAT_XFONTSET)
1222 (char_u *)&p_guifontset, PV_NONE,
1223 {(char_u *)"", (char_u *)0L}
1224 #else
1225 (char_u *)NULL, PV_NONE,
1226 {(char_u *)NULL, (char_u *)0L}
1227 #endif
1229 {"guifontwide", "gfw", P_STRING|P_VI_DEF|P_RCLR|P_COMMA|P_NODUP,
1230 #if defined(FEAT_GUI) && defined(FEAT_MBYTE)
1231 (char_u *)&p_guifontwide, PV_NONE,
1232 {(char_u *)"", (char_u *)0L}
1233 #else
1234 (char_u *)NULL, PV_NONE,
1235 {(char_u *)NULL, (char_u *)0L}
1236 #endif
1238 {"guiheadroom", "ghr", P_NUM|P_VI_DEF,
1239 #if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11)
1240 (char_u *)&p_ghr, PV_NONE,
1241 #else
1242 (char_u *)NULL, PV_NONE,
1243 #endif
1244 {(char_u *)50L, (char_u *)0L}},
1245 {"guioptions", "go", P_STRING|P_VI_DEF|P_RALL|P_FLAGLIST,
1246 #if defined(FEAT_GUI)
1247 (char_u *)&p_go, PV_NONE,
1248 # if defined(UNIX) && !defined(MACOS)
1249 {(char_u *)"aegimrLtT", (char_u *)0L}
1250 # else
1251 {(char_u *)"egmrLtT", (char_u *)0L}
1252 # endif
1253 #else
1254 (char_u *)NULL, PV_NONE,
1255 {(char_u *)NULL, (char_u *)0L}
1256 #endif
1258 {"guipty", NULL, P_BOOL|P_VI_DEF,
1259 #if defined(FEAT_GUI)
1260 (char_u *)&p_guipty, PV_NONE,
1261 #else
1262 (char_u *)NULL, PV_NONE,
1263 #endif
1264 {(char_u *)TRUE, (char_u *)0L}},
1265 {"guitablabel", "gtl", P_STRING|P_VI_DEF|P_RWIN,
1266 #if defined(FEAT_GUI_TABLINE)
1267 (char_u *)&p_gtl, PV_NONE,
1268 {(char_u *)"", (char_u *)0L}
1269 #else
1270 (char_u *)NULL, PV_NONE,
1271 {(char_u *)NULL, (char_u *)0L}
1272 #endif
1274 {"guitabtooltip", "gtt", P_STRING|P_VI_DEF|P_RWIN,
1275 #if defined(FEAT_GUI_TABLINE)
1276 (char_u *)&p_gtt, PV_NONE,
1277 {(char_u *)"", (char_u *)0L}
1278 #else
1279 (char_u *)NULL, PV_NONE,
1280 {(char_u *)NULL, (char_u *)0L}
1281 #endif
1283 {"hardtabs", "ht", P_NUM|P_VI_DEF,
1284 (char_u *)NULL, PV_NONE,
1285 {(char_u *)0L, (char_u *)0L}},
1286 {"helpfile", "hf", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1287 (char_u *)&p_hf, PV_NONE,
1288 {(char_u *)DFLT_HELPFILE, (char_u *)0L}},
1289 {"helpheight", "hh", P_NUM|P_VI_DEF,
1290 #ifdef FEAT_WINDOWS
1291 (char_u *)&p_hh, PV_NONE,
1292 #else
1293 (char_u *)NULL, PV_NONE,
1294 #endif
1295 {(char_u *)20L, (char_u *)0L}},
1296 {"helplang", "hlg", P_STRING|P_VI_DEF|P_COMMA,
1297 #ifdef FEAT_MULTI_LANG
1298 (char_u *)&p_hlg, PV_NONE,
1299 {(char_u *)"", (char_u *)0L}
1300 #else
1301 (char_u *)NULL, PV_NONE,
1302 {(char_u *)0L, (char_u *)0L}
1303 #endif
1305 {"hidden", "hid", P_BOOL|P_VI_DEF,
1306 (char_u *)&p_hid, PV_NONE,
1307 {(char_u *)FALSE, (char_u *)0L}},
1308 {"highlight", "hl", P_STRING|P_VI_DEF|P_RCLR|P_COMMA|P_NODUP,
1309 (char_u *)&p_hl, PV_NONE,
1310 {(char_u *)HIGHLIGHT_INIT, (char_u *)0L}},
1311 {"history", "hi", P_NUM|P_VIM,
1312 (char_u *)&p_hi, PV_NONE,
1313 {(char_u *)0L, (char_u *)20L}},
1314 {"hkmap", "hk", P_BOOL|P_VI_DEF|P_VIM,
1315 #ifdef FEAT_RIGHTLEFT
1316 (char_u *)&p_hkmap, PV_NONE,
1317 #else
1318 (char_u *)NULL, PV_NONE,
1319 #endif
1320 {(char_u *)FALSE, (char_u *)0L}},
1321 {"hkmapp", "hkp", P_BOOL|P_VI_DEF|P_VIM,
1322 #ifdef FEAT_RIGHTLEFT
1323 (char_u *)&p_hkmapp, PV_NONE,
1324 #else
1325 (char_u *)NULL, PV_NONE,
1326 #endif
1327 {(char_u *)FALSE, (char_u *)0L}},
1328 {"hlsearch", "hls", P_BOOL|P_VI_DEF|P_VIM|P_RALL,
1329 (char_u *)&p_hls, PV_NONE,
1330 {(char_u *)FALSE, (char_u *)0L}},
1331 {"icon", NULL, P_BOOL|P_VI_DEF,
1332 #ifdef FEAT_TITLE
1333 (char_u *)&p_icon, PV_NONE,
1334 #else
1335 (char_u *)NULL, PV_NONE,
1336 #endif
1337 {(char_u *)FALSE, (char_u *)0L}},
1338 {"iconstring", NULL, P_STRING|P_VI_DEF,
1339 #ifdef FEAT_TITLE
1340 (char_u *)&p_iconstring, PV_NONE,
1341 #else
1342 (char_u *)NULL, PV_NONE,
1343 #endif
1344 {(char_u *)"", (char_u *)0L}},
1345 {"ignorecase", "ic", P_BOOL|P_VI_DEF,
1346 (char_u *)&p_ic, PV_NONE,
1347 {(char_u *)FALSE, (char_u *)0L}},
1348 {"imactivatekey","imak",P_STRING|P_VI_DEF,
1349 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
1350 (char_u *)&p_imak, PV_NONE,
1351 #else
1352 (char_u *)NULL, PV_NONE,
1353 #endif
1354 {(char_u *)"", (char_u *)0L}},
1355 {"imcmdline", "imc", P_BOOL|P_VI_DEF,
1356 #ifdef USE_IM_CONTROL
1357 (char_u *)&p_imcmdline, PV_NONE,
1358 #else
1359 (char_u *)NULL, PV_NONE,
1360 #endif
1361 {(char_u *)FALSE, (char_u *)0L}},
1362 {"imdisable", "imd", P_BOOL|P_VI_DEF,
1363 #ifdef USE_IM_CONTROL
1364 (char_u *)&p_imdisable, PV_NONE,
1365 #else
1366 (char_u *)NULL, PV_NONE,
1367 #endif
1368 #ifdef __sgi
1369 {(char_u *)TRUE, (char_u *)0L}
1370 #else
1371 {(char_u *)FALSE, (char_u *)0L}
1372 #endif
1374 {"iminsert", "imi", P_NUM|P_VI_DEF,
1375 (char_u *)&p_iminsert, PV_IMI,
1376 #ifdef B_IMODE_IM
1377 {(char_u *)B_IMODE_IM, (char_u *)0L}
1378 #else
1379 {(char_u *)B_IMODE_NONE, (char_u *)0L}
1380 #endif
1382 {"imsearch", "ims", P_NUM|P_VI_DEF,
1383 (char_u *)&p_imsearch, PV_IMS,
1384 #ifdef B_IMODE_IM
1385 {(char_u *)B_IMODE_IM, (char_u *)0L}
1386 #else
1387 {(char_u *)B_IMODE_NONE, (char_u *)0L}
1388 #endif
1390 {"include", "inc", P_STRING|P_ALLOCED|P_VI_DEF,
1391 #ifdef FEAT_FIND_ID
1392 (char_u *)&p_inc, PV_INC,
1393 {(char_u *)"^\\s*#\\s*include", (char_u *)0L}
1394 #else
1395 (char_u *)NULL, PV_NONE,
1396 {(char_u *)0L, (char_u *)0L}
1397 #endif
1399 {"includeexpr", "inex", P_STRING|P_ALLOCED|P_VI_DEF,
1400 #if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
1401 (char_u *)&p_inex, PV_INEX,
1402 {(char_u *)"", (char_u *)0L}
1403 #else
1404 (char_u *)NULL, PV_NONE,
1405 {(char_u *)0L, (char_u *)0L}
1406 #endif
1408 {"incsearch", "is", P_BOOL|P_VI_DEF|P_VIM,
1409 (char_u *)&p_is, PV_NONE,
1410 {(char_u *)FALSE, (char_u *)0L}},
1411 {"indentexpr", "inde", P_STRING|P_ALLOCED|P_VI_DEF|P_VIM,
1412 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
1413 (char_u *)&p_inde, PV_INDE,
1414 {(char_u *)"", (char_u *)0L}
1415 #else
1416 (char_u *)NULL, PV_NONE,
1417 {(char_u *)0L, (char_u *)0L}
1418 #endif
1420 {"indentkeys", "indk", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
1421 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
1422 (char_u *)&p_indk, PV_INDK,
1423 {(char_u *)"0{,0},:,0#,!^F,o,O,e", (char_u *)0L}
1424 #else
1425 (char_u *)NULL, PV_NONE,
1426 {(char_u *)0L, (char_u *)0L}
1427 #endif
1429 {"infercase", "inf", P_BOOL|P_VI_DEF,
1430 (char_u *)&p_inf, PV_INF,
1431 {(char_u *)FALSE, (char_u *)0L}},
1432 {"insertmode", "im", P_BOOL|P_VI_DEF|P_VIM,
1433 (char_u *)&p_im, PV_NONE,
1434 {(char_u *)FALSE, (char_u *)0L}},
1435 {"isfname", "isf", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1436 (char_u *)&p_isf, PV_NONE,
1438 #ifdef BACKSLASH_IN_FILENAME
1439 /* Excluded are: & and ^ are special in cmd.exe
1440 * ( and ) are used in text separating fnames */
1441 (char_u *)"@,48-57,/,\\,.,-,_,+,,,#,$,%,{,},[,],:,@-@,!,~,=",
1442 #else
1443 # ifdef AMIGA
1444 (char_u *)"@,48-57,/,.,-,_,+,,,$,:",
1445 # else
1446 # ifdef VMS
1447 (char_u *)"@,48-57,/,.,-,_,+,,,#,$,%,<,>,[,],:,;,~",
1448 # else /* UNIX et al. */
1449 # ifdef EBCDIC
1450 (char_u *)"@,240-249,/,.,-,_,+,,,#,$,%,~,=",
1451 # else
1452 (char_u *)"@,48-57,/,.,-,_,+,,,#,$,%,~,=",
1453 # endif
1454 # endif
1455 # endif
1456 #endif
1457 (char_u *)0L}},
1458 {"isident", "isi", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1459 (char_u *)&p_isi, PV_NONE,
1461 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
1462 (char_u *)"@,48-57,_,128-167,224-235",
1463 #else
1464 # ifdef EBCDIC
1465 /* TODO: EBCDIC Check this! @ == isalpha()*/
1466 (char_u *)"@,240-249,_,66-73,81-89,98-105,"
1467 "112-120,128,140-142,156,158,172,"
1468 "174,186,191,203-207,219-225,235-239,"
1469 "251-254",
1470 # else
1471 (char_u *)"@,48-57,_,192-255",
1472 # endif
1473 #endif
1474 (char_u *)0L}},
1475 {"iskeyword", "isk", P_STRING|P_ALLOCED|P_VIM|P_COMMA|P_NODUP,
1476 (char_u *)&p_isk, PV_ISK,
1478 #ifdef EBCDIC
1479 (char_u *)"@,240-249,_",
1480 /* TODO: EBCDIC Check this! @ == isalpha()*/
1481 (char_u *)"@,240-249,_,66-73,81-89,98-105,"
1482 "112-120,128,140-142,156,158,172,"
1483 "174,186,191,203-207,219-225,235-239,"
1484 "251-254",
1485 #else
1486 (char_u *)"@,48-57,_",
1487 # if defined(MSDOS) || defined(MSWIN) || defined(OS2)
1488 (char_u *)"@,48-57,_,128-167,224-235"
1489 # else
1490 ISK_LATIN1
1491 # endif
1492 #endif
1494 {"isprint", "isp", P_STRING|P_VI_DEF|P_RALL|P_COMMA|P_NODUP,
1495 (char_u *)&p_isp, PV_NONE,
1497 #if defined(MSDOS) || defined(MSWIN) || defined(OS2) \
1498 || (defined(MACOS) && !defined(MACOS_X)) \
1499 || defined(VMS)
1500 (char_u *)"@,~-255",
1501 #else
1502 # ifdef EBCDIC
1503 /* all chars above 63 are printable */
1504 (char_u *)"63-255",
1505 # else
1506 ISP_LATIN1,
1507 # endif
1508 #endif
1509 (char_u *)0L}},
1510 {"joinspaces", "js", P_BOOL|P_VI_DEF|P_VIM,
1511 (char_u *)&p_js, PV_NONE,
1512 {(char_u *)TRUE, (char_u *)0L}},
1513 {"key", NULL, P_STRING|P_ALLOCED|P_VI_DEF|P_NO_MKRC,
1514 #ifdef FEAT_CRYPT
1515 (char_u *)&p_key, PV_KEY,
1516 {(char_u *)"", (char_u *)0L}
1517 #else
1518 (char_u *)NULL, PV_NONE,
1519 {(char_u *)0L, (char_u *)0L}
1520 #endif
1522 {"keymap", "kmp", P_STRING|P_ALLOCED|P_VI_DEF|P_RBUF|P_RSTAT|P_NFNAME|P_PRI_MKRC,
1523 #ifdef FEAT_KEYMAP
1524 (char_u *)&p_keymap, PV_KMAP,
1525 {(char_u *)"", (char_u *)0L}
1526 #else
1527 (char_u *)NULL, PV_NONE,
1528 {(char_u *)"", (char_u *)0L}
1529 #endif
1531 {"keymodel", "km", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1532 #ifdef FEAT_VISUAL
1533 (char_u *)&p_km, PV_NONE,
1534 #else
1535 (char_u *)NULL, PV_NONE,
1536 #endif
1537 {(char_u *)"", (char_u *)0L}},
1538 {"keywordprg", "kp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1539 (char_u *)&p_kp, PV_KP,
1541 #if defined(MSDOS) || defined(MSWIN)
1542 (char_u *)":help",
1543 #else
1544 #ifdef VMS
1545 (char_u *)"help",
1546 #else
1547 # if defined(OS2)
1548 (char_u *)"view /",
1549 # else
1550 # ifdef USEMAN_S
1551 (char_u *)"man -s",
1552 # else
1553 (char_u *)"man",
1554 # endif
1555 # endif
1556 #endif
1557 #endif
1558 (char_u *)0L}},
1559 {"langmap", "lmap", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1560 #ifdef FEAT_LANGMAP
1561 (char_u *)&p_langmap, PV_NONE,
1562 {(char_u *)"", /* unmatched } */
1563 #else
1564 (char_u *)NULL, PV_NONE,
1565 {(char_u *)NULL,
1566 #endif
1567 (char_u *)0L}},
1568 {"langmenu", "lm", P_STRING|P_VI_DEF|P_NFNAME,
1569 #if defined(FEAT_MENU) && defined(FEAT_MULTI_LANG)
1570 (char_u *)&p_lm, PV_NONE,
1571 #else
1572 (char_u *)NULL, PV_NONE,
1573 #endif
1574 {(char_u *)"", (char_u *)0L}},
1575 {"laststatus", "ls", P_NUM|P_VI_DEF|P_RALL,
1576 #ifdef FEAT_WINDOWS
1577 (char_u *)&p_ls, PV_NONE,
1578 #else
1579 (char_u *)NULL, PV_NONE,
1580 #endif
1581 {(char_u *)1L, (char_u *)0L}},
1582 {"lazyredraw", "lz", P_BOOL|P_VI_DEF,
1583 (char_u *)&p_lz, PV_NONE,
1584 {(char_u *)FALSE, (char_u *)0L}},
1585 {"linebreak", "lbr", P_BOOL|P_VI_DEF|P_RWIN,
1586 #ifdef FEAT_LINEBREAK
1587 (char_u *)VAR_WIN, PV_LBR,
1588 #else
1589 (char_u *)NULL, PV_NONE,
1590 #endif
1591 {(char_u *)FALSE, (char_u *)0L}},
1592 {"lines", NULL, P_NUM|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RCLR,
1593 (char_u *)&Rows, PV_NONE,
1595 #if defined(MSDOS) || defined(WIN3264) || defined(OS2)
1596 (char_u *)25L,
1597 #else
1598 (char_u *)24L,
1599 #endif
1600 (char_u *)0L}},
1601 {"linespace", "lsp", P_NUM|P_VI_DEF|P_RCLR,
1602 #ifdef FEAT_GUI
1603 (char_u *)&p_linespace, PV_NONE,
1604 #else
1605 (char_u *)NULL, PV_NONE,
1606 #endif
1607 #ifdef FEAT_GUI_W32
1608 {(char_u *)1L, (char_u *)0L}
1609 #else
1610 {(char_u *)0L, (char_u *)0L}
1611 #endif
1613 {"lisp", NULL, P_BOOL|P_VI_DEF,
1614 #ifdef FEAT_LISP
1615 (char_u *)&p_lisp, PV_LISP,
1616 #else
1617 (char_u *)NULL, PV_NONE,
1618 #endif
1619 {(char_u *)FALSE, (char_u *)0L}},
1620 {"lispwords", "lw", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1621 #ifdef FEAT_LISP
1622 (char_u *)&p_lispwords, PV_NONE,
1623 {(char_u *)LISPWORD_VALUE, (char_u *)0L}
1624 #else
1625 (char_u *)NULL, PV_NONE,
1626 {(char_u *)"", (char_u *)0L}
1627 #endif
1629 {"list", NULL, P_BOOL|P_VI_DEF|P_RWIN,
1630 (char_u *)VAR_WIN, PV_LIST,
1631 {(char_u *)FALSE, (char_u *)0L}},
1632 {"listchars", "lcs", P_STRING|P_VI_DEF|P_RALL|P_COMMA|P_NODUP,
1633 (char_u *)&p_lcs, PV_NONE,
1634 {(char_u *)"eol:$", (char_u *)0L}},
1635 {"loadplugins", "lpl", P_BOOL|P_VI_DEF,
1636 (char_u *)&p_lpl, PV_NONE,
1637 {(char_u *)TRUE, (char_u *)0L}},
1638 #ifdef FEAT_GUI_MAC
1639 {"macatsui", NULL, P_BOOL|P_VI_DEF|P_RCLR,
1640 (char_u *)&p_macatsui, PV_NONE,
1641 {(char_u *)TRUE, (char_u *)0L}},
1642 #endif
1643 {"magic", NULL, P_BOOL|P_VI_DEF,
1644 (char_u *)&p_magic, PV_NONE,
1645 {(char_u *)TRUE, (char_u *)0L}},
1646 {"makeef", "mef", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1647 #ifdef FEAT_QUICKFIX
1648 (char_u *)&p_mef, PV_NONE,
1649 {(char_u *)"", (char_u *)0L}
1650 #else
1651 (char_u *)NULL, PV_NONE,
1652 {(char_u *)NULL, (char_u *)0L}
1653 #endif
1655 {"makeprg", "mp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1656 #ifdef FEAT_QUICKFIX
1657 (char_u *)&p_mp, PV_MP,
1658 # ifdef VMS
1659 {(char_u *)"MMS", (char_u *)0L}
1660 # else
1661 {(char_u *)"make", (char_u *)0L}
1662 # endif
1663 #else
1664 (char_u *)NULL, PV_NONE,
1665 {(char_u *)NULL, (char_u *)0L}
1666 #endif
1668 {"matchpairs", "mps", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
1669 (char_u *)&p_mps, PV_MPS,
1670 {(char_u *)"(:),{:},[:]", (char_u *)0L}},
1671 {"matchtime", "mat", P_NUM|P_VI_DEF,
1672 (char_u *)&p_mat, PV_NONE,
1673 {(char_u *)5L, (char_u *)0L}},
1674 {"maxcombine", "mco", P_NUM|P_VI_DEF,
1675 #ifdef FEAT_MBYTE
1676 (char_u *)&p_mco, PV_NONE,
1677 #else
1678 (char_u *)NULL, PV_NONE,
1679 #endif
1680 {(char_u *)2, (char_u *)0L}},
1681 {"maxfuncdepth", "mfd", P_NUM|P_VI_DEF,
1682 #ifdef FEAT_EVAL
1683 (char_u *)&p_mfd, PV_NONE,
1684 #else
1685 (char_u *)NULL, PV_NONE,
1686 #endif
1687 {(char_u *)100L, (char_u *)0L}},
1688 {"maxmapdepth", "mmd", P_NUM|P_VI_DEF,
1689 (char_u *)&p_mmd, PV_NONE,
1690 {(char_u *)1000L, (char_u *)0L}},
1691 {"maxmem", "mm", P_NUM|P_VI_DEF,
1692 (char_u *)&p_mm, PV_NONE,
1693 {(char_u *)DFLT_MAXMEM, (char_u *)0L}},
1694 {"maxmempattern","mmp", P_NUM|P_VI_DEF,
1695 (char_u *)&p_mmp, PV_NONE,
1696 {(char_u *)1000L, (char_u *)0L}},
1697 {"maxmemtot", "mmt", P_NUM|P_VI_DEF,
1698 (char_u *)&p_mmt, PV_NONE,
1699 {(char_u *)DFLT_MAXMEMTOT, (char_u *)0L}},
1700 {"menuitems", "mis", P_NUM|P_VI_DEF,
1701 #ifdef FEAT_MENU
1702 (char_u *)&p_mis, PV_NONE,
1703 #else
1704 (char_u *)NULL, PV_NONE,
1705 #endif
1706 {(char_u *)25L, (char_u *)0L}},
1707 {"mesg", NULL, P_BOOL|P_VI_DEF,
1708 (char_u *)NULL, PV_NONE,
1709 {(char_u *)FALSE, (char_u *)0L}},
1710 {"mkspellmem", "msm", P_STRING|P_VI_DEF|P_EXPAND|P_SECURE,
1711 #ifdef FEAT_SPELL
1712 (char_u *)&p_msm, PV_NONE,
1713 {(char_u *)"460000,2000,500", (char_u *)0L}
1714 #else
1715 (char_u *)NULL, PV_NONE,
1716 {(char_u *)0L, (char_u *)0L}
1717 #endif
1719 {"modeline", "ml", P_BOOL|P_VIM,
1720 (char_u *)&p_ml, PV_ML,
1721 {(char_u *)FALSE, (char_u *)TRUE}},
1722 {"modelines", "mls", P_NUM|P_VI_DEF,
1723 (char_u *)&p_mls, PV_NONE,
1724 {(char_u *)5L, (char_u *)0L}},
1725 {"modifiable", "ma", P_BOOL|P_VI_DEF|P_NOGLOB,
1726 (char_u *)&p_ma, PV_MA,
1727 {(char_u *)TRUE, (char_u *)0L}},
1728 {"modified", "mod", P_BOOL|P_NO_MKRC|P_VI_DEF|P_RSTAT,
1729 (char_u *)&p_mod, PV_MOD,
1730 {(char_u *)FALSE, (char_u *)0L}},
1731 {"more", NULL, P_BOOL|P_VIM,
1732 (char_u *)&p_more, PV_NONE,
1733 {(char_u *)FALSE, (char_u *)TRUE}},
1734 {"mouse", NULL, P_STRING|P_VI_DEF|P_FLAGLIST,
1735 (char_u *)&p_mouse, PV_NONE,
1737 #if defined(MSDOS) || defined(WIN3264)
1738 (char_u *)"a",
1739 #else
1740 (char_u *)"",
1741 #endif
1742 (char_u *)0L}},
1743 {"mousefocus", "mousef", P_BOOL|P_VI_DEF,
1744 #ifdef FEAT_GUI
1745 (char_u *)&p_mousef, PV_NONE,
1746 #else
1747 (char_u *)NULL, PV_NONE,
1748 #endif
1749 {(char_u *)FALSE, (char_u *)0L}},
1750 {"mousehide", "mh", P_BOOL|P_VI_DEF,
1751 #ifdef FEAT_GUI
1752 (char_u *)&p_mh, PV_NONE,
1753 #else
1754 (char_u *)NULL, PV_NONE,
1755 #endif
1756 {(char_u *)TRUE, (char_u *)0L}},
1757 {"mousemodel", "mousem", P_STRING|P_VI_DEF,
1758 (char_u *)&p_mousem, PV_NONE,
1760 #if defined(MSDOS) || defined(MSWIN)
1761 (char_u *)"popup",
1762 #else
1763 # if defined(MACOS)
1764 (char_u *)"popup_setpos",
1765 # else
1766 (char_u *)"extend",
1767 # endif
1768 #endif
1769 (char_u *)0L}},
1770 {"mouseshape", "mouses", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1771 #ifdef FEAT_MOUSESHAPE
1772 (char_u *)&p_mouseshape, PV_NONE,
1773 {(char_u *)"i-r:beam,s:updown,sd:udsizing,vs:leftright,vd:lrsizing,m:no,ml:up-arrow,v:rightup-arrow", (char_u *)0L}
1774 #else
1775 (char_u *)NULL, PV_NONE,
1776 {(char_u *)NULL, (char_u *)0L}
1777 #endif
1779 {"mousetime", "mouset", P_NUM|P_VI_DEF,
1780 (char_u *)&p_mouset, PV_NONE,
1781 {(char_u *)500L, (char_u *)0L}},
1782 {"mzquantum", "mzq", P_NUM,
1783 #ifdef FEAT_MZSCHEME
1784 (char_u *)&p_mzq, PV_NONE,
1785 #else
1786 (char_u *)NULL, PV_NONE,
1787 #endif
1788 {(char_u *)100L, (char_u *)100L}},
1789 {"novice", NULL, P_BOOL|P_VI_DEF,
1790 (char_u *)NULL, PV_NONE,
1791 {(char_u *)FALSE, (char_u *)0L}},
1792 {"nrformats", "nf", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
1793 (char_u *)&p_nf, PV_NF,
1794 {(char_u *)"octal,hex", (char_u *)0L}},
1795 {"number", "nu", P_BOOL|P_VI_DEF|P_RWIN,
1796 (char_u *)VAR_WIN, PV_NU,
1797 {(char_u *)FALSE, (char_u *)0L}},
1798 {"numberwidth", "nuw", P_NUM|P_RWIN|P_VIM,
1799 #ifdef FEAT_LINEBREAK
1800 (char_u *)VAR_WIN, PV_NUW,
1801 #else
1802 (char_u *)NULL, PV_NONE,
1803 #endif
1804 {(char_u *)8L, (char_u *)4L}},
1805 {"omnifunc", "ofu", P_STRING|P_ALLOCED|P_VI_DEF|P_SECURE,
1806 #ifdef FEAT_COMPL_FUNC
1807 (char_u *)&p_ofu, PV_OFU,
1808 {(char_u *)"", (char_u *)0L}
1809 #else
1810 (char_u *)NULL, PV_NONE,
1811 {(char_u *)0L, (char_u *)0L}
1812 #endif
1814 {"open", NULL, P_BOOL|P_VI_DEF,
1815 (char_u *)NULL, PV_NONE,
1816 {(char_u *)FALSE, (char_u *)0L}},
1817 {"opendevice", "odev", P_BOOL|P_VI_DEF,
1818 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
1819 (char_u *)&p_odev, PV_NONE,
1820 #else
1821 (char_u *)NULL, PV_NONE,
1822 #endif
1823 {(char_u *)FALSE, (char_u *)FALSE}
1825 {"operatorfunc", "opfunc", P_STRING|P_VI_DEF|P_SECURE,
1826 (char_u *)&p_opfunc, PV_NONE,
1827 {(char_u *)"", (char_u *)0L} },
1828 {"optimize", "opt", P_BOOL|P_VI_DEF,
1829 (char_u *)NULL, PV_NONE,
1830 {(char_u *)FALSE, (char_u *)0L}},
1831 {"osfiletype", "oft", P_STRING|P_ALLOCED|P_VI_DEF,
1832 #ifdef FEAT_OSFILETYPE
1833 (char_u *)&p_oft, PV_OFT,
1834 {(char_u *)DFLT_OFT, (char_u *)0L}
1835 #else
1836 (char_u *)NULL, PV_NONE,
1837 {(char_u *)0L, (char_u *)0L}
1838 #endif
1840 {"paragraphs", "para", P_STRING|P_VI_DEF,
1841 (char_u *)&p_para, PV_NONE,
1842 {(char_u *)"IPLPPPQPP LIpplpipbp", (char_u *)0L}},
1843 {"paste", NULL, P_BOOL|P_VI_DEF|P_PRI_MKRC,
1844 (char_u *)&p_paste, PV_NONE,
1845 {(char_u *)FALSE, (char_u *)0L}},
1846 {"pastetoggle", "pt", P_STRING|P_VI_DEF,
1847 (char_u *)&p_pt, PV_NONE,
1848 {(char_u *)"", (char_u *)0L}},
1849 {"patchexpr", "pex", P_STRING|P_VI_DEF|P_SECURE,
1850 #if defined(FEAT_DIFF) && defined(FEAT_EVAL)
1851 (char_u *)&p_pex, PV_NONE,
1852 {(char_u *)"", (char_u *)0L}
1853 #else
1854 (char_u *)NULL, PV_NONE,
1855 {(char_u *)0L, (char_u *)0L}
1856 #endif
1858 {"patchmode", "pm", P_STRING|P_VI_DEF|P_NFNAME,
1859 (char_u *)&p_pm, PV_NONE,
1860 {(char_u *)"", (char_u *)0L}},
1861 {"path", "pa", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
1862 (char_u *)&p_path, PV_PATH,
1864 #if defined AMIGA || defined MSDOS || defined MSWIN
1865 (char_u *)".,,",
1866 #else
1867 # if defined(__EMX__)
1868 (char_u *)".,/emx/include,,",
1869 # else /* Unix, probably */
1870 (char_u *)".,/usr/include,,",
1871 # endif
1872 #endif
1873 (char_u *)0L}},
1874 {"preserveindent", "pi", P_BOOL|P_VI_DEF|P_VIM,
1875 (char_u *)&p_pi, PV_PI,
1876 {(char_u *)FALSE, (char_u *)0L}},
1877 {"previewheight", "pvh", P_NUM|P_VI_DEF,
1878 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
1879 (char_u *)&p_pvh, PV_NONE,
1880 #else
1881 (char_u *)NULL, PV_NONE,
1882 #endif
1883 {(char_u *)12L, (char_u *)0L}},
1884 {"previewwindow", "pvw", P_BOOL|P_VI_DEF|P_RSTAT|P_NOGLOB,
1885 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
1886 (char_u *)VAR_WIN, PV_PVW,
1887 #else
1888 (char_u *)NULL, PV_NONE,
1889 #endif
1890 {(char_u *)FALSE, (char_u *)0L}},
1891 {"printdevice", "pdev", P_STRING|P_VI_DEF|P_SECURE,
1892 #ifdef FEAT_PRINTER
1893 (char_u *)&p_pdev, PV_NONE,
1894 {(char_u *)"", (char_u *)0L}
1895 #else
1896 (char_u *)NULL, PV_NONE,
1897 {(char_u *)NULL, (char_u *)0L}
1898 #endif
1900 {"printencoding", "penc", P_STRING|P_VI_DEF,
1901 #ifdef FEAT_POSTSCRIPT
1902 (char_u *)&p_penc, PV_NONE,
1903 {(char_u *)"", (char_u *)0L}
1904 #else
1905 (char_u *)NULL, PV_NONE,
1906 {(char_u *)NULL, (char_u *)0L}
1907 #endif
1909 {"printexpr", "pexpr", P_STRING|P_VI_DEF,
1910 #ifdef FEAT_POSTSCRIPT
1911 (char_u *)&p_pexpr, PV_NONE,
1912 {(char_u *)"", (char_u *)0L}
1913 #else
1914 (char_u *)NULL, PV_NONE,
1915 {(char_u *)NULL, (char_u *)0L}
1916 #endif
1918 {"printfont", "pfn", P_STRING|P_VI_DEF,
1919 #ifdef FEAT_PRINTER
1920 (char_u *)&p_pfn, PV_NONE,
1922 # ifdef MSWIN
1923 (char_u *)"Courier_New:h10",
1924 # else
1925 (char_u *)"courier",
1926 # endif
1927 (char_u *)0L}
1928 #else
1929 (char_u *)NULL, PV_NONE,
1930 {(char_u *)NULL, (char_u *)0L}
1931 #endif
1933 {"printheader", "pheader", P_STRING|P_VI_DEF|P_GETTEXT,
1934 #ifdef FEAT_PRINTER
1935 (char_u *)&p_header, PV_NONE,
1936 {(char_u *)N_("%<%f%h%m%=Page %N"), (char_u *)0L}
1937 #else
1938 (char_u *)NULL, PV_NONE,
1939 {(char_u *)NULL, (char_u *)0L}
1940 #endif
1942 {"printmbcharset", "pmbcs", P_STRING|P_VI_DEF,
1943 #if defined(FEAT_POSTSCRIPT) && defined(FEAT_MBYTE)
1944 (char_u *)&p_pmcs, PV_NONE,
1945 {(char_u *)"", (char_u *)0L}
1946 #else
1947 (char_u *)NULL, PV_NONE,
1948 {(char_u *)NULL, (char_u *)0L}
1949 #endif
1951 {"printmbfont", "pmbfn", P_STRING|P_VI_DEF,
1952 #if defined(FEAT_POSTSCRIPT) && defined(FEAT_MBYTE)
1953 (char_u *)&p_pmfn, PV_NONE,
1954 {(char_u *)"", (char_u *)0L}
1955 #else
1956 (char_u *)NULL, PV_NONE,
1957 {(char_u *)NULL, (char_u *)0L}
1958 #endif
1960 {"printoptions", "popt", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1961 #ifdef FEAT_PRINTER
1962 (char_u *)&p_popt, PV_NONE,
1963 {(char_u *)"", (char_u *)0L}
1964 #else
1965 (char_u *)NULL, PV_NONE,
1966 {(char_u *)NULL, (char_u *)0L}
1967 #endif
1969 {"prompt", NULL, P_BOOL|P_VI_DEF,
1970 (char_u *)&p_prompt, PV_NONE,
1971 {(char_u *)TRUE, (char_u *)0L}},
1972 {"pumheight", "ph", P_NUM|P_VI_DEF,
1973 #ifdef FEAT_INS_EXPAND
1974 (char_u *)&p_ph, PV_NONE,
1975 #else
1976 (char_u *)NULL, PV_NONE,
1977 #endif
1978 {(char_u *)0L, (char_u *)0L}},
1979 {"quoteescape", "qe", P_STRING|P_ALLOCED|P_VI_DEF,
1980 #ifdef FEAT_TEXTOBJ
1981 (char_u *)&p_qe, PV_QE,
1982 {(char_u *)"\\", (char_u *)0L}
1983 #else
1984 (char_u *)NULL, PV_NONE,
1985 {(char_u *)NULL, (char_u *)0L}
1986 #endif
1988 {"readonly", "ro", P_BOOL|P_VI_DEF|P_RSTAT|P_NOGLOB,
1989 (char_u *)&p_ro, PV_RO,
1990 {(char_u *)FALSE, (char_u *)0L}},
1991 {"redraw", NULL, P_BOOL|P_VI_DEF,
1992 (char_u *)NULL, PV_NONE,
1993 {(char_u *)FALSE, (char_u *)0L}},
1994 {"redrawtime", "rdt", P_NUM|P_VI_DEF,
1995 #ifdef FEAT_RELTIME
1996 (char_u *)&p_rdt, PV_NONE,
1997 #else
1998 (char_u *)NULL, PV_NONE,
1999 #endif
2000 {(char_u *)2000L, (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 {"toolbariconsize", "tbis", P_STRING|P_VI_DEF,
2523 (char_u *)&p_tbis, PV_NONE,
2524 {(char_u *)"small", (char_u *)0L}},
2525 #endif
2526 {"ttimeout", NULL, P_BOOL|P_VI_DEF|P_VIM,
2527 (char_u *)&p_ttimeout, PV_NONE,
2528 {(char_u *)FALSE, (char_u *)0L}},
2529 {"ttimeoutlen", "ttm", P_NUM|P_VI_DEF,
2530 (char_u *)&p_ttm, PV_NONE,
2531 {(char_u *)-1L, (char_u *)0L}},
2532 {"ttybuiltin", "tbi", P_BOOL|P_VI_DEF,
2533 (char_u *)&p_tbi, PV_NONE,
2534 {(char_u *)TRUE, (char_u *)0L}},
2535 {"ttyfast", "tf", P_BOOL|P_NO_MKRC|P_VI_DEF,
2536 (char_u *)&p_tf, PV_NONE,
2537 {(char_u *)FALSE, (char_u *)0L}},
2538 {"ttymouse", "ttym", P_STRING|P_NODEFAULT|P_NO_MKRC|P_VI_DEF,
2539 #if defined(FEAT_MOUSE) && (defined(UNIX) || defined(VMS))
2540 (char_u *)&p_ttym, PV_NONE,
2541 #else
2542 (char_u *)NULL, PV_NONE,
2543 #endif
2544 {(char_u *)"", (char_u *)0L}},
2545 {"ttyscroll", "tsl", P_NUM|P_VI_DEF,
2546 (char_u *)&p_ttyscroll, PV_NONE,
2547 {(char_u *)999L, (char_u *)0L}},
2548 {"ttytype", "tty", P_STRING|P_EXPAND|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RALL,
2549 (char_u *)&T_NAME, PV_NONE,
2550 {(char_u *)"", (char_u *)0L}},
2551 {"undolevels", "ul", P_NUM|P_VI_DEF,
2552 (char_u *)&p_ul, PV_NONE,
2554 #if defined(UNIX) || defined(WIN3264) || defined(OS2) || defined(VMS)
2555 (char_u *)1000L,
2556 #else
2557 (char_u *)100L,
2558 #endif
2559 (char_u *)0L}},
2560 {"updatecount", "uc", P_NUM|P_VI_DEF,
2561 (char_u *)&p_uc, PV_NONE,
2562 {(char_u *)200L, (char_u *)0L}},
2563 {"updatetime", "ut", P_NUM|P_VI_DEF,
2564 (char_u *)&p_ut, PV_NONE,
2565 {(char_u *)4000L, (char_u *)0L}},
2566 {"verbose", "vbs", P_NUM|P_VI_DEF,
2567 (char_u *)&p_verbose, PV_NONE,
2568 {(char_u *)0L, (char_u *)0L}},
2569 {"verbosefile", "vfile", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
2570 (char_u *)&p_vfile, PV_NONE,
2571 {(char_u *)"", (char_u *)0L}},
2572 {"viewdir", "vdir", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
2573 #ifdef FEAT_SESSION
2574 (char_u *)&p_vdir, PV_NONE,
2575 {(char_u *)DFLT_VDIR, (char_u *)0L}
2576 #else
2577 (char_u *)NULL, PV_NONE,
2578 {(char_u *)0L, (char_u *)0L}
2579 #endif
2581 {"viewoptions", "vop", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2582 #ifdef FEAT_SESSION
2583 (char_u *)&p_vop, PV_NONE,
2584 {(char_u *)"folds,options,cursor", (char_u *)0L}
2585 #else
2586 (char_u *)NULL, PV_NONE,
2587 {(char_u *)0L, (char_u *)0L}
2588 #endif
2590 {"viminfo", "vi", P_STRING|P_COMMA|P_NODUP|P_SECURE,
2591 #ifdef FEAT_VIMINFO
2592 (char_u *)&p_viminfo, PV_NONE,
2593 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
2594 {(char_u *)"", (char_u *)"'20,<50,s10,h,rA:,rB:"}
2595 #else
2596 # ifdef AMIGA
2597 {(char_u *)"",
2598 (char_u *)"'20,<50,s10,h,rdf0:,rdf1:,rdf2:"}
2599 # else
2600 {(char_u *)"", (char_u *)"'20,<50,s10,h"}
2601 # endif
2602 #endif
2603 #else
2604 (char_u *)NULL, PV_NONE,
2605 {(char_u *)0L, (char_u *)0L}
2606 #endif
2608 {"virtualedit", "ve", P_STRING|P_COMMA|P_NODUP|P_VI_DEF|P_VIM,
2609 #ifdef FEAT_VIRTUALEDIT
2610 (char_u *)&p_ve, PV_NONE,
2611 {(char_u *)"", (char_u *)""}
2612 #else
2613 (char_u *)NULL, PV_NONE,
2614 {(char_u *)0L, (char_u *)0L}
2615 #endif
2617 {"visualbell", "vb", P_BOOL|P_VI_DEF,
2618 (char_u *)&p_vb, PV_NONE,
2619 {(char_u *)FALSE, (char_u *)0L}},
2620 {"w300", NULL, P_NUM|P_VI_DEF,
2621 (char_u *)NULL, PV_NONE,
2622 {(char_u *)0L, (char_u *)0L}},
2623 {"w1200", NULL, P_NUM|P_VI_DEF,
2624 (char_u *)NULL, PV_NONE,
2625 {(char_u *)0L, (char_u *)0L}},
2626 {"w9600", NULL, P_NUM|P_VI_DEF,
2627 (char_u *)NULL, PV_NONE,
2628 {(char_u *)0L, (char_u *)0L}},
2629 {"warn", NULL, P_BOOL|P_VI_DEF,
2630 (char_u *)&p_warn, PV_NONE,
2631 {(char_u *)TRUE, (char_u *)0L}},
2632 {"weirdinvert", "wiv", P_BOOL|P_VI_DEF|P_RCLR,
2633 (char_u *)&p_wiv, PV_NONE,
2634 {(char_u *)FALSE, (char_u *)0L}},
2635 {"whichwrap", "ww", P_STRING|P_VIM|P_COMMA|P_FLAGLIST,
2636 (char_u *)&p_ww, PV_NONE,
2637 {(char_u *)"", (char_u *)"b,s"}},
2638 {"wildchar", "wc", P_NUM|P_VIM,
2639 (char_u *)&p_wc, PV_NONE,
2640 {(char_u *)(long)Ctrl_E, (char_u *)(long)TAB}},
2641 {"wildcharm", "wcm", P_NUM|P_VI_DEF,
2642 (char_u *)&p_wcm, PV_NONE,
2643 {(char_u *)0L, (char_u *)0L}},
2644 {"wildignore", "wig", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2645 #ifdef FEAT_WILDIGN
2646 (char_u *)&p_wig, PV_NONE,
2647 #else
2648 (char_u *)NULL, PV_NONE,
2649 #endif
2650 {(char_u *)"", (char_u *)0L}},
2651 {"wildmenu", "wmnu", P_BOOL|P_VI_DEF,
2652 #ifdef FEAT_WILDMENU
2653 (char_u *)&p_wmnu, PV_NONE,
2654 #else
2655 (char_u *)NULL, PV_NONE,
2656 #endif
2657 {(char_u *)FALSE, (char_u *)0L}},
2658 {"wildmode", "wim", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2659 (char_u *)&p_wim, PV_NONE,
2660 {(char_u *)"full", (char_u *)0L}},
2661 {"wildoptions", "wop", P_STRING|P_VI_DEF,
2662 #ifdef FEAT_CMDL_COMPL
2663 (char_u *)&p_wop, PV_NONE,
2664 {(char_u *)"", (char_u *)0L}
2665 #else
2666 (char_u *)NULL, PV_NONE,
2667 {(char_u *)NULL, (char_u *)0L}
2668 #endif
2670 {"winaltkeys", "wak", P_STRING|P_VI_DEF,
2671 #ifdef FEAT_WAK
2672 (char_u *)&p_wak, PV_NONE,
2673 {(char_u *)"menu", (char_u *)0L}
2674 #else
2675 (char_u *)NULL, PV_NONE,
2676 {(char_u *)NULL, (char_u *)0L}
2677 #endif
2679 {"window", "wi", P_NUM|P_VI_DEF,
2680 (char_u *)&p_window, PV_NONE,
2681 {(char_u *)0L, (char_u *)0L}},
2682 {"winheight", "wh", P_NUM|P_VI_DEF,
2683 #ifdef FEAT_WINDOWS
2684 (char_u *)&p_wh, PV_NONE,
2685 #else
2686 (char_u *)NULL, PV_NONE,
2687 #endif
2688 {(char_u *)1L, (char_u *)0L}},
2689 {"winfixheight", "wfh", P_BOOL|P_VI_DEF|P_RSTAT,
2690 #ifdef FEAT_WINDOWS
2691 (char_u *)VAR_WIN, PV_WFH,
2692 #else
2693 (char_u *)NULL, PV_NONE,
2694 #endif
2695 {(char_u *)FALSE, (char_u *)0L}},
2696 {"winfixwidth", "wfw", P_BOOL|P_VI_DEF|P_RSTAT,
2697 #ifdef FEAT_VERTSPLIT
2698 (char_u *)VAR_WIN, PV_WFW,
2699 #else
2700 (char_u *)NULL, PV_NONE,
2701 #endif
2702 {(char_u *)FALSE, (char_u *)0L}},
2703 {"winminheight", "wmh", P_NUM|P_VI_DEF,
2704 #ifdef FEAT_WINDOWS
2705 (char_u *)&p_wmh, PV_NONE,
2706 #else
2707 (char_u *)NULL, PV_NONE,
2708 #endif
2709 {(char_u *)1L, (char_u *)0L}},
2710 {"winminwidth", "wmw", P_NUM|P_VI_DEF,
2711 #ifdef FEAT_VERTSPLIT
2712 (char_u *)&p_wmw, PV_NONE,
2713 #else
2714 (char_u *)NULL, PV_NONE,
2715 #endif
2716 {(char_u *)1L, (char_u *)0L}},
2717 {"winwidth", "wiw", P_NUM|P_VI_DEF,
2718 #ifdef FEAT_VERTSPLIT
2719 (char_u *)&p_wiw, PV_NONE,
2720 #else
2721 (char_u *)NULL, PV_NONE,
2722 #endif
2723 {(char_u *)20L, (char_u *)0L}},
2724 {"wrap", NULL, P_BOOL|P_VI_DEF|P_RWIN,
2725 (char_u *)VAR_WIN, PV_WRAP,
2726 {(char_u *)TRUE, (char_u *)0L}},
2727 {"wrapmargin", "wm", P_NUM|P_VI_DEF,
2728 (char_u *)&p_wm, PV_WM,
2729 {(char_u *)0L, (char_u *)0L}},
2730 {"wrapscan", "ws", P_BOOL|P_VI_DEF,
2731 (char_u *)&p_ws, PV_NONE,
2732 {(char_u *)TRUE, (char_u *)0L}},
2733 {"write", NULL, P_BOOL|P_VI_DEF,
2734 (char_u *)&p_write, PV_NONE,
2735 {(char_u *)TRUE, (char_u *)0L}},
2736 {"writeany", "wa", P_BOOL|P_VI_DEF,
2737 (char_u *)&p_wa, PV_NONE,
2738 {(char_u *)FALSE, (char_u *)0L}},
2739 {"writebackup", "wb", P_BOOL|P_VI_DEF|P_VIM,
2740 (char_u *)&p_wb, PV_NONE,
2742 #ifdef FEAT_WRITEBACKUP
2743 (char_u *)TRUE,
2744 #else
2745 (char_u *)FALSE,
2746 #endif
2747 (char_u *)0L}},
2748 {"writedelay", "wd", P_NUM|P_VI_DEF,
2749 (char_u *)&p_wd, PV_NONE,
2750 {(char_u *)0L, (char_u *)0L}},
2752 /* terminal output codes */
2753 #define p_term(sss, vvv) {sss, NULL, P_STRING|P_VI_DEF|P_RALL|P_SECURE, \
2754 (char_u *)&vvv, PV_NONE, \
2755 {(char_u *)"", (char_u *)0L}},
2757 p_term("t_AB", T_CAB)
2758 p_term("t_AF", T_CAF)
2759 p_term("t_AL", T_CAL)
2760 p_term("t_al", T_AL)
2761 p_term("t_bc", T_BC)
2762 p_term("t_cd", T_CD)
2763 p_term("t_ce", T_CE)
2764 p_term("t_cl", T_CL)
2765 p_term("t_cm", T_CM)
2766 p_term("t_Co", T_CCO)
2767 p_term("t_CS", T_CCS)
2768 p_term("t_cs", T_CS)
2769 #ifdef FEAT_VERTSPLIT
2770 p_term("t_CV", T_CSV)
2771 #endif
2772 p_term("t_ut", T_UT)
2773 p_term("t_da", T_DA)
2774 p_term("t_db", T_DB)
2775 p_term("t_DL", T_CDL)
2776 p_term("t_dl", T_DL)
2777 p_term("t_fs", T_FS)
2778 p_term("t_IE", T_CIE)
2779 p_term("t_IS", T_CIS)
2780 p_term("t_ke", T_KE)
2781 p_term("t_ks", T_KS)
2782 p_term("t_le", T_LE)
2783 p_term("t_mb", T_MB)
2784 p_term("t_md", T_MD)
2785 p_term("t_me", T_ME)
2786 p_term("t_mr", T_MR)
2787 p_term("t_ms", T_MS)
2788 p_term("t_nd", T_ND)
2789 p_term("t_op", T_OP)
2790 p_term("t_RI", T_CRI)
2791 p_term("t_RV", T_CRV)
2792 p_term("t_Sb", T_CSB)
2793 p_term("t_Sf", T_CSF)
2794 p_term("t_se", T_SE)
2795 p_term("t_so", T_SO)
2796 p_term("t_sr", T_SR)
2797 p_term("t_ts", T_TS)
2798 p_term("t_te", T_TE)
2799 p_term("t_ti", T_TI)
2800 p_term("t_ue", T_UE)
2801 p_term("t_us", T_US)
2802 p_term("t_vb", T_VB)
2803 p_term("t_ve", T_VE)
2804 p_term("t_vi", T_VI)
2805 p_term("t_vs", T_VS)
2806 p_term("t_WP", T_CWP)
2807 p_term("t_WS", T_CWS)
2808 p_term("t_SI", T_CSI)
2809 p_term("t_EI", T_CEI)
2810 p_term("t_xs", T_XS)
2811 p_term("t_ZH", T_CZH)
2812 p_term("t_ZR", T_CZR)
2814 /* terminal key codes are not in here */
2816 {NULL, NULL, 0, NULL, PV_NONE, {NULL, NULL}} /* end marker */
2819 #define PARAM_COUNT (sizeof(options) / sizeof(struct vimoption))
2821 #ifdef FEAT_MBYTE
2822 static char *(p_ambw_values[]) = {"single", "double", NULL};
2823 #endif
2824 static char *(p_bg_values[]) = {"light", "dark", NULL};
2825 static char *(p_nf_values[]) = {"octal", "hex", "alpha", NULL};
2826 static char *(p_ff_values[]) = {FF_UNIX, FF_DOS, FF_MAC, NULL};
2827 #ifdef FEAT_CMDL_COMPL
2828 static char *(p_wop_values[]) = {"tagfile", NULL};
2829 #endif
2830 #ifdef FEAT_WAK
2831 static char *(p_wak_values[]) = {"yes", "menu", "no", NULL};
2832 #endif
2833 static char *(p_mousem_values[]) = {"extend", "popup", "popup_setpos", "mac", NULL};
2834 #ifdef FEAT_VISUAL
2835 static char *(p_sel_values[]) = {"inclusive", "exclusive", "old", NULL};
2836 static char *(p_slm_values[]) = {"mouse", "key", "cmd", NULL};
2837 #endif
2838 #ifdef FEAT_VISUAL
2839 static char *(p_km_values[]) = {"startsel", "stopsel", NULL};
2840 #endif
2841 #ifdef FEAT_BROWSE
2842 static char *(p_bsdir_values[]) = {"current", "last", "buffer", NULL};
2843 #endif
2844 #ifdef FEAT_SCROLLBIND
2845 static char *(p_scbopt_values[]) = {"ver", "hor", "jump", NULL};
2846 #endif
2847 static char *(p_swb_values[]) = {"useopen", "usetab", "split", NULL};
2848 static char *(p_debug_values[]) = {"msg", "throw", "beep", NULL};
2849 #ifdef FEAT_VERTSPLIT
2850 static char *(p_ead_values[]) = {"both", "ver", "hor", NULL};
2851 #endif
2852 #if defined(FEAT_QUICKFIX)
2853 # ifdef FEAT_AUTOCMD
2854 static char *(p_buftype_values[]) = {"nofile", "nowrite", "quickfix", "help", "acwrite", NULL};
2855 # else
2856 static char *(p_buftype_values[]) = {"nofile", "nowrite", "quickfix", "help", NULL};
2857 # endif
2858 static char *(p_bufhidden_values[]) = {"hide", "unload", "delete", "wipe", NULL};
2859 #endif
2860 static char *(p_bs_values[]) = {"indent", "eol", "start", NULL};
2861 #ifdef FEAT_FOLDING
2862 static char *(p_fdm_values[]) = {"manual", "expr", "marker", "indent", "syntax",
2863 # ifdef FEAT_DIFF
2864 "diff",
2865 # endif
2866 NULL};
2867 static char *(p_fcl_values[]) = {"all", NULL};
2868 #endif
2869 #ifdef FEAT_INS_EXPAND
2870 static char *(p_cot_values[]) = {"menu", "menuone", "longest", "preview", NULL};
2871 #endif
2873 static void set_option_default __ARGS((int, int opt_flags, int compatible));
2874 static void set_options_default __ARGS((int opt_flags));
2875 static char_u *term_bg_default __ARGS((void));
2876 static void did_set_option __ARGS((int opt_idx, int opt_flags, int new_value));
2877 static char_u *illegal_char __ARGS((char_u *, int));
2878 static int string_to_key __ARGS((char_u *arg));
2879 #ifdef FEAT_CMDWIN
2880 static char_u *check_cedit __ARGS((void));
2881 #endif
2882 #ifdef FEAT_TITLE
2883 static void did_set_title __ARGS((int icon));
2884 #endif
2885 static char_u *option_expand __ARGS((int opt_idx, char_u *val));
2886 static void didset_options __ARGS((void));
2887 static void check_string_option __ARGS((char_u **pp));
2888 #if defined(FEAT_EVAL) || defined(PROTO)
2889 static long_u *insecure_flag __ARGS((int opt_idx, int opt_flags));
2890 #else
2891 # define insecure_flag(opt_idx, opt_flags) (&options[opt_idx].flags)
2892 #endif
2893 static void set_string_option_global __ARGS((int opt_idx, char_u **varp));
2894 static void set_string_option __ARGS((int opt_idx, char_u *value, int opt_flags));
2895 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));
2896 static char_u *set_chars_option __ARGS((char_u **varp));
2897 #ifdef FEAT_CLIPBOARD
2898 static char_u *check_clipboard_option __ARGS((void));
2899 #endif
2900 #ifdef FEAT_SPELL
2901 static char_u *compile_cap_prog __ARGS((buf_T *buf));
2902 #endif
2903 #ifdef FEAT_EVAL
2904 static void set_option_scriptID_idx __ARGS((int opt_idx, int opt_flags, int id));
2905 #endif
2906 static char_u *set_bool_option __ARGS((int opt_idx, char_u *varp, int value, int opt_flags));
2907 static char_u *set_num_option __ARGS((int opt_idx, char_u *varp, long value, char_u *errbuf, size_t errbuflen, int opt_flags));
2908 static void check_redraw __ARGS((long_u flags));
2909 static int findoption __ARGS((char_u *));
2910 static int find_key_option __ARGS((char_u *));
2911 static void showoptions __ARGS((int all, int opt_flags));
2912 static int optval_default __ARGS((struct vimoption *, char_u *varp));
2913 static void showoneopt __ARGS((struct vimoption *, int opt_flags));
2914 static int put_setstring __ARGS((FILE *fd, char *cmd, char *name, char_u **valuep, int expand));
2915 static int put_setnum __ARGS((FILE *fd, char *cmd, char *name, long *valuep));
2916 static int put_setbool __ARGS((FILE *fd, char *cmd, char *name, int value));
2917 static int istermoption __ARGS((struct vimoption *));
2918 static char_u *get_varp_scope __ARGS((struct vimoption *p, int opt_flags));
2919 static char_u *get_varp __ARGS((struct vimoption *));
2920 static void option_value2string __ARGS((struct vimoption *, int opt_flags));
2921 static int wc_use_keyname __ARGS((char_u *varp, long *wcp));
2922 #ifdef FEAT_LANGMAP
2923 static void langmap_init __ARGS((void));
2924 static void langmap_set __ARGS((void));
2925 #endif
2926 static void paste_option_changed __ARGS((void));
2927 static void compatible_set __ARGS((void));
2928 #ifdef FEAT_LINEBREAK
2929 static void fill_breakat_flags __ARGS((void));
2930 #endif
2931 static int opt_strings_flags __ARGS((char_u *val, char **values, unsigned *flagp, int list));
2932 static int check_opt_strings __ARGS((char_u *val, char **values, int));
2933 static int check_opt_wim __ARGS((void));
2936 * Initialize the options, first part.
2938 * Called only once from main(), just after creating the first buffer.
2940 void
2941 set_init_1()
2943 char_u *p;
2944 int opt_idx;
2945 long_u n;
2947 #ifdef FEAT_LANGMAP
2948 langmap_init();
2949 #endif
2951 /* Be Vi compatible by default */
2952 p_cp = TRUE;
2954 /* Use POSIX compatibility when $VIM_POSIX is set. */
2955 if (mch_getenv((char_u *)"VIM_POSIX") != NULL)
2957 set_string_default("cpo", (char_u *)CPO_ALL);
2958 set_string_default("shm", (char_u *)"A");
2962 * Find default value for 'shell' option.
2963 * Don't use it if it is empty.
2965 if (((p = mch_getenv((char_u *)"SHELL")) != NULL && *p != NUL)
2966 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
2967 # ifdef __EMX__
2968 || ((p = mch_getenv((char_u *)"EMXSHELL")) != NULL && *p != NUL)
2969 # endif
2970 || ((p = mch_getenv((char_u *)"COMSPEC")) != NULL && *p != NUL)
2971 # ifdef WIN3264
2972 || ((p = default_shell()) != NULL && *p != NUL)
2973 # endif
2974 #endif
2976 set_string_default("sh", p);
2978 #ifdef FEAT_WILDIGN
2980 * Set the default for 'backupskip' to include environment variables for
2981 * temp files.
2984 # ifdef UNIX
2985 static char *(names[4]) = {"", "TMPDIR", "TEMP", "TMP"};
2986 # else
2987 static char *(names[3]) = {"TMPDIR", "TEMP", "TMP"};
2988 # endif
2989 int len;
2990 garray_T ga;
2991 int mustfree;
2993 ga_init2(&ga, 1, 100);
2994 for (n = 0; n < (long)(sizeof(names) / sizeof(char *)); ++n)
2996 mustfree = FALSE;
2997 # ifdef UNIX
2998 if (*names[n] == NUL)
2999 p = (char_u *)"/tmp";
3000 else
3001 # endif
3002 p = vim_getenv((char_u *)names[n], &mustfree);
3003 if (p != NULL && *p != NUL)
3005 /* First time count the NUL, otherwise count the ','. */
3006 len = (int)STRLEN(p) + 3;
3007 if (ga_grow(&ga, len) == OK)
3009 if (ga.ga_len > 0)
3010 STRCAT(ga.ga_data, ",");
3011 STRCAT(ga.ga_data, p);
3012 add_pathsep(ga.ga_data);
3013 STRCAT(ga.ga_data, "*");
3014 ga.ga_len += len;
3017 if (mustfree)
3018 vim_free(p);
3020 if (ga.ga_data != NULL)
3022 set_string_default("bsk", ga.ga_data);
3023 vim_free(ga.ga_data);
3026 #endif
3029 * 'maxmemtot' and 'maxmem' may have to be adjusted for available memory
3031 opt_idx = findoption((char_u *)"maxmemtot");
3032 if (opt_idx >= 0)
3034 #if !defined(HAVE_AVAIL_MEM) && !defined(HAVE_TOTAL_MEM)
3035 if (options[opt_idx].def_val[VI_DEFAULT] == (char_u *)0L)
3036 #endif
3038 #ifdef HAVE_AVAIL_MEM
3039 /* Use amount of memory available at this moment. */
3040 n = (mch_avail_mem(FALSE) >> 11);
3041 #else
3042 # ifdef HAVE_TOTAL_MEM
3043 /* Use amount of memory available to Vim. */
3044 n = (mch_total_mem(FALSE) >> 1);
3045 # else
3046 n = (0x7fffffff >> 11);
3047 # endif
3048 #endif
3049 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)n;
3050 opt_idx = findoption((char_u *)"maxmem");
3051 if (opt_idx >= 0)
3053 #if !defined(HAVE_AVAIL_MEM) && !defined(HAVE_TOTAL_MEM)
3054 if ((long)options[opt_idx].def_val[VI_DEFAULT] > n
3055 || (long)options[opt_idx].def_val[VI_DEFAULT] == 0L)
3056 #endif
3057 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)n;
3062 #ifdef FEAT_GUI_W32
3063 /* force 'shortname' for Win32s */
3064 if (gui_is_win32s())
3066 opt_idx = findoption((char_u *)"shortname");
3067 if (opt_idx >= 0)
3068 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)TRUE;
3070 #endif
3072 #ifdef FEAT_SEARCHPATH
3074 char_u *cdpath;
3075 char_u *buf;
3076 int i;
3077 int j;
3078 int mustfree = FALSE;
3080 /* Initialize the 'cdpath' option's default value. */
3081 cdpath = vim_getenv((char_u *)"CDPATH", &mustfree);
3082 if (cdpath != NULL)
3084 buf = alloc((unsigned)((STRLEN(cdpath) << 1) + 2));
3085 if (buf != NULL)
3087 buf[0] = ','; /* start with ",", current dir first */
3088 j = 1;
3089 for (i = 0; cdpath[i] != NUL; ++i)
3091 if (vim_ispathlistsep(cdpath[i]))
3092 buf[j++] = ',';
3093 else
3095 if (cdpath[i] == ' ' || cdpath[i] == ',')
3096 buf[j++] = '\\';
3097 buf[j++] = cdpath[i];
3100 buf[j] = NUL;
3101 opt_idx = findoption((char_u *)"cdpath");
3102 if (opt_idx >= 0)
3104 options[opt_idx].def_val[VI_DEFAULT] = buf;
3105 options[opt_idx].flags |= P_DEF_ALLOCED;
3108 if (mustfree)
3109 vim_free(cdpath);
3112 #endif
3114 #if defined(FEAT_POSTSCRIPT) && (defined(MSWIN) || defined(OS2) || defined(VMS) || defined(EBCDIC) || defined(MAC) || defined(hpux))
3115 /* Set print encoding on platforms that don't default to latin1 */
3116 set_string_default("penc",
3117 # if defined(MSWIN) || defined(OS2)
3118 (char_u *)"cp1252"
3119 # else
3120 # ifdef VMS
3121 (char_u *)"dec-mcs"
3122 # else
3123 # ifdef EBCDIC
3124 (char_u *)"ebcdic-uk"
3125 # else
3126 # ifdef MAC
3127 (char_u *)"mac-roman"
3128 # else /* HPUX */
3129 (char_u *)"hp-roman8"
3130 # endif
3131 # endif
3132 # endif
3133 # endif
3135 #endif
3137 #ifdef FEAT_POSTSCRIPT
3138 /* 'printexpr' must be allocated to be able to evaluate it. */
3139 set_string_default("pexpr",
3140 # if defined(MSWIN) || defined(MSDOS) || defined(OS2)
3141 (char_u *)"system('copy' . ' ' . v:fname_in . (&printdevice == '' ? ' LPT1:' : (' \"' . &printdevice . '\"'))) . delete(v:fname_in)"
3142 # else
3143 # ifdef VMS
3144 (char_u *)"system('print/delete' . (&printdevice == '' ? '' : ' /queue=' . &printdevice) . ' ' . v:fname_in)"
3146 # else
3147 (char_u *)"system('lpr' . (&printdevice == '' ? '' : ' -P' . &printdevice) . ' ' . v:fname_in) . delete(v:fname_in) + v:shell_error"
3148 # endif
3149 # endif
3151 #endif
3154 * Set all the options (except the terminal options) to their default
3155 * value. Also set the global value for local options.
3157 set_options_default(0);
3159 #ifdef FEAT_GUI
3160 if (found_reverse_arg)
3161 set_option_value((char_u *)"bg", 0L, (char_u *)"dark", 0);
3162 #endif
3164 curbuf->b_p_initialized = TRUE;
3165 curbuf->b_p_ar = -1; /* no local 'autoread' value */
3166 check_buf_options(curbuf);
3167 check_win_options(curwin);
3168 check_options();
3170 /* Must be before option_expand(), because that one needs vim_isIDc() */
3171 didset_options();
3173 #ifdef FEAT_SPELL
3174 /* Use the current chartab for the generic chartab. */
3175 init_spell_chartab();
3176 #endif
3178 #ifdef FEAT_LINEBREAK
3180 * initialize the table for 'breakat'.
3182 fill_breakat_flags();
3183 #endif
3186 * Expand environment variables and things like "~" for the defaults.
3187 * If option_expand() returns non-NULL the variable is expanded. This can
3188 * only happen for non-indirect options.
3189 * Also set the default to the expanded value, so ":set" does not list
3190 * them.
3191 * Don't set the P_ALLOCED flag, because we don't want to free the
3192 * default.
3194 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
3196 if ((options[opt_idx].flags & P_GETTEXT)
3197 && options[opt_idx].var != NULL)
3198 p = (char_u *)_(*(char **)options[opt_idx].var);
3199 else
3200 p = option_expand(opt_idx, NULL);
3201 if (p != NULL && (p = vim_strsave(p)) != NULL)
3203 *(char_u **)options[opt_idx].var = p;
3204 /* VIMEXP
3205 * Defaults for all expanded options are currently the same for Vi
3206 * and Vim. When this changes, add some code here! Also need to
3207 * split P_DEF_ALLOCED in two.
3209 if (options[opt_idx].flags & P_DEF_ALLOCED)
3210 vim_free(options[opt_idx].def_val[VI_DEFAULT]);
3211 options[opt_idx].def_val[VI_DEFAULT] = p;
3212 options[opt_idx].flags |= P_DEF_ALLOCED;
3216 /* Initialize the highlight_attr[] table. */
3217 highlight_changed();
3219 save_file_ff(curbuf); /* Buffer is unchanged */
3221 /* Parse default for 'wildmode' */
3222 check_opt_wim();
3224 #if defined(FEAT_ARABIC)
3225 /* Detect use of mlterm.
3226 * Mlterm is a terminal emulator akin to xterm that has some special
3227 * abilities (bidi namely).
3228 * NOTE: mlterm's author is being asked to 'set' a variable
3229 * instead of an environment variable due to inheritance.
3231 if (mch_getenv((char_u *)"MLTERM") != NULL)
3232 set_option_value((char_u *)"tbidi", 1L, NULL, 0);
3233 #endif
3235 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
3236 /* Parse default for 'fillchars'. */
3237 (void)set_chars_option(&p_fcs);
3238 #endif
3240 #ifdef FEAT_CLIPBOARD
3241 /* Parse default for 'clipboard' */
3242 (void)check_clipboard_option();
3243 #endif
3245 #ifdef FEAT_MBYTE
3246 # if defined(WIN3264) && defined(FEAT_GETTEXT)
3248 * If $LANG isn't set, try to get a good value for it. This makes the
3249 * right language be used automatically. Don't do this for English.
3251 if (mch_getenv((char_u *)"LANG") == NULL)
3253 char buf[20];
3255 /* Could use LOCALE_SISO639LANGNAME, but it's not in Win95.
3256 * LOCALE_SABBREVLANGNAME gives us three letters, like "enu", we use
3257 * only the first two. */
3258 n = GetLocaleInfo(LOCALE_USER_DEFAULT, LOCALE_SABBREVLANGNAME,
3259 (LPTSTR)buf, 20);
3260 if (n >= 2 && STRNICMP(buf, "en", 2) != 0)
3262 /* There are a few exceptions (probably more) */
3263 if (STRNICMP(buf, "cht", 3) == 0 || STRNICMP(buf, "zht", 3) == 0)
3264 STRCPY(buf, "zh_TW");
3265 else if (STRNICMP(buf, "chs", 3) == 0
3266 || STRNICMP(buf, "zhc", 3) == 0)
3267 STRCPY(buf, "zh_CN");
3268 else if (STRNICMP(buf, "jp", 2) == 0)
3269 STRCPY(buf, "ja");
3270 else
3271 buf[2] = NUL; /* truncate to two-letter code */
3272 vim_setenv("LANG", buf);
3275 # else
3276 # ifdef MACOS_CONVERT
3277 if (mch_getenv((char_u *)"LANG") == NULL)
3279 char buf[20];
3280 if (LocaleRefGetPartString(NULL,
3281 kLocaleLanguageMask | kLocaleLanguageVariantMask |
3282 kLocaleRegionMask | kLocaleRegionVariantMask,
3283 sizeof buf, buf) == noErr && *buf)
3285 vim_setenv((char_u *)"LANG", (char_u *)buf);
3286 # ifdef HAVE_LOCALE_H
3287 setlocale(LC_ALL, "");
3288 # endif
3291 # endif
3292 # endif
3294 /* enc_locale() will try to find the encoding of the current locale. */
3295 p = enc_locale();
3296 if (p != NULL)
3298 char_u *save_enc;
3300 /* Try setting 'encoding' and check if the value is valid.
3301 * If not, go back to the default "latin1". */
3302 save_enc = p_enc;
3303 p_enc = p;
3304 if (STRCMP(p_enc, "gb18030") == 0)
3306 /* We don't support "gb18030", but "cp936" is a good substitute
3307 * for practical purposes, thus use that. It's not an alias to
3308 * still support conversion between gb18030 and utf-8. */
3309 p_enc = vim_strsave((char_u *)"cp936");
3310 vim_free(p);
3312 if (mb_init() == NULL)
3314 opt_idx = findoption((char_u *)"encoding");
3315 if (opt_idx >= 0)
3317 options[opt_idx].def_val[VI_DEFAULT] = p_enc;
3318 options[opt_idx].flags |= P_DEF_ALLOCED;
3321 #if defined(MSDOS) || defined(MSWIN) || defined(OS2) || defined(MACOS) \
3322 || defined(VMS)
3323 if (STRCMP(p_enc, "latin1") == 0
3324 # ifdef FEAT_MBYTE
3325 || enc_utf8
3326 # endif
3329 /* Adjust the default for 'isprint' and 'iskeyword' to match
3330 * latin1. Also set the defaults for when 'nocompatible' is
3331 * set. */
3332 set_string_option_direct((char_u *)"isp", -1,
3333 ISP_LATIN1, OPT_FREE, SID_NONE);
3334 set_string_option_direct((char_u *)"isk", -1,
3335 ISK_LATIN1, OPT_FREE, SID_NONE);
3336 opt_idx = findoption((char_u *)"isp");
3337 if (opt_idx >= 0)
3338 options[opt_idx].def_val[VIM_DEFAULT] = ISP_LATIN1;
3339 opt_idx = findoption((char_u *)"isk");
3340 if (opt_idx >= 0)
3341 options[opt_idx].def_val[VIM_DEFAULT] = ISK_LATIN1;
3342 (void)init_chartab();
3344 #endif
3346 # if defined(WIN3264) && !defined(FEAT_GUI)
3347 /* Win32 console: When GetACP() returns a different value from
3348 * GetConsoleCP() set 'termencoding'. */
3349 if (GetACP() != GetConsoleCP())
3351 char buf[50];
3353 sprintf(buf, "cp%ld", (long)GetConsoleCP());
3354 p_tenc = vim_strsave((char_u *)buf);
3355 if (p_tenc != NULL)
3357 opt_idx = findoption((char_u *)"termencoding");
3358 if (opt_idx >= 0)
3360 options[opt_idx].def_val[VI_DEFAULT] = p_tenc;
3361 options[opt_idx].flags |= P_DEF_ALLOCED;
3363 convert_setup(&input_conv, p_tenc, p_enc);
3364 convert_setup(&output_conv, p_enc, p_tenc);
3366 else
3367 p_tenc = empty_option;
3369 # endif
3370 # if defined(WIN3264) && defined(FEAT_MBYTE)
3371 /* $HOME may have characters in active code page. */
3372 init_homedir();
3373 # endif
3375 else
3377 vim_free(p_enc);
3378 p_enc = save_enc;
3381 #endif
3383 #ifdef FEAT_MULTI_LANG
3384 /* Set the default for 'helplang'. */
3385 set_helplang_default(get_mess_lang());
3386 #endif
3390 * Set an option to its default value.
3391 * This does not take care of side effects!
3393 static void
3394 set_option_default(opt_idx, opt_flags, compatible)
3395 int opt_idx;
3396 int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */
3397 int compatible; /* use Vi default value */
3399 char_u *varp; /* pointer to variable for current option */
3400 int dvi; /* index in def_val[] */
3401 long_u flags;
3402 long_u *flagsp;
3403 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
3405 varp = get_varp_scope(&(options[opt_idx]), both ? OPT_LOCAL : opt_flags);
3406 flags = options[opt_idx].flags;
3407 if (varp != NULL) /* skip hidden option, nothing to do for it */
3409 dvi = ((flags & P_VI_DEF) || compatible) ? VI_DEFAULT : VIM_DEFAULT;
3410 if (flags & P_STRING)
3412 /* Use set_string_option_direct() for local options to handle
3413 * freeing and allocating the value. */
3414 if (options[opt_idx].indir != PV_NONE)
3415 set_string_option_direct(NULL, opt_idx,
3416 options[opt_idx].def_val[dvi], opt_flags, 0);
3417 else
3419 if ((opt_flags & OPT_FREE) && (flags & P_ALLOCED))
3420 free_string_option(*(char_u **)(varp));
3421 *(char_u **)varp = options[opt_idx].def_val[dvi];
3422 options[opt_idx].flags &= ~P_ALLOCED;
3425 else if (flags & P_NUM)
3427 if (options[opt_idx].indir == PV_SCROLL)
3428 win_comp_scroll(curwin);
3429 else
3431 *(long *)varp = (long)(long_i)options[opt_idx].def_val[dvi];
3432 /* May also set global value for local option. */
3433 if (both)
3434 *(long *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) =
3435 *(long *)varp;
3438 else /* P_BOOL */
3440 /* the cast to long is required for Manx C, long_i is needed for
3441 * MSVC */
3442 *(int *)varp = (int)(long)(long_i)options[opt_idx].def_val[dvi];
3443 #ifdef UNIX
3444 /* 'modeline' defaults to off for root */
3445 if (options[opt_idx].indir == PV_ML && getuid() == ROOT_UID)
3446 *(int *)varp = FALSE;
3447 #endif
3448 /* May also set global value for local option. */
3449 if (both)
3450 *(int *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) =
3451 *(int *)varp;
3454 /* The default value is not insecure. */
3455 flagsp = insecure_flag(opt_idx, opt_flags);
3456 *flagsp = *flagsp & ~P_INSECURE;
3459 #ifdef FEAT_EVAL
3460 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
3461 #endif
3465 * Set all options (except terminal options) to their default value.
3467 static void
3468 set_options_default(opt_flags)
3469 int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */
3471 int i;
3472 #ifdef FEAT_WINDOWS
3473 win_T *wp;
3474 tabpage_T *tp;
3475 #endif
3477 for (i = 0; !istermoption(&options[i]); i++)
3478 if (!(options[i].flags & P_NODEFAULT))
3479 set_option_default(i, opt_flags, p_cp);
3481 #ifdef FEAT_WINDOWS
3482 /* The 'scroll' option must be computed for all windows. */
3483 FOR_ALL_TAB_WINDOWS(tp, wp)
3484 win_comp_scroll(wp);
3485 #else
3486 win_comp_scroll(curwin);
3487 #endif
3491 * Set the Vi-default value of a string option.
3492 * Used for 'sh', 'backupskip' and 'term'.
3494 void
3495 set_string_default(name, val)
3496 char *name;
3497 char_u *val;
3499 char_u *p;
3500 int opt_idx;
3502 p = vim_strsave(val);
3503 if (p != NULL) /* we don't want a NULL */
3505 opt_idx = findoption((char_u *)name);
3506 if (opt_idx >= 0)
3508 if (options[opt_idx].flags & P_DEF_ALLOCED)
3509 vim_free(options[opt_idx].def_val[VI_DEFAULT]);
3510 options[opt_idx].def_val[VI_DEFAULT] = p;
3511 options[opt_idx].flags |= P_DEF_ALLOCED;
3517 * Set the Vi-default value of a number option.
3518 * Used for 'lines' and 'columns'.
3520 void
3521 set_number_default(name, val)
3522 char *name;
3523 long val;
3525 int opt_idx;
3527 opt_idx = findoption((char_u *)name);
3528 if (opt_idx >= 0)
3529 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
3532 #if defined(EXITFREE) || defined(PROTO)
3534 * Free all options.
3536 void
3537 free_all_options()
3539 int i;
3541 for (i = 0; !istermoption(&options[i]); i++)
3543 if (options[i].indir == PV_NONE)
3545 /* global option: free value and default value. */
3546 if (options[i].flags & P_ALLOCED && options[i].var != NULL)
3547 free_string_option(*(char_u **)options[i].var);
3548 if (options[i].flags & P_DEF_ALLOCED)
3549 free_string_option(options[i].def_val[VI_DEFAULT]);
3551 else if (options[i].var != VAR_WIN
3552 && (options[i].flags & P_STRING))
3553 /* buffer-local option: free global value */
3554 free_string_option(*(char_u **)options[i].var);
3557 #endif
3561 * Initialize the options, part two: After getting Rows and Columns and
3562 * setting 'term'.
3564 void
3565 set_init_2()
3567 int idx;
3570 * 'scroll' defaults to half the window height. Note that this default is
3571 * wrong when the window height changes.
3573 set_number_default("scroll", (long)((long_u)Rows >> 1));
3574 idx = findoption((char_u *)"scroll");
3575 if (idx >= 0 && !(options[idx].flags & P_WAS_SET))
3576 set_option_default(idx, OPT_LOCAL, p_cp);
3577 comp_col();
3580 * 'window' is only for backwards compatibility with Vi.
3581 * Default is Rows - 1.
3583 if (!option_was_set((char_u *)"window"))
3584 p_window = Rows - 1;
3585 set_number_default("window", Rows - 1);
3587 /* For DOS console the default is always black. */
3588 #if !((defined(MSDOS) || defined(OS2) || defined(WIN3264)) && !defined(FEAT_GUI))
3590 * If 'background' wasn't set by the user, try guessing the value,
3591 * depending on the terminal name. Only need to check for terminals
3592 * with a dark background, that can handle color.
3594 idx = findoption((char_u *)"bg");
3595 if (idx >= 0 && !(options[idx].flags & P_WAS_SET)
3596 && *term_bg_default() == 'd')
3598 set_string_option_direct(NULL, idx, (char_u *)"dark", OPT_FREE, 0);
3599 /* don't mark it as set, when starting the GUI it may be
3600 * changed again */
3601 options[idx].flags &= ~P_WAS_SET;
3603 #endif
3605 #ifdef CURSOR_SHAPE
3606 parse_shape_opt(SHAPE_CURSOR); /* set cursor shapes from 'guicursor' */
3607 #endif
3608 #ifdef FEAT_MOUSESHAPE
3609 parse_shape_opt(SHAPE_MOUSE); /* set mouse shapes from 'mouseshape' */
3610 #endif
3611 #ifdef FEAT_PRINTER
3612 (void)parse_printoptions(); /* parse 'printoptions' default value */
3613 #endif
3617 * Return "dark" or "light" depending on the kind of terminal.
3618 * This is just guessing! Recognized are:
3619 * "linux" Linux console
3620 * "screen.linux" Linux console with screen
3621 * "cygwin" Cygwin shell
3622 * "putty" Putty program
3623 * We also check the COLORFGBG environment variable, which is set by
3624 * rxvt and derivatives. This variable contains either two or three
3625 * values separated by semicolons; we want the last value in either
3626 * case. If this value is 0-6 or 8, our background is dark.
3628 static char_u *
3629 term_bg_default()
3631 #if defined(MSDOS) || defined(OS2) || defined(WIN3264)
3632 /* DOS console nearly always black */
3633 return (char_u *)"dark";
3634 #else
3635 char_u *p;
3637 if (STRCMP(T_NAME, "linux") == 0
3638 || STRCMP(T_NAME, "screen.linux") == 0
3639 || STRCMP(T_NAME, "cygwin") == 0
3640 || STRCMP(T_NAME, "putty") == 0
3641 || ((p = mch_getenv((char_u *)"COLORFGBG")) != NULL
3642 && (p = vim_strrchr(p, ';')) != NULL
3643 && ((p[1] >= '0' && p[1] <= '6') || p[1] == '8')
3644 && p[2] == NUL))
3645 return (char_u *)"dark";
3646 return (char_u *)"light";
3647 #endif
3651 * Initialize the options, part three: After reading the .vimrc
3653 void
3654 set_init_3()
3656 #if defined(UNIX) || defined(OS2) || defined(WIN3264)
3658 * Set 'shellpipe' and 'shellredir', depending on the 'shell' option.
3659 * This is done after other initializations, where 'shell' might have been
3660 * set, but only if they have not been set before.
3662 char_u *p;
3663 int idx_srr;
3664 int do_srr;
3665 #ifdef FEAT_QUICKFIX
3666 int idx_sp;
3667 int do_sp;
3668 #endif
3670 idx_srr = findoption((char_u *)"srr");
3671 if (idx_srr < 0)
3672 do_srr = FALSE;
3673 else
3674 do_srr = !(options[idx_srr].flags & P_WAS_SET);
3675 #ifdef FEAT_QUICKFIX
3676 idx_sp = findoption((char_u *)"sp");
3677 if (idx_sp < 0)
3678 do_sp = FALSE;
3679 else
3680 do_sp = !(options[idx_sp].flags & P_WAS_SET);
3681 #endif
3684 * Isolate the name of the shell:
3685 * - Skip beyond any path. E.g., "/usr/bin/csh -f" -> "csh -f".
3686 * - Remove any argument. E.g., "csh -f" -> "csh".
3688 p = gettail(p_sh);
3689 p = vim_strnsave(p, (int)(skiptowhite(p) - p));
3690 if (p != NULL)
3693 * Default for p_sp is "| tee", for p_srr is ">".
3694 * For known shells it is changed here to include stderr.
3696 if ( fnamecmp(p, "csh") == 0
3697 || fnamecmp(p, "tcsh") == 0
3698 # if defined(OS2) || defined(WIN3264) /* also check with .exe extension */
3699 || fnamecmp(p, "csh.exe") == 0
3700 || fnamecmp(p, "tcsh.exe") == 0
3701 # endif
3704 #if defined(FEAT_QUICKFIX)
3705 if (do_sp)
3707 # ifdef WIN3264
3708 p_sp = (char_u *)">&";
3709 # else
3710 p_sp = (char_u *)"|& tee";
3711 # endif
3712 options[idx_sp].def_val[VI_DEFAULT] = p_sp;
3714 #endif
3715 if (do_srr)
3717 p_srr = (char_u *)">&";
3718 options[idx_srr].def_val[VI_DEFAULT] = p_srr;
3721 else
3722 # ifndef OS2 /* Always use bourne shell style redirection if we reach this */
3723 if ( fnamecmp(p, "sh") == 0
3724 || fnamecmp(p, "ksh") == 0
3725 || fnamecmp(p, "zsh") == 0
3726 || fnamecmp(p, "zsh-beta") == 0
3727 || fnamecmp(p, "bash") == 0
3728 # ifdef WIN3264
3729 || fnamecmp(p, "cmd") == 0
3730 || fnamecmp(p, "sh.exe") == 0
3731 || fnamecmp(p, "ksh.exe") == 0
3732 || fnamecmp(p, "zsh.exe") == 0
3733 || fnamecmp(p, "zsh-beta.exe") == 0
3734 || fnamecmp(p, "bash.exe") == 0
3735 || fnamecmp(p, "cmd.exe") == 0
3736 # endif
3738 # endif
3740 #if defined(FEAT_QUICKFIX)
3741 if (do_sp)
3743 # ifdef WIN3264
3744 p_sp = (char_u *)">%s 2>&1";
3745 # else
3746 p_sp = (char_u *)"2>&1| tee";
3747 # endif
3748 options[idx_sp].def_val[VI_DEFAULT] = p_sp;
3750 #endif
3751 if (do_srr)
3753 p_srr = (char_u *)">%s 2>&1";
3754 options[idx_srr].def_val[VI_DEFAULT] = p_srr;
3757 vim_free(p);
3759 #endif
3761 #if defined(MSDOS) || defined(WIN3264) || defined(OS2)
3763 * Set 'shellcmdflag and 'shellquote' depending on the 'shell' option.
3764 * This is done after other initializations, where 'shell' might have been
3765 * set, but only if they have not been set before. Default for p_shcf is
3766 * "/c", for p_shq is "". For "sh" like shells it is changed here to
3767 * "-c" and "\"", but not for DJGPP, because it starts the shell without
3768 * command.com. And for Win32 we need to set p_sxq instead.
3770 if (strstr((char *)gettail(p_sh), "sh") != NULL)
3772 int idx3;
3774 idx3 = findoption((char_u *)"shcf");
3775 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
3777 p_shcf = (char_u *)"-c";
3778 options[idx3].def_val[VI_DEFAULT] = p_shcf;
3781 # ifndef DJGPP
3782 # ifdef WIN3264
3783 /* Somehow Win32 requires the quotes around the redirection too */
3784 idx3 = findoption((char_u *)"sxq");
3785 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
3787 p_sxq = (char_u *)"\"";
3788 options[idx3].def_val[VI_DEFAULT] = p_sxq;
3790 # else
3791 idx3 = findoption((char_u *)"shq");
3792 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
3794 p_shq = (char_u *)"\"";
3795 options[idx3].def_val[VI_DEFAULT] = p_shq;
3797 # endif
3798 # endif
3800 #endif
3802 #ifdef FEAT_TITLE
3803 set_title_defaults();
3804 #endif
3807 #if defined(FEAT_MULTI_LANG) || defined(PROTO)
3809 * When 'helplang' is still at its default value, set it to "lang".
3810 * Only the first two characters of "lang" are used.
3812 void
3813 set_helplang_default(lang)
3814 char_u *lang;
3816 int idx;
3818 if (lang == NULL || STRLEN(lang) < 2) /* safety check */
3819 return;
3820 idx = findoption((char_u *)"hlg");
3821 if (idx >= 0 && !(options[idx].flags & P_WAS_SET))
3823 if (options[idx].flags & P_ALLOCED)
3824 free_string_option(p_hlg);
3825 p_hlg = vim_strsave(lang);
3826 if (p_hlg == NULL)
3827 p_hlg = empty_option;
3828 else
3830 /* zh_CN becomes "cn", zh_TW becomes "tw". */
3831 if (STRNICMP(p_hlg, "zh_", 3) == 0 && STRLEN(p_hlg) >= 5)
3833 p_hlg[0] = TOLOWER_ASC(p_hlg[3]);
3834 p_hlg[1] = TOLOWER_ASC(p_hlg[4]);
3836 p_hlg[2] = NUL;
3838 options[idx].flags |= P_ALLOCED;
3841 #endif
3843 #ifdef FEAT_GUI
3844 static char_u *gui_bg_default __ARGS((void));
3846 static char_u *
3847 gui_bg_default()
3849 if (gui_get_lightness(gui.back_pixel) < 127)
3850 return (char_u *)"dark";
3851 return (char_u *)"light";
3855 * Option initializations that can only be done after opening the GUI window.
3857 void
3858 init_gui_options()
3860 /* Set the 'background' option according to the lightness of the
3861 * background color, unless the user has set it already. */
3862 if (!option_was_set((char_u *)"bg") && STRCMP(p_bg, gui_bg_default()) != 0)
3864 set_option_value((char_u *)"bg", 0L, gui_bg_default(), 0);
3865 highlight_changed();
3868 #endif
3870 #ifdef FEAT_TITLE
3872 * 'title' and 'icon' only default to true if they have not been set or reset
3873 * in .vimrc and we can read the old value.
3874 * When 'title' and 'icon' have been reset in .vimrc, we won't even check if
3875 * they can be reset. This reduces startup time when using X on a remote
3876 * machine.
3878 void
3879 set_title_defaults()
3881 int idx1;
3882 long val;
3885 * If GUI is (going to be) used, we can always set the window title and
3886 * icon name. Saves a bit of time, because the X11 display server does
3887 * not need to be contacted.
3889 idx1 = findoption((char_u *)"title");
3890 if (idx1 >= 0 && !(options[idx1].flags & P_WAS_SET))
3892 #ifdef FEAT_GUI
3893 if (gui.starting || gui.in_use)
3894 val = TRUE;
3895 else
3896 #endif
3897 val = mch_can_restore_title();
3898 options[idx1].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
3899 p_title = val;
3901 idx1 = findoption((char_u *)"icon");
3902 if (idx1 >= 0 && !(options[idx1].flags & P_WAS_SET))
3904 #ifdef FEAT_GUI
3905 if (gui.starting || gui.in_use)
3906 val = TRUE;
3907 else
3908 #endif
3909 val = mch_can_restore_icon();
3910 options[idx1].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
3911 p_icon = val;
3914 #endif
3917 * Parse 'arg' for option settings.
3919 * 'arg' may be IObuff, but only when no errors can be present and option
3920 * does not need to be expanded with option_expand().
3921 * "opt_flags":
3922 * 0 for ":set"
3923 * OPT_GLOBAL for ":setglobal"
3924 * OPT_LOCAL for ":setlocal" and a modeline
3925 * OPT_MODELINE for a modeline
3926 * OPT_WINONLY to only set window-local options
3927 * OPT_NOWIN to skip setting window-local options
3929 * returns FAIL if an error is detected, OK otherwise
3932 do_set(arg, opt_flags)
3933 char_u *arg; /* option string (may be written to!) */
3934 int opt_flags;
3936 int opt_idx;
3937 char_u *errmsg;
3938 char_u errbuf[80];
3939 char_u *startarg;
3940 int prefix; /* 1: nothing, 0: "no", 2: "inv" in front of name */
3941 int nextchar; /* next non-white char after option name */
3942 int afterchar; /* character just after option name */
3943 int len;
3944 int i;
3945 long value;
3946 int key;
3947 long_u flags; /* flags for current option */
3948 char_u *varp = NULL; /* pointer to variable for current option */
3949 int did_show = FALSE; /* already showed one value */
3950 int adding; /* "opt+=arg" */
3951 int prepending; /* "opt^=arg" */
3952 int removing; /* "opt-=arg" */
3953 int cp_val = 0;
3954 char_u key_name[2];
3956 if (*arg == NUL)
3958 showoptions(0, opt_flags);
3959 did_show = TRUE;
3960 goto theend;
3963 while (*arg != NUL) /* loop to process all options */
3965 errmsg = NULL;
3966 startarg = arg; /* remember for error message */
3968 if (STRNCMP(arg, "all", 3) == 0 && !isalpha(arg[3])
3969 && !(opt_flags & OPT_MODELINE))
3972 * ":set all" show all options.
3973 * ":set all&" set all options to their default value.
3975 arg += 3;
3976 if (*arg == '&')
3978 ++arg;
3979 /* Only for :set command set global value of local options. */
3980 set_options_default(OPT_FREE | opt_flags);
3982 else
3984 showoptions(1, opt_flags);
3985 did_show = TRUE;
3988 else if (STRNCMP(arg, "termcap", 7) == 0 && !(opt_flags & OPT_MODELINE))
3990 showoptions(2, opt_flags);
3991 show_termcodes();
3992 did_show = TRUE;
3993 arg += 7;
3995 else
3997 prefix = 1;
3998 if (STRNCMP(arg, "no", 2) == 0)
4000 prefix = 0;
4001 arg += 2;
4003 else if (STRNCMP(arg, "inv", 3) == 0)
4005 prefix = 2;
4006 arg += 3;
4009 /* find end of name */
4010 key = 0;
4011 if (*arg == '<')
4013 nextchar = 0;
4014 opt_idx = -1;
4015 /* look out for <t_>;> */
4016 if (arg[1] == 't' && arg[2] == '_' && arg[3] && arg[4])
4017 len = 5;
4018 else
4020 len = 1;
4021 while (arg[len] != NUL && arg[len] != '>')
4022 ++len;
4024 if (arg[len] != '>')
4026 errmsg = e_invarg;
4027 goto skip;
4029 arg[len] = NUL; /* put NUL after name */
4030 if (arg[1] == 't' && arg[2] == '_') /* could be term code */
4031 opt_idx = findoption(arg + 1);
4032 arg[len++] = '>'; /* restore '>' */
4033 if (opt_idx == -1)
4034 key = find_key_option(arg + 1);
4036 else
4038 len = 0;
4040 * The two characters after "t_" may not be alphanumeric.
4042 if (arg[0] == 't' && arg[1] == '_' && arg[2] && arg[3])
4043 len = 4;
4044 else
4045 while (ASCII_ISALNUM(arg[len]) || arg[len] == '_')
4046 ++len;
4047 nextchar = arg[len];
4048 arg[len] = NUL; /* put NUL after name */
4049 opt_idx = findoption(arg);
4050 arg[len] = nextchar; /* restore nextchar */
4051 if (opt_idx == -1)
4052 key = find_key_option(arg);
4055 /* remember character after option name */
4056 afterchar = arg[len];
4058 /* skip white space, allow ":set ai ?" */
4059 while (vim_iswhite(arg[len]))
4060 ++len;
4062 adding = FALSE;
4063 prepending = FALSE;
4064 removing = FALSE;
4065 if (arg[len] != NUL && arg[len + 1] == '=')
4067 if (arg[len] == '+')
4069 adding = TRUE; /* "+=" */
4070 ++len;
4072 else if (arg[len] == '^')
4074 prepending = TRUE; /* "^=" */
4075 ++len;
4077 else if (arg[len] == '-')
4079 removing = TRUE; /* "-=" */
4080 ++len;
4083 nextchar = arg[len];
4085 if (opt_idx == -1 && key == 0) /* found a mismatch: skip */
4087 errmsg = (char_u *)N_("E518: Unknown option");
4088 goto skip;
4091 if (opt_idx >= 0)
4093 if (options[opt_idx].var == NULL) /* hidden option: skip */
4095 /* Only give an error message when requesting the value of
4096 * a hidden option, ignore setting it. */
4097 if (vim_strchr((char_u *)"=:!&<", nextchar) == NULL
4098 && (!(options[opt_idx].flags & P_BOOL)
4099 || nextchar == '?'))
4100 errmsg = (char_u *)N_("E519: Option not supported");
4101 goto skip;
4104 flags = options[opt_idx].flags;
4105 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
4107 else
4109 flags = P_STRING;
4110 if (key < 0)
4112 key_name[0] = KEY2TERMCAP0(key);
4113 key_name[1] = KEY2TERMCAP1(key);
4115 else
4117 key_name[0] = KS_KEY;
4118 key_name[1] = (key & 0xff);
4122 /* Skip all options that are not window-local (used when showing
4123 * an already loaded buffer in a window). */
4124 if ((opt_flags & OPT_WINONLY)
4125 && (opt_idx < 0 || options[opt_idx].var != VAR_WIN))
4126 goto skip;
4128 /* Skip all options that are window-local (used for :vimgrep). */
4129 if ((opt_flags & OPT_NOWIN) && opt_idx >= 0
4130 && options[opt_idx].var == VAR_WIN)
4131 goto skip;
4133 /* Disallow changing some options from modelines */
4134 if ((opt_flags & OPT_MODELINE) && (flags & P_SECURE))
4136 errmsg = (char_u *)_("E520: Not allowed in a modeline");
4137 goto skip;
4140 #ifdef HAVE_SANDBOX
4141 /* Disallow changing some options in the sandbox */
4142 if (sandbox != 0 && (flags & P_SECURE))
4144 errmsg = (char_u *)_(e_sandbox);
4145 goto skip;
4147 #endif
4149 if (vim_strchr((char_u *)"?=:!&<", nextchar) != NULL)
4151 arg += len;
4152 cp_val = p_cp;
4153 if (nextchar == '&' && arg[1] == 'v' && arg[2] == 'i')
4155 if (arg[3] == 'm') /* "opt&vim": set to Vim default */
4157 cp_val = FALSE;
4158 arg += 3;
4160 else /* "opt&vi": set to Vi default */
4162 cp_val = TRUE;
4163 arg += 2;
4166 if (vim_strchr((char_u *)"?!&<", nextchar) != NULL
4167 && arg[1] != NUL && !vim_iswhite(arg[1]))
4169 errmsg = e_trailing;
4170 goto skip;
4175 * allow '=' and ':' as MSDOS command.com allows only one
4176 * '=' character per "set" command line. grrr. (jw)
4178 if (nextchar == '?'
4179 || (prefix == 1
4180 && vim_strchr((char_u *)"=:&<", nextchar) == NULL
4181 && !(flags & P_BOOL)))
4184 * print value
4186 if (did_show)
4187 msg_putchar('\n'); /* cursor below last one */
4188 else
4190 gotocmdline(TRUE); /* cursor at status line */
4191 did_show = TRUE; /* remember that we did a line */
4193 if (opt_idx >= 0)
4195 showoneopt(&options[opt_idx], opt_flags);
4196 #ifdef FEAT_EVAL
4197 if (p_verbose > 0)
4199 /* Mention where the option was last set. */
4200 if (varp == options[opt_idx].var)
4201 last_set_msg(options[opt_idx].scriptID);
4202 else if ((int)options[opt_idx].indir & PV_WIN)
4203 last_set_msg(curwin->w_p_scriptID[
4204 (int)options[opt_idx].indir & PV_MASK]);
4205 else if ((int)options[opt_idx].indir & PV_BUF)
4206 last_set_msg(curbuf->b_p_scriptID[
4207 (int)options[opt_idx].indir & PV_MASK]);
4209 #endif
4211 else
4213 char_u *p;
4215 p = find_termcode(key_name);
4216 if (p == NULL)
4218 errmsg = (char_u *)N_("E518: Unknown option");
4219 goto skip;
4221 else
4222 (void)show_one_termcode(key_name, p, TRUE);
4224 if (nextchar != '?'
4225 && nextchar != NUL && !vim_iswhite(afterchar))
4226 errmsg = e_trailing;
4228 else
4230 if (flags & P_BOOL) /* boolean */
4232 if (nextchar == '=' || nextchar == ':')
4234 errmsg = e_invarg;
4235 goto skip;
4239 * ":set opt!": invert
4240 * ":set opt&": reset to default value
4241 * ":set opt<": reset to global value
4243 if (nextchar == '!')
4244 value = *(int *)(varp) ^ 1;
4245 else if (nextchar == '&')
4246 value = (int)(long)(long_i)options[opt_idx].def_val[
4247 ((flags & P_VI_DEF) || cp_val)
4248 ? VI_DEFAULT : VIM_DEFAULT];
4249 else if (nextchar == '<')
4251 /* For 'autoread' -1 means to use global value. */
4252 if ((int *)varp == &curbuf->b_p_ar
4253 && opt_flags == OPT_LOCAL)
4254 value = -1;
4255 else
4256 value = *(int *)get_varp_scope(&(options[opt_idx]),
4257 OPT_GLOBAL);
4259 else
4262 * ":set invopt": invert
4263 * ":set opt" or ":set noopt": set or reset
4265 if (nextchar != NUL && !vim_iswhite(afterchar))
4267 errmsg = e_trailing;
4268 goto skip;
4270 if (prefix == 2) /* inv */
4271 value = *(int *)(varp) ^ 1;
4272 else
4273 value = prefix;
4276 errmsg = set_bool_option(opt_idx, varp, (int)value,
4277 opt_flags);
4279 else /* numeric or string */
4281 if (vim_strchr((char_u *)"=:&<", nextchar) == NULL
4282 || prefix != 1)
4284 errmsg = e_invarg;
4285 goto skip;
4288 if (flags & P_NUM) /* numeric */
4291 * Different ways to set a number option:
4292 * & set to default value
4293 * < set to global value
4294 * <xx> accept special key codes for 'wildchar'
4295 * c accept any non-digit for 'wildchar'
4296 * [-]0-9 set number
4297 * other error
4299 ++arg;
4300 if (nextchar == '&')
4301 value = (long)(long_i)options[opt_idx].def_val[
4302 ((flags & P_VI_DEF) || cp_val)
4303 ? VI_DEFAULT : VIM_DEFAULT];
4304 else if (nextchar == '<')
4305 value = *(long *)get_varp_scope(&(options[opt_idx]),
4306 OPT_GLOBAL);
4307 else if (((long *)varp == &p_wc
4308 || (long *)varp == &p_wcm)
4309 && (*arg == '<'
4310 || *arg == '^'
4311 || ((!arg[1] || vim_iswhite(arg[1]))
4312 && !VIM_ISDIGIT(*arg))))
4314 value = string_to_key(arg);
4315 if (value == 0 && (long *)varp != &p_wcm)
4317 errmsg = e_invarg;
4318 goto skip;
4321 /* allow negative numbers (for 'undolevels') */
4322 else if (*arg == '-' || VIM_ISDIGIT(*arg))
4324 i = 0;
4325 if (*arg == '-')
4326 i = 1;
4327 #ifdef HAVE_STRTOL
4328 value = strtol((char *)arg, NULL, 0);
4329 if (arg[i] == '0' && TOLOWER_ASC(arg[i + 1]) == 'x')
4330 i += 2;
4331 #else
4332 value = atol((char *)arg);
4333 #endif
4334 while (VIM_ISDIGIT(arg[i]))
4335 ++i;
4336 if (arg[i] != NUL && !vim_iswhite(arg[i]))
4338 errmsg = e_invarg;
4339 goto skip;
4342 else
4344 errmsg = (char_u *)N_("E521: Number required after =");
4345 goto skip;
4348 if (adding)
4349 value = *(long *)varp + value;
4350 if (prepending)
4351 value = *(long *)varp * value;
4352 if (removing)
4353 value = *(long *)varp - value;
4354 errmsg = set_num_option(opt_idx, varp, value,
4355 errbuf, sizeof(errbuf), opt_flags);
4357 else if (opt_idx >= 0) /* string */
4359 char_u *save_arg = NULL;
4360 char_u *s = NULL;
4361 char_u *oldval; /* previous value if *varp */
4362 char_u *newval;
4363 char_u *origval;
4364 unsigned newlen;
4365 int comma;
4366 int bs;
4367 int new_value_alloced; /* new string option
4368 was allocated */
4370 /* When using ":set opt=val" for a global option
4371 * with a local value the local value will be
4372 * reset, use the global value here. */
4373 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
4374 && ((int)options[opt_idx].indir & PV_BOTH))
4375 varp = options[opt_idx].var;
4377 /* The old value is kept until we are sure that the
4378 * new value is valid. */
4379 oldval = *(char_u **)varp;
4380 if (nextchar == '&') /* set to default val */
4382 newval = options[opt_idx].def_val[
4383 ((flags & P_VI_DEF) || cp_val)
4384 ? VI_DEFAULT : VIM_DEFAULT];
4385 if ((char_u **)varp == &p_bg)
4387 /* guess the value of 'background' */
4388 #ifdef FEAT_GUI
4389 if (gui.in_use)
4390 newval = gui_bg_default();
4391 else
4392 #endif
4393 newval = term_bg_default();
4396 /* expand environment variables and ~ (since the
4397 * default value was already expanded, only
4398 * required when an environment variable was set
4399 * later */
4400 if (newval == NULL)
4401 newval = empty_option;
4402 else
4404 s = option_expand(opt_idx, newval);
4405 if (s == NULL)
4406 s = newval;
4407 newval = vim_strsave(s);
4409 new_value_alloced = TRUE;
4411 else if (nextchar == '<') /* set to global val */
4413 newval = vim_strsave(*(char_u **)get_varp_scope(
4414 &(options[opt_idx]), OPT_GLOBAL));
4415 new_value_alloced = TRUE;
4417 else
4419 ++arg; /* jump to after the '=' or ':' */
4422 * Set 'keywordprg' to ":help" if an empty
4423 * value was passed to :set by the user.
4424 * Misuse errbuf[] for the resulting string.
4426 if (varp == (char_u *)&p_kp
4427 && (*arg == NUL || *arg == ' '))
4429 STRCPY(errbuf, ":help");
4430 save_arg = arg;
4431 arg = errbuf;
4434 * Convert 'whichwrap' number to string, for
4435 * backwards compatibility with Vim 3.0.
4436 * Misuse errbuf[] for the resulting string.
4438 else if (varp == (char_u *)&p_ww
4439 && VIM_ISDIGIT(*arg))
4441 *errbuf = NUL;
4442 i = getdigits(&arg);
4443 if (i & 1)
4444 STRCAT(errbuf, "b,");
4445 if (i & 2)
4446 STRCAT(errbuf, "s,");
4447 if (i & 4)
4448 STRCAT(errbuf, "h,l,");
4449 if (i & 8)
4450 STRCAT(errbuf, "<,>,");
4451 if (i & 16)
4452 STRCAT(errbuf, "[,],");
4453 if (*errbuf != NUL) /* remove trailing , */
4454 errbuf[STRLEN(errbuf) - 1] = NUL;
4455 save_arg = arg;
4456 arg = errbuf;
4459 * Remove '>' before 'dir' and 'bdir', for
4460 * backwards compatibility with version 3.0
4462 else if ( *arg == '>'
4463 && (varp == (char_u *)&p_dir
4464 || varp == (char_u *)&p_bdir))
4466 ++arg;
4469 /* When setting the local value of a global
4470 * option, the old value may be the global value. */
4471 if (((int)options[opt_idx].indir & PV_BOTH)
4472 && (opt_flags & OPT_LOCAL))
4473 origval = *(char_u **)get_varp(
4474 &options[opt_idx]);
4475 else
4476 origval = oldval;
4479 * Copy the new string into allocated memory.
4480 * Can't use set_string_option_direct(), because
4481 * we need to remove the backslashes.
4483 /* get a bit too much */
4484 newlen = (unsigned)STRLEN(arg) + 1;
4485 if (adding || prepending || removing)
4486 newlen += (unsigned)STRLEN(origval) + 1;
4487 newval = alloc(newlen);
4488 if (newval == NULL) /* out of mem, don't change */
4489 break;
4490 s = newval;
4493 * Copy the string, skip over escaped chars.
4494 * For MS-DOS and WIN32 backslashes before normal
4495 * file name characters are not removed, and keep
4496 * backslash at start, for "\\machine\path", but
4497 * do remove it for "\\\\machine\\path".
4498 * The reverse is found in ExpandOldSetting().
4500 while (*arg && !vim_iswhite(*arg))
4502 if (*arg == '\\' && arg[1] != NUL
4503 #ifdef BACKSLASH_IN_FILENAME
4504 && !((flags & P_EXPAND)
4505 && vim_isfilec(arg[1])
4506 && (arg[1] != '\\'
4507 || (s == newval
4508 && arg[2] != '\\')))
4509 #endif
4511 ++arg; /* remove backslash */
4512 #ifdef FEAT_MBYTE
4513 if (has_mbyte
4514 && (i = (*mb_ptr2len)(arg)) > 1)
4516 /* copy multibyte char */
4517 mch_memmove(s, arg, (size_t)i);
4518 arg += i;
4519 s += i;
4521 else
4522 #endif
4523 *s++ = *arg++;
4525 *s = NUL;
4528 * Expand environment variables and ~.
4529 * Don't do it when adding without inserting a
4530 * comma.
4532 if (!(adding || prepending || removing)
4533 || (flags & P_COMMA))
4535 s = option_expand(opt_idx, newval);
4536 if (s != NULL)
4538 vim_free(newval);
4539 newlen = (unsigned)STRLEN(s) + 1;
4540 if (adding || prepending || removing)
4541 newlen += (unsigned)STRLEN(origval) + 1;
4542 newval = alloc(newlen);
4543 if (newval == NULL)
4544 break;
4545 STRCPY(newval, s);
4549 /* locate newval[] in origval[] when removing it
4550 * and when adding to avoid duplicates */
4551 i = 0; /* init for GCC */
4552 if (removing || (flags & P_NODUP))
4554 i = (int)STRLEN(newval);
4555 bs = 0;
4556 for (s = origval; *s; ++s)
4558 if ((!(flags & P_COMMA)
4559 || s == origval
4560 || (s[-1] == ',' && !(bs & 1)))
4561 && STRNCMP(s, newval, i) == 0
4562 && (!(flags & P_COMMA)
4563 || s[i] == ','
4564 || s[i] == NUL))
4565 break;
4566 /* Count backspaces. Only a comma with an
4567 * even number of backspaces before it is
4568 * recognized as a separator */
4569 if (s > origval && s[-1] == '\\')
4570 ++bs;
4571 else
4572 bs = 0;
4575 /* do not add if already there */
4576 if ((adding || prepending) && *s)
4578 prepending = FALSE;
4579 adding = FALSE;
4580 STRCPY(newval, origval);
4584 /* concatenate the two strings; add a ',' if
4585 * needed */
4586 if (adding || prepending)
4588 comma = ((flags & P_COMMA) && *origval != NUL
4589 && *newval != NUL);
4590 if (adding)
4592 i = (int)STRLEN(origval);
4593 mch_memmove(newval + i + comma, newval,
4594 STRLEN(newval) + 1);
4595 mch_memmove(newval, origval, (size_t)i);
4597 else
4599 i = (int)STRLEN(newval);
4600 mch_memmove(newval + i + comma, origval,
4601 STRLEN(origval) + 1);
4603 if (comma)
4604 newval[i] = ',';
4607 /* Remove newval[] from origval[]. (Note: "i" has
4608 * been set above and is used here). */
4609 if (removing)
4611 STRCPY(newval, origval);
4612 if (*s)
4614 /* may need to remove a comma */
4615 if (flags & P_COMMA)
4617 if (s == origval)
4619 /* include comma after string */
4620 if (s[i] == ',')
4621 ++i;
4623 else
4625 /* include comma before string */
4626 --s;
4627 ++i;
4630 mch_memmove(newval + (s - origval), s + i,
4631 STRLEN(s + i) + 1);
4635 if (flags & P_FLAGLIST)
4637 /* Remove flags that appear twice. */
4638 for (s = newval; *s; ++s)
4639 if ((!(flags & P_COMMA) || *s != ',')
4640 && vim_strchr(s + 1, *s) != NULL)
4642 mch_memmove(s, s + 1, STRLEN(s));
4643 --s;
4647 if (save_arg != NULL) /* number for 'whichwrap' */
4648 arg = save_arg;
4649 new_value_alloced = TRUE;
4652 /* Set the new value. */
4653 *(char_u **)(varp) = newval;
4655 /* Handle side effects, and set the global value for
4656 * ":set" on local options. */
4657 errmsg = did_set_string_option(opt_idx, (char_u **)varp,
4658 new_value_alloced, oldval, errbuf, opt_flags);
4660 /* If error detected, print the error message. */
4661 if (errmsg != NULL)
4662 goto skip;
4664 else /* key code option */
4666 char_u *p;
4668 if (nextchar == '&')
4670 if (add_termcap_entry(key_name, TRUE) == FAIL)
4671 errmsg = (char_u *)N_("E522: Not found in termcap");
4673 else
4675 ++arg; /* jump to after the '=' or ':' */
4676 for (p = arg; *p && !vim_iswhite(*p); ++p)
4677 if (*p == '\\' && p[1] != NUL)
4678 ++p;
4679 nextchar = *p;
4680 *p = NUL;
4681 add_termcode(key_name, arg, FALSE);
4682 *p = nextchar;
4684 if (full_screen)
4685 ttest(FALSE);
4686 redraw_all_later(CLEAR);
4690 if (opt_idx >= 0)
4691 did_set_option(opt_idx, opt_flags,
4692 !prepending && !adding && !removing);
4695 skip:
4697 * Advance to next argument.
4698 * - skip until a blank found, taking care of backslashes
4699 * - skip blanks
4700 * - skip one "=val" argument (for hidden options ":set gfn =xx")
4702 for (i = 0; i < 2 ; ++i)
4704 while (*arg != NUL && !vim_iswhite(*arg))
4705 if (*arg++ == '\\' && *arg != NUL)
4706 ++arg;
4707 arg = skipwhite(arg);
4708 if (*arg != '=')
4709 break;
4713 if (errmsg != NULL)
4715 vim_strncpy(IObuff, (char_u *)_(errmsg), IOSIZE - 1);
4716 i = (int)STRLEN(IObuff) + 2;
4717 if (i + (arg - startarg) < IOSIZE)
4719 /* append the argument with the error */
4720 STRCAT(IObuff, ": ");
4721 mch_memmove(IObuff + i, startarg, (arg - startarg));
4722 IObuff[i + (arg - startarg)] = NUL;
4724 /* make sure all characters are printable */
4725 trans_characters(IObuff, IOSIZE);
4727 ++no_wait_return; /* wait_return done later */
4728 emsg(IObuff); /* show error highlighted */
4729 --no_wait_return;
4731 return FAIL;
4734 arg = skipwhite(arg);
4737 theend:
4738 if (silent_mode && did_show)
4740 /* After displaying option values in silent mode. */
4741 silent_mode = FALSE;
4742 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
4743 msg_putchar('\n');
4744 cursor_on(); /* msg_start() switches it off */
4745 out_flush();
4746 silent_mode = TRUE;
4747 info_message = FALSE; /* use mch_msg(), not mch_errmsg() */
4750 return OK;
4754 * Call this when an option has been given a new value through a user command.
4755 * Sets the P_WAS_SET flag and takes care of the P_INSECURE flag.
4757 static void
4758 did_set_option(opt_idx, opt_flags, new_value)
4759 int opt_idx;
4760 int opt_flags; /* possibly with OPT_MODELINE */
4761 int new_value; /* value was replaced completely */
4763 long_u *p;
4765 options[opt_idx].flags |= P_WAS_SET;
4767 /* When an option is set in the sandbox, from a modeline or in secure mode
4768 * set the P_INSECURE flag. Otherwise, if a new value is stored reset the
4769 * flag. */
4770 p = insecure_flag(opt_idx, opt_flags);
4771 if (secure
4772 #ifdef HAVE_SANDBOX
4773 || sandbox != 0
4774 #endif
4775 || (opt_flags & OPT_MODELINE))
4776 *p = *p | P_INSECURE;
4777 else if (new_value)
4778 *p = *p & ~P_INSECURE;
4781 static char_u *
4782 illegal_char(errbuf, c)
4783 char_u *errbuf;
4784 int c;
4786 if (errbuf == NULL)
4787 return (char_u *)"";
4788 sprintf((char *)errbuf, _("E539: Illegal character <%s>"),
4789 (char *)transchar(c));
4790 return errbuf;
4794 * Convert a key name or string into a key value.
4795 * Used for 'wildchar' and 'cedit' options.
4797 static int
4798 string_to_key(arg)
4799 char_u *arg;
4801 if (*arg == '<')
4802 return find_key_option(arg + 1);
4803 if (*arg == '^')
4804 return Ctrl_chr(arg[1]);
4805 return *arg;
4808 #ifdef FEAT_CMDWIN
4810 * Check value of 'cedit' and set cedit_key.
4811 * Returns NULL if value is OK, error message otherwise.
4813 static char_u *
4814 check_cedit()
4816 int n;
4818 if (*p_cedit == NUL)
4819 cedit_key = -1;
4820 else
4822 n = string_to_key(p_cedit);
4823 if (vim_isprintc(n))
4824 return e_invarg;
4825 cedit_key = n;
4827 return NULL;
4829 #endif
4831 #ifdef FEAT_TITLE
4833 * When changing 'title', 'titlestring', 'icon' or 'iconstring', call
4834 * maketitle() to create and display it.
4835 * When switching the title or icon off, call mch_restore_title() to get
4836 * the old value back.
4838 static void
4839 did_set_title(icon)
4840 int icon; /* Did set icon instead of title */
4842 if (starting != NO_SCREEN
4843 #ifdef FEAT_GUI
4844 && !gui.starting
4845 #endif
4848 maketitle();
4849 if (icon)
4851 if (!p_icon)
4852 mch_restore_title(2);
4854 else
4856 if (!p_title)
4857 mch_restore_title(1);
4861 #endif
4864 * set_options_bin - called when 'bin' changes value.
4866 void
4867 set_options_bin(oldval, newval, opt_flags)
4868 int oldval;
4869 int newval;
4870 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
4873 * The option values that are changed when 'bin' changes are
4874 * copied when 'bin is set and restored when 'bin' is reset.
4876 if (newval)
4878 if (!oldval) /* switched on */
4880 if (!(opt_flags & OPT_GLOBAL))
4882 curbuf->b_p_tw_nobin = curbuf->b_p_tw;
4883 curbuf->b_p_wm_nobin = curbuf->b_p_wm;
4884 curbuf->b_p_ml_nobin = curbuf->b_p_ml;
4885 curbuf->b_p_et_nobin = curbuf->b_p_et;
4887 if (!(opt_flags & OPT_LOCAL))
4889 p_tw_nobin = p_tw;
4890 p_wm_nobin = p_wm;
4891 p_ml_nobin = p_ml;
4892 p_et_nobin = p_et;
4896 if (!(opt_flags & OPT_GLOBAL))
4898 curbuf->b_p_tw = 0; /* no automatic line wrap */
4899 curbuf->b_p_wm = 0; /* no automatic line wrap */
4900 curbuf->b_p_ml = 0; /* no modelines */
4901 curbuf->b_p_et = 0; /* no expandtab */
4903 if (!(opt_flags & OPT_LOCAL))
4905 p_tw = 0;
4906 p_wm = 0;
4907 p_ml = FALSE;
4908 p_et = FALSE;
4909 p_bin = TRUE; /* needed when called for the "-b" argument */
4912 else if (oldval) /* switched off */
4914 if (!(opt_flags & OPT_GLOBAL))
4916 curbuf->b_p_tw = curbuf->b_p_tw_nobin;
4917 curbuf->b_p_wm = curbuf->b_p_wm_nobin;
4918 curbuf->b_p_ml = curbuf->b_p_ml_nobin;
4919 curbuf->b_p_et = curbuf->b_p_et_nobin;
4921 if (!(opt_flags & OPT_LOCAL))
4923 p_tw = p_tw_nobin;
4924 p_wm = p_wm_nobin;
4925 p_ml = p_ml_nobin;
4926 p_et = p_et_nobin;
4931 #ifdef FEAT_VIMINFO
4933 * Find the parameter represented by the given character (eg ', :, ", or /),
4934 * and return its associated value in the 'viminfo' string.
4935 * Only works for number parameters, not for 'r' or 'n'.
4936 * If the parameter is not specified in the string or there is no following
4937 * number, return -1.
4940 get_viminfo_parameter(type)
4941 int type;
4943 char_u *p;
4945 p = find_viminfo_parameter(type);
4946 if (p != NULL && VIM_ISDIGIT(*p))
4947 return atoi((char *)p);
4948 return -1;
4952 * Find the parameter represented by the given character (eg ''', ':', '"', or
4953 * '/') in the 'viminfo' option and return a pointer to the string after it.
4954 * Return NULL if the parameter is not specified in the string.
4956 char_u *
4957 find_viminfo_parameter(type)
4958 int type;
4960 char_u *p;
4962 for (p = p_viminfo; *p; ++p)
4964 if (*p == type)
4965 return p + 1;
4966 if (*p == 'n') /* 'n' is always the last one */
4967 break;
4968 p = vim_strchr(p, ','); /* skip until next ',' */
4969 if (p == NULL) /* hit the end without finding parameter */
4970 break;
4972 return NULL;
4974 #endif
4977 * Expand environment variables for some string options.
4978 * These string options cannot be indirect!
4979 * If "val" is NULL expand the current value of the option.
4980 * Return pointer to NameBuff, or NULL when not expanded.
4982 static char_u *
4983 option_expand(opt_idx, val)
4984 int opt_idx;
4985 char_u *val;
4987 /* if option doesn't need expansion nothing to do */
4988 if (!(options[opt_idx].flags & P_EXPAND) || options[opt_idx].var == NULL)
4989 return NULL;
4991 /* If val is longer than MAXPATHL no meaningful expansion can be done,
4992 * expand_env() would truncate the string. */
4993 if (val != NULL && STRLEN(val) > MAXPATHL)
4994 return NULL;
4996 if (val == NULL)
4997 val = *(char_u **)options[opt_idx].var;
5000 * Expanding this with NameBuff, expand_env() must not be passed IObuff.
5001 * Escape spaces when expanding 'tags', they are used to separate file
5002 * names.
5003 * For 'spellsuggest' expand after "file:".
5005 expand_env_esc(val, NameBuff, MAXPATHL,
5006 (char_u **)options[opt_idx].var == &p_tags, FALSE,
5007 #ifdef FEAT_SPELL
5008 (char_u **)options[opt_idx].var == &p_sps ? (char_u *)"file:" :
5009 #endif
5010 NULL);
5011 if (STRCMP(NameBuff, val) == 0) /* they are the same */
5012 return NULL;
5014 return NameBuff;
5018 * After setting various option values: recompute variables that depend on
5019 * option values.
5021 static void
5022 didset_options()
5024 /* initialize the table for 'iskeyword' et.al. */
5025 (void)init_chartab();
5027 #ifdef FEAT_MBYTE
5028 (void)opt_strings_flags(p_cmp, p_cmp_values, &cmp_flags, TRUE);
5029 #endif
5030 (void)opt_strings_flags(p_bkc, p_bkc_values, &bkc_flags, TRUE);
5031 #ifdef FEAT_SESSION
5032 (void)opt_strings_flags(p_ssop, p_ssop_values, &ssop_flags, TRUE);
5033 (void)opt_strings_flags(p_vop, p_ssop_values, &vop_flags, TRUE);
5034 #endif
5035 #ifdef FEAT_FOLDING
5036 (void)opt_strings_flags(p_fdo, p_fdo_values, &fdo_flags, TRUE);
5037 #endif
5038 (void)opt_strings_flags(p_dy, p_dy_values, &dy_flags, TRUE);
5039 #ifdef FEAT_VIRTUALEDIT
5040 (void)opt_strings_flags(p_ve, p_ve_values, &ve_flags, TRUE);
5041 #endif
5042 #if defined(FEAT_MOUSE) && (defined(UNIX) || defined(VMS))
5043 (void)opt_strings_flags(p_ttym, p_ttym_values, &ttym_flags, FALSE);
5044 #endif
5045 #ifdef FEAT_SPELL
5046 (void)spell_check_msm();
5047 (void)spell_check_sps();
5048 (void)compile_cap_prog(curbuf);
5049 #endif
5050 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
5051 (void)opt_strings_flags(p_toolbar, p_toolbar_values, &toolbar_flags, TRUE);
5052 #endif
5053 #if defined(FEAT_TOOLBAR) && defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)
5054 (void)opt_strings_flags(p_tbis, p_tbis_values, &tbis_flags, FALSE);
5055 #endif
5056 #ifdef FEAT_CMDWIN
5057 /* set cedit_key */
5058 (void)check_cedit();
5059 #endif
5063 * Check for string options that are NULL (normally only termcap options).
5065 void
5066 check_options()
5068 int opt_idx;
5070 for (opt_idx = 0; options[opt_idx].fullname != NULL; opt_idx++)
5071 if ((options[opt_idx].flags & P_STRING) && options[opt_idx].var != NULL)
5072 check_string_option((char_u **)get_varp(&(options[opt_idx])));
5076 * Check string options in a buffer for NULL value.
5078 void
5079 check_buf_options(buf)
5080 buf_T *buf;
5082 #if defined(FEAT_QUICKFIX)
5083 check_string_option(&buf->b_p_bh);
5084 check_string_option(&buf->b_p_bt);
5085 #endif
5086 #ifdef FEAT_MBYTE
5087 check_string_option(&buf->b_p_fenc);
5088 #endif
5089 check_string_option(&buf->b_p_ff);
5090 #ifdef FEAT_FIND_ID
5091 check_string_option(&buf->b_p_def);
5092 check_string_option(&buf->b_p_inc);
5093 # ifdef FEAT_EVAL
5094 check_string_option(&buf->b_p_inex);
5095 # endif
5096 #endif
5097 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
5098 check_string_option(&buf->b_p_inde);
5099 check_string_option(&buf->b_p_indk);
5100 #endif
5101 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
5102 check_string_option(&buf->b_p_bexpr);
5103 #endif
5104 #if defined(FEAT_EVAL)
5105 check_string_option(&buf->b_p_fex);
5106 #endif
5107 #ifdef FEAT_CRYPT
5108 check_string_option(&buf->b_p_key);
5109 #endif
5110 check_string_option(&buf->b_p_kp);
5111 check_string_option(&buf->b_p_mps);
5112 check_string_option(&buf->b_p_fo);
5113 check_string_option(&buf->b_p_flp);
5114 check_string_option(&buf->b_p_isk);
5115 #ifdef FEAT_COMMENTS
5116 check_string_option(&buf->b_p_com);
5117 #endif
5118 #ifdef FEAT_FOLDING
5119 check_string_option(&buf->b_p_cms);
5120 #endif
5121 check_string_option(&buf->b_p_nf);
5122 #ifdef FEAT_TEXTOBJ
5123 check_string_option(&buf->b_p_qe);
5124 #endif
5125 #ifdef FEAT_SYN_HL
5126 check_string_option(&buf->b_p_syn);
5127 #endif
5128 #ifdef FEAT_SPELL
5129 check_string_option(&buf->b_p_spc);
5130 check_string_option(&buf->b_p_spf);
5131 check_string_option(&buf->b_p_spl);
5132 #endif
5133 #ifdef FEAT_SEARCHPATH
5134 check_string_option(&buf->b_p_sua);
5135 #endif
5136 #ifdef FEAT_CINDENT
5137 check_string_option(&buf->b_p_cink);
5138 check_string_option(&buf->b_p_cino);
5139 #endif
5140 #ifdef FEAT_AUTOCMD
5141 check_string_option(&buf->b_p_ft);
5142 #endif
5143 #ifdef FEAT_OSFILETYPE
5144 check_string_option(&buf->b_p_oft);
5145 #endif
5146 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
5147 check_string_option(&buf->b_p_cinw);
5148 #endif
5149 #ifdef FEAT_INS_EXPAND
5150 check_string_option(&buf->b_p_cpt);
5151 #endif
5152 #ifdef FEAT_COMPL_FUNC
5153 check_string_option(&buf->b_p_cfu);
5154 check_string_option(&buf->b_p_ofu);
5155 #endif
5156 #ifdef FEAT_KEYMAP
5157 check_string_option(&buf->b_p_keymap);
5158 #endif
5159 #ifdef FEAT_QUICKFIX
5160 check_string_option(&buf->b_p_gp);
5161 check_string_option(&buf->b_p_mp);
5162 check_string_option(&buf->b_p_efm);
5163 #endif
5164 check_string_option(&buf->b_p_ep);
5165 check_string_option(&buf->b_p_path);
5166 check_string_option(&buf->b_p_tags);
5167 #ifdef FEAT_INS_EXPAND
5168 check_string_option(&buf->b_p_dict);
5169 check_string_option(&buf->b_p_tsr);
5170 #endif
5174 * Free the string allocated for an option.
5175 * Checks for the string being empty_option. This may happen if we're out of
5176 * memory, vim_strsave() returned NULL, which was replaced by empty_option by
5177 * check_options().
5178 * Does NOT check for P_ALLOCED flag!
5180 void
5181 free_string_option(p)
5182 char_u *p;
5184 if (p != empty_option)
5185 vim_free(p);
5188 void
5189 clear_string_option(pp)
5190 char_u **pp;
5192 if (*pp != empty_option)
5193 vim_free(*pp);
5194 *pp = empty_option;
5197 static void
5198 check_string_option(pp)
5199 char_u **pp;
5201 if (*pp == NULL)
5202 *pp = empty_option;
5206 * Mark a terminal option as allocated, found by a pointer into term_strings[].
5208 void
5209 set_term_option_alloced(p)
5210 char_u **p;
5212 int opt_idx;
5214 for (opt_idx = 1; options[opt_idx].fullname != NULL; opt_idx++)
5215 if (options[opt_idx].var == (char_u *)p)
5217 options[opt_idx].flags |= P_ALLOCED;
5218 return;
5220 return; /* cannot happen: didn't find it! */
5223 #if defined(FEAT_EVAL) || defined(PROTO)
5225 * Return TRUE when option "opt" was set from a modeline or in secure mode.
5226 * Return FALSE when it wasn't.
5227 * Return -1 for an unknown option.
5230 was_set_insecurely(opt, opt_flags)
5231 char_u *opt;
5232 int opt_flags;
5234 int idx = findoption(opt);
5235 long_u *flagp;
5237 if (idx >= 0)
5239 flagp = insecure_flag(idx, opt_flags);
5240 return (*flagp & P_INSECURE) != 0;
5242 EMSG2(_(e_intern2), "was_set_insecurely()");
5243 return -1;
5247 * Get a pointer to the flags used for the P_INSECURE flag of option
5248 * "opt_idx". For some local options a local flags field is used.
5250 static long_u *
5251 insecure_flag(opt_idx, opt_flags)
5252 int opt_idx;
5253 int opt_flags;
5255 if (opt_flags & OPT_LOCAL)
5256 switch ((int)options[opt_idx].indir)
5258 #ifdef FEAT_STL_OPT
5259 case PV_STL: return &curwin->w_p_stl_flags;
5260 #endif
5261 #ifdef FEAT_EVAL
5262 # ifdef FEAT_FOLDING
5263 case PV_FDE: return &curwin->w_p_fde_flags;
5264 case PV_FDT: return &curwin->w_p_fdt_flags;
5265 # endif
5266 # ifdef FEAT_BEVAL
5267 case PV_BEXPR: return &curbuf->b_p_bexpr_flags;
5268 # endif
5269 # if defined(FEAT_CINDENT)
5270 case PV_INDE: return &curbuf->b_p_inde_flags;
5271 # endif
5272 case PV_FEX: return &curbuf->b_p_fex_flags;
5273 # ifdef FEAT_FIND_ID
5274 case PV_INEX: return &curbuf->b_p_inex_flags;
5275 # endif
5276 #endif
5279 /* Nothing special, return global flags field. */
5280 return &options[opt_idx].flags;
5282 #endif
5285 * Set a string option to a new value (without checking the effect).
5286 * The string is copied into allocated memory.
5287 * if ("opt_idx" == -1) "name" is used, otherwise "opt_idx" is used.
5288 * When "set_sid" is zero set the scriptID to current_SID. When "set_sid" is
5289 * SID_NONE don't set the scriptID. Otherwise set the scriptID to "set_sid".
5291 /*ARGSUSED*/
5292 void
5293 set_string_option_direct(name, opt_idx, val, opt_flags, set_sid)
5294 char_u *name;
5295 int opt_idx;
5296 char_u *val;
5297 int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */
5298 int set_sid;
5300 char_u *s;
5301 char_u **varp;
5302 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
5303 int idx = opt_idx;
5305 if (idx == -1) /* use name */
5307 idx = findoption(name);
5308 if (idx < 0) /* not found (should not happen) */
5310 EMSG2(_(e_intern2), "set_string_option_direct()");
5311 return;
5315 if (options[idx].var == NULL) /* can't set hidden option */
5316 return;
5318 s = vim_strsave(val);
5319 if (s != NULL)
5321 varp = (char_u **)get_varp_scope(&(options[idx]),
5322 both ? OPT_LOCAL : opt_flags);
5323 if ((opt_flags & OPT_FREE) && (options[idx].flags & P_ALLOCED))
5324 free_string_option(*varp);
5325 *varp = s;
5327 /* For buffer/window local option may also set the global value. */
5328 if (both)
5329 set_string_option_global(idx, varp);
5331 options[idx].flags |= P_ALLOCED;
5333 /* When setting both values of a global option with a local value,
5334 * make the local value empty, so that the global value is used. */
5335 if (((int)options[idx].indir & PV_BOTH) && both)
5337 free_string_option(*varp);
5338 *varp = empty_option;
5340 # ifdef FEAT_EVAL
5341 if (set_sid != SID_NONE)
5342 set_option_scriptID_idx(idx, opt_flags,
5343 set_sid == 0 ? current_SID : set_sid);
5344 # endif
5349 * Set global value for string option when it's a local option.
5351 static void
5352 set_string_option_global(opt_idx, varp)
5353 int opt_idx; /* option index */
5354 char_u **varp; /* pointer to option variable */
5356 char_u **p, *s;
5358 /* the global value is always allocated */
5359 if (options[opt_idx].var == VAR_WIN)
5360 p = (char_u **)GLOBAL_WO(varp);
5361 else
5362 p = (char_u **)options[opt_idx].var;
5363 if (options[opt_idx].indir != PV_NONE
5364 && p != varp
5365 && (s = vim_strsave(*varp)) != NULL)
5367 free_string_option(*p);
5368 *p = s;
5373 * Set a string option to a new value, and handle the effects.
5375 static void
5376 set_string_option(opt_idx, value, opt_flags)
5377 int opt_idx;
5378 char_u *value;
5379 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
5381 char_u *s;
5382 char_u **varp;
5383 char_u *oldval;
5385 if (options[opt_idx].var == NULL) /* don't set hidden option */
5386 return;
5388 s = vim_strsave(value);
5389 if (s != NULL)
5391 varp = (char_u **)get_varp_scope(&(options[opt_idx]),
5392 (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
5393 ? (((int)options[opt_idx].indir & PV_BOTH)
5394 ? OPT_GLOBAL : OPT_LOCAL)
5395 : opt_flags);
5396 oldval = *varp;
5397 *varp = s;
5398 if (did_set_string_option(opt_idx, varp, TRUE, oldval, NULL,
5399 opt_flags) == NULL)
5400 did_set_option(opt_idx, opt_flags, TRUE);
5405 * Handle string options that need some action to perform when changed.
5406 * Returns NULL for success, or an error message for an error.
5408 static char_u *
5409 did_set_string_option(opt_idx, varp, new_value_alloced, oldval, errbuf,
5410 opt_flags)
5411 int opt_idx; /* index in options[] table */
5412 char_u **varp; /* pointer to the option variable */
5413 int new_value_alloced; /* new value was allocated */
5414 char_u *oldval; /* previous value of the option */
5415 char_u *errbuf; /* buffer for errors, or NULL */
5416 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
5418 char_u *errmsg = NULL;
5419 char_u *s, *p;
5420 int did_chartab = FALSE;
5421 char_u **gvarp;
5422 long_u free_oldval = (options[opt_idx].flags & P_ALLOCED);
5424 /* Get the global option to compare with, otherwise we would have to check
5425 * two values for all local options. */
5426 gvarp = (char_u **)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL);
5428 /* Disallow changing some options from secure mode */
5429 if ((secure
5430 #ifdef HAVE_SANDBOX
5431 || sandbox != 0
5432 #endif
5433 ) && (options[opt_idx].flags & P_SECURE))
5435 errmsg = e_secure;
5438 /* Check for a "normal" file name in some options. Disallow a path
5439 * separator (slash and/or backslash), wildcards and characters that are
5440 * often illegal in a file name. */
5441 else if ((options[opt_idx].flags & P_NFNAME)
5442 && vim_strpbrk(*varp, (char_u *)"/\\*?[|<>") != NULL)
5444 errmsg = e_invarg;
5447 /* 'term' */
5448 else if (varp == &T_NAME)
5450 if (T_NAME[0] == NUL)
5451 errmsg = (char_u *)N_("E529: Cannot set 'term' to empty string");
5452 #ifdef FEAT_GUI
5453 if (gui.in_use)
5454 errmsg = (char_u *)N_("E530: Cannot change term in GUI");
5455 else if (term_is_gui(T_NAME))
5456 errmsg = (char_u *)N_("E531: Use \":gui\" to start the GUI");
5457 #endif
5458 else if (set_termname(T_NAME) == FAIL)
5459 errmsg = (char_u *)N_("E522: Not found in termcap");
5460 else
5461 /* Screen colors may have changed. */
5462 redraw_later_clear();
5465 /* 'backupcopy' */
5466 else if (varp == &p_bkc)
5468 if (opt_strings_flags(p_bkc, p_bkc_values, &bkc_flags, TRUE) != OK)
5469 errmsg = e_invarg;
5470 if (((bkc_flags & BKC_AUTO) != 0)
5471 + ((bkc_flags & BKC_YES) != 0)
5472 + ((bkc_flags & BKC_NO) != 0) != 1)
5474 /* Must have exactly one of "auto", "yes" and "no". */
5475 (void)opt_strings_flags(oldval, p_bkc_values, &bkc_flags, TRUE);
5476 errmsg = e_invarg;
5480 /* 'backupext' and 'patchmode' */
5481 else if (varp == &p_bex || varp == &p_pm)
5483 if (STRCMP(*p_bex == '.' ? p_bex + 1 : p_bex,
5484 *p_pm == '.' ? p_pm + 1 : p_pm) == 0)
5485 errmsg = (char_u *)N_("E589: 'backupext' and 'patchmode' are equal");
5489 * 'isident', 'iskeyword', 'isprint or 'isfname' option: refill chartab[]
5490 * If the new option is invalid, use old value. 'lisp' option: refill
5491 * chartab[] for '-' char
5493 else if ( varp == &p_isi
5494 || varp == &(curbuf->b_p_isk)
5495 || varp == &p_isp
5496 || varp == &p_isf)
5498 if (init_chartab() == FAIL)
5500 did_chartab = TRUE; /* need to restore it below */
5501 errmsg = e_invarg; /* error in value */
5505 /* 'helpfile' */
5506 else if (varp == &p_hf)
5508 /* May compute new values for $VIM and $VIMRUNTIME */
5509 if (didset_vim)
5511 vim_setenv((char_u *)"VIM", (char_u *)"");
5512 didset_vim = FALSE;
5514 if (didset_vimruntime)
5516 vim_setenv((char_u *)"VIMRUNTIME", (char_u *)"");
5517 didset_vimruntime = FALSE;
5521 #ifdef FEAT_MULTI_LANG
5522 /* 'helplang' */
5523 else if (varp == &p_hlg)
5525 /* Check for "", "ab", "ab,cd", etc. */
5526 for (s = p_hlg; *s != NUL; s += 3)
5528 if (s[1] == NUL || ((s[2] != ',' || s[3] == NUL) && s[2] != NUL))
5530 errmsg = e_invarg;
5531 break;
5533 if (s[2] == NUL)
5534 break;
5537 #endif
5539 /* 'highlight' */
5540 else if (varp == &p_hl)
5542 if (highlight_changed() == FAIL)
5543 errmsg = e_invarg; /* invalid flags */
5546 /* 'nrformats' */
5547 else if (gvarp == &p_nf)
5549 if (check_opt_strings(*varp, p_nf_values, TRUE) != OK)
5550 errmsg = e_invarg;
5553 #ifdef FEAT_SESSION
5554 /* 'sessionoptions' */
5555 else if (varp == &p_ssop)
5557 if (opt_strings_flags(p_ssop, p_ssop_values, &ssop_flags, TRUE) != OK)
5558 errmsg = e_invarg;
5559 if ((ssop_flags & SSOP_CURDIR) && (ssop_flags & SSOP_SESDIR))
5561 /* Don't allow both "sesdir" and "curdir". */
5562 (void)opt_strings_flags(oldval, p_ssop_values, &ssop_flags, TRUE);
5563 errmsg = e_invarg;
5566 /* 'viewoptions' */
5567 else if (varp == &p_vop)
5569 if (opt_strings_flags(p_vop, p_ssop_values, &vop_flags, TRUE) != OK)
5570 errmsg = e_invarg;
5572 #endif
5574 /* 'scrollopt' */
5575 #ifdef FEAT_SCROLLBIND
5576 else if (varp == &p_sbo)
5578 if (check_opt_strings(p_sbo, p_scbopt_values, TRUE) != OK)
5579 errmsg = e_invarg;
5581 #endif
5583 /* 'ambiwidth' */
5584 #ifdef FEAT_MBYTE
5585 else if (varp == &p_ambw)
5587 if (check_opt_strings(p_ambw, p_ambw_values, FALSE) != OK)
5588 errmsg = e_invarg;
5590 #endif
5592 /* 'background' */
5593 else if (varp == &p_bg)
5595 if (check_opt_strings(p_bg, p_bg_values, FALSE) == OK)
5597 #ifdef FEAT_EVAL
5598 int dark = (*p_bg == 'd');
5599 #endif
5601 init_highlight(FALSE, FALSE);
5603 #ifdef FEAT_EVAL
5604 if (dark != (*p_bg == 'd')
5605 && get_var_value((char_u *)"g:colors_name") != NULL)
5607 /* The color scheme must have set 'background' back to another
5608 * value, that's not what we want here. Disable the color
5609 * scheme and set the colors again. */
5610 do_unlet((char_u *)"g:colors_name", TRUE);
5611 free_string_option(p_bg);
5612 p_bg = vim_strsave((char_u *)(dark ? "dark" : "light"));
5613 check_string_option(&p_bg);
5614 init_highlight(FALSE, FALSE);
5616 #endif
5618 else
5619 errmsg = e_invarg;
5622 /* 'wildmode' */
5623 else if (varp == &p_wim)
5625 if (check_opt_wim() == FAIL)
5626 errmsg = e_invarg;
5629 #ifdef FEAT_CMDL_COMPL
5630 /* 'wildoptions' */
5631 else if (varp == &p_wop)
5633 if (check_opt_strings(p_wop, p_wop_values, TRUE) != OK)
5634 errmsg = e_invarg;
5636 #endif
5638 #ifdef FEAT_WAK
5639 /* 'winaltkeys' */
5640 else if (varp == &p_wak)
5642 if (*p_wak == NUL
5643 || check_opt_strings(p_wak, p_wak_values, FALSE) != OK)
5644 errmsg = e_invarg;
5645 # ifdef FEAT_MENU
5646 # ifdef FEAT_GUI_MOTIF
5647 else if (gui.in_use)
5648 gui_motif_set_mnemonics(p_wak[0] == 'y' || p_wak[0] == 'm');
5649 # else
5650 # ifdef FEAT_GUI_GTK
5651 else if (gui.in_use)
5652 gui_gtk_set_mnemonics(p_wak[0] == 'y' || p_wak[0] == 'm');
5653 # endif
5654 # endif
5655 # endif
5657 #endif
5659 #ifdef FEAT_AUTOCMD
5660 /* 'eventignore' */
5661 else if (varp == &p_ei)
5663 if (check_ei() == FAIL)
5664 errmsg = e_invarg;
5666 #endif
5668 #ifdef FEAT_MBYTE
5669 /* 'encoding' and 'fileencoding' */
5670 else if (varp == &p_enc || gvarp == &p_fenc || varp == &p_tenc)
5672 if (gvarp == &p_fenc)
5674 if (!curbuf->b_p_ma && opt_flags != OPT_GLOBAL)
5675 errmsg = e_modifiable;
5676 else if (vim_strchr(*varp, ',') != NULL)
5677 /* No comma allowed in 'fileencoding'; catches confusing it
5678 * with 'fileencodings'. */
5679 errmsg = e_invarg;
5680 else
5682 # ifdef FEAT_TITLE
5683 /* May show a "+" in the title now. */
5684 need_maketitle = TRUE;
5685 # endif
5686 /* Add 'fileencoding' to the swap file. */
5687 ml_setflags(curbuf);
5690 if (errmsg == NULL)
5692 /* canonize the value, so that STRCMP() can be used on it */
5693 p = enc_canonize(*varp);
5694 if (p != NULL)
5696 vim_free(*varp);
5697 *varp = p;
5699 if (varp == &p_enc)
5701 errmsg = mb_init();
5702 # ifdef FEAT_TITLE
5703 need_maketitle = TRUE;
5704 # endif
5708 # if defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)
5709 if (errmsg == NULL && varp == &p_tenc && gui.in_use)
5711 /* GTK+ 2 uses only a single encoding, and that is UTF-8. */
5712 if (STRCMP(p_tenc, "utf-8") != 0)
5713 errmsg = (char_u *)N_("E617: Cannot be changed in the GTK+ 2 GUI");
5715 # endif
5717 if (errmsg == NULL)
5719 # ifdef FEAT_KEYMAP
5720 /* When 'keymap' is used and 'encoding' changes, reload the keymap
5721 * (with another encoding). */
5722 if (varp == &p_enc && *curbuf->b_p_keymap != NUL)
5723 (void)keymap_init();
5724 # endif
5726 /* When 'termencoding' is not empty and 'encoding' changes or when
5727 * 'termencoding' changes, need to setup for keyboard input and
5728 * display output conversion. */
5729 if (((varp == &p_enc && *p_tenc != NUL) || varp == &p_tenc))
5731 convert_setup(&input_conv, p_tenc, p_enc);
5732 convert_setup(&output_conv, p_enc, p_tenc);
5735 # if defined(WIN3264) && defined(FEAT_MBYTE)
5736 /* $HOME may have characters in active code page. */
5737 if (varp == &p_enc)
5738 init_homedir();
5739 # endif
5742 #endif
5744 #if defined(FEAT_POSTSCRIPT)
5745 else if (varp == &p_penc)
5747 /* Canonize printencoding if VIM standard one */
5748 p = enc_canonize(p_penc);
5749 if (p != NULL)
5751 vim_free(p_penc);
5752 p_penc = p;
5754 else
5756 /* Ensure lower case and '-' for '_' */
5757 for (s = p_penc; *s != NUL; s++)
5759 if (*s == '_')
5760 *s = '-';
5761 else
5762 *s = TOLOWER_ASC(*s);
5766 #endif
5768 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
5769 else if (varp == &p_imak)
5771 if (gui.in_use && !im_xim_isvalid_imactivate())
5772 errmsg = e_invarg;
5774 #endif
5776 #ifdef FEAT_KEYMAP
5777 else if (varp == &curbuf->b_p_keymap)
5779 /* load or unload key mapping tables */
5780 errmsg = keymap_init();
5782 /* When successfully installed a new keymap switch on using it. */
5783 if (*curbuf->b_p_keymap != NUL && errmsg == NULL)
5785 curbuf->b_p_iminsert = B_IMODE_LMAP;
5786 if (curbuf->b_p_imsearch != B_IMODE_USE_INSERT)
5787 curbuf->b_p_imsearch = B_IMODE_LMAP;
5788 set_iminsert_global();
5789 set_imsearch_global();
5790 # ifdef FEAT_WINDOWS
5791 status_redraw_curbuf();
5792 # endif
5795 #endif
5797 /* 'fileformat' */
5798 else if (gvarp == &p_ff)
5800 if (!curbuf->b_p_ma && !(opt_flags & OPT_GLOBAL))
5801 errmsg = e_modifiable;
5802 else if (check_opt_strings(*varp, p_ff_values, FALSE) != OK)
5803 errmsg = e_invarg;
5804 else
5806 /* may also change 'textmode' */
5807 if (get_fileformat(curbuf) == EOL_DOS)
5808 curbuf->b_p_tx = TRUE;
5809 else
5810 curbuf->b_p_tx = FALSE;
5811 #ifdef FEAT_TITLE
5812 need_maketitle = TRUE;
5813 #endif
5814 /* update flag in swap file */
5815 ml_setflags(curbuf);
5819 /* 'fileformats' */
5820 else if (varp == &p_ffs)
5822 if (check_opt_strings(p_ffs, p_ff_values, TRUE) != OK)
5823 errmsg = e_invarg;
5824 else
5826 /* also change 'textauto' */
5827 if (*p_ffs == NUL)
5828 p_ta = FALSE;
5829 else
5830 p_ta = TRUE;
5834 #if defined(FEAT_CRYPT) && defined(FEAT_CMDHIST)
5835 /* 'cryptkey' */
5836 else if (gvarp == &p_key)
5838 /* Make sure the ":set" command doesn't show the new value in the
5839 * history. */
5840 remove_key_from_history();
5842 #endif
5844 /* 'matchpairs' */
5845 else if (gvarp == &p_mps)
5847 /* Check for "x:y,x:y" */
5848 for (p = *varp; *p != NUL; p += 4)
5850 if (p[1] != ':' || p[2] == NUL || (p[3] != NUL && p[3] != ','))
5852 errmsg = e_invarg;
5853 break;
5855 if (p[3] == NUL)
5856 break;
5860 #ifdef FEAT_COMMENTS
5861 /* 'comments' */
5862 else if (gvarp == &p_com)
5864 for (s = *varp; *s; )
5866 while (*s && *s != ':')
5868 if (vim_strchr((char_u *)COM_ALL, *s) == NULL
5869 && !VIM_ISDIGIT(*s) && *s != '-')
5871 errmsg = illegal_char(errbuf, *s);
5872 break;
5874 ++s;
5876 if (*s++ == NUL)
5877 errmsg = (char_u *)N_("E524: Missing colon");
5878 else if (*s == ',' || *s == NUL)
5879 errmsg = (char_u *)N_("E525: Zero length string");
5880 if (errmsg != NULL)
5881 break;
5882 while (*s && *s != ',')
5884 if (*s == '\\' && s[1] != NUL)
5885 ++s;
5886 ++s;
5888 s = skip_to_option_part(s);
5891 #endif
5893 /* 'listchars' */
5894 else if (varp == &p_lcs)
5896 errmsg = set_chars_option(varp);
5899 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
5900 /* 'fillchars' */
5901 else if (varp == &p_fcs)
5903 errmsg = set_chars_option(varp);
5905 #endif
5907 #ifdef FEAT_CMDWIN
5908 /* 'cedit' */
5909 else if (varp == &p_cedit)
5911 errmsg = check_cedit();
5913 #endif
5915 /* 'verbosefile' */
5916 else if (varp == &p_vfile)
5918 verbose_stop();
5919 if (*p_vfile != NUL && verbose_open() == FAIL)
5920 errmsg = e_invarg;
5923 #ifdef FEAT_VIMINFO
5924 /* 'viminfo' */
5925 else if (varp == &p_viminfo)
5927 for (s = p_viminfo; *s;)
5929 /* Check it's a valid character */
5930 if (vim_strchr((char_u *)"!\"%'/:<@cfhnrs", *s) == NULL)
5932 errmsg = illegal_char(errbuf, *s);
5933 break;
5935 if (*s == 'n') /* name is always last one */
5937 break;
5939 else if (*s == 'r') /* skip until next ',' */
5941 while (*++s && *s != ',')
5944 else if (*s == '%')
5946 /* optional number */
5947 while (vim_isdigit(*++s))
5950 else if (*s == '!' || *s == 'h' || *s == 'c')
5951 ++s; /* no extra chars */
5952 else /* must have a number */
5954 while (vim_isdigit(*++s))
5957 if (!VIM_ISDIGIT(*(s - 1)))
5959 if (errbuf != NULL)
5961 sprintf((char *)errbuf,
5962 _("E526: Missing number after <%s>"),
5963 transchar_byte(*(s - 1)));
5964 errmsg = errbuf;
5966 else
5967 errmsg = (char_u *)"";
5968 break;
5971 if (*s == ',')
5972 ++s;
5973 else if (*s)
5975 if (errbuf != NULL)
5976 errmsg = (char_u *)N_("E527: Missing comma");
5977 else
5978 errmsg = (char_u *)"";
5979 break;
5982 if (*p_viminfo && errmsg == NULL && get_viminfo_parameter('\'') < 0)
5983 errmsg = (char_u *)N_("E528: Must specify a ' value");
5985 #endif /* FEAT_VIMINFO */
5987 /* terminal options */
5988 else if (istermoption(&options[opt_idx]) && full_screen)
5990 /* ":set t_Co=0" and ":set t_Co=1" do ":set t_Co=" */
5991 if (varp == &T_CCO)
5993 t_colors = atoi((char *)T_CCO);
5994 if (t_colors <= 1)
5996 if (new_value_alloced)
5997 vim_free(T_CCO);
5998 T_CCO = empty_option;
6000 /* We now have a different color setup, initialize it again. */
6001 init_highlight(TRUE, FALSE);
6003 ttest(FALSE);
6004 if (varp == &T_ME)
6006 out_str(T_ME);
6007 redraw_later(CLEAR);
6008 #if defined(MSDOS) || (defined(WIN3264) && !defined(FEAT_GUI_W32))
6009 /* Since t_me has been set, this probably means that the user
6010 * wants to use this as default colors. Need to reset default
6011 * background/foreground colors. */
6012 mch_set_normal_colors();
6013 #endif
6017 #ifdef FEAT_LINEBREAK
6018 /* 'showbreak' */
6019 else if (varp == &p_sbr)
6021 for (s = p_sbr; *s; )
6023 if (ptr2cells(s) != 1)
6024 errmsg = (char_u *)N_("E595: contains unprintable or wide character");
6025 mb_ptr_adv(s);
6028 #endif
6030 #ifdef FEAT_GUI
6031 /* 'guifont' */
6032 else if (varp == &p_guifont)
6034 if (gui.in_use)
6036 p = p_guifont;
6037 # if defined(FEAT_GUI_GTK)
6039 * Put up a font dialog and let the user select a new value.
6040 * If this is cancelled go back to the old value but don't
6041 * give an error message.
6043 if (STRCMP(p, "*") == 0)
6045 p = gui_mch_font_dialog(oldval);
6047 if (new_value_alloced)
6048 free_string_option(p_guifont);
6050 p_guifont = (p != NULL) ? p : vim_strsave(oldval);
6051 new_value_alloced = TRUE;
6053 # endif
6054 if (p != NULL && gui_init_font(p_guifont, FALSE) != OK)
6056 # if defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_PHOTON)
6057 if (STRCMP(p_guifont, "*") == 0)
6059 /* Dialog was cancelled: Keep the old value without giving
6060 * an error message. */
6061 if (new_value_alloced)
6062 free_string_option(p_guifont);
6063 p_guifont = vim_strsave(oldval);
6064 new_value_alloced = TRUE;
6066 else
6067 # endif
6068 errmsg = (char_u *)N_("E596: Invalid font(s)");
6072 # ifdef FEAT_XFONTSET
6073 else if (varp == &p_guifontset)
6075 if (STRCMP(p_guifontset, "*") == 0)
6076 errmsg = (char_u *)N_("E597: can't select fontset");
6077 else if (gui.in_use && gui_init_font(p_guifontset, TRUE) != OK)
6078 errmsg = (char_u *)N_("E598: Invalid fontset");
6080 # endif
6081 # ifdef FEAT_MBYTE
6082 else if (varp == &p_guifontwide)
6084 if (STRCMP(p_guifontwide, "*") == 0)
6085 errmsg = (char_u *)N_("E533: can't select wide font");
6086 else if (gui_get_wide_font() == FAIL)
6087 errmsg = (char_u *)N_("E534: Invalid wide font");
6089 # endif
6090 #endif
6092 #ifdef CURSOR_SHAPE
6093 /* 'guicursor' */
6094 else if (varp == &p_guicursor)
6095 errmsg = parse_shape_opt(SHAPE_CURSOR);
6096 #endif
6098 #ifdef FEAT_MOUSESHAPE
6099 /* 'mouseshape' */
6100 else if (varp == &p_mouseshape)
6102 errmsg = parse_shape_opt(SHAPE_MOUSE);
6103 update_mouseshape(-1);
6105 #endif
6107 #ifdef FEAT_PRINTER
6108 else if (varp == &p_popt)
6109 errmsg = parse_printoptions();
6110 # if defined(FEAT_MBYTE) && defined(FEAT_POSTSCRIPT)
6111 else if (varp == &p_pmfn)
6112 errmsg = parse_printmbfont();
6113 # endif
6114 #endif
6116 #ifdef FEAT_LANGMAP
6117 /* 'langmap' */
6118 else if (varp == &p_langmap)
6119 langmap_set();
6120 #endif
6122 #ifdef FEAT_LINEBREAK
6123 /* 'breakat' */
6124 else if (varp == &p_breakat)
6125 fill_breakat_flags();
6126 #endif
6128 #ifdef FEAT_TITLE
6129 /* 'titlestring' and 'iconstring' */
6130 else if (varp == &p_titlestring || varp == &p_iconstring)
6132 # ifdef FEAT_STL_OPT
6133 int flagval = (varp == &p_titlestring) ? STL_IN_TITLE : STL_IN_ICON;
6135 /* NULL => statusline syntax */
6136 if (vim_strchr(*varp, '%') && check_stl_option(*varp) == NULL)
6137 stl_syntax |= flagval;
6138 else
6139 stl_syntax &= ~flagval;
6140 # endif
6141 did_set_title(varp == &p_iconstring);
6144 #endif
6146 #ifdef FEAT_GUI
6147 /* 'guioptions' */
6148 else if (varp == &p_go)
6149 gui_init_which_components(oldval);
6150 #endif
6152 #if defined(FEAT_GUI_TABLINE)
6153 /* 'guitablabel' */
6154 else if (varp == &p_gtl)
6155 redraw_tabline = TRUE;
6156 #endif
6158 #if defined(FEAT_MOUSE_TTY) && (defined(UNIX) || defined(VMS))
6159 /* 'ttymouse' */
6160 else if (varp == &p_ttym)
6162 /* Switch the mouse off before changing the escape sequences used for
6163 * that. */
6164 mch_setmouse(FALSE);
6165 if (opt_strings_flags(p_ttym, p_ttym_values, &ttym_flags, FALSE) != OK)
6166 errmsg = e_invarg;
6167 else
6168 check_mouse_termcode();
6169 if (termcap_active)
6170 setmouse(); /* may switch it on again */
6172 #endif
6174 #ifdef FEAT_VISUAL
6175 /* 'selection' */
6176 else if (varp == &p_sel)
6178 if (*p_sel == NUL
6179 || check_opt_strings(p_sel, p_sel_values, FALSE) != OK)
6180 errmsg = e_invarg;
6183 /* 'selectmode' */
6184 else if (varp == &p_slm)
6186 if (check_opt_strings(p_slm, p_slm_values, TRUE) != OK)
6187 errmsg = e_invarg;
6189 #endif
6191 #ifdef FEAT_BROWSE
6192 /* 'browsedir' */
6193 else if (varp == &p_bsdir)
6195 if (check_opt_strings(p_bsdir, p_bsdir_values, FALSE) != OK
6196 && !mch_isdir(p_bsdir))
6197 errmsg = e_invarg;
6199 #endif
6201 #ifdef FEAT_VISUAL
6202 /* 'keymodel' */
6203 else if (varp == &p_km)
6205 if (check_opt_strings(p_km, p_km_values, TRUE) != OK)
6206 errmsg = e_invarg;
6207 else
6209 km_stopsel = (vim_strchr(p_km, 'o') != NULL);
6210 km_startsel = (vim_strchr(p_km, 'a') != NULL);
6213 #endif
6215 /* 'mousemodel' */
6216 else if (varp == &p_mousem)
6218 if (check_opt_strings(p_mousem, p_mousem_values, FALSE) != OK)
6219 errmsg = e_invarg;
6220 #if defined(FEAT_GUI_MOTIF) && defined(FEAT_MENU) && (XmVersion <= 1002)
6221 else if (*p_mousem != *oldval)
6222 /* Changed from "extend" to "popup" or "popup_setpos" or vv: need
6223 * to create or delete the popup menus. */
6224 gui_motif_update_mousemodel(root_menu);
6225 #endif
6228 /* 'switchbuf' */
6229 else if (varp == &p_swb)
6231 if (check_opt_strings(p_swb, p_swb_values, TRUE) != OK)
6232 errmsg = e_invarg;
6235 /* 'debug' */
6236 else if (varp == &p_debug)
6238 if (check_opt_strings(p_debug, p_debug_values, TRUE) != OK)
6239 errmsg = e_invarg;
6242 /* 'display' */
6243 else if (varp == &p_dy)
6245 if (opt_strings_flags(p_dy, p_dy_values, &dy_flags, TRUE) != OK)
6246 errmsg = e_invarg;
6247 else
6248 (void)init_chartab();
6252 #ifdef FEAT_VERTSPLIT
6253 /* 'eadirection' */
6254 else if (varp == &p_ead)
6256 if (check_opt_strings(p_ead, p_ead_values, FALSE) != OK)
6257 errmsg = e_invarg;
6259 #endif
6261 #ifdef FEAT_CLIPBOARD
6262 /* 'clipboard' */
6263 else if (varp == &p_cb)
6264 errmsg = check_clipboard_option();
6265 #endif
6267 #ifdef FEAT_SPELL
6268 /* When 'spelllang' or 'spellfile' is set and there is a window for this
6269 * buffer in which 'spell' is set load the wordlists. */
6270 else if (varp == &(curbuf->b_p_spl) || varp == &(curbuf->b_p_spf))
6272 win_T *wp;
6273 int l;
6275 if (varp == &(curbuf->b_p_spf))
6277 l = (int)STRLEN(curbuf->b_p_spf);
6278 if (l > 0 && (l < 4 || STRCMP(curbuf->b_p_spf + l - 4,
6279 ".add") != 0))
6280 errmsg = e_invarg;
6283 if (errmsg == NULL)
6285 FOR_ALL_WINDOWS(wp)
6286 if (wp->w_buffer == curbuf && wp->w_p_spell)
6288 errmsg = did_set_spelllang(curbuf);
6289 # ifdef FEAT_WINDOWS
6290 break;
6291 # endif
6295 /* When 'spellcapcheck' is set compile the regexp program. */
6296 else if (varp == &(curbuf->b_p_spc))
6298 errmsg = compile_cap_prog(curbuf);
6300 /* 'spellsuggest' */
6301 else if (varp == &p_sps)
6303 if (spell_check_sps() != OK)
6304 errmsg = e_invarg;
6306 /* 'mkspellmem' */
6307 else if (varp == &p_msm)
6309 if (spell_check_msm() != OK)
6310 errmsg = e_invarg;
6312 #endif
6314 #ifdef FEAT_QUICKFIX
6315 /* When 'bufhidden' is set, check for valid value. */
6316 else if (gvarp == &p_bh)
6318 if (check_opt_strings(curbuf->b_p_bh, p_bufhidden_values, FALSE) != OK)
6319 errmsg = e_invarg;
6322 /* When 'buftype' is set, check for valid value. */
6323 else if (gvarp == &p_bt)
6325 if (check_opt_strings(curbuf->b_p_bt, p_buftype_values, FALSE) != OK)
6326 errmsg = e_invarg;
6327 else
6329 # ifdef FEAT_WINDOWS
6330 if (curwin->w_status_height)
6332 curwin->w_redr_status = TRUE;
6333 redraw_later(VALID);
6335 # endif
6336 curbuf->b_help = (curbuf->b_p_bt[0] == 'h');
6339 #endif
6341 #ifdef FEAT_STL_OPT
6342 /* 'statusline' or 'rulerformat' */
6343 else if (gvarp == &p_stl || varp == &p_ruf)
6345 int wid;
6347 if (varp == &p_ruf) /* reset ru_wid first */
6348 ru_wid = 0;
6349 s = *varp;
6350 if (varp == &p_ruf && *s == '%')
6352 /* set ru_wid if 'ruf' starts with "%99(" */
6353 if (*++s == '-') /* ignore a '-' */
6354 s++;
6355 wid = getdigits(&s);
6356 if (wid && *s == '(' && (errmsg = check_stl_option(p_ruf)) == NULL)
6357 ru_wid = wid;
6358 else
6359 errmsg = check_stl_option(p_ruf);
6361 /* check 'statusline' only if it doesn't start with "%!" */
6362 else if (varp == &p_ruf || s[0] != '%' || s[1] != '!')
6363 errmsg = check_stl_option(s);
6364 if (varp == &p_ruf && errmsg == NULL)
6365 comp_col();
6367 #endif
6369 #ifdef FEAT_INS_EXPAND
6370 /* check if it is a valid value for 'complete' -- Acevedo */
6371 else if (gvarp == &p_cpt)
6373 for (s = *varp; *s;)
6375 while(*s == ',' || *s == ' ')
6376 s++;
6377 if (!*s)
6378 break;
6379 if (vim_strchr((char_u *)".wbuksid]tU", *s) == NULL)
6381 errmsg = illegal_char(errbuf, *s);
6382 break;
6384 if (*++s != NUL && *s != ',' && *s != ' ')
6386 if (s[-1] == 'k' || s[-1] == 's')
6388 /* skip optional filename after 'k' and 's' */
6389 while (*s && *s != ',' && *s != ' ')
6391 if (*s == '\\')
6392 ++s;
6393 ++s;
6396 else
6398 if (errbuf != NULL)
6400 sprintf((char *)errbuf,
6401 _("E535: Illegal character after <%c>"),
6402 *--s);
6403 errmsg = errbuf;
6405 else
6406 errmsg = (char_u *)"";
6407 break;
6413 /* 'completeopt' */
6414 else if (varp == &p_cot)
6416 if (check_opt_strings(p_cot, p_cot_values, TRUE) != OK)
6417 errmsg = e_invarg;
6419 #endif /* FEAT_INS_EXPAND */
6422 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
6423 else if (varp == &p_toolbar)
6425 if (opt_strings_flags(p_toolbar, p_toolbar_values,
6426 &toolbar_flags, TRUE) != OK)
6427 errmsg = e_invarg;
6428 else
6430 out_flush();
6431 gui_mch_show_toolbar((toolbar_flags &
6432 (TOOLBAR_TEXT | TOOLBAR_ICONS)) != 0);
6435 #endif
6437 #if defined(FEAT_TOOLBAR) && defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)
6438 /* 'toolbariconsize': GTK+ 2 only */
6439 else if (varp == &p_tbis)
6441 if (opt_strings_flags(p_tbis, p_tbis_values, &tbis_flags, FALSE) != OK)
6442 errmsg = e_invarg;
6443 else
6445 out_flush();
6446 gui_mch_show_toolbar((toolbar_flags &
6447 (TOOLBAR_TEXT | TOOLBAR_ICONS)) != 0);
6450 #endif
6452 /* 'pastetoggle': translate key codes like in a mapping */
6453 else if (varp == &p_pt)
6455 if (*p_pt)
6457 (void)replace_termcodes(p_pt, &p, TRUE, TRUE, FALSE);
6458 if (p != NULL)
6460 if (new_value_alloced)
6461 free_string_option(p_pt);
6462 p_pt = p;
6463 new_value_alloced = TRUE;
6468 /* 'backspace' */
6469 else if (varp == &p_bs)
6471 if (VIM_ISDIGIT(*p_bs))
6473 if (*p_bs >'2' || p_bs[1] != NUL)
6474 errmsg = e_invarg;
6476 else if (check_opt_strings(p_bs, p_bs_values, TRUE) != OK)
6477 errmsg = e_invarg;
6480 #ifdef FEAT_MBYTE
6481 /* 'casemap' */
6482 else if (varp == &p_cmp)
6484 if (opt_strings_flags(p_cmp, p_cmp_values, &cmp_flags, TRUE) != OK)
6485 errmsg = e_invarg;
6487 #endif
6489 #ifdef FEAT_DIFF
6490 /* 'diffopt' */
6491 else if (varp == &p_dip)
6493 if (diffopt_changed() == FAIL)
6494 errmsg = e_invarg;
6496 #endif
6498 #ifdef FEAT_FOLDING
6499 /* 'foldmethod' */
6500 else if (gvarp == &curwin->w_allbuf_opt.wo_fdm)
6502 if (check_opt_strings(*varp, p_fdm_values, FALSE) != OK
6503 || *curwin->w_p_fdm == NUL)
6504 errmsg = e_invarg;
6505 else
6506 foldUpdateAll(curwin);
6508 # ifdef FEAT_EVAL
6509 /* 'foldexpr' */
6510 else if (varp == &curwin->w_p_fde)
6512 if (foldmethodIsExpr(curwin))
6513 foldUpdateAll(curwin);
6515 # endif
6516 /* 'foldmarker' */
6517 else if (gvarp == &curwin->w_allbuf_opt.wo_fmr)
6519 p = vim_strchr(*varp, ',');
6520 if (p == NULL)
6521 errmsg = (char_u *)N_("E536: comma required");
6522 else if (p == *varp || p[1] == NUL)
6523 errmsg = e_invarg;
6524 else if (foldmethodIsMarker(curwin))
6525 foldUpdateAll(curwin);
6527 /* 'commentstring' */
6528 else if (gvarp == &p_cms)
6530 if (**varp != NUL && strstr((char *)*varp, "%s") == NULL)
6531 errmsg = (char_u *)N_("E537: 'commentstring' must be empty or contain %s");
6533 /* 'foldopen' */
6534 else if (varp == &p_fdo)
6536 if (opt_strings_flags(p_fdo, p_fdo_values, &fdo_flags, TRUE) != OK)
6537 errmsg = e_invarg;
6539 /* 'foldclose' */
6540 else if (varp == &p_fcl)
6542 if (check_opt_strings(p_fcl, p_fcl_values, TRUE) != OK)
6543 errmsg = e_invarg;
6545 /* 'foldignore' */
6546 else if (gvarp == &curwin->w_allbuf_opt.wo_fdi)
6548 if (foldmethodIsIndent(curwin))
6549 foldUpdateAll(curwin);
6551 #endif
6553 #ifdef FEAT_VIRTUALEDIT
6554 /* 'virtualedit' */
6555 else if (varp == &p_ve)
6557 if (opt_strings_flags(p_ve, p_ve_values, &ve_flags, TRUE) != OK)
6558 errmsg = e_invarg;
6559 else if (STRCMP(p_ve, oldval) != 0)
6561 /* Recompute cursor position in case the new 've' setting
6562 * changes something. */
6563 validate_virtcol();
6564 coladvance(curwin->w_virtcol);
6567 #endif
6569 #if defined(FEAT_CSCOPE) && defined(FEAT_QUICKFIX)
6570 else if (varp == &p_csqf)
6572 if (p_csqf != NULL)
6574 p = p_csqf;
6575 while (*p != NUL)
6577 if (vim_strchr((char_u *)CSQF_CMDS, *p) == NULL
6578 || p[1] == NUL
6579 || vim_strchr((char_u *)CSQF_FLAGS, p[1]) == NULL
6580 || (p[2] != NUL && p[2] != ','))
6582 errmsg = e_invarg;
6583 break;
6585 else if (p[2] == NUL)
6586 break;
6587 else
6588 p += 3;
6592 #endif
6594 /* Options that are a list of flags. */
6595 else
6597 p = NULL;
6598 if (varp == &p_ww)
6599 p = (char_u *)WW_ALL;
6600 if (varp == &p_shm)
6601 p = (char_u *)SHM_ALL;
6602 else if (varp == &(p_cpo))
6603 p = (char_u *)CPO_ALL;
6604 else if (varp == &(curbuf->b_p_fo))
6605 p = (char_u *)FO_ALL;
6606 else if (varp == &p_mouse)
6608 #ifdef FEAT_MOUSE
6609 p = (char_u *)MOUSE_ALL;
6610 #else
6611 if (*p_mouse != NUL)
6612 errmsg = (char_u *)N_("E538: No mouse support");
6613 #endif
6615 #if defined(FEAT_GUI)
6616 else if (varp == &p_go)
6617 p = (char_u *)GO_ALL;
6618 #endif
6619 if (p != NULL)
6621 for (s = *varp; *s; ++s)
6622 if (vim_strchr(p, *s) == NULL)
6624 errmsg = illegal_char(errbuf, *s);
6625 break;
6631 * If error detected, restore the previous value.
6633 if (errmsg != NULL)
6635 if (new_value_alloced)
6636 free_string_option(*varp);
6637 *varp = oldval;
6639 * When resetting some values, need to act on it.
6641 if (did_chartab)
6642 (void)init_chartab();
6643 if (varp == &p_hl)
6644 (void)highlight_changed();
6646 else
6648 #ifdef FEAT_EVAL
6649 /* Remember where the option was set. */
6650 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
6651 #endif
6653 * Free string options that are in allocated memory.
6654 * Use "free_oldval", because recursiveness may change the flags under
6655 * our fingers (esp. init_highlight()).
6657 if (free_oldval)
6658 free_string_option(oldval);
6659 if (new_value_alloced)
6660 options[opt_idx].flags |= P_ALLOCED;
6661 else
6662 options[opt_idx].flags &= ~P_ALLOCED;
6664 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
6665 && ((int)options[opt_idx].indir & PV_BOTH))
6667 /* global option with local value set to use global value; free
6668 * the local value and make it empty */
6669 p = get_varp_scope(&(options[opt_idx]), OPT_LOCAL);
6670 free_string_option(*(char_u **)p);
6671 *(char_u **)p = empty_option;
6674 /* May set global value for local option. */
6675 else if (!(opt_flags & OPT_LOCAL) && opt_flags != OPT_GLOBAL)
6676 set_string_option_global(opt_idx, varp);
6678 #ifdef FEAT_AUTOCMD
6680 * Trigger the autocommand only after setting the flags.
6682 # ifdef FEAT_SYN_HL
6683 /* When 'syntax' is set, load the syntax of that name */
6684 if (varp == &(curbuf->b_p_syn))
6686 apply_autocmds(EVENT_SYNTAX, curbuf->b_p_syn,
6687 curbuf->b_fname, TRUE, curbuf);
6689 # endif
6690 else if (varp == &(curbuf->b_p_ft))
6692 /* 'filetype' is set, trigger the FileType autocommand */
6693 did_filetype = TRUE;
6694 apply_autocmds(EVENT_FILETYPE, curbuf->b_p_ft,
6695 curbuf->b_fname, TRUE, curbuf);
6697 #endif
6698 #ifdef FEAT_SPELL
6699 if (varp == &(curbuf->b_p_spl))
6701 char_u fname[200];
6704 * Source the spell/LANG.vim in 'runtimepath'.
6705 * They could set 'spellcapcheck' depending on the language.
6706 * Use the first name in 'spelllang' up to '_region' or
6707 * '.encoding'.
6709 for (p = curbuf->b_p_spl; *p != NUL; ++p)
6710 if (vim_strchr((char_u *)"_.,", *p) != NULL)
6711 break;
6712 vim_snprintf((char *)fname, 200, "spell/%.*s.vim",
6713 (int)(p - curbuf->b_p_spl), curbuf->b_p_spl);
6714 source_runtime(fname, TRUE);
6716 #endif
6719 #ifdef FEAT_MOUSE
6720 if (varp == &p_mouse)
6722 # ifdef FEAT_MOUSE_TTY
6723 if (*p_mouse == NUL)
6724 mch_setmouse(FALSE); /* switch mouse off */
6725 else
6726 # endif
6727 setmouse(); /* in case 'mouse' changed */
6729 #endif
6731 if (curwin->w_curswant != MAXCOL)
6732 curwin->w_set_curswant = TRUE; /* in case 'showbreak' changed */
6733 check_redraw(options[opt_idx].flags);
6735 return errmsg;
6739 * Handle setting 'listchars' or 'fillchars'.
6740 * Returns error message, NULL if it's OK.
6742 static char_u *
6743 set_chars_option(varp)
6744 char_u **varp;
6746 int round, i, len, entries;
6747 char_u *p, *s;
6748 int c1, c2 = 0;
6749 struct charstab
6751 int *cp;
6752 char *name;
6754 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6755 static struct charstab filltab[] =
6757 {&fill_stl, "stl"},
6758 {&fill_stlnc, "stlnc"},
6759 {&fill_vert, "vert"},
6760 {&fill_fold, "fold"},
6761 {&fill_diff, "diff"},
6763 #endif
6764 static struct charstab lcstab[] =
6766 {&lcs_eol, "eol"},
6767 {&lcs_ext, "extends"},
6768 {&lcs_nbsp, "nbsp"},
6769 {&lcs_prec, "precedes"},
6770 {&lcs_tab2, "tab"},
6771 {&lcs_trail, "trail"},
6773 struct charstab *tab;
6775 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6776 if (varp == &p_lcs)
6777 #endif
6779 tab = lcstab;
6780 entries = sizeof(lcstab) / sizeof(struct charstab);
6782 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6783 else
6785 tab = filltab;
6786 entries = sizeof(filltab) / sizeof(struct charstab);
6788 #endif
6790 /* first round: check for valid value, second round: assign values */
6791 for (round = 0; round <= 1; ++round)
6793 if (round)
6795 /* After checking that the value is valid: set defaults: space for
6796 * 'fillchars', NUL for 'listchars' */
6797 for (i = 0; i < entries; ++i)
6798 *(tab[i].cp) = (varp == &p_lcs ? NUL : ' ');
6799 if (varp == &p_lcs)
6800 lcs_tab1 = NUL;
6801 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6802 else
6803 fill_diff = '-';
6804 #endif
6806 p = *varp;
6807 while (*p)
6809 for (i = 0; i < entries; ++i)
6811 len = (int)STRLEN(tab[i].name);
6812 if (STRNCMP(p, tab[i].name, len) == 0
6813 && p[len] == ':'
6814 && p[len + 1] != NUL)
6816 s = p + len + 1;
6817 #ifdef FEAT_MBYTE
6818 c1 = mb_ptr2char_adv(&s);
6819 if (mb_char2cells(c1) > 1)
6820 continue;
6821 #else
6822 c1 = *s++;
6823 #endif
6824 if (tab[i].cp == &lcs_tab2)
6826 if (*s == NUL)
6827 continue;
6828 #ifdef FEAT_MBYTE
6829 c2 = mb_ptr2char_adv(&s);
6830 if (mb_char2cells(c2) > 1)
6831 continue;
6832 #else
6833 c2 = *s++;
6834 #endif
6836 if (*s == ',' || *s == NUL)
6838 if (round)
6840 if (tab[i].cp == &lcs_tab2)
6842 lcs_tab1 = c1;
6843 lcs_tab2 = c2;
6845 else
6846 *(tab[i].cp) = c1;
6849 p = s;
6850 break;
6855 if (i == entries)
6856 return e_invarg;
6857 if (*p == ',')
6858 ++p;
6862 return NULL; /* no error */
6865 #ifdef FEAT_STL_OPT
6867 * Check validity of options with the 'statusline' format.
6868 * Return error message or NULL.
6870 char_u *
6871 check_stl_option(s)
6872 char_u *s;
6874 int itemcnt = 0;
6875 int groupdepth = 0;
6876 static char_u errbuf[80];
6878 while (*s && itemcnt < STL_MAX_ITEM)
6880 /* Check for valid keys after % sequences */
6881 while (*s && *s != '%')
6882 s++;
6883 if (!*s)
6884 break;
6885 s++;
6886 if (*s != '%' && *s != ')')
6887 ++itemcnt;
6888 if (*s == '%' || *s == STL_TRUNCMARK || *s == STL_MIDDLEMARK)
6890 s++;
6891 continue;
6893 if (*s == ')')
6895 s++;
6896 if (--groupdepth < 0)
6897 break;
6898 continue;
6900 if (*s == '-')
6901 s++;
6902 while (VIM_ISDIGIT(*s))
6903 s++;
6904 if (*s == STL_USER_HL)
6905 continue;
6906 if (*s == '.')
6908 s++;
6909 while (*s && VIM_ISDIGIT(*s))
6910 s++;
6912 if (*s == '(')
6914 groupdepth++;
6915 continue;
6917 if (vim_strchr(STL_ALL, *s) == NULL)
6919 return illegal_char(errbuf, *s);
6921 if (*s == '{')
6923 s++;
6924 while (*s != '}' && *s)
6925 s++;
6926 if (*s != '}')
6927 return (char_u *)N_("E540: Unclosed expression sequence");
6930 if (itemcnt >= STL_MAX_ITEM)
6931 return (char_u *)N_("E541: too many items");
6932 if (groupdepth != 0)
6933 return (char_u *)N_("E542: unbalanced groups");
6934 return NULL;
6936 #endif
6938 #ifdef FEAT_CLIPBOARD
6940 * Extract the items in the 'clipboard' option and set global values.
6942 static char_u *
6943 check_clipboard_option()
6945 int new_unnamed = FALSE;
6946 int new_autoselect = FALSE;
6947 int new_autoselectml = FALSE;
6948 regprog_T *new_exclude_prog = NULL;
6949 char_u *errmsg = NULL;
6950 char_u *p;
6952 for (p = p_cb; *p != NUL; )
6954 if (STRNCMP(p, "unnamed", 7) == 0 && (p[7] == ',' || p[7] == NUL))
6956 new_unnamed = TRUE;
6957 p += 7;
6959 else if (STRNCMP(p, "autoselect", 10) == 0
6960 && (p[10] == ',' || p[10] == NUL))
6962 new_autoselect = TRUE;
6963 p += 10;
6965 else if (STRNCMP(p, "autoselectml", 12) == 0
6966 && (p[12] == ',' || p[12] == NUL))
6968 new_autoselectml = TRUE;
6969 p += 12;
6971 else if (STRNCMP(p, "exclude:", 8) == 0 && new_exclude_prog == NULL)
6973 p += 8;
6974 new_exclude_prog = vim_regcomp(p, RE_MAGIC);
6975 if (new_exclude_prog == NULL)
6976 errmsg = e_invarg;
6977 break;
6979 else
6981 errmsg = e_invarg;
6982 break;
6984 if (*p == ',')
6985 ++p;
6987 if (errmsg == NULL)
6989 clip_unnamed = new_unnamed;
6990 clip_autoselect = new_autoselect;
6991 clip_autoselectml = new_autoselectml;
6992 vim_free(clip_exclude_prog);
6993 clip_exclude_prog = new_exclude_prog;
6995 else
6996 vim_free(new_exclude_prog);
6998 return errmsg;
7000 #endif
7002 #ifdef FEAT_SPELL
7004 * Set curbuf->b_cap_prog to the regexp program for 'spellcapcheck'.
7005 * Return error message when failed, NULL when OK.
7007 static char_u *
7008 compile_cap_prog(buf)
7009 buf_T *buf;
7011 regprog_T *rp = buf->b_cap_prog;
7012 char_u *re;
7014 if (*buf->b_p_spc == NUL)
7015 buf->b_cap_prog = NULL;
7016 else
7018 /* Prepend a ^ so that we only match at one column */
7019 re = concat_str((char_u *)"^", buf->b_p_spc);
7020 if (re != NULL)
7022 buf->b_cap_prog = vim_regcomp(re, RE_MAGIC);
7023 if (buf->b_cap_prog == NULL)
7025 buf->b_cap_prog = rp; /* restore the previous program */
7026 return e_invarg;
7028 vim_free(re);
7032 vim_free(rp);
7033 return NULL;
7035 #endif
7037 #if defined(FEAT_EVAL) || defined(PROTO)
7039 * Set the scriptID for an option, taking care of setting the buffer- or
7040 * window-local value.
7042 static void
7043 set_option_scriptID_idx(opt_idx, opt_flags, id)
7044 int opt_idx;
7045 int opt_flags;
7046 int id;
7048 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
7049 int indir = (int)options[opt_idx].indir;
7051 /* Remember where the option was set. For local options need to do that
7052 * in the buffer or window structure. */
7053 if (both || (opt_flags & OPT_GLOBAL) || (indir & (PV_BUF|PV_WIN)) == 0)
7054 options[opt_idx].scriptID = id;
7055 if (both || (opt_flags & OPT_LOCAL))
7057 if (indir & PV_BUF)
7058 curbuf->b_p_scriptID[indir & PV_MASK] = id;
7059 else if (indir & PV_WIN)
7060 curwin->w_p_scriptID[indir & PV_MASK] = id;
7063 #endif
7066 * Set the value of a boolean option, and take care of side effects.
7067 * Returns NULL for success, or an error message for an error.
7069 static char_u *
7070 set_bool_option(opt_idx, varp, value, opt_flags)
7071 int opt_idx; /* index in options[] table */
7072 char_u *varp; /* pointer to the option variable */
7073 int value; /* new value */
7074 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
7076 int old_value = *(int *)varp;
7078 /* Disallow changing some options from secure mode */
7079 if ((secure
7080 #ifdef HAVE_SANDBOX
7081 || sandbox != 0
7082 #endif
7083 ) && (options[opt_idx].flags & P_SECURE))
7084 return e_secure;
7086 *(int *)varp = value; /* set the new value */
7087 #ifdef FEAT_EVAL
7088 /* Remember where the option was set. */
7089 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
7090 #endif
7092 #ifdef FEAT_GUI
7093 need_mouse_correct = TRUE;
7094 #endif
7096 /* May set global value for local option. */
7097 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0)
7098 *(int *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) = value;
7101 * Handle side effects of changing a bool option.
7104 /* 'compatible' */
7105 if ((int *)varp == &p_cp)
7107 compatible_set();
7110 else if ((int *)varp == &curbuf->b_p_ro)
7112 /* when 'readonly' is reset globally, also reset readonlymode */
7113 if (!curbuf->b_p_ro && (opt_flags & OPT_LOCAL) == 0)
7114 readonlymode = FALSE;
7116 /* when 'readonly' is set may give W10 again */
7117 if (curbuf->b_p_ro)
7118 curbuf->b_did_warn = FALSE;
7120 #ifdef FEAT_TITLE
7121 need_maketitle = TRUE;
7122 #endif
7125 #ifdef FEAT_TITLE
7126 /* when 'modifiable' is changed, redraw the window title */
7127 else if ((int *)varp == &curbuf->b_p_ma)
7128 need_maketitle = TRUE;
7129 /* when 'endofline' is changed, redraw the window title */
7130 else if ((int *)varp == &curbuf->b_p_eol)
7131 need_maketitle = TRUE;
7132 #ifdef FEAT_MBYTE
7133 /* when 'bomb' is changed, redraw the window title */
7134 else if ((int *)varp == &curbuf->b_p_bomb)
7135 need_maketitle = TRUE;
7136 #endif
7137 #endif
7139 /* when 'bin' is set also set some other options */
7140 else if ((int *)varp == &curbuf->b_p_bin)
7142 set_options_bin(old_value, curbuf->b_p_bin, opt_flags);
7143 #ifdef FEAT_TITLE
7144 need_maketitle = TRUE;
7145 #endif
7148 #ifdef FEAT_AUTOCMD
7149 /* when 'buflisted' changes, trigger autocommands */
7150 else if ((int *)varp == &curbuf->b_p_bl && old_value != curbuf->b_p_bl)
7152 apply_autocmds(curbuf->b_p_bl ? EVENT_BUFADD : EVENT_BUFDELETE,
7153 NULL, NULL, TRUE, curbuf);
7155 #endif
7157 /* when 'swf' is set, create swapfile, when reset remove swapfile */
7158 else if ((int *)varp == &curbuf->b_p_swf)
7160 if (curbuf->b_p_swf && p_uc)
7161 ml_open_file(curbuf); /* create the swap file */
7162 else
7163 /* no need to reset curbuf->b_may_swap, ml_open_file() will check
7164 * buf->b_p_swf */
7165 mf_close_file(curbuf, TRUE); /* remove the swap file */
7168 /* when 'terse' is set change 'shortmess' */
7169 else if ((int *)varp == &p_terse)
7171 char_u *p;
7173 p = vim_strchr(p_shm, SHM_SEARCH);
7175 /* insert 's' in p_shm */
7176 if (p_terse && p == NULL)
7178 STRCPY(IObuff, p_shm);
7179 STRCAT(IObuff, "s");
7180 set_string_option_direct((char_u *)"shm", -1, IObuff, OPT_FREE, 0);
7182 /* remove 's' from p_shm */
7183 else if (!p_terse && p != NULL)
7184 mch_memmove(p, p + 1, STRLEN(p));
7187 /* when 'paste' is set or reset also change other options */
7188 else if ((int *)varp == &p_paste)
7190 paste_option_changed();
7193 /* when 'insertmode' is set from an autocommand need to do work here */
7194 else if ((int *)varp == &p_im)
7196 if (p_im)
7198 if ((State & INSERT) == 0)
7199 need_start_insertmode = TRUE;
7200 stop_insert_mode = FALSE;
7202 else
7204 need_start_insertmode = FALSE;
7205 stop_insert_mode = TRUE;
7206 if (restart_edit != 0 && mode_displayed)
7207 clear_cmdline = TRUE; /* remove "(insert)" */
7208 restart_edit = 0;
7212 /* when 'ignorecase' is set or reset and 'hlsearch' is set, redraw */
7213 else if ((int *)varp == &p_ic && p_hls)
7215 redraw_all_later(SOME_VALID);
7218 #ifdef FEAT_SEARCH_EXTRA
7219 /* when 'hlsearch' is set or reset: reset no_hlsearch */
7220 else if ((int *)varp == &p_hls)
7222 no_hlsearch = FALSE;
7224 #endif
7226 #ifdef FEAT_SCROLLBIND
7227 /* when 'scrollbind' is set: snapshot the current position to avoid a jump
7228 * at the end of normal_cmd() */
7229 else if ((int *)varp == &curwin->w_p_scb)
7231 if (curwin->w_p_scb)
7232 do_check_scrollbind(FALSE);
7234 #endif
7236 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
7237 /* There can be only one window with 'previewwindow' set. */
7238 else if ((int *)varp == &curwin->w_p_pvw)
7240 if (curwin->w_p_pvw)
7242 win_T *win;
7244 for (win = firstwin; win != NULL; win = win->w_next)
7245 if (win->w_p_pvw && win != curwin)
7247 curwin->w_p_pvw = FALSE;
7248 return (char_u *)N_("E590: A preview window already exists");
7252 #endif
7254 /* when 'textmode' is set or reset also change 'fileformat' */
7255 else if ((int *)varp == &curbuf->b_p_tx)
7257 set_fileformat(curbuf->b_p_tx ? EOL_DOS : EOL_UNIX, opt_flags);
7260 /* when 'textauto' is set or reset also change 'fileformats' */
7261 else if ((int *)varp == &p_ta)
7262 set_string_option_direct((char_u *)"ffs", -1,
7263 p_ta ? (char_u *)DFLT_FFS_VIM : (char_u *)"",
7264 OPT_FREE | opt_flags, 0);
7267 * When 'lisp' option changes include/exclude '-' in
7268 * keyword characters.
7270 #ifdef FEAT_LISP
7271 else if (varp == (char_u *)&(curbuf->b_p_lisp))
7273 (void)buf_init_chartab(curbuf, FALSE); /* ignore errors */
7275 #endif
7277 #ifdef FEAT_TITLE
7278 /* when 'title' changed, may need to change the title; same for 'icon' */
7279 else if ((int *)varp == &p_title)
7281 did_set_title(FALSE);
7284 else if ((int *)varp == &p_icon)
7286 did_set_title(TRUE);
7288 #endif
7290 else if ((int *)varp == &curbuf->b_changed)
7292 if (!value)
7293 save_file_ff(curbuf); /* Buffer is unchanged */
7294 #ifdef FEAT_TITLE
7295 need_maketitle = TRUE;
7296 #endif
7297 #ifdef FEAT_AUTOCMD
7298 modified_was_set = value;
7299 #endif
7302 #ifdef BACKSLASH_IN_FILENAME
7303 else if ((int *)varp == &p_ssl)
7305 if (p_ssl)
7307 psepc = '/';
7308 psepcN = '\\';
7309 pseps[0] = '/';
7311 else
7313 psepc = '\\';
7314 psepcN = '/';
7315 pseps[0] = '\\';
7318 /* need to adjust the file name arguments and buffer names. */
7319 buflist_slash_adjust();
7320 alist_slash_adjust();
7321 # ifdef FEAT_EVAL
7322 scriptnames_slash_adjust();
7323 # endif
7325 #endif
7327 /* If 'wrap' is set, set w_leftcol to zero. */
7328 else if ((int *)varp == &curwin->w_p_wrap)
7330 if (curwin->w_p_wrap)
7331 curwin->w_leftcol = 0;
7334 #ifdef FEAT_WINDOWS
7335 else if ((int *)varp == &p_ea)
7337 if (p_ea && !old_value)
7338 win_equal(curwin, FALSE, 0);
7340 #endif
7342 else if ((int *)varp == &p_wiv)
7345 * When 'weirdinvert' changed, set/reset 't_xs'.
7346 * Then set 'weirdinvert' according to value of 't_xs'.
7348 if (p_wiv && !old_value)
7349 T_XS = (char_u *)"y";
7350 else if (!p_wiv && old_value)
7351 T_XS = empty_option;
7352 p_wiv = (*T_XS != NUL);
7355 #ifdef FEAT_BEVAL
7356 else if ((int *)varp == &p_beval)
7358 if (p_beval == TRUE)
7359 gui_mch_enable_beval_area(balloonEval);
7360 else
7361 gui_mch_disable_beval_area(balloonEval);
7363 #endif
7365 #ifdef FEAT_AUTOCHDIR
7366 else if ((int *)varp == &p_acd)
7368 /* Change directories when the 'acd' option is set now. */
7369 DO_AUTOCHDIR
7371 #endif
7373 #ifdef FEAT_DIFF
7374 /* 'diff' */
7375 else if ((int *)varp == &curwin->w_p_diff)
7377 /* May add or remove the buffer from the list of diff buffers. */
7378 diff_buf_adjust(curwin);
7379 # ifdef FEAT_FOLDING
7380 if (foldmethodIsDiff(curwin))
7381 foldUpdateAll(curwin);
7382 # endif
7384 #endif
7386 #ifdef USE_IM_CONTROL
7387 /* 'imdisable' */
7388 else if ((int *)varp == &p_imdisable)
7390 /* Only de-activate it here, it will be enabled when changing mode. */
7391 if (p_imdisable)
7392 im_set_active(FALSE);
7394 #endif
7396 #ifdef FEAT_SPELL
7397 /* 'spell' */
7398 else if ((int *)varp == &curwin->w_p_spell)
7400 if (curwin->w_p_spell)
7402 char_u *errmsg = did_set_spelllang(curbuf);
7404 if (errmsg != NULL)
7405 EMSG(_(errmsg));
7408 #endif
7410 #ifdef FEAT_FKMAP
7411 else if ((int *)varp == &p_altkeymap)
7413 if (old_value != p_altkeymap)
7415 if (!p_altkeymap)
7417 p_hkmap = p_fkmap;
7418 p_fkmap = 0;
7420 else
7422 p_fkmap = p_hkmap;
7423 p_hkmap = 0;
7425 (void)init_chartab();
7430 * In case some second language keymapping options have changed, check
7431 * and correct the setting in a consistent way.
7435 * If hkmap or fkmap are set, reset Arabic keymapping.
7437 if ((p_hkmap || p_fkmap) && p_altkeymap)
7439 p_altkeymap = p_fkmap;
7440 # ifdef FEAT_ARABIC
7441 curwin->w_p_arab = FALSE;
7442 # endif
7443 (void)init_chartab();
7447 * If hkmap set, reset Farsi keymapping.
7449 if (p_hkmap && p_altkeymap)
7451 p_altkeymap = 0;
7452 p_fkmap = 0;
7453 # ifdef FEAT_ARABIC
7454 curwin->w_p_arab = FALSE;
7455 # endif
7456 (void)init_chartab();
7460 * If fkmap set, reset Hebrew keymapping.
7462 if (p_fkmap && !p_altkeymap)
7464 p_altkeymap = 1;
7465 p_hkmap = 0;
7466 # ifdef FEAT_ARABIC
7467 curwin->w_p_arab = FALSE;
7468 # endif
7469 (void)init_chartab();
7471 #endif
7473 #ifdef FEAT_ARABIC
7474 if ((int *)varp == &curwin->w_p_arab)
7476 if (curwin->w_p_arab)
7479 * 'arabic' is set, handle various sub-settings.
7481 if (!p_tbidi)
7483 /* set rightleft mode */
7484 if (!curwin->w_p_rl)
7486 curwin->w_p_rl = TRUE;
7487 changed_window_setting();
7490 /* Enable Arabic shaping (major part of what Arabic requires) */
7491 if (!p_arshape)
7493 p_arshape = TRUE;
7494 redraw_later_clear();
7498 /* Arabic requires a utf-8 encoding, inform the user if its not
7499 * set. */
7500 if (STRCMP(p_enc, "utf-8") != 0)
7502 msg_source(hl_attr(HLF_W));
7503 MSG_ATTR(_("W17: Arabic requires UTF-8, do ':set encoding=utf-8'"),
7504 hl_attr(HLF_W));
7507 # ifdef FEAT_MBYTE
7508 /* set 'delcombine' */
7509 p_deco = TRUE;
7510 # endif
7512 # ifdef FEAT_KEYMAP
7513 /* Force-set the necessary keymap for arabic */
7514 set_option_value((char_u *)"keymap", 0L, (char_u *)"arabic",
7515 OPT_LOCAL);
7516 # endif
7517 # ifdef FEAT_FKMAP
7518 p_altkeymap = 0;
7519 p_hkmap = 0;
7520 p_fkmap = 0;
7521 (void)init_chartab();
7522 # endif
7524 else
7527 * 'arabic' is reset, handle various sub-settings.
7529 if (!p_tbidi)
7531 /* reset rightleft mode */
7532 if (curwin->w_p_rl)
7534 curwin->w_p_rl = FALSE;
7535 changed_window_setting();
7538 /* 'arabicshape' isn't reset, it is a global option and
7539 * another window may still need it "on". */
7542 /* 'delcombine' isn't reset, it is a global option and another
7543 * window may still want it "on". */
7545 # ifdef FEAT_KEYMAP
7546 /* Revert to the default keymap */
7547 curbuf->b_p_iminsert = B_IMODE_NONE;
7548 curbuf->b_p_imsearch = B_IMODE_USE_INSERT;
7549 # endif
7552 #endif
7555 * End of handling side effects for bool options.
7558 options[opt_idx].flags |= P_WAS_SET;
7560 comp_col(); /* in case 'ruler' or 'showcmd' changed */
7561 if (curwin->w_curswant != MAXCOL)
7562 curwin->w_set_curswant = TRUE; /* in case 'list' changed */
7563 check_redraw(options[opt_idx].flags);
7565 return NULL;
7569 * Set the value of a number option, and take care of side effects.
7570 * Returns NULL for success, or an error message for an error.
7572 static char_u *
7573 set_num_option(opt_idx, varp, value, errbuf, errbuflen, opt_flags)
7574 int opt_idx; /* index in options[] table */
7575 char_u *varp; /* pointer to the option variable */
7576 long value; /* new value */
7577 char_u *errbuf; /* buffer for error messages */
7578 size_t errbuflen; /* length of "errbuf" */
7579 int opt_flags; /* OPT_LOCAL, OPT_GLOBAL and
7580 OPT_MODELINE */
7582 char_u *errmsg = NULL;
7583 long old_value = *(long *)varp;
7584 long old_Rows = Rows; /* remember old Rows */
7585 long old_Columns = Columns; /* remember old Columns */
7586 long *pp = (long *)varp;
7588 /* Disallow changing some options from secure mode. */
7589 if ((secure
7590 #ifdef HAVE_SANDBOX
7591 || sandbox != 0
7592 #endif
7593 ) && (options[opt_idx].flags & P_SECURE))
7594 return e_secure;
7596 *pp = value;
7597 #ifdef FEAT_EVAL
7598 /* Remember where the option was set. */
7599 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
7600 #endif
7601 #ifdef FEAT_GUI
7602 need_mouse_correct = TRUE;
7603 #endif
7605 if (curbuf->b_p_sw <= 0)
7607 errmsg = e_positive;
7608 curbuf->b_p_sw = curbuf->b_p_ts;
7612 * Number options that need some action when changed
7614 #ifdef FEAT_WINDOWS
7615 if (pp == &p_wh || pp == &p_hh)
7617 if (p_wh < 1)
7619 errmsg = e_positive;
7620 p_wh = 1;
7622 if (p_wmh > p_wh)
7624 errmsg = e_winheight;
7625 p_wh = p_wmh;
7627 if (p_hh < 0)
7629 errmsg = e_positive;
7630 p_hh = 0;
7633 /* Change window height NOW */
7634 if (lastwin != firstwin)
7636 if (pp == &p_wh && curwin->w_height < p_wh)
7637 win_setheight((int)p_wh);
7638 if (pp == &p_hh && curbuf->b_help && curwin->w_height < p_hh)
7639 win_setheight((int)p_hh);
7643 /* 'winminheight' */
7644 else if (pp == &p_wmh)
7646 if (p_wmh < 0)
7648 errmsg = e_positive;
7649 p_wmh = 0;
7651 if (p_wmh > p_wh)
7653 errmsg = e_winheight;
7654 p_wmh = p_wh;
7656 win_setminheight();
7659 # ifdef FEAT_VERTSPLIT
7660 else if (pp == &p_wiw)
7662 if (p_wiw < 1)
7664 errmsg = e_positive;
7665 p_wiw = 1;
7667 if (p_wmw > p_wiw)
7669 errmsg = e_winwidth;
7670 p_wiw = p_wmw;
7673 /* Change window width NOW */
7674 if (lastwin != firstwin && curwin->w_width < p_wiw)
7675 win_setwidth((int)p_wiw);
7678 /* 'winminwidth' */
7679 else if (pp == &p_wmw)
7681 if (p_wmw < 0)
7683 errmsg = e_positive;
7684 p_wmw = 0;
7686 if (p_wmw > p_wiw)
7688 errmsg = e_winwidth;
7689 p_wmw = p_wiw;
7691 win_setminheight();
7693 # endif
7695 #endif
7697 #ifdef FEAT_WINDOWS
7698 /* (re)set last window status line */
7699 else if (pp == &p_ls)
7701 last_status(FALSE);
7704 /* (re)set tab page line */
7705 else if (pp == &p_stal)
7707 shell_new_rows(); /* recompute window positions and heights */
7709 #endif
7711 #ifdef FEAT_GUI
7712 else if (pp == &p_linespace)
7714 /* Recompute gui.char_height and resize the Vim window to keep the
7715 * same number of lines. */
7716 if (gui.in_use && gui_mch_adjust_charheight() == OK)
7717 gui_set_shellsize(FALSE, FALSE, RESIZE_VERT);
7719 #endif
7721 #ifdef FEAT_FOLDING
7722 /* 'foldlevel' */
7723 else if (pp == &curwin->w_p_fdl)
7725 if (curwin->w_p_fdl < 0)
7726 curwin->w_p_fdl = 0;
7727 newFoldLevel();
7730 /* 'foldminlevel' */
7731 else if (pp == &curwin->w_p_fml)
7733 foldUpdateAll(curwin);
7736 /* 'foldnestmax' */
7737 else if (pp == &curwin->w_p_fdn)
7739 if (foldmethodIsSyntax(curwin) || foldmethodIsIndent(curwin))
7740 foldUpdateAll(curwin);
7743 /* 'foldcolumn' */
7744 else if (pp == &curwin->w_p_fdc)
7746 if (curwin->w_p_fdc < 0)
7748 errmsg = e_positive;
7749 curwin->w_p_fdc = 0;
7751 else if (curwin->w_p_fdc > 12)
7753 errmsg = e_invarg;
7754 curwin->w_p_fdc = 12;
7758 /* 'shiftwidth' or 'tabstop' */
7759 else if (pp == &curbuf->b_p_sw || pp == &curbuf->b_p_ts)
7761 if (foldmethodIsIndent(curwin))
7762 foldUpdateAll(curwin);
7764 #endif /* FEAT_FOLDING */
7766 #ifdef FEAT_MBYTE
7767 /* 'maxcombine' */
7768 else if (pp == &p_mco)
7770 if (p_mco > MAX_MCO)
7771 p_mco = MAX_MCO;
7772 else if (p_mco < 0)
7773 p_mco = 0;
7774 screenclear(); /* will re-allocate the screen */
7776 #endif
7778 else if (pp == &curbuf->b_p_iminsert)
7780 if (curbuf->b_p_iminsert < 0 || curbuf->b_p_iminsert > B_IMODE_LAST)
7782 errmsg = e_invarg;
7783 curbuf->b_p_iminsert = B_IMODE_NONE;
7785 p_iminsert = curbuf->b_p_iminsert;
7786 if (termcap_active) /* don't do this in the alternate screen */
7787 showmode();
7788 #if defined(FEAT_WINDOWS) && defined(FEAT_KEYMAP)
7789 /* Show/unshow value of 'keymap' in status lines. */
7790 status_redraw_curbuf();
7791 #endif
7794 else if (pp == &p_window)
7796 if (p_window < 1)
7797 p_window = 1;
7798 else if (p_window >= Rows)
7799 p_window = Rows - 1;
7802 else if (pp == &curbuf->b_p_imsearch)
7804 if (curbuf->b_p_imsearch < -1 || curbuf->b_p_imsearch > B_IMODE_LAST)
7806 errmsg = e_invarg;
7807 curbuf->b_p_imsearch = B_IMODE_NONE;
7809 p_imsearch = curbuf->b_p_imsearch;
7812 #ifdef FEAT_TITLE
7813 /* if 'titlelen' has changed, redraw the title */
7814 else if (pp == &p_titlelen)
7816 if (p_titlelen < 0)
7818 errmsg = e_positive;
7819 p_titlelen = 85;
7821 if (starting != NO_SCREEN && old_value != p_titlelen)
7822 need_maketitle = TRUE;
7824 #endif
7826 /* if p_ch changed value, change the command line height */
7827 else if (pp == &p_ch)
7829 if (p_ch < 1)
7831 errmsg = e_positive;
7832 p_ch = 1;
7834 if (p_ch > Rows - min_rows() + 1)
7835 p_ch = Rows - min_rows() + 1;
7837 /* Only compute the new window layout when startup has been
7838 * completed. Otherwise the frame sizes may be wrong. */
7839 if (p_ch != old_value && full_screen
7840 #ifdef FEAT_GUI
7841 && !gui.starting
7842 #endif
7844 command_height();
7847 /* when 'updatecount' changes from zero to non-zero, open swap files */
7848 else if (pp == &p_uc)
7850 if (p_uc < 0)
7852 errmsg = e_positive;
7853 p_uc = 100;
7855 if (p_uc && !old_value)
7856 ml_open_files();
7858 #ifdef MZSCHEME_GUI_THREADS
7859 else if (pp == &p_mzq)
7860 mzvim_reset_timer();
7861 #endif
7863 /* sync undo before 'undolevels' changes */
7864 else if (pp == &p_ul)
7866 /* use the old value, otherwise u_sync() may not work properly */
7867 p_ul = old_value;
7868 u_sync(TRUE);
7869 p_ul = value;
7872 #ifdef FEAT_LINEBREAK
7873 /* 'numberwidth' must be positive */
7874 else if (pp == &curwin->w_p_nuw)
7876 if (curwin->w_p_nuw < 1)
7878 errmsg = e_positive;
7879 curwin->w_p_nuw = 1;
7881 if (curwin->w_p_nuw > 10)
7883 errmsg = e_invarg;
7884 curwin->w_p_nuw = 10;
7886 curwin->w_nrwidth_line_count = 0;
7888 #endif
7891 * Check the bounds for numeric options here
7893 if (Rows < min_rows() && full_screen)
7895 if (errbuf != NULL)
7897 vim_snprintf((char *)errbuf, errbuflen,
7898 _("E593: Need at least %d lines"), min_rows());
7899 errmsg = errbuf;
7901 Rows = min_rows();
7903 if (Columns < MIN_COLUMNS && full_screen)
7905 if (errbuf != NULL)
7907 vim_snprintf((char *)errbuf, errbuflen,
7908 _("E594: Need at least %d columns"), MIN_COLUMNS);
7909 errmsg = errbuf;
7911 Columns = MIN_COLUMNS;
7913 /* Limit the values to avoid an overflow in Rows * Columns. */
7914 if (Columns > 10000)
7915 Columns = 10000;
7916 if (Rows > 1000)
7917 Rows = 1000;
7919 #ifdef DJGPP
7920 /* avoid a crash by checking for a too large value of 'columns' */
7921 if (old_Columns != Columns && full_screen && term_console)
7922 mch_check_columns();
7923 #endif
7926 * If the screen (shell) height has been changed, assume it is the
7927 * physical screenheight.
7929 if (old_Rows != Rows || old_Columns != Columns)
7931 /* Changing the screen size is not allowed while updating the screen. */
7932 if (updating_screen)
7933 *pp = old_value;
7934 else if (full_screen
7935 #ifdef FEAT_GUI
7936 && !gui.starting
7937 #endif
7939 set_shellsize((int)Columns, (int)Rows, TRUE);
7940 else
7942 /* Postpone the resizing; check the size and cmdline position for
7943 * messages. */
7944 check_shellsize();
7945 if (cmdline_row > Rows - p_ch && Rows > p_ch)
7946 cmdline_row = Rows - p_ch;
7948 if (p_window >= Rows || !option_was_set((char_u *)"window"))
7949 p_window = Rows - 1;
7952 if (curbuf->b_p_sts < 0)
7954 errmsg = e_positive;
7955 curbuf->b_p_sts = 0;
7957 if (curbuf->b_p_ts <= 0)
7959 errmsg = e_positive;
7960 curbuf->b_p_ts = 8;
7962 if (curbuf->b_p_tw < 0)
7964 errmsg = e_positive;
7965 curbuf->b_p_tw = 0;
7967 if (p_tm < 0)
7969 errmsg = e_positive;
7970 p_tm = 0;
7972 if ((curwin->w_p_scr <= 0
7973 || (curwin->w_p_scr > curwin->w_height
7974 && curwin->w_height > 0))
7975 && full_screen)
7977 if (pp == &(curwin->w_p_scr))
7979 if (curwin->w_p_scr != 0)
7980 errmsg = e_scroll;
7981 win_comp_scroll(curwin);
7983 /* If 'scroll' became invalid because of a side effect silently adjust
7984 * it. */
7985 else if (curwin->w_p_scr <= 0)
7986 curwin->w_p_scr = 1;
7987 else /* curwin->w_p_scr > curwin->w_height */
7988 curwin->w_p_scr = curwin->w_height;
7990 if (p_report < 0)
7992 errmsg = e_positive;
7993 p_report = 1;
7995 if ((p_sj < -100 || p_sj >= Rows) && full_screen)
7997 if (Rows != old_Rows) /* Rows changed, just adjust p_sj */
7998 p_sj = Rows / 2;
7999 else
8001 errmsg = e_scroll;
8002 p_sj = 1;
8005 if (p_so < 0 && full_screen)
8007 errmsg = e_scroll;
8008 p_so = 0;
8010 if (p_siso < 0 && full_screen)
8012 errmsg = e_positive;
8013 p_siso = 0;
8015 #ifdef FEAT_CMDWIN
8016 if (p_cwh < 1)
8018 errmsg = e_positive;
8019 p_cwh = 1;
8021 #endif
8022 if (p_ut < 0)
8024 errmsg = e_positive;
8025 p_ut = 2000;
8027 if (p_ss < 0)
8029 errmsg = e_positive;
8030 p_ss = 0;
8033 /* May set global value for local option. */
8034 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0)
8035 *(long *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) = *pp;
8037 options[opt_idx].flags |= P_WAS_SET;
8039 comp_col(); /* in case 'columns' or 'ls' changed */
8040 if (curwin->w_curswant != MAXCOL)
8041 curwin->w_set_curswant = TRUE; /* in case 'tabstop' changed */
8042 check_redraw(options[opt_idx].flags);
8044 return errmsg;
8048 * Called after an option changed: check if something needs to be redrawn.
8050 static void
8051 check_redraw(flags)
8052 long_u flags;
8054 /* Careful: P_RCLR and P_RALL are a combination of other P_ flags */
8055 int clear = (flags & P_RCLR) == P_RCLR;
8056 int all = ((flags & P_RALL) == P_RALL || clear);
8058 #ifdef FEAT_WINDOWS
8059 if ((flags & P_RSTAT) || all) /* mark all status lines dirty */
8060 status_redraw_all();
8061 #endif
8063 if ((flags & P_RBUF) || (flags & P_RWIN) || all)
8064 changed_window_setting();
8065 if (flags & P_RBUF)
8066 redraw_curbuf_later(NOT_VALID);
8067 if (clear)
8068 redraw_all_later(CLEAR);
8069 else if (all)
8070 redraw_all_later(NOT_VALID);
8074 * Find index for option 'arg'.
8075 * Return -1 if not found.
8077 static int
8078 findoption(arg)
8079 char_u *arg;
8081 int opt_idx;
8082 char *s, *p;
8083 static short quick_tab[27] = {0, 0}; /* quick access table */
8084 int is_term_opt;
8087 * For first call: Initialize the quick-access table.
8088 * It contains the index for the first option that starts with a certain
8089 * letter. There are 26 letters, plus the first "t_" option.
8091 if (quick_tab[1] == 0)
8093 p = options[0].fullname;
8094 for (opt_idx = 1; (s = options[opt_idx].fullname) != NULL; opt_idx++)
8096 if (s[0] != p[0])
8098 if (s[0] == 't' && s[1] == '_')
8099 quick_tab[26] = opt_idx;
8100 else
8101 quick_tab[CharOrdLow(s[0])] = opt_idx;
8103 p = s;
8108 * Check for name starting with an illegal character.
8110 #ifdef EBCDIC
8111 if (!islower(arg[0]))
8112 #else
8113 if (arg[0] < 'a' || arg[0] > 'z')
8114 #endif
8115 return -1;
8117 is_term_opt = (arg[0] == 't' && arg[1] == '_');
8118 if (is_term_opt)
8119 opt_idx = quick_tab[26];
8120 else
8121 opt_idx = quick_tab[CharOrdLow(arg[0])];
8122 for ( ; (s = options[opt_idx].fullname) != NULL; opt_idx++)
8124 if (STRCMP(arg, s) == 0) /* match full name */
8125 break;
8127 if (s == NULL && !is_term_opt)
8129 opt_idx = quick_tab[CharOrdLow(arg[0])];
8130 for ( ; options[opt_idx].fullname != NULL; opt_idx++)
8132 s = options[opt_idx].shortname;
8133 if (s != NULL && STRCMP(arg, s) == 0) /* match short name */
8134 break;
8135 s = NULL;
8138 if (s == NULL)
8139 opt_idx = -1;
8140 return opt_idx;
8143 #if defined(FEAT_EVAL) || defined(FEAT_TCL) || defined(FEAT_MZSCHEME)
8145 * Get the value for an option.
8147 * Returns:
8148 * Number or Toggle option: 1, *numval gets value.
8149 * String option: 0, *stringval gets allocated string.
8150 * Hidden Number or Toggle option: -1.
8151 * hidden String option: -2.
8152 * unknown option: -3.
8155 get_option_value(name, numval, stringval, opt_flags)
8156 char_u *name;
8157 long *numval;
8158 char_u **stringval; /* NULL when only checking existance */
8159 int opt_flags;
8161 int opt_idx;
8162 char_u *varp;
8164 opt_idx = findoption(name);
8165 if (opt_idx < 0) /* unknown option */
8166 return -3;
8168 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
8170 if (options[opt_idx].flags & P_STRING)
8172 if (varp == NULL) /* hidden option */
8173 return -2;
8174 if (stringval != NULL)
8176 #ifdef FEAT_CRYPT
8177 /* never return the value of the crypt key */
8178 if ((char_u **)varp == &curbuf->b_p_key)
8179 *stringval = vim_strsave((char_u *)"*****");
8180 else
8181 #endif
8182 *stringval = vim_strsave(*(char_u **)(varp));
8184 return 0;
8187 if (varp == NULL) /* hidden option */
8188 return -1;
8189 if (options[opt_idx].flags & P_NUM)
8190 *numval = *(long *)varp;
8191 else
8193 /* Special case: 'modified' is b_changed, but we also want to consider
8194 * it set when 'ff' or 'fenc' changed. */
8195 if ((int *)varp == &curbuf->b_changed)
8196 *numval = curbufIsChanged();
8197 else
8198 *numval = *(int *)varp;
8200 return 1;
8202 #endif
8205 * Set the value of option "name".
8206 * Use "string" for string options, use "number" for other options.
8208 void
8209 set_option_value(name, number, string, opt_flags)
8210 char_u *name;
8211 long number;
8212 char_u *string;
8213 int opt_flags; /* OPT_LOCAL or 0 (both) */
8215 int opt_idx;
8216 char_u *varp;
8217 long_u flags;
8219 opt_idx = findoption(name);
8220 if (opt_idx < 0)
8221 EMSG2(_("E355: Unknown option: %s"), name);
8222 else
8224 flags = options[opt_idx].flags;
8225 #ifdef HAVE_SANDBOX
8226 /* Disallow changing some options in the sandbox */
8227 if (sandbox > 0 && (flags & P_SECURE))
8229 EMSG(_(e_sandbox));
8230 return;
8232 #endif
8233 if (flags & P_STRING)
8234 set_string_option(opt_idx, string, opt_flags);
8235 else
8237 varp = get_varp(&options[opt_idx]);
8238 if (varp != NULL) /* hidden option is not changed */
8240 if (number == 0 && string != NULL)
8242 int index;
8244 /* Either we are given a string or we are setting option
8245 * to zero. */
8246 for (index = 0; string[index] == '0'; ++index)
8248 if (string[index] != NUL || index == 0)
8250 /* There's another character after zeros or the string
8251 * is empty. In both cases, we are trying to set a
8252 * num option using a string. */
8253 EMSG3(_("E521: Number required: &%s = '%s'"),
8254 name, string);
8255 return; /* do nothing as we hit an error */
8259 if (flags & P_NUM)
8260 (void)set_num_option(opt_idx, varp, number,
8261 NULL, 0, opt_flags);
8262 else
8263 (void)set_bool_option(opt_idx, varp, (int)number,
8264 opt_flags);
8271 * Get the terminal code for a terminal option.
8272 * Returns NULL when not found.
8274 char_u *
8275 get_term_code(tname)
8276 char_u *tname;
8278 int opt_idx;
8279 char_u *varp;
8281 if (tname[0] != 't' || tname[1] != '_' ||
8282 tname[2] == NUL || tname[3] == NUL)
8283 return NULL;
8284 if ((opt_idx = findoption(tname)) >= 0)
8286 varp = get_varp(&(options[opt_idx]));
8287 if (varp != NULL)
8288 varp = *(char_u **)(varp);
8289 return varp;
8291 return find_termcode(tname + 2);
8294 char_u *
8295 get_highlight_default()
8297 int i;
8299 i = findoption((char_u *)"hl");
8300 if (i >= 0)
8301 return options[i].def_val[VI_DEFAULT];
8302 return (char_u *)NULL;
8305 #if defined(FEAT_MBYTE) || defined(PROTO)
8306 char_u *
8307 get_encoding_default()
8309 int i;
8311 i = findoption((char_u *)"enc");
8312 if (i >= 0)
8313 return options[i].def_val[VI_DEFAULT];
8314 return (char_u *)NULL;
8316 #endif
8319 * Translate a string like "t_xx", "<t_xx>" or "<S-Tab>" to a key number.
8321 static int
8322 find_key_option(arg)
8323 char_u *arg;
8325 int key;
8326 int modifiers;
8329 * Don't use get_special_key_code() for t_xx, we don't want it to call
8330 * add_termcap_entry().
8332 if (arg[0] == 't' && arg[1] == '_' && arg[2] && arg[3])
8333 key = TERMCAP2KEY(arg[2], arg[3]);
8334 else
8336 --arg; /* put arg at the '<' */
8337 modifiers = 0;
8338 key = find_special_key(&arg, &modifiers, TRUE);
8339 if (modifiers) /* can't handle modifiers here */
8340 key = 0;
8342 return key;
8346 * if 'all' == 0: show changed options
8347 * if 'all' == 1: show all normal options
8348 * if 'all' == 2: show all terminal options
8350 static void
8351 showoptions(all, opt_flags)
8352 int all;
8353 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
8355 struct vimoption *p;
8356 int col;
8357 int isterm;
8358 char_u *varp;
8359 struct vimoption **items;
8360 int item_count;
8361 int run;
8362 int row, rows;
8363 int cols;
8364 int i;
8365 int len;
8367 #define INC 20
8368 #define GAP 3
8370 items = (struct vimoption **)alloc((unsigned)(sizeof(struct vimoption *) *
8371 PARAM_COUNT));
8372 if (items == NULL)
8373 return;
8375 /* Highlight title */
8376 if (all == 2)
8377 MSG_PUTS_TITLE(_("\n--- Terminal codes ---"));
8378 else if (opt_flags & OPT_GLOBAL)
8379 MSG_PUTS_TITLE(_("\n--- Global option values ---"));
8380 else if (opt_flags & OPT_LOCAL)
8381 MSG_PUTS_TITLE(_("\n--- Local option values ---"));
8382 else
8383 MSG_PUTS_TITLE(_("\n--- Options ---"));
8386 * do the loop two times:
8387 * 1. display the short items
8388 * 2. display the long items (only strings and numbers)
8390 for (run = 1; run <= 2 && !got_int; ++run)
8393 * collect the items in items[]
8395 item_count = 0;
8396 for (p = &options[0]; p->fullname != NULL; p++)
8398 varp = NULL;
8399 isterm = istermoption(p);
8400 if (opt_flags != 0)
8402 if (p->indir != PV_NONE && !isterm)
8403 varp = get_varp_scope(p, opt_flags);
8405 else
8406 varp = get_varp(p);
8407 if (varp != NULL
8408 && ((all == 2 && isterm)
8409 || (all == 1 && !isterm)
8410 || (all == 0 && !optval_default(p, varp))))
8412 if (p->flags & P_BOOL)
8413 len = 1; /* a toggle option fits always */
8414 else
8416 option_value2string(p, opt_flags);
8417 len = (int)STRLEN(p->fullname) + vim_strsize(NameBuff) + 1;
8419 if ((len <= INC - GAP && run == 1) ||
8420 (len > INC - GAP && run == 2))
8421 items[item_count++] = p;
8426 * display the items
8428 if (run == 1)
8430 cols = (Columns + GAP - 3) / INC;
8431 if (cols == 0)
8432 cols = 1;
8433 rows = (item_count + cols - 1) / cols;
8435 else /* run == 2 */
8436 rows = item_count;
8437 for (row = 0; row < rows && !got_int; ++row)
8439 msg_putchar('\n'); /* go to next line */
8440 if (got_int) /* 'q' typed in more */
8441 break;
8442 col = 0;
8443 for (i = row; i < item_count; i += rows)
8445 msg_col = col; /* make columns */
8446 showoneopt(items[i], opt_flags);
8447 col += INC;
8449 out_flush();
8450 ui_breakcheck();
8453 vim_free(items);
8457 * Return TRUE if option "p" has its default value.
8459 static int
8460 optval_default(p, varp)
8461 struct vimoption *p;
8462 char_u *varp;
8464 int dvi;
8466 if (varp == NULL)
8467 return TRUE; /* hidden option is always at default */
8468 dvi = ((p->flags & P_VI_DEF) || p_cp) ? VI_DEFAULT : VIM_DEFAULT;
8469 if (p->flags & P_NUM)
8470 return (*(long *)varp == (long)(long_i)p->def_val[dvi]);
8471 if (p->flags & P_BOOL)
8472 /* the cast to long is required for Manx C, long_i is
8473 * needed for MSVC */
8474 return (*(int *)varp == (int)(long)(long_i)p->def_val[dvi]);
8475 /* P_STRING */
8476 return (STRCMP(*(char_u **)varp, p->def_val[dvi]) == 0);
8480 * showoneopt: show the value of one option
8481 * must not be called with a hidden option!
8483 static void
8484 showoneopt(p, opt_flags)
8485 struct vimoption *p;
8486 int opt_flags; /* OPT_LOCAL or OPT_GLOBAL */
8488 char_u *varp;
8489 int save_silent = silent_mode;
8491 silent_mode = FALSE;
8492 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
8494 varp = get_varp_scope(p, opt_flags);
8496 /* for 'modified' we also need to check if 'ff' or 'fenc' changed. */
8497 if ((p->flags & P_BOOL) && ((int *)varp == &curbuf->b_changed
8498 ? !curbufIsChanged() : !*(int *)varp))
8499 MSG_PUTS("no");
8500 else if ((p->flags & P_BOOL) && *(int *)varp < 0)
8501 MSG_PUTS("--");
8502 else
8503 MSG_PUTS(" ");
8504 MSG_PUTS(p->fullname);
8505 if (!(p->flags & P_BOOL))
8507 msg_putchar('=');
8508 /* put value string in NameBuff */
8509 option_value2string(p, opt_flags);
8510 msg_outtrans(NameBuff);
8513 silent_mode = save_silent;
8514 info_message = FALSE;
8518 * Write modified options as ":set" commands to a file.
8520 * There are three values for "opt_flags":
8521 * OPT_GLOBAL: Write global option values and fresh values of
8522 * buffer-local options (used for start of a session
8523 * file).
8524 * OPT_GLOBAL + OPT_LOCAL: Idem, add fresh values of window-local options for
8525 * curwin (used for a vimrc file).
8526 * OPT_LOCAL: Write buffer-local option values for curbuf, fresh
8527 * and local values for window-local options of
8528 * curwin. Local values are also written when at the
8529 * default value, because a modeline or autocommand
8530 * may have set them when doing ":edit file" and the
8531 * user has set them back at the default or fresh
8532 * value.
8533 * When "local_only" is TRUE, don't write fresh
8534 * values, only local values (for ":mkview").
8535 * (fresh value = value used for a new buffer or window for a local option).
8537 * Return FAIL on error, OK otherwise.
8540 makeset(fd, opt_flags, local_only)
8541 FILE *fd;
8542 int opt_flags;
8543 int local_only;
8545 struct vimoption *p;
8546 char_u *varp; /* currently used value */
8547 char_u *varp_fresh; /* local value */
8548 char_u *varp_local = NULL; /* fresh value */
8549 char *cmd;
8550 int round;
8551 int pri;
8554 * The options that don't have a default (terminal name, columns, lines)
8555 * are never written. Terminal options are also not written.
8556 * Do the loop over "options[]" twice: once for options with the
8557 * P_PRI_MKRC flag and once without.
8559 for (pri = 1; pri >= 0; --pri)
8561 for (p = &options[0]; !istermoption(p); p++)
8562 if (!(p->flags & P_NO_MKRC)
8563 && !istermoption(p)
8564 && ((pri == 1) == ((p->flags & P_PRI_MKRC) != 0)))
8566 /* skip global option when only doing locals */
8567 if (p->indir == PV_NONE && !(opt_flags & OPT_GLOBAL))
8568 continue;
8570 /* Do not store options like 'bufhidden' and 'syntax' in a vimrc
8571 * file, they are always buffer-specific. */
8572 if ((opt_flags & OPT_GLOBAL) && (p->flags & P_NOGLOB))
8573 continue;
8575 /* Global values are only written when not at the default value. */
8576 varp = get_varp_scope(p, opt_flags);
8577 if ((opt_flags & OPT_GLOBAL) && optval_default(p, varp))
8578 continue;
8580 round = 2;
8581 if (p->indir != PV_NONE)
8583 if (p->var == VAR_WIN)
8585 /* skip window-local option when only doing globals */
8586 if (!(opt_flags & OPT_LOCAL))
8587 continue;
8588 /* When fresh value of window-local option is not at the
8589 * default, need to write it too. */
8590 if (!(opt_flags & OPT_GLOBAL) && !local_only)
8592 varp_fresh = get_varp_scope(p, OPT_GLOBAL);
8593 if (!optval_default(p, varp_fresh))
8595 round = 1;
8596 varp_local = varp;
8597 varp = varp_fresh;
8603 /* Round 1: fresh value for window-local options.
8604 * Round 2: other values */
8605 for ( ; round <= 2; varp = varp_local, ++round)
8607 if (round == 1 || (opt_flags & OPT_GLOBAL))
8608 cmd = "set";
8609 else
8610 cmd = "setlocal";
8612 if (p->flags & P_BOOL)
8614 if (put_setbool(fd, cmd, p->fullname, *(int *)varp) == FAIL)
8615 return FAIL;
8617 else if (p->flags & P_NUM)
8619 if (put_setnum(fd, cmd, p->fullname, (long *)varp) == FAIL)
8620 return FAIL;
8622 else /* P_STRING */
8624 #if defined(FEAT_SYN_HL) || defined(FEAT_AUTOCMD)
8625 int do_endif = FALSE;
8627 /* Don't set 'syntax' and 'filetype' again if the value is
8628 * already right, avoids reloading the syntax file. */
8629 if (
8630 # if defined(FEAT_SYN_HL)
8631 p->indir == PV_SYN
8632 # if defined(FEAT_AUTOCMD)
8634 # endif
8635 # endif
8636 # if defined(FEAT_AUTOCMD)
8637 p->indir == PV_FT)
8638 # endif
8640 if (fprintf(fd, "if &%s != '%s'", p->fullname,
8641 *(char_u **)(varp)) < 0
8642 || put_eol(fd) < 0)
8643 return FAIL;
8644 do_endif = TRUE;
8646 #endif
8647 if (put_setstring(fd, cmd, p->fullname, (char_u **)varp,
8648 (p->flags & P_EXPAND) != 0) == FAIL)
8649 return FAIL;
8650 #if defined(FEAT_SYN_HL) || defined(FEAT_AUTOCMD)
8651 if (do_endif)
8653 if (put_line(fd, "endif") == FAIL)
8654 return FAIL;
8656 #endif
8661 return OK;
8664 #if defined(FEAT_FOLDING) || defined(PROTO)
8666 * Generate set commands for the local fold options only. Used when
8667 * 'sessionoptions' or 'viewoptions' contains "folds" but not "options".
8670 makefoldset(fd)
8671 FILE *fd;
8673 if (put_setstring(fd, "setlocal", "fdm", &curwin->w_p_fdm, FALSE) == FAIL
8674 # ifdef FEAT_EVAL
8675 || put_setstring(fd, "setlocal", "fde", &curwin->w_p_fde, FALSE)
8676 == FAIL
8677 # endif
8678 || put_setstring(fd, "setlocal", "fmr", &curwin->w_p_fmr, FALSE)
8679 == FAIL
8680 || put_setstring(fd, "setlocal", "fdi", &curwin->w_p_fdi, FALSE)
8681 == FAIL
8682 || put_setnum(fd, "setlocal", "fdl", &curwin->w_p_fdl) == FAIL
8683 || put_setnum(fd, "setlocal", "fml", &curwin->w_p_fml) == FAIL
8684 || put_setnum(fd, "setlocal", "fdn", &curwin->w_p_fdn) == FAIL
8685 || put_setbool(fd, "setlocal", "fen", curwin->w_p_fen) == FAIL
8687 return FAIL;
8689 return OK;
8691 #endif
8693 static int
8694 put_setstring(fd, cmd, name, valuep, expand)
8695 FILE *fd;
8696 char *cmd;
8697 char *name;
8698 char_u **valuep;
8699 int expand;
8701 char_u *s;
8702 char_u buf[MAXPATHL];
8704 if (fprintf(fd, "%s %s=", cmd, name) < 0)
8705 return FAIL;
8706 if (*valuep != NULL)
8708 /* Output 'pastetoggle' as key names. For other
8709 * options some characters have to be escaped with
8710 * CTRL-V or backslash */
8711 if (valuep == &p_pt)
8713 s = *valuep;
8714 while (*s != NUL)
8715 if (fputs((char *)str2special(&s, FALSE), fd) < 0)
8716 return FAIL;
8718 else if (expand)
8720 home_replace(NULL, *valuep, buf, MAXPATHL, FALSE);
8721 if (put_escstr(fd, buf, 2) == FAIL)
8722 return FAIL;
8724 else if (put_escstr(fd, *valuep, 2) == FAIL)
8725 return FAIL;
8727 if (put_eol(fd) < 0)
8728 return FAIL;
8729 return OK;
8732 static int
8733 put_setnum(fd, cmd, name, valuep)
8734 FILE *fd;
8735 char *cmd;
8736 char *name;
8737 long *valuep;
8739 long wc;
8741 if (fprintf(fd, "%s %s=", cmd, name) < 0)
8742 return FAIL;
8743 if (wc_use_keyname((char_u *)valuep, &wc))
8745 /* print 'wildchar' and 'wildcharm' as a key name */
8746 if (fputs((char *)get_special_key_name((int)wc, 0), fd) < 0)
8747 return FAIL;
8749 else if (fprintf(fd, "%ld", *valuep) < 0)
8750 return FAIL;
8751 if (put_eol(fd) < 0)
8752 return FAIL;
8753 return OK;
8756 static int
8757 put_setbool(fd, cmd, name, value)
8758 FILE *fd;
8759 char *cmd;
8760 char *name;
8761 int value;
8763 if (value < 0) /* global/local option using global value */
8764 return OK;
8765 if (fprintf(fd, "%s %s%s", cmd, value ? "" : "no", name) < 0
8766 || put_eol(fd) < 0)
8767 return FAIL;
8768 return OK;
8772 * Clear all the terminal options.
8773 * If the option has been allocated, free the memory.
8774 * Terminal options are never hidden or indirect.
8776 void
8777 clear_termoptions()
8780 * Reset a few things before clearing the old options. This may cause
8781 * outputting a few things that the terminal doesn't understand, but the
8782 * screen will be cleared later, so this is OK.
8784 #ifdef FEAT_MOUSE_TTY
8785 mch_setmouse(FALSE); /* switch mouse off */
8786 #endif
8787 #ifdef FEAT_TITLE
8788 mch_restore_title(3); /* restore window titles */
8789 #endif
8790 #if defined(FEAT_XCLIPBOARD) && defined(FEAT_GUI)
8791 /* When starting the GUI close the display opened for the clipboard.
8792 * After restoring the title, because that will need the display. */
8793 if (gui.starting)
8794 clear_xterm_clip();
8795 #endif
8796 #ifdef WIN3264
8798 * Check if this is allowed now.
8800 if (can_end_termcap_mode(FALSE) == TRUE)
8801 #endif
8802 stoptermcap(); /* stop termcap mode */
8804 free_termoptions();
8807 void
8808 free_termoptions()
8810 struct vimoption *p;
8812 for (p = &options[0]; p->fullname != NULL; p++)
8813 if (istermoption(p))
8815 if (p->flags & P_ALLOCED)
8816 free_string_option(*(char_u **)(p->var));
8817 if (p->flags & P_DEF_ALLOCED)
8818 free_string_option(p->def_val[VI_DEFAULT]);
8819 *(char_u **)(p->var) = empty_option;
8820 p->def_val[VI_DEFAULT] = empty_option;
8821 p->flags &= ~(P_ALLOCED|P_DEF_ALLOCED);
8823 clear_termcodes();
8827 * Set the terminal option defaults to the current value.
8828 * Used after setting the terminal name.
8830 void
8831 set_term_defaults()
8833 struct vimoption *p;
8835 for (p = &options[0]; p->fullname != NULL; p++)
8837 if (istermoption(p) && p->def_val[VI_DEFAULT] != *(char_u **)(p->var))
8839 if (p->flags & P_DEF_ALLOCED)
8841 free_string_option(p->def_val[VI_DEFAULT]);
8842 p->flags &= ~P_DEF_ALLOCED;
8844 p->def_val[VI_DEFAULT] = *(char_u **)(p->var);
8845 if (p->flags & P_ALLOCED)
8847 p->flags |= P_DEF_ALLOCED;
8848 p->flags &= ~P_ALLOCED; /* don't free the value now */
8855 * return TRUE if 'p' starts with 't_'
8857 static int
8858 istermoption(p)
8859 struct vimoption *p;
8861 return (p->fullname[0] == 't' && p->fullname[1] == '_');
8865 * Compute columns for ruler and shown command. 'sc_col' is also used to
8866 * decide what the maximum length of a message on the status line can be.
8867 * If there is a status line for the last window, 'sc_col' is independent
8868 * of 'ru_col'.
8871 #define COL_RULER 17 /* columns needed by standard ruler */
8873 void
8874 comp_col()
8876 #if defined(FEAT_CMDL_INFO) && defined(FEAT_WINDOWS)
8877 int last_has_status = (p_ls == 2 || (p_ls == 1 && firstwin != lastwin));
8879 sc_col = 0;
8880 ru_col = 0;
8881 if (p_ru)
8883 #ifdef FEAT_STL_OPT
8884 ru_col = (ru_wid ? ru_wid : COL_RULER) + 1;
8885 #else
8886 ru_col = COL_RULER + 1;
8887 #endif
8888 /* no last status line, adjust sc_col */
8889 if (!last_has_status)
8890 sc_col = ru_col;
8892 if (p_sc)
8894 sc_col += SHOWCMD_COLS;
8895 if (!p_ru || last_has_status) /* no need for separating space */
8896 ++sc_col;
8898 sc_col = Columns - sc_col;
8899 ru_col = Columns - ru_col;
8900 if (sc_col <= 0) /* screen too narrow, will become a mess */
8901 sc_col = 1;
8902 if (ru_col <= 0)
8903 ru_col = 1;
8904 #else
8905 sc_col = Columns;
8906 ru_col = Columns;
8907 #endif
8911 * Get pointer to option variable, depending on local or global scope.
8913 static char_u *
8914 get_varp_scope(p, opt_flags)
8915 struct vimoption *p;
8916 int opt_flags;
8918 if ((opt_flags & OPT_GLOBAL) && p->indir != PV_NONE)
8920 if (p->var == VAR_WIN)
8921 return (char_u *)GLOBAL_WO(get_varp(p));
8922 return p->var;
8924 if ((opt_flags & OPT_LOCAL) && ((int)p->indir & PV_BOTH))
8926 switch ((int)p->indir)
8928 #ifdef FEAT_QUICKFIX
8929 case PV_EFM: return (char_u *)&(curbuf->b_p_efm);
8930 case PV_GP: return (char_u *)&(curbuf->b_p_gp);
8931 case PV_MP: return (char_u *)&(curbuf->b_p_mp);
8932 #endif
8933 case PV_EP: return (char_u *)&(curbuf->b_p_ep);
8934 case PV_KP: return (char_u *)&(curbuf->b_p_kp);
8935 case PV_PATH: return (char_u *)&(curbuf->b_p_path);
8936 case PV_AR: return (char_u *)&(curbuf->b_p_ar);
8937 case PV_TAGS: return (char_u *)&(curbuf->b_p_tags);
8938 #ifdef FEAT_FIND_ID
8939 case PV_DEF: return (char_u *)&(curbuf->b_p_def);
8940 case PV_INC: return (char_u *)&(curbuf->b_p_inc);
8941 #endif
8942 #ifdef FEAT_INS_EXPAND
8943 case PV_DICT: return (char_u *)&(curbuf->b_p_dict);
8944 case PV_TSR: return (char_u *)&(curbuf->b_p_tsr);
8945 #endif
8946 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
8947 case PV_BEXPR: return (char_u *)&(curbuf->b_p_bexpr);
8948 #endif
8949 #ifdef FEAT_STL_OPT
8950 case PV_STL: return (char_u *)&(curwin->w_p_stl);
8951 #endif
8953 return NULL; /* "cannot happen" */
8955 return get_varp(p);
8959 * Get pointer to option variable.
8961 static char_u *
8962 get_varp(p)
8963 struct vimoption *p;
8965 /* hidden option, always return NULL */
8966 if (p->var == NULL)
8967 return NULL;
8969 switch ((int)p->indir)
8971 case PV_NONE: return p->var;
8973 /* global option with local value: use local value if it's been set */
8974 case PV_EP: return *curbuf->b_p_ep != NUL
8975 ? (char_u *)&curbuf->b_p_ep : p->var;
8976 case PV_KP: return *curbuf->b_p_kp != NUL
8977 ? (char_u *)&curbuf->b_p_kp : p->var;
8978 case PV_PATH: return *curbuf->b_p_path != NUL
8979 ? (char_u *)&(curbuf->b_p_path) : p->var;
8980 case PV_AR: return curbuf->b_p_ar >= 0
8981 ? (char_u *)&(curbuf->b_p_ar) : p->var;
8982 case PV_TAGS: return *curbuf->b_p_tags != NUL
8983 ? (char_u *)&(curbuf->b_p_tags) : p->var;
8984 #ifdef FEAT_FIND_ID
8985 case PV_DEF: return *curbuf->b_p_def != NUL
8986 ? (char_u *)&(curbuf->b_p_def) : p->var;
8987 case PV_INC: return *curbuf->b_p_inc != NUL
8988 ? (char_u *)&(curbuf->b_p_inc) : p->var;
8989 #endif
8990 #ifdef FEAT_INS_EXPAND
8991 case PV_DICT: return *curbuf->b_p_dict != NUL
8992 ? (char_u *)&(curbuf->b_p_dict) : p->var;
8993 case PV_TSR: return *curbuf->b_p_tsr != NUL
8994 ? (char_u *)&(curbuf->b_p_tsr) : p->var;
8995 #endif
8996 #ifdef FEAT_QUICKFIX
8997 case PV_EFM: return *curbuf->b_p_efm != NUL
8998 ? (char_u *)&(curbuf->b_p_efm) : p->var;
8999 case PV_GP: return *curbuf->b_p_gp != NUL
9000 ? (char_u *)&(curbuf->b_p_gp) : p->var;
9001 case PV_MP: return *curbuf->b_p_mp != NUL
9002 ? (char_u *)&(curbuf->b_p_mp) : p->var;
9003 #endif
9004 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9005 case PV_BEXPR: return *curbuf->b_p_bexpr != NUL
9006 ? (char_u *)&(curbuf->b_p_bexpr) : p->var;
9007 #endif
9008 #ifdef FEAT_STL_OPT
9009 case PV_STL: return *curwin->w_p_stl != NUL
9010 ? (char_u *)&(curwin->w_p_stl) : p->var;
9011 #endif
9013 #ifdef FEAT_ARABIC
9014 case PV_ARAB: return (char_u *)&(curwin->w_p_arab);
9015 #endif
9016 case PV_LIST: return (char_u *)&(curwin->w_p_list);
9017 #ifdef FEAT_SPELL
9018 case PV_SPELL: return (char_u *)&(curwin->w_p_spell);
9019 #endif
9020 #ifdef FEAT_SYN_HL
9021 case PV_CUC: return (char_u *)&(curwin->w_p_cuc);
9022 case PV_CUL: return (char_u *)&(curwin->w_p_cul);
9023 #endif
9024 #ifdef FEAT_DIFF
9025 case PV_DIFF: return (char_u *)&(curwin->w_p_diff);
9026 #endif
9027 #ifdef FEAT_FOLDING
9028 case PV_FDC: return (char_u *)&(curwin->w_p_fdc);
9029 case PV_FEN: return (char_u *)&(curwin->w_p_fen);
9030 case PV_FDI: return (char_u *)&(curwin->w_p_fdi);
9031 case PV_FDL: return (char_u *)&(curwin->w_p_fdl);
9032 case PV_FDM: return (char_u *)&(curwin->w_p_fdm);
9033 case PV_FML: return (char_u *)&(curwin->w_p_fml);
9034 case PV_FDN: return (char_u *)&(curwin->w_p_fdn);
9035 # ifdef FEAT_EVAL
9036 case PV_FDE: return (char_u *)&(curwin->w_p_fde);
9037 case PV_FDT: return (char_u *)&(curwin->w_p_fdt);
9038 # endif
9039 case PV_FMR: return (char_u *)&(curwin->w_p_fmr);
9040 #endif
9041 case PV_NU: return (char_u *)&(curwin->w_p_nu);
9042 #ifdef FEAT_LINEBREAK
9043 case PV_NUW: return (char_u *)&(curwin->w_p_nuw);
9044 #endif
9045 #ifdef FEAT_WINDOWS
9046 case PV_WFH: return (char_u *)&(curwin->w_p_wfh);
9047 #endif
9048 #ifdef FEAT_VERTSPLIT
9049 case PV_WFW: return (char_u *)&(curwin->w_p_wfw);
9050 #endif
9051 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
9052 case PV_PVW: return (char_u *)&(curwin->w_p_pvw);
9053 #endif
9054 #ifdef FEAT_RIGHTLEFT
9055 case PV_RL: return (char_u *)&(curwin->w_p_rl);
9056 case PV_RLC: return (char_u *)&(curwin->w_p_rlc);
9057 #endif
9058 case PV_SCROLL: return (char_u *)&(curwin->w_p_scr);
9059 case PV_WRAP: return (char_u *)&(curwin->w_p_wrap);
9060 #ifdef FEAT_LINEBREAK
9061 case PV_LBR: return (char_u *)&(curwin->w_p_lbr);
9062 #endif
9063 #ifdef FEAT_SCROLLBIND
9064 case PV_SCBIND: return (char_u *)&(curwin->w_p_scb);
9065 #endif
9067 case PV_AI: return (char_u *)&(curbuf->b_p_ai);
9068 case PV_BIN: return (char_u *)&(curbuf->b_p_bin);
9069 #ifdef FEAT_MBYTE
9070 case PV_BOMB: return (char_u *)&(curbuf->b_p_bomb);
9071 #endif
9072 #if defined(FEAT_QUICKFIX)
9073 case PV_BH: return (char_u *)&(curbuf->b_p_bh);
9074 case PV_BT: return (char_u *)&(curbuf->b_p_bt);
9075 #endif
9076 case PV_BL: return (char_u *)&(curbuf->b_p_bl);
9077 case PV_CI: return (char_u *)&(curbuf->b_p_ci);
9078 #ifdef FEAT_CINDENT
9079 case PV_CIN: return (char_u *)&(curbuf->b_p_cin);
9080 case PV_CINK: return (char_u *)&(curbuf->b_p_cink);
9081 case PV_CINO: return (char_u *)&(curbuf->b_p_cino);
9082 #endif
9083 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
9084 case PV_CINW: return (char_u *)&(curbuf->b_p_cinw);
9085 #endif
9086 #ifdef FEAT_COMMENTS
9087 case PV_COM: return (char_u *)&(curbuf->b_p_com);
9088 #endif
9089 #ifdef FEAT_FOLDING
9090 case PV_CMS: return (char_u *)&(curbuf->b_p_cms);
9091 #endif
9092 #ifdef FEAT_INS_EXPAND
9093 case PV_CPT: return (char_u *)&(curbuf->b_p_cpt);
9094 #endif
9095 #ifdef FEAT_COMPL_FUNC
9096 case PV_CFU: return (char_u *)&(curbuf->b_p_cfu);
9097 case PV_OFU: return (char_u *)&(curbuf->b_p_ofu);
9098 #endif
9099 case PV_EOL: return (char_u *)&(curbuf->b_p_eol);
9100 case PV_ET: return (char_u *)&(curbuf->b_p_et);
9101 #ifdef FEAT_MBYTE
9102 case PV_FENC: return (char_u *)&(curbuf->b_p_fenc);
9103 #endif
9104 case PV_FF: return (char_u *)&(curbuf->b_p_ff);
9105 #ifdef FEAT_AUTOCMD
9106 case PV_FT: return (char_u *)&(curbuf->b_p_ft);
9107 #endif
9108 case PV_FO: return (char_u *)&(curbuf->b_p_fo);
9109 case PV_FLP: return (char_u *)&(curbuf->b_p_flp);
9110 case PV_IMI: return (char_u *)&(curbuf->b_p_iminsert);
9111 case PV_IMS: return (char_u *)&(curbuf->b_p_imsearch);
9112 case PV_INF: return (char_u *)&(curbuf->b_p_inf);
9113 case PV_ISK: return (char_u *)&(curbuf->b_p_isk);
9114 #ifdef FEAT_FIND_ID
9115 # ifdef FEAT_EVAL
9116 case PV_INEX: return (char_u *)&(curbuf->b_p_inex);
9117 # endif
9118 #endif
9119 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
9120 case PV_INDE: return (char_u *)&(curbuf->b_p_inde);
9121 case PV_INDK: return (char_u *)&(curbuf->b_p_indk);
9122 #endif
9123 #ifdef FEAT_EVAL
9124 case PV_FEX: return (char_u *)&(curbuf->b_p_fex);
9125 #endif
9126 #ifdef FEAT_CRYPT
9127 case PV_KEY: return (char_u *)&(curbuf->b_p_key);
9128 #endif
9129 #ifdef FEAT_LISP
9130 case PV_LISP: return (char_u *)&(curbuf->b_p_lisp);
9131 #endif
9132 case PV_ML: return (char_u *)&(curbuf->b_p_ml);
9133 case PV_MPS: return (char_u *)&(curbuf->b_p_mps);
9134 case PV_MA: return (char_u *)&(curbuf->b_p_ma);
9135 case PV_MOD: return (char_u *)&(curbuf->b_changed);
9136 case PV_NF: return (char_u *)&(curbuf->b_p_nf);
9137 #ifdef FEAT_OSFILETYPE
9138 case PV_OFT: return (char_u *)&(curbuf->b_p_oft);
9139 #endif
9140 case PV_PI: return (char_u *)&(curbuf->b_p_pi);
9141 #ifdef FEAT_TEXTOBJ
9142 case PV_QE: return (char_u *)&(curbuf->b_p_qe);
9143 #endif
9144 case PV_RO: return (char_u *)&(curbuf->b_p_ro);
9145 #ifdef FEAT_SMARTINDENT
9146 case PV_SI: return (char_u *)&(curbuf->b_p_si);
9147 #endif
9148 #ifndef SHORT_FNAME
9149 case PV_SN: return (char_u *)&(curbuf->b_p_sn);
9150 #endif
9151 case PV_STS: return (char_u *)&(curbuf->b_p_sts);
9152 #ifdef FEAT_SEARCHPATH
9153 case PV_SUA: return (char_u *)&(curbuf->b_p_sua);
9154 #endif
9155 case PV_SWF: return (char_u *)&(curbuf->b_p_swf);
9156 #ifdef FEAT_SYN_HL
9157 case PV_SMC: return (char_u *)&(curbuf->b_p_smc);
9158 case PV_SYN: return (char_u *)&(curbuf->b_p_syn);
9159 #endif
9160 #ifdef FEAT_SPELL
9161 case PV_SPC: return (char_u *)&(curbuf->b_p_spc);
9162 case PV_SPF: return (char_u *)&(curbuf->b_p_spf);
9163 case PV_SPL: return (char_u *)&(curbuf->b_p_spl);
9164 #endif
9165 case PV_SW: return (char_u *)&(curbuf->b_p_sw);
9166 case PV_TS: return (char_u *)&(curbuf->b_p_ts);
9167 case PV_TW: return (char_u *)&(curbuf->b_p_tw);
9168 case PV_TX: return (char_u *)&(curbuf->b_p_tx);
9169 case PV_WM: return (char_u *)&(curbuf->b_p_wm);
9170 #ifdef FEAT_KEYMAP
9171 case PV_KMAP: return (char_u *)&(curbuf->b_p_keymap);
9172 #endif
9173 default: EMSG(_("E356: get_varp ERROR"));
9175 /* always return a valid pointer to avoid a crash! */
9176 return (char_u *)&(curbuf->b_p_wm);
9180 * Get the value of 'equalprg', either the buffer-local one or the global one.
9182 char_u *
9183 get_equalprg()
9185 if (*curbuf->b_p_ep == NUL)
9186 return p_ep;
9187 return curbuf->b_p_ep;
9190 #if defined(FEAT_WINDOWS) || defined(PROTO)
9192 * Copy options from one window to another.
9193 * Used when splitting a window.
9195 void
9196 win_copy_options(wp_from, wp_to)
9197 win_T *wp_from;
9198 win_T *wp_to;
9200 copy_winopt(&wp_from->w_onebuf_opt, &wp_to->w_onebuf_opt);
9201 copy_winopt(&wp_from->w_allbuf_opt, &wp_to->w_allbuf_opt);
9202 # ifdef FEAT_RIGHTLEFT
9203 # ifdef FEAT_FKMAP
9204 /* Is this right? */
9205 wp_to->w_farsi = wp_from->w_farsi;
9206 # endif
9207 # endif
9209 #endif
9212 * Copy the options from one winopt_T to another.
9213 * Doesn't free the old option values in "to", use clear_winopt() for that.
9214 * The 'scroll' option is not copied, because it depends on the window height.
9215 * The 'previewwindow' option is reset, there can be only one preview window.
9217 void
9218 copy_winopt(from, to)
9219 winopt_T *from;
9220 winopt_T *to;
9222 #ifdef FEAT_ARABIC
9223 to->wo_arab = from->wo_arab;
9224 #endif
9225 to->wo_list = from->wo_list;
9226 to->wo_nu = from->wo_nu;
9227 #ifdef FEAT_LINEBREAK
9228 to->wo_nuw = from->wo_nuw;
9229 #endif
9230 #ifdef FEAT_RIGHTLEFT
9231 to->wo_rl = from->wo_rl;
9232 to->wo_rlc = vim_strsave(from->wo_rlc);
9233 #endif
9234 #ifdef FEAT_STL_OPT
9235 to->wo_stl = vim_strsave(from->wo_stl);
9236 #endif
9237 to->wo_wrap = from->wo_wrap;
9238 #ifdef FEAT_LINEBREAK
9239 to->wo_lbr = from->wo_lbr;
9240 #endif
9241 #ifdef FEAT_SCROLLBIND
9242 to->wo_scb = from->wo_scb;
9243 #endif
9244 #ifdef FEAT_SPELL
9245 to->wo_spell = from->wo_spell;
9246 #endif
9247 #ifdef FEAT_SYN_HL
9248 to->wo_cuc = from->wo_cuc;
9249 to->wo_cul = from->wo_cul;
9250 #endif
9251 #ifdef FEAT_DIFF
9252 to->wo_diff = from->wo_diff;
9253 #endif
9254 #ifdef FEAT_FOLDING
9255 to->wo_fdc = from->wo_fdc;
9256 to->wo_fen = from->wo_fen;
9257 to->wo_fdi = vim_strsave(from->wo_fdi);
9258 to->wo_fml = from->wo_fml;
9259 to->wo_fdl = from->wo_fdl;
9260 to->wo_fdm = vim_strsave(from->wo_fdm);
9261 to->wo_fdn = from->wo_fdn;
9262 # ifdef FEAT_EVAL
9263 to->wo_fde = vim_strsave(from->wo_fde);
9264 to->wo_fdt = vim_strsave(from->wo_fdt);
9265 # endif
9266 to->wo_fmr = vim_strsave(from->wo_fmr);
9267 #endif
9268 check_winopt(to); /* don't want NULL pointers */
9272 * Check string options in a window for a NULL value.
9274 void
9275 check_win_options(win)
9276 win_T *win;
9278 check_winopt(&win->w_onebuf_opt);
9279 check_winopt(&win->w_allbuf_opt);
9283 * Check for NULL pointers in a winopt_T and replace them with empty_option.
9285 /*ARGSUSED*/
9286 void
9287 check_winopt(wop)
9288 winopt_T *wop;
9290 #ifdef FEAT_FOLDING
9291 check_string_option(&wop->wo_fdi);
9292 check_string_option(&wop->wo_fdm);
9293 # ifdef FEAT_EVAL
9294 check_string_option(&wop->wo_fde);
9295 check_string_option(&wop->wo_fdt);
9296 # endif
9297 check_string_option(&wop->wo_fmr);
9298 #endif
9299 #ifdef FEAT_RIGHTLEFT
9300 check_string_option(&wop->wo_rlc);
9301 #endif
9302 #ifdef FEAT_STL_OPT
9303 check_string_option(&wop->wo_stl);
9304 #endif
9308 * Free the allocated memory inside a winopt_T.
9310 /*ARGSUSED*/
9311 void
9312 clear_winopt(wop)
9313 winopt_T *wop;
9315 #ifdef FEAT_FOLDING
9316 clear_string_option(&wop->wo_fdi);
9317 clear_string_option(&wop->wo_fdm);
9318 # ifdef FEAT_EVAL
9319 clear_string_option(&wop->wo_fde);
9320 clear_string_option(&wop->wo_fdt);
9321 # endif
9322 clear_string_option(&wop->wo_fmr);
9323 #endif
9324 #ifdef FEAT_RIGHTLEFT
9325 clear_string_option(&wop->wo_rlc);
9326 #endif
9327 #ifdef FEAT_STL_OPT
9328 clear_string_option(&wop->wo_stl);
9329 #endif
9333 * Copy global option values to local options for one buffer.
9334 * Used when creating a new buffer and sometimes when entering a buffer.
9335 * flags:
9336 * BCO_ENTER We will enter the buf buffer.
9337 * BCO_ALWAYS Always copy the options, but only set b_p_initialized when
9338 * appropriate.
9339 * BCO_NOHELP Don't copy the values to a help buffer.
9341 void
9342 buf_copy_options(buf, flags)
9343 buf_T *buf;
9344 int flags;
9346 int should_copy = TRUE;
9347 char_u *save_p_isk = NULL; /* init for GCC */
9348 int dont_do_help;
9349 int did_isk = FALSE;
9352 * Don't do anything of the buffer is invalid.
9354 if (buf == NULL || !buf_valid(buf))
9355 return;
9358 * Skip this when the option defaults have not been set yet. Happens when
9359 * main() allocates the first buffer.
9361 if (p_cpo != NULL)
9364 * Always copy when entering and 'cpo' contains 'S'.
9365 * Don't copy when already initialized.
9366 * Don't copy when 'cpo' contains 's' and not entering.
9367 * 'S' BCO_ENTER initialized 's' should_copy
9368 * yes yes X X TRUE
9369 * yes no yes X FALSE
9370 * no X yes X FALSE
9371 * X no no yes FALSE
9372 * X no no no TRUE
9373 * no yes no X TRUE
9375 if ((vim_strchr(p_cpo, CPO_BUFOPTGLOB) == NULL || !(flags & BCO_ENTER))
9376 && (buf->b_p_initialized
9377 || (!(flags & BCO_ENTER)
9378 && vim_strchr(p_cpo, CPO_BUFOPT) != NULL)))
9379 should_copy = FALSE;
9381 if (should_copy || (flags & BCO_ALWAYS))
9383 /* Don't copy the options specific to a help buffer when
9384 * BCO_NOHELP is given or the options were initialized already
9385 * (jumping back to a help file with CTRL-T or CTRL-O) */
9386 dont_do_help = ((flags & BCO_NOHELP) && buf->b_help)
9387 || buf->b_p_initialized;
9388 if (dont_do_help) /* don't free b_p_isk */
9390 save_p_isk = buf->b_p_isk;
9391 buf->b_p_isk = NULL;
9394 * Always free the allocated strings.
9395 * If not already initialized, set 'readonly' and copy 'fileformat'.
9397 if (!buf->b_p_initialized)
9399 free_buf_options(buf, TRUE);
9400 buf->b_p_ro = FALSE; /* don't copy readonly */
9401 buf->b_p_tx = p_tx;
9402 #ifdef FEAT_MBYTE
9403 buf->b_p_fenc = vim_strsave(p_fenc);
9404 #endif
9405 buf->b_p_ff = vim_strsave(p_ff);
9406 #if defined(FEAT_QUICKFIX)
9407 buf->b_p_bh = empty_option;
9408 buf->b_p_bt = empty_option;
9409 #endif
9411 else
9412 free_buf_options(buf, FALSE);
9414 buf->b_p_ai = p_ai;
9415 buf->b_p_ai_nopaste = p_ai_nopaste;
9416 buf->b_p_sw = p_sw;
9417 buf->b_p_tw = p_tw;
9418 buf->b_p_tw_nopaste = p_tw_nopaste;
9419 buf->b_p_tw_nobin = p_tw_nobin;
9420 buf->b_p_wm = p_wm;
9421 buf->b_p_wm_nopaste = p_wm_nopaste;
9422 buf->b_p_wm_nobin = p_wm_nobin;
9423 buf->b_p_bin = p_bin;
9424 #ifdef FEAT_MBYTE
9425 buf->b_p_bomb = p_bomb;
9426 #endif
9427 buf->b_p_et = p_et;
9428 buf->b_p_et_nobin = p_et_nobin;
9429 buf->b_p_ml = p_ml;
9430 buf->b_p_ml_nobin = p_ml_nobin;
9431 buf->b_p_inf = p_inf;
9432 buf->b_p_swf = p_swf;
9433 #ifdef FEAT_INS_EXPAND
9434 buf->b_p_cpt = vim_strsave(p_cpt);
9435 #endif
9436 #ifdef FEAT_COMPL_FUNC
9437 buf->b_p_cfu = vim_strsave(p_cfu);
9438 buf->b_p_ofu = vim_strsave(p_ofu);
9439 #endif
9440 buf->b_p_sts = p_sts;
9441 buf->b_p_sts_nopaste = p_sts_nopaste;
9442 #ifndef SHORT_FNAME
9443 buf->b_p_sn = p_sn;
9444 #endif
9445 #ifdef FEAT_COMMENTS
9446 buf->b_p_com = vim_strsave(p_com);
9447 #endif
9448 #ifdef FEAT_FOLDING
9449 buf->b_p_cms = vim_strsave(p_cms);
9450 #endif
9451 buf->b_p_fo = vim_strsave(p_fo);
9452 buf->b_p_flp = vim_strsave(p_flp);
9453 buf->b_p_nf = vim_strsave(p_nf);
9454 buf->b_p_mps = vim_strsave(p_mps);
9455 #ifdef FEAT_SMARTINDENT
9456 buf->b_p_si = p_si;
9457 #endif
9458 buf->b_p_ci = p_ci;
9459 #ifdef FEAT_CINDENT
9460 buf->b_p_cin = p_cin;
9461 buf->b_p_cink = vim_strsave(p_cink);
9462 buf->b_p_cino = vim_strsave(p_cino);
9463 #endif
9464 #ifdef FEAT_AUTOCMD
9465 /* Don't copy 'filetype', it must be detected */
9466 buf->b_p_ft = empty_option;
9467 #endif
9468 #ifdef FEAT_OSFILETYPE
9469 buf->b_p_oft = vim_strsave(p_oft);
9470 #endif
9471 buf->b_p_pi = p_pi;
9472 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
9473 buf->b_p_cinw = vim_strsave(p_cinw);
9474 #endif
9475 #ifdef FEAT_LISP
9476 buf->b_p_lisp = p_lisp;
9477 #endif
9478 #ifdef FEAT_SYN_HL
9479 /* Don't copy 'syntax', it must be set */
9480 buf->b_p_syn = empty_option;
9481 buf->b_p_smc = p_smc;
9482 #endif
9483 #ifdef FEAT_SPELL
9484 buf->b_p_spc = vim_strsave(p_spc);
9485 (void)compile_cap_prog(buf);
9486 buf->b_p_spf = vim_strsave(p_spf);
9487 buf->b_p_spl = vim_strsave(p_spl);
9488 #endif
9489 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
9490 buf->b_p_inde = vim_strsave(p_inde);
9491 buf->b_p_indk = vim_strsave(p_indk);
9492 #endif
9493 #if defined(FEAT_EVAL)
9494 buf->b_p_fex = vim_strsave(p_fex);
9495 #endif
9496 #ifdef FEAT_CRYPT
9497 buf->b_p_key = vim_strsave(p_key);
9498 #endif
9499 #ifdef FEAT_SEARCHPATH
9500 buf->b_p_sua = vim_strsave(p_sua);
9501 #endif
9502 #ifdef FEAT_KEYMAP
9503 buf->b_p_keymap = vim_strsave(p_keymap);
9504 buf->b_kmap_state |= KEYMAP_INIT;
9505 #endif
9506 /* This isn't really an option, but copying the langmap and IME
9507 * state from the current buffer is better than resetting it. */
9508 buf->b_p_iminsert = p_iminsert;
9509 buf->b_p_imsearch = p_imsearch;
9511 /* options that are normally global but also have a local value
9512 * are not copied, start using the global value */
9513 buf->b_p_ar = -1;
9514 #ifdef FEAT_QUICKFIX
9515 buf->b_p_gp = empty_option;
9516 buf->b_p_mp = empty_option;
9517 buf->b_p_efm = empty_option;
9518 #endif
9519 buf->b_p_ep = empty_option;
9520 buf->b_p_kp = empty_option;
9521 buf->b_p_path = empty_option;
9522 buf->b_p_tags = empty_option;
9523 #ifdef FEAT_FIND_ID
9524 buf->b_p_def = empty_option;
9525 buf->b_p_inc = empty_option;
9526 # ifdef FEAT_EVAL
9527 buf->b_p_inex = vim_strsave(p_inex);
9528 # endif
9529 #endif
9530 #ifdef FEAT_INS_EXPAND
9531 buf->b_p_dict = empty_option;
9532 buf->b_p_tsr = empty_option;
9533 #endif
9534 #ifdef FEAT_TEXTOBJ
9535 buf->b_p_qe = vim_strsave(p_qe);
9536 #endif
9537 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9538 buf->b_p_bexpr = empty_option;
9539 #endif
9542 * Don't copy the options set by ex_help(), use the saved values,
9543 * when going from a help buffer to a non-help buffer.
9544 * Don't touch these at all when BCO_NOHELP is used and going from
9545 * or to a help buffer.
9547 if (dont_do_help)
9548 buf->b_p_isk = save_p_isk;
9549 else
9551 buf->b_p_isk = vim_strsave(p_isk);
9552 did_isk = TRUE;
9553 buf->b_p_ts = p_ts;
9554 buf->b_help = FALSE;
9555 #ifdef FEAT_QUICKFIX
9556 if (buf->b_p_bt[0] == 'h')
9557 clear_string_option(&buf->b_p_bt);
9558 #endif
9559 buf->b_p_ma = p_ma;
9564 * When the options should be copied (ignoring BCO_ALWAYS), set the
9565 * flag that indicates that the options have been initialized.
9567 if (should_copy)
9568 buf->b_p_initialized = TRUE;
9571 check_buf_options(buf); /* make sure we don't have NULLs */
9572 if (did_isk)
9573 (void)buf_init_chartab(buf, FALSE);
9577 * Reset the 'modifiable' option and its default value.
9579 void
9580 reset_modifiable()
9582 int opt_idx;
9584 curbuf->b_p_ma = FALSE;
9585 p_ma = FALSE;
9586 opt_idx = findoption((char_u *)"ma");
9587 if (opt_idx >= 0)
9588 options[opt_idx].def_val[VI_DEFAULT] = FALSE;
9592 * Set the global value for 'iminsert' to the local value.
9594 void
9595 set_iminsert_global()
9597 p_iminsert = curbuf->b_p_iminsert;
9601 * Set the global value for 'imsearch' to the local value.
9603 void
9604 set_imsearch_global()
9606 p_imsearch = curbuf->b_p_imsearch;
9609 #if defined(FEAT_CMDL_COMPL) || defined(PROTO)
9610 static int expand_option_idx = -1;
9611 static char_u expand_option_name[5] = {'t', '_', NUL, NUL, NUL};
9612 static int expand_option_flags = 0;
9614 void
9615 set_context_in_set_cmd(xp, arg, opt_flags)
9616 expand_T *xp;
9617 char_u *arg;
9618 int opt_flags; /* OPT_GLOBAL and/or OPT_LOCAL */
9620 int nextchar;
9621 long_u flags = 0; /* init for GCC */
9622 int opt_idx = 0; /* init for GCC */
9623 char_u *p;
9624 char_u *s;
9625 int is_term_option = FALSE;
9626 int key;
9628 expand_option_flags = opt_flags;
9630 xp->xp_context = EXPAND_SETTINGS;
9631 if (*arg == NUL)
9633 xp->xp_pattern = arg;
9634 return;
9636 p = arg + STRLEN(arg) - 1;
9637 if (*p == ' ' && *(p - 1) != '\\')
9639 xp->xp_pattern = p + 1;
9640 return;
9642 while (p > arg)
9644 s = p;
9645 /* count number of backslashes before ' ' or ',' */
9646 if (*p == ' ' || *p == ',')
9648 while (s > arg && *(s - 1) == '\\')
9649 --s;
9651 /* break at a space with an even number of backslashes */
9652 if (*p == ' ' && ((p - s) & 1) == 0)
9654 ++p;
9655 break;
9657 --p;
9659 if (STRNCMP(p, "no", 2) == 0)
9661 xp->xp_context = EXPAND_BOOL_SETTINGS;
9662 p += 2;
9664 if (STRNCMP(p, "inv", 3) == 0)
9666 xp->xp_context = EXPAND_BOOL_SETTINGS;
9667 p += 3;
9669 xp->xp_pattern = arg = p;
9670 if (*arg == '<')
9672 while (*p != '>')
9673 if (*p++ == NUL) /* expand terminal option name */
9674 return;
9675 key = get_special_key_code(arg + 1);
9676 if (key == 0) /* unknown name */
9678 xp->xp_context = EXPAND_NOTHING;
9679 return;
9681 nextchar = *++p;
9682 is_term_option = TRUE;
9683 expand_option_name[2] = KEY2TERMCAP0(key);
9684 expand_option_name[3] = KEY2TERMCAP1(key);
9686 else
9688 if (p[0] == 't' && p[1] == '_')
9690 p += 2;
9691 if (*p != NUL)
9692 ++p;
9693 if (*p == NUL)
9694 return; /* expand option name */
9695 nextchar = *++p;
9696 is_term_option = TRUE;
9697 expand_option_name[2] = p[-2];
9698 expand_option_name[3] = p[-1];
9700 else
9702 /* Allow * wildcard */
9703 while (ASCII_ISALNUM(*p) || *p == '_' || *p == '*')
9704 p++;
9705 if (*p == NUL)
9706 return;
9707 nextchar = *p;
9708 *p = NUL;
9709 opt_idx = findoption(arg);
9710 *p = nextchar;
9711 if (opt_idx == -1 || options[opt_idx].var == NULL)
9713 xp->xp_context = EXPAND_NOTHING;
9714 return;
9716 flags = options[opt_idx].flags;
9717 if (flags & P_BOOL)
9719 xp->xp_context = EXPAND_NOTHING;
9720 return;
9724 /* handle "-=" and "+=" */
9725 if ((nextchar == '-' || nextchar == '+' || nextchar == '^') && p[1] == '=')
9727 ++p;
9728 nextchar = '=';
9730 if ((nextchar != '=' && nextchar != ':')
9731 || xp->xp_context == EXPAND_BOOL_SETTINGS)
9733 xp->xp_context = EXPAND_UNSUCCESSFUL;
9734 return;
9736 if (xp->xp_context != EXPAND_BOOL_SETTINGS && p[1] == NUL)
9738 xp->xp_context = EXPAND_OLD_SETTING;
9739 if (is_term_option)
9740 expand_option_idx = -1;
9741 else
9742 expand_option_idx = opt_idx;
9743 xp->xp_pattern = p + 1;
9744 return;
9746 xp->xp_context = EXPAND_NOTHING;
9747 if (is_term_option || (flags & P_NUM))
9748 return;
9750 xp->xp_pattern = p + 1;
9752 if (flags & P_EXPAND)
9754 p = options[opt_idx].var;
9755 if (p == (char_u *)&p_bdir
9756 || p == (char_u *)&p_dir
9757 || p == (char_u *)&p_path
9758 || p == (char_u *)&p_rtp
9759 #ifdef FEAT_SEARCHPATH
9760 || p == (char_u *)&p_cdpath
9761 #endif
9762 #ifdef FEAT_SESSION
9763 || p == (char_u *)&p_vdir
9764 #endif
9767 xp->xp_context = EXPAND_DIRECTORIES;
9768 if (p == (char_u *)&p_path
9769 #ifdef FEAT_SEARCHPATH
9770 || p == (char_u *)&p_cdpath
9771 #endif
9773 xp->xp_backslash = XP_BS_THREE;
9774 else
9775 xp->xp_backslash = XP_BS_ONE;
9777 else
9779 xp->xp_context = EXPAND_FILES;
9780 /* for 'tags' need three backslashes for a space */
9781 if (p == (char_u *)&p_tags)
9782 xp->xp_backslash = XP_BS_THREE;
9783 else
9784 xp->xp_backslash = XP_BS_ONE;
9788 /* For an option that is a list of file names, find the start of the
9789 * last file name. */
9790 for (p = arg + STRLEN(arg) - 1; p > xp->xp_pattern; --p)
9792 /* count number of backslashes before ' ' or ',' */
9793 if (*p == ' ' || *p == ',')
9795 s = p;
9796 while (s > xp->xp_pattern && *(s - 1) == '\\')
9797 --s;
9798 if ((*p == ' ' && (xp->xp_backslash == XP_BS_THREE && (p - s) < 3))
9799 || (*p == ',' && (flags & P_COMMA) && ((p - s) & 1) == 0))
9801 xp->xp_pattern = p + 1;
9802 break;
9806 #ifdef FEAT_SPELL
9807 /* for 'spellsuggest' start at "file:" */
9808 if (options[opt_idx].var == (char_u *)&p_sps
9809 && STRNCMP(p, "file:", 5) == 0)
9811 xp->xp_pattern = p + 5;
9812 break;
9814 #endif
9817 return;
9821 ExpandSettings(xp, regmatch, num_file, file)
9822 expand_T *xp;
9823 regmatch_T *regmatch;
9824 int *num_file;
9825 char_u ***file;
9827 int num_normal = 0; /* Nr of matching non-term-code settings */
9828 int num_term = 0; /* Nr of matching terminal code settings */
9829 int opt_idx;
9830 int match;
9831 int count = 0;
9832 char_u *str;
9833 int loop;
9834 int is_term_opt;
9835 char_u name_buf[MAX_KEY_NAME_LEN];
9836 static char *(names[]) = {"all", "termcap"};
9837 int ic = regmatch->rm_ic; /* remember the ignore-case flag */
9839 /* do this loop twice:
9840 * loop == 0: count the number of matching options
9841 * loop == 1: copy the matching options into allocated memory
9843 for (loop = 0; loop <= 1; ++loop)
9845 regmatch->rm_ic = ic;
9846 if (xp->xp_context != EXPAND_BOOL_SETTINGS)
9848 for (match = 0; match < sizeof(names) / sizeof(char *); ++match)
9849 if (vim_regexec(regmatch, (char_u *)names[match], (colnr_T)0))
9851 if (loop == 0)
9852 num_normal++;
9853 else
9854 (*file)[count++] = vim_strsave((char_u *)names[match]);
9857 for (opt_idx = 0; (str = (char_u *)options[opt_idx].fullname) != NULL;
9858 opt_idx++)
9860 if (options[opt_idx].var == NULL)
9861 continue;
9862 if (xp->xp_context == EXPAND_BOOL_SETTINGS
9863 && !(options[opt_idx].flags & P_BOOL))
9864 continue;
9865 is_term_opt = istermoption(&options[opt_idx]);
9866 if (is_term_opt && num_normal > 0)
9867 continue;
9868 match = FALSE;
9869 if (vim_regexec(regmatch, str, (colnr_T)0)
9870 || (options[opt_idx].shortname != NULL
9871 && vim_regexec(regmatch,
9872 (char_u *)options[opt_idx].shortname, (colnr_T)0)))
9873 match = TRUE;
9874 else if (is_term_opt)
9876 name_buf[0] = '<';
9877 name_buf[1] = 't';
9878 name_buf[2] = '_';
9879 name_buf[3] = str[2];
9880 name_buf[4] = str[3];
9881 name_buf[5] = '>';
9882 name_buf[6] = NUL;
9883 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
9885 match = TRUE;
9886 str = name_buf;
9889 if (match)
9891 if (loop == 0)
9893 if (is_term_opt)
9894 num_term++;
9895 else
9896 num_normal++;
9898 else
9899 (*file)[count++] = vim_strsave(str);
9903 * Check terminal key codes, these are not in the option table
9905 if (xp->xp_context != EXPAND_BOOL_SETTINGS && num_normal == 0)
9907 for (opt_idx = 0; (str = get_termcode(opt_idx)) != NULL; opt_idx++)
9909 if (!isprint(str[0]) || !isprint(str[1]))
9910 continue;
9912 name_buf[0] = 't';
9913 name_buf[1] = '_';
9914 name_buf[2] = str[0];
9915 name_buf[3] = str[1];
9916 name_buf[4] = NUL;
9918 match = FALSE;
9919 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
9920 match = TRUE;
9921 else
9923 name_buf[0] = '<';
9924 name_buf[1] = 't';
9925 name_buf[2] = '_';
9926 name_buf[3] = str[0];
9927 name_buf[4] = str[1];
9928 name_buf[5] = '>';
9929 name_buf[6] = NUL;
9931 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
9932 match = TRUE;
9934 if (match)
9936 if (loop == 0)
9937 num_term++;
9938 else
9939 (*file)[count++] = vim_strsave(name_buf);
9944 * Check special key names.
9946 regmatch->rm_ic = TRUE; /* ignore case here */
9947 for (opt_idx = 0; (str = get_key_name(opt_idx)) != NULL; opt_idx++)
9949 name_buf[0] = '<';
9950 STRCPY(name_buf + 1, str);
9951 STRCAT(name_buf, ">");
9953 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
9955 if (loop == 0)
9956 num_term++;
9957 else
9958 (*file)[count++] = vim_strsave(name_buf);
9962 if (loop == 0)
9964 if (num_normal > 0)
9965 *num_file = num_normal;
9966 else if (num_term > 0)
9967 *num_file = num_term;
9968 else
9969 return OK;
9970 *file = (char_u **)alloc((unsigned)(*num_file * sizeof(char_u *)));
9971 if (*file == NULL)
9973 *file = (char_u **)"";
9974 return FAIL;
9978 return OK;
9982 ExpandOldSetting(num_file, file)
9983 int *num_file;
9984 char_u ***file;
9986 char_u *var = NULL; /* init for GCC */
9987 char_u *buf;
9989 *num_file = 0;
9990 *file = (char_u **)alloc((unsigned)sizeof(char_u *));
9991 if (*file == NULL)
9992 return FAIL;
9995 * For a terminal key code expand_option_idx is < 0.
9997 if (expand_option_idx < 0)
9999 var = find_termcode(expand_option_name + 2);
10000 if (var == NULL)
10001 expand_option_idx = findoption(expand_option_name);
10004 if (expand_option_idx >= 0)
10006 /* put string of option value in NameBuff */
10007 option_value2string(&options[expand_option_idx], expand_option_flags);
10008 var = NameBuff;
10010 else if (var == NULL)
10011 var = (char_u *)"";
10013 /* A backslash is required before some characters. This is the reverse of
10014 * what happens in do_set(). */
10015 buf = vim_strsave_escaped(var, escape_chars);
10017 if (buf == NULL)
10019 vim_free(*file);
10020 *file = NULL;
10021 return FAIL;
10024 #ifdef BACKSLASH_IN_FILENAME
10025 /* For MS-Windows et al. we don't double backslashes at the start and
10026 * before a file name character. */
10027 for (var = buf; *var != NUL; mb_ptr_adv(var))
10028 if (var[0] == '\\' && var[1] == '\\'
10029 && expand_option_idx >= 0
10030 && (options[expand_option_idx].flags & P_EXPAND)
10031 && vim_isfilec(var[2])
10032 && (var[2] != '\\' || (var == buf && var[4] != '\\')))
10033 mch_memmove(var, var + 1, STRLEN(var));
10034 #endif
10036 *file[0] = buf;
10037 *num_file = 1;
10038 return OK;
10040 #endif
10043 * Get the value for the numeric or string option *opp in a nice format into
10044 * NameBuff[]. Must not be called with a hidden option!
10046 static void
10047 option_value2string(opp, opt_flags)
10048 struct vimoption *opp;
10049 int opt_flags; /* OPT_GLOBAL and/or OPT_LOCAL */
10051 char_u *varp;
10053 varp = get_varp_scope(opp, opt_flags);
10055 if (opp->flags & P_NUM)
10057 long wc = 0;
10059 if (wc_use_keyname(varp, &wc))
10060 STRCPY(NameBuff, get_special_key_name((int)wc, 0));
10061 else if (wc != 0)
10062 STRCPY(NameBuff, transchar((int)wc));
10063 else
10064 sprintf((char *)NameBuff, "%ld", *(long *)varp);
10066 else /* P_STRING */
10068 varp = *(char_u **)(varp);
10069 if (varp == NULL) /* just in case */
10070 NameBuff[0] = NUL;
10071 #ifdef FEAT_CRYPT
10072 /* don't show the actual value of 'key', only that it's set */
10073 else if (opp->var == (char_u *)&p_key && *varp)
10074 STRCPY(NameBuff, "*****");
10075 #endif
10076 else if (opp->flags & P_EXPAND)
10077 home_replace(NULL, varp, NameBuff, MAXPATHL, FALSE);
10078 /* Translate 'pastetoggle' into special key names */
10079 else if ((char_u **)opp->var == &p_pt)
10080 str2specialbuf(p_pt, NameBuff, MAXPATHL);
10081 else
10082 vim_strncpy(NameBuff, varp, MAXPATHL - 1);
10087 * Return TRUE if "varp" points to 'wildchar' or 'wildcharm' and it can be
10088 * printed as a keyname.
10089 * "*wcp" is set to the value of the option if it's 'wildchar' or 'wildcharm'.
10091 static int
10092 wc_use_keyname(varp, wcp)
10093 char_u *varp;
10094 long *wcp;
10096 if (((long *)varp == &p_wc) || ((long *)varp == &p_wcm))
10098 *wcp = *(long *)varp;
10099 if (IS_SPECIAL(*wcp) || find_special_key_in_table((int)*wcp) >= 0)
10100 return TRUE;
10102 return FALSE;
10105 #ifdef FEAT_LANGMAP
10107 * Any character has an equivalent character. This is used for keyboards that
10108 * have a special language mode that sends characters above 128 (although
10109 * other characters can be translated too).
10113 * char_u langmap_mapchar[256];
10114 * Normally maps each of the 128 upper chars to an <128 ascii char; used to
10115 * "translate" native lang chars in normal mode or some cases of
10116 * insert mode without having to tediously switch lang mode back&forth.
10119 static void
10120 langmap_init()
10122 int i;
10124 for (i = 0; i < 256; i++) /* we init with a-one-to one map */
10125 langmap_mapchar[i] = i;
10129 * Called when langmap option is set; the language map can be
10130 * changed at any time!
10132 static void
10133 langmap_set()
10135 char_u *p;
10136 char_u *p2;
10137 int from, to;
10139 langmap_init(); /* back to one-to-one map first */
10141 for (p = p_langmap; p[0] != NUL; )
10143 for (p2 = p; p2[0] != NUL && p2[0] != ',' && p2[0] != ';';
10144 mb_ptr_adv(p2))
10146 if (p2[0] == '\\' && p2[1] != NUL)
10147 ++p2;
10149 if (p2[0] == ';')
10150 ++p2; /* abcd;ABCD form, p2 points to A */
10151 else
10152 p2 = NULL; /* aAbBcCdD form, p2 is NULL */
10153 while (p[0])
10155 if (p[0] == '\\' && p[1] != NUL)
10156 ++p;
10157 #ifdef FEAT_MBYTE
10158 from = (*mb_ptr2char)(p);
10159 #else
10160 from = p[0];
10161 #endif
10162 if (p2 == NULL)
10164 mb_ptr_adv(p);
10165 if (p[0] == '\\')
10166 ++p;
10167 #ifdef FEAT_MBYTE
10168 to = (*mb_ptr2char)(p);
10169 #else
10170 to = p[0];
10171 #endif
10173 else
10175 if (p2[0] == '\\')
10176 ++p2;
10177 #ifdef FEAT_MBYTE
10178 to = (*mb_ptr2char)(p2);
10179 #else
10180 to = p2[0];
10181 #endif
10183 if (to == NUL)
10185 EMSG2(_("E357: 'langmap': Matching character missing for %s"),
10186 transchar(from));
10187 return;
10189 langmap_mapchar[from & 255] = to;
10191 /* Advance to next pair */
10192 mb_ptr_adv(p);
10193 if (p2 == NULL)
10195 if (p[0] == ',')
10197 ++p;
10198 break;
10201 else
10203 mb_ptr_adv(p2);
10204 if (*p == ';')
10206 p = p2;
10207 if (p[0] != NUL)
10209 if (p[0] != ',')
10211 EMSG2(_("E358: 'langmap': Extra characters after semicolon: %s"), p);
10212 return;
10214 ++p;
10216 break;
10222 #endif
10225 * Return TRUE if format option 'x' is in effect.
10226 * Take care of no formatting when 'paste' is set.
10229 has_format_option(x)
10230 int x;
10232 if (p_paste)
10233 return FALSE;
10234 return (vim_strchr(curbuf->b_p_fo, x) != NULL);
10238 * Return TRUE if "x" is present in 'shortmess' option, or
10239 * 'shortmess' contains 'a' and "x" is present in SHM_A.
10242 shortmess(x)
10243 int x;
10245 return ( vim_strchr(p_shm, x) != NULL
10246 || (vim_strchr(p_shm, 'a') != NULL
10247 && vim_strchr((char_u *)SHM_A, x) != NULL));
10251 * paste_option_changed() - Called after p_paste was set or reset.
10253 static void
10254 paste_option_changed()
10256 static int old_p_paste = FALSE;
10257 static int save_sm = 0;
10258 #ifdef FEAT_CMDL_INFO
10259 static int save_ru = 0;
10260 #endif
10261 #ifdef FEAT_RIGHTLEFT
10262 static int save_ri = 0;
10263 static int save_hkmap = 0;
10264 #endif
10265 buf_T *buf;
10267 if (p_paste)
10270 * Paste switched from off to on.
10271 * Save the current values, so they can be restored later.
10273 if (!old_p_paste)
10275 /* save options for each buffer */
10276 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10278 buf->b_p_tw_nopaste = buf->b_p_tw;
10279 buf->b_p_wm_nopaste = buf->b_p_wm;
10280 buf->b_p_sts_nopaste = buf->b_p_sts;
10281 buf->b_p_ai_nopaste = buf->b_p_ai;
10284 /* save global options */
10285 save_sm = p_sm;
10286 #ifdef FEAT_CMDL_INFO
10287 save_ru = p_ru;
10288 #endif
10289 #ifdef FEAT_RIGHTLEFT
10290 save_ri = p_ri;
10291 save_hkmap = p_hkmap;
10292 #endif
10293 /* save global values for local buffer options */
10294 p_tw_nopaste = p_tw;
10295 p_wm_nopaste = p_wm;
10296 p_sts_nopaste = p_sts;
10297 p_ai_nopaste = p_ai;
10301 * Always set the option values, also when 'paste' is set when it is
10302 * already on.
10304 /* set options for each buffer */
10305 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10307 buf->b_p_tw = 0; /* textwidth is 0 */
10308 buf->b_p_wm = 0; /* wrapmargin is 0 */
10309 buf->b_p_sts = 0; /* softtabstop is 0 */
10310 buf->b_p_ai = 0; /* no auto-indent */
10313 /* set global options */
10314 p_sm = 0; /* no showmatch */
10315 #ifdef FEAT_CMDL_INFO
10316 # ifdef FEAT_WINDOWS
10317 if (p_ru)
10318 status_redraw_all(); /* redraw to remove the ruler */
10319 # endif
10320 p_ru = 0; /* no ruler */
10321 #endif
10322 #ifdef FEAT_RIGHTLEFT
10323 p_ri = 0; /* no reverse insert */
10324 p_hkmap = 0; /* no Hebrew keyboard */
10325 #endif
10326 /* set global values for local buffer options */
10327 p_tw = 0;
10328 p_wm = 0;
10329 p_sts = 0;
10330 p_ai = 0;
10334 * Paste switched from on to off: Restore saved values.
10336 else if (old_p_paste)
10338 /* restore options for each buffer */
10339 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10341 buf->b_p_tw = buf->b_p_tw_nopaste;
10342 buf->b_p_wm = buf->b_p_wm_nopaste;
10343 buf->b_p_sts = buf->b_p_sts_nopaste;
10344 buf->b_p_ai = buf->b_p_ai_nopaste;
10347 /* restore global options */
10348 p_sm = save_sm;
10349 #ifdef FEAT_CMDL_INFO
10350 # ifdef FEAT_WINDOWS
10351 if (p_ru != save_ru)
10352 status_redraw_all(); /* redraw to draw the ruler */
10353 # endif
10354 p_ru = save_ru;
10355 #endif
10356 #ifdef FEAT_RIGHTLEFT
10357 p_ri = save_ri;
10358 p_hkmap = save_hkmap;
10359 #endif
10360 /* set global values for local buffer options */
10361 p_tw = p_tw_nopaste;
10362 p_wm = p_wm_nopaste;
10363 p_sts = p_sts_nopaste;
10364 p_ai = p_ai_nopaste;
10367 old_p_paste = p_paste;
10371 * vimrc_found() - Called when a ".vimrc" or "VIMINIT" has been found.
10373 * Reset 'compatible' and set the values for options that didn't get set yet
10374 * to the Vim defaults.
10375 * Don't do this if the 'compatible' option has been set or reset before.
10376 * When "fname" is not NULL, use it to set $"envname" when it wasn't set yet.
10378 void
10379 vimrc_found(fname, envname)
10380 char_u *fname;
10381 char_u *envname;
10383 int opt_idx;
10384 int dofree = FALSE;
10385 char_u *p;
10387 if (!option_was_set((char_u *)"cp"))
10389 p_cp = FALSE;
10390 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
10391 if (!(options[opt_idx].flags & (P_WAS_SET|P_VI_DEF)))
10392 set_option_default(opt_idx, OPT_FREE, FALSE);
10393 didset_options();
10396 if (fname != NULL)
10398 p = vim_getenv(envname, &dofree);
10399 if (p == NULL)
10401 /* Set $MYVIMRC to the first vimrc file found. */
10402 p = FullName_save(fname, FALSE);
10403 if (p != NULL)
10405 vim_setenv(envname, p);
10406 vim_free(p);
10409 else if (dofree)
10410 vim_free(p);
10415 * Set 'compatible' on or off. Called for "-C" and "-N" command line arg.
10417 void
10418 change_compatible(on)
10419 int on;
10421 int opt_idx;
10423 if (p_cp != on)
10425 p_cp = on;
10426 compatible_set();
10428 opt_idx = findoption((char_u *)"cp");
10429 if (opt_idx >= 0)
10430 options[opt_idx].flags |= P_WAS_SET;
10434 * Return TRUE when option "name" has been set.
10437 option_was_set(name)
10438 char_u *name;
10440 int idx;
10442 idx = findoption(name);
10443 if (idx < 0) /* unknown option */
10444 return FALSE;
10445 if (options[idx].flags & P_WAS_SET)
10446 return TRUE;
10447 return FALSE;
10451 * compatible_set() - Called when 'compatible' has been set or unset.
10453 * When 'compatible' set: Set all relevant options (those that have the P_VIM)
10454 * flag) to a Vi compatible value.
10455 * When 'compatible' is unset: Set all options that have a different default
10456 * for Vim (without the P_VI_DEF flag) to that default.
10458 static void
10459 compatible_set()
10461 int opt_idx;
10463 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
10464 if ( ((options[opt_idx].flags & P_VIM) && p_cp)
10465 || (!(options[opt_idx].flags & P_VI_DEF) && !p_cp))
10466 set_option_default(opt_idx, OPT_FREE, p_cp);
10467 didset_options();
10470 #ifdef FEAT_LINEBREAK
10472 # if defined(__BORLANDC__) && (__BORLANDC__ < 0x500)
10473 /* Borland C++ screws up loop optimisation here (negri) */
10474 #pragma option -O-l
10475 # endif
10478 * fill_breakat_flags() -- called when 'breakat' changes value.
10480 static void
10481 fill_breakat_flags()
10483 char_u *p;
10484 int i;
10486 for (i = 0; i < 256; i++)
10487 breakat_flags[i] = FALSE;
10489 if (p_breakat != NULL)
10490 for (p = p_breakat; *p; p++)
10491 breakat_flags[*p] = TRUE;
10494 # if defined(__BORLANDC__) && (__BORLANDC__ < 0x500)
10495 #pragma option -O.l
10496 # endif
10498 #endif
10501 * Check an option that can be a range of string values.
10503 * Return OK for correct value, FAIL otherwise.
10504 * Empty is always OK.
10506 static int
10507 check_opt_strings(val, values, list)
10508 char_u *val;
10509 char **values;
10510 int list; /* when TRUE: accept a list of values */
10512 return opt_strings_flags(val, values, NULL, list);
10516 * Handle an option that can be a range of string values.
10517 * Set a flag in "*flagp" for each string present.
10519 * Return OK for correct value, FAIL otherwise.
10520 * Empty is always OK.
10522 static int
10523 opt_strings_flags(val, values, flagp, list)
10524 char_u *val; /* new value */
10525 char **values; /* array of valid string values */
10526 unsigned *flagp;
10527 int list; /* when TRUE: accept a list of values */
10529 int i;
10530 int len;
10531 unsigned new_flags = 0;
10533 while (*val)
10535 for (i = 0; ; ++i)
10537 if (values[i] == NULL) /* val not found in values[] */
10538 return FAIL;
10540 len = (int)STRLEN(values[i]);
10541 if (STRNCMP(values[i], val, len) == 0
10542 && ((list && val[len] == ',') || val[len] == NUL))
10544 val += len + (val[len] == ',');
10545 new_flags |= (1 << i);
10546 break; /* check next item in val list */
10550 if (flagp != NULL)
10551 *flagp = new_flags;
10553 return OK;
10557 * Read the 'wildmode' option, fill wim_flags[].
10559 static int
10560 check_opt_wim()
10562 char_u new_wim_flags[4];
10563 char_u *p;
10564 int i;
10565 int idx = 0;
10567 for (i = 0; i < 4; ++i)
10568 new_wim_flags[i] = 0;
10570 for (p = p_wim; *p; ++p)
10572 for (i = 0; ASCII_ISALPHA(p[i]); ++i)
10574 if (p[i] != NUL && p[i] != ',' && p[i] != ':')
10575 return FAIL;
10576 if (i == 7 && STRNCMP(p, "longest", 7) == 0)
10577 new_wim_flags[idx] |= WIM_LONGEST;
10578 else if (i == 4 && STRNCMP(p, "full", 4) == 0)
10579 new_wim_flags[idx] |= WIM_FULL;
10580 else if (i == 4 && STRNCMP(p, "list", 4) == 0)
10581 new_wim_flags[idx] |= WIM_LIST;
10582 else
10583 return FAIL;
10584 p += i;
10585 if (*p == NUL)
10586 break;
10587 if (*p == ',')
10589 if (idx == 3)
10590 return FAIL;
10591 ++idx;
10595 /* fill remaining entries with last flag */
10596 while (idx < 3)
10598 new_wim_flags[idx + 1] = new_wim_flags[idx];
10599 ++idx;
10602 /* only when there are no errors, wim_flags[] is changed */
10603 for (i = 0; i < 4; ++i)
10604 wim_flags[i] = new_wim_flags[i];
10605 return OK;
10609 * Check if backspacing over something is allowed.
10612 can_bs(what)
10613 int what; /* BS_INDENT, BS_EOL or BS_START */
10615 switch (*p_bs)
10617 case '2': return TRUE;
10618 case '1': return (what != BS_START);
10619 case '0': return FALSE;
10621 return vim_strchr(p_bs, what) != NULL;
10625 * Save the current values of 'fileformat' and 'fileencoding', so that we know
10626 * the file must be considered changed when the value is different.
10628 void
10629 save_file_ff(buf)
10630 buf_T *buf;
10632 buf->b_start_ffc = *buf->b_p_ff;
10633 buf->b_start_eol = buf->b_p_eol;
10634 #ifdef FEAT_MBYTE
10635 buf->b_start_bomb = buf->b_p_bomb;
10637 /* Only use free/alloc when necessary, they take time. */
10638 if (buf->b_start_fenc == NULL
10639 || STRCMP(buf->b_start_fenc, buf->b_p_fenc) != 0)
10641 vim_free(buf->b_start_fenc);
10642 buf->b_start_fenc = vim_strsave(buf->b_p_fenc);
10644 #endif
10648 * Return TRUE if 'fileformat' and/or 'fileencoding' has a different value
10649 * from when editing started (save_file_ff() called).
10650 * Also when 'endofline' was changed and 'binary' is set, or when 'bomb' was
10651 * changed and 'binary' is not set.
10652 * Don't consider a new, empty buffer to be changed.
10655 file_ff_differs(buf)
10656 buf_T *buf;
10658 /* In a buffer that was never loaded the options are not valid. */
10659 if (buf->b_flags & BF_NEVERLOADED)
10660 return FALSE;
10661 if ((buf->b_flags & BF_NEW)
10662 && buf->b_ml.ml_line_count == 1
10663 && *ml_get_buf(buf, (linenr_T)1, FALSE) == NUL)
10664 return FALSE;
10665 if (buf->b_start_ffc != *buf->b_p_ff)
10666 return TRUE;
10667 if (buf->b_p_bin && buf->b_start_eol != buf->b_p_eol)
10668 return TRUE;
10669 #ifdef FEAT_MBYTE
10670 if (!buf->b_p_bin && buf->b_start_bomb != buf->b_p_bomb)
10671 return TRUE;
10672 if (buf->b_start_fenc == NULL)
10673 return (*buf->b_p_fenc != NUL);
10674 return (STRCMP(buf->b_start_fenc, buf->b_p_fenc) != 0);
10675 #else
10676 return FALSE;
10677 #endif
10681 * return OK if "p" is a valid fileformat name, FAIL otherwise.
10684 check_ff_value(p)
10685 char_u *p;
10687 return check_opt_strings(p, p_ff_values, FALSE);