Merge branch 'vim-with-runtime' into feat/var-tabstops
[vim_extended.git] / src / option.c
blobceec722cd26bfffe721a88bfbaac1f964f37efad
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)
180 #ifdef FEAT_VARTABS
181 #define PV_VSTS OPT_BUF(BV_VSTS)
182 #define PV_VTS OPT_BUF(BV_VTS)
183 #endif
186 * Definition of the PV_ values for window-local options.
187 * The WV_ values are defined in option.h.
189 #define PV_LIST OPT_WIN(WV_LIST)
190 #ifdef FEAT_ARABIC
191 # define PV_ARAB OPT_WIN(WV_ARAB)
192 #endif
193 #ifdef FEAT_DIFF
194 # define PV_DIFF OPT_WIN(WV_DIFF)
195 #endif
196 #ifdef FEAT_FOLDING
197 # define PV_FDC OPT_WIN(WV_FDC)
198 # define PV_FEN OPT_WIN(WV_FEN)
199 # define PV_FDI OPT_WIN(WV_FDI)
200 # define PV_FDL OPT_WIN(WV_FDL)
201 # define PV_FDM OPT_WIN(WV_FDM)
202 # define PV_FML OPT_WIN(WV_FML)
203 # define PV_FDN OPT_WIN(WV_FDN)
204 # ifdef FEAT_EVAL
205 # define PV_FDE OPT_WIN(WV_FDE)
206 # define PV_FDT OPT_WIN(WV_FDT)
207 # endif
208 # define PV_FMR OPT_WIN(WV_FMR)
209 #endif
210 #ifdef FEAT_LINEBREAK
211 # define PV_LBR OPT_WIN(WV_LBR)
212 #endif
213 #define PV_NU OPT_WIN(WV_NU)
214 #ifdef FEAT_LINEBREAK
215 # define PV_NUW OPT_WIN(WV_NUW)
216 #endif
217 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
218 # define PV_PVW OPT_WIN(WV_PVW)
219 #endif
220 #ifdef FEAT_RIGHTLEFT
221 # define PV_RL OPT_WIN(WV_RL)
222 # define PV_RLC OPT_WIN(WV_RLC)
223 #endif
224 #ifdef FEAT_SCROLLBIND
225 # define PV_SCBIND OPT_WIN(WV_SCBIND)
226 #endif
227 #define PV_SCROLL OPT_WIN(WV_SCROLL)
228 #ifdef FEAT_SPELL
229 # define PV_SPELL OPT_WIN(WV_SPELL)
230 #endif
231 #ifdef FEAT_SYN_HL
232 # define PV_CUC OPT_WIN(WV_CUC)
233 # define PV_CUL OPT_WIN(WV_CUL)
234 #endif
235 #ifdef FEAT_STL_OPT
236 # define PV_STL OPT_BOTH(OPT_WIN(WV_STL))
237 #endif
238 #ifdef FEAT_WINDOWS
239 # define PV_WFH OPT_WIN(WV_WFH)
240 #endif
241 #ifdef FEAT_VERTSPLIT
242 # define PV_WFW OPT_WIN(WV_WFW)
243 #endif
244 #define PV_WRAP OPT_WIN(WV_WRAP)
247 /* WV_ and BV_ values get typecasted to this for the "indir" field */
248 typedef enum
250 PV_NONE = 0,
251 PV_MAXVAL = 0xffff /* to avoid warnings for value out of range */
252 } idopt_T;
255 * Options local to a window have a value local to a buffer and global to all
256 * buffers. Indicate this by setting "var" to VAR_WIN.
258 #define VAR_WIN ((char_u *)-1)
261 * These are the global values for options which are also local to a buffer.
262 * Only to be used in option.c!
264 static int p_ai;
265 static int p_bin;
266 #ifdef FEAT_MBYTE
267 static int p_bomb;
268 #endif
269 #if defined(FEAT_QUICKFIX)
270 static char_u *p_bh;
271 static char_u *p_bt;
272 #endif
273 static int p_bl;
274 static int p_ci;
275 #ifdef FEAT_CINDENT
276 static int p_cin;
277 static char_u *p_cink;
278 static char_u *p_cino;
279 #endif
280 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
281 static char_u *p_cinw;
282 #endif
283 #ifdef FEAT_COMMENTS
284 static char_u *p_com;
285 #endif
286 #ifdef FEAT_FOLDING
287 static char_u *p_cms;
288 #endif
289 #ifdef FEAT_INS_EXPAND
290 static char_u *p_cpt;
291 #endif
292 #ifdef FEAT_COMPL_FUNC
293 static char_u *p_cfu;
294 static char_u *p_ofu;
295 #endif
296 static int p_eol;
297 static int p_et;
298 #ifdef FEAT_MBYTE
299 static char_u *p_fenc;
300 #endif
301 static char_u *p_ff;
302 static char_u *p_fo;
303 static char_u *p_flp;
304 #ifdef FEAT_AUTOCMD
305 static char_u *p_ft;
306 #endif
307 static long p_iminsert;
308 static long p_imsearch;
309 #if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
310 static char_u *p_inex;
311 #endif
312 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
313 static char_u *p_inde;
314 static char_u *p_indk;
315 #endif
316 #if defined(FEAT_EVAL)
317 static char_u *p_fex;
318 #endif
319 static int p_inf;
320 static char_u *p_isk;
321 #ifdef FEAT_CRYPT
322 static char_u *p_key;
323 #endif
324 #ifdef FEAT_LISP
325 static int p_lisp;
326 #endif
327 static int p_ml;
328 static int p_ma;
329 static int p_mod;
330 static char_u *p_mps;
331 static char_u *p_nf;
332 #ifdef FEAT_OSFILETYPE
333 static char_u *p_oft;
334 #endif
335 static int p_pi;
336 #ifdef FEAT_TEXTOBJ
337 static char_u *p_qe;
338 #endif
339 static int p_ro;
340 #ifdef FEAT_SMARTINDENT
341 static int p_si;
342 #endif
343 #ifndef SHORT_FNAME
344 static int p_sn;
345 #endif
346 static long p_sts;
347 #if defined(FEAT_SEARCHPATH)
348 static char_u *p_sua;
349 #endif
350 static long p_sw;
351 static int p_swf;
352 #ifdef FEAT_SYN_HL
353 static long p_smc;
354 static char_u *p_syn;
355 #endif
356 #ifdef FEAT_SPELL
357 static char_u *p_spc;
358 static char_u *p_spf;
359 static char_u *p_spl;
360 #endif
361 static long p_ts;
362 static long p_tw;
363 static int p_tx;
364 static long p_wm;
365 #ifdef FEAT_VARTABS
366 static char_u *p_vsts;
367 static char_u *p_vts;
368 #endif
369 #ifdef FEAT_KEYMAP
370 static char_u *p_keymap;
371 #endif
373 /* Saved values for when 'bin' is set. */
374 static int p_et_nobin;
375 static int p_ml_nobin;
376 static long p_tw_nobin;
377 static long p_wm_nobin;
379 /* Saved values for when 'paste' is set */
380 static long p_tw_nopaste;
381 static long p_wm_nopaste;
382 static long p_sts_nopaste;
383 static int p_ai_nopaste;
384 #ifdef FEAT_VARTABS
385 static char_u *p_vsts_nopaste;
386 #endif
388 struct vimoption
390 char *fullname; /* full option name */
391 char *shortname; /* permissible abbreviation */
392 long_u flags; /* see below */
393 char_u *var; /* global option: pointer to variable;
394 * window-local option: VAR_WIN;
395 * buffer-local option: global value */
396 idopt_T indir; /* global option: PV_NONE;
397 * local option: indirect option index */
398 char_u *def_val[2]; /* default values for variable (vi and vim) */
399 #ifdef FEAT_EVAL
400 scid_T scriptID; /* script in which the option was last set */
401 # define SCRIPTID_INIT , 0
402 #else
403 # define SCRIPTID_INIT
404 #endif
407 #define VI_DEFAULT 0 /* def_val[VI_DEFAULT] is Vi default value */
408 #define VIM_DEFAULT 1 /* def_val[VIM_DEFAULT] is Vim default value */
411 * Flags
413 #define P_BOOL 0x01 /* the option is boolean */
414 #define P_NUM 0x02 /* the option is numeric */
415 #define P_STRING 0x04 /* the option is a string */
416 #define P_ALLOCED 0x08 /* the string option is in allocated memory,
417 must use free_string_option() when
418 assigning new value. Not set if default is
419 the same. */
420 #define P_EXPAND 0x10 /* environment expansion. NOTE: P_EXPAND can
421 never be used for local or hidden options! */
422 #define P_NODEFAULT 0x40 /* don't set to default value */
423 #define P_DEF_ALLOCED 0x80 /* default value is in allocated memory, must
424 use vim_free() when assigning new value */
425 #define P_WAS_SET 0x100 /* option has been set/reset */
426 #define P_NO_MKRC 0x200 /* don't include in :mkvimrc output */
427 #define P_VI_DEF 0x400 /* Use Vi default for Vim */
428 #define P_VIM 0x800 /* Vim option, reset when 'cp' set */
430 /* when option changed, what to display: */
431 #define P_RSTAT 0x1000 /* redraw status lines */
432 #define P_RWIN 0x2000 /* redraw current window */
433 #define P_RBUF 0x4000 /* redraw current buffer */
434 #define P_RALL 0x6000 /* redraw all windows */
435 #define P_RCLR 0x7000 /* clear and redraw all */
437 #define P_COMMA 0x8000 /* comma separated list */
438 #define P_NODUP 0x10000L/* don't allow duplicate strings */
439 #define P_FLAGLIST 0x20000L/* list of single-char flags */
441 #define P_SECURE 0x40000L/* cannot change in modeline or secure mode */
442 #define P_GETTEXT 0x80000L/* expand default value with _() */
443 #define P_NOGLOB 0x100000L/* do not use local value for global vimrc */
444 #define P_NFNAME 0x200000L/* only normal file name chars allowed */
445 #define P_INSECURE 0x400000L/* option was set from a modeline */
446 #define P_PRI_MKRC 0x800000L/* priority for :mkvimrc (setting option has
447 side effects) */
449 #define ISK_LATIN1 (char_u *)"@,48-57,_,192-255"
451 /* 'isprint' for latin1 is also used for MS-Windows cp1252, where 0x80 is used
452 * for the currency sign. */
453 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
454 # define ISP_LATIN1 (char_u *)"@,~-255"
455 #else
456 # define ISP_LATIN1 (char_u *)"@,161-255"
457 #endif
459 /* The 16 bit MS-DOS version is low on space, make the string as short as
460 * possible when compiling with few features. */
461 #if defined(FEAT_DIFF) || defined(FEAT_FOLDING) || defined(FEAT_SPELL) \
462 || defined(FEAT_VERTSPLIT) || defined(FEAT_CLIPBOARD) \
463 || defined(FEAT_INS_EXPAND) || defined(FEAT_SYN_HL)
464 # 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"
465 #else
466 # 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"
467 #endif
470 * options[] is initialized here.
471 * The order of the options MUST be alphabetic for ":set all" and findoption().
472 * All option names MUST start with a lowercase letter (for findoption()).
473 * Exception: "t_" options are at the end.
474 * The options with a NULL variable are 'hidden': a set command for them is
475 * ignored and they are not printed.
477 static struct vimoption
478 #ifdef FEAT_GUI_W16
479 _far
480 #endif
481 options[] =
483 {"aleph", "al", P_NUM|P_VI_DEF,
484 #ifdef FEAT_RIGHTLEFT
485 (char_u *)&p_aleph, PV_NONE,
486 #else
487 (char_u *)NULL, PV_NONE,
488 #endif
490 #if (defined(MSDOS) || defined(WIN3264) || defined(OS2)) && !defined(FEAT_GUI_W32)
491 (char_u *)128L,
492 #else
493 (char_u *)224L,
494 #endif
495 (char_u *)0L} SCRIPTID_INIT},
496 {"antialias", "anti", P_BOOL|P_VI_DEF|P_VIM|P_RCLR,
497 #if defined(FEAT_GUI) && defined(MACOS_X)
498 (char_u *)&p_antialias, PV_NONE,
499 {(char_u *)FALSE, (char_u *)FALSE}
500 #else
501 (char_u *)NULL, PV_NONE,
502 {(char_u *)FALSE, (char_u *)FALSE}
503 #endif
504 SCRIPTID_INIT},
505 {"arabic", "arab", P_BOOL|P_VI_DEF|P_VIM,
506 #ifdef FEAT_ARABIC
507 (char_u *)VAR_WIN, PV_ARAB,
508 #else
509 (char_u *)NULL, PV_NONE,
510 #endif
511 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
512 {"arabicshape", "arshape", P_BOOL|P_VI_DEF|P_VIM|P_RCLR,
513 #ifdef FEAT_ARABIC
514 (char_u *)&p_arshape, PV_NONE,
515 #else
516 (char_u *)NULL, PV_NONE,
517 #endif
518 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
519 {"allowrevins", "ari", P_BOOL|P_VI_DEF|P_VIM,
520 #ifdef FEAT_RIGHTLEFT
521 (char_u *)&p_ari, PV_NONE,
522 #else
523 (char_u *)NULL, PV_NONE,
524 #endif
525 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
526 {"altkeymap", "akm", P_BOOL|P_VI_DEF,
527 #ifdef FEAT_FKMAP
528 (char_u *)&p_altkeymap, PV_NONE,
529 #else
530 (char_u *)NULL, PV_NONE,
531 #endif
532 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
533 {"ambiwidth", "ambw", P_STRING|P_VI_DEF|P_RCLR,
534 #if defined(FEAT_MBYTE)
535 (char_u *)&p_ambw, PV_NONE,
536 {(char_u *)"single", (char_u *)0L}
537 #else
538 (char_u *)NULL, PV_NONE,
539 {(char_u *)0L, (char_u *)0L}
540 #endif
541 SCRIPTID_INIT},
542 #ifdef FEAT_AUTOCHDIR
543 {"autochdir", "acd", P_BOOL|P_VI_DEF,
544 (char_u *)&p_acd, PV_NONE,
545 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
546 #endif
547 {"autoindent", "ai", P_BOOL|P_VI_DEF,
548 (char_u *)&p_ai, PV_AI,
549 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
550 {"autoprint", "ap", P_BOOL|P_VI_DEF,
551 (char_u *)NULL, PV_NONE,
552 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
553 {"autoread", "ar", P_BOOL|P_VI_DEF,
554 (char_u *)&p_ar, PV_AR,
555 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
556 {"autowrite", "aw", P_BOOL|P_VI_DEF,
557 (char_u *)&p_aw, PV_NONE,
558 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
559 {"autowriteall","awa", P_BOOL|P_VI_DEF,
560 (char_u *)&p_awa, PV_NONE,
561 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
562 {"background", "bg", P_STRING|P_VI_DEF|P_RCLR,
563 (char_u *)&p_bg, PV_NONE,
565 #if (defined(MSDOS) || defined(OS2) || defined(WIN3264)) && !defined(FEAT_GUI)
566 (char_u *)"dark",
567 #else
568 (char_u *)"light",
569 #endif
570 (char_u *)0L} SCRIPTID_INIT},
571 {"backspace", "bs", P_STRING|P_VI_DEF|P_VIM|P_COMMA|P_NODUP,
572 (char_u *)&p_bs, PV_NONE,
573 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
574 {"backup", "bk", P_BOOL|P_VI_DEF|P_VIM,
575 (char_u *)&p_bk, PV_NONE,
576 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
577 {"backupcopy", "bkc", P_STRING|P_VIM|P_COMMA|P_NODUP,
578 (char_u *)&p_bkc, PV_NONE,
579 #ifdef UNIX
580 {(char_u *)"yes", (char_u *)"auto"}
581 #else
582 {(char_u *)"auto", (char_u *)"auto"}
583 #endif
584 SCRIPTID_INIT},
585 {"backupdir", "bdir", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP|P_SECURE,
586 (char_u *)&p_bdir, PV_NONE,
587 {(char_u *)DFLT_BDIR, (char_u *)0L} SCRIPTID_INIT},
588 {"backupext", "bex", P_STRING|P_VI_DEF|P_NFNAME,
589 (char_u *)&p_bex, PV_NONE,
591 #ifdef VMS
592 (char_u *)"_",
593 #else
594 (char_u *)"~",
595 #endif
596 (char_u *)0L} SCRIPTID_INIT},
597 {"backupskip", "bsk", P_STRING|P_VI_DEF|P_COMMA,
598 #ifdef FEAT_WILDIGN
599 (char_u *)&p_bsk, PV_NONE,
600 {(char_u *)"", (char_u *)0L}
601 #else
602 (char_u *)NULL, PV_NONE,
603 {(char_u *)0L, (char_u *)0L}
604 #endif
605 SCRIPTID_INIT},
606 #ifdef FEAT_BEVAL
607 {"balloondelay","bdlay",P_NUM|P_VI_DEF,
608 (char_u *)&p_bdlay, PV_NONE,
609 {(char_u *)600L, (char_u *)0L} SCRIPTID_INIT},
610 {"ballooneval", "beval",P_BOOL|P_VI_DEF|P_NO_MKRC,
611 (char_u *)&p_beval, PV_NONE,
612 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
613 # ifdef FEAT_EVAL
614 {"balloonexpr", "bexpr", P_STRING|P_ALLOCED|P_VI_DEF|P_VIM,
615 (char_u *)&p_bexpr, PV_BEXPR,
616 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
617 # endif
618 #endif
619 {"beautify", "bf", P_BOOL|P_VI_DEF,
620 (char_u *)NULL, PV_NONE,
621 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
622 {"binary", "bin", P_BOOL|P_VI_DEF|P_RSTAT,
623 (char_u *)&p_bin, PV_BIN,
624 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
625 {"bioskey", "biosk",P_BOOL|P_VI_DEF,
626 #ifdef MSDOS
627 (char_u *)&p_biosk, PV_NONE,
628 #else
629 (char_u *)NULL, PV_NONE,
630 #endif
631 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
632 {"bomb", NULL, P_BOOL|P_NO_MKRC|P_VI_DEF|P_RSTAT,
633 #ifdef FEAT_MBYTE
634 (char_u *)&p_bomb, PV_BOMB,
635 #else
636 (char_u *)NULL, PV_NONE,
637 #endif
638 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
639 {"breakat", "brk", P_STRING|P_VI_DEF|P_RALL|P_FLAGLIST,
640 #ifdef FEAT_LINEBREAK
641 (char_u *)&p_breakat, PV_NONE,
642 {(char_u *)" \t!@*-+;:,./?", (char_u *)0L}
643 #else
644 (char_u *)NULL, PV_NONE,
645 {(char_u *)0L, (char_u *)0L}
646 #endif
647 SCRIPTID_INIT},
648 {"browsedir", "bsdir",P_STRING|P_VI_DEF,
649 #ifdef FEAT_BROWSE
650 (char_u *)&p_bsdir, PV_NONE,
651 {(char_u *)"last", (char_u *)0L}
652 #else
653 (char_u *)NULL, PV_NONE,
654 {(char_u *)0L, (char_u *)0L}
655 #endif
656 SCRIPTID_INIT},
657 {"bufhidden", "bh", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB,
658 #if defined(FEAT_QUICKFIX)
659 (char_u *)&p_bh, PV_BH,
660 {(char_u *)"", (char_u *)0L}
661 #else
662 (char_u *)NULL, PV_NONE,
663 {(char_u *)0L, (char_u *)0L}
664 #endif
665 SCRIPTID_INIT},
666 {"buflisted", "bl", P_BOOL|P_VI_DEF|P_NOGLOB,
667 (char_u *)&p_bl, PV_BL,
668 {(char_u *)1L, (char_u *)0L}
669 SCRIPTID_INIT},
670 {"buftype", "bt", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB,
671 #if defined(FEAT_QUICKFIX)
672 (char_u *)&p_bt, PV_BT,
673 {(char_u *)"", (char_u *)0L}
674 #else
675 (char_u *)NULL, PV_NONE,
676 {(char_u *)0L, (char_u *)0L}
677 #endif
678 SCRIPTID_INIT},
679 {"casemap", "cmp", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
680 #ifdef FEAT_MBYTE
681 (char_u *)&p_cmp, PV_NONE,
682 {(char_u *)"internal,keepascii", (char_u *)0L}
683 #else
684 (char_u *)NULL, PV_NONE,
685 {(char_u *)0L, (char_u *)0L}
686 #endif
687 SCRIPTID_INIT},
688 {"cdpath", "cd", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
689 #ifdef FEAT_SEARCHPATH
690 (char_u *)&p_cdpath, PV_NONE,
691 {(char_u *)",,", (char_u *)0L}
692 #else
693 (char_u *)NULL, PV_NONE,
694 {(char_u *)0L, (char_u *)0L}
695 #endif
696 SCRIPTID_INIT},
697 {"cedit", NULL, P_STRING,
698 #ifdef FEAT_CMDWIN
699 (char_u *)&p_cedit, PV_NONE,
700 {(char_u *)"", (char_u *)CTRL_F_STR}
701 #else
702 (char_u *)NULL, PV_NONE,
703 {(char_u *)0L, (char_u *)0L}
704 #endif
705 SCRIPTID_INIT},
706 {"charconvert", "ccv", P_STRING|P_VI_DEF|P_SECURE,
707 #if defined(FEAT_MBYTE) && defined(FEAT_EVAL)
708 (char_u *)&p_ccv, PV_NONE,
709 {(char_u *)"", (char_u *)0L}
710 #else
711 (char_u *)NULL, PV_NONE,
712 {(char_u *)0L, (char_u *)0L}
713 #endif
714 SCRIPTID_INIT},
715 {"cindent", "cin", P_BOOL|P_VI_DEF|P_VIM,
716 #ifdef FEAT_CINDENT
717 (char_u *)&p_cin, PV_CIN,
718 #else
719 (char_u *)NULL, PV_NONE,
720 #endif
721 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
722 {"cinkeys", "cink", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
723 #ifdef FEAT_CINDENT
724 (char_u *)&p_cink, PV_CINK,
725 {(char_u *)"0{,0},0),:,0#,!^F,o,O,e", (char_u *)0L}
726 #else
727 (char_u *)NULL, PV_NONE,
728 {(char_u *)0L, (char_u *)0L}
729 #endif
730 SCRIPTID_INIT},
731 {"cinoptions", "cino", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
732 #ifdef FEAT_CINDENT
733 (char_u *)&p_cino, PV_CINO,
734 #else
735 (char_u *)NULL, PV_NONE,
736 #endif
737 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
738 {"cinwords", "cinw", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
739 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
740 (char_u *)&p_cinw, PV_CINW,
741 {(char_u *)"if,else,while,do,for,switch",
742 (char_u *)0L}
743 #else
744 (char_u *)NULL, PV_NONE,
745 {(char_u *)0L, (char_u *)0L}
746 #endif
747 SCRIPTID_INIT},
748 {"clipboard", "cb", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
749 #ifdef FEAT_CLIPBOARD
750 (char_u *)&p_cb, PV_NONE,
751 # ifdef FEAT_XCLIPBOARD
752 {(char_u *)"autoselect,exclude:cons\\|linux",
753 (char_u *)0L}
754 # else
755 {(char_u *)"", (char_u *)0L}
756 # endif
757 #else
758 (char_u *)NULL, PV_NONE,
759 {(char_u *)"", (char_u *)0L}
760 #endif
761 SCRIPTID_INIT},
762 {"cmdheight", "ch", P_NUM|P_VI_DEF|P_RALL,
763 (char_u *)&p_ch, PV_NONE,
764 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
765 {"cmdwinheight", "cwh", P_NUM|P_VI_DEF,
766 #ifdef FEAT_CMDWIN
767 (char_u *)&p_cwh, PV_NONE,
768 #else
769 (char_u *)NULL, PV_NONE,
770 #endif
771 {(char_u *)7L, (char_u *)0L} SCRIPTID_INIT},
772 {"columns", "co", P_NUM|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RCLR,
773 (char_u *)&Columns, PV_NONE,
774 {(char_u *)80L, (char_u *)0L} SCRIPTID_INIT},
775 {"comments", "com", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
776 #ifdef FEAT_COMMENTS
777 (char_u *)&p_com, PV_COM,
778 {(char_u *)"s1:/*,mb:*,ex:*/,://,b:#,:%,:XCOMM,n:>,fb:-",
779 (char_u *)0L}
780 #else
781 (char_u *)NULL, PV_NONE,
782 {(char_u *)0L, (char_u *)0L}
783 #endif
784 SCRIPTID_INIT},
785 {"commentstring", "cms", P_STRING|P_ALLOCED|P_VI_DEF,
786 #ifdef FEAT_FOLDING
787 (char_u *)&p_cms, PV_CMS,
788 {(char_u *)"/*%s*/", (char_u *)0L}
789 #else
790 (char_u *)NULL, PV_NONE,
791 {(char_u *)0L, (char_u *)0L}
792 #endif
793 SCRIPTID_INIT},
794 /* P_PRI_MKRC isn't needed here, optval_default()
795 * always returns TRUE for 'compatible' */
796 {"compatible", "cp", P_BOOL|P_RALL,
797 (char_u *)&p_cp, PV_NONE,
798 {(char_u *)TRUE, (char_u *)FALSE} SCRIPTID_INIT},
799 {"complete", "cpt", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
800 #ifdef FEAT_INS_EXPAND
801 (char_u *)&p_cpt, PV_CPT,
802 {(char_u *)".,w,b,u,t,i", (char_u *)0L}
803 #else
804 (char_u *)NULL, PV_NONE,
805 {(char_u *)0L, (char_u *)0L}
806 #endif
807 SCRIPTID_INIT},
808 {"completefunc", "cfu", P_STRING|P_ALLOCED|P_VI_DEF|P_SECURE,
809 #ifdef FEAT_COMPL_FUNC
810 (char_u *)&p_cfu, PV_CFU,
811 {(char_u *)"", (char_u *)0L}
812 #else
813 (char_u *)NULL, PV_NONE,
814 {(char_u *)0L, (char_u *)0L}
815 #endif
816 SCRIPTID_INIT},
817 {"completeopt", "cot", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
818 #ifdef FEAT_INS_EXPAND
819 (char_u *)&p_cot, PV_NONE,
820 {(char_u *)"menu,preview", (char_u *)0L}
821 #else
822 (char_u *)NULL, PV_NONE,
823 {(char_u *)0L, (char_u *)0L}
824 #endif
825 SCRIPTID_INIT},
826 {"confirm", "cf", P_BOOL|P_VI_DEF,
827 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
828 (char_u *)&p_confirm, PV_NONE,
829 #else
830 (char_u *)NULL, PV_NONE,
831 #endif
832 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
833 {"conskey", "consk",P_BOOL|P_VI_DEF,
834 #ifdef MSDOS
835 (char_u *)&p_consk, PV_NONE,
836 #else
837 (char_u *)NULL, PV_NONE,
838 #endif
839 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
840 {"copyindent", "ci", P_BOOL|P_VI_DEF|P_VIM,
841 (char_u *)&p_ci, PV_CI,
842 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
843 {"cpoptions", "cpo", P_STRING|P_VIM|P_RALL|P_FLAGLIST,
844 (char_u *)&p_cpo, PV_NONE,
845 {(char_u *)CPO_VI, (char_u *)CPO_VIM}
846 SCRIPTID_INIT},
847 {"cscopepathcomp", "cspc", P_NUM|P_VI_DEF|P_VIM,
848 #ifdef FEAT_CSCOPE
849 (char_u *)&p_cspc, PV_NONE,
850 #else
851 (char_u *)NULL, PV_NONE,
852 #endif
853 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
854 {"cscopeprg", "csprg", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
855 #ifdef FEAT_CSCOPE
856 (char_u *)&p_csprg, PV_NONE,
857 {(char_u *)"cscope", (char_u *)0L}
858 #else
859 (char_u *)NULL, PV_NONE,
860 {(char_u *)0L, (char_u *)0L}
861 #endif
862 SCRIPTID_INIT},
863 {"cscopequickfix", "csqf", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
864 #if defined(FEAT_CSCOPE) && defined(FEAT_QUICKFIX)
865 (char_u *)&p_csqf, PV_NONE,
866 {(char_u *)"", (char_u *)0L}
867 #else
868 (char_u *)NULL, PV_NONE,
869 {(char_u *)0L, (char_u *)0L}
870 #endif
871 SCRIPTID_INIT},
872 {"cscopetag", "cst", P_BOOL|P_VI_DEF|P_VIM,
873 #ifdef FEAT_CSCOPE
874 (char_u *)&p_cst, PV_NONE,
875 #else
876 (char_u *)NULL, PV_NONE,
877 #endif
878 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
879 {"cscopetagorder", "csto", P_NUM|P_VI_DEF|P_VIM,
880 #ifdef FEAT_CSCOPE
881 (char_u *)&p_csto, PV_NONE,
882 #else
883 (char_u *)NULL, PV_NONE,
884 #endif
885 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
886 {"cscopeverbose", "csverb", P_BOOL|P_VI_DEF|P_VIM,
887 #ifdef FEAT_CSCOPE
888 (char_u *)&p_csverbose, PV_NONE,
889 #else
890 (char_u *)NULL, PV_NONE,
891 #endif
892 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
893 {"cursorcolumn", "cuc", P_BOOL|P_VI_DEF|P_RWIN,
894 #ifdef FEAT_SYN_HL
895 (char_u *)VAR_WIN, PV_CUC,
896 #else
897 (char_u *)NULL, PV_NONE,
898 #endif
899 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
900 {"cursorline", "cul", P_BOOL|P_VI_DEF|P_RWIN,
901 #ifdef FEAT_SYN_HL
902 (char_u *)VAR_WIN, PV_CUL,
903 #else
904 (char_u *)NULL, PV_NONE,
905 #endif
906 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
907 {"debug", NULL, P_STRING|P_VI_DEF,
908 (char_u *)&p_debug, PV_NONE,
909 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
910 {"define", "def", P_STRING|P_ALLOCED|P_VI_DEF,
911 #ifdef FEAT_FIND_ID
912 (char_u *)&p_def, PV_DEF,
913 {(char_u *)"^\\s*#\\s*define", (char_u *)0L}
914 #else
915 (char_u *)NULL, PV_NONE,
916 {(char_u *)NULL, (char_u *)0L}
917 #endif
918 SCRIPTID_INIT},
919 {"delcombine", "deco", P_BOOL|P_VI_DEF|P_VIM,
920 #ifdef FEAT_MBYTE
921 (char_u *)&p_deco, PV_NONE,
922 #else
923 (char_u *)NULL, PV_NONE,
924 #endif
925 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
926 {"dictionary", "dict", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
927 #ifdef FEAT_INS_EXPAND
928 (char_u *)&p_dict, PV_DICT,
929 #else
930 (char_u *)NULL, PV_NONE,
931 #endif
932 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
933 {"diff", NULL, P_BOOL|P_VI_DEF|P_RWIN|P_NOGLOB,
934 #ifdef FEAT_DIFF
935 (char_u *)VAR_WIN, PV_DIFF,
936 #else
937 (char_u *)NULL, PV_NONE,
938 #endif
939 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
940 {"diffexpr", "dex", P_STRING|P_VI_DEF|P_SECURE,
941 #if defined(FEAT_DIFF) && defined(FEAT_EVAL)
942 (char_u *)&p_dex, PV_NONE,
943 {(char_u *)"", (char_u *)0L}
944 #else
945 (char_u *)NULL, PV_NONE,
946 {(char_u *)0L, (char_u *)0L}
947 #endif
948 SCRIPTID_INIT},
949 {"diffopt", "dip", P_STRING|P_ALLOCED|P_VI_DEF|P_RWIN|P_COMMA|P_NODUP,
950 #ifdef FEAT_DIFF
951 (char_u *)&p_dip, PV_NONE,
952 {(char_u *)"filler", (char_u *)NULL}
953 #else
954 (char_u *)NULL, PV_NONE,
955 {(char_u *)"", (char_u *)NULL}
956 #endif
957 SCRIPTID_INIT},
958 {"digraph", "dg", P_BOOL|P_VI_DEF|P_VIM,
959 #ifdef FEAT_DIGRAPHS
960 (char_u *)&p_dg, PV_NONE,
961 #else
962 (char_u *)NULL, PV_NONE,
963 #endif
964 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
965 {"directory", "dir", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP|P_SECURE,
966 (char_u *)&p_dir, PV_NONE,
967 {(char_u *)DFLT_DIR, (char_u *)0L} SCRIPTID_INIT},
968 {"display", "dy", P_STRING|P_VI_DEF|P_COMMA|P_RALL|P_NODUP,
969 (char_u *)&p_dy, PV_NONE,
970 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
971 {"eadirection", "ead", P_STRING|P_VI_DEF,
972 #ifdef FEAT_VERTSPLIT
973 (char_u *)&p_ead, PV_NONE,
974 {(char_u *)"both", (char_u *)0L}
975 #else
976 (char_u *)NULL, PV_NONE,
977 {(char_u *)NULL, (char_u *)0L}
978 #endif
979 SCRIPTID_INIT},
980 {"edcompatible","ed", P_BOOL|P_VI_DEF,
981 (char_u *)&p_ed, PV_NONE,
982 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
983 {"encoding", "enc", P_STRING|P_VI_DEF|P_RCLR,
984 #ifdef FEAT_MBYTE
985 (char_u *)&p_enc, PV_NONE,
986 {(char_u *)ENC_DFLT, (char_u *)0L}
987 #else
988 (char_u *)NULL, PV_NONE,
989 {(char_u *)0L, (char_u *)0L}
990 #endif
991 SCRIPTID_INIT},
992 {"endofline", "eol", P_BOOL|P_NO_MKRC|P_VI_DEF|P_RSTAT,
993 (char_u *)&p_eol, PV_EOL,
994 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
995 {"equalalways", "ea", P_BOOL|P_VI_DEF|P_RALL,
996 (char_u *)&p_ea, PV_NONE,
997 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
998 {"equalprg", "ep", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
999 (char_u *)&p_ep, PV_EP,
1000 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1001 {"errorbells", "eb", P_BOOL|P_VI_DEF,
1002 (char_u *)&p_eb, PV_NONE,
1003 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1004 {"errorfile", "ef", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1005 #ifdef FEAT_QUICKFIX
1006 (char_u *)&p_ef, PV_NONE,
1007 {(char_u *)DFLT_ERRORFILE, (char_u *)0L}
1008 #else
1009 (char_u *)NULL, PV_NONE,
1010 {(char_u *)NULL, (char_u *)0L}
1011 #endif
1012 SCRIPTID_INIT},
1013 {"errorformat", "efm", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1014 #ifdef FEAT_QUICKFIX
1015 (char_u *)&p_efm, PV_EFM,
1016 {(char_u *)DFLT_EFM, (char_u *)0L}
1017 #else
1018 (char_u *)NULL, PV_NONE,
1019 {(char_u *)NULL, (char_u *)0L}
1020 #endif
1021 SCRIPTID_INIT},
1022 {"esckeys", "ek", P_BOOL|P_VIM,
1023 (char_u *)&p_ek, PV_NONE,
1024 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
1025 {"eventignore", "ei", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1026 #ifdef FEAT_AUTOCMD
1027 (char_u *)&p_ei, PV_NONE,
1028 #else
1029 (char_u *)NULL, PV_NONE,
1030 #endif
1031 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1032 {"expandtab", "et", P_BOOL|P_VI_DEF|P_VIM,
1033 (char_u *)&p_et, PV_ET,
1034 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1035 {"exrc", "ex", P_BOOL|P_VI_DEF|P_SECURE,
1036 (char_u *)&p_exrc, PV_NONE,
1037 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1038 {"fileencoding","fenc", P_STRING|P_ALLOCED|P_VI_DEF|P_RSTAT|P_RBUF|P_NO_MKRC,
1039 #ifdef FEAT_MBYTE
1040 (char_u *)&p_fenc, PV_FENC,
1041 {(char_u *)"", (char_u *)0L}
1042 #else
1043 (char_u *)NULL, PV_NONE,
1044 {(char_u *)0L, (char_u *)0L}
1045 #endif
1046 SCRIPTID_INIT},
1047 {"fileencodings","fencs", P_STRING|P_VI_DEF|P_COMMA,
1048 #ifdef FEAT_MBYTE
1049 (char_u *)&p_fencs, PV_NONE,
1050 {(char_u *)"ucs-bom", (char_u *)0L}
1051 #else
1052 (char_u *)NULL, PV_NONE,
1053 {(char_u *)0L, (char_u *)0L}
1054 #endif
1055 SCRIPTID_INIT},
1056 {"fileformat", "ff", P_STRING|P_ALLOCED|P_VI_DEF|P_RSTAT|P_NO_MKRC,
1057 (char_u *)&p_ff, PV_FF,
1058 {(char_u *)DFLT_FF, (char_u *)0L} SCRIPTID_INIT},
1059 {"fileformats", "ffs", P_STRING|P_VIM|P_COMMA|P_NODUP,
1060 (char_u *)&p_ffs, PV_NONE,
1061 {(char_u *)DFLT_FFS_VI, (char_u *)DFLT_FFS_VIM}
1062 SCRIPTID_INIT},
1063 {"filetype", "ft", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB|P_NFNAME,
1064 #ifdef FEAT_AUTOCMD
1065 (char_u *)&p_ft, PV_FT,
1066 {(char_u *)"", (char_u *)0L}
1067 #else
1068 (char_u *)NULL, PV_NONE,
1069 {(char_u *)0L, (char_u *)0L}
1070 #endif
1071 SCRIPTID_INIT},
1072 {"fillchars", "fcs", P_STRING|P_VI_DEF|P_RALL|P_COMMA|P_NODUP,
1073 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
1074 (char_u *)&p_fcs, PV_NONE,
1075 {(char_u *)"vert:|,fold:-", (char_u *)0L}
1076 #else
1077 (char_u *)NULL, PV_NONE,
1078 {(char_u *)"", (char_u *)0L}
1079 #endif
1080 SCRIPTID_INIT},
1081 {"fkmap", "fk", P_BOOL|P_VI_DEF,
1082 #ifdef FEAT_FKMAP
1083 (char_u *)&p_fkmap, PV_NONE,
1084 #else
1085 (char_u *)NULL, PV_NONE,
1086 #endif
1087 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1088 {"flash", "fl", P_BOOL|P_VI_DEF,
1089 (char_u *)NULL, PV_NONE,
1090 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1091 #ifdef FEAT_FOLDING
1092 {"foldclose", "fcl", P_STRING|P_VI_DEF|P_COMMA|P_NODUP|P_RWIN,
1093 (char_u *)&p_fcl, PV_NONE,
1094 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1095 {"foldcolumn", "fdc", P_NUM|P_VI_DEF|P_RWIN,
1096 (char_u *)VAR_WIN, PV_FDC,
1097 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1098 {"foldenable", "fen", P_BOOL|P_VI_DEF|P_RWIN,
1099 (char_u *)VAR_WIN, PV_FEN,
1100 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1101 {"foldexpr", "fde", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1102 # ifdef FEAT_EVAL
1103 (char_u *)VAR_WIN, PV_FDE,
1104 {(char_u *)"0", (char_u *)NULL}
1105 # else
1106 (char_u *)NULL, PV_NONE,
1107 {(char_u *)NULL, (char_u *)0L}
1108 # endif
1109 SCRIPTID_INIT},
1110 {"foldignore", "fdi", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1111 (char_u *)VAR_WIN, PV_FDI,
1112 {(char_u *)"#", (char_u *)NULL} SCRIPTID_INIT},
1113 {"foldlevel", "fdl", P_NUM|P_VI_DEF|P_RWIN,
1114 (char_u *)VAR_WIN, PV_FDL,
1115 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
1116 {"foldlevelstart","fdls", P_NUM|P_VI_DEF,
1117 (char_u *)&p_fdls, PV_NONE,
1118 {(char_u *)-1L, (char_u *)0L} SCRIPTID_INIT},
1119 {"foldmarker", "fmr", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|
1120 P_RWIN|P_COMMA|P_NODUP,
1121 (char_u *)VAR_WIN, PV_FMR,
1122 {(char_u *)"{{{,}}}", (char_u *)NULL}
1123 SCRIPTID_INIT},
1124 {"foldmethod", "fdm", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1125 (char_u *)VAR_WIN, PV_FDM,
1126 {(char_u *)"manual", (char_u *)NULL} SCRIPTID_INIT},
1127 {"foldminlines","fml", P_NUM|P_VI_DEF|P_RWIN,
1128 (char_u *)VAR_WIN, PV_FML,
1129 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
1130 {"foldnestmax", "fdn", P_NUM|P_VI_DEF|P_RWIN,
1131 (char_u *)VAR_WIN, PV_FDN,
1132 {(char_u *)20L, (char_u *)0L} SCRIPTID_INIT},
1133 {"foldopen", "fdo", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1134 (char_u *)&p_fdo, PV_NONE,
1135 {(char_u *)"block,hor,mark,percent,quickfix,search,tag,undo",
1136 (char_u *)0L} SCRIPTID_INIT},
1137 {"foldtext", "fdt", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1138 # ifdef FEAT_EVAL
1139 (char_u *)VAR_WIN, PV_FDT,
1140 {(char_u *)"foldtext()", (char_u *)NULL}
1141 # else
1142 (char_u *)NULL, PV_NONE,
1143 {(char_u *)NULL, (char_u *)0L}
1144 # endif
1145 SCRIPTID_INIT},
1146 #endif
1147 {"formatexpr", "fex", P_STRING|P_ALLOCED|P_VI_DEF|P_VIM,
1148 #ifdef FEAT_EVAL
1149 (char_u *)&p_fex, PV_FEX,
1150 {(char_u *)"", (char_u *)0L}
1151 #else
1152 (char_u *)NULL, PV_NONE,
1153 {(char_u *)0L, (char_u *)0L}
1154 #endif
1155 SCRIPTID_INIT},
1156 {"formatoptions","fo", P_STRING|P_ALLOCED|P_VIM|P_FLAGLIST,
1157 (char_u *)&p_fo, PV_FO,
1158 {(char_u *)DFLT_FO_VI, (char_u *)DFLT_FO_VIM}
1159 SCRIPTID_INIT},
1160 {"formatlistpat","flp", P_STRING|P_ALLOCED|P_VI_DEF,
1161 (char_u *)&p_flp, PV_FLP,
1162 {(char_u *)"^\\s*\\d\\+[\\]:.)}\\t ]\\s*",
1163 (char_u *)0L} SCRIPTID_INIT},
1164 {"formatprg", "fp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1165 (char_u *)&p_fp, PV_NONE,
1166 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1167 {"fsync", "fs", P_BOOL|P_SECURE|P_VI_DEF,
1168 #ifdef HAVE_FSYNC
1169 (char_u *)&p_fs, PV_NONE,
1170 {(char_u *)TRUE, (char_u *)0L}
1171 #else
1172 (char_u *)NULL, PV_NONE,
1173 {(char_u *)FALSE, (char_u *)0L}
1174 #endif
1175 SCRIPTID_INIT},
1176 {"gdefault", "gd", P_BOOL|P_VI_DEF|P_VIM,
1177 (char_u *)&p_gd, PV_NONE,
1178 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1179 {"graphic", "gr", P_BOOL|P_VI_DEF,
1180 (char_u *)NULL, PV_NONE,
1181 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1182 {"grepformat", "gfm", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1183 #ifdef FEAT_QUICKFIX
1184 (char_u *)&p_gefm, PV_NONE,
1185 {(char_u *)DFLT_GREPFORMAT, (char_u *)0L}
1186 #else
1187 (char_u *)NULL, PV_NONE,
1188 {(char_u *)NULL, (char_u *)0L}
1189 #endif
1190 SCRIPTID_INIT},
1191 {"grepprg", "gp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1192 #ifdef FEAT_QUICKFIX
1193 (char_u *)&p_gp, PV_GP,
1195 # ifdef WIN3264
1196 /* may be changed to "grep -n" in os_win32.c */
1197 (char_u *)"findstr /n",
1198 # else
1199 # ifdef UNIX
1200 /* Add an extra file name so that grep will always
1201 * insert a file name in the match line. */
1202 (char_u *)"grep -n $* /dev/null",
1203 # else
1204 # ifdef VMS
1205 (char_u *)"SEARCH/NUMBERS ",
1206 # else
1207 (char_u *)"grep -n ",
1208 # endif
1209 # endif
1210 # endif
1211 (char_u *)0L}
1212 #else
1213 (char_u *)NULL, PV_NONE,
1214 {(char_u *)NULL, (char_u *)0L}
1215 #endif
1216 SCRIPTID_INIT},
1217 {"guicursor", "gcr", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1218 #ifdef CURSOR_SHAPE
1219 (char_u *)&p_guicursor, PV_NONE,
1221 # ifdef FEAT_GUI
1222 (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",
1223 # else /* MSDOS or Win32 console */
1224 (char_u *)"n-v-c:block,o:hor50,i-ci:hor15,r-cr:hor30,sm:block",
1225 # endif
1226 (char_u *)0L}
1227 #else
1228 (char_u *)NULL, PV_NONE,
1229 {(char_u *)NULL, (char_u *)0L}
1230 #endif
1231 SCRIPTID_INIT},
1232 {"guifont", "gfn", P_STRING|P_VI_DEF|P_RCLR|P_COMMA|P_NODUP,
1233 #ifdef FEAT_GUI
1234 (char_u *)&p_guifont, PV_NONE,
1235 {(char_u *)"", (char_u *)0L}
1236 #else
1237 (char_u *)NULL, PV_NONE,
1238 {(char_u *)NULL, (char_u *)0L}
1239 #endif
1240 SCRIPTID_INIT},
1241 {"guifontset", "gfs", P_STRING|P_VI_DEF|P_RCLR|P_COMMA,
1242 #if defined(FEAT_GUI) && defined(FEAT_XFONTSET)
1243 (char_u *)&p_guifontset, PV_NONE,
1244 {(char_u *)"", (char_u *)0L}
1245 #else
1246 (char_u *)NULL, PV_NONE,
1247 {(char_u *)NULL, (char_u *)0L}
1248 #endif
1249 SCRIPTID_INIT},
1250 {"guifontwide", "gfw", P_STRING|P_VI_DEF|P_RCLR|P_COMMA|P_NODUP,
1251 #if defined(FEAT_GUI) && defined(FEAT_MBYTE)
1252 (char_u *)&p_guifontwide, PV_NONE,
1253 {(char_u *)"", (char_u *)0L}
1254 #else
1255 (char_u *)NULL, PV_NONE,
1256 {(char_u *)NULL, (char_u *)0L}
1257 #endif
1258 SCRIPTID_INIT},
1259 {"guiheadroom", "ghr", P_NUM|P_VI_DEF,
1260 #if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11)
1261 (char_u *)&p_ghr, PV_NONE,
1262 #else
1263 (char_u *)NULL, PV_NONE,
1264 #endif
1265 {(char_u *)50L, (char_u *)0L} SCRIPTID_INIT},
1266 {"guioptions", "go", P_STRING|P_VI_DEF|P_RALL|P_FLAGLIST,
1267 #if defined(FEAT_GUI)
1268 (char_u *)&p_go, PV_NONE,
1269 # if defined(UNIX) && !defined(MACOS)
1270 {(char_u *)"aegimrLtT", (char_u *)0L}
1271 # else
1272 {(char_u *)"egmrLtT", (char_u *)0L}
1273 # endif
1274 #else
1275 (char_u *)NULL, PV_NONE,
1276 {(char_u *)NULL, (char_u *)0L}
1277 #endif
1278 SCRIPTID_INIT},
1279 {"guipty", NULL, P_BOOL|P_VI_DEF,
1280 #if defined(FEAT_GUI)
1281 (char_u *)&p_guipty, PV_NONE,
1282 #else
1283 (char_u *)NULL, PV_NONE,
1284 #endif
1285 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1286 {"guitablabel", "gtl", P_STRING|P_VI_DEF|P_RWIN,
1287 #if defined(FEAT_GUI_TABLINE)
1288 (char_u *)&p_gtl, PV_NONE,
1289 {(char_u *)"", (char_u *)0L}
1290 #else
1291 (char_u *)NULL, PV_NONE,
1292 {(char_u *)NULL, (char_u *)0L}
1293 #endif
1294 SCRIPTID_INIT},
1295 {"guitabtooltip", "gtt", P_STRING|P_VI_DEF|P_RWIN,
1296 #if defined(FEAT_GUI_TABLINE)
1297 (char_u *)&p_gtt, PV_NONE,
1298 {(char_u *)"", (char_u *)0L}
1299 #else
1300 (char_u *)NULL, PV_NONE,
1301 {(char_u *)NULL, (char_u *)0L}
1302 #endif
1303 SCRIPTID_INIT},
1304 {"hardtabs", "ht", P_NUM|P_VI_DEF,
1305 (char_u *)NULL, PV_NONE,
1306 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
1307 {"helpfile", "hf", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1308 (char_u *)&p_hf, PV_NONE,
1309 {(char_u *)DFLT_HELPFILE, (char_u *)0L}
1310 SCRIPTID_INIT},
1311 {"helpheight", "hh", P_NUM|P_VI_DEF,
1312 #ifdef FEAT_WINDOWS
1313 (char_u *)&p_hh, PV_NONE,
1314 #else
1315 (char_u *)NULL, PV_NONE,
1316 #endif
1317 {(char_u *)20L, (char_u *)0L} SCRIPTID_INIT},
1318 {"helplang", "hlg", P_STRING|P_VI_DEF|P_COMMA,
1319 #ifdef FEAT_MULTI_LANG
1320 (char_u *)&p_hlg, PV_NONE,
1321 {(char_u *)"", (char_u *)0L}
1322 #else
1323 (char_u *)NULL, PV_NONE,
1324 {(char_u *)0L, (char_u *)0L}
1325 #endif
1326 SCRIPTID_INIT},
1327 {"hidden", "hid", P_BOOL|P_VI_DEF,
1328 (char_u *)&p_hid, PV_NONE,
1329 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1330 {"highlight", "hl", P_STRING|P_VI_DEF|P_RCLR|P_COMMA|P_NODUP,
1331 (char_u *)&p_hl, PV_NONE,
1332 {(char_u *)HIGHLIGHT_INIT, (char_u *)0L}
1333 SCRIPTID_INIT},
1334 {"history", "hi", P_NUM|P_VIM,
1335 (char_u *)&p_hi, PV_NONE,
1336 {(char_u *)0L, (char_u *)20L} SCRIPTID_INIT},
1337 {"hkmap", "hk", P_BOOL|P_VI_DEF|P_VIM,
1338 #ifdef FEAT_RIGHTLEFT
1339 (char_u *)&p_hkmap, PV_NONE,
1340 #else
1341 (char_u *)NULL, PV_NONE,
1342 #endif
1343 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1344 {"hkmapp", "hkp", P_BOOL|P_VI_DEF|P_VIM,
1345 #ifdef FEAT_RIGHTLEFT
1346 (char_u *)&p_hkmapp, PV_NONE,
1347 #else
1348 (char_u *)NULL, PV_NONE,
1349 #endif
1350 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1351 {"hlsearch", "hls", P_BOOL|P_VI_DEF|P_VIM|P_RALL,
1352 (char_u *)&p_hls, PV_NONE,
1353 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1354 {"icon", NULL, P_BOOL|P_VI_DEF,
1355 #ifdef FEAT_TITLE
1356 (char_u *)&p_icon, PV_NONE,
1357 #else
1358 (char_u *)NULL, PV_NONE,
1359 #endif
1360 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1361 {"iconstring", NULL, P_STRING|P_VI_DEF,
1362 #ifdef FEAT_TITLE
1363 (char_u *)&p_iconstring, PV_NONE,
1364 #else
1365 (char_u *)NULL, PV_NONE,
1366 #endif
1367 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1368 {"ignorecase", "ic", P_BOOL|P_VI_DEF,
1369 (char_u *)&p_ic, PV_NONE,
1370 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1371 {"imactivatekey","imak",P_STRING|P_VI_DEF,
1372 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
1373 (char_u *)&p_imak, PV_NONE,
1374 #else
1375 (char_u *)NULL, PV_NONE,
1376 #endif
1377 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1378 {"imcmdline", "imc", P_BOOL|P_VI_DEF,
1379 #ifdef USE_IM_CONTROL
1380 (char_u *)&p_imcmdline, PV_NONE,
1381 #else
1382 (char_u *)NULL, PV_NONE,
1383 #endif
1384 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1385 {"imdisable", "imd", P_BOOL|P_VI_DEF,
1386 #ifdef USE_IM_CONTROL
1387 (char_u *)&p_imdisable, PV_NONE,
1388 #else
1389 (char_u *)NULL, PV_NONE,
1390 #endif
1391 #ifdef __sgi
1392 {(char_u *)TRUE, (char_u *)0L}
1393 #else
1394 {(char_u *)FALSE, (char_u *)0L}
1395 #endif
1396 SCRIPTID_INIT},
1397 {"iminsert", "imi", P_NUM|P_VI_DEF,
1398 (char_u *)&p_iminsert, PV_IMI,
1399 #ifdef B_IMODE_IM
1400 {(char_u *)B_IMODE_IM, (char_u *)0L}
1401 #else
1402 {(char_u *)B_IMODE_NONE, (char_u *)0L}
1403 #endif
1404 SCRIPTID_INIT},
1405 {"imsearch", "ims", P_NUM|P_VI_DEF,
1406 (char_u *)&p_imsearch, PV_IMS,
1407 #ifdef B_IMODE_IM
1408 {(char_u *)B_IMODE_IM, (char_u *)0L}
1409 #else
1410 {(char_u *)B_IMODE_NONE, (char_u *)0L}
1411 #endif
1412 SCRIPTID_INIT},
1413 {"include", "inc", P_STRING|P_ALLOCED|P_VI_DEF,
1414 #ifdef FEAT_FIND_ID
1415 (char_u *)&p_inc, PV_INC,
1416 {(char_u *)"^\\s*#\\s*include", (char_u *)0L}
1417 #else
1418 (char_u *)NULL, PV_NONE,
1419 {(char_u *)0L, (char_u *)0L}
1420 #endif
1421 SCRIPTID_INIT},
1422 {"includeexpr", "inex", P_STRING|P_ALLOCED|P_VI_DEF,
1423 #if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
1424 (char_u *)&p_inex, PV_INEX,
1425 {(char_u *)"", (char_u *)0L}
1426 #else
1427 (char_u *)NULL, PV_NONE,
1428 {(char_u *)0L, (char_u *)0L}
1429 #endif
1430 SCRIPTID_INIT},
1431 {"incsearch", "is", P_BOOL|P_VI_DEF|P_VIM,
1432 (char_u *)&p_is, PV_NONE,
1433 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1434 {"indentexpr", "inde", P_STRING|P_ALLOCED|P_VI_DEF|P_VIM,
1435 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
1436 (char_u *)&p_inde, PV_INDE,
1437 {(char_u *)"", (char_u *)0L}
1438 #else
1439 (char_u *)NULL, PV_NONE,
1440 {(char_u *)0L, (char_u *)0L}
1441 #endif
1442 SCRIPTID_INIT},
1443 {"indentkeys", "indk", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
1444 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
1445 (char_u *)&p_indk, PV_INDK,
1446 {(char_u *)"0{,0},:,0#,!^F,o,O,e", (char_u *)0L}
1447 #else
1448 (char_u *)NULL, PV_NONE,
1449 {(char_u *)0L, (char_u *)0L}
1450 #endif
1451 SCRIPTID_INIT},
1452 {"infercase", "inf", P_BOOL|P_VI_DEF,
1453 (char_u *)&p_inf, PV_INF,
1454 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1455 {"insertmode", "im", P_BOOL|P_VI_DEF|P_VIM,
1456 (char_u *)&p_im, PV_NONE,
1457 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1458 {"isfname", "isf", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1459 (char_u *)&p_isf, PV_NONE,
1461 #ifdef BACKSLASH_IN_FILENAME
1462 /* Excluded are: & and ^ are special in cmd.exe
1463 * ( and ) are used in text separating fnames */
1464 (char_u *)"@,48-57,/,\\,.,-,_,+,,,#,$,%,{,},[,],:,@-@,!,~,=",
1465 #else
1466 # ifdef AMIGA
1467 (char_u *)"@,48-57,/,.,-,_,+,,,$,:",
1468 # else
1469 # ifdef VMS
1470 (char_u *)"@,48-57,/,.,-,_,+,,,#,$,%,<,>,[,],:,;,~",
1471 # else /* UNIX et al. */
1472 # ifdef EBCDIC
1473 (char_u *)"@,240-249,/,.,-,_,+,,,#,$,%,~,=",
1474 # else
1475 (char_u *)"@,48-57,/,.,-,_,+,,,#,$,%,~,=",
1476 # endif
1477 # endif
1478 # endif
1479 #endif
1480 (char_u *)0L} SCRIPTID_INIT},
1481 {"isident", "isi", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1482 (char_u *)&p_isi, PV_NONE,
1484 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
1485 (char_u *)"@,48-57,_,128-167,224-235",
1486 #else
1487 # ifdef EBCDIC
1488 /* TODO: EBCDIC Check this! @ == isalpha()*/
1489 (char_u *)"@,240-249,_,66-73,81-89,98-105,"
1490 "112-120,128,140-142,156,158,172,"
1491 "174,186,191,203-207,219-225,235-239,"
1492 "251-254",
1493 # else
1494 (char_u *)"@,48-57,_,192-255",
1495 # endif
1496 #endif
1497 (char_u *)0L} SCRIPTID_INIT},
1498 {"iskeyword", "isk", P_STRING|P_ALLOCED|P_VIM|P_COMMA|P_NODUP,
1499 (char_u *)&p_isk, PV_ISK,
1501 #ifdef EBCDIC
1502 (char_u *)"@,240-249,_",
1503 /* TODO: EBCDIC Check this! @ == isalpha()*/
1504 (char_u *)"@,240-249,_,66-73,81-89,98-105,"
1505 "112-120,128,140-142,156,158,172,"
1506 "174,186,191,203-207,219-225,235-239,"
1507 "251-254",
1508 #else
1509 (char_u *)"@,48-57,_",
1510 # if defined(MSDOS) || defined(MSWIN) || defined(OS2)
1511 (char_u *)"@,48-57,_,128-167,224-235"
1512 # else
1513 ISK_LATIN1
1514 # endif
1515 #endif
1516 } SCRIPTID_INIT},
1517 {"isprint", "isp", P_STRING|P_VI_DEF|P_RALL|P_COMMA|P_NODUP,
1518 (char_u *)&p_isp, PV_NONE,
1520 #if defined(MSDOS) || defined(MSWIN) || defined(OS2) \
1521 || (defined(MACOS) && !defined(MACOS_X)) \
1522 || defined(VMS)
1523 (char_u *)"@,~-255",
1524 #else
1525 # ifdef EBCDIC
1526 /* all chars above 63 are printable */
1527 (char_u *)"63-255",
1528 # else
1529 ISP_LATIN1,
1530 # endif
1531 #endif
1532 (char_u *)0L} SCRIPTID_INIT},
1533 {"joinspaces", "js", P_BOOL|P_VI_DEF|P_VIM,
1534 (char_u *)&p_js, PV_NONE,
1535 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1536 {"key", NULL, P_STRING|P_ALLOCED|P_VI_DEF|P_NO_MKRC,
1537 #ifdef FEAT_CRYPT
1538 (char_u *)&p_key, PV_KEY,
1539 {(char_u *)"", (char_u *)0L}
1540 #else
1541 (char_u *)NULL, PV_NONE,
1542 {(char_u *)0L, (char_u *)0L}
1543 #endif
1544 SCRIPTID_INIT},
1545 {"keymap", "kmp", P_STRING|P_ALLOCED|P_VI_DEF|P_RBUF|P_RSTAT|P_NFNAME|P_PRI_MKRC,
1546 #ifdef FEAT_KEYMAP
1547 (char_u *)&p_keymap, PV_KMAP,
1548 {(char_u *)"", (char_u *)0L}
1549 #else
1550 (char_u *)NULL, PV_NONE,
1551 {(char_u *)"", (char_u *)0L}
1552 #endif
1553 SCRIPTID_INIT},
1554 {"keymodel", "km", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1555 #ifdef FEAT_VISUAL
1556 (char_u *)&p_km, PV_NONE,
1557 #else
1558 (char_u *)NULL, PV_NONE,
1559 #endif
1560 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1561 {"keywordprg", "kp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1562 (char_u *)&p_kp, PV_KP,
1564 #if defined(MSDOS) || defined(MSWIN)
1565 (char_u *)":help",
1566 #else
1567 #ifdef VMS
1568 (char_u *)"help",
1569 #else
1570 # if defined(OS2)
1571 (char_u *)"view /",
1572 # else
1573 # ifdef USEMAN_S
1574 (char_u *)"man -s",
1575 # else
1576 (char_u *)"man",
1577 # endif
1578 # endif
1579 #endif
1580 #endif
1581 (char_u *)0L} SCRIPTID_INIT},
1582 {"langmap", "lmap", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1583 #ifdef FEAT_LANGMAP
1584 (char_u *)&p_langmap, PV_NONE,
1585 {(char_u *)"", /* unmatched } */
1586 #else
1587 (char_u *)NULL, PV_NONE,
1588 {(char_u *)NULL,
1589 #endif
1590 (char_u *)0L} SCRIPTID_INIT},
1591 {"langmenu", "lm", P_STRING|P_VI_DEF|P_NFNAME,
1592 #if defined(FEAT_MENU) && defined(FEAT_MULTI_LANG)
1593 (char_u *)&p_lm, PV_NONE,
1594 #else
1595 (char_u *)NULL, PV_NONE,
1596 #endif
1597 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1598 {"laststatus", "ls", P_NUM|P_VI_DEF|P_RALL,
1599 #ifdef FEAT_WINDOWS
1600 (char_u *)&p_ls, PV_NONE,
1601 #else
1602 (char_u *)NULL, PV_NONE,
1603 #endif
1604 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
1605 {"lazyredraw", "lz", P_BOOL|P_VI_DEF,
1606 (char_u *)&p_lz, PV_NONE,
1607 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1608 {"linebreak", "lbr", P_BOOL|P_VI_DEF|P_RWIN,
1609 #ifdef FEAT_LINEBREAK
1610 (char_u *)VAR_WIN, PV_LBR,
1611 #else
1612 (char_u *)NULL, PV_NONE,
1613 #endif
1614 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1615 {"lines", NULL, P_NUM|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RCLR,
1616 (char_u *)&Rows, PV_NONE,
1618 #if defined(MSDOS) || defined(WIN3264) || defined(OS2)
1619 (char_u *)25L,
1620 #else
1621 (char_u *)24L,
1622 #endif
1623 (char_u *)0L} SCRIPTID_INIT},
1624 {"linespace", "lsp", P_NUM|P_VI_DEF|P_RCLR,
1625 #ifdef FEAT_GUI
1626 (char_u *)&p_linespace, PV_NONE,
1627 #else
1628 (char_u *)NULL, PV_NONE,
1629 #endif
1630 #ifdef FEAT_GUI_W32
1631 {(char_u *)1L, (char_u *)0L}
1632 #else
1633 {(char_u *)0L, (char_u *)0L}
1634 #endif
1635 SCRIPTID_INIT},
1636 {"lisp", NULL, P_BOOL|P_VI_DEF,
1637 #ifdef FEAT_LISP
1638 (char_u *)&p_lisp, PV_LISP,
1639 #else
1640 (char_u *)NULL, PV_NONE,
1641 #endif
1642 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1643 {"lispwords", "lw", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1644 #ifdef FEAT_LISP
1645 (char_u *)&p_lispwords, PV_NONE,
1646 {(char_u *)LISPWORD_VALUE, (char_u *)0L}
1647 #else
1648 (char_u *)NULL, PV_NONE,
1649 {(char_u *)"", (char_u *)0L}
1650 #endif
1651 SCRIPTID_INIT},
1652 {"list", NULL, P_BOOL|P_VI_DEF|P_RWIN,
1653 (char_u *)VAR_WIN, PV_LIST,
1654 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1655 {"listchars", "lcs", P_STRING|P_VI_DEF|P_RALL|P_COMMA|P_NODUP,
1656 (char_u *)&p_lcs, PV_NONE,
1657 {(char_u *)"eol:$", (char_u *)0L} SCRIPTID_INIT},
1658 {"loadplugins", "lpl", P_BOOL|P_VI_DEF,
1659 (char_u *)&p_lpl, PV_NONE,
1660 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1661 #ifdef FEAT_GUI_MAC
1662 {"macatsui", NULL, P_BOOL|P_VI_DEF|P_RCLR,
1663 (char_u *)&p_macatsui, PV_NONE,
1664 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1665 #endif
1666 {"magic", NULL, P_BOOL|P_VI_DEF,
1667 (char_u *)&p_magic, PV_NONE,
1668 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1669 {"makeef", "mef", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1670 #ifdef FEAT_QUICKFIX
1671 (char_u *)&p_mef, PV_NONE,
1672 {(char_u *)"", (char_u *)0L}
1673 #else
1674 (char_u *)NULL, PV_NONE,
1675 {(char_u *)NULL, (char_u *)0L}
1676 #endif
1677 SCRIPTID_INIT},
1678 {"makeprg", "mp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1679 #ifdef FEAT_QUICKFIX
1680 (char_u *)&p_mp, PV_MP,
1681 # ifdef VMS
1682 {(char_u *)"MMS", (char_u *)0L}
1683 # else
1684 {(char_u *)"make", (char_u *)0L}
1685 # endif
1686 #else
1687 (char_u *)NULL, PV_NONE,
1688 {(char_u *)NULL, (char_u *)0L}
1689 #endif
1690 SCRIPTID_INIT},
1691 {"matchpairs", "mps", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
1692 (char_u *)&p_mps, PV_MPS,
1693 {(char_u *)"(:),{:},[:]", (char_u *)0L}
1694 SCRIPTID_INIT},
1695 {"matchtime", "mat", P_NUM|P_VI_DEF,
1696 (char_u *)&p_mat, PV_NONE,
1697 {(char_u *)5L, (char_u *)0L} SCRIPTID_INIT},
1698 {"maxcombine", "mco", P_NUM|P_VI_DEF,
1699 #ifdef FEAT_MBYTE
1700 (char_u *)&p_mco, PV_NONE,
1701 #else
1702 (char_u *)NULL, PV_NONE,
1703 #endif
1704 {(char_u *)2, (char_u *)0L} SCRIPTID_INIT},
1705 {"maxfuncdepth", "mfd", P_NUM|P_VI_DEF,
1706 #ifdef FEAT_EVAL
1707 (char_u *)&p_mfd, PV_NONE,
1708 #else
1709 (char_u *)NULL, PV_NONE,
1710 #endif
1711 {(char_u *)100L, (char_u *)0L} SCRIPTID_INIT},
1712 {"maxmapdepth", "mmd", P_NUM|P_VI_DEF,
1713 (char_u *)&p_mmd, PV_NONE,
1714 {(char_u *)1000L, (char_u *)0L} SCRIPTID_INIT},
1715 {"maxmem", "mm", P_NUM|P_VI_DEF,
1716 (char_u *)&p_mm, PV_NONE,
1717 {(char_u *)DFLT_MAXMEM, (char_u *)0L}
1718 SCRIPTID_INIT},
1719 {"maxmempattern","mmp", P_NUM|P_VI_DEF,
1720 (char_u *)&p_mmp, PV_NONE,
1721 {(char_u *)1000L, (char_u *)0L} SCRIPTID_INIT},
1722 {"maxmemtot", "mmt", P_NUM|P_VI_DEF,
1723 (char_u *)&p_mmt, PV_NONE,
1724 {(char_u *)DFLT_MAXMEMTOT, (char_u *)0L}
1725 SCRIPTID_INIT},
1726 {"menuitems", "mis", P_NUM|P_VI_DEF,
1727 #ifdef FEAT_MENU
1728 (char_u *)&p_mis, PV_NONE,
1729 #else
1730 (char_u *)NULL, PV_NONE,
1731 #endif
1732 {(char_u *)25L, (char_u *)0L} SCRIPTID_INIT},
1733 {"mesg", NULL, P_BOOL|P_VI_DEF,
1734 (char_u *)NULL, PV_NONE,
1735 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1736 {"mkspellmem", "msm", P_STRING|P_VI_DEF|P_EXPAND|P_SECURE,
1737 #ifdef FEAT_SPELL
1738 (char_u *)&p_msm, PV_NONE,
1739 {(char_u *)"460000,2000,500", (char_u *)0L}
1740 #else
1741 (char_u *)NULL, PV_NONE,
1742 {(char_u *)0L, (char_u *)0L}
1743 #endif
1744 SCRIPTID_INIT},
1745 {"modeline", "ml", P_BOOL|P_VIM,
1746 (char_u *)&p_ml, PV_ML,
1747 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
1748 {"modelines", "mls", P_NUM|P_VI_DEF,
1749 (char_u *)&p_mls, PV_NONE,
1750 {(char_u *)5L, (char_u *)0L} SCRIPTID_INIT},
1751 {"modifiable", "ma", P_BOOL|P_VI_DEF|P_NOGLOB,
1752 (char_u *)&p_ma, PV_MA,
1753 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1754 {"modified", "mod", P_BOOL|P_NO_MKRC|P_VI_DEF|P_RSTAT,
1755 (char_u *)&p_mod, PV_MOD,
1756 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1757 {"more", NULL, P_BOOL|P_VIM,
1758 (char_u *)&p_more, PV_NONE,
1759 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
1760 {"mouse", NULL, P_STRING|P_VI_DEF|P_FLAGLIST,
1761 (char_u *)&p_mouse, PV_NONE,
1763 #if defined(MSDOS) || defined(WIN3264)
1764 (char_u *)"a",
1765 #else
1766 (char_u *)"",
1767 #endif
1768 (char_u *)0L} SCRIPTID_INIT},
1769 {"mousefocus", "mousef", P_BOOL|P_VI_DEF,
1770 #ifdef FEAT_GUI
1771 (char_u *)&p_mousef, PV_NONE,
1772 #else
1773 (char_u *)NULL, PV_NONE,
1774 #endif
1775 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1776 {"mousehide", "mh", P_BOOL|P_VI_DEF,
1777 #ifdef FEAT_GUI
1778 (char_u *)&p_mh, PV_NONE,
1779 #else
1780 (char_u *)NULL, PV_NONE,
1781 #endif
1782 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
1783 {"mousemodel", "mousem", P_STRING|P_VI_DEF,
1784 (char_u *)&p_mousem, PV_NONE,
1786 #if defined(MSDOS) || defined(MSWIN)
1787 (char_u *)"popup",
1788 #else
1789 # if defined(MACOS)
1790 (char_u *)"popup_setpos",
1791 # else
1792 (char_u *)"extend",
1793 # endif
1794 #endif
1795 (char_u *)0L} SCRIPTID_INIT},
1796 {"mouseshape", "mouses", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1797 #ifdef FEAT_MOUSESHAPE
1798 (char_u *)&p_mouseshape, PV_NONE,
1799 {(char_u *)"i-r:beam,s:updown,sd:udsizing,vs:leftright,vd:lrsizing,m:no,ml:up-arrow,v:rightup-arrow", (char_u *)0L}
1800 #else
1801 (char_u *)NULL, PV_NONE,
1802 {(char_u *)NULL, (char_u *)0L}
1803 #endif
1804 SCRIPTID_INIT},
1805 {"mousetime", "mouset", P_NUM|P_VI_DEF,
1806 (char_u *)&p_mouset, PV_NONE,
1807 {(char_u *)500L, (char_u *)0L} SCRIPTID_INIT},
1808 {"mzquantum", "mzq", P_NUM,
1809 #ifdef FEAT_MZSCHEME
1810 (char_u *)&p_mzq, PV_NONE,
1811 #else
1812 (char_u *)NULL, PV_NONE,
1813 #endif
1814 {(char_u *)100L, (char_u *)100L} SCRIPTID_INIT},
1815 {"novice", NULL, P_BOOL|P_VI_DEF,
1816 (char_u *)NULL, PV_NONE,
1817 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1818 {"nrformats", "nf", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
1819 (char_u *)&p_nf, PV_NF,
1820 {(char_u *)"octal,hex", (char_u *)0L}
1821 SCRIPTID_INIT},
1822 {"number", "nu", P_BOOL|P_VI_DEF|P_RWIN,
1823 (char_u *)VAR_WIN, PV_NU,
1824 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1825 {"numberwidth", "nuw", P_NUM|P_RWIN|P_VIM,
1826 #ifdef FEAT_LINEBREAK
1827 (char_u *)VAR_WIN, PV_NUW,
1828 #else
1829 (char_u *)NULL, PV_NONE,
1830 #endif
1831 {(char_u *)8L, (char_u *)4L} SCRIPTID_INIT},
1832 {"omnifunc", "ofu", P_STRING|P_ALLOCED|P_VI_DEF|P_SECURE,
1833 #ifdef FEAT_COMPL_FUNC
1834 (char_u *)&p_ofu, PV_OFU,
1835 {(char_u *)"", (char_u *)0L}
1836 #else
1837 (char_u *)NULL, PV_NONE,
1838 {(char_u *)0L, (char_u *)0L}
1839 #endif
1840 SCRIPTID_INIT},
1841 {"open", NULL, P_BOOL|P_VI_DEF,
1842 (char_u *)NULL, PV_NONE,
1843 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1844 {"opendevice", "odev", P_BOOL|P_VI_DEF,
1845 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
1846 (char_u *)&p_odev, PV_NONE,
1847 #else
1848 (char_u *)NULL, PV_NONE,
1849 #endif
1850 {(char_u *)FALSE, (char_u *)FALSE}
1851 SCRIPTID_INIT},
1852 {"operatorfunc", "opfunc", P_STRING|P_VI_DEF|P_SECURE,
1853 (char_u *)&p_opfunc, PV_NONE,
1854 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1855 {"optimize", "opt", P_BOOL|P_VI_DEF,
1856 (char_u *)NULL, PV_NONE,
1857 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1858 {"osfiletype", "oft", P_STRING|P_ALLOCED|P_VI_DEF,
1859 #ifdef FEAT_OSFILETYPE
1860 (char_u *)&p_oft, PV_OFT,
1861 {(char_u *)DFLT_OFT, (char_u *)0L}
1862 #else
1863 (char_u *)NULL, PV_NONE,
1864 {(char_u *)0L, (char_u *)0L}
1865 #endif
1866 SCRIPTID_INIT},
1867 {"paragraphs", "para", P_STRING|P_VI_DEF,
1868 (char_u *)&p_para, PV_NONE,
1869 {(char_u *)"IPLPPPQPP TPHPLIPpLpItpplpipbp",
1870 (char_u *)0L} SCRIPTID_INIT},
1871 {"paste", NULL, P_BOOL|P_VI_DEF|P_PRI_MKRC,
1872 (char_u *)&p_paste, PV_NONE,
1873 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1874 {"pastetoggle", "pt", P_STRING|P_VI_DEF,
1875 (char_u *)&p_pt, PV_NONE,
1876 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1877 {"patchexpr", "pex", P_STRING|P_VI_DEF|P_SECURE,
1878 #if defined(FEAT_DIFF) && defined(FEAT_EVAL)
1879 (char_u *)&p_pex, PV_NONE,
1880 {(char_u *)"", (char_u *)0L}
1881 #else
1882 (char_u *)NULL, PV_NONE,
1883 {(char_u *)0L, (char_u *)0L}
1884 #endif
1885 SCRIPTID_INIT},
1886 {"patchmode", "pm", P_STRING|P_VI_DEF|P_NFNAME,
1887 (char_u *)&p_pm, PV_NONE,
1888 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1889 {"path", "pa", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
1890 (char_u *)&p_path, PV_PATH,
1892 #if defined AMIGA || defined MSDOS || defined MSWIN
1893 (char_u *)".,,",
1894 #else
1895 # if defined(__EMX__)
1896 (char_u *)".,/emx/include,,",
1897 # else /* Unix, probably */
1898 (char_u *)".,/usr/include,,",
1899 # endif
1900 #endif
1901 (char_u *)0L} SCRIPTID_INIT},
1902 {"preserveindent", "pi", P_BOOL|P_VI_DEF|P_VIM,
1903 (char_u *)&p_pi, PV_PI,
1904 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1905 {"previewheight", "pvh", P_NUM|P_VI_DEF,
1906 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
1907 (char_u *)&p_pvh, PV_NONE,
1908 #else
1909 (char_u *)NULL, PV_NONE,
1910 #endif
1911 {(char_u *)12L, (char_u *)0L} SCRIPTID_INIT},
1912 {"previewwindow", "pvw", P_BOOL|P_VI_DEF|P_RSTAT|P_NOGLOB,
1913 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
1914 (char_u *)VAR_WIN, PV_PVW,
1915 #else
1916 (char_u *)NULL, PV_NONE,
1917 #endif
1918 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1919 {"printdevice", "pdev", P_STRING|P_VI_DEF|P_SECURE,
1920 #ifdef FEAT_PRINTER
1921 (char_u *)&p_pdev, PV_NONE,
1922 {(char_u *)"", (char_u *)0L}
1923 #else
1924 (char_u *)NULL, PV_NONE,
1925 {(char_u *)NULL, (char_u *)0L}
1926 #endif
1927 SCRIPTID_INIT},
1928 {"printencoding", "penc", P_STRING|P_VI_DEF,
1929 #ifdef FEAT_POSTSCRIPT
1930 (char_u *)&p_penc, PV_NONE,
1931 {(char_u *)"", (char_u *)0L}
1932 #else
1933 (char_u *)NULL, PV_NONE,
1934 {(char_u *)NULL, (char_u *)0L}
1935 #endif
1936 SCRIPTID_INIT},
1937 {"printexpr", "pexpr", P_STRING|P_VI_DEF,
1938 #ifdef FEAT_POSTSCRIPT
1939 (char_u *)&p_pexpr, PV_NONE,
1940 {(char_u *)"", (char_u *)0L}
1941 #else
1942 (char_u *)NULL, PV_NONE,
1943 {(char_u *)NULL, (char_u *)0L}
1944 #endif
1945 SCRIPTID_INIT},
1946 {"printfont", "pfn", P_STRING|P_VI_DEF,
1947 #ifdef FEAT_PRINTER
1948 (char_u *)&p_pfn, PV_NONE,
1950 # ifdef MSWIN
1951 (char_u *)"Courier_New:h10",
1952 # else
1953 (char_u *)"courier",
1954 # endif
1955 (char_u *)0L}
1956 #else
1957 (char_u *)NULL, PV_NONE,
1958 {(char_u *)NULL, (char_u *)0L}
1959 #endif
1960 SCRIPTID_INIT},
1961 {"printheader", "pheader", P_STRING|P_VI_DEF|P_GETTEXT,
1962 #ifdef FEAT_PRINTER
1963 (char_u *)&p_header, PV_NONE,
1964 {(char_u *)N_("%<%f%h%m%=Page %N"), (char_u *)0L}
1965 #else
1966 (char_u *)NULL, PV_NONE,
1967 {(char_u *)NULL, (char_u *)0L}
1968 #endif
1969 SCRIPTID_INIT},
1970 {"printmbcharset", "pmbcs", P_STRING|P_VI_DEF,
1971 #if defined(FEAT_POSTSCRIPT) && defined(FEAT_MBYTE)
1972 (char_u *)&p_pmcs, PV_NONE,
1973 {(char_u *)"", (char_u *)0L}
1974 #else
1975 (char_u *)NULL, PV_NONE,
1976 {(char_u *)NULL, (char_u *)0L}
1977 #endif
1978 SCRIPTID_INIT},
1979 {"printmbfont", "pmbfn", P_STRING|P_VI_DEF,
1980 #if defined(FEAT_POSTSCRIPT) && defined(FEAT_MBYTE)
1981 (char_u *)&p_pmfn, PV_NONE,
1982 {(char_u *)"", (char_u *)0L}
1983 #else
1984 (char_u *)NULL, PV_NONE,
1985 {(char_u *)NULL, (char_u *)0L}
1986 #endif
1987 SCRIPTID_INIT},
1988 {"printoptions", "popt", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1989 #ifdef FEAT_PRINTER
1990 (char_u *)&p_popt, PV_NONE,
1991 {(char_u *)"", (char_u *)0L}
1992 #else
1993 (char_u *)NULL, PV_NONE,
1994 {(char_u *)NULL, (char_u *)0L}
1995 #endif
1996 SCRIPTID_INIT},
1997 {"prompt", NULL, P_BOOL|P_VI_DEF,
1998 (char_u *)&p_prompt, PV_NONE,
1999 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2000 {"pumheight", "ph", P_NUM|P_VI_DEF,
2001 #ifdef FEAT_INS_EXPAND
2002 (char_u *)&p_ph, PV_NONE,
2003 #else
2004 (char_u *)NULL, PV_NONE,
2005 #endif
2006 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2007 {"quoteescape", "qe", P_STRING|P_ALLOCED|P_VI_DEF,
2008 #ifdef FEAT_TEXTOBJ
2009 (char_u *)&p_qe, PV_QE,
2010 {(char_u *)"\\", (char_u *)0L}
2011 #else
2012 (char_u *)NULL, PV_NONE,
2013 {(char_u *)NULL, (char_u *)0L}
2014 #endif
2015 SCRIPTID_INIT},
2016 {"readonly", "ro", P_BOOL|P_VI_DEF|P_RSTAT|P_NOGLOB,
2017 (char_u *)&p_ro, PV_RO,
2018 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2019 {"redraw", NULL, P_BOOL|P_VI_DEF,
2020 (char_u *)NULL, PV_NONE,
2021 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2022 {"redrawtime", "rdt", P_NUM|P_VI_DEF,
2023 #ifdef FEAT_RELTIME
2024 (char_u *)&p_rdt, PV_NONE,
2025 #else
2026 (char_u *)NULL, PV_NONE,
2027 #endif
2028 {(char_u *)2000L, (char_u *)0L} SCRIPTID_INIT},
2029 {"remap", NULL, P_BOOL|P_VI_DEF,
2030 (char_u *)&p_remap, PV_NONE,
2031 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2032 {"report", NULL, P_NUM|P_VI_DEF,
2033 (char_u *)&p_report, PV_NONE,
2034 {(char_u *)2L, (char_u *)0L} SCRIPTID_INIT},
2035 {"restorescreen", "rs", P_BOOL|P_VI_DEF,
2036 #ifdef WIN3264
2037 (char_u *)&p_rs, PV_NONE,
2038 #else
2039 (char_u *)NULL, PV_NONE,
2040 #endif
2041 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2042 {"revins", "ri", P_BOOL|P_VI_DEF|P_VIM,
2043 #ifdef FEAT_RIGHTLEFT
2044 (char_u *)&p_ri, PV_NONE,
2045 #else
2046 (char_u *)NULL, PV_NONE,
2047 #endif
2048 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2049 {"rightleft", "rl", P_BOOL|P_VI_DEF|P_RWIN,
2050 #ifdef FEAT_RIGHTLEFT
2051 (char_u *)VAR_WIN, PV_RL,
2052 #else
2053 (char_u *)NULL, PV_NONE,
2054 #endif
2055 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2056 {"rightleftcmd", "rlc", P_STRING|P_ALLOCED|P_VI_DEF|P_RWIN,
2057 #ifdef FEAT_RIGHTLEFT
2058 (char_u *)VAR_WIN, PV_RLC,
2059 {(char_u *)"search", (char_u *)NULL}
2060 #else
2061 (char_u *)NULL, PV_NONE,
2062 {(char_u *)NULL, (char_u *)0L}
2063 #endif
2064 SCRIPTID_INIT},
2065 {"ruler", "ru", P_BOOL|P_VI_DEF|P_VIM|P_RSTAT,
2066 #ifdef FEAT_CMDL_INFO
2067 (char_u *)&p_ru, PV_NONE,
2068 #else
2069 (char_u *)NULL, PV_NONE,
2070 #endif
2071 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2072 {"rulerformat", "ruf", P_STRING|P_VI_DEF|P_ALLOCED|P_RSTAT,
2073 #ifdef FEAT_STL_OPT
2074 (char_u *)&p_ruf, PV_NONE,
2075 #else
2076 (char_u *)NULL, PV_NONE,
2077 #endif
2078 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2079 {"runtimepath", "rtp", P_STRING|P_VI_DEF|P_EXPAND|P_COMMA|P_NODUP|P_SECURE,
2080 (char_u *)&p_rtp, PV_NONE,
2081 {(char_u *)DFLT_RUNTIMEPATH, (char_u *)0L}
2082 SCRIPTID_INIT},
2083 {"scroll", "scr", P_NUM|P_NO_MKRC|P_VI_DEF,
2084 (char_u *)VAR_WIN, PV_SCROLL,
2085 {(char_u *)12L, (char_u *)0L} SCRIPTID_INIT},
2086 {"scrollbind", "scb", P_BOOL|P_VI_DEF,
2087 #ifdef FEAT_SCROLLBIND
2088 (char_u *)VAR_WIN, PV_SCBIND,
2089 #else
2090 (char_u *)NULL, PV_NONE,
2091 #endif
2092 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2093 {"scrolljump", "sj", P_NUM|P_VI_DEF|P_VIM,
2094 (char_u *)&p_sj, PV_NONE,
2095 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
2096 {"scrolloff", "so", P_NUM|P_VI_DEF|P_VIM|P_RALL,
2097 (char_u *)&p_so, PV_NONE,
2098 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2099 {"scrollopt", "sbo", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2100 #ifdef FEAT_SCROLLBIND
2101 (char_u *)&p_sbo, PV_NONE,
2102 {(char_u *)"ver,jump", (char_u *)0L}
2103 #else
2104 (char_u *)NULL, PV_NONE,
2105 {(char_u *)0L, (char_u *)0L}
2106 #endif
2107 SCRIPTID_INIT},
2108 {"sections", "sect", P_STRING|P_VI_DEF,
2109 (char_u *)&p_sections, PV_NONE,
2110 {(char_u *)"SHNHH HUnhsh", (char_u *)0L}
2111 SCRIPTID_INIT},
2112 {"secure", NULL, P_BOOL|P_VI_DEF|P_SECURE,
2113 (char_u *)&p_secure, PV_NONE,
2114 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2115 {"selection", "sel", P_STRING|P_VI_DEF,
2116 #ifdef FEAT_VISUAL
2117 (char_u *)&p_sel, PV_NONE,
2118 #else
2119 (char_u *)NULL, PV_NONE,
2120 #endif
2121 {(char_u *)"inclusive", (char_u *)0L}
2122 SCRIPTID_INIT},
2123 {"selectmode", "slm", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2124 #ifdef FEAT_VISUAL
2125 (char_u *)&p_slm, PV_NONE,
2126 #else
2127 (char_u *)NULL, PV_NONE,
2128 #endif
2129 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2130 {"sessionoptions", "ssop", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2131 #ifdef FEAT_SESSION
2132 (char_u *)&p_ssop, PV_NONE,
2133 {(char_u *)"blank,buffers,curdir,folds,help,options,tabpages,winsize",
2134 (char_u *)0L}
2135 #else
2136 (char_u *)NULL, PV_NONE,
2137 {(char_u *)0L, (char_u *)0L}
2138 #endif
2139 SCRIPTID_INIT},
2140 {"shell", "sh", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
2141 (char_u *)&p_sh, PV_NONE,
2143 #ifdef VMS
2144 (char_u *)"-",
2145 #else
2146 # if defined(MSDOS)
2147 (char_u *)"command",
2148 # else
2149 # if defined(WIN16)
2150 (char_u *)"command.com",
2151 # else
2152 # if defined(WIN3264)
2153 (char_u *)"", /* set in set_init_1() */
2154 # else
2155 # if defined(OS2)
2156 (char_u *)"cmd.exe",
2157 # else
2158 # if defined(ARCHIE)
2159 (char_u *)"gos",
2160 # else
2161 (char_u *)"sh",
2162 # endif
2163 # endif
2164 # endif
2165 # endif
2166 # endif
2167 #endif /* VMS */
2168 (char_u *)0L} SCRIPTID_INIT},
2169 {"shellcmdflag","shcf", P_STRING|P_VI_DEF|P_SECURE,
2170 (char_u *)&p_shcf, PV_NONE,
2172 #if defined(MSDOS) || defined(MSWIN)
2173 (char_u *)"/c",
2174 #else
2175 # if defined(OS2)
2176 (char_u *)"/c",
2177 # else
2178 (char_u *)"-c",
2179 # endif
2180 #endif
2181 (char_u *)0L} SCRIPTID_INIT},
2182 {"shellpipe", "sp", P_STRING|P_VI_DEF|P_SECURE,
2183 #ifdef FEAT_QUICKFIX
2184 (char_u *)&p_sp, PV_NONE,
2186 #if defined(UNIX) || defined(OS2)
2187 # ifdef ARCHIE
2188 (char_u *)"2>",
2189 # else
2190 (char_u *)"| tee",
2191 # endif
2192 #else
2193 (char_u *)">",
2194 #endif
2195 (char_u *)0L}
2196 #else
2197 (char_u *)NULL, PV_NONE,
2198 {(char_u *)0L, (char_u *)0L}
2199 #endif
2200 SCRIPTID_INIT},
2201 {"shellquote", "shq", P_STRING|P_VI_DEF|P_SECURE,
2202 (char_u *)&p_shq, PV_NONE,
2203 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2204 {"shellredir", "srr", P_STRING|P_VI_DEF|P_SECURE,
2205 (char_u *)&p_srr, PV_NONE,
2206 {(char_u *)">", (char_u *)0L} SCRIPTID_INIT},
2207 {"shellslash", "ssl", P_BOOL|P_VI_DEF,
2208 #ifdef BACKSLASH_IN_FILENAME
2209 (char_u *)&p_ssl, PV_NONE,
2210 #else
2211 (char_u *)NULL, PV_NONE,
2212 #endif
2213 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2214 {"shelltemp", "stmp", P_BOOL,
2215 (char_u *)&p_stmp, PV_NONE,
2216 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
2217 {"shelltype", "st", P_NUM|P_VI_DEF,
2218 #ifdef AMIGA
2219 (char_u *)&p_st, PV_NONE,
2220 #else
2221 (char_u *)NULL, PV_NONE,
2222 #endif
2223 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2224 {"shellxquote", "sxq", P_STRING|P_VI_DEF|P_SECURE,
2225 (char_u *)&p_sxq, PV_NONE,
2227 #if defined(UNIX) && defined(USE_SYSTEM) && !defined(__EMX__)
2228 (char_u *)"\"",
2229 #else
2230 (char_u *)"",
2231 #endif
2232 (char_u *)0L} SCRIPTID_INIT},
2233 {"shiftround", "sr", P_BOOL|P_VI_DEF|P_VIM,
2234 (char_u *)&p_sr, PV_NONE,
2235 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2236 {"shiftwidth", "sw", P_NUM|P_VI_DEF,
2237 (char_u *)&p_sw, PV_SW,
2238 {(char_u *)8L, (char_u *)0L} SCRIPTID_INIT},
2239 {"shortmess", "shm", P_STRING|P_VIM|P_FLAGLIST,
2240 (char_u *)&p_shm, PV_NONE,
2241 {(char_u *)"", (char_u *)"filnxtToO"}
2242 SCRIPTID_INIT},
2243 {"shortname", "sn", P_BOOL|P_VI_DEF,
2244 #ifdef SHORT_FNAME
2245 (char_u *)NULL, PV_NONE,
2246 #else
2247 (char_u *)&p_sn, PV_SN,
2248 #endif
2249 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2250 {"showbreak", "sbr", P_STRING|P_VI_DEF|P_RALL,
2251 #ifdef FEAT_LINEBREAK
2252 (char_u *)&p_sbr, PV_NONE,
2253 #else
2254 (char_u *)NULL, PV_NONE,
2255 #endif
2256 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2257 {"showcmd", "sc", P_BOOL|P_VIM,
2258 #ifdef FEAT_CMDL_INFO
2259 (char_u *)&p_sc, PV_NONE,
2260 #else
2261 (char_u *)NULL, PV_NONE,
2262 #endif
2263 {(char_u *)FALSE,
2264 #ifdef UNIX
2265 (char_u *)FALSE
2266 #else
2267 (char_u *)TRUE
2268 #endif
2269 } SCRIPTID_INIT},
2270 {"showfulltag", "sft", P_BOOL|P_VI_DEF,
2271 (char_u *)&p_sft, PV_NONE,
2272 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2273 {"showmatch", "sm", P_BOOL|P_VI_DEF,
2274 (char_u *)&p_sm, PV_NONE,
2275 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2276 {"showmode", "smd", P_BOOL|P_VIM,
2277 (char_u *)&p_smd, PV_NONE,
2278 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
2279 {"showtabline", "stal", P_NUM|P_VI_DEF|P_RALL,
2280 #ifdef FEAT_WINDOWS
2281 (char_u *)&p_stal, PV_NONE,
2282 #else
2283 (char_u *)NULL, PV_NONE,
2284 #endif
2285 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
2286 {"sidescroll", "ss", P_NUM|P_VI_DEF,
2287 (char_u *)&p_ss, PV_NONE,
2288 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2289 {"sidescrolloff", "siso", P_NUM|P_VI_DEF|P_VIM|P_RBUF,
2290 (char_u *)&p_siso, PV_NONE,
2291 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2292 {"slowopen", "slow", P_BOOL|P_VI_DEF,
2293 (char_u *)NULL, PV_NONE,
2294 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2295 {"smartcase", "scs", P_BOOL|P_VI_DEF|P_VIM,
2296 (char_u *)&p_scs, PV_NONE,
2297 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2298 {"smartindent", "si", P_BOOL|P_VI_DEF|P_VIM,
2299 #ifdef FEAT_SMARTINDENT
2300 (char_u *)&p_si, PV_SI,
2301 #else
2302 (char_u *)NULL, PV_NONE,
2303 #endif
2304 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2305 {"smarttab", "sta", P_BOOL|P_VI_DEF|P_VIM,
2306 (char_u *)&p_sta, PV_NONE,
2307 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2308 {"softtabstop", "sts", P_NUM|P_VI_DEF|P_VIM,
2309 (char_u *)&p_sts, PV_STS,
2310 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2311 {"sourceany", NULL, P_BOOL|P_VI_DEF,
2312 (char_u *)NULL, PV_NONE,
2313 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2314 {"spell", NULL, P_BOOL|P_VI_DEF|P_RWIN,
2315 #ifdef FEAT_SPELL
2316 (char_u *)VAR_WIN, PV_SPELL,
2317 #else
2318 (char_u *)NULL, PV_NONE,
2319 #endif
2320 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2321 {"spellcapcheck", "spc", P_STRING|P_ALLOCED|P_VI_DEF|P_RBUF,
2322 #ifdef FEAT_SPELL
2323 (char_u *)&p_spc, PV_SPC,
2324 {(char_u *)"[.?!]\\_[\\])'\" ]\\+", (char_u *)0L}
2325 #else
2326 (char_u *)NULL, PV_NONE,
2327 {(char_u *)0L, (char_u *)0L}
2328 #endif
2329 SCRIPTID_INIT},
2330 {"spellfile", "spf", P_STRING|P_EXPAND|P_ALLOCED|P_VI_DEF|P_SECURE|P_COMMA,
2331 #ifdef FEAT_SPELL
2332 (char_u *)&p_spf, PV_SPF,
2333 {(char_u *)"", (char_u *)0L}
2334 #else
2335 (char_u *)NULL, PV_NONE,
2336 {(char_u *)0L, (char_u *)0L}
2337 #endif
2338 SCRIPTID_INIT},
2339 {"spelllang", "spl", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_RBUF|P_EXPAND,
2340 #ifdef FEAT_SPELL
2341 (char_u *)&p_spl, PV_SPL,
2342 {(char_u *)"en", (char_u *)0L}
2343 #else
2344 (char_u *)NULL, PV_NONE,
2345 {(char_u *)0L, (char_u *)0L}
2346 #endif
2347 SCRIPTID_INIT},
2348 {"spellsuggest", "sps", P_STRING|P_VI_DEF|P_EXPAND|P_SECURE|P_COMMA,
2349 #ifdef FEAT_SPELL
2350 (char_u *)&p_sps, PV_NONE,
2351 {(char_u *)"best", (char_u *)0L}
2352 #else
2353 (char_u *)NULL, PV_NONE,
2354 {(char_u *)0L, (char_u *)0L}
2355 #endif
2356 SCRIPTID_INIT},
2357 {"splitbelow", "sb", P_BOOL|P_VI_DEF,
2358 #ifdef FEAT_WINDOWS
2359 (char_u *)&p_sb, PV_NONE,
2360 #else
2361 (char_u *)NULL, PV_NONE,
2362 #endif
2363 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2364 {"splitright", "spr", P_BOOL|P_VI_DEF,
2365 #ifdef FEAT_VERTSPLIT
2366 (char_u *)&p_spr, PV_NONE,
2367 #else
2368 (char_u *)NULL, PV_NONE,
2369 #endif
2370 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2371 {"startofline", "sol", P_BOOL|P_VI_DEF|P_VIM,
2372 (char_u *)&p_sol, PV_NONE,
2373 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2374 {"statusline" ,"stl", P_STRING|P_VI_DEF|P_ALLOCED|P_RSTAT,
2375 #ifdef FEAT_STL_OPT
2376 (char_u *)&p_stl, PV_STL,
2377 #else
2378 (char_u *)NULL, PV_NONE,
2379 #endif
2380 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2381 {"suffixes", "su", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2382 (char_u *)&p_su, PV_NONE,
2383 {(char_u *)".bak,~,.o,.h,.info,.swp,.obj",
2384 (char_u *)0L} SCRIPTID_INIT},
2385 {"suffixesadd", "sua", P_STRING|P_VI_DEF|P_ALLOCED|P_COMMA|P_NODUP,
2386 #ifdef FEAT_SEARCHPATH
2387 (char_u *)&p_sua, PV_SUA,
2388 {(char_u *)"", (char_u *)0L}
2389 #else
2390 (char_u *)NULL, PV_NONE,
2391 {(char_u *)0L, (char_u *)0L}
2392 #endif
2393 SCRIPTID_INIT},
2394 {"swapfile", "swf", P_BOOL|P_VI_DEF|P_RSTAT,
2395 (char_u *)&p_swf, PV_SWF,
2396 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2397 {"swapsync", "sws", P_STRING|P_VI_DEF,
2398 (char_u *)&p_sws, PV_NONE,
2399 {(char_u *)"fsync", (char_u *)0L} SCRIPTID_INIT},
2400 {"switchbuf", "swb", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2401 (char_u *)&p_swb, PV_NONE,
2402 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2403 {"synmaxcol", "smc", P_NUM|P_VI_DEF|P_RBUF,
2404 #ifdef FEAT_SYN_HL
2405 (char_u *)&p_smc, PV_SMC,
2406 {(char_u *)3000L, (char_u *)0L}
2407 #else
2408 (char_u *)NULL, PV_NONE,
2409 {(char_u *)0L, (char_u *)0L}
2410 #endif
2411 SCRIPTID_INIT},
2412 {"syntax", "syn", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB|P_NFNAME,
2413 #ifdef FEAT_SYN_HL
2414 (char_u *)&p_syn, PV_SYN,
2415 {(char_u *)"", (char_u *)0L}
2416 #else
2417 (char_u *)NULL, PV_NONE,
2418 {(char_u *)0L, (char_u *)0L}
2419 #endif
2420 SCRIPTID_INIT},
2421 {"tabline", "tal", P_STRING|P_VI_DEF|P_RALL,
2422 #ifdef FEAT_STL_OPT
2423 (char_u *)&p_tal, PV_NONE,
2424 #else
2425 (char_u *)NULL, PV_NONE,
2426 #endif
2427 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2428 {"tabpagemax", "tpm", P_NUM|P_VI_DEF,
2429 #ifdef FEAT_WINDOWS
2430 (char_u *)&p_tpm, PV_NONE,
2431 #else
2432 (char_u *)NULL, PV_NONE,
2433 #endif
2434 {(char_u *)10L, (char_u *)0L} SCRIPTID_INIT},
2435 {"tabstop", "ts", P_NUM|P_VI_DEF|P_RBUF,
2436 (char_u *)&p_ts, PV_TS,
2437 {(char_u *)8L, (char_u *)0L} SCRIPTID_INIT},
2438 {"tagbsearch", "tbs", P_BOOL|P_VI_DEF,
2439 (char_u *)&p_tbs, PV_NONE,
2440 #ifdef VMS /* binary searching doesn't appear to work on VMS */
2441 {(char_u *)0L, (char_u *)0L}
2442 #else
2443 {(char_u *)TRUE, (char_u *)0L}
2444 #endif
2445 SCRIPTID_INIT},
2446 {"taglength", "tl", P_NUM|P_VI_DEF,
2447 (char_u *)&p_tl, PV_NONE,
2448 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2449 {"tagrelative", "tr", P_BOOL|P_VIM,
2450 (char_u *)&p_tr, PV_NONE,
2451 {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
2452 {"tags", "tag", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
2453 (char_u *)&p_tags, PV_TAGS,
2455 #if defined(FEAT_EMACS_TAGS) && !defined(CASE_INSENSITIVE_FILENAME)
2456 (char_u *)"./tags,./TAGS,tags,TAGS",
2457 #else
2458 (char_u *)"./tags,tags",
2459 #endif
2460 (char_u *)0L} SCRIPTID_INIT},
2461 {"tagstack", "tgst", P_BOOL|P_VI_DEF,
2462 (char_u *)&p_tgst, PV_NONE,
2463 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2464 {"term", NULL, P_STRING|P_EXPAND|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RALL,
2465 (char_u *)&T_NAME, PV_NONE,
2466 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2467 {"termbidi", "tbidi", P_BOOL|P_VI_DEF,
2468 #ifdef FEAT_ARABIC
2469 (char_u *)&p_tbidi, PV_NONE,
2470 #else
2471 (char_u *)NULL, PV_NONE,
2472 #endif
2473 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2474 {"termencoding", "tenc", P_STRING|P_VI_DEF|P_RCLR,
2475 #ifdef FEAT_MBYTE
2476 (char_u *)&p_tenc, PV_NONE,
2477 {(char_u *)"", (char_u *)0L}
2478 #else
2479 (char_u *)NULL, PV_NONE,
2480 {(char_u *)0L, (char_u *)0L}
2481 #endif
2482 SCRIPTID_INIT},
2483 {"terse", NULL, P_BOOL|P_VI_DEF,
2484 (char_u *)&p_terse, PV_NONE,
2485 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2486 {"textauto", "ta", P_BOOL|P_VIM,
2487 (char_u *)&p_ta, PV_NONE,
2488 {(char_u *)DFLT_TEXTAUTO, (char_u *)TRUE}
2489 SCRIPTID_INIT},
2490 {"textmode", "tx", P_BOOL|P_VI_DEF|P_NO_MKRC,
2491 (char_u *)&p_tx, PV_TX,
2493 #ifdef USE_CRNL
2494 (char_u *)TRUE,
2495 #else
2496 (char_u *)FALSE,
2497 #endif
2498 (char_u *)0L} SCRIPTID_INIT},
2499 {"textwidth", "tw", P_NUM|P_VI_DEF|P_VIM,
2500 (char_u *)&p_tw, PV_TW,
2501 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2502 {"thesaurus", "tsr", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
2503 #ifdef FEAT_INS_EXPAND
2504 (char_u *)&p_tsr, PV_TSR,
2505 #else
2506 (char_u *)NULL, PV_NONE,
2507 #endif
2508 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2509 {"tildeop", "top", P_BOOL|P_VI_DEF|P_VIM,
2510 (char_u *)&p_to, PV_NONE,
2511 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2512 {"timeout", "to", P_BOOL|P_VI_DEF,
2513 (char_u *)&p_timeout, PV_NONE,
2514 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2515 {"timeoutlen", "tm", P_NUM|P_VI_DEF,
2516 (char_u *)&p_tm, PV_NONE,
2517 {(char_u *)1000L, (char_u *)0L} SCRIPTID_INIT},
2518 {"title", NULL, P_BOOL|P_VI_DEF,
2519 #ifdef FEAT_TITLE
2520 (char_u *)&p_title, PV_NONE,
2521 #else
2522 (char_u *)NULL, PV_NONE,
2523 #endif
2524 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2525 {"titlelen", NULL, P_NUM|P_VI_DEF,
2526 #ifdef FEAT_TITLE
2527 (char_u *)&p_titlelen, PV_NONE,
2528 #else
2529 (char_u *)NULL, PV_NONE,
2530 #endif
2531 {(char_u *)85L, (char_u *)0L} SCRIPTID_INIT},
2532 {"titleold", NULL, P_STRING|P_VI_DEF|P_GETTEXT|P_SECURE|P_NO_MKRC,
2533 #ifdef FEAT_TITLE
2534 (char_u *)&p_titleold, PV_NONE,
2535 {(char_u *)N_("Thanks for flying Vim"),
2536 (char_u *)0L}
2537 #else
2538 (char_u *)NULL, PV_NONE,
2539 {(char_u *)0L, (char_u *)0L}
2540 #endif
2541 SCRIPTID_INIT},
2542 {"titlestring", NULL, P_STRING|P_VI_DEF,
2543 #ifdef FEAT_TITLE
2544 (char_u *)&p_titlestring, PV_NONE,
2545 #else
2546 (char_u *)NULL, PV_NONE,
2547 #endif
2548 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2549 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
2550 {"toolbar", "tb", P_STRING|P_COMMA|P_VI_DEF|P_NODUP,
2551 (char_u *)&p_toolbar, PV_NONE,
2552 {(char_u *)"icons,tooltips", (char_u *)0L}
2553 SCRIPTID_INIT},
2554 #endif
2555 #if defined(FEAT_TOOLBAR) && defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)
2556 {"toolbariconsize", "tbis", P_STRING|P_VI_DEF,
2557 (char_u *)&p_tbis, PV_NONE,
2558 {(char_u *)"small", (char_u *)0L} SCRIPTID_INIT},
2559 #endif
2560 {"ttimeout", NULL, P_BOOL|P_VI_DEF|P_VIM,
2561 (char_u *)&p_ttimeout, PV_NONE,
2562 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2563 {"ttimeoutlen", "ttm", P_NUM|P_VI_DEF,
2564 (char_u *)&p_ttm, PV_NONE,
2565 {(char_u *)-1L, (char_u *)0L} SCRIPTID_INIT},
2566 {"ttybuiltin", "tbi", P_BOOL|P_VI_DEF,
2567 (char_u *)&p_tbi, PV_NONE,
2568 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2569 {"ttyfast", "tf", P_BOOL|P_NO_MKRC|P_VI_DEF,
2570 (char_u *)&p_tf, PV_NONE,
2571 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2572 {"ttymouse", "ttym", P_STRING|P_NODEFAULT|P_NO_MKRC|P_VI_DEF,
2573 #if defined(FEAT_MOUSE) && (defined(UNIX) || defined(VMS))
2574 (char_u *)&p_ttym, PV_NONE,
2575 #else
2576 (char_u *)NULL, PV_NONE,
2577 #endif
2578 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2579 {"ttyscroll", "tsl", P_NUM|P_VI_DEF,
2580 (char_u *)&p_ttyscroll, PV_NONE,
2581 {(char_u *)999L, (char_u *)0L} SCRIPTID_INIT},
2582 {"ttytype", "tty", P_STRING|P_EXPAND|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RALL,
2583 (char_u *)&T_NAME, PV_NONE,
2584 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2585 {"undolevels", "ul", P_NUM|P_VI_DEF,
2586 (char_u *)&p_ul, PV_NONE,
2588 #if defined(UNIX) || defined(WIN3264) || defined(OS2) || defined(VMS)
2589 (char_u *)1000L,
2590 #else
2591 (char_u *)100L,
2592 #endif
2593 (char_u *)0L} SCRIPTID_INIT},
2594 {"updatecount", "uc", P_NUM|P_VI_DEF,
2595 (char_u *)&p_uc, PV_NONE,
2596 {(char_u *)200L, (char_u *)0L} SCRIPTID_INIT},
2597 {"updatetime", "ut", P_NUM|P_VI_DEF,
2598 (char_u *)&p_ut, PV_NONE,
2599 {(char_u *)4000L, (char_u *)0L} SCRIPTID_INIT},
2600 #ifdef FEAT_VARTABS
2601 {"varsofttabstop", "vsts", P_STRING|P_VI_DEF|P_VIM|P_COMMA,
2602 (char_u *)&p_vsts, PV_VSTS,
2603 {(char_u *)"", (char_u *)0L}},
2604 {"vartabstop", "vts", P_STRING|P_VI_DEF|P_VIM|P_RBUF|P_COMMA,
2605 (char_u *)&p_vts, PV_VTS,
2606 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2607 #endif
2608 {"verbose", "vbs", P_NUM|P_VI_DEF,
2609 (char_u *)&p_verbose, PV_NONE,
2610 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2611 {"verbosefile", "vfile", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
2612 (char_u *)&p_vfile, PV_NONE,
2613 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2614 {"viewdir", "vdir", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
2615 #ifdef FEAT_SESSION
2616 (char_u *)&p_vdir, PV_NONE,
2617 {(char_u *)DFLT_VDIR, (char_u *)0L}
2618 #else
2619 (char_u *)NULL, PV_NONE,
2620 {(char_u *)0L, (char_u *)0L}
2621 #endif
2622 SCRIPTID_INIT},
2623 {"viewoptions", "vop", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2624 #ifdef FEAT_SESSION
2625 (char_u *)&p_vop, PV_NONE,
2626 {(char_u *)"folds,options,cursor", (char_u *)0L}
2627 #else
2628 (char_u *)NULL, PV_NONE,
2629 {(char_u *)0L, (char_u *)0L}
2630 #endif
2631 SCRIPTID_INIT},
2632 {"viminfo", "vi", P_STRING|P_COMMA|P_NODUP|P_SECURE,
2633 #ifdef FEAT_VIMINFO
2634 (char_u *)&p_viminfo, PV_NONE,
2635 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
2636 {(char_u *)"", (char_u *)"'100,<50,s10,h,rA:,rB:"}
2637 #else
2638 # ifdef AMIGA
2639 {(char_u *)"",
2640 (char_u *)"'100,<50,s10,h,rdf0:,rdf1:,rdf2:"}
2641 # else
2642 {(char_u *)"", (char_u *)"'100,<50,s10,h"}
2643 # endif
2644 #endif
2645 #else
2646 (char_u *)NULL, PV_NONE,
2647 {(char_u *)0L, (char_u *)0L}
2648 #endif
2649 SCRIPTID_INIT},
2650 {"virtualedit", "ve", P_STRING|P_COMMA|P_NODUP|P_VI_DEF|P_VIM,
2651 #ifdef FEAT_VIRTUALEDIT
2652 (char_u *)&p_ve, PV_NONE,
2653 {(char_u *)"", (char_u *)""}
2654 #else
2655 (char_u *)NULL, PV_NONE,
2656 {(char_u *)0L, (char_u *)0L}
2657 #endif
2658 SCRIPTID_INIT},
2659 {"visualbell", "vb", P_BOOL|P_VI_DEF,
2660 (char_u *)&p_vb, PV_NONE,
2661 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2662 {"w300", NULL, P_NUM|P_VI_DEF,
2663 (char_u *)NULL, PV_NONE,
2664 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2665 {"w1200", NULL, P_NUM|P_VI_DEF,
2666 (char_u *)NULL, PV_NONE,
2667 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2668 {"w9600", NULL, P_NUM|P_VI_DEF,
2669 (char_u *)NULL, PV_NONE,
2670 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2671 {"warn", NULL, P_BOOL|P_VI_DEF,
2672 (char_u *)&p_warn, PV_NONE,
2673 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2674 {"weirdinvert", "wiv", P_BOOL|P_VI_DEF|P_RCLR,
2675 (char_u *)&p_wiv, PV_NONE,
2676 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2677 {"whichwrap", "ww", P_STRING|P_VIM|P_COMMA|P_FLAGLIST,
2678 (char_u *)&p_ww, PV_NONE,
2679 {(char_u *)"", (char_u *)"b,s"} SCRIPTID_INIT},
2680 {"wildchar", "wc", P_NUM|P_VIM,
2681 (char_u *)&p_wc, PV_NONE,
2682 {(char_u *)(long)Ctrl_E, (char_u *)(long)TAB}
2683 SCRIPTID_INIT},
2684 {"wildcharm", "wcm", P_NUM|P_VI_DEF,
2685 (char_u *)&p_wcm, PV_NONE,
2686 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2687 {"wildignore", "wig", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2688 #ifdef FEAT_WILDIGN
2689 (char_u *)&p_wig, PV_NONE,
2690 #else
2691 (char_u *)NULL, PV_NONE,
2692 #endif
2693 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2694 {"wildmenu", "wmnu", P_BOOL|P_VI_DEF,
2695 #ifdef FEAT_WILDMENU
2696 (char_u *)&p_wmnu, PV_NONE,
2697 #else
2698 (char_u *)NULL, PV_NONE,
2699 #endif
2700 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2701 {"wildmode", "wim", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2702 (char_u *)&p_wim, PV_NONE,
2703 {(char_u *)"full", (char_u *)0L} SCRIPTID_INIT},
2704 {"wildoptions", "wop", P_STRING|P_VI_DEF,
2705 #ifdef FEAT_CMDL_COMPL
2706 (char_u *)&p_wop, PV_NONE,
2707 {(char_u *)"", (char_u *)0L}
2708 #else
2709 (char_u *)NULL, PV_NONE,
2710 {(char_u *)NULL, (char_u *)0L}
2711 #endif
2712 SCRIPTID_INIT},
2713 {"winaltkeys", "wak", P_STRING|P_VI_DEF,
2714 #ifdef FEAT_WAK
2715 (char_u *)&p_wak, PV_NONE,
2716 {(char_u *)"menu", (char_u *)0L}
2717 #else
2718 (char_u *)NULL, PV_NONE,
2719 {(char_u *)NULL, (char_u *)0L}
2720 #endif
2721 SCRIPTID_INIT},
2722 {"window", "wi", P_NUM|P_VI_DEF,
2723 (char_u *)&p_window, PV_NONE,
2724 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2725 {"winheight", "wh", P_NUM|P_VI_DEF,
2726 #ifdef FEAT_WINDOWS
2727 (char_u *)&p_wh, PV_NONE,
2728 #else
2729 (char_u *)NULL, PV_NONE,
2730 #endif
2731 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
2732 {"winfixheight", "wfh", P_BOOL|P_VI_DEF|P_RSTAT,
2733 #ifdef FEAT_WINDOWS
2734 (char_u *)VAR_WIN, PV_WFH,
2735 #else
2736 (char_u *)NULL, PV_NONE,
2737 #endif
2738 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2739 {"winfixwidth", "wfw", P_BOOL|P_VI_DEF|P_RSTAT,
2740 #ifdef FEAT_VERTSPLIT
2741 (char_u *)VAR_WIN, PV_WFW,
2742 #else
2743 (char_u *)NULL, PV_NONE,
2744 #endif
2745 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2746 {"winminheight", "wmh", P_NUM|P_VI_DEF,
2747 #ifdef FEAT_WINDOWS
2748 (char_u *)&p_wmh, PV_NONE,
2749 #else
2750 (char_u *)NULL, PV_NONE,
2751 #endif
2752 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
2753 {"winminwidth", "wmw", P_NUM|P_VI_DEF,
2754 #ifdef FEAT_VERTSPLIT
2755 (char_u *)&p_wmw, PV_NONE,
2756 #else
2757 (char_u *)NULL, PV_NONE,
2758 #endif
2759 {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
2760 {"winwidth", "wiw", P_NUM|P_VI_DEF,
2761 #ifdef FEAT_VERTSPLIT
2762 (char_u *)&p_wiw, PV_NONE,
2763 #else
2764 (char_u *)NULL, PV_NONE,
2765 #endif
2766 {(char_u *)20L, (char_u *)0L} SCRIPTID_INIT},
2767 {"wrap", NULL, P_BOOL|P_VI_DEF|P_RWIN,
2768 (char_u *)VAR_WIN, PV_WRAP,
2769 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2770 {"wrapmargin", "wm", P_NUM|P_VI_DEF,
2771 (char_u *)&p_wm, PV_WM,
2772 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2773 {"wrapscan", "ws", P_BOOL|P_VI_DEF,
2774 (char_u *)&p_ws, PV_NONE,
2775 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2776 {"write", NULL, P_BOOL|P_VI_DEF,
2777 (char_u *)&p_write, PV_NONE,
2778 {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
2779 {"writeany", "wa", P_BOOL|P_VI_DEF,
2780 (char_u *)&p_wa, PV_NONE,
2781 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
2782 {"writebackup", "wb", P_BOOL|P_VI_DEF|P_VIM,
2783 (char_u *)&p_wb, PV_NONE,
2785 #ifdef FEAT_WRITEBACKUP
2786 (char_u *)TRUE,
2787 #else
2788 (char_u *)FALSE,
2789 #endif
2790 (char_u *)0L} SCRIPTID_INIT},
2791 {"writedelay", "wd", P_NUM|P_VI_DEF,
2792 (char_u *)&p_wd, PV_NONE,
2793 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
2795 /* terminal output codes */
2796 #define p_term(sss, vvv) {sss, NULL, P_STRING|P_VI_DEF|P_RALL|P_SECURE, \
2797 (char_u *)&vvv, PV_NONE, \
2798 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
2800 p_term("t_AB", T_CAB)
2801 p_term("t_AF", T_CAF)
2802 p_term("t_AL", T_CAL)
2803 p_term("t_al", T_AL)
2804 p_term("t_bc", T_BC)
2805 p_term("t_cd", T_CD)
2806 p_term("t_ce", T_CE)
2807 p_term("t_cl", T_CL)
2808 p_term("t_cm", T_CM)
2809 p_term("t_Co", T_CCO)
2810 p_term("t_CS", T_CCS)
2811 p_term("t_cs", T_CS)
2812 #ifdef FEAT_VERTSPLIT
2813 p_term("t_CV", T_CSV)
2814 #endif
2815 p_term("t_ut", T_UT)
2816 p_term("t_da", T_DA)
2817 p_term("t_db", T_DB)
2818 p_term("t_DL", T_CDL)
2819 p_term("t_dl", T_DL)
2820 p_term("t_fs", T_FS)
2821 p_term("t_IE", T_CIE)
2822 p_term("t_IS", T_CIS)
2823 p_term("t_ke", T_KE)
2824 p_term("t_ks", T_KS)
2825 p_term("t_le", T_LE)
2826 p_term("t_mb", T_MB)
2827 p_term("t_md", T_MD)
2828 p_term("t_me", T_ME)
2829 p_term("t_mr", T_MR)
2830 p_term("t_ms", T_MS)
2831 p_term("t_nd", T_ND)
2832 p_term("t_op", T_OP)
2833 p_term("t_RI", T_CRI)
2834 p_term("t_RV", T_CRV)
2835 p_term("t_Sb", T_CSB)
2836 p_term("t_Sf", T_CSF)
2837 p_term("t_se", T_SE)
2838 p_term("t_so", T_SO)
2839 p_term("t_sr", T_SR)
2840 p_term("t_ts", T_TS)
2841 p_term("t_te", T_TE)
2842 p_term("t_ti", T_TI)
2843 p_term("t_ue", T_UE)
2844 p_term("t_us", T_US)
2845 p_term("t_vb", T_VB)
2846 p_term("t_ve", T_VE)
2847 p_term("t_vi", T_VI)
2848 p_term("t_vs", T_VS)
2849 p_term("t_WP", T_CWP)
2850 p_term("t_WS", T_CWS)
2851 p_term("t_SI", T_CSI)
2852 p_term("t_EI", T_CEI)
2853 p_term("t_xs", T_XS)
2854 p_term("t_ZH", T_CZH)
2855 p_term("t_ZR", T_CZR)
2857 /* terminal key codes are not in here */
2859 /* end marker */
2860 {NULL, NULL, 0, NULL, PV_NONE, {NULL, NULL} SCRIPTID_INIT}
2863 #define PARAM_COUNT (sizeof(options) / sizeof(struct vimoption))
2865 #ifdef FEAT_MBYTE
2866 static char *(p_ambw_values[]) = {"single", "double", NULL};
2867 #endif
2868 static char *(p_bg_values[]) = {"light", "dark", NULL};
2869 static char *(p_nf_values[]) = {"octal", "hex", "alpha", NULL};
2870 static char *(p_ff_values[]) = {FF_UNIX, FF_DOS, FF_MAC, NULL};
2871 #ifdef FEAT_CMDL_COMPL
2872 static char *(p_wop_values[]) = {"tagfile", NULL};
2873 #endif
2874 #ifdef FEAT_WAK
2875 static char *(p_wak_values[]) = {"yes", "menu", "no", NULL};
2876 #endif
2877 static char *(p_mousem_values[]) = {"extend", "popup", "popup_setpos", "mac", NULL};
2878 #ifdef FEAT_VISUAL
2879 static char *(p_sel_values[]) = {"inclusive", "exclusive", "old", NULL};
2880 static char *(p_slm_values[]) = {"mouse", "key", "cmd", NULL};
2881 #endif
2882 #ifdef FEAT_VISUAL
2883 static char *(p_km_values[]) = {"startsel", "stopsel", NULL};
2884 #endif
2885 #ifdef FEAT_BROWSE
2886 static char *(p_bsdir_values[]) = {"current", "last", "buffer", NULL};
2887 #endif
2888 #ifdef FEAT_SCROLLBIND
2889 static char *(p_scbopt_values[]) = {"ver", "hor", "jump", NULL};
2890 #endif
2891 static char *(p_debug_values[]) = {"msg", "throw", "beep", NULL};
2892 #ifdef FEAT_VERTSPLIT
2893 static char *(p_ead_values[]) = {"both", "ver", "hor", NULL};
2894 #endif
2895 #if defined(FEAT_QUICKFIX)
2896 # ifdef FEAT_AUTOCMD
2897 static char *(p_buftype_values[]) = {"nofile", "nowrite", "quickfix", "help", "acwrite", NULL};
2898 # else
2899 static char *(p_buftype_values[]) = {"nofile", "nowrite", "quickfix", "help", NULL};
2900 # endif
2901 static char *(p_bufhidden_values[]) = {"hide", "unload", "delete", "wipe", NULL};
2902 #endif
2903 static char *(p_bs_values[]) = {"indent", "eol", "start", NULL};
2904 #ifdef FEAT_FOLDING
2905 static char *(p_fdm_values[]) = {"manual", "expr", "marker", "indent", "syntax",
2906 # ifdef FEAT_DIFF
2907 "diff",
2908 # endif
2909 NULL};
2910 static char *(p_fcl_values[]) = {"all", NULL};
2911 #endif
2912 #ifdef FEAT_INS_EXPAND
2913 static char *(p_cot_values[]) = {"menu", "menuone", "longest", "preview", NULL};
2914 #endif
2916 static void set_option_default __ARGS((int, int opt_flags, int compatible));
2917 static void set_options_default __ARGS((int opt_flags));
2918 static char_u *term_bg_default __ARGS((void));
2919 static void did_set_option __ARGS((int opt_idx, int opt_flags, int new_value));
2920 static char_u *illegal_char __ARGS((char_u *, int));
2921 static int string_to_key __ARGS((char_u *arg));
2922 #ifdef FEAT_CMDWIN
2923 static char_u *check_cedit __ARGS((void));
2924 #endif
2925 #ifdef FEAT_TITLE
2926 static void did_set_title __ARGS((int icon));
2927 #endif
2928 static char_u *option_expand __ARGS((int opt_idx, char_u *val));
2929 static void didset_options __ARGS((void));
2930 static void check_string_option __ARGS((char_u **pp));
2931 #if defined(FEAT_EVAL) || defined(PROTO)
2932 static long_u *insecure_flag __ARGS((int opt_idx, int opt_flags));
2933 #else
2934 # define insecure_flag(opt_idx, opt_flags) (&options[opt_idx].flags)
2935 #endif
2936 static void set_string_option_global __ARGS((int opt_idx, char_u **varp));
2937 static void set_string_option __ARGS((int opt_idx, char_u *value, int opt_flags));
2938 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));
2939 static char_u *set_chars_option __ARGS((char_u **varp));
2940 #ifdef FEAT_CLIPBOARD
2941 static char_u *check_clipboard_option __ARGS((void));
2942 #endif
2943 #ifdef FEAT_SPELL
2944 static char_u *compile_cap_prog __ARGS((buf_T *buf));
2945 #endif
2946 #ifdef FEAT_EVAL
2947 static void set_option_scriptID_idx __ARGS((int opt_idx, int opt_flags, int id));
2948 #endif
2949 static char_u *set_bool_option __ARGS((int opt_idx, char_u *varp, int value, int opt_flags));
2950 static char_u *set_num_option __ARGS((int opt_idx, char_u *varp, long value, char_u *errbuf, size_t errbuflen, int opt_flags));
2951 static void check_redraw __ARGS((long_u flags));
2952 static int findoption __ARGS((char_u *));
2953 static int find_key_option __ARGS((char_u *));
2954 static void showoptions __ARGS((int all, int opt_flags));
2955 static int optval_default __ARGS((struct vimoption *, char_u *varp));
2956 static void showoneopt __ARGS((struct vimoption *, int opt_flags));
2957 static int put_setstring __ARGS((FILE *fd, char *cmd, char *name, char_u **valuep, int expand));
2958 static int put_setnum __ARGS((FILE *fd, char *cmd, char *name, long *valuep));
2959 static int put_setbool __ARGS((FILE *fd, char *cmd, char *name, int value));
2960 static int istermoption __ARGS((struct vimoption *));
2961 static char_u *get_varp_scope __ARGS((struct vimoption *p, int opt_flags));
2962 static char_u *get_varp __ARGS((struct vimoption *));
2963 static void option_value2string __ARGS((struct vimoption *, int opt_flags));
2964 static int wc_use_keyname __ARGS((char_u *varp, long *wcp));
2965 #ifdef FEAT_LANGMAP
2966 static void langmap_init __ARGS((void));
2967 static void langmap_set __ARGS((void));
2968 #endif
2969 static void paste_option_changed __ARGS((void));
2970 static void compatible_set __ARGS((void));
2971 #ifdef FEAT_LINEBREAK
2972 static void fill_breakat_flags __ARGS((void));
2973 #endif
2974 static int opt_strings_flags __ARGS((char_u *val, char **values, unsigned *flagp, int list));
2975 static int check_opt_strings __ARGS((char_u *val, char **values, int));
2976 static int check_opt_wim __ARGS((void));
2979 * Initialize the options, first part.
2981 * Called only once from main(), just after creating the first buffer.
2983 void
2984 set_init_1()
2986 char_u *p;
2987 int opt_idx;
2988 long_u n;
2990 #ifdef FEAT_LANGMAP
2991 langmap_init();
2992 #endif
2994 /* Be Vi compatible by default */
2995 p_cp = TRUE;
2997 /* Use POSIX compatibility when $VIM_POSIX is set. */
2998 if (mch_getenv((char_u *)"VIM_POSIX") != NULL)
3000 set_string_default("cpo", (char_u *)CPO_ALL);
3001 set_string_default("shm", (char_u *)"A");
3005 * Find default value for 'shell' option.
3006 * Don't use it if it is empty.
3008 if (((p = mch_getenv((char_u *)"SHELL")) != NULL && *p != NUL)
3009 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
3010 # ifdef __EMX__
3011 || ((p = mch_getenv((char_u *)"EMXSHELL")) != NULL && *p != NUL)
3012 # endif
3013 || ((p = mch_getenv((char_u *)"COMSPEC")) != NULL && *p != NUL)
3014 # ifdef WIN3264
3015 || ((p = default_shell()) != NULL && *p != NUL)
3016 # endif
3017 #endif
3019 set_string_default("sh", p);
3021 #ifdef FEAT_WILDIGN
3023 * Set the default for 'backupskip' to include environment variables for
3024 * temp files.
3027 # ifdef UNIX
3028 static char *(names[4]) = {"", "TMPDIR", "TEMP", "TMP"};
3029 # else
3030 static char *(names[3]) = {"TMPDIR", "TEMP", "TMP"};
3031 # endif
3032 int len;
3033 garray_T ga;
3034 int mustfree;
3036 ga_init2(&ga, 1, 100);
3037 for (n = 0; n < (long)(sizeof(names) / sizeof(char *)); ++n)
3039 mustfree = FALSE;
3040 # ifdef UNIX
3041 if (*names[n] == NUL)
3042 p = (char_u *)"/tmp";
3043 else
3044 # endif
3045 p = vim_getenv((char_u *)names[n], &mustfree);
3046 if (p != NULL && *p != NUL)
3048 /* First time count the NUL, otherwise count the ','. */
3049 len = (int)STRLEN(p) + 3;
3050 if (ga_grow(&ga, len) == OK)
3052 if (ga.ga_len > 0)
3053 STRCAT(ga.ga_data, ",");
3054 STRCAT(ga.ga_data, p);
3055 add_pathsep(ga.ga_data);
3056 STRCAT(ga.ga_data, "*");
3057 ga.ga_len += len;
3060 if (mustfree)
3061 vim_free(p);
3063 if (ga.ga_data != NULL)
3065 set_string_default("bsk", ga.ga_data);
3066 vim_free(ga.ga_data);
3069 #endif
3072 * 'maxmemtot' and 'maxmem' may have to be adjusted for available memory
3074 opt_idx = findoption((char_u *)"maxmemtot");
3075 if (opt_idx >= 0)
3077 #if !defined(HAVE_AVAIL_MEM) && !defined(HAVE_TOTAL_MEM)
3078 if (options[opt_idx].def_val[VI_DEFAULT] == (char_u *)0L)
3079 #endif
3081 #ifdef HAVE_AVAIL_MEM
3082 /* Use amount of memory available at this moment. */
3083 n = (mch_avail_mem(FALSE) >> 11);
3084 #else
3085 # ifdef HAVE_TOTAL_MEM
3086 /* Use amount of memory available to Vim. */
3087 n = (mch_total_mem(FALSE) >> 1);
3088 # else
3089 n = (0x7fffffff >> 11);
3090 # endif
3091 #endif
3092 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)n;
3093 opt_idx = findoption((char_u *)"maxmem");
3094 if (opt_idx >= 0)
3096 #if !defined(HAVE_AVAIL_MEM) && !defined(HAVE_TOTAL_MEM)
3097 if ((long)options[opt_idx].def_val[VI_DEFAULT] > n
3098 || (long)options[opt_idx].def_val[VI_DEFAULT] == 0L)
3099 #endif
3100 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)n;
3105 #ifdef FEAT_GUI_W32
3106 /* force 'shortname' for Win32s */
3107 if (gui_is_win32s())
3109 opt_idx = findoption((char_u *)"shortname");
3110 if (opt_idx >= 0)
3111 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)TRUE;
3113 #endif
3115 #ifdef FEAT_SEARCHPATH
3117 char_u *cdpath;
3118 char_u *buf;
3119 int i;
3120 int j;
3121 int mustfree = FALSE;
3123 /* Initialize the 'cdpath' option's default value. */
3124 cdpath = vim_getenv((char_u *)"CDPATH", &mustfree);
3125 if (cdpath != NULL)
3127 buf = alloc((unsigned)((STRLEN(cdpath) << 1) + 2));
3128 if (buf != NULL)
3130 buf[0] = ','; /* start with ",", current dir first */
3131 j = 1;
3132 for (i = 0; cdpath[i] != NUL; ++i)
3134 if (vim_ispathlistsep(cdpath[i]))
3135 buf[j++] = ',';
3136 else
3138 if (cdpath[i] == ' ' || cdpath[i] == ',')
3139 buf[j++] = '\\';
3140 buf[j++] = cdpath[i];
3143 buf[j] = NUL;
3144 opt_idx = findoption((char_u *)"cdpath");
3145 if (opt_idx >= 0)
3147 options[opt_idx].def_val[VI_DEFAULT] = buf;
3148 options[opt_idx].flags |= P_DEF_ALLOCED;
3151 if (mustfree)
3152 vim_free(cdpath);
3155 #endif
3157 #if defined(FEAT_POSTSCRIPT) && (defined(MSWIN) || defined(OS2) || defined(VMS) || defined(EBCDIC) || defined(MAC) || defined(hpux))
3158 /* Set print encoding on platforms that don't default to latin1 */
3159 set_string_default("penc",
3160 # if defined(MSWIN) || defined(OS2)
3161 (char_u *)"cp1252"
3162 # else
3163 # ifdef VMS
3164 (char_u *)"dec-mcs"
3165 # else
3166 # ifdef EBCDIC
3167 (char_u *)"ebcdic-uk"
3168 # else
3169 # ifdef MAC
3170 (char_u *)"mac-roman"
3171 # else /* HPUX */
3172 (char_u *)"hp-roman8"
3173 # endif
3174 # endif
3175 # endif
3176 # endif
3178 #endif
3180 #ifdef FEAT_POSTSCRIPT
3181 /* 'printexpr' must be allocated to be able to evaluate it. */
3182 set_string_default("pexpr",
3183 # if defined(MSWIN) || defined(MSDOS) || defined(OS2)
3184 (char_u *)"system('copy' . ' ' . v:fname_in . (&printdevice == '' ? ' LPT1:' : (' \"' . &printdevice . '\"'))) . delete(v:fname_in)"
3185 # else
3186 # ifdef VMS
3187 (char_u *)"system('print/delete' . (&printdevice == '' ? '' : ' /queue=' . &printdevice) . ' ' . v:fname_in)"
3189 # else
3190 (char_u *)"system('lpr' . (&printdevice == '' ? '' : ' -P' . &printdevice) . ' ' . v:fname_in) . delete(v:fname_in) + v:shell_error"
3191 # endif
3192 # endif
3194 #endif
3197 * Set all the options (except the terminal options) to their default
3198 * value. Also set the global value for local options.
3200 set_options_default(0);
3202 #ifdef FEAT_GUI
3203 if (found_reverse_arg)
3204 set_option_value((char_u *)"bg", 0L, (char_u *)"dark", 0);
3205 #endif
3207 curbuf->b_p_initialized = TRUE;
3208 curbuf->b_p_ar = -1; /* no local 'autoread' value */
3209 check_buf_options(curbuf);
3210 check_win_options(curwin);
3211 check_options();
3213 /* Must be before option_expand(), because that one needs vim_isIDc() */
3214 didset_options();
3216 #ifdef FEAT_SPELL
3217 /* Use the current chartab for the generic chartab. */
3218 init_spell_chartab();
3219 #endif
3221 #ifdef FEAT_LINEBREAK
3223 * initialize the table for 'breakat'.
3225 fill_breakat_flags();
3226 #endif
3229 * Expand environment variables and things like "~" for the defaults.
3230 * If option_expand() returns non-NULL the variable is expanded. This can
3231 * only happen for non-indirect options.
3232 * Also set the default to the expanded value, so ":set" does not list
3233 * them.
3234 * Don't set the P_ALLOCED flag, because we don't want to free the
3235 * default.
3237 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
3239 if ((options[opt_idx].flags & P_GETTEXT)
3240 && options[opt_idx].var != NULL)
3241 p = (char_u *)_(*(char **)options[opt_idx].var);
3242 else
3243 p = option_expand(opt_idx, NULL);
3244 if (p != NULL && (p = vim_strsave(p)) != NULL)
3246 *(char_u **)options[opt_idx].var = p;
3247 /* VIMEXP
3248 * Defaults for all expanded options are currently the same for Vi
3249 * and Vim. When this changes, add some code here! Also need to
3250 * split P_DEF_ALLOCED in two.
3252 if (options[opt_idx].flags & P_DEF_ALLOCED)
3253 vim_free(options[opt_idx].def_val[VI_DEFAULT]);
3254 options[opt_idx].def_val[VI_DEFAULT] = p;
3255 options[opt_idx].flags |= P_DEF_ALLOCED;
3259 /* Initialize the highlight_attr[] table. */
3260 highlight_changed();
3262 save_file_ff(curbuf); /* Buffer is unchanged */
3264 /* Parse default for 'wildmode' */
3265 check_opt_wim();
3267 #if defined(FEAT_ARABIC)
3268 /* Detect use of mlterm.
3269 * Mlterm is a terminal emulator akin to xterm that has some special
3270 * abilities (bidi namely).
3271 * NOTE: mlterm's author is being asked to 'set' a variable
3272 * instead of an environment variable due to inheritance.
3274 if (mch_getenv((char_u *)"MLTERM") != NULL)
3275 set_option_value((char_u *)"tbidi", 1L, NULL, 0);
3276 #endif
3278 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
3279 /* Parse default for 'fillchars'. */
3280 (void)set_chars_option(&p_fcs);
3281 #endif
3283 #ifdef FEAT_CLIPBOARD
3284 /* Parse default for 'clipboard' */
3285 (void)check_clipboard_option();
3286 #endif
3288 #ifdef FEAT_MBYTE
3289 # if defined(WIN3264) && defined(FEAT_GETTEXT)
3291 * If $LANG isn't set, try to get a good value for it. This makes the
3292 * right language be used automatically. Don't do this for English.
3294 if (mch_getenv((char_u *)"LANG") == NULL)
3296 char buf[20];
3298 /* Could use LOCALE_SISO639LANGNAME, but it's not in Win95.
3299 * LOCALE_SABBREVLANGNAME gives us three letters, like "enu", we use
3300 * only the first two. */
3301 n = GetLocaleInfo(LOCALE_USER_DEFAULT, LOCALE_SABBREVLANGNAME,
3302 (LPTSTR)buf, 20);
3303 if (n >= 2 && STRNICMP(buf, "en", 2) != 0)
3305 /* There are a few exceptions (probably more) */
3306 if (STRNICMP(buf, "cht", 3) == 0 || STRNICMP(buf, "zht", 3) == 0)
3307 STRCPY(buf, "zh_TW");
3308 else if (STRNICMP(buf, "chs", 3) == 0
3309 || STRNICMP(buf, "zhc", 3) == 0)
3310 STRCPY(buf, "zh_CN");
3311 else if (STRNICMP(buf, "jp", 2) == 0)
3312 STRCPY(buf, "ja");
3313 else
3314 buf[2] = NUL; /* truncate to two-letter code */
3315 vim_setenv("LANG", buf);
3318 # else
3319 # ifdef MACOS_CONVERT
3320 /* Moved to os_mac_conv.c to avoid dependency problems. */
3321 mac_lang_init();
3322 # endif
3323 # endif
3325 /* enc_locale() will try to find the encoding of the current locale. */
3326 p = enc_locale();
3327 if (p != NULL)
3329 char_u *save_enc;
3331 /* Try setting 'encoding' and check if the value is valid.
3332 * If not, go back to the default "latin1". */
3333 save_enc = p_enc;
3334 p_enc = p;
3335 if (STRCMP(p_enc, "gb18030") == 0)
3337 /* We don't support "gb18030", but "cp936" is a good substitute
3338 * for practical purposes, thus use that. It's not an alias to
3339 * still support conversion between gb18030 and utf-8. */
3340 p_enc = vim_strsave((char_u *)"cp936");
3341 vim_free(p);
3343 if (mb_init() == NULL)
3345 opt_idx = findoption((char_u *)"encoding");
3346 if (opt_idx >= 0)
3348 options[opt_idx].def_val[VI_DEFAULT] = p_enc;
3349 options[opt_idx].flags |= P_DEF_ALLOCED;
3352 #if defined(MSDOS) || defined(MSWIN) || defined(OS2) || defined(MACOS) \
3353 || defined(VMS)
3354 if (STRCMP(p_enc, "latin1") == 0
3355 # ifdef FEAT_MBYTE
3356 || enc_utf8
3357 # endif
3360 /* Adjust the default for 'isprint' and 'iskeyword' to match
3361 * latin1. Also set the defaults for when 'nocompatible' is
3362 * set. */
3363 set_string_option_direct((char_u *)"isp", -1,
3364 ISP_LATIN1, OPT_FREE, SID_NONE);
3365 set_string_option_direct((char_u *)"isk", -1,
3366 ISK_LATIN1, OPT_FREE, SID_NONE);
3367 opt_idx = findoption((char_u *)"isp");
3368 if (opt_idx >= 0)
3369 options[opt_idx].def_val[VIM_DEFAULT] = ISP_LATIN1;
3370 opt_idx = findoption((char_u *)"isk");
3371 if (opt_idx >= 0)
3372 options[opt_idx].def_val[VIM_DEFAULT] = ISK_LATIN1;
3373 (void)init_chartab();
3375 #endif
3377 # if defined(WIN3264) && !defined(FEAT_GUI)
3378 /* Win32 console: When GetACP() returns a different value from
3379 * GetConsoleCP() set 'termencoding'. */
3380 if (GetACP() != GetConsoleCP())
3382 char buf[50];
3384 sprintf(buf, "cp%ld", (long)GetConsoleCP());
3385 p_tenc = vim_strsave((char_u *)buf);
3386 if (p_tenc != NULL)
3388 opt_idx = findoption((char_u *)"termencoding");
3389 if (opt_idx >= 0)
3391 options[opt_idx].def_val[VI_DEFAULT] = p_tenc;
3392 options[opt_idx].flags |= P_DEF_ALLOCED;
3394 convert_setup(&input_conv, p_tenc, p_enc);
3395 convert_setup(&output_conv, p_enc, p_tenc);
3397 else
3398 p_tenc = empty_option;
3400 # endif
3401 # if defined(WIN3264) && defined(FEAT_MBYTE)
3402 /* $HOME may have characters in active code page. */
3403 init_homedir();
3404 # endif
3406 else
3408 vim_free(p_enc);
3409 p_enc = save_enc;
3412 #endif
3414 #ifdef FEAT_MULTI_LANG
3415 /* Set the default for 'helplang'. */
3416 set_helplang_default(get_mess_lang());
3417 #endif
3421 * Set an option to its default value.
3422 * This does not take care of side effects!
3424 static void
3425 set_option_default(opt_idx, opt_flags, compatible)
3426 int opt_idx;
3427 int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */
3428 int compatible; /* use Vi default value */
3430 char_u *varp; /* pointer to variable for current option */
3431 int dvi; /* index in def_val[] */
3432 long_u flags;
3433 long_u *flagsp;
3434 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
3436 varp = get_varp_scope(&(options[opt_idx]), both ? OPT_LOCAL : opt_flags);
3437 flags = options[opt_idx].flags;
3438 if (varp != NULL) /* skip hidden option, nothing to do for it */
3440 dvi = ((flags & P_VI_DEF) || compatible) ? VI_DEFAULT : VIM_DEFAULT;
3441 if (flags & P_STRING)
3443 /* Use set_string_option_direct() for local options to handle
3444 * freeing and allocating the value. */
3445 if (options[opt_idx].indir != PV_NONE)
3446 set_string_option_direct(NULL, opt_idx,
3447 options[opt_idx].def_val[dvi], opt_flags, 0);
3448 else
3450 if ((opt_flags & OPT_FREE) && (flags & P_ALLOCED))
3451 free_string_option(*(char_u **)(varp));
3452 *(char_u **)varp = options[opt_idx].def_val[dvi];
3453 options[opt_idx].flags &= ~P_ALLOCED;
3456 else if (flags & P_NUM)
3458 if (options[opt_idx].indir == PV_SCROLL)
3459 win_comp_scroll(curwin);
3460 else
3462 *(long *)varp = (long)(long_i)options[opt_idx].def_val[dvi];
3463 /* May also set global value for local option. */
3464 if (both)
3465 *(long *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) =
3466 *(long *)varp;
3469 else /* P_BOOL */
3471 /* the cast to long is required for Manx C, long_i is needed for
3472 * MSVC */
3473 *(int *)varp = (int)(long)(long_i)options[opt_idx].def_val[dvi];
3474 #ifdef UNIX
3475 /* 'modeline' defaults to off for root */
3476 if (options[opt_idx].indir == PV_ML && getuid() == ROOT_UID)
3477 *(int *)varp = FALSE;
3478 #endif
3479 /* May also set global value for local option. */
3480 if (both)
3481 *(int *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) =
3482 *(int *)varp;
3485 /* The default value is not insecure. */
3486 flagsp = insecure_flag(opt_idx, opt_flags);
3487 *flagsp = *flagsp & ~P_INSECURE;
3490 #ifdef FEAT_EVAL
3491 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
3492 #endif
3496 * Set all options (except terminal options) to their default value.
3498 static void
3499 set_options_default(opt_flags)
3500 int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */
3502 int i;
3503 #ifdef FEAT_WINDOWS
3504 win_T *wp;
3505 tabpage_T *tp;
3506 #endif
3508 for (i = 0; !istermoption(&options[i]); i++)
3509 if (!(options[i].flags & P_NODEFAULT))
3510 set_option_default(i, opt_flags, p_cp);
3512 #ifdef FEAT_WINDOWS
3513 /* The 'scroll' option must be computed for all windows. */
3514 FOR_ALL_TAB_WINDOWS(tp, wp)
3515 win_comp_scroll(wp);
3516 #else
3517 win_comp_scroll(curwin);
3518 #endif
3522 * Set the Vi-default value of a string option.
3523 * Used for 'sh', 'backupskip' and 'term'.
3525 void
3526 set_string_default(name, val)
3527 char *name;
3528 char_u *val;
3530 char_u *p;
3531 int opt_idx;
3533 p = vim_strsave(val);
3534 if (p != NULL) /* we don't want a NULL */
3536 opt_idx = findoption((char_u *)name);
3537 if (opt_idx >= 0)
3539 if (options[opt_idx].flags & P_DEF_ALLOCED)
3540 vim_free(options[opt_idx].def_val[VI_DEFAULT]);
3541 options[opt_idx].def_val[VI_DEFAULT] = p;
3542 options[opt_idx].flags |= P_DEF_ALLOCED;
3548 * Set the Vi-default value of a number option.
3549 * Used for 'lines' and 'columns'.
3551 void
3552 set_number_default(name, val)
3553 char *name;
3554 long val;
3556 int opt_idx;
3558 opt_idx = findoption((char_u *)name);
3559 if (opt_idx >= 0)
3560 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
3563 #if defined(EXITFREE) || defined(PROTO)
3565 * Free all options.
3567 void
3568 free_all_options()
3570 int i;
3572 for (i = 0; !istermoption(&options[i]); i++)
3574 if (options[i].indir == PV_NONE)
3576 /* global option: free value and default value. */
3577 if (options[i].flags & P_ALLOCED && options[i].var != NULL)
3578 free_string_option(*(char_u **)options[i].var);
3579 if (options[i].flags & P_DEF_ALLOCED)
3580 free_string_option(options[i].def_val[VI_DEFAULT]);
3582 else if (options[i].var != VAR_WIN
3583 && (options[i].flags & P_STRING))
3584 /* buffer-local option: free global value */
3585 free_string_option(*(char_u **)options[i].var);
3588 #endif
3592 * Initialize the options, part two: After getting Rows and Columns and
3593 * setting 'term'.
3595 void
3596 set_init_2()
3598 int idx;
3601 * 'scroll' defaults to half the window height. Note that this default is
3602 * wrong when the window height changes.
3604 set_number_default("scroll", (long)((long_u)Rows >> 1));
3605 idx = findoption((char_u *)"scroll");
3606 if (idx >= 0 && !(options[idx].flags & P_WAS_SET))
3607 set_option_default(idx, OPT_LOCAL, p_cp);
3608 comp_col();
3611 * 'window' is only for backwards compatibility with Vi.
3612 * Default is Rows - 1.
3614 if (!option_was_set((char_u *)"window"))
3615 p_window = Rows - 1;
3616 set_number_default("window", Rows - 1);
3618 /* For DOS console the default is always black. */
3619 #if !((defined(MSDOS) || defined(OS2) || defined(WIN3264)) && !defined(FEAT_GUI))
3621 * If 'background' wasn't set by the user, try guessing the value,
3622 * depending on the terminal name. Only need to check for terminals
3623 * with a dark background, that can handle color.
3625 idx = findoption((char_u *)"bg");
3626 if (idx >= 0 && !(options[idx].flags & P_WAS_SET)
3627 && *term_bg_default() == 'd')
3629 set_string_option_direct(NULL, idx, (char_u *)"dark", OPT_FREE, 0);
3630 /* don't mark it as set, when starting the GUI it may be
3631 * changed again */
3632 options[idx].flags &= ~P_WAS_SET;
3634 #endif
3636 #ifdef CURSOR_SHAPE
3637 parse_shape_opt(SHAPE_CURSOR); /* set cursor shapes from 'guicursor' */
3638 #endif
3639 #ifdef FEAT_MOUSESHAPE
3640 parse_shape_opt(SHAPE_MOUSE); /* set mouse shapes from 'mouseshape' */
3641 #endif
3642 #ifdef FEAT_PRINTER
3643 (void)parse_printoptions(); /* parse 'printoptions' default value */
3644 #endif
3648 * Return "dark" or "light" depending on the kind of terminal.
3649 * This is just guessing! Recognized are:
3650 * "linux" Linux console
3651 * "screen.linux" Linux console with screen
3652 * "cygwin" Cygwin shell
3653 * "putty" Putty program
3654 * We also check the COLORFGBG environment variable, which is set by
3655 * rxvt and derivatives. This variable contains either two or three
3656 * values separated by semicolons; we want the last value in either
3657 * case. If this value is 0-6 or 8, our background is dark.
3659 static char_u *
3660 term_bg_default()
3662 #if defined(MSDOS) || defined(OS2) || defined(WIN3264)
3663 /* DOS console nearly always black */
3664 return (char_u *)"dark";
3665 #else
3666 char_u *p;
3668 if (STRCMP(T_NAME, "linux") == 0
3669 || STRCMP(T_NAME, "screen.linux") == 0
3670 || STRCMP(T_NAME, "cygwin") == 0
3671 || STRCMP(T_NAME, "putty") == 0
3672 || ((p = mch_getenv((char_u *)"COLORFGBG")) != NULL
3673 && (p = vim_strrchr(p, ';')) != NULL
3674 && ((p[1] >= '0' && p[1] <= '6') || p[1] == '8')
3675 && p[2] == NUL))
3676 return (char_u *)"dark";
3677 return (char_u *)"light";
3678 #endif
3682 * Initialize the options, part three: After reading the .vimrc
3684 void
3685 set_init_3()
3687 #if defined(UNIX) || defined(OS2) || defined(WIN3264)
3689 * Set 'shellpipe' and 'shellredir', depending on the 'shell' option.
3690 * This is done after other initializations, where 'shell' might have been
3691 * set, but only if they have not been set before.
3693 char_u *p;
3694 int idx_srr;
3695 int do_srr;
3696 #ifdef FEAT_QUICKFIX
3697 int idx_sp;
3698 int do_sp;
3699 #endif
3701 idx_srr = findoption((char_u *)"srr");
3702 if (idx_srr < 0)
3703 do_srr = FALSE;
3704 else
3705 do_srr = !(options[idx_srr].flags & P_WAS_SET);
3706 #ifdef FEAT_QUICKFIX
3707 idx_sp = findoption((char_u *)"sp");
3708 if (idx_sp < 0)
3709 do_sp = FALSE;
3710 else
3711 do_sp = !(options[idx_sp].flags & P_WAS_SET);
3712 #endif
3715 * Isolate the name of the shell:
3716 * - Skip beyond any path. E.g., "/usr/bin/csh -f" -> "csh -f".
3717 * - Remove any argument. E.g., "csh -f" -> "csh".
3718 * But don't allow a space in the path, so that this works:
3719 * "/usr/bin/csh --rcfile ~/.cshrc"
3720 * But don't do that for Windows, it's common to have a space in the path.
3722 #ifdef WIN3264
3723 p = gettail(p_sh);
3724 p = vim_strnsave(p, (int)(skiptowhite(p) - p));
3725 #else
3726 p = skiptowhite(p_sh);
3727 if (*p == NUL)
3729 /* No white space, use the tail. */
3730 p = vim_strsave(gettail(p_sh));
3732 else
3734 char_u *p1, *p2;
3736 /* Find the last path separator before the space. */
3737 p1 = p_sh;
3738 for (p2 = p_sh; p2 < p; mb_ptr_adv(p2))
3739 if (vim_ispathsep(*p2))
3740 p1 = p2 + 1;
3741 p = vim_strnsave(p1, (int)(p - p1));
3743 #endif
3744 if (p != NULL)
3747 * Default for p_sp is "| tee", for p_srr is ">".
3748 * For known shells it is changed here to include stderr.
3750 if ( fnamecmp(p, "csh") == 0
3751 || fnamecmp(p, "tcsh") == 0
3752 # if defined(OS2) || defined(WIN3264) /* also check with .exe extension */
3753 || fnamecmp(p, "csh.exe") == 0
3754 || fnamecmp(p, "tcsh.exe") == 0
3755 # endif
3758 #if defined(FEAT_QUICKFIX)
3759 if (do_sp)
3761 # ifdef WIN3264
3762 p_sp = (char_u *)">&";
3763 # else
3764 p_sp = (char_u *)"|& tee";
3765 # endif
3766 options[idx_sp].def_val[VI_DEFAULT] = p_sp;
3768 #endif
3769 if (do_srr)
3771 p_srr = (char_u *)">&";
3772 options[idx_srr].def_val[VI_DEFAULT] = p_srr;
3775 else
3776 # ifndef OS2 /* Always use bourne shell style redirection if we reach this */
3777 if ( fnamecmp(p, "sh") == 0
3778 || fnamecmp(p, "ksh") == 0
3779 || fnamecmp(p, "zsh") == 0
3780 || fnamecmp(p, "zsh-beta") == 0
3781 || fnamecmp(p, "bash") == 0
3782 # ifdef WIN3264
3783 || fnamecmp(p, "cmd") == 0
3784 || fnamecmp(p, "sh.exe") == 0
3785 || fnamecmp(p, "ksh.exe") == 0
3786 || fnamecmp(p, "zsh.exe") == 0
3787 || fnamecmp(p, "zsh-beta.exe") == 0
3788 || fnamecmp(p, "bash.exe") == 0
3789 || fnamecmp(p, "cmd.exe") == 0
3790 # endif
3792 # endif
3794 #if defined(FEAT_QUICKFIX)
3795 if (do_sp)
3797 # ifdef WIN3264
3798 p_sp = (char_u *)">%s 2>&1";
3799 # else
3800 p_sp = (char_u *)"2>&1| tee";
3801 # endif
3802 options[idx_sp].def_val[VI_DEFAULT] = p_sp;
3804 #endif
3805 if (do_srr)
3807 p_srr = (char_u *)">%s 2>&1";
3808 options[idx_srr].def_val[VI_DEFAULT] = p_srr;
3811 vim_free(p);
3813 #endif
3815 #if defined(MSDOS) || defined(WIN3264) || defined(OS2)
3817 * Set 'shellcmdflag and 'shellquote' depending on the 'shell' option.
3818 * This is done after other initializations, where 'shell' might have been
3819 * set, but only if they have not been set before. Default for p_shcf is
3820 * "/c", for p_shq is "". For "sh" like shells it is changed here to
3821 * "-c" and "\"", but not for DJGPP, because it starts the shell without
3822 * command.com. And for Win32 we need to set p_sxq instead.
3824 if (strstr((char *)gettail(p_sh), "sh") != NULL)
3826 int idx3;
3828 idx3 = findoption((char_u *)"shcf");
3829 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
3831 p_shcf = (char_u *)"-c";
3832 options[idx3].def_val[VI_DEFAULT] = p_shcf;
3835 # ifndef DJGPP
3836 # ifdef WIN3264
3837 /* Somehow Win32 requires the quotes around the redirection too */
3838 idx3 = findoption((char_u *)"sxq");
3839 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
3841 p_sxq = (char_u *)"\"";
3842 options[idx3].def_val[VI_DEFAULT] = p_sxq;
3844 # else
3845 idx3 = findoption((char_u *)"shq");
3846 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
3848 p_shq = (char_u *)"\"";
3849 options[idx3].def_val[VI_DEFAULT] = p_shq;
3851 # endif
3852 # endif
3854 #endif
3856 #ifdef FEAT_TITLE
3857 set_title_defaults();
3858 #endif
3861 #if defined(FEAT_MULTI_LANG) || defined(PROTO)
3863 * When 'helplang' is still at its default value, set it to "lang".
3864 * Only the first two characters of "lang" are used.
3866 void
3867 set_helplang_default(lang)
3868 char_u *lang;
3870 int idx;
3872 if (lang == NULL || STRLEN(lang) < 2) /* safety check */
3873 return;
3874 idx = findoption((char_u *)"hlg");
3875 if (idx >= 0 && !(options[idx].flags & P_WAS_SET))
3877 if (options[idx].flags & P_ALLOCED)
3878 free_string_option(p_hlg);
3879 p_hlg = vim_strsave(lang);
3880 if (p_hlg == NULL)
3881 p_hlg = empty_option;
3882 else
3884 /* zh_CN becomes "cn", zh_TW becomes "tw". */
3885 if (STRNICMP(p_hlg, "zh_", 3) == 0 && STRLEN(p_hlg) >= 5)
3887 p_hlg[0] = TOLOWER_ASC(p_hlg[3]);
3888 p_hlg[1] = TOLOWER_ASC(p_hlg[4]);
3890 p_hlg[2] = NUL;
3892 options[idx].flags |= P_ALLOCED;
3895 #endif
3897 #ifdef FEAT_GUI
3898 static char_u *gui_bg_default __ARGS((void));
3900 static char_u *
3901 gui_bg_default()
3903 if (gui_get_lightness(gui.back_pixel) < 127)
3904 return (char_u *)"dark";
3905 return (char_u *)"light";
3909 * Option initializations that can only be done after opening the GUI window.
3911 void
3912 init_gui_options()
3914 /* Set the 'background' option according to the lightness of the
3915 * background color, unless the user has set it already. */
3916 if (!option_was_set((char_u *)"bg") && STRCMP(p_bg, gui_bg_default()) != 0)
3918 set_option_value((char_u *)"bg", 0L, gui_bg_default(), 0);
3919 highlight_changed();
3922 #endif
3924 #ifdef FEAT_TITLE
3926 * 'title' and 'icon' only default to true if they have not been set or reset
3927 * in .vimrc and we can read the old value.
3928 * When 'title' and 'icon' have been reset in .vimrc, we won't even check if
3929 * they can be reset. This reduces startup time when using X on a remote
3930 * machine.
3932 void
3933 set_title_defaults()
3935 int idx1;
3936 long val;
3939 * If GUI is (going to be) used, we can always set the window title and
3940 * icon name. Saves a bit of time, because the X11 display server does
3941 * not need to be contacted.
3943 idx1 = findoption((char_u *)"title");
3944 if (idx1 >= 0 && !(options[idx1].flags & P_WAS_SET))
3946 #ifdef FEAT_GUI
3947 if (gui.starting || gui.in_use)
3948 val = TRUE;
3949 else
3950 #endif
3951 val = mch_can_restore_title();
3952 options[idx1].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
3953 p_title = val;
3955 idx1 = findoption((char_u *)"icon");
3956 if (idx1 >= 0 && !(options[idx1].flags & P_WAS_SET))
3958 #ifdef FEAT_GUI
3959 if (gui.starting || gui.in_use)
3960 val = TRUE;
3961 else
3962 #endif
3963 val = mch_can_restore_icon();
3964 options[idx1].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
3965 p_icon = val;
3968 #endif
3971 * Parse 'arg' for option settings.
3973 * 'arg' may be IObuff, but only when no errors can be present and option
3974 * does not need to be expanded with option_expand().
3975 * "opt_flags":
3976 * 0 for ":set"
3977 * OPT_GLOBAL for ":setglobal"
3978 * OPT_LOCAL for ":setlocal" and a modeline
3979 * OPT_MODELINE for a modeline
3980 * OPT_WINONLY to only set window-local options
3981 * OPT_NOWIN to skip setting window-local options
3983 * returns FAIL if an error is detected, OK otherwise
3986 do_set(arg, opt_flags)
3987 char_u *arg; /* option string (may be written to!) */
3988 int opt_flags;
3990 int opt_idx;
3991 char_u *errmsg;
3992 char_u errbuf[80];
3993 char_u *startarg;
3994 int prefix; /* 1: nothing, 0: "no", 2: "inv" in front of name */
3995 int nextchar; /* next non-white char after option name */
3996 int afterchar; /* character just after option name */
3997 int len;
3998 int i;
3999 long value;
4000 int key;
4001 long_u flags; /* flags for current option */
4002 char_u *varp = NULL; /* pointer to variable for current option */
4003 int did_show = FALSE; /* already showed one value */
4004 int adding; /* "opt+=arg" */
4005 int prepending; /* "opt^=arg" */
4006 int removing; /* "opt-=arg" */
4007 int cp_val = 0;
4008 char_u key_name[2];
4010 if (*arg == NUL)
4012 showoptions(0, opt_flags);
4013 did_show = TRUE;
4014 goto theend;
4017 while (*arg != NUL) /* loop to process all options */
4019 errmsg = NULL;
4020 startarg = arg; /* remember for error message */
4022 if (STRNCMP(arg, "all", 3) == 0 && !isalpha(arg[3])
4023 && !(opt_flags & OPT_MODELINE))
4026 * ":set all" show all options.
4027 * ":set all&" set all options to their default value.
4029 arg += 3;
4030 if (*arg == '&')
4032 ++arg;
4033 /* Only for :set command set global value of local options. */
4034 set_options_default(OPT_FREE | opt_flags);
4036 else
4038 showoptions(1, opt_flags);
4039 did_show = TRUE;
4042 else if (STRNCMP(arg, "termcap", 7) == 0 && !(opt_flags & OPT_MODELINE))
4044 showoptions(2, opt_flags);
4045 show_termcodes();
4046 did_show = TRUE;
4047 arg += 7;
4049 else
4051 prefix = 1;
4052 if (STRNCMP(arg, "no", 2) == 0 && STRNCMP(arg, "novice", 6) != 0)
4054 prefix = 0;
4055 arg += 2;
4057 else if (STRNCMP(arg, "inv", 3) == 0)
4059 prefix = 2;
4060 arg += 3;
4063 /* find end of name */
4064 key = 0;
4065 if (*arg == '<')
4067 nextchar = 0;
4068 opt_idx = -1;
4069 /* look out for <t_>;> */
4070 if (arg[1] == 't' && arg[2] == '_' && arg[3] && arg[4])
4071 len = 5;
4072 else
4074 len = 1;
4075 while (arg[len] != NUL && arg[len] != '>')
4076 ++len;
4078 if (arg[len] != '>')
4080 errmsg = e_invarg;
4081 goto skip;
4083 arg[len] = NUL; /* put NUL after name */
4084 if (arg[1] == 't' && arg[2] == '_') /* could be term code */
4085 opt_idx = findoption(arg + 1);
4086 arg[len++] = '>'; /* restore '>' */
4087 if (opt_idx == -1)
4088 key = find_key_option(arg + 1);
4090 else
4092 len = 0;
4094 * The two characters after "t_" may not be alphanumeric.
4096 if (arg[0] == 't' && arg[1] == '_' && arg[2] && arg[3])
4097 len = 4;
4098 else
4099 while (ASCII_ISALNUM(arg[len]) || arg[len] == '_')
4100 ++len;
4101 nextchar = arg[len];
4102 arg[len] = NUL; /* put NUL after name */
4103 opt_idx = findoption(arg);
4104 arg[len] = nextchar; /* restore nextchar */
4105 if (opt_idx == -1)
4106 key = find_key_option(arg);
4109 /* remember character after option name */
4110 afterchar = arg[len];
4112 /* skip white space, allow ":set ai ?" */
4113 while (vim_iswhite(arg[len]))
4114 ++len;
4116 adding = FALSE;
4117 prepending = FALSE;
4118 removing = FALSE;
4119 if (arg[len] != NUL && arg[len + 1] == '=')
4121 if (arg[len] == '+')
4123 adding = TRUE; /* "+=" */
4124 ++len;
4126 else if (arg[len] == '^')
4128 prepending = TRUE; /* "^=" */
4129 ++len;
4131 else if (arg[len] == '-')
4133 removing = TRUE; /* "-=" */
4134 ++len;
4137 nextchar = arg[len];
4139 if (opt_idx == -1 && key == 0) /* found a mismatch: skip */
4141 errmsg = (char_u *)N_("E518: Unknown option");
4142 goto skip;
4145 if (opt_idx >= 0)
4147 if (options[opt_idx].var == NULL) /* hidden option: skip */
4149 /* Only give an error message when requesting the value of
4150 * a hidden option, ignore setting it. */
4151 if (vim_strchr((char_u *)"=:!&<", nextchar) == NULL
4152 && (!(options[opt_idx].flags & P_BOOL)
4153 || nextchar == '?'))
4154 errmsg = (char_u *)N_("E519: Option not supported");
4155 goto skip;
4158 flags = options[opt_idx].flags;
4159 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
4161 else
4163 flags = P_STRING;
4164 if (key < 0)
4166 key_name[0] = KEY2TERMCAP0(key);
4167 key_name[1] = KEY2TERMCAP1(key);
4169 else
4171 key_name[0] = KS_KEY;
4172 key_name[1] = (key & 0xff);
4176 /* Skip all options that are not window-local (used when showing
4177 * an already loaded buffer in a window). */
4178 if ((opt_flags & OPT_WINONLY)
4179 && (opt_idx < 0 || options[opt_idx].var != VAR_WIN))
4180 goto skip;
4182 /* Skip all options that are window-local (used for :vimgrep). */
4183 if ((opt_flags & OPT_NOWIN) && opt_idx >= 0
4184 && options[opt_idx].var == VAR_WIN)
4185 goto skip;
4187 /* Disallow changing some options from modelines. */
4188 if (opt_flags & OPT_MODELINE)
4190 if (flags & P_SECURE)
4192 errmsg = (char_u *)_("E520: Not allowed in a modeline");
4193 goto skip;
4195 #ifdef FEAT_DIFF
4196 /* In diff mode some options are overruled. This avoids that
4197 * 'foldmethod' becomes "marker" instead of "diff" and that
4198 * "wrap" gets set. */
4199 if (curwin->w_p_diff
4200 && (options[opt_idx].indir == PV_FDM
4201 || options[opt_idx].indir == PV_WRAP))
4202 goto skip;
4203 #endif
4206 #ifdef HAVE_SANDBOX
4207 /* Disallow changing some options in the sandbox */
4208 if (sandbox != 0 && (flags & P_SECURE))
4210 errmsg = (char_u *)_(e_sandbox);
4211 goto skip;
4213 #endif
4215 if (vim_strchr((char_u *)"?=:!&<", nextchar) != NULL)
4217 arg += len;
4218 cp_val = p_cp;
4219 if (nextchar == '&' && arg[1] == 'v' && arg[2] == 'i')
4221 if (arg[3] == 'm') /* "opt&vim": set to Vim default */
4223 cp_val = FALSE;
4224 arg += 3;
4226 else /* "opt&vi": set to Vi default */
4228 cp_val = TRUE;
4229 arg += 2;
4232 if (vim_strchr((char_u *)"?!&<", nextchar) != NULL
4233 && arg[1] != NUL && !vim_iswhite(arg[1]))
4235 errmsg = e_trailing;
4236 goto skip;
4241 * allow '=' and ':' as MSDOS command.com allows only one
4242 * '=' character per "set" command line. grrr. (jw)
4244 if (nextchar == '?'
4245 || (prefix == 1
4246 && vim_strchr((char_u *)"=:&<", nextchar) == NULL
4247 && !(flags & P_BOOL)))
4250 * print value
4252 if (did_show)
4253 msg_putchar('\n'); /* cursor below last one */
4254 else
4256 gotocmdline(TRUE); /* cursor at status line */
4257 did_show = TRUE; /* remember that we did a line */
4259 if (opt_idx >= 0)
4261 showoneopt(&options[opt_idx], opt_flags);
4262 #ifdef FEAT_EVAL
4263 if (p_verbose > 0)
4265 /* Mention where the option was last set. */
4266 if (varp == options[opt_idx].var)
4267 last_set_msg(options[opt_idx].scriptID);
4268 else if ((int)options[opt_idx].indir & PV_WIN)
4269 last_set_msg(curwin->w_p_scriptID[
4270 (int)options[opt_idx].indir & PV_MASK]);
4271 else if ((int)options[opt_idx].indir & PV_BUF)
4272 last_set_msg(curbuf->b_p_scriptID[
4273 (int)options[opt_idx].indir & PV_MASK]);
4275 #endif
4277 else
4279 char_u *p;
4281 p = find_termcode(key_name);
4282 if (p == NULL)
4284 errmsg = (char_u *)N_("E518: Unknown option");
4285 goto skip;
4287 else
4288 (void)show_one_termcode(key_name, p, TRUE);
4290 if (nextchar != '?'
4291 && nextchar != NUL && !vim_iswhite(afterchar))
4292 errmsg = e_trailing;
4294 else
4296 if (flags & P_BOOL) /* boolean */
4298 if (nextchar == '=' || nextchar == ':')
4300 errmsg = e_invarg;
4301 goto skip;
4305 * ":set opt!": invert
4306 * ":set opt&": reset to default value
4307 * ":set opt<": reset to global value
4309 if (nextchar == '!')
4310 value = *(int *)(varp) ^ 1;
4311 else if (nextchar == '&')
4312 value = (int)(long)(long_i)options[opt_idx].def_val[
4313 ((flags & P_VI_DEF) || cp_val)
4314 ? VI_DEFAULT : VIM_DEFAULT];
4315 else if (nextchar == '<')
4317 /* For 'autoread' -1 means to use global value. */
4318 if ((int *)varp == &curbuf->b_p_ar
4319 && opt_flags == OPT_LOCAL)
4320 value = -1;
4321 else
4322 value = *(int *)get_varp_scope(&(options[opt_idx]),
4323 OPT_GLOBAL);
4325 else
4328 * ":set invopt": invert
4329 * ":set opt" or ":set noopt": set or reset
4331 if (nextchar != NUL && !vim_iswhite(afterchar))
4333 errmsg = e_trailing;
4334 goto skip;
4336 if (prefix == 2) /* inv */
4337 value = *(int *)(varp) ^ 1;
4338 else
4339 value = prefix;
4342 errmsg = set_bool_option(opt_idx, varp, (int)value,
4343 opt_flags);
4345 else /* numeric or string */
4347 if (vim_strchr((char_u *)"=:&<", nextchar) == NULL
4348 || prefix != 1)
4350 errmsg = e_invarg;
4351 goto skip;
4354 if (flags & P_NUM) /* numeric */
4357 * Different ways to set a number option:
4358 * & set to default value
4359 * < set to global value
4360 * <xx> accept special key codes for 'wildchar'
4361 * c accept any non-digit for 'wildchar'
4362 * [-]0-9 set number
4363 * other error
4365 ++arg;
4366 if (nextchar == '&')
4367 value = (long)(long_i)options[opt_idx].def_val[
4368 ((flags & P_VI_DEF) || cp_val)
4369 ? VI_DEFAULT : VIM_DEFAULT];
4370 else if (nextchar == '<')
4371 value = *(long *)get_varp_scope(&(options[opt_idx]),
4372 OPT_GLOBAL);
4373 else if (((long *)varp == &p_wc
4374 || (long *)varp == &p_wcm)
4375 && (*arg == '<'
4376 || *arg == '^'
4377 || ((!arg[1] || vim_iswhite(arg[1]))
4378 && !VIM_ISDIGIT(*arg))))
4380 value = string_to_key(arg);
4381 if (value == 0 && (long *)varp != &p_wcm)
4383 errmsg = e_invarg;
4384 goto skip;
4387 /* allow negative numbers (for 'undolevels') */
4388 else if (*arg == '-' || VIM_ISDIGIT(*arg))
4390 i = 0;
4391 if (*arg == '-')
4392 i = 1;
4393 #ifdef HAVE_STRTOL
4394 value = strtol((char *)arg, NULL, 0);
4395 if (arg[i] == '0' && TOLOWER_ASC(arg[i + 1]) == 'x')
4396 i += 2;
4397 #else
4398 value = atol((char *)arg);
4399 #endif
4400 while (VIM_ISDIGIT(arg[i]))
4401 ++i;
4402 if (arg[i] != NUL && !vim_iswhite(arg[i]))
4404 errmsg = e_invarg;
4405 goto skip;
4408 else
4410 errmsg = (char_u *)N_("E521: Number required after =");
4411 goto skip;
4414 if (adding)
4415 value = *(long *)varp + value;
4416 if (prepending)
4417 value = *(long *)varp * value;
4418 if (removing)
4419 value = *(long *)varp - value;
4420 errmsg = set_num_option(opt_idx, varp, value,
4421 errbuf, sizeof(errbuf), opt_flags);
4423 else if (opt_idx >= 0) /* string */
4425 char_u *save_arg = NULL;
4426 char_u *s = NULL;
4427 char_u *oldval; /* previous value if *varp */
4428 char_u *newval;
4429 char_u *origval;
4430 unsigned newlen;
4431 int comma;
4432 int bs;
4433 int new_value_alloced; /* new string option
4434 was allocated */
4436 /* When using ":set opt=val" for a global option
4437 * with a local value the local value will be
4438 * reset, use the global value here. */
4439 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
4440 && ((int)options[opt_idx].indir & PV_BOTH))
4441 varp = options[opt_idx].var;
4443 /* The old value is kept until we are sure that the
4444 * new value is valid. */
4445 oldval = *(char_u **)varp;
4446 if (nextchar == '&') /* set to default val */
4448 newval = options[opt_idx].def_val[
4449 ((flags & P_VI_DEF) || cp_val)
4450 ? VI_DEFAULT : VIM_DEFAULT];
4451 if ((char_u **)varp == &p_bg)
4453 /* guess the value of 'background' */
4454 #ifdef FEAT_GUI
4455 if (gui.in_use)
4456 newval = gui_bg_default();
4457 else
4458 #endif
4459 newval = term_bg_default();
4462 /* expand environment variables and ~ (since the
4463 * default value was already expanded, only
4464 * required when an environment variable was set
4465 * later */
4466 if (newval == NULL)
4467 newval = empty_option;
4468 else
4470 s = option_expand(opt_idx, newval);
4471 if (s == NULL)
4472 s = newval;
4473 newval = vim_strsave(s);
4475 new_value_alloced = TRUE;
4477 else if (nextchar == '<') /* set to global val */
4479 newval = vim_strsave(*(char_u **)get_varp_scope(
4480 &(options[opt_idx]), OPT_GLOBAL));
4481 new_value_alloced = TRUE;
4483 else
4485 ++arg; /* jump to after the '=' or ':' */
4488 * Set 'keywordprg' to ":help" if an empty
4489 * value was passed to :set by the user.
4490 * Misuse errbuf[] for the resulting string.
4492 if (varp == (char_u *)&p_kp
4493 && (*arg == NUL || *arg == ' '))
4495 STRCPY(errbuf, ":help");
4496 save_arg = arg;
4497 arg = errbuf;
4500 * Convert 'whichwrap' number to string, for
4501 * backwards compatibility with Vim 3.0.
4502 * Misuse errbuf[] for the resulting string.
4504 else if (varp == (char_u *)&p_ww
4505 && VIM_ISDIGIT(*arg))
4507 *errbuf = NUL;
4508 i = getdigits(&arg);
4509 if (i & 1)
4510 STRCAT(errbuf, "b,");
4511 if (i & 2)
4512 STRCAT(errbuf, "s,");
4513 if (i & 4)
4514 STRCAT(errbuf, "h,l,");
4515 if (i & 8)
4516 STRCAT(errbuf, "<,>,");
4517 if (i & 16)
4518 STRCAT(errbuf, "[,],");
4519 if (*errbuf != NUL) /* remove trailing , */
4520 errbuf[STRLEN(errbuf) - 1] = NUL;
4521 save_arg = arg;
4522 arg = errbuf;
4525 * Remove '>' before 'dir' and 'bdir', for
4526 * backwards compatibility with version 3.0
4528 else if ( *arg == '>'
4529 && (varp == (char_u *)&p_dir
4530 || varp == (char_u *)&p_bdir))
4532 ++arg;
4535 /* When setting the local value of a global
4536 * option, the old value may be the global value. */
4537 if (((int)options[opt_idx].indir & PV_BOTH)
4538 && (opt_flags & OPT_LOCAL))
4539 origval = *(char_u **)get_varp(
4540 &options[opt_idx]);
4541 else
4542 origval = oldval;
4545 * Copy the new string into allocated memory.
4546 * Can't use set_string_option_direct(), because
4547 * we need to remove the backslashes.
4549 /* get a bit too much */
4550 newlen = (unsigned)STRLEN(arg) + 1;
4551 if (adding || prepending || removing)
4552 newlen += (unsigned)STRLEN(origval) + 1;
4553 newval = alloc(newlen);
4554 if (newval == NULL) /* out of mem, don't change */
4555 break;
4556 s = newval;
4559 * Copy the string, skip over escaped chars.
4560 * For MS-DOS and WIN32 backslashes before normal
4561 * file name characters are not removed, and keep
4562 * backslash at start, for "\\machine\path", but
4563 * do remove it for "\\\\machine\\path".
4564 * The reverse is found in ExpandOldSetting().
4566 while (*arg && !vim_iswhite(*arg))
4568 if (*arg == '\\' && arg[1] != NUL
4569 #ifdef BACKSLASH_IN_FILENAME
4570 && !((flags & P_EXPAND)
4571 && vim_isfilec(arg[1])
4572 && (arg[1] != '\\'
4573 || (s == newval
4574 && arg[2] != '\\')))
4575 #endif
4577 ++arg; /* remove backslash */
4578 #ifdef FEAT_MBYTE
4579 if (has_mbyte
4580 && (i = (*mb_ptr2len)(arg)) > 1)
4582 /* copy multibyte char */
4583 mch_memmove(s, arg, (size_t)i);
4584 arg += i;
4585 s += i;
4587 else
4588 #endif
4589 *s++ = *arg++;
4591 *s = NUL;
4594 * Expand environment variables and ~.
4595 * Don't do it when adding without inserting a
4596 * comma.
4598 if (!(adding || prepending || removing)
4599 || (flags & P_COMMA))
4601 s = option_expand(opt_idx, newval);
4602 if (s != NULL)
4604 vim_free(newval);
4605 newlen = (unsigned)STRLEN(s) + 1;
4606 if (adding || prepending || removing)
4607 newlen += (unsigned)STRLEN(origval) + 1;
4608 newval = alloc(newlen);
4609 if (newval == NULL)
4610 break;
4611 STRCPY(newval, s);
4615 /* locate newval[] in origval[] when removing it
4616 * and when adding to avoid duplicates */
4617 i = 0; /* init for GCC */
4618 if (removing || (flags & P_NODUP))
4620 i = (int)STRLEN(newval);
4621 bs = 0;
4622 for (s = origval; *s; ++s)
4624 if ((!(flags & P_COMMA)
4625 || s == origval
4626 || (s[-1] == ',' && !(bs & 1)))
4627 && STRNCMP(s, newval, i) == 0
4628 && (!(flags & P_COMMA)
4629 || s[i] == ','
4630 || s[i] == NUL))
4631 break;
4632 /* Count backspaces. Only a comma with an
4633 * even number of backspaces before it is
4634 * recognized as a separator */
4635 if (s > origval && s[-1] == '\\')
4636 ++bs;
4637 else
4638 bs = 0;
4641 /* do not add if already there */
4642 if ((adding || prepending) && *s)
4644 prepending = FALSE;
4645 adding = FALSE;
4646 STRCPY(newval, origval);
4650 /* concatenate the two strings; add a ',' if
4651 * needed */
4652 if (adding || prepending)
4654 comma = ((flags & P_COMMA) && *origval != NUL
4655 && *newval != NUL);
4656 if (adding)
4658 i = (int)STRLEN(origval);
4659 mch_memmove(newval + i + comma, newval,
4660 STRLEN(newval) + 1);
4661 mch_memmove(newval, origval, (size_t)i);
4663 else
4665 i = (int)STRLEN(newval);
4666 STRMOVE(newval + i + comma, origval);
4668 if (comma)
4669 newval[i] = ',';
4672 /* Remove newval[] from origval[]. (Note: "i" has
4673 * been set above and is used here). */
4674 if (removing)
4676 STRCPY(newval, origval);
4677 if (*s)
4679 /* may need to remove a comma */
4680 if (flags & P_COMMA)
4682 if (s == origval)
4684 /* include comma after string */
4685 if (s[i] == ',')
4686 ++i;
4688 else
4690 /* include comma before string */
4691 --s;
4692 ++i;
4695 STRMOVE(newval + (s - origval), s + i);
4699 if (flags & P_FLAGLIST)
4701 /* Remove flags that appear twice. */
4702 for (s = newval; *s; ++s)
4703 if ((!(flags & P_COMMA) || *s != ',')
4704 && vim_strchr(s + 1, *s) != NULL)
4706 STRMOVE(s, s + 1);
4707 --s;
4711 if (save_arg != NULL) /* number for 'whichwrap' */
4712 arg = save_arg;
4713 new_value_alloced = TRUE;
4716 /* Set the new value. */
4717 *(char_u **)(varp) = newval;
4719 /* Handle side effects, and set the global value for
4720 * ":set" on local options. */
4721 errmsg = did_set_string_option(opt_idx, (char_u **)varp,
4722 new_value_alloced, oldval, errbuf, opt_flags);
4724 /* If error detected, print the error message. */
4725 if (errmsg != NULL)
4726 goto skip;
4728 else /* key code option */
4730 char_u *p;
4732 if (nextchar == '&')
4734 if (add_termcap_entry(key_name, TRUE) == FAIL)
4735 errmsg = (char_u *)N_("E522: Not found in termcap");
4737 else
4739 ++arg; /* jump to after the '=' or ':' */
4740 for (p = arg; *p && !vim_iswhite(*p); ++p)
4741 if (*p == '\\' && p[1] != NUL)
4742 ++p;
4743 nextchar = *p;
4744 *p = NUL;
4745 add_termcode(key_name, arg, FALSE);
4746 *p = nextchar;
4748 if (full_screen)
4749 ttest(FALSE);
4750 redraw_all_later(CLEAR);
4754 if (opt_idx >= 0)
4755 did_set_option(opt_idx, opt_flags,
4756 !prepending && !adding && !removing);
4759 skip:
4761 * Advance to next argument.
4762 * - skip until a blank found, taking care of backslashes
4763 * - skip blanks
4764 * - skip one "=val" argument (for hidden options ":set gfn =xx")
4766 for (i = 0; i < 2 ; ++i)
4768 while (*arg != NUL && !vim_iswhite(*arg))
4769 if (*arg++ == '\\' && *arg != NUL)
4770 ++arg;
4771 arg = skipwhite(arg);
4772 if (*arg != '=')
4773 break;
4777 if (errmsg != NULL)
4779 vim_strncpy(IObuff, (char_u *)_(errmsg), IOSIZE - 1);
4780 i = (int)STRLEN(IObuff) + 2;
4781 if (i + (arg - startarg) < IOSIZE)
4783 /* append the argument with the error */
4784 STRCAT(IObuff, ": ");
4785 mch_memmove(IObuff + i, startarg, (arg - startarg));
4786 IObuff[i + (arg - startarg)] = NUL;
4788 /* make sure all characters are printable */
4789 trans_characters(IObuff, IOSIZE);
4791 ++no_wait_return; /* wait_return done later */
4792 emsg(IObuff); /* show error highlighted */
4793 --no_wait_return;
4795 return FAIL;
4798 arg = skipwhite(arg);
4801 theend:
4802 if (silent_mode && did_show)
4804 /* After displaying option values in silent mode. */
4805 silent_mode = FALSE;
4806 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
4807 msg_putchar('\n');
4808 cursor_on(); /* msg_start() switches it off */
4809 out_flush();
4810 silent_mode = TRUE;
4811 info_message = FALSE; /* use mch_msg(), not mch_errmsg() */
4814 return OK;
4818 * Call this when an option has been given a new value through a user command.
4819 * Sets the P_WAS_SET flag and takes care of the P_INSECURE flag.
4821 static void
4822 did_set_option(opt_idx, opt_flags, new_value)
4823 int opt_idx;
4824 int opt_flags; /* possibly with OPT_MODELINE */
4825 int new_value; /* value was replaced completely */
4827 long_u *p;
4829 options[opt_idx].flags |= P_WAS_SET;
4831 /* When an option is set in the sandbox, from a modeline or in secure mode
4832 * set the P_INSECURE flag. Otherwise, if a new value is stored reset the
4833 * flag. */
4834 p = insecure_flag(opt_idx, opt_flags);
4835 if (secure
4836 #ifdef HAVE_SANDBOX
4837 || sandbox != 0
4838 #endif
4839 || (opt_flags & OPT_MODELINE))
4840 *p = *p | P_INSECURE;
4841 else if (new_value)
4842 *p = *p & ~P_INSECURE;
4845 static char_u *
4846 illegal_char(errbuf, c)
4847 char_u *errbuf;
4848 int c;
4850 if (errbuf == NULL)
4851 return (char_u *)"";
4852 sprintf((char *)errbuf, _("E539: Illegal character <%s>"),
4853 (char *)transchar(c));
4854 return errbuf;
4858 * Convert a key name or string into a key value.
4859 * Used for 'wildchar' and 'cedit' options.
4861 static int
4862 string_to_key(arg)
4863 char_u *arg;
4865 if (*arg == '<')
4866 return find_key_option(arg + 1);
4867 if (*arg == '^')
4868 return Ctrl_chr(arg[1]);
4869 return *arg;
4872 #ifdef FEAT_CMDWIN
4874 * Check value of 'cedit' and set cedit_key.
4875 * Returns NULL if value is OK, error message otherwise.
4877 static char_u *
4878 check_cedit()
4880 int n;
4882 if (*p_cedit == NUL)
4883 cedit_key = -1;
4884 else
4886 n = string_to_key(p_cedit);
4887 if (vim_isprintc(n))
4888 return e_invarg;
4889 cedit_key = n;
4891 return NULL;
4893 #endif
4895 #ifdef FEAT_TITLE
4897 * When changing 'title', 'titlestring', 'icon' or 'iconstring', call
4898 * maketitle() to create and display it.
4899 * When switching the title or icon off, call mch_restore_title() to get
4900 * the old value back.
4902 static void
4903 did_set_title(icon)
4904 int icon; /* Did set icon instead of title */
4906 if (starting != NO_SCREEN
4907 #ifdef FEAT_GUI
4908 && !gui.starting
4909 #endif
4912 maketitle();
4913 if (icon)
4915 if (!p_icon)
4916 mch_restore_title(2);
4918 else
4920 if (!p_title)
4921 mch_restore_title(1);
4925 #endif
4928 * set_options_bin - called when 'bin' changes value.
4930 void
4931 set_options_bin(oldval, newval, opt_flags)
4932 int oldval;
4933 int newval;
4934 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
4937 * The option values that are changed when 'bin' changes are
4938 * copied when 'bin is set and restored when 'bin' is reset.
4940 if (newval)
4942 if (!oldval) /* switched on */
4944 if (!(opt_flags & OPT_GLOBAL))
4946 curbuf->b_p_tw_nobin = curbuf->b_p_tw;
4947 curbuf->b_p_wm_nobin = curbuf->b_p_wm;
4948 curbuf->b_p_ml_nobin = curbuf->b_p_ml;
4949 curbuf->b_p_et_nobin = curbuf->b_p_et;
4951 if (!(opt_flags & OPT_LOCAL))
4953 p_tw_nobin = p_tw;
4954 p_wm_nobin = p_wm;
4955 p_ml_nobin = p_ml;
4956 p_et_nobin = p_et;
4960 if (!(opt_flags & OPT_GLOBAL))
4962 curbuf->b_p_tw = 0; /* no automatic line wrap */
4963 curbuf->b_p_wm = 0; /* no automatic line wrap */
4964 curbuf->b_p_ml = 0; /* no modelines */
4965 curbuf->b_p_et = 0; /* no expandtab */
4967 if (!(opt_flags & OPT_LOCAL))
4969 p_tw = 0;
4970 p_wm = 0;
4971 p_ml = FALSE;
4972 p_et = FALSE;
4973 p_bin = TRUE; /* needed when called for the "-b" argument */
4976 else if (oldval) /* switched off */
4978 if (!(opt_flags & OPT_GLOBAL))
4980 curbuf->b_p_tw = curbuf->b_p_tw_nobin;
4981 curbuf->b_p_wm = curbuf->b_p_wm_nobin;
4982 curbuf->b_p_ml = curbuf->b_p_ml_nobin;
4983 curbuf->b_p_et = curbuf->b_p_et_nobin;
4985 if (!(opt_flags & OPT_LOCAL))
4987 p_tw = p_tw_nobin;
4988 p_wm = p_wm_nobin;
4989 p_ml = p_ml_nobin;
4990 p_et = p_et_nobin;
4995 #ifdef FEAT_VIMINFO
4997 * Find the parameter represented by the given character (eg ', :, ", or /),
4998 * and return its associated value in the 'viminfo' string.
4999 * Only works for number parameters, not for 'r' or 'n'.
5000 * If the parameter is not specified in the string or there is no following
5001 * number, return -1.
5004 get_viminfo_parameter(type)
5005 int type;
5007 char_u *p;
5009 p = find_viminfo_parameter(type);
5010 if (p != NULL && VIM_ISDIGIT(*p))
5011 return atoi((char *)p);
5012 return -1;
5016 * Find the parameter represented by the given character (eg ''', ':', '"', or
5017 * '/') in the 'viminfo' option and return a pointer to the string after it.
5018 * Return NULL if the parameter is not specified in the string.
5020 char_u *
5021 find_viminfo_parameter(type)
5022 int type;
5024 char_u *p;
5026 for (p = p_viminfo; *p; ++p)
5028 if (*p == type)
5029 return p + 1;
5030 if (*p == 'n') /* 'n' is always the last one */
5031 break;
5032 p = vim_strchr(p, ','); /* skip until next ',' */
5033 if (p == NULL) /* hit the end without finding parameter */
5034 break;
5036 return NULL;
5038 #endif
5041 * Expand environment variables for some string options.
5042 * These string options cannot be indirect!
5043 * If "val" is NULL expand the current value of the option.
5044 * Return pointer to NameBuff, or NULL when not expanded.
5046 static char_u *
5047 option_expand(opt_idx, val)
5048 int opt_idx;
5049 char_u *val;
5051 /* if option doesn't need expansion nothing to do */
5052 if (!(options[opt_idx].flags & P_EXPAND) || options[opt_idx].var == NULL)
5053 return NULL;
5055 /* If val is longer than MAXPATHL no meaningful expansion can be done,
5056 * expand_env() would truncate the string. */
5057 if (val != NULL && STRLEN(val) > MAXPATHL)
5058 return NULL;
5060 if (val == NULL)
5061 val = *(char_u **)options[opt_idx].var;
5064 * Expanding this with NameBuff, expand_env() must not be passed IObuff.
5065 * Escape spaces when expanding 'tags', they are used to separate file
5066 * names.
5067 * For 'spellsuggest' expand after "file:".
5069 expand_env_esc(val, NameBuff, MAXPATHL,
5070 (char_u **)options[opt_idx].var == &p_tags, FALSE,
5071 #ifdef FEAT_SPELL
5072 (char_u **)options[opt_idx].var == &p_sps ? (char_u *)"file:" :
5073 #endif
5074 NULL);
5075 if (STRCMP(NameBuff, val) == 0) /* they are the same */
5076 return NULL;
5078 return NameBuff;
5082 * After setting various option values: recompute variables that depend on
5083 * option values.
5085 static void
5086 didset_options()
5088 /* initialize the table for 'iskeyword' et.al. */
5089 (void)init_chartab();
5091 #ifdef FEAT_MBYTE
5092 (void)opt_strings_flags(p_cmp, p_cmp_values, &cmp_flags, TRUE);
5093 #endif
5094 (void)opt_strings_flags(p_bkc, p_bkc_values, &bkc_flags, TRUE);
5095 #ifdef FEAT_SESSION
5096 (void)opt_strings_flags(p_ssop, p_ssop_values, &ssop_flags, TRUE);
5097 (void)opt_strings_flags(p_vop, p_ssop_values, &vop_flags, TRUE);
5098 #endif
5099 #ifdef FEAT_FOLDING
5100 (void)opt_strings_flags(p_fdo, p_fdo_values, &fdo_flags, TRUE);
5101 #endif
5102 (void)opt_strings_flags(p_dy, p_dy_values, &dy_flags, TRUE);
5103 #ifdef FEAT_VIRTUALEDIT
5104 (void)opt_strings_flags(p_ve, p_ve_values, &ve_flags, TRUE);
5105 #endif
5106 #if defined(FEAT_MOUSE) && (defined(UNIX) || defined(VMS))
5107 (void)opt_strings_flags(p_ttym, p_ttym_values, &ttym_flags, FALSE);
5108 #endif
5109 #ifdef FEAT_SPELL
5110 (void)spell_check_msm();
5111 (void)spell_check_sps();
5112 (void)compile_cap_prog(curbuf);
5113 #endif
5114 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
5115 (void)opt_strings_flags(p_toolbar, p_toolbar_values, &toolbar_flags, TRUE);
5116 #endif
5117 #if defined(FEAT_TOOLBAR) && defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)
5118 (void)opt_strings_flags(p_tbis, p_tbis_values, &tbis_flags, FALSE);
5119 #endif
5120 #ifdef FEAT_CMDWIN
5121 /* set cedit_key */
5122 (void)check_cedit();
5123 #endif
5124 #ifdef FEAT_VARTABS
5125 tabstop_set(curbuf->b_p_vsts, &curbuf->b_p_vsts_ary);
5126 tabstop_set(curbuf->b_p_vts, &curbuf->b_p_vts_ary);
5127 #endif
5131 * Check for string options that are NULL (normally only termcap options).
5133 void
5134 check_options()
5136 int opt_idx;
5138 for (opt_idx = 0; options[opt_idx].fullname != NULL; opt_idx++)
5139 if ((options[opt_idx].flags & P_STRING) && options[opt_idx].var != NULL)
5140 check_string_option((char_u **)get_varp(&(options[opt_idx])));
5144 * Check string options in a buffer for NULL value.
5146 void
5147 check_buf_options(buf)
5148 buf_T *buf;
5150 #if defined(FEAT_QUICKFIX)
5151 check_string_option(&buf->b_p_bh);
5152 check_string_option(&buf->b_p_bt);
5153 #endif
5154 #ifdef FEAT_MBYTE
5155 check_string_option(&buf->b_p_fenc);
5156 #endif
5157 check_string_option(&buf->b_p_ff);
5158 #ifdef FEAT_FIND_ID
5159 check_string_option(&buf->b_p_def);
5160 check_string_option(&buf->b_p_inc);
5161 # ifdef FEAT_EVAL
5162 check_string_option(&buf->b_p_inex);
5163 # endif
5164 #endif
5165 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
5166 check_string_option(&buf->b_p_inde);
5167 check_string_option(&buf->b_p_indk);
5168 #endif
5169 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
5170 check_string_option(&buf->b_p_bexpr);
5171 #endif
5172 #if defined(FEAT_EVAL)
5173 check_string_option(&buf->b_p_fex);
5174 #endif
5175 #ifdef FEAT_CRYPT
5176 check_string_option(&buf->b_p_key);
5177 #endif
5178 check_string_option(&buf->b_p_kp);
5179 check_string_option(&buf->b_p_mps);
5180 check_string_option(&buf->b_p_fo);
5181 check_string_option(&buf->b_p_flp);
5182 check_string_option(&buf->b_p_isk);
5183 #ifdef FEAT_COMMENTS
5184 check_string_option(&buf->b_p_com);
5185 #endif
5186 #ifdef FEAT_FOLDING
5187 check_string_option(&buf->b_p_cms);
5188 #endif
5189 check_string_option(&buf->b_p_nf);
5190 #ifdef FEAT_TEXTOBJ
5191 check_string_option(&buf->b_p_qe);
5192 #endif
5193 #ifdef FEAT_SYN_HL
5194 check_string_option(&buf->b_p_syn);
5195 #endif
5196 #ifdef FEAT_SPELL
5197 check_string_option(&buf->b_p_spc);
5198 check_string_option(&buf->b_p_spf);
5199 check_string_option(&buf->b_p_spl);
5200 #endif
5201 #ifdef FEAT_SEARCHPATH
5202 check_string_option(&buf->b_p_sua);
5203 #endif
5204 #ifdef FEAT_CINDENT
5205 check_string_option(&buf->b_p_cink);
5206 check_string_option(&buf->b_p_cino);
5207 #endif
5208 #ifdef FEAT_AUTOCMD
5209 check_string_option(&buf->b_p_ft);
5210 #endif
5211 #ifdef FEAT_OSFILETYPE
5212 check_string_option(&buf->b_p_oft);
5213 #endif
5214 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
5215 check_string_option(&buf->b_p_cinw);
5216 #endif
5217 #ifdef FEAT_INS_EXPAND
5218 check_string_option(&buf->b_p_cpt);
5219 #endif
5220 #ifdef FEAT_COMPL_FUNC
5221 check_string_option(&buf->b_p_cfu);
5222 check_string_option(&buf->b_p_ofu);
5223 #endif
5224 #ifdef FEAT_KEYMAP
5225 check_string_option(&buf->b_p_keymap);
5226 #endif
5227 #ifdef FEAT_QUICKFIX
5228 check_string_option(&buf->b_p_gp);
5229 check_string_option(&buf->b_p_mp);
5230 check_string_option(&buf->b_p_efm);
5231 #endif
5232 check_string_option(&buf->b_p_ep);
5233 check_string_option(&buf->b_p_path);
5234 check_string_option(&buf->b_p_tags);
5235 #ifdef FEAT_INS_EXPAND
5236 check_string_option(&buf->b_p_dict);
5237 check_string_option(&buf->b_p_tsr);
5238 #endif
5239 #ifdef FEAT_VARTABS
5240 check_string_option(&buf->b_p_vsts);
5241 check_string_option(&buf->b_p_vts);
5242 #endif
5246 * Free the string allocated for an option.
5247 * Checks for the string being empty_option. This may happen if we're out of
5248 * memory, vim_strsave() returned NULL, which was replaced by empty_option by
5249 * check_options().
5250 * Does NOT check for P_ALLOCED flag!
5252 void
5253 free_string_option(p)
5254 char_u *p;
5256 if (p != empty_option)
5257 vim_free(p);
5260 void
5261 clear_string_option(pp)
5262 char_u **pp;
5264 if (*pp != empty_option)
5265 vim_free(*pp);
5266 *pp = empty_option;
5269 static void
5270 check_string_option(pp)
5271 char_u **pp;
5273 if (*pp == NULL)
5274 *pp = empty_option;
5278 * Mark a terminal option as allocated, found by a pointer into term_strings[].
5280 void
5281 set_term_option_alloced(p)
5282 char_u **p;
5284 int opt_idx;
5286 for (opt_idx = 1; options[opt_idx].fullname != NULL; opt_idx++)
5287 if (options[opt_idx].var == (char_u *)p)
5289 options[opt_idx].flags |= P_ALLOCED;
5290 return;
5292 return; /* cannot happen: didn't find it! */
5295 #if defined(FEAT_EVAL) || defined(PROTO)
5297 * Return TRUE when option "opt" was set from a modeline or in secure mode.
5298 * Return FALSE when it wasn't.
5299 * Return -1 for an unknown option.
5302 was_set_insecurely(opt, opt_flags)
5303 char_u *opt;
5304 int opt_flags;
5306 int idx = findoption(opt);
5307 long_u *flagp;
5309 if (idx >= 0)
5311 flagp = insecure_flag(idx, opt_flags);
5312 return (*flagp & P_INSECURE) != 0;
5314 EMSG2(_(e_intern2), "was_set_insecurely()");
5315 return -1;
5319 * Get a pointer to the flags used for the P_INSECURE flag of option
5320 * "opt_idx". For some local options a local flags field is used.
5322 static long_u *
5323 insecure_flag(opt_idx, opt_flags)
5324 int opt_idx;
5325 int opt_flags;
5327 if (opt_flags & OPT_LOCAL)
5328 switch ((int)options[opt_idx].indir)
5330 #ifdef FEAT_STL_OPT
5331 case PV_STL: return &curwin->w_p_stl_flags;
5332 #endif
5333 #ifdef FEAT_EVAL
5334 # ifdef FEAT_FOLDING
5335 case PV_FDE: return &curwin->w_p_fde_flags;
5336 case PV_FDT: return &curwin->w_p_fdt_flags;
5337 # endif
5338 # ifdef FEAT_BEVAL
5339 case PV_BEXPR: return &curbuf->b_p_bexpr_flags;
5340 # endif
5341 # if defined(FEAT_CINDENT)
5342 case PV_INDE: return &curbuf->b_p_inde_flags;
5343 # endif
5344 case PV_FEX: return &curbuf->b_p_fex_flags;
5345 # ifdef FEAT_FIND_ID
5346 case PV_INEX: return &curbuf->b_p_inex_flags;
5347 # endif
5348 #endif
5351 /* Nothing special, return global flags field. */
5352 return &options[opt_idx].flags;
5354 #endif
5356 #ifdef FEAT_TITLE
5357 static void redraw_titles __ARGS((void));
5360 * Redraw the window title and/or tab page text later.
5362 static void redraw_titles()
5364 need_maketitle = TRUE;
5365 # ifdef FEAT_WINDOWS
5366 redraw_tabline = TRUE;
5367 # endif
5369 #endif
5372 * Set a string option to a new value (without checking the effect).
5373 * The string is copied into allocated memory.
5374 * if ("opt_idx" == -1) "name" is used, otherwise "opt_idx" is used.
5375 * When "set_sid" is zero set the scriptID to current_SID. When "set_sid" is
5376 * SID_NONE don't set the scriptID. Otherwise set the scriptID to "set_sid".
5378 void
5379 set_string_option_direct(name, opt_idx, val, opt_flags, set_sid)
5380 char_u *name;
5381 int opt_idx;
5382 char_u *val;
5383 int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */
5384 int set_sid UNUSED;
5386 char_u *s;
5387 char_u **varp;
5388 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
5389 int idx = opt_idx;
5391 if (idx == -1) /* use name */
5393 idx = findoption(name);
5394 if (idx < 0) /* not found (should not happen) */
5396 EMSG2(_(e_intern2), "set_string_option_direct()");
5397 return;
5401 if (options[idx].var == NULL) /* can't set hidden option */
5402 return;
5404 s = vim_strsave(val);
5405 if (s != NULL)
5407 varp = (char_u **)get_varp_scope(&(options[idx]),
5408 both ? OPT_LOCAL : opt_flags);
5409 if ((opt_flags & OPT_FREE) && (options[idx].flags & P_ALLOCED))
5410 free_string_option(*varp);
5411 *varp = s;
5413 /* For buffer/window local option may also set the global value. */
5414 if (both)
5415 set_string_option_global(idx, varp);
5417 options[idx].flags |= P_ALLOCED;
5419 /* When setting both values of a global option with a local value,
5420 * make the local value empty, so that the global value is used. */
5421 if (((int)options[idx].indir & PV_BOTH) && both)
5423 free_string_option(*varp);
5424 *varp = empty_option;
5426 # ifdef FEAT_EVAL
5427 if (set_sid != SID_NONE)
5428 set_option_scriptID_idx(idx, opt_flags,
5429 set_sid == 0 ? current_SID : set_sid);
5430 # endif
5435 * Set global value for string option when it's a local option.
5437 static void
5438 set_string_option_global(opt_idx, varp)
5439 int opt_idx; /* option index */
5440 char_u **varp; /* pointer to option variable */
5442 char_u **p, *s;
5444 /* the global value is always allocated */
5445 if (options[opt_idx].var == VAR_WIN)
5446 p = (char_u **)GLOBAL_WO(varp);
5447 else
5448 p = (char_u **)options[opt_idx].var;
5449 if (options[opt_idx].indir != PV_NONE
5450 && p != varp
5451 && (s = vim_strsave(*varp)) != NULL)
5453 free_string_option(*p);
5454 *p = s;
5459 * Set a string option to a new value, and handle the effects.
5461 static void
5462 set_string_option(opt_idx, value, opt_flags)
5463 int opt_idx;
5464 char_u *value;
5465 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
5467 char_u *s;
5468 char_u **varp;
5469 char_u *oldval;
5471 if (options[opt_idx].var == NULL) /* don't set hidden option */
5472 return;
5474 s = vim_strsave(value);
5475 if (s != NULL)
5477 varp = (char_u **)get_varp_scope(&(options[opt_idx]),
5478 (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
5479 ? (((int)options[opt_idx].indir & PV_BOTH)
5480 ? OPT_GLOBAL : OPT_LOCAL)
5481 : opt_flags);
5482 oldval = *varp;
5483 *varp = s;
5484 if (did_set_string_option(opt_idx, varp, TRUE, oldval, NULL,
5485 opt_flags) == NULL)
5486 did_set_option(opt_idx, opt_flags, TRUE);
5491 * Handle string options that need some action to perform when changed.
5492 * Returns NULL for success, or an error message for an error.
5494 static char_u *
5495 did_set_string_option(opt_idx, varp, new_value_alloced, oldval, errbuf,
5496 opt_flags)
5497 int opt_idx; /* index in options[] table */
5498 char_u **varp; /* pointer to the option variable */
5499 int new_value_alloced; /* new value was allocated */
5500 char_u *oldval; /* previous value of the option */
5501 char_u *errbuf; /* buffer for errors, or NULL */
5502 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
5504 char_u *errmsg = NULL;
5505 char_u *s, *p;
5506 int did_chartab = FALSE;
5507 char_u **gvarp;
5508 long_u free_oldval = (options[opt_idx].flags & P_ALLOCED);
5509 #ifdef FEAT_GUI
5510 /* set when changing an option that only requires a redraw in the GUI */
5511 int redraw_gui_only = FALSE;
5512 #endif
5514 /* Get the global option to compare with, otherwise we would have to check
5515 * two values for all local options. */
5516 gvarp = (char_u **)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL);
5518 /* Disallow changing some options from secure mode */
5519 if ((secure
5520 #ifdef HAVE_SANDBOX
5521 || sandbox != 0
5522 #endif
5523 ) && (options[opt_idx].flags & P_SECURE))
5525 errmsg = e_secure;
5528 /* Check for a "normal" file name in some options. Disallow a path
5529 * separator (slash and/or backslash), wildcards and characters that are
5530 * often illegal in a file name. */
5531 else if ((options[opt_idx].flags & P_NFNAME)
5532 && vim_strpbrk(*varp, (char_u *)"/\\*?[|<>") != NULL)
5534 errmsg = e_invarg;
5537 /* 'term' */
5538 else if (varp == &T_NAME)
5540 if (T_NAME[0] == NUL)
5541 errmsg = (char_u *)N_("E529: Cannot set 'term' to empty string");
5542 #ifdef FEAT_GUI
5543 if (gui.in_use)
5544 errmsg = (char_u *)N_("E530: Cannot change term in GUI");
5545 else if (term_is_gui(T_NAME))
5546 errmsg = (char_u *)N_("E531: Use \":gui\" to start the GUI");
5547 #endif
5548 else if (set_termname(T_NAME) == FAIL)
5549 errmsg = (char_u *)N_("E522: Not found in termcap");
5550 else
5551 /* Screen colors may have changed. */
5552 redraw_later_clear();
5555 /* 'backupcopy' */
5556 else if (varp == &p_bkc)
5558 if (opt_strings_flags(p_bkc, p_bkc_values, &bkc_flags, TRUE) != OK)
5559 errmsg = e_invarg;
5560 if (((bkc_flags & BKC_AUTO) != 0)
5561 + ((bkc_flags & BKC_YES) != 0)
5562 + ((bkc_flags & BKC_NO) != 0) != 1)
5564 /* Must have exactly one of "auto", "yes" and "no". */
5565 (void)opt_strings_flags(oldval, p_bkc_values, &bkc_flags, TRUE);
5566 errmsg = e_invarg;
5570 /* 'backupext' and 'patchmode' */
5571 else if (varp == &p_bex || varp == &p_pm)
5573 if (STRCMP(*p_bex == '.' ? p_bex + 1 : p_bex,
5574 *p_pm == '.' ? p_pm + 1 : p_pm) == 0)
5575 errmsg = (char_u *)N_("E589: 'backupext' and 'patchmode' are equal");
5579 * 'isident', 'iskeyword', 'isprint or 'isfname' option: refill chartab[]
5580 * If the new option is invalid, use old value. 'lisp' option: refill
5581 * chartab[] for '-' char
5583 else if ( varp == &p_isi
5584 || varp == &(curbuf->b_p_isk)
5585 || varp == &p_isp
5586 || varp == &p_isf)
5588 if (init_chartab() == FAIL)
5590 did_chartab = TRUE; /* need to restore it below */
5591 errmsg = e_invarg; /* error in value */
5595 /* 'helpfile' */
5596 else if (varp == &p_hf)
5598 /* May compute new values for $VIM and $VIMRUNTIME */
5599 if (didset_vim)
5601 vim_setenv((char_u *)"VIM", (char_u *)"");
5602 didset_vim = FALSE;
5604 if (didset_vimruntime)
5606 vim_setenv((char_u *)"VIMRUNTIME", (char_u *)"");
5607 didset_vimruntime = FALSE;
5611 #ifdef FEAT_MULTI_LANG
5612 /* 'helplang' */
5613 else if (varp == &p_hlg)
5615 /* Check for "", "ab", "ab,cd", etc. */
5616 for (s = p_hlg; *s != NUL; s += 3)
5618 if (s[1] == NUL || ((s[2] != ',' || s[3] == NUL) && s[2] != NUL))
5620 errmsg = e_invarg;
5621 break;
5623 if (s[2] == NUL)
5624 break;
5627 #endif
5629 /* 'highlight' */
5630 else if (varp == &p_hl)
5632 if (highlight_changed() == FAIL)
5633 errmsg = e_invarg; /* invalid flags */
5636 /* 'nrformats' */
5637 else if (gvarp == &p_nf)
5639 if (check_opt_strings(*varp, p_nf_values, TRUE) != OK)
5640 errmsg = e_invarg;
5643 #ifdef FEAT_SESSION
5644 /* 'sessionoptions' */
5645 else if (varp == &p_ssop)
5647 if (opt_strings_flags(p_ssop, p_ssop_values, &ssop_flags, TRUE) != OK)
5648 errmsg = e_invarg;
5649 if ((ssop_flags & SSOP_CURDIR) && (ssop_flags & SSOP_SESDIR))
5651 /* Don't allow both "sesdir" and "curdir". */
5652 (void)opt_strings_flags(oldval, p_ssop_values, &ssop_flags, TRUE);
5653 errmsg = e_invarg;
5656 /* 'viewoptions' */
5657 else if (varp == &p_vop)
5659 if (opt_strings_flags(p_vop, p_ssop_values, &vop_flags, TRUE) != OK)
5660 errmsg = e_invarg;
5662 #endif
5664 /* 'scrollopt' */
5665 #ifdef FEAT_SCROLLBIND
5666 else if (varp == &p_sbo)
5668 if (check_opt_strings(p_sbo, p_scbopt_values, TRUE) != OK)
5669 errmsg = e_invarg;
5671 #endif
5673 /* 'ambiwidth' */
5674 #ifdef FEAT_MBYTE
5675 else if (varp == &p_ambw)
5677 if (check_opt_strings(p_ambw, p_ambw_values, FALSE) != OK)
5678 errmsg = e_invarg;
5680 #endif
5682 /* 'background' */
5683 else if (varp == &p_bg)
5685 if (check_opt_strings(p_bg, p_bg_values, FALSE) == OK)
5687 #ifdef FEAT_EVAL
5688 int dark = (*p_bg == 'd');
5689 #endif
5691 init_highlight(FALSE, FALSE);
5693 #ifdef FEAT_EVAL
5694 if (dark != (*p_bg == 'd')
5695 && get_var_value((char_u *)"g:colors_name") != NULL)
5697 /* The color scheme must have set 'background' back to another
5698 * value, that's not what we want here. Disable the color
5699 * scheme and set the colors again. */
5700 do_unlet((char_u *)"g:colors_name", TRUE);
5701 free_string_option(p_bg);
5702 p_bg = vim_strsave((char_u *)(dark ? "dark" : "light"));
5703 check_string_option(&p_bg);
5704 init_highlight(FALSE, FALSE);
5706 #endif
5708 else
5709 errmsg = e_invarg;
5712 /* 'wildmode' */
5713 else if (varp == &p_wim)
5715 if (check_opt_wim() == FAIL)
5716 errmsg = e_invarg;
5719 #ifdef FEAT_CMDL_COMPL
5720 /* 'wildoptions' */
5721 else if (varp == &p_wop)
5723 if (check_opt_strings(p_wop, p_wop_values, TRUE) != OK)
5724 errmsg = e_invarg;
5726 #endif
5728 #ifdef FEAT_WAK
5729 /* 'winaltkeys' */
5730 else if (varp == &p_wak)
5732 if (*p_wak == NUL
5733 || check_opt_strings(p_wak, p_wak_values, FALSE) != OK)
5734 errmsg = e_invarg;
5735 # ifdef FEAT_MENU
5736 # ifdef FEAT_GUI_MOTIF
5737 else if (gui.in_use)
5738 gui_motif_set_mnemonics(p_wak[0] == 'y' || p_wak[0] == 'm');
5739 # else
5740 # ifdef FEAT_GUI_GTK
5741 else if (gui.in_use)
5742 gui_gtk_set_mnemonics(p_wak[0] == 'y' || p_wak[0] == 'm');
5743 # endif
5744 # endif
5745 # endif
5747 #endif
5749 #ifdef FEAT_AUTOCMD
5750 /* 'eventignore' */
5751 else if (varp == &p_ei)
5753 if (check_ei() == FAIL)
5754 errmsg = e_invarg;
5756 #endif
5758 #ifdef FEAT_MBYTE
5759 /* 'encoding' and 'fileencoding' */
5760 else if (varp == &p_enc || gvarp == &p_fenc || varp == &p_tenc)
5762 if (gvarp == &p_fenc)
5764 if (!curbuf->b_p_ma && opt_flags != OPT_GLOBAL)
5765 errmsg = e_modifiable;
5766 else if (vim_strchr(*varp, ',') != NULL)
5767 /* No comma allowed in 'fileencoding'; catches confusing it
5768 * with 'fileencodings'. */
5769 errmsg = e_invarg;
5770 else
5772 # ifdef FEAT_TITLE
5773 /* May show a "+" in the title now. */
5774 redraw_titles();
5775 # endif
5776 /* Add 'fileencoding' to the swap file. */
5777 ml_setflags(curbuf);
5780 if (errmsg == NULL)
5782 /* canonize the value, so that STRCMP() can be used on it */
5783 p = enc_canonize(*varp);
5784 if (p != NULL)
5786 vim_free(*varp);
5787 *varp = p;
5789 if (varp == &p_enc)
5791 errmsg = mb_init();
5792 # ifdef FEAT_TITLE
5793 redraw_titles();
5794 # endif
5798 # if defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)
5799 if (errmsg == NULL && varp == &p_tenc && gui.in_use)
5801 /* GTK+ 2 uses only a single encoding, and that is UTF-8. */
5802 if (STRCMP(p_tenc, "utf-8") != 0)
5803 errmsg = (char_u *)N_("E617: Cannot be changed in the GTK+ 2 GUI");
5805 # endif
5807 if (errmsg == NULL)
5809 # ifdef FEAT_KEYMAP
5810 /* When 'keymap' is used and 'encoding' changes, reload the keymap
5811 * (with another encoding). */
5812 if (varp == &p_enc && *curbuf->b_p_keymap != NUL)
5813 (void)keymap_init();
5814 # endif
5816 /* When 'termencoding' is not empty and 'encoding' changes or when
5817 * 'termencoding' changes, need to setup for keyboard input and
5818 * display output conversion. */
5819 if (((varp == &p_enc && *p_tenc != NUL) || varp == &p_tenc))
5821 convert_setup(&input_conv, p_tenc, p_enc);
5822 convert_setup(&output_conv, p_enc, p_tenc);
5825 # if defined(WIN3264) && defined(FEAT_MBYTE)
5826 /* $HOME may have characters in active code page. */
5827 if (varp == &p_enc)
5828 init_homedir();
5829 # endif
5832 #endif
5834 #if defined(FEAT_POSTSCRIPT)
5835 else if (varp == &p_penc)
5837 /* Canonize printencoding if VIM standard one */
5838 p = enc_canonize(p_penc);
5839 if (p != NULL)
5841 vim_free(p_penc);
5842 p_penc = p;
5844 else
5846 /* Ensure lower case and '-' for '_' */
5847 for (s = p_penc; *s != NUL; s++)
5849 if (*s == '_')
5850 *s = '-';
5851 else
5852 *s = TOLOWER_ASC(*s);
5856 #endif
5858 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
5859 else if (varp == &p_imak)
5861 if (gui.in_use && !im_xim_isvalid_imactivate())
5862 errmsg = e_invarg;
5864 #endif
5866 #ifdef FEAT_KEYMAP
5867 else if (varp == &curbuf->b_p_keymap)
5869 /* load or unload key mapping tables */
5870 errmsg = keymap_init();
5872 if (errmsg == NULL)
5874 if (*curbuf->b_p_keymap != NUL)
5876 /* Installed a new keymap, switch on using it. */
5877 curbuf->b_p_iminsert = B_IMODE_LMAP;
5878 if (curbuf->b_p_imsearch != B_IMODE_USE_INSERT)
5879 curbuf->b_p_imsearch = B_IMODE_LMAP;
5881 else
5883 /* Cleared the keymap, may reset 'iminsert' and 'imsearch'. */
5884 if (curbuf->b_p_iminsert == B_IMODE_LMAP)
5885 curbuf->b_p_iminsert = B_IMODE_NONE;
5886 if (curbuf->b_p_imsearch == B_IMODE_LMAP)
5887 curbuf->b_p_imsearch = B_IMODE_USE_INSERT;
5889 if ((opt_flags & OPT_LOCAL) == 0)
5891 set_iminsert_global();
5892 set_imsearch_global();
5894 # ifdef FEAT_WINDOWS
5895 status_redraw_curbuf();
5896 # endif
5899 #endif
5901 /* 'fileformat' */
5902 else if (gvarp == &p_ff)
5904 if (!curbuf->b_p_ma && !(opt_flags & OPT_GLOBAL))
5905 errmsg = e_modifiable;
5906 else if (check_opt_strings(*varp, p_ff_values, FALSE) != OK)
5907 errmsg = e_invarg;
5908 else
5910 /* may also change 'textmode' */
5911 if (get_fileformat(curbuf) == EOL_DOS)
5912 curbuf->b_p_tx = TRUE;
5913 else
5914 curbuf->b_p_tx = FALSE;
5915 #ifdef FEAT_TITLE
5916 redraw_titles();
5917 #endif
5918 /* update flag in swap file */
5919 ml_setflags(curbuf);
5920 /* Redraw needed when switching to/from "mac": a CR in the text
5921 * will be displayed differently. */
5922 if (get_fileformat(curbuf) == EOL_MAC || *oldval == 'm')
5923 redraw_curbuf_later(NOT_VALID);
5927 /* 'fileformats' */
5928 else if (varp == &p_ffs)
5930 if (check_opt_strings(p_ffs, p_ff_values, TRUE) != OK)
5931 errmsg = e_invarg;
5932 else
5934 /* also change 'textauto' */
5935 if (*p_ffs == NUL)
5936 p_ta = FALSE;
5937 else
5938 p_ta = TRUE;
5942 #if defined(FEAT_CRYPT) && defined(FEAT_CMDHIST)
5943 /* 'cryptkey' */
5944 else if (gvarp == &p_key)
5946 /* Make sure the ":set" command doesn't show the new value in the
5947 * history. */
5948 remove_key_from_history();
5950 #endif
5952 /* 'matchpairs' */
5953 else if (gvarp == &p_mps)
5955 /* Check for "x:y,x:y" */
5956 for (p = *varp; *p != NUL; p += 4)
5958 if (p[1] != ':' || p[2] == NUL || (p[3] != NUL && p[3] != ','))
5960 errmsg = e_invarg;
5961 break;
5963 if (p[3] == NUL)
5964 break;
5968 #ifdef FEAT_COMMENTS
5969 /* 'comments' */
5970 else if (gvarp == &p_com)
5972 for (s = *varp; *s; )
5974 while (*s && *s != ':')
5976 if (vim_strchr((char_u *)COM_ALL, *s) == NULL
5977 && !VIM_ISDIGIT(*s) && *s != '-')
5979 errmsg = illegal_char(errbuf, *s);
5980 break;
5982 ++s;
5984 if (*s++ == NUL)
5985 errmsg = (char_u *)N_("E524: Missing colon");
5986 else if (*s == ',' || *s == NUL)
5987 errmsg = (char_u *)N_("E525: Zero length string");
5988 if (errmsg != NULL)
5989 break;
5990 while (*s && *s != ',')
5992 if (*s == '\\' && s[1] != NUL)
5993 ++s;
5994 ++s;
5996 s = skip_to_option_part(s);
5999 #endif
6001 /* 'listchars' */
6002 else if (varp == &p_lcs)
6004 errmsg = set_chars_option(varp);
6007 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6008 /* 'fillchars' */
6009 else if (varp == &p_fcs)
6011 errmsg = set_chars_option(varp);
6013 #endif
6015 #ifdef FEAT_CMDWIN
6016 /* 'cedit' */
6017 else if (varp == &p_cedit)
6019 errmsg = check_cedit();
6021 #endif
6023 /* 'verbosefile' */
6024 else if (varp == &p_vfile)
6026 verbose_stop();
6027 if (*p_vfile != NUL && verbose_open() == FAIL)
6028 errmsg = e_invarg;
6031 #ifdef FEAT_VIMINFO
6032 /* 'viminfo' */
6033 else if (varp == &p_viminfo)
6035 for (s = p_viminfo; *s;)
6037 /* Check it's a valid character */
6038 if (vim_strchr((char_u *)"!\"%'/:<@cfhnrs", *s) == NULL)
6040 errmsg = illegal_char(errbuf, *s);
6041 break;
6043 if (*s == 'n') /* name is always last one */
6045 break;
6047 else if (*s == 'r') /* skip until next ',' */
6049 while (*++s && *s != ',')
6052 else if (*s == '%')
6054 /* optional number */
6055 while (vim_isdigit(*++s))
6058 else if (*s == '!' || *s == 'h' || *s == 'c')
6059 ++s; /* no extra chars */
6060 else /* must have a number */
6062 while (vim_isdigit(*++s))
6065 if (!VIM_ISDIGIT(*(s - 1)))
6067 if (errbuf != NULL)
6069 sprintf((char *)errbuf,
6070 _("E526: Missing number after <%s>"),
6071 transchar_byte(*(s - 1)));
6072 errmsg = errbuf;
6074 else
6075 errmsg = (char_u *)"";
6076 break;
6079 if (*s == ',')
6080 ++s;
6081 else if (*s)
6083 if (errbuf != NULL)
6084 errmsg = (char_u *)N_("E527: Missing comma");
6085 else
6086 errmsg = (char_u *)"";
6087 break;
6090 if (*p_viminfo && errmsg == NULL && get_viminfo_parameter('\'') < 0)
6091 errmsg = (char_u *)N_("E528: Must specify a ' value");
6093 #endif /* FEAT_VIMINFO */
6095 /* terminal options */
6096 else if (istermoption(&options[opt_idx]) && full_screen)
6098 /* ":set t_Co=0" and ":set t_Co=1" do ":set t_Co=" */
6099 if (varp == &T_CCO)
6101 int colors = atoi((char *)T_CCO);
6103 /* Only reinitialize colors if t_Co value has really changed to
6104 * avoid expensive reload of colorscheme if t_Co is set to the
6105 * same value multiple times. */
6106 if (colors != t_colors)
6108 t_colors = colors;
6109 if (t_colors <= 1)
6111 if (new_value_alloced)
6112 vim_free(T_CCO);
6113 T_CCO = empty_option;
6115 /* We now have a different color setup, initialize it again. */
6116 init_highlight(TRUE, FALSE);
6119 ttest(FALSE);
6120 if (varp == &T_ME)
6122 out_str(T_ME);
6123 redraw_later(CLEAR);
6124 #if defined(MSDOS) || (defined(WIN3264) && !defined(FEAT_GUI_W32))
6125 /* Since t_me has been set, this probably means that the user
6126 * wants to use this as default colors. Need to reset default
6127 * background/foreground colors. */
6128 mch_set_normal_colors();
6129 #endif
6133 #ifdef FEAT_LINEBREAK
6134 /* 'showbreak' */
6135 else if (varp == &p_sbr)
6137 for (s = p_sbr; *s; )
6139 if (ptr2cells(s) != 1)
6140 errmsg = (char_u *)N_("E595: contains unprintable or wide character");
6141 mb_ptr_adv(s);
6144 #endif
6146 #ifdef FEAT_GUI
6147 /* 'guifont' */
6148 else if (varp == &p_guifont)
6150 if (gui.in_use)
6152 p = p_guifont;
6153 # if defined(FEAT_GUI_GTK)
6155 * Put up a font dialog and let the user select a new value.
6156 * If this is cancelled go back to the old value but don't
6157 * give an error message.
6159 if (STRCMP(p, "*") == 0)
6161 p = gui_mch_font_dialog(oldval);
6163 if (new_value_alloced)
6164 free_string_option(p_guifont);
6166 p_guifont = (p != NULL) ? p : vim_strsave(oldval);
6167 new_value_alloced = TRUE;
6169 # endif
6170 if (p != NULL && gui_init_font(p_guifont, FALSE) != OK)
6172 # if defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_PHOTON)
6173 if (STRCMP(p_guifont, "*") == 0)
6175 /* Dialog was cancelled: Keep the old value without giving
6176 * an error message. */
6177 if (new_value_alloced)
6178 free_string_option(p_guifont);
6179 p_guifont = vim_strsave(oldval);
6180 new_value_alloced = TRUE;
6182 else
6183 # endif
6184 errmsg = (char_u *)N_("E596: Invalid font(s)");
6187 redraw_gui_only = TRUE;
6189 # ifdef FEAT_XFONTSET
6190 else if (varp == &p_guifontset)
6192 if (STRCMP(p_guifontset, "*") == 0)
6193 errmsg = (char_u *)N_("E597: can't select fontset");
6194 else if (gui.in_use && gui_init_font(p_guifontset, TRUE) != OK)
6195 errmsg = (char_u *)N_("E598: Invalid fontset");
6196 redraw_gui_only = TRUE;
6198 # endif
6199 # ifdef FEAT_MBYTE
6200 else if (varp == &p_guifontwide)
6202 if (STRCMP(p_guifontwide, "*") == 0)
6203 errmsg = (char_u *)N_("E533: can't select wide font");
6204 else if (gui_get_wide_font() == FAIL)
6205 errmsg = (char_u *)N_("E534: Invalid wide font");
6206 redraw_gui_only = TRUE;
6208 # endif
6209 #endif
6211 #ifdef CURSOR_SHAPE
6212 /* 'guicursor' */
6213 else if (varp == &p_guicursor)
6214 errmsg = parse_shape_opt(SHAPE_CURSOR);
6215 #endif
6217 #ifdef FEAT_MOUSESHAPE
6218 /* 'mouseshape' */
6219 else if (varp == &p_mouseshape)
6221 errmsg = parse_shape_opt(SHAPE_MOUSE);
6222 update_mouseshape(-1);
6224 #endif
6226 #ifdef FEAT_PRINTER
6227 else if (varp == &p_popt)
6228 errmsg = parse_printoptions();
6229 # if defined(FEAT_MBYTE) && defined(FEAT_POSTSCRIPT)
6230 else if (varp == &p_pmfn)
6231 errmsg = parse_printmbfont();
6232 # endif
6233 #endif
6235 #ifdef FEAT_LANGMAP
6236 /* 'langmap' */
6237 else if (varp == &p_langmap)
6238 langmap_set();
6239 #endif
6241 #ifdef FEAT_LINEBREAK
6242 /* 'breakat' */
6243 else if (varp == &p_breakat)
6244 fill_breakat_flags();
6245 #endif
6247 #ifdef FEAT_TITLE
6248 /* 'titlestring' and 'iconstring' */
6249 else if (varp == &p_titlestring || varp == &p_iconstring)
6251 # ifdef FEAT_STL_OPT
6252 int flagval = (varp == &p_titlestring) ? STL_IN_TITLE : STL_IN_ICON;
6254 /* NULL => statusline syntax */
6255 if (vim_strchr(*varp, '%') && check_stl_option(*varp) == NULL)
6256 stl_syntax |= flagval;
6257 else
6258 stl_syntax &= ~flagval;
6259 # endif
6260 did_set_title(varp == &p_iconstring);
6263 #endif
6265 #ifdef FEAT_GUI
6266 /* 'guioptions' */
6267 else if (varp == &p_go)
6269 gui_init_which_components(oldval);
6270 redraw_gui_only = TRUE;
6272 #endif
6274 #if defined(FEAT_GUI_TABLINE)
6275 /* 'guitablabel' */
6276 else if (varp == &p_gtl)
6278 redraw_tabline = TRUE;
6279 redraw_gui_only = TRUE;
6281 /* 'guitabtooltip' */
6282 else if (varp == &p_gtt)
6284 redraw_gui_only = TRUE;
6286 #endif
6288 #if defined(FEAT_MOUSE_TTY) && (defined(UNIX) || defined(VMS))
6289 /* 'ttymouse' */
6290 else if (varp == &p_ttym)
6292 /* Switch the mouse off before changing the escape sequences used for
6293 * that. */
6294 mch_setmouse(FALSE);
6295 if (opt_strings_flags(p_ttym, p_ttym_values, &ttym_flags, FALSE) != OK)
6296 errmsg = e_invarg;
6297 else
6298 check_mouse_termcode();
6299 if (termcap_active)
6300 setmouse(); /* may switch it on again */
6302 #endif
6304 #ifdef FEAT_VISUAL
6305 /* 'selection' */
6306 else if (varp == &p_sel)
6308 if (*p_sel == NUL
6309 || check_opt_strings(p_sel, p_sel_values, FALSE) != OK)
6310 errmsg = e_invarg;
6313 /* 'selectmode' */
6314 else if (varp == &p_slm)
6316 if (check_opt_strings(p_slm, p_slm_values, TRUE) != OK)
6317 errmsg = e_invarg;
6319 #endif
6321 #ifdef FEAT_BROWSE
6322 /* 'browsedir' */
6323 else if (varp == &p_bsdir)
6325 if (check_opt_strings(p_bsdir, p_bsdir_values, FALSE) != OK
6326 && !mch_isdir(p_bsdir))
6327 errmsg = e_invarg;
6329 #endif
6331 #ifdef FEAT_VISUAL
6332 /* 'keymodel' */
6333 else if (varp == &p_km)
6335 if (check_opt_strings(p_km, p_km_values, TRUE) != OK)
6336 errmsg = e_invarg;
6337 else
6339 km_stopsel = (vim_strchr(p_km, 'o') != NULL);
6340 km_startsel = (vim_strchr(p_km, 'a') != NULL);
6343 #endif
6345 /* 'mousemodel' */
6346 else if (varp == &p_mousem)
6348 if (check_opt_strings(p_mousem, p_mousem_values, FALSE) != OK)
6349 errmsg = e_invarg;
6350 #if defined(FEAT_GUI_MOTIF) && defined(FEAT_MENU) && (XmVersion <= 1002)
6351 else if (*p_mousem != *oldval)
6352 /* Changed from "extend" to "popup" or "popup_setpos" or vv: need
6353 * to create or delete the popup menus. */
6354 gui_motif_update_mousemodel(root_menu);
6355 #endif
6358 /* 'switchbuf' */
6359 else if (varp == &p_swb)
6361 if (opt_strings_flags(p_swb, p_swb_values, &swb_flags, TRUE) != OK)
6362 errmsg = e_invarg;
6365 /* 'debug' */
6366 else if (varp == &p_debug)
6368 if (check_opt_strings(p_debug, p_debug_values, TRUE) != OK)
6369 errmsg = e_invarg;
6372 /* 'display' */
6373 else if (varp == &p_dy)
6375 if (opt_strings_flags(p_dy, p_dy_values, &dy_flags, TRUE) != OK)
6376 errmsg = e_invarg;
6377 else
6378 (void)init_chartab();
6382 #ifdef FEAT_VERTSPLIT
6383 /* 'eadirection' */
6384 else if (varp == &p_ead)
6386 if (check_opt_strings(p_ead, p_ead_values, FALSE) != OK)
6387 errmsg = e_invarg;
6389 #endif
6391 #ifdef FEAT_CLIPBOARD
6392 /* 'clipboard' */
6393 else if (varp == &p_cb)
6394 errmsg = check_clipboard_option();
6395 #endif
6397 #ifdef FEAT_SPELL
6398 /* When 'spelllang' or 'spellfile' is set and there is a window for this
6399 * buffer in which 'spell' is set load the wordlists. */
6400 else if (varp == &(curbuf->b_p_spl) || varp == &(curbuf->b_p_spf))
6402 win_T *wp;
6403 int l;
6405 if (varp == &(curbuf->b_p_spf))
6407 l = (int)STRLEN(curbuf->b_p_spf);
6408 if (l > 0 && (l < 4 || STRCMP(curbuf->b_p_spf + l - 4,
6409 ".add") != 0))
6410 errmsg = e_invarg;
6413 if (errmsg == NULL)
6415 FOR_ALL_WINDOWS(wp)
6416 if (wp->w_buffer == curbuf && wp->w_p_spell)
6418 errmsg = did_set_spelllang(curbuf);
6419 # ifdef FEAT_WINDOWS
6420 break;
6421 # endif
6425 /* When 'spellcapcheck' is set compile the regexp program. */
6426 else if (varp == &(curbuf->b_p_spc))
6428 errmsg = compile_cap_prog(curbuf);
6430 /* 'spellsuggest' */
6431 else if (varp == &p_sps)
6433 if (spell_check_sps() != OK)
6434 errmsg = e_invarg;
6436 /* 'mkspellmem' */
6437 else if (varp == &p_msm)
6439 if (spell_check_msm() != OK)
6440 errmsg = e_invarg;
6442 #endif
6444 #ifdef FEAT_QUICKFIX
6445 /* When 'bufhidden' is set, check for valid value. */
6446 else if (gvarp == &p_bh)
6448 if (check_opt_strings(curbuf->b_p_bh, p_bufhidden_values, FALSE) != OK)
6449 errmsg = e_invarg;
6452 /* When 'buftype' is set, check for valid value. */
6453 else if (gvarp == &p_bt)
6455 if (check_opt_strings(curbuf->b_p_bt, p_buftype_values, FALSE) != OK)
6456 errmsg = e_invarg;
6457 else
6459 # ifdef FEAT_WINDOWS
6460 if (curwin->w_status_height)
6462 curwin->w_redr_status = TRUE;
6463 redraw_later(VALID);
6465 # endif
6466 curbuf->b_help = (curbuf->b_p_bt[0] == 'h');
6467 # ifdef FEAT_TITLE
6468 redraw_titles();
6469 # endif
6472 #endif
6474 #ifdef FEAT_STL_OPT
6475 /* 'statusline' or 'rulerformat' */
6476 else if (gvarp == &p_stl || varp == &p_ruf)
6478 int wid;
6480 if (varp == &p_ruf) /* reset ru_wid first */
6481 ru_wid = 0;
6482 s = *varp;
6483 if (varp == &p_ruf && *s == '%')
6485 /* set ru_wid if 'ruf' starts with "%99(" */
6486 if (*++s == '-') /* ignore a '-' */
6487 s++;
6488 wid = getdigits(&s);
6489 if (wid && *s == '(' && (errmsg = check_stl_option(p_ruf)) == NULL)
6490 ru_wid = wid;
6491 else
6492 errmsg = check_stl_option(p_ruf);
6494 /* check 'statusline' only if it doesn't start with "%!" */
6495 else if (varp == &p_ruf || s[0] != '%' || s[1] != '!')
6496 errmsg = check_stl_option(s);
6497 if (varp == &p_ruf && errmsg == NULL)
6498 comp_col();
6500 #endif
6502 #ifdef FEAT_INS_EXPAND
6503 /* check if it is a valid value for 'complete' -- Acevedo */
6504 else if (gvarp == &p_cpt)
6506 for (s = *varp; *s;)
6508 while(*s == ',' || *s == ' ')
6509 s++;
6510 if (!*s)
6511 break;
6512 if (vim_strchr((char_u *)".wbuksid]tU", *s) == NULL)
6514 errmsg = illegal_char(errbuf, *s);
6515 break;
6517 if (*++s != NUL && *s != ',' && *s != ' ')
6519 if (s[-1] == 'k' || s[-1] == 's')
6521 /* skip optional filename after 'k' and 's' */
6522 while (*s && *s != ',' && *s != ' ')
6524 if (*s == '\\')
6525 ++s;
6526 ++s;
6529 else
6531 if (errbuf != NULL)
6533 sprintf((char *)errbuf,
6534 _("E535: Illegal character after <%c>"),
6535 *--s);
6536 errmsg = errbuf;
6538 else
6539 errmsg = (char_u *)"";
6540 break;
6546 /* 'completeopt' */
6547 else if (varp == &p_cot)
6549 if (check_opt_strings(p_cot, p_cot_values, TRUE) != OK)
6550 errmsg = e_invarg;
6552 #endif /* FEAT_INS_EXPAND */
6555 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
6556 else if (varp == &p_toolbar)
6558 if (opt_strings_flags(p_toolbar, p_toolbar_values,
6559 &toolbar_flags, TRUE) != OK)
6560 errmsg = e_invarg;
6561 else
6563 out_flush();
6564 gui_mch_show_toolbar((toolbar_flags &
6565 (TOOLBAR_TEXT | TOOLBAR_ICONS)) != 0);
6568 #endif
6570 #if defined(FEAT_TOOLBAR) && defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)
6571 /* 'toolbariconsize': GTK+ 2 only */
6572 else if (varp == &p_tbis)
6574 if (opt_strings_flags(p_tbis, p_tbis_values, &tbis_flags, FALSE) != OK)
6575 errmsg = e_invarg;
6576 else
6578 out_flush();
6579 gui_mch_show_toolbar((toolbar_flags &
6580 (TOOLBAR_TEXT | TOOLBAR_ICONS)) != 0);
6583 #endif
6585 /* 'pastetoggle': translate key codes like in a mapping */
6586 else if (varp == &p_pt)
6588 if (*p_pt)
6590 (void)replace_termcodes(p_pt, &p, TRUE, TRUE, FALSE);
6591 if (p != NULL)
6593 if (new_value_alloced)
6594 free_string_option(p_pt);
6595 p_pt = p;
6596 new_value_alloced = TRUE;
6601 /* 'backspace' */
6602 else if (varp == &p_bs)
6604 if (VIM_ISDIGIT(*p_bs))
6606 if (*p_bs >'2' || p_bs[1] != NUL)
6607 errmsg = e_invarg;
6609 else if (check_opt_strings(p_bs, p_bs_values, TRUE) != OK)
6610 errmsg = e_invarg;
6613 #ifdef FEAT_MBYTE
6614 /* 'casemap' */
6615 else if (varp == &p_cmp)
6617 if (opt_strings_flags(p_cmp, p_cmp_values, &cmp_flags, TRUE) != OK)
6618 errmsg = e_invarg;
6620 #endif
6622 #ifdef FEAT_DIFF
6623 /* 'diffopt' */
6624 else if (varp == &p_dip)
6626 if (diffopt_changed() == FAIL)
6627 errmsg = e_invarg;
6629 #endif
6631 #ifdef FEAT_FOLDING
6632 /* 'foldmethod' */
6633 else if (gvarp == &curwin->w_allbuf_opt.wo_fdm)
6635 if (check_opt_strings(*varp, p_fdm_values, FALSE) != OK
6636 || *curwin->w_p_fdm == NUL)
6637 errmsg = e_invarg;
6638 else
6640 foldUpdateAll(curwin);
6641 if (foldmethodIsDiff(curwin))
6642 newFoldLevel();
6645 # ifdef FEAT_EVAL
6646 /* 'foldexpr' */
6647 else if (varp == &curwin->w_p_fde)
6649 if (foldmethodIsExpr(curwin))
6650 foldUpdateAll(curwin);
6652 # endif
6653 /* 'foldmarker' */
6654 else if (gvarp == &curwin->w_allbuf_opt.wo_fmr)
6656 p = vim_strchr(*varp, ',');
6657 if (p == NULL)
6658 errmsg = (char_u *)N_("E536: comma required");
6659 else if (p == *varp || p[1] == NUL)
6660 errmsg = e_invarg;
6661 else if (foldmethodIsMarker(curwin))
6662 foldUpdateAll(curwin);
6664 /* 'commentstring' */
6665 else if (gvarp == &p_cms)
6667 if (**varp != NUL && strstr((char *)*varp, "%s") == NULL)
6668 errmsg = (char_u *)N_("E537: 'commentstring' must be empty or contain %s");
6670 /* 'foldopen' */
6671 else if (varp == &p_fdo)
6673 if (opt_strings_flags(p_fdo, p_fdo_values, &fdo_flags, TRUE) != OK)
6674 errmsg = e_invarg;
6676 /* 'foldclose' */
6677 else if (varp == &p_fcl)
6679 if (check_opt_strings(p_fcl, p_fcl_values, TRUE) != OK)
6680 errmsg = e_invarg;
6682 /* 'foldignore' */
6683 else if (gvarp == &curwin->w_allbuf_opt.wo_fdi)
6685 if (foldmethodIsIndent(curwin))
6686 foldUpdateAll(curwin);
6688 #endif
6690 #ifdef FEAT_VIRTUALEDIT
6691 /* 'virtualedit' */
6692 else if (varp == &p_ve)
6694 if (opt_strings_flags(p_ve, p_ve_values, &ve_flags, TRUE) != OK)
6695 errmsg = e_invarg;
6696 else if (STRCMP(p_ve, oldval) != 0)
6698 /* Recompute cursor position in case the new 've' setting
6699 * changes something. */
6700 validate_virtcol();
6701 coladvance(curwin->w_virtcol);
6704 #endif
6706 #if defined(FEAT_CSCOPE) && defined(FEAT_QUICKFIX)
6707 else if (varp == &p_csqf)
6709 if (p_csqf != NULL)
6711 p = p_csqf;
6712 while (*p != NUL)
6714 if (vim_strchr((char_u *)CSQF_CMDS, *p) == NULL
6715 || p[1] == NUL
6716 || vim_strchr((char_u *)CSQF_FLAGS, p[1]) == NULL
6717 || (p[2] != NUL && p[2] != ','))
6719 errmsg = e_invarg;
6720 break;
6722 else if (p[2] == NUL)
6723 break;
6724 else
6725 p += 3;
6729 #endif
6731 #ifdef FEAT_VARTABS
6732 /* 'varsofttabstop' */
6733 else if (varp == &(curbuf->b_p_vsts))
6735 char_u *cp;
6737 if (!(*varp)[0] || ((*varp)[0] == '0' && !(*varp)[1]))
6739 if (curbuf->b_p_vsts_ary)
6741 vim_free(curbuf->b_p_vsts_ary);
6742 curbuf->b_p_vsts_ary = 0;
6745 else
6747 for (cp = *varp; *cp; ++cp)
6749 if (vim_isdigit(*cp))
6750 continue;
6751 if (*cp == ',' && cp > *varp && *(cp-1) != ',')
6752 continue;
6753 errmsg = e_invarg;
6754 break;
6756 if (errmsg == NULL)
6758 int *oldarray = curbuf->b_p_vsts_ary;
6759 if (tabstop_set(*varp, &(curbuf->b_p_vsts_ary)))
6761 if (oldarray)
6762 vim_free(oldarray);
6764 else
6765 errmsg = e_invarg;
6770 /* 'vartabstop' */
6771 else if (varp == &(curbuf->b_p_vts))
6773 char_u *cp;
6775 if (!(*varp)[0] || ((*varp)[0] == '0' && !(*varp)[1]))
6777 if (curbuf->b_p_vts_ary)
6779 vim_free(curbuf->b_p_vts_ary);
6780 curbuf->b_p_vts_ary = 0;
6783 else
6785 for (cp = *varp; *cp; ++cp)
6787 if (vim_isdigit(*cp))
6788 continue;
6789 if (*cp == ',' && cp > *varp && *(cp-1) != ',')
6790 continue;
6791 errmsg = e_invarg;
6792 break;
6794 if (errmsg == NULL)
6796 int *oldarray = curbuf->b_p_vts_ary;
6797 if (tabstop_set(*varp, &(curbuf->b_p_vts_ary)))
6799 if (oldarray)
6800 vim_free(oldarray);
6801 #ifdef FEAT_FOLDING
6802 if (foldmethodIsIndent(curwin))
6803 foldUpdateAll(curwin);
6804 #endif /* FEAT_FOLDING */
6806 else
6807 errmsg = e_invarg;
6811 #endif
6813 /* Options that are a list of flags. */
6814 else
6816 p = NULL;
6817 if (varp == &p_ww)
6818 p = (char_u *)WW_ALL;
6819 if (varp == &p_shm)
6820 p = (char_u *)SHM_ALL;
6821 else if (varp == &(p_cpo))
6822 p = (char_u *)CPO_ALL;
6823 else if (varp == &(curbuf->b_p_fo))
6824 p = (char_u *)FO_ALL;
6825 else if (varp == &p_mouse)
6827 #ifdef FEAT_MOUSE
6828 p = (char_u *)MOUSE_ALL;
6829 #else
6830 if (*p_mouse != NUL)
6831 errmsg = (char_u *)N_("E538: No mouse support");
6832 #endif
6834 #if defined(FEAT_GUI)
6835 else if (varp == &p_go)
6836 p = (char_u *)GO_ALL;
6837 #endif
6838 if (p != NULL)
6840 for (s = *varp; *s; ++s)
6841 if (vim_strchr(p, *s) == NULL)
6843 errmsg = illegal_char(errbuf, *s);
6844 break;
6850 * If error detected, restore the previous value.
6852 if (errmsg != NULL)
6854 if (new_value_alloced)
6855 free_string_option(*varp);
6856 *varp = oldval;
6858 * When resetting some values, need to act on it.
6860 if (did_chartab)
6861 (void)init_chartab();
6862 if (varp == &p_hl)
6863 (void)highlight_changed();
6865 else
6867 #ifdef FEAT_EVAL
6868 /* Remember where the option was set. */
6869 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
6870 #endif
6872 * Free string options that are in allocated memory.
6873 * Use "free_oldval", because recursiveness may change the flags under
6874 * our fingers (esp. init_highlight()).
6876 if (free_oldval)
6877 free_string_option(oldval);
6878 if (new_value_alloced)
6879 options[opt_idx].flags |= P_ALLOCED;
6880 else
6881 options[opt_idx].flags &= ~P_ALLOCED;
6883 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
6884 && ((int)options[opt_idx].indir & PV_BOTH))
6886 /* global option with local value set to use global value; free
6887 * the local value and make it empty */
6888 p = get_varp_scope(&(options[opt_idx]), OPT_LOCAL);
6889 free_string_option(*(char_u **)p);
6890 *(char_u **)p = empty_option;
6893 /* May set global value for local option. */
6894 else if (!(opt_flags & OPT_LOCAL) && opt_flags != OPT_GLOBAL)
6895 set_string_option_global(opt_idx, varp);
6897 #ifdef FEAT_AUTOCMD
6899 * Trigger the autocommand only after setting the flags.
6901 # ifdef FEAT_SYN_HL
6902 /* When 'syntax' is set, load the syntax of that name */
6903 if (varp == &(curbuf->b_p_syn))
6905 apply_autocmds(EVENT_SYNTAX, curbuf->b_p_syn,
6906 curbuf->b_fname, TRUE, curbuf);
6908 # endif
6909 else if (varp == &(curbuf->b_p_ft))
6911 /* 'filetype' is set, trigger the FileType autocommand */
6912 did_filetype = TRUE;
6913 apply_autocmds(EVENT_FILETYPE, curbuf->b_p_ft,
6914 curbuf->b_fname, TRUE, curbuf);
6916 #endif
6917 #ifdef FEAT_SPELL
6918 if (varp == &(curbuf->b_p_spl))
6920 char_u fname[200];
6923 * Source the spell/LANG.vim in 'runtimepath'.
6924 * They could set 'spellcapcheck' depending on the language.
6925 * Use the first name in 'spelllang' up to '_region' or
6926 * '.encoding'.
6928 for (p = curbuf->b_p_spl; *p != NUL; ++p)
6929 if (vim_strchr((char_u *)"_.,", *p) != NULL)
6930 break;
6931 vim_snprintf((char *)fname, 200, "spell/%.*s.vim",
6932 (int)(p - curbuf->b_p_spl), curbuf->b_p_spl);
6933 source_runtime(fname, TRUE);
6935 #endif
6938 #ifdef FEAT_MOUSE
6939 if (varp == &p_mouse)
6941 # ifdef FEAT_MOUSE_TTY
6942 if (*p_mouse == NUL)
6943 mch_setmouse(FALSE); /* switch mouse off */
6944 else
6945 # endif
6946 setmouse(); /* in case 'mouse' changed */
6948 #endif
6950 if (curwin->w_curswant != MAXCOL)
6951 curwin->w_set_curswant = TRUE; /* in case 'showbreak' changed */
6952 #ifdef FEAT_GUI
6953 /* check redraw when it's not a GUI option or the GUI is active. */
6954 if (!redraw_gui_only || gui.in_use)
6955 #endif
6956 check_redraw(options[opt_idx].flags);
6958 return errmsg;
6962 * Handle setting 'listchars' or 'fillchars'.
6963 * Returns error message, NULL if it's OK.
6965 static char_u *
6966 set_chars_option(varp)
6967 char_u **varp;
6969 int round, i, len, entries;
6970 char_u *p, *s;
6971 int c1, c2 = 0;
6972 struct charstab
6974 int *cp;
6975 char *name;
6977 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6978 static struct charstab filltab[] =
6980 {&fill_stl, "stl"},
6981 {&fill_stlnc, "stlnc"},
6982 {&fill_vert, "vert"},
6983 {&fill_fold, "fold"},
6984 {&fill_diff, "diff"},
6986 #endif
6987 static struct charstab lcstab[] =
6989 {&lcs_eol, "eol"},
6990 {&lcs_ext, "extends"},
6991 {&lcs_nbsp, "nbsp"},
6992 {&lcs_prec, "precedes"},
6993 {&lcs_tab2, "tab"},
6994 {&lcs_trail, "trail"},
6996 struct charstab *tab;
6998 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6999 if (varp == &p_lcs)
7000 #endif
7002 tab = lcstab;
7003 entries = sizeof(lcstab) / sizeof(struct charstab);
7005 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
7006 else
7008 tab = filltab;
7009 entries = sizeof(filltab) / sizeof(struct charstab);
7011 #endif
7013 /* first round: check for valid value, second round: assign values */
7014 for (round = 0; round <= 1; ++round)
7016 if (round)
7018 /* After checking that the value is valid: set defaults: space for
7019 * 'fillchars', NUL for 'listchars' */
7020 for (i = 0; i < entries; ++i)
7021 *(tab[i].cp) = (varp == &p_lcs ? NUL : ' ');
7022 if (varp == &p_lcs)
7023 lcs_tab1 = NUL;
7024 #if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
7025 else
7026 fill_diff = '-';
7027 #endif
7029 p = *varp;
7030 while (*p)
7032 for (i = 0; i < entries; ++i)
7034 len = (int)STRLEN(tab[i].name);
7035 if (STRNCMP(p, tab[i].name, len) == 0
7036 && p[len] == ':'
7037 && p[len + 1] != NUL)
7039 s = p + len + 1;
7040 #ifdef FEAT_MBYTE
7041 c1 = mb_ptr2char_adv(&s);
7042 if (mb_char2cells(c1) > 1)
7043 continue;
7044 #else
7045 c1 = *s++;
7046 #endif
7047 if (tab[i].cp == &lcs_tab2)
7049 if (*s == NUL)
7050 continue;
7051 #ifdef FEAT_MBYTE
7052 c2 = mb_ptr2char_adv(&s);
7053 if (mb_char2cells(c2) > 1)
7054 continue;
7055 #else
7056 c2 = *s++;
7057 #endif
7059 if (*s == ',' || *s == NUL)
7061 if (round)
7063 if (tab[i].cp == &lcs_tab2)
7065 lcs_tab1 = c1;
7066 lcs_tab2 = c2;
7068 else
7069 *(tab[i].cp) = c1;
7072 p = s;
7073 break;
7078 if (i == entries)
7079 return e_invarg;
7080 if (*p == ',')
7081 ++p;
7085 return NULL; /* no error */
7088 #ifdef FEAT_STL_OPT
7090 * Check validity of options with the 'statusline' format.
7091 * Return error message or NULL.
7093 char_u *
7094 check_stl_option(s)
7095 char_u *s;
7097 int itemcnt = 0;
7098 int groupdepth = 0;
7099 static char_u errbuf[80];
7101 while (*s && itemcnt < STL_MAX_ITEM)
7103 /* Check for valid keys after % sequences */
7104 while (*s && *s != '%')
7105 s++;
7106 if (!*s)
7107 break;
7108 s++;
7109 if (*s != '%' && *s != ')')
7110 ++itemcnt;
7111 if (*s == '%' || *s == STL_TRUNCMARK || *s == STL_MIDDLEMARK)
7113 s++;
7114 continue;
7116 if (*s == ')')
7118 s++;
7119 if (--groupdepth < 0)
7120 break;
7121 continue;
7123 if (*s == '-')
7124 s++;
7125 while (VIM_ISDIGIT(*s))
7126 s++;
7127 if (*s == STL_USER_HL)
7128 continue;
7129 if (*s == '.')
7131 s++;
7132 while (*s && VIM_ISDIGIT(*s))
7133 s++;
7135 if (*s == '(')
7137 groupdepth++;
7138 continue;
7140 if (vim_strchr(STL_ALL, *s) == NULL)
7142 return illegal_char(errbuf, *s);
7144 if (*s == '{')
7146 s++;
7147 while (*s != '}' && *s)
7148 s++;
7149 if (*s != '}')
7150 return (char_u *)N_("E540: Unclosed expression sequence");
7153 if (itemcnt >= STL_MAX_ITEM)
7154 return (char_u *)N_("E541: too many items");
7155 if (groupdepth != 0)
7156 return (char_u *)N_("E542: unbalanced groups");
7157 return NULL;
7159 #endif
7161 #ifdef FEAT_CLIPBOARD
7163 * Extract the items in the 'clipboard' option and set global values.
7165 static char_u *
7166 check_clipboard_option()
7168 int new_unnamed = FALSE;
7169 int new_autoselect = FALSE;
7170 int new_autoselectml = FALSE;
7171 int new_html = FALSE;
7172 regprog_T *new_exclude_prog = NULL;
7173 char_u *errmsg = NULL;
7174 char_u *p;
7176 for (p = p_cb; *p != NUL; )
7178 if (STRNCMP(p, "unnamed", 7) == 0 && (p[7] == ',' || p[7] == NUL))
7180 new_unnamed = TRUE;
7181 p += 7;
7183 else if (STRNCMP(p, "autoselect", 10) == 0
7184 && (p[10] == ',' || p[10] == NUL))
7186 new_autoselect = TRUE;
7187 p += 10;
7189 else if (STRNCMP(p, "autoselectml", 12) == 0
7190 && (p[12] == ',' || p[12] == NUL))
7192 new_autoselectml = TRUE;
7193 p += 12;
7195 else if (STRNCMP(p, "html", 4) == 0 && (p[4] == ',' || p[4] == NUL))
7197 new_html = TRUE;
7198 p += 4;
7200 else if (STRNCMP(p, "exclude:", 8) == 0 && new_exclude_prog == NULL)
7202 p += 8;
7203 new_exclude_prog = vim_regcomp(p, RE_MAGIC);
7204 if (new_exclude_prog == NULL)
7205 errmsg = e_invarg;
7206 break;
7208 else
7210 errmsg = e_invarg;
7211 break;
7213 if (*p == ',')
7214 ++p;
7216 if (errmsg == NULL)
7218 clip_unnamed = new_unnamed;
7219 clip_autoselect = new_autoselect;
7220 clip_autoselectml = new_autoselectml;
7221 clip_html = new_html;
7222 vim_free(clip_exclude_prog);
7223 clip_exclude_prog = new_exclude_prog;
7225 else
7226 vim_free(new_exclude_prog);
7228 return errmsg;
7230 #endif
7232 #ifdef FEAT_SPELL
7234 * Set curbuf->b_cap_prog to the regexp program for 'spellcapcheck'.
7235 * Return error message when failed, NULL when OK.
7237 static char_u *
7238 compile_cap_prog(buf)
7239 buf_T *buf;
7241 regprog_T *rp = buf->b_cap_prog;
7242 char_u *re;
7244 if (*buf->b_p_spc == NUL)
7245 buf->b_cap_prog = NULL;
7246 else
7248 /* Prepend a ^ so that we only match at one column */
7249 re = concat_str((char_u *)"^", buf->b_p_spc);
7250 if (re != NULL)
7252 buf->b_cap_prog = vim_regcomp(re, RE_MAGIC);
7253 if (buf->b_cap_prog == NULL)
7255 buf->b_cap_prog = rp; /* restore the previous program */
7256 return e_invarg;
7258 vim_free(re);
7262 vim_free(rp);
7263 return NULL;
7265 #endif
7267 #if defined(FEAT_EVAL) || defined(PROTO)
7269 * Set the scriptID for an option, taking care of setting the buffer- or
7270 * window-local value.
7272 static void
7273 set_option_scriptID_idx(opt_idx, opt_flags, id)
7274 int opt_idx;
7275 int opt_flags;
7276 int id;
7278 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
7279 int indir = (int)options[opt_idx].indir;
7281 /* Remember where the option was set. For local options need to do that
7282 * in the buffer or window structure. */
7283 if (both || (opt_flags & OPT_GLOBAL) || (indir & (PV_BUF|PV_WIN)) == 0)
7284 options[opt_idx].scriptID = id;
7285 if (both || (opt_flags & OPT_LOCAL))
7287 if (indir & PV_BUF)
7288 curbuf->b_p_scriptID[indir & PV_MASK] = id;
7289 else if (indir & PV_WIN)
7290 curwin->w_p_scriptID[indir & PV_MASK] = id;
7293 #endif
7296 * Set the value of a boolean option, and take care of side effects.
7297 * Returns NULL for success, or an error message for an error.
7299 static char_u *
7300 set_bool_option(opt_idx, varp, value, opt_flags)
7301 int opt_idx; /* index in options[] table */
7302 char_u *varp; /* pointer to the option variable */
7303 int value; /* new value */
7304 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
7306 int old_value = *(int *)varp;
7308 /* Disallow changing some options from secure mode */
7309 if ((secure
7310 #ifdef HAVE_SANDBOX
7311 || sandbox != 0
7312 #endif
7313 ) && (options[opt_idx].flags & P_SECURE))
7314 return e_secure;
7316 *(int *)varp = value; /* set the new value */
7317 #ifdef FEAT_EVAL
7318 /* Remember where the option was set. */
7319 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
7320 #endif
7322 #ifdef FEAT_GUI
7323 need_mouse_correct = TRUE;
7324 #endif
7326 /* May set global value for local option. */
7327 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0)
7328 *(int *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) = value;
7331 * Handle side effects of changing a bool option.
7334 /* 'compatible' */
7335 if ((int *)varp == &p_cp)
7337 compatible_set();
7340 /* 'list', 'number' */
7341 else if ((int *)varp == &curwin->w_p_list
7342 || (int *)varp == &curwin->w_p_nu)
7344 if (curwin->w_curswant != MAXCOL)
7345 curwin->w_set_curswant = TRUE;
7348 else if ((int *)varp == &curbuf->b_p_ro)
7350 /* when 'readonly' is reset globally, also reset readonlymode */
7351 if (!curbuf->b_p_ro && (opt_flags & OPT_LOCAL) == 0)
7352 readonlymode = FALSE;
7354 /* when 'readonly' is set may give W10 again */
7355 if (curbuf->b_p_ro)
7356 curbuf->b_did_warn = FALSE;
7358 #ifdef FEAT_TITLE
7359 redraw_titles();
7360 #endif
7363 #ifdef FEAT_TITLE
7364 /* when 'modifiable' is changed, redraw the window title */
7365 else if ((int *)varp == &curbuf->b_p_ma)
7367 redraw_titles();
7369 /* when 'endofline' is changed, redraw the window title */
7370 else if ((int *)varp == &curbuf->b_p_eol)
7372 redraw_titles();
7374 # ifdef FEAT_MBYTE
7375 /* when 'bomb' is changed, redraw the window title and tab page text */
7376 else if ((int *)varp == &curbuf->b_p_bomb)
7378 redraw_titles();
7380 # endif
7381 #endif
7383 /* when 'bin' is set also set some other options */
7384 else if ((int *)varp == &curbuf->b_p_bin)
7386 set_options_bin(old_value, curbuf->b_p_bin, opt_flags);
7387 #ifdef FEAT_TITLE
7388 redraw_titles();
7389 #endif
7392 #ifdef FEAT_AUTOCMD
7393 /* when 'buflisted' changes, trigger autocommands */
7394 else if ((int *)varp == &curbuf->b_p_bl && old_value != curbuf->b_p_bl)
7396 apply_autocmds(curbuf->b_p_bl ? EVENT_BUFADD : EVENT_BUFDELETE,
7397 NULL, NULL, TRUE, curbuf);
7399 #endif
7401 /* when 'swf' is set, create swapfile, when reset remove swapfile */
7402 else if ((int *)varp == &curbuf->b_p_swf)
7404 if (curbuf->b_p_swf && p_uc)
7405 ml_open_file(curbuf); /* create the swap file */
7406 else
7407 /* no need to reset curbuf->b_may_swap, ml_open_file() will check
7408 * buf->b_p_swf */
7409 mf_close_file(curbuf, TRUE); /* remove the swap file */
7412 /* when 'terse' is set change 'shortmess' */
7413 else if ((int *)varp == &p_terse)
7415 char_u *p;
7417 p = vim_strchr(p_shm, SHM_SEARCH);
7419 /* insert 's' in p_shm */
7420 if (p_terse && p == NULL)
7422 STRCPY(IObuff, p_shm);
7423 STRCAT(IObuff, "s");
7424 set_string_option_direct((char_u *)"shm", -1, IObuff, OPT_FREE, 0);
7426 /* remove 's' from p_shm */
7427 else if (!p_terse && p != NULL)
7428 STRMOVE(p, p + 1);
7431 /* when 'paste' is set or reset also change other options */
7432 else if ((int *)varp == &p_paste)
7434 paste_option_changed();
7437 /* when 'insertmode' is set from an autocommand need to do work here */
7438 else if ((int *)varp == &p_im)
7440 if (p_im)
7442 if ((State & INSERT) == 0)
7443 need_start_insertmode = TRUE;
7444 stop_insert_mode = FALSE;
7446 else
7448 need_start_insertmode = FALSE;
7449 stop_insert_mode = TRUE;
7450 if (restart_edit != 0 && mode_displayed)
7451 clear_cmdline = TRUE; /* remove "(insert)" */
7452 restart_edit = 0;
7456 /* when 'ignorecase' is set or reset and 'hlsearch' is set, redraw */
7457 else if ((int *)varp == &p_ic && p_hls)
7459 redraw_all_later(SOME_VALID);
7462 #ifdef FEAT_SEARCH_EXTRA
7463 /* when 'hlsearch' is set or reset: reset no_hlsearch */
7464 else if ((int *)varp == &p_hls)
7466 no_hlsearch = FALSE;
7468 #endif
7470 #ifdef FEAT_SCROLLBIND
7471 /* when 'scrollbind' is set: snapshot the current position to avoid a jump
7472 * at the end of normal_cmd() */
7473 else if ((int *)varp == &curwin->w_p_scb)
7475 if (curwin->w_p_scb)
7476 do_check_scrollbind(FALSE);
7478 #endif
7480 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
7481 /* There can be only one window with 'previewwindow' set. */
7482 else if ((int *)varp == &curwin->w_p_pvw)
7484 if (curwin->w_p_pvw)
7486 win_T *win;
7488 for (win = firstwin; win != NULL; win = win->w_next)
7489 if (win->w_p_pvw && win != curwin)
7491 curwin->w_p_pvw = FALSE;
7492 return (char_u *)N_("E590: A preview window already exists");
7496 #endif
7498 /* when 'textmode' is set or reset also change 'fileformat' */
7499 else if ((int *)varp == &curbuf->b_p_tx)
7501 set_fileformat(curbuf->b_p_tx ? EOL_DOS : EOL_UNIX, opt_flags);
7504 /* when 'textauto' is set or reset also change 'fileformats' */
7505 else if ((int *)varp == &p_ta)
7506 set_string_option_direct((char_u *)"ffs", -1,
7507 p_ta ? (char_u *)DFLT_FFS_VIM : (char_u *)"",
7508 OPT_FREE | opt_flags, 0);
7511 * When 'lisp' option changes include/exclude '-' in
7512 * keyword characters.
7514 #ifdef FEAT_LISP
7515 else if (varp == (char_u *)&(curbuf->b_p_lisp))
7517 (void)buf_init_chartab(curbuf, FALSE); /* ignore errors */
7519 #endif
7521 #ifdef FEAT_TITLE
7522 /* when 'title' changed, may need to change the title; same for 'icon' */
7523 else if ((int *)varp == &p_title)
7525 did_set_title(FALSE);
7528 else if ((int *)varp == &p_icon)
7530 did_set_title(TRUE);
7532 #endif
7534 else if ((int *)varp == &curbuf->b_changed)
7536 if (!value)
7537 save_file_ff(curbuf); /* Buffer is unchanged */
7538 #ifdef FEAT_TITLE
7539 redraw_titles();
7540 #endif
7541 #ifdef FEAT_AUTOCMD
7542 modified_was_set = value;
7543 #endif
7546 #ifdef BACKSLASH_IN_FILENAME
7547 else if ((int *)varp == &p_ssl)
7549 if (p_ssl)
7551 psepc = '/';
7552 psepcN = '\\';
7553 pseps[0] = '/';
7555 else
7557 psepc = '\\';
7558 psepcN = '/';
7559 pseps[0] = '\\';
7562 /* need to adjust the file name arguments and buffer names. */
7563 buflist_slash_adjust();
7564 alist_slash_adjust();
7565 # ifdef FEAT_EVAL
7566 scriptnames_slash_adjust();
7567 # endif
7569 #endif
7571 /* If 'wrap' is set, set w_leftcol to zero. */
7572 else if ((int *)varp == &curwin->w_p_wrap)
7574 if (curwin->w_p_wrap)
7575 curwin->w_leftcol = 0;
7576 if (curwin->w_curswant != MAXCOL)
7577 curwin->w_set_curswant = TRUE;
7580 #ifdef FEAT_WINDOWS
7581 else if ((int *)varp == &p_ea)
7583 if (p_ea && !old_value)
7584 win_equal(curwin, FALSE, 0);
7586 #endif
7588 else if ((int *)varp == &p_wiv)
7591 * When 'weirdinvert' changed, set/reset 't_xs'.
7592 * Then set 'weirdinvert' according to value of 't_xs'.
7594 if (p_wiv && !old_value)
7595 T_XS = (char_u *)"y";
7596 else if (!p_wiv && old_value)
7597 T_XS = empty_option;
7598 p_wiv = (*T_XS != NUL);
7601 #ifdef FEAT_BEVAL
7602 else if ((int *)varp == &p_beval)
7604 if (p_beval == TRUE)
7605 gui_mch_enable_beval_area(balloonEval);
7606 else
7607 gui_mch_disable_beval_area(balloonEval);
7609 #endif
7611 #ifdef FEAT_AUTOCHDIR
7612 else if ((int *)varp == &p_acd)
7614 /* Change directories when the 'acd' option is set now. */
7615 DO_AUTOCHDIR
7617 #endif
7619 #ifdef FEAT_DIFF
7620 /* 'diff' */
7621 else if ((int *)varp == &curwin->w_p_diff)
7623 /* May add or remove the buffer from the list of diff buffers. */
7624 diff_buf_adjust(curwin);
7625 # ifdef FEAT_FOLDING
7626 if (foldmethodIsDiff(curwin))
7627 foldUpdateAll(curwin);
7628 # endif
7630 #endif
7632 #ifdef USE_IM_CONTROL
7633 /* 'imdisable' */
7634 else if ((int *)varp == &p_imdisable)
7636 /* Only de-activate it here, it will be enabled when changing mode. */
7637 if (p_imdisable)
7638 im_set_active(FALSE);
7640 #endif
7642 #ifdef FEAT_SPELL
7643 /* 'spell' */
7644 else if ((int *)varp == &curwin->w_p_spell)
7646 if (curwin->w_p_spell)
7648 char_u *errmsg = did_set_spelllang(curbuf);
7650 if (errmsg != NULL)
7651 EMSG(_(errmsg));
7654 #endif
7656 #ifdef FEAT_FKMAP
7657 else if ((int *)varp == &p_altkeymap)
7659 if (old_value != p_altkeymap)
7661 if (!p_altkeymap)
7663 p_hkmap = p_fkmap;
7664 p_fkmap = 0;
7666 else
7668 p_fkmap = p_hkmap;
7669 p_hkmap = 0;
7671 (void)init_chartab();
7676 * In case some second language keymapping options have changed, check
7677 * and correct the setting in a consistent way.
7681 * If hkmap or fkmap are set, reset Arabic keymapping.
7683 if ((p_hkmap || p_fkmap) && p_altkeymap)
7685 p_altkeymap = p_fkmap;
7686 # ifdef FEAT_ARABIC
7687 curwin->w_p_arab = FALSE;
7688 # endif
7689 (void)init_chartab();
7693 * If hkmap set, reset Farsi keymapping.
7695 if (p_hkmap && p_altkeymap)
7697 p_altkeymap = 0;
7698 p_fkmap = 0;
7699 # ifdef FEAT_ARABIC
7700 curwin->w_p_arab = FALSE;
7701 # endif
7702 (void)init_chartab();
7706 * If fkmap set, reset Hebrew keymapping.
7708 if (p_fkmap && !p_altkeymap)
7710 p_altkeymap = 1;
7711 p_hkmap = 0;
7712 # ifdef FEAT_ARABIC
7713 curwin->w_p_arab = FALSE;
7714 # endif
7715 (void)init_chartab();
7717 #endif
7719 #ifdef FEAT_ARABIC
7720 if ((int *)varp == &curwin->w_p_arab)
7722 if (curwin->w_p_arab)
7725 * 'arabic' is set, handle various sub-settings.
7727 if (!p_tbidi)
7729 /* set rightleft mode */
7730 if (!curwin->w_p_rl)
7732 curwin->w_p_rl = TRUE;
7733 changed_window_setting();
7736 /* Enable Arabic shaping (major part of what Arabic requires) */
7737 if (!p_arshape)
7739 p_arshape = TRUE;
7740 redraw_later_clear();
7744 /* Arabic requires a utf-8 encoding, inform the user if its not
7745 * set. */
7746 if (STRCMP(p_enc, "utf-8") != 0)
7748 static char *w_arabic = N_("W17: Arabic requires UTF-8, do ':set encoding=utf-8'");
7750 msg_source(hl_attr(HLF_W));
7751 MSG_ATTR(_(w_arabic), hl_attr(HLF_W));
7752 #ifdef FEAT_EVAL
7753 set_vim_var_string(VV_WARNINGMSG, (char_u *)_(w_arabic), -1);
7754 #endif
7757 # ifdef FEAT_MBYTE
7758 /* set 'delcombine' */
7759 p_deco = TRUE;
7760 # endif
7762 # ifdef FEAT_KEYMAP
7763 /* Force-set the necessary keymap for arabic */
7764 set_option_value((char_u *)"keymap", 0L, (char_u *)"arabic",
7765 OPT_LOCAL);
7766 # endif
7767 # ifdef FEAT_FKMAP
7768 p_altkeymap = 0;
7769 p_hkmap = 0;
7770 p_fkmap = 0;
7771 (void)init_chartab();
7772 # endif
7774 else
7777 * 'arabic' is reset, handle various sub-settings.
7779 if (!p_tbidi)
7781 /* reset rightleft mode */
7782 if (curwin->w_p_rl)
7784 curwin->w_p_rl = FALSE;
7785 changed_window_setting();
7788 /* 'arabicshape' isn't reset, it is a global option and
7789 * another window may still need it "on". */
7792 /* 'delcombine' isn't reset, it is a global option and another
7793 * window may still want it "on". */
7795 # ifdef FEAT_KEYMAP
7796 /* Revert to the default keymap */
7797 curbuf->b_p_iminsert = B_IMODE_NONE;
7798 curbuf->b_p_imsearch = B_IMODE_USE_INSERT;
7799 # endif
7801 if (curwin->w_curswant != MAXCOL)
7802 curwin->w_set_curswant = TRUE;
7805 else if ((int *)varp == &p_arshape)
7807 if (curwin->w_curswant != MAXCOL)
7808 curwin->w_set_curswant = TRUE;
7810 #endif
7812 #ifdef FEAT_LINEBREAK
7813 if ((int *)varp == &curwin->w_p_lbr)
7815 if (curwin->w_curswant != MAXCOL)
7816 curwin->w_set_curswant = TRUE;
7818 #endif
7820 #ifdef FEAT_RIGHTLEFT
7821 if ((int *)varp == &curwin->w_p_rl)
7823 if (curwin->w_curswant != MAXCOL)
7824 curwin->w_set_curswant = TRUE;
7826 #endif
7829 * End of handling side effects for bool options.
7832 options[opt_idx].flags |= P_WAS_SET;
7834 comp_col(); /* in case 'ruler' or 'showcmd' changed */
7836 check_redraw(options[opt_idx].flags);
7838 return NULL;
7842 * Set the value of a number option, and take care of side effects.
7843 * Returns NULL for success, or an error message for an error.
7845 static char_u *
7846 set_num_option(opt_idx, varp, value, errbuf, errbuflen, opt_flags)
7847 int opt_idx; /* index in options[] table */
7848 char_u *varp; /* pointer to the option variable */
7849 long value; /* new value */
7850 char_u *errbuf; /* buffer for error messages */
7851 size_t errbuflen; /* length of "errbuf" */
7852 int opt_flags; /* OPT_LOCAL, OPT_GLOBAL and
7853 OPT_MODELINE */
7855 char_u *errmsg = NULL;
7856 long old_value = *(long *)varp;
7857 long old_Rows = Rows; /* remember old Rows */
7858 long old_Columns = Columns; /* remember old Columns */
7859 long *pp = (long *)varp;
7861 /* Disallow changing some options from secure mode. */
7862 if ((secure
7863 #ifdef HAVE_SANDBOX
7864 || sandbox != 0
7865 #endif
7866 ) && (options[opt_idx].flags & P_SECURE))
7867 return e_secure;
7869 *pp = value;
7870 #ifdef FEAT_EVAL
7871 /* Remember where the option was set. */
7872 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
7873 #endif
7874 #ifdef FEAT_GUI
7875 need_mouse_correct = TRUE;
7876 #endif
7878 if (curbuf->b_p_sw <= 0)
7880 errmsg = e_positive;
7881 #ifdef FEAT_VARTABS
7882 /* Use the first 'vartabstop' value, or 'tabstop' if vts isn't in use. */
7883 curbuf->b_p_sw = tabstop_count(curbuf->b_p_vts_ary) > 0
7884 ? tabstop_first(curbuf->b_p_vts_ary)
7885 : curbuf->b_p_ts;
7886 #else
7887 curbuf->b_p_sw = curbuf->b_p_ts;
7888 #endif
7892 * Number options that need some action when changed
7894 #ifdef FEAT_WINDOWS
7895 if (pp == &p_wh || pp == &p_hh)
7897 if (p_wh < 1)
7899 errmsg = e_positive;
7900 p_wh = 1;
7902 if (p_wmh > p_wh)
7904 errmsg = e_winheight;
7905 p_wh = p_wmh;
7907 if (p_hh < 0)
7909 errmsg = e_positive;
7910 p_hh = 0;
7913 /* Change window height NOW */
7914 if (lastwin != firstwin)
7916 if (pp == &p_wh && curwin->w_height < p_wh)
7917 win_setheight((int)p_wh);
7918 if (pp == &p_hh && curbuf->b_help && curwin->w_height < p_hh)
7919 win_setheight((int)p_hh);
7923 /* 'winminheight' */
7924 else if (pp == &p_wmh)
7926 if (p_wmh < 0)
7928 errmsg = e_positive;
7929 p_wmh = 0;
7931 if (p_wmh > p_wh)
7933 errmsg = e_winheight;
7934 p_wmh = p_wh;
7936 win_setminheight();
7939 # ifdef FEAT_VERTSPLIT
7940 else if (pp == &p_wiw)
7942 if (p_wiw < 1)
7944 errmsg = e_positive;
7945 p_wiw = 1;
7947 if (p_wmw > p_wiw)
7949 errmsg = e_winwidth;
7950 p_wiw = p_wmw;
7953 /* Change window width NOW */
7954 if (lastwin != firstwin && curwin->w_width < p_wiw)
7955 win_setwidth((int)p_wiw);
7958 /* 'winminwidth' */
7959 else if (pp == &p_wmw)
7961 if (p_wmw < 0)
7963 errmsg = e_positive;
7964 p_wmw = 0;
7966 if (p_wmw > p_wiw)
7968 errmsg = e_winwidth;
7969 p_wmw = p_wiw;
7971 win_setminheight();
7973 # endif
7975 #endif
7977 #ifdef FEAT_WINDOWS
7978 /* (re)set last window status line */
7979 else if (pp == &p_ls)
7981 last_status(FALSE);
7984 /* (re)set tab page line */
7985 else if (pp == &p_stal)
7987 shell_new_rows(); /* recompute window positions and heights */
7989 #endif
7991 #ifdef FEAT_GUI
7992 else if (pp == &p_linespace)
7994 /* Recompute gui.char_height and resize the Vim window to keep the
7995 * same number of lines. */
7996 if (gui.in_use && gui_mch_adjust_charheight() == OK)
7997 gui_set_shellsize(FALSE, FALSE, RESIZE_VERT);
7999 #endif
8001 #ifdef FEAT_FOLDING
8002 /* 'foldlevel' */
8003 else if (pp == &curwin->w_p_fdl)
8005 if (curwin->w_p_fdl < 0)
8006 curwin->w_p_fdl = 0;
8007 newFoldLevel();
8010 /* 'foldminlines' */
8011 else if (pp == &curwin->w_p_fml)
8013 foldUpdateAll(curwin);
8016 /* 'foldnestmax' */
8017 else if (pp == &curwin->w_p_fdn)
8019 if (foldmethodIsSyntax(curwin) || foldmethodIsIndent(curwin))
8020 foldUpdateAll(curwin);
8023 /* 'foldcolumn' */
8024 else if (pp == &curwin->w_p_fdc)
8026 if (curwin->w_p_fdc < 0)
8028 errmsg = e_positive;
8029 curwin->w_p_fdc = 0;
8031 else if (curwin->w_p_fdc > 12)
8033 errmsg = e_invarg;
8034 curwin->w_p_fdc = 12;
8038 /* 'shiftwidth' or 'tabstop' */
8039 else if (pp == &curbuf->b_p_sw || pp == &curbuf->b_p_ts)
8041 if (foldmethodIsIndent(curwin))
8042 foldUpdateAll(curwin);
8044 #endif /* FEAT_FOLDING */
8046 #ifdef FEAT_MBYTE
8047 /* 'maxcombine' */
8048 else if (pp == &p_mco)
8050 if (p_mco > MAX_MCO)
8051 p_mco = MAX_MCO;
8052 else if (p_mco < 0)
8053 p_mco = 0;
8054 screenclear(); /* will re-allocate the screen */
8056 #endif
8058 else if (pp == &curbuf->b_p_iminsert)
8060 if (curbuf->b_p_iminsert < 0 || curbuf->b_p_iminsert > B_IMODE_LAST)
8062 errmsg = e_invarg;
8063 curbuf->b_p_iminsert = B_IMODE_NONE;
8065 p_iminsert = curbuf->b_p_iminsert;
8066 if (termcap_active) /* don't do this in the alternate screen */
8067 showmode();
8068 #if defined(FEAT_WINDOWS) && defined(FEAT_KEYMAP)
8069 /* Show/unshow value of 'keymap' in status lines. */
8070 status_redraw_curbuf();
8071 #endif
8074 else if (pp == &p_window)
8076 if (p_window < 1)
8077 p_window = 1;
8078 else if (p_window >= Rows)
8079 p_window = Rows - 1;
8082 else if (pp == &curbuf->b_p_imsearch)
8084 if (curbuf->b_p_imsearch < -1 || curbuf->b_p_imsearch > B_IMODE_LAST)
8086 errmsg = e_invarg;
8087 curbuf->b_p_imsearch = B_IMODE_NONE;
8089 p_imsearch = curbuf->b_p_imsearch;
8092 #ifdef FEAT_TITLE
8093 /* if 'titlelen' has changed, redraw the title */
8094 else if (pp == &p_titlelen)
8096 if (p_titlelen < 0)
8098 errmsg = e_positive;
8099 p_titlelen = 85;
8101 if (starting != NO_SCREEN && old_value != p_titlelen)
8102 need_maketitle = TRUE;
8104 #endif
8106 /* if p_ch changed value, change the command line height */
8107 else if (pp == &p_ch)
8109 if (p_ch < 1)
8111 errmsg = e_positive;
8112 p_ch = 1;
8114 if (p_ch > Rows - min_rows() + 1)
8115 p_ch = Rows - min_rows() + 1;
8117 /* Only compute the new window layout when startup has been
8118 * completed. Otherwise the frame sizes may be wrong. */
8119 if (p_ch != old_value && full_screen
8120 #ifdef FEAT_GUI
8121 && !gui.starting
8122 #endif
8124 command_height();
8127 /* when 'updatecount' changes from zero to non-zero, open swap files */
8128 else if (pp == &p_uc)
8130 if (p_uc < 0)
8132 errmsg = e_positive;
8133 p_uc = 100;
8135 if (p_uc && !old_value)
8136 ml_open_files();
8138 #ifdef MZSCHEME_GUI_THREADS
8139 else if (pp == &p_mzq)
8140 mzvim_reset_timer();
8141 #endif
8143 /* sync undo before 'undolevels' changes */
8144 else if (pp == &p_ul)
8146 /* use the old value, otherwise u_sync() may not work properly */
8147 p_ul = old_value;
8148 u_sync(TRUE);
8149 p_ul = value;
8152 #ifdef FEAT_LINEBREAK
8153 /* 'numberwidth' must be positive */
8154 else if (pp == &curwin->w_p_nuw)
8156 if (curwin->w_p_nuw < 1)
8158 errmsg = e_positive;
8159 curwin->w_p_nuw = 1;
8161 if (curwin->w_p_nuw > 10)
8163 errmsg = e_invarg;
8164 curwin->w_p_nuw = 10;
8166 curwin->w_nrwidth_line_count = 0;
8168 #endif
8171 * Check the bounds for numeric options here
8173 if (Rows < min_rows() && full_screen)
8175 if (errbuf != NULL)
8177 vim_snprintf((char *)errbuf, errbuflen,
8178 _("E593: Need at least %d lines"), min_rows());
8179 errmsg = errbuf;
8181 Rows = min_rows();
8183 if (Columns < MIN_COLUMNS && full_screen)
8185 if (errbuf != NULL)
8187 vim_snprintf((char *)errbuf, errbuflen,
8188 _("E594: Need at least %d columns"), MIN_COLUMNS);
8189 errmsg = errbuf;
8191 Columns = MIN_COLUMNS;
8193 /* Limit the values to avoid an overflow in Rows * Columns. */
8194 if (Columns > 10000)
8195 Columns = 10000;
8196 if (Rows > 1000)
8197 Rows = 1000;
8199 #ifdef DJGPP
8200 /* avoid a crash by checking for a too large value of 'columns' */
8201 if (old_Columns != Columns && full_screen && term_console)
8202 mch_check_columns();
8203 #endif
8206 * If the screen (shell) height has been changed, assume it is the
8207 * physical screenheight.
8209 if (old_Rows != Rows || old_Columns != Columns)
8211 /* Changing the screen size is not allowed while updating the screen. */
8212 if (updating_screen)
8213 *pp = old_value;
8214 else if (full_screen
8215 #ifdef FEAT_GUI
8216 && !gui.starting
8217 #endif
8219 set_shellsize((int)Columns, (int)Rows, TRUE);
8220 else
8222 /* Postpone the resizing; check the size and cmdline position for
8223 * messages. */
8224 check_shellsize();
8225 if (cmdline_row > Rows - p_ch && Rows > p_ch)
8226 cmdline_row = Rows - p_ch;
8228 if (p_window >= Rows || !option_was_set((char_u *)"window"))
8229 p_window = Rows - 1;
8232 if (curbuf->b_p_sts < 0)
8234 errmsg = e_positive;
8235 curbuf->b_p_sts = 0;
8237 if (curbuf->b_p_ts <= 0)
8239 errmsg = e_positive;
8240 curbuf->b_p_ts = 8;
8242 if (curbuf->b_p_tw < 0)
8244 errmsg = e_positive;
8245 curbuf->b_p_tw = 0;
8247 if (p_tm < 0)
8249 errmsg = e_positive;
8250 p_tm = 0;
8252 if ((curwin->w_p_scr <= 0
8253 || (curwin->w_p_scr > curwin->w_height
8254 && curwin->w_height > 0))
8255 && full_screen)
8257 if (pp == &(curwin->w_p_scr))
8259 if (curwin->w_p_scr != 0)
8260 errmsg = e_scroll;
8261 win_comp_scroll(curwin);
8263 /* If 'scroll' became invalid because of a side effect silently adjust
8264 * it. */
8265 else if (curwin->w_p_scr <= 0)
8266 curwin->w_p_scr = 1;
8267 else /* curwin->w_p_scr > curwin->w_height */
8268 curwin->w_p_scr = curwin->w_height;
8270 if (p_hi < 0)
8272 errmsg = e_positive;
8273 p_hi = 0;
8275 if (p_report < 0)
8277 errmsg = e_positive;
8278 p_report = 1;
8280 if ((p_sj < -100 || p_sj >= Rows) && full_screen)
8282 if (Rows != old_Rows) /* Rows changed, just adjust p_sj */
8283 p_sj = Rows / 2;
8284 else
8286 errmsg = e_scroll;
8287 p_sj = 1;
8290 if (p_so < 0 && full_screen)
8292 errmsg = e_scroll;
8293 p_so = 0;
8295 if (p_siso < 0 && full_screen)
8297 errmsg = e_positive;
8298 p_siso = 0;
8300 #ifdef FEAT_CMDWIN
8301 if (p_cwh < 1)
8303 errmsg = e_positive;
8304 p_cwh = 1;
8306 #endif
8307 if (p_ut < 0)
8309 errmsg = e_positive;
8310 p_ut = 2000;
8312 if (p_ss < 0)
8314 errmsg = e_positive;
8315 p_ss = 0;
8318 /* May set global value for local option. */
8319 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0)
8320 *(long *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) = *pp;
8322 options[opt_idx].flags |= P_WAS_SET;
8324 comp_col(); /* in case 'columns' or 'ls' changed */
8325 if (curwin->w_curswant != MAXCOL)
8326 curwin->w_set_curswant = TRUE; /* in case 'tabstop' changed */
8327 check_redraw(options[opt_idx].flags);
8329 return errmsg;
8333 * Called after an option changed: check if something needs to be redrawn.
8335 static void
8336 check_redraw(flags)
8337 long_u flags;
8339 /* Careful: P_RCLR and P_RALL are a combination of other P_ flags */
8340 int clear = (flags & P_RCLR) == P_RCLR;
8341 int all = ((flags & P_RALL) == P_RALL || clear);
8343 #ifdef FEAT_WINDOWS
8344 if ((flags & P_RSTAT) || all) /* mark all status lines dirty */
8345 status_redraw_all();
8346 #endif
8348 if ((flags & P_RBUF) || (flags & P_RWIN) || all)
8349 changed_window_setting();
8350 if (flags & P_RBUF)
8351 redraw_curbuf_later(NOT_VALID);
8352 if (clear)
8353 redraw_all_later(CLEAR);
8354 else if (all)
8355 redraw_all_later(NOT_VALID);
8359 * Find index for option 'arg'.
8360 * Return -1 if not found.
8362 static int
8363 findoption(arg)
8364 char_u *arg;
8366 int opt_idx;
8367 char *s, *p;
8368 static short quick_tab[27] = {0, 0}; /* quick access table */
8369 int is_term_opt;
8372 * For first call: Initialize the quick-access table.
8373 * It contains the index for the first option that starts with a certain
8374 * letter. There are 26 letters, plus the first "t_" option.
8376 if (quick_tab[1] == 0)
8378 p = options[0].fullname;
8379 for (opt_idx = 1; (s = options[opt_idx].fullname) != NULL; opt_idx++)
8381 if (s[0] != p[0])
8383 if (s[0] == 't' && s[1] == '_')
8384 quick_tab[26] = opt_idx;
8385 else
8386 quick_tab[CharOrdLow(s[0])] = opt_idx;
8388 p = s;
8393 * Check for name starting with an illegal character.
8395 #ifdef EBCDIC
8396 if (!islower(arg[0]))
8397 #else
8398 if (arg[0] < 'a' || arg[0] > 'z')
8399 #endif
8400 return -1;
8402 is_term_opt = (arg[0] == 't' && arg[1] == '_');
8403 if (is_term_opt)
8404 opt_idx = quick_tab[26];
8405 else
8406 opt_idx = quick_tab[CharOrdLow(arg[0])];
8407 for ( ; (s = options[opt_idx].fullname) != NULL; opt_idx++)
8409 if (STRCMP(arg, s) == 0) /* match full name */
8410 break;
8412 if (s == NULL && !is_term_opt)
8414 opt_idx = quick_tab[CharOrdLow(arg[0])];
8415 for ( ; options[opt_idx].fullname != NULL; opt_idx++)
8417 s = options[opt_idx].shortname;
8418 if (s != NULL && STRCMP(arg, s) == 0) /* match short name */
8419 break;
8420 s = NULL;
8423 if (s == NULL)
8424 opt_idx = -1;
8425 return opt_idx;
8428 #if defined(FEAT_EVAL) || defined(FEAT_TCL) || defined(FEAT_MZSCHEME)
8430 * Get the value for an option.
8432 * Returns:
8433 * Number or Toggle option: 1, *numval gets value.
8434 * String option: 0, *stringval gets allocated string.
8435 * Hidden Number or Toggle option: -1.
8436 * hidden String option: -2.
8437 * unknown option: -3.
8440 get_option_value(name, numval, stringval, opt_flags)
8441 char_u *name;
8442 long *numval;
8443 char_u **stringval; /* NULL when only checking existance */
8444 int opt_flags;
8446 int opt_idx;
8447 char_u *varp;
8449 opt_idx = findoption(name);
8450 if (opt_idx < 0) /* unknown option */
8451 return -3;
8453 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
8455 if (options[opt_idx].flags & P_STRING)
8457 if (varp == NULL) /* hidden option */
8458 return -2;
8459 if (stringval != NULL)
8461 #ifdef FEAT_CRYPT
8462 /* never return the value of the crypt key */
8463 if ((char_u **)varp == &curbuf->b_p_key
8464 && **(char_u **)(varp) != NUL)
8465 *stringval = vim_strsave((char_u *)"*****");
8466 else
8467 #endif
8468 *stringval = vim_strsave(*(char_u **)(varp));
8470 return 0;
8473 if (varp == NULL) /* hidden option */
8474 return -1;
8475 if (options[opt_idx].flags & P_NUM)
8476 *numval = *(long *)varp;
8477 else
8479 /* Special case: 'modified' is b_changed, but we also want to consider
8480 * it set when 'ff' or 'fenc' changed. */
8481 if ((int *)varp == &curbuf->b_changed)
8482 *numval = curbufIsChanged();
8483 else
8484 *numval = *(int *)varp;
8486 return 1;
8488 #endif
8491 * Set the value of option "name".
8492 * Use "string" for string options, use "number" for other options.
8494 void
8495 set_option_value(name, number, string, opt_flags)
8496 char_u *name;
8497 long number;
8498 char_u *string;
8499 int opt_flags; /* OPT_LOCAL or 0 (both) */
8501 int opt_idx;
8502 char_u *varp;
8503 long_u flags;
8505 opt_idx = findoption(name);
8506 if (opt_idx < 0)
8507 EMSG2(_("E355: Unknown option: %s"), name);
8508 else
8510 flags = options[opt_idx].flags;
8511 #ifdef HAVE_SANDBOX
8512 /* Disallow changing some options in the sandbox */
8513 if (sandbox > 0 && (flags & P_SECURE))
8515 EMSG(_(e_sandbox));
8516 return;
8518 #endif
8519 if (flags & P_STRING)
8520 set_string_option(opt_idx, string, opt_flags);
8521 else
8523 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
8524 if (varp != NULL) /* hidden option is not changed */
8526 if (number == 0 && string != NULL)
8528 int idx;
8530 /* Either we are given a string or we are setting option
8531 * to zero. */
8532 for (idx = 0; string[idx] == '0'; ++idx)
8534 if (string[idx] != NUL || idx == 0)
8536 /* There's another character after zeros or the string
8537 * is empty. In both cases, we are trying to set a
8538 * num option using a string. */
8539 EMSG3(_("E521: Number required: &%s = '%s'"),
8540 name, string);
8541 return; /* do nothing as we hit an error */
8545 if (flags & P_NUM)
8546 (void)set_num_option(opt_idx, varp, number,
8547 NULL, 0, opt_flags);
8548 else
8549 (void)set_bool_option(opt_idx, varp, (int)number,
8550 opt_flags);
8557 * Get the terminal code for a terminal option.
8558 * Returns NULL when not found.
8560 char_u *
8561 get_term_code(tname)
8562 char_u *tname;
8564 int opt_idx;
8565 char_u *varp;
8567 if (tname[0] != 't' || tname[1] != '_' ||
8568 tname[2] == NUL || tname[3] == NUL)
8569 return NULL;
8570 if ((opt_idx = findoption(tname)) >= 0)
8572 varp = get_varp(&(options[opt_idx]));
8573 if (varp != NULL)
8574 varp = *(char_u **)(varp);
8575 return varp;
8577 return find_termcode(tname + 2);
8580 char_u *
8581 get_highlight_default()
8583 int i;
8585 i = findoption((char_u *)"hl");
8586 if (i >= 0)
8587 return options[i].def_val[VI_DEFAULT];
8588 return (char_u *)NULL;
8591 #if defined(FEAT_MBYTE) || defined(PROTO)
8592 char_u *
8593 get_encoding_default()
8595 int i;
8597 i = findoption((char_u *)"enc");
8598 if (i >= 0)
8599 return options[i].def_val[VI_DEFAULT];
8600 return (char_u *)NULL;
8602 #endif
8605 * Translate a string like "t_xx", "<t_xx>" or "<S-Tab>" to a key number.
8607 static int
8608 find_key_option(arg)
8609 char_u *arg;
8611 int key;
8612 int modifiers;
8615 * Don't use get_special_key_code() for t_xx, we don't want it to call
8616 * add_termcap_entry().
8618 if (arg[0] == 't' && arg[1] == '_' && arg[2] && arg[3])
8619 key = TERMCAP2KEY(arg[2], arg[3]);
8620 else
8622 --arg; /* put arg at the '<' */
8623 modifiers = 0;
8624 key = find_special_key(&arg, &modifiers, TRUE, TRUE);
8625 if (modifiers) /* can't handle modifiers here */
8626 key = 0;
8628 return key;
8632 * if 'all' == 0: show changed options
8633 * if 'all' == 1: show all normal options
8634 * if 'all' == 2: show all terminal options
8636 static void
8637 showoptions(all, opt_flags)
8638 int all;
8639 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
8641 struct vimoption *p;
8642 int col;
8643 int isterm;
8644 char_u *varp;
8645 struct vimoption **items;
8646 int item_count;
8647 int run;
8648 int row, rows;
8649 int cols;
8650 int i;
8651 int len;
8653 #define INC 20
8654 #define GAP 3
8656 items = (struct vimoption **)alloc((unsigned)(sizeof(struct vimoption *) *
8657 PARAM_COUNT));
8658 if (items == NULL)
8659 return;
8661 /* Highlight title */
8662 if (all == 2)
8663 MSG_PUTS_TITLE(_("\n--- Terminal codes ---"));
8664 else if (opt_flags & OPT_GLOBAL)
8665 MSG_PUTS_TITLE(_("\n--- Global option values ---"));
8666 else if (opt_flags & OPT_LOCAL)
8667 MSG_PUTS_TITLE(_("\n--- Local option values ---"));
8668 else
8669 MSG_PUTS_TITLE(_("\n--- Options ---"));
8672 * do the loop two times:
8673 * 1. display the short items
8674 * 2. display the long items (only strings and numbers)
8676 for (run = 1; run <= 2 && !got_int; ++run)
8679 * collect the items in items[]
8681 item_count = 0;
8682 for (p = &options[0]; p->fullname != NULL; p++)
8684 varp = NULL;
8685 isterm = istermoption(p);
8686 if (opt_flags != 0)
8688 if (p->indir != PV_NONE && !isterm)
8689 varp = get_varp_scope(p, opt_flags);
8691 else
8692 varp = get_varp(p);
8693 if (varp != NULL
8694 && ((all == 2 && isterm)
8695 || (all == 1 && !isterm)
8696 || (all == 0 && !optval_default(p, varp))))
8698 if (p->flags & P_BOOL)
8699 len = 1; /* a toggle option fits always */
8700 else
8702 option_value2string(p, opt_flags);
8703 len = (int)STRLEN(p->fullname) + vim_strsize(NameBuff) + 1;
8705 if ((len <= INC - GAP && run == 1) ||
8706 (len > INC - GAP && run == 2))
8707 items[item_count++] = p;
8712 * display the items
8714 if (run == 1)
8716 cols = (Columns + GAP - 3) / INC;
8717 if (cols == 0)
8718 cols = 1;
8719 rows = (item_count + cols - 1) / cols;
8721 else /* run == 2 */
8722 rows = item_count;
8723 for (row = 0; row < rows && !got_int; ++row)
8725 msg_putchar('\n'); /* go to next line */
8726 if (got_int) /* 'q' typed in more */
8727 break;
8728 col = 0;
8729 for (i = row; i < item_count; i += rows)
8731 msg_col = col; /* make columns */
8732 showoneopt(items[i], opt_flags);
8733 col += INC;
8735 out_flush();
8736 ui_breakcheck();
8739 vim_free(items);
8743 * Return TRUE if option "p" has its default value.
8745 static int
8746 optval_default(p, varp)
8747 struct vimoption *p;
8748 char_u *varp;
8750 int dvi;
8752 if (varp == NULL)
8753 return TRUE; /* hidden option is always at default */
8754 dvi = ((p->flags & P_VI_DEF) || p_cp) ? VI_DEFAULT : VIM_DEFAULT;
8755 if (p->flags & P_NUM)
8756 return (*(long *)varp == (long)(long_i)p->def_val[dvi]);
8757 if (p->flags & P_BOOL)
8758 /* the cast to long is required for Manx C, long_i is
8759 * needed for MSVC */
8760 return (*(int *)varp == (int)(long)(long_i)p->def_val[dvi]);
8761 /* P_STRING */
8762 return (STRCMP(*(char_u **)varp, p->def_val[dvi]) == 0);
8766 * showoneopt: show the value of one option
8767 * must not be called with a hidden option!
8769 static void
8770 showoneopt(p, opt_flags)
8771 struct vimoption *p;
8772 int opt_flags; /* OPT_LOCAL or OPT_GLOBAL */
8774 char_u *varp;
8775 int save_silent = silent_mode;
8777 silent_mode = FALSE;
8778 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
8780 varp = get_varp_scope(p, opt_flags);
8782 /* for 'modified' we also need to check if 'ff' or 'fenc' changed. */
8783 if ((p->flags & P_BOOL) && ((int *)varp == &curbuf->b_changed
8784 ? !curbufIsChanged() : !*(int *)varp))
8785 MSG_PUTS("no");
8786 else if ((p->flags & P_BOOL) && *(int *)varp < 0)
8787 MSG_PUTS("--");
8788 else
8789 MSG_PUTS(" ");
8790 MSG_PUTS(p->fullname);
8791 if (!(p->flags & P_BOOL))
8793 msg_putchar('=');
8794 /* put value string in NameBuff */
8795 option_value2string(p, opt_flags);
8796 msg_outtrans(NameBuff);
8799 silent_mode = save_silent;
8800 info_message = FALSE;
8804 * Write modified options as ":set" commands to a file.
8806 * There are three values for "opt_flags":
8807 * OPT_GLOBAL: Write global option values and fresh values of
8808 * buffer-local options (used for start of a session
8809 * file).
8810 * OPT_GLOBAL + OPT_LOCAL: Idem, add fresh values of window-local options for
8811 * curwin (used for a vimrc file).
8812 * OPT_LOCAL: Write buffer-local option values for curbuf, fresh
8813 * and local values for window-local options of
8814 * curwin. Local values are also written when at the
8815 * default value, because a modeline or autocommand
8816 * may have set them when doing ":edit file" and the
8817 * user has set them back at the default or fresh
8818 * value.
8819 * When "local_only" is TRUE, don't write fresh
8820 * values, only local values (for ":mkview").
8821 * (fresh value = value used for a new buffer or window for a local option).
8823 * Return FAIL on error, OK otherwise.
8826 makeset(fd, opt_flags, local_only)
8827 FILE *fd;
8828 int opt_flags;
8829 int local_only;
8831 struct vimoption *p;
8832 char_u *varp; /* currently used value */
8833 char_u *varp_fresh; /* local value */
8834 char_u *varp_local = NULL; /* fresh value */
8835 char *cmd;
8836 int round;
8837 int pri;
8840 * The options that don't have a default (terminal name, columns, lines)
8841 * are never written. Terminal options are also not written.
8842 * Do the loop over "options[]" twice: once for options with the
8843 * P_PRI_MKRC flag and once without.
8845 for (pri = 1; pri >= 0; --pri)
8847 for (p = &options[0]; !istermoption(p); p++)
8848 if (!(p->flags & P_NO_MKRC)
8849 && !istermoption(p)
8850 && ((pri == 1) == ((p->flags & P_PRI_MKRC) != 0)))
8852 /* skip global option when only doing locals */
8853 if (p->indir == PV_NONE && !(opt_flags & OPT_GLOBAL))
8854 continue;
8856 /* Do not store options like 'bufhidden' and 'syntax' in a vimrc
8857 * file, they are always buffer-specific. */
8858 if ((opt_flags & OPT_GLOBAL) && (p->flags & P_NOGLOB))
8859 continue;
8861 /* Global values are only written when not at the default value. */
8862 varp = get_varp_scope(p, opt_flags);
8863 if ((opt_flags & OPT_GLOBAL) && optval_default(p, varp))
8864 continue;
8866 round = 2;
8867 if (p->indir != PV_NONE)
8869 if (p->var == VAR_WIN)
8871 /* skip window-local option when only doing globals */
8872 if (!(opt_flags & OPT_LOCAL))
8873 continue;
8874 /* When fresh value of window-local option is not at the
8875 * default, need to write it too. */
8876 if (!(opt_flags & OPT_GLOBAL) && !local_only)
8878 varp_fresh = get_varp_scope(p, OPT_GLOBAL);
8879 if (!optval_default(p, varp_fresh))
8881 round = 1;
8882 varp_local = varp;
8883 varp = varp_fresh;
8889 /* Round 1: fresh value for window-local options.
8890 * Round 2: other values */
8891 for ( ; round <= 2; varp = varp_local, ++round)
8893 if (round == 1 || (opt_flags & OPT_GLOBAL))
8894 cmd = "set";
8895 else
8896 cmd = "setlocal";
8898 if (p->flags & P_BOOL)
8900 if (put_setbool(fd, cmd, p->fullname, *(int *)varp) == FAIL)
8901 return FAIL;
8903 else if (p->flags & P_NUM)
8905 if (put_setnum(fd, cmd, p->fullname, (long *)varp) == FAIL)
8906 return FAIL;
8908 else /* P_STRING */
8910 #if defined(FEAT_SYN_HL) || defined(FEAT_AUTOCMD)
8911 int do_endif = FALSE;
8913 /* Don't set 'syntax' and 'filetype' again if the value is
8914 * already right, avoids reloading the syntax file. */
8915 if (
8916 # if defined(FEAT_SYN_HL)
8917 p->indir == PV_SYN
8918 # if defined(FEAT_AUTOCMD)
8920 # endif
8921 # endif
8922 # if defined(FEAT_AUTOCMD)
8923 p->indir == PV_FT
8924 # endif
8927 if (fprintf(fd, "if &%s != '%s'", p->fullname,
8928 *(char_u **)(varp)) < 0
8929 || put_eol(fd) < 0)
8930 return FAIL;
8931 do_endif = TRUE;
8933 #endif
8934 if (put_setstring(fd, cmd, p->fullname, (char_u **)varp,
8935 (p->flags & P_EXPAND) != 0) == FAIL)
8936 return FAIL;
8937 #if defined(FEAT_SYN_HL) || defined(FEAT_AUTOCMD)
8938 if (do_endif)
8940 if (put_line(fd, "endif") == FAIL)
8941 return FAIL;
8943 #endif
8948 return OK;
8951 #if defined(FEAT_FOLDING) || defined(PROTO)
8953 * Generate set commands for the local fold options only. Used when
8954 * 'sessionoptions' or 'viewoptions' contains "folds" but not "options".
8957 makefoldset(fd)
8958 FILE *fd;
8960 if (put_setstring(fd, "setlocal", "fdm", &curwin->w_p_fdm, FALSE) == FAIL
8961 # ifdef FEAT_EVAL
8962 || put_setstring(fd, "setlocal", "fde", &curwin->w_p_fde, FALSE)
8963 == FAIL
8964 # endif
8965 || put_setstring(fd, "setlocal", "fmr", &curwin->w_p_fmr, FALSE)
8966 == FAIL
8967 || put_setstring(fd, "setlocal", "fdi", &curwin->w_p_fdi, FALSE)
8968 == FAIL
8969 || put_setnum(fd, "setlocal", "fdl", &curwin->w_p_fdl) == FAIL
8970 || put_setnum(fd, "setlocal", "fml", &curwin->w_p_fml) == FAIL
8971 || put_setnum(fd, "setlocal", "fdn", &curwin->w_p_fdn) == FAIL
8972 || put_setbool(fd, "setlocal", "fen", curwin->w_p_fen) == FAIL
8974 return FAIL;
8976 return OK;
8978 #endif
8980 static int
8981 put_setstring(fd, cmd, name, valuep, expand)
8982 FILE *fd;
8983 char *cmd;
8984 char *name;
8985 char_u **valuep;
8986 int expand;
8988 char_u *s;
8989 char_u buf[MAXPATHL];
8991 if (fprintf(fd, "%s %s=", cmd, name) < 0)
8992 return FAIL;
8993 if (*valuep != NULL)
8995 /* Output 'pastetoggle' as key names. For other
8996 * options some characters have to be escaped with
8997 * CTRL-V or backslash */
8998 if (valuep == &p_pt)
9000 s = *valuep;
9001 while (*s != NUL)
9002 if (put_escstr(fd, str2special(&s, FALSE), 2) == FAIL)
9003 return FAIL;
9005 else if (expand)
9007 home_replace(NULL, *valuep, buf, MAXPATHL, FALSE);
9008 if (put_escstr(fd, buf, 2) == FAIL)
9009 return FAIL;
9011 else if (put_escstr(fd, *valuep, 2) == FAIL)
9012 return FAIL;
9014 if (put_eol(fd) < 0)
9015 return FAIL;
9016 return OK;
9019 static int
9020 put_setnum(fd, cmd, name, valuep)
9021 FILE *fd;
9022 char *cmd;
9023 char *name;
9024 long *valuep;
9026 long wc;
9028 if (fprintf(fd, "%s %s=", cmd, name) < 0)
9029 return FAIL;
9030 if (wc_use_keyname((char_u *)valuep, &wc))
9032 /* print 'wildchar' and 'wildcharm' as a key name */
9033 if (fputs((char *)get_special_key_name((int)wc, 0), fd) < 0)
9034 return FAIL;
9036 else if (fprintf(fd, "%ld", *valuep) < 0)
9037 return FAIL;
9038 if (put_eol(fd) < 0)
9039 return FAIL;
9040 return OK;
9043 static int
9044 put_setbool(fd, cmd, name, value)
9045 FILE *fd;
9046 char *cmd;
9047 char *name;
9048 int value;
9050 if (value < 0) /* global/local option using global value */
9051 return OK;
9052 if (fprintf(fd, "%s %s%s", cmd, value ? "" : "no", name) < 0
9053 || put_eol(fd) < 0)
9054 return FAIL;
9055 return OK;
9059 * Clear all the terminal options.
9060 * If the option has been allocated, free the memory.
9061 * Terminal options are never hidden or indirect.
9063 void
9064 clear_termoptions()
9067 * Reset a few things before clearing the old options. This may cause
9068 * outputting a few things that the terminal doesn't understand, but the
9069 * screen will be cleared later, so this is OK.
9071 #ifdef FEAT_MOUSE_TTY
9072 mch_setmouse(FALSE); /* switch mouse off */
9073 #endif
9074 #ifdef FEAT_TITLE
9075 mch_restore_title(3); /* restore window titles */
9076 #endif
9077 #if defined(FEAT_XCLIPBOARD) && defined(FEAT_GUI)
9078 /* When starting the GUI close the display opened for the clipboard.
9079 * After restoring the title, because that will need the display. */
9080 if (gui.starting)
9081 clear_xterm_clip();
9082 #endif
9083 #ifdef WIN3264
9085 * Check if this is allowed now.
9087 if (can_end_termcap_mode(FALSE) == TRUE)
9088 #endif
9089 stoptermcap(); /* stop termcap mode */
9091 free_termoptions();
9094 void
9095 free_termoptions()
9097 struct vimoption *p;
9099 for (p = &options[0]; p->fullname != NULL; p++)
9100 if (istermoption(p))
9102 if (p->flags & P_ALLOCED)
9103 free_string_option(*(char_u **)(p->var));
9104 if (p->flags & P_DEF_ALLOCED)
9105 free_string_option(p->def_val[VI_DEFAULT]);
9106 *(char_u **)(p->var) = empty_option;
9107 p->def_val[VI_DEFAULT] = empty_option;
9108 p->flags &= ~(P_ALLOCED|P_DEF_ALLOCED);
9110 clear_termcodes();
9114 * Free the string for one term option, if it was allocated.
9115 * Set the string to empty_option and clear allocated flag.
9116 * "var" points to the option value.
9118 void
9119 free_one_termoption(var)
9120 char_u *var;
9122 struct vimoption *p;
9124 for (p = &options[0]; p->fullname != NULL; p++)
9125 if (p->var == var)
9127 if (p->flags & P_ALLOCED)
9128 free_string_option(*(char_u **)(p->var));
9129 *(char_u **)(p->var) = empty_option;
9130 p->flags &= ~P_ALLOCED;
9131 break;
9136 * Set the terminal option defaults to the current value.
9137 * Used after setting the terminal name.
9139 void
9140 set_term_defaults()
9142 struct vimoption *p;
9144 for (p = &options[0]; p->fullname != NULL; p++)
9146 if (istermoption(p) && p->def_val[VI_DEFAULT] != *(char_u **)(p->var))
9148 if (p->flags & P_DEF_ALLOCED)
9150 free_string_option(p->def_val[VI_DEFAULT]);
9151 p->flags &= ~P_DEF_ALLOCED;
9153 p->def_val[VI_DEFAULT] = *(char_u **)(p->var);
9154 if (p->flags & P_ALLOCED)
9156 p->flags |= P_DEF_ALLOCED;
9157 p->flags &= ~P_ALLOCED; /* don't free the value now */
9164 * return TRUE if 'p' starts with 't_'
9166 static int
9167 istermoption(p)
9168 struct vimoption *p;
9170 return (p->fullname[0] == 't' && p->fullname[1] == '_');
9174 * Compute columns for ruler and shown command. 'sc_col' is also used to
9175 * decide what the maximum length of a message on the status line can be.
9176 * If there is a status line for the last window, 'sc_col' is independent
9177 * of 'ru_col'.
9180 #define COL_RULER 17 /* columns needed by standard ruler */
9182 void
9183 comp_col()
9185 #if defined(FEAT_CMDL_INFO) && defined(FEAT_WINDOWS)
9186 int last_has_status = (p_ls == 2 || (p_ls == 1 && firstwin != lastwin));
9188 sc_col = 0;
9189 ru_col = 0;
9190 if (p_ru)
9192 #ifdef FEAT_STL_OPT
9193 ru_col = (ru_wid ? ru_wid : COL_RULER) + 1;
9194 #else
9195 ru_col = COL_RULER + 1;
9196 #endif
9197 /* no last status line, adjust sc_col */
9198 if (!last_has_status)
9199 sc_col = ru_col;
9201 if (p_sc)
9203 sc_col += SHOWCMD_COLS;
9204 if (!p_ru || last_has_status) /* no need for separating space */
9205 ++sc_col;
9207 sc_col = Columns - sc_col;
9208 ru_col = Columns - ru_col;
9209 if (sc_col <= 0) /* screen too narrow, will become a mess */
9210 sc_col = 1;
9211 if (ru_col <= 0)
9212 ru_col = 1;
9213 #else
9214 sc_col = Columns;
9215 ru_col = Columns;
9216 #endif
9220 * Get pointer to option variable, depending on local or global scope.
9222 static char_u *
9223 get_varp_scope(p, opt_flags)
9224 struct vimoption *p;
9225 int opt_flags;
9227 if ((opt_flags & OPT_GLOBAL) && p->indir != PV_NONE)
9229 if (p->var == VAR_WIN)
9230 return (char_u *)GLOBAL_WO(get_varp(p));
9231 return p->var;
9233 if ((opt_flags & OPT_LOCAL) && ((int)p->indir & PV_BOTH))
9235 switch ((int)p->indir)
9237 #ifdef FEAT_QUICKFIX
9238 case PV_EFM: return (char_u *)&(curbuf->b_p_efm);
9239 case PV_GP: return (char_u *)&(curbuf->b_p_gp);
9240 case PV_MP: return (char_u *)&(curbuf->b_p_mp);
9241 #endif
9242 case PV_EP: return (char_u *)&(curbuf->b_p_ep);
9243 case PV_KP: return (char_u *)&(curbuf->b_p_kp);
9244 case PV_PATH: return (char_u *)&(curbuf->b_p_path);
9245 case PV_AR: return (char_u *)&(curbuf->b_p_ar);
9246 case PV_TAGS: return (char_u *)&(curbuf->b_p_tags);
9247 #ifdef FEAT_FIND_ID
9248 case PV_DEF: return (char_u *)&(curbuf->b_p_def);
9249 case PV_INC: return (char_u *)&(curbuf->b_p_inc);
9250 #endif
9251 #ifdef FEAT_INS_EXPAND
9252 case PV_DICT: return (char_u *)&(curbuf->b_p_dict);
9253 case PV_TSR: return (char_u *)&(curbuf->b_p_tsr);
9254 #endif
9255 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9256 case PV_BEXPR: return (char_u *)&(curbuf->b_p_bexpr);
9257 #endif
9258 #ifdef FEAT_STL_OPT
9259 case PV_STL: return (char_u *)&(curwin->w_p_stl);
9260 #endif
9262 return NULL; /* "cannot happen" */
9264 return get_varp(p);
9268 * Get pointer to option variable.
9270 static char_u *
9271 get_varp(p)
9272 struct vimoption *p;
9274 /* hidden option, always return NULL */
9275 if (p->var == NULL)
9276 return NULL;
9278 switch ((int)p->indir)
9280 case PV_NONE: return p->var;
9282 /* global option with local value: use local value if it's been set */
9283 case PV_EP: return *curbuf->b_p_ep != NUL
9284 ? (char_u *)&curbuf->b_p_ep : p->var;
9285 case PV_KP: return *curbuf->b_p_kp != NUL
9286 ? (char_u *)&curbuf->b_p_kp : p->var;
9287 case PV_PATH: return *curbuf->b_p_path != NUL
9288 ? (char_u *)&(curbuf->b_p_path) : p->var;
9289 case PV_AR: return curbuf->b_p_ar >= 0
9290 ? (char_u *)&(curbuf->b_p_ar) : p->var;
9291 case PV_TAGS: return *curbuf->b_p_tags != NUL
9292 ? (char_u *)&(curbuf->b_p_tags) : p->var;
9293 #ifdef FEAT_FIND_ID
9294 case PV_DEF: return *curbuf->b_p_def != NUL
9295 ? (char_u *)&(curbuf->b_p_def) : p->var;
9296 case PV_INC: return *curbuf->b_p_inc != NUL
9297 ? (char_u *)&(curbuf->b_p_inc) : p->var;
9298 #endif
9299 #ifdef FEAT_INS_EXPAND
9300 case PV_DICT: return *curbuf->b_p_dict != NUL
9301 ? (char_u *)&(curbuf->b_p_dict) : p->var;
9302 case PV_TSR: return *curbuf->b_p_tsr != NUL
9303 ? (char_u *)&(curbuf->b_p_tsr) : p->var;
9304 #endif
9305 #ifdef FEAT_QUICKFIX
9306 case PV_EFM: return *curbuf->b_p_efm != NUL
9307 ? (char_u *)&(curbuf->b_p_efm) : p->var;
9308 case PV_GP: return *curbuf->b_p_gp != NUL
9309 ? (char_u *)&(curbuf->b_p_gp) : p->var;
9310 case PV_MP: return *curbuf->b_p_mp != NUL
9311 ? (char_u *)&(curbuf->b_p_mp) : p->var;
9312 #endif
9313 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9314 case PV_BEXPR: return *curbuf->b_p_bexpr != NUL
9315 ? (char_u *)&(curbuf->b_p_bexpr) : p->var;
9316 #endif
9317 #ifdef FEAT_STL_OPT
9318 case PV_STL: return *curwin->w_p_stl != NUL
9319 ? (char_u *)&(curwin->w_p_stl) : p->var;
9320 #endif
9322 #ifdef FEAT_ARABIC
9323 case PV_ARAB: return (char_u *)&(curwin->w_p_arab);
9324 #endif
9325 case PV_LIST: return (char_u *)&(curwin->w_p_list);
9326 #ifdef FEAT_SPELL
9327 case PV_SPELL: return (char_u *)&(curwin->w_p_spell);
9328 #endif
9329 #ifdef FEAT_SYN_HL
9330 case PV_CUC: return (char_u *)&(curwin->w_p_cuc);
9331 case PV_CUL: return (char_u *)&(curwin->w_p_cul);
9332 #endif
9333 #ifdef FEAT_DIFF
9334 case PV_DIFF: return (char_u *)&(curwin->w_p_diff);
9335 #endif
9336 #ifdef FEAT_FOLDING
9337 case PV_FDC: return (char_u *)&(curwin->w_p_fdc);
9338 case PV_FEN: return (char_u *)&(curwin->w_p_fen);
9339 case PV_FDI: return (char_u *)&(curwin->w_p_fdi);
9340 case PV_FDL: return (char_u *)&(curwin->w_p_fdl);
9341 case PV_FDM: return (char_u *)&(curwin->w_p_fdm);
9342 case PV_FML: return (char_u *)&(curwin->w_p_fml);
9343 case PV_FDN: return (char_u *)&(curwin->w_p_fdn);
9344 # ifdef FEAT_EVAL
9345 case PV_FDE: return (char_u *)&(curwin->w_p_fde);
9346 case PV_FDT: return (char_u *)&(curwin->w_p_fdt);
9347 # endif
9348 case PV_FMR: return (char_u *)&(curwin->w_p_fmr);
9349 #endif
9350 case PV_NU: return (char_u *)&(curwin->w_p_nu);
9351 #ifdef FEAT_LINEBREAK
9352 case PV_NUW: return (char_u *)&(curwin->w_p_nuw);
9353 #endif
9354 #ifdef FEAT_WINDOWS
9355 case PV_WFH: return (char_u *)&(curwin->w_p_wfh);
9356 #endif
9357 #ifdef FEAT_VERTSPLIT
9358 case PV_WFW: return (char_u *)&(curwin->w_p_wfw);
9359 #endif
9360 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
9361 case PV_PVW: return (char_u *)&(curwin->w_p_pvw);
9362 #endif
9363 #ifdef FEAT_RIGHTLEFT
9364 case PV_RL: return (char_u *)&(curwin->w_p_rl);
9365 case PV_RLC: return (char_u *)&(curwin->w_p_rlc);
9366 #endif
9367 case PV_SCROLL: return (char_u *)&(curwin->w_p_scr);
9368 case PV_WRAP: return (char_u *)&(curwin->w_p_wrap);
9369 #ifdef FEAT_LINEBREAK
9370 case PV_LBR: return (char_u *)&(curwin->w_p_lbr);
9371 #endif
9372 #ifdef FEAT_SCROLLBIND
9373 case PV_SCBIND: return (char_u *)&(curwin->w_p_scb);
9374 #endif
9376 case PV_AI: return (char_u *)&(curbuf->b_p_ai);
9377 case PV_BIN: return (char_u *)&(curbuf->b_p_bin);
9378 #ifdef FEAT_MBYTE
9379 case PV_BOMB: return (char_u *)&(curbuf->b_p_bomb);
9380 #endif
9381 #if defined(FEAT_QUICKFIX)
9382 case PV_BH: return (char_u *)&(curbuf->b_p_bh);
9383 case PV_BT: return (char_u *)&(curbuf->b_p_bt);
9384 #endif
9385 case PV_BL: return (char_u *)&(curbuf->b_p_bl);
9386 case PV_CI: return (char_u *)&(curbuf->b_p_ci);
9387 #ifdef FEAT_CINDENT
9388 case PV_CIN: return (char_u *)&(curbuf->b_p_cin);
9389 case PV_CINK: return (char_u *)&(curbuf->b_p_cink);
9390 case PV_CINO: return (char_u *)&(curbuf->b_p_cino);
9391 #endif
9392 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
9393 case PV_CINW: return (char_u *)&(curbuf->b_p_cinw);
9394 #endif
9395 #ifdef FEAT_COMMENTS
9396 case PV_COM: return (char_u *)&(curbuf->b_p_com);
9397 #endif
9398 #ifdef FEAT_FOLDING
9399 case PV_CMS: return (char_u *)&(curbuf->b_p_cms);
9400 #endif
9401 #ifdef FEAT_INS_EXPAND
9402 case PV_CPT: return (char_u *)&(curbuf->b_p_cpt);
9403 #endif
9404 #ifdef FEAT_COMPL_FUNC
9405 case PV_CFU: return (char_u *)&(curbuf->b_p_cfu);
9406 case PV_OFU: return (char_u *)&(curbuf->b_p_ofu);
9407 #endif
9408 case PV_EOL: return (char_u *)&(curbuf->b_p_eol);
9409 case PV_ET: return (char_u *)&(curbuf->b_p_et);
9410 #ifdef FEAT_MBYTE
9411 case PV_FENC: return (char_u *)&(curbuf->b_p_fenc);
9412 #endif
9413 case PV_FF: return (char_u *)&(curbuf->b_p_ff);
9414 #ifdef FEAT_AUTOCMD
9415 case PV_FT: return (char_u *)&(curbuf->b_p_ft);
9416 #endif
9417 case PV_FO: return (char_u *)&(curbuf->b_p_fo);
9418 case PV_FLP: return (char_u *)&(curbuf->b_p_flp);
9419 case PV_IMI: return (char_u *)&(curbuf->b_p_iminsert);
9420 case PV_IMS: return (char_u *)&(curbuf->b_p_imsearch);
9421 case PV_INF: return (char_u *)&(curbuf->b_p_inf);
9422 case PV_ISK: return (char_u *)&(curbuf->b_p_isk);
9423 #ifdef FEAT_FIND_ID
9424 # ifdef FEAT_EVAL
9425 case PV_INEX: return (char_u *)&(curbuf->b_p_inex);
9426 # endif
9427 #endif
9428 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
9429 case PV_INDE: return (char_u *)&(curbuf->b_p_inde);
9430 case PV_INDK: return (char_u *)&(curbuf->b_p_indk);
9431 #endif
9432 #ifdef FEAT_EVAL
9433 case PV_FEX: return (char_u *)&(curbuf->b_p_fex);
9434 #endif
9435 #ifdef FEAT_CRYPT
9436 case PV_KEY: return (char_u *)&(curbuf->b_p_key);
9437 #endif
9438 #ifdef FEAT_LISP
9439 case PV_LISP: return (char_u *)&(curbuf->b_p_lisp);
9440 #endif
9441 case PV_ML: return (char_u *)&(curbuf->b_p_ml);
9442 case PV_MPS: return (char_u *)&(curbuf->b_p_mps);
9443 case PV_MA: return (char_u *)&(curbuf->b_p_ma);
9444 case PV_MOD: return (char_u *)&(curbuf->b_changed);
9445 case PV_NF: return (char_u *)&(curbuf->b_p_nf);
9446 #ifdef FEAT_OSFILETYPE
9447 case PV_OFT: return (char_u *)&(curbuf->b_p_oft);
9448 #endif
9449 case PV_PI: return (char_u *)&(curbuf->b_p_pi);
9450 #ifdef FEAT_TEXTOBJ
9451 case PV_QE: return (char_u *)&(curbuf->b_p_qe);
9452 #endif
9453 case PV_RO: return (char_u *)&(curbuf->b_p_ro);
9454 #ifdef FEAT_SMARTINDENT
9455 case PV_SI: return (char_u *)&(curbuf->b_p_si);
9456 #endif
9457 #ifndef SHORT_FNAME
9458 case PV_SN: return (char_u *)&(curbuf->b_p_sn);
9459 #endif
9460 case PV_STS: return (char_u *)&(curbuf->b_p_sts);
9461 #ifdef FEAT_SEARCHPATH
9462 case PV_SUA: return (char_u *)&(curbuf->b_p_sua);
9463 #endif
9464 case PV_SWF: return (char_u *)&(curbuf->b_p_swf);
9465 #ifdef FEAT_SYN_HL
9466 case PV_SMC: return (char_u *)&(curbuf->b_p_smc);
9467 case PV_SYN: return (char_u *)&(curbuf->b_p_syn);
9468 #endif
9469 #ifdef FEAT_SPELL
9470 case PV_SPC: return (char_u *)&(curbuf->b_p_spc);
9471 case PV_SPF: return (char_u *)&(curbuf->b_p_spf);
9472 case PV_SPL: return (char_u *)&(curbuf->b_p_spl);
9473 #endif
9474 case PV_SW: return (char_u *)&(curbuf->b_p_sw);
9475 case PV_TS: return (char_u *)&(curbuf->b_p_ts);
9476 case PV_TW: return (char_u *)&(curbuf->b_p_tw);
9477 case PV_TX: return (char_u *)&(curbuf->b_p_tx);
9478 case PV_WM: return (char_u *)&(curbuf->b_p_wm);
9479 #ifdef FEAT_KEYMAP
9480 case PV_KMAP: return (char_u *)&(curbuf->b_p_keymap);
9481 #endif
9482 #ifdef FEAT_VARTABS
9483 case PV_VSTS: return (char_u *)&(curbuf->b_p_vsts);
9484 case PV_VTS: return (char_u *)&(curbuf->b_p_vts);
9485 #endif
9486 default: EMSG(_("E356: get_varp ERROR"));
9488 /* always return a valid pointer to avoid a crash! */
9489 return (char_u *)&(curbuf->b_p_wm);
9493 * Get the value of 'equalprg', either the buffer-local one or the global one.
9495 char_u *
9496 get_equalprg()
9498 if (*curbuf->b_p_ep == NUL)
9499 return p_ep;
9500 return curbuf->b_p_ep;
9503 #if defined(FEAT_WINDOWS) || defined(PROTO)
9505 * Copy options from one window to another.
9506 * Used when splitting a window.
9508 void
9509 win_copy_options(wp_from, wp_to)
9510 win_T *wp_from;
9511 win_T *wp_to;
9513 copy_winopt(&wp_from->w_onebuf_opt, &wp_to->w_onebuf_opt);
9514 copy_winopt(&wp_from->w_allbuf_opt, &wp_to->w_allbuf_opt);
9515 # ifdef FEAT_RIGHTLEFT
9516 # ifdef FEAT_FKMAP
9517 /* Is this right? */
9518 wp_to->w_farsi = wp_from->w_farsi;
9519 # endif
9520 # endif
9522 #endif
9525 * Copy the options from one winopt_T to another.
9526 * Doesn't free the old option values in "to", use clear_winopt() for that.
9527 * The 'scroll' option is not copied, because it depends on the window height.
9528 * The 'previewwindow' option is reset, there can be only one preview window.
9530 void
9531 copy_winopt(from, to)
9532 winopt_T *from;
9533 winopt_T *to;
9535 #ifdef FEAT_ARABIC
9536 to->wo_arab = from->wo_arab;
9537 #endif
9538 to->wo_list = from->wo_list;
9539 to->wo_nu = from->wo_nu;
9540 #ifdef FEAT_LINEBREAK
9541 to->wo_nuw = from->wo_nuw;
9542 #endif
9543 #ifdef FEAT_RIGHTLEFT
9544 to->wo_rl = from->wo_rl;
9545 to->wo_rlc = vim_strsave(from->wo_rlc);
9546 #endif
9547 #ifdef FEAT_STL_OPT
9548 to->wo_stl = vim_strsave(from->wo_stl);
9549 #endif
9550 to->wo_wrap = from->wo_wrap;
9551 #ifdef FEAT_LINEBREAK
9552 to->wo_lbr = from->wo_lbr;
9553 #endif
9554 #ifdef FEAT_SCROLLBIND
9555 to->wo_scb = from->wo_scb;
9556 #endif
9557 #ifdef FEAT_SPELL
9558 to->wo_spell = from->wo_spell;
9559 #endif
9560 #ifdef FEAT_SYN_HL
9561 to->wo_cuc = from->wo_cuc;
9562 to->wo_cul = from->wo_cul;
9563 #endif
9564 #ifdef FEAT_DIFF
9565 to->wo_diff = from->wo_diff;
9566 #endif
9567 #ifdef FEAT_FOLDING
9568 to->wo_fdc = from->wo_fdc;
9569 to->wo_fen = from->wo_fen;
9570 to->wo_fdi = vim_strsave(from->wo_fdi);
9571 to->wo_fml = from->wo_fml;
9572 to->wo_fdl = from->wo_fdl;
9573 to->wo_fdm = vim_strsave(from->wo_fdm);
9574 to->wo_fdn = from->wo_fdn;
9575 # ifdef FEAT_EVAL
9576 to->wo_fde = vim_strsave(from->wo_fde);
9577 to->wo_fdt = vim_strsave(from->wo_fdt);
9578 # endif
9579 to->wo_fmr = vim_strsave(from->wo_fmr);
9580 #endif
9581 check_winopt(to); /* don't want NULL pointers */
9585 * Check string options in a window for a NULL value.
9587 void
9588 check_win_options(win)
9589 win_T *win;
9591 check_winopt(&win->w_onebuf_opt);
9592 check_winopt(&win->w_allbuf_opt);
9596 * Check for NULL pointers in a winopt_T and replace them with empty_option.
9598 void
9599 check_winopt(wop)
9600 winopt_T *wop UNUSED;
9602 #ifdef FEAT_FOLDING
9603 check_string_option(&wop->wo_fdi);
9604 check_string_option(&wop->wo_fdm);
9605 # ifdef FEAT_EVAL
9606 check_string_option(&wop->wo_fde);
9607 check_string_option(&wop->wo_fdt);
9608 # endif
9609 check_string_option(&wop->wo_fmr);
9610 #endif
9611 #ifdef FEAT_RIGHTLEFT
9612 check_string_option(&wop->wo_rlc);
9613 #endif
9614 #ifdef FEAT_STL_OPT
9615 check_string_option(&wop->wo_stl);
9616 #endif
9620 * Free the allocated memory inside a winopt_T.
9622 void
9623 clear_winopt(wop)
9624 winopt_T *wop UNUSED;
9626 #ifdef FEAT_FOLDING
9627 clear_string_option(&wop->wo_fdi);
9628 clear_string_option(&wop->wo_fdm);
9629 # ifdef FEAT_EVAL
9630 clear_string_option(&wop->wo_fde);
9631 clear_string_option(&wop->wo_fdt);
9632 # endif
9633 clear_string_option(&wop->wo_fmr);
9634 #endif
9635 #ifdef FEAT_RIGHTLEFT
9636 clear_string_option(&wop->wo_rlc);
9637 #endif
9638 #ifdef FEAT_STL_OPT
9639 clear_string_option(&wop->wo_stl);
9640 #endif
9644 * Copy global option values to local options for one buffer.
9645 * Used when creating a new buffer and sometimes when entering a buffer.
9646 * flags:
9647 * BCO_ENTER We will enter the buf buffer.
9648 * BCO_ALWAYS Always copy the options, but only set b_p_initialized when
9649 * appropriate.
9650 * BCO_NOHELP Don't copy the values to a help buffer.
9652 void
9653 buf_copy_options(buf, flags)
9654 buf_T *buf;
9655 int flags;
9657 int should_copy = TRUE;
9658 char_u *save_p_isk = NULL; /* init for GCC */
9659 int dont_do_help;
9660 int did_isk = FALSE;
9663 * Don't do anything of the buffer is invalid.
9665 if (buf == NULL || !buf_valid(buf))
9666 return;
9669 * Skip this when the option defaults have not been set yet. Happens when
9670 * main() allocates the first buffer.
9672 if (p_cpo != NULL)
9675 * Always copy when entering and 'cpo' contains 'S'.
9676 * Don't copy when already initialized.
9677 * Don't copy when 'cpo' contains 's' and not entering.
9678 * 'S' BCO_ENTER initialized 's' should_copy
9679 * yes yes X X TRUE
9680 * yes no yes X FALSE
9681 * no X yes X FALSE
9682 * X no no yes FALSE
9683 * X no no no TRUE
9684 * no yes no X TRUE
9686 if ((vim_strchr(p_cpo, CPO_BUFOPTGLOB) == NULL || !(flags & BCO_ENTER))
9687 && (buf->b_p_initialized
9688 || (!(flags & BCO_ENTER)
9689 && vim_strchr(p_cpo, CPO_BUFOPT) != NULL)))
9690 should_copy = FALSE;
9692 if (should_copy || (flags & BCO_ALWAYS))
9694 /* Don't copy the options specific to a help buffer when
9695 * BCO_NOHELP is given or the options were initialized already
9696 * (jumping back to a help file with CTRL-T or CTRL-O) */
9697 dont_do_help = ((flags & BCO_NOHELP) && buf->b_help)
9698 || buf->b_p_initialized;
9699 if (dont_do_help) /* don't free b_p_isk */
9701 save_p_isk = buf->b_p_isk;
9702 buf->b_p_isk = NULL;
9705 * Always free the allocated strings.
9706 * If not already initialized, set 'readonly' and copy 'fileformat'.
9708 if (!buf->b_p_initialized)
9710 free_buf_options(buf, TRUE);
9711 buf->b_p_ro = FALSE; /* don't copy readonly */
9712 buf->b_p_tx = p_tx;
9713 #ifdef FEAT_MBYTE
9714 buf->b_p_fenc = vim_strsave(p_fenc);
9715 #endif
9716 buf->b_p_ff = vim_strsave(p_ff);
9717 #if defined(FEAT_QUICKFIX)
9718 buf->b_p_bh = empty_option;
9719 buf->b_p_bt = empty_option;
9720 #endif
9722 else
9723 free_buf_options(buf, FALSE);
9725 buf->b_p_ai = p_ai;
9726 buf->b_p_ai_nopaste = p_ai_nopaste;
9727 buf->b_p_sw = p_sw;
9728 buf->b_p_tw = p_tw;
9729 buf->b_p_tw_nopaste = p_tw_nopaste;
9730 buf->b_p_tw_nobin = p_tw_nobin;
9731 buf->b_p_wm = p_wm;
9732 buf->b_p_wm_nopaste = p_wm_nopaste;
9733 buf->b_p_wm_nobin = p_wm_nobin;
9734 buf->b_p_bin = p_bin;
9735 #ifdef FEAT_MBYTE
9736 buf->b_p_bomb = p_bomb;
9737 #endif
9738 buf->b_p_et = p_et;
9739 buf->b_p_et_nobin = p_et_nobin;
9740 buf->b_p_ml = p_ml;
9741 buf->b_p_ml_nobin = p_ml_nobin;
9742 buf->b_p_inf = p_inf;
9743 buf->b_p_swf = p_swf;
9744 #ifdef FEAT_INS_EXPAND
9745 buf->b_p_cpt = vim_strsave(p_cpt);
9746 #endif
9747 #ifdef FEAT_COMPL_FUNC
9748 buf->b_p_cfu = vim_strsave(p_cfu);
9749 buf->b_p_ofu = vim_strsave(p_ofu);
9750 #endif
9751 buf->b_p_sts = p_sts;
9752 buf->b_p_sts_nopaste = p_sts_nopaste;
9753 #ifdef FEAT_VARTABS
9754 buf->b_p_vsts = vim_strsave(p_vsts);
9755 if (p_vsts && p_vsts != empty_option)
9756 tabstop_set(p_vsts, &buf->b_p_vsts_ary);
9757 else
9758 buf->b_p_vsts_ary = 0;
9759 buf->b_p_vsts_nopaste = p_vsts_nopaste
9760 ? vim_strsave(p_vsts_nopaste) : NULL;
9761 #endif
9762 #ifndef SHORT_FNAME
9763 buf->b_p_sn = p_sn;
9764 #endif
9765 #ifdef FEAT_COMMENTS
9766 buf->b_p_com = vim_strsave(p_com);
9767 #endif
9768 #ifdef FEAT_FOLDING
9769 buf->b_p_cms = vim_strsave(p_cms);
9770 #endif
9771 buf->b_p_fo = vim_strsave(p_fo);
9772 buf->b_p_flp = vim_strsave(p_flp);
9773 buf->b_p_nf = vim_strsave(p_nf);
9774 buf->b_p_mps = vim_strsave(p_mps);
9775 #ifdef FEAT_SMARTINDENT
9776 buf->b_p_si = p_si;
9777 #endif
9778 buf->b_p_ci = p_ci;
9779 #ifdef FEAT_CINDENT
9780 buf->b_p_cin = p_cin;
9781 buf->b_p_cink = vim_strsave(p_cink);
9782 buf->b_p_cino = vim_strsave(p_cino);
9783 #endif
9784 #ifdef FEAT_AUTOCMD
9785 /* Don't copy 'filetype', it must be detected */
9786 buf->b_p_ft = empty_option;
9787 #endif
9788 #ifdef FEAT_OSFILETYPE
9789 buf->b_p_oft = vim_strsave(p_oft);
9790 #endif
9791 buf->b_p_pi = p_pi;
9792 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
9793 buf->b_p_cinw = vim_strsave(p_cinw);
9794 #endif
9795 #ifdef FEAT_LISP
9796 buf->b_p_lisp = p_lisp;
9797 #endif
9798 #ifdef FEAT_SYN_HL
9799 /* Don't copy 'syntax', it must be set */
9800 buf->b_p_syn = empty_option;
9801 buf->b_p_smc = p_smc;
9802 #endif
9803 #ifdef FEAT_SPELL
9804 buf->b_p_spc = vim_strsave(p_spc);
9805 (void)compile_cap_prog(buf);
9806 buf->b_p_spf = vim_strsave(p_spf);
9807 buf->b_p_spl = vim_strsave(p_spl);
9808 #endif
9809 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
9810 buf->b_p_inde = vim_strsave(p_inde);
9811 buf->b_p_indk = vim_strsave(p_indk);
9812 #endif
9813 #if defined(FEAT_EVAL)
9814 buf->b_p_fex = vim_strsave(p_fex);
9815 #endif
9816 #ifdef FEAT_CRYPT
9817 buf->b_p_key = vim_strsave(p_key);
9818 #endif
9819 #ifdef FEAT_SEARCHPATH
9820 buf->b_p_sua = vim_strsave(p_sua);
9821 #endif
9822 #ifdef FEAT_KEYMAP
9823 buf->b_p_keymap = vim_strsave(p_keymap);
9824 buf->b_kmap_state |= KEYMAP_INIT;
9825 #endif
9826 /* This isn't really an option, but copying the langmap and IME
9827 * state from the current buffer is better than resetting it. */
9828 buf->b_p_iminsert = p_iminsert;
9829 buf->b_p_imsearch = p_imsearch;
9831 /* options that are normally global but also have a local value
9832 * are not copied, start using the global value */
9833 buf->b_p_ar = -1;
9834 #ifdef FEAT_QUICKFIX
9835 buf->b_p_gp = empty_option;
9836 buf->b_p_mp = empty_option;
9837 buf->b_p_efm = empty_option;
9838 #endif
9839 buf->b_p_ep = empty_option;
9840 buf->b_p_kp = empty_option;
9841 buf->b_p_path = empty_option;
9842 buf->b_p_tags = empty_option;
9843 #ifdef FEAT_FIND_ID
9844 buf->b_p_def = empty_option;
9845 buf->b_p_inc = empty_option;
9846 # ifdef FEAT_EVAL
9847 buf->b_p_inex = vim_strsave(p_inex);
9848 # endif
9849 #endif
9850 #ifdef FEAT_INS_EXPAND
9851 buf->b_p_dict = empty_option;
9852 buf->b_p_tsr = empty_option;
9853 #endif
9854 #ifdef FEAT_TEXTOBJ
9855 buf->b_p_qe = vim_strsave(p_qe);
9856 #endif
9857 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9858 buf->b_p_bexpr = empty_option;
9859 #endif
9862 * Don't copy the options set by ex_help(), use the saved values,
9863 * when going from a help buffer to a non-help buffer.
9864 * Don't touch these at all when BCO_NOHELP is used and going from
9865 * or to a help buffer.
9867 if (dont_do_help)
9869 buf->b_p_isk = save_p_isk;
9870 #ifdef FEAT_VARTABS
9871 if (p_vts && p_vts != empty_option && !buf->b_p_vts_ary)
9872 tabstop_set(p_vts, &buf->b_p_vts_ary);
9873 else
9874 buf->b_p_vts_ary = 0;
9875 #endif
9877 else
9879 buf->b_p_isk = vim_strsave(p_isk);
9880 did_isk = TRUE;
9881 buf->b_p_ts = p_ts;
9882 #ifdef FEAT_VARTABS
9883 buf->b_p_vts = vim_strsave(p_vts);
9884 if (p_vts && p_vts != empty_option && !buf->b_p_vts_ary)
9885 tabstop_set(p_vts, &buf->b_p_vts_ary);
9886 else
9887 buf->b_p_vts_ary = 0;
9888 #endif
9889 buf->b_help = FALSE;
9890 #ifdef FEAT_QUICKFIX
9891 if (buf->b_p_bt[0] == 'h')
9892 clear_string_option(&buf->b_p_bt);
9893 #endif
9894 buf->b_p_ma = p_ma;
9899 * When the options should be copied (ignoring BCO_ALWAYS), set the
9900 * flag that indicates that the options have been initialized.
9902 if (should_copy)
9903 buf->b_p_initialized = TRUE;
9906 check_buf_options(buf); /* make sure we don't have NULLs */
9907 if (did_isk)
9908 (void)buf_init_chartab(buf, FALSE);
9912 * Reset the 'modifiable' option and its default value.
9914 void
9915 reset_modifiable()
9917 int opt_idx;
9919 curbuf->b_p_ma = FALSE;
9920 p_ma = FALSE;
9921 opt_idx = findoption((char_u *)"ma");
9922 if (opt_idx >= 0)
9923 options[opt_idx].def_val[VI_DEFAULT] = FALSE;
9927 * Set the global value for 'iminsert' to the local value.
9929 void
9930 set_iminsert_global()
9932 p_iminsert = curbuf->b_p_iminsert;
9936 * Set the global value for 'imsearch' to the local value.
9938 void
9939 set_imsearch_global()
9941 p_imsearch = curbuf->b_p_imsearch;
9944 #if defined(FEAT_CMDL_COMPL) || defined(PROTO)
9945 static int expand_option_idx = -1;
9946 static char_u expand_option_name[5] = {'t', '_', NUL, NUL, NUL};
9947 static int expand_option_flags = 0;
9949 void
9950 set_context_in_set_cmd(xp, arg, opt_flags)
9951 expand_T *xp;
9952 char_u *arg;
9953 int opt_flags; /* OPT_GLOBAL and/or OPT_LOCAL */
9955 int nextchar;
9956 long_u flags = 0; /* init for GCC */
9957 int opt_idx = 0; /* init for GCC */
9958 char_u *p;
9959 char_u *s;
9960 int is_term_option = FALSE;
9961 int key;
9963 expand_option_flags = opt_flags;
9965 xp->xp_context = EXPAND_SETTINGS;
9966 if (*arg == NUL)
9968 xp->xp_pattern = arg;
9969 return;
9971 p = arg + STRLEN(arg) - 1;
9972 if (*p == ' ' && *(p - 1) != '\\')
9974 xp->xp_pattern = p + 1;
9975 return;
9977 while (p > arg)
9979 s = p;
9980 /* count number of backslashes before ' ' or ',' */
9981 if (*p == ' ' || *p == ',')
9983 while (s > arg && *(s - 1) == '\\')
9984 --s;
9986 /* break at a space with an even number of backslashes */
9987 if (*p == ' ' && ((p - s) & 1) == 0)
9989 ++p;
9990 break;
9992 --p;
9994 if (STRNCMP(p, "no", 2) == 0 && STRNCMP(p, "novice", 6) != 0)
9996 xp->xp_context = EXPAND_BOOL_SETTINGS;
9997 p += 2;
9999 if (STRNCMP(p, "inv", 3) == 0)
10001 xp->xp_context = EXPAND_BOOL_SETTINGS;
10002 p += 3;
10004 xp->xp_pattern = arg = p;
10005 if (*arg == '<')
10007 while (*p != '>')
10008 if (*p++ == NUL) /* expand terminal option name */
10009 return;
10010 key = get_special_key_code(arg + 1);
10011 if (key == 0) /* unknown name */
10013 xp->xp_context = EXPAND_NOTHING;
10014 return;
10016 nextchar = *++p;
10017 is_term_option = TRUE;
10018 expand_option_name[2] = KEY2TERMCAP0(key);
10019 expand_option_name[3] = KEY2TERMCAP1(key);
10021 else
10023 if (p[0] == 't' && p[1] == '_')
10025 p += 2;
10026 if (*p != NUL)
10027 ++p;
10028 if (*p == NUL)
10029 return; /* expand option name */
10030 nextchar = *++p;
10031 is_term_option = TRUE;
10032 expand_option_name[2] = p[-2];
10033 expand_option_name[3] = p[-1];
10035 else
10037 /* Allow * wildcard */
10038 while (ASCII_ISALNUM(*p) || *p == '_' || *p == '*')
10039 p++;
10040 if (*p == NUL)
10041 return;
10042 nextchar = *p;
10043 *p = NUL;
10044 opt_idx = findoption(arg);
10045 *p = nextchar;
10046 if (opt_idx == -1 || options[opt_idx].var == NULL)
10048 xp->xp_context = EXPAND_NOTHING;
10049 return;
10051 flags = options[opt_idx].flags;
10052 if (flags & P_BOOL)
10054 xp->xp_context = EXPAND_NOTHING;
10055 return;
10059 /* handle "-=" and "+=" */
10060 if ((nextchar == '-' || nextchar == '+' || nextchar == '^') && p[1] == '=')
10062 ++p;
10063 nextchar = '=';
10065 if ((nextchar != '=' && nextchar != ':')
10066 || xp->xp_context == EXPAND_BOOL_SETTINGS)
10068 xp->xp_context = EXPAND_UNSUCCESSFUL;
10069 return;
10071 if (xp->xp_context != EXPAND_BOOL_SETTINGS && p[1] == NUL)
10073 xp->xp_context = EXPAND_OLD_SETTING;
10074 if (is_term_option)
10075 expand_option_idx = -1;
10076 else
10077 expand_option_idx = opt_idx;
10078 xp->xp_pattern = p + 1;
10079 return;
10081 xp->xp_context = EXPAND_NOTHING;
10082 if (is_term_option || (flags & P_NUM))
10083 return;
10085 xp->xp_pattern = p + 1;
10087 if (flags & P_EXPAND)
10089 p = options[opt_idx].var;
10090 if (p == (char_u *)&p_bdir
10091 || p == (char_u *)&p_dir
10092 || p == (char_u *)&p_path
10093 || p == (char_u *)&p_rtp
10094 #ifdef FEAT_SEARCHPATH
10095 || p == (char_u *)&p_cdpath
10096 #endif
10097 #ifdef FEAT_SESSION
10098 || p == (char_u *)&p_vdir
10099 #endif
10102 xp->xp_context = EXPAND_DIRECTORIES;
10103 if (p == (char_u *)&p_path
10104 #ifdef FEAT_SEARCHPATH
10105 || p == (char_u *)&p_cdpath
10106 #endif
10108 xp->xp_backslash = XP_BS_THREE;
10109 else
10110 xp->xp_backslash = XP_BS_ONE;
10112 else
10114 xp->xp_context = EXPAND_FILES;
10115 /* for 'tags' need three backslashes for a space */
10116 if (p == (char_u *)&p_tags)
10117 xp->xp_backslash = XP_BS_THREE;
10118 else
10119 xp->xp_backslash = XP_BS_ONE;
10123 /* For an option that is a list of file names, find the start of the
10124 * last file name. */
10125 for (p = arg + STRLEN(arg) - 1; p > xp->xp_pattern; --p)
10127 /* count number of backslashes before ' ' or ',' */
10128 if (*p == ' ' || *p == ',')
10130 s = p;
10131 while (s > xp->xp_pattern && *(s - 1) == '\\')
10132 --s;
10133 if ((*p == ' ' && (xp->xp_backslash == XP_BS_THREE && (p - s) < 3))
10134 || (*p == ',' && (flags & P_COMMA) && ((p - s) & 1) == 0))
10136 xp->xp_pattern = p + 1;
10137 break;
10141 #ifdef FEAT_SPELL
10142 /* for 'spellsuggest' start at "file:" */
10143 if (options[opt_idx].var == (char_u *)&p_sps
10144 && STRNCMP(p, "file:", 5) == 0)
10146 xp->xp_pattern = p + 5;
10147 break;
10149 #endif
10152 return;
10156 ExpandSettings(xp, regmatch, num_file, file)
10157 expand_T *xp;
10158 regmatch_T *regmatch;
10159 int *num_file;
10160 char_u ***file;
10162 int num_normal = 0; /* Nr of matching non-term-code settings */
10163 int num_term = 0; /* Nr of matching terminal code settings */
10164 int opt_idx;
10165 int match;
10166 int count = 0;
10167 char_u *str;
10168 int loop;
10169 int is_term_opt;
10170 char_u name_buf[MAX_KEY_NAME_LEN];
10171 static char *(names[]) = {"all", "termcap"};
10172 int ic = regmatch->rm_ic; /* remember the ignore-case flag */
10174 /* do this loop twice:
10175 * loop == 0: count the number of matching options
10176 * loop == 1: copy the matching options into allocated memory
10178 for (loop = 0; loop <= 1; ++loop)
10180 regmatch->rm_ic = ic;
10181 if (xp->xp_context != EXPAND_BOOL_SETTINGS)
10183 for (match = 0; match < (int)(sizeof(names) / sizeof(char *));
10184 ++match)
10185 if (vim_regexec(regmatch, (char_u *)names[match], (colnr_T)0))
10187 if (loop == 0)
10188 num_normal++;
10189 else
10190 (*file)[count++] = vim_strsave((char_u *)names[match]);
10193 for (opt_idx = 0; (str = (char_u *)options[opt_idx].fullname) != NULL;
10194 opt_idx++)
10196 if (options[opt_idx].var == NULL)
10197 continue;
10198 if (xp->xp_context == EXPAND_BOOL_SETTINGS
10199 && !(options[opt_idx].flags & P_BOOL))
10200 continue;
10201 is_term_opt = istermoption(&options[opt_idx]);
10202 if (is_term_opt && num_normal > 0)
10203 continue;
10204 match = FALSE;
10205 if (vim_regexec(regmatch, str, (colnr_T)0)
10206 || (options[opt_idx].shortname != NULL
10207 && vim_regexec(regmatch,
10208 (char_u *)options[opt_idx].shortname, (colnr_T)0)))
10209 match = TRUE;
10210 else if (is_term_opt)
10212 name_buf[0] = '<';
10213 name_buf[1] = 't';
10214 name_buf[2] = '_';
10215 name_buf[3] = str[2];
10216 name_buf[4] = str[3];
10217 name_buf[5] = '>';
10218 name_buf[6] = NUL;
10219 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10221 match = TRUE;
10222 str = name_buf;
10225 if (match)
10227 if (loop == 0)
10229 if (is_term_opt)
10230 num_term++;
10231 else
10232 num_normal++;
10234 else
10235 (*file)[count++] = vim_strsave(str);
10239 * Check terminal key codes, these are not in the option table
10241 if (xp->xp_context != EXPAND_BOOL_SETTINGS && num_normal == 0)
10243 for (opt_idx = 0; (str = get_termcode(opt_idx)) != NULL; opt_idx++)
10245 if (!isprint(str[0]) || !isprint(str[1]))
10246 continue;
10248 name_buf[0] = 't';
10249 name_buf[1] = '_';
10250 name_buf[2] = str[0];
10251 name_buf[3] = str[1];
10252 name_buf[4] = NUL;
10254 match = FALSE;
10255 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10256 match = TRUE;
10257 else
10259 name_buf[0] = '<';
10260 name_buf[1] = 't';
10261 name_buf[2] = '_';
10262 name_buf[3] = str[0];
10263 name_buf[4] = str[1];
10264 name_buf[5] = '>';
10265 name_buf[6] = NUL;
10267 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10268 match = TRUE;
10270 if (match)
10272 if (loop == 0)
10273 num_term++;
10274 else
10275 (*file)[count++] = vim_strsave(name_buf);
10280 * Check special key names.
10282 regmatch->rm_ic = TRUE; /* ignore case here */
10283 for (opt_idx = 0; (str = get_key_name(opt_idx)) != NULL; opt_idx++)
10285 name_buf[0] = '<';
10286 STRCPY(name_buf + 1, str);
10287 STRCAT(name_buf, ">");
10289 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
10291 if (loop == 0)
10292 num_term++;
10293 else
10294 (*file)[count++] = vim_strsave(name_buf);
10298 if (loop == 0)
10300 if (num_normal > 0)
10301 *num_file = num_normal;
10302 else if (num_term > 0)
10303 *num_file = num_term;
10304 else
10305 return OK;
10306 *file = (char_u **)alloc((unsigned)(*num_file * sizeof(char_u *)));
10307 if (*file == NULL)
10309 *file = (char_u **)"";
10310 return FAIL;
10314 return OK;
10318 ExpandOldSetting(num_file, file)
10319 int *num_file;
10320 char_u ***file;
10322 char_u *var = NULL; /* init for GCC */
10323 char_u *buf;
10325 *num_file = 0;
10326 *file = (char_u **)alloc((unsigned)sizeof(char_u *));
10327 if (*file == NULL)
10328 return FAIL;
10331 * For a terminal key code expand_option_idx is < 0.
10333 if (expand_option_idx < 0)
10335 var = find_termcode(expand_option_name + 2);
10336 if (var == NULL)
10337 expand_option_idx = findoption(expand_option_name);
10340 if (expand_option_idx >= 0)
10342 /* put string of option value in NameBuff */
10343 option_value2string(&options[expand_option_idx], expand_option_flags);
10344 var = NameBuff;
10346 else if (var == NULL)
10347 var = (char_u *)"";
10349 /* A backslash is required before some characters. This is the reverse of
10350 * what happens in do_set(). */
10351 buf = vim_strsave_escaped(var, escape_chars);
10353 if (buf == NULL)
10355 vim_free(*file);
10356 *file = NULL;
10357 return FAIL;
10360 #ifdef BACKSLASH_IN_FILENAME
10361 /* For MS-Windows et al. we don't double backslashes at the start and
10362 * before a file name character. */
10363 for (var = buf; *var != NUL; mb_ptr_adv(var))
10364 if (var[0] == '\\' && var[1] == '\\'
10365 && expand_option_idx >= 0
10366 && (options[expand_option_idx].flags & P_EXPAND)
10367 && vim_isfilec(var[2])
10368 && (var[2] != '\\' || (var == buf && var[4] != '\\')))
10369 STRMOVE(var, var + 1);
10370 #endif
10372 *file[0] = buf;
10373 *num_file = 1;
10374 return OK;
10376 #endif
10379 * Get the value for the numeric or string option *opp in a nice format into
10380 * NameBuff[]. Must not be called with a hidden option!
10382 static void
10383 option_value2string(opp, opt_flags)
10384 struct vimoption *opp;
10385 int opt_flags; /* OPT_GLOBAL and/or OPT_LOCAL */
10387 char_u *varp;
10389 varp = get_varp_scope(opp, opt_flags);
10391 if (opp->flags & P_NUM)
10393 long wc = 0;
10395 if (wc_use_keyname(varp, &wc))
10396 STRCPY(NameBuff, get_special_key_name((int)wc, 0));
10397 else if (wc != 0)
10398 STRCPY(NameBuff, transchar((int)wc));
10399 else
10400 sprintf((char *)NameBuff, "%ld", *(long *)varp);
10402 else /* P_STRING */
10404 varp = *(char_u **)(varp);
10405 if (varp == NULL) /* just in case */
10406 NameBuff[0] = NUL;
10407 #ifdef FEAT_CRYPT
10408 /* don't show the actual value of 'key', only that it's set */
10409 else if (opp->var == (char_u *)&p_key && *varp)
10410 STRCPY(NameBuff, "*****");
10411 #endif
10412 else if (opp->flags & P_EXPAND)
10413 home_replace(NULL, varp, NameBuff, MAXPATHL, FALSE);
10414 /* Translate 'pastetoggle' into special key names */
10415 else if ((char_u **)opp->var == &p_pt)
10416 str2specialbuf(p_pt, NameBuff, MAXPATHL);
10417 else
10418 vim_strncpy(NameBuff, varp, MAXPATHL - 1);
10423 * Return TRUE if "varp" points to 'wildchar' or 'wildcharm' and it can be
10424 * printed as a keyname.
10425 * "*wcp" is set to the value of the option if it's 'wildchar' or 'wildcharm'.
10427 static int
10428 wc_use_keyname(varp, wcp)
10429 char_u *varp;
10430 long *wcp;
10432 if (((long *)varp == &p_wc) || ((long *)varp == &p_wcm))
10434 *wcp = *(long *)varp;
10435 if (IS_SPECIAL(*wcp) || find_special_key_in_table((int)*wcp) >= 0)
10436 return TRUE;
10438 return FALSE;
10441 #ifdef FEAT_LANGMAP
10443 * Any character has an equivalent 'langmap' character. This is used for
10444 * keyboards that have a special language mode that sends characters above
10445 * 128 (although other characters can be translated too). The "to" field is a
10446 * Vim command character. This avoids having to switch the keyboard back to
10447 * ASCII mode when leaving Insert mode.
10449 * langmap_mapchar[] maps any of 256 chars to an ASCII char used for Vim
10450 * commands.
10451 * When FEAT_MBYTE is defined langmap_mapga.ga_data is a sorted table of
10452 * langmap_entry_T. This does the same as langmap_mapchar[] for characters >=
10453 * 256.
10455 # ifdef FEAT_MBYTE
10457 * With multi-byte support use growarray for 'langmap' chars >= 256
10459 typedef struct
10461 int from;
10462 int to;
10463 } langmap_entry_T;
10465 static garray_T langmap_mapga;
10466 static void langmap_set_entry __ARGS((int from, int to));
10469 * Search for an entry in "langmap_mapga" for "from". If found set the "to"
10470 * field. If not found insert a new entry at the appropriate location.
10472 static void
10473 langmap_set_entry(from, to)
10474 int from;
10475 int to;
10477 langmap_entry_T *entries = (langmap_entry_T *)(langmap_mapga.ga_data);
10478 int a = 0;
10479 int b = langmap_mapga.ga_len;
10481 /* Do a binary search for an existing entry. */
10482 while (a != b)
10484 int i = (a + b) / 2;
10485 int d = entries[i].from - from;
10487 if (d == 0)
10489 entries[i].to = to;
10490 return;
10492 if (d < 0)
10493 a = i + 1;
10494 else
10495 b = i;
10498 if (ga_grow(&langmap_mapga, 1) != OK)
10499 return; /* out of memory */
10501 /* insert new entry at position "a" */
10502 entries = (langmap_entry_T *)(langmap_mapga.ga_data) + a;
10503 mch_memmove(entries + 1, entries,
10504 (langmap_mapga.ga_len - a) * sizeof(langmap_entry_T));
10505 ++langmap_mapga.ga_len;
10506 entries[0].from = from;
10507 entries[0].to = to;
10511 * Apply 'langmap' to multi-byte character "c" and return the result.
10514 langmap_adjust_mb(c)
10515 int c;
10517 langmap_entry_T *entries = (langmap_entry_T *)(langmap_mapga.ga_data);
10518 int a = 0;
10519 int b = langmap_mapga.ga_len;
10521 while (a != b)
10523 int i = (a + b) / 2;
10524 int d = entries[i].from - c;
10526 if (d == 0)
10527 return entries[i].to; /* found matching entry */
10528 if (d < 0)
10529 a = i + 1;
10530 else
10531 b = i;
10533 return c; /* no entry found, return "c" unmodified */
10535 # endif
10537 static void
10538 langmap_init()
10540 int i;
10542 for (i = 0; i < 256; i++)
10543 langmap_mapchar[i] = i; /* we init with a one-to-one map */
10544 # ifdef FEAT_MBYTE
10545 ga_init2(&langmap_mapga, sizeof(langmap_entry_T), 8);
10546 # endif
10550 * Called when langmap option is set; the language map can be
10551 * changed at any time!
10553 static void
10554 langmap_set()
10556 char_u *p;
10557 char_u *p2;
10558 int from, to;
10560 #ifdef FEAT_MBYTE
10561 ga_clear(&langmap_mapga); /* clear the previous map first */
10562 #endif
10563 langmap_init(); /* back to one-to-one map */
10565 for (p = p_langmap; p[0] != NUL; )
10567 for (p2 = p; p2[0] != NUL && p2[0] != ',' && p2[0] != ';';
10568 mb_ptr_adv(p2))
10570 if (p2[0] == '\\' && p2[1] != NUL)
10571 ++p2;
10573 if (p2[0] == ';')
10574 ++p2; /* abcd;ABCD form, p2 points to A */
10575 else
10576 p2 = NULL; /* aAbBcCdD form, p2 is NULL */
10577 while (p[0])
10579 if (p[0] == ',')
10581 ++p;
10582 break;
10584 if (p[0] == '\\' && p[1] != NUL)
10585 ++p;
10586 #ifdef FEAT_MBYTE
10587 from = (*mb_ptr2char)(p);
10588 #else
10589 from = p[0];
10590 #endif
10591 to = NUL;
10592 if (p2 == NULL)
10594 mb_ptr_adv(p);
10595 if (p[0] != ',')
10597 if (p[0] == '\\')
10598 ++p;
10599 #ifdef FEAT_MBYTE
10600 to = (*mb_ptr2char)(p);
10601 #else
10602 to = p[0];
10603 #endif
10606 else
10608 if (p2[0] != ',')
10610 if (p2[0] == '\\')
10611 ++p2;
10612 #ifdef FEAT_MBYTE
10613 to = (*mb_ptr2char)(p2);
10614 #else
10615 to = p2[0];
10616 #endif
10619 if (to == NUL)
10621 EMSG2(_("E357: 'langmap': Matching character missing for %s"),
10622 transchar(from));
10623 return;
10626 #ifdef FEAT_MBYTE
10627 if (from >= 256)
10628 langmap_set_entry(from, to);
10629 else
10630 #endif
10631 langmap_mapchar[from & 255] = to;
10633 /* Advance to next pair */
10634 mb_ptr_adv(p);
10635 if (p2 != NULL)
10637 mb_ptr_adv(p2);
10638 if (*p == ';')
10640 p = p2;
10641 if (p[0] != NUL)
10643 if (p[0] != ',')
10645 EMSG2(_("E358: 'langmap': Extra characters after semicolon: %s"), p);
10646 return;
10648 ++p;
10650 break;
10656 #endif
10659 * Return TRUE if format option 'x' is in effect.
10660 * Take care of no formatting when 'paste' is set.
10663 has_format_option(x)
10664 int x;
10666 if (p_paste)
10667 return FALSE;
10668 return (vim_strchr(curbuf->b_p_fo, x) != NULL);
10672 * Return TRUE if "x" is present in 'shortmess' option, or
10673 * 'shortmess' contains 'a' and "x" is present in SHM_A.
10676 shortmess(x)
10677 int x;
10679 return ( vim_strchr(p_shm, x) != NULL
10680 || (vim_strchr(p_shm, 'a') != NULL
10681 && vim_strchr((char_u *)SHM_A, x) != NULL));
10685 * paste_option_changed() - Called after p_paste was set or reset.
10687 static void
10688 paste_option_changed()
10690 static int old_p_paste = FALSE;
10691 static int save_sm = 0;
10692 #ifdef FEAT_CMDL_INFO
10693 static int save_ru = 0;
10694 #endif
10695 #ifdef FEAT_RIGHTLEFT
10696 static int save_ri = 0;
10697 static int save_hkmap = 0;
10698 #endif
10699 buf_T *buf;
10701 if (p_paste)
10704 * Paste switched from off to on.
10705 * Save the current values, so they can be restored later.
10707 if (!old_p_paste)
10709 /* save options for each buffer */
10710 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10712 buf->b_p_tw_nopaste = buf->b_p_tw;
10713 buf->b_p_wm_nopaste = buf->b_p_wm;
10714 buf->b_p_sts_nopaste = buf->b_p_sts;
10715 buf->b_p_ai_nopaste = buf->b_p_ai;
10716 #ifdef FEAT_VARTABS
10717 if (buf->b_p_vsts_nopaste)
10718 vim_free(buf->b_p_vsts_nopaste);
10719 buf->b_p_vsts_nopaste = buf->b_p_vsts && buf->b_p_vsts != empty_option
10720 ? vim_strsave(buf->b_p_vsts) : NULL;
10721 #endif
10724 /* save global options */
10725 save_sm = p_sm;
10726 #ifdef FEAT_CMDL_INFO
10727 save_ru = p_ru;
10728 #endif
10729 #ifdef FEAT_RIGHTLEFT
10730 save_ri = p_ri;
10731 save_hkmap = p_hkmap;
10732 #endif
10733 /* save global values for local buffer options */
10734 p_tw_nopaste = p_tw;
10735 p_wm_nopaste = p_wm;
10736 p_sts_nopaste = p_sts;
10737 p_ai_nopaste = p_ai;
10738 #ifdef FEAT_VARTABS
10739 if (p_vsts_nopaste)
10740 vim_free(p_vsts_nopaste);
10741 p_vsts_nopaste = p_vsts && p_vsts != empty_option ? vim_strsave(p_vsts) : NULL;
10742 #endif
10746 * Always set the option values, also when 'paste' is set when it is
10747 * already on.
10749 /* set options for each buffer */
10750 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10752 buf->b_p_tw = 0; /* textwidth is 0 */
10753 buf->b_p_wm = 0; /* wrapmargin is 0 */
10754 buf->b_p_sts = 0; /* softtabstop is 0 */
10755 buf->b_p_ai = 0; /* no auto-indent */
10756 #ifdef FEAT_VARTABS
10757 if (buf->b_p_vsts)
10758 free_string_option(buf->b_p_vsts);
10759 buf->b_p_vsts = empty_option;
10760 if (buf->b_p_vsts_ary)
10761 vim_free(buf->b_p_vsts_ary);
10762 buf->b_p_vsts_ary = 0;
10763 #endif
10766 /* set global options */
10767 p_sm = 0; /* no showmatch */
10768 #ifdef FEAT_CMDL_INFO
10769 # ifdef FEAT_WINDOWS
10770 if (p_ru)
10771 status_redraw_all(); /* redraw to remove the ruler */
10772 # endif
10773 p_ru = 0; /* no ruler */
10774 #endif
10775 #ifdef FEAT_RIGHTLEFT
10776 p_ri = 0; /* no reverse insert */
10777 p_hkmap = 0; /* no Hebrew keyboard */
10778 #endif
10779 /* set global values for local buffer options */
10780 p_tw = 0;
10781 p_wm = 0;
10782 p_sts = 0;
10783 p_ai = 0;
10784 #ifdef FEAT_VARTABS
10785 if (p_vsts)
10786 free_string_option(p_vsts);
10787 p_vsts = empty_option;
10788 #endif
10792 * Paste switched from on to off: Restore saved values.
10794 else if (old_p_paste)
10796 /* restore options for each buffer */
10797 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10799 buf->b_p_tw = buf->b_p_tw_nopaste;
10800 buf->b_p_wm = buf->b_p_wm_nopaste;
10801 buf->b_p_sts = buf->b_p_sts_nopaste;
10802 buf->b_p_ai = buf->b_p_ai_nopaste;
10803 #ifdef FEAT_VARTABS
10804 if (buf->b_p_vsts)
10805 free_string_option(buf->b_p_vsts);
10806 buf->b_p_vsts = buf->b_p_vsts_nopaste
10807 ? vim_strsave(buf->b_p_vsts_nopaste) : empty_option;
10808 if (buf->b_p_vsts_ary)
10809 vim_free(buf->b_p_vsts_ary);
10810 if (buf->b_p_vsts && buf->b_p_vsts != empty_option)
10811 tabstop_set(buf->b_p_vsts, &buf->b_p_vsts_ary);
10812 else
10813 buf->b_p_vsts_ary = 0;
10814 #endif
10817 /* restore global options */
10818 p_sm = save_sm;
10819 #ifdef FEAT_CMDL_INFO
10820 # ifdef FEAT_WINDOWS
10821 if (p_ru != save_ru)
10822 status_redraw_all(); /* redraw to draw the ruler */
10823 # endif
10824 p_ru = save_ru;
10825 #endif
10826 #ifdef FEAT_RIGHTLEFT
10827 p_ri = save_ri;
10828 p_hkmap = save_hkmap;
10829 #endif
10830 /* set global values for local buffer options */
10831 p_tw = p_tw_nopaste;
10832 p_wm = p_wm_nopaste;
10833 p_sts = p_sts_nopaste;
10834 p_ai = p_ai_nopaste;
10835 #ifdef FEAT_VARTABS
10836 if (p_vsts)
10837 free_string_option(p_vsts);
10838 p_vsts = p_vsts_nopaste ? vim_strsave(p_vsts_nopaste) : empty_option;
10839 #endif
10842 old_p_paste = p_paste;
10846 * vimrc_found() - Called when a ".vimrc" or "VIMINIT" has been found.
10848 * Reset 'compatible' and set the values for options that didn't get set yet
10849 * to the Vim defaults.
10850 * Don't do this if the 'compatible' option has been set or reset before.
10851 * When "fname" is not NULL, use it to set $"envname" when it wasn't set yet.
10853 void
10854 vimrc_found(fname, envname)
10855 char_u *fname;
10856 char_u *envname;
10858 int opt_idx;
10859 int dofree = FALSE;
10860 char_u *p;
10862 if (!option_was_set((char_u *)"cp"))
10864 p_cp = FALSE;
10865 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
10866 if (!(options[opt_idx].flags & (P_WAS_SET|P_VI_DEF)))
10867 set_option_default(opt_idx, OPT_FREE, FALSE);
10868 didset_options();
10871 if (fname != NULL)
10873 p = vim_getenv(envname, &dofree);
10874 if (p == NULL)
10876 /* Set $MYVIMRC to the first vimrc file found. */
10877 p = FullName_save(fname, FALSE);
10878 if (p != NULL)
10880 vim_setenv(envname, p);
10881 vim_free(p);
10884 else if (dofree)
10885 vim_free(p);
10890 * Set 'compatible' on or off. Called for "-C" and "-N" command line arg.
10892 void
10893 change_compatible(on)
10894 int on;
10896 int opt_idx;
10898 if (p_cp != on)
10900 p_cp = on;
10901 compatible_set();
10903 opt_idx = findoption((char_u *)"cp");
10904 if (opt_idx >= 0)
10905 options[opt_idx].flags |= P_WAS_SET;
10909 * Return TRUE when option "name" has been set.
10912 option_was_set(name)
10913 char_u *name;
10915 int idx;
10917 idx = findoption(name);
10918 if (idx < 0) /* unknown option */
10919 return FALSE;
10920 if (options[idx].flags & P_WAS_SET)
10921 return TRUE;
10922 return FALSE;
10926 * compatible_set() - Called when 'compatible' has been set or unset.
10928 * When 'compatible' set: Set all relevant options (those that have the P_VIM)
10929 * flag) to a Vi compatible value.
10930 * When 'compatible' is unset: Set all options that have a different default
10931 * for Vim (without the P_VI_DEF flag) to that default.
10933 static void
10934 compatible_set()
10936 int opt_idx;
10938 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
10939 if ( ((options[opt_idx].flags & P_VIM) && p_cp)
10940 || (!(options[opt_idx].flags & P_VI_DEF) && !p_cp))
10941 set_option_default(opt_idx, OPT_FREE, p_cp);
10942 didset_options();
10945 #ifdef FEAT_LINEBREAK
10947 # if defined(__BORLANDC__) && (__BORLANDC__ < 0x500)
10948 /* Borland C++ screws up loop optimisation here (negri) */
10949 #pragma option -O-l
10950 # endif
10953 * fill_breakat_flags() -- called when 'breakat' changes value.
10955 static void
10956 fill_breakat_flags()
10958 char_u *p;
10959 int i;
10961 for (i = 0; i < 256; i++)
10962 breakat_flags[i] = FALSE;
10964 if (p_breakat != NULL)
10965 for (p = p_breakat; *p; p++)
10966 breakat_flags[*p] = TRUE;
10969 # if defined(__BORLANDC__) && (__BORLANDC__ < 0x500)
10970 #pragma option -O.l
10971 # endif
10973 #endif
10976 * Check an option that can be a range of string values.
10978 * Return OK for correct value, FAIL otherwise.
10979 * Empty is always OK.
10981 static int
10982 check_opt_strings(val, values, list)
10983 char_u *val;
10984 char **values;
10985 int list; /* when TRUE: accept a list of values */
10987 return opt_strings_flags(val, values, NULL, list);
10991 * Handle an option that can be a range of string values.
10992 * Set a flag in "*flagp" for each string present.
10994 * Return OK for correct value, FAIL otherwise.
10995 * Empty is always OK.
10997 static int
10998 opt_strings_flags(val, values, flagp, list)
10999 char_u *val; /* new value */
11000 char **values; /* array of valid string values */
11001 unsigned *flagp;
11002 int list; /* when TRUE: accept a list of values */
11004 int i;
11005 int len;
11006 unsigned new_flags = 0;
11008 while (*val)
11010 for (i = 0; ; ++i)
11012 if (values[i] == NULL) /* val not found in values[] */
11013 return FAIL;
11015 len = (int)STRLEN(values[i]);
11016 if (STRNCMP(values[i], val, len) == 0
11017 && ((list && val[len] == ',') || val[len] == NUL))
11019 val += len + (val[len] == ',');
11020 new_flags |= (1 << i);
11021 break; /* check next item in val list */
11025 if (flagp != NULL)
11026 *flagp = new_flags;
11028 return OK;
11032 * Read the 'wildmode' option, fill wim_flags[].
11034 static int
11035 check_opt_wim()
11037 char_u new_wim_flags[4];
11038 char_u *p;
11039 int i;
11040 int idx = 0;
11042 for (i = 0; i < 4; ++i)
11043 new_wim_flags[i] = 0;
11045 for (p = p_wim; *p; ++p)
11047 for (i = 0; ASCII_ISALPHA(p[i]); ++i)
11049 if (p[i] != NUL && p[i] != ',' && p[i] != ':')
11050 return FAIL;
11051 if (i == 7 && STRNCMP(p, "longest", 7) == 0)
11052 new_wim_flags[idx] |= WIM_LONGEST;
11053 else if (i == 4 && STRNCMP(p, "full", 4) == 0)
11054 new_wim_flags[idx] |= WIM_FULL;
11055 else if (i == 4 && STRNCMP(p, "list", 4) == 0)
11056 new_wim_flags[idx] |= WIM_LIST;
11057 else
11058 return FAIL;
11059 p += i;
11060 if (*p == NUL)
11061 break;
11062 if (*p == ',')
11064 if (idx == 3)
11065 return FAIL;
11066 ++idx;
11070 /* fill remaining entries with last flag */
11071 while (idx < 3)
11073 new_wim_flags[idx + 1] = new_wim_flags[idx];
11074 ++idx;
11077 /* only when there are no errors, wim_flags[] is changed */
11078 for (i = 0; i < 4; ++i)
11079 wim_flags[i] = new_wim_flags[i];
11080 return OK;
11084 * Check if backspacing over something is allowed.
11087 can_bs(what)
11088 int what; /* BS_INDENT, BS_EOL or BS_START */
11090 switch (*p_bs)
11092 case '2': return TRUE;
11093 case '1': return (what != BS_START);
11094 case '0': return FALSE;
11096 return vim_strchr(p_bs, what) != NULL;
11100 * Save the current values of 'fileformat' and 'fileencoding', so that we know
11101 * the file must be considered changed when the value is different.
11103 void
11104 save_file_ff(buf)
11105 buf_T *buf;
11107 buf->b_start_ffc = *buf->b_p_ff;
11108 buf->b_start_eol = buf->b_p_eol;
11109 #ifdef FEAT_MBYTE
11110 buf->b_start_bomb = buf->b_p_bomb;
11112 /* Only use free/alloc when necessary, they take time. */
11113 if (buf->b_start_fenc == NULL
11114 || STRCMP(buf->b_start_fenc, buf->b_p_fenc) != 0)
11116 vim_free(buf->b_start_fenc);
11117 buf->b_start_fenc = vim_strsave(buf->b_p_fenc);
11119 #endif
11123 * Return TRUE if 'fileformat' and/or 'fileencoding' has a different value
11124 * from when editing started (save_file_ff() called).
11125 * Also when 'endofline' was changed and 'binary' is set, or when 'bomb' was
11126 * changed and 'binary' is not set.
11127 * Don't consider a new, empty buffer to be changed.
11130 file_ff_differs(buf)
11131 buf_T *buf;
11133 /* In a buffer that was never loaded the options are not valid. */
11134 if (buf->b_flags & BF_NEVERLOADED)
11135 return FALSE;
11136 if ((buf->b_flags & BF_NEW)
11137 && buf->b_ml.ml_line_count == 1
11138 && *ml_get_buf(buf, (linenr_T)1, FALSE) == NUL)
11139 return FALSE;
11140 if (buf->b_start_ffc != *buf->b_p_ff)
11141 return TRUE;
11142 if (buf->b_p_bin && buf->b_start_eol != buf->b_p_eol)
11143 return TRUE;
11144 #ifdef FEAT_MBYTE
11145 if (!buf->b_p_bin && buf->b_start_bomb != buf->b_p_bomb)
11146 return TRUE;
11147 if (buf->b_start_fenc == NULL)
11148 return (*buf->b_p_fenc != NUL);
11149 return (STRCMP(buf->b_start_fenc, buf->b_p_fenc) != 0);
11150 #else
11151 return FALSE;
11152 #endif
11156 * return OK if "p" is a valid fileformat name, FAIL otherwise.
11159 check_ff_value(p)
11160 char_u *p;
11162 return check_opt_strings(p, p_ff_values, FALSE);
11165 #ifdef FEAT_VARTABS
11168 * Set the integer values corresponding to the string setting of 'vartabstop'.
11171 tabstop_set(var, array)
11172 char_u *var;
11173 int **array;
11175 int valcount = 1;
11176 int t;
11177 char_u *cp;
11179 if ((!var[0] || (var[0] == '0' && !var[1])))
11181 *array = (int *)0;
11182 return TRUE;
11185 for (cp = var; *cp; ++cp)
11187 if (cp == var || *(cp - 1) == ',')
11188 if (atoi((char *)cp) <= 0)
11189 return FALSE;
11191 if (VIM_ISDIGIT(*cp))
11192 continue;
11193 if (*cp == ',' && cp > var && *(cp - 1) != ',')
11195 ++valcount;
11196 continue;
11198 return FALSE;
11201 *array = (int *) alloc((unsigned) ((valcount + 1) * sizeof(int)));
11202 (*array)[0] = valcount;
11204 t = 1;
11205 for (cp = var; *cp;)
11207 (*array)[t++] = atoi((char *)cp);
11208 while (*cp && *cp != ',')
11209 ++cp;
11210 if (*cp)
11211 ++cp;
11214 return TRUE;
11218 * Calculate the number of screen spaces a tab will occupy.
11219 * If vts is set then the tab widths are taken from that array,
11220 * otherwise the value of ts is used.
11223 tabstop_padding(col, ts, vts)
11224 colnr_T col;
11225 int ts;
11226 int *vts;
11228 int tabcount;
11229 colnr_T tabcol = 0;
11230 int t;
11231 int padding = 0;
11233 if (ts == 0)
11234 ts = 8;
11235 if (vts == 0 || vts[0] == 0)
11236 return ts - (col % ts);
11238 tabcount = vts[0];
11240 for (t = 1; t <= tabcount; ++t)
11242 tabcol += vts[t];
11243 if (tabcol > col)
11245 padding = (int)(tabcol - col);
11246 break;
11249 if (t > tabcount)
11250 padding = vts[tabcount] - (int)((col - tabcol) % vts[tabcount]);
11252 return padding;
11256 * Find the size of the tab that covers a particular column.
11259 tabstop_at(col, ts, vts)
11260 colnr_T col;
11261 int ts;
11262 int *vts;
11264 int tabcount;
11265 colnr_T tabcol = 0;
11266 int t;
11267 int tab_size = 0;
11269 if (vts == 0 || vts[0] == 0)
11270 return ts;
11272 tabcount = vts[0];
11273 for (t = 1; t <= tabcount; ++t)
11275 tabcol += vts[t];
11276 if (tabcol > col)
11278 tab_size = vts[t];
11279 break;
11282 if (t > tabcount)
11283 tab_size = vts[tabcount];
11285 return tab_size;
11289 * Find the column on which a tab starts.
11291 colnr_T
11292 tabstop_start(col, ts, vts)
11293 colnr_T col;
11294 int ts;
11295 int *vts;
11297 int tabcount;
11298 colnr_T tabcol = 0;
11299 int t;
11301 if (vts == 0 || vts[0] == 0)
11302 return (col / ts) * ts;
11304 tabcount = vts[0];
11305 for (t = 1; t <= tabcount; ++t)
11307 tabcol += vts[t];
11308 if (tabcol > col)
11309 return tabcol - vts[t];
11312 int excess = tabcol % vts[tabcount];
11313 return excess + ((col - excess) / vts[tabcount]) * vts[tabcount];
11317 * Find the number of tabs and spaces necessary to get from one column
11318 * to another.
11320 void
11321 tabstop_fromto(start_col, end_col, ts, vts, ntabs, nspcs)
11322 colnr_T start_col;
11323 colnr_T end_col;
11324 int ts;
11325 int *vts;
11326 int *ntabs;
11327 int *nspcs;
11329 int spaces = end_col - start_col;
11330 colnr_T tabcol = 0;
11331 int padding = 0;
11332 int tabcount;
11333 int t;
11335 if (vts == 0 || vts[0] == 0)
11337 int tabs = 0;
11338 int initspc = ts - (start_col % ts);
11339 if (spaces >= initspc)
11341 spaces -= initspc;
11342 tabs++;
11344 tabs += spaces / ts;
11345 spaces -= (spaces / ts) * ts;
11347 *ntabs = tabs;
11348 *nspcs = spaces;
11349 return;
11352 /* Find the padding needed to reach the next tabstop. */
11353 tabcount = vts[0];
11354 for (t = 1; t <= tabcount; ++t)
11356 tabcol += vts[t];
11357 if (tabcol > start_col)
11359 padding = (int)(tabcol - start_col);
11360 break;
11363 if (t > tabcount)
11364 padding = vts[tabcount] - (int)((start_col - tabcol) % vts[tabcount]);
11366 /* If the space needed is less than the padding no tabs can be used. */
11367 if (spaces < padding)
11369 *ntabs = 0;
11370 *nspcs = spaces;
11371 return;
11374 *ntabs = 1;
11375 spaces -= padding;
11377 /* At least one tab has been used. See if any more will fit. */
11378 while (spaces != 0 && ++t <= tabcount)
11380 padding = vts[t];
11381 if (spaces < padding)
11383 *nspcs = spaces;
11384 return;
11386 ++*ntabs;
11387 spaces -= padding;
11390 *ntabs += spaces / vts[tabcount];
11391 *nspcs = spaces % vts[tabcount];
11395 * See if two tabstop arrays contain the same values.
11398 tabstop_eq(ts1, ts2)
11399 int *ts1;
11400 int *ts2;
11402 int t;
11404 if ((ts1 == 0 && ts2) || (ts1 && ts2 == 0))
11405 return FALSE;
11406 if (ts1 == ts2)
11407 return TRUE;
11408 if (ts1[0] != ts2[0])
11409 return FALSE;
11411 for (t = 1; t <= ts1[0]; ++t)
11412 if (ts1[t] != ts2[t])
11413 return FALSE;
11415 return TRUE;
11419 * Copy a tabstop array, allocating space for the new array.
11421 int *
11422 tabstop_copy(oldts)
11423 int *oldts;
11425 int *newts;
11426 int t;
11428 if (oldts == 0)
11429 return 0;
11431 newts = (int *) alloc((unsigned) ((oldts[0] + 1) * sizeof(int)));
11432 for (t = 0; t <= oldts[0]; ++t)
11433 newts[t] = oldts[t];
11435 return newts;
11439 * Return a count of the number of tabstops.
11442 tabstop_count(ts)
11443 int *ts;
11445 return ts ? ts[0] : 0;
11449 * Return the first tabstop, or 8 if there are no tabstops defined.
11452 tabstop_first(ts)
11453 int *ts;
11455 return ts ? ts[1] : 8;
11458 #endif