blob: 1d2f2aaf74f3d2a2626fbb6689cc2e238ca067e9 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
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 */
9
10/*
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.
32 */
33
34#define IN_OPTION_C
35#include "vim.h"
36
37/*
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.
Bram Moolenaara23ccb82006-02-27 00:08:02 +000041 * PV_WIN is added: window-local option
42 * PV_BUF is added: buffer-local option
Bram Moolenaar071d4272004-06-13 20:20:40 +000043 * PV_BOTH is added: global option which also has a local value.
44 */
45#define PV_BOTH 0x1000
Bram Moolenaara23ccb82006-02-27 00:08:02 +000046#define PV_WIN 0x2000
47#define PV_BUF 0x4000
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000048#define PV_MASK 0x0fff
Bram Moolenaara23ccb82006-02-27 00:08:02 +000049#define OPT_WIN(x) (idopt_T)(PV_WIN + (int)(x))
50#define OPT_BUF(x) (idopt_T)(PV_BUF + (int)(x))
Bram Moolenaar071d4272004-06-13 20:20:40 +000051#define OPT_BOTH(x) (idopt_T)(PV_BOTH + (int)(x))
52
Bram Moolenaara23ccb82006-02-27 00:08:02 +000053/*
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000054 * Definition of the PV_ values for buffer-local options.
55 * The BV_ values are defined in option.h.
Bram Moolenaara23ccb82006-02-27 00:08:02 +000056 */
Bram Moolenaara23ccb82006-02-27 00:08:02 +000057#define PV_AI OPT_BUF(BV_AI)
58#define PV_AR OPT_BOTH(OPT_BUF(BV_AR))
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000059#ifdef FEAT_QUICKFIX
Bram Moolenaara23ccb82006-02-27 00:08:02 +000060# define PV_BH OPT_BUF(BV_BH)
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000061# 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))
Bram Moolenaara23ccb82006-02-27 00:08:02 +000065#endif
66#define PV_BIN OPT_BUF(BV_BIN)
67#define PV_BL OPT_BUF(BV_BL)
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000068#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
Bram Moolenaar9b2200a2006-03-20 21:55:45 +0000104#if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
105# define PV_BEXPR OPT_BOTH(OPT_BUF(BV_BEXPR))
106#endif
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +0000107#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)
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +0000162# define PV_SYN OPT_BUF(BV_SYN)
163#endif
164#ifdef FEAT_SPELL
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +0000165# define PV_SPC OPT_BUF(BV_SPC)
166# define PV_SPF OPT_BUF(BV_SPF)
167# define PV_SPL OPT_BUF(BV_SPL)
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +0000168#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)
Bram Moolenaara23ccb82006-02-27 00:08:02 +0000180
181/*
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +0000182 * Definition of the PV_ values for window-local options.
183 * The WV_ values are defined in option.h.
Bram Moolenaara23ccb82006-02-27 00:08:02 +0000184 */
Bram Moolenaara23ccb82006-02-27 00:08:02 +0000185#define PV_LIST OPT_WIN(WV_LIST)
186#ifdef FEAT_ARABIC
187# define PV_ARAB OPT_WIN(WV_ARAB)
188#endif
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +0000189#ifdef FEAT_DIFF
190# define PV_DIFF OPT_WIN(WV_DIFF)
191#endif
192#ifdef FEAT_FOLDING
193# define PV_FDC OPT_WIN(WV_FDC)
194# define PV_FEN OPT_WIN(WV_FEN)
195# define PV_FDI OPT_WIN(WV_FDI)
196# define PV_FDL OPT_WIN(WV_FDL)
197# define PV_FDM OPT_WIN(WV_FDM)
198# define PV_FML OPT_WIN(WV_FML)
199# define PV_FDN OPT_WIN(WV_FDN)
200# ifdef FEAT_EVAL
201# define PV_FDE OPT_WIN(WV_FDE)
202# define PV_FDT OPT_WIN(WV_FDT)
203# endif
204# define PV_FMR OPT_WIN(WV_FMR)
205#endif
206#ifdef FEAT_LINEBREAK
207# define PV_LBR OPT_WIN(WV_LBR)
208#endif
209#define PV_NU OPT_WIN(WV_NU)
210#ifdef FEAT_LINEBREAK
211# define PV_NUW OPT_WIN(WV_NUW)
212#endif
213#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
214# define PV_PVW OPT_WIN(WV_PVW)
215#endif
216#ifdef FEAT_RIGHTLEFT
217# define PV_RL OPT_WIN(WV_RL)
218# define PV_RLC OPT_WIN(WV_RLC)
219#endif
220#ifdef FEAT_SCROLLBIND
221# define PV_SCBIND OPT_WIN(WV_SCBIND)
222#endif
223#define PV_SCROLL OPT_WIN(WV_SCROLL)
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +0000224#ifdef FEAT_SPELL
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +0000225# define PV_SPELL OPT_WIN(WV_SPELL)
226#endif
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +0000227#ifdef FEAT_SYN_HL
228# define PV_CUC OPT_WIN(WV_CUC)
229# define PV_CUL OPT_WIN(WV_CUL)
230#endif
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +0000231#ifdef FEAT_STL_OPT
232# define PV_STL OPT_BOTH(OPT_WIN(WV_STL))
233#endif
234#ifdef FEAT_WINDOWS
235# define PV_WFH OPT_WIN(WV_WFH)
236#endif
Bram Moolenaar97b2ad32006-03-18 21:40:56 +0000237#ifdef FEAT_VERTSPLIT
238# define PV_WFW OPT_WIN(WV_WFW)
239#endif
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +0000240#define PV_WRAP OPT_WIN(WV_WRAP)
Bram Moolenaara23ccb82006-02-27 00:08:02 +0000241
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +0000242
243/* WV_ and BV_ values get typecasted to this for the "indir" field */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000244typedef enum
245{
246 PV_NONE = 0
Bram Moolenaar071d4272004-06-13 20:20:40 +0000247} idopt_T;
248
249/*
250 * Options local to a window have a value local to a buffer and global to all
251 * buffers. Indicate this by setting "var" to VAR_WIN.
252 */
253#define VAR_WIN ((char_u *)-1)
254
255/*
Bram Moolenaar9b2200a2006-03-20 21:55:45 +0000256 * These are the global values for options which are also local to a buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000257 * Only to be used in option.c!
258 */
259static int p_ai;
260static int p_bin;
261#ifdef FEAT_MBYTE
262static int p_bomb;
263#endif
264#if defined(FEAT_QUICKFIX)
265static char_u *p_bh;
266static char_u *p_bt;
267#endif
268static int p_bl;
269static int p_ci;
270#ifdef FEAT_CINDENT
271static int p_cin;
272static char_u *p_cink;
273static char_u *p_cino;
274#endif
275#if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
276static char_u *p_cinw;
277#endif
278#ifdef FEAT_COMMENTS
279static char_u *p_com;
280#endif
281#ifdef FEAT_FOLDING
282static char_u *p_cms;
283#endif
284#ifdef FEAT_INS_EXPAND
285static char_u *p_cpt;
286#endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +0000287#ifdef FEAT_COMPL_FUNC
288static char_u *p_cfu;
Bram Moolenaare344bea2005-09-01 20:46:49 +0000289static char_u *p_ofu;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +0000290#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000291static int p_eol;
292static int p_et;
293#ifdef FEAT_MBYTE
294static char_u *p_fenc;
295#endif
296static char_u *p_ff;
297static char_u *p_fo;
Bram Moolenaar86b68352004-12-27 21:59:20 +0000298static char_u *p_flp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000299#ifdef FEAT_AUTOCMD
300static char_u *p_ft;
301#endif
302static long p_iminsert;
303static long p_imsearch;
304#if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
305static char_u *p_inex;
306#endif
307#if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
308static char_u *p_inde;
309static char_u *p_indk;
310#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000311#if defined(FEAT_EVAL)
312static char_u *p_fex;
313#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000314static int p_inf;
315static char_u *p_isk;
316#ifdef FEAT_CRYPT
317static char_u *p_key;
318#endif
319#ifdef FEAT_LISP
320static int p_lisp;
321#endif
322static int p_ml;
323static int p_ma;
324static int p_mod;
325static char_u *p_mps;
326static char_u *p_nf;
327#ifdef FEAT_OSFILETYPE
328static char_u *p_oft;
329#endif
330static int p_pi;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +0000331#ifdef FEAT_TEXTOBJ
332static char_u *p_qe;
333#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000334static int p_ro;
335#ifdef FEAT_SMARTINDENT
336static int p_si;
337#endif
338#ifndef SHORT_FNAME
339static int p_sn;
340#endif
341static long p_sts;
342#if defined(FEAT_SEARCHPATH)
343static char_u *p_sua;
344#endif
345static long p_sw;
346static int p_swf;
347#ifdef FEAT_SYN_HL
Bram Moolenaar3b56eb32005-07-11 22:40:32 +0000348static long p_smc;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000349static char_u *p_syn;
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +0000350#endif
351#ifdef FEAT_SPELL
Bram Moolenaar0d9c26d2005-07-02 23:19:16 +0000352static char_u *p_spc;
Bram Moolenaar82cf9b62005-06-07 21:09:25 +0000353static char_u *p_spf;
Bram Moolenaar217ad922005-03-20 22:37:15 +0000354static char_u *p_spl;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000355#endif
356static long p_ts;
357static long p_tw;
358static int p_tx;
359static long p_wm;
360#ifdef FEAT_KEYMAP
361static char_u *p_keymap;
362#endif
363
364/* Saved values for when 'bin' is set. */
365static int p_et_nobin;
366static int p_ml_nobin;
367static long p_tw_nobin;
368static long p_wm_nobin;
369
370/* Saved values for when 'paste' is set */
371static long p_tw_nopaste;
372static long p_wm_nopaste;
373static long p_sts_nopaste;
374static int p_ai_nopaste;
375
376struct vimoption
377{
378 char *fullname; /* full option name */
379 char *shortname; /* permissible abbreviation */
380 long_u flags; /* see below */
381 char_u *var; /* global option: pointer to variable;
382 * window-local option: VAR_WIN;
383 * buffer-local option: global value */
384 idopt_T indir; /* global option: PV_NONE;
385 * local option: indirect option index */
386 char_u *def_val[2]; /* default values for variable (vi and vim) */
387#ifdef FEAT_EVAL
388 scid_T scriptID; /* script in which the option was last set */
389#endif
390};
391
392#define VI_DEFAULT 0 /* def_val[VI_DEFAULT] is Vi default value */
393#define VIM_DEFAULT 1 /* def_val[VIM_DEFAULT] is Vim default value */
394
395/*
396 * Flags
397 */
398#define P_BOOL 0x01 /* the option is boolean */
399#define P_NUM 0x02 /* the option is numeric */
400#define P_STRING 0x04 /* the option is a string */
401#define P_ALLOCED 0x08 /* the string option is in allocated memory,
402 must use vim_free() when assigning new
403 value. Not set if default is the same. */
404#define P_EXPAND 0x10 /* environment expansion. NOTE: P_EXPAND can
405 never be used for local or hidden options! */
406#define P_NODEFAULT 0x40 /* don't set to default value */
407#define P_DEF_ALLOCED 0x80 /* default value is in allocated memory, must
408 use vim_free() when assigning new value */
409#define P_WAS_SET 0x100 /* option has been set/reset */
410#define P_NO_MKRC 0x200 /* don't include in :mkvimrc output */
411#define P_VI_DEF 0x400 /* Use Vi default for Vim */
412#define P_VIM 0x800 /* Vim option, reset when 'cp' set */
413
414 /* when option changed, what to display: */
415#define P_RSTAT 0x1000 /* redraw status lines */
416#define P_RWIN 0x2000 /* redraw current window */
417#define P_RBUF 0x4000 /* redraw current buffer */
418#define P_RALL 0x6000 /* redraw all windows */
419#define P_RCLR 0x7000 /* clear and redraw all */
420
421#define P_COMMA 0x8000 /* comma separated list */
422#define P_NODUP 0x10000L/* don't allow duplicate strings */
423#define P_FLAGLIST 0x20000L/* list of single-char flags */
424
425#define P_SECURE 0x40000L/* cannot change in modeline or secure mode */
426#define P_GETTEXT 0x80000L/* expand default value with _() */
427#define P_NOGLOB 0x100000L/* do not use local value for global vimrc */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000428#define P_NFNAME 0x200000L/* only normal file name chars allowed */
Bram Moolenaarb71eaae2006-01-20 23:10:18 +0000429#define P_INSECURE 0x400000L/* option was set from a modeline */
Bram Moolenaar7fd16022007-09-06 14:35:35 +0000430#define P_PRI_MKRC 0x800000L/* priority for :mkvimrc (setting option has
431 side effects) */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000432
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000433#define ISK_LATIN1 (char_u *)"@,48-57,_,192-255"
434
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000435/* 'isprint' for latin1 is also used for MS-Windows cp1252, where 0x80 is used
436 * for the currency sign. */
Bram Moolenaar4ea8fe12006-03-09 22:32:39 +0000437#if defined(MSDOS) || defined(MSWIN) || defined(OS2)
Bram Moolenaare2f98b92006-03-29 21:18:24 +0000438# define ISP_LATIN1 (char_u *)"@,~-255"
Bram Moolenaar4ea8fe12006-03-09 22:32:39 +0000439#else
440# define ISP_LATIN1 (char_u *)"@,161-255"
441#endif
442
Bram Moolenaar3991dab2006-03-27 17:01:56 +0000443/* The 16 bit MS-DOS version is low on space, make the string as short as
444 * possible when compiling with few features. */
445#if defined(FEAT_DIFF) || defined(FEAT_FOLDING) || defined(FEAT_SPELL) \
446 || defined(FEAT_VERTSPLIT) || defined(FEAT_CLIPBOARD) \
447 || defined(FEAT_INS_EXPAND) || defined(FEAT_SYN_HL)
448# define HIGHLIGHT_INIT "8:SpecialKey,@:NonText,d:Directory,e:ErrorMsg,i:IncSearch,l:Search,m:MoreMsg,M:ModeMsg,n:LineNr,r:Question,s:StatusLine,S:StatusLineNC,c:VertSplit,t:Title,v:Visual,V:VisualNOS,w:WarningMsg,W:WildMenu,f:Folded,F:FoldColumn,A:DiffAdd,C:DiffChange,D:DiffDelete,T:DiffText,>:SignColumn,B:SpellBad,P:SpellCap,R:SpellRare,L:SpellLocal,+:Pmenu,=:PmenuSel,x:PmenuSbar,X:PmenuThumb,*:TabLine,#:TabLineSel,_:TabLineFill,!:CursorColumn,.:CursorLine"
449#else
450# define HIGHLIGHT_INIT "8:SpecialKey,@:NonText,d:Directory,e:ErrorMsg,i:IncSearch,l:Search,m:MoreMsg,M:ModeMsg,n:LineNr,r:Question,s:StatusLine,S:StatusLineNC,t:Title,v:Visual,w:WarningMsg,W:WildMenu,>:SignColumn,*:TabLine,#:TabLineSel,_:TabLineFill"
451#endif
452
Bram Moolenaar071d4272004-06-13 20:20:40 +0000453/*
454 * options[] is initialized here.
455 * The order of the options MUST be alphabetic for ":set all" and findoption().
456 * All option names MUST start with a lowercase letter (for findoption()).
457 * Exception: "t_" options are at the end.
458 * The options with a NULL variable are 'hidden': a set command for them is
459 * ignored and they are not printed.
460 */
461static struct vimoption
462#ifdef FEAT_GUI_W16
463 _far
464#endif
465 options[] =
466{
467 {"aleph", "al", P_NUM|P_VI_DEF,
468#ifdef FEAT_RIGHTLEFT
469 (char_u *)&p_aleph, PV_NONE,
470#else
471 (char_u *)NULL, PV_NONE,
472#endif
473 {
474#if (defined(MSDOS) || defined(WIN3264) || defined(OS2)) && !defined(FEAT_GUI_W32)
475 (char_u *)128L,
476#else
477 (char_u *)224L,
478#endif
479 (char_u *)0L}},
480 {"antialias", "anti", P_BOOL|P_VI_DEF|P_VIM|P_RCLR,
481#if defined(FEAT_GUI) && defined(MACOS_X)
482 (char_u *)&p_antialias, PV_NONE,
483 {(char_u *)FALSE, (char_u *)FALSE}
484#else
485 (char_u *)NULL, PV_NONE,
486 {(char_u *)FALSE, (char_u *)FALSE}
487#endif
488 },
489 {"arabic", "arab", P_BOOL|P_VI_DEF|P_VIM,
490#ifdef FEAT_ARABIC
491 (char_u *)VAR_WIN, PV_ARAB,
492#else
493 (char_u *)NULL, PV_NONE,
494#endif
495 {(char_u *)FALSE, (char_u *)0L}},
496 {"arabicshape", "arshape", P_BOOL|P_VI_DEF|P_VIM|P_RCLR,
497#ifdef FEAT_ARABIC
498 (char_u *)&p_arshape, PV_NONE,
499#else
500 (char_u *)NULL, PV_NONE,
501#endif
502 {(char_u *)TRUE, (char_u *)0L}},
503 {"allowrevins", "ari", P_BOOL|P_VI_DEF|P_VIM,
504#ifdef FEAT_RIGHTLEFT
505 (char_u *)&p_ari, PV_NONE,
506#else
507 (char_u *)NULL, PV_NONE,
508#endif
509 {(char_u *)FALSE, (char_u *)0L}},
510 {"altkeymap", "akm", P_BOOL|P_VI_DEF,
511#ifdef FEAT_FKMAP
512 (char_u *)&p_altkeymap, PV_NONE,
513#else
514 (char_u *)NULL, PV_NONE,
515#endif
516 {(char_u *)FALSE, (char_u *)0L}},
517 {"ambiwidth", "ambw", P_STRING|P_VI_DEF|P_RCLR,
518#if defined(FEAT_MBYTE)
519 (char_u *)&p_ambw, PV_NONE,
520 {(char_u *)"single", (char_u *)0L}
521#else
522 (char_u *)NULL, PV_NONE,
523 {(char_u *)0L, (char_u *)0L}
524#endif
525 },
Bram Moolenaar8dff8182006-04-06 20:18:50 +0000526#ifdef FEAT_AUTOCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +0000527 {"autochdir", "acd", P_BOOL|P_VI_DEF,
528 (char_u *)&p_acd, PV_NONE,
529 {(char_u *)FALSE, (char_u *)0L}},
530#endif
531 {"autoindent", "ai", P_BOOL|P_VI_DEF,
532 (char_u *)&p_ai, PV_AI,
533 {(char_u *)FALSE, (char_u *)0L}},
534 {"autoprint", "ap", P_BOOL|P_VI_DEF,
535 (char_u *)NULL, PV_NONE,
536 {(char_u *)FALSE, (char_u *)0L}},
537 {"autoread", "ar", P_BOOL|P_VI_DEF,
Bram Moolenaara23ccb82006-02-27 00:08:02 +0000538 (char_u *)&p_ar, PV_AR,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000539 {(char_u *)FALSE, (char_u *)0L}},
540 {"autowrite", "aw", P_BOOL|P_VI_DEF,
541 (char_u *)&p_aw, PV_NONE,
542 {(char_u *)FALSE, (char_u *)0L}},
543 {"autowriteall","awa", P_BOOL|P_VI_DEF,
544 (char_u *)&p_awa, PV_NONE,
545 {(char_u *)FALSE, (char_u *)0L}},
546 {"background", "bg", P_STRING|P_VI_DEF|P_RCLR,
547 (char_u *)&p_bg, PV_NONE,
548 {
549#if (defined(MSDOS) || defined(OS2) || defined(WIN3264)) && !defined(FEAT_GUI)
550 (char_u *)"dark",
551#else
552 (char_u *)"light",
553#endif
554 (char_u *)0L}},
555 {"backspace", "bs", P_STRING|P_VI_DEF|P_VIM|P_COMMA|P_NODUP,
556 (char_u *)&p_bs, PV_NONE,
557 {(char_u *)"", (char_u *)0L}},
558 {"backup", "bk", P_BOOL|P_VI_DEF|P_VIM,
559 (char_u *)&p_bk, PV_NONE,
560 {(char_u *)FALSE, (char_u *)0L}},
561 {"backupcopy", "bkc", P_STRING|P_VIM|P_COMMA|P_NODUP,
562 (char_u *)&p_bkc, PV_NONE,
563#ifdef UNIX
564 {(char_u *)"yes", (char_u *)"auto"}
565#else
566 {(char_u *)"auto", (char_u *)"auto"}
567#endif
568 },
569 {"backupdir", "bdir", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP|P_SECURE,
570 (char_u *)&p_bdir, PV_NONE,
571 {(char_u *)DFLT_BDIR, (char_u *)0L}},
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000572 {"backupext", "bex", P_STRING|P_VI_DEF|P_NFNAME,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000573 (char_u *)&p_bex, PV_NONE,
574 {
575#ifdef VMS
576 (char_u *)"_",
577#else
578 (char_u *)"~",
579#endif
580 (char_u *)0L}},
581 {"backupskip", "bsk", P_STRING|P_VI_DEF|P_COMMA,
582#ifdef FEAT_WILDIGN
583 (char_u *)&p_bsk, PV_NONE,
584 {(char_u *)"", (char_u *)0L}
585#else
586 (char_u *)NULL, PV_NONE,
587 {(char_u *)0L, (char_u *)0L}
588#endif
589 },
590#ifdef FEAT_BEVAL
591 {"balloondelay","bdlay",P_NUM|P_VI_DEF,
592 (char_u *)&p_bdlay, PV_NONE,
593 {(char_u *)600L, (char_u *)0L}},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000594 {"ballooneval", "beval",P_BOOL|P_VI_DEF|P_NO_MKRC,
595 (char_u *)&p_beval, PV_NONE,
Bram Moolenaarf1f8bc52005-03-07 23:20:08 +0000596 {(char_u *)FALSE, (char_u *)0L}},
597# ifdef FEAT_EVAL
Bram Moolenaar39f05632006-03-19 22:15:26 +0000598 {"balloonexpr", "bexpr", P_STRING|P_ALLOCED|P_VI_DEF|P_VIM,
Bram Moolenaar9b2200a2006-03-20 21:55:45 +0000599 (char_u *)&p_bexpr, PV_BEXPR,
Bram Moolenaarf1f8bc52005-03-07 23:20:08 +0000600 {(char_u *)"", (char_u *)0L}},
601# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000602#endif
603 {"beautify", "bf", P_BOOL|P_VI_DEF,
604 (char_u *)NULL, PV_NONE,
605 {(char_u *)FALSE, (char_u *)0L}},
606 {"binary", "bin", P_BOOL|P_VI_DEF|P_RSTAT,
607 (char_u *)&p_bin, PV_BIN,
608 {(char_u *)FALSE, (char_u *)0L}},
609 {"bioskey", "biosk",P_BOOL|P_VI_DEF,
610#ifdef MSDOS
611 (char_u *)&p_biosk, PV_NONE,
612#else
613 (char_u *)NULL, PV_NONE,
614#endif
615 {(char_u *)TRUE, (char_u *)0L}},
616 {"bomb", NULL, P_BOOL|P_NO_MKRC|P_VI_DEF|P_RSTAT,
617#ifdef FEAT_MBYTE
618 (char_u *)&p_bomb, PV_BOMB,
619#else
620 (char_u *)NULL, PV_NONE,
621#endif
622 {(char_u *)FALSE, (char_u *)0L}},
623 {"breakat", "brk", P_STRING|P_VI_DEF|P_RALL|P_FLAGLIST,
624#ifdef FEAT_LINEBREAK
625 (char_u *)&p_breakat, PV_NONE,
626 {(char_u *)" \t!@*-+;:,./?", (char_u *)0L}
627#else
628 (char_u *)NULL, PV_NONE,
629 {(char_u *)0L, (char_u *)0L}
630#endif
631 },
632 {"browsedir", "bsdir",P_STRING|P_VI_DEF,
633#ifdef FEAT_BROWSE
634 (char_u *)&p_bsdir, PV_NONE,
635 {(char_u *)"last", (char_u *)0L}
636#else
637 (char_u *)NULL, PV_NONE,
638 {(char_u *)0L, (char_u *)0L}
639#endif
640 },
641 {"bufhidden", "bh", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB,
642#if defined(FEAT_QUICKFIX)
643 (char_u *)&p_bh, PV_BH,
644 {(char_u *)"", (char_u *)0L}
645#else
646 (char_u *)NULL, PV_NONE,
647 {(char_u *)0L, (char_u *)0L}
648#endif
649 },
650 {"buflisted", "bl", P_BOOL|P_VI_DEF|P_NOGLOB,
651 (char_u *)&p_bl, PV_BL,
652 {(char_u *)1L, (char_u *)0L}
653 },
654 {"buftype", "bt", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB,
655#if defined(FEAT_QUICKFIX)
656 (char_u *)&p_bt, PV_BT,
657 {(char_u *)"", (char_u *)0L}
658#else
659 (char_u *)NULL, PV_NONE,
660 {(char_u *)0L, (char_u *)0L}
661#endif
662 },
663 {"casemap", "cmp", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
Bram Moolenaarfa1d1402006-03-25 21:59:56 +0000664#ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000665 (char_u *)&p_cmp, PV_NONE,
666 {(char_u *)"internal,keepascii", (char_u *)0L}
Bram Moolenaarfa1d1402006-03-25 21:59:56 +0000667#else
668 (char_u *)NULL, PV_NONE,
669 {(char_u *)0L, (char_u *)0L}
670#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000671 },
672 {"cdpath", "cd", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
673#ifdef FEAT_SEARCHPATH
674 (char_u *)&p_cdpath, PV_NONE,
675 {(char_u *)",,", (char_u *)0L}
676#else
677 (char_u *)NULL, PV_NONE,
678 {(char_u *)0L, (char_u *)0L}
679#endif
680 },
681 {"cedit", NULL, P_STRING,
682#ifdef FEAT_CMDWIN
683 (char_u *)&p_cedit, PV_NONE,
684 {(char_u *)"", (char_u *)CTRL_F_STR}
685#else
686 (char_u *)NULL, PV_NONE,
687 {(char_u *)0L, (char_u *)0L}
688#endif
689 },
690 {"charconvert", "ccv", P_STRING|P_VI_DEF|P_SECURE,
691#if defined(FEAT_MBYTE) && defined(FEAT_EVAL)
692 (char_u *)&p_ccv, PV_NONE,
693 {(char_u *)"", (char_u *)0L}
694#else
695 (char_u *)NULL, PV_NONE,
696 {(char_u *)0L, (char_u *)0L}
697#endif
698 },
699 {"cindent", "cin", P_BOOL|P_VI_DEF|P_VIM,
700#ifdef FEAT_CINDENT
701 (char_u *)&p_cin, PV_CIN,
702#else
703 (char_u *)NULL, PV_NONE,
704#endif
705 {(char_u *)FALSE, (char_u *)0L}},
706 {"cinkeys", "cink", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
707#ifdef FEAT_CINDENT
708 (char_u *)&p_cink, PV_CINK,
709 {(char_u *)"0{,0},0),:,0#,!^F,o,O,e", (char_u *)0L}
710#else
711 (char_u *)NULL, PV_NONE,
712 {(char_u *)0L, (char_u *)0L}
713#endif
714 },
715 {"cinoptions", "cino", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
716#ifdef FEAT_CINDENT
717 (char_u *)&p_cino, PV_CINO,
718#else
719 (char_u *)NULL, PV_NONE,
720#endif
721 {(char_u *)"", (char_u *)0L}},
722 {"cinwords", "cinw", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
723#if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
724 (char_u *)&p_cinw, PV_CINW,
725 {(char_u *)"if,else,while,do,for,switch",
726 (char_u *)0L}
727#else
728 (char_u *)NULL, PV_NONE,
729 {(char_u *)0L, (char_u *)0L}
730#endif
731 },
732 {"clipboard", "cb", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
733#ifdef FEAT_CLIPBOARD
734 (char_u *)&p_cb, PV_NONE,
735# ifdef FEAT_XCLIPBOARD
736 {(char_u *)"autoselect,exclude:cons\\|linux",
737 (char_u *)0L}
738# else
739 {(char_u *)"", (char_u *)0L}
740# endif
741#else
742 (char_u *)NULL, PV_NONE,
743 {(char_u *)"", (char_u *)0L}
744#endif
745 },
746 {"cmdheight", "ch", P_NUM|P_VI_DEF|P_RALL,
747 (char_u *)&p_ch, PV_NONE,
748 {(char_u *)1L, (char_u *)0L}},
749 {"cmdwinheight", "cwh", P_NUM|P_VI_DEF,
750#ifdef FEAT_CMDWIN
751 (char_u *)&p_cwh, PV_NONE,
752#else
753 (char_u *)NULL, PV_NONE,
754#endif
755 {(char_u *)7L, (char_u *)0L}},
756 {"columns", "co", P_NUM|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RCLR,
757 (char_u *)&Columns, PV_NONE,
758 {(char_u *)80L, (char_u *)0L}},
759 {"comments", "com", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
760#ifdef FEAT_COMMENTS
761 (char_u *)&p_com, PV_COM,
762 {(char_u *)"s1:/*,mb:*,ex:*/,://,b:#,:%,:XCOMM,n:>,fb:-",
763 (char_u *)0L}
764#else
765 (char_u *)NULL, PV_NONE,
766 {(char_u *)0L, (char_u *)0L}
767#endif
768 },
769 {"commentstring", "cms", P_STRING|P_ALLOCED|P_VI_DEF,
770#ifdef FEAT_FOLDING
771 (char_u *)&p_cms, PV_CMS,
772 {(char_u *)"/*%s*/", (char_u *)0L}
773#else
774 (char_u *)NULL, PV_NONE,
775 {(char_u *)0L, (char_u *)0L}
776#endif
777 },
Bram Moolenaar7fd16022007-09-06 14:35:35 +0000778 /* P_PRI_MKRC isn't needed here, optval_default()
779 * always returns TRUE for 'compatible' */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000780 {"compatible", "cp", P_BOOL|P_RALL,
781 (char_u *)&p_cp, PV_NONE,
782 {(char_u *)TRUE, (char_u *)FALSE}},
783 {"complete", "cpt", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
784#ifdef FEAT_INS_EXPAND
785 (char_u *)&p_cpt, PV_CPT,
786 {(char_u *)".,w,b,u,t,i", (char_u *)0L}
787#else
788 (char_u *)NULL, PV_NONE,
789 {(char_u *)0L, (char_u *)0L}
790#endif
791 },
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +0000792 {"completefunc", "cfu", P_STRING|P_ALLOCED|P_VI_DEF|P_SECURE,
793#ifdef FEAT_COMPL_FUNC
794 (char_u *)&p_cfu, PV_CFU,
795 {(char_u *)"", (char_u *)0L}
796#else
797 (char_u *)NULL, PV_NONE,
798 {(char_u *)0L, (char_u *)0L}
799#endif
800 },
Bram Moolenaar1c7715d2005-10-03 22:02:18 +0000801 {"completeopt", "cot", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
802#ifdef FEAT_INS_EXPAND
803 (char_u *)&p_cot, PV_NONE,
Bram Moolenaarc270d802006-03-11 21:29:41 +0000804 {(char_u *)"menu,preview", (char_u *)0L}
Bram Moolenaar1c7715d2005-10-03 22:02:18 +0000805#else
806 (char_u *)NULL, PV_NONE,
807 {(char_u *)0L, (char_u *)0L}
808#endif
809 },
Bram Moolenaar071d4272004-06-13 20:20:40 +0000810 {"confirm", "cf", P_BOOL|P_VI_DEF,
811#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
812 (char_u *)&p_confirm, PV_NONE,
813#else
814 (char_u *)NULL, PV_NONE,
815#endif
816 {(char_u *)FALSE, (char_u *)0L}},
817 {"conskey", "consk",P_BOOL|P_VI_DEF,
818#ifdef MSDOS
819 (char_u *)&p_consk, PV_NONE,
820#else
821 (char_u *)NULL, PV_NONE,
822#endif
823 {(char_u *)FALSE, (char_u *)0L}},
824 {"copyindent", "ci", P_BOOL|P_VI_DEF|P_VIM,
825 (char_u *)&p_ci, PV_CI,
826 {(char_u *)FALSE, (char_u *)0L}},
827 {"cpoptions", "cpo", P_STRING|P_VIM|P_RALL|P_FLAGLIST,
828 (char_u *)&p_cpo, PV_NONE,
Bram Moolenaar4399ef42005-02-12 14:29:27 +0000829 {(char_u *)CPO_VI, (char_u *)CPO_VIM}},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000830 {"cscopepathcomp", "cspc", P_NUM|P_VI_DEF|P_VIM,
831#ifdef FEAT_CSCOPE
832 (char_u *)&p_cspc, PV_NONE,
833#else
834 (char_u *)NULL, PV_NONE,
835#endif
836 {(char_u *)0L, (char_u *)0L}},
837 {"cscopeprg", "csprg", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
838#ifdef FEAT_CSCOPE
839 (char_u *)&p_csprg, PV_NONE,
840 {(char_u *)"cscope", (char_u *)0L}
841#else
842 (char_u *)NULL, PV_NONE,
843 {(char_u *)0L, (char_u *)0L}
844#endif
845 },
846 {"cscopequickfix", "csqf", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
847#if defined(FEAT_CSCOPE) && defined(FEAT_QUICKFIX)
848 (char_u *)&p_csqf, PV_NONE,
849 {(char_u *)"", (char_u *)0L}
850#else
851 (char_u *)NULL, PV_NONE,
852 {(char_u *)0L, (char_u *)0L}
853#endif
854 },
855 {"cscopetag", "cst", P_BOOL|P_VI_DEF|P_VIM,
856#ifdef FEAT_CSCOPE
857 (char_u *)&p_cst, PV_NONE,
858#else
859 (char_u *)NULL, PV_NONE,
860#endif
861 {(char_u *)0L, (char_u *)0L}},
862 {"cscopetagorder", "csto", P_NUM|P_VI_DEF|P_VIM,
863#ifdef FEAT_CSCOPE
864 (char_u *)&p_csto, PV_NONE,
865#else
866 (char_u *)NULL, PV_NONE,
867#endif
868 {(char_u *)0L, (char_u *)0L}},
869 {"cscopeverbose", "csverb", P_BOOL|P_VI_DEF|P_VIM,
870#ifdef FEAT_CSCOPE
871 (char_u *)&p_csverbose, PV_NONE,
872#else
873 (char_u *)NULL, PV_NONE,
874#endif
875 {(char_u *)0L, (char_u *)0L}},
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +0000876 {"cursorcolumn", "cuc", P_BOOL|P_VI_DEF|P_RWIN,
877#ifdef FEAT_SYN_HL
878 (char_u *)VAR_WIN, PV_CUC,
879#else
880 (char_u *)NULL, PV_NONE,
881#endif
882 {(char_u *)FALSE, (char_u *)0L}},
883 {"cursorline", "cul", P_BOOL|P_VI_DEF|P_RWIN,
884#ifdef FEAT_SYN_HL
885 (char_u *)VAR_WIN, PV_CUL,
886#else
887 (char_u *)NULL, PV_NONE,
888#endif
889 {(char_u *)FALSE, (char_u *)0L}},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000890 {"debug", NULL, P_STRING|P_VI_DEF,
891 (char_u *)&p_debug, PV_NONE,
892 {(char_u *)"", (char_u *)0L}},
893 {"define", "def", P_STRING|P_ALLOCED|P_VI_DEF,
894#ifdef FEAT_FIND_ID
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +0000895 (char_u *)&p_def, PV_DEF,
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000896 {(char_u *)"^\\s*#\\s*define", (char_u *)0L}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000897#else
898 (char_u *)NULL, PV_NONE,
899 {(char_u *)NULL, (char_u *)0L}
900#endif
901 },
902 {"delcombine", "deco", P_BOOL|P_VI_DEF|P_VIM,
903#ifdef FEAT_MBYTE
904 (char_u *)&p_deco, PV_NONE,
905#else
906 (char_u *)NULL, PV_NONE,
907#endif
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000908 {(char_u *)FALSE, (char_u *)0L}},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000909 {"dictionary", "dict", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
910#ifdef FEAT_INS_EXPAND
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +0000911 (char_u *)&p_dict, PV_DICT,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000912#else
913 (char_u *)NULL, PV_NONE,
914#endif
915 {(char_u *)"", (char_u *)0L}},
916 {"diff", NULL, P_BOOL|P_VI_DEF|P_RWIN|P_NOGLOB,
917#ifdef FEAT_DIFF
918 (char_u *)VAR_WIN, PV_DIFF,
919#else
920 (char_u *)NULL, PV_NONE,
921#endif
922 {(char_u *)FALSE, (char_u *)0L}},
923 {"diffexpr", "dex", P_STRING|P_VI_DEF|P_SECURE,
924#if defined(FEAT_DIFF) && defined(FEAT_EVAL)
925 (char_u *)&p_dex, PV_NONE,
926 {(char_u *)"", (char_u *)0L}
927#else
928 (char_u *)NULL, PV_NONE,
929 {(char_u *)0L, (char_u *)0L}
930#endif
931 },
932 {"diffopt", "dip", P_STRING|P_ALLOCED|P_VI_DEF|P_RWIN|P_COMMA|P_NODUP,
933#ifdef FEAT_DIFF
934 (char_u *)&p_dip, PV_NONE,
935 {(char_u *)"filler", (char_u *)NULL}
936#else
937 (char_u *)NULL, PV_NONE,
938 {(char_u *)"", (char_u *)NULL}
939#endif
940 },
941 {"digraph", "dg", P_BOOL|P_VI_DEF|P_VIM,
942#ifdef FEAT_DIGRAPHS
943 (char_u *)&p_dg, PV_NONE,
944#else
945 (char_u *)NULL, PV_NONE,
946#endif
947 {(char_u *)FALSE, (char_u *)0L}},
948 {"directory", "dir", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP|P_SECURE,
949 (char_u *)&p_dir, PV_NONE,
950 {(char_u *)DFLT_DIR, (char_u *)0L}},
951 {"display", "dy", P_STRING|P_VI_DEF|P_COMMA|P_RALL|P_NODUP,
952 (char_u *)&p_dy, PV_NONE,
953 {(char_u *)"", (char_u *)0L}},
954 {"eadirection", "ead", P_STRING|P_VI_DEF,
955#ifdef FEAT_VERTSPLIT
956 (char_u *)&p_ead, PV_NONE,
957 {(char_u *)"both", (char_u *)0L}
958#else
959 (char_u *)NULL, PV_NONE,
960 {(char_u *)NULL, (char_u *)0L}
961#endif
962 },
963 {"edcompatible","ed", P_BOOL|P_VI_DEF,
964 (char_u *)&p_ed, PV_NONE,
965 {(char_u *)FALSE, (char_u *)0L}},
966 {"encoding", "enc", P_STRING|P_VI_DEF|P_RCLR,
967#ifdef FEAT_MBYTE
968 (char_u *)&p_enc, PV_NONE,
969 {(char_u *)ENC_DFLT, (char_u *)0L}
970#else
971 (char_u *)NULL, PV_NONE,
972 {(char_u *)0L, (char_u *)0L}
973#endif
974 },
975 {"endofline", "eol", P_BOOL|P_NO_MKRC|P_VI_DEF|P_RSTAT,
976 (char_u *)&p_eol, PV_EOL,
977 {(char_u *)TRUE, (char_u *)0L}},
978 {"equalalways", "ea", P_BOOL|P_VI_DEF|P_RALL,
979 (char_u *)&p_ea, PV_NONE,
980 {(char_u *)TRUE, (char_u *)0L}},
981 {"equalprg", "ep", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +0000982 (char_u *)&p_ep, PV_EP,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000983 {(char_u *)"", (char_u *)0L}},
984 {"errorbells", "eb", P_BOOL|P_VI_DEF,
985 (char_u *)&p_eb, PV_NONE,
986 {(char_u *)FALSE, (char_u *)0L}},
987 {"errorfile", "ef", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
988#ifdef FEAT_QUICKFIX
989 (char_u *)&p_ef, PV_NONE,
990 {(char_u *)DFLT_ERRORFILE, (char_u *)0L}
991#else
992 (char_u *)NULL, PV_NONE,
993 {(char_u *)NULL, (char_u *)0L}
994#endif
995 },
996 {"errorformat", "efm", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
997#ifdef FEAT_QUICKFIX
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +0000998 (char_u *)&p_efm, PV_EFM,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000999 {(char_u *)DFLT_EFM, (char_u *)0L},
1000#else
1001 (char_u *)NULL, PV_NONE,
1002 {(char_u *)NULL, (char_u *)0L}
1003#endif
1004 },
1005 {"esckeys", "ek", P_BOOL|P_VIM,
1006 (char_u *)&p_ek, PV_NONE,
1007 {(char_u *)FALSE, (char_u *)TRUE}},
1008 {"eventignore", "ei", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1009#ifdef FEAT_AUTOCMD
1010 (char_u *)&p_ei, PV_NONE,
1011#else
1012 (char_u *)NULL, PV_NONE,
1013#endif
1014 {(char_u *)"", (char_u *)0L}},
1015 {"expandtab", "et", P_BOOL|P_VI_DEF|P_VIM,
1016 (char_u *)&p_et, PV_ET,
1017 {(char_u *)FALSE, (char_u *)0L}},
1018 {"exrc", "ex", P_BOOL|P_VI_DEF|P_SECURE,
1019 (char_u *)&p_exrc, PV_NONE,
1020 {(char_u *)FALSE, (char_u *)0L}},
1021 {"fileencoding","fenc", P_STRING|P_ALLOCED|P_VI_DEF|P_RSTAT|P_RBUF|P_NO_MKRC,
1022#ifdef FEAT_MBYTE
1023 (char_u *)&p_fenc, PV_FENC,
1024 {(char_u *)"", (char_u *)0L}
1025#else
1026 (char_u *)NULL, PV_NONE,
1027 {(char_u *)0L, (char_u *)0L}
1028#endif
1029 },
1030 {"fileencodings","fencs", P_STRING|P_VI_DEF|P_COMMA,
1031#ifdef FEAT_MBYTE
1032 (char_u *)&p_fencs, PV_NONE,
1033 {(char_u *)"ucs-bom", (char_u *)0L}
1034#else
1035 (char_u *)NULL, PV_NONE,
1036 {(char_u *)0L, (char_u *)0L}
1037#endif
1038 },
1039 {"fileformat", "ff", P_STRING|P_ALLOCED|P_VI_DEF|P_RSTAT|P_NO_MKRC,
1040 (char_u *)&p_ff, PV_FF,
1041 {(char_u *)DFLT_FF, (char_u *)0L}},
1042 {"fileformats", "ffs", P_STRING|P_VIM|P_COMMA|P_NODUP,
1043 (char_u *)&p_ffs, PV_NONE,
1044 {(char_u *)DFLT_FFS_VI, (char_u *)DFLT_FFS_VIM}},
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001045 {"filetype", "ft", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB|P_NFNAME,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001046#ifdef FEAT_AUTOCMD
1047 (char_u *)&p_ft, PV_FT,
1048 {(char_u *)"", (char_u *)0L}
1049#else
1050 (char_u *)NULL, PV_NONE,
1051 {(char_u *)0L, (char_u *)0L}
1052#endif
1053 },
1054 {"fillchars", "fcs", P_STRING|P_VI_DEF|P_RALL|P_COMMA|P_NODUP,
1055#if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
1056 (char_u *)&p_fcs, PV_NONE,
1057 {(char_u *)"vert:|,fold:-", (char_u *)0L}
1058#else
1059 (char_u *)NULL, PV_NONE,
1060 {(char_u *)"", (char_u *)0L}
1061#endif
1062 },
1063 {"fkmap", "fk", P_BOOL|P_VI_DEF,
1064#ifdef FEAT_FKMAP
1065 (char_u *)&p_fkmap, PV_NONE,
1066#else
1067 (char_u *)NULL, PV_NONE,
1068#endif
1069 {(char_u *)FALSE, (char_u *)0L}},
1070 {"flash", "fl", P_BOOL|P_VI_DEF,
1071 (char_u *)NULL, PV_NONE,
1072 {(char_u *)FALSE, (char_u *)0L}},
1073#ifdef FEAT_FOLDING
1074 {"foldclose", "fcl", P_STRING|P_VI_DEF|P_COMMA|P_NODUP|P_RWIN,
1075 (char_u *)&p_fcl, PV_NONE,
1076 {(char_u *)"", (char_u *)0L}},
1077 {"foldcolumn", "fdc", P_NUM|P_VI_DEF|P_RWIN,
1078 (char_u *)VAR_WIN, PV_FDC,
1079 {(char_u *)FALSE, (char_u *)0L}},
1080 {"foldenable", "fen", P_BOOL|P_VI_DEF|P_RWIN,
1081 (char_u *)VAR_WIN, PV_FEN,
1082 {(char_u *)TRUE, (char_u *)0L}},
1083 {"foldexpr", "fde", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1084# ifdef FEAT_EVAL
1085 (char_u *)VAR_WIN, PV_FDE,
1086 {(char_u *)"0", (char_u *)NULL}
1087# else
1088 (char_u *)NULL, PV_NONE,
1089 {(char_u *)NULL, (char_u *)0L}
1090# endif
1091 },
1092 {"foldignore", "fdi", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1093 (char_u *)VAR_WIN, PV_FDI,
1094 {(char_u *)"#", (char_u *)NULL}},
1095 {"foldlevel", "fdl", P_NUM|P_VI_DEF|P_RWIN,
1096 (char_u *)VAR_WIN, PV_FDL,
1097 {(char_u *)0L, (char_u *)0L}},
1098 {"foldlevelstart","fdls", P_NUM|P_VI_DEF,
1099 (char_u *)&p_fdls, PV_NONE,
1100 {(char_u *)-1L, (char_u *)0L}},
1101 {"foldmarker", "fmr", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|
1102 P_RWIN|P_COMMA|P_NODUP,
1103 (char_u *)VAR_WIN, PV_FMR,
1104 {(char_u *)"{{{,}}}", (char_u *)NULL}},
1105 {"foldmethod", "fdm", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1106 (char_u *)VAR_WIN, PV_FDM,
1107 {(char_u *)"manual", (char_u *)NULL}},
1108 {"foldminlines","fml", P_NUM|P_VI_DEF|P_RWIN,
1109 (char_u *)VAR_WIN, PV_FML,
1110 {(char_u *)1L, (char_u *)0L}},
1111 {"foldnestmax", "fdn", P_NUM|P_VI_DEF|P_RWIN,
1112 (char_u *)VAR_WIN, PV_FDN,
1113 {(char_u *)20L, (char_u *)0L}},
1114 {"foldopen", "fdo", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1115 (char_u *)&p_fdo, PV_NONE,
1116 {(char_u *)"block,hor,mark,percent,quickfix,search,tag,undo",
1117 (char_u *)0L}},
1118 {"foldtext", "fdt", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN,
1119# ifdef FEAT_EVAL
1120 (char_u *)VAR_WIN, PV_FDT,
1121 {(char_u *)"foldtext()", (char_u *)NULL}
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001122# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001123 (char_u *)NULL, PV_NONE,
1124 {(char_u *)NULL, (char_u *)0L}
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001125# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001126 },
1127#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00001128 {"formatexpr", "fex", P_STRING|P_ALLOCED|P_VI_DEF|P_VIM,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00001129#ifdef FEAT_EVAL
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00001130 (char_u *)&p_fex, PV_FEX,
1131 {(char_u *)"", (char_u *)0L}
1132#else
1133 (char_u *)NULL, PV_NONE,
1134 {(char_u *)0L, (char_u *)0L}
1135#endif
1136 },
Bram Moolenaar071d4272004-06-13 20:20:40 +00001137 {"formatoptions","fo", P_STRING|P_ALLOCED|P_VIM|P_FLAGLIST,
1138 (char_u *)&p_fo, PV_FO,
1139 {(char_u *)DFLT_FO_VI, (char_u *)DFLT_FO_VIM}},
Bram Moolenaar86b68352004-12-27 21:59:20 +00001140 {"formatlistpat","flp", P_STRING|P_ALLOCED|P_VI_DEF,
1141 (char_u *)&p_flp, PV_FLP,
1142 {(char_u *)"^\\s*\\d\\+[\\]:.)}\\t ]\\s*", (char_u *)0L}},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001143 {"formatprg", "fp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1144 (char_u *)&p_fp, PV_NONE,
1145 {(char_u *)"", (char_u *)0L}},
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001146 {"fsync", "fs", P_BOOL|P_SECURE|P_VI_DEF,
1147#ifdef HAVE_FSYNC
1148 (char_u *)&p_fs, PV_NONE,
1149 {(char_u *)TRUE, (char_u *)0L}
1150#else
1151 (char_u *)NULL, PV_NONE,
1152 {(char_u *)FALSE, (char_u *)0L}
1153#endif
1154 },
Bram Moolenaar071d4272004-06-13 20:20:40 +00001155 {"gdefault", "gd", P_BOOL|P_VI_DEF|P_VIM,
1156 (char_u *)&p_gd, PV_NONE,
1157 {(char_u *)FALSE, (char_u *)0L}},
1158 {"graphic", "gr", P_BOOL|P_VI_DEF,
1159 (char_u *)NULL, PV_NONE,
1160 {(char_u *)FALSE, (char_u *)0L}},
1161 {"grepformat", "gfm", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1162#ifdef FEAT_QUICKFIX
1163 (char_u *)&p_gefm, PV_NONE,
1164 {(char_u *)DFLT_GREPFORMAT, (char_u *)0L},
1165#else
1166 (char_u *)NULL, PV_NONE,
1167 {(char_u *)NULL, (char_u *)0L}
1168#endif
1169 },
1170 {"grepprg", "gp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1171#ifdef FEAT_QUICKFIX
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00001172 (char_u *)&p_gp, PV_GP,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001173 {
1174# ifdef WIN3264
1175 /* may be changed to "grep -n" in os_win32.c */
1176 (char_u *)"findstr /n",
1177# else
1178# ifdef UNIX
1179 /* Add an extra file name so that grep will always
1180 * insert a file name in the match line. */
1181 (char_u *)"grep -n $* /dev/null",
1182# else
1183# ifdef VMS
1184 (char_u *)"SEARCH/NUMBERS ",
1185# else
1186 (char_u *)"grep -n ",
1187#endif
1188#endif
1189# endif
1190 (char_u *)0L},
1191#else
1192 (char_u *)NULL, PV_NONE,
1193 {(char_u *)NULL, (char_u *)0L}
1194#endif
1195 },
1196 {"guicursor", "gcr", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1197#ifdef CURSOR_SHAPE
1198 (char_u *)&p_guicursor, PV_NONE,
1199 {
1200# ifdef FEAT_GUI
1201 (char_u *)"n-v-c:block-Cursor/lCursor,ve:ver35-Cursor,o:hor50-Cursor,i-ci:ver25-Cursor/lCursor,r-cr:hor20-Cursor/lCursor,sm:block-Cursor-blinkwait175-blinkoff150-blinkon175",
1202# else /* MSDOS or Win32 console */
1203 (char_u *)"n-v-c:block,o:hor50,i-ci:hor15,r-cr:hor30,sm:block",
1204# endif
1205 (char_u *)0L}
1206#else
1207 (char_u *)NULL, PV_NONE,
1208 {(char_u *)NULL, (char_u *)0L}
1209#endif
1210 },
1211 {"guifont", "gfn", P_STRING|P_VI_DEF|P_RCLR|P_COMMA|P_NODUP,
1212#ifdef FEAT_GUI
1213 (char_u *)&p_guifont, PV_NONE,
1214 {(char_u *)"", (char_u *)0L}
1215#else
1216 (char_u *)NULL, PV_NONE,
1217 {(char_u *)NULL, (char_u *)0L}
1218#endif
1219 },
1220 {"guifontset", "gfs", P_STRING|P_VI_DEF|P_RCLR|P_COMMA,
1221#if defined(FEAT_GUI) && defined(FEAT_XFONTSET)
1222 (char_u *)&p_guifontset, PV_NONE,
1223 {(char_u *)"", (char_u *)0L}
1224#else
1225 (char_u *)NULL, PV_NONE,
1226 {(char_u *)NULL, (char_u *)0L}
1227#endif
1228 },
1229 {"guifontwide", "gfw", P_STRING|P_VI_DEF|P_RCLR|P_COMMA|P_NODUP,
1230#if defined(FEAT_GUI) && defined(FEAT_MBYTE)
1231 (char_u *)&p_guifontwide, PV_NONE,
1232 {(char_u *)"", (char_u *)0L}
1233#else
1234 (char_u *)NULL, PV_NONE,
1235 {(char_u *)NULL, (char_u *)0L}
1236#endif
1237 },
1238 {"guiheadroom", "ghr", P_NUM|P_VI_DEF,
Bram Moolenaar9372a112005-12-06 19:59:18 +00001239#if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001240 (char_u *)&p_ghr, PV_NONE,
1241#else
1242 (char_u *)NULL, PV_NONE,
1243#endif
1244 {(char_u *)50L, (char_u *)0L}},
1245 {"guioptions", "go", P_STRING|P_VI_DEF|P_RALL|P_FLAGLIST,
Bram Moolenaar9372a112005-12-06 19:59:18 +00001246#if defined(FEAT_GUI)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001247 (char_u *)&p_go, PV_NONE,
1248# if defined(UNIX) && !defined(MACOS)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001249 {(char_u *)"aegimrLtT", (char_u *)0L}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001250# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001251 {(char_u *)"egmrLtT", (char_u *)0L}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001252# endif
1253#else
1254 (char_u *)NULL, PV_NONE,
1255 {(char_u *)NULL, (char_u *)0L}
1256#endif
1257 },
1258 {"guipty", NULL, P_BOOL|P_VI_DEF,
1259#if defined(FEAT_GUI)
1260 (char_u *)&p_guipty, PV_NONE,
1261#else
1262 (char_u *)NULL, PV_NONE,
1263#endif
1264 {(char_u *)TRUE, (char_u *)0L}},
Bram Moolenaar18144c82006-04-12 21:52:12 +00001265 {"guitablabel", "gtl", P_STRING|P_VI_DEF|P_RWIN,
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00001266#if defined(FEAT_GUI_TABLINE)
1267 (char_u *)&p_gtl, PV_NONE,
1268 {(char_u *)"", (char_u *)0L}
1269#else
1270 (char_u *)NULL, PV_NONE,
1271 {(char_u *)NULL, (char_u *)0L}
1272#endif
1273 },
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00001274 {"guitabtooltip", "gtt", P_STRING|P_VI_DEF|P_RWIN,
Bram Moolenaar57657d82006-04-21 22:12:41 +00001275#if defined(FEAT_GUI_TABLINE)
1276 (char_u *)&p_gtt, PV_NONE,
1277 {(char_u *)"", (char_u *)0L}
1278#else
1279 (char_u *)NULL, PV_NONE,
1280 {(char_u *)NULL, (char_u *)0L}
1281#endif
1282 },
Bram Moolenaar071d4272004-06-13 20:20:40 +00001283 {"hardtabs", "ht", P_NUM|P_VI_DEF,
1284 (char_u *)NULL, PV_NONE,
1285 {(char_u *)0L, (char_u *)0L}},
1286 {"helpfile", "hf", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1287 (char_u *)&p_hf, PV_NONE,
1288 {(char_u *)DFLT_HELPFILE, (char_u *)0L}},
1289 {"helpheight", "hh", P_NUM|P_VI_DEF,
1290#ifdef FEAT_WINDOWS
1291 (char_u *)&p_hh, PV_NONE,
1292#else
1293 (char_u *)NULL, PV_NONE,
1294#endif
1295 {(char_u *)20L, (char_u *)0L}},
1296 {"helplang", "hlg", P_STRING|P_VI_DEF|P_COMMA,
1297#ifdef FEAT_MULTI_LANG
1298 (char_u *)&p_hlg, PV_NONE,
1299 {(char_u *)"", (char_u *)0L}
1300#else
1301 (char_u *)NULL, PV_NONE,
1302 {(char_u *)0L, (char_u *)0L}
1303#endif
1304 },
1305 {"hidden", "hid", P_BOOL|P_VI_DEF,
1306 (char_u *)&p_hid, PV_NONE,
1307 {(char_u *)FALSE, (char_u *)0L}},
1308 {"highlight", "hl", P_STRING|P_VI_DEF|P_RCLR|P_COMMA|P_NODUP,
1309 (char_u *)&p_hl, PV_NONE,
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001310 {(char_u *)HIGHLIGHT_INIT, (char_u *)0L}},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001311 {"history", "hi", P_NUM|P_VIM,
1312 (char_u *)&p_hi, PV_NONE,
1313 {(char_u *)0L, (char_u *)20L}},
1314 {"hkmap", "hk", P_BOOL|P_VI_DEF|P_VIM,
1315#ifdef FEAT_RIGHTLEFT
1316 (char_u *)&p_hkmap, PV_NONE,
1317#else
1318 (char_u *)NULL, PV_NONE,
1319#endif
1320 {(char_u *)FALSE, (char_u *)0L}},
1321 {"hkmapp", "hkp", P_BOOL|P_VI_DEF|P_VIM,
1322#ifdef FEAT_RIGHTLEFT
1323 (char_u *)&p_hkmapp, PV_NONE,
1324#else
1325 (char_u *)NULL, PV_NONE,
1326#endif
1327 {(char_u *)FALSE, (char_u *)0L}},
1328 {"hlsearch", "hls", P_BOOL|P_VI_DEF|P_VIM|P_RALL,
1329 (char_u *)&p_hls, PV_NONE,
1330 {(char_u *)FALSE, (char_u *)0L}},
1331 {"icon", NULL, P_BOOL|P_VI_DEF,
1332#ifdef FEAT_TITLE
1333 (char_u *)&p_icon, PV_NONE,
1334#else
1335 (char_u *)NULL, PV_NONE,
1336#endif
1337 {(char_u *)FALSE, (char_u *)0L}},
1338 {"iconstring", NULL, P_STRING|P_VI_DEF,
1339#ifdef FEAT_TITLE
1340 (char_u *)&p_iconstring, PV_NONE,
1341#else
1342 (char_u *)NULL, PV_NONE,
1343#endif
1344 {(char_u *)"", (char_u *)0L}},
1345 {"ignorecase", "ic", P_BOOL|P_VI_DEF,
1346 (char_u *)&p_ic, PV_NONE,
1347 {(char_u *)FALSE, (char_u *)0L}},
1348 {"imactivatekey","imak",P_STRING|P_VI_DEF,
Bram Moolenaar9372a112005-12-06 19:59:18 +00001349#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001350 (char_u *)&p_imak, PV_NONE,
1351#else
1352 (char_u *)NULL, PV_NONE,
1353#endif
1354 {(char_u *)"", (char_u *)0L}},
1355 {"imcmdline", "imc", P_BOOL|P_VI_DEF,
1356#ifdef USE_IM_CONTROL
1357 (char_u *)&p_imcmdline, PV_NONE,
1358#else
1359 (char_u *)NULL, PV_NONE,
1360#endif
1361 {(char_u *)FALSE, (char_u *)0L}},
1362 {"imdisable", "imd", P_BOOL|P_VI_DEF,
1363#ifdef USE_IM_CONTROL
1364 (char_u *)&p_imdisable, PV_NONE,
1365#else
1366 (char_u *)NULL, PV_NONE,
1367#endif
1368#ifdef __sgi
1369 {(char_u *)TRUE, (char_u *)0L}
1370#else
1371 {(char_u *)FALSE, (char_u *)0L}
1372#endif
1373 },
1374 {"iminsert", "imi", P_NUM|P_VI_DEF,
1375 (char_u *)&p_iminsert, PV_IMI,
1376#ifdef B_IMODE_IM
1377 {(char_u *)B_IMODE_IM, (char_u *)0L}
1378#else
1379 {(char_u *)B_IMODE_NONE, (char_u *)0L}
1380#endif
1381 },
1382 {"imsearch", "ims", P_NUM|P_VI_DEF,
1383 (char_u *)&p_imsearch, PV_IMS,
1384#ifdef B_IMODE_IM
1385 {(char_u *)B_IMODE_IM, (char_u *)0L}
1386#else
1387 {(char_u *)B_IMODE_NONE, (char_u *)0L}
1388#endif
1389 },
1390 {"include", "inc", P_STRING|P_ALLOCED|P_VI_DEF,
1391#ifdef FEAT_FIND_ID
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00001392 (char_u *)&p_inc, PV_INC,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001393 {(char_u *)"^\\s*#\\s*include", (char_u *)0L}
1394#else
1395 (char_u *)NULL, PV_NONE,
1396 {(char_u *)0L, (char_u *)0L}
1397#endif
1398 },
1399 {"includeexpr", "inex", P_STRING|P_ALLOCED|P_VI_DEF,
1400#if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
1401 (char_u *)&p_inex, PV_INEX,
1402 {(char_u *)"", (char_u *)0L}
1403#else
1404 (char_u *)NULL, PV_NONE,
1405 {(char_u *)0L, (char_u *)0L}
1406#endif
1407 },
1408 {"incsearch", "is", P_BOOL|P_VI_DEF|P_VIM,
1409 (char_u *)&p_is, PV_NONE,
1410 {(char_u *)FALSE, (char_u *)0L}},
1411 {"indentexpr", "inde", P_STRING|P_ALLOCED|P_VI_DEF|P_VIM,
1412#if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
1413 (char_u *)&p_inde, PV_INDE,
1414 {(char_u *)"", (char_u *)0L}
1415#else
1416 (char_u *)NULL, PV_NONE,
1417 {(char_u *)0L, (char_u *)0L}
1418#endif
1419 },
1420 {"indentkeys", "indk", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
1421#if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
1422 (char_u *)&p_indk, PV_INDK,
1423 {(char_u *)"0{,0},:,0#,!^F,o,O,e", (char_u *)0L}
1424#else
1425 (char_u *)NULL, PV_NONE,
1426 {(char_u *)0L, (char_u *)0L}
1427#endif
1428 },
1429 {"infercase", "inf", P_BOOL|P_VI_DEF,
1430 (char_u *)&p_inf, PV_INF,
1431 {(char_u *)FALSE, (char_u *)0L}},
1432 {"insertmode", "im", P_BOOL|P_VI_DEF|P_VIM,
1433 (char_u *)&p_im, PV_NONE,
1434 {(char_u *)FALSE, (char_u *)0L}},
1435 {"isfname", "isf", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1436 (char_u *)&p_isf, PV_NONE,
1437 {
1438#ifdef BACKSLASH_IN_FILENAME
1439 /* Excluded are: & and ^ are special in cmd.exe
1440 * ( and ) are used in text separating fnames */
1441 (char_u *)"@,48-57,/,\\,.,-,_,+,,,#,$,%,{,},[,],:,@-@,!,~,=",
1442#else
1443# ifdef AMIGA
1444 (char_u *)"@,48-57,/,.,-,_,+,,,$,:",
1445# else
1446# ifdef VMS
1447 (char_u *)"@,48-57,/,.,-,_,+,,,#,$,%,<,>,[,],:,;,~",
1448# else /* UNIX et al. */
1449# ifdef EBCDIC
1450 (char_u *)"@,240-249,/,.,-,_,+,,,#,$,%,~,=",
1451# else
1452 (char_u *)"@,48-57,/,.,-,_,+,,,#,$,%,~,=",
1453# endif
1454# endif
1455# endif
1456#endif
1457 (char_u *)0L}},
1458 {"isident", "isi", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1459 (char_u *)&p_isi, PV_NONE,
1460 {
1461#if defined(MSDOS) || defined(MSWIN) || defined(OS2)
1462 (char_u *)"@,48-57,_,128-167,224-235",
1463#else
1464# ifdef EBCDIC
1465 /* TODO: EBCDIC Check this! @ == isalpha()*/
1466 (char_u *)"@,240-249,_,66-73,81-89,98-105,"
1467 "112-120,128,140-142,156,158,172,"
1468 "174,186,191,203-207,219-225,235-239,"
1469 "251-254",
1470# else
1471 (char_u *)"@,48-57,_,192-255",
1472# endif
1473#endif
1474 (char_u *)0L}},
1475 {"iskeyword", "isk", P_STRING|P_ALLOCED|P_VIM|P_COMMA|P_NODUP,
1476 (char_u *)&p_isk, PV_ISK,
1477 {
1478#ifdef EBCDIC
1479 (char_u *)"@,240-249,_",
1480 /* TODO: EBCDIC Check this! @ == isalpha()*/
1481 (char_u *)"@,240-249,_,66-73,81-89,98-105,"
1482 "112-120,128,140-142,156,158,172,"
1483 "174,186,191,203-207,219-225,235-239,"
1484 "251-254",
1485#else
1486 (char_u *)"@,48-57,_",
1487# if defined(MSDOS) || defined(MSWIN) || defined(OS2)
1488 (char_u *)"@,48-57,_,128-167,224-235"
1489# else
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001490 ISK_LATIN1
Bram Moolenaar071d4272004-06-13 20:20:40 +00001491# endif
1492#endif
1493 }},
1494 {"isprint", "isp", P_STRING|P_VI_DEF|P_RALL|P_COMMA|P_NODUP,
1495 (char_u *)&p_isp, PV_NONE,
1496 {
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001497#if defined(MSDOS) || defined(MSWIN) || defined(OS2) \
1498 || (defined(MACOS) && !defined(MACOS_X)) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00001499 || defined(VMS)
1500 (char_u *)"@,~-255",
1501#else
1502# ifdef EBCDIC
1503 /* all chars above 63 are printable */
1504 (char_u *)"63-255",
1505# else
Bram Moolenaar4ea8fe12006-03-09 22:32:39 +00001506 ISP_LATIN1,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001507# endif
1508#endif
1509 (char_u *)0L}},
1510 {"joinspaces", "js", P_BOOL|P_VI_DEF|P_VIM,
1511 (char_u *)&p_js, PV_NONE,
1512 {(char_u *)TRUE, (char_u *)0L}},
1513 {"key", NULL, P_STRING|P_ALLOCED|P_VI_DEF|P_NO_MKRC,
1514#ifdef FEAT_CRYPT
1515 (char_u *)&p_key, PV_KEY,
1516 {(char_u *)"", (char_u *)0L}
1517#else
1518 (char_u *)NULL, PV_NONE,
1519 {(char_u *)0L, (char_u *)0L}
1520#endif
1521 },
Bram Moolenaar7fd16022007-09-06 14:35:35 +00001522 {"keymap", "kmp", P_STRING|P_ALLOCED|P_VI_DEF|P_RBUF|P_RSTAT|P_NFNAME|P_PRI_MKRC,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001523#ifdef FEAT_KEYMAP
1524 (char_u *)&p_keymap, PV_KMAP,
1525 {(char_u *)"", (char_u *)0L}
1526#else
1527 (char_u *)NULL, PV_NONE,
1528 {(char_u *)"", (char_u *)0L}
1529#endif
1530 },
1531 {"keymodel", "km", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1532#ifdef FEAT_VISUAL
1533 (char_u *)&p_km, PV_NONE,
1534#else
1535 (char_u *)NULL, PV_NONE,
1536#endif
1537 {(char_u *)"", (char_u *)0L}},
1538 {"keywordprg", "kp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00001539 (char_u *)&p_kp, PV_KP,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001540 {
1541#if defined(MSDOS) || defined(MSWIN)
1542 (char_u *)":help",
1543#else
1544#ifdef VMS
1545 (char_u *)"help",
1546#else
1547# if defined(OS2)
1548 (char_u *)"view /",
1549# else
1550# ifdef USEMAN_S
1551 (char_u *)"man -s",
1552# else
1553 (char_u *)"man",
1554# endif
1555# endif
1556#endif
1557#endif
1558 (char_u *)0L}},
1559 {"langmap", "lmap", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1560#ifdef FEAT_LANGMAP
1561 (char_u *)&p_langmap, PV_NONE,
1562 {(char_u *)"", /* unmatched } */
1563#else
1564 (char_u *)NULL, PV_NONE,
1565 {(char_u *)NULL,
1566#endif
1567 (char_u *)0L}},
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001568 {"langmenu", "lm", P_STRING|P_VI_DEF|P_NFNAME,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001569#if defined(FEAT_MENU) && defined(FEAT_MULTI_LANG)
1570 (char_u *)&p_lm, PV_NONE,
1571#else
1572 (char_u *)NULL, PV_NONE,
1573#endif
1574 {(char_u *)"", (char_u *)0L}},
1575 {"laststatus", "ls", P_NUM|P_VI_DEF|P_RALL,
1576#ifdef FEAT_WINDOWS
1577 (char_u *)&p_ls, PV_NONE,
1578#else
1579 (char_u *)NULL, PV_NONE,
1580#endif
1581 {(char_u *)1L, (char_u *)0L}},
1582 {"lazyredraw", "lz", P_BOOL|P_VI_DEF,
1583 (char_u *)&p_lz, PV_NONE,
1584 {(char_u *)FALSE, (char_u *)0L}},
1585 {"linebreak", "lbr", P_BOOL|P_VI_DEF|P_RWIN,
1586#ifdef FEAT_LINEBREAK
1587 (char_u *)VAR_WIN, PV_LBR,
1588#else
1589 (char_u *)NULL, PV_NONE,
1590#endif
1591 {(char_u *)FALSE, (char_u *)0L}},
1592 {"lines", NULL, P_NUM|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RCLR,
1593 (char_u *)&Rows, PV_NONE,
1594 {
1595#if defined(MSDOS) || defined(WIN3264) || defined(OS2)
1596 (char_u *)25L,
1597#else
1598 (char_u *)24L,
1599#endif
1600 (char_u *)0L}},
1601 {"linespace", "lsp", P_NUM|P_VI_DEF|P_RCLR,
1602#ifdef FEAT_GUI
1603 (char_u *)&p_linespace, PV_NONE,
1604#else
1605 (char_u *)NULL, PV_NONE,
1606#endif
1607#ifdef FEAT_GUI_W32
1608 {(char_u *)1L, (char_u *)0L}
1609#else
1610 {(char_u *)0L, (char_u *)0L}
1611#endif
1612 },
1613 {"lisp", NULL, P_BOOL|P_VI_DEF,
1614#ifdef FEAT_LISP
1615 (char_u *)&p_lisp, PV_LISP,
1616#else
1617 (char_u *)NULL, PV_NONE,
1618#endif
1619 {(char_u *)FALSE, (char_u *)0L}},
1620 {"lispwords", "lw", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1621#ifdef FEAT_LISP
1622 (char_u *)&p_lispwords, PV_NONE,
1623 {(char_u *)LISPWORD_VALUE, (char_u *)0L}
1624#else
1625 (char_u *)NULL, PV_NONE,
1626 {(char_u *)"", (char_u *)0L}
1627#endif
1628 },
1629 {"list", NULL, P_BOOL|P_VI_DEF|P_RWIN,
1630 (char_u *)VAR_WIN, PV_LIST,
1631 {(char_u *)FALSE, (char_u *)0L}},
1632 {"listchars", "lcs", P_STRING|P_VI_DEF|P_RALL|P_COMMA|P_NODUP,
1633 (char_u *)&p_lcs, PV_NONE,
1634 {(char_u *)"eol:$", (char_u *)0L}},
1635 {"loadplugins", "lpl", P_BOOL|P_VI_DEF,
1636 (char_u *)&p_lpl, PV_NONE,
1637 {(char_u *)TRUE, (char_u *)0L}},
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00001638#ifdef FEAT_GUI_MAC
1639 {"macatsui", NULL, P_BOOL|P_VI_DEF|P_RCLR,
1640 (char_u *)&p_macatsui, PV_NONE,
1641 {(char_u *)TRUE, (char_u *)0L}},
1642#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001643 {"magic", NULL, P_BOOL|P_VI_DEF,
1644 (char_u *)&p_magic, PV_NONE,
1645 {(char_u *)TRUE, (char_u *)0L}},
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001646 {"makeef", "mef", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001647#ifdef FEAT_QUICKFIX
1648 (char_u *)&p_mef, PV_NONE,
1649 {(char_u *)"", (char_u *)0L}
1650#else
1651 (char_u *)NULL, PV_NONE,
1652 {(char_u *)NULL, (char_u *)0L}
1653#endif
1654 },
1655 {"makeprg", "mp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1656#ifdef FEAT_QUICKFIX
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00001657 (char_u *)&p_mp, PV_MP,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001658# ifdef VMS
1659 {(char_u *)"MMS", (char_u *)0L}
1660# else
1661 {(char_u *)"make", (char_u *)0L}
1662# endif
1663#else
1664 (char_u *)NULL, PV_NONE,
1665 {(char_u *)NULL, (char_u *)0L}
1666#endif
1667 },
1668 {"matchpairs", "mps", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
1669 (char_u *)&p_mps, PV_MPS,
1670 {(char_u *)"(:),{:},[:]", (char_u *)0L}},
1671 {"matchtime", "mat", P_NUM|P_VI_DEF,
1672 (char_u *)&p_mat, PV_NONE,
1673 {(char_u *)5L, (char_u *)0L}},
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001674 {"maxcombine", "mco", P_NUM|P_VI_DEF,
1675#ifdef FEAT_MBYTE
1676 (char_u *)&p_mco, PV_NONE,
1677#else
1678 (char_u *)NULL, PV_NONE,
1679#endif
1680 {(char_u *)2, (char_u *)0L}},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001681 {"maxfuncdepth", "mfd", P_NUM|P_VI_DEF,
1682#ifdef FEAT_EVAL
1683 (char_u *)&p_mfd, PV_NONE,
1684#else
1685 (char_u *)NULL, PV_NONE,
1686#endif
1687 {(char_u *)100L, (char_u *)0L}},
1688 {"maxmapdepth", "mmd", P_NUM|P_VI_DEF,
1689 (char_u *)&p_mmd, PV_NONE,
1690 {(char_u *)1000L, (char_u *)0L}},
1691 {"maxmem", "mm", P_NUM|P_VI_DEF,
1692 (char_u *)&p_mm, PV_NONE,
1693 {(char_u *)DFLT_MAXMEM, (char_u *)0L}},
Bram Moolenaarf1f8bc52005-03-07 23:20:08 +00001694 {"maxmempattern","mmp", P_NUM|P_VI_DEF,
1695 (char_u *)&p_mmp, PV_NONE,
1696 {(char_u *)1000L, (char_u *)0L}},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001697 {"maxmemtot", "mmt", P_NUM|P_VI_DEF,
1698 (char_u *)&p_mmt, PV_NONE,
1699 {(char_u *)DFLT_MAXMEMTOT, (char_u *)0L}},
1700 {"menuitems", "mis", P_NUM|P_VI_DEF,
1701#ifdef FEAT_MENU
1702 (char_u *)&p_mis, PV_NONE,
1703#else
1704 (char_u *)NULL, PV_NONE,
1705#endif
1706 {(char_u *)25L, (char_u *)0L}},
1707 {"mesg", NULL, P_BOOL|P_VI_DEF,
1708 (char_u *)NULL, PV_NONE,
1709 {(char_u *)FALSE, (char_u *)0L}},
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00001710 {"mkspellmem", "msm", P_STRING|P_VI_DEF|P_EXPAND|P_SECURE,
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00001711#ifdef FEAT_SPELL
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00001712 (char_u *)&p_msm, PV_NONE,
1713 {(char_u *)"460000,2000,500", (char_u *)0L}
1714#else
1715 (char_u *)NULL, PV_NONE,
1716 {(char_u *)0L, (char_u *)0L}
1717#endif
1718 },
Bram Moolenaar071d4272004-06-13 20:20:40 +00001719 {"modeline", "ml", P_BOOL|P_VIM,
1720 (char_u *)&p_ml, PV_ML,
1721 {(char_u *)FALSE, (char_u *)TRUE}},
1722 {"modelines", "mls", P_NUM|P_VI_DEF,
1723 (char_u *)&p_mls, PV_NONE,
1724 {(char_u *)5L, (char_u *)0L}},
1725 {"modifiable", "ma", P_BOOL|P_VI_DEF|P_NOGLOB,
1726 (char_u *)&p_ma, PV_MA,
1727 {(char_u *)TRUE, (char_u *)0L}},
1728 {"modified", "mod", P_BOOL|P_NO_MKRC|P_VI_DEF|P_RSTAT,
1729 (char_u *)&p_mod, PV_MOD,
1730 {(char_u *)FALSE, (char_u *)0L}},
1731 {"more", NULL, P_BOOL|P_VIM,
1732 (char_u *)&p_more, PV_NONE,
1733 {(char_u *)FALSE, (char_u *)TRUE}},
1734 {"mouse", NULL, P_STRING|P_VI_DEF|P_FLAGLIST,
1735 (char_u *)&p_mouse, PV_NONE,
1736 {
1737#if defined(MSDOS) || defined(WIN3264)
1738 (char_u *)"a",
1739#else
1740 (char_u *)"",
1741#endif
1742 (char_u *)0L}},
1743 {"mousefocus", "mousef", P_BOOL|P_VI_DEF,
1744#ifdef FEAT_GUI
1745 (char_u *)&p_mousef, PV_NONE,
1746#else
1747 (char_u *)NULL, PV_NONE,
1748#endif
1749 {(char_u *)FALSE, (char_u *)0L}},
1750 {"mousehide", "mh", P_BOOL|P_VI_DEF,
1751#ifdef FEAT_GUI
1752 (char_u *)&p_mh, PV_NONE,
1753#else
1754 (char_u *)NULL, PV_NONE,
1755#endif
1756 {(char_u *)TRUE, (char_u *)0L}},
1757 {"mousemodel", "mousem", P_STRING|P_VI_DEF,
1758 (char_u *)&p_mousem, PV_NONE,
1759 {
1760#if defined(MSDOS) || defined(MSWIN)
1761 (char_u *)"popup",
1762#else
1763# if defined(MACOS)
1764 (char_u *)"popup_setpos",
1765# else
1766 (char_u *)"extend",
1767# endif
1768#endif
1769 (char_u *)0L}},
1770 {"mouseshape", "mouses", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1771#ifdef FEAT_MOUSESHAPE
1772 (char_u *)&p_mouseshape, PV_NONE,
1773 {(char_u *)"i-r:beam,s:updown,sd:udsizing,vs:leftright,vd:lrsizing,m:no,ml:up-arrow,v:rightup-arrow", (char_u *)0L}
1774#else
1775 (char_u *)NULL, PV_NONE,
1776 {(char_u *)NULL, (char_u *)0L}
1777#endif
1778 },
1779 {"mousetime", "mouset", P_NUM|P_VI_DEF,
1780 (char_u *)&p_mouset, PV_NONE,
1781 {(char_u *)500L, (char_u *)0L}},
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001782 {"mzquantum", "mzq", P_NUM,
1783#ifdef FEAT_MZSCHEME
1784 (char_u *)&p_mzq, PV_NONE,
1785#else
1786 (char_u *)NULL, PV_NONE,
1787#endif
1788 {(char_u *)100L, (char_u *)100L}},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001789 {"novice", NULL, P_BOOL|P_VI_DEF,
1790 (char_u *)NULL, PV_NONE,
1791 {(char_u *)FALSE, (char_u *)0L}},
1792 {"nrformats", "nf", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP,
1793 (char_u *)&p_nf, PV_NF,
1794 {(char_u *)"octal,hex", (char_u *)0L}},
1795 {"number", "nu", P_BOOL|P_VI_DEF|P_RWIN,
1796 (char_u *)VAR_WIN, PV_NU,
1797 {(char_u *)FALSE, (char_u *)0L}},
Bram Moolenaar592e0a22004-07-03 16:05:59 +00001798 {"numberwidth", "nuw", P_NUM|P_RWIN|P_VIM,
1799#ifdef FEAT_LINEBREAK
1800 (char_u *)VAR_WIN, PV_NUW,
1801#else
1802 (char_u *)NULL, PV_NONE,
1803#endif
1804 {(char_u *)8L, (char_u *)4L}},
Bram Moolenaarf75a9632005-09-13 21:20:47 +00001805 {"omnifunc", "ofu", P_STRING|P_ALLOCED|P_VI_DEF|P_SECURE,
Bram Moolenaare344bea2005-09-01 20:46:49 +00001806#ifdef FEAT_COMPL_FUNC
1807 (char_u *)&p_ofu, PV_OFU,
1808 {(char_u *)"", (char_u *)0L}
1809#else
1810 (char_u *)NULL, PV_NONE,
1811 {(char_u *)0L, (char_u *)0L}
1812#endif
1813 },
Bram Moolenaar071d4272004-06-13 20:20:40 +00001814 {"open", NULL, P_BOOL|P_VI_DEF,
1815 (char_u *)NULL, PV_NONE,
1816 {(char_u *)FALSE, (char_u *)0L}},
Bram Moolenaar043545e2006-10-10 16:44:07 +00001817 {"opendevice", "odev", P_BOOL|P_VI_DEF,
1818#if defined(MSDOS) || defined(MSWIN) || defined(OS2)
1819 (char_u *)&p_odev, PV_NONE,
1820#else
1821 (char_u *)NULL, PV_NONE,
1822#endif
1823 {(char_u *)FALSE, (char_u *)FALSE}
1824 },
Bram Moolenaar2c7a29c2005-12-12 22:02:31 +00001825 {"operatorfunc", "opfunc", P_STRING|P_VI_DEF|P_SECURE,
1826 (char_u *)&p_opfunc, PV_NONE,
1827 {(char_u *)"", (char_u *)0L} },
Bram Moolenaar071d4272004-06-13 20:20:40 +00001828 {"optimize", "opt", P_BOOL|P_VI_DEF,
1829 (char_u *)NULL, PV_NONE,
1830 {(char_u *)FALSE, (char_u *)0L}},
1831 {"osfiletype", "oft", P_STRING|P_ALLOCED|P_VI_DEF,
1832#ifdef FEAT_OSFILETYPE
1833 (char_u *)&p_oft, PV_OFT,
1834 {(char_u *)DFLT_OFT, (char_u *)0L}
1835#else
1836 (char_u *)NULL, PV_NONE,
1837 {(char_u *)0L, (char_u *)0L}
1838#endif
1839 },
1840 {"paragraphs", "para", P_STRING|P_VI_DEF,
1841 (char_u *)&p_para, PV_NONE,
1842 {(char_u *)"IPLPPPQPP LIpplpipbp", (char_u *)0L}},
Bram Moolenaar7fd16022007-09-06 14:35:35 +00001843 {"paste", NULL, P_BOOL|P_VI_DEF|P_PRI_MKRC,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001844 (char_u *)&p_paste, PV_NONE,
1845 {(char_u *)FALSE, (char_u *)0L}},
1846 {"pastetoggle", "pt", P_STRING|P_VI_DEF,
1847 (char_u *)&p_pt, PV_NONE,
1848 {(char_u *)"", (char_u *)0L}},
1849 {"patchexpr", "pex", P_STRING|P_VI_DEF|P_SECURE,
1850#if defined(FEAT_DIFF) && defined(FEAT_EVAL)
1851 (char_u *)&p_pex, PV_NONE,
1852 {(char_u *)"", (char_u *)0L}
1853#else
1854 (char_u *)NULL, PV_NONE,
1855 {(char_u *)0L, (char_u *)0L}
1856#endif
1857 },
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001858 {"patchmode", "pm", P_STRING|P_VI_DEF|P_NFNAME,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001859 (char_u *)&p_pm, PV_NONE,
1860 {(char_u *)"", (char_u *)0L}},
1861 {"path", "pa", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00001862 (char_u *)&p_path, PV_PATH,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001863 {
1864#if defined AMIGA || defined MSDOS || defined MSWIN
1865 (char_u *)".,,",
1866#else
1867# if defined(__EMX__)
1868 (char_u *)".,/emx/include,,",
1869# else /* Unix, probably */
1870 (char_u *)".,/usr/include,,",
1871# endif
1872#endif
1873 (char_u *)0L}},
1874 {"preserveindent", "pi", P_BOOL|P_VI_DEF|P_VIM,
1875 (char_u *)&p_pi, PV_PI,
1876 {(char_u *)FALSE, (char_u *)0L}},
Bram Moolenaar592e0a22004-07-03 16:05:59 +00001877 {"previewheight", "pvh", P_NUM|P_VI_DEF,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001878#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
1879 (char_u *)&p_pvh, PV_NONE,
1880#else
1881 (char_u *)NULL, PV_NONE,
1882#endif
1883 {(char_u *)12L, (char_u *)0L}},
1884 {"previewwindow", "pvw", P_BOOL|P_VI_DEF|P_RSTAT|P_NOGLOB,
1885#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
1886 (char_u *)VAR_WIN, PV_PVW,
1887#else
1888 (char_u *)NULL, PV_NONE,
1889#endif
1890 {(char_u *)FALSE, (char_u *)0L}},
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001891 {"printdevice", "pdev", P_STRING|P_VI_DEF|P_SECURE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001892#ifdef FEAT_PRINTER
1893 (char_u *)&p_pdev, PV_NONE,
1894 {(char_u *)"", (char_u *)0L}
1895#else
1896 (char_u *)NULL, PV_NONE,
1897 {(char_u *)NULL, (char_u *)0L}
1898#endif
1899 },
1900 {"printencoding", "penc", P_STRING|P_VI_DEF,
1901#ifdef FEAT_POSTSCRIPT
1902 (char_u *)&p_penc, PV_NONE,
1903 {(char_u *)"", (char_u *)0L}
1904#else
1905 (char_u *)NULL, PV_NONE,
1906 {(char_u *)NULL, (char_u *)0L}
1907#endif
1908 },
1909 {"printexpr", "pexpr", P_STRING|P_VI_DEF,
1910#ifdef FEAT_POSTSCRIPT
1911 (char_u *)&p_pexpr, PV_NONE,
1912 {(char_u *)"", (char_u *)0L}
1913#else
1914 (char_u *)NULL, PV_NONE,
1915 {(char_u *)NULL, (char_u *)0L}
1916#endif
1917 },
1918 {"printfont", "pfn", P_STRING|P_VI_DEF,
1919#ifdef FEAT_PRINTER
1920 (char_u *)&p_pfn, PV_NONE,
1921 {
1922# ifdef MSWIN
1923 (char_u *)"Courier_New:h10",
1924# else
1925 (char_u *)"courier",
1926# endif
1927 (char_u *)0L}
1928#else
1929 (char_u *)NULL, PV_NONE,
1930 {(char_u *)NULL, (char_u *)0L}
1931#endif
1932 },
1933 {"printheader", "pheader", P_STRING|P_VI_DEF|P_GETTEXT,
1934#ifdef FEAT_PRINTER
1935 (char_u *)&p_header, PV_NONE,
1936 {(char_u *)N_("%<%f%h%m%=Page %N"), (char_u *)0L}
1937#else
1938 (char_u *)NULL, PV_NONE,
1939 {(char_u *)NULL, (char_u *)0L}
1940#endif
1941 },
Bram Moolenaar8299df92004-07-10 09:47:34 +00001942 {"printmbcharset", "pmbcs", P_STRING|P_VI_DEF,
1943#if defined(FEAT_POSTSCRIPT) && defined(FEAT_MBYTE)
1944 (char_u *)&p_pmcs, PV_NONE,
1945 {(char_u *)"", (char_u *)0L}
1946#else
1947 (char_u *)NULL, PV_NONE,
1948 {(char_u *)NULL, (char_u *)0L}
1949#endif
1950 },
1951 {"printmbfont", "pmbfn", P_STRING|P_VI_DEF,
1952#if defined(FEAT_POSTSCRIPT) && defined(FEAT_MBYTE)
1953 (char_u *)&p_pmfn, PV_NONE,
1954 {(char_u *)"", (char_u *)0L}
1955#else
1956 (char_u *)NULL, PV_NONE,
1957 {(char_u *)NULL, (char_u *)0L}
1958#endif
1959 },
Bram Moolenaar071d4272004-06-13 20:20:40 +00001960 {"printoptions", "popt", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
1961#ifdef FEAT_PRINTER
1962 (char_u *)&p_popt, PV_NONE,
1963 {(char_u *)"", (char_u *)0L}
1964#else
1965 (char_u *)NULL, PV_NONE,
1966 {(char_u *)NULL, (char_u *)0L}
1967#endif
1968 },
1969 {"prompt", NULL, P_BOOL|P_VI_DEF,
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001970 (char_u *)&p_prompt, PV_NONE,
1971 {(char_u *)TRUE, (char_u *)0L}},
Bram Moolenaar9d47f172006-03-15 23:03:01 +00001972 {"pumheight", "ph", P_NUM|P_VI_DEF,
1973#ifdef FEAT_INS_EXPAND
1974 (char_u *)&p_ph, PV_NONE,
1975#else
1976 (char_u *)NULL, PV_NONE,
1977#endif
1978 {(char_u *)0L, (char_u *)0L}},
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00001979 {"quoteescape", "qe", P_STRING|P_ALLOCED|P_VI_DEF,
1980#ifdef FEAT_TEXTOBJ
1981 (char_u *)&p_qe, PV_QE,
1982 {(char_u *)"\\", (char_u *)0L}
1983#else
1984 (char_u *)NULL, PV_NONE,
1985 {(char_u *)NULL, (char_u *)0L}
1986#endif
1987 },
Bram Moolenaar071d4272004-06-13 20:20:40 +00001988 {"readonly", "ro", P_BOOL|P_VI_DEF|P_RSTAT|P_NOGLOB,
1989 (char_u *)&p_ro, PV_RO,
1990 {(char_u *)FALSE, (char_u *)0L}},
1991 {"redraw", NULL, P_BOOL|P_VI_DEF,
1992 (char_u *)NULL, PV_NONE,
1993 {(char_u *)FALSE, (char_u *)0L}},
Bram Moolenaar91a4e822008-01-19 14:59:58 +00001994 {"redrawtime", "rdt", P_NUM|P_VI_DEF,
1995#ifdef FEAT_RELTIME
1996 (char_u *)&p_rdt, PV_NONE,
1997#else
1998 (char_u *)NULL, PV_NONE,
1999#endif
2000 {(char_u *)2000L, (char_u *)0L}},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002001 {"remap", NULL, P_BOOL|P_VI_DEF,
2002 (char_u *)&p_remap, PV_NONE,
2003 {(char_u *)TRUE, (char_u *)0L}},
2004 {"report", NULL, P_NUM|P_VI_DEF,
2005 (char_u *)&p_report, PV_NONE,
2006 {(char_u *)2L, (char_u *)0L}},
2007 {"restorescreen", "rs", P_BOOL|P_VI_DEF,
2008#ifdef WIN3264
2009 (char_u *)&p_rs, PV_NONE,
2010#else
2011 (char_u *)NULL, PV_NONE,
2012#endif
2013 {(char_u *)TRUE, (char_u *)0L}},
2014 {"revins", "ri", P_BOOL|P_VI_DEF|P_VIM,
2015#ifdef FEAT_RIGHTLEFT
2016 (char_u *)&p_ri, PV_NONE,
2017#else
2018 (char_u *)NULL, PV_NONE,
2019#endif
2020 {(char_u *)FALSE, (char_u *)0L}},
2021 {"rightleft", "rl", P_BOOL|P_VI_DEF|P_RWIN,
2022#ifdef FEAT_RIGHTLEFT
2023 (char_u *)VAR_WIN, PV_RL,
2024#else
2025 (char_u *)NULL, PV_NONE,
2026#endif
2027 {(char_u *)FALSE, (char_u *)0L}},
2028 {"rightleftcmd", "rlc", P_STRING|P_ALLOCED|P_VI_DEF|P_RWIN,
2029#ifdef FEAT_RIGHTLEFT
2030 (char_u *)VAR_WIN, PV_RLC,
2031 {(char_u *)"search", (char_u *)NULL}
2032#else
2033 (char_u *)NULL, PV_NONE,
2034 {(char_u *)NULL, (char_u *)0L}
2035#endif
2036 },
2037 {"ruler", "ru", P_BOOL|P_VI_DEF|P_VIM|P_RSTAT,
2038#ifdef FEAT_CMDL_INFO
2039 (char_u *)&p_ru, PV_NONE,
2040#else
2041 (char_u *)NULL, PV_NONE,
2042#endif
2043 {(char_u *)FALSE, (char_u *)0L}},
2044 {"rulerformat", "ruf", P_STRING|P_VI_DEF|P_ALLOCED|P_RSTAT,
2045#ifdef FEAT_STL_OPT
2046 (char_u *)&p_ruf, PV_NONE,
2047#else
2048 (char_u *)NULL, PV_NONE,
2049#endif
2050 {(char_u *)"", (char_u *)0L}},
2051 {"runtimepath", "rtp", P_STRING|P_VI_DEF|P_EXPAND|P_COMMA|P_NODUP|P_SECURE,
2052 (char_u *)&p_rtp, PV_NONE,
2053 {(char_u *)DFLT_RUNTIMEPATH, (char_u *)0L}},
2054 {"scroll", "scr", P_NUM|P_NO_MKRC|P_VI_DEF,
2055 (char_u *)VAR_WIN, PV_SCROLL,
2056 {(char_u *)12L, (char_u *)0L}},
2057 {"scrollbind", "scb", P_BOOL|P_VI_DEF,
2058#ifdef FEAT_SCROLLBIND
2059 (char_u *)VAR_WIN, PV_SCBIND,
2060#else
2061 (char_u *)NULL, PV_NONE,
2062#endif
2063 {(char_u *)FALSE, (char_u *)0L}},
2064 {"scrolljump", "sj", P_NUM|P_VI_DEF|P_VIM,
2065 (char_u *)&p_sj, PV_NONE,
2066 {(char_u *)1L, (char_u *)0L}},
2067 {"scrolloff", "so", P_NUM|P_VI_DEF|P_VIM|P_RALL,
2068 (char_u *)&p_so, PV_NONE,
2069 {(char_u *)0L, (char_u *)0L}},
2070 {"scrollopt", "sbo", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2071#ifdef FEAT_SCROLLBIND
2072 (char_u *)&p_sbo, PV_NONE,
2073 {(char_u *)"ver,jump", (char_u *)0L}
2074#else
2075 (char_u *)NULL, PV_NONE,
2076 {(char_u *)0L, (char_u *)0L}
2077#endif
2078 },
2079 {"sections", "sect", P_STRING|P_VI_DEF,
2080 (char_u *)&p_sections, PV_NONE,
2081 {(char_u *)"SHNHH HUnhsh", (char_u *)0L}},
2082 {"secure", NULL, P_BOOL|P_VI_DEF|P_SECURE,
2083 (char_u *)&p_secure, PV_NONE,
2084 {(char_u *)FALSE, (char_u *)0L}},
2085 {"selection", "sel", P_STRING|P_VI_DEF,
2086#ifdef FEAT_VISUAL
2087 (char_u *)&p_sel, PV_NONE,
2088#else
2089 (char_u *)NULL, PV_NONE,
2090#endif
2091 {(char_u *)"inclusive", (char_u *)0L}},
2092 {"selectmode", "slm", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2093#ifdef FEAT_VISUAL
2094 (char_u *)&p_slm, PV_NONE,
2095#else
2096 (char_u *)NULL, PV_NONE,
2097#endif
2098 {(char_u *)"", (char_u *)0L}},
2099 {"sessionoptions", "ssop", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2100#ifdef FEAT_SESSION
2101 (char_u *)&p_ssop, PV_NONE,
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00002102 {(char_u *)"blank,buffers,curdir,folds,help,options,tabpages,winsize",
Bram Moolenaar071d4272004-06-13 20:20:40 +00002103 (char_u *)0L}
2104#else
2105 (char_u *)NULL, PV_NONE,
2106 {(char_u *)0L, (char_u *)0L}
2107#endif
2108 },
2109 {"shell", "sh", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
2110 (char_u *)&p_sh, PV_NONE,
2111 {
2112#ifdef VMS
2113 (char_u *)"-",
2114#else
2115# if defined(MSDOS)
2116 (char_u *)"command",
2117# else
2118# if defined(WIN16)
2119 (char_u *)"command.com",
2120# else
2121# if defined(WIN3264)
2122 (char_u *)"", /* set in set_init_1() */
2123# else
2124# if defined(OS2)
2125 (char_u *)"cmd.exe",
2126# else
2127# if defined(ARCHIE)
2128 (char_u *)"gos",
2129# else
2130 (char_u *)"sh",
2131# endif
2132# endif
2133# endif
2134# endif
2135# endif
2136#endif /* VMS */
2137 (char_u *)0L}},
2138 {"shellcmdflag","shcf", P_STRING|P_VI_DEF|P_SECURE,
2139 (char_u *)&p_shcf, PV_NONE,
2140 {
2141#if defined(MSDOS) || defined(MSWIN)
2142 (char_u *)"/c",
2143#else
2144# if defined(OS2)
2145 (char_u *)"/c",
2146# else
2147 (char_u *)"-c",
2148# endif
2149#endif
2150 (char_u *)0L}},
2151 {"shellpipe", "sp", P_STRING|P_VI_DEF|P_SECURE,
2152#ifdef FEAT_QUICKFIX
2153 (char_u *)&p_sp, PV_NONE,
2154 {
2155#if defined(UNIX) || defined(OS2)
2156# ifdef ARCHIE
2157 (char_u *)"2>",
2158# else
2159 (char_u *)"| tee",
2160# endif
2161#else
2162 (char_u *)">",
2163#endif
2164 (char_u *)0L}
2165#else
2166 (char_u *)NULL, PV_NONE,
2167 {(char_u *)0L, (char_u *)0L}
2168#endif
2169 },
2170 {"shellquote", "shq", P_STRING|P_VI_DEF|P_SECURE,
2171 (char_u *)&p_shq, PV_NONE,
2172 {(char_u *)"", (char_u *)0L}},
2173 {"shellredir", "srr", P_STRING|P_VI_DEF|P_SECURE,
2174 (char_u *)&p_srr, PV_NONE,
2175 {(char_u *)">", (char_u *)0L}},
2176 {"shellslash", "ssl", P_BOOL|P_VI_DEF,
2177#ifdef BACKSLASH_IN_FILENAME
2178 (char_u *)&p_ssl, PV_NONE,
2179#else
2180 (char_u *)NULL, PV_NONE,
2181#endif
2182 {(char_u *)FALSE, (char_u *)0L}},
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002183 {"shelltemp", "stmp", P_BOOL,
2184 (char_u *)&p_stmp, PV_NONE,
2185 {(char_u *)FALSE, (char_u *)TRUE}},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002186 {"shelltype", "st", P_NUM|P_VI_DEF,
2187#ifdef AMIGA
2188 (char_u *)&p_st, PV_NONE,
2189#else
2190 (char_u *)NULL, PV_NONE,
2191#endif
2192 {(char_u *)0L, (char_u *)0L}},
2193 {"shellxquote", "sxq", P_STRING|P_VI_DEF|P_SECURE,
2194 (char_u *)&p_sxq, PV_NONE,
2195 {
2196#if defined(UNIX) && defined(USE_SYSTEM) && !defined(__EMX__)
2197 (char_u *)"\"",
2198#else
2199 (char_u *)"",
2200#endif
2201 (char_u *)0L}},
2202 {"shiftround", "sr", P_BOOL|P_VI_DEF|P_VIM,
2203 (char_u *)&p_sr, PV_NONE,
2204 {(char_u *)FALSE, (char_u *)0L}},
2205 {"shiftwidth", "sw", P_NUM|P_VI_DEF,
2206 (char_u *)&p_sw, PV_SW,
2207 {(char_u *)8L, (char_u *)0L}},
2208 {"shortmess", "shm", P_STRING|P_VIM|P_FLAGLIST,
2209 (char_u *)&p_shm, PV_NONE,
2210 {(char_u *)"", (char_u *)"filnxtToO"}},
2211 {"shortname", "sn", P_BOOL|P_VI_DEF,
2212#ifdef SHORT_FNAME
2213 (char_u *)NULL, PV_NONE,
2214#else
2215 (char_u *)&p_sn, PV_SN,
2216#endif
2217 {(char_u *)FALSE, (char_u *)0L}},
2218 {"showbreak", "sbr", P_STRING|P_VI_DEF|P_RALL,
2219#ifdef FEAT_LINEBREAK
2220 (char_u *)&p_sbr, PV_NONE,
2221#else
2222 (char_u *)NULL, PV_NONE,
2223#endif
2224 {(char_u *)"", (char_u *)0L}},
2225 {"showcmd", "sc", P_BOOL|P_VIM,
2226#ifdef FEAT_CMDL_INFO
2227 (char_u *)&p_sc, PV_NONE,
2228#else
2229 (char_u *)NULL, PV_NONE,
2230#endif
2231 {(char_u *)FALSE,
2232#ifdef UNIX
2233 (char_u *)FALSE
2234#else
2235 (char_u *)TRUE
2236#endif
2237 }},
2238 {"showfulltag", "sft", P_BOOL|P_VI_DEF,
2239 (char_u *)&p_sft, PV_NONE,
2240 {(char_u *)FALSE, (char_u *)0L}},
2241 {"showmatch", "sm", P_BOOL|P_VI_DEF,
2242 (char_u *)&p_sm, PV_NONE,
2243 {(char_u *)FALSE, (char_u *)0L}},
2244 {"showmode", "smd", P_BOOL|P_VIM,
2245 (char_u *)&p_smd, PV_NONE,
2246 {(char_u *)FALSE, (char_u *)TRUE}},
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00002247 {"showtabline", "stal", P_NUM|P_VI_DEF|P_RALL,
2248#ifdef FEAT_WINDOWS
2249 (char_u *)&p_stal, PV_NONE,
2250#else
2251 (char_u *)NULL, PV_NONE,
2252#endif
2253 {(char_u *)1L, (char_u *)0L}},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002254 {"sidescroll", "ss", P_NUM|P_VI_DEF,
2255 (char_u *)&p_ss, PV_NONE,
2256 {(char_u *)0L, (char_u *)0L}},
2257 {"sidescrolloff", "siso", P_NUM|P_VI_DEF|P_VIM|P_RBUF,
2258 (char_u *)&p_siso, PV_NONE,
2259 {(char_u *)0L, (char_u *)0L}},
2260 {"slowopen", "slow", P_BOOL|P_VI_DEF,
2261 (char_u *)NULL, PV_NONE,
2262 {(char_u *)FALSE, (char_u *)0L}},
2263 {"smartcase", "scs", P_BOOL|P_VI_DEF|P_VIM,
2264 (char_u *)&p_scs, PV_NONE,
2265 {(char_u *)FALSE, (char_u *)0L}},
2266 {"smartindent", "si", P_BOOL|P_VI_DEF|P_VIM,
2267#ifdef FEAT_SMARTINDENT
2268 (char_u *)&p_si, PV_SI,
2269#else
2270 (char_u *)NULL, PV_NONE,
2271#endif
2272 {(char_u *)FALSE, (char_u *)0L}},
2273 {"smarttab", "sta", P_BOOL|P_VI_DEF|P_VIM,
2274 (char_u *)&p_sta, PV_NONE,
2275 {(char_u *)FALSE, (char_u *)0L}},
2276 {"softtabstop", "sts", P_NUM|P_VI_DEF|P_VIM,
2277 (char_u *)&p_sts, PV_STS,
2278 {(char_u *)0L, (char_u *)0L}},
2279 {"sourceany", NULL, P_BOOL|P_VI_DEF,
2280 (char_u *)NULL, PV_NONE,
2281 {(char_u *)FALSE, (char_u *)0L}},
Bram Moolenaar217ad922005-03-20 22:37:15 +00002282 {"spell", NULL, P_BOOL|P_VI_DEF|P_RWIN,
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00002283#ifdef FEAT_SPELL
Bram Moolenaar217ad922005-03-20 22:37:15 +00002284 (char_u *)VAR_WIN, PV_SPELL,
2285#else
2286 (char_u *)NULL, PV_NONE,
2287#endif
2288 {(char_u *)FALSE, (char_u *)0L}},
Bram Moolenaar488c6512005-08-11 20:09:58 +00002289 {"spellcapcheck", "spc", P_STRING|P_ALLOCED|P_VI_DEF|P_RBUF,
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00002290#ifdef FEAT_SPELL
Bram Moolenaar0d9c26d2005-07-02 23:19:16 +00002291 (char_u *)&p_spc, PV_SPC,
Bram Moolenaar0dc065e2005-07-04 22:49:24 +00002292 {(char_u *)"[.?!]\\_[\\])'\" ]\\+", (char_u *)0L}
Bram Moolenaar0d9c26d2005-07-02 23:19:16 +00002293#else
2294 (char_u *)NULL, PV_NONE,
2295 {(char_u *)0L, (char_u *)0L}
2296#endif
2297 },
2298 {"spellfile", "spf", P_STRING|P_EXPAND|P_ALLOCED|P_VI_DEF|P_SECURE|P_COMMA,
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00002299#ifdef FEAT_SPELL
Bram Moolenaar82cf9b62005-06-07 21:09:25 +00002300 (char_u *)&p_spf, PV_SPF,
2301 {(char_u *)"", (char_u *)0L}
2302#else
2303 (char_u *)NULL, PV_NONE,
2304 {(char_u *)0L, (char_u *)0L}
2305#endif
2306 },
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00002307 {"spelllang", "spl", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_RBUF|P_EXPAND,
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00002308#ifdef FEAT_SPELL
Bram Moolenaar217ad922005-03-20 22:37:15 +00002309 (char_u *)&p_spl, PV_SPL,
Bram Moolenaar82cf9b62005-06-07 21:09:25 +00002310 {(char_u *)"en", (char_u *)0L}
Bram Moolenaar217ad922005-03-20 22:37:15 +00002311#else
2312 (char_u *)NULL, PV_NONE,
2313 {(char_u *)0L, (char_u *)0L}
2314#endif
2315 },
Bram Moolenaar28e4c8d2006-05-09 16:15:42 +00002316 {"spellsuggest", "sps", P_STRING|P_VI_DEF|P_EXPAND|P_SECURE|P_COMMA,
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00002317#ifdef FEAT_SPELL
Bram Moolenaard857f0e2005-06-21 22:37:39 +00002318 (char_u *)&p_sps, PV_NONE,
2319 {(char_u *)"best", (char_u *)0L}
2320#else
2321 (char_u *)NULL, PV_NONE,
2322 {(char_u *)0L, (char_u *)0L}
2323#endif
2324 },
Bram Moolenaar071d4272004-06-13 20:20:40 +00002325 {"splitbelow", "sb", P_BOOL|P_VI_DEF,
2326#ifdef FEAT_WINDOWS
2327 (char_u *)&p_sb, PV_NONE,
2328#else
2329 (char_u *)NULL, PV_NONE,
2330#endif
2331 {(char_u *)FALSE, (char_u *)0L}},
2332 {"splitright", "spr", P_BOOL|P_VI_DEF,
2333#ifdef FEAT_VERTSPLIT
2334 (char_u *)&p_spr, PV_NONE,
2335#else
2336 (char_u *)NULL, PV_NONE,
2337#endif
2338 {(char_u *)FALSE, (char_u *)0L}},
2339 {"startofline", "sol", P_BOOL|P_VI_DEF|P_VIM,
2340 (char_u *)&p_sol, PV_NONE,
2341 {(char_u *)TRUE, (char_u *)0L}},
2342 {"statusline" ,"stl", P_STRING|P_VI_DEF|P_ALLOCED|P_RSTAT,
2343#ifdef FEAT_STL_OPT
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00002344 (char_u *)&p_stl, PV_STL,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002345#else
2346 (char_u *)NULL, PV_NONE,
2347#endif
2348 {(char_u *)"", (char_u *)0L}},
2349 {"suffixes", "su", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2350 (char_u *)&p_su, PV_NONE,
2351 {(char_u *)".bak,~,.o,.h,.info,.swp,.obj",
2352 (char_u *)0L}},
2353 {"suffixesadd", "sua", P_STRING|P_VI_DEF|P_ALLOCED|P_COMMA|P_NODUP,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00002354#ifdef FEAT_SEARCHPATH
Bram Moolenaar071d4272004-06-13 20:20:40 +00002355 (char_u *)&p_sua, PV_SUA,
2356 {(char_u *)"", (char_u *)0L}
2357#else
2358 (char_u *)NULL, PV_NONE,
2359 {(char_u *)0L, (char_u *)0L}
2360#endif
2361 },
2362 {"swapfile", "swf", P_BOOL|P_VI_DEF|P_RSTAT,
2363 (char_u *)&p_swf, PV_SWF,
2364 {(char_u *)TRUE, (char_u *)0L}},
2365 {"swapsync", "sws", P_STRING|P_VI_DEF,
2366 (char_u *)&p_sws, PV_NONE,
2367 {(char_u *)"fsync", (char_u *)0L}},
2368 {"switchbuf", "swb", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2369 (char_u *)&p_swb, PV_NONE,
2370 {(char_u *)"", (char_u *)0L}},
Bram Moolenaar3b56eb32005-07-11 22:40:32 +00002371 {"synmaxcol", "smc", P_NUM|P_VI_DEF|P_RBUF,
2372#ifdef FEAT_SYN_HL
2373 (char_u *)&p_smc, PV_SMC,
2374 {(char_u *)3000L, (char_u *)0L}
2375#else
2376 (char_u *)NULL, PV_NONE,
2377 {(char_u *)0L, (char_u *)0L}
2378#endif
2379 },
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002380 {"syntax", "syn", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB|P_NFNAME,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002381#ifdef FEAT_SYN_HL
2382 (char_u *)&p_syn, PV_SYN,
2383 {(char_u *)"", (char_u *)0L}
2384#else
2385 (char_u *)NULL, PV_NONE,
2386 {(char_u *)0L, (char_u *)0L}
2387#endif
2388 },
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00002389 {"tabline", "tal", P_STRING|P_VI_DEF|P_RALL,
2390#ifdef FEAT_STL_OPT
Bram Moolenaar4c7ed462006-02-15 22:18:42 +00002391 (char_u *)&p_tal, PV_NONE,
2392#else
2393 (char_u *)NULL, PV_NONE,
2394#endif
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00002395 {(char_u *)"", (char_u *)0L}},
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00002396 {"tabpagemax", "tpm", P_NUM|P_VI_DEF,
2397#ifdef FEAT_WINDOWS
2398 (char_u *)&p_tpm, PV_NONE,
2399#else
2400 (char_u *)NULL, PV_NONE,
2401#endif
2402 {(char_u *)10L, (char_u *)0L}},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002403 {"tabstop", "ts", P_NUM|P_VI_DEF|P_RBUF,
2404 (char_u *)&p_ts, PV_TS,
2405 {(char_u *)8L, (char_u *)0L}},
2406 {"tagbsearch", "tbs", P_BOOL|P_VI_DEF,
2407 (char_u *)&p_tbs, PV_NONE,
2408#ifdef VMS /* binary searching doesn't appear to work on VMS */
2409 {(char_u *)0L, (char_u *)0L}
2410#else
2411 {(char_u *)TRUE, (char_u *)0L}
2412#endif
2413 },
2414 {"taglength", "tl", P_NUM|P_VI_DEF,
2415 (char_u *)&p_tl, PV_NONE,
2416 {(char_u *)0L, (char_u *)0L}},
2417 {"tagrelative", "tr", P_BOOL|P_VIM,
2418 (char_u *)&p_tr, PV_NONE,
2419 {(char_u *)FALSE, (char_u *)TRUE}},
2420 {"tags", "tag", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00002421 (char_u *)&p_tags, PV_TAGS,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002422 {
2423#if defined(FEAT_EMACS_TAGS) && !defined(CASE_INSENSITIVE_FILENAME)
2424 (char_u *)"./tags,./TAGS,tags,TAGS",
2425#else
2426 (char_u *)"./tags,tags",
2427#endif
2428 (char_u *)0L}},
2429 {"tagstack", "tgst", P_BOOL|P_VI_DEF,
2430 (char_u *)&p_tgst, PV_NONE,
2431 {(char_u *)TRUE, (char_u *)0L}},
2432 {"term", NULL, P_STRING|P_EXPAND|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RALL,
2433 (char_u *)&T_NAME, PV_NONE,
2434 {(char_u *)"", (char_u *)0L}},
2435 {"termbidi", "tbidi", P_BOOL|P_VI_DEF,
2436#ifdef FEAT_ARABIC
2437 (char_u *)&p_tbidi, PV_NONE,
2438#else
2439 (char_u *)NULL, PV_NONE,
2440#endif
2441 {(char_u *)FALSE, (char_u *)0L}},
2442 {"termencoding", "tenc", P_STRING|P_VI_DEF|P_RCLR,
2443#ifdef FEAT_MBYTE
2444 (char_u *)&p_tenc, PV_NONE,
2445 {(char_u *)"", (char_u *)0L}
2446#else
2447 (char_u *)NULL, PV_NONE,
2448 {(char_u *)0L, (char_u *)0L}
2449#endif
2450 },
2451 {"terse", NULL, P_BOOL|P_VI_DEF,
2452 (char_u *)&p_terse, PV_NONE,
2453 {(char_u *)FALSE, (char_u *)0L}},
2454 {"textauto", "ta", P_BOOL|P_VIM,
2455 (char_u *)&p_ta, PV_NONE,
2456 {(char_u *)DFLT_TEXTAUTO, (char_u *)TRUE}},
2457 {"textmode", "tx", P_BOOL|P_VI_DEF|P_NO_MKRC,
2458 (char_u *)&p_tx, PV_TX,
2459 {
2460#ifdef USE_CRNL
2461 (char_u *)TRUE,
2462#else
2463 (char_u *)FALSE,
2464#endif
2465 (char_u *)0L}},
2466 {"textwidth", "tw", P_NUM|P_VI_DEF|P_VIM,
2467 (char_u *)&p_tw, PV_TW,
2468 {(char_u *)0L, (char_u *)0L}},
2469 {"thesaurus", "tsr", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP,
2470#ifdef FEAT_INS_EXPAND
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00002471 (char_u *)&p_tsr, PV_TSR,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002472#else
2473 (char_u *)NULL, PV_NONE,
2474#endif
2475 {(char_u *)"", (char_u *)0L}},
2476 {"tildeop", "top", P_BOOL|P_VI_DEF|P_VIM,
2477 (char_u *)&p_to, PV_NONE,
2478 {(char_u *)FALSE, (char_u *)0L}},
2479 {"timeout", "to", P_BOOL|P_VI_DEF,
2480 (char_u *)&p_timeout, PV_NONE,
2481 {(char_u *)TRUE, (char_u *)0L}},
2482 {"timeoutlen", "tm", P_NUM|P_VI_DEF,
2483 (char_u *)&p_tm, PV_NONE,
2484 {(char_u *)1000L, (char_u *)0L}},
2485 {"title", NULL, P_BOOL|P_VI_DEF,
2486#ifdef FEAT_TITLE
2487 (char_u *)&p_title, PV_NONE,
2488#else
2489 (char_u *)NULL, PV_NONE,
2490#endif
2491 {(char_u *)FALSE, (char_u *)0L}},
2492 {"titlelen", NULL, P_NUM|P_VI_DEF,
2493#ifdef FEAT_TITLE
2494 (char_u *)&p_titlelen, PV_NONE,
2495#else
2496 (char_u *)NULL, PV_NONE,
2497#endif
2498 {(char_u *)85L, (char_u *)0L}},
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002499 {"titleold", NULL, P_STRING|P_VI_DEF|P_GETTEXT|P_SECURE|P_NO_MKRC,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002500#ifdef FEAT_TITLE
2501 (char_u *)&p_titleold, PV_NONE,
2502 {(char_u *)N_("Thanks for flying Vim"),
2503 (char_u *)0L}
2504#else
2505 (char_u *)NULL, PV_NONE,
2506 {(char_u *)0L, (char_u *)0L}
2507#endif
2508 },
2509 {"titlestring", NULL, P_STRING|P_VI_DEF,
2510#ifdef FEAT_TITLE
2511 (char_u *)&p_titlestring, PV_NONE,
2512#else
2513 (char_u *)NULL, PV_NONE,
2514#endif
2515 {(char_u *)"", (char_u *)0L}},
2516#if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
2517 {"toolbar", "tb", P_STRING|P_COMMA|P_VI_DEF|P_NODUP,
2518 (char_u *)&p_toolbar, PV_NONE,
2519 {(char_u *)"icons,tooltips", (char_u *)0L}},
2520#endif
2521#if defined(FEAT_TOOLBAR) && defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)
2522 {"toolbariconsize", "tbis", P_STRING|P_VI_DEF,
2523 (char_u *)&p_tbis, PV_NONE,
2524 {(char_u *)"small", (char_u *)0L}},
2525#endif
2526 {"ttimeout", NULL, P_BOOL|P_VI_DEF|P_VIM,
2527 (char_u *)&p_ttimeout, PV_NONE,
2528 {(char_u *)FALSE, (char_u *)0L}},
2529 {"ttimeoutlen", "ttm", P_NUM|P_VI_DEF,
2530 (char_u *)&p_ttm, PV_NONE,
2531 {(char_u *)-1L, (char_u *)0L}},
2532 {"ttybuiltin", "tbi", P_BOOL|P_VI_DEF,
2533 (char_u *)&p_tbi, PV_NONE,
2534 {(char_u *)TRUE, (char_u *)0L}},
2535 {"ttyfast", "tf", P_BOOL|P_NO_MKRC|P_VI_DEF,
2536 (char_u *)&p_tf, PV_NONE,
2537 {(char_u *)FALSE, (char_u *)0L}},
2538 {"ttymouse", "ttym", P_STRING|P_NODEFAULT|P_NO_MKRC|P_VI_DEF,
2539#if defined(FEAT_MOUSE) && (defined(UNIX) || defined(VMS))
2540 (char_u *)&p_ttym, PV_NONE,
2541#else
2542 (char_u *)NULL, PV_NONE,
2543#endif
2544 {(char_u *)"", (char_u *)0L}},
2545 {"ttyscroll", "tsl", P_NUM|P_VI_DEF,
2546 (char_u *)&p_ttyscroll, PV_NONE,
2547 {(char_u *)999L, (char_u *)0L}},
2548 {"ttytype", "tty", P_STRING|P_EXPAND|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RALL,
2549 (char_u *)&T_NAME, PV_NONE,
2550 {(char_u *)"", (char_u *)0L}},
2551 {"undolevels", "ul", P_NUM|P_VI_DEF,
2552 (char_u *)&p_ul, PV_NONE,
2553 {
2554#if defined(UNIX) || defined(WIN3264) || defined(OS2) || defined(VMS)
2555 (char_u *)1000L,
2556#else
2557 (char_u *)100L,
2558#endif
2559 (char_u *)0L}},
2560 {"updatecount", "uc", P_NUM|P_VI_DEF,
2561 (char_u *)&p_uc, PV_NONE,
2562 {(char_u *)200L, (char_u *)0L}},
2563 {"updatetime", "ut", P_NUM|P_VI_DEF,
2564 (char_u *)&p_ut, PV_NONE,
2565 {(char_u *)4000L, (char_u *)0L}},
2566 {"verbose", "vbs", P_NUM|P_VI_DEF,
2567 (char_u *)&p_verbose, PV_NONE,
2568 {(char_u *)0L, (char_u *)0L}},
Bram Moolenaar54ee7752005-05-31 22:22:17 +00002569 {"verbosefile", "vfile", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
2570 (char_u *)&p_vfile, PV_NONE,
2571 {(char_u *)"", (char_u *)0L}},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002572 {"viewdir", "vdir", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
2573#ifdef FEAT_SESSION
2574 (char_u *)&p_vdir, PV_NONE,
2575 {(char_u *)DFLT_VDIR, (char_u *)0L}
2576#else
2577 (char_u *)NULL, PV_NONE,
2578 {(char_u *)0L, (char_u *)0L}
2579#endif
2580 },
2581 {"viewoptions", "vop", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2582#ifdef FEAT_SESSION
2583 (char_u *)&p_vop, PV_NONE,
2584 {(char_u *)"folds,options,cursor", (char_u *)0L}
2585#else
2586 (char_u *)NULL, PV_NONE,
2587 {(char_u *)0L, (char_u *)0L}
2588#endif
2589 },
2590 {"viminfo", "vi", P_STRING|P_COMMA|P_NODUP|P_SECURE,
2591#ifdef FEAT_VIMINFO
2592 (char_u *)&p_viminfo, PV_NONE,
2593#if defined(MSDOS) || defined(MSWIN) || defined(OS2)
2594 {(char_u *)"", (char_u *)"'20,<50,s10,h,rA:,rB:"}
2595#else
2596# ifdef AMIGA
2597 {(char_u *)"",
2598 (char_u *)"'20,<50,s10,h,rdf0:,rdf1:,rdf2:"}
2599# else
2600 {(char_u *)"", (char_u *)"'20,<50,s10,h"}
2601# endif
2602#endif
2603#else
2604 (char_u *)NULL, PV_NONE,
2605 {(char_u *)0L, (char_u *)0L}
2606#endif
2607 },
2608 {"virtualedit", "ve", P_STRING|P_COMMA|P_NODUP|P_VI_DEF|P_VIM,
2609#ifdef FEAT_VIRTUALEDIT
2610 (char_u *)&p_ve, PV_NONE,
2611 {(char_u *)"", (char_u *)""}
2612#else
2613 (char_u *)NULL, PV_NONE,
2614 {(char_u *)0L, (char_u *)0L}
2615#endif
2616 },
2617 {"visualbell", "vb", P_BOOL|P_VI_DEF,
2618 (char_u *)&p_vb, PV_NONE,
2619 {(char_u *)FALSE, (char_u *)0L}},
2620 {"w300", NULL, P_NUM|P_VI_DEF,
2621 (char_u *)NULL, PV_NONE,
2622 {(char_u *)0L, (char_u *)0L}},
2623 {"w1200", NULL, P_NUM|P_VI_DEF,
2624 (char_u *)NULL, PV_NONE,
2625 {(char_u *)0L, (char_u *)0L}},
2626 {"w9600", NULL, P_NUM|P_VI_DEF,
2627 (char_u *)NULL, PV_NONE,
2628 {(char_u *)0L, (char_u *)0L}},
2629 {"warn", NULL, P_BOOL|P_VI_DEF,
2630 (char_u *)&p_warn, PV_NONE,
2631 {(char_u *)TRUE, (char_u *)0L}},
2632 {"weirdinvert", "wiv", P_BOOL|P_VI_DEF|P_RCLR,
2633 (char_u *)&p_wiv, PV_NONE,
2634 {(char_u *)FALSE, (char_u *)0L}},
2635 {"whichwrap", "ww", P_STRING|P_VIM|P_COMMA|P_FLAGLIST,
2636 (char_u *)&p_ww, PV_NONE,
2637 {(char_u *)"", (char_u *)"b,s"}},
2638 {"wildchar", "wc", P_NUM|P_VIM,
2639 (char_u *)&p_wc, PV_NONE,
2640 {(char_u *)(long)Ctrl_E, (char_u *)(long)TAB}},
2641 {"wildcharm", "wcm", P_NUM|P_VI_DEF,
2642 (char_u *)&p_wcm, PV_NONE,
2643 {(char_u *)0L, (char_u *)0L}},
2644 {"wildignore", "wig", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2645#ifdef FEAT_WILDIGN
2646 (char_u *)&p_wig, PV_NONE,
2647#else
2648 (char_u *)NULL, PV_NONE,
2649#endif
2650 {(char_u *)"", (char_u *)0L}},
2651 {"wildmenu", "wmnu", P_BOOL|P_VI_DEF,
2652#ifdef FEAT_WILDMENU
2653 (char_u *)&p_wmnu, PV_NONE,
2654#else
2655 (char_u *)NULL, PV_NONE,
2656#endif
2657 {(char_u *)FALSE, (char_u *)0L}},
2658 {"wildmode", "wim", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
2659 (char_u *)&p_wim, PV_NONE,
2660 {(char_u *)"full", (char_u *)0L}},
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00002661 {"wildoptions", "wop", P_STRING|P_VI_DEF,
2662#ifdef FEAT_CMDL_COMPL
2663 (char_u *)&p_wop, PV_NONE,
2664 {(char_u *)"", (char_u *)0L}
2665#else
2666 (char_u *)NULL, PV_NONE,
2667 {(char_u *)NULL, (char_u *)0L}
2668#endif
2669 },
Bram Moolenaar071d4272004-06-13 20:20:40 +00002670 {"winaltkeys", "wak", P_STRING|P_VI_DEF,
2671#ifdef FEAT_WAK
2672 (char_u *)&p_wak, PV_NONE,
2673 {(char_u *)"menu", (char_u *)0L}
2674#else
2675 (char_u *)NULL, PV_NONE,
2676 {(char_u *)NULL, (char_u *)0L}
2677#endif
2678 },
2679 {"window", "wi", P_NUM|P_VI_DEF,
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002680 (char_u *)&p_window, PV_NONE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002681 {(char_u *)0L, (char_u *)0L}},
2682 {"winheight", "wh", P_NUM|P_VI_DEF,
2683#ifdef FEAT_WINDOWS
2684 (char_u *)&p_wh, PV_NONE,
2685#else
2686 (char_u *)NULL, PV_NONE,
2687#endif
2688 {(char_u *)1L, (char_u *)0L}},
2689 {"winfixheight", "wfh", P_BOOL|P_VI_DEF|P_RSTAT,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00002690#ifdef FEAT_WINDOWS
Bram Moolenaar071d4272004-06-13 20:20:40 +00002691 (char_u *)VAR_WIN, PV_WFH,
2692#else
2693 (char_u *)NULL, PV_NONE,
2694#endif
2695 {(char_u *)FALSE, (char_u *)0L}},
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00002696 {"winfixwidth", "wfw", P_BOOL|P_VI_DEF|P_RSTAT,
2697#ifdef FEAT_VERTSPLIT
2698 (char_u *)VAR_WIN, PV_WFW,
2699#else
2700 (char_u *)NULL, PV_NONE,
2701#endif
2702 {(char_u *)FALSE, (char_u *)0L}},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002703 {"winminheight", "wmh", P_NUM|P_VI_DEF,
2704#ifdef FEAT_WINDOWS
2705 (char_u *)&p_wmh, PV_NONE,
2706#else
2707 (char_u *)NULL, PV_NONE,
2708#endif
2709 {(char_u *)1L, (char_u *)0L}},
2710 {"winminwidth", "wmw", P_NUM|P_VI_DEF,
2711#ifdef FEAT_VERTSPLIT
2712 (char_u *)&p_wmw, PV_NONE,
2713#else
2714 (char_u *)NULL, PV_NONE,
2715#endif
2716 {(char_u *)1L, (char_u *)0L}},
2717 {"winwidth", "wiw", P_NUM|P_VI_DEF,
2718#ifdef FEAT_VERTSPLIT
2719 (char_u *)&p_wiw, PV_NONE,
2720#else
2721 (char_u *)NULL, PV_NONE,
2722#endif
2723 {(char_u *)20L, (char_u *)0L}},
2724 {"wrap", NULL, P_BOOL|P_VI_DEF|P_RWIN,
2725 (char_u *)VAR_WIN, PV_WRAP,
2726 {(char_u *)TRUE, (char_u *)0L}},
2727 {"wrapmargin", "wm", P_NUM|P_VI_DEF,
2728 (char_u *)&p_wm, PV_WM,
2729 {(char_u *)0L, (char_u *)0L}},
2730 {"wrapscan", "ws", P_BOOL|P_VI_DEF,
2731 (char_u *)&p_ws, PV_NONE,
2732 {(char_u *)TRUE, (char_u *)0L}},
2733 {"write", NULL, P_BOOL|P_VI_DEF,
2734 (char_u *)&p_write, PV_NONE,
2735 {(char_u *)TRUE, (char_u *)0L}},
2736 {"writeany", "wa", P_BOOL|P_VI_DEF,
2737 (char_u *)&p_wa, PV_NONE,
2738 {(char_u *)FALSE, (char_u *)0L}},
2739 {"writebackup", "wb", P_BOOL|P_VI_DEF|P_VIM,
2740 (char_u *)&p_wb, PV_NONE,
2741 {
2742#ifdef FEAT_WRITEBACKUP
2743 (char_u *)TRUE,
2744#else
2745 (char_u *)FALSE,
2746#endif
2747 (char_u *)0L}},
2748 {"writedelay", "wd", P_NUM|P_VI_DEF,
2749 (char_u *)&p_wd, PV_NONE,
2750 {(char_u *)0L, (char_u *)0L}},
2751
2752/* terminal output codes */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002753#define p_term(sss, vvv) {sss, NULL, P_STRING|P_VI_DEF|P_RALL|P_SECURE, \
Bram Moolenaar071d4272004-06-13 20:20:40 +00002754 (char_u *)&vvv, PV_NONE, \
2755 {(char_u *)"", (char_u *)0L}},
2756
2757 p_term("t_AB", T_CAB)
2758 p_term("t_AF", T_CAF)
2759 p_term("t_AL", T_CAL)
2760 p_term("t_al", T_AL)
2761 p_term("t_bc", T_BC)
2762 p_term("t_cd", T_CD)
2763 p_term("t_ce", T_CE)
2764 p_term("t_cl", T_CL)
2765 p_term("t_cm", T_CM)
2766 p_term("t_Co", T_CCO)
2767 p_term("t_CS", T_CCS)
2768 p_term("t_cs", T_CS)
2769#ifdef FEAT_VERTSPLIT
2770 p_term("t_CV", T_CSV)
2771#endif
2772 p_term("t_ut", T_UT)
2773 p_term("t_da", T_DA)
2774 p_term("t_db", T_DB)
2775 p_term("t_DL", T_CDL)
2776 p_term("t_dl", T_DL)
2777 p_term("t_fs", T_FS)
2778 p_term("t_IE", T_CIE)
2779 p_term("t_IS", T_CIS)
2780 p_term("t_ke", T_KE)
2781 p_term("t_ks", T_KS)
2782 p_term("t_le", T_LE)
2783 p_term("t_mb", T_MB)
2784 p_term("t_md", T_MD)
2785 p_term("t_me", T_ME)
2786 p_term("t_mr", T_MR)
2787 p_term("t_ms", T_MS)
2788 p_term("t_nd", T_ND)
2789 p_term("t_op", T_OP)
2790 p_term("t_RI", T_CRI)
2791 p_term("t_RV", T_CRV)
2792 p_term("t_Sb", T_CSB)
2793 p_term("t_Sf", T_CSF)
2794 p_term("t_se", T_SE)
2795 p_term("t_so", T_SO)
2796 p_term("t_sr", T_SR)
2797 p_term("t_ts", T_TS)
2798 p_term("t_te", T_TE)
2799 p_term("t_ti", T_TI)
2800 p_term("t_ue", T_UE)
2801 p_term("t_us", T_US)
2802 p_term("t_vb", T_VB)
2803 p_term("t_ve", T_VE)
2804 p_term("t_vi", T_VI)
2805 p_term("t_vs", T_VS)
2806 p_term("t_WP", T_CWP)
2807 p_term("t_WS", T_CWS)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002808 p_term("t_SI", T_CSI)
2809 p_term("t_EI", T_CEI)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002810 p_term("t_xs", T_XS)
2811 p_term("t_ZH", T_CZH)
2812 p_term("t_ZR", T_CZR)
2813
2814/* terminal key codes are not in here */
2815
2816 {NULL, NULL, 0, NULL, PV_NONE, {NULL, NULL}} /* end marker */
2817};
2818
2819#define PARAM_COUNT (sizeof(options) / sizeof(struct vimoption))
2820
2821#ifdef FEAT_MBYTE
2822static char *(p_ambw_values[]) = {"single", "double", NULL};
2823#endif
2824static char *(p_bg_values[]) = {"light", "dark", NULL};
2825static char *(p_nf_values[]) = {"octal", "hex", "alpha", NULL};
2826static char *(p_ff_values[]) = {FF_UNIX, FF_DOS, FF_MAC, NULL};
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00002827#ifdef FEAT_CMDL_COMPL
2828static char *(p_wop_values[]) = {"tagfile", NULL};
2829#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002830#ifdef FEAT_WAK
2831static char *(p_wak_values[]) = {"yes", "menu", "no", NULL};
2832#endif
2833static char *(p_mousem_values[]) = {"extend", "popup", "popup_setpos", "mac", NULL};
2834#ifdef FEAT_VISUAL
2835static char *(p_sel_values[]) = {"inclusive", "exclusive", "old", NULL};
2836static char *(p_slm_values[]) = {"mouse", "key", "cmd", NULL};
2837#endif
2838#ifdef FEAT_VISUAL
2839static char *(p_km_values[]) = {"startsel", "stopsel", NULL};
2840#endif
2841#ifdef FEAT_BROWSE
2842static char *(p_bsdir_values[]) = {"current", "last", "buffer", NULL};
2843#endif
2844#ifdef FEAT_SCROLLBIND
2845static char *(p_scbopt_values[]) = {"ver", "hor", "jump", NULL};
2846#endif
Bram Moolenaar779b74b2006-04-10 14:55:34 +00002847static char *(p_swb_values[]) = {"useopen", "usetab", "split", NULL};
Bram Moolenaar57657d82006-04-21 22:12:41 +00002848static char *(p_debug_values[]) = {"msg", "throw", "beep", NULL};
Bram Moolenaar071d4272004-06-13 20:20:40 +00002849#ifdef FEAT_VERTSPLIT
2850static char *(p_ead_values[]) = {"both", "ver", "hor", NULL};
2851#endif
2852#if defined(FEAT_QUICKFIX)
Bram Moolenaar21cf8232004-07-16 20:18:37 +00002853# ifdef FEAT_AUTOCMD
2854static char *(p_buftype_values[]) = {"nofile", "nowrite", "quickfix", "help", "acwrite", NULL};
2855# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002856static char *(p_buftype_values[]) = {"nofile", "nowrite", "quickfix", "help", NULL};
Bram Moolenaar21cf8232004-07-16 20:18:37 +00002857# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002858static char *(p_bufhidden_values[]) = {"hide", "unload", "delete", "wipe", NULL};
2859#endif
2860static char *(p_bs_values[]) = {"indent", "eol", "start", NULL};
2861#ifdef FEAT_FOLDING
2862static char *(p_fdm_values[]) = {"manual", "expr", "marker", "indent", "syntax",
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002863# ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +00002864 "diff",
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002865# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002866 NULL};
2867static char *(p_fcl_values[]) = {"all", NULL};
2868#endif
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002869#ifdef FEAT_INS_EXPAND
Bram Moolenaarc270d802006-03-11 21:29:41 +00002870static char *(p_cot_values[]) = {"menu", "menuone", "longest", "preview", NULL};
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002871#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002872
2873static void set_option_default __ARGS((int, int opt_flags, int compatible));
2874static void set_options_default __ARGS((int opt_flags));
Bram Moolenaarf740b292006-02-16 22:11:02 +00002875static char_u *term_bg_default __ARGS((void));
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002876static void did_set_option __ARGS((int opt_idx, int opt_flags, int new_value));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002877static char_u *illegal_char __ARGS((char_u *, int));
2878static int string_to_key __ARGS((char_u *arg));
2879#ifdef FEAT_CMDWIN
2880static char_u *check_cedit __ARGS((void));
2881#endif
2882#ifdef FEAT_TITLE
2883static void did_set_title __ARGS((int icon));
2884#endif
2885static char_u *option_expand __ARGS((int opt_idx, char_u *val));
2886static void didset_options __ARGS((void));
2887static void check_string_option __ARGS((char_u **pp));
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002888#if defined(FEAT_EVAL) || defined(PROTO)
2889static long_u *insecure_flag __ARGS((int opt_idx, int opt_flags));
2890#else
2891# define insecure_flag(opt_idx, opt_flags) (&options[opt_idx].flags)
2892#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002893static void set_string_option_global __ARGS((int opt_idx, char_u **varp));
2894static void set_string_option __ARGS((int opt_idx, char_u *value, int opt_flags));
2895static 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));
2896static char_u *set_chars_option __ARGS((char_u **varp));
2897#ifdef FEAT_CLIPBOARD
2898static char_u *check_clipboard_option __ARGS((void));
2899#endif
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00002900#ifdef FEAT_SPELL
Bram Moolenaar0dc065e2005-07-04 22:49:24 +00002901static char_u *compile_cap_prog __ARGS((buf_T *buf));
Bram Moolenaar0d9c26d2005-07-02 23:19:16 +00002902#endif
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00002903#ifdef FEAT_EVAL
2904static void set_option_scriptID_idx __ARGS((int opt_idx, int opt_flags, int id));
2905#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002906static char_u *set_bool_option __ARGS((int opt_idx, char_u *varp, int value, int opt_flags));
Bram Moolenaar555b2802005-05-19 21:08:39 +00002907static char_u *set_num_option __ARGS((int opt_idx, char_u *varp, long value, char_u *errbuf, size_t errbuflen, int opt_flags));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002908static void check_redraw __ARGS((long_u flags));
2909static int findoption __ARGS((char_u *));
2910static int find_key_option __ARGS((char_u *));
2911static void showoptions __ARGS((int all, int opt_flags));
2912static int optval_default __ARGS((struct vimoption *, char_u *varp));
2913static void showoneopt __ARGS((struct vimoption *, int opt_flags));
2914static int put_setstring __ARGS((FILE *fd, char *cmd, char *name, char_u **valuep, int expand));
2915static int put_setnum __ARGS((FILE *fd, char *cmd, char *name, long *valuep));
2916static int put_setbool __ARGS((FILE *fd, char *cmd, char *name, int value));
2917static int istermoption __ARGS((struct vimoption *));
2918static char_u *get_varp_scope __ARGS((struct vimoption *p, int opt_flags));
2919static char_u *get_varp __ARGS((struct vimoption *));
2920static void option_value2string __ARGS((struct vimoption *, int opt_flags));
2921static int wc_use_keyname __ARGS((char_u *varp, long *wcp));
2922#ifdef FEAT_LANGMAP
2923static void langmap_init __ARGS((void));
2924static void langmap_set __ARGS((void));
2925#endif
2926static void paste_option_changed __ARGS((void));
2927static void compatible_set __ARGS((void));
2928#ifdef FEAT_LINEBREAK
2929static void fill_breakat_flags __ARGS((void));
2930#endif
2931static int opt_strings_flags __ARGS((char_u *val, char **values, unsigned *flagp, int list));
2932static int check_opt_strings __ARGS((char_u *val, char **values, int));
2933static int check_opt_wim __ARGS((void));
2934
2935/*
2936 * Initialize the options, first part.
2937 *
2938 * Called only once from main(), just after creating the first buffer.
2939 */
2940 void
2941set_init_1()
2942{
2943 char_u *p;
2944 int opt_idx;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002945 long_u n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002946
2947#ifdef FEAT_LANGMAP
2948 langmap_init();
2949#endif
2950
2951 /* Be Vi compatible by default */
2952 p_cp = TRUE;
2953
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002954 /* Use POSIX compatibility when $VIM_POSIX is set. */
2955 if (mch_getenv((char_u *)"VIM_POSIX") != NULL)
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002956 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002957 set_string_default("cpo", (char_u *)CPO_ALL);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002958 set_string_default("shm", (char_u *)"A");
2959 }
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002960
Bram Moolenaar071d4272004-06-13 20:20:40 +00002961 /*
2962 * Find default value for 'shell' option.
Bram Moolenaar7c626922005-02-07 22:01:03 +00002963 * Don't use it if it is empty.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002964 */
Bram Moolenaar7c626922005-02-07 22:01:03 +00002965 if (((p = mch_getenv((char_u *)"SHELL")) != NULL && *p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002966#if defined(MSDOS) || defined(MSWIN) || defined(OS2)
2967# ifdef __EMX__
Bram Moolenaar7c626922005-02-07 22:01:03 +00002968 || ((p = mch_getenv((char_u *)"EMXSHELL")) != NULL && *p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002969# endif
Bram Moolenaar7c626922005-02-07 22:01:03 +00002970 || ((p = mch_getenv((char_u *)"COMSPEC")) != NULL && *p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002971# ifdef WIN3264
Bram Moolenaar7c626922005-02-07 22:01:03 +00002972 || ((p = default_shell()) != NULL && *p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002973# endif
2974#endif
Bram Moolenaar7c626922005-02-07 22:01:03 +00002975 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002976 set_string_default("sh", p);
2977
2978#ifdef FEAT_WILDIGN
2979 /*
2980 * Set the default for 'backupskip' to include environment variables for
2981 * temp files.
2982 */
2983 {
2984# ifdef UNIX
2985 static char *(names[4]) = {"", "TMPDIR", "TEMP", "TMP"};
2986# else
2987 static char *(names[3]) = {"TMPDIR", "TEMP", "TMP"};
2988# endif
Bram Moolenaar05159a02005-02-26 23:04:13 +00002989 int len;
2990 garray_T ga;
2991 int mustfree;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002992
2993 ga_init2(&ga, 1, 100);
2994 for (n = 0; n < (long)(sizeof(names) / sizeof(char *)); ++n)
2995 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00002996 mustfree = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002997# ifdef UNIX
2998 if (*names[n] == NUL)
2999 p = (char_u *)"/tmp";
3000 else
3001# endif
Bram Moolenaar05159a02005-02-26 23:04:13 +00003002 p = vim_getenv((char_u *)names[n], &mustfree);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003003 if (p != NULL && *p != NUL)
3004 {
3005 /* First time count the NUL, otherwise count the ','. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003006 len = (int)STRLEN(p) + 3;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003007 if (ga_grow(&ga, len) == OK)
3008 {
3009 if (ga.ga_len > 0)
3010 STRCAT(ga.ga_data, ",");
3011 STRCAT(ga.ga_data, p);
3012 add_pathsep(ga.ga_data);
3013 STRCAT(ga.ga_data, "*");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003014 ga.ga_len += len;
3015 }
3016 }
Bram Moolenaar05159a02005-02-26 23:04:13 +00003017 if (mustfree)
3018 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003019 }
3020 if (ga.ga_data != NULL)
3021 {
3022 set_string_default("bsk", ga.ga_data);
3023 vim_free(ga.ga_data);
3024 }
3025 }
3026#endif
3027
3028 /*
3029 * 'maxmemtot' and 'maxmem' may have to be adjusted for available memory
3030 */
3031 opt_idx = findoption((char_u *)"maxmemtot");
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003032 if (opt_idx >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003033 {
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003034#if !defined(HAVE_AVAIL_MEM) && !defined(HAVE_TOTAL_MEM)
3035 if (options[opt_idx].def_val[VI_DEFAULT] == (char_u *)0L)
3036#endif
3037 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003038#ifdef HAVE_AVAIL_MEM
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003039 /* Use amount of memory available at this moment. */
3040 n = (mch_avail_mem(FALSE) >> 11);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003041#else
3042# ifdef HAVE_TOTAL_MEM
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003043 /* Use amount of memory available to Vim. */
Bram Moolenaar914572a2007-05-01 11:37:47 +00003044 n = (mch_total_mem(FALSE) >> 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003045# else
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003046 n = (0x7fffffff >> 11);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003047# endif
3048#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003049 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)n;
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003050 opt_idx = findoption((char_u *)"maxmem");
3051 if (opt_idx >= 0)
3052 {
3053#if !defined(HAVE_AVAIL_MEM) && !defined(HAVE_TOTAL_MEM)
3054 if ((long)options[opt_idx].def_val[VI_DEFAULT] > n
3055 || (long)options[opt_idx].def_val[VI_DEFAULT] == 0L)
3056#endif
3057 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)n;
3058 }
3059 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003060 }
3061
3062#ifdef FEAT_GUI_W32
3063 /* force 'shortname' for Win32s */
3064 if (gui_is_win32s())
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003065 {
3066 opt_idx = findoption((char_u *)"shortname");
3067 if (opt_idx >= 0)
3068 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)TRUE;
3069 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003070#endif
3071
3072#ifdef FEAT_SEARCHPATH
3073 {
3074 char_u *cdpath;
3075 char_u *buf;
3076 int i;
3077 int j;
Bram Moolenaar05159a02005-02-26 23:04:13 +00003078 int mustfree = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003079
3080 /* Initialize the 'cdpath' option's default value. */
Bram Moolenaar05159a02005-02-26 23:04:13 +00003081 cdpath = vim_getenv((char_u *)"CDPATH", &mustfree);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003082 if (cdpath != NULL)
3083 {
3084 buf = alloc((unsigned)((STRLEN(cdpath) << 1) + 2));
3085 if (buf != NULL)
3086 {
3087 buf[0] = ','; /* start with ",", current dir first */
3088 j = 1;
3089 for (i = 0; cdpath[i] != NUL; ++i)
3090 {
3091 if (vim_ispathlistsep(cdpath[i]))
3092 buf[j++] = ',';
3093 else
3094 {
3095 if (cdpath[i] == ' ' || cdpath[i] == ',')
3096 buf[j++] = '\\';
3097 buf[j++] = cdpath[i];
3098 }
3099 }
3100 buf[j] = NUL;
3101 opt_idx = findoption((char_u *)"cdpath");
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003102 if (opt_idx >= 0)
3103 {
3104 options[opt_idx].def_val[VI_DEFAULT] = buf;
3105 options[opt_idx].flags |= P_DEF_ALLOCED;
3106 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003107 }
Bram Moolenaar05159a02005-02-26 23:04:13 +00003108 if (mustfree)
3109 vim_free(cdpath);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003110 }
3111 }
3112#endif
3113
3114#if defined(FEAT_POSTSCRIPT) && (defined(MSWIN) || defined(OS2) || defined(VMS) || defined(EBCDIC) || defined(MAC) || defined(hpux))
3115 /* Set print encoding on platforms that don't default to latin1 */
3116 set_string_default("penc",
3117# if defined(MSWIN) || defined(OS2)
3118 (char_u *)"cp1252"
3119# else
3120# ifdef VMS
3121 (char_u *)"dec-mcs"
3122# else
3123# ifdef EBCDIC
3124 (char_u *)"ebcdic-uk"
3125# else
3126# ifdef MAC
3127 (char_u *)"mac-roman"
3128# else /* HPUX */
3129 (char_u *)"hp-roman8"
3130# endif
3131# endif
3132# endif
3133# endif
3134 );
3135#endif
3136
3137#ifdef FEAT_POSTSCRIPT
3138 /* 'printexpr' must be allocated to be able to evaluate it. */
3139 set_string_default("pexpr",
Bram Moolenaared203462004-06-16 11:19:22 +00003140# if defined(MSWIN) || defined(MSDOS) || defined(OS2)
3141 (char_u *)"system('copy' . ' ' . v:fname_in . (&printdevice == '' ? ' LPT1:' : (' \"' . &printdevice . '\"'))) . delete(v:fname_in)"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003142# else
3143# ifdef VMS
3144 (char_u *)"system('print/delete' . (&printdevice == '' ? '' : ' /queue=' . &printdevice) . ' ' . v:fname_in)"
3145
3146# else
3147 (char_u *)"system('lpr' . (&printdevice == '' ? '' : ' -P' . &printdevice) . ' ' . v:fname_in) . delete(v:fname_in) + v:shell_error"
3148# endif
3149# endif
3150 );
3151#endif
3152
3153 /*
3154 * Set all the options (except the terminal options) to their default
3155 * value. Also set the global value for local options.
3156 */
3157 set_options_default(0);
3158
3159#ifdef FEAT_GUI
3160 if (found_reverse_arg)
3161 set_option_value((char_u *)"bg", 0L, (char_u *)"dark", 0);
3162#endif
3163
3164 curbuf->b_p_initialized = TRUE;
3165 curbuf->b_p_ar = -1; /* no local 'autoread' value */
3166 check_buf_options(curbuf);
3167 check_win_options(curwin);
3168 check_options();
3169
3170 /* Must be before option_expand(), because that one needs vim_isIDc() */
3171 didset_options();
3172
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00003173#ifdef FEAT_SPELL
Bram Moolenaar6bb68362005-03-22 23:03:44 +00003174 /* Use the current chartab for the generic chartab. */
3175 init_spell_chartab();
3176#endif
3177
Bram Moolenaar071d4272004-06-13 20:20:40 +00003178#ifdef FEAT_LINEBREAK
3179 /*
3180 * initialize the table for 'breakat'.
3181 */
3182 fill_breakat_flags();
3183#endif
3184
3185 /*
3186 * Expand environment variables and things like "~" for the defaults.
3187 * If option_expand() returns non-NULL the variable is expanded. This can
3188 * only happen for non-indirect options.
3189 * Also set the default to the expanded value, so ":set" does not list
3190 * them.
3191 * Don't set the P_ALLOCED flag, because we don't want to free the
3192 * default.
3193 */
3194 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
3195 {
3196 if ((options[opt_idx].flags & P_GETTEXT)
3197 && options[opt_idx].var != NULL)
3198 p = (char_u *)_(*(char **)options[opt_idx].var);
3199 else
3200 p = option_expand(opt_idx, NULL);
3201 if (p != NULL && (p = vim_strsave(p)) != NULL)
3202 {
3203 *(char_u **)options[opt_idx].var = p;
3204 /* VIMEXP
3205 * Defaults for all expanded options are currently the same for Vi
3206 * and Vim. When this changes, add some code here! Also need to
3207 * split P_DEF_ALLOCED in two.
3208 */
3209 if (options[opt_idx].flags & P_DEF_ALLOCED)
3210 vim_free(options[opt_idx].def_val[VI_DEFAULT]);
3211 options[opt_idx].def_val[VI_DEFAULT] = p;
3212 options[opt_idx].flags |= P_DEF_ALLOCED;
3213 }
3214 }
3215
3216 /* Initialize the highlight_attr[] table. */
3217 highlight_changed();
3218
3219 save_file_ff(curbuf); /* Buffer is unchanged */
3220
3221 /* Parse default for 'wildmode' */
3222 check_opt_wim();
3223
3224#if defined(FEAT_ARABIC)
3225 /* Detect use of mlterm.
3226 * Mlterm is a terminal emulator akin to xterm that has some special
3227 * abilities (bidi namely).
3228 * NOTE: mlterm's author is being asked to 'set' a variable
3229 * instead of an environment variable due to inheritance.
3230 */
3231 if (mch_getenv((char_u *)"MLTERM") != NULL)
3232 set_option_value((char_u *)"tbidi", 1L, NULL, 0);
3233#endif
3234
3235#if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
3236 /* Parse default for 'fillchars'. */
3237 (void)set_chars_option(&p_fcs);
3238#endif
3239
3240#ifdef FEAT_CLIPBOARD
3241 /* Parse default for 'clipboard' */
3242 (void)check_clipboard_option();
3243#endif
3244
3245#ifdef FEAT_MBYTE
3246# if defined(WIN3264) && defined(FEAT_GETTEXT)
3247 /*
3248 * If $LANG isn't set, try to get a good value for it. This makes the
3249 * right language be used automatically. Don't do this for English.
3250 */
3251 if (mch_getenv((char_u *)"LANG") == NULL)
3252 {
3253 char buf[20];
3254
3255 /* Could use LOCALE_SISO639LANGNAME, but it's not in Win95.
3256 * LOCALE_SABBREVLANGNAME gives us three letters, like "enu", we use
3257 * only the first two. */
3258 n = GetLocaleInfo(LOCALE_USER_DEFAULT, LOCALE_SABBREVLANGNAME,
3259 (LPTSTR)buf, 20);
3260 if (n >= 2 && STRNICMP(buf, "en", 2) != 0)
3261 {
3262 /* There are a few exceptions (probably more) */
3263 if (STRNICMP(buf, "cht", 3) == 0 || STRNICMP(buf, "zht", 3) == 0)
3264 STRCPY(buf, "zh_TW");
3265 else if (STRNICMP(buf, "chs", 3) == 0
3266 || STRNICMP(buf, "zhc", 3) == 0)
3267 STRCPY(buf, "zh_CN");
3268 else if (STRNICMP(buf, "jp", 2) == 0)
3269 STRCPY(buf, "ja");
3270 else
3271 buf[2] = NUL; /* truncate to two-letter code */
3272 vim_setenv("LANG", buf);
3273 }
3274 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00003275# else
Bram Moolenaar9d47f172006-03-15 23:03:01 +00003276# ifdef MACOS_CONVERT
Bram Moolenaar26a60b42005-02-22 08:49:11 +00003277 if (mch_getenv((char_u *)"LANG") == NULL)
3278 {
3279 char buf[20];
3280 if (LocaleRefGetPartString(NULL,
3281 kLocaleLanguageMask | kLocaleLanguageVariantMask |
3282 kLocaleRegionMask | kLocaleRegionVariantMask,
3283 sizeof buf, buf) == noErr && *buf)
3284 {
Bram Moolenaarda2303d2005-08-30 21:55:26 +00003285 vim_setenv((char_u *)"LANG", (char_u *)buf);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00003286# ifdef HAVE_LOCALE_H
3287 setlocale(LC_ALL, "");
3288# endif
3289 }
3290 }
3291# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003292# endif
3293
3294 /* enc_locale() will try to find the encoding of the current locale. */
3295 p = enc_locale();
3296 if (p != NULL)
3297 {
3298 char_u *save_enc;
3299
3300 /* Try setting 'encoding' and check if the value is valid.
3301 * If not, go back to the default "latin1". */
3302 save_enc = p_enc;
3303 p_enc = p;
Bram Moolenaar733f0a22007-03-02 18:56:27 +00003304 if (STRCMP(p_enc, "gb18030") == 0)
3305 {
3306 /* We don't support "gb18030", but "cp936" is a good substitute
3307 * for practical purposes, thus use that. It's not an alias to
3308 * still support conversion between gb18030 and utf-8. */
3309 p_enc = vim_strsave((char_u *)"cp936");
3310 vim_free(p);
3311 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003312 if (mb_init() == NULL)
3313 {
3314 opt_idx = findoption((char_u *)"encoding");
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003315 if (opt_idx >= 0)
3316 {
3317 options[opt_idx].def_val[VI_DEFAULT] = p_enc;
3318 options[opt_idx].flags |= P_DEF_ALLOCED;
3319 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003320
Bram Moolenaarc0197e22004-09-13 20:26:32 +00003321#if defined(MSDOS) || defined(MSWIN) || defined(OS2) || defined(MACOS) \
3322 || defined(VMS)
3323 if (STRCMP(p_enc, "latin1") == 0
3324# ifdef FEAT_MBYTE
3325 || enc_utf8
3326# endif
3327 )
3328 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003329 /* Adjust the default for 'isprint' and 'iskeyword' to match
3330 * latin1. Also set the defaults for when 'nocompatible' is
3331 * set. */
Bram Moolenaarc0197e22004-09-13 20:26:32 +00003332 set_string_option_direct((char_u *)"isp", -1,
Bram Moolenaar4ea8fe12006-03-09 22:32:39 +00003333 ISP_LATIN1, OPT_FREE, SID_NONE);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003334 set_string_option_direct((char_u *)"isk", -1,
3335 ISK_LATIN1, OPT_FREE, SID_NONE);
3336 opt_idx = findoption((char_u *)"isp");
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003337 if (opt_idx >= 0)
3338 options[opt_idx].def_val[VIM_DEFAULT] = ISP_LATIN1;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003339 opt_idx = findoption((char_u *)"isk");
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003340 if (opt_idx >= 0)
3341 options[opt_idx].def_val[VIM_DEFAULT] = ISK_LATIN1;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00003342 (void)init_chartab();
3343 }
3344#endif
3345
Bram Moolenaar071d4272004-06-13 20:20:40 +00003346# if defined(WIN3264) && !defined(FEAT_GUI)
3347 /* Win32 console: When GetACP() returns a different value from
3348 * GetConsoleCP() set 'termencoding'. */
3349 if (GetACP() != GetConsoleCP())
3350 {
3351 char buf[50];
3352
3353 sprintf(buf, "cp%ld", (long)GetConsoleCP());
3354 p_tenc = vim_strsave((char_u *)buf);
3355 if (p_tenc != NULL)
3356 {
3357 opt_idx = findoption((char_u *)"termencoding");
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003358 if (opt_idx >= 0)
3359 {
3360 options[opt_idx].def_val[VI_DEFAULT] = p_tenc;
3361 options[opt_idx].flags |= P_DEF_ALLOCED;
3362 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003363 convert_setup(&input_conv, p_tenc, p_enc);
3364 convert_setup(&output_conv, p_enc, p_tenc);
3365 }
3366 else
3367 p_tenc = empty_option;
3368 }
3369# endif
Bram Moolenaar05159a02005-02-26 23:04:13 +00003370# if defined(WIN3264) && defined(FEAT_MBYTE)
3371 /* $HOME may have characters in active code page. */
3372 init_homedir();
3373# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003374 }
3375 else
3376 {
3377 vim_free(p_enc);
3378 p_enc = save_enc;
3379 }
3380 }
3381#endif
3382
3383#ifdef FEAT_MULTI_LANG
3384 /* Set the default for 'helplang'. */
3385 set_helplang_default(get_mess_lang());
3386#endif
3387}
3388
3389/*
3390 * Set an option to its default value.
3391 * This does not take care of side effects!
3392 */
3393 static void
3394set_option_default(opt_idx, opt_flags, compatible)
3395 int opt_idx;
3396 int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */
3397 int compatible; /* use Vi default value */
3398{
3399 char_u *varp; /* pointer to variable for current option */
3400 int dvi; /* index in def_val[] */
3401 long_u flags;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003402 long_u *flagsp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003403 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
3404
3405 varp = get_varp_scope(&(options[opt_idx]), both ? OPT_LOCAL : opt_flags);
3406 flags = options[opt_idx].flags;
Bram Moolenaar3638c682005-06-08 22:05:14 +00003407 if (varp != NULL) /* skip hidden option, nothing to do for it */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003408 {
3409 dvi = ((flags & P_VI_DEF) || compatible) ? VI_DEFAULT : VIM_DEFAULT;
3410 if (flags & P_STRING)
3411 {
3412 /* Use set_string_option_direct() for local options to handle
3413 * freeing and allocating the value. */
3414 if (options[opt_idx].indir != PV_NONE)
3415 set_string_option_direct(NULL, opt_idx,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00003416 options[opt_idx].def_val[dvi], opt_flags, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003417 else
3418 {
3419 if ((opt_flags & OPT_FREE) && (flags & P_ALLOCED))
3420 free_string_option(*(char_u **)(varp));
3421 *(char_u **)varp = options[opt_idx].def_val[dvi];
3422 options[opt_idx].flags &= ~P_ALLOCED;
3423 }
3424 }
3425 else if (flags & P_NUM)
3426 {
Bram Moolenaar5fc1a8b2006-10-17 16:34:24 +00003427 if (options[opt_idx].indir == PV_SCROLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003428 win_comp_scroll(curwin);
3429 else
3430 {
Bram Moolenaareb3593b2006-04-22 22:33:57 +00003431 *(long *)varp = (long)(long_i)options[opt_idx].def_val[dvi];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003432 /* May also set global value for local option. */
3433 if (both)
3434 *(long *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) =
3435 *(long *)varp;
3436 }
3437 }
3438 else /* P_BOOL */
3439 {
Bram Moolenaareb3593b2006-04-22 22:33:57 +00003440 /* the cast to long is required for Manx C, long_i is needed for
3441 * MSVC */
3442 *(int *)varp = (int)(long)(long_i)options[opt_idx].def_val[dvi];
Bram Moolenaar8243a792007-05-01 17:05:03 +00003443#ifdef UNIX
3444 /* 'modeline' defaults to off for root */
3445 if (options[opt_idx].indir == PV_ML && getuid() == ROOT_UID)
3446 *(int *)varp = FALSE;
3447#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003448 /* May also set global value for local option. */
3449 if (both)
3450 *(int *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) =
3451 *(int *)varp;
3452 }
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003453
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003454 /* The default value is not insecure. */
3455 flagsp = insecure_flag(opt_idx, opt_flags);
3456 *flagsp = *flagsp & ~P_INSECURE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003457 }
3458
3459#ifdef FEAT_EVAL
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00003460 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003461#endif
3462}
3463
3464/*
3465 * Set all options (except terminal options) to their default value.
3466 */
3467 static void
3468set_options_default(opt_flags)
3469 int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */
3470{
3471 int i;
3472#ifdef FEAT_WINDOWS
3473 win_T *wp;
Bram Moolenaarf740b292006-02-16 22:11:02 +00003474 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003475#endif
3476
3477 for (i = 0; !istermoption(&options[i]); i++)
3478 if (!(options[i].flags & P_NODEFAULT))
3479 set_option_default(i, opt_flags, p_cp);
3480
3481#ifdef FEAT_WINDOWS
3482 /* The 'scroll' option must be computed for all windows. */
Bram Moolenaarf740b292006-02-16 22:11:02 +00003483 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003484 win_comp_scroll(wp);
3485#else
3486 win_comp_scroll(curwin);
3487#endif
3488}
3489
3490/*
3491 * Set the Vi-default value of a string option.
3492 * Used for 'sh', 'backupskip' and 'term'.
3493 */
3494 void
3495set_string_default(name, val)
3496 char *name;
3497 char_u *val;
3498{
3499 char_u *p;
3500 int opt_idx;
3501
3502 p = vim_strsave(val);
3503 if (p != NULL) /* we don't want a NULL */
3504 {
3505 opt_idx = findoption((char_u *)name);
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003506 if (opt_idx >= 0)
3507 {
3508 if (options[opt_idx].flags & P_DEF_ALLOCED)
3509 vim_free(options[opt_idx].def_val[VI_DEFAULT]);
3510 options[opt_idx].def_val[VI_DEFAULT] = p;
3511 options[opt_idx].flags |= P_DEF_ALLOCED;
3512 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003513 }
3514}
3515
3516/*
3517 * Set the Vi-default value of a number option.
3518 * Used for 'lines' and 'columns'.
3519 */
3520 void
3521set_number_default(name, val)
3522 char *name;
3523 long val;
3524{
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003525 int opt_idx;
3526
3527 opt_idx = findoption((char_u *)name);
3528 if (opt_idx >= 0)
Bram Moolenaareb3593b2006-04-22 22:33:57 +00003529 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003530}
3531
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003532#if defined(EXITFREE) || defined(PROTO)
3533/*
3534 * Free all options.
3535 */
3536 void
3537free_all_options()
3538{
3539 int i;
3540
3541 for (i = 0; !istermoption(&options[i]); i++)
3542 {
3543 if (options[i].indir == PV_NONE)
3544 {
3545 /* global option: free value and default value. */
3546 if (options[i].flags & P_ALLOCED && options[i].var != NULL)
3547 free_string_option(*(char_u **)options[i].var);
3548 if (options[i].flags & P_DEF_ALLOCED)
3549 free_string_option(options[i].def_val[VI_DEFAULT]);
3550 }
3551 else if (options[i].var != VAR_WIN
3552 && (options[i].flags & P_STRING))
3553 /* buffer-local option: free global value */
3554 free_string_option(*(char_u **)options[i].var);
3555 }
3556}
3557#endif
3558
3559
Bram Moolenaar071d4272004-06-13 20:20:40 +00003560/*
3561 * Initialize the options, part two: After getting Rows and Columns and
3562 * setting 'term'.
3563 */
3564 void
3565set_init_2()
3566{
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003567 int idx;
3568
Bram Moolenaar071d4272004-06-13 20:20:40 +00003569 /*
3570 * 'scroll' defaults to half the window height. Note that this default is
3571 * wrong when the window height changes.
3572 */
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003573 set_number_default("scroll", (long)((long_u)Rows >> 1));
Bram Moolenaar26a60b42005-02-22 08:49:11 +00003574 idx = findoption((char_u *)"scroll");
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003575 if (idx >= 0 && !(options[idx].flags & P_WAS_SET))
Bram Moolenaar26a60b42005-02-22 08:49:11 +00003576 set_option_default(idx, OPT_LOCAL, p_cp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003577 comp_col();
3578
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003579 /*
3580 * 'window' is only for backwards compatibility with Vi.
3581 * Default is Rows - 1.
3582 */
Bram Moolenaard68071d2006-05-02 22:08:30 +00003583 if (!option_was_set((char_u *)"window"))
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003584 p_window = Rows - 1;
3585 set_number_default("window", Rows - 1);
3586
Bram Moolenaarf740b292006-02-16 22:11:02 +00003587 /* For DOS console the default is always black. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003588#if !((defined(MSDOS) || defined(OS2) || defined(WIN3264)) && !defined(FEAT_GUI))
Bram Moolenaarf740b292006-02-16 22:11:02 +00003589 /*
3590 * If 'background' wasn't set by the user, try guessing the value,
3591 * depending on the terminal name. Only need to check for terminals
3592 * with a dark background, that can handle color.
3593 */
3594 idx = findoption((char_u *)"bg");
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003595 if (idx >= 0 && !(options[idx].flags & P_WAS_SET)
3596 && *term_bg_default() == 'd')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003597 {
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00003598 set_string_option_direct(NULL, idx, (char_u *)"dark", OPT_FREE, 0);
Bram Moolenaarf740b292006-02-16 22:11:02 +00003599 /* don't mark it as set, when starting the GUI it may be
3600 * changed again */
3601 options[idx].flags &= ~P_WAS_SET;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003602 }
3603#endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00003604
3605#ifdef CURSOR_SHAPE
3606 parse_shape_opt(SHAPE_CURSOR); /* set cursor shapes from 'guicursor' */
3607#endif
3608#ifdef FEAT_MOUSESHAPE
3609 parse_shape_opt(SHAPE_MOUSE); /* set mouse shapes from 'mouseshape' */
3610#endif
3611#ifdef FEAT_PRINTER
3612 (void)parse_printoptions(); /* parse 'printoptions' default value */
3613#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003614}
3615
3616/*
Bram Moolenaarf740b292006-02-16 22:11:02 +00003617 * Return "dark" or "light" depending on the kind of terminal.
3618 * This is just guessing! Recognized are:
3619 * "linux" Linux console
3620 * "screen.linux" Linux console with screen
3621 * "cygwin" Cygwin shell
3622 * "putty" Putty program
3623 * We also check the COLORFGBG environment variable, which is set by
3624 * rxvt and derivatives. This variable contains either two or three
3625 * values separated by semicolons; we want the last value in either
3626 * case. If this value is 0-6 or 8, our background is dark.
3627 */
3628 static char_u *
3629term_bg_default()
3630{
Bram Moolenaarf740b292006-02-16 22:11:02 +00003631#if defined(MSDOS) || defined(OS2) || defined(WIN3264)
3632 /* DOS console nearly always black */
3633 return (char_u *)"dark";
3634#else
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00003635 char_u *p;
3636
Bram Moolenaarf740b292006-02-16 22:11:02 +00003637 if (STRCMP(T_NAME, "linux") == 0
3638 || STRCMP(T_NAME, "screen.linux") == 0
3639 || STRCMP(T_NAME, "cygwin") == 0
3640 || STRCMP(T_NAME, "putty") == 0
3641 || ((p = mch_getenv((char_u *)"COLORFGBG")) != NULL
3642 && (p = vim_strrchr(p, ';')) != NULL
3643 && ((p[1] >= '0' && p[1] <= '6') || p[1] == '8')
3644 && p[2] == NUL))
3645 return (char_u *)"dark";
3646 return (char_u *)"light";
3647#endif
3648}
3649
3650/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003651 * Initialize the options, part three: After reading the .vimrc
3652 */
3653 void
3654set_init_3()
3655{
3656#if defined(UNIX) || defined(OS2) || defined(WIN3264)
3657/*
3658 * Set 'shellpipe' and 'shellredir', depending on the 'shell' option.
3659 * This is done after other initializations, where 'shell' might have been
3660 * set, but only if they have not been set before.
3661 */
3662 char_u *p;
3663 int idx_srr;
3664 int do_srr;
3665#ifdef FEAT_QUICKFIX
3666 int idx_sp;
3667 int do_sp;
3668#endif
3669
3670 idx_srr = findoption((char_u *)"srr");
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003671 if (idx_srr < 0)
3672 do_srr = FALSE;
3673 else
3674 do_srr = !(options[idx_srr].flags & P_WAS_SET);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003675#ifdef FEAT_QUICKFIX
3676 idx_sp = findoption((char_u *)"sp");
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003677 if (idx_sp < 0)
3678 do_sp = FALSE;
3679 else
3680 do_sp = !(options[idx_sp].flags & P_WAS_SET);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003681#endif
3682
3683 /*
3684 * Isolate the name of the shell:
3685 * - Skip beyond any path. E.g., "/usr/bin/csh -f" -> "csh -f".
3686 * - Remove any argument. E.g., "csh -f" -> "csh".
3687 */
3688 p = gettail(p_sh);
3689 p = vim_strnsave(p, (int)(skiptowhite(p) - p));
3690 if (p != NULL)
3691 {
3692 /*
3693 * Default for p_sp is "| tee", for p_srr is ">".
3694 * For known shells it is changed here to include stderr.
3695 */
3696 if ( fnamecmp(p, "csh") == 0
3697 || fnamecmp(p, "tcsh") == 0
3698# if defined(OS2) || defined(WIN3264) /* also check with .exe extension */
3699 || fnamecmp(p, "csh.exe") == 0
3700 || fnamecmp(p, "tcsh.exe") == 0
3701# endif
3702 )
3703 {
3704#if defined(FEAT_QUICKFIX)
3705 if (do_sp)
3706 {
3707# ifdef WIN3264
3708 p_sp = (char_u *)">&";
3709# else
3710 p_sp = (char_u *)"|& tee";
3711# endif
3712 options[idx_sp].def_val[VI_DEFAULT] = p_sp;
3713 }
3714#endif
3715 if (do_srr)
3716 {
3717 p_srr = (char_u *)">&";
3718 options[idx_srr].def_val[VI_DEFAULT] = p_srr;
3719 }
3720 }
3721 else
3722# ifndef OS2 /* Always use bourne shell style redirection if we reach this */
3723 if ( fnamecmp(p, "sh") == 0
3724 || fnamecmp(p, "ksh") == 0
3725 || fnamecmp(p, "zsh") == 0
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003726 || fnamecmp(p, "zsh-beta") == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003727 || fnamecmp(p, "bash") == 0
3728# ifdef WIN3264
3729 || fnamecmp(p, "cmd") == 0
3730 || fnamecmp(p, "sh.exe") == 0
3731 || fnamecmp(p, "ksh.exe") == 0
3732 || fnamecmp(p, "zsh.exe") == 0
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003733 || fnamecmp(p, "zsh-beta.exe") == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003734 || fnamecmp(p, "bash.exe") == 0
3735 || fnamecmp(p, "cmd.exe") == 0
3736# endif
3737 )
3738# endif
3739 {
3740#if defined(FEAT_QUICKFIX)
3741 if (do_sp)
3742 {
3743# ifdef WIN3264
3744 p_sp = (char_u *)">%s 2>&1";
3745# else
3746 p_sp = (char_u *)"2>&1| tee";
3747# endif
3748 options[idx_sp].def_val[VI_DEFAULT] = p_sp;
3749 }
3750#endif
3751 if (do_srr)
3752 {
3753 p_srr = (char_u *)">%s 2>&1";
3754 options[idx_srr].def_val[VI_DEFAULT] = p_srr;
3755 }
3756 }
3757 vim_free(p);
3758 }
3759#endif
3760
3761#if defined(MSDOS) || defined(WIN3264) || defined(OS2)
3762 /*
3763 * Set 'shellcmdflag and 'shellquote' depending on the 'shell' option.
3764 * This is done after other initializations, where 'shell' might have been
3765 * set, but only if they have not been set before. Default for p_shcf is
3766 * "/c", for p_shq is "". For "sh" like shells it is changed here to
3767 * "-c" and "\"", but not for DJGPP, because it starts the shell without
3768 * command.com. And for Win32 we need to set p_sxq instead.
3769 */
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00003770 if (strstr((char *)gettail(p_sh), "sh") != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003771 {
3772 int idx3;
3773
3774 idx3 = findoption((char_u *)"shcf");
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003775 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003776 {
3777 p_shcf = (char_u *)"-c";
3778 options[idx3].def_val[VI_DEFAULT] = p_shcf;
3779 }
3780
3781# ifndef DJGPP
3782# ifdef WIN3264
3783 /* Somehow Win32 requires the quotes around the redirection too */
3784 idx3 = findoption((char_u *)"sxq");
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003785 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003786 {
3787 p_sxq = (char_u *)"\"";
3788 options[idx3].def_val[VI_DEFAULT] = p_sxq;
3789 }
3790# else
3791 idx3 = findoption((char_u *)"shq");
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003792 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003793 {
3794 p_shq = (char_u *)"\"";
3795 options[idx3].def_val[VI_DEFAULT] = p_shq;
3796 }
3797# endif
3798# endif
3799 }
3800#endif
3801
3802#ifdef FEAT_TITLE
3803 set_title_defaults();
3804#endif
3805}
3806
3807#if defined(FEAT_MULTI_LANG) || defined(PROTO)
3808/*
3809 * When 'helplang' is still at its default value, set it to "lang".
3810 * Only the first two characters of "lang" are used.
3811 */
3812 void
3813set_helplang_default(lang)
3814 char_u *lang;
3815{
3816 int idx;
3817
3818 if (lang == NULL || STRLEN(lang) < 2) /* safety check */
3819 return;
3820 idx = findoption((char_u *)"hlg");
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003821 if (idx >= 0 && !(options[idx].flags & P_WAS_SET))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003822 {
3823 if (options[idx].flags & P_ALLOCED)
3824 free_string_option(p_hlg);
3825 p_hlg = vim_strsave(lang);
3826 if (p_hlg == NULL)
3827 p_hlg = empty_option;
3828 else
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00003829 {
3830 /* zh_CN becomes "cn", zh_TW becomes "tw". */
3831 if (STRNICMP(p_hlg, "zh_", 3) == 0 && STRLEN(p_hlg) >= 5)
3832 {
3833 p_hlg[0] = TOLOWER_ASC(p_hlg[3]);
3834 p_hlg[1] = TOLOWER_ASC(p_hlg[4]);
3835 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003836 p_hlg[2] = NUL;
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00003837 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003838 options[idx].flags |= P_ALLOCED;
3839 }
3840}
3841#endif
3842
3843#ifdef FEAT_GUI
3844static char_u *gui_bg_default __ARGS((void));
3845
3846 static char_u *
3847gui_bg_default()
3848{
3849 if (gui_get_lightness(gui.back_pixel) < 127)
3850 return (char_u *)"dark";
3851 return (char_u *)"light";
3852}
3853
3854/*
3855 * Option initializations that can only be done after opening the GUI window.
3856 */
3857 void
3858init_gui_options()
3859{
3860 /* Set the 'background' option according to the lightness of the
3861 * background color, unless the user has set it already. */
3862 if (!option_was_set((char_u *)"bg") && STRCMP(p_bg, gui_bg_default()) != 0)
3863 {
3864 set_option_value((char_u *)"bg", 0L, gui_bg_default(), 0);
3865 highlight_changed();
3866 }
3867}
3868#endif
3869
3870#ifdef FEAT_TITLE
3871/*
3872 * 'title' and 'icon' only default to true if they have not been set or reset
3873 * in .vimrc and we can read the old value.
3874 * When 'title' and 'icon' have been reset in .vimrc, we won't even check if
3875 * they can be reset. This reduces startup time when using X on a remote
3876 * machine.
3877 */
3878 void
3879set_title_defaults()
3880{
3881 int idx1;
3882 long val;
3883
3884 /*
3885 * If GUI is (going to be) used, we can always set the window title and
3886 * icon name. Saves a bit of time, because the X11 display server does
3887 * not need to be contacted.
3888 */
3889 idx1 = findoption((char_u *)"title");
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003890 if (idx1 >= 0 && !(options[idx1].flags & P_WAS_SET))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003891 {
3892#ifdef FEAT_GUI
3893 if (gui.starting || gui.in_use)
3894 val = TRUE;
3895 else
3896#endif
3897 val = mch_can_restore_title();
Bram Moolenaareb3593b2006-04-22 22:33:57 +00003898 options[idx1].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003899 p_title = val;
3900 }
3901 idx1 = findoption((char_u *)"icon");
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003902 if (idx1 >= 0 && !(options[idx1].flags & P_WAS_SET))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003903 {
3904#ifdef FEAT_GUI
3905 if (gui.starting || gui.in_use)
3906 val = TRUE;
3907 else
3908#endif
3909 val = mch_can_restore_icon();
Bram Moolenaareb3593b2006-04-22 22:33:57 +00003910 options[idx1].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003911 p_icon = val;
3912 }
3913}
3914#endif
3915
3916/*
3917 * Parse 'arg' for option settings.
3918 *
3919 * 'arg' may be IObuff, but only when no errors can be present and option
3920 * does not need to be expanded with option_expand().
3921 * "opt_flags":
3922 * 0 for ":set"
Bram Moolenaara3227e22006-03-08 21:32:40 +00003923 * OPT_GLOBAL for ":setglobal"
3924 * OPT_LOCAL for ":setlocal" and a modeline
Bram Moolenaar071d4272004-06-13 20:20:40 +00003925 * OPT_MODELINE for a modeline
Bram Moolenaara3227e22006-03-08 21:32:40 +00003926 * OPT_WINONLY to only set window-local options
3927 * OPT_NOWIN to skip setting window-local options
Bram Moolenaar071d4272004-06-13 20:20:40 +00003928 *
3929 * returns FAIL if an error is detected, OK otherwise
3930 */
3931 int
3932do_set(arg, opt_flags)
3933 char_u *arg; /* option string (may be written to!) */
3934 int opt_flags;
3935{
3936 int opt_idx;
3937 char_u *errmsg;
3938 char_u errbuf[80];
3939 char_u *startarg;
3940 int prefix; /* 1: nothing, 0: "no", 2: "inv" in front of name */
3941 int nextchar; /* next non-white char after option name */
3942 int afterchar; /* character just after option name */
3943 int len;
3944 int i;
3945 long value;
3946 int key;
3947 long_u flags; /* flags for current option */
3948 char_u *varp = NULL; /* pointer to variable for current option */
3949 int did_show = FALSE; /* already showed one value */
3950 int adding; /* "opt+=arg" */
3951 int prepending; /* "opt^=arg" */
3952 int removing; /* "opt-=arg" */
3953 int cp_val = 0;
3954 char_u key_name[2];
3955
3956 if (*arg == NUL)
3957 {
3958 showoptions(0, opt_flags);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00003959 did_show = TRUE;
3960 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003961 }
3962
3963 while (*arg != NUL) /* loop to process all options */
3964 {
3965 errmsg = NULL;
3966 startarg = arg; /* remember for error message */
3967
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003968 if (STRNCMP(arg, "all", 3) == 0 && !isalpha(arg[3])
3969 && !(opt_flags & OPT_MODELINE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003970 {
3971 /*
3972 * ":set all" show all options.
3973 * ":set all&" set all options to their default value.
3974 */
3975 arg += 3;
3976 if (*arg == '&')
3977 {
3978 ++arg;
3979 /* Only for :set command set global value of local options. */
3980 set_options_default(OPT_FREE | opt_flags);
3981 }
3982 else
Bram Moolenaar26a60b42005-02-22 08:49:11 +00003983 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003984 showoptions(1, opt_flags);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00003985 did_show = TRUE;
3986 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003987 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003988 else if (STRNCMP(arg, "termcap", 7) == 0 && !(opt_flags & OPT_MODELINE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003989 {
3990 showoptions(2, opt_flags);
3991 show_termcodes();
Bram Moolenaar26a60b42005-02-22 08:49:11 +00003992 did_show = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003993 arg += 7;
3994 }
3995 else
3996 {
3997 prefix = 1;
3998 if (STRNCMP(arg, "no", 2) == 0)
3999 {
4000 prefix = 0;
4001 arg += 2;
4002 }
4003 else if (STRNCMP(arg, "inv", 3) == 0)
4004 {
4005 prefix = 2;
4006 arg += 3;
4007 }
4008
4009 /* find end of name */
4010 key = 0;
4011 if (*arg == '<')
4012 {
4013 nextchar = 0;
4014 opt_idx = -1;
4015 /* look out for <t_>;> */
4016 if (arg[1] == 't' && arg[2] == '_' && arg[3] && arg[4])
4017 len = 5;
4018 else
4019 {
4020 len = 1;
4021 while (arg[len] != NUL && arg[len] != '>')
4022 ++len;
4023 }
4024 if (arg[len] != '>')
4025 {
4026 errmsg = e_invarg;
4027 goto skip;
4028 }
4029 arg[len] = NUL; /* put NUL after name */
4030 if (arg[1] == 't' && arg[2] == '_') /* could be term code */
4031 opt_idx = findoption(arg + 1);
4032 arg[len++] = '>'; /* restore '>' */
4033 if (opt_idx == -1)
4034 key = find_key_option(arg + 1);
4035 }
4036 else
4037 {
4038 len = 0;
4039 /*
4040 * The two characters after "t_" may not be alphanumeric.
4041 */
4042 if (arg[0] == 't' && arg[1] == '_' && arg[2] && arg[3])
4043 len = 4;
4044 else
4045 while (ASCII_ISALNUM(arg[len]) || arg[len] == '_')
4046 ++len;
4047 nextchar = arg[len];
4048 arg[len] = NUL; /* put NUL after name */
4049 opt_idx = findoption(arg);
4050 arg[len] = nextchar; /* restore nextchar */
4051 if (opt_idx == -1)
4052 key = find_key_option(arg);
4053 }
4054
4055 /* remember character after option name */
4056 afterchar = arg[len];
4057
4058 /* skip white space, allow ":set ai ?" */
4059 while (vim_iswhite(arg[len]))
4060 ++len;
4061
4062 adding = FALSE;
4063 prepending = FALSE;
4064 removing = FALSE;
4065 if (arg[len] != NUL && arg[len + 1] == '=')
4066 {
4067 if (arg[len] == '+')
4068 {
4069 adding = TRUE; /* "+=" */
4070 ++len;
4071 }
4072 else if (arg[len] == '^')
4073 {
4074 prepending = TRUE; /* "^=" */
4075 ++len;
4076 }
4077 else if (arg[len] == '-')
4078 {
4079 removing = TRUE; /* "-=" */
4080 ++len;
4081 }
4082 }
4083 nextchar = arg[len];
4084
4085 if (opt_idx == -1 && key == 0) /* found a mismatch: skip */
4086 {
4087 errmsg = (char_u *)N_("E518: Unknown option");
4088 goto skip;
4089 }
4090
4091 if (opt_idx >= 0)
4092 {
4093 if (options[opt_idx].var == NULL) /* hidden option: skip */
4094 {
4095 /* Only give an error message when requesting the value of
4096 * a hidden option, ignore setting it. */
4097 if (vim_strchr((char_u *)"=:!&<", nextchar) == NULL
4098 && (!(options[opt_idx].flags & P_BOOL)
4099 || nextchar == '?'))
4100 errmsg = (char_u *)N_("E519: Option not supported");
4101 goto skip;
4102 }
4103
4104 flags = options[opt_idx].flags;
4105 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
4106 }
4107 else
4108 {
4109 flags = P_STRING;
4110 if (key < 0)
4111 {
4112 key_name[0] = KEY2TERMCAP0(key);
4113 key_name[1] = KEY2TERMCAP1(key);
4114 }
4115 else
4116 {
4117 key_name[0] = KS_KEY;
4118 key_name[1] = (key & 0xff);
4119 }
4120 }
4121
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00004122 /* Skip all options that are not window-local (used when showing
4123 * an already loaded buffer in a window). */
4124 if ((opt_flags & OPT_WINONLY)
4125 && (opt_idx < 0 || options[opt_idx].var != VAR_WIN))
4126 goto skip;
4127
Bram Moolenaara3227e22006-03-08 21:32:40 +00004128 /* Skip all options that are window-local (used for :vimgrep). */
4129 if ((opt_flags & OPT_NOWIN) && opt_idx >= 0
4130 && options[opt_idx].var == VAR_WIN)
4131 goto skip;
4132
Bram Moolenaar071d4272004-06-13 20:20:40 +00004133 /* Disallow changing some options from modelines */
4134 if ((opt_flags & OPT_MODELINE) && (flags & P_SECURE))
4135 {
4136 errmsg = (char_u *)_("E520: Not allowed in a modeline");
4137 goto skip;
4138 }
4139
4140#ifdef HAVE_SANDBOX
4141 /* Disallow changing some options in the sandbox */
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00004142 if (sandbox != 0 && (flags & P_SECURE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004143 {
4144 errmsg = (char_u *)_(e_sandbox);
4145 goto skip;
4146 }
4147#endif
4148
4149 if (vim_strchr((char_u *)"?=:!&<", nextchar) != NULL)
4150 {
4151 arg += len;
4152 cp_val = p_cp;
4153 if (nextchar == '&' && arg[1] == 'v' && arg[2] == 'i')
4154 {
4155 if (arg[3] == 'm') /* "opt&vim": set to Vim default */
4156 {
4157 cp_val = FALSE;
4158 arg += 3;
4159 }
4160 else /* "opt&vi": set to Vi default */
4161 {
4162 cp_val = TRUE;
4163 arg += 2;
4164 }
4165 }
4166 if (vim_strchr((char_u *)"?!&<", nextchar) != NULL
4167 && arg[1] != NUL && !vim_iswhite(arg[1]))
4168 {
4169 errmsg = e_trailing;
4170 goto skip;
4171 }
4172 }
4173
4174 /*
4175 * allow '=' and ':' as MSDOS command.com allows only one
4176 * '=' character per "set" command line. grrr. (jw)
4177 */
4178 if (nextchar == '?'
4179 || (prefix == 1
4180 && vim_strchr((char_u *)"=:&<", nextchar) == NULL
4181 && !(flags & P_BOOL)))
4182 {
4183 /*
4184 * print value
4185 */
4186 if (did_show)
4187 msg_putchar('\n'); /* cursor below last one */
4188 else
4189 {
4190 gotocmdline(TRUE); /* cursor at status line */
4191 did_show = TRUE; /* remember that we did a line */
4192 }
4193 if (opt_idx >= 0)
4194 {
4195 showoneopt(&options[opt_idx], opt_flags);
4196#ifdef FEAT_EVAL
4197 if (p_verbose > 0)
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00004198 {
4199 /* Mention where the option was last set. */
4200 if (varp == options[opt_idx].var)
4201 last_set_msg(options[opt_idx].scriptID);
4202 else if ((int)options[opt_idx].indir & PV_WIN)
4203 last_set_msg(curwin->w_p_scriptID[
4204 (int)options[opt_idx].indir & PV_MASK]);
4205 else if ((int)options[opt_idx].indir & PV_BUF)
4206 last_set_msg(curbuf->b_p_scriptID[
4207 (int)options[opt_idx].indir & PV_MASK]);
4208 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004209#endif
4210 }
4211 else
4212 {
4213 char_u *p;
4214
4215 p = find_termcode(key_name);
4216 if (p == NULL)
4217 {
4218 errmsg = (char_u *)N_("E518: Unknown option");
4219 goto skip;
4220 }
4221 else
4222 (void)show_one_termcode(key_name, p, TRUE);
4223 }
4224 if (nextchar != '?'
4225 && nextchar != NUL && !vim_iswhite(afterchar))
4226 errmsg = e_trailing;
4227 }
4228 else
4229 {
4230 if (flags & P_BOOL) /* boolean */
4231 {
4232 if (nextchar == '=' || nextchar == ':')
4233 {
4234 errmsg = e_invarg;
4235 goto skip;
4236 }
4237
4238 /*
4239 * ":set opt!": invert
4240 * ":set opt&": reset to default value
4241 * ":set opt<": reset to global value
4242 */
4243 if (nextchar == '!')
4244 value = *(int *)(varp) ^ 1;
4245 else if (nextchar == '&')
Bram Moolenaareb3593b2006-04-22 22:33:57 +00004246 value = (int)(long)(long_i)options[opt_idx].def_val[
Bram Moolenaar071d4272004-06-13 20:20:40 +00004247 ((flags & P_VI_DEF) || cp_val)
4248 ? VI_DEFAULT : VIM_DEFAULT];
4249 else if (nextchar == '<')
4250 {
4251 /* For 'autoread' -1 means to use global value. */
4252 if ((int *)varp == &curbuf->b_p_ar
4253 && opt_flags == OPT_LOCAL)
4254 value = -1;
4255 else
4256 value = *(int *)get_varp_scope(&(options[opt_idx]),
4257 OPT_GLOBAL);
4258 }
4259 else
4260 {
4261 /*
4262 * ":set invopt": invert
4263 * ":set opt" or ":set noopt": set or reset
4264 */
4265 if (nextchar != NUL && !vim_iswhite(afterchar))
4266 {
4267 errmsg = e_trailing;
4268 goto skip;
4269 }
4270 if (prefix == 2) /* inv */
4271 value = *(int *)(varp) ^ 1;
4272 else
4273 value = prefix;
4274 }
4275
4276 errmsg = set_bool_option(opt_idx, varp, (int)value,
4277 opt_flags);
4278 }
4279 else /* numeric or string */
4280 {
4281 if (vim_strchr((char_u *)"=:&<", nextchar) == NULL
4282 || prefix != 1)
4283 {
4284 errmsg = e_invarg;
4285 goto skip;
4286 }
4287
4288 if (flags & P_NUM) /* numeric */
4289 {
4290 /*
4291 * Different ways to set a number option:
4292 * & set to default value
4293 * < set to global value
4294 * <xx> accept special key codes for 'wildchar'
4295 * c accept any non-digit for 'wildchar'
4296 * [-]0-9 set number
4297 * other error
4298 */
4299 ++arg;
4300 if (nextchar == '&')
Bram Moolenaareb3593b2006-04-22 22:33:57 +00004301 value = (long)(long_i)options[opt_idx].def_val[
Bram Moolenaar071d4272004-06-13 20:20:40 +00004302 ((flags & P_VI_DEF) || cp_val)
4303 ? VI_DEFAULT : VIM_DEFAULT];
4304 else if (nextchar == '<')
4305 value = *(long *)get_varp_scope(&(options[opt_idx]),
4306 OPT_GLOBAL);
4307 else if (((long *)varp == &p_wc
4308 || (long *)varp == &p_wcm)
4309 && (*arg == '<'
4310 || *arg == '^'
4311 || ((!arg[1] || vim_iswhite(arg[1]))
4312 && !VIM_ISDIGIT(*arg))))
4313 {
4314 value = string_to_key(arg);
4315 if (value == 0 && (long *)varp != &p_wcm)
4316 {
4317 errmsg = e_invarg;
4318 goto skip;
4319 }
4320 }
4321 /* allow negative numbers (for 'undolevels') */
4322 else if (*arg == '-' || VIM_ISDIGIT(*arg))
4323 {
4324 i = 0;
4325 if (*arg == '-')
4326 i = 1;
4327#ifdef HAVE_STRTOL
4328 value = strtol((char *)arg, NULL, 0);
4329 if (arg[i] == '0' && TOLOWER_ASC(arg[i + 1]) == 'x')
4330 i += 2;
4331#else
4332 value = atol((char *)arg);
4333#endif
4334 while (VIM_ISDIGIT(arg[i]))
4335 ++i;
4336 if (arg[i] != NUL && !vim_iswhite(arg[i]))
4337 {
4338 errmsg = e_invarg;
4339 goto skip;
4340 }
4341 }
4342 else
4343 {
4344 errmsg = (char_u *)N_("E521: Number required after =");
4345 goto skip;
4346 }
4347
4348 if (adding)
4349 value = *(long *)varp + value;
4350 if (prepending)
4351 value = *(long *)varp * value;
4352 if (removing)
4353 value = *(long *)varp - value;
4354 errmsg = set_num_option(opt_idx, varp, value,
Bram Moolenaar555b2802005-05-19 21:08:39 +00004355 errbuf, sizeof(errbuf), opt_flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004356 }
4357 else if (opt_idx >= 0) /* string */
4358 {
4359 char_u *save_arg = NULL;
4360 char_u *s = NULL;
4361 char_u *oldval; /* previous value if *varp */
4362 char_u *newval;
4363 char_u *origval;
4364 unsigned newlen;
4365 int comma;
4366 int bs;
4367 int new_value_alloced; /* new string option
4368 was allocated */
4369
4370 /* When using ":set opt=val" for a global option
4371 * with a local value the local value will be
4372 * reset, use the global value here. */
4373 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
Bram Moolenaara23ccb82006-02-27 00:08:02 +00004374 && ((int)options[opt_idx].indir & PV_BOTH))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004375 varp = options[opt_idx].var;
4376
4377 /* The old value is kept until we are sure that the
4378 * new value is valid. */
4379 oldval = *(char_u **)varp;
4380 if (nextchar == '&') /* set to default val */
4381 {
4382 newval = options[opt_idx].def_val[
4383 ((flags & P_VI_DEF) || cp_val)
4384 ? VI_DEFAULT : VIM_DEFAULT];
4385 if ((char_u **)varp == &p_bg)
4386 {
4387 /* guess the value of 'background' */
4388#ifdef FEAT_GUI
4389 if (gui.in_use)
4390 newval = gui_bg_default();
4391 else
4392#endif
Bram Moolenaarf740b292006-02-16 22:11:02 +00004393 newval = term_bg_default();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004394 }
4395
4396 /* expand environment variables and ~ (since the
4397 * default value was already expanded, only
4398 * required when an environment variable was set
4399 * later */
4400 if (newval == NULL)
4401 newval = empty_option;
4402 else
4403 {
4404 s = option_expand(opt_idx, newval);
4405 if (s == NULL)
4406 s = newval;
4407 newval = vim_strsave(s);
4408 }
4409 new_value_alloced = TRUE;
4410 }
4411 else if (nextchar == '<') /* set to global val */
4412 {
4413 newval = vim_strsave(*(char_u **)get_varp_scope(
4414 &(options[opt_idx]), OPT_GLOBAL));
4415 new_value_alloced = TRUE;
4416 }
4417 else
4418 {
4419 ++arg; /* jump to after the '=' or ':' */
4420
4421 /*
4422 * Set 'keywordprg' to ":help" if an empty
4423 * value was passed to :set by the user.
4424 * Misuse errbuf[] for the resulting string.
4425 */
4426 if (varp == (char_u *)&p_kp
4427 && (*arg == NUL || *arg == ' '))
4428 {
4429 STRCPY(errbuf, ":help");
4430 save_arg = arg;
4431 arg = errbuf;
4432 }
4433 /*
4434 * Convert 'whichwrap' number to string, for
4435 * backwards compatibility with Vim 3.0.
4436 * Misuse errbuf[] for the resulting string.
4437 */
4438 else if (varp == (char_u *)&p_ww
4439 && VIM_ISDIGIT(*arg))
4440 {
4441 *errbuf = NUL;
4442 i = getdigits(&arg);
4443 if (i & 1)
4444 STRCAT(errbuf, "b,");
4445 if (i & 2)
4446 STRCAT(errbuf, "s,");
4447 if (i & 4)
4448 STRCAT(errbuf, "h,l,");
4449 if (i & 8)
4450 STRCAT(errbuf, "<,>,");
4451 if (i & 16)
4452 STRCAT(errbuf, "[,],");
4453 if (*errbuf != NUL) /* remove trailing , */
4454 errbuf[STRLEN(errbuf) - 1] = NUL;
4455 save_arg = arg;
4456 arg = errbuf;
4457 }
4458 /*
4459 * Remove '>' before 'dir' and 'bdir', for
4460 * backwards compatibility with version 3.0
4461 */
4462 else if ( *arg == '>'
4463 && (varp == (char_u *)&p_dir
4464 || varp == (char_u *)&p_bdir))
4465 {
4466 ++arg;
4467 }
4468
4469 /* When setting the local value of a global
4470 * option, the old value may be the global value. */
Bram Moolenaara23ccb82006-02-27 00:08:02 +00004471 if (((int)options[opt_idx].indir & PV_BOTH)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004472 && (opt_flags & OPT_LOCAL))
4473 origval = *(char_u **)get_varp(
4474 &options[opt_idx]);
4475 else
4476 origval = oldval;
4477
4478 /*
4479 * Copy the new string into allocated memory.
4480 * Can't use set_string_option_direct(), because
4481 * we need to remove the backslashes.
4482 */
4483 /* get a bit too much */
4484 newlen = (unsigned)STRLEN(arg) + 1;
4485 if (adding || prepending || removing)
4486 newlen += (unsigned)STRLEN(origval) + 1;
4487 newval = alloc(newlen);
4488 if (newval == NULL) /* out of mem, don't change */
4489 break;
4490 s = newval;
4491
4492 /*
4493 * Copy the string, skip over escaped chars.
4494 * For MS-DOS and WIN32 backslashes before normal
4495 * file name characters are not removed, and keep
4496 * backslash at start, for "\\machine\path", but
4497 * do remove it for "\\\\machine\\path".
4498 * The reverse is found in ExpandOldSetting().
4499 */
4500 while (*arg && !vim_iswhite(*arg))
4501 {
4502 if (*arg == '\\' && arg[1] != NUL
4503#ifdef BACKSLASH_IN_FILENAME
4504 && !((flags & P_EXPAND)
4505 && vim_isfilec(arg[1])
4506 && (arg[1] != '\\'
4507 || (s == newval
4508 && arg[2] != '\\')))
4509#endif
4510 )
4511 ++arg; /* remove backslash */
4512#ifdef FEAT_MBYTE
4513 if (has_mbyte
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004514 && (i = (*mb_ptr2len)(arg)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004515 {
4516 /* copy multibyte char */
4517 mch_memmove(s, arg, (size_t)i);
4518 arg += i;
4519 s += i;
4520 }
4521 else
4522#endif
4523 *s++ = *arg++;
4524 }
4525 *s = NUL;
4526
4527 /*
4528 * Expand environment variables and ~.
4529 * Don't do it when adding without inserting a
4530 * comma.
4531 */
4532 if (!(adding || prepending || removing)
4533 || (flags & P_COMMA))
4534 {
4535 s = option_expand(opt_idx, newval);
4536 if (s != NULL)
4537 {
4538 vim_free(newval);
4539 newlen = (unsigned)STRLEN(s) + 1;
4540 if (adding || prepending || removing)
4541 newlen += (unsigned)STRLEN(origval) + 1;
4542 newval = alloc(newlen);
4543 if (newval == NULL)
4544 break;
4545 STRCPY(newval, s);
4546 }
4547 }
4548
4549 /* locate newval[] in origval[] when removing it
4550 * and when adding to avoid duplicates */
4551 i = 0; /* init for GCC */
4552 if (removing || (flags & P_NODUP))
4553 {
4554 i = (int)STRLEN(newval);
4555 bs = 0;
4556 for (s = origval; *s; ++s)
4557 {
4558 if ((!(flags & P_COMMA)
4559 || s == origval
4560 || (s[-1] == ',' && !(bs & 1)))
4561 && STRNCMP(s, newval, i) == 0
4562 && (!(flags & P_COMMA)
4563 || s[i] == ','
4564 || s[i] == NUL))
4565 break;
4566 /* Count backspaces. Only a comma with an
4567 * even number of backspaces before it is
4568 * recognized as a separator */
4569 if (s > origval && s[-1] == '\\')
4570 ++bs;
4571 else
4572 bs = 0;
4573 }
4574
4575 /* do not add if already there */
4576 if ((adding || prepending) && *s)
4577 {
4578 prepending = FALSE;
4579 adding = FALSE;
4580 STRCPY(newval, origval);
4581 }
4582 }
4583
4584 /* concatenate the two strings; add a ',' if
4585 * needed */
4586 if (adding || prepending)
4587 {
4588 comma = ((flags & P_COMMA) && *origval != NUL
4589 && *newval != NUL);
4590 if (adding)
4591 {
4592 i = (int)STRLEN(origval);
4593 mch_memmove(newval + i + comma, newval,
4594 STRLEN(newval) + 1);
4595 mch_memmove(newval, origval, (size_t)i);
4596 }
4597 else
4598 {
4599 i = (int)STRLEN(newval);
4600 mch_memmove(newval + i + comma, origval,
4601 STRLEN(origval) + 1);
4602 }
4603 if (comma)
4604 newval[i] = ',';
4605 }
4606
4607 /* Remove newval[] from origval[]. (Note: "i" has
4608 * been set above and is used here). */
4609 if (removing)
4610 {
4611 STRCPY(newval, origval);
4612 if (*s)
4613 {
4614 /* may need to remove a comma */
4615 if (flags & P_COMMA)
4616 {
4617 if (s == origval)
4618 {
4619 /* include comma after string */
4620 if (s[i] == ',')
4621 ++i;
4622 }
4623 else
4624 {
4625 /* include comma before string */
4626 --s;
4627 ++i;
4628 }
4629 }
4630 mch_memmove(newval + (s - origval), s + i,
4631 STRLEN(s + i) + 1);
4632 }
4633 }
4634
4635 if (flags & P_FLAGLIST)
4636 {
4637 /* Remove flags that appear twice. */
4638 for (s = newval; *s; ++s)
4639 if ((!(flags & P_COMMA) || *s != ',')
4640 && vim_strchr(s + 1, *s) != NULL)
4641 {
Bram Moolenaar3afaae42007-07-24 12:58:01 +00004642 mch_memmove(s, s + 1, STRLEN(s));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004643 --s;
4644 }
4645 }
4646
4647 if (save_arg != NULL) /* number for 'whichwrap' */
4648 arg = save_arg;
4649 new_value_alloced = TRUE;
4650 }
4651
4652 /* Set the new value. */
4653 *(char_u **)(varp) = newval;
4654
4655 /* Handle side effects, and set the global value for
4656 * ":set" on local options. */
4657 errmsg = did_set_string_option(opt_idx, (char_u **)varp,
4658 new_value_alloced, oldval, errbuf, opt_flags);
4659
4660 /* If error detected, print the error message. */
4661 if (errmsg != NULL)
4662 goto skip;
4663 }
4664 else /* key code option */
4665 {
4666 char_u *p;
4667
4668 if (nextchar == '&')
4669 {
4670 if (add_termcap_entry(key_name, TRUE) == FAIL)
4671 errmsg = (char_u *)N_("E522: Not found in termcap");
4672 }
4673 else
4674 {
4675 ++arg; /* jump to after the '=' or ':' */
4676 for (p = arg; *p && !vim_iswhite(*p); ++p)
4677 if (*p == '\\' && p[1] != NUL)
4678 ++p;
4679 nextchar = *p;
4680 *p = NUL;
4681 add_termcode(key_name, arg, FALSE);
4682 *p = nextchar;
4683 }
4684 if (full_screen)
4685 ttest(FALSE);
4686 redraw_all_later(CLEAR);
4687 }
4688 }
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00004689
Bram Moolenaar071d4272004-06-13 20:20:40 +00004690 if (opt_idx >= 0)
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00004691 did_set_option(opt_idx, opt_flags,
4692 !prepending && !adding && !removing);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004693 }
4694
4695skip:
4696 /*
4697 * Advance to next argument.
4698 * - skip until a blank found, taking care of backslashes
4699 * - skip blanks
4700 * - skip one "=val" argument (for hidden options ":set gfn =xx")
4701 */
4702 for (i = 0; i < 2 ; ++i)
4703 {
4704 while (*arg != NUL && !vim_iswhite(*arg))
4705 if (*arg++ == '\\' && *arg != NUL)
4706 ++arg;
4707 arg = skipwhite(arg);
4708 if (*arg != '=')
4709 break;
4710 }
4711 }
4712
4713 if (errmsg != NULL)
4714 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004715 vim_strncpy(IObuff, (char_u *)_(errmsg), IOSIZE - 1);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004716 i = (int)STRLEN(IObuff) + 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004717 if (i + (arg - startarg) < IOSIZE)
4718 {
4719 /* append the argument with the error */
4720 STRCAT(IObuff, ": ");
4721 mch_memmove(IObuff + i, startarg, (arg - startarg));
4722 IObuff[i + (arg - startarg)] = NUL;
4723 }
4724 /* make sure all characters are printable */
4725 trans_characters(IObuff, IOSIZE);
4726
4727 ++no_wait_return; /* wait_return done later */
4728 emsg(IObuff); /* show error highlighted */
4729 --no_wait_return;
4730
4731 return FAIL;
4732 }
4733
4734 arg = skipwhite(arg);
4735 }
4736
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004737theend:
4738 if (silent_mode && did_show)
4739 {
4740 /* After displaying option values in silent mode. */
4741 silent_mode = FALSE;
4742 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
4743 msg_putchar('\n');
4744 cursor_on(); /* msg_start() switches it off */
4745 out_flush();
4746 silent_mode = TRUE;
4747 info_message = FALSE; /* use mch_msg(), not mch_errmsg() */
4748 }
4749
Bram Moolenaar071d4272004-06-13 20:20:40 +00004750 return OK;
4751}
4752
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00004753/*
4754 * Call this when an option has been given a new value through a user command.
4755 * Sets the P_WAS_SET flag and takes care of the P_INSECURE flag.
4756 */
4757 static void
4758did_set_option(opt_idx, opt_flags, new_value)
4759 int opt_idx;
4760 int opt_flags; /* possibly with OPT_MODELINE */
4761 int new_value; /* value was replaced completely */
4762{
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004763 long_u *p;
4764
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00004765 options[opt_idx].flags |= P_WAS_SET;
4766
4767 /* When an option is set in the sandbox, from a modeline or in secure mode
4768 * set the P_INSECURE flag. Otherwise, if a new value is stored reset the
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004769 * flag. */
4770 p = insecure_flag(opt_idx, opt_flags);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00004771 if (secure
4772#ifdef HAVE_SANDBOX
4773 || sandbox != 0
4774#endif
4775 || (opt_flags & OPT_MODELINE))
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004776 *p = *p | P_INSECURE;
4777 else if (new_value)
4778 *p = *p & ~P_INSECURE;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00004779}
4780
Bram Moolenaar071d4272004-06-13 20:20:40 +00004781 static char_u *
4782illegal_char(errbuf, c)
4783 char_u *errbuf;
4784 int c;
4785{
4786 if (errbuf == NULL)
4787 return (char_u *)"";
4788 sprintf((char *)errbuf, _("E539: Illegal character <%s>"),
Bram Moolenaar555b2802005-05-19 21:08:39 +00004789 (char *)transchar(c));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004790 return errbuf;
4791}
4792
4793/*
4794 * Convert a key name or string into a key value.
4795 * Used for 'wildchar' and 'cedit' options.
4796 */
4797 static int
4798string_to_key(arg)
4799 char_u *arg;
4800{
4801 if (*arg == '<')
4802 return find_key_option(arg + 1);
4803 if (*arg == '^')
4804 return Ctrl_chr(arg[1]);
4805 return *arg;
4806}
4807
4808#ifdef FEAT_CMDWIN
4809/*
4810 * Check value of 'cedit' and set cedit_key.
4811 * Returns NULL if value is OK, error message otherwise.
4812 */
4813 static char_u *
4814check_cedit()
4815{
4816 int n;
4817
4818 if (*p_cedit == NUL)
4819 cedit_key = -1;
4820 else
4821 {
4822 n = string_to_key(p_cedit);
4823 if (vim_isprintc(n))
4824 return e_invarg;
4825 cedit_key = n;
4826 }
4827 return NULL;
4828}
4829#endif
4830
4831#ifdef FEAT_TITLE
4832/*
4833 * When changing 'title', 'titlestring', 'icon' or 'iconstring', call
4834 * maketitle() to create and display it.
4835 * When switching the title or icon off, call mch_restore_title() to get
4836 * the old value back.
4837 */
4838 static void
4839did_set_title(icon)
4840 int icon; /* Did set icon instead of title */
4841{
4842 if (starting != NO_SCREEN
4843#ifdef FEAT_GUI
4844 && !gui.starting
4845#endif
4846 )
4847 {
4848 maketitle();
4849 if (icon)
4850 {
4851 if (!p_icon)
4852 mch_restore_title(2);
4853 }
4854 else
4855 {
4856 if (!p_title)
4857 mch_restore_title(1);
4858 }
4859 }
4860}
4861#endif
4862
4863/*
4864 * set_options_bin - called when 'bin' changes value.
4865 */
4866 void
4867set_options_bin(oldval, newval, opt_flags)
4868 int oldval;
4869 int newval;
4870 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
4871{
4872 /*
4873 * The option values that are changed when 'bin' changes are
4874 * copied when 'bin is set and restored when 'bin' is reset.
4875 */
4876 if (newval)
4877 {
4878 if (!oldval) /* switched on */
4879 {
4880 if (!(opt_flags & OPT_GLOBAL))
4881 {
4882 curbuf->b_p_tw_nobin = curbuf->b_p_tw;
4883 curbuf->b_p_wm_nobin = curbuf->b_p_wm;
4884 curbuf->b_p_ml_nobin = curbuf->b_p_ml;
4885 curbuf->b_p_et_nobin = curbuf->b_p_et;
4886 }
4887 if (!(opt_flags & OPT_LOCAL))
4888 {
4889 p_tw_nobin = p_tw;
4890 p_wm_nobin = p_wm;
4891 p_ml_nobin = p_ml;
4892 p_et_nobin = p_et;
4893 }
4894 }
4895
4896 if (!(opt_flags & OPT_GLOBAL))
4897 {
4898 curbuf->b_p_tw = 0; /* no automatic line wrap */
4899 curbuf->b_p_wm = 0; /* no automatic line wrap */
4900 curbuf->b_p_ml = 0; /* no modelines */
4901 curbuf->b_p_et = 0; /* no expandtab */
4902 }
4903 if (!(opt_flags & OPT_LOCAL))
4904 {
4905 p_tw = 0;
4906 p_wm = 0;
4907 p_ml = FALSE;
4908 p_et = FALSE;
4909 p_bin = TRUE; /* needed when called for the "-b" argument */
4910 }
4911 }
4912 else if (oldval) /* switched off */
4913 {
4914 if (!(opt_flags & OPT_GLOBAL))
4915 {
4916 curbuf->b_p_tw = curbuf->b_p_tw_nobin;
4917 curbuf->b_p_wm = curbuf->b_p_wm_nobin;
4918 curbuf->b_p_ml = curbuf->b_p_ml_nobin;
4919 curbuf->b_p_et = curbuf->b_p_et_nobin;
4920 }
4921 if (!(opt_flags & OPT_LOCAL))
4922 {
4923 p_tw = p_tw_nobin;
4924 p_wm = p_wm_nobin;
4925 p_ml = p_ml_nobin;
4926 p_et = p_et_nobin;
4927 }
4928 }
4929}
4930
4931#ifdef FEAT_VIMINFO
4932/*
4933 * Find the parameter represented by the given character (eg ', :, ", or /),
4934 * and return its associated value in the 'viminfo' string.
4935 * Only works for number parameters, not for 'r' or 'n'.
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00004936 * If the parameter is not specified in the string or there is no following
4937 * number, return -1.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004938 */
4939 int
4940get_viminfo_parameter(type)
4941 int type;
4942{
4943 char_u *p;
4944
4945 p = find_viminfo_parameter(type);
4946 if (p != NULL && VIM_ISDIGIT(*p))
4947 return atoi((char *)p);
4948 return -1;
4949}
4950
4951/*
4952 * Find the parameter represented by the given character (eg ''', ':', '"', or
4953 * '/') in the 'viminfo' option and return a pointer to the string after it.
4954 * Return NULL if the parameter is not specified in the string.
4955 */
4956 char_u *
4957find_viminfo_parameter(type)
4958 int type;
4959{
4960 char_u *p;
4961
4962 for (p = p_viminfo; *p; ++p)
4963 {
4964 if (*p == type)
4965 return p + 1;
4966 if (*p == 'n') /* 'n' is always the last one */
4967 break;
4968 p = vim_strchr(p, ','); /* skip until next ',' */
4969 if (p == NULL) /* hit the end without finding parameter */
4970 break;
4971 }
4972 return NULL;
4973}
4974#endif
4975
4976/*
4977 * Expand environment variables for some string options.
4978 * These string options cannot be indirect!
4979 * If "val" is NULL expand the current value of the option.
4980 * Return pointer to NameBuff, or NULL when not expanded.
4981 */
4982 static char_u *
4983option_expand(opt_idx, val)
4984 int opt_idx;
4985 char_u *val;
4986{
4987 /* if option doesn't need expansion nothing to do */
4988 if (!(options[opt_idx].flags & P_EXPAND) || options[opt_idx].var == NULL)
4989 return NULL;
4990
4991 /* If val is longer than MAXPATHL no meaningful expansion can be done,
4992 * expand_env() would truncate the string. */
4993 if (val != NULL && STRLEN(val) > MAXPATHL)
4994 return NULL;
4995
4996 if (val == NULL)
4997 val = *(char_u **)options[opt_idx].var;
4998
4999 /*
5000 * Expanding this with NameBuff, expand_env() must not be passed IObuff.
5001 * Escape spaces when expanding 'tags', they are used to separate file
5002 * names.
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00005003 * For 'spellsuggest' expand after "file:".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005004 */
5005 expand_env_esc(val, NameBuff, MAXPATHL,
Bram Moolenaar9f0545d2007-09-26 20:36:32 +00005006 (char_u **)options[opt_idx].var == &p_tags, FALSE,
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00005007#ifdef FEAT_SPELL
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00005008 (char_u **)options[opt_idx].var == &p_sps ? (char_u *)"file:" :
5009#endif
5010 NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005011 if (STRCMP(NameBuff, val) == 0) /* they are the same */
5012 return NULL;
5013
5014 return NameBuff;
5015}
5016
5017/*
5018 * After setting various option values: recompute variables that depend on
5019 * option values.
5020 */
5021 static void
5022didset_options()
5023{
5024 /* initialize the table for 'iskeyword' et.al. */
5025 (void)init_chartab();
5026
Bram Moolenaarfa1d1402006-03-25 21:59:56 +00005027#ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00005028 (void)opt_strings_flags(p_cmp, p_cmp_values, &cmp_flags, TRUE);
Bram Moolenaarfa1d1402006-03-25 21:59:56 +00005029#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005030 (void)opt_strings_flags(p_bkc, p_bkc_values, &bkc_flags, TRUE);
5031#ifdef FEAT_SESSION
5032 (void)opt_strings_flags(p_ssop, p_ssop_values, &ssop_flags, TRUE);
5033 (void)opt_strings_flags(p_vop, p_ssop_values, &vop_flags, TRUE);
5034#endif
5035#ifdef FEAT_FOLDING
5036 (void)opt_strings_flags(p_fdo, p_fdo_values, &fdo_flags, TRUE);
5037#endif
5038 (void)opt_strings_flags(p_dy, p_dy_values, &dy_flags, TRUE);
5039#ifdef FEAT_VIRTUALEDIT
5040 (void)opt_strings_flags(p_ve, p_ve_values, &ve_flags, TRUE);
5041#endif
5042#if defined(FEAT_MOUSE) && (defined(UNIX) || defined(VMS))
5043 (void)opt_strings_flags(p_ttym, p_ttym_values, &ttym_flags, FALSE);
5044#endif
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00005045#ifdef FEAT_SPELL
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00005046 (void)spell_check_msm();
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00005047 (void)spell_check_sps();
Bram Moolenaar0dc065e2005-07-04 22:49:24 +00005048 (void)compile_cap_prog(curbuf);
Bram Moolenaard857f0e2005-06-21 22:37:39 +00005049#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005050#if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
5051 (void)opt_strings_flags(p_toolbar, p_toolbar_values, &toolbar_flags, TRUE);
5052#endif
5053#if defined(FEAT_TOOLBAR) && defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)
5054 (void)opt_strings_flags(p_tbis, p_tbis_values, &tbis_flags, FALSE);
5055#endif
5056#ifdef FEAT_CMDWIN
5057 /* set cedit_key */
5058 (void)check_cedit();
5059#endif
5060}
5061
5062/*
5063 * Check for string options that are NULL (normally only termcap options).
5064 */
5065 void
5066check_options()
5067{
5068 int opt_idx;
5069
5070 for (opt_idx = 0; options[opt_idx].fullname != NULL; opt_idx++)
5071 if ((options[opt_idx].flags & P_STRING) && options[opt_idx].var != NULL)
5072 check_string_option((char_u **)get_varp(&(options[opt_idx])));
5073}
5074
5075/*
5076 * Check string options in a buffer for NULL value.
5077 */
5078 void
5079check_buf_options(buf)
5080 buf_T *buf;
5081{
5082#if defined(FEAT_QUICKFIX)
5083 check_string_option(&buf->b_p_bh);
5084 check_string_option(&buf->b_p_bt);
5085#endif
5086#ifdef FEAT_MBYTE
5087 check_string_option(&buf->b_p_fenc);
5088#endif
5089 check_string_option(&buf->b_p_ff);
5090#ifdef FEAT_FIND_ID
5091 check_string_option(&buf->b_p_def);
5092 check_string_option(&buf->b_p_inc);
5093# ifdef FEAT_EVAL
5094 check_string_option(&buf->b_p_inex);
5095# endif
5096#endif
5097#if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
5098 check_string_option(&buf->b_p_inde);
5099 check_string_option(&buf->b_p_indk);
5100#endif
Bram Moolenaar9b2200a2006-03-20 21:55:45 +00005101#if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
5102 check_string_option(&buf->b_p_bexpr);
5103#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005104#if defined(FEAT_EVAL)
5105 check_string_option(&buf->b_p_fex);
5106#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005107#ifdef FEAT_CRYPT
5108 check_string_option(&buf->b_p_key);
5109#endif
5110 check_string_option(&buf->b_p_kp);
5111 check_string_option(&buf->b_p_mps);
5112 check_string_option(&buf->b_p_fo);
Bram Moolenaar86b68352004-12-27 21:59:20 +00005113 check_string_option(&buf->b_p_flp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005114 check_string_option(&buf->b_p_isk);
5115#ifdef FEAT_COMMENTS
5116 check_string_option(&buf->b_p_com);
5117#endif
5118#ifdef FEAT_FOLDING
5119 check_string_option(&buf->b_p_cms);
5120#endif
5121 check_string_option(&buf->b_p_nf);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00005122#ifdef FEAT_TEXTOBJ
5123 check_string_option(&buf->b_p_qe);
5124#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005125#ifdef FEAT_SYN_HL
5126 check_string_option(&buf->b_p_syn);
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00005127#endif
5128#ifdef FEAT_SPELL
Bram Moolenaar0d9c26d2005-07-02 23:19:16 +00005129 check_string_option(&buf->b_p_spc);
Bram Moolenaar82cf9b62005-06-07 21:09:25 +00005130 check_string_option(&buf->b_p_spf);
Bram Moolenaar217ad922005-03-20 22:37:15 +00005131 check_string_option(&buf->b_p_spl);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005132#endif
5133#ifdef FEAT_SEARCHPATH
5134 check_string_option(&buf->b_p_sua);
5135#endif
5136#ifdef FEAT_CINDENT
5137 check_string_option(&buf->b_p_cink);
5138 check_string_option(&buf->b_p_cino);
5139#endif
5140#ifdef FEAT_AUTOCMD
5141 check_string_option(&buf->b_p_ft);
5142#endif
5143#ifdef FEAT_OSFILETYPE
5144 check_string_option(&buf->b_p_oft);
5145#endif
5146#if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
5147 check_string_option(&buf->b_p_cinw);
5148#endif
5149#ifdef FEAT_INS_EXPAND
5150 check_string_option(&buf->b_p_cpt);
5151#endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00005152#ifdef FEAT_COMPL_FUNC
5153 check_string_option(&buf->b_p_cfu);
Bram Moolenaare344bea2005-09-01 20:46:49 +00005154 check_string_option(&buf->b_p_ofu);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00005155#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005156#ifdef FEAT_KEYMAP
5157 check_string_option(&buf->b_p_keymap);
5158#endif
5159#ifdef FEAT_QUICKFIX
5160 check_string_option(&buf->b_p_gp);
5161 check_string_option(&buf->b_p_mp);
5162 check_string_option(&buf->b_p_efm);
5163#endif
5164 check_string_option(&buf->b_p_ep);
5165 check_string_option(&buf->b_p_path);
5166 check_string_option(&buf->b_p_tags);
5167#ifdef FEAT_INS_EXPAND
5168 check_string_option(&buf->b_p_dict);
5169 check_string_option(&buf->b_p_tsr);
5170#endif
5171}
5172
5173/*
5174 * Free the string allocated for an option.
5175 * Checks for the string being empty_option. This may happen if we're out of
5176 * memory, vim_strsave() returned NULL, which was replaced by empty_option by
5177 * check_options().
5178 * Does NOT check for P_ALLOCED flag!
5179 */
5180 void
5181free_string_option(p)
5182 char_u *p;
5183{
5184 if (p != empty_option)
5185 vim_free(p);
5186}
5187
5188 void
5189clear_string_option(pp)
5190 char_u **pp;
5191{
5192 if (*pp != empty_option)
5193 vim_free(*pp);
5194 *pp = empty_option;
5195}
5196
5197 static void
5198check_string_option(pp)
5199 char_u **pp;
5200{
5201 if (*pp == NULL)
5202 *pp = empty_option;
5203}
5204
5205/*
5206 * Mark a terminal option as allocated, found by a pointer into term_strings[].
5207 */
5208 void
5209set_term_option_alloced(p)
5210 char_u **p;
5211{
5212 int opt_idx;
5213
5214 for (opt_idx = 1; options[opt_idx].fullname != NULL; opt_idx++)
5215 if (options[opt_idx].var == (char_u *)p)
5216 {
5217 options[opt_idx].flags |= P_ALLOCED;
5218 return;
5219 }
5220 return; /* cannot happen: didn't find it! */
5221}
5222
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00005223#if defined(FEAT_EVAL) || defined(PROTO)
5224/*
5225 * Return TRUE when option "opt" was set from a modeline or in secure mode.
5226 * Return FALSE when it wasn't.
5227 * Return -1 for an unknown option.
5228 */
5229 int
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005230was_set_insecurely(opt, opt_flags)
5231 char_u *opt;
5232 int opt_flags;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00005233{
5234 int idx = findoption(opt);
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005235 long_u *flagp;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00005236
5237 if (idx >= 0)
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005238 {
5239 flagp = insecure_flag(idx, opt_flags);
5240 return (*flagp & P_INSECURE) != 0;
5241 }
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00005242 EMSG2(_(e_intern2), "was_set_insecurely()");
5243 return -1;
5244}
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005245
5246/*
5247 * Get a pointer to the flags used for the P_INSECURE flag of option
5248 * "opt_idx". For some local options a local flags field is used.
5249 */
5250 static long_u *
5251insecure_flag(opt_idx, opt_flags)
5252 int opt_idx;
5253 int opt_flags;
5254{
5255 if (opt_flags & OPT_LOCAL)
5256 switch ((int)options[opt_idx].indir)
5257 {
5258#ifdef FEAT_STL_OPT
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00005259 case PV_STL: return &curwin->w_p_stl_flags;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005260#endif
5261#ifdef FEAT_EVAL
Bram Moolenaar2e978902006-05-13 12:37:50 +00005262# ifdef FEAT_FOLDING
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00005263 case PV_FDE: return &curwin->w_p_fde_flags;
5264 case PV_FDT: return &curwin->w_p_fdt_flags;
Bram Moolenaar2e978902006-05-13 12:37:50 +00005265# endif
Bram Moolenaar9b2200a2006-03-20 21:55:45 +00005266# ifdef FEAT_BEVAL
5267 case PV_BEXPR: return &curbuf->b_p_bexpr_flags;
5268# endif
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005269# if defined(FEAT_CINDENT)
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00005270 case PV_INDE: return &curbuf->b_p_inde_flags;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005271# endif
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00005272 case PV_FEX: return &curbuf->b_p_fex_flags;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005273# ifdef FEAT_FIND_ID
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00005274 case PV_INEX: return &curbuf->b_p_inex_flags;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005275# endif
5276#endif
5277 }
5278
5279 /* Nothing special, return global flags field. */
5280 return &options[opt_idx].flags;
5281}
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00005282#endif
5283
Bram Moolenaar071d4272004-06-13 20:20:40 +00005284/*
5285 * Set a string option to a new value (without checking the effect).
5286 * The string is copied into allocated memory.
5287 * if ("opt_idx" == -1) "name" is used, otherwise "opt_idx" is used.
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00005288 * When "set_sid" is zero set the scriptID to current_SID. When "set_sid" is
Bram Moolenaard55de222007-05-06 13:38:48 +00005289 * SID_NONE don't set the scriptID. Otherwise set the scriptID to "set_sid".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005290 */
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00005291/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00005292 void
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00005293set_string_option_direct(name, opt_idx, val, opt_flags, set_sid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005294 char_u *name;
5295 int opt_idx;
5296 char_u *val;
5297 int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00005298 int set_sid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005299{
5300 char_u *s;
5301 char_u **varp;
5302 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
Bram Moolenaar89d40322006-08-29 15:30:07 +00005303 int idx = opt_idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005304
Bram Moolenaar89d40322006-08-29 15:30:07 +00005305 if (idx == -1) /* use name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005306 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00005307 idx = findoption(name);
5308 if (idx < 0) /* not found (should not happen) */
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00005309 {
5310 EMSG2(_(e_intern2), "set_string_option_direct()");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005311 return;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00005312 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005313 }
5314
Bram Moolenaar89d40322006-08-29 15:30:07 +00005315 if (options[idx].var == NULL) /* can't set hidden option */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005316 return;
5317
5318 s = vim_strsave(val);
5319 if (s != NULL)
5320 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00005321 varp = (char_u **)get_varp_scope(&(options[idx]),
Bram Moolenaar071d4272004-06-13 20:20:40 +00005322 both ? OPT_LOCAL : opt_flags);
Bram Moolenaar89d40322006-08-29 15:30:07 +00005323 if ((opt_flags & OPT_FREE) && (options[idx].flags & P_ALLOCED))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005324 free_string_option(*varp);
5325 *varp = s;
5326
5327 /* For buffer/window local option may also set the global value. */
5328 if (both)
Bram Moolenaar89d40322006-08-29 15:30:07 +00005329 set_string_option_global(idx, varp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005330
Bram Moolenaar89d40322006-08-29 15:30:07 +00005331 options[idx].flags |= P_ALLOCED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005332
5333 /* When setting both values of a global option with a local value,
5334 * make the local value empty, so that the global value is used. */
Bram Moolenaar89d40322006-08-29 15:30:07 +00005335 if (((int)options[idx].indir & PV_BOTH) && both)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005336 {
5337 free_string_option(*varp);
5338 *varp = empty_option;
5339 }
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00005340# ifdef FEAT_EVAL
5341 if (set_sid != SID_NONE)
Bram Moolenaar89d40322006-08-29 15:30:07 +00005342 set_option_scriptID_idx(idx, opt_flags,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00005343 set_sid == 0 ? current_SID : set_sid);
5344# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005345 }
5346}
5347
5348/*
5349 * Set global value for string option when it's a local option.
5350 */
5351 static void
5352set_string_option_global(opt_idx, varp)
5353 int opt_idx; /* option index */
5354 char_u **varp; /* pointer to option variable */
5355{
5356 char_u **p, *s;
5357
5358 /* the global value is always allocated */
5359 if (options[opt_idx].var == VAR_WIN)
5360 p = (char_u **)GLOBAL_WO(varp);
5361 else
5362 p = (char_u **)options[opt_idx].var;
5363 if (options[opt_idx].indir != PV_NONE
5364 && p != varp
5365 && (s = vim_strsave(*varp)) != NULL)
5366 {
5367 free_string_option(*p);
5368 *p = s;
5369 }
5370}
5371
5372/*
5373 * Set a string option to a new value, and handle the effects.
5374 */
5375 static void
5376set_string_option(opt_idx, value, opt_flags)
5377 int opt_idx;
5378 char_u *value;
5379 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
5380{
5381 char_u *s;
5382 char_u **varp;
5383 char_u *oldval;
5384
5385 if (options[opt_idx].var == NULL) /* don't set hidden option */
5386 return;
5387
5388 s = vim_strsave(value);
5389 if (s != NULL)
5390 {
5391 varp = (char_u **)get_varp_scope(&(options[opt_idx]),
5392 (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
Bram Moolenaara23ccb82006-02-27 00:08:02 +00005393 ? (((int)options[opt_idx].indir & PV_BOTH)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005394 ? OPT_GLOBAL : OPT_LOCAL)
5395 : opt_flags);
5396 oldval = *varp;
5397 *varp = s;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00005398 if (did_set_string_option(opt_idx, varp, TRUE, oldval, NULL,
5399 opt_flags) == NULL)
5400 did_set_option(opt_idx, opt_flags, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005401 }
5402}
5403
5404/*
5405 * Handle string options that need some action to perform when changed.
5406 * Returns NULL for success, or an error message for an error.
5407 */
5408 static char_u *
5409did_set_string_option(opt_idx, varp, new_value_alloced, oldval, errbuf,
5410 opt_flags)
5411 int opt_idx; /* index in options[] table */
5412 char_u **varp; /* pointer to the option variable */
5413 int new_value_alloced; /* new value was allocated */
5414 char_u *oldval; /* previous value of the option */
5415 char_u *errbuf; /* buffer for errors, or NULL */
5416 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
5417{
5418 char_u *errmsg = NULL;
5419 char_u *s, *p;
5420 int did_chartab = FALSE;
5421 char_u **gvarp;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005422 long_u free_oldval = (options[opt_idx].flags & P_ALLOCED);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005423
5424 /* Get the global option to compare with, otherwise we would have to check
5425 * two values for all local options. */
5426 gvarp = (char_u **)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL);
5427
5428 /* Disallow changing some options from secure mode */
5429 if ((secure
5430#ifdef HAVE_SANDBOX
5431 || sandbox != 0
5432#endif
5433 ) && (options[opt_idx].flags & P_SECURE))
5434 {
5435 errmsg = e_secure;
5436 }
5437
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00005438 /* Check for a "normal" file name in some options. Disallow a path
5439 * separator (slash and/or backslash), wildcards and characters that are
5440 * often illegal in a file name. */
5441 else if ((options[opt_idx].flags & P_NFNAME)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005442 && vim_strpbrk(*varp, (char_u *)"/\\*?[|<>") != NULL)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00005443 {
5444 errmsg = e_invarg;
5445 }
5446
Bram Moolenaar071d4272004-06-13 20:20:40 +00005447 /* 'term' */
5448 else if (varp == &T_NAME)
5449 {
5450 if (T_NAME[0] == NUL)
5451 errmsg = (char_u *)N_("E529: Cannot set 'term' to empty string");
5452#ifdef FEAT_GUI
5453 if (gui.in_use)
5454 errmsg = (char_u *)N_("E530: Cannot change term in GUI");
5455 else if (term_is_gui(T_NAME))
5456 errmsg = (char_u *)N_("E531: Use \":gui\" to start the GUI");
5457#endif
5458 else if (set_termname(T_NAME) == FAIL)
5459 errmsg = (char_u *)N_("E522: Not found in termcap");
5460 else
5461 /* Screen colors may have changed. */
5462 redraw_later_clear();
5463 }
5464
5465 /* 'backupcopy' */
5466 else if (varp == &p_bkc)
5467 {
5468 if (opt_strings_flags(p_bkc, p_bkc_values, &bkc_flags, TRUE) != OK)
5469 errmsg = e_invarg;
5470 if (((bkc_flags & BKC_AUTO) != 0)
5471 + ((bkc_flags & BKC_YES) != 0)
5472 + ((bkc_flags & BKC_NO) != 0) != 1)
5473 {
5474 /* Must have exactly one of "auto", "yes" and "no". */
5475 (void)opt_strings_flags(oldval, p_bkc_values, &bkc_flags, TRUE);
5476 errmsg = e_invarg;
5477 }
5478 }
5479
5480 /* 'backupext' and 'patchmode' */
5481 else if (varp == &p_bex || varp == &p_pm)
5482 {
5483 if (STRCMP(*p_bex == '.' ? p_bex + 1 : p_bex,
5484 *p_pm == '.' ? p_pm + 1 : p_pm) == 0)
5485 errmsg = (char_u *)N_("E589: 'backupext' and 'patchmode' are equal");
5486 }
5487
5488 /*
5489 * 'isident', 'iskeyword', 'isprint or 'isfname' option: refill chartab[]
5490 * If the new option is invalid, use old value. 'lisp' option: refill
5491 * chartab[] for '-' char
5492 */
5493 else if ( varp == &p_isi
5494 || varp == &(curbuf->b_p_isk)
5495 || varp == &p_isp
5496 || varp == &p_isf)
5497 {
5498 if (init_chartab() == FAIL)
5499 {
5500 did_chartab = TRUE; /* need to restore it below */
5501 errmsg = e_invarg; /* error in value */
5502 }
5503 }
5504
5505 /* 'helpfile' */
5506 else if (varp == &p_hf)
5507 {
5508 /* May compute new values for $VIM and $VIMRUNTIME */
5509 if (didset_vim)
5510 {
5511 vim_setenv((char_u *)"VIM", (char_u *)"");
5512 didset_vim = FALSE;
5513 }
5514 if (didset_vimruntime)
5515 {
5516 vim_setenv((char_u *)"VIMRUNTIME", (char_u *)"");
5517 didset_vimruntime = FALSE;
5518 }
5519 }
5520
5521#ifdef FEAT_MULTI_LANG
5522 /* 'helplang' */
5523 else if (varp == &p_hlg)
5524 {
5525 /* Check for "", "ab", "ab,cd", etc. */
5526 for (s = p_hlg; *s != NUL; s += 3)
5527 {
5528 if (s[1] == NUL || ((s[2] != ',' || s[3] == NUL) && s[2] != NUL))
5529 {
5530 errmsg = e_invarg;
5531 break;
5532 }
5533 if (s[2] == NUL)
5534 break;
5535 }
5536 }
5537#endif
5538
5539 /* 'highlight' */
5540 else if (varp == &p_hl)
5541 {
5542 if (highlight_changed() == FAIL)
5543 errmsg = e_invarg; /* invalid flags */
5544 }
5545
5546 /* 'nrformats' */
5547 else if (gvarp == &p_nf)
5548 {
5549 if (check_opt_strings(*varp, p_nf_values, TRUE) != OK)
5550 errmsg = e_invarg;
5551 }
5552
5553#ifdef FEAT_SESSION
5554 /* 'sessionoptions' */
5555 else if (varp == &p_ssop)
5556 {
5557 if (opt_strings_flags(p_ssop, p_ssop_values, &ssop_flags, TRUE) != OK)
5558 errmsg = e_invarg;
5559 if ((ssop_flags & SSOP_CURDIR) && (ssop_flags & SSOP_SESDIR))
5560 {
5561 /* Don't allow both "sesdir" and "curdir". */
5562 (void)opt_strings_flags(oldval, p_ssop_values, &ssop_flags, TRUE);
5563 errmsg = e_invarg;
5564 }
5565 }
5566 /* 'viewoptions' */
5567 else if (varp == &p_vop)
5568 {
5569 if (opt_strings_flags(p_vop, p_ssop_values, &vop_flags, TRUE) != OK)
5570 errmsg = e_invarg;
5571 }
5572#endif
5573
5574 /* 'scrollopt' */
5575#ifdef FEAT_SCROLLBIND
5576 else if (varp == &p_sbo)
5577 {
5578 if (check_opt_strings(p_sbo, p_scbopt_values, TRUE) != OK)
5579 errmsg = e_invarg;
5580 }
5581#endif
5582
5583 /* 'ambiwidth' */
5584#ifdef FEAT_MBYTE
5585 else if (varp == &p_ambw)
5586 {
5587 if (check_opt_strings(p_ambw, p_ambw_values, FALSE) != OK)
5588 errmsg = e_invarg;
5589 }
5590#endif
5591
5592 /* 'background' */
5593 else if (varp == &p_bg)
5594 {
5595 if (check_opt_strings(p_bg, p_bg_values, FALSE) == OK)
5596 {
5597#ifdef FEAT_EVAL
5598 int dark = (*p_bg == 'd');
5599#endif
5600
5601 init_highlight(FALSE, FALSE);
5602
5603#ifdef FEAT_EVAL
5604 if (dark != (*p_bg == 'd')
5605 && get_var_value((char_u *)"g:colors_name") != NULL)
5606 {
5607 /* The color scheme must have set 'background' back to another
5608 * value, that's not what we want here. Disable the color
5609 * scheme and set the colors again. */
Bram Moolenaar2ce06f62005-01-31 19:19:04 +00005610 do_unlet((char_u *)"g:colors_name", TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005611 free_string_option(p_bg);
5612 p_bg = vim_strsave((char_u *)(dark ? "dark" : "light"));
5613 check_string_option(&p_bg);
5614 init_highlight(FALSE, FALSE);
5615 }
5616#endif
5617 }
5618 else
5619 errmsg = e_invarg;
5620 }
5621
5622 /* 'wildmode' */
5623 else if (varp == &p_wim)
5624 {
5625 if (check_opt_wim() == FAIL)
5626 errmsg = e_invarg;
5627 }
5628
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00005629#ifdef FEAT_CMDL_COMPL
5630 /* 'wildoptions' */
5631 else if (varp == &p_wop)
5632 {
5633 if (check_opt_strings(p_wop, p_wop_values, TRUE) != OK)
5634 errmsg = e_invarg;
5635 }
5636#endif
5637
Bram Moolenaar071d4272004-06-13 20:20:40 +00005638#ifdef FEAT_WAK
5639 /* 'winaltkeys' */
5640 else if (varp == &p_wak)
5641 {
5642 if (*p_wak == NUL
5643 || check_opt_strings(p_wak, p_wak_values, FALSE) != OK)
5644 errmsg = e_invarg;
5645# ifdef FEAT_MENU
5646# ifdef FEAT_GUI_MOTIF
5647 else if (gui.in_use)
5648 gui_motif_set_mnemonics(p_wak[0] == 'y' || p_wak[0] == 'm');
5649# else
5650# ifdef FEAT_GUI_GTK
5651 else if (gui.in_use)
5652 gui_gtk_set_mnemonics(p_wak[0] == 'y' || p_wak[0] == 'm');
5653# endif
5654# endif
5655# endif
5656 }
5657#endif
5658
5659#ifdef FEAT_AUTOCMD
5660 /* 'eventignore' */
5661 else if (varp == &p_ei)
5662 {
5663 if (check_ei() == FAIL)
5664 errmsg = e_invarg;
5665 }
5666#endif
5667
5668#ifdef FEAT_MBYTE
5669 /* 'encoding' and 'fileencoding' */
5670 else if (varp == &p_enc || gvarp == &p_fenc || varp == &p_tenc)
5671 {
5672 if (gvarp == &p_fenc)
5673 {
Bram Moolenaarf2f70252008-02-13 17:36:06 +00005674 if (!curbuf->b_p_ma && opt_flags != OPT_GLOBAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005675 errmsg = e_modifiable;
5676 else if (vim_strchr(*varp, ',') != NULL)
5677 /* No comma allowed in 'fileencoding'; catches confusing it
5678 * with 'fileencodings'. */
5679 errmsg = e_invarg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005680 else
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005681 {
5682# ifdef FEAT_TITLE
Bram Moolenaar071d4272004-06-13 20:20:40 +00005683 /* May show a "+" in the title now. */
5684 need_maketitle = TRUE;
5685# endif
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005686 /* Add 'fileencoding' to the swap file. */
5687 ml_setflags(curbuf);
5688 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005689 }
5690 if (errmsg == NULL)
5691 {
5692 /* canonize the value, so that STRCMP() can be used on it */
5693 p = enc_canonize(*varp);
5694 if (p != NULL)
5695 {
5696 vim_free(*varp);
5697 *varp = p;
5698 }
5699 if (varp == &p_enc)
5700 {
5701 errmsg = mb_init();
5702# ifdef FEAT_TITLE
5703 need_maketitle = TRUE;
5704# endif
5705 }
5706 }
5707
5708# if defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)
5709 if (errmsg == NULL && varp == &p_tenc && gui.in_use)
5710 {
5711 /* GTK+ 2 uses only a single encoding, and that is UTF-8. */
5712 if (STRCMP(p_tenc, "utf-8") != 0)
5713 errmsg = (char_u *)N_("E617: Cannot be changed in the GTK+ 2 GUI");
5714 }
5715# endif
5716
5717 if (errmsg == NULL)
5718 {
5719# ifdef FEAT_KEYMAP
5720 /* When 'keymap' is used and 'encoding' changes, reload the keymap
5721 * (with another encoding). */
5722 if (varp == &p_enc && *curbuf->b_p_keymap != NUL)
5723 (void)keymap_init();
5724# endif
5725
5726 /* When 'termencoding' is not empty and 'encoding' changes or when
5727 * 'termencoding' changes, need to setup for keyboard input and
5728 * display output conversion. */
5729 if (((varp == &p_enc && *p_tenc != NUL) || varp == &p_tenc))
5730 {
5731 convert_setup(&input_conv, p_tenc, p_enc);
5732 convert_setup(&output_conv, p_enc, p_tenc);
5733 }
Bram Moolenaar05159a02005-02-26 23:04:13 +00005734
5735# if defined(WIN3264) && defined(FEAT_MBYTE)
5736 /* $HOME may have characters in active code page. */
5737 if (varp == &p_enc)
5738 init_homedir();
5739# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005740 }
5741 }
5742#endif
5743
5744#if defined(FEAT_POSTSCRIPT)
5745 else if (varp == &p_penc)
5746 {
5747 /* Canonize printencoding if VIM standard one */
5748 p = enc_canonize(p_penc);
5749 if (p != NULL)
5750 {
5751 vim_free(p_penc);
5752 p_penc = p;
5753 }
5754 else
5755 {
5756 /* Ensure lower case and '-' for '_' */
5757 for (s = p_penc; *s != NUL; s++)
5758 {
5759 if (*s == '_')
5760 *s = '-';
5761 else
5762 *s = TOLOWER_ASC(*s);
5763 }
5764 }
5765 }
5766#endif
5767
Bram Moolenaar9372a112005-12-06 19:59:18 +00005768#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005769 else if (varp == &p_imak)
5770 {
5771 if (gui.in_use && !im_xim_isvalid_imactivate())
5772 errmsg = e_invarg;
5773 }
5774#endif
5775
5776#ifdef FEAT_KEYMAP
5777 else if (varp == &curbuf->b_p_keymap)
5778 {
5779 /* load or unload key mapping tables */
5780 errmsg = keymap_init();
5781
5782 /* When successfully installed a new keymap switch on using it. */
5783 if (*curbuf->b_p_keymap != NUL && errmsg == NULL)
5784 {
5785 curbuf->b_p_iminsert = B_IMODE_LMAP;
5786 if (curbuf->b_p_imsearch != B_IMODE_USE_INSERT)
5787 curbuf->b_p_imsearch = B_IMODE_LMAP;
5788 set_iminsert_global();
5789 set_imsearch_global();
5790# ifdef FEAT_WINDOWS
5791 status_redraw_curbuf();
5792# endif
5793 }
5794 }
5795#endif
5796
5797 /* 'fileformat' */
5798 else if (gvarp == &p_ff)
5799 {
5800 if (!curbuf->b_p_ma && !(opt_flags & OPT_GLOBAL))
5801 errmsg = e_modifiable;
5802 else if (check_opt_strings(*varp, p_ff_values, FALSE) != OK)
5803 errmsg = e_invarg;
5804 else
5805 {
5806 /* may also change 'textmode' */
5807 if (get_fileformat(curbuf) == EOL_DOS)
5808 curbuf->b_p_tx = TRUE;
5809 else
5810 curbuf->b_p_tx = FALSE;
5811#ifdef FEAT_TITLE
5812 need_maketitle = TRUE;
5813#endif
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005814 /* update flag in swap file */
5815 ml_setflags(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005816 }
5817 }
5818
5819 /* 'fileformats' */
5820 else if (varp == &p_ffs)
5821 {
5822 if (check_opt_strings(p_ffs, p_ff_values, TRUE) != OK)
5823 errmsg = e_invarg;
5824 else
5825 {
5826 /* also change 'textauto' */
5827 if (*p_ffs == NUL)
5828 p_ta = FALSE;
5829 else
5830 p_ta = TRUE;
5831 }
5832 }
5833
5834#if defined(FEAT_CRYPT) && defined(FEAT_CMDHIST)
5835 /* 'cryptkey' */
5836 else if (gvarp == &p_key)
5837 {
5838 /* Make sure the ":set" command doesn't show the new value in the
5839 * history. */
5840 remove_key_from_history();
5841 }
5842#endif
5843
5844 /* 'matchpairs' */
5845 else if (gvarp == &p_mps)
5846 {
5847 /* Check for "x:y,x:y" */
5848 for (p = *varp; *p != NUL; p += 4)
5849 {
5850 if (p[1] != ':' || p[2] == NUL || (p[3] != NUL && p[3] != ','))
5851 {
5852 errmsg = e_invarg;
5853 break;
5854 }
5855 if (p[3] == NUL)
5856 break;
5857 }
5858 }
5859
5860#ifdef FEAT_COMMENTS
5861 /* 'comments' */
5862 else if (gvarp == &p_com)
5863 {
5864 for (s = *varp; *s; )
5865 {
5866 while (*s && *s != ':')
5867 {
5868 if (vim_strchr((char_u *)COM_ALL, *s) == NULL
5869 && !VIM_ISDIGIT(*s) && *s != '-')
5870 {
5871 errmsg = illegal_char(errbuf, *s);
5872 break;
5873 }
5874 ++s;
5875 }
5876 if (*s++ == NUL)
5877 errmsg = (char_u *)N_("E524: Missing colon");
5878 else if (*s == ',' || *s == NUL)
5879 errmsg = (char_u *)N_("E525: Zero length string");
5880 if (errmsg != NULL)
5881 break;
5882 while (*s && *s != ',')
5883 {
5884 if (*s == '\\' && s[1] != NUL)
5885 ++s;
5886 ++s;
5887 }
5888 s = skip_to_option_part(s);
5889 }
5890 }
5891#endif
5892
5893 /* 'listchars' */
5894 else if (varp == &p_lcs)
5895 {
5896 errmsg = set_chars_option(varp);
5897 }
5898
5899#if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
5900 /* 'fillchars' */
5901 else if (varp == &p_fcs)
5902 {
5903 errmsg = set_chars_option(varp);
5904 }
5905#endif
5906
5907#ifdef FEAT_CMDWIN
5908 /* 'cedit' */
5909 else if (varp == &p_cedit)
5910 {
5911 errmsg = check_cedit();
5912 }
5913#endif
5914
Bram Moolenaar54ee7752005-05-31 22:22:17 +00005915 /* 'verbosefile' */
5916 else if (varp == &p_vfile)
5917 {
5918 verbose_stop();
5919 if (*p_vfile != NUL && verbose_open() == FAIL)
5920 errmsg = e_invarg;
5921 }
5922
Bram Moolenaar071d4272004-06-13 20:20:40 +00005923#ifdef FEAT_VIMINFO
5924 /* 'viminfo' */
5925 else if (varp == &p_viminfo)
5926 {
5927 for (s = p_viminfo; *s;)
5928 {
5929 /* Check it's a valid character */
5930 if (vim_strchr((char_u *)"!\"%'/:<@cfhnrs", *s) == NULL)
5931 {
5932 errmsg = illegal_char(errbuf, *s);
5933 break;
5934 }
5935 if (*s == 'n') /* name is always last one */
5936 {
5937 break;
5938 }
5939 else if (*s == 'r') /* skip until next ',' */
5940 {
5941 while (*++s && *s != ',')
5942 ;
5943 }
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005944 else if (*s == '%')
5945 {
5946 /* optional number */
5947 while (vim_isdigit(*++s))
5948 ;
5949 }
5950 else if (*s == '!' || *s == 'h' || *s == 'c')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005951 ++s; /* no extra chars */
5952 else /* must have a number */
5953 {
5954 while (vim_isdigit(*++s))
5955 ;
5956
5957 if (!VIM_ISDIGIT(*(s - 1)))
5958 {
5959 if (errbuf != NULL)
5960 {
Bram Moolenaar8f999f12005-01-25 22:12:55 +00005961 sprintf((char *)errbuf,
5962 _("E526: Missing number after <%s>"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00005963 transchar_byte(*(s - 1)));
5964 errmsg = errbuf;
5965 }
5966 else
5967 errmsg = (char_u *)"";
5968 break;
5969 }
5970 }
5971 if (*s == ',')
5972 ++s;
5973 else if (*s)
5974 {
5975 if (errbuf != NULL)
5976 errmsg = (char_u *)N_("E527: Missing comma");
5977 else
5978 errmsg = (char_u *)"";
5979 break;
5980 }
5981 }
5982 if (*p_viminfo && errmsg == NULL && get_viminfo_parameter('\'') < 0)
5983 errmsg = (char_u *)N_("E528: Must specify a ' value");
5984 }
5985#endif /* FEAT_VIMINFO */
5986
5987 /* terminal options */
5988 else if (istermoption(&options[opt_idx]) && full_screen)
5989 {
5990 /* ":set t_Co=0" and ":set t_Co=1" do ":set t_Co=" */
5991 if (varp == &T_CCO)
5992 {
5993 t_colors = atoi((char *)T_CCO);
5994 if (t_colors <= 1)
5995 {
5996 if (new_value_alloced)
5997 vim_free(T_CCO);
5998 T_CCO = empty_option;
5999 }
6000 /* We now have a different color setup, initialize it again. */
6001 init_highlight(TRUE, FALSE);
6002 }
6003 ttest(FALSE);
6004 if (varp == &T_ME)
6005 {
6006 out_str(T_ME);
6007 redraw_later(CLEAR);
6008#if defined(MSDOS) || (defined(WIN3264) && !defined(FEAT_GUI_W32))
6009 /* Since t_me has been set, this probably means that the user
6010 * wants to use this as default colors. Need to reset default
6011 * background/foreground colors. */
6012 mch_set_normal_colors();
6013#endif
6014 }
6015 }
6016
6017#ifdef FEAT_LINEBREAK
6018 /* 'showbreak' */
6019 else if (varp == &p_sbr)
6020 {
6021 for (s = p_sbr; *s; )
6022 {
6023 if (ptr2cells(s) != 1)
6024 errmsg = (char_u *)N_("E595: contains unprintable or wide character");
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00006025 mb_ptr_adv(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006026 }
6027 }
6028#endif
6029
6030#ifdef FEAT_GUI
6031 /* 'guifont' */
6032 else if (varp == &p_guifont)
6033 {
6034 if (gui.in_use)
6035 {
6036 p = p_guifont;
Bram Moolenaar9372a112005-12-06 19:59:18 +00006037# if defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006038 /*
6039 * Put up a font dialog and let the user select a new value.
6040 * If this is cancelled go back to the old value but don't
6041 * give an error message.
6042 */
6043 if (STRCMP(p, "*") == 0)
6044 {
6045 p = gui_mch_font_dialog(oldval);
6046
6047 if (new_value_alloced)
6048 free_string_option(p_guifont);
6049
6050 p_guifont = (p != NULL) ? p : vim_strsave(oldval);
6051 new_value_alloced = TRUE;
6052 }
6053# endif
6054 if (p != NULL && gui_init_font(p_guifont, FALSE) != OK)
6055 {
6056# if defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_PHOTON)
6057 if (STRCMP(p_guifont, "*") == 0)
6058 {
6059 /* Dialog was cancelled: Keep the old value without giving
6060 * an error message. */
6061 if (new_value_alloced)
6062 free_string_option(p_guifont);
6063 p_guifont = vim_strsave(oldval);
6064 new_value_alloced = TRUE;
6065 }
6066 else
6067# endif
6068 errmsg = (char_u *)N_("E596: Invalid font(s)");
6069 }
6070 }
6071 }
6072# ifdef FEAT_XFONTSET
6073 else if (varp == &p_guifontset)
6074 {
6075 if (STRCMP(p_guifontset, "*") == 0)
6076 errmsg = (char_u *)N_("E597: can't select fontset");
6077 else if (gui.in_use && gui_init_font(p_guifontset, TRUE) != OK)
6078 errmsg = (char_u *)N_("E598: Invalid fontset");
6079 }
6080# endif
6081# ifdef FEAT_MBYTE
6082 else if (varp == &p_guifontwide)
6083 {
6084 if (STRCMP(p_guifontwide, "*") == 0)
6085 errmsg = (char_u *)N_("E533: can't select wide font");
6086 else if (gui_get_wide_font() == FAIL)
6087 errmsg = (char_u *)N_("E534: Invalid wide font");
6088 }
6089# endif
6090#endif
6091
6092#ifdef CURSOR_SHAPE
6093 /* 'guicursor' */
6094 else if (varp == &p_guicursor)
6095 errmsg = parse_shape_opt(SHAPE_CURSOR);
6096#endif
6097
6098#ifdef FEAT_MOUSESHAPE
6099 /* 'mouseshape' */
6100 else if (varp == &p_mouseshape)
6101 {
6102 errmsg = parse_shape_opt(SHAPE_MOUSE);
6103 update_mouseshape(-1);
6104 }
6105#endif
6106
6107#ifdef FEAT_PRINTER
6108 else if (varp == &p_popt)
Bram Moolenaar58d98232005-07-23 22:25:46 +00006109 errmsg = parse_printoptions();
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00006110# if defined(FEAT_MBYTE) && defined(FEAT_POSTSCRIPT)
Bram Moolenaar8299df92004-07-10 09:47:34 +00006111 else if (varp == &p_pmfn)
Bram Moolenaar58d98232005-07-23 22:25:46 +00006112 errmsg = parse_printmbfont();
Bram Moolenaar8299df92004-07-10 09:47:34 +00006113# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006114#endif
6115
6116#ifdef FEAT_LANGMAP
6117 /* 'langmap' */
6118 else if (varp == &p_langmap)
6119 langmap_set();
6120#endif
6121
6122#ifdef FEAT_LINEBREAK
6123 /* 'breakat' */
6124 else if (varp == &p_breakat)
6125 fill_breakat_flags();
6126#endif
6127
6128#ifdef FEAT_TITLE
6129 /* 'titlestring' and 'iconstring' */
6130 else if (varp == &p_titlestring || varp == &p_iconstring)
6131 {
6132# ifdef FEAT_STL_OPT
6133 int flagval = (varp == &p_titlestring) ? STL_IN_TITLE : STL_IN_ICON;
6134
6135 /* NULL => statusline syntax */
6136 if (vim_strchr(*varp, '%') && check_stl_option(*varp) == NULL)
6137 stl_syntax |= flagval;
6138 else
6139 stl_syntax &= ~flagval;
6140# endif
6141 did_set_title(varp == &p_iconstring);
6142
6143 }
6144#endif
6145
6146#ifdef FEAT_GUI
6147 /* 'guioptions' */
6148 else if (varp == &p_go)
6149 gui_init_which_components(oldval);
6150#endif
6151
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00006152#if defined(FEAT_GUI_TABLINE)
6153 /* 'guitablabel' */
6154 else if (varp == &p_gtl)
Bram Moolenaar18144c82006-04-12 21:52:12 +00006155 redraw_tabline = TRUE;
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00006156#endif
6157
Bram Moolenaar071d4272004-06-13 20:20:40 +00006158#if defined(FEAT_MOUSE_TTY) && (defined(UNIX) || defined(VMS))
6159 /* 'ttymouse' */
6160 else if (varp == &p_ttym)
6161 {
Bram Moolenaarf1f8bc52005-03-07 23:20:08 +00006162 /* Switch the mouse off before changing the escape sequences used for
6163 * that. */
6164 mch_setmouse(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006165 if (opt_strings_flags(p_ttym, p_ttym_values, &ttym_flags, FALSE) != OK)
6166 errmsg = e_invarg;
6167 else
6168 check_mouse_termcode();
Bram Moolenaar6bb68362005-03-22 23:03:44 +00006169 if (termcap_active)
6170 setmouse(); /* may switch it on again */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006171 }
6172#endif
6173
6174#ifdef FEAT_VISUAL
6175 /* 'selection' */
6176 else if (varp == &p_sel)
6177 {
6178 if (*p_sel == NUL
6179 || check_opt_strings(p_sel, p_sel_values, FALSE) != OK)
6180 errmsg = e_invarg;
6181 }
6182
6183 /* 'selectmode' */
6184 else if (varp == &p_slm)
6185 {
6186 if (check_opt_strings(p_slm, p_slm_values, TRUE) != OK)
6187 errmsg = e_invarg;
6188 }
6189#endif
6190
6191#ifdef FEAT_BROWSE
6192 /* 'browsedir' */
6193 else if (varp == &p_bsdir)
6194 {
6195 if (check_opt_strings(p_bsdir, p_bsdir_values, FALSE) != OK
6196 && !mch_isdir(p_bsdir))
6197 errmsg = e_invarg;
6198 }
6199#endif
6200
6201#ifdef FEAT_VISUAL
6202 /* 'keymodel' */
6203 else if (varp == &p_km)
6204 {
6205 if (check_opt_strings(p_km, p_km_values, TRUE) != OK)
6206 errmsg = e_invarg;
6207 else
6208 {
6209 km_stopsel = (vim_strchr(p_km, 'o') != NULL);
6210 km_startsel = (vim_strchr(p_km, 'a') != NULL);
6211 }
6212 }
6213#endif
6214
6215 /* 'mousemodel' */
6216 else if (varp == &p_mousem)
6217 {
6218 if (check_opt_strings(p_mousem, p_mousem_values, FALSE) != OK)
6219 errmsg = e_invarg;
6220#if defined(FEAT_GUI_MOTIF) && defined(FEAT_MENU) && (XmVersion <= 1002)
6221 else if (*p_mousem != *oldval)
6222 /* Changed from "extend" to "popup" or "popup_setpos" or vv: need
6223 * to create or delete the popup menus. */
6224 gui_motif_update_mousemodel(root_menu);
6225#endif
6226 }
6227
6228 /* 'switchbuf' */
6229 else if (varp == &p_swb)
6230 {
6231 if (check_opt_strings(p_swb, p_swb_values, TRUE) != OK)
6232 errmsg = e_invarg;
6233 }
6234
6235 /* 'debug' */
6236 else if (varp == &p_debug)
6237 {
Bram Moolenaar57657d82006-04-21 22:12:41 +00006238 if (check_opt_strings(p_debug, p_debug_values, TRUE) != OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006239 errmsg = e_invarg;
6240 }
6241
6242 /* 'display' */
6243 else if (varp == &p_dy)
6244 {
6245 if (opt_strings_flags(p_dy, p_dy_values, &dy_flags, TRUE) != OK)
6246 errmsg = e_invarg;
6247 else
6248 (void)init_chartab();
6249
6250 }
6251
6252#ifdef FEAT_VERTSPLIT
6253 /* 'eadirection' */
6254 else if (varp == &p_ead)
6255 {
6256 if (check_opt_strings(p_ead, p_ead_values, FALSE) != OK)
6257 errmsg = e_invarg;
6258 }
6259#endif
6260
6261#ifdef FEAT_CLIPBOARD
6262 /* 'clipboard' */
6263 else if (varp == &p_cb)
6264 errmsg = check_clipboard_option();
6265#endif
6266
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00006267#ifdef FEAT_SPELL
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006268 /* When 'spelllang' or 'spellfile' is set and there is a window for this
6269 * buffer in which 'spell' is set load the wordlists. */
6270 else if (varp == &(curbuf->b_p_spl) || varp == &(curbuf->b_p_spf))
Bram Moolenaar217ad922005-03-20 22:37:15 +00006271 {
Bram Moolenaar0cb032e2005-04-23 20:52:00 +00006272 win_T *wp;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006273 int l;
Bram Moolenaar0cb032e2005-04-23 20:52:00 +00006274
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006275 if (varp == &(curbuf->b_p_spf))
6276 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006277 l = (int)STRLEN(curbuf->b_p_spf);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006278 if (l > 0 && (l < 4 || STRCMP(curbuf->b_p_spf + l - 4,
6279 ".add") != 0))
6280 errmsg = e_invarg;
6281 }
6282
6283 if (errmsg == NULL)
6284 {
6285 FOR_ALL_WINDOWS(wp)
6286 if (wp->w_buffer == curbuf && wp->w_p_spell)
6287 {
6288 errmsg = did_set_spelllang(curbuf);
Bram Moolenaar0cb032e2005-04-23 20:52:00 +00006289# ifdef FEAT_WINDOWS
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006290 break;
Bram Moolenaar0cb032e2005-04-23 20:52:00 +00006291# endif
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006292 }
6293 }
Bram Moolenaar217ad922005-03-20 22:37:15 +00006294 }
Bram Moolenaar0d9c26d2005-07-02 23:19:16 +00006295 /* When 'spellcapcheck' is set compile the regexp program. */
6296 else if (varp == &(curbuf->b_p_spc))
6297 {
Bram Moolenaar0dc065e2005-07-04 22:49:24 +00006298 errmsg = compile_cap_prog(curbuf);
Bram Moolenaar0d9c26d2005-07-02 23:19:16 +00006299 }
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006300 /* 'spellsuggest' */
6301 else if (varp == &p_sps)
6302 {
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00006303 if (spell_check_sps() != OK)
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006304 errmsg = e_invarg;
6305 }
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00006306 /* 'mkspellmem' */
6307 else if (varp == &p_msm)
6308 {
6309 if (spell_check_msm() != OK)
6310 errmsg = e_invarg;
6311 }
Bram Moolenaar217ad922005-03-20 22:37:15 +00006312#endif
6313
Bram Moolenaar071d4272004-06-13 20:20:40 +00006314#ifdef FEAT_QUICKFIX
6315 /* When 'bufhidden' is set, check for valid value. */
6316 else if (gvarp == &p_bh)
6317 {
6318 if (check_opt_strings(curbuf->b_p_bh, p_bufhidden_values, FALSE) != OK)
6319 errmsg = e_invarg;
6320 }
6321
6322 /* When 'buftype' is set, check for valid value. */
6323 else if (gvarp == &p_bt)
6324 {
6325 if (check_opt_strings(curbuf->b_p_bt, p_buftype_values, FALSE) != OK)
6326 errmsg = e_invarg;
6327 else
6328 {
6329# ifdef FEAT_WINDOWS
6330 if (curwin->w_status_height)
6331 {
6332 curwin->w_redr_status = TRUE;
6333 redraw_later(VALID);
6334 }
6335# endif
6336 curbuf->b_help = (curbuf->b_p_bt[0] == 'h');
6337 }
6338 }
6339#endif
6340
6341#ifdef FEAT_STL_OPT
6342 /* 'statusline' or 'rulerformat' */
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00006343 else if (gvarp == &p_stl || varp == &p_ruf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006344 {
6345 int wid;
6346
6347 if (varp == &p_ruf) /* reset ru_wid first */
6348 ru_wid = 0;
6349 s = *varp;
6350 if (varp == &p_ruf && *s == '%')
6351 {
6352 /* set ru_wid if 'ruf' starts with "%99(" */
6353 if (*++s == '-') /* ignore a '-' */
6354 s++;
6355 wid = getdigits(&s);
6356 if (wid && *s == '(' && (errmsg = check_stl_option(p_ruf)) == NULL)
6357 ru_wid = wid;
6358 else
6359 errmsg = check_stl_option(p_ruf);
6360 }
Bram Moolenaar3709e7c2006-08-08 14:29:16 +00006361 /* check 'statusline' only if it doesn't start with "%!" */
Bram Moolenaar177d8c62007-09-06 11:33:37 +00006362 else if (varp == &p_ruf || s[0] != '%' || s[1] != '!')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006363 errmsg = check_stl_option(s);
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00006364 if (varp == &p_ruf && errmsg == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006365 comp_col();
6366 }
6367#endif
6368
6369#ifdef FEAT_INS_EXPAND
6370 /* check if it is a valid value for 'complete' -- Acevedo */
6371 else if (gvarp == &p_cpt)
6372 {
6373 for (s = *varp; *s;)
6374 {
6375 while(*s == ',' || *s == ' ')
6376 s++;
6377 if (!*s)
6378 break;
6379 if (vim_strchr((char_u *)".wbuksid]tU", *s) == NULL)
6380 {
6381 errmsg = illegal_char(errbuf, *s);
6382 break;
6383 }
6384 if (*++s != NUL && *s != ',' && *s != ' ')
6385 {
6386 if (s[-1] == 'k' || s[-1] == 's')
6387 {
6388 /* skip optional filename after 'k' and 's' */
6389 while (*s && *s != ',' && *s != ' ')
6390 {
6391 if (*s == '\\')
6392 ++s;
6393 ++s;
6394 }
6395 }
6396 else
6397 {
6398 if (errbuf != NULL)
6399 {
6400 sprintf((char *)errbuf,
6401 _("E535: Illegal character after <%c>"),
6402 *--s);
6403 errmsg = errbuf;
6404 }
6405 else
6406 errmsg = (char_u *)"";
6407 break;
6408 }
6409 }
6410 }
6411 }
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00006412
6413 /* 'completeopt' */
6414 else if (varp == &p_cot)
6415 {
6416 if (check_opt_strings(p_cot, p_cot_values, TRUE) != OK)
6417 errmsg = e_invarg;
6418 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006419#endif /* FEAT_INS_EXPAND */
6420
6421
6422#if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_W32)
6423 else if (varp == &p_toolbar)
6424 {
6425 if (opt_strings_flags(p_toolbar, p_toolbar_values,
6426 &toolbar_flags, TRUE) != OK)
6427 errmsg = e_invarg;
6428 else
6429 {
6430 out_flush();
6431 gui_mch_show_toolbar((toolbar_flags &
6432 (TOOLBAR_TEXT | TOOLBAR_ICONS)) != 0);
6433 }
6434 }
6435#endif
6436
6437#if defined(FEAT_TOOLBAR) && defined(FEAT_GUI_GTK) && defined(HAVE_GTK2)
6438 /* 'toolbariconsize': GTK+ 2 only */
6439 else if (varp == &p_tbis)
6440 {
6441 if (opt_strings_flags(p_tbis, p_tbis_values, &tbis_flags, FALSE) != OK)
6442 errmsg = e_invarg;
6443 else
6444 {
6445 out_flush();
6446 gui_mch_show_toolbar((toolbar_flags &
6447 (TOOLBAR_TEXT | TOOLBAR_ICONS)) != 0);
6448 }
6449 }
6450#endif
6451
6452 /* 'pastetoggle': translate key codes like in a mapping */
6453 else if (varp == &p_pt)
6454 {
6455 if (*p_pt)
6456 {
Bram Moolenaar9c102382006-05-03 21:26:49 +00006457 (void)replace_termcodes(p_pt, &p, TRUE, TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006458 if (p != NULL)
6459 {
6460 if (new_value_alloced)
6461 free_string_option(p_pt);
6462 p_pt = p;
6463 new_value_alloced = TRUE;
6464 }
6465 }
6466 }
6467
6468 /* 'backspace' */
6469 else if (varp == &p_bs)
6470 {
6471 if (VIM_ISDIGIT(*p_bs))
6472 {
6473 if (*p_bs >'2' || p_bs[1] != NUL)
6474 errmsg = e_invarg;
6475 }
6476 else if (check_opt_strings(p_bs, p_bs_values, TRUE) != OK)
6477 errmsg = e_invarg;
6478 }
6479
Bram Moolenaarfa1d1402006-03-25 21:59:56 +00006480#ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00006481 /* 'casemap' */
6482 else if (varp == &p_cmp)
6483 {
6484 if (opt_strings_flags(p_cmp, p_cmp_values, &cmp_flags, TRUE) != OK)
6485 errmsg = e_invarg;
6486 }
Bram Moolenaarfa1d1402006-03-25 21:59:56 +00006487#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006488
6489#ifdef FEAT_DIFF
6490 /* 'diffopt' */
6491 else if (varp == &p_dip)
6492 {
6493 if (diffopt_changed() == FAIL)
6494 errmsg = e_invarg;
6495 }
6496#endif
6497
6498#ifdef FEAT_FOLDING
6499 /* 'foldmethod' */
6500 else if (gvarp == &curwin->w_allbuf_opt.wo_fdm)
6501 {
6502 if (check_opt_strings(*varp, p_fdm_values, FALSE) != OK
6503 || *curwin->w_p_fdm == NUL)
6504 errmsg = e_invarg;
6505 else
6506 foldUpdateAll(curwin);
6507 }
6508# ifdef FEAT_EVAL
6509 /* 'foldexpr' */
6510 else if (varp == &curwin->w_p_fde)
6511 {
6512 if (foldmethodIsExpr(curwin))
6513 foldUpdateAll(curwin);
6514 }
6515# endif
6516 /* 'foldmarker' */
6517 else if (gvarp == &curwin->w_allbuf_opt.wo_fmr)
6518 {
6519 p = vim_strchr(*varp, ',');
6520 if (p == NULL)
6521 errmsg = (char_u *)N_("E536: comma required");
6522 else if (p == *varp || p[1] == NUL)
6523 errmsg = e_invarg;
6524 else if (foldmethodIsMarker(curwin))
6525 foldUpdateAll(curwin);
6526 }
6527 /* 'commentstring' */
6528 else if (gvarp == &p_cms)
6529 {
6530 if (**varp != NUL && strstr((char *)*varp, "%s") == NULL)
6531 errmsg = (char_u *)N_("E537: 'commentstring' must be empty or contain %s");
6532 }
6533 /* 'foldopen' */
6534 else if (varp == &p_fdo)
6535 {
6536 if (opt_strings_flags(p_fdo, p_fdo_values, &fdo_flags, TRUE) != OK)
6537 errmsg = e_invarg;
6538 }
6539 /* 'foldclose' */
6540 else if (varp == &p_fcl)
6541 {
6542 if (check_opt_strings(p_fcl, p_fcl_values, TRUE) != OK)
6543 errmsg = e_invarg;
6544 }
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00006545 /* 'foldignore' */
6546 else if (gvarp == &curwin->w_allbuf_opt.wo_fdi)
6547 {
6548 if (foldmethodIsIndent(curwin))
6549 foldUpdateAll(curwin);
6550 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006551#endif
6552
6553#ifdef FEAT_VIRTUALEDIT
6554 /* 'virtualedit' */
6555 else if (varp == &p_ve)
6556 {
6557 if (opt_strings_flags(p_ve, p_ve_values, &ve_flags, TRUE) != OK)
6558 errmsg = e_invarg;
6559 else if (STRCMP(p_ve, oldval) != 0)
6560 {
6561 /* Recompute cursor position in case the new 've' setting
6562 * changes something. */
6563 validate_virtcol();
6564 coladvance(curwin->w_virtcol);
6565 }
6566 }
6567#endif
6568
6569#if defined(FEAT_CSCOPE) && defined(FEAT_QUICKFIX)
6570 else if (varp == &p_csqf)
6571 {
6572 if (p_csqf != NULL)
6573 {
6574 p = p_csqf;
6575 while (*p != NUL)
6576 {
6577 if (vim_strchr((char_u *)CSQF_CMDS, *p) == NULL
6578 || p[1] == NUL
6579 || vim_strchr((char_u *)CSQF_FLAGS, p[1]) == NULL
6580 || (p[2] != NUL && p[2] != ','))
6581 {
6582 errmsg = e_invarg;
6583 break;
6584 }
6585 else if (p[2] == NUL)
6586 break;
6587 else
6588 p += 3;
6589 }
6590 }
6591 }
6592#endif
6593
6594 /* Options that are a list of flags. */
6595 else
6596 {
6597 p = NULL;
6598 if (varp == &p_ww)
6599 p = (char_u *)WW_ALL;
6600 if (varp == &p_shm)
6601 p = (char_u *)SHM_ALL;
6602 else if (varp == &(p_cpo))
6603 p = (char_u *)CPO_ALL;
6604 else if (varp == &(curbuf->b_p_fo))
6605 p = (char_u *)FO_ALL;
6606 else if (varp == &p_mouse)
6607 {
6608#ifdef FEAT_MOUSE
6609 p = (char_u *)MOUSE_ALL;
6610#else
6611 if (*p_mouse != NUL)
6612 errmsg = (char_u *)N_("E538: No mouse support");
6613#endif
6614 }
6615#if defined(FEAT_GUI)
6616 else if (varp == &p_go)
6617 p = (char_u *)GO_ALL;
6618#endif
6619 if (p != NULL)
6620 {
6621 for (s = *varp; *s; ++s)
6622 if (vim_strchr(p, *s) == NULL)
6623 {
6624 errmsg = illegal_char(errbuf, *s);
6625 break;
6626 }
6627 }
6628 }
6629
6630 /*
6631 * If error detected, restore the previous value.
6632 */
6633 if (errmsg != NULL)
6634 {
6635 if (new_value_alloced)
6636 free_string_option(*varp);
6637 *varp = oldval;
6638 /*
6639 * When resetting some values, need to act on it.
6640 */
6641 if (did_chartab)
6642 (void)init_chartab();
6643 if (varp == &p_hl)
6644 (void)highlight_changed();
6645 }
6646 else
6647 {
6648#ifdef FEAT_EVAL
6649 /* Remember where the option was set. */
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00006650 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006651#endif
6652 /*
6653 * Free string options that are in allocated memory.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00006654 * Use "free_oldval", because recursiveness may change the flags under
6655 * our fingers (esp. init_highlight()).
Bram Moolenaar071d4272004-06-13 20:20:40 +00006656 */
Bram Moolenaarc0197e22004-09-13 20:26:32 +00006657 if (free_oldval)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006658 free_string_option(oldval);
6659 if (new_value_alloced)
6660 options[opt_idx].flags |= P_ALLOCED;
6661 else
6662 options[opt_idx].flags &= ~P_ALLOCED;
6663
6664 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
Bram Moolenaara23ccb82006-02-27 00:08:02 +00006665 && ((int)options[opt_idx].indir & PV_BOTH))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006666 {
6667 /* global option with local value set to use global value; free
6668 * the local value and make it empty */
6669 p = get_varp_scope(&(options[opt_idx]), OPT_LOCAL);
6670 free_string_option(*(char_u **)p);
6671 *(char_u **)p = empty_option;
6672 }
6673
6674 /* May set global value for local option. */
6675 else if (!(opt_flags & OPT_LOCAL) && opt_flags != OPT_GLOBAL)
6676 set_string_option_global(opt_idx, varp);
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00006677
6678#ifdef FEAT_AUTOCMD
6679 /*
6680 * Trigger the autocommand only after setting the flags.
6681 */
6682# ifdef FEAT_SYN_HL
6683 /* When 'syntax' is set, load the syntax of that name */
6684 if (varp == &(curbuf->b_p_syn))
6685 {
6686 apply_autocmds(EVENT_SYNTAX, curbuf->b_p_syn,
6687 curbuf->b_fname, TRUE, curbuf);
6688 }
6689# endif
6690 else if (varp == &(curbuf->b_p_ft))
6691 {
6692 /* 'filetype' is set, trigger the FileType autocommand */
6693 did_filetype = TRUE;
6694 apply_autocmds(EVENT_FILETYPE, curbuf->b_p_ft,
6695 curbuf->b_fname, TRUE, curbuf);
6696 }
6697#endif
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00006698#ifdef FEAT_SPELL
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00006699 if (varp == &(curbuf->b_p_spl))
6700 {
6701 char_u fname[200];
6702
6703 /*
6704 * Source the spell/LANG.vim in 'runtimepath'.
6705 * They could set 'spellcapcheck' depending on the language.
6706 * Use the first name in 'spelllang' up to '_region' or
6707 * '.encoding'.
6708 */
6709 for (p = curbuf->b_p_spl; *p != NUL; ++p)
6710 if (vim_strchr((char_u *)"_.,", *p) != NULL)
6711 break;
6712 vim_snprintf((char *)fname, 200, "spell/%.*s.vim",
6713 (int)(p - curbuf->b_p_spl), curbuf->b_p_spl);
6714 source_runtime(fname, TRUE);
6715 }
6716#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006717 }
6718
6719#ifdef FEAT_MOUSE
6720 if (varp == &p_mouse)
6721 {
6722# ifdef FEAT_MOUSE_TTY
6723 if (*p_mouse == NUL)
6724 mch_setmouse(FALSE); /* switch mouse off */
6725 else
6726# endif
6727 setmouse(); /* in case 'mouse' changed */
6728 }
6729#endif
6730
6731 if (curwin->w_curswant != MAXCOL)
6732 curwin->w_set_curswant = TRUE; /* in case 'showbreak' changed */
6733 check_redraw(options[opt_idx].flags);
6734
6735 return errmsg;
6736}
6737
6738/*
6739 * Handle setting 'listchars' or 'fillchars'.
6740 * Returns error message, NULL if it's OK.
6741 */
6742 static char_u *
6743set_chars_option(varp)
6744 char_u **varp;
6745{
6746 int round, i, len, entries;
6747 char_u *p, *s;
6748 int c1, c2 = 0;
6749 struct charstab
6750 {
6751 int *cp;
6752 char *name;
6753 };
6754#if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6755 static struct charstab filltab[] =
6756 {
6757 {&fill_stl, "stl"},
6758 {&fill_stlnc, "stlnc"},
6759 {&fill_vert, "vert"},
6760 {&fill_fold, "fold"},
6761 {&fill_diff, "diff"},
6762 };
6763#endif
6764 static struct charstab lcstab[] =
6765 {
6766 {&lcs_eol, "eol"},
6767 {&lcs_ext, "extends"},
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00006768 {&lcs_nbsp, "nbsp"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00006769 {&lcs_prec, "precedes"},
6770 {&lcs_tab2, "tab"},
6771 {&lcs_trail, "trail"},
6772 };
6773 struct charstab *tab;
6774
6775#if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6776 if (varp == &p_lcs)
6777#endif
6778 {
6779 tab = lcstab;
6780 entries = sizeof(lcstab) / sizeof(struct charstab);
6781 }
6782#if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6783 else
6784 {
6785 tab = filltab;
6786 entries = sizeof(filltab) / sizeof(struct charstab);
6787 }
6788#endif
6789
6790 /* first round: check for valid value, second round: assign values */
6791 for (round = 0; round <= 1; ++round)
6792 {
6793 if (round)
6794 {
6795 /* After checking that the value is valid: set defaults: space for
6796 * 'fillchars', NUL for 'listchars' */
6797 for (i = 0; i < entries; ++i)
6798 *(tab[i].cp) = (varp == &p_lcs ? NUL : ' ');
6799 if (varp == &p_lcs)
6800 lcs_tab1 = NUL;
6801#if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
6802 else
6803 fill_diff = '-';
6804#endif
6805 }
6806 p = *varp;
6807 while (*p)
6808 {
6809 for (i = 0; i < entries; ++i)
6810 {
6811 len = (int)STRLEN(tab[i].name);
6812 if (STRNCMP(p, tab[i].name, len) == 0
6813 && p[len] == ':'
6814 && p[len + 1] != NUL)
6815 {
6816 s = p + len + 1;
6817#ifdef FEAT_MBYTE
6818 c1 = mb_ptr2char_adv(&s);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006819 if (mb_char2cells(c1) > 1)
6820 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006821#else
6822 c1 = *s++;
6823#endif
6824 if (tab[i].cp == &lcs_tab2)
6825 {
6826 if (*s == NUL)
6827 continue;
6828#ifdef FEAT_MBYTE
6829 c2 = mb_ptr2char_adv(&s);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006830 if (mb_char2cells(c2) > 1)
6831 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006832#else
6833 c2 = *s++;
6834#endif
6835 }
6836 if (*s == ',' || *s == NUL)
6837 {
6838 if (round)
6839 {
6840 if (tab[i].cp == &lcs_tab2)
6841 {
6842 lcs_tab1 = c1;
6843 lcs_tab2 = c2;
6844 }
6845 else
6846 *(tab[i].cp) = c1;
6847
6848 }
6849 p = s;
6850 break;
6851 }
6852 }
6853 }
6854
6855 if (i == entries)
6856 return e_invarg;
6857 if (*p == ',')
6858 ++p;
6859 }
6860 }
6861
6862 return NULL; /* no error */
6863}
6864
6865#ifdef FEAT_STL_OPT
6866/*
6867 * Check validity of options with the 'statusline' format.
6868 * Return error message or NULL.
6869 */
6870 char_u *
6871check_stl_option(s)
6872 char_u *s;
6873{
6874 int itemcnt = 0;
6875 int groupdepth = 0;
6876 static char_u errbuf[80];
6877
6878 while (*s && itemcnt < STL_MAX_ITEM)
6879 {
6880 /* Check for valid keys after % sequences */
6881 while (*s && *s != '%')
6882 s++;
6883 if (!*s)
6884 break;
6885 s++;
6886 if (*s != '%' && *s != ')')
6887 ++itemcnt;
6888 if (*s == '%' || *s == STL_TRUNCMARK || *s == STL_MIDDLEMARK)
6889 {
6890 s++;
6891 continue;
6892 }
6893 if (*s == ')')
6894 {
6895 s++;
6896 if (--groupdepth < 0)
6897 break;
6898 continue;
6899 }
6900 if (*s == '-')
6901 s++;
6902 while (VIM_ISDIGIT(*s))
6903 s++;
Bram Moolenaar238a5642006-02-21 22:12:05 +00006904 if (*s == STL_USER_HL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006905 continue;
6906 if (*s == '.')
6907 {
6908 s++;
6909 while (*s && VIM_ISDIGIT(*s))
6910 s++;
6911 }
6912 if (*s == '(')
6913 {
6914 groupdepth++;
6915 continue;
6916 }
6917 if (vim_strchr(STL_ALL, *s) == NULL)
6918 {
6919 return illegal_char(errbuf, *s);
6920 }
6921 if (*s == '{')
6922 {
6923 s++;
6924 while (*s != '}' && *s)
6925 s++;
6926 if (*s != '}')
6927 return (char_u *)N_("E540: Unclosed expression sequence");
6928 }
6929 }
6930 if (itemcnt >= STL_MAX_ITEM)
6931 return (char_u *)N_("E541: too many items");
6932 if (groupdepth != 0)
6933 return (char_u *)N_("E542: unbalanced groups");
6934 return NULL;
6935}
6936#endif
6937
6938#ifdef FEAT_CLIPBOARD
6939/*
6940 * Extract the items in the 'clipboard' option and set global values.
6941 */
6942 static char_u *
6943check_clipboard_option()
6944{
6945 int new_unnamed = FALSE;
6946 int new_autoselect = FALSE;
6947 int new_autoselectml = FALSE;
6948 regprog_T *new_exclude_prog = NULL;
6949 char_u *errmsg = NULL;
6950 char_u *p;
6951
6952 for (p = p_cb; *p != NUL; )
6953 {
6954 if (STRNCMP(p, "unnamed", 7) == 0 && (p[7] == ',' || p[7] == NUL))
6955 {
6956 new_unnamed = TRUE;
6957 p += 7;
6958 }
6959 else if (STRNCMP(p, "autoselect", 10) == 0
6960 && (p[10] == ',' || p[10] == NUL))
6961 {
6962 new_autoselect = TRUE;
6963 p += 10;
6964 }
6965 else if (STRNCMP(p, "autoselectml", 12) == 0
6966 && (p[12] == ',' || p[12] == NUL))
6967 {
6968 new_autoselectml = TRUE;
6969 p += 12;
6970 }
6971 else if (STRNCMP(p, "exclude:", 8) == 0 && new_exclude_prog == NULL)
6972 {
6973 p += 8;
6974 new_exclude_prog = vim_regcomp(p, RE_MAGIC);
6975 if (new_exclude_prog == NULL)
6976 errmsg = e_invarg;
6977 break;
6978 }
6979 else
6980 {
6981 errmsg = e_invarg;
6982 break;
6983 }
6984 if (*p == ',')
6985 ++p;
6986 }
6987 if (errmsg == NULL)
6988 {
6989 clip_unnamed = new_unnamed;
6990 clip_autoselect = new_autoselect;
6991 clip_autoselectml = new_autoselectml;
6992 vim_free(clip_exclude_prog);
6993 clip_exclude_prog = new_exclude_prog;
6994 }
6995 else
6996 vim_free(new_exclude_prog);
6997
6998 return errmsg;
6999}
7000#endif
7001
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00007002#ifdef FEAT_SPELL
Bram Moolenaar0d9c26d2005-07-02 23:19:16 +00007003/*
7004 * Set curbuf->b_cap_prog to the regexp program for 'spellcapcheck'.
7005 * Return error message when failed, NULL when OK.
7006 */
7007 static char_u *
Bram Moolenaar0dc065e2005-07-04 22:49:24 +00007008compile_cap_prog(buf)
7009 buf_T *buf;
Bram Moolenaar0d9c26d2005-07-02 23:19:16 +00007010{
Bram Moolenaar0dc065e2005-07-04 22:49:24 +00007011 regprog_T *rp = buf->b_cap_prog;
Bram Moolenaar18f9a792005-12-08 22:02:51 +00007012 char_u *re;
Bram Moolenaar0d9c26d2005-07-02 23:19:16 +00007013
Bram Moolenaar0dc065e2005-07-04 22:49:24 +00007014 if (*buf->b_p_spc == NUL)
Bram Moolenaar0dc065e2005-07-04 22:49:24 +00007015 buf->b_cap_prog = NULL;
Bram Moolenaar18f9a792005-12-08 22:02:51 +00007016 else
Bram Moolenaar0d9c26d2005-07-02 23:19:16 +00007017 {
Bram Moolenaar18f9a792005-12-08 22:02:51 +00007018 /* Prepend a ^ so that we only match at one column */
7019 re = concat_str((char_u *)"^", buf->b_p_spc);
7020 if (re != NULL)
7021 {
7022 buf->b_cap_prog = vim_regcomp(re, RE_MAGIC);
7023 if (buf->b_cap_prog == NULL)
7024 {
7025 buf->b_cap_prog = rp; /* restore the previous program */
7026 return e_invarg;
7027 }
7028 vim_free(re);
7029 }
Bram Moolenaar0d9c26d2005-07-02 23:19:16 +00007030 }
7031
7032 vim_free(rp);
7033 return NULL;
7034}
7035#endif
7036
Bram Moolenaard1f56e62006-02-22 21:25:37 +00007037#if defined(FEAT_EVAL) || defined(PROTO)
7038/*
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00007039 * Set the scriptID for an option, taking care of setting the buffer- or
7040 * window-local value.
Bram Moolenaard1f56e62006-02-22 21:25:37 +00007041 */
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00007042 static void
7043set_option_scriptID_idx(opt_idx, opt_flags, id)
7044 int opt_idx;
7045 int opt_flags;
7046 int id;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00007047{
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00007048 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
7049 int indir = (int)options[opt_idx].indir;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00007050
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00007051 /* Remember where the option was set. For local options need to do that
7052 * in the buffer or window structure. */
7053 if (both || (opt_flags & OPT_GLOBAL) || (indir & (PV_BUF|PV_WIN)) == 0)
Bram Moolenaard1f56e62006-02-22 21:25:37 +00007054 options[opt_idx].scriptID = id;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00007055 if (both || (opt_flags & OPT_LOCAL))
7056 {
7057 if (indir & PV_BUF)
7058 curbuf->b_p_scriptID[indir & PV_MASK] = id;
7059 else if (indir & PV_WIN)
7060 curwin->w_p_scriptID[indir & PV_MASK] = id;
7061 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00007062}
7063#endif
7064
Bram Moolenaar071d4272004-06-13 20:20:40 +00007065/*
7066 * Set the value of a boolean option, and take care of side effects.
7067 * Returns NULL for success, or an error message for an error.
7068 */
7069 static char_u *
7070set_bool_option(opt_idx, varp, value, opt_flags)
7071 int opt_idx; /* index in options[] table */
7072 char_u *varp; /* pointer to the option variable */
7073 int value; /* new value */
7074 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
7075{
7076 int old_value = *(int *)varp;
7077
Bram Moolenaar071d4272004-06-13 20:20:40 +00007078 /* Disallow changing some options from secure mode */
7079 if ((secure
7080#ifdef HAVE_SANDBOX
7081 || sandbox != 0
7082#endif
7083 ) && (options[opt_idx].flags & P_SECURE))
7084 return e_secure;
7085
7086 *(int *)varp = value; /* set the new value */
7087#ifdef FEAT_EVAL
7088 /* Remember where the option was set. */
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00007089 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007090#endif
7091
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007092#ifdef FEAT_GUI
7093 need_mouse_correct = TRUE;
7094#endif
7095
Bram Moolenaar071d4272004-06-13 20:20:40 +00007096 /* May set global value for local option. */
7097 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0)
7098 *(int *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) = value;
7099
7100 /*
7101 * Handle side effects of changing a bool option.
7102 */
7103
7104 /* 'compatible' */
7105 if ((int *)varp == &p_cp)
7106 {
7107 compatible_set();
7108 }
7109
Bram Moolenaar071d4272004-06-13 20:20:40 +00007110 else if ((int *)varp == &curbuf->b_p_ro)
7111 {
Bram Moolenaard5cdbeb2005-10-10 20:59:28 +00007112 /* when 'readonly' is reset globally, also reset readonlymode */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007113 if (!curbuf->b_p_ro && (opt_flags & OPT_LOCAL) == 0)
7114 readonlymode = FALSE;
Bram Moolenaard5cdbeb2005-10-10 20:59:28 +00007115
7116 /* when 'readonly' is set may give W10 again */
7117 if (curbuf->b_p_ro)
7118 curbuf->b_did_warn = FALSE;
7119
Bram Moolenaar071d4272004-06-13 20:20:40 +00007120#ifdef FEAT_TITLE
7121 need_maketitle = TRUE;
7122#endif
7123 }
7124
7125#ifdef FEAT_TITLE
7126 /* when 'modifiable' is changed, redraw the window title */
7127 else if ((int *)varp == &curbuf->b_p_ma)
7128 need_maketitle = TRUE;
7129 /* when 'endofline' is changed, redraw the window title */
7130 else if ((int *)varp == &curbuf->b_p_eol)
7131 need_maketitle = TRUE;
Bram Moolenaar83eb8852007-08-12 13:51:26 +00007132#ifdef FEAT_MBYTE
7133 /* when 'bomb' is changed, redraw the window title */
7134 else if ((int *)varp == &curbuf->b_p_bomb)
7135 need_maketitle = TRUE;
7136#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007137#endif
7138
7139 /* when 'bin' is set also set some other options */
7140 else if ((int *)varp == &curbuf->b_p_bin)
7141 {
7142 set_options_bin(old_value, curbuf->b_p_bin, opt_flags);
7143#ifdef FEAT_TITLE
7144 need_maketitle = TRUE;
7145#endif
7146 }
7147
7148#ifdef FEAT_AUTOCMD
7149 /* when 'buflisted' changes, trigger autocommands */
7150 else if ((int *)varp == &curbuf->b_p_bl && old_value != curbuf->b_p_bl)
7151 {
7152 apply_autocmds(curbuf->b_p_bl ? EVENT_BUFADD : EVENT_BUFDELETE,
7153 NULL, NULL, TRUE, curbuf);
7154 }
7155#endif
7156
7157 /* when 'swf' is set, create swapfile, when reset remove swapfile */
7158 else if ((int *)varp == &curbuf->b_p_swf)
7159 {
7160 if (curbuf->b_p_swf && p_uc)
7161 ml_open_file(curbuf); /* create the swap file */
7162 else
Bram Moolenaard55de222007-05-06 13:38:48 +00007163 /* no need to reset curbuf->b_may_swap, ml_open_file() will check
7164 * buf->b_p_swf */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007165 mf_close_file(curbuf, TRUE); /* remove the swap file */
7166 }
7167
7168 /* when 'terse' is set change 'shortmess' */
7169 else if ((int *)varp == &p_terse)
7170 {
7171 char_u *p;
7172
7173 p = vim_strchr(p_shm, SHM_SEARCH);
7174
7175 /* insert 's' in p_shm */
7176 if (p_terse && p == NULL)
7177 {
7178 STRCPY(IObuff, p_shm);
7179 STRCAT(IObuff, "s");
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00007180 set_string_option_direct((char_u *)"shm", -1, IObuff, OPT_FREE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007181 }
7182 /* remove 's' from p_shm */
7183 else if (!p_terse && p != NULL)
7184 mch_memmove(p, p + 1, STRLEN(p));
7185 }
7186
7187 /* when 'paste' is set or reset also change other options */
7188 else if ((int *)varp == &p_paste)
7189 {
7190 paste_option_changed();
7191 }
7192
7193 /* when 'insertmode' is set from an autocommand need to do work here */
7194 else if ((int *)varp == &p_im)
7195 {
7196 if (p_im)
7197 {
7198 if ((State & INSERT) == 0)
7199 need_start_insertmode = TRUE;
7200 stop_insert_mode = FALSE;
7201 }
7202 else
7203 {
7204 need_start_insertmode = FALSE;
7205 stop_insert_mode = TRUE;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00007206 if (restart_edit != 0 && mode_displayed)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007207 clear_cmdline = TRUE; /* remove "(insert)" */
7208 restart_edit = 0;
7209 }
7210 }
7211
7212 /* when 'ignorecase' is set or reset and 'hlsearch' is set, redraw */
7213 else if ((int *)varp == &p_ic && p_hls)
7214 {
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00007215 redraw_all_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007216 }
7217
7218#ifdef FEAT_SEARCH_EXTRA
7219 /* when 'hlsearch' is set or reset: reset no_hlsearch */
7220 else if ((int *)varp == &p_hls)
7221 {
7222 no_hlsearch = FALSE;
7223 }
7224#endif
7225
7226#ifdef FEAT_SCROLLBIND
7227 /* when 'scrollbind' is set: snapshot the current position to avoid a jump
7228 * at the end of normal_cmd() */
7229 else if ((int *)varp == &curwin->w_p_scb)
7230 {
7231 if (curwin->w_p_scb)
7232 do_check_scrollbind(FALSE);
7233 }
7234#endif
7235
7236#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
7237 /* There can be only one window with 'previewwindow' set. */
7238 else if ((int *)varp == &curwin->w_p_pvw)
7239 {
7240 if (curwin->w_p_pvw)
7241 {
7242 win_T *win;
7243
7244 for (win = firstwin; win != NULL; win = win->w_next)
7245 if (win->w_p_pvw && win != curwin)
7246 {
7247 curwin->w_p_pvw = FALSE;
7248 return (char_u *)N_("E590: A preview window already exists");
7249 }
7250 }
7251 }
7252#endif
7253
7254 /* when 'textmode' is set or reset also change 'fileformat' */
7255 else if ((int *)varp == &curbuf->b_p_tx)
7256 {
7257 set_fileformat(curbuf->b_p_tx ? EOL_DOS : EOL_UNIX, opt_flags);
7258 }
7259
7260 /* when 'textauto' is set or reset also change 'fileformats' */
7261 else if ((int *)varp == &p_ta)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007262 set_string_option_direct((char_u *)"ffs", -1,
7263 p_ta ? (char_u *)DFLT_FFS_VIM : (char_u *)"",
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00007264 OPT_FREE | opt_flags, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007265
7266 /*
7267 * When 'lisp' option changes include/exclude '-' in
7268 * keyword characters.
7269 */
7270#ifdef FEAT_LISP
7271 else if (varp == (char_u *)&(curbuf->b_p_lisp))
7272 {
7273 (void)buf_init_chartab(curbuf, FALSE); /* ignore errors */
7274 }
7275#endif
7276
7277#ifdef FEAT_TITLE
7278 /* when 'title' changed, may need to change the title; same for 'icon' */
7279 else if ((int *)varp == &p_title)
7280 {
7281 did_set_title(FALSE);
7282 }
7283
7284 else if ((int *)varp == &p_icon)
7285 {
7286 did_set_title(TRUE);
7287 }
7288#endif
7289
7290 else if ((int *)varp == &curbuf->b_changed)
7291 {
7292 if (!value)
7293 save_file_ff(curbuf); /* Buffer is unchanged */
7294#ifdef FEAT_TITLE
7295 need_maketitle = TRUE;
7296#endif
7297#ifdef FEAT_AUTOCMD
7298 modified_was_set = value;
7299#endif
7300 }
7301
7302#ifdef BACKSLASH_IN_FILENAME
7303 else if ((int *)varp == &p_ssl)
7304 {
7305 if (p_ssl)
7306 {
7307 psepc = '/';
7308 psepcN = '\\';
7309 pseps[0] = '/';
Bram Moolenaar071d4272004-06-13 20:20:40 +00007310 }
7311 else
7312 {
7313 psepc = '\\';
7314 psepcN = '/';
7315 pseps[0] = '\\';
Bram Moolenaar071d4272004-06-13 20:20:40 +00007316 }
7317
7318 /* need to adjust the file name arguments and buffer names. */
7319 buflist_slash_adjust();
7320 alist_slash_adjust();
7321# ifdef FEAT_EVAL
7322 scriptnames_slash_adjust();
7323# endif
7324 }
7325#endif
7326
7327 /* If 'wrap' is set, set w_leftcol to zero. */
7328 else if ((int *)varp == &curwin->w_p_wrap)
7329 {
7330 if (curwin->w_p_wrap)
7331 curwin->w_leftcol = 0;
7332 }
7333
7334#ifdef FEAT_WINDOWS
7335 else if ((int *)varp == &p_ea)
7336 {
7337 if (p_ea && !old_value)
7338 win_equal(curwin, FALSE, 0);
7339 }
7340#endif
7341
7342 else if ((int *)varp == &p_wiv)
7343 {
7344 /*
7345 * When 'weirdinvert' changed, set/reset 't_xs'.
7346 * Then set 'weirdinvert' according to value of 't_xs'.
7347 */
7348 if (p_wiv && !old_value)
7349 T_XS = (char_u *)"y";
7350 else if (!p_wiv && old_value)
7351 T_XS = empty_option;
7352 p_wiv = (*T_XS != NUL);
7353 }
7354
Bram Moolenaarf1f8bc52005-03-07 23:20:08 +00007355#ifdef FEAT_BEVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +00007356 else if ((int *)varp == &p_beval)
7357 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00007358 if (p_beval == TRUE)
7359 gui_mch_enable_beval_area(balloonEval);
7360 else
7361 gui_mch_disable_beval_area(balloonEval);
7362 }
Bram Moolenaar8dff8182006-04-06 20:18:50 +00007363#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007364
Bram Moolenaar8dff8182006-04-06 20:18:50 +00007365#ifdef FEAT_AUTOCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00007366 else if ((int *)varp == &p_acd)
7367 {
Bram Moolenaar498efdb2006-09-05 14:31:54 +00007368 /* Change directories when the 'acd' option is set now. */
7369 DO_AUTOCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00007370 }
7371#endif
7372
7373#ifdef FEAT_DIFF
7374 /* 'diff' */
7375 else if ((int *)varp == &curwin->w_p_diff)
7376 {
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00007377 /* May add or remove the buffer from the list of diff buffers. */
7378 diff_buf_adjust(curwin);
7379# ifdef FEAT_FOLDING
Bram Moolenaar071d4272004-06-13 20:20:40 +00007380 if (foldmethodIsDiff(curwin))
7381 foldUpdateAll(curwin);
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00007382# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007383 }
7384#endif
7385
7386#ifdef USE_IM_CONTROL
7387 /* 'imdisable' */
7388 else if ((int *)varp == &p_imdisable)
7389 {
7390 /* Only de-activate it here, it will be enabled when changing mode. */
7391 if (p_imdisable)
7392 im_set_active(FALSE);
7393 }
7394#endif
7395
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00007396#ifdef FEAT_SPELL
Bram Moolenaar0cb032e2005-04-23 20:52:00 +00007397 /* 'spell' */
7398 else if ((int *)varp == &curwin->w_p_spell)
7399 {
7400 if (curwin->w_p_spell)
7401 {
7402 char_u *errmsg = did_set_spelllang(curbuf);
Bram Moolenaar3638c682005-06-08 22:05:14 +00007403
Bram Moolenaar0cb032e2005-04-23 20:52:00 +00007404 if (errmsg != NULL)
7405 EMSG(_(errmsg));
7406 }
7407 }
7408#endif
7409
Bram Moolenaar071d4272004-06-13 20:20:40 +00007410#ifdef FEAT_FKMAP
7411 else if ((int *)varp == &p_altkeymap)
7412 {
7413 if (old_value != p_altkeymap)
7414 {
7415 if (!p_altkeymap)
7416 {
7417 p_hkmap = p_fkmap;
7418 p_fkmap = 0;
7419 }
7420 else
7421 {
7422 p_fkmap = p_hkmap;
7423 p_hkmap = 0;
7424 }
7425 (void)init_chartab();
7426 }
7427 }
7428
7429 /*
7430 * In case some second language keymapping options have changed, check
7431 * and correct the setting in a consistent way.
7432 */
7433
7434 /*
7435 * If hkmap or fkmap are set, reset Arabic keymapping.
7436 */
7437 if ((p_hkmap || p_fkmap) && p_altkeymap)
7438 {
7439 p_altkeymap = p_fkmap;
7440# ifdef FEAT_ARABIC
7441 curwin->w_p_arab = FALSE;
7442# endif
7443 (void)init_chartab();
7444 }
7445
7446 /*
7447 * If hkmap set, reset Farsi keymapping.
7448 */
7449 if (p_hkmap && p_altkeymap)
7450 {
7451 p_altkeymap = 0;
7452 p_fkmap = 0;
7453# ifdef FEAT_ARABIC
7454 curwin->w_p_arab = FALSE;
7455# endif
7456 (void)init_chartab();
7457 }
7458
7459 /*
7460 * If fkmap set, reset Hebrew keymapping.
7461 */
7462 if (p_fkmap && !p_altkeymap)
7463 {
7464 p_altkeymap = 1;
7465 p_hkmap = 0;
7466# ifdef FEAT_ARABIC
7467 curwin->w_p_arab = FALSE;
7468# endif
7469 (void)init_chartab();
7470 }
7471#endif
7472
7473#ifdef FEAT_ARABIC
7474 if ((int *)varp == &curwin->w_p_arab)
7475 {
7476 if (curwin->w_p_arab)
7477 {
7478 /*
7479 * 'arabic' is set, handle various sub-settings.
7480 */
7481 if (!p_tbidi)
7482 {
7483 /* set rightleft mode */
7484 if (!curwin->w_p_rl)
7485 {
7486 curwin->w_p_rl = TRUE;
7487 changed_window_setting();
7488 }
7489
7490 /* Enable Arabic shaping (major part of what Arabic requires) */
7491 if (!p_arshape)
7492 {
7493 p_arshape = TRUE;
7494 redraw_later_clear();
7495 }
7496 }
7497
7498 /* Arabic requires a utf-8 encoding, inform the user if its not
7499 * set. */
7500 if (STRCMP(p_enc, "utf-8") != 0)
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00007501 {
7502 msg_source(hl_attr(HLF_W));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007503 MSG_ATTR(_("W17: Arabic requires UTF-8, do ':set encoding=utf-8'"),
7504 hl_attr(HLF_W));
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00007505 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007506
7507# ifdef FEAT_MBYTE
7508 /* set 'delcombine' */
7509 p_deco = TRUE;
7510# endif
7511
7512# ifdef FEAT_KEYMAP
7513 /* Force-set the necessary keymap for arabic */
7514 set_option_value((char_u *)"keymap", 0L, (char_u *)"arabic",
7515 OPT_LOCAL);
7516# endif
7517# ifdef FEAT_FKMAP
7518 p_altkeymap = 0;
7519 p_hkmap = 0;
7520 p_fkmap = 0;
7521 (void)init_chartab();
7522# endif
7523 }
7524 else
7525 {
7526 /*
7527 * 'arabic' is reset, handle various sub-settings.
7528 */
7529 if (!p_tbidi)
7530 {
7531 /* reset rightleft mode */
7532 if (curwin->w_p_rl)
7533 {
7534 curwin->w_p_rl = FALSE;
7535 changed_window_setting();
7536 }
7537
7538 /* 'arabicshape' isn't reset, it is a global option and
7539 * another window may still need it "on". */
7540 }
7541
7542 /* 'delcombine' isn't reset, it is a global option and another
7543 * window may still want it "on". */
7544
7545# ifdef FEAT_KEYMAP
7546 /* Revert to the default keymap */
7547 curbuf->b_p_iminsert = B_IMODE_NONE;
7548 curbuf->b_p_imsearch = B_IMODE_USE_INSERT;
7549# endif
7550 }
7551 }
7552#endif
7553
7554 /*
7555 * End of handling side effects for bool options.
7556 */
7557
7558 options[opt_idx].flags |= P_WAS_SET;
7559
7560 comp_col(); /* in case 'ruler' or 'showcmd' changed */
7561 if (curwin->w_curswant != MAXCOL)
7562 curwin->w_set_curswant = TRUE; /* in case 'list' changed */
7563 check_redraw(options[opt_idx].flags);
7564
7565 return NULL;
7566}
7567
7568/*
7569 * Set the value of a number option, and take care of side effects.
7570 * Returns NULL for success, or an error message for an error.
7571 */
7572 static char_u *
Bram Moolenaar555b2802005-05-19 21:08:39 +00007573set_num_option(opt_idx, varp, value, errbuf, errbuflen, opt_flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007574 int opt_idx; /* index in options[] table */
7575 char_u *varp; /* pointer to the option variable */
7576 long value; /* new value */
7577 char_u *errbuf; /* buffer for error messages */
Bram Moolenaar555b2802005-05-19 21:08:39 +00007578 size_t errbuflen; /* length of "errbuf" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007579 int opt_flags; /* OPT_LOCAL, OPT_GLOBAL and
7580 OPT_MODELINE */
7581{
7582 char_u *errmsg = NULL;
7583 long old_value = *(long *)varp;
7584 long old_Rows = Rows; /* remember old Rows */
7585 long old_Columns = Columns; /* remember old Columns */
7586 long *pp = (long *)varp;
7587
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007588 /* Disallow changing some options from secure mode. */
7589 if ((secure
7590#ifdef HAVE_SANDBOX
7591 || sandbox != 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00007592#endif
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007593 ) && (options[opt_idx].flags & P_SECURE))
7594 return e_secure;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007595
7596 *pp = value;
7597#ifdef FEAT_EVAL
7598 /* Remember where the option was set. */
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00007599 set_option_scriptID_idx(opt_idx, opt_flags, current_SID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007600#endif
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007601#ifdef FEAT_GUI
7602 need_mouse_correct = TRUE;
7603#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007604
7605 if (curbuf->b_p_sw <= 0)
7606 {
7607 errmsg = e_positive;
7608 curbuf->b_p_sw = curbuf->b_p_ts;
7609 }
7610
7611 /*
7612 * Number options that need some action when changed
7613 */
7614#ifdef FEAT_WINDOWS
7615 if (pp == &p_wh || pp == &p_hh)
7616 {
7617 if (p_wh < 1)
7618 {
7619 errmsg = e_positive;
7620 p_wh = 1;
7621 }
7622 if (p_wmh > p_wh)
7623 {
7624 errmsg = e_winheight;
7625 p_wh = p_wmh;
7626 }
7627 if (p_hh < 0)
7628 {
7629 errmsg = e_positive;
7630 p_hh = 0;
7631 }
7632
7633 /* Change window height NOW */
7634 if (lastwin != firstwin)
7635 {
7636 if (pp == &p_wh && curwin->w_height < p_wh)
7637 win_setheight((int)p_wh);
7638 if (pp == &p_hh && curbuf->b_help && curwin->w_height < p_hh)
7639 win_setheight((int)p_hh);
7640 }
7641 }
7642
7643 /* 'winminheight' */
7644 else if (pp == &p_wmh)
7645 {
7646 if (p_wmh < 0)
7647 {
7648 errmsg = e_positive;
7649 p_wmh = 0;
7650 }
7651 if (p_wmh > p_wh)
7652 {
7653 errmsg = e_winheight;
7654 p_wmh = p_wh;
7655 }
7656 win_setminheight();
7657 }
7658
7659# ifdef FEAT_VERTSPLIT
Bram Moolenaar592e0a22004-07-03 16:05:59 +00007660 else if (pp == &p_wiw)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007661 {
7662 if (p_wiw < 1)
7663 {
7664 errmsg = e_positive;
7665 p_wiw = 1;
7666 }
7667 if (p_wmw > p_wiw)
7668 {
7669 errmsg = e_winwidth;
7670 p_wiw = p_wmw;
7671 }
7672
7673 /* Change window width NOW */
7674 if (lastwin != firstwin && curwin->w_width < p_wiw)
7675 win_setwidth((int)p_wiw);
7676 }
7677
7678 /* 'winminwidth' */
7679 else if (pp == &p_wmw)
7680 {
7681 if (p_wmw < 0)
7682 {
7683 errmsg = e_positive;
7684 p_wmw = 0;
7685 }
7686 if (p_wmw > p_wiw)
7687 {
7688 errmsg = e_winwidth;
7689 p_wmw = p_wiw;
7690 }
7691 win_setminheight();
7692 }
7693# endif
7694
7695#endif
7696
7697#ifdef FEAT_WINDOWS
7698 /* (re)set last window status line */
7699 else if (pp == &p_ls)
7700 {
7701 last_status(FALSE);
7702 }
Bram Moolenaar4c7ed462006-02-15 22:18:42 +00007703
7704 /* (re)set tab page line */
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00007705 else if (pp == &p_stal)
Bram Moolenaar4c7ed462006-02-15 22:18:42 +00007706 {
7707 shell_new_rows(); /* recompute window positions and heights */
7708 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007709#endif
7710
7711#ifdef FEAT_GUI
7712 else if (pp == &p_linespace)
7713 {
Bram Moolenaar02743632005-07-25 20:42:36 +00007714 /* Recompute gui.char_height and resize the Vim window to keep the
7715 * same number of lines. */
7716 if (gui.in_use && gui_mch_adjust_charheight() == OK)
Bram Moolenaar3964b7e2006-03-27 20:59:33 +00007717 gui_set_shellsize(FALSE, FALSE, RESIZE_VERT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007718 }
7719#endif
7720
7721#ifdef FEAT_FOLDING
7722 /* 'foldlevel' */
7723 else if (pp == &curwin->w_p_fdl)
7724 {
7725 if (curwin->w_p_fdl < 0)
7726 curwin->w_p_fdl = 0;
7727 newFoldLevel();
7728 }
7729
7730 /* 'foldminlevel' */
7731 else if (pp == &curwin->w_p_fml)
7732 {
7733 foldUpdateAll(curwin);
7734 }
7735
7736 /* 'foldnestmax' */
7737 else if (pp == &curwin->w_p_fdn)
7738 {
7739 if (foldmethodIsSyntax(curwin) || foldmethodIsIndent(curwin))
7740 foldUpdateAll(curwin);
7741 }
7742
7743 /* 'foldcolumn' */
7744 else if (pp == &curwin->w_p_fdc)
7745 {
7746 if (curwin->w_p_fdc < 0)
7747 {
7748 errmsg = e_positive;
7749 curwin->w_p_fdc = 0;
7750 }
7751 else if (curwin->w_p_fdc > 12)
7752 {
7753 errmsg = e_invarg;
7754 curwin->w_p_fdc = 12;
7755 }
7756 }
7757
7758 /* 'shiftwidth' or 'tabstop' */
7759 else if (pp == &curbuf->b_p_sw || pp == &curbuf->b_p_ts)
7760 {
7761 if (foldmethodIsIndent(curwin))
7762 foldUpdateAll(curwin);
7763 }
7764#endif /* FEAT_FOLDING */
7765
Bram Moolenaar362e1a32006-03-06 23:29:24 +00007766#ifdef FEAT_MBYTE
7767 /* 'maxcombine' */
7768 else if (pp == &p_mco)
7769 {
7770 if (p_mco > MAX_MCO)
7771 p_mco = MAX_MCO;
7772 else if (p_mco < 0)
7773 p_mco = 0;
7774 screenclear(); /* will re-allocate the screen */
7775 }
7776#endif
7777
Bram Moolenaar071d4272004-06-13 20:20:40 +00007778 else if (pp == &curbuf->b_p_iminsert)
7779 {
7780 if (curbuf->b_p_iminsert < 0 || curbuf->b_p_iminsert > B_IMODE_LAST)
7781 {
7782 errmsg = e_invarg;
7783 curbuf->b_p_iminsert = B_IMODE_NONE;
7784 }
7785 p_iminsert = curbuf->b_p_iminsert;
7786 if (termcap_active) /* don't do this in the alternate screen */
7787 showmode();
7788#if defined(FEAT_WINDOWS) && defined(FEAT_KEYMAP)
7789 /* Show/unshow value of 'keymap' in status lines. */
7790 status_redraw_curbuf();
7791#endif
7792 }
7793
Bram Moolenaar4399ef42005-02-12 14:29:27 +00007794 else if (pp == &p_window)
7795 {
7796 if (p_window < 1)
7797 p_window = 1;
7798 else if (p_window >= Rows)
7799 p_window = Rows - 1;
7800 }
7801
Bram Moolenaar071d4272004-06-13 20:20:40 +00007802 else if (pp == &curbuf->b_p_imsearch)
7803 {
7804 if (curbuf->b_p_imsearch < -1 || curbuf->b_p_imsearch > B_IMODE_LAST)
7805 {
7806 errmsg = e_invarg;
7807 curbuf->b_p_imsearch = B_IMODE_NONE;
7808 }
7809 p_imsearch = curbuf->b_p_imsearch;
7810 }
7811
7812#ifdef FEAT_TITLE
7813 /* if 'titlelen' has changed, redraw the title */
7814 else if (pp == &p_titlelen)
7815 {
7816 if (p_titlelen < 0)
7817 {
7818 errmsg = e_positive;
7819 p_titlelen = 85;
7820 }
7821 if (starting != NO_SCREEN && old_value != p_titlelen)
7822 need_maketitle = TRUE;
7823 }
7824#endif
7825
7826 /* if p_ch changed value, change the command line height */
7827 else if (pp == &p_ch)
7828 {
7829 if (p_ch < 1)
7830 {
7831 errmsg = e_positive;
7832 p_ch = 1;
7833 }
Bram Moolenaar719939c2007-09-25 12:51:28 +00007834 if (p_ch > Rows - min_rows() + 1)
7835 p_ch = Rows - min_rows() + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007836
7837 /* Only compute the new window layout when startup has been
7838 * completed. Otherwise the frame sizes may be wrong. */
7839 if (p_ch != old_value && full_screen
7840#ifdef FEAT_GUI
7841 && !gui.starting
7842#endif
7843 )
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00007844 command_height();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007845 }
7846
7847 /* when 'updatecount' changes from zero to non-zero, open swap files */
7848 else if (pp == &p_uc)
7849 {
7850 if (p_uc < 0)
7851 {
7852 errmsg = e_positive;
7853 p_uc = 100;
7854 }
7855 if (p_uc && !old_value)
7856 ml_open_files();
7857 }
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00007858#ifdef MZSCHEME_GUI_THREADS
Bram Moolenaar325b7a22004-07-05 15:58:32 +00007859 else if (pp == &p_mzq)
7860 mzvim_reset_timer();
7861#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007862
7863 /* sync undo before 'undolevels' changes */
7864 else if (pp == &p_ul)
7865 {
7866 /* use the old value, otherwise u_sync() may not work properly */
7867 p_ul = old_value;
Bram Moolenaar779b74b2006-04-10 14:55:34 +00007868 u_sync(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007869 p_ul = value;
7870 }
7871
Bram Moolenaar592e0a22004-07-03 16:05:59 +00007872#ifdef FEAT_LINEBREAK
7873 /* 'numberwidth' must be positive */
7874 else if (pp == &curwin->w_p_nuw)
7875 {
7876 if (curwin->w_p_nuw < 1)
7877 {
7878 errmsg = e_positive;
7879 curwin->w_p_nuw = 1;
7880 }
7881 if (curwin->w_p_nuw > 10)
7882 {
7883 errmsg = e_invarg;
7884 curwin->w_p_nuw = 10;
7885 }
7886 curwin->w_nrwidth_line_count = 0;
7887 }
7888#endif
7889
Bram Moolenaar071d4272004-06-13 20:20:40 +00007890 /*
7891 * Check the bounds for numeric options here
7892 */
7893 if (Rows < min_rows() && full_screen)
7894 {
7895 if (errbuf != NULL)
7896 {
Bram Moolenaar555b2802005-05-19 21:08:39 +00007897 vim_snprintf((char *)errbuf, errbuflen,
7898 _("E593: Need at least %d lines"), min_rows());
Bram Moolenaar071d4272004-06-13 20:20:40 +00007899 errmsg = errbuf;
7900 }
7901 Rows = min_rows();
7902 }
7903 if (Columns < MIN_COLUMNS && full_screen)
7904 {
7905 if (errbuf != NULL)
7906 {
Bram Moolenaar555b2802005-05-19 21:08:39 +00007907 vim_snprintf((char *)errbuf, errbuflen,
7908 _("E594: Need at least %d columns"), MIN_COLUMNS);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007909 errmsg = errbuf;
7910 }
7911 Columns = MIN_COLUMNS;
7912 }
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00007913 /* Limit the values to avoid an overflow in Rows * Columns. */
7914 if (Columns > 10000)
7915 Columns = 10000;
7916 if (Rows > 1000)
7917 Rows = 1000;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007918
7919#ifdef DJGPP
7920 /* avoid a crash by checking for a too large value of 'columns' */
7921 if (old_Columns != Columns && full_screen && term_console)
7922 mch_check_columns();
7923#endif
7924
7925 /*
7926 * If the screen (shell) height has been changed, assume it is the
7927 * physical screenheight.
7928 */
7929 if (old_Rows != Rows || old_Columns != Columns)
7930 {
7931 /* Changing the screen size is not allowed while updating the screen. */
7932 if (updating_screen)
7933 *pp = old_value;
7934 else if (full_screen
7935#ifdef FEAT_GUI
7936 && !gui.starting
7937#endif
7938 )
7939 set_shellsize((int)Columns, (int)Rows, TRUE);
7940 else
7941 {
7942 /* Postpone the resizing; check the size and cmdline position for
7943 * messages. */
7944 check_shellsize();
7945 if (cmdline_row > Rows - p_ch && Rows > p_ch)
7946 cmdline_row = Rows - p_ch;
7947 }
Bram Moolenaard68071d2006-05-02 22:08:30 +00007948 if (p_window >= Rows || !option_was_set((char_u *)"window"))
Bram Moolenaar4399ef42005-02-12 14:29:27 +00007949 p_window = Rows - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007950 }
7951
7952 if (curbuf->b_p_sts < 0)
7953 {
7954 errmsg = e_positive;
7955 curbuf->b_p_sts = 0;
7956 }
7957 if (curbuf->b_p_ts <= 0)
7958 {
7959 errmsg = e_positive;
7960 curbuf->b_p_ts = 8;
7961 }
7962 if (curbuf->b_p_tw < 0)
7963 {
7964 errmsg = e_positive;
7965 curbuf->b_p_tw = 0;
7966 }
7967 if (p_tm < 0)
7968 {
7969 errmsg = e_positive;
7970 p_tm = 0;
7971 }
7972 if ((curwin->w_p_scr <= 0
7973 || (curwin->w_p_scr > curwin->w_height
7974 && curwin->w_height > 0))
7975 && full_screen)
7976 {
7977 if (pp == &(curwin->w_p_scr))
7978 {
7979 if (curwin->w_p_scr != 0)
7980 errmsg = e_scroll;
7981 win_comp_scroll(curwin);
7982 }
7983 /* If 'scroll' became invalid because of a side effect silently adjust
7984 * it. */
7985 else if (curwin->w_p_scr <= 0)
7986 curwin->w_p_scr = 1;
7987 else /* curwin->w_p_scr > curwin->w_height */
7988 curwin->w_p_scr = curwin->w_height;
7989 }
7990 if (p_report < 0)
7991 {
7992 errmsg = e_positive;
7993 p_report = 1;
7994 }
Bram Moolenaar1e015462005-09-25 22:16:38 +00007995 if ((p_sj < -100 || p_sj >= Rows) && full_screen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007996 {
7997 if (Rows != old_Rows) /* Rows changed, just adjust p_sj */
7998 p_sj = Rows / 2;
7999 else
8000 {
8001 errmsg = e_scroll;
8002 p_sj = 1;
8003 }
8004 }
8005 if (p_so < 0 && full_screen)
8006 {
8007 errmsg = e_scroll;
8008 p_so = 0;
8009 }
8010 if (p_siso < 0 && full_screen)
8011 {
8012 errmsg = e_positive;
8013 p_siso = 0;
8014 }
8015#ifdef FEAT_CMDWIN
8016 if (p_cwh < 1)
8017 {
8018 errmsg = e_positive;
8019 p_cwh = 1;
8020 }
8021#endif
8022 if (p_ut < 0)
8023 {
8024 errmsg = e_positive;
8025 p_ut = 2000;
8026 }
8027 if (p_ss < 0)
8028 {
8029 errmsg = e_positive;
8030 p_ss = 0;
8031 }
8032
8033 /* May set global value for local option. */
8034 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0)
8035 *(long *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) = *pp;
8036
8037 options[opt_idx].flags |= P_WAS_SET;
8038
8039 comp_col(); /* in case 'columns' or 'ls' changed */
8040 if (curwin->w_curswant != MAXCOL)
8041 curwin->w_set_curswant = TRUE; /* in case 'tabstop' changed */
8042 check_redraw(options[opt_idx].flags);
8043
8044 return errmsg;
8045}
8046
8047/*
8048 * Called after an option changed: check if something needs to be redrawn.
8049 */
8050 static void
8051check_redraw(flags)
8052 long_u flags;
8053{
8054 /* Careful: P_RCLR and P_RALL are a combination of other P_ flags */
8055 int clear = (flags & P_RCLR) == P_RCLR;
8056 int all = ((flags & P_RALL) == P_RALL || clear);
8057
8058#ifdef FEAT_WINDOWS
8059 if ((flags & P_RSTAT) || all) /* mark all status lines dirty */
8060 status_redraw_all();
8061#endif
8062
8063 if ((flags & P_RBUF) || (flags & P_RWIN) || all)
8064 changed_window_setting();
8065 if (flags & P_RBUF)
8066 redraw_curbuf_later(NOT_VALID);
8067 if (clear)
8068 redraw_all_later(CLEAR);
8069 else if (all)
8070 redraw_all_later(NOT_VALID);
8071}
8072
8073/*
8074 * Find index for option 'arg'.
8075 * Return -1 if not found.
8076 */
8077 static int
8078findoption(arg)
8079 char_u *arg;
8080{
8081 int opt_idx;
8082 char *s, *p;
8083 static short quick_tab[27] = {0, 0}; /* quick access table */
8084 int is_term_opt;
8085
8086 /*
8087 * For first call: Initialize the quick-access table.
8088 * It contains the index for the first option that starts with a certain
8089 * letter. There are 26 letters, plus the first "t_" option.
8090 */
8091 if (quick_tab[1] == 0)
8092 {
8093 p = options[0].fullname;
8094 for (opt_idx = 1; (s = options[opt_idx].fullname) != NULL; opt_idx++)
8095 {
8096 if (s[0] != p[0])
8097 {
8098 if (s[0] == 't' && s[1] == '_')
8099 quick_tab[26] = opt_idx;
8100 else
8101 quick_tab[CharOrdLow(s[0])] = opt_idx;
8102 }
8103 p = s;
8104 }
8105 }
8106
8107 /*
8108 * Check for name starting with an illegal character.
8109 */
8110#ifdef EBCDIC
8111 if (!islower(arg[0]))
8112#else
8113 if (arg[0] < 'a' || arg[0] > 'z')
8114#endif
8115 return -1;
8116
8117 is_term_opt = (arg[0] == 't' && arg[1] == '_');
8118 if (is_term_opt)
8119 opt_idx = quick_tab[26];
8120 else
8121 opt_idx = quick_tab[CharOrdLow(arg[0])];
8122 for ( ; (s = options[opt_idx].fullname) != NULL; opt_idx++)
8123 {
8124 if (STRCMP(arg, s) == 0) /* match full name */
8125 break;
8126 }
8127 if (s == NULL && !is_term_opt)
8128 {
8129 opt_idx = quick_tab[CharOrdLow(arg[0])];
8130 for ( ; options[opt_idx].fullname != NULL; opt_idx++)
8131 {
8132 s = options[opt_idx].shortname;
8133 if (s != NULL && STRCMP(arg, s) == 0) /* match short name */
8134 break;
8135 s = NULL;
8136 }
8137 }
8138 if (s == NULL)
8139 opt_idx = -1;
8140 return opt_idx;
8141}
8142
Bram Moolenaar325b7a22004-07-05 15:58:32 +00008143#if defined(FEAT_EVAL) || defined(FEAT_TCL) || defined(FEAT_MZSCHEME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008144/*
8145 * Get the value for an option.
8146 *
8147 * Returns:
8148 * Number or Toggle option: 1, *numval gets value.
8149 * String option: 0, *stringval gets allocated string.
8150 * Hidden Number or Toggle option: -1.
8151 * hidden String option: -2.
8152 * unknown option: -3.
8153 */
8154 int
8155get_option_value(name, numval, stringval, opt_flags)
8156 char_u *name;
8157 long *numval;
8158 char_u **stringval; /* NULL when only checking existance */
8159 int opt_flags;
8160{
8161 int opt_idx;
8162 char_u *varp;
8163
8164 opt_idx = findoption(name);
8165 if (opt_idx < 0) /* unknown option */
8166 return -3;
8167
8168 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
8169
8170 if (options[opt_idx].flags & P_STRING)
8171 {
8172 if (varp == NULL) /* hidden option */
8173 return -2;
8174 if (stringval != NULL)
8175 {
8176#ifdef FEAT_CRYPT
8177 /* never return the value of the crypt key */
8178 if ((char_u **)varp == &curbuf->b_p_key)
8179 *stringval = vim_strsave((char_u *)"*****");
8180 else
8181#endif
8182 *stringval = vim_strsave(*(char_u **)(varp));
8183 }
8184 return 0;
8185 }
8186
8187 if (varp == NULL) /* hidden option */
8188 return -1;
8189 if (options[opt_idx].flags & P_NUM)
8190 *numval = *(long *)varp;
8191 else
8192 {
8193 /* Special case: 'modified' is b_changed, but we also want to consider
8194 * it set when 'ff' or 'fenc' changed. */
8195 if ((int *)varp == &curbuf->b_changed)
8196 *numval = curbufIsChanged();
8197 else
8198 *numval = *(int *)varp;
8199 }
8200 return 1;
8201}
8202#endif
8203
8204/*
8205 * Set the value of option "name".
8206 * Use "string" for string options, use "number" for other options.
8207 */
8208 void
8209set_option_value(name, number, string, opt_flags)
8210 char_u *name;
8211 long number;
8212 char_u *string;
8213 int opt_flags; /* OPT_LOCAL or 0 (both) */
8214{
8215 int opt_idx;
8216 char_u *varp;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008217 long_u flags;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008218
8219 opt_idx = findoption(name);
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00008220 if (opt_idx < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008221 EMSG2(_("E355: Unknown option: %s"), name);
8222 else
8223 {
8224 flags = options[opt_idx].flags;
8225#ifdef HAVE_SANDBOX
8226 /* Disallow changing some options in the sandbox */
8227 if (sandbox > 0 && (flags & P_SECURE))
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00008228 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00008229 EMSG(_(e_sandbox));
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00008230 return;
8231 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008232#endif
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00008233 if (flags & P_STRING)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008234 set_string_option(opt_idx, string, opt_flags);
8235 else
8236 {
8237 varp = get_varp(&options[opt_idx]);
8238 if (varp != NULL) /* hidden option is not changed */
8239 {
Bram Moolenaar96bb6212007-06-19 18:52:53 +00008240 if (number == 0 && string != NULL)
8241 {
8242 int index;
8243
8244 /* Either we are given a string or we are setting option
8245 * to zero. */
8246 for (index = 0; string[index] == '0'; ++index)
8247 ;
8248 if (string[index] != NUL || index == 0)
8249 {
8250 /* There's another character after zeros or the string
8251 * is empty. In both cases, we are trying to set a
8252 * num option using a string. */
8253 EMSG3(_("E521: Number required: &%s = '%s'"),
8254 name, string);
8255 return; /* do nothing as we hit an error */
8256
8257 }
8258 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008259 if (flags & P_NUM)
Bram Moolenaar555b2802005-05-19 21:08:39 +00008260 (void)set_num_option(opt_idx, varp, number,
8261 NULL, 0, opt_flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008262 else
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00008263 (void)set_bool_option(opt_idx, varp, (int)number,
8264 opt_flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008265 }
8266 }
8267 }
8268}
8269
8270/*
8271 * Get the terminal code for a terminal option.
8272 * Returns NULL when not found.
8273 */
8274 char_u *
8275get_term_code(tname)
8276 char_u *tname;
8277{
8278 int opt_idx;
8279 char_u *varp;
8280
8281 if (tname[0] != 't' || tname[1] != '_' ||
8282 tname[2] == NUL || tname[3] == NUL)
8283 return NULL;
8284 if ((opt_idx = findoption(tname)) >= 0)
8285 {
8286 varp = get_varp(&(options[opt_idx]));
8287 if (varp != NULL)
8288 varp = *(char_u **)(varp);
8289 return varp;
8290 }
8291 return find_termcode(tname + 2);
8292}
8293
8294 char_u *
8295get_highlight_default()
8296{
8297 int i;
8298
8299 i = findoption((char_u *)"hl");
8300 if (i >= 0)
8301 return options[i].def_val[VI_DEFAULT];
8302 return (char_u *)NULL;
8303}
8304
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00008305#if defined(FEAT_MBYTE) || defined(PROTO)
8306 char_u *
8307get_encoding_default()
8308{
8309 int i;
8310
8311 i = findoption((char_u *)"enc");
8312 if (i >= 0)
8313 return options[i].def_val[VI_DEFAULT];
8314 return (char_u *)NULL;
8315}
8316#endif
8317
Bram Moolenaar071d4272004-06-13 20:20:40 +00008318/*
8319 * Translate a string like "t_xx", "<t_xx>" or "<S-Tab>" to a key number.
8320 */
8321 static int
8322find_key_option(arg)
8323 char_u *arg;
8324{
8325 int key;
8326 int modifiers;
8327
8328 /*
8329 * Don't use get_special_key_code() for t_xx, we don't want it to call
8330 * add_termcap_entry().
8331 */
8332 if (arg[0] == 't' && arg[1] == '_' && arg[2] && arg[3])
8333 key = TERMCAP2KEY(arg[2], arg[3]);
8334 else
8335 {
8336 --arg; /* put arg at the '<' */
8337 modifiers = 0;
8338 key = find_special_key(&arg, &modifiers, TRUE);
8339 if (modifiers) /* can't handle modifiers here */
8340 key = 0;
8341 }
8342 return key;
8343}
8344
8345/*
8346 * if 'all' == 0: show changed options
8347 * if 'all' == 1: show all normal options
8348 * if 'all' == 2: show all terminal options
8349 */
8350 static void
8351showoptions(all, opt_flags)
8352 int all;
8353 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
8354{
8355 struct vimoption *p;
8356 int col;
8357 int isterm;
8358 char_u *varp;
8359 struct vimoption **items;
8360 int item_count;
8361 int run;
8362 int row, rows;
8363 int cols;
8364 int i;
8365 int len;
8366
8367#define INC 20
8368#define GAP 3
8369
8370 items = (struct vimoption **)alloc((unsigned)(sizeof(struct vimoption *) *
8371 PARAM_COUNT));
8372 if (items == NULL)
8373 return;
8374
8375 /* Highlight title */
8376 if (all == 2)
8377 MSG_PUTS_TITLE(_("\n--- Terminal codes ---"));
8378 else if (opt_flags & OPT_GLOBAL)
8379 MSG_PUTS_TITLE(_("\n--- Global option values ---"));
8380 else if (opt_flags & OPT_LOCAL)
8381 MSG_PUTS_TITLE(_("\n--- Local option values ---"));
8382 else
8383 MSG_PUTS_TITLE(_("\n--- Options ---"));
8384
8385 /*
8386 * do the loop two times:
8387 * 1. display the short items
8388 * 2. display the long items (only strings and numbers)
8389 */
8390 for (run = 1; run <= 2 && !got_int; ++run)
8391 {
8392 /*
8393 * collect the items in items[]
8394 */
8395 item_count = 0;
8396 for (p = &options[0]; p->fullname != NULL; p++)
8397 {
8398 varp = NULL;
8399 isterm = istermoption(p);
8400 if (opt_flags != 0)
8401 {
8402 if (p->indir != PV_NONE && !isterm)
8403 varp = get_varp_scope(p, opt_flags);
8404 }
8405 else
8406 varp = get_varp(p);
8407 if (varp != NULL
8408 && ((all == 2 && isterm)
8409 || (all == 1 && !isterm)
8410 || (all == 0 && !optval_default(p, varp))))
8411 {
8412 if (p->flags & P_BOOL)
8413 len = 1; /* a toggle option fits always */
8414 else
8415 {
8416 option_value2string(p, opt_flags);
8417 len = (int)STRLEN(p->fullname) + vim_strsize(NameBuff) + 1;
8418 }
8419 if ((len <= INC - GAP && run == 1) ||
8420 (len > INC - GAP && run == 2))
8421 items[item_count++] = p;
8422 }
8423 }
8424
8425 /*
8426 * display the items
8427 */
8428 if (run == 1)
8429 {
8430 cols = (Columns + GAP - 3) / INC;
8431 if (cols == 0)
8432 cols = 1;
8433 rows = (item_count + cols - 1) / cols;
8434 }
8435 else /* run == 2 */
8436 rows = item_count;
8437 for (row = 0; row < rows && !got_int; ++row)
8438 {
8439 msg_putchar('\n'); /* go to next line */
8440 if (got_int) /* 'q' typed in more */
8441 break;
8442 col = 0;
8443 for (i = row; i < item_count; i += rows)
8444 {
8445 msg_col = col; /* make columns */
8446 showoneopt(items[i], opt_flags);
8447 col += INC;
8448 }
8449 out_flush();
8450 ui_breakcheck();
8451 }
8452 }
8453 vim_free(items);
8454}
8455
8456/*
8457 * Return TRUE if option "p" has its default value.
8458 */
8459 static int
8460optval_default(p, varp)
8461 struct vimoption *p;
8462 char_u *varp;
8463{
8464 int dvi;
8465
8466 if (varp == NULL)
8467 return TRUE; /* hidden option is always at default */
8468 dvi = ((p->flags & P_VI_DEF) || p_cp) ? VI_DEFAULT : VIM_DEFAULT;
8469 if (p->flags & P_NUM)
Bram Moolenaareb3593b2006-04-22 22:33:57 +00008470 return (*(long *)varp == (long)(long_i)p->def_val[dvi]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008471 if (p->flags & P_BOOL)
Bram Moolenaareb3593b2006-04-22 22:33:57 +00008472 /* the cast to long is required for Manx C, long_i is
8473 * needed for MSVC */
8474 return (*(int *)varp == (int)(long)(long_i)p->def_val[dvi]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008475 /* P_STRING */
8476 return (STRCMP(*(char_u **)varp, p->def_val[dvi]) == 0);
8477}
8478
8479/*
8480 * showoneopt: show the value of one option
8481 * must not be called with a hidden option!
8482 */
8483 static void
8484showoneopt(p, opt_flags)
8485 struct vimoption *p;
8486 int opt_flags; /* OPT_LOCAL or OPT_GLOBAL */
8487{
Bram Moolenaar26a60b42005-02-22 08:49:11 +00008488 char_u *varp;
8489 int save_silent = silent_mode;
8490
8491 silent_mode = FALSE;
8492 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008493
8494 varp = get_varp_scope(p, opt_flags);
8495
8496 /* for 'modified' we also need to check if 'ff' or 'fenc' changed. */
8497 if ((p->flags & P_BOOL) && ((int *)varp == &curbuf->b_changed
8498 ? !curbufIsChanged() : !*(int *)varp))
8499 MSG_PUTS("no");
8500 else if ((p->flags & P_BOOL) && *(int *)varp < 0)
8501 MSG_PUTS("--");
8502 else
8503 MSG_PUTS(" ");
8504 MSG_PUTS(p->fullname);
8505 if (!(p->flags & P_BOOL))
8506 {
8507 msg_putchar('=');
8508 /* put value string in NameBuff */
8509 option_value2string(p, opt_flags);
8510 msg_outtrans(NameBuff);
8511 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00008512
8513 silent_mode = save_silent;
8514 info_message = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008515}
8516
8517/*
8518 * Write modified options as ":set" commands to a file.
8519 *
8520 * There are three values for "opt_flags":
8521 * OPT_GLOBAL: Write global option values and fresh values of
8522 * buffer-local options (used for start of a session
8523 * file).
8524 * OPT_GLOBAL + OPT_LOCAL: Idem, add fresh values of window-local options for
8525 * curwin (used for a vimrc file).
8526 * OPT_LOCAL: Write buffer-local option values for curbuf, fresh
8527 * and local values for window-local options of
8528 * curwin. Local values are also written when at the
8529 * default value, because a modeline or autocommand
8530 * may have set them when doing ":edit file" and the
8531 * user has set them back at the default or fresh
8532 * value.
8533 * When "local_only" is TRUE, don't write fresh
8534 * values, only local values (for ":mkview").
8535 * (fresh value = value used for a new buffer or window for a local option).
8536 *
8537 * Return FAIL on error, OK otherwise.
8538 */
8539 int
8540makeset(fd, opt_flags, local_only)
8541 FILE *fd;
8542 int opt_flags;
8543 int local_only;
8544{
8545 struct vimoption *p;
8546 char_u *varp; /* currently used value */
8547 char_u *varp_fresh; /* local value */
8548 char_u *varp_local = NULL; /* fresh value */
8549 char *cmd;
8550 int round;
Bram Moolenaar7fd16022007-09-06 14:35:35 +00008551 int pri;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008552
8553 /*
8554 * The options that don't have a default (terminal name, columns, lines)
8555 * are never written. Terminal options are also not written.
Bram Moolenaar7fd16022007-09-06 14:35:35 +00008556 * Do the loop over "options[]" twice: once for options with the
8557 * P_PRI_MKRC flag and once without.
Bram Moolenaar071d4272004-06-13 20:20:40 +00008558 */
Bram Moolenaar7fd16022007-09-06 14:35:35 +00008559 for (pri = 1; pri >= 0; --pri)
8560 {
8561 for (p = &options[0]; !istermoption(p); p++)
8562 if (!(p->flags & P_NO_MKRC)
8563 && !istermoption(p)
8564 && ((pri == 1) == ((p->flags & P_PRI_MKRC) != 0)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00008565 {
8566 /* skip global option when only doing locals */
8567 if (p->indir == PV_NONE && !(opt_flags & OPT_GLOBAL))
8568 continue;
8569
8570 /* Do not store options like 'bufhidden' and 'syntax' in a vimrc
8571 * file, they are always buffer-specific. */
8572 if ((opt_flags & OPT_GLOBAL) && (p->flags & P_NOGLOB))
8573 continue;
8574
8575 /* Global values are only written when not at the default value. */
8576 varp = get_varp_scope(p, opt_flags);
8577 if ((opt_flags & OPT_GLOBAL) && optval_default(p, varp))
8578 continue;
8579
8580 round = 2;
8581 if (p->indir != PV_NONE)
8582 {
8583 if (p->var == VAR_WIN)
8584 {
8585 /* skip window-local option when only doing globals */
8586 if (!(opt_flags & OPT_LOCAL))
8587 continue;
8588 /* When fresh value of window-local option is not at the
8589 * default, need to write it too. */
8590 if (!(opt_flags & OPT_GLOBAL) && !local_only)
8591 {
8592 varp_fresh = get_varp_scope(p, OPT_GLOBAL);
8593 if (!optval_default(p, varp_fresh))
8594 {
8595 round = 1;
8596 varp_local = varp;
8597 varp = varp_fresh;
8598 }
8599 }
8600 }
8601 }
8602
8603 /* Round 1: fresh value for window-local options.
8604 * Round 2: other values */
8605 for ( ; round <= 2; varp = varp_local, ++round)
8606 {
8607 if (round == 1 || (opt_flags & OPT_GLOBAL))
8608 cmd = "set";
8609 else
8610 cmd = "setlocal";
8611
8612 if (p->flags & P_BOOL)
8613 {
8614 if (put_setbool(fd, cmd, p->fullname, *(int *)varp) == FAIL)
8615 return FAIL;
8616 }
8617 else if (p->flags & P_NUM)
8618 {
8619 if (put_setnum(fd, cmd, p->fullname, (long *)varp) == FAIL)
8620 return FAIL;
8621 }
8622 else /* P_STRING */
8623 {
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00008624#if defined(FEAT_SYN_HL) || defined(FEAT_AUTOCMD)
8625 int do_endif = FALSE;
8626
Bram Moolenaar071d4272004-06-13 20:20:40 +00008627 /* Don't set 'syntax' and 'filetype' again if the value is
8628 * already right, avoids reloading the syntax file. */
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00008629 if (
8630# if defined(FEAT_SYN_HL)
8631 p->indir == PV_SYN
8632# if defined(FEAT_AUTOCMD)
8633 ||
8634# endif
8635# endif
8636# if defined(FEAT_AUTOCMD)
8637 p->indir == PV_FT)
8638# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008639 {
8640 if (fprintf(fd, "if &%s != '%s'", p->fullname,
8641 *(char_u **)(varp)) < 0
8642 || put_eol(fd) < 0)
8643 return FAIL;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00008644 do_endif = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008645 }
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00008646#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008647 if (put_setstring(fd, cmd, p->fullname, (char_u **)varp,
8648 (p->flags & P_EXPAND) != 0) == FAIL)
8649 return FAIL;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00008650#if defined(FEAT_SYN_HL) || defined(FEAT_AUTOCMD)
8651 if (do_endif)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008652 {
8653 if (put_line(fd, "endif") == FAIL)
8654 return FAIL;
8655 }
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00008656#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008657 }
8658 }
8659 }
Bram Moolenaar7fd16022007-09-06 14:35:35 +00008660 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008661 return OK;
8662}
8663
8664#if defined(FEAT_FOLDING) || defined(PROTO)
8665/*
8666 * Generate set commands for the local fold options only. Used when
8667 * 'sessionoptions' or 'viewoptions' contains "folds" but not "options".
8668 */
8669 int
8670makefoldset(fd)
8671 FILE *fd;
8672{
8673 if (put_setstring(fd, "setlocal", "fdm", &curwin->w_p_fdm, FALSE) == FAIL
8674# ifdef FEAT_EVAL
8675 || put_setstring(fd, "setlocal", "fde", &curwin->w_p_fde, FALSE)
8676 == FAIL
8677# endif
8678 || put_setstring(fd, "setlocal", "fmr", &curwin->w_p_fmr, FALSE)
8679 == FAIL
8680 || put_setstring(fd, "setlocal", "fdi", &curwin->w_p_fdi, FALSE)
8681 == FAIL
8682 || put_setnum(fd, "setlocal", "fdl", &curwin->w_p_fdl) == FAIL
8683 || put_setnum(fd, "setlocal", "fml", &curwin->w_p_fml) == FAIL
8684 || put_setnum(fd, "setlocal", "fdn", &curwin->w_p_fdn) == FAIL
8685 || put_setbool(fd, "setlocal", "fen", curwin->w_p_fen) == FAIL
8686 )
8687 return FAIL;
8688
8689 return OK;
8690}
8691#endif
8692
8693 static int
8694put_setstring(fd, cmd, name, valuep, expand)
8695 FILE *fd;
8696 char *cmd;
8697 char *name;
8698 char_u **valuep;
8699 int expand;
8700{
8701 char_u *s;
8702 char_u buf[MAXPATHL];
8703
8704 if (fprintf(fd, "%s %s=", cmd, name) < 0)
8705 return FAIL;
8706 if (*valuep != NULL)
8707 {
8708 /* Output 'pastetoggle' as key names. For other
8709 * options some characters have to be escaped with
8710 * CTRL-V or backslash */
8711 if (valuep == &p_pt)
8712 {
8713 s = *valuep;
8714 while (*s != NUL)
8715 if (fputs((char *)str2special(&s, FALSE), fd) < 0)
8716 return FAIL;
8717 }
8718 else if (expand)
8719 {
8720 home_replace(NULL, *valuep, buf, MAXPATHL, FALSE);
8721 if (put_escstr(fd, buf, 2) == FAIL)
8722 return FAIL;
8723 }
8724 else if (put_escstr(fd, *valuep, 2) == FAIL)
8725 return FAIL;
8726 }
8727 if (put_eol(fd) < 0)
8728 return FAIL;
8729 return OK;
8730}
8731
8732 static int
8733put_setnum(fd, cmd, name, valuep)
8734 FILE *fd;
8735 char *cmd;
8736 char *name;
8737 long *valuep;
8738{
8739 long wc;
8740
8741 if (fprintf(fd, "%s %s=", cmd, name) < 0)
8742 return FAIL;
8743 if (wc_use_keyname((char_u *)valuep, &wc))
8744 {
8745 /* print 'wildchar' and 'wildcharm' as a key name */
8746 if (fputs((char *)get_special_key_name((int)wc, 0), fd) < 0)
8747 return FAIL;
8748 }
8749 else if (fprintf(fd, "%ld", *valuep) < 0)
8750 return FAIL;
8751 if (put_eol(fd) < 0)
8752 return FAIL;
8753 return OK;
8754}
8755
8756 static int
8757put_setbool(fd, cmd, name, value)
8758 FILE *fd;
8759 char *cmd;
8760 char *name;
8761 int value;
8762{
Bram Moolenaar893de922007-10-02 18:40:57 +00008763 if (value < 0) /* global/local option using global value */
8764 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008765 if (fprintf(fd, "%s %s%s", cmd, value ? "" : "no", name) < 0
8766 || put_eol(fd) < 0)
8767 return FAIL;
8768 return OK;
8769}
8770
8771/*
8772 * Clear all the terminal options.
8773 * If the option has been allocated, free the memory.
8774 * Terminal options are never hidden or indirect.
8775 */
8776 void
8777clear_termoptions()
8778{
Bram Moolenaar071d4272004-06-13 20:20:40 +00008779 /*
8780 * Reset a few things before clearing the old options. This may cause
8781 * outputting a few things that the terminal doesn't understand, but the
8782 * screen will be cleared later, so this is OK.
8783 */
8784#ifdef FEAT_MOUSE_TTY
8785 mch_setmouse(FALSE); /* switch mouse off */
8786#endif
8787#ifdef FEAT_TITLE
8788 mch_restore_title(3); /* restore window titles */
8789#endif
8790#if defined(FEAT_XCLIPBOARD) && defined(FEAT_GUI)
8791 /* When starting the GUI close the display opened for the clipboard.
8792 * After restoring the title, because that will need the display. */
8793 if (gui.starting)
8794 clear_xterm_clip();
8795#endif
8796#ifdef WIN3264
8797 /*
8798 * Check if this is allowed now.
8799 */
8800 if (can_end_termcap_mode(FALSE) == TRUE)
8801#endif
8802 stoptermcap(); /* stop termcap mode */
8803
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00008804 free_termoptions();
8805}
8806
8807 void
8808free_termoptions()
8809{
8810 struct vimoption *p;
8811
Bram Moolenaar071d4272004-06-13 20:20:40 +00008812 for (p = &options[0]; p->fullname != NULL; p++)
8813 if (istermoption(p))
8814 {
8815 if (p->flags & P_ALLOCED)
8816 free_string_option(*(char_u **)(p->var));
8817 if (p->flags & P_DEF_ALLOCED)
8818 free_string_option(p->def_val[VI_DEFAULT]);
8819 *(char_u **)(p->var) = empty_option;
8820 p->def_val[VI_DEFAULT] = empty_option;
8821 p->flags &= ~(P_ALLOCED|P_DEF_ALLOCED);
8822 }
8823 clear_termcodes();
8824}
8825
8826/*
8827 * Set the terminal option defaults to the current value.
8828 * Used after setting the terminal name.
8829 */
8830 void
8831set_term_defaults()
8832{
8833 struct vimoption *p;
8834
8835 for (p = &options[0]; p->fullname != NULL; p++)
8836 {
8837 if (istermoption(p) && p->def_val[VI_DEFAULT] != *(char_u **)(p->var))
8838 {
8839 if (p->flags & P_DEF_ALLOCED)
8840 {
8841 free_string_option(p->def_val[VI_DEFAULT]);
8842 p->flags &= ~P_DEF_ALLOCED;
8843 }
8844 p->def_val[VI_DEFAULT] = *(char_u **)(p->var);
8845 if (p->flags & P_ALLOCED)
8846 {
8847 p->flags |= P_DEF_ALLOCED;
8848 p->flags &= ~P_ALLOCED; /* don't free the value now */
8849 }
8850 }
8851 }
8852}
8853
8854/*
8855 * return TRUE if 'p' starts with 't_'
8856 */
8857 static int
8858istermoption(p)
8859 struct vimoption *p;
8860{
8861 return (p->fullname[0] == 't' && p->fullname[1] == '_');
8862}
8863
8864/*
8865 * Compute columns for ruler and shown command. 'sc_col' is also used to
8866 * decide what the maximum length of a message on the status line can be.
8867 * If there is a status line for the last window, 'sc_col' is independent
8868 * of 'ru_col'.
8869 */
8870
8871#define COL_RULER 17 /* columns needed by standard ruler */
8872
8873 void
8874comp_col()
8875{
8876#if defined(FEAT_CMDL_INFO) && defined(FEAT_WINDOWS)
8877 int last_has_status = (p_ls == 2 || (p_ls == 1 && firstwin != lastwin));
8878
8879 sc_col = 0;
8880 ru_col = 0;
8881 if (p_ru)
8882 {
8883#ifdef FEAT_STL_OPT
8884 ru_col = (ru_wid ? ru_wid : COL_RULER) + 1;
8885#else
8886 ru_col = COL_RULER + 1;
8887#endif
8888 /* no last status line, adjust sc_col */
8889 if (!last_has_status)
8890 sc_col = ru_col;
8891 }
8892 if (p_sc)
8893 {
8894 sc_col += SHOWCMD_COLS;
8895 if (!p_ru || last_has_status) /* no need for separating space */
8896 ++sc_col;
8897 }
8898 sc_col = Columns - sc_col;
8899 ru_col = Columns - ru_col;
8900 if (sc_col <= 0) /* screen too narrow, will become a mess */
8901 sc_col = 1;
8902 if (ru_col <= 0)
8903 ru_col = 1;
8904#else
8905 sc_col = Columns;
8906 ru_col = Columns;
8907#endif
8908}
8909
8910/*
8911 * Get pointer to option variable, depending on local or global scope.
8912 */
8913 static char_u *
8914get_varp_scope(p, opt_flags)
8915 struct vimoption *p;
8916 int opt_flags;
8917{
8918 if ((opt_flags & OPT_GLOBAL) && p->indir != PV_NONE)
8919 {
8920 if (p->var == VAR_WIN)
8921 return (char_u *)GLOBAL_WO(get_varp(p));
8922 return p->var;
8923 }
Bram Moolenaara23ccb82006-02-27 00:08:02 +00008924 if ((opt_flags & OPT_LOCAL) && ((int)p->indir & PV_BOTH))
Bram Moolenaar071d4272004-06-13 20:20:40 +00008925 {
8926 switch ((int)p->indir)
8927 {
8928#ifdef FEAT_QUICKFIX
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00008929 case PV_EFM: return (char_u *)&(curbuf->b_p_efm);
8930 case PV_GP: return (char_u *)&(curbuf->b_p_gp);
8931 case PV_MP: return (char_u *)&(curbuf->b_p_mp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008932#endif
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00008933 case PV_EP: return (char_u *)&(curbuf->b_p_ep);
8934 case PV_KP: return (char_u *)&(curbuf->b_p_kp);
8935 case PV_PATH: return (char_u *)&(curbuf->b_p_path);
Bram Moolenaara23ccb82006-02-27 00:08:02 +00008936 case PV_AR: return (char_u *)&(curbuf->b_p_ar);
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00008937 case PV_TAGS: return (char_u *)&(curbuf->b_p_tags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008938#ifdef FEAT_FIND_ID
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00008939 case PV_DEF: return (char_u *)&(curbuf->b_p_def);
8940 case PV_INC: return (char_u *)&(curbuf->b_p_inc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008941#endif
8942#ifdef FEAT_INS_EXPAND
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00008943 case PV_DICT: return (char_u *)&(curbuf->b_p_dict);
8944 case PV_TSR: return (char_u *)&(curbuf->b_p_tsr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008945#endif
Bram Moolenaar9b2200a2006-03-20 21:55:45 +00008946#if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
8947 case PV_BEXPR: return (char_u *)&(curbuf->b_p_bexpr);
8948#endif
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008949#ifdef FEAT_STL_OPT
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00008950 case PV_STL: return (char_u *)&(curwin->w_p_stl);
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008951#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008952 }
8953 return NULL; /* "cannot happen" */
8954 }
8955 return get_varp(p);
8956}
8957
8958/*
8959 * Get pointer to option variable.
8960 */
8961 static char_u *
8962get_varp(p)
8963 struct vimoption *p;
8964{
8965 /* hidden option, always return NULL */
8966 if (p->var == NULL)
8967 return NULL;
8968
8969 switch ((int)p->indir)
8970 {
8971 case PV_NONE: return p->var;
8972
8973 /* global option with local value: use local value if it's been set */
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00008974 case PV_EP: return *curbuf->b_p_ep != NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00008975 ? (char_u *)&curbuf->b_p_ep : p->var;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00008976 case PV_KP: return *curbuf->b_p_kp != NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00008977 ? (char_u *)&curbuf->b_p_kp : p->var;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00008978 case PV_PATH: return *curbuf->b_p_path != NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00008979 ? (char_u *)&(curbuf->b_p_path) : p->var;
Bram Moolenaara23ccb82006-02-27 00:08:02 +00008980 case PV_AR: return curbuf->b_p_ar >= 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00008981 ? (char_u *)&(curbuf->b_p_ar) : p->var;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00008982 case PV_TAGS: return *curbuf->b_p_tags != NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00008983 ? (char_u *)&(curbuf->b_p_tags) : p->var;
8984#ifdef FEAT_FIND_ID
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00008985 case PV_DEF: return *curbuf->b_p_def != NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00008986 ? (char_u *)&(curbuf->b_p_def) : p->var;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00008987 case PV_INC: return *curbuf->b_p_inc != NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00008988 ? (char_u *)&(curbuf->b_p_inc) : p->var;
8989#endif
8990#ifdef FEAT_INS_EXPAND
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00008991 case PV_DICT: return *curbuf->b_p_dict != NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00008992 ? (char_u *)&(curbuf->b_p_dict) : p->var;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00008993 case PV_TSR: return *curbuf->b_p_tsr != NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00008994 ? (char_u *)&(curbuf->b_p_tsr) : p->var;
8995#endif
8996#ifdef FEAT_QUICKFIX
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00008997 case PV_EFM: return *curbuf->b_p_efm != NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00008998 ? (char_u *)&(curbuf->b_p_efm) : p->var;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00008999 case PV_GP: return *curbuf->b_p_gp != NUL
9000 ? (char_u *)&(curbuf->b_p_gp) : p->var;
9001 case PV_MP: return *curbuf->b_p_mp != NUL
9002 ? (char_u *)&(curbuf->b_p_mp) : p->var;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009003#endif
Bram Moolenaar9b2200a2006-03-20 21:55:45 +00009004#if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9005 case PV_BEXPR: return *curbuf->b_p_bexpr != NUL
9006 ? (char_u *)&(curbuf->b_p_bexpr) : p->var;
9007#endif
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00009008#ifdef FEAT_STL_OPT
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00009009 case PV_STL: return *curwin->w_p_stl != NUL
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00009010 ? (char_u *)&(curwin->w_p_stl) : p->var;
9011#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009012
9013#ifdef FEAT_ARABIC
9014 case PV_ARAB: return (char_u *)&(curwin->w_p_arab);
9015#endif
9016 case PV_LIST: return (char_u *)&(curwin->w_p_list);
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00009017#ifdef FEAT_SPELL
Bram Moolenaar217ad922005-03-20 22:37:15 +00009018 case PV_SPELL: return (char_u *)&(curwin->w_p_spell);
9019#endif
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00009020#ifdef FEAT_SYN_HL
9021 case PV_CUC: return (char_u *)&(curwin->w_p_cuc);
9022 case PV_CUL: return (char_u *)&(curwin->w_p_cul);
9023#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009024#ifdef FEAT_DIFF
9025 case PV_DIFF: return (char_u *)&(curwin->w_p_diff);
9026#endif
9027#ifdef FEAT_FOLDING
9028 case PV_FDC: return (char_u *)&(curwin->w_p_fdc);
9029 case PV_FEN: return (char_u *)&(curwin->w_p_fen);
9030 case PV_FDI: return (char_u *)&(curwin->w_p_fdi);
9031 case PV_FDL: return (char_u *)&(curwin->w_p_fdl);
9032 case PV_FDM: return (char_u *)&(curwin->w_p_fdm);
9033 case PV_FML: return (char_u *)&(curwin->w_p_fml);
9034 case PV_FDN: return (char_u *)&(curwin->w_p_fdn);
9035# ifdef FEAT_EVAL
9036 case PV_FDE: return (char_u *)&(curwin->w_p_fde);
9037 case PV_FDT: return (char_u *)&(curwin->w_p_fdt);
9038# endif
9039 case PV_FMR: return (char_u *)&(curwin->w_p_fmr);
9040#endif
9041 case PV_NU: return (char_u *)&(curwin->w_p_nu);
Bram Moolenaar592e0a22004-07-03 16:05:59 +00009042#ifdef FEAT_LINEBREAK
9043 case PV_NUW: return (char_u *)&(curwin->w_p_nuw);
9044#endif
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00009045#ifdef FEAT_WINDOWS
Bram Moolenaar071d4272004-06-13 20:20:40 +00009046 case PV_WFH: return (char_u *)&(curwin->w_p_wfh);
9047#endif
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00009048#ifdef FEAT_VERTSPLIT
9049 case PV_WFW: return (char_u *)&(curwin->w_p_wfw);
9050#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009051#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
9052 case PV_PVW: return (char_u *)&(curwin->w_p_pvw);
9053#endif
9054#ifdef FEAT_RIGHTLEFT
9055 case PV_RL: return (char_u *)&(curwin->w_p_rl);
9056 case PV_RLC: return (char_u *)&(curwin->w_p_rlc);
9057#endif
9058 case PV_SCROLL: return (char_u *)&(curwin->w_p_scr);
9059 case PV_WRAP: return (char_u *)&(curwin->w_p_wrap);
9060#ifdef FEAT_LINEBREAK
9061 case PV_LBR: return (char_u *)&(curwin->w_p_lbr);
9062#endif
9063#ifdef FEAT_SCROLLBIND
9064 case PV_SCBIND: return (char_u *)&(curwin->w_p_scb);
9065#endif
9066
9067 case PV_AI: return (char_u *)&(curbuf->b_p_ai);
9068 case PV_BIN: return (char_u *)&(curbuf->b_p_bin);
9069#ifdef FEAT_MBYTE
9070 case PV_BOMB: return (char_u *)&(curbuf->b_p_bomb);
9071#endif
9072#if defined(FEAT_QUICKFIX)
9073 case PV_BH: return (char_u *)&(curbuf->b_p_bh);
9074 case PV_BT: return (char_u *)&(curbuf->b_p_bt);
9075#endif
9076 case PV_BL: return (char_u *)&(curbuf->b_p_bl);
9077 case PV_CI: return (char_u *)&(curbuf->b_p_ci);
9078#ifdef FEAT_CINDENT
9079 case PV_CIN: return (char_u *)&(curbuf->b_p_cin);
9080 case PV_CINK: return (char_u *)&(curbuf->b_p_cink);
9081 case PV_CINO: return (char_u *)&(curbuf->b_p_cino);
9082#endif
9083#if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
9084 case PV_CINW: return (char_u *)&(curbuf->b_p_cinw);
9085#endif
9086#ifdef FEAT_COMMENTS
9087 case PV_COM: return (char_u *)&(curbuf->b_p_com);
9088#endif
9089#ifdef FEAT_FOLDING
9090 case PV_CMS: return (char_u *)&(curbuf->b_p_cms);
9091#endif
9092#ifdef FEAT_INS_EXPAND
9093 case PV_CPT: return (char_u *)&(curbuf->b_p_cpt);
9094#endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00009095#ifdef FEAT_COMPL_FUNC
9096 case PV_CFU: return (char_u *)&(curbuf->b_p_cfu);
Bram Moolenaare344bea2005-09-01 20:46:49 +00009097 case PV_OFU: return (char_u *)&(curbuf->b_p_ofu);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00009098#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009099 case PV_EOL: return (char_u *)&(curbuf->b_p_eol);
9100 case PV_ET: return (char_u *)&(curbuf->b_p_et);
9101#ifdef FEAT_MBYTE
9102 case PV_FENC: return (char_u *)&(curbuf->b_p_fenc);
9103#endif
9104 case PV_FF: return (char_u *)&(curbuf->b_p_ff);
9105#ifdef FEAT_AUTOCMD
9106 case PV_FT: return (char_u *)&(curbuf->b_p_ft);
9107#endif
9108 case PV_FO: return (char_u *)&(curbuf->b_p_fo);
Bram Moolenaar86b68352004-12-27 21:59:20 +00009109 case PV_FLP: return (char_u *)&(curbuf->b_p_flp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009110 case PV_IMI: return (char_u *)&(curbuf->b_p_iminsert);
9111 case PV_IMS: return (char_u *)&(curbuf->b_p_imsearch);
9112 case PV_INF: return (char_u *)&(curbuf->b_p_inf);
9113 case PV_ISK: return (char_u *)&(curbuf->b_p_isk);
9114#ifdef FEAT_FIND_ID
9115# ifdef FEAT_EVAL
9116 case PV_INEX: return (char_u *)&(curbuf->b_p_inex);
9117# endif
9118#endif
9119#if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
9120 case PV_INDE: return (char_u *)&(curbuf->b_p_inde);
9121 case PV_INDK: return (char_u *)&(curbuf->b_p_indk);
9122#endif
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00009123#ifdef FEAT_EVAL
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00009124 case PV_FEX: return (char_u *)&(curbuf->b_p_fex);
9125#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009126#ifdef FEAT_CRYPT
9127 case PV_KEY: return (char_u *)&(curbuf->b_p_key);
9128#endif
9129#ifdef FEAT_LISP
9130 case PV_LISP: return (char_u *)&(curbuf->b_p_lisp);
9131#endif
9132 case PV_ML: return (char_u *)&(curbuf->b_p_ml);
9133 case PV_MPS: return (char_u *)&(curbuf->b_p_mps);
9134 case PV_MA: return (char_u *)&(curbuf->b_p_ma);
9135 case PV_MOD: return (char_u *)&(curbuf->b_changed);
9136 case PV_NF: return (char_u *)&(curbuf->b_p_nf);
9137#ifdef FEAT_OSFILETYPE
9138 case PV_OFT: return (char_u *)&(curbuf->b_p_oft);
9139#endif
9140 case PV_PI: return (char_u *)&(curbuf->b_p_pi);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00009141#ifdef FEAT_TEXTOBJ
9142 case PV_QE: return (char_u *)&(curbuf->b_p_qe);
9143#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009144 case PV_RO: return (char_u *)&(curbuf->b_p_ro);
9145#ifdef FEAT_SMARTINDENT
9146 case PV_SI: return (char_u *)&(curbuf->b_p_si);
9147#endif
9148#ifndef SHORT_FNAME
9149 case PV_SN: return (char_u *)&(curbuf->b_p_sn);
9150#endif
9151 case PV_STS: return (char_u *)&(curbuf->b_p_sts);
9152#ifdef FEAT_SEARCHPATH
9153 case PV_SUA: return (char_u *)&(curbuf->b_p_sua);
9154#endif
9155 case PV_SWF: return (char_u *)&(curbuf->b_p_swf);
9156#ifdef FEAT_SYN_HL
Bram Moolenaar3b56eb32005-07-11 22:40:32 +00009157 case PV_SMC: return (char_u *)&(curbuf->b_p_smc);
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00009158 case PV_SYN: return (char_u *)&(curbuf->b_p_syn);
9159#endif
9160#ifdef FEAT_SPELL
Bram Moolenaar0d9c26d2005-07-02 23:19:16 +00009161 case PV_SPC: return (char_u *)&(curbuf->b_p_spc);
Bram Moolenaar82cf9b62005-06-07 21:09:25 +00009162 case PV_SPF: return (char_u *)&(curbuf->b_p_spf);
Bram Moolenaar217ad922005-03-20 22:37:15 +00009163 case PV_SPL: return (char_u *)&(curbuf->b_p_spl);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009164#endif
9165 case PV_SW: return (char_u *)&(curbuf->b_p_sw);
9166 case PV_TS: return (char_u *)&(curbuf->b_p_ts);
9167 case PV_TW: return (char_u *)&(curbuf->b_p_tw);
9168 case PV_TX: return (char_u *)&(curbuf->b_p_tx);
9169 case PV_WM: return (char_u *)&(curbuf->b_p_wm);
9170#ifdef FEAT_KEYMAP
9171 case PV_KMAP: return (char_u *)&(curbuf->b_p_keymap);
9172#endif
9173 default: EMSG(_("E356: get_varp ERROR"));
9174 }
9175 /* always return a valid pointer to avoid a crash! */
9176 return (char_u *)&(curbuf->b_p_wm);
9177}
9178
9179/*
9180 * Get the value of 'equalprg', either the buffer-local one or the global one.
9181 */
9182 char_u *
9183get_equalprg()
9184{
9185 if (*curbuf->b_p_ep == NUL)
9186 return p_ep;
9187 return curbuf->b_p_ep;
9188}
9189
9190#if defined(FEAT_WINDOWS) || defined(PROTO)
9191/*
9192 * Copy options from one window to another.
9193 * Used when splitting a window.
9194 */
9195 void
9196win_copy_options(wp_from, wp_to)
9197 win_T *wp_from;
9198 win_T *wp_to;
9199{
9200 copy_winopt(&wp_from->w_onebuf_opt, &wp_to->w_onebuf_opt);
9201 copy_winopt(&wp_from->w_allbuf_opt, &wp_to->w_allbuf_opt);
9202# ifdef FEAT_RIGHTLEFT
9203# ifdef FEAT_FKMAP
9204 /* Is this right? */
9205 wp_to->w_farsi = wp_from->w_farsi;
9206# endif
9207# endif
9208}
9209#endif
9210
9211/*
9212 * Copy the options from one winopt_T to another.
9213 * Doesn't free the old option values in "to", use clear_winopt() for that.
9214 * The 'scroll' option is not copied, because it depends on the window height.
9215 * The 'previewwindow' option is reset, there can be only one preview window.
9216 */
9217 void
9218copy_winopt(from, to)
9219 winopt_T *from;
9220 winopt_T *to;
9221{
9222#ifdef FEAT_ARABIC
9223 to->wo_arab = from->wo_arab;
9224#endif
9225 to->wo_list = from->wo_list;
9226 to->wo_nu = from->wo_nu;
Bram Moolenaar592e0a22004-07-03 16:05:59 +00009227#ifdef FEAT_LINEBREAK
9228 to->wo_nuw = from->wo_nuw;
9229#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009230#ifdef FEAT_RIGHTLEFT
9231 to->wo_rl = from->wo_rl;
9232 to->wo_rlc = vim_strsave(from->wo_rlc);
9233#endif
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00009234#ifdef FEAT_STL_OPT
9235 to->wo_stl = vim_strsave(from->wo_stl);
9236#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009237 to->wo_wrap = from->wo_wrap;
9238#ifdef FEAT_LINEBREAK
9239 to->wo_lbr = from->wo_lbr;
9240#endif
9241#ifdef FEAT_SCROLLBIND
9242 to->wo_scb = from->wo_scb;
9243#endif
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00009244#ifdef FEAT_SPELL
Bram Moolenaar217ad922005-03-20 22:37:15 +00009245 to->wo_spell = from->wo_spell;
9246#endif
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00009247#ifdef FEAT_SYN_HL
9248 to->wo_cuc = from->wo_cuc;
9249 to->wo_cul = from->wo_cul;
9250#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009251#ifdef FEAT_DIFF
9252 to->wo_diff = from->wo_diff;
9253#endif
9254#ifdef FEAT_FOLDING
9255 to->wo_fdc = from->wo_fdc;
9256 to->wo_fen = from->wo_fen;
9257 to->wo_fdi = vim_strsave(from->wo_fdi);
9258 to->wo_fml = from->wo_fml;
9259 to->wo_fdl = from->wo_fdl;
9260 to->wo_fdm = vim_strsave(from->wo_fdm);
9261 to->wo_fdn = from->wo_fdn;
9262# ifdef FEAT_EVAL
9263 to->wo_fde = vim_strsave(from->wo_fde);
9264 to->wo_fdt = vim_strsave(from->wo_fdt);
9265# endif
9266 to->wo_fmr = vim_strsave(from->wo_fmr);
9267#endif
9268 check_winopt(to); /* don't want NULL pointers */
9269}
9270
9271/*
9272 * Check string options in a window for a NULL value.
9273 */
9274 void
9275check_win_options(win)
9276 win_T *win;
9277{
9278 check_winopt(&win->w_onebuf_opt);
9279 check_winopt(&win->w_allbuf_opt);
9280}
9281
9282/*
9283 * Check for NULL pointers in a winopt_T and replace them with empty_option.
9284 */
9285/*ARGSUSED*/
9286 void
9287check_winopt(wop)
9288 winopt_T *wop;
9289{
9290#ifdef FEAT_FOLDING
9291 check_string_option(&wop->wo_fdi);
9292 check_string_option(&wop->wo_fdm);
9293# ifdef FEAT_EVAL
9294 check_string_option(&wop->wo_fde);
9295 check_string_option(&wop->wo_fdt);
9296# endif
9297 check_string_option(&wop->wo_fmr);
9298#endif
9299#ifdef FEAT_RIGHTLEFT
9300 check_string_option(&wop->wo_rlc);
9301#endif
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00009302#ifdef FEAT_STL_OPT
9303 check_string_option(&wop->wo_stl);
9304#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009305}
9306
9307/*
9308 * Free the allocated memory inside a winopt_T.
9309 */
9310/*ARGSUSED*/
9311 void
9312clear_winopt(wop)
9313 winopt_T *wop;
9314{
9315#ifdef FEAT_FOLDING
9316 clear_string_option(&wop->wo_fdi);
9317 clear_string_option(&wop->wo_fdm);
9318# ifdef FEAT_EVAL
9319 clear_string_option(&wop->wo_fde);
9320 clear_string_option(&wop->wo_fdt);
9321# endif
9322 clear_string_option(&wop->wo_fmr);
9323#endif
9324#ifdef FEAT_RIGHTLEFT
9325 clear_string_option(&wop->wo_rlc);
9326#endif
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00009327#ifdef FEAT_STL_OPT
9328 clear_string_option(&wop->wo_stl);
9329#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009330}
9331
9332/*
9333 * Copy global option values to local options for one buffer.
9334 * Used when creating a new buffer and sometimes when entering a buffer.
9335 * flags:
9336 * BCO_ENTER We will enter the buf buffer.
9337 * BCO_ALWAYS Always copy the options, but only set b_p_initialized when
9338 * appropriate.
9339 * BCO_NOHELP Don't copy the values to a help buffer.
9340 */
9341 void
9342buf_copy_options(buf, flags)
9343 buf_T *buf;
9344 int flags;
9345{
9346 int should_copy = TRUE;
9347 char_u *save_p_isk = NULL; /* init for GCC */
9348 int dont_do_help;
9349 int did_isk = FALSE;
9350
9351 /*
9352 * Don't do anything of the buffer is invalid.
9353 */
9354 if (buf == NULL || !buf_valid(buf))
9355 return;
9356
9357 /*
9358 * Skip this when the option defaults have not been set yet. Happens when
9359 * main() allocates the first buffer.
9360 */
9361 if (p_cpo != NULL)
9362 {
9363 /*
9364 * Always copy when entering and 'cpo' contains 'S'.
9365 * Don't copy when already initialized.
9366 * Don't copy when 'cpo' contains 's' and not entering.
9367 * 'S' BCO_ENTER initialized 's' should_copy
9368 * yes yes X X TRUE
9369 * yes no yes X FALSE
9370 * no X yes X FALSE
9371 * X no no yes FALSE
9372 * X no no no TRUE
9373 * no yes no X TRUE
9374 */
9375 if ((vim_strchr(p_cpo, CPO_BUFOPTGLOB) == NULL || !(flags & BCO_ENTER))
9376 && (buf->b_p_initialized
9377 || (!(flags & BCO_ENTER)
9378 && vim_strchr(p_cpo, CPO_BUFOPT) != NULL)))
9379 should_copy = FALSE;
9380
9381 if (should_copy || (flags & BCO_ALWAYS))
9382 {
9383 /* Don't copy the options specific to a help buffer when
9384 * BCO_NOHELP is given or the options were initialized already
9385 * (jumping back to a help file with CTRL-T or CTRL-O) */
9386 dont_do_help = ((flags & BCO_NOHELP) && buf->b_help)
9387 || buf->b_p_initialized;
9388 if (dont_do_help) /* don't free b_p_isk */
9389 {
9390 save_p_isk = buf->b_p_isk;
9391 buf->b_p_isk = NULL;
9392 }
9393 /*
9394 * Always free the allocated strings.
9395 * If not already initialized, set 'readonly' and copy 'fileformat'.
9396 */
9397 if (!buf->b_p_initialized)
9398 {
9399 free_buf_options(buf, TRUE);
9400 buf->b_p_ro = FALSE; /* don't copy readonly */
9401 buf->b_p_tx = p_tx;
9402#ifdef FEAT_MBYTE
9403 buf->b_p_fenc = vim_strsave(p_fenc);
9404#endif
9405 buf->b_p_ff = vim_strsave(p_ff);
9406#if defined(FEAT_QUICKFIX)
9407 buf->b_p_bh = empty_option;
9408 buf->b_p_bt = empty_option;
9409#endif
9410 }
9411 else
9412 free_buf_options(buf, FALSE);
9413
9414 buf->b_p_ai = p_ai;
9415 buf->b_p_ai_nopaste = p_ai_nopaste;
9416 buf->b_p_sw = p_sw;
9417 buf->b_p_tw = p_tw;
9418 buf->b_p_tw_nopaste = p_tw_nopaste;
9419 buf->b_p_tw_nobin = p_tw_nobin;
9420 buf->b_p_wm = p_wm;
9421 buf->b_p_wm_nopaste = p_wm_nopaste;
9422 buf->b_p_wm_nobin = p_wm_nobin;
9423 buf->b_p_bin = p_bin;
Bram Moolenaare8bb2552005-07-08 22:26:47 +00009424#ifdef FEAT_MBYTE
9425 buf->b_p_bomb = p_bomb;
9426#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009427 buf->b_p_et = p_et;
9428 buf->b_p_et_nobin = p_et_nobin;
9429 buf->b_p_ml = p_ml;
9430 buf->b_p_ml_nobin = p_ml_nobin;
9431 buf->b_p_inf = p_inf;
9432 buf->b_p_swf = p_swf;
9433#ifdef FEAT_INS_EXPAND
9434 buf->b_p_cpt = vim_strsave(p_cpt);
9435#endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00009436#ifdef FEAT_COMPL_FUNC
9437 buf->b_p_cfu = vim_strsave(p_cfu);
Bram Moolenaare344bea2005-09-01 20:46:49 +00009438 buf->b_p_ofu = vim_strsave(p_ofu);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00009439#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009440 buf->b_p_sts = p_sts;
9441 buf->b_p_sts_nopaste = p_sts_nopaste;
9442#ifndef SHORT_FNAME
9443 buf->b_p_sn = p_sn;
9444#endif
9445#ifdef FEAT_COMMENTS
9446 buf->b_p_com = vim_strsave(p_com);
9447#endif
9448#ifdef FEAT_FOLDING
9449 buf->b_p_cms = vim_strsave(p_cms);
9450#endif
9451 buf->b_p_fo = vim_strsave(p_fo);
Bram Moolenaar86b68352004-12-27 21:59:20 +00009452 buf->b_p_flp = vim_strsave(p_flp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009453 buf->b_p_nf = vim_strsave(p_nf);
9454 buf->b_p_mps = vim_strsave(p_mps);
9455#ifdef FEAT_SMARTINDENT
9456 buf->b_p_si = p_si;
9457#endif
9458 buf->b_p_ci = p_ci;
9459#ifdef FEAT_CINDENT
9460 buf->b_p_cin = p_cin;
9461 buf->b_p_cink = vim_strsave(p_cink);
9462 buf->b_p_cino = vim_strsave(p_cino);
9463#endif
9464#ifdef FEAT_AUTOCMD
9465 /* Don't copy 'filetype', it must be detected */
9466 buf->b_p_ft = empty_option;
9467#endif
9468#ifdef FEAT_OSFILETYPE
9469 buf->b_p_oft = vim_strsave(p_oft);
9470#endif
9471 buf->b_p_pi = p_pi;
9472#if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
9473 buf->b_p_cinw = vim_strsave(p_cinw);
9474#endif
9475#ifdef FEAT_LISP
9476 buf->b_p_lisp = p_lisp;
9477#endif
9478#ifdef FEAT_SYN_HL
9479 /* Don't copy 'syntax', it must be set */
9480 buf->b_p_syn = empty_option;
Bram Moolenaar3b56eb32005-07-11 22:40:32 +00009481 buf->b_p_smc = p_smc;
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00009482#endif
9483#ifdef FEAT_SPELL
Bram Moolenaar0d9c26d2005-07-02 23:19:16 +00009484 buf->b_p_spc = vim_strsave(p_spc);
Bram Moolenaar0dc065e2005-07-04 22:49:24 +00009485 (void)compile_cap_prog(buf);
Bram Moolenaar82cf9b62005-06-07 21:09:25 +00009486 buf->b_p_spf = vim_strsave(p_spf);
Bram Moolenaar217ad922005-03-20 22:37:15 +00009487 buf->b_p_spl = vim_strsave(p_spl);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009488#endif
9489#if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
9490 buf->b_p_inde = vim_strsave(p_inde);
9491 buf->b_p_indk = vim_strsave(p_indk);
9492#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00009493#if defined(FEAT_EVAL)
9494 buf->b_p_fex = vim_strsave(p_fex);
9495#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009496#ifdef FEAT_CRYPT
9497 buf->b_p_key = vim_strsave(p_key);
9498#endif
9499#ifdef FEAT_SEARCHPATH
9500 buf->b_p_sua = vim_strsave(p_sua);
9501#endif
9502#ifdef FEAT_KEYMAP
9503 buf->b_p_keymap = vim_strsave(p_keymap);
9504 buf->b_kmap_state |= KEYMAP_INIT;
9505#endif
9506 /* This isn't really an option, but copying the langmap and IME
9507 * state from the current buffer is better than resetting it. */
9508 buf->b_p_iminsert = p_iminsert;
9509 buf->b_p_imsearch = p_imsearch;
9510
9511 /* options that are normally global but also have a local value
9512 * are not copied, start using the global value */
9513 buf->b_p_ar = -1;
9514#ifdef FEAT_QUICKFIX
9515 buf->b_p_gp = empty_option;
9516 buf->b_p_mp = empty_option;
9517 buf->b_p_efm = empty_option;
9518#endif
9519 buf->b_p_ep = empty_option;
9520 buf->b_p_kp = empty_option;
9521 buf->b_p_path = empty_option;
9522 buf->b_p_tags = empty_option;
9523#ifdef FEAT_FIND_ID
9524 buf->b_p_def = empty_option;
9525 buf->b_p_inc = empty_option;
9526# ifdef FEAT_EVAL
9527 buf->b_p_inex = vim_strsave(p_inex);
9528# endif
9529#endif
9530#ifdef FEAT_INS_EXPAND
9531 buf->b_p_dict = empty_option;
9532 buf->b_p_tsr = empty_option;
9533#endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00009534#ifdef FEAT_TEXTOBJ
9535 buf->b_p_qe = vim_strsave(p_qe);
9536#endif
Bram Moolenaar9b2200a2006-03-20 21:55:45 +00009537#if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
9538 buf->b_p_bexpr = empty_option;
9539#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009540
9541 /*
9542 * Don't copy the options set by ex_help(), use the saved values,
9543 * when going from a help buffer to a non-help buffer.
9544 * Don't touch these at all when BCO_NOHELP is used and going from
9545 * or to a help buffer.
9546 */
9547 if (dont_do_help)
9548 buf->b_p_isk = save_p_isk;
9549 else
9550 {
9551 buf->b_p_isk = vim_strsave(p_isk);
9552 did_isk = TRUE;
9553 buf->b_p_ts = p_ts;
9554 buf->b_help = FALSE;
9555#ifdef FEAT_QUICKFIX
9556 if (buf->b_p_bt[0] == 'h')
9557 clear_string_option(&buf->b_p_bt);
9558#endif
9559 buf->b_p_ma = p_ma;
9560 }
9561 }
9562
9563 /*
9564 * When the options should be copied (ignoring BCO_ALWAYS), set the
9565 * flag that indicates that the options have been initialized.
9566 */
9567 if (should_copy)
9568 buf->b_p_initialized = TRUE;
9569 }
9570
9571 check_buf_options(buf); /* make sure we don't have NULLs */
9572 if (did_isk)
9573 (void)buf_init_chartab(buf, FALSE);
9574}
9575
9576/*
9577 * Reset the 'modifiable' option and its default value.
9578 */
9579 void
9580reset_modifiable()
9581{
9582 int opt_idx;
9583
9584 curbuf->b_p_ma = FALSE;
9585 p_ma = FALSE;
9586 opt_idx = findoption((char_u *)"ma");
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00009587 if (opt_idx >= 0)
9588 options[opt_idx].def_val[VI_DEFAULT] = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009589}
9590
9591/*
9592 * Set the global value for 'iminsert' to the local value.
9593 */
9594 void
9595set_iminsert_global()
9596{
9597 p_iminsert = curbuf->b_p_iminsert;
9598}
9599
9600/*
9601 * Set the global value for 'imsearch' to the local value.
9602 */
9603 void
9604set_imsearch_global()
9605{
9606 p_imsearch = curbuf->b_p_imsearch;
9607}
9608
9609#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
9610static int expand_option_idx = -1;
9611static char_u expand_option_name[5] = {'t', '_', NUL, NUL, NUL};
9612static int expand_option_flags = 0;
9613
9614 void
9615set_context_in_set_cmd(xp, arg, opt_flags)
9616 expand_T *xp;
9617 char_u *arg;
9618 int opt_flags; /* OPT_GLOBAL and/or OPT_LOCAL */
9619{
9620 int nextchar;
9621 long_u flags = 0; /* init for GCC */
9622 int opt_idx = 0; /* init for GCC */
9623 char_u *p;
9624 char_u *s;
9625 int is_term_option = FALSE;
9626 int key;
9627
9628 expand_option_flags = opt_flags;
9629
9630 xp->xp_context = EXPAND_SETTINGS;
9631 if (*arg == NUL)
9632 {
9633 xp->xp_pattern = arg;
9634 return;
9635 }
9636 p = arg + STRLEN(arg) - 1;
9637 if (*p == ' ' && *(p - 1) != '\\')
9638 {
9639 xp->xp_pattern = p + 1;
9640 return;
9641 }
9642 while (p > arg)
9643 {
9644 s = p;
9645 /* count number of backslashes before ' ' or ',' */
9646 if (*p == ' ' || *p == ',')
9647 {
9648 while (s > arg && *(s - 1) == '\\')
9649 --s;
9650 }
9651 /* break at a space with an even number of backslashes */
9652 if (*p == ' ' && ((p - s) & 1) == 0)
9653 {
9654 ++p;
9655 break;
9656 }
9657 --p;
9658 }
9659 if (STRNCMP(p, "no", 2) == 0)
9660 {
9661 xp->xp_context = EXPAND_BOOL_SETTINGS;
9662 p += 2;
9663 }
9664 if (STRNCMP(p, "inv", 3) == 0)
9665 {
9666 xp->xp_context = EXPAND_BOOL_SETTINGS;
9667 p += 3;
9668 }
9669 xp->xp_pattern = arg = p;
9670 if (*arg == '<')
9671 {
9672 while (*p != '>')
9673 if (*p++ == NUL) /* expand terminal option name */
9674 return;
9675 key = get_special_key_code(arg + 1);
9676 if (key == 0) /* unknown name */
9677 {
9678 xp->xp_context = EXPAND_NOTHING;
9679 return;
9680 }
9681 nextchar = *++p;
9682 is_term_option = TRUE;
9683 expand_option_name[2] = KEY2TERMCAP0(key);
9684 expand_option_name[3] = KEY2TERMCAP1(key);
9685 }
9686 else
9687 {
9688 if (p[0] == 't' && p[1] == '_')
9689 {
9690 p += 2;
9691 if (*p != NUL)
9692 ++p;
9693 if (*p == NUL)
9694 return; /* expand option name */
9695 nextchar = *++p;
9696 is_term_option = TRUE;
9697 expand_option_name[2] = p[-2];
9698 expand_option_name[3] = p[-1];
9699 }
9700 else
9701 {
9702 /* Allow * wildcard */
9703 while (ASCII_ISALNUM(*p) || *p == '_' || *p == '*')
9704 p++;
9705 if (*p == NUL)
9706 return;
9707 nextchar = *p;
9708 *p = NUL;
9709 opt_idx = findoption(arg);
9710 *p = nextchar;
9711 if (opt_idx == -1 || options[opt_idx].var == NULL)
9712 {
9713 xp->xp_context = EXPAND_NOTHING;
9714 return;
9715 }
9716 flags = options[opt_idx].flags;
9717 if (flags & P_BOOL)
9718 {
9719 xp->xp_context = EXPAND_NOTHING;
9720 return;
9721 }
9722 }
9723 }
9724 /* handle "-=" and "+=" */
9725 if ((nextchar == '-' || nextchar == '+' || nextchar == '^') && p[1] == '=')
9726 {
9727 ++p;
9728 nextchar = '=';
9729 }
9730 if ((nextchar != '=' && nextchar != ':')
9731 || xp->xp_context == EXPAND_BOOL_SETTINGS)
9732 {
9733 xp->xp_context = EXPAND_UNSUCCESSFUL;
9734 return;
9735 }
9736 if (xp->xp_context != EXPAND_BOOL_SETTINGS && p[1] == NUL)
9737 {
9738 xp->xp_context = EXPAND_OLD_SETTING;
9739 if (is_term_option)
9740 expand_option_idx = -1;
9741 else
9742 expand_option_idx = opt_idx;
9743 xp->xp_pattern = p + 1;
9744 return;
9745 }
9746 xp->xp_context = EXPAND_NOTHING;
9747 if (is_term_option || (flags & P_NUM))
9748 return;
9749
9750 xp->xp_pattern = p + 1;
9751
9752 if (flags & P_EXPAND)
9753 {
9754 p = options[opt_idx].var;
9755 if (p == (char_u *)&p_bdir
9756 || p == (char_u *)&p_dir
9757 || p == (char_u *)&p_path
9758 || p == (char_u *)&p_rtp
9759#ifdef FEAT_SEARCHPATH
9760 || p == (char_u *)&p_cdpath
9761#endif
9762#ifdef FEAT_SESSION
9763 || p == (char_u *)&p_vdir
9764#endif
9765 )
9766 {
9767 xp->xp_context = EXPAND_DIRECTORIES;
9768 if (p == (char_u *)&p_path
9769#ifdef FEAT_SEARCHPATH
9770 || p == (char_u *)&p_cdpath
9771#endif
9772 )
9773 xp->xp_backslash = XP_BS_THREE;
9774 else
9775 xp->xp_backslash = XP_BS_ONE;
9776 }
9777 else
9778 {
9779 xp->xp_context = EXPAND_FILES;
9780 /* for 'tags' need three backslashes for a space */
9781 if (p == (char_u *)&p_tags)
9782 xp->xp_backslash = XP_BS_THREE;
9783 else
9784 xp->xp_backslash = XP_BS_ONE;
9785 }
9786 }
9787
9788 /* For an option that is a list of file names, find the start of the
9789 * last file name. */
9790 for (p = arg + STRLEN(arg) - 1; p > xp->xp_pattern; --p)
9791 {
9792 /* count number of backslashes before ' ' or ',' */
9793 if (*p == ' ' || *p == ',')
9794 {
9795 s = p;
9796 while (s > xp->xp_pattern && *(s - 1) == '\\')
9797 --s;
9798 if ((*p == ' ' && (xp->xp_backslash == XP_BS_THREE && (p - s) < 3))
9799 || (*p == ',' && (flags & P_COMMA) && ((p - s) & 1) == 0))
9800 {
9801 xp->xp_pattern = p + 1;
9802 break;
9803 }
9804 }
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00009805
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00009806#ifdef FEAT_SPELL
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00009807 /* for 'spellsuggest' start at "file:" */
9808 if (options[opt_idx].var == (char_u *)&p_sps
9809 && STRNCMP(p, "file:", 5) == 0)
9810 {
9811 xp->xp_pattern = p + 5;
9812 break;
9813 }
9814#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009815 }
9816
9817 return;
9818}
9819
9820 int
9821ExpandSettings(xp, regmatch, num_file, file)
9822 expand_T *xp;
9823 regmatch_T *regmatch;
9824 int *num_file;
9825 char_u ***file;
9826{
9827 int num_normal = 0; /* Nr of matching non-term-code settings */
9828 int num_term = 0; /* Nr of matching terminal code settings */
9829 int opt_idx;
9830 int match;
9831 int count = 0;
9832 char_u *str;
9833 int loop;
9834 int is_term_opt;
9835 char_u name_buf[MAX_KEY_NAME_LEN];
9836 static char *(names[]) = {"all", "termcap"};
9837 int ic = regmatch->rm_ic; /* remember the ignore-case flag */
9838
9839 /* do this loop twice:
9840 * loop == 0: count the number of matching options
9841 * loop == 1: copy the matching options into allocated memory
9842 */
9843 for (loop = 0; loop <= 1; ++loop)
9844 {
9845 regmatch->rm_ic = ic;
9846 if (xp->xp_context != EXPAND_BOOL_SETTINGS)
9847 {
9848 for (match = 0; match < sizeof(names) / sizeof(char *); ++match)
9849 if (vim_regexec(regmatch, (char_u *)names[match], (colnr_T)0))
9850 {
9851 if (loop == 0)
9852 num_normal++;
9853 else
9854 (*file)[count++] = vim_strsave((char_u *)names[match]);
9855 }
9856 }
9857 for (opt_idx = 0; (str = (char_u *)options[opt_idx].fullname) != NULL;
9858 opt_idx++)
9859 {
9860 if (options[opt_idx].var == NULL)
9861 continue;
9862 if (xp->xp_context == EXPAND_BOOL_SETTINGS
9863 && !(options[opt_idx].flags & P_BOOL))
9864 continue;
9865 is_term_opt = istermoption(&options[opt_idx]);
9866 if (is_term_opt && num_normal > 0)
9867 continue;
9868 match = FALSE;
9869 if (vim_regexec(regmatch, str, (colnr_T)0)
9870 || (options[opt_idx].shortname != NULL
9871 && vim_regexec(regmatch,
9872 (char_u *)options[opt_idx].shortname, (colnr_T)0)))
9873 match = TRUE;
9874 else if (is_term_opt)
9875 {
9876 name_buf[0] = '<';
9877 name_buf[1] = 't';
9878 name_buf[2] = '_';
9879 name_buf[3] = str[2];
9880 name_buf[4] = str[3];
9881 name_buf[5] = '>';
9882 name_buf[6] = NUL;
9883 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
9884 {
9885 match = TRUE;
9886 str = name_buf;
9887 }
9888 }
9889 if (match)
9890 {
9891 if (loop == 0)
9892 {
9893 if (is_term_opt)
9894 num_term++;
9895 else
9896 num_normal++;
9897 }
9898 else
9899 (*file)[count++] = vim_strsave(str);
9900 }
9901 }
9902 /*
9903 * Check terminal key codes, these are not in the option table
9904 */
9905 if (xp->xp_context != EXPAND_BOOL_SETTINGS && num_normal == 0)
9906 {
9907 for (opt_idx = 0; (str = get_termcode(opt_idx)) != NULL; opt_idx++)
9908 {
9909 if (!isprint(str[0]) || !isprint(str[1]))
9910 continue;
9911
9912 name_buf[0] = 't';
9913 name_buf[1] = '_';
9914 name_buf[2] = str[0];
9915 name_buf[3] = str[1];
9916 name_buf[4] = NUL;
9917
9918 match = FALSE;
9919 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
9920 match = TRUE;
9921 else
9922 {
9923 name_buf[0] = '<';
9924 name_buf[1] = 't';
9925 name_buf[2] = '_';
9926 name_buf[3] = str[0];
9927 name_buf[4] = str[1];
9928 name_buf[5] = '>';
9929 name_buf[6] = NUL;
9930
9931 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
9932 match = TRUE;
9933 }
9934 if (match)
9935 {
9936 if (loop == 0)
9937 num_term++;
9938 else
9939 (*file)[count++] = vim_strsave(name_buf);
9940 }
9941 }
9942
9943 /*
9944 * Check special key names.
9945 */
9946 regmatch->rm_ic = TRUE; /* ignore case here */
9947 for (opt_idx = 0; (str = get_key_name(opt_idx)) != NULL; opt_idx++)
9948 {
9949 name_buf[0] = '<';
9950 STRCPY(name_buf + 1, str);
9951 STRCAT(name_buf, ">");
9952
9953 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
9954 {
9955 if (loop == 0)
9956 num_term++;
9957 else
9958 (*file)[count++] = vim_strsave(name_buf);
9959 }
9960 }
9961 }
9962 if (loop == 0)
9963 {
9964 if (num_normal > 0)
9965 *num_file = num_normal;
9966 else if (num_term > 0)
9967 *num_file = num_term;
9968 else
9969 return OK;
9970 *file = (char_u **)alloc((unsigned)(*num_file * sizeof(char_u *)));
9971 if (*file == NULL)
9972 {
9973 *file = (char_u **)"";
9974 return FAIL;
9975 }
9976 }
9977 }
9978 return OK;
9979}
9980
9981 int
9982ExpandOldSetting(num_file, file)
9983 int *num_file;
9984 char_u ***file;
9985{
9986 char_u *var = NULL; /* init for GCC */
9987 char_u *buf;
9988
9989 *num_file = 0;
9990 *file = (char_u **)alloc((unsigned)sizeof(char_u *));
9991 if (*file == NULL)
9992 return FAIL;
9993
9994 /*
9995 * For a terminal key code expand_option_idx is < 0.
9996 */
9997 if (expand_option_idx < 0)
9998 {
9999 var = find_termcode(expand_option_name + 2);
10000 if (var == NULL)
10001 expand_option_idx = findoption(expand_option_name);
10002 }
10003
10004 if (expand_option_idx >= 0)
10005 {
10006 /* put string of option value in NameBuff */
10007 option_value2string(&options[expand_option_idx], expand_option_flags);
10008 var = NameBuff;
10009 }
10010 else if (var == NULL)
10011 var = (char_u *)"";
10012
10013 /* A backslash is required before some characters. This is the reverse of
10014 * what happens in do_set(). */
10015 buf = vim_strsave_escaped(var, escape_chars);
10016
10017 if (buf == NULL)
10018 {
10019 vim_free(*file);
10020 *file = NULL;
10021 return FAIL;
10022 }
10023
10024#ifdef BACKSLASH_IN_FILENAME
10025 /* For MS-Windows et al. we don't double backslashes at the start and
10026 * before a file name character. */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000010027 for (var = buf; *var != NUL; mb_ptr_adv(var))
Bram Moolenaar071d4272004-06-13 20:20:40 +000010028 if (var[0] == '\\' && var[1] == '\\'
10029 && expand_option_idx >= 0
10030 && (options[expand_option_idx].flags & P_EXPAND)
10031 && vim_isfilec(var[2])
10032 && (var[2] != '\\' || (var == buf && var[4] != '\\')))
10033 mch_memmove(var, var + 1, STRLEN(var));
Bram Moolenaar071d4272004-06-13 20:20:40 +000010034#endif
10035
10036 *file[0] = buf;
10037 *num_file = 1;
10038 return OK;
10039}
10040#endif
10041
10042/*
10043 * Get the value for the numeric or string option *opp in a nice format into
10044 * NameBuff[]. Must not be called with a hidden option!
10045 */
10046 static void
10047option_value2string(opp, opt_flags)
10048 struct vimoption *opp;
10049 int opt_flags; /* OPT_GLOBAL and/or OPT_LOCAL */
10050{
10051 char_u *varp;
10052
10053 varp = get_varp_scope(opp, opt_flags);
10054
10055 if (opp->flags & P_NUM)
10056 {
10057 long wc = 0;
10058
10059 if (wc_use_keyname(varp, &wc))
10060 STRCPY(NameBuff, get_special_key_name((int)wc, 0));
10061 else if (wc != 0)
10062 STRCPY(NameBuff, transchar((int)wc));
10063 else
10064 sprintf((char *)NameBuff, "%ld", *(long *)varp);
10065 }
10066 else /* P_STRING */
10067 {
10068 varp = *(char_u **)(varp);
10069 if (varp == NULL) /* just in case */
10070 NameBuff[0] = NUL;
10071#ifdef FEAT_CRYPT
10072 /* don't show the actual value of 'key', only that it's set */
Bram Moolenaareb3593b2006-04-22 22:33:57 +000010073 else if (opp->var == (char_u *)&p_key && *varp)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010074 STRCPY(NameBuff, "*****");
10075#endif
10076 else if (opp->flags & P_EXPAND)
10077 home_replace(NULL, varp, NameBuff, MAXPATHL, FALSE);
10078 /* Translate 'pastetoggle' into special key names */
10079 else if ((char_u **)opp->var == &p_pt)
10080 str2specialbuf(p_pt, NameBuff, MAXPATHL);
10081 else
Bram Moolenaarce0842a2005-07-18 21:58:11 +000010082 vim_strncpy(NameBuff, varp, MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010083 }
10084}
10085
10086/*
10087 * Return TRUE if "varp" points to 'wildchar' or 'wildcharm' and it can be
10088 * printed as a keyname.
10089 * "*wcp" is set to the value of the option if it's 'wildchar' or 'wildcharm'.
10090 */
10091 static int
10092wc_use_keyname(varp, wcp)
10093 char_u *varp;
10094 long *wcp;
10095{
10096 if (((long *)varp == &p_wc) || ((long *)varp == &p_wcm))
10097 {
10098 *wcp = *(long *)varp;
10099 if (IS_SPECIAL(*wcp) || find_special_key_in_table((int)*wcp) >= 0)
10100 return TRUE;
10101 }
10102 return FALSE;
10103}
10104
10105#ifdef FEAT_LANGMAP
10106/*
10107 * Any character has an equivalent character. This is used for keyboards that
10108 * have a special language mode that sends characters above 128 (although
10109 * other characters can be translated too).
10110 */
10111
10112/*
10113 * char_u langmap_mapchar[256];
10114 * Normally maps each of the 128 upper chars to an <128 ascii char; used to
10115 * "translate" native lang chars in normal mode or some cases of
10116 * insert mode without having to tediously switch lang mode back&forth.
10117 */
10118
10119 static void
10120langmap_init()
10121{
10122 int i;
10123
10124 for (i = 0; i < 256; i++) /* we init with a-one-to one map */
10125 langmap_mapchar[i] = i;
10126}
10127
10128/*
10129 * Called when langmap option is set; the language map can be
10130 * changed at any time!
10131 */
10132 static void
10133langmap_set()
10134{
10135 char_u *p;
10136 char_u *p2;
10137 int from, to;
10138
10139 langmap_init(); /* back to one-to-one map first */
10140
10141 for (p = p_langmap; p[0] != NUL; )
10142 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000010143 for (p2 = p; p2[0] != NUL && p2[0] != ',' && p2[0] != ';';
10144 mb_ptr_adv(p2))
Bram Moolenaar071d4272004-06-13 20:20:40 +000010145 {
10146 if (p2[0] == '\\' && p2[1] != NUL)
10147 ++p2;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010148 }
10149 if (p2[0] == ';')
10150 ++p2; /* abcd;ABCD form, p2 points to A */
10151 else
10152 p2 = NULL; /* aAbBcCdD form, p2 is NULL */
10153 while (p[0])
10154 {
10155 if (p[0] == '\\' && p[1] != NUL)
10156 ++p;
10157#ifdef FEAT_MBYTE
10158 from = (*mb_ptr2char)(p);
10159#else
10160 from = p[0];
10161#endif
10162 if (p2 == NULL)
10163 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000010164 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010165 if (p[0] == '\\')
10166 ++p;
10167#ifdef FEAT_MBYTE
10168 to = (*mb_ptr2char)(p);
10169#else
10170 to = p[0];
10171#endif
10172 }
10173 else
10174 {
10175 if (p2[0] == '\\')
10176 ++p2;
10177#ifdef FEAT_MBYTE
10178 to = (*mb_ptr2char)(p2);
10179#else
10180 to = p2[0];
10181#endif
10182 }
10183 if (to == NUL)
10184 {
10185 EMSG2(_("E357: 'langmap': Matching character missing for %s"),
10186 transchar(from));
10187 return;
10188 }
10189 langmap_mapchar[from & 255] = to;
10190
10191 /* Advance to next pair */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000010192 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010193 if (p2 == NULL)
10194 {
10195 if (p[0] == ',')
10196 {
10197 ++p;
10198 break;
10199 }
10200 }
10201 else
10202 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000010203 mb_ptr_adv(p2);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010204 if (*p == ';')
10205 {
10206 p = p2;
10207 if (p[0] != NUL)
10208 {
10209 if (p[0] != ',')
10210 {
10211 EMSG2(_("E358: 'langmap': Extra characters after semicolon: %s"), p);
10212 return;
10213 }
10214 ++p;
10215 }
10216 break;
10217 }
10218 }
10219 }
10220 }
10221}
10222#endif
10223
10224/*
10225 * Return TRUE if format option 'x' is in effect.
10226 * Take care of no formatting when 'paste' is set.
10227 */
10228 int
10229has_format_option(x)
10230 int x;
10231{
10232 if (p_paste)
10233 return FALSE;
10234 return (vim_strchr(curbuf->b_p_fo, x) != NULL);
10235}
10236
10237/*
10238 * Return TRUE if "x" is present in 'shortmess' option, or
10239 * 'shortmess' contains 'a' and "x" is present in SHM_A.
10240 */
10241 int
10242shortmess(x)
10243 int x;
10244{
10245 return ( vim_strchr(p_shm, x) != NULL
10246 || (vim_strchr(p_shm, 'a') != NULL
10247 && vim_strchr((char_u *)SHM_A, x) != NULL));
10248}
10249
10250/*
10251 * paste_option_changed() - Called after p_paste was set or reset.
10252 */
10253 static void
10254paste_option_changed()
10255{
10256 static int old_p_paste = FALSE;
10257 static int save_sm = 0;
10258#ifdef FEAT_CMDL_INFO
10259 static int save_ru = 0;
10260#endif
10261#ifdef FEAT_RIGHTLEFT
10262 static int save_ri = 0;
10263 static int save_hkmap = 0;
10264#endif
10265 buf_T *buf;
10266
10267 if (p_paste)
10268 {
10269 /*
10270 * Paste switched from off to on.
10271 * Save the current values, so they can be restored later.
10272 */
10273 if (!old_p_paste)
10274 {
10275 /* save options for each buffer */
10276 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10277 {
10278 buf->b_p_tw_nopaste = buf->b_p_tw;
10279 buf->b_p_wm_nopaste = buf->b_p_wm;
10280 buf->b_p_sts_nopaste = buf->b_p_sts;
10281 buf->b_p_ai_nopaste = buf->b_p_ai;
10282 }
10283
10284 /* save global options */
10285 save_sm = p_sm;
10286#ifdef FEAT_CMDL_INFO
10287 save_ru = p_ru;
10288#endif
10289#ifdef FEAT_RIGHTLEFT
10290 save_ri = p_ri;
10291 save_hkmap = p_hkmap;
10292#endif
10293 /* save global values for local buffer options */
10294 p_tw_nopaste = p_tw;
10295 p_wm_nopaste = p_wm;
10296 p_sts_nopaste = p_sts;
10297 p_ai_nopaste = p_ai;
10298 }
10299
10300 /*
10301 * Always set the option values, also when 'paste' is set when it is
10302 * already on.
10303 */
10304 /* set options for each buffer */
10305 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10306 {
10307 buf->b_p_tw = 0; /* textwidth is 0 */
10308 buf->b_p_wm = 0; /* wrapmargin is 0 */
10309 buf->b_p_sts = 0; /* softtabstop is 0 */
10310 buf->b_p_ai = 0; /* no auto-indent */
10311 }
10312
10313 /* set global options */
10314 p_sm = 0; /* no showmatch */
10315#ifdef FEAT_CMDL_INFO
10316# ifdef FEAT_WINDOWS
10317 if (p_ru)
10318 status_redraw_all(); /* redraw to remove the ruler */
10319# endif
10320 p_ru = 0; /* no ruler */
10321#endif
10322#ifdef FEAT_RIGHTLEFT
10323 p_ri = 0; /* no reverse insert */
10324 p_hkmap = 0; /* no Hebrew keyboard */
10325#endif
10326 /* set global values for local buffer options */
10327 p_tw = 0;
10328 p_wm = 0;
10329 p_sts = 0;
10330 p_ai = 0;
10331 }
10332
10333 /*
10334 * Paste switched from on to off: Restore saved values.
10335 */
10336 else if (old_p_paste)
10337 {
10338 /* restore options for each buffer */
10339 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10340 {
10341 buf->b_p_tw = buf->b_p_tw_nopaste;
10342 buf->b_p_wm = buf->b_p_wm_nopaste;
10343 buf->b_p_sts = buf->b_p_sts_nopaste;
10344 buf->b_p_ai = buf->b_p_ai_nopaste;
10345 }
10346
10347 /* restore global options */
10348 p_sm = save_sm;
10349#ifdef FEAT_CMDL_INFO
10350# ifdef FEAT_WINDOWS
10351 if (p_ru != save_ru)
10352 status_redraw_all(); /* redraw to draw the ruler */
10353# endif
10354 p_ru = save_ru;
10355#endif
10356#ifdef FEAT_RIGHTLEFT
10357 p_ri = save_ri;
10358 p_hkmap = save_hkmap;
10359#endif
10360 /* set global values for local buffer options */
10361 p_tw = p_tw_nopaste;
10362 p_wm = p_wm_nopaste;
10363 p_sts = p_sts_nopaste;
10364 p_ai = p_ai_nopaste;
10365 }
10366
10367 old_p_paste = p_paste;
10368}
10369
10370/*
10371 * vimrc_found() - Called when a ".vimrc" or "VIMINIT" has been found.
10372 *
10373 * Reset 'compatible' and set the values for options that didn't get set yet
10374 * to the Vim defaults.
10375 * Don't do this if the 'compatible' option has been set or reset before.
Bram Moolenaar910f66f2006-04-05 20:41:53 +000010376 * When "fname" is not NULL, use it to set $"envname" when it wasn't set yet.
Bram Moolenaar071d4272004-06-13 20:20:40 +000010377 */
10378 void
Bram Moolenaar910f66f2006-04-05 20:41:53 +000010379vimrc_found(fname, envname)
10380 char_u *fname;
10381 char_u *envname;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010382{
Bram Moolenaar910f66f2006-04-05 20:41:53 +000010383 int opt_idx;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +000010384 int dofree = FALSE;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000010385 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010386
10387 if (!option_was_set((char_u *)"cp"))
10388 {
10389 p_cp = FALSE;
10390 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
10391 if (!(options[opt_idx].flags & (P_WAS_SET|P_VI_DEF)))
10392 set_option_default(opt_idx, OPT_FREE, FALSE);
10393 didset_options();
10394 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +000010395
10396 if (fname != NULL)
10397 {
10398 p = vim_getenv(envname, &dofree);
10399 if (p == NULL)
10400 {
10401 /* Set $MYVIMRC to the first vimrc file found. */
10402 p = FullName_save(fname, FALSE);
10403 if (p != NULL)
10404 {
10405 vim_setenv(envname, p);
10406 vim_free(p);
10407 }
10408 }
10409 else if (dofree)
10410 vim_free(p);
10411 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010412}
10413
10414/*
10415 * Set 'compatible' on or off. Called for "-C" and "-N" command line arg.
10416 */
10417 void
10418change_compatible(on)
10419 int on;
10420{
Bram Moolenaarfc1421e2006-04-20 22:17:20 +000010421 int opt_idx;
10422
Bram Moolenaar071d4272004-06-13 20:20:40 +000010423 if (p_cp != on)
10424 {
10425 p_cp = on;
10426 compatible_set();
10427 }
Bram Moolenaarfc1421e2006-04-20 22:17:20 +000010428 opt_idx = findoption((char_u *)"cp");
10429 if (opt_idx >= 0)
10430 options[opt_idx].flags |= P_WAS_SET;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010431}
10432
10433/*
10434 * Return TRUE when option "name" has been set.
10435 */
10436 int
10437option_was_set(name)
10438 char_u *name;
10439{
10440 int idx;
10441
10442 idx = findoption(name);
10443 if (idx < 0) /* unknown option */
10444 return FALSE;
10445 if (options[idx].flags & P_WAS_SET)
10446 return TRUE;
10447 return FALSE;
10448}
10449
10450/*
10451 * compatible_set() - Called when 'compatible' has been set or unset.
10452 *
10453 * When 'compatible' set: Set all relevant options (those that have the P_VIM)
10454 * flag) to a Vi compatible value.
10455 * When 'compatible' is unset: Set all options that have a different default
10456 * for Vim (without the P_VI_DEF flag) to that default.
10457 */
10458 static void
10459compatible_set()
10460{
10461 int opt_idx;
10462
10463 for (opt_idx = 0; !istermoption(&options[opt_idx]); opt_idx++)
10464 if ( ((options[opt_idx].flags & P_VIM) && p_cp)
10465 || (!(options[opt_idx].flags & P_VI_DEF) && !p_cp))
10466 set_option_default(opt_idx, OPT_FREE, p_cp);
10467 didset_options();
10468}
10469
10470#ifdef FEAT_LINEBREAK
10471
10472# if defined(__BORLANDC__) && (__BORLANDC__ < 0x500)
10473 /* Borland C++ screws up loop optimisation here (negri) */
Bram Moolenaar8f999f12005-01-25 22:12:55 +000010474 #pragma option -O-l
Bram Moolenaar071d4272004-06-13 20:20:40 +000010475# endif
10476
10477/*
10478 * fill_breakat_flags() -- called when 'breakat' changes value.
10479 */
10480 static void
10481fill_breakat_flags()
10482{
Bram Moolenaarac6e65f2005-08-29 22:25:38 +000010483 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010484 int i;
10485
10486 for (i = 0; i < 256; i++)
10487 breakat_flags[i] = FALSE;
10488
10489 if (p_breakat != NULL)
Bram Moolenaarac6e65f2005-08-29 22:25:38 +000010490 for (p = p_breakat; *p; p++)
10491 breakat_flags[*p] = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010492}
10493
10494# if defined(__BORLANDC__) && (__BORLANDC__ < 0x500)
Bram Moolenaar8f999f12005-01-25 22:12:55 +000010495 #pragma option -O.l
Bram Moolenaar071d4272004-06-13 20:20:40 +000010496# endif
10497
10498#endif
10499
10500/*
10501 * Check an option that can be a range of string values.
10502 *
10503 * Return OK for correct value, FAIL otherwise.
10504 * Empty is always OK.
10505 */
10506 static int
10507check_opt_strings(val, values, list)
10508 char_u *val;
10509 char **values;
10510 int list; /* when TRUE: accept a list of values */
10511{
10512 return opt_strings_flags(val, values, NULL, list);
10513}
10514
10515/*
10516 * Handle an option that can be a range of string values.
10517 * Set a flag in "*flagp" for each string present.
10518 *
10519 * Return OK for correct value, FAIL otherwise.
10520 * Empty is always OK.
10521 */
10522 static int
10523opt_strings_flags(val, values, flagp, list)
10524 char_u *val; /* new value */
10525 char **values; /* array of valid string values */
10526 unsigned *flagp;
10527 int list; /* when TRUE: accept a list of values */
10528{
10529 int i;
10530 int len;
10531 unsigned new_flags = 0;
10532
10533 while (*val)
10534 {
10535 for (i = 0; ; ++i)
10536 {
10537 if (values[i] == NULL) /* val not found in values[] */
10538 return FAIL;
10539
10540 len = (int)STRLEN(values[i]);
10541 if (STRNCMP(values[i], val, len) == 0
10542 && ((list && val[len] == ',') || val[len] == NUL))
10543 {
10544 val += len + (val[len] == ',');
10545 new_flags |= (1 << i);
10546 break; /* check next item in val list */
10547 }
10548 }
10549 }
10550 if (flagp != NULL)
10551 *flagp = new_flags;
10552
10553 return OK;
10554}
10555
10556/*
10557 * Read the 'wildmode' option, fill wim_flags[].
10558 */
10559 static int
10560check_opt_wim()
10561{
10562 char_u new_wim_flags[4];
10563 char_u *p;
10564 int i;
10565 int idx = 0;
10566
10567 for (i = 0; i < 4; ++i)
10568 new_wim_flags[i] = 0;
10569
10570 for (p = p_wim; *p; ++p)
10571 {
10572 for (i = 0; ASCII_ISALPHA(p[i]); ++i)
10573 ;
10574 if (p[i] != NUL && p[i] != ',' && p[i] != ':')
10575 return FAIL;
10576 if (i == 7 && STRNCMP(p, "longest", 7) == 0)
10577 new_wim_flags[idx] |= WIM_LONGEST;
10578 else if (i == 4 && STRNCMP(p, "full", 4) == 0)
10579 new_wim_flags[idx] |= WIM_FULL;
10580 else if (i == 4 && STRNCMP(p, "list", 4) == 0)
10581 new_wim_flags[idx] |= WIM_LIST;
10582 else
10583 return FAIL;
10584 p += i;
10585 if (*p == NUL)
10586 break;
10587 if (*p == ',')
10588 {
10589 if (idx == 3)
10590 return FAIL;
10591 ++idx;
10592 }
10593 }
10594
10595 /* fill remaining entries with last flag */
10596 while (idx < 3)
10597 {
10598 new_wim_flags[idx + 1] = new_wim_flags[idx];
10599 ++idx;
10600 }
10601
10602 /* only when there are no errors, wim_flags[] is changed */
10603 for (i = 0; i < 4; ++i)
10604 wim_flags[i] = new_wim_flags[i];
10605 return OK;
10606}
10607
10608/*
10609 * Check if backspacing over something is allowed.
10610 */
10611 int
10612can_bs(what)
10613 int what; /* BS_INDENT, BS_EOL or BS_START */
10614{
10615 switch (*p_bs)
10616 {
10617 case '2': return TRUE;
10618 case '1': return (what != BS_START);
10619 case '0': return FALSE;
10620 }
10621 return vim_strchr(p_bs, what) != NULL;
10622}
10623
10624/*
10625 * Save the current values of 'fileformat' and 'fileencoding', so that we know
10626 * the file must be considered changed when the value is different.
10627 */
10628 void
10629save_file_ff(buf)
10630 buf_T *buf;
10631{
10632 buf->b_start_ffc = *buf->b_p_ff;
10633 buf->b_start_eol = buf->b_p_eol;
10634#ifdef FEAT_MBYTE
Bram Moolenaar83eb8852007-08-12 13:51:26 +000010635 buf->b_start_bomb = buf->b_p_bomb;
10636
Bram Moolenaar071d4272004-06-13 20:20:40 +000010637 /* Only use free/alloc when necessary, they take time. */
10638 if (buf->b_start_fenc == NULL
10639 || STRCMP(buf->b_start_fenc, buf->b_p_fenc) != 0)
10640 {
10641 vim_free(buf->b_start_fenc);
10642 buf->b_start_fenc = vim_strsave(buf->b_p_fenc);
10643 }
10644#endif
10645}
10646
10647/*
10648 * Return TRUE if 'fileformat' and/or 'fileencoding' has a different value
10649 * from when editing started (save_file_ff() called).
Bram Moolenaar83eb8852007-08-12 13:51:26 +000010650 * Also when 'endofline' was changed and 'binary' is set, or when 'bomb' was
10651 * changed and 'binary' is not set.
Bram Moolenaar071d4272004-06-13 20:20:40 +000010652 * Don't consider a new, empty buffer to be changed.
10653 */
10654 int
10655file_ff_differs(buf)
10656 buf_T *buf;
10657{
Bram Moolenaar9cffde92007-07-24 07:51:18 +000010658 /* In a buffer that was never loaded the options are not valid. */
10659 if (buf->b_flags & BF_NEVERLOADED)
10660 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010661 if ((buf->b_flags & BF_NEW)
10662 && buf->b_ml.ml_line_count == 1
10663 && *ml_get_buf(buf, (linenr_T)1, FALSE) == NUL)
10664 return FALSE;
10665 if (buf->b_start_ffc != *buf->b_p_ff)
10666 return TRUE;
10667 if (buf->b_p_bin && buf->b_start_eol != buf->b_p_eol)
10668 return TRUE;
10669#ifdef FEAT_MBYTE
Bram Moolenaar83eb8852007-08-12 13:51:26 +000010670 if (!buf->b_p_bin && buf->b_start_bomb != buf->b_p_bomb)
10671 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010672 if (buf->b_start_fenc == NULL)
10673 return (*buf->b_p_fenc != NUL);
10674 return (STRCMP(buf->b_start_fenc, buf->b_p_fenc) != 0);
10675#else
10676 return FALSE;
10677#endif
10678}
10679
10680/*
10681 * return OK if "p" is a valid fileformat name, FAIL otherwise.
10682 */
10683 int
10684check_ff_value(p)
10685 char_u *p;
10686{
10687 return check_opt_strings(p, p_ff_values, FALSE);
10688}