blob: 7d86ccf14dd605bbebbc83762b44b3ab59354d06 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
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.
Bram Moolenaarcea912a2016-10-12 14:20:24 +020025 * - Add documentation! One line in doc/quickref.txt, full description in
Bram Moolenaar071d4272004-06-13 20:20:40 +000026 * 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"
Bram Moolenaar0eddca42019-09-12 22:26:43 +020036#include "optiondefs.h"
Bram Moolenaar071d4272004-06-13 20:20:40 +000037
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010038static void set_options_default(int opt_flags);
Bram Moolenaar4bfa8af2018-02-03 15:14:46 +010039static void set_string_default_esc(char *name, char_u *val, int escape);
Bram Moolenaarb00ef052020-09-12 14:53:53 +020040static char_u *find_dup_item(char_u *origval, char_u *newval, long_u flags);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010041static char_u *option_expand(int opt_idx, char_u *val);
42static void didset_options(void);
43static void didset_options2(void);
Bram Moolenaard1f56e62006-02-22 21:25:37 +000044#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010045static long_u *insecure_flag(int opt_idx, int opt_flags);
Bram Moolenaard1f56e62006-02-22 21:25:37 +000046#else
47# define insecure_flag(opt_idx, opt_flags) (&options[opt_idx].flags)
48#endif
Bram Moolenaarf9e3e092019-01-13 23:38:42 +010049static char *set_bool_option(int opt_idx, char_u *varp, int value, int opt_flags);
50static char *set_num_option(int opt_idx, char_u *varp, long value, char *errbuf, size_t errbuflen, int opt_flags);
Bram Moolenaar9cf4b502018-07-23 04:12:03 +020051static int find_key_option(char_u *arg_arg, int has_lt);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010052static void showoptions(int all, int opt_flags);
Bram Moolenaarcacc6a52019-05-30 15:22:43 +020053static int optval_default(struct vimoption *, char_u *varp, int compatible);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010054static void showoneopt(struct vimoption *, int opt_flags);
Bram Moolenaared18f2c2019-01-24 20:30:52 +010055static int put_setstring(FILE *fd, char *cmd, char *name, char_u **valuep, long_u flags);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010056static int put_setnum(FILE *fd, char *cmd, char *name, long *valuep);
57static int put_setbool(FILE *fd, char *cmd, char *name, int value);
Bram Moolenaardac13472019-09-16 21:06:21 +020058static int istermoption(struct vimoption *p);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010059static char_u *get_varp_scope(struct vimoption *p, int opt_flags);
60static char_u *get_varp(struct vimoption *);
Bram Moolenaar5843f5f2019-08-20 20:13:45 +020061static void check_win_options(win_T *win);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010062static void option_value2string(struct vimoption *, int opt_flags);
63static void check_winopt(winopt_T *wop);
64static int wc_use_keyname(char_u *varp, long *wcp);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010065static void paste_option_changed(void);
66static void compatible_set(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +000067
68/*
69 * Initialize the options, first part.
70 *
71 * Called only once from main(), just after creating the first buffer.
Bram Moolenaar07268702018-03-01 21:57:32 +010072 * If "clean_arg" is TRUE Vim was started with --clean.
Bram Moolenaar071d4272004-06-13 20:20:40 +000073 */
74 void
Bram Moolenaar07268702018-03-01 21:57:32 +010075set_init_1(int clean_arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +000076{
77 char_u *p;
78 int opt_idx;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000079 long_u n;
Bram Moolenaar071d4272004-06-13 20:20:40 +000080
81#ifdef FEAT_LANGMAP
82 langmap_init();
83#endif
84
Bram Moolenaar6e0ce172019-12-05 20:12:41 +010085 // Be Vi compatible by default
Bram Moolenaar071d4272004-06-13 20:20:40 +000086 p_cp = TRUE;
87
Bram Moolenaar6e0ce172019-12-05 20:12:41 +010088 // Use POSIX compatibility when $VIM_POSIX is set.
Bram Moolenaar4399ef42005-02-12 14:29:27 +000089 if (mch_getenv((char_u *)"VIM_POSIX") != NULL)
Bram Moolenaar26a60b42005-02-22 08:49:11 +000090 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +000091 set_string_default("cpo", (char_u *)CPO_ALL);
Bram Moolenaar9dfa3132019-05-04 21:08:40 +020092 set_string_default("shm", (char_u *)SHM_POSIX);
Bram Moolenaar26a60b42005-02-22 08:49:11 +000093 }
Bram Moolenaar4399ef42005-02-12 14:29:27 +000094
Bram Moolenaar071d4272004-06-13 20:20:40 +000095 /*
96 * Find default value for 'shell' option.
Bram Moolenaar7c626922005-02-07 22:01:03 +000097 * Don't use it if it is empty.
Bram Moolenaar071d4272004-06-13 20:20:40 +000098 */
Bram Moolenaar7c626922005-02-07 22:01:03 +000099 if (((p = mch_getenv((char_u *)"SHELL")) != NULL && *p != NUL)
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100100#if defined(MSWIN)
Bram Moolenaar7c626922005-02-07 22:01:03 +0000101 || ((p = mch_getenv((char_u *)"COMSPEC")) != NULL && *p != NUL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100102 || ((p = (char_u *)default_shell()) != NULL && *p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000103#endif
Bram Moolenaar7c626922005-02-07 22:01:03 +0000104 )
Bram Moolenaar2efc44b2019-10-05 12:09:32 +0200105#if defined(MSWIN)
106 {
107 // For MS-Windows put the path in quotes instead of escaping spaces.
108 char_u *cmd;
109 size_t len;
110
111 if (vim_strchr(p, ' ') != NULL)
112 {
113 len = STRLEN(p) + 3; // two quotes and a trailing NUL
114 cmd = alloc(len);
Bram Moolenaar1671de32019-10-05 21:35:16 +0200115 if (cmd != NULL)
116 {
117 vim_snprintf((char *)cmd, len, "\"%s\"", p);
118 set_string_default("sh", cmd);
119 vim_free(cmd);
120 }
Bram Moolenaar2efc44b2019-10-05 12:09:32 +0200121 }
122 else
123 set_string_default("sh", p);
124 }
125#else
Bram Moolenaar4bfa8af2018-02-03 15:14:46 +0100126 set_string_default_esc("sh", p, TRUE);
Bram Moolenaar2efc44b2019-10-05 12:09:32 +0200127#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000128
129#ifdef FEAT_WILDIGN
130 /*
131 * Set the default for 'backupskip' to include environment variables for
132 * temp files.
133 */
134 {
135# ifdef UNIX
136 static char *(names[4]) = {"", "TMPDIR", "TEMP", "TMP"};
137# else
138 static char *(names[3]) = {"TMPDIR", "TEMP", "TMP"};
139# endif
Bram Moolenaar05159a02005-02-26 23:04:13 +0000140 int len;
141 garray_T ga;
142 int mustfree;
Bram Moolenaarb00ef052020-09-12 14:53:53 +0200143 char_u *item;
144
145 opt_idx = findoption((char_u *)"backupskip");
Bram Moolenaar071d4272004-06-13 20:20:40 +0000146
147 ga_init2(&ga, 1, 100);
K.Takataeeec2542021-06-02 13:28:16 +0200148 for (n = 0; n < (long)ARRAY_LENGTH(names); ++n)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000149 {
Bram Moolenaar05159a02005-02-26 23:04:13 +0000150 mustfree = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000151# ifdef UNIX
152 if (*names[n] == NUL)
Bram Moolenaarb8e22a02018-04-12 21:37:34 +0200153# ifdef MACOS_X
154 p = (char_u *)"/private/tmp";
155# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000156 p = (char_u *)"/tmp";
Bram Moolenaarb8e22a02018-04-12 21:37:34 +0200157# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000158 else
159# endif
Bram Moolenaar05159a02005-02-26 23:04:13 +0000160 p = vim_getenv((char_u *)names[n], &mustfree);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000161 if (p != NULL && *p != NUL)
162 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100163 // First time count the NUL, otherwise count the ','.
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000164 len = (int)STRLEN(p) + 3;
Bram Moolenaarb00ef052020-09-12 14:53:53 +0200165 item = alloc(len);
166 STRCPY(item, p);
167 add_pathsep(item);
168 STRCAT(item, "*");
169 if (find_dup_item(ga.ga_data, item, options[opt_idx].flags)
170 == NULL
171 && ga_grow(&ga, len) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000172 {
173 if (ga.ga_len > 0)
174 STRCAT(ga.ga_data, ",");
Bram Moolenaarb00ef052020-09-12 14:53:53 +0200175 STRCAT(ga.ga_data, item);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000176 ga.ga_len += len;
177 }
Bram Moolenaarb00ef052020-09-12 14:53:53 +0200178 vim_free(item);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000179 }
Bram Moolenaar05159a02005-02-26 23:04:13 +0000180 if (mustfree)
181 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000182 }
183 if (ga.ga_data != NULL)
184 {
185 set_string_default("bsk", ga.ga_data);
186 vim_free(ga.ga_data);
187 }
188 }
189#endif
190
191 /*
192 * 'maxmemtot' and 'maxmem' may have to be adjusted for available memory
193 */
194 opt_idx = findoption((char_u *)"maxmemtot");
Bram Moolenaarfc1421e2006-04-20 22:17:20 +0000195 if (opt_idx >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000196 {
Bram Moolenaarfc1421e2006-04-20 22:17:20 +0000197#if !defined(HAVE_AVAIL_MEM) && !defined(HAVE_TOTAL_MEM)
198 if (options[opt_idx].def_val[VI_DEFAULT] == (char_u *)0L)
199#endif
200 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000201#ifdef HAVE_AVAIL_MEM
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100202 // Use amount of memory available at this moment.
Bram Moolenaar11b73d62012-06-29 15:51:30 +0200203 n = (mch_avail_mem(FALSE) >> 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000204#else
205# ifdef HAVE_TOTAL_MEM
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100206 // Use amount of memory available to Vim.
Bram Moolenaar914572a2007-05-01 11:37:47 +0000207 n = (mch_total_mem(FALSE) >> 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000208# else
Bram Moolenaarfc1421e2006-04-20 22:17:20 +0000209 n = (0x7fffffff >> 11);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000210# endif
211#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000212 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)n;
Bram Moolenaarfc1421e2006-04-20 22:17:20 +0000213 opt_idx = findoption((char_u *)"maxmem");
214 if (opt_idx >= 0)
215 {
216#if !defined(HAVE_AVAIL_MEM) && !defined(HAVE_TOTAL_MEM)
Bram Moolenaar35be4532015-12-11 22:38:36 +0100217 if ((long)(long_i)options[opt_idx].def_val[VI_DEFAULT] > (long)n
218 || (long)(long_i)options[opt_idx].def_val[VI_DEFAULT] == 0L)
Bram Moolenaarfc1421e2006-04-20 22:17:20 +0000219#endif
220 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)n;
221 }
222 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000223 }
224
Bram Moolenaar071d4272004-06-13 20:20:40 +0000225#ifdef FEAT_SEARCHPATH
226 {
227 char_u *cdpath;
228 char_u *buf;
229 int i;
230 int j;
Bram Moolenaar05159a02005-02-26 23:04:13 +0000231 int mustfree = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000232
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100233 // Initialize the 'cdpath' option's default value.
Bram Moolenaar05159a02005-02-26 23:04:13 +0000234 cdpath = vim_getenv((char_u *)"CDPATH", &mustfree);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000235 if (cdpath != NULL)
236 {
Bram Moolenaar964b3742019-05-24 18:54:09 +0200237 buf = alloc((STRLEN(cdpath) << 1) + 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000238 if (buf != NULL)
239 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100240 buf[0] = ','; // start with ",", current dir first
Bram Moolenaar071d4272004-06-13 20:20:40 +0000241 j = 1;
242 for (i = 0; cdpath[i] != NUL; ++i)
243 {
244 if (vim_ispathlistsep(cdpath[i]))
245 buf[j++] = ',';
246 else
247 {
248 if (cdpath[i] == ' ' || cdpath[i] == ',')
249 buf[j++] = '\\';
250 buf[j++] = cdpath[i];
251 }
252 }
253 buf[j] = NUL;
254 opt_idx = findoption((char_u *)"cdpath");
Bram Moolenaarfc1421e2006-04-20 22:17:20 +0000255 if (opt_idx >= 0)
256 {
257 options[opt_idx].def_val[VI_DEFAULT] = buf;
258 options[opt_idx].flags |= P_DEF_ALLOCED;
259 }
Bram Moolenaara9d52e32010-07-31 16:44:19 +0200260 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100261 vim_free(buf); // cannot happen
Bram Moolenaar071d4272004-06-13 20:20:40 +0000262 }
Bram Moolenaar05159a02005-02-26 23:04:13 +0000263 if (mustfree)
264 vim_free(cdpath);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000265 }
266 }
267#endif
268
Bram Moolenaare7fedb62015-12-31 19:07:19 +0100269#if defined(FEAT_POSTSCRIPT) && (defined(MSWIN) || defined(VMS) || defined(EBCDIC) || defined(MAC) || defined(hpux))
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100270 // Set print encoding on platforms that don't default to latin1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000271 set_string_default("penc",
Bram Moolenaare7fedb62015-12-31 19:07:19 +0100272# if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000273 (char_u *)"cp1252"
274# else
275# ifdef VMS
276 (char_u *)"dec-mcs"
277# else
278# ifdef EBCDIC
279 (char_u *)"ebcdic-uk"
280# else
281# ifdef MAC
282 (char_u *)"mac-roman"
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100283# else // HPUX
Bram Moolenaar071d4272004-06-13 20:20:40 +0000284 (char_u *)"hp-roman8"
285# endif
286# endif
287# endif
288# endif
289 );
290#endif
291
292#ifdef FEAT_POSTSCRIPT
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100293 // 'printexpr' must be allocated to be able to evaluate it.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000294 set_string_default("pexpr",
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100295# if defined(MSWIN)
Bram Moolenaared203462004-06-16 11:19:22 +0000296 (char_u *)"system('copy' . ' ' . v:fname_in . (&printdevice == '' ? ' LPT1:' : (' \"' . &printdevice . '\"'))) . delete(v:fname_in)"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000297# else
298# ifdef VMS
299 (char_u *)"system('print/delete' . (&printdevice == '' ? '' : ' /queue=' . &printdevice) . ' ' . v:fname_in)"
300
301# else
302 (char_u *)"system('lpr' . (&printdevice == '' ? '' : ' -P' . &printdevice) . ' ' . v:fname_in) . delete(v:fname_in) + v:shell_error"
303# endif
304# endif
305 );
306#endif
307
308 /*
309 * Set all the options (except the terminal options) to their default
310 * value. Also set the global value for local options.
311 */
312 set_options_default(0);
313
Bram Moolenaar07268702018-03-01 21:57:32 +0100314#ifdef CLEAN_RUNTIMEPATH
315 if (clean_arg)
316 {
317 opt_idx = findoption((char_u *)"runtimepath");
318 if (opt_idx >= 0)
319 {
320 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)CLEAN_RUNTIMEPATH;
321 p_rtp = (char_u *)CLEAN_RUNTIMEPATH;
322 }
323 opt_idx = findoption((char_u *)"packpath");
324 if (opt_idx >= 0)
325 {
326 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)CLEAN_RUNTIMEPATH;
327 p_pp = (char_u *)CLEAN_RUNTIMEPATH;
328 }
329 }
330#endif
331
Bram Moolenaar071d4272004-06-13 20:20:40 +0000332#ifdef FEAT_GUI
333 if (found_reverse_arg)
334 set_option_value((char_u *)"bg", 0L, (char_u *)"dark", 0);
335#endif
336
337 curbuf->b_p_initialized = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100338 curbuf->b_p_ar = -1; // no local 'autoread' value
Bram Moolenaarf5a2fd82013-11-06 05:26:15 +0100339 curbuf->b_p_ul = NO_LOCAL_UNDOLEVEL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000340 check_buf_options(curbuf);
341 check_win_options(curwin);
342 check_options();
343
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100344 // Must be before option_expand(), because that one needs vim_isIDc()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000345 didset_options();
346
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +0000347#ifdef FEAT_SPELL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100348 // Use the current chartab for the generic chartab. This is not in
349 // didset_options() because it only depends on 'encoding'.
Bram Moolenaar6bb68362005-03-22 23:03:44 +0000350 init_spell_chartab();
351#endif
352
Bram Moolenaar071d4272004-06-13 20:20:40 +0000353 /*
354 * Expand environment variables and things like "~" for the defaults.
355 * If option_expand() returns non-NULL the variable is expanded. This can
356 * only happen for non-indirect options.
357 * Also set the default to the expanded value, so ":set" does not list
358 * them.
359 * Don't set the P_ALLOCED flag, because we don't want to free the
360 * default.
361 */
Bram Moolenaardac13472019-09-16 21:06:21 +0200362 for (opt_idx = 0; !istermoption_idx(opt_idx); opt_idx++)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000363 {
364 if ((options[opt_idx].flags & P_GETTEXT)
365 && options[opt_idx].var != NULL)
366 p = (char_u *)_(*(char **)options[opt_idx].var);
367 else
368 p = option_expand(opt_idx, NULL);
369 if (p != NULL && (p = vim_strsave(p)) != NULL)
370 {
371 *(char_u **)options[opt_idx].var = p;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100372 // VIMEXP
373 // Defaults for all expanded options are currently the same for Vi
374 // and Vim. When this changes, add some code here! Also need to
375 // split P_DEF_ALLOCED in two.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000376 if (options[opt_idx].flags & P_DEF_ALLOCED)
377 vim_free(options[opt_idx].def_val[VI_DEFAULT]);
378 options[opt_idx].def_val[VI_DEFAULT] = p;
379 options[opt_idx].flags |= P_DEF_ALLOCED;
380 }
381 }
382
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100383 save_file_ff(curbuf); // Buffer is unchanged
Bram Moolenaar071d4272004-06-13 20:20:40 +0000384
Bram Moolenaar071d4272004-06-13 20:20:40 +0000385#if defined(FEAT_ARABIC)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100386 // Detect use of mlterm.
387 // Mlterm is a terminal emulator akin to xterm that has some special
388 // abilities (bidi namely).
389 // NOTE: mlterm's author is being asked to 'set' a variable
390 // instead of an environment variable due to inheritance.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000391 if (mch_getenv((char_u *)"MLTERM") != NULL)
392 set_option_value((char_u *)"tbidi", 1L, NULL, 0);
393#endif
394
Bram Moolenaare68c25c2015-08-25 15:39:55 +0200395 didset_options2();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000396
Bram Moolenaar4f974752019-02-17 17:44:42 +0100397# if defined(MSWIN) && defined(FEAT_GETTEXT)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000398 /*
399 * If $LANG isn't set, try to get a good value for it. This makes the
400 * right language be used automatically. Don't do this for English.
401 */
402 if (mch_getenv((char_u *)"LANG") == NULL)
403 {
404 char buf[20];
405
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100406 // Could use LOCALE_SISO639LANGNAME, but it's not in Win95.
407 // LOCALE_SABBREVLANGNAME gives us three letters, like "enu", we use
408 // only the first two.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000409 n = GetLocaleInfo(LOCALE_USER_DEFAULT, LOCALE_SABBREVLANGNAME,
410 (LPTSTR)buf, 20);
411 if (n >= 2 && STRNICMP(buf, "en", 2) != 0)
412 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100413 // There are a few exceptions (probably more)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000414 if (STRNICMP(buf, "cht", 3) == 0 || STRNICMP(buf, "zht", 3) == 0)
415 STRCPY(buf, "zh_TW");
416 else if (STRNICMP(buf, "chs", 3) == 0
417 || STRNICMP(buf, "zhc", 3) == 0)
418 STRCPY(buf, "zh_CN");
419 else if (STRNICMP(buf, "jp", 2) == 0)
420 STRCPY(buf, "ja");
421 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100422 buf[2] = NUL; // truncate to two-letter code
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100423 vim_setenv((char_u *)"LANG", (char_u *)buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000424 }
425 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000426# else
Bram Moolenaar9d47f172006-03-15 23:03:01 +0000427# ifdef MACOS_CONVERT
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100428 // Moved to os_mac_conv.c to avoid dependency problems.
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +0000429 mac_lang_init();
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000430# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000431# endif
432
K.Takataf883d902021-05-30 18:04:19 +0200433# ifdef MSWIN
434 // MS-Windows has builtin support for conversion to and from Unicode, using
435 // "utf-8" for 'encoding' should work best for most users.
436 p = vim_strsave((char_u *)ENC_DFLT);
437# else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100438 // enc_locale() will try to find the encoding of the current locale.
K.Takataf883d902021-05-30 18:04:19 +0200439 // This works best for properly configured systems, old and new.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000440 p = enc_locale();
K.Takataf883d902021-05-30 18:04:19 +0200441# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000442 if (p != NULL)
443 {
444 char_u *save_enc;
445
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100446 // Try setting 'encoding' and check if the value is valid.
K.Takataf883d902021-05-30 18:04:19 +0200447 // If not, go back to the default encoding.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000448 save_enc = p_enc;
449 p_enc = p;
Bram Moolenaar733f0a22007-03-02 18:56:27 +0000450 if (STRCMP(p_enc, "gb18030") == 0)
451 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100452 // We don't support "gb18030", but "cp936" is a good substitute
453 // for practical purposes, thus use that. It's not an alias to
454 // still support conversion between gb18030 and utf-8.
Bram Moolenaar733f0a22007-03-02 18:56:27 +0000455 p_enc = vim_strsave((char_u *)"cp936");
456 vim_free(p);
457 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000458 if (mb_init() == NULL)
459 {
460 opt_idx = findoption((char_u *)"encoding");
Bram Moolenaarfc1421e2006-04-20 22:17:20 +0000461 if (opt_idx >= 0)
462 {
463 options[opt_idx].def_val[VI_DEFAULT] = p_enc;
464 options[opt_idx].flags |= P_DEF_ALLOCED;
465 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000466
Bram Moolenaard0573012017-10-28 21:11:06 +0200467#if defined(MSWIN) || defined(MACOS_X) || defined(VMS)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100468 if (STRCMP(p_enc, "latin1") == 0 || enc_utf8)
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000469 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100470 // Adjust the default for 'isprint' and 'iskeyword' to match
471 // latin1. Also set the defaults for when 'nocompatible' is
472 // set.
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000473 set_string_option_direct((char_u *)"isp", -1,
Bram Moolenaar4ea8fe12006-03-09 22:32:39 +0000474 ISP_LATIN1, OPT_FREE, SID_NONE);
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000475 set_string_option_direct((char_u *)"isk", -1,
476 ISK_LATIN1, OPT_FREE, SID_NONE);
477 opt_idx = findoption((char_u *)"isp");
Bram Moolenaarfc1421e2006-04-20 22:17:20 +0000478 if (opt_idx >= 0)
479 options[opt_idx].def_val[VIM_DEFAULT] = ISP_LATIN1;
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000480 opt_idx = findoption((char_u *)"isk");
Bram Moolenaarfc1421e2006-04-20 22:17:20 +0000481 if (opt_idx >= 0)
482 options[opt_idx].def_val[VIM_DEFAULT] = ISK_LATIN1;
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000483 (void)init_chartab();
484 }
485#endif
486
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200487#if defined(MSWIN) && (!defined(FEAT_GUI) || defined(VIMDLL))
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100488 // Win32 console: When GetACP() returns a different value from
489 // GetConsoleCP() set 'termencoding'.
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200490 if (
491# ifdef VIMDLL
492 (!gui.in_use && !gui.starting) &&
493# endif
494 GetACP() != GetConsoleCP())
Bram Moolenaar071d4272004-06-13 20:20:40 +0000495 {
496 char buf[50];
497
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100498 // Win32 console: In ConPTY, GetConsoleCP() returns zero.
499 // Use an alternative value.
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +0100500 if (GetConsoleCP() == 0)
501 sprintf(buf, "cp%ld", (long)GetACP());
502 else
503 sprintf(buf, "cp%ld", (long)GetConsoleCP());
Bram Moolenaar071d4272004-06-13 20:20:40 +0000504 p_tenc = vim_strsave((char_u *)buf);
505 if (p_tenc != NULL)
506 {
507 opt_idx = findoption((char_u *)"termencoding");
Bram Moolenaarfc1421e2006-04-20 22:17:20 +0000508 if (opt_idx >= 0)
509 {
510 options[opt_idx].def_val[VI_DEFAULT] = p_tenc;
511 options[opt_idx].flags |= P_DEF_ALLOCED;
512 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000513 convert_setup(&input_conv, p_tenc, p_enc);
514 convert_setup(&output_conv, p_enc, p_tenc);
515 }
516 else
517 p_tenc = empty_option;
518 }
Bram Moolenaarfc3abf42019-01-24 15:54:21 +0100519#endif
Bram Moolenaar4f974752019-02-17 17:44:42 +0100520#if defined(MSWIN)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100521 // $HOME may have characters in active code page.
Bram Moolenaar05159a02005-02-26 23:04:13 +0000522 init_homedir();
Bram Moolenaarfc3abf42019-01-24 15:54:21 +0100523#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000524 }
525 else
526 {
527 vim_free(p_enc);
528 p_enc = save_enc;
529 }
530 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000531
532#ifdef FEAT_MULTI_LANG
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100533 // Set the default for 'helplang'.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000534 set_helplang_default(get_mess_lang());
535#endif
536}
537
Bram Moolenaar5ffefbb2021-06-13 20:27:36 +0200538static char_u *fencs_utf8_default = (char_u *)"ucs-bom,utf-8,default,latin1";
539
540/*
541 * Set the "fileencodings" option to the default value for when 'encoding' is
542 * utf-8.
543 */
544 void
545set_fencs_unicode()
546{
547 set_string_option_direct((char_u *)"fencs", -1, fencs_utf8_default,
548 OPT_FREE, 0);
549}
550
Bram Moolenaar071d4272004-06-13 20:20:40 +0000551/*
552 * Set an option to its default value.
553 * This does not take care of side effects!
554 */
555 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100556set_option_default(
557 int opt_idx,
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100558 int opt_flags, // OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL
559 int compatible) // use Vi default value
Bram Moolenaar071d4272004-06-13 20:20:40 +0000560{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100561 char_u *varp; // pointer to variable for current option
562 int dvi; // index in def_val[]
Bram Moolenaar071d4272004-06-13 20:20:40 +0000563 long_u flags;
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000564 long_u *flagsp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000565 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
566
567 varp = get_varp_scope(&(options[opt_idx]), both ? OPT_LOCAL : opt_flags);
568 flags = options[opt_idx].flags;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100569 if (varp != NULL) // skip hidden option, nothing to do for it
Bram Moolenaar071d4272004-06-13 20:20:40 +0000570 {
571 dvi = ((flags & P_VI_DEF) || compatible) ? VI_DEFAULT : VIM_DEFAULT;
572 if (flags & P_STRING)
573 {
Bram Moolenaar5ffefbb2021-06-13 20:27:36 +0200574 // 'fencs' default value depends on 'encoding'
575 if (options[opt_idx].var == (char_u *)&p_fencs && enc_utf8)
576 set_fencs_unicode();
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100577 // Use set_string_option_direct() for local options to handle
578 // freeing and allocating the value.
Bram Moolenaar5ffefbb2021-06-13 20:27:36 +0200579 else if (options[opt_idx].indir != PV_NONE)
Bram Moolenaarb833c1e2018-05-05 16:36:06 +0200580 set_string_option_direct(NULL, opt_idx,
581 options[opt_idx].def_val[dvi], opt_flags, 0);
582 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000583 {
Bram Moolenaarb833c1e2018-05-05 16:36:06 +0200584 if ((opt_flags & OPT_FREE) && (flags & P_ALLOCED))
585 free_string_option(*(char_u **)(varp));
586 *(char_u **)varp = options[opt_idx].def_val[dvi];
587 options[opt_idx].flags &= ~P_ALLOCED;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000588 }
589 }
590 else if (flags & P_NUM)
591 {
Bram Moolenaar5fc1a8b2006-10-17 16:34:24 +0000592 if (options[opt_idx].indir == PV_SCROLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000593 win_comp_scroll(curwin);
594 else
595 {
Bram Moolenaar375e3392019-01-31 18:26:10 +0100596 long def_val = (long)(long_i)options[opt_idx].def_val[dvi];
597
598 if ((long *)varp == &curwin->w_p_so
599 || (long *)varp == &curwin->w_p_siso)
600 // 'scrolloff' and 'sidescrolloff' local values have a
601 // different default value than the global default.
602 *(long *)varp = -1;
603 else
604 *(long *)varp = def_val;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100605 // May also set global value for local option.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000606 if (both)
607 *(long *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) =
Bram Moolenaar375e3392019-01-31 18:26:10 +0100608 def_val;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000609 }
610 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100611 else // P_BOOL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000612 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100613 // the cast to long is required for Manx C, long_i is needed for
614 // MSVC
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000615 *(int *)varp = (int)(long)(long_i)options[opt_idx].def_val[dvi];
Bram Moolenaar8243a792007-05-01 17:05:03 +0000616#ifdef UNIX
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100617 // 'modeline' defaults to off for root
Bram Moolenaar8243a792007-05-01 17:05:03 +0000618 if (options[opt_idx].indir == PV_ML && getuid() == ROOT_UID)
619 *(int *)varp = FALSE;
620#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100621 // May also set global value for local option.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000622 if (both)
623 *(int *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) =
624 *(int *)varp;
625 }
Bram Moolenaarb71eaae2006-01-20 23:10:18 +0000626
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100627 // The default value is not insecure.
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000628 flagsp = insecure_flag(opt_idx, opt_flags);
629 *flagsp = *flagsp & ~P_INSECURE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000630 }
631
632#ifdef FEAT_EVAL
Bram Moolenaarf29c1c62018-09-10 21:05:02 +0200633 set_option_sctx_idx(opt_idx, opt_flags, current_sctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000634#endif
635}
636
637/*
638 * Set all options (except terminal options) to their default value.
Bram Moolenaarb341dda2015-08-25 12:56:31 +0200639 * When "opt_flags" is non-zero skip 'encoding'.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000640 */
641 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100642set_options_default(
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100643 int opt_flags) // OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000644{
645 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000646 win_T *wp;
Bram Moolenaarf740b292006-02-16 22:11:02 +0000647 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000648
Bram Moolenaardac13472019-09-16 21:06:21 +0200649 for (i = 0; !istermoption_idx(i); i++)
Bram Moolenaarb341dda2015-08-25 12:56:31 +0200650 if (!(options[i].flags & P_NODEFAULT)
Bram Moolenaare68c25c2015-08-25 15:39:55 +0200651 && (opt_flags == 0
Bram Moolenaarfc3abf42019-01-24 15:54:21 +0100652 || (options[i].var != (char_u *)&p_enc
Bram Moolenaar5ea87a02015-08-26 23:24:09 +0200653# if defined(FEAT_CRYPT)
Bram Moolenaare68c25c2015-08-25 15:39:55 +0200654 && options[i].var != (char_u *)&p_cm
Bram Moolenaar80606872015-08-25 21:27:35 +0200655 && options[i].var != (char_u *)&p_key
Bram Moolenaar5ea87a02015-08-26 23:24:09 +0200656# endif
Bram Moolenaarfc3abf42019-01-24 15:54:21 +0100657 )))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000658 set_option_default(i, opt_flags, p_cp);
659
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100660 // The 'scroll' option must be computed for all windows.
Bram Moolenaarf740b292006-02-16 22:11:02 +0000661 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000662 win_comp_scroll(wp);
Bram Moolenaar5a4eceb2014-09-09 17:33:07 +0200663#ifdef FEAT_CINDENT
664 parse_cino(curbuf);
665#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000666}
667
668/*
669 * Set the Vi-default value of a string option.
670 * Used for 'sh', 'backupskip' and 'term'.
Bram Moolenaar4bfa8af2018-02-03 15:14:46 +0100671 * When "escape" is TRUE escape spaces with a backslash.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000672 */
Bram Moolenaar4bfa8af2018-02-03 15:14:46 +0100673 static void
674set_string_default_esc(char *name, char_u *val, int escape)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000675{
676 char_u *p;
677 int opt_idx;
678
Bram Moolenaar4bfa8af2018-02-03 15:14:46 +0100679 if (escape && vim_strchr(val, ' ') != NULL)
680 p = vim_strsave_escaped(val, (char_u *)" ");
681 else
682 p = vim_strsave(val);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100683 if (p != NULL) // we don't want a NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000684 {
685 opt_idx = findoption((char_u *)name);
Bram Moolenaarfc1421e2006-04-20 22:17:20 +0000686 if (opt_idx >= 0)
687 {
688 if (options[opt_idx].flags & P_DEF_ALLOCED)
689 vim_free(options[opt_idx].def_val[VI_DEFAULT]);
690 options[opt_idx].def_val[VI_DEFAULT] = p;
691 options[opt_idx].flags |= P_DEF_ALLOCED;
692 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000693 }
694}
695
Bram Moolenaar4bfa8af2018-02-03 15:14:46 +0100696 void
697set_string_default(char *name, char_u *val)
698{
699 set_string_default_esc(name, val, FALSE);
700}
701
Bram Moolenaar071d4272004-06-13 20:20:40 +0000702/*
Bram Moolenaarb00ef052020-09-12 14:53:53 +0200703 * For an option value that contains comma separated items, find "newval" in
704 * "origval". Return NULL if not found.
705 */
706 static char_u *
707find_dup_item(char_u *origval, char_u *newval, long_u flags)
708{
Bram Moolenaar8f13d822020-09-12 21:04:23 +0200709 int bs = 0;
Bram Moolenaarb00ef052020-09-12 14:53:53 +0200710 size_t newlen;
711 char_u *s;
712
713 if (origval == NULL)
714 return NULL;
715
716 newlen = STRLEN(newval);
717 for (s = origval; *s != NUL; ++s)
718 {
719 if ((!(flags & P_COMMA)
720 || s == origval
721 || (s[-1] == ',' && !(bs & 1)))
722 && STRNCMP(s, newval, newlen) == 0
723 && (!(flags & P_COMMA)
724 || s[newlen] == ','
725 || s[newlen] == NUL))
726 return s;
727 // Count backslashes. Only a comma with an even number of backslashes
728 // or a single backslash preceded by a comma before it is recognized as
729 // a separator.
730 if ((s > origval + 1
731 && s[-1] == '\\'
732 && s[-2] != ',')
733 || (s == origval + 1
734 && s[-1] == '\\'))
735 ++bs;
736 else
737 bs = 0;
738 }
739 return NULL;
740}
741
742/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000743 * Set the Vi-default value of a number option.
744 * Used for 'lines' and 'columns'.
745 */
746 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100747set_number_default(char *name, long val)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000748{
Bram Moolenaarfc1421e2006-04-20 22:17:20 +0000749 int opt_idx;
750
751 opt_idx = findoption((char_u *)name);
752 if (opt_idx >= 0)
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000753 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000754}
755
Bram Moolenaarcacc6a52019-05-30 15:22:43 +0200756/*
757 * Set all window-local and buffer-local options to the Vim default.
758 * local-global options will use the global value.
Bram Moolenaar46451042019-08-24 15:50:46 +0200759 * When "do_buffer" is FALSE don't set buffer-local options.
Bram Moolenaarcacc6a52019-05-30 15:22:43 +0200760 */
761 void
Bram Moolenaar46451042019-08-24 15:50:46 +0200762set_local_options_default(win_T *wp, int do_buffer)
Bram Moolenaarcacc6a52019-05-30 15:22:43 +0200763{
764 win_T *save_curwin = curwin;
765 int i;
766
767 curwin = wp;
768 curbuf = curwin->w_buffer;
769 block_autocmds();
770
Bram Moolenaardac13472019-09-16 21:06:21 +0200771 for (i = 0; !istermoption_idx(i); i++)
Bram Moolenaarcacc6a52019-05-30 15:22:43 +0200772 {
773 struct vimoption *p = &(options[i]);
774 char_u *varp = get_varp_scope(p, OPT_LOCAL);
775
776 if (p->indir != PV_NONE
Bram Moolenaar46451042019-08-24 15:50:46 +0200777 && (do_buffer || (p->indir & PV_BUF) == 0)
Bram Moolenaarcacc6a52019-05-30 15:22:43 +0200778 && !(options[i].flags & P_NODEFAULT)
779 && !optval_default(p, varp, FALSE))
Bram Moolenaar86173482019-10-01 17:02:16 +0200780 set_option_default(i, OPT_FREE|OPT_LOCAL, FALSE);
Bram Moolenaarcacc6a52019-05-30 15:22:43 +0200781 }
782
783 unblock_autocmds();
784 curwin = save_curwin;
785 curbuf = curwin->w_buffer;
786}
787
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000788#if defined(EXITFREE) || defined(PROTO)
789/*
790 * Free all options.
791 */
792 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100793free_all_options(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000794{
795 int i;
796
Bram Moolenaardac13472019-09-16 21:06:21 +0200797 for (i = 0; !istermoption_idx(i); i++)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000798 {
799 if (options[i].indir == PV_NONE)
800 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100801 // global option: free value and default value.
Bram Moolenaar67391142017-02-19 21:07:04 +0100802 if ((options[i].flags & P_ALLOCED) && options[i].var != NULL)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000803 free_string_option(*(char_u **)options[i].var);
804 if (options[i].flags & P_DEF_ALLOCED)
805 free_string_option(options[i].def_val[VI_DEFAULT]);
806 }
807 else if (options[i].var != VAR_WIN
808 && (options[i].flags & P_STRING))
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100809 // buffer-local option: free global value
Bram Moolenaar77111e22021-07-29 21:11:30 +0200810 clear_string_option((char_u **)options[i].var);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000811 }
812}
813#endif
814
815
Bram Moolenaar071d4272004-06-13 20:20:40 +0000816/*
817 * Initialize the options, part two: After getting Rows and Columns and
818 * setting 'term'.
819 */
820 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100821set_init_2(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000822{
Bram Moolenaar4399ef42005-02-12 14:29:27 +0000823 int idx;
824
Bram Moolenaar071d4272004-06-13 20:20:40 +0000825 /*
Bram Moolenaaraf2d20c2017-10-29 15:26:57 +0100826 * 'scroll' defaults to half the window height. The stored default is zero,
827 * which results in the actual value computed from the window height.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000828 */
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000829 idx = findoption((char_u *)"scroll");
Bram Moolenaarfc1421e2006-04-20 22:17:20 +0000830 if (idx >= 0 && !(options[idx].flags & P_WAS_SET))
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000831 set_option_default(idx, OPT_LOCAL, p_cp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000832 comp_col();
833
Bram Moolenaar4399ef42005-02-12 14:29:27 +0000834 /*
835 * 'window' is only for backwards compatibility with Vi.
836 * Default is Rows - 1.
837 */
Bram Moolenaard68071d2006-05-02 22:08:30 +0000838 if (!option_was_set((char_u *)"window"))
Bram Moolenaar4399ef42005-02-12 14:29:27 +0000839 p_window = Rows - 1;
840 set_number_default("window", Rows - 1);
841
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100842 // For DOS console the default is always black.
Bram Moolenaar4f974752019-02-17 17:44:42 +0100843#if !((defined(MSWIN)) && !defined(FEAT_GUI))
Bram Moolenaarf740b292006-02-16 22:11:02 +0000844 /*
845 * If 'background' wasn't set by the user, try guessing the value,
846 * depending on the terminal name. Only need to check for terminals
847 * with a dark background, that can handle color.
848 */
849 idx = findoption((char_u *)"bg");
Bram Moolenaarfc1421e2006-04-20 22:17:20 +0000850 if (idx >= 0 && !(options[idx].flags & P_WAS_SET)
851 && *term_bg_default() == 'd')
Bram Moolenaar071d4272004-06-13 20:20:40 +0000852 {
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +0000853 set_string_option_direct(NULL, idx, (char_u *)"dark", OPT_FREE, 0);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100854 // don't mark it as set, when starting the GUI it may be
855 // changed again
Bram Moolenaarf740b292006-02-16 22:11:02 +0000856 options[idx].flags &= ~P_WAS_SET;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000857 }
858#endif
Bram Moolenaar58d98232005-07-23 22:25:46 +0000859
860#ifdef CURSOR_SHAPE
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100861 parse_shape_opt(SHAPE_CURSOR); // set cursor shapes from 'guicursor'
Bram Moolenaar58d98232005-07-23 22:25:46 +0000862#endif
863#ifdef FEAT_MOUSESHAPE
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100864 parse_shape_opt(SHAPE_MOUSE); // set mouse shapes from 'mouseshape'
Bram Moolenaar58d98232005-07-23 22:25:46 +0000865#endif
866#ifdef FEAT_PRINTER
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100867 (void)parse_printoptions(); // parse 'printoptions' default value
Bram Moolenaar58d98232005-07-23 22:25:46 +0000868#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000869}
870
871/*
872 * Initialize the options, part three: After reading the .vimrc
873 */
874 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100875set_init_3(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000876{
Bram Moolenaar4f974752019-02-17 17:44:42 +0100877#if defined(UNIX) || defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000878/*
879 * Set 'shellpipe' and 'shellredir', depending on the 'shell' option.
880 * This is done after other initializations, where 'shell' might have been
881 * set, but only if they have not been set before.
882 */
883 char_u *p;
884 int idx_srr;
885 int do_srr;
Bram Moolenaare7fedb62015-12-31 19:07:19 +0100886# ifdef FEAT_QUICKFIX
Bram Moolenaar071d4272004-06-13 20:20:40 +0000887 int idx_sp;
888 int do_sp;
Bram Moolenaare7fedb62015-12-31 19:07:19 +0100889# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000890
891 idx_srr = findoption((char_u *)"srr");
Bram Moolenaarfc1421e2006-04-20 22:17:20 +0000892 if (idx_srr < 0)
893 do_srr = FALSE;
894 else
895 do_srr = !(options[idx_srr].flags & P_WAS_SET);
Bram Moolenaare7fedb62015-12-31 19:07:19 +0100896# ifdef FEAT_QUICKFIX
Bram Moolenaar071d4272004-06-13 20:20:40 +0000897 idx_sp = findoption((char_u *)"sp");
Bram Moolenaarfc1421e2006-04-20 22:17:20 +0000898 if (idx_sp < 0)
899 do_sp = FALSE;
900 else
901 do_sp = !(options[idx_sp].flags & P_WAS_SET);
Bram Moolenaare7fedb62015-12-31 19:07:19 +0100902# endif
Bram Moolenaar75a8d742014-05-07 15:10:21 +0200903 p = get_isolated_shell_name();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000904 if (p != NULL)
905 {
906 /*
907 * Default for p_sp is "| tee", for p_srr is ">".
908 * For known shells it is changed here to include stderr.
909 */
910 if ( fnamecmp(p, "csh") == 0
911 || fnamecmp(p, "tcsh") == 0
Bram Moolenaar4f974752019-02-17 17:44:42 +0100912# if defined(MSWIN) // also check with .exe extension
Bram Moolenaar071d4272004-06-13 20:20:40 +0000913 || fnamecmp(p, "csh.exe") == 0
914 || fnamecmp(p, "tcsh.exe") == 0
915# endif
916 )
917 {
Bram Moolenaare7fedb62015-12-31 19:07:19 +0100918# if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000919 if (do_sp)
920 {
Bram Moolenaar4f974752019-02-17 17:44:42 +0100921# ifdef MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000922 p_sp = (char_u *)">&";
Bram Moolenaare7fedb62015-12-31 19:07:19 +0100923# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000924 p_sp = (char_u *)"|& tee";
Bram Moolenaare7fedb62015-12-31 19:07:19 +0100925# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000926 options[idx_sp].def_val[VI_DEFAULT] = p_sp;
927 }
Bram Moolenaare7fedb62015-12-31 19:07:19 +0100928# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000929 if (do_srr)
930 {
931 p_srr = (char_u *)">&";
932 options[idx_srr].def_val[VI_DEFAULT] = p_srr;
933 }
934 }
Mike Williams12795022021-06-28 20:53:58 +0200935# ifdef MSWIN
Mike Williamsa3d1b292021-06-30 20:56:00 +0200936 // Windows PowerShell output is UTF-16 with BOM so re-encode to the
937 // current codepage.
Mike Williams12795022021-06-28 20:53:58 +0200938 else if ( fnamecmp(p, "powershell") == 0
939 || fnamecmp(p, "powershell.exe") == 0
940 )
941 {
942# if defined(FEAT_QUICKFIX)
943 if (do_sp)
944 {
945 p_sp = (char_u *)"2>&1 | Out-File -Encoding default";
946 options[idx_sp].def_val[VI_DEFAULT] = p_sp;
947 }
948# endif
949 if (do_srr)
950 {
951 p_srr = (char_u *)"2>&1 | Out-File -Encoding default";
952 options[idx_srr].def_val[VI_DEFAULT] = p_srr;
953 }
954 }
955#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000956 else
Natanael Copa56318362021-05-06 18:46:35 +0200957 // Always use POSIX shell style redirection if we reach this
Bram Moolenaar071d4272004-06-13 20:20:40 +0000958 if ( fnamecmp(p, "sh") == 0
959 || fnamecmp(p, "ksh") == 0
Bram Moolenaarf1fda2d2011-04-28 12:57:36 +0200960 || fnamecmp(p, "mksh") == 0
961 || fnamecmp(p, "pdksh") == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +0000962 || fnamecmp(p, "zsh") == 0
Bram Moolenaarc1e37902006-04-18 21:55:01 +0000963 || fnamecmp(p, "zsh-beta") == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +0000964 || fnamecmp(p, "bash") == 0
Bram Moolenaar75a8d742014-05-07 15:10:21 +0200965 || fnamecmp(p, "fish") == 0
Natanael Copa56318362021-05-06 18:46:35 +0200966 || fnamecmp(p, "ash") == 0
967 || fnamecmp(p, "dash") == 0
Mike Williamsa3d1b292021-06-30 20:56:00 +0200968 || fnamecmp(p, "pwsh") == 0
Bram Moolenaar4f974752019-02-17 17:44:42 +0100969# ifdef MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000970 || fnamecmp(p, "cmd") == 0
971 || fnamecmp(p, "sh.exe") == 0
972 || fnamecmp(p, "ksh.exe") == 0
Bram Moolenaarf1fda2d2011-04-28 12:57:36 +0200973 || fnamecmp(p, "mksh.exe") == 0
974 || fnamecmp(p, "pdksh.exe") == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +0000975 || fnamecmp(p, "zsh.exe") == 0
Bram Moolenaarc1e37902006-04-18 21:55:01 +0000976 || fnamecmp(p, "zsh-beta.exe") == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +0000977 || fnamecmp(p, "bash.exe") == 0
978 || fnamecmp(p, "cmd.exe") == 0
Natanael Copa56318362021-05-06 18:46:35 +0200979 || fnamecmp(p, "dash.exe") == 0
Mike Williamsa3d1b292021-06-30 20:56:00 +0200980 || fnamecmp(p, "pwsh.exe") == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +0000981# endif
Bram Moolenaare7fedb62015-12-31 19:07:19 +0100982 )
Bram Moolenaar071d4272004-06-13 20:20:40 +0000983 {
Bram Moolenaare7fedb62015-12-31 19:07:19 +0100984# if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000985 if (do_sp)
986 {
Bram Moolenaar4f974752019-02-17 17:44:42 +0100987# ifdef MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000988 p_sp = (char_u *)">%s 2>&1";
Bram Moolenaare7fedb62015-12-31 19:07:19 +0100989# else
Mike Williamsa3d1b292021-06-30 20:56:00 +0200990 if (fnamecmp(p, "pwsh") == 0)
991 p_sp = (char_u *)">%s 2>&1";
992 else
993 p_sp = (char_u *)"2>&1| tee";
Bram Moolenaare7fedb62015-12-31 19:07:19 +0100994# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000995 options[idx_sp].def_val[VI_DEFAULT] = p_sp;
996 }
Bram Moolenaare7fedb62015-12-31 19:07:19 +0100997# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000998 if (do_srr)
999 {
1000 p_srr = (char_u *)">%s 2>&1";
1001 options[idx_srr].def_val[VI_DEFAULT] = p_srr;
1002 }
1003 }
1004 vim_free(p);
1005 }
1006#endif
1007
Bram Moolenaar4f974752019-02-17 17:44:42 +01001008#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001009 /*
Bram Moolenaara64ba222012-02-12 23:23:31 +01001010 * Set 'shellcmdflag', 'shellxquote', and 'shellquote' depending on the
1011 * 'shell' option.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001012 * This is done after other initializations, where 'shell' might have been
Mike Williams12795022021-06-28 20:53:58 +02001013 * set, but only if they have not been set before.
1014 * Default values depend on shell (cmd.exe is default shell):
1015 *
1016 * p_shcf p_sxq
1017 * cmd.exe - "/c" "("
1018 * powershell.exe - "-Command" "\""
Mike Williamsa3d1b292021-06-30 20:56:00 +02001019 * pwsh.exe - "-c" "\""
Mike Williams12795022021-06-28 20:53:58 +02001020 * "sh" like shells - "-c" "\""
1021 *
1022 * For Win32 p_sxq is set instead of p_shq to include shell redirection.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001023 */
Mike Williams12795022021-06-28 20:53:58 +02001024 if (strstr((char *)gettail(p_sh), "powershell") != NULL)
1025 {
1026 int idx_opt;
1027
1028 idx_opt = findoption((char_u *)"shcf");
1029 if (idx_opt >= 0 && !(options[idx_opt].flags & P_WAS_SET))
1030 {
1031 p_shcf = (char_u*)"-Command";
1032 options[idx_opt].def_val[VI_DEFAULT] = p_shcf;
1033 }
1034
1035 idx_opt = findoption((char_u *)"sxq");
1036 if (idx_opt >= 0 && !(options[idx_opt].flags & P_WAS_SET))
1037 {
1038 p_sxq = (char_u*)"\"";
1039 options[idx_opt].def_val[VI_DEFAULT] = p_sxq;
1040 }
1041 }
1042 else if (strstr((char *)gettail(p_sh), "sh") != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001043 {
1044 int idx3;
1045
1046 idx3 = findoption((char_u *)"shcf");
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00001047 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001048 {
1049 p_shcf = (char_u *)"-c";
1050 options[idx3].def_val[VI_DEFAULT] = p_shcf;
1051 }
1052
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001053 // Somehow Win32 requires the quotes around the redirection too
Bram Moolenaar071d4272004-06-13 20:20:40 +00001054 idx3 = findoption((char_u *)"sxq");
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00001055 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001056 {
1057 p_sxq = (char_u *)"\"";
1058 options[idx3].def_val[VI_DEFAULT] = p_sxq;
1059 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001060 }
Bram Moolenaara64ba222012-02-12 23:23:31 +01001061 else if (strstr((char *)gettail(p_sh), "cmd.exe") != NULL)
1062 {
1063 int idx3;
1064
1065 /*
1066 * cmd.exe on Windows will strip the first and last double quote given
1067 * on the command line, e.g. most of the time things like:
1068 * cmd /c "my path/to/echo" "my args to echo"
1069 * become:
1070 * my path/to/echo" "my args to echo
1071 * when executed.
1072 *
Bram Moolenaar034b1152012-02-19 18:19:30 +01001073 * To avoid this, set shellxquote to surround the command in
1074 * parenthesis. This appears to make most commands work, without
1075 * breaking commands that worked previously, such as
1076 * '"path with spaces/cmd" "a&b"'.
Bram Moolenaara64ba222012-02-12 23:23:31 +01001077 */
Bram Moolenaara64ba222012-02-12 23:23:31 +01001078 idx3 = findoption((char_u *)"sxq");
1079 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
1080 {
Bram Moolenaar034b1152012-02-19 18:19:30 +01001081 p_sxq = (char_u *)"(";
Bram Moolenaara64ba222012-02-12 23:23:31 +01001082 options[idx3].def_val[VI_DEFAULT] = p_sxq;
1083 }
1084
Bram Moolenaara64ba222012-02-12 23:23:31 +01001085 idx3 = findoption((char_u *)"shcf");
1086 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
1087 {
Bram Moolenaar034b1152012-02-19 18:19:30 +01001088 p_shcf = (char_u *)"/c";
Bram Moolenaara64ba222012-02-12 23:23:31 +01001089 options[idx3].def_val[VI_DEFAULT] = p_shcf;
1090 }
1091 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001092#endif
1093
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01001094 if (BUFEMPTY())
Bram Moolenaar364fa5c2016-03-20 17:53:25 +01001095 {
1096 int idx_ffs = findoption((char_u *)"ffs");
1097
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001098 // Apply the first entry of 'fileformats' to the initial buffer.
Bram Moolenaar364fa5c2016-03-20 17:53:25 +01001099 if (idx_ffs >= 0 && (options[idx_ffs].flags & P_WAS_SET))
1100 set_fileformat(default_fileformat(), OPT_LOCAL);
1101 }
1102
Bram Moolenaar071d4272004-06-13 20:20:40 +00001103#ifdef FEAT_TITLE
1104 set_title_defaults();
1105#endif
1106}
1107
1108#if defined(FEAT_MULTI_LANG) || defined(PROTO)
1109/*
1110 * When 'helplang' is still at its default value, set it to "lang".
1111 * Only the first two characters of "lang" are used.
1112 */
1113 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001114set_helplang_default(char_u *lang)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001115{
1116 int idx;
1117
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001118 if (lang == NULL || STRLEN(lang) < 2) // safety check
Bram Moolenaar071d4272004-06-13 20:20:40 +00001119 return;
1120 idx = findoption((char_u *)"hlg");
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00001121 if (idx >= 0 && !(options[idx].flags & P_WAS_SET))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001122 {
1123 if (options[idx].flags & P_ALLOCED)
1124 free_string_option(p_hlg);
1125 p_hlg = vim_strsave(lang);
1126 if (p_hlg == NULL)
1127 p_hlg = empty_option;
1128 else
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00001129 {
Bram Moolenaardcd71cb2018-11-04 14:40:47 +01001130 // zh_CN becomes "cn", zh_TW becomes "tw"
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00001131 if (STRNICMP(p_hlg, "zh_", 3) == 0 && STRLEN(p_hlg) >= 5)
1132 {
1133 p_hlg[0] = TOLOWER_ASC(p_hlg[3]);
1134 p_hlg[1] = TOLOWER_ASC(p_hlg[4]);
1135 }
Bram Moolenaardcd71cb2018-11-04 14:40:47 +01001136 // any C like setting, such as C.UTF-8, becomes "en"
1137 else if (STRLEN(p_hlg) >= 1 && *p_hlg == 'C')
1138 {
1139 p_hlg[0] = 'e';
1140 p_hlg[1] = 'n';
1141 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001142 p_hlg[2] = NUL;
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00001143 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001144 options[idx].flags |= P_ALLOCED;
1145 }
1146}
1147#endif
1148
Bram Moolenaar071d4272004-06-13 20:20:40 +00001149#ifdef FEAT_TITLE
1150/*
1151 * 'title' and 'icon' only default to true if they have not been set or reset
1152 * in .vimrc and we can read the old value.
1153 * When 'title' and 'icon' have been reset in .vimrc, we won't even check if
1154 * they can be reset. This reduces startup time when using X on a remote
1155 * machine.
1156 */
1157 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001158set_title_defaults(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001159{
1160 int idx1;
1161 long val;
1162
1163 /*
1164 * If GUI is (going to be) used, we can always set the window title and
1165 * icon name. Saves a bit of time, because the X11 display server does
1166 * not need to be contacted.
1167 */
1168 idx1 = findoption((char_u *)"title");
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00001169 if (idx1 >= 0 && !(options[idx1].flags & P_WAS_SET))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001170 {
1171#ifdef FEAT_GUI
1172 if (gui.starting || gui.in_use)
1173 val = TRUE;
1174 else
1175#endif
1176 val = mch_can_restore_title();
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001177 options[idx1].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001178 p_title = val;
1179 }
1180 idx1 = findoption((char_u *)"icon");
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00001181 if (idx1 >= 0 && !(options[idx1].flags & P_WAS_SET))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001182 {
1183#ifdef FEAT_GUI
1184 if (gui.starting || gui.in_use)
1185 val = TRUE;
1186 else
1187#endif
1188 val = mch_can_restore_icon();
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001189 options[idx1].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001190 p_icon = val;
1191 }
1192}
1193#endif
1194
Bram Moolenaar6b915c02020-01-18 15:53:19 +01001195 void
1196ex_set(exarg_T *eap)
1197{
1198 int flags = 0;
1199
1200 if (eap->cmdidx == CMD_setlocal)
1201 flags = OPT_LOCAL;
1202 else if (eap->cmdidx == CMD_setglobal)
1203 flags = OPT_GLOBAL;
1204#if defined(FEAT_EVAL) && defined(FEAT_BROWSE)
Bram Moolenaare1004402020-10-24 20:49:43 +02001205 if ((cmdmod.cmod_flags & CMOD_BROWSE) && flags == 0)
Bram Moolenaar6b915c02020-01-18 15:53:19 +01001206 ex_options(eap);
1207 else
1208#endif
1209 {
1210 if (eap->forceit)
1211 flags |= OPT_ONECOLUMN;
1212 (void)do_set(eap->arg, flags);
1213 }
1214}
1215
Bram Moolenaar071d4272004-06-13 20:20:40 +00001216/*
1217 * Parse 'arg' for option settings.
1218 *
1219 * 'arg' may be IObuff, but only when no errors can be present and option
1220 * does not need to be expanded with option_expand().
1221 * "opt_flags":
1222 * 0 for ":set"
Bram Moolenaara3227e22006-03-08 21:32:40 +00001223 * OPT_GLOBAL for ":setglobal"
1224 * OPT_LOCAL for ":setlocal" and a modeline
Bram Moolenaar071d4272004-06-13 20:20:40 +00001225 * OPT_MODELINE for a modeline
Bram Moolenaara3227e22006-03-08 21:32:40 +00001226 * OPT_WINONLY to only set window-local options
1227 * OPT_NOWIN to skip setting window-local options
Bram Moolenaar071d4272004-06-13 20:20:40 +00001228 *
1229 * returns FAIL if an error is detected, OK otherwise
1230 */
1231 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001232do_set(
Bram Moolenaar1594f312021-07-08 16:40:13 +02001233 char_u *arg_start, // option string (may be written to!)
Bram Moolenaar9b578142016-01-30 19:39:49 +01001234 int opt_flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001235{
Bram Moolenaar1594f312021-07-08 16:40:13 +02001236 char_u *arg = arg_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001237 int opt_idx;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001238 char *errmsg;
1239 char errbuf[80];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001240 char_u *startarg;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001241 int prefix; // 1: nothing, 0: "no", 2: "inv" in front of name
1242 int nextchar; // next non-white char after option name
1243 int afterchar; // character just after option name
Bram Moolenaar071d4272004-06-13 20:20:40 +00001244 int len;
1245 int i;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02001246 varnumber_T value;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001247 int key;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001248 long_u flags; // flags for current option
1249 char_u *varp = NULL; // pointer to variable for current option
1250 int did_show = FALSE; // already showed one value
1251 int adding; // "opt+=arg"
1252 int prepending; // "opt^=arg"
1253 int removing; // "opt-=arg"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001254 int cp_val = 0;
1255 char_u key_name[2];
1256
1257 if (*arg == NUL)
1258 {
1259 showoptions(0, opt_flags);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001260 did_show = TRUE;
1261 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001262 }
1263
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001264 while (*arg != NUL) // loop to process all options
Bram Moolenaar071d4272004-06-13 20:20:40 +00001265 {
1266 errmsg = NULL;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001267 startarg = arg; // remember for error message
Bram Moolenaar071d4272004-06-13 20:20:40 +00001268
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001269 if (STRNCMP(arg, "all", 3) == 0 && !isalpha(arg[3])
1270 && !(opt_flags & OPT_MODELINE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001271 {
1272 /*
1273 * ":set all" show all options.
1274 * ":set all&" set all options to their default value.
1275 */
1276 arg += 3;
1277 if (*arg == '&')
1278 {
1279 ++arg;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001280 // Only for :set command set global value of local options.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001281 set_options_default(OPT_FREE | opt_flags);
Bram Moolenaare68c25c2015-08-25 15:39:55 +02001282 didset_options();
1283 didset_options2();
Bram Moolenaarb341dda2015-08-25 12:56:31 +02001284 redraw_all_later(CLEAR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001285 }
1286 else
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001287 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001288 showoptions(1, opt_flags);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001289 did_show = TRUE;
1290 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001291 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001292 else if (STRNCMP(arg, "termcap", 7) == 0 && !(opt_flags & OPT_MODELINE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001293 {
1294 showoptions(2, opt_flags);
1295 show_termcodes();
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001296 did_show = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001297 arg += 7;
1298 }
1299 else
1300 {
1301 prefix = 1;
Bram Moolenaar2a7b9ee2009-06-16 15:50:33 +00001302 if (STRNCMP(arg, "no", 2) == 0 && STRNCMP(arg, "novice", 6) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001303 {
1304 prefix = 0;
1305 arg += 2;
1306 }
1307 else if (STRNCMP(arg, "inv", 3) == 0)
1308 {
1309 prefix = 2;
1310 arg += 3;
1311 }
1312
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001313 // find end of name
Bram Moolenaar071d4272004-06-13 20:20:40 +00001314 key = 0;
1315 if (*arg == '<')
1316 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001317 opt_idx = -1;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001318 // look out for <t_>;>
Bram Moolenaar071d4272004-06-13 20:20:40 +00001319 if (arg[1] == 't' && arg[2] == '_' && arg[3] && arg[4])
1320 len = 5;
1321 else
1322 {
1323 len = 1;
1324 while (arg[len] != NUL && arg[len] != '>')
1325 ++len;
1326 }
1327 if (arg[len] != '>')
1328 {
1329 errmsg = e_invarg;
1330 goto skip;
1331 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001332 arg[len] = NUL; // put NUL after name
1333 if (arg[1] == 't' && arg[2] == '_') // could be term code
Bram Moolenaar071d4272004-06-13 20:20:40 +00001334 opt_idx = findoption(arg + 1);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001335 arg[len++] = '>'; // restore '>'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001336 if (opt_idx == -1)
Bram Moolenaar9cf4b502018-07-23 04:12:03 +02001337 key = find_key_option(arg + 1, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001338 }
1339 else
1340 {
1341 len = 0;
1342 /*
1343 * The two characters after "t_" may not be alphanumeric.
1344 */
1345 if (arg[0] == 't' && arg[1] == '_' && arg[2] && arg[3])
1346 len = 4;
1347 else
1348 while (ASCII_ISALNUM(arg[len]) || arg[len] == '_')
1349 ++len;
1350 nextchar = arg[len];
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001351 arg[len] = NUL; // put NUL after name
Bram Moolenaar071d4272004-06-13 20:20:40 +00001352 opt_idx = findoption(arg);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001353 arg[len] = nextchar; // restore nextchar
Bram Moolenaar071d4272004-06-13 20:20:40 +00001354 if (opt_idx == -1)
Bram Moolenaar9cf4b502018-07-23 04:12:03 +02001355 key = find_key_option(arg, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001356 }
1357
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001358 // remember character after option name
Bram Moolenaar071d4272004-06-13 20:20:40 +00001359 afterchar = arg[len];
1360
Bram Moolenaardeb108b2021-07-08 17:35:36 +02001361 if (in_vim9script())
1362 {
1363 char_u *p = skipwhite(arg + len);
1364
1365 // disallow white space before =val, +=val, -=val, ^=val
1366 if (p > arg + len && (p[0] == '='
1367 || (vim_strchr((char_u *)"+-^", p[0]) != NULL
1368 && p[1] == '=')))
1369 {
1370 errmsg = e_no_white_space_allowed_between_option_and;
1371 arg = p;
1372 startarg = p;
1373 goto skip;
1374 }
1375 }
1376 else
Bram Moolenaar208f0b42021-06-20 12:40:08 +02001377 // skip white space, allow ":set ai ?", ":set hlsearch !"
1378 while (VIM_ISWHITE(arg[len]))
1379 ++len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001380
1381 adding = FALSE;
1382 prepending = FALSE;
1383 removing = FALSE;
1384 if (arg[len] != NUL && arg[len + 1] == '=')
1385 {
1386 if (arg[len] == '+')
1387 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001388 adding = TRUE; // "+="
Bram Moolenaar071d4272004-06-13 20:20:40 +00001389 ++len;
1390 }
1391 else if (arg[len] == '^')
1392 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001393 prepending = TRUE; // "^="
Bram Moolenaar071d4272004-06-13 20:20:40 +00001394 ++len;
1395 }
1396 else if (arg[len] == '-')
1397 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001398 removing = TRUE; // "-="
Bram Moolenaar071d4272004-06-13 20:20:40 +00001399 ++len;
1400 }
1401 }
1402 nextchar = arg[len];
1403
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001404 if (opt_idx == -1 && key == 0) // found a mismatch: skip
Bram Moolenaar071d4272004-06-13 20:20:40 +00001405 {
Bram Moolenaar1594f312021-07-08 16:40:13 +02001406 if (in_vim9script() && arg > arg_start
1407 && vim_strchr((char_u *)"!&<", *arg) != NULL)
1408 errmsg = e_no_white_space_allowed_between_option_and;
1409 else
1410 errmsg = N_("E518: Unknown option");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001411 goto skip;
1412 }
1413
1414 if (opt_idx >= 0)
1415 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001416 if (options[opt_idx].var == NULL) // hidden option: skip
Bram Moolenaar071d4272004-06-13 20:20:40 +00001417 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001418 // Only give an error message when requesting the value of
1419 // a hidden option, ignore setting it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001420 if (vim_strchr((char_u *)"=:!&<", nextchar) == NULL
1421 && (!(options[opt_idx].flags & P_BOOL)
1422 || nextchar == '?'))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001423 errmsg = N_("E519: Option not supported");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001424 goto skip;
1425 }
1426
1427 flags = options[opt_idx].flags;
1428 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
1429 }
1430 else
1431 {
1432 flags = P_STRING;
1433 if (key < 0)
1434 {
1435 key_name[0] = KEY2TERMCAP0(key);
1436 key_name[1] = KEY2TERMCAP1(key);
1437 }
1438 else
1439 {
1440 key_name[0] = KS_KEY;
1441 key_name[1] = (key & 0xff);
1442 }
1443 }
1444
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001445 // Skip all options that are not window-local (used when showing
1446 // an already loaded buffer in a window).
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001447 if ((opt_flags & OPT_WINONLY)
1448 && (opt_idx < 0 || options[opt_idx].var != VAR_WIN))
1449 goto skip;
1450
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001451 // Skip all options that are window-local (used for :vimgrep).
Bram Moolenaara3227e22006-03-08 21:32:40 +00001452 if ((opt_flags & OPT_NOWIN) && opt_idx >= 0
1453 && options[opt_idx].var == VAR_WIN)
1454 goto skip;
1455
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001456 // Disallow changing some options from modelines.
Bram Moolenaar1bf0ddc2009-02-11 15:47:05 +00001457 if (opt_flags & OPT_MODELINE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001458 {
Bram Moolenaar865242e2010-07-14 21:12:05 +02001459 if (flags & (P_SECURE | P_NO_ML))
Bram Moolenaar1bf0ddc2009-02-11 15:47:05 +00001460 {
Bram Moolenaar994b89d2020-08-07 19:12:41 +02001461 errmsg = N_("E520: Not allowed in a modeline");
Bram Moolenaar1bf0ddc2009-02-11 15:47:05 +00001462 goto skip;
1463 }
Bram Moolenaar110289e2019-05-23 15:38:06 +02001464 if ((flags & P_MLE) && !p_mle)
1465 {
Bram Moolenaar994b89d2020-08-07 19:12:41 +02001466 errmsg = N_("E992: Not allowed in a modeline when 'modelineexpr' is off");
Bram Moolenaar110289e2019-05-23 15:38:06 +02001467 goto skip;
1468 }
Bram Moolenaarf69d9a32009-02-11 21:48:40 +00001469#ifdef FEAT_DIFF
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001470 // In diff mode some options are overruled. This avoids that
1471 // 'foldmethod' becomes "marker" instead of "diff" and that
1472 // "wrap" gets set.
Bram Moolenaar1bf0ddc2009-02-11 15:47:05 +00001473 if (curwin->w_p_diff
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001474 && opt_idx >= 0 // shut up coverity warning
Bram Moolenaara6c07602017-03-05 21:18:27 +01001475 && (
1476#ifdef FEAT_FOLDING
1477 options[opt_idx].indir == PV_FDM ||
1478#endif
1479 options[opt_idx].indir == PV_WRAP))
Bram Moolenaar1bf0ddc2009-02-11 15:47:05 +00001480 goto skip;
Bram Moolenaarf69d9a32009-02-11 21:48:40 +00001481#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001482 }
1483
1484#ifdef HAVE_SANDBOX
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001485 // Disallow changing some options in the sandbox
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001486 if (sandbox != 0 && (flags & P_SECURE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001487 {
Bram Moolenaard8e44472021-07-21 22:20:33 +02001488 errmsg = e_not_allowed_in_sandbox;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001489 goto skip;
1490 }
1491#endif
1492
1493 if (vim_strchr((char_u *)"?=:!&<", nextchar) != NULL)
1494 {
1495 arg += len;
1496 cp_val = p_cp;
1497 if (nextchar == '&' && arg[1] == 'v' && arg[2] == 'i')
1498 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001499 if (arg[3] == 'm') // "opt&vim": set to Vim default
Bram Moolenaar071d4272004-06-13 20:20:40 +00001500 {
1501 cp_val = FALSE;
1502 arg += 3;
1503 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001504 else // "opt&vi": set to Vi default
Bram Moolenaar071d4272004-06-13 20:20:40 +00001505 {
1506 cp_val = TRUE;
1507 arg += 2;
1508 }
1509 }
1510 if (vim_strchr((char_u *)"?!&<", nextchar) != NULL
Bram Moolenaar1c465442017-03-12 20:10:05 +01001511 && arg[1] != NUL && !VIM_ISWHITE(arg[1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001512 {
1513 errmsg = e_trailing;
1514 goto skip;
1515 }
1516 }
1517
1518 /*
Bram Moolenaara80faa82020-04-12 19:37:17 +02001519 * allow '=' and ':' for historical reasons (MSDOS command.com
Bram Moolenaar48e330a2016-02-23 14:53:34 +01001520 * allows only one '=' character per "set" command line. grrr. (jw)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001521 */
1522 if (nextchar == '?'
1523 || (prefix == 1
1524 && vim_strchr((char_u *)"=:&<", nextchar) == NULL
1525 && !(flags & P_BOOL)))
1526 {
1527 /*
1528 * print value
1529 */
1530 if (did_show)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001531 msg_putchar('\n'); // cursor below last one
Bram Moolenaar071d4272004-06-13 20:20:40 +00001532 else
1533 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001534 gotocmdline(TRUE); // cursor at status line
1535 did_show = TRUE; // remember that we did a line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001536 }
1537 if (opt_idx >= 0)
1538 {
1539 showoneopt(&options[opt_idx], opt_flags);
1540#ifdef FEAT_EVAL
1541 if (p_verbose > 0)
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00001542 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001543 // Mention where the option was last set.
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00001544 if (varp == options[opt_idx].var)
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02001545 last_set_msg(options[opt_idx].script_ctx);
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00001546 else if ((int)options[opt_idx].indir & PV_WIN)
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02001547 last_set_msg(curwin->w_p_script_ctx[
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00001548 (int)options[opt_idx].indir & PV_MASK]);
1549 else if ((int)options[opt_idx].indir & PV_BUF)
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02001550 last_set_msg(curbuf->b_p_script_ctx[
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00001551 (int)options[opt_idx].indir & PV_MASK]);
1552 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001553#endif
1554 }
1555 else
1556 {
1557 char_u *p;
1558
1559 p = find_termcode(key_name);
1560 if (p == NULL)
1561 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001562 errmsg = N_("E846: Key code not set");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001563 goto skip;
1564 }
1565 else
1566 (void)show_one_termcode(key_name, p, TRUE);
1567 }
1568 if (nextchar != '?'
Bram Moolenaar1c465442017-03-12 20:10:05 +01001569 && nextchar != NUL && !VIM_ISWHITE(afterchar))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001570 errmsg = e_trailing;
1571 }
1572 else
1573 {
Bram Moolenaar247bb7e2018-11-20 14:27:07 +01001574 int value_is_replaced = !prepending && !adding && !removing;
Bram Moolenaar916a8182018-11-25 02:18:29 +01001575 int value_checked = FALSE;
Bram Moolenaar247bb7e2018-11-20 14:27:07 +01001576
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001577 if (flags & P_BOOL) // boolean
Bram Moolenaar071d4272004-06-13 20:20:40 +00001578 {
1579 if (nextchar == '=' || nextchar == ':')
1580 {
1581 errmsg = e_invarg;
1582 goto skip;
1583 }
1584
1585 /*
1586 * ":set opt!": invert
1587 * ":set opt&": reset to default value
1588 * ":set opt<": reset to global value
1589 */
1590 if (nextchar == '!')
1591 value = *(int *)(varp) ^ 1;
1592 else if (nextchar == '&')
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001593 value = (int)(long)(long_i)options[opt_idx].def_val[
Bram Moolenaar071d4272004-06-13 20:20:40 +00001594 ((flags & P_VI_DEF) || cp_val)
1595 ? VI_DEFAULT : VIM_DEFAULT];
1596 else if (nextchar == '<')
1597 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001598 // For 'autoread' -1 means to use global value.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001599 if ((int *)varp == &curbuf->b_p_ar
1600 && opt_flags == OPT_LOCAL)
1601 value = -1;
1602 else
1603 value = *(int *)get_varp_scope(&(options[opt_idx]),
1604 OPT_GLOBAL);
1605 }
1606 else
1607 {
1608 /*
1609 * ":set invopt": invert
1610 * ":set opt" or ":set noopt": set or reset
1611 */
Bram Moolenaar1c465442017-03-12 20:10:05 +01001612 if (nextchar != NUL && !VIM_ISWHITE(afterchar))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001613 {
1614 errmsg = e_trailing;
1615 goto skip;
1616 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001617 if (prefix == 2) // inv
Bram Moolenaar071d4272004-06-13 20:20:40 +00001618 value = *(int *)(varp) ^ 1;
1619 else
1620 value = prefix;
1621 }
1622
1623 errmsg = set_bool_option(opt_idx, varp, (int)value,
1624 opt_flags);
1625 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001626 else // numeric or string
Bram Moolenaar071d4272004-06-13 20:20:40 +00001627 {
1628 if (vim_strchr((char_u *)"=:&<", nextchar) == NULL
1629 || prefix != 1)
1630 {
1631 errmsg = e_invarg;
1632 goto skip;
1633 }
1634
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001635 if (flags & P_NUM) // numeric
Bram Moolenaar071d4272004-06-13 20:20:40 +00001636 {
1637 /*
1638 * Different ways to set a number option:
1639 * & set to default value
1640 * < set to global value
1641 * <xx> accept special key codes for 'wildchar'
1642 * c accept any non-digit for 'wildchar'
1643 * [-]0-9 set number
1644 * other error
1645 */
1646 ++arg;
1647 if (nextchar == '&')
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001648 value = (long)(long_i)options[opt_idx].def_val[
Bram Moolenaar071d4272004-06-13 20:20:40 +00001649 ((flags & P_VI_DEF) || cp_val)
1650 ? VI_DEFAULT : VIM_DEFAULT];
1651 else if (nextchar == '<')
Bram Moolenaarf5a2fd82013-11-06 05:26:15 +01001652 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001653 // For 'undolevels' NO_LOCAL_UNDOLEVEL means to
1654 // use the global value.
Bram Moolenaarf5a2fd82013-11-06 05:26:15 +01001655 if ((long *)varp == &curbuf->b_p_ul
1656 && opt_flags == OPT_LOCAL)
1657 value = NO_LOCAL_UNDOLEVEL;
1658 else
1659 value = *(long *)get_varp_scope(
1660 &(options[opt_idx]), OPT_GLOBAL);
1661 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001662 else if (((long *)varp == &p_wc
1663 || (long *)varp == &p_wcm)
1664 && (*arg == '<'
1665 || *arg == '^'
Bram Moolenaar1c465442017-03-12 20:10:05 +01001666 || (*arg != NUL
1667 && (!arg[1] || VIM_ISWHITE(arg[1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001668 && !VIM_ISDIGIT(*arg))))
1669 {
Bram Moolenaardbe948d2017-07-23 22:50:51 +02001670 value = string_to_key(arg, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001671 if (value == 0 && (long *)varp != &p_wcm)
1672 {
1673 errmsg = e_invarg;
1674 goto skip;
1675 }
1676 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001677 else if (*arg == '-' || VIM_ISDIGIT(*arg))
1678 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001679 // Allow negative (for 'undolevels'), octal and
1680 // hex numbers.
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01001681 vim_str2nr(arg, NULL, &i, STR2NR_ALL,
Bram Moolenaar16e9b852019-05-19 19:59:35 +02001682 &value, NULL, 0, TRUE);
Bram Moolenaar06e2c812019-06-12 19:05:48 +02001683 if (i == 0 || (arg[i] != NUL
1684 && !VIM_ISWHITE(arg[i])))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001685 {
Bram Moolenaar16e9b852019-05-19 19:59:35 +02001686 errmsg = N_("E521: Number required after =");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001687 goto skip;
1688 }
1689 }
1690 else
1691 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001692 errmsg = N_("E521: Number required after =");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001693 goto skip;
1694 }
1695
1696 if (adding)
1697 value = *(long *)varp + value;
1698 if (prepending)
1699 value = *(long *)varp * value;
1700 if (removing)
1701 value = *(long *)varp - value;
1702 errmsg = set_num_option(opt_idx, varp, value,
Bram Moolenaar555b2802005-05-19 21:08:39 +00001703 errbuf, sizeof(errbuf), opt_flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001704 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001705 else if (opt_idx >= 0) // string
Bram Moolenaar071d4272004-06-13 20:20:40 +00001706 {
Bram Moolenaar8efa0262017-08-20 15:47:20 +02001707 char_u *save_arg = NULL;
1708 char_u *s = NULL;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001709 char_u *oldval = NULL; // previous value if *varp
Bram Moolenaar8efa0262017-08-20 15:47:20 +02001710 char_u *newval;
1711 char_u *origval = NULL;
Bram Moolenaard7c96872019-06-15 17:12:48 +02001712 char_u *origval_l = NULL;
1713 char_u *origval_g = NULL;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001714#if defined(FEAT_EVAL)
Bram Moolenaar8efa0262017-08-20 15:47:20 +02001715 char_u *saved_origval = NULL;
Bram Moolenaard7c96872019-06-15 17:12:48 +02001716 char_u *saved_origval_l = NULL;
1717 char_u *saved_origval_g = NULL;
Bram Moolenaar8efa0262017-08-20 15:47:20 +02001718 char_u *saved_newval = NULL;
Bram Moolenaar53744302015-07-17 17:38:22 +02001719#endif
Bram Moolenaar8efa0262017-08-20 15:47:20 +02001720 unsigned newlen;
1721 int comma;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001722 int new_value_alloced; // new string option
1723 // was allocated
Bram Moolenaar071d4272004-06-13 20:20:40 +00001724
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001725 // When using ":set opt=val" for a global option
1726 // with a local value the local value will be
1727 // reset, use the global value here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001728 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001729 && ((int)options[opt_idx].indir & PV_BOTH))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001730 varp = options[opt_idx].var;
1731
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001732 // The old value is kept until we are sure that the
1733 // new value is valid.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001734 oldval = *(char_u **)varp;
Bram Moolenaar8efa0262017-08-20 15:47:20 +02001735
Bram Moolenaard7c96872019-06-15 17:12:48 +02001736 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0)
1737 {
1738 origval_l = *(char_u **)get_varp_scope(
1739 &(options[opt_idx]), OPT_LOCAL);
1740 origval_g = *(char_u **)get_varp_scope(
1741 &(options[opt_idx]), OPT_GLOBAL);
1742
1743 // A global-local string option might have an empty
1744 // option as value to indicate that the global
1745 // value should be used.
1746 if (((int)options[opt_idx].indir & PV_BOTH)
1747 && origval_l == empty_option)
1748 origval_l = origval_g;
1749 }
1750
1751 // When setting the local value of a global
1752 // option, the old value may be the global value.
Bram Moolenaar8efa0262017-08-20 15:47:20 +02001753 if (((int)options[opt_idx].indir & PV_BOTH)
1754 && (opt_flags & OPT_LOCAL))
1755 origval = *(char_u **)get_varp(
1756 &options[opt_idx]);
1757 else
1758 origval = oldval;
1759
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001760 if (nextchar == '&') // set to default val
Bram Moolenaar071d4272004-06-13 20:20:40 +00001761 {
1762 newval = options[opt_idx].def_val[
1763 ((flags & P_VI_DEF) || cp_val)
1764 ? VI_DEFAULT : VIM_DEFAULT];
1765 if ((char_u **)varp == &p_bg)
1766 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001767 // guess the value of 'background'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001768#ifdef FEAT_GUI
1769 if (gui.in_use)
1770 newval = gui_bg_default();
1771 else
1772#endif
Bram Moolenaarf740b292006-02-16 22:11:02 +00001773 newval = term_bg_default();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001774 }
Bram Moolenaar5ffefbb2021-06-13 20:27:36 +02001775 else if ((char_u **)varp == &p_fencs && enc_utf8)
1776 newval = fencs_utf8_default;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001777
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001778 // expand environment variables and ~ (since the
1779 // default value was already expanded, only
1780 // required when an environment variable was set
1781 // later
Bram Moolenaar071d4272004-06-13 20:20:40 +00001782 if (newval == NULL)
1783 newval = empty_option;
1784 else
1785 {
1786 s = option_expand(opt_idx, newval);
1787 if (s == NULL)
1788 s = newval;
1789 newval = vim_strsave(s);
1790 }
1791 new_value_alloced = TRUE;
1792 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001793 else if (nextchar == '<') // set to global val
Bram Moolenaar071d4272004-06-13 20:20:40 +00001794 {
1795 newval = vim_strsave(*(char_u **)get_varp_scope(
1796 &(options[opt_idx]), OPT_GLOBAL));
1797 new_value_alloced = TRUE;
1798 }
1799 else
1800 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001801 ++arg; // jump to after the '=' or ':'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001802
1803 /*
1804 * Set 'keywordprg' to ":help" if an empty
1805 * value was passed to :set by the user.
1806 * Misuse errbuf[] for the resulting string.
1807 */
1808 if (varp == (char_u *)&p_kp
1809 && (*arg == NUL || *arg == ' '))
1810 {
1811 STRCPY(errbuf, ":help");
1812 save_arg = arg;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001813 arg = (char_u *)errbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001814 }
1815 /*
Bram Moolenaar4e5ccfa2011-11-30 11:15:47 +01001816 * Convert 'backspace' number to string, for
1817 * adding, prepending and removing string.
1818 */
1819 else if (varp == (char_u *)&p_bs
1820 && VIM_ISDIGIT(**(char_u **)varp))
1821 {
1822 i = getdigits((char_u **)varp);
1823 switch (i)
1824 {
1825 case 0:
1826 *(char_u **)varp = empty_option;
1827 break;
1828 case 1:
1829 *(char_u **)varp = vim_strsave(
1830 (char_u *)"indent,eol");
1831 break;
1832 case 2:
1833 *(char_u **)varp = vim_strsave(
1834 (char_u *)"indent,eol,start");
1835 break;
Bram Moolenaaraa0489e2020-04-17 19:41:21 +02001836 case 3:
1837 *(char_u **)varp = vim_strsave(
1838 (char_u *)"indent,eol,nostop");
1839 break;
Bram Moolenaar4e5ccfa2011-11-30 11:15:47 +01001840 }
1841 vim_free(oldval);
Bram Moolenaaredbc0d42017-08-20 16:11:51 +02001842 if (origval == oldval)
1843 origval = *(char_u **)varp;
Bram Moolenaard7c96872019-06-15 17:12:48 +02001844 if (origval_l == oldval)
1845 origval_l = *(char_u **)varp;
1846 if (origval_g == oldval)
1847 origval_g = *(char_u **)varp;
Bram Moolenaar4e5ccfa2011-11-30 11:15:47 +01001848 oldval = *(char_u **)varp;
1849 }
1850 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001851 * Convert 'whichwrap' number to string, for
1852 * backwards compatibility with Vim 3.0.
1853 * Misuse errbuf[] for the resulting string.
1854 */
1855 else if (varp == (char_u *)&p_ww
1856 && VIM_ISDIGIT(*arg))
1857 {
1858 *errbuf = NUL;
1859 i = getdigits(&arg);
1860 if (i & 1)
1861 STRCAT(errbuf, "b,");
1862 if (i & 2)
1863 STRCAT(errbuf, "s,");
1864 if (i & 4)
1865 STRCAT(errbuf, "h,l,");
1866 if (i & 8)
1867 STRCAT(errbuf, "<,>,");
1868 if (i & 16)
1869 STRCAT(errbuf, "[,],");
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001870 if (*errbuf != NUL) // remove trailing ,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001871 errbuf[STRLEN(errbuf) - 1] = NUL;
1872 save_arg = arg;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001873 arg = (char_u *)errbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001874 }
1875 /*
1876 * Remove '>' before 'dir' and 'bdir', for
1877 * backwards compatibility with version 3.0
1878 */
1879 else if ( *arg == '>'
1880 && (varp == (char_u *)&p_dir
1881 || varp == (char_u *)&p_bdir))
1882 {
1883 ++arg;
1884 }
1885
Bram Moolenaar071d4272004-06-13 20:20:40 +00001886 /*
1887 * Copy the new string into allocated memory.
1888 * Can't use set_string_option_direct(), because
1889 * we need to remove the backslashes.
1890 */
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001891 // get a bit too much
Bram Moolenaar071d4272004-06-13 20:20:40 +00001892 newlen = (unsigned)STRLEN(arg) + 1;
1893 if (adding || prepending || removing)
1894 newlen += (unsigned)STRLEN(origval) + 1;
1895 newval = alloc(newlen);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001896 if (newval == NULL) // out of mem, don't change
Bram Moolenaar071d4272004-06-13 20:20:40 +00001897 break;
1898 s = newval;
1899
1900 /*
1901 * Copy the string, skip over escaped chars.
1902 * For MS-DOS and WIN32 backslashes before normal
1903 * file name characters are not removed, and keep
1904 * backslash at start, for "\\machine\path", but
1905 * do remove it for "\\\\machine\\path".
1906 * The reverse is found in ExpandOldSetting().
1907 */
Bram Moolenaar1c465442017-03-12 20:10:05 +01001908 while (*arg && !VIM_ISWHITE(*arg))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001909 {
1910 if (*arg == '\\' && arg[1] != NUL
1911#ifdef BACKSLASH_IN_FILENAME
1912 && !((flags & P_EXPAND)
1913 && vim_isfilec(arg[1])
Bram Moolenaar994b89d2020-08-07 19:12:41 +02001914 && !VIM_ISWHITE(arg[1])
Bram Moolenaar071d4272004-06-13 20:20:40 +00001915 && (arg[1] != '\\'
1916 || (s == newval
1917 && arg[2] != '\\')))
1918#endif
1919 )
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001920 ++arg; // remove backslash
Bram Moolenaar071d4272004-06-13 20:20:40 +00001921 if (has_mbyte
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001922 && (i = (*mb_ptr2len)(arg)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001923 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001924 // copy multibyte char
Bram Moolenaar071d4272004-06-13 20:20:40 +00001925 mch_memmove(s, arg, (size_t)i);
1926 arg += i;
1927 s += i;
1928 }
1929 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001930 *s++ = *arg++;
1931 }
1932 *s = NUL;
1933
1934 /*
1935 * Expand environment variables and ~.
1936 * Don't do it when adding without inserting a
1937 * comma.
1938 */
1939 if (!(adding || prepending || removing)
1940 || (flags & P_COMMA))
1941 {
1942 s = option_expand(opt_idx, newval);
1943 if (s != NULL)
1944 {
1945 vim_free(newval);
1946 newlen = (unsigned)STRLEN(s) + 1;
1947 if (adding || prepending || removing)
1948 newlen += (unsigned)STRLEN(origval) + 1;
1949 newval = alloc(newlen);
1950 if (newval == NULL)
1951 break;
1952 STRCPY(newval, s);
1953 }
1954 }
1955
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001956 // locate newval[] in origval[] when removing it
1957 // and when adding to avoid duplicates
1958 i = 0; // init for GCC
Bram Moolenaar071d4272004-06-13 20:20:40 +00001959 if (removing || (flags & P_NODUP))
1960 {
1961 i = (int)STRLEN(newval);
Bram Moolenaarb00ef052020-09-12 14:53:53 +02001962 s = find_dup_item(origval, newval, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001963
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001964 // do not add if already there
Bram Moolenaarb00ef052020-09-12 14:53:53 +02001965 if ((adding || prepending) && s != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001966 {
1967 prepending = FALSE;
1968 adding = FALSE;
1969 STRCPY(newval, origval);
1970 }
Bram Moolenaarb00ef052020-09-12 14:53:53 +02001971
1972 // if no duplicate, move pointer to end of
1973 // original value
1974 if (s == NULL)
1975 s = origval + (int)STRLEN(origval);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001976 }
1977
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001978 // concatenate the two strings; add a ',' if
1979 // needed
Bram Moolenaar071d4272004-06-13 20:20:40 +00001980 if (adding || prepending)
1981 {
1982 comma = ((flags & P_COMMA) && *origval != NUL
1983 && *newval != NUL);
1984 if (adding)
1985 {
1986 i = (int)STRLEN(origval);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001987 // strip a trailing comma, would get 2
Bram Moolenaar17467472015-11-10 17:50:24 +01001988 if (comma && i > 1
1989 && (flags & P_ONECOMMA) == P_ONECOMMA
1990 && origval[i - 1] == ','
1991 && origval[i - 2] != '\\')
Bram Moolenaara7b7b1c2015-06-19 14:06:43 +02001992 i--;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001993 mch_memmove(newval + i + comma, newval,
1994 STRLEN(newval) + 1);
1995 mch_memmove(newval, origval, (size_t)i);
1996 }
1997 else
1998 {
1999 i = (int)STRLEN(newval);
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +00002000 STRMOVE(newval + i + comma, origval);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002001 }
2002 if (comma)
2003 newval[i] = ',';
2004 }
2005
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002006 // Remove newval[] from origval[]. (Note: "i" has
2007 // been set above and is used here).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002008 if (removing)
2009 {
2010 STRCPY(newval, origval);
2011 if (*s)
2012 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002013 // may need to remove a comma
Bram Moolenaar071d4272004-06-13 20:20:40 +00002014 if (flags & P_COMMA)
2015 {
2016 if (s == origval)
2017 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002018 // include comma after string
Bram Moolenaar071d4272004-06-13 20:20:40 +00002019 if (s[i] == ',')
2020 ++i;
2021 }
2022 else
2023 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002024 // include comma before string
Bram Moolenaar071d4272004-06-13 20:20:40 +00002025 --s;
2026 ++i;
2027 }
2028 }
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +00002029 STRMOVE(newval + (s - origval), s + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002030 }
2031 }
2032
2033 if (flags & P_FLAGLIST)
2034 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002035 // Remove flags that appear twice.
Bram Moolenaaraaaf57d2017-02-05 14:13:20 +01002036 for (s = newval; *s;)
Bram Moolenaarc8ce6152016-08-07 13:48:20 +02002037 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002038 // if options have P_FLAGLIST and
2039 // P_ONECOMMA such as 'whichwrap'
Bram Moolenaarc8ce6152016-08-07 13:48:20 +02002040 if (flags & P_ONECOMMA)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002041 {
Bram Moolenaarc8ce6152016-08-07 13:48:20 +02002042 if (*s != ',' && *(s + 1) == ','
2043 && vim_strchr(s + 2, *s) != NULL)
2044 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002045 // Remove the duplicated value and
2046 // the next comma.
Bram Moolenaarc8ce6152016-08-07 13:48:20 +02002047 STRMOVE(s, s + 2);
Bram Moolenaaraaaf57d2017-02-05 14:13:20 +01002048 continue;
Bram Moolenaarc8ce6152016-08-07 13:48:20 +02002049 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002050 }
Bram Moolenaarc8ce6152016-08-07 13:48:20 +02002051 else
2052 {
2053 if ((!(flags & P_COMMA) || *s != ',')
2054 && vim_strchr(s + 1, *s) != NULL)
2055 {
2056 STRMOVE(s, s + 1);
Bram Moolenaaraaaf57d2017-02-05 14:13:20 +01002057 continue;
Bram Moolenaarc8ce6152016-08-07 13:48:20 +02002058 }
2059 }
Bram Moolenaaraaaf57d2017-02-05 14:13:20 +01002060 ++s;
Bram Moolenaarc8ce6152016-08-07 13:48:20 +02002061 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002062 }
2063
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002064 if (save_arg != NULL) // number for 'whichwrap'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002065 arg = save_arg;
2066 new_value_alloced = TRUE;
2067 }
2068
Bram Moolenaar8efa0262017-08-20 15:47:20 +02002069 /*
2070 * Set the new value.
2071 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002072 *(char_u **)(varp) = newval;
2073
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002074#if defined(FEAT_EVAL)
Bram Moolenaar5cbb8db2015-07-17 23:08:29 +02002075 if (!starting
2076# ifdef FEAT_CRYPT
2077 && options[opt_idx].indir != PV_KEY
2078# endif
Bram Moolenaar182a17b2017-06-25 20:57:18 +02002079 && origval != NULL && newval != NULL)
2080 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002081 // origval may be freed by
2082 // did_set_string_option(), make a copy.
Bram Moolenaar53744302015-07-17 17:38:22 +02002083 saved_origval = vim_strsave(origval);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002084 // newval (and varp) may become invalid if the
2085 // buffer is closed by autocommands.
Bram Moolenaar182a17b2017-06-25 20:57:18 +02002086 saved_newval = vim_strsave(newval);
Bram Moolenaard7c96872019-06-15 17:12:48 +02002087 if (origval_l != NULL)
2088 saved_origval_l = vim_strsave(origval_l);
2089 if (origval_g != NULL)
2090 saved_origval_g = vim_strsave(origval_g);
Bram Moolenaar182a17b2017-06-25 20:57:18 +02002091 }
Bram Moolenaar53744302015-07-17 17:38:22 +02002092#endif
2093
Bram Moolenaar247bb7e2018-11-20 14:27:07 +01002094 {
2095 long_u *p = insecure_flag(opt_idx, opt_flags);
Bram Moolenaar48f377a2018-12-21 13:03:28 +01002096 int secure_saved = secure;
Bram Moolenaar247bb7e2018-11-20 14:27:07 +01002097
2098 // When an option is set in the sandbox, from a
2099 // modeline or in secure mode, then deal with side
2100 // effects in secure mode. Also when the value was
2101 // set with the P_INSECURE flag and is not
2102 // completely replaced.
Bram Moolenaar82b033e2019-03-24 14:02:04 +01002103 if ((opt_flags & OPT_MODELINE)
Bram Moolenaar247bb7e2018-11-20 14:27:07 +01002104#ifdef HAVE_SANDBOX
Bram Moolenaar82b033e2019-03-24 14:02:04 +01002105 || sandbox != 0
Bram Moolenaar247bb7e2018-11-20 14:27:07 +01002106#endif
Bram Moolenaar82b033e2019-03-24 14:02:04 +01002107 || (!value_is_replaced && (*p & P_INSECURE)))
2108 secure = 1;
Bram Moolenaar247bb7e2018-11-20 14:27:07 +01002109
Bram Moolenaar48f377a2018-12-21 13:03:28 +01002110 // Handle side effects, and set the global value
2111 // for ":set" on local options. Note: when setting
2112 // 'syntax' or 'filetype' autocommands may be
2113 // triggered that can cause havoc.
2114 errmsg = did_set_string_option(
2115 opt_idx, (char_u **)varp,
Bram Moolenaar916a8182018-11-25 02:18:29 +01002116 new_value_alloced, oldval, errbuf,
2117 opt_flags, &value_checked);
Bram Moolenaar247bb7e2018-11-20 14:27:07 +01002118
Bram Moolenaar48f377a2018-12-21 13:03:28 +01002119 secure = secure_saved;
Bram Moolenaar247bb7e2018-11-20 14:27:07 +01002120 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002121
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002122#if defined(FEAT_EVAL)
Bram Moolenaar8efa0262017-08-20 15:47:20 +02002123 if (errmsg == NULL)
Bram Moolenaard7c96872019-06-15 17:12:48 +02002124 trigger_optionsset_string(
2125 opt_idx, opt_flags, saved_origval,
2126 saved_origval_l, saved_origval_g,
2127 saved_newval);
Bram Moolenaar8efa0262017-08-20 15:47:20 +02002128 vim_free(saved_origval);
Bram Moolenaard7c96872019-06-15 17:12:48 +02002129 vim_free(saved_origval_l);
2130 vim_free(saved_origval_g);
Bram Moolenaar8efa0262017-08-20 15:47:20 +02002131 vim_free(saved_newval);
2132#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002133 // If error detected, print the error message.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002134 if (errmsg != NULL)
2135 goto skip;
2136 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002137 else // key code option
Bram Moolenaar071d4272004-06-13 20:20:40 +00002138 {
2139 char_u *p;
2140
2141 if (nextchar == '&')
2142 {
2143 if (add_termcap_entry(key_name, TRUE) == FAIL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002144 errmsg = N_("E522: Not found in termcap");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002145 }
2146 else
2147 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002148 ++arg; // jump to after the '=' or ':'
Bram Moolenaar1c465442017-03-12 20:10:05 +01002149 for (p = arg; *p && !VIM_ISWHITE(*p); ++p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002150 if (*p == '\\' && p[1] != NUL)
2151 ++p;
2152 nextchar = *p;
2153 *p = NUL;
2154 add_termcode(key_name, arg, FALSE);
2155 *p = nextchar;
2156 }
2157 if (full_screen)
2158 ttest(FALSE);
2159 redraw_all_later(CLEAR);
2160 }
2161 }
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002162
Bram Moolenaar071d4272004-06-13 20:20:40 +00002163 if (opt_idx >= 0)
Bram Moolenaar916a8182018-11-25 02:18:29 +01002164 did_set_option(
2165 opt_idx, opt_flags, value_is_replaced, value_checked);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002166 }
2167
2168skip:
2169 /*
2170 * Advance to next argument.
2171 * - skip until a blank found, taking care of backslashes
2172 * - skip blanks
2173 * - skip one "=val" argument (for hidden options ":set gfn =xx")
2174 */
2175 for (i = 0; i < 2 ; ++i)
2176 {
Bram Moolenaar1c465442017-03-12 20:10:05 +01002177 while (*arg != NUL && !VIM_ISWHITE(*arg))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002178 if (*arg++ == '\\' && *arg != NUL)
2179 ++arg;
2180 arg = skipwhite(arg);
2181 if (*arg != '=')
2182 break;
2183 }
2184 }
2185
2186 if (errmsg != NULL)
2187 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00002188 vim_strncpy(IObuff, (char_u *)_(errmsg), IOSIZE - 1);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002189 i = (int)STRLEN(IObuff) + 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002190 if (i + (arg - startarg) < IOSIZE)
2191 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002192 // append the argument with the error
Bram Moolenaar071d4272004-06-13 20:20:40 +00002193 STRCAT(IObuff, ": ");
2194 mch_memmove(IObuff + i, startarg, (arg - startarg));
2195 IObuff[i + (arg - startarg)] = NUL;
2196 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002197 // make sure all characters are printable
Bram Moolenaar071d4272004-06-13 20:20:40 +00002198 trans_characters(IObuff, IOSIZE);
2199
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002200 ++no_wait_return; // wait_return done later
2201 emsg((char *)IObuff); // show error highlighted
Bram Moolenaar071d4272004-06-13 20:20:40 +00002202 --no_wait_return;
2203
2204 return FAIL;
2205 }
2206
2207 arg = skipwhite(arg);
2208 }
2209
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002210theend:
2211 if (silent_mode && did_show)
2212 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002213 // After displaying option values in silent mode.
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002214 silent_mode = FALSE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002215 info_message = TRUE; // use mch_msg(), not mch_errmsg()
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002216 msg_putchar('\n');
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002217 cursor_on(); // msg_start() switches it off
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002218 out_flush();
2219 silent_mode = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002220 info_message = FALSE; // use mch_msg(), not mch_errmsg()
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002221 }
2222
Bram Moolenaar071d4272004-06-13 20:20:40 +00002223 return OK;
2224}
2225
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002226/*
2227 * Call this when an option has been given a new value through a user command.
2228 * Sets the P_WAS_SET flag and takes care of the P_INSECURE flag.
2229 */
Bram Moolenaardac13472019-09-16 21:06:21 +02002230 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002231did_set_option(
2232 int opt_idx,
Bram Moolenaar916a8182018-11-25 02:18:29 +01002233 int opt_flags, // possibly with OPT_MODELINE
2234 int new_value, // value was replaced completely
2235 int value_checked) // value was checked to be safe, no need to set the
2236 // P_INSECURE flag.
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002237{
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002238 long_u *p;
2239
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002240 options[opt_idx].flags |= P_WAS_SET;
2241
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002242 // When an option is set in the sandbox, from a modeline or in secure mode
2243 // set the P_INSECURE flag. Otherwise, if a new value is stored reset the
2244 // flag.
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002245 p = insecure_flag(opt_idx, opt_flags);
Bram Moolenaar916a8182018-11-25 02:18:29 +01002246 if (!value_checked && (secure
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002247#ifdef HAVE_SANDBOX
2248 || sandbox != 0
2249#endif
Bram Moolenaar916a8182018-11-25 02:18:29 +01002250 || (opt_flags & OPT_MODELINE)))
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002251 *p = *p | P_INSECURE;
2252 else if (new_value)
2253 *p = *p & ~P_INSECURE;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002254}
2255
Bram Moolenaar071d4272004-06-13 20:20:40 +00002256/*
2257 * Convert a key name or string into a key value.
2258 * Used for 'wildchar' and 'cedit' options.
Bram Moolenaardbe948d2017-07-23 22:50:51 +02002259 * When "multi_byte" is TRUE allow for multi-byte characters.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002260 */
Bram Moolenaardbe948d2017-07-23 22:50:51 +02002261 int
2262string_to_key(char_u *arg, int multi_byte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002263{
2264 if (*arg == '<')
Bram Moolenaar9cf4b502018-07-23 04:12:03 +02002265 return find_key_option(arg + 1, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002266 if (*arg == '^')
2267 return Ctrl_chr(arg[1]);
Bram Moolenaardbe948d2017-07-23 22:50:51 +02002268 if (multi_byte)
2269 return PTR2CHAR(arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002270 return *arg;
2271}
2272
Bram Moolenaar071d4272004-06-13 20:20:40 +00002273#ifdef FEAT_TITLE
2274/*
2275 * When changing 'title', 'titlestring', 'icon' or 'iconstring', call
2276 * maketitle() to create and display it.
2277 * When switching the title or icon off, call mch_restore_title() to get
2278 * the old value back.
2279 */
Bram Moolenaardac13472019-09-16 21:06:21 +02002280 void
Bram Moolenaar84a93082018-06-16 22:58:15 +02002281did_set_title(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002282{
2283 if (starting != NO_SCREEN
2284#ifdef FEAT_GUI
2285 && !gui.starting
2286#endif
2287 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002288 maketitle();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002289}
2290#endif
2291
2292/*
2293 * set_options_bin - called when 'bin' changes value.
2294 */
2295 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002296set_options_bin(
2297 int oldval,
2298 int newval,
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002299 int opt_flags) // OPT_LOCAL and/or OPT_GLOBAL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002300{
2301 /*
2302 * The option values that are changed when 'bin' changes are
2303 * copied when 'bin is set and restored when 'bin' is reset.
2304 */
2305 if (newval)
2306 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002307 if (!oldval) // switched on
Bram Moolenaar071d4272004-06-13 20:20:40 +00002308 {
2309 if (!(opt_flags & OPT_GLOBAL))
2310 {
2311 curbuf->b_p_tw_nobin = curbuf->b_p_tw;
2312 curbuf->b_p_wm_nobin = curbuf->b_p_wm;
2313 curbuf->b_p_ml_nobin = curbuf->b_p_ml;
2314 curbuf->b_p_et_nobin = curbuf->b_p_et;
2315 }
2316 if (!(opt_flags & OPT_LOCAL))
2317 {
2318 p_tw_nobin = p_tw;
2319 p_wm_nobin = p_wm;
2320 p_ml_nobin = p_ml;
2321 p_et_nobin = p_et;
2322 }
2323 }
2324
2325 if (!(opt_flags & OPT_GLOBAL))
2326 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002327 curbuf->b_p_tw = 0; // no automatic line wrap
2328 curbuf->b_p_wm = 0; // no automatic line wrap
2329 curbuf->b_p_ml = 0; // no modelines
2330 curbuf->b_p_et = 0; // no expandtab
Bram Moolenaar071d4272004-06-13 20:20:40 +00002331 }
2332 if (!(opt_flags & OPT_LOCAL))
2333 {
2334 p_tw = 0;
2335 p_wm = 0;
2336 p_ml = FALSE;
2337 p_et = FALSE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002338 p_bin = TRUE; // needed when called for the "-b" argument
Bram Moolenaar071d4272004-06-13 20:20:40 +00002339 }
2340 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002341 else if (oldval) // switched off
Bram Moolenaar071d4272004-06-13 20:20:40 +00002342 {
2343 if (!(opt_flags & OPT_GLOBAL))
2344 {
2345 curbuf->b_p_tw = curbuf->b_p_tw_nobin;
2346 curbuf->b_p_wm = curbuf->b_p_wm_nobin;
2347 curbuf->b_p_ml = curbuf->b_p_ml_nobin;
2348 curbuf->b_p_et = curbuf->b_p_et_nobin;
2349 }
2350 if (!(opt_flags & OPT_LOCAL))
2351 {
2352 p_tw = p_tw_nobin;
2353 p_wm = p_wm_nobin;
2354 p_ml = p_ml_nobin;
2355 p_et = p_et_nobin;
2356 }
2357 }
2358}
2359
Bram Moolenaar071d4272004-06-13 20:20:40 +00002360/*
2361 * Expand environment variables for some string options.
2362 * These string options cannot be indirect!
2363 * If "val" is NULL expand the current value of the option.
2364 * Return pointer to NameBuff, or NULL when not expanded.
2365 */
2366 static char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01002367option_expand(int opt_idx, char_u *val)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002368{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002369 // if option doesn't need expansion nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00002370 if (!(options[opt_idx].flags & P_EXPAND) || options[opt_idx].var == NULL)
2371 return NULL;
2372
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002373 // If val is longer than MAXPATHL no meaningful expansion can be done,
2374 // expand_env() would truncate the string.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002375 if (val != NULL && STRLEN(val) > MAXPATHL)
2376 return NULL;
2377
2378 if (val == NULL)
2379 val = *(char_u **)options[opt_idx].var;
2380
2381 /*
2382 * Expanding this with NameBuff, expand_env() must not be passed IObuff.
2383 * Escape spaces when expanding 'tags', they are used to separate file
2384 * names.
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00002385 * For 'spellsuggest' expand after "file:".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002386 */
2387 expand_env_esc(val, NameBuff, MAXPATHL,
Bram Moolenaar9f0545d2007-09-26 20:36:32 +00002388 (char_u **)options[opt_idx].var == &p_tags, FALSE,
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00002389#ifdef FEAT_SPELL
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00002390 (char_u **)options[opt_idx].var == &p_sps ? (char_u *)"file:" :
2391#endif
2392 NULL);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002393 if (STRCMP(NameBuff, val) == 0) // they are the same
Bram Moolenaar071d4272004-06-13 20:20:40 +00002394 return NULL;
2395
2396 return NameBuff;
2397}
2398
2399/*
2400 * After setting various option values: recompute variables that depend on
2401 * option values.
2402 */
2403 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002404didset_options(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002405{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002406 // initialize the table for 'iskeyword' et.al.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002407 (void)init_chartab();
2408
Bram Moolenaardac13472019-09-16 21:06:21 +02002409 didset_string_options();
2410
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00002411#ifdef FEAT_SPELL
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00002412 (void)spell_check_msm();
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00002413 (void)spell_check_sps();
Bram Moolenaar860cae12010-06-05 23:22:07 +02002414 (void)compile_cap_prog(curwin->w_s);
Bram Moolenaare68c25c2015-08-25 15:39:55 +02002415 (void)did_set_spell_option(TRUE);
Bram Moolenaard857f0e2005-06-21 22:37:39 +00002416#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002417#ifdef FEAT_CMDWIN
Bram Moolenaar010ee962019-09-25 20:37:36 +02002418 // set cedit_key
Bram Moolenaar071d4272004-06-13 20:20:40 +00002419 (void)check_cedit();
2420#endif
Bram Moolenaar597a4222014-06-25 14:39:50 +02002421#ifdef FEAT_LINEBREAK
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002422 // initialize the table for 'breakat'.
Bram Moolenaare68c25c2015-08-25 15:39:55 +02002423 fill_breakat_flags();
2424#endif
Bram Moolenaar010ee962019-09-25 20:37:36 +02002425 after_copy_winopt(curwin);
Bram Moolenaare68c25c2015-08-25 15:39:55 +02002426}
2427
2428/*
2429 * More side effects of setting options.
2430 */
2431 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002432didset_options2(void)
Bram Moolenaare68c25c2015-08-25 15:39:55 +02002433{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002434 // Initialize the highlight_attr[] table.
Bram Moolenaare68c25c2015-08-25 15:39:55 +02002435 (void)highlight_changed();
2436
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002437 // Parse default for 'wildmode'
Bram Moolenaare68c25c2015-08-25 15:39:55 +02002438 check_opt_wim();
2439
Bram Moolenaareed9d462021-02-15 20:38:25 +01002440 // Parse default for 'listchars'.
2441 (void)set_chars_option(curwin, &curwin->w_p_lcs);
2442
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002443 // Parse default for 'fillchars'.
Bram Moolenaareed9d462021-02-15 20:38:25 +01002444 (void)set_chars_option(curwin, &p_fcs);
Bram Moolenaare68c25c2015-08-25 15:39:55 +02002445
2446#ifdef FEAT_CLIPBOARD
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002447 // Parse default for 'clipboard'
Bram Moolenaare68c25c2015-08-25 15:39:55 +02002448 (void)check_clipboard_option();
2449#endif
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002450#ifdef FEAT_VARTABS
Bram Moolenaar55c77cf2019-02-16 19:05:11 +01002451 vim_free(curbuf->b_p_vsts_array);
Bram Moolenaarb7081e12021-09-04 18:47:28 +02002452 (void)tabstop_set(curbuf->b_p_vsts, &curbuf->b_p_vsts_array);
Bram Moolenaar55c77cf2019-02-16 19:05:11 +01002453 vim_free(curbuf->b_p_vts_array);
Bram Moolenaarb7081e12021-09-04 18:47:28 +02002454 (void)tabstop_set(curbuf->b_p_vts, &curbuf->b_p_vts_array);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02002455#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002456}
2457
2458/*
2459 * Check for string options that are NULL (normally only termcap options).
2460 */
2461 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002462check_options(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002463{
2464 int opt_idx;
2465
2466 for (opt_idx = 0; options[opt_idx].fullname != NULL; opt_idx++)
2467 if ((options[opt_idx].flags & P_STRING) && options[opt_idx].var != NULL)
2468 check_string_option((char_u **)get_varp(&(options[opt_idx])));
2469}
2470
2471/*
Bram Moolenaar35bc7d62018-10-02 14:45:10 +02002472 * Return the option index found by a pointer into term_strings[].
2473 * Return -1 if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002474 */
Bram Moolenaar35bc7d62018-10-02 14:45:10 +02002475 int
2476get_term_opt_idx(char_u **p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002477{
Bram Moolenaar35bc7d62018-10-02 14:45:10 +02002478 int opt_idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002479
2480 for (opt_idx = 1; options[opt_idx].fullname != NULL; opt_idx++)
2481 if (options[opt_idx].var == (char_u *)p)
Bram Moolenaar35bc7d62018-10-02 14:45:10 +02002482 return opt_idx;
2483 return -1; // cannot happen: didn't find it!
2484}
2485
2486/*
2487 * Mark a terminal option as allocated, found by a pointer into term_strings[].
2488 * Return the option index or -1 if not found.
2489 */
2490 int
2491set_term_option_alloced(char_u **p)
2492{
2493 int opt_idx = get_term_opt_idx(p);
2494
2495 if (opt_idx >= 0)
2496 options[opt_idx].flags |= P_ALLOCED;
2497 return opt_idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002498}
2499
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002500#if defined(FEAT_EVAL) || defined(PROTO)
2501/*
2502 * Return TRUE when option "opt" was set from a modeline or in secure mode.
2503 * Return FALSE when it wasn't.
2504 * Return -1 for an unknown option.
2505 */
2506 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002507was_set_insecurely(char_u *opt, int opt_flags)
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002508{
2509 int idx = findoption(opt);
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002510 long_u *flagp;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002511
2512 if (idx >= 0)
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002513 {
2514 flagp = insecure_flag(idx, opt_flags);
2515 return (*flagp & P_INSECURE) != 0;
2516 }
Bram Moolenaar95f09602016-11-10 20:01:45 +01002517 internal_error("was_set_insecurely()");
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002518 return -1;
2519}
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002520
2521/*
2522 * Get a pointer to the flags used for the P_INSECURE flag of option
2523 * "opt_idx". For some local options a local flags field is used.
Bram Moolenaard5e8c922021-02-02 21:10:01 +01002524 * NOTE: Caller must make sure that "curwin" is set to the window from which
2525 * the option is used.
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002526 */
2527 static long_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01002528insecure_flag(int opt_idx, int opt_flags)
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002529{
2530 if (opt_flags & OPT_LOCAL)
2531 switch ((int)options[opt_idx].indir)
2532 {
2533#ifdef FEAT_STL_OPT
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00002534 case PV_STL: return &curwin->w_p_stl_flags;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002535#endif
2536#ifdef FEAT_EVAL
Bram Moolenaar2e978902006-05-13 12:37:50 +00002537# ifdef FEAT_FOLDING
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00002538 case PV_FDE: return &curwin->w_p_fde_flags;
2539 case PV_FDT: return &curwin->w_p_fdt_flags;
Bram Moolenaar2e978902006-05-13 12:37:50 +00002540# endif
Bram Moolenaar9b2200a2006-03-20 21:55:45 +00002541# ifdef FEAT_BEVAL
2542 case PV_BEXPR: return &curbuf->b_p_bexpr_flags;
2543# endif
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002544# if defined(FEAT_CINDENT)
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00002545 case PV_INDE: return &curbuf->b_p_inde_flags;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002546# endif
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00002547 case PV_FEX: return &curbuf->b_p_fex_flags;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002548# ifdef FEAT_FIND_ID
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00002549 case PV_INEX: return &curbuf->b_p_inex_flags;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002550# endif
2551#endif
2552 }
2553
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002554 // Nothing special, return global flags field.
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002555 return &options[opt_idx].flags;
2556}
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002557#endif
2558
Bram Moolenaardac13472019-09-16 21:06:21 +02002559#if defined(FEAT_TITLE) || defined(PROTO)
Bram Moolenaar1f26d2f2009-02-11 10:35:36 +00002560/*
2561 * Redraw the window title and/or tab page text later.
2562 */
Bram Moolenaardac13472019-09-16 21:06:21 +02002563void redraw_titles(void)
Bram Moolenaar1f26d2f2009-02-11 10:35:36 +00002564{
2565 need_maketitle = TRUE;
Bram Moolenaar1f26d2f2009-02-11 10:35:36 +00002566 redraw_tabline = TRUE;
Bram Moolenaar1f26d2f2009-02-11 10:35:36 +00002567}
2568#endif
2569
Bram Moolenaar071d4272004-06-13 20:20:40 +00002570/*
Bram Moolenaar8f130ed2019-04-10 22:15:19 +02002571 * Return TRUE if "val" is a valid name: only consists of alphanumeric ASCII
2572 * characters or characters in "allowed".
2573 */
Bram Moolenaare677df82019-09-02 22:31:11 +02002574 int
Bram Moolenaar8f130ed2019-04-10 22:15:19 +02002575valid_name(char_u *val, char *allowed)
2576{
2577 char_u *s;
2578
2579 for (s = val; *s != NUL; ++s)
2580 if (!ASCII_ISALNUM(*s) && vim_strchr((char_u *)allowed, *s) == NULL)
2581 return FALSE;
2582 return TRUE;
2583}
2584
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002585#if defined(FEAT_EVAL) || defined(PROTO)
2586/*
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02002587 * Set the script_ctx for an option, taking care of setting the buffer- or
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00002588 * window-local value.
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002589 */
Bram Moolenaardac13472019-09-16 21:06:21 +02002590 void
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02002591set_option_sctx_idx(int opt_idx, int opt_flags, sctx_T script_ctx)
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002592{
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00002593 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
2594 int indir = (int)options[opt_idx].indir;
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02002595 sctx_T new_script_ctx = script_ctx;
2596
Bram Moolenaar51258742020-05-03 17:19:33 +02002597 // Modeline already has the line number set.
2598 if (!(opt_flags & OPT_MODELINE))
2599 new_script_ctx.sc_lnum += SOURCING_LNUM;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002600
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002601 // Remember where the option was set. For local options need to do that
2602 // in the buffer or window structure.
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00002603 if (both || (opt_flags & OPT_GLOBAL) || (indir & (PV_BUF|PV_WIN)) == 0)
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02002604 options[opt_idx].script_ctx = new_script_ctx;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00002605 if (both || (opt_flags & OPT_LOCAL))
2606 {
2607 if (indir & PV_BUF)
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02002608 curbuf->b_p_script_ctx[indir & PV_MASK] = new_script_ctx;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00002609 else if (indir & PV_WIN)
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02002610 curwin->w_p_script_ctx[indir & PV_MASK] = new_script_ctx;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00002611 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002612}
Bram Moolenaar35bc7d62018-10-02 14:45:10 +02002613
2614/*
2615 * Set the script_ctx for a termcap option.
2616 * "name" must be the two character code, e.g. "RV".
2617 * When "name" is NULL use "opt_idx".
2618 */
2619 void
2620set_term_option_sctx_idx(char *name, int opt_idx)
2621{
2622 char_u buf[5];
2623 int idx;
2624
2625 if (name == NULL)
2626 idx = opt_idx;
2627 else
2628 {
2629 buf[0] = 't';
2630 buf[1] = '_';
2631 buf[2] = name[0];
2632 buf[3] = name[1];
2633 buf[4] = 0;
2634 idx = findoption(buf);
2635 }
2636 if (idx >= 0)
2637 set_option_sctx_idx(idx, OPT_GLOBAL, current_sctx);
2638}
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002639#endif
2640
Bram Moolenaarf4140482020-02-15 23:06:45 +01002641#if defined(FEAT_EVAL)
2642/*
2643 * Apply the OptionSet autocommand.
2644 */
2645 static void
2646apply_optionset_autocmd(
2647 int opt_idx,
2648 long opt_flags,
2649 long oldval,
2650 long oldval_g,
2651 long newval,
2652 char *errmsg)
2653{
2654 char_u buf_old[12], buf_old_global[12], buf_new[12], buf_type[12];
2655
2656 // Don't do this while starting up, failure or recursively.
2657 if (starting || errmsg != NULL || *get_vim_var_str(VV_OPTION_TYPE) != NUL)
2658 return;
2659
2660 vim_snprintf((char *)buf_old, sizeof(buf_old), "%ld", oldval);
2661 vim_snprintf((char *)buf_old_global, sizeof(buf_old_global), "%ld",
2662 oldval_g);
2663 vim_snprintf((char *)buf_new, sizeof(buf_new), "%ld", newval);
2664 vim_snprintf((char *)buf_type, sizeof(buf_type), "%s",
2665 (opt_flags & OPT_LOCAL) ? "local" : "global");
2666 set_vim_var_string(VV_OPTION_NEW, buf_new, -1);
2667 set_vim_var_string(VV_OPTION_OLD, buf_old, -1);
2668 set_vim_var_string(VV_OPTION_TYPE, buf_type, -1);
2669 if (opt_flags & OPT_LOCAL)
2670 {
2671 set_vim_var_string(VV_OPTION_COMMAND, (char_u *)"setlocal", -1);
2672 set_vim_var_string(VV_OPTION_OLDLOCAL, buf_old, -1);
2673 }
2674 if (opt_flags & OPT_GLOBAL)
2675 {
2676 set_vim_var_string(VV_OPTION_COMMAND, (char_u *)"setglobal", -1);
2677 set_vim_var_string(VV_OPTION_OLDGLOBAL, buf_old, -1);
2678 }
2679 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0)
2680 {
2681 set_vim_var_string(VV_OPTION_COMMAND, (char_u *)"set", -1);
2682 set_vim_var_string(VV_OPTION_OLDLOCAL, buf_old, -1);
2683 set_vim_var_string(VV_OPTION_OLDGLOBAL, buf_old_global, -1);
2684 }
2685 if (opt_flags & OPT_MODELINE)
2686 {
2687 set_vim_var_string(VV_OPTION_COMMAND, (char_u *)"modeline", -1);
2688 set_vim_var_string(VV_OPTION_OLDLOCAL, buf_old, -1);
2689 }
2690 apply_autocmds(EVENT_OPTIONSET, (char_u *)options[opt_idx].fullname,
2691 NULL, FALSE, NULL);
2692 reset_v_option_vars();
2693}
2694#endif
2695
Bram Moolenaar071d4272004-06-13 20:20:40 +00002696/*
2697 * Set the value of a boolean option, and take care of side effects.
2698 * Returns NULL for success, or an error message for an error.
2699 */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002700 static char *
Bram Moolenaar9b578142016-01-30 19:39:49 +01002701set_bool_option(
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002702 int opt_idx, // index in options[] table
2703 char_u *varp, // pointer to the option variable
2704 int value, // new value
2705 int opt_flags) // OPT_LOCAL and/or OPT_GLOBAL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002706{
2707 int old_value = *(int *)varp;
Bram Moolenaar983f2f12019-06-16 16:41:41 +02002708#if defined(FEAT_EVAL)
Bram Moolenaard7c96872019-06-15 17:12:48 +02002709 int old_global_value = 0;
Bram Moolenaar983f2f12019-06-16 16:41:41 +02002710#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002711
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002712 // Disallow changing some options from secure mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00002713 if ((secure
2714#ifdef HAVE_SANDBOX
2715 || sandbox != 0
2716#endif
2717 ) && (options[opt_idx].flags & P_SECURE))
2718 return e_secure;
2719
Bram Moolenaar983f2f12019-06-16 16:41:41 +02002720#if defined(FEAT_EVAL)
Bram Moolenaard7c96872019-06-15 17:12:48 +02002721 // Save the global value before changing anything. This is needed as for
2722 // a global-only option setting the "local value" in fact sets the global
2723 // value (since there is only one value).
2724 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0)
2725 old_global_value = *(int *)get_varp_scope(&(options[opt_idx]),
2726 OPT_GLOBAL);
Bram Moolenaar983f2f12019-06-16 16:41:41 +02002727#endif
Bram Moolenaard7c96872019-06-15 17:12:48 +02002728
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002729 *(int *)varp = value; // set the new value
Bram Moolenaar071d4272004-06-13 20:20:40 +00002730#ifdef FEAT_EVAL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002731 // Remember where the option was set.
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02002732 set_option_sctx_idx(opt_idx, opt_flags, current_sctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002733#endif
2734
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002735#ifdef FEAT_GUI
2736 need_mouse_correct = TRUE;
2737#endif
2738
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002739 // May set global value for local option.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002740 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0)
2741 *(int *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) = value;
2742
2743 /*
2744 * Handle side effects of changing a bool option.
2745 */
2746
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002747 // 'compatible'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002748 if ((int *)varp == &p_cp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002749 compatible_set();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002750
Bram Moolenaar920694c2016-08-21 17:45:02 +02002751#ifdef FEAT_LANGMAP
2752 if ((int *)varp == &p_lrm)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002753 // 'langremap' -> !'langnoremap'
Bram Moolenaar920694c2016-08-21 17:45:02 +02002754 p_lnr = !p_lrm;
2755 else if ((int *)varp == &p_lnr)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002756 // 'langnoremap' -> !'langremap'
Bram Moolenaar920694c2016-08-21 17:45:02 +02002757 p_lrm = !p_lnr;
2758#endif
2759
Bram Moolenaar8c63e0e2018-09-25 22:17:54 +02002760#ifdef FEAT_SYN_HL
2761 else if ((int *)varp == &curwin->w_p_cul && !value && old_value)
2762 reset_cursorline();
2763#endif
2764
Bram Moolenaar374d32d2012-01-04 19:34:37 +01002765#ifdef FEAT_PERSISTENT_UNDO
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002766 // 'undofile'
Bram Moolenaar374d32d2012-01-04 19:34:37 +01002767 else if ((int *)varp == &curbuf->b_p_udf || (int *)varp == &p_udf)
2768 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002769 // Only take action when the option was set. When reset we do not
2770 // delete the undo file, the option may be set again without making
2771 // any changes in between.
Bram Moolenaare8d8fd22012-10-21 03:46:05 +02002772 if (curbuf->b_p_udf || p_udf)
Bram Moolenaar374d32d2012-01-04 19:34:37 +01002773 {
Bram Moolenaare8d8fd22012-10-21 03:46:05 +02002774 char_u hash[UNDO_HASH_SIZE];
2775 buf_T *save_curbuf = curbuf;
2776
Bram Moolenaar29323592016-07-24 22:04:11 +02002777 FOR_ALL_BUFFERS(curbuf)
Bram Moolenaar374d32d2012-01-04 19:34:37 +01002778 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002779 // When 'undofile' is set globally: for every buffer, otherwise
2780 // only for the current buffer: Try to read in the undofile,
2781 // if one exists, the buffer wasn't changed and the buffer was
2782 // loaded
Bram Moolenaare8d8fd22012-10-21 03:46:05 +02002783 if ((curbuf == save_curbuf
2784 || (opt_flags & OPT_GLOBAL) || opt_flags == 0)
2785 && !curbufIsChanged() && curbuf->b_ml.ml_mfp != NULL)
2786 {
Christian Brabandtf573c6e2021-06-20 14:02:16 +02002787#ifdef FEAT_CRYPT
2788 if (crypt_get_method_nr(curbuf) == CRYPT_M_SOD)
2789 continue;
2790#endif
Bram Moolenaare8d8fd22012-10-21 03:46:05 +02002791 u_compute_hash(hash);
2792 u_read_undo(NULL, hash, curbuf->b_fname);
2793 }
Bram Moolenaar374d32d2012-01-04 19:34:37 +01002794 }
Bram Moolenaare8d8fd22012-10-21 03:46:05 +02002795 curbuf = save_curbuf;
Bram Moolenaar374d32d2012-01-04 19:34:37 +01002796 }
Bram Moolenaar374d32d2012-01-04 19:34:37 +01002797 }
2798#endif
2799
Bram Moolenaar071d4272004-06-13 20:20:40 +00002800 else if ((int *)varp == &curbuf->b_p_ro)
2801 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002802 // when 'readonly' is reset globally, also reset readonlymode
Bram Moolenaar071d4272004-06-13 20:20:40 +00002803 if (!curbuf->b_p_ro && (opt_flags & OPT_LOCAL) == 0)
2804 readonlymode = FALSE;
Bram Moolenaard5cdbeb2005-10-10 20:59:28 +00002805
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002806 // when 'readonly' is set may give W10 again
Bram Moolenaard5cdbeb2005-10-10 20:59:28 +00002807 if (curbuf->b_p_ro)
2808 curbuf->b_did_warn = FALSE;
2809
Bram Moolenaar071d4272004-06-13 20:20:40 +00002810#ifdef FEAT_TITLE
Bram Moolenaar1f26d2f2009-02-11 10:35:36 +00002811 redraw_titles();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002812#endif
2813 }
2814
Bram Moolenaar9c449722010-07-20 18:44:27 +02002815#ifdef FEAT_GUI
2816 else if ((int *)varp == &p_mh)
2817 {
2818 if (!p_mh)
2819 gui_mch_mousehide(FALSE);
2820 }
2821#endif
2822
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002823 // when 'modifiable' is changed, redraw the window title
Bram Moolenaar071d4272004-06-13 20:20:40 +00002824 else if ((int *)varp == &curbuf->b_p_ma)
Bram Moolenaar1f26d2f2009-02-11 10:35:36 +00002825 {
Bram Moolenaar423802d2017-07-30 16:52:24 +02002826# ifdef FEAT_TERMINAL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002827 // Cannot set 'modifiable' when in Terminal mode.
Bram Moolenaard7db27b2018-03-07 23:02:33 +01002828 if (curbuf->b_p_ma && (term_in_normal_mode() || (bt_terminal(curbuf)
2829 && curbuf->b_term != NULL && !term_is_finished(curbuf))))
Bram Moolenaar423802d2017-07-30 16:52:24 +02002830 {
2831 curbuf->b_p_ma = FALSE;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002832 return N_("E946: Cannot make a terminal with running job modifiable");
Bram Moolenaar423802d2017-07-30 16:52:24 +02002833 }
2834# endif
2835# ifdef FEAT_TITLE
Bram Moolenaar1f26d2f2009-02-11 10:35:36 +00002836 redraw_titles();
Bram Moolenaar423802d2017-07-30 16:52:24 +02002837# endif
Bram Moolenaar1f26d2f2009-02-11 10:35:36 +00002838 }
Bram Moolenaar423802d2017-07-30 16:52:24 +02002839#ifdef FEAT_TITLE
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002840 // when 'endofline' is changed, redraw the window title
Bram Moolenaar071d4272004-06-13 20:20:40 +00002841 else if ((int *)varp == &curbuf->b_p_eol)
Bram Moolenaar1f26d2f2009-02-11 10:35:36 +00002842 {
2843 redraw_titles();
2844 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002845 // when 'fixeol' is changed, redraw the window title
Bram Moolenaar34d72d42015-07-17 14:18:08 +02002846 else if ((int *)varp == &curbuf->b_p_fixeol)
2847 {
2848 redraw_titles();
2849 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002850 // when 'bomb' is changed, redraw the window title and tab page text
Bram Moolenaar83eb8852007-08-12 13:51:26 +00002851 else if ((int *)varp == &curbuf->b_p_bomb)
Bram Moolenaar1f26d2f2009-02-11 10:35:36 +00002852 {
2853 redraw_titles();
2854 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002855#endif
2856
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002857 // when 'bin' is set also set some other options
Bram Moolenaar071d4272004-06-13 20:20:40 +00002858 else if ((int *)varp == &curbuf->b_p_bin)
2859 {
2860 set_options_bin(old_value, curbuf->b_p_bin, opt_flags);
2861#ifdef FEAT_TITLE
Bram Moolenaar1f26d2f2009-02-11 10:35:36 +00002862 redraw_titles();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002863#endif
2864 }
2865
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002866 // when 'buflisted' changes, trigger autocommands
Bram Moolenaar071d4272004-06-13 20:20:40 +00002867 else if ((int *)varp == &curbuf->b_p_bl && old_value != curbuf->b_p_bl)
2868 {
2869 apply_autocmds(curbuf->b_p_bl ? EVENT_BUFADD : EVENT_BUFDELETE,
2870 NULL, NULL, TRUE, curbuf);
2871 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002872
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002873 // when 'swf' is set, create swapfile, when reset remove swapfile
Bram Moolenaar071d4272004-06-13 20:20:40 +00002874 else if ((int *)varp == &curbuf->b_p_swf)
2875 {
2876 if (curbuf->b_p_swf && p_uc)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002877 ml_open_file(curbuf); // create the swap file
Bram Moolenaar071d4272004-06-13 20:20:40 +00002878 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002879 // no need to reset curbuf->b_may_swap, ml_open_file() will check
2880 // buf->b_p_swf
2881 mf_close_file(curbuf, TRUE); // remove the swap file
Bram Moolenaar071d4272004-06-13 20:20:40 +00002882 }
2883
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002884 // when 'terse' is set change 'shortmess'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002885 else if ((int *)varp == &p_terse)
2886 {
2887 char_u *p;
2888
2889 p = vim_strchr(p_shm, SHM_SEARCH);
2890
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002891 // insert 's' in p_shm
Bram Moolenaar071d4272004-06-13 20:20:40 +00002892 if (p_terse && p == NULL)
2893 {
2894 STRCPY(IObuff, p_shm);
2895 STRCAT(IObuff, "s");
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00002896 set_string_option_direct((char_u *)"shm", -1, IObuff, OPT_FREE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002897 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002898 // remove 's' from p_shm
Bram Moolenaar071d4272004-06-13 20:20:40 +00002899 else if (!p_terse && p != NULL)
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +00002900 STRMOVE(p, p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002901 }
2902
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002903 // when 'paste' is set or reset also change other options
Bram Moolenaar071d4272004-06-13 20:20:40 +00002904 else if ((int *)varp == &p_paste)
2905 {
2906 paste_option_changed();
2907 }
2908
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002909 // when 'insertmode' is set from an autocommand need to do work here
Bram Moolenaar071d4272004-06-13 20:20:40 +00002910 else if ((int *)varp == &p_im)
2911 {
2912 if (p_im)
2913 {
2914 if ((State & INSERT) == 0)
2915 need_start_insertmode = TRUE;
2916 stop_insert_mode = FALSE;
2917 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002918 // only reset if it was set previously
Bram Moolenaar00672e12016-06-26 18:38:13 +02002919 else if (old_value)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002920 {
2921 need_start_insertmode = FALSE;
2922 stop_insert_mode = TRUE;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002923 if (restart_edit != 0 && mode_displayed)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002924 clear_cmdline = TRUE; // remove "(insert)"
Bram Moolenaar071d4272004-06-13 20:20:40 +00002925 restart_edit = 0;
2926 }
2927 }
2928
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002929 // when 'ignorecase' is set or reset and 'hlsearch' is set, redraw
Bram Moolenaar071d4272004-06-13 20:20:40 +00002930 else if ((int *)varp == &p_ic && p_hls)
2931 {
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00002932 redraw_all_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002933 }
2934
2935#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002936 // when 'hlsearch' is set or reset: reset no_hlsearch
Bram Moolenaar071d4272004-06-13 20:20:40 +00002937 else if ((int *)varp == &p_hls)
2938 {
Bram Moolenaar451fc7b2018-04-27 22:53:07 +02002939 set_no_hlsearch(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002940 }
2941#endif
2942
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002943 // when 'scrollbind' is set: snapshot the current position to avoid a jump
2944 // at the end of normal_cmd()
Bram Moolenaar071d4272004-06-13 20:20:40 +00002945 else if ((int *)varp == &curwin->w_p_scb)
2946 {
2947 if (curwin->w_p_scb)
Bram Moolenaar04c5c9e2013-07-09 13:44:59 +02002948 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002949 do_check_scrollbind(FALSE);
Bram Moolenaar04c5c9e2013-07-09 13:44:59 +02002950 curwin->w_scbind_pos = curwin->w_topline;
2951 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002952 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002953
Bram Moolenaar4033c552017-09-16 20:54:51 +02002954#if defined(FEAT_QUICKFIX)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002955 // There can be only one window with 'previewwindow' set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002956 else if ((int *)varp == &curwin->w_p_pvw)
2957 {
2958 if (curwin->w_p_pvw)
2959 {
2960 win_T *win;
2961
Bram Moolenaar29323592016-07-24 22:04:11 +02002962 FOR_ALL_WINDOWS(win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002963 if (win->w_p_pvw && win != curwin)
2964 {
2965 curwin->w_p_pvw = FALSE;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002966 return N_("E590: A preview window already exists");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002967 }
2968 }
2969 }
2970#endif
2971
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002972 // when 'textmode' is set or reset also change 'fileformat'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002973 else if ((int *)varp == &curbuf->b_p_tx)
2974 {
2975 set_fileformat(curbuf->b_p_tx ? EOL_DOS : EOL_UNIX, opt_flags);
2976 }
2977
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002978 // when 'textauto' is set or reset also change 'fileformats'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002979 else if ((int *)varp == &p_ta)
Bram Moolenaarabab0b02019-03-30 18:47:01 +01002980 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002981 set_string_option_direct((char_u *)"ffs", -1,
2982 p_ta ? (char_u *)DFLT_FFS_VIM : (char_u *)"",
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00002983 OPT_FREE | opt_flags, 0);
Bram Moolenaarabab0b02019-03-30 18:47:01 +01002984 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002985
2986 /*
2987 * When 'lisp' option changes include/exclude '-' in
2988 * keyword characters.
2989 */
2990#ifdef FEAT_LISP
2991 else if (varp == (char_u *)&(curbuf->b_p_lisp))
2992 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002993 (void)buf_init_chartab(curbuf, FALSE); // ignore errors
Bram Moolenaar071d4272004-06-13 20:20:40 +00002994 }
2995#endif
2996
2997#ifdef FEAT_TITLE
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002998 // when 'title' changed, may need to change the title; same for 'icon'
Bram Moolenaar84a93082018-06-16 22:58:15 +02002999 else if ((int *)varp == &p_title || (int *)varp == &p_icon)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003000 {
Bram Moolenaar84a93082018-06-16 22:58:15 +02003001 did_set_title();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003002 }
3003#endif
3004
3005 else if ((int *)varp == &curbuf->b_changed)
3006 {
3007 if (!value)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003008 save_file_ff(curbuf); // Buffer is unchanged
Bram Moolenaar071d4272004-06-13 20:20:40 +00003009#ifdef FEAT_TITLE
Bram Moolenaar1f26d2f2009-02-11 10:35:36 +00003010 redraw_titles();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003011#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003012 modified_was_set = value;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003013 }
3014
3015#ifdef BACKSLASH_IN_FILENAME
3016 else if ((int *)varp == &p_ssl)
3017 {
3018 if (p_ssl)
3019 {
3020 psepc = '/';
3021 psepcN = '\\';
3022 pseps[0] = '/';
Bram Moolenaar071d4272004-06-13 20:20:40 +00003023 }
3024 else
3025 {
3026 psepc = '\\';
3027 psepcN = '/';
3028 pseps[0] = '\\';
Bram Moolenaar071d4272004-06-13 20:20:40 +00003029 }
3030
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003031 // need to adjust the file name arguments and buffer names.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003032 buflist_slash_adjust();
3033 alist_slash_adjust();
3034# ifdef FEAT_EVAL
3035 scriptnames_slash_adjust();
3036# endif
3037 }
3038#endif
3039
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003040 // If 'wrap' is set, set w_leftcol to zero.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003041 else if ((int *)varp == &curwin->w_p_wrap)
3042 {
3043 if (curwin->w_p_wrap)
3044 curwin->w_leftcol = 0;
3045 }
3046
Bram Moolenaar071d4272004-06-13 20:20:40 +00003047 else if ((int *)varp == &p_ea)
3048 {
3049 if (p_ea && !old_value)
3050 win_equal(curwin, FALSE, 0);
3051 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003052
3053 else if ((int *)varp == &p_wiv)
3054 {
3055 /*
3056 * When 'weirdinvert' changed, set/reset 't_xs'.
3057 * Then set 'weirdinvert' according to value of 't_xs'.
3058 */
3059 if (p_wiv && !old_value)
3060 T_XS = (char_u *)"y";
3061 else if (!p_wiv && old_value)
3062 T_XS = empty_option;
3063 p_wiv = (*T_XS != NUL);
3064 }
3065
Bram Moolenaarc3719bd2017-11-18 22:13:31 +01003066#ifdef FEAT_BEVAL_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00003067 else if ((int *)varp == &p_beval)
3068 {
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003069 if (!balloonEvalForTerm)
3070 {
3071 if (p_beval && !old_value)
3072 gui_mch_enable_beval_area(balloonEval);
3073 else if (!p_beval && old_value)
3074 gui_mch_disable_beval_area(balloonEval);
3075 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003076 }
Bram Moolenaar8dff8182006-04-06 20:18:50 +00003077#endif
Bram Moolenaarc3719bd2017-11-18 22:13:31 +01003078#ifdef FEAT_BEVAL_TERM
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003079 else if ((int *)varp == &p_bevalterm)
3080 {
3081 mch_bevalterm_changed();
3082 }
Bram Moolenaarc3719bd2017-11-18 22:13:31 +01003083#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003084
Bram Moolenaar8dff8182006-04-06 20:18:50 +00003085#ifdef FEAT_AUTOCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00003086 else if ((int *)varp == &p_acd)
3087 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003088 // Change directories when the 'acd' option is set now.
Bram Moolenaar6f470022018-04-10 18:47:20 +02003089 DO_AUTOCHDIR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003090 }
3091#endif
3092
3093#ifdef FEAT_DIFF
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003094 // 'diff'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003095 else if ((int *)varp == &curwin->w_p_diff)
3096 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003097 // May add or remove the buffer from the list of diff buffers.
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00003098 diff_buf_adjust(curwin);
3099# ifdef FEAT_FOLDING
Bram Moolenaar071d4272004-06-13 20:20:40 +00003100 if (foldmethodIsDiff(curwin))
3101 foldUpdateAll(curwin);
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00003102# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003103 }
3104#endif
3105
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003106#ifdef HAVE_INPUT_METHOD
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003107 // 'imdisable'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003108 else if ((int *)varp == &p_imdisable)
3109 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003110 // Only de-activate it here, it will be enabled when changing mode.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003111 if (p_imdisable)
3112 im_set_active(FALSE);
Bram Moolenaar725a9622011-10-12 16:57:13 +02003113 else if (State & INSERT)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003114 // When the option is set from an autocommand, it may need to take
3115 // effect right away.
Bram Moolenaar725a9622011-10-12 16:57:13 +02003116 im_set_active(curbuf->b_p_iminsert == B_IMODE_IM);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003117 }
3118#endif
3119
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00003120#ifdef FEAT_SPELL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003121 // 'spell'
Bram Moolenaar0cb032e2005-04-23 20:52:00 +00003122 else if ((int *)varp == &curwin->w_p_spell)
3123 {
3124 if (curwin->w_p_spell)
3125 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003126 char *errmsg = did_set_spelllang(curwin);
3127
Bram Moolenaar0cb032e2005-04-23 20:52:00 +00003128 if (errmsg != NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003129 emsg(_(errmsg));
Bram Moolenaar0cb032e2005-04-23 20:52:00 +00003130 }
3131 }
3132#endif
3133
Bram Moolenaar071d4272004-06-13 20:20:40 +00003134#ifdef FEAT_ARABIC
3135 if ((int *)varp == &curwin->w_p_arab)
3136 {
3137 if (curwin->w_p_arab)
3138 {
3139 /*
3140 * 'arabic' is set, handle various sub-settings.
3141 */
3142 if (!p_tbidi)
3143 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003144 // set rightleft mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003145 if (!curwin->w_p_rl)
3146 {
3147 curwin->w_p_rl = TRUE;
3148 changed_window_setting();
3149 }
3150
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003151 // Enable Arabic shaping (major part of what Arabic requires)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003152 if (!p_arshape)
3153 {
3154 p_arshape = TRUE;
3155 redraw_later_clear();
3156 }
3157 }
3158
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003159 // Arabic requires a utf-8 encoding, inform the user if its not
3160 // set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003161 if (STRCMP(p_enc, "utf-8") != 0)
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00003162 {
Bram Moolenaar496c5262009-03-18 14:42:00 +00003163 static char *w_arabic = N_("W17: Arabic requires UTF-8, do ':set encoding=utf-8'");
3164
Bram Moolenaar8820b482017-03-16 17:23:31 +01003165 msg_source(HL_ATTR(HLF_W));
Bram Moolenaar32526b32019-01-19 17:43:09 +01003166 msg_attr(_(w_arabic), HL_ATTR(HLF_W));
Bram Moolenaar496c5262009-03-18 14:42:00 +00003167#ifdef FEAT_EVAL
3168 set_vim_var_string(VV_WARNINGMSG, (char_u *)_(w_arabic), -1);
3169#endif
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00003170 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003171
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003172 // set 'delcombine'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003173 p_deco = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003174
3175# ifdef FEAT_KEYMAP
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003176 // Force-set the necessary keymap for arabic
Bram Moolenaar071d4272004-06-13 20:20:40 +00003177 set_option_value((char_u *)"keymap", 0L, (char_u *)"arabic",
3178 OPT_LOCAL);
3179# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003180 }
3181 else
3182 {
3183 /*
3184 * 'arabic' is reset, handle various sub-settings.
3185 */
3186 if (!p_tbidi)
3187 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003188 // reset rightleft mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003189 if (curwin->w_p_rl)
3190 {
3191 curwin->w_p_rl = FALSE;
3192 changed_window_setting();
3193 }
3194
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003195 // 'arabicshape' isn't reset, it is a global option and
3196 // another window may still need it "on".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003197 }
3198
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003199 // 'delcombine' isn't reset, it is a global option and another
3200 // window may still want it "on".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003201
3202# ifdef FEAT_KEYMAP
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003203 // Revert to the default keymap
Bram Moolenaar071d4272004-06-13 20:20:40 +00003204 curbuf->b_p_iminsert = B_IMODE_NONE;
3205 curbuf->b_p_imsearch = B_IMODE_USE_INSERT;
3206# endif
3207 }
Bram Moolenaar801f8b82009-07-29 13:42:05 +00003208 }
3209
Bram Moolenaar319bdbd2009-09-11 13:20:33 +00003210#endif
3211
Bram Moolenaar44826212019-08-22 21:23:20 +02003212#if defined(FEAT_SIGNS) && defined(FEAT_GUI)
3213 else if (((int *)varp == &curwin->w_p_nu
3214 || (int *)varp == &curwin->w_p_rnu)
3215 && gui.in_use
3216 && (*curwin->w_p_scl == 'n' && *(curwin->w_p_scl + 1) == 'u')
3217 && curbuf->b_signlist != NULL)
3218 {
3219 // If the 'number' or 'relativenumber' options are modified and
3220 // 'signcolumn' is set to 'number', then clear the screen for a full
3221 // refresh. Otherwise the sign icons are not displayed properly in the
3222 // number column. If the 'number' option is set and only the
3223 // 'relativenumber' option is toggled, then don't refresh the screen
3224 // (optimization).
3225 if (!(curwin->w_p_nu && ((int *)varp == &curwin->w_p_rnu)))
3226 redraw_all_later(CLEAR);
3227 }
3228#endif
3229
Bram Moolenaar61be73b2016-04-29 22:59:22 +02003230#ifdef FEAT_TERMGUICOLORS
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003231 // 'termguicolors'
Bram Moolenaar61be73b2016-04-29 22:59:22 +02003232 else if ((int *)varp == &p_tgc)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02003233 {
Bram Moolenaarcafafb32018-02-22 21:07:09 +01003234# ifdef FEAT_VTP
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003235 // Do not turn on 'tgc' when 24-bit colors are not supported.
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003236 if (
3237# ifdef VIMDLL
3238 !gui.in_use && !gui.starting &&
3239# endif
3240 !has_vtp_working())
Bram Moolenaarcafafb32018-02-22 21:07:09 +01003241 {
3242 p_tgc = 0;
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01003243 return N_("E954: 24-bit colors are not supported on this environment");
Bram Moolenaarcafafb32018-02-22 21:07:09 +01003244 }
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02003245 if (is_term_win32())
3246 swap_tcap();
Bram Moolenaarcafafb32018-02-22 21:07:09 +01003247# endif
Bram Moolenaar8a633e32016-04-21 21:10:14 +02003248# ifdef FEAT_GUI
3249 if (!gui.in_use && !gui.starting)
3250# endif
3251 highlight_gui_started();
Bram Moolenaarcafafb32018-02-22 21:07:09 +01003252# ifdef FEAT_VTP
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003253 // reset t_Co
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02003254 if (is_term_win32())
Bram Moolenaarb0eb14f2018-06-28 15:29:52 +02003255 {
3256 control_console_color_rgb();
Bram Moolenaarcafafb32018-02-22 21:07:09 +01003257 set_termname(T_NAME);
Bram Moolenaarb0eb14f2018-06-28 15:29:52 +02003258 init_highlight(TRUE, FALSE);
3259 }
Bram Moolenaarcafafb32018-02-22 21:07:09 +01003260# endif
Bram Moolenaar8a633e32016-04-21 21:10:14 +02003261 }
3262#endif
3263
Bram Moolenaar071d4272004-06-13 20:20:40 +00003264 /*
3265 * End of handling side effects for bool options.
3266 */
3267
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003268 // after handling side effects, call autocommand
Bram Moolenaar53744302015-07-17 17:38:22 +02003269
Bram Moolenaar071d4272004-06-13 20:20:40 +00003270 options[opt_idx].flags |= P_WAS_SET;
3271
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003272#if defined(FEAT_EVAL)
Bram Moolenaarf4140482020-02-15 23:06:45 +01003273 apply_optionset_autocmd(opt_idx, opt_flags,
3274 (long)(old_value ? TRUE : FALSE),
3275 (long)(old_global_value ? TRUE : FALSE),
3276 (long)(value ? TRUE : FALSE), NULL);
Bram Moolenaar53744302015-07-17 17:38:22 +02003277#endif
3278
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003279 comp_col(); // in case 'ruler' or 'showcmd' changed
Bram Moolenaar913077c2012-03-28 19:59:04 +02003280 if (curwin->w_curswant != MAXCOL
Bram Moolenaar488eb262015-03-13 11:23:50 +01003281 && (options[opt_idx].flags & (P_CURSWANT | P_RALL)) != 0)
Bram Moolenaar913077c2012-03-28 19:59:04 +02003282 curwin->w_set_curswant = TRUE;
Bram Moolenaar37294bd2021-03-10 13:40:08 +01003283
3284 if ((opt_flags & OPT_NO_REDRAW) == 0)
3285 check_redraw(options[opt_idx].flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003286
3287 return NULL;
3288}
3289
3290/*
3291 * Set the value of a number option, and take care of side effects.
3292 * Returns NULL for success, or an error message for an error.
3293 */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003294 static char *
Bram Moolenaar9b578142016-01-30 19:39:49 +01003295set_num_option(
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003296 int opt_idx, // index in options[] table
3297 char_u *varp, // pointer to the option variable
3298 long value, // new value
3299 char *errbuf, // buffer for error messages
3300 size_t errbuflen, // length of "errbuf"
Bram Moolenaar37294bd2021-03-10 13:40:08 +01003301 int opt_flags) // OPT_LOCAL, OPT_GLOBAL,
3302 // OPT_MODELINE, etc.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003303{
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003304 char *errmsg = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003305 long old_value = *(long *)varp;
Bram Moolenaar983f2f12019-06-16 16:41:41 +02003306#if defined(FEAT_EVAL)
Bram Moolenaard7c96872019-06-15 17:12:48 +02003307 long old_global_value = 0; // only used when setting a local and
3308 // global option
Bram Moolenaar983f2f12019-06-16 16:41:41 +02003309#endif
Bram Moolenaard7c96872019-06-15 17:12:48 +02003310 long old_Rows = Rows; // remember old Rows
3311 long old_Columns = Columns; // remember old Columns
Bram Moolenaar071d4272004-06-13 20:20:40 +00003312 long *pp = (long *)varp;
3313
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003314 // Disallow changing some options from secure mode.
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003315 if ((secure
3316#ifdef HAVE_SANDBOX
3317 || sandbox != 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003318#endif
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003319 ) && (options[opt_idx].flags & P_SECURE))
3320 return e_secure;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003321
Bram Moolenaar983f2f12019-06-16 16:41:41 +02003322#if defined(FEAT_EVAL)
Bram Moolenaard7c96872019-06-15 17:12:48 +02003323 // Save the global value before changing anything. This is needed as for
Bram Moolenaar4b96df52020-01-26 22:00:26 +01003324 // a global-only option setting the "local value" in fact sets the global
Bram Moolenaard7c96872019-06-15 17:12:48 +02003325 // value (since there is only one value).
3326 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0)
Bram Moolenaar983f2f12019-06-16 16:41:41 +02003327 old_global_value = *(long *)get_varp_scope(&(options[opt_idx]),
3328 OPT_GLOBAL);
3329#endif
Bram Moolenaard7c96872019-06-15 17:12:48 +02003330
Bram Moolenaar071d4272004-06-13 20:20:40 +00003331 *pp = value;
3332#ifdef FEAT_EVAL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003333 // Remember where the option was set.
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02003334 set_option_sctx_idx(opt_idx, opt_flags, current_sctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003335#endif
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003336#ifdef FEAT_GUI
3337 need_mouse_correct = TRUE;
3338#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003339
Bram Moolenaar14f24742012-08-08 18:01:05 +02003340 if (curbuf->b_p_sw < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003341 {
3342 errmsg = e_positive;
Bram Moolenaar04958cb2018-06-23 19:23:02 +02003343#ifdef FEAT_VARTABS
3344 // Use the first 'vartabstop' value, or 'tabstop' if vts isn't in use.
3345 curbuf->b_p_sw = tabstop_count(curbuf->b_p_vts_array) > 0
3346 ? tabstop_first(curbuf->b_p_vts_array)
3347 : curbuf->b_p_ts;
3348#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003349 curbuf->b_p_sw = curbuf->b_p_ts;
Bram Moolenaar04958cb2018-06-23 19:23:02 +02003350#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003351 }
3352
3353 /*
3354 * Number options that need some action when changed
3355 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003356 if (pp == &p_wh || pp == &p_hh)
3357 {
Bram Moolenaar1c3c1042018-06-12 16:49:30 +02003358 // 'winheight' and 'helpheight'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003359 if (p_wh < 1)
3360 {
3361 errmsg = e_positive;
3362 p_wh = 1;
3363 }
3364 if (p_wmh > p_wh)
3365 {
3366 errmsg = e_winheight;
3367 p_wh = p_wmh;
3368 }
3369 if (p_hh < 0)
3370 {
3371 errmsg = e_positive;
3372 p_hh = 0;
3373 }
3374
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003375 // Change window height NOW
Bram Moolenaar459ca562016-11-10 18:16:33 +01003376 if (!ONE_WINDOW)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003377 {
3378 if (pp == &p_wh && curwin->w_height < p_wh)
3379 win_setheight((int)p_wh);
3380 if (pp == &p_hh && curbuf->b_help && curwin->w_height < p_hh)
3381 win_setheight((int)p_hh);
3382 }
3383 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003384 else if (pp == &p_wmh)
3385 {
Bram Moolenaar1c3c1042018-06-12 16:49:30 +02003386 // 'winminheight'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003387 if (p_wmh < 0)
3388 {
3389 errmsg = e_positive;
3390 p_wmh = 0;
3391 }
3392 if (p_wmh > p_wh)
3393 {
3394 errmsg = e_winheight;
3395 p_wmh = p_wh;
3396 }
3397 win_setminheight();
3398 }
Bram Moolenaar592e0a22004-07-03 16:05:59 +00003399 else if (pp == &p_wiw)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003400 {
Bram Moolenaar1c3c1042018-06-12 16:49:30 +02003401 // 'winwidth'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003402 if (p_wiw < 1)
3403 {
3404 errmsg = e_positive;
3405 p_wiw = 1;
3406 }
3407 if (p_wmw > p_wiw)
3408 {
3409 errmsg = e_winwidth;
3410 p_wiw = p_wmw;
3411 }
3412
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003413 // Change window width NOW
Bram Moolenaar459ca562016-11-10 18:16:33 +01003414 if (!ONE_WINDOW && curwin->w_width < p_wiw)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003415 win_setwidth((int)p_wiw);
3416 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003417 else if (pp == &p_wmw)
3418 {
Bram Moolenaar1c3c1042018-06-12 16:49:30 +02003419 // 'winminwidth'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003420 if (p_wmw < 0)
3421 {
3422 errmsg = e_positive;
3423 p_wmw = 0;
3424 }
3425 if (p_wmw > p_wiw)
3426 {
3427 errmsg = e_winwidth;
3428 p_wmw = p_wiw;
3429 }
Bram Moolenaar1c3c1042018-06-12 16:49:30 +02003430 win_setminwidth();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003431 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003432
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003433 // (re)set last window status line
Bram Moolenaar071d4272004-06-13 20:20:40 +00003434 else if (pp == &p_ls)
3435 {
3436 last_status(FALSE);
3437 }
Bram Moolenaar4c7ed462006-02-15 22:18:42 +00003438
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003439 // (re)set tab page line
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00003440 else if (pp == &p_stal)
Bram Moolenaar4c7ed462006-02-15 22:18:42 +00003441 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003442 shell_new_rows(); // recompute window positions and heights
Bram Moolenaar4c7ed462006-02-15 22:18:42 +00003443 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003444
3445#ifdef FEAT_GUI
3446 else if (pp == &p_linespace)
3447 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003448 // Recompute gui.char_height and resize the Vim window to keep the
3449 // same number of lines.
Bram Moolenaar02743632005-07-25 20:42:36 +00003450 if (gui.in_use && gui_mch_adjust_charheight() == OK)
Bram Moolenaar3964b7e2006-03-27 20:59:33 +00003451 gui_set_shellsize(FALSE, FALSE, RESIZE_VERT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003452 }
3453#endif
3454
3455#ifdef FEAT_FOLDING
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003456 // 'foldlevel'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003457 else if (pp == &curwin->w_p_fdl)
3458 {
3459 if (curwin->w_p_fdl < 0)
3460 curwin->w_p_fdl = 0;
3461 newFoldLevel();
3462 }
3463
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003464 // 'foldminlines'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003465 else if (pp == &curwin->w_p_fml)
3466 {
3467 foldUpdateAll(curwin);
3468 }
3469
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003470 // 'foldnestmax'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003471 else if (pp == &curwin->w_p_fdn)
3472 {
3473 if (foldmethodIsSyntax(curwin) || foldmethodIsIndent(curwin))
3474 foldUpdateAll(curwin);
3475 }
3476
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003477 // 'foldcolumn'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003478 else if (pp == &curwin->w_p_fdc)
3479 {
3480 if (curwin->w_p_fdc < 0)
3481 {
3482 errmsg = e_positive;
3483 curwin->w_p_fdc = 0;
3484 }
3485 else if (curwin->w_p_fdc > 12)
3486 {
3487 errmsg = e_invarg;
3488 curwin->w_p_fdc = 12;
3489 }
3490 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003491#endif // FEAT_FOLDING
Bram Moolenaar071d4272004-06-13 20:20:40 +00003492
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01003493#if defined(FEAT_FOLDING) || defined(FEAT_CINDENT)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003494 // 'shiftwidth' or 'tabstop'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003495 else if (pp == &curbuf->b_p_sw || pp == &curbuf->b_p_ts)
3496 {
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01003497# ifdef FEAT_FOLDING
Bram Moolenaar071d4272004-06-13 20:20:40 +00003498 if (foldmethodIsIndent(curwin))
3499 foldUpdateAll(curwin);
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01003500# endif
3501# ifdef FEAT_CINDENT
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003502 // When 'shiftwidth' changes, or it's zero and 'tabstop' changes:
3503 // parse 'cinoptions'.
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01003504 if (pp == &curbuf->b_p_sw || curbuf->b_p_sw == 0)
3505 parse_cino(curbuf);
3506# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003507 }
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01003508#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003509
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003510 // 'maxcombine'
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003511 else if (pp == &p_mco)
3512 {
3513 if (p_mco > MAX_MCO)
3514 p_mco = MAX_MCO;
3515 else if (p_mco < 0)
3516 p_mco = 0;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003517 screenclear(); // will re-allocate the screen
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003518 }
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003519
Bram Moolenaar071d4272004-06-13 20:20:40 +00003520 else if (pp == &curbuf->b_p_iminsert)
3521 {
3522 if (curbuf->b_p_iminsert < 0 || curbuf->b_p_iminsert > B_IMODE_LAST)
3523 {
3524 errmsg = e_invarg;
3525 curbuf->b_p_iminsert = B_IMODE_NONE;
3526 }
3527 p_iminsert = curbuf->b_p_iminsert;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003528 if (termcap_active) // don't do this in the alternate screen
Bram Moolenaar071d4272004-06-13 20:20:40 +00003529 showmode();
Bram Moolenaar4033c552017-09-16 20:54:51 +02003530#if defined(FEAT_KEYMAP)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003531 // Show/unshow value of 'keymap' in status lines.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003532 status_redraw_curbuf();
3533#endif
3534 }
3535
Bram Moolenaar5c6dbcb2017-08-30 22:00:20 +02003536#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003537 // 'imstyle'
Bram Moolenaar5c6dbcb2017-08-30 22:00:20 +02003538 else if (pp == &p_imst)
3539 {
3540 if (p_imst != IM_ON_THE_SPOT && p_imst != IM_OVER_THE_SPOT)
3541 errmsg = e_invarg;
3542 }
3543#endif
3544
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003545 else if (pp == &p_window)
3546 {
3547 if (p_window < 1)
3548 p_window = 1;
3549 else if (p_window >= Rows)
3550 p_window = Rows - 1;
3551 }
3552
Bram Moolenaar071d4272004-06-13 20:20:40 +00003553 else if (pp == &curbuf->b_p_imsearch)
3554 {
3555 if (curbuf->b_p_imsearch < -1 || curbuf->b_p_imsearch > B_IMODE_LAST)
3556 {
3557 errmsg = e_invarg;
3558 curbuf->b_p_imsearch = B_IMODE_NONE;
3559 }
3560 p_imsearch = curbuf->b_p_imsearch;
3561 }
3562
3563#ifdef FEAT_TITLE
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003564 // if 'titlelen' has changed, redraw the title
Bram Moolenaar071d4272004-06-13 20:20:40 +00003565 else if (pp == &p_titlelen)
3566 {
3567 if (p_titlelen < 0)
3568 {
3569 errmsg = e_positive;
3570 p_titlelen = 85;
3571 }
3572 if (starting != NO_SCREEN && old_value != p_titlelen)
3573 need_maketitle = TRUE;
3574 }
3575#endif
3576
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003577 // if p_ch changed value, change the command line height
Bram Moolenaar071d4272004-06-13 20:20:40 +00003578 else if (pp == &p_ch)
3579 {
3580 if (p_ch < 1)
3581 {
3582 errmsg = e_positive;
3583 p_ch = 1;
3584 }
Bram Moolenaar719939c2007-09-25 12:51:28 +00003585 if (p_ch > Rows - min_rows() + 1)
3586 p_ch = Rows - min_rows() + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003587
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003588 // Only compute the new window layout when startup has been
3589 // completed. Otherwise the frame sizes may be wrong.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003590 if (p_ch != old_value && full_screen
3591#ifdef FEAT_GUI
3592 && !gui.starting
3593#endif
3594 )
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003595 command_height();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003596 }
3597
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003598 // when 'updatecount' changes from zero to non-zero, open swap files
Bram Moolenaar071d4272004-06-13 20:20:40 +00003599 else if (pp == &p_uc)
3600 {
3601 if (p_uc < 0)
3602 {
3603 errmsg = e_positive;
3604 p_uc = 100;
3605 }
3606 if (p_uc && !old_value)
3607 ml_open_files();
3608 }
Bram Moolenaar860cae12010-06-05 23:22:07 +02003609#ifdef FEAT_CONCEAL
Bram Moolenaarf5963f72010-07-23 22:10:27 +02003610 else if (pp == &curwin->w_p_cole)
Bram Moolenaar860cae12010-06-05 23:22:07 +02003611 {
Bram Moolenaarf5963f72010-07-23 22:10:27 +02003612 if (curwin->w_p_cole < 0)
Bram Moolenaar860cae12010-06-05 23:22:07 +02003613 {
3614 errmsg = e_positive;
Bram Moolenaarf5963f72010-07-23 22:10:27 +02003615 curwin->w_p_cole = 0;
Bram Moolenaar860cae12010-06-05 23:22:07 +02003616 }
Bram Moolenaarf5963f72010-07-23 22:10:27 +02003617 else if (curwin->w_p_cole > 3)
Bram Moolenaar860cae12010-06-05 23:22:07 +02003618 {
3619 errmsg = e_invarg;
Bram Moolenaarf5963f72010-07-23 22:10:27 +02003620 curwin->w_p_cole = 3;
Bram Moolenaar860cae12010-06-05 23:22:07 +02003621 }
3622 }
3623#endif
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00003624#ifdef MZSCHEME_GUI_THREADS
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003625 else if (pp == &p_mzq)
3626 mzvim_reset_timer();
3627#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003628
Bram Moolenaarf42dd3c2017-01-28 16:06:38 +01003629#if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003630 // 'pyxversion'
Bram Moolenaarf42dd3c2017-01-28 16:06:38 +01003631 else if (pp == &p_pyx)
3632 {
3633 if (p_pyx != 0 && p_pyx != 2 && p_pyx != 3)
3634 errmsg = e_invarg;
3635 }
3636#endif
3637
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003638 // sync undo before 'undolevels' changes
Bram Moolenaar071d4272004-06-13 20:20:40 +00003639 else if (pp == &p_ul)
3640 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003641 // use the old value, otherwise u_sync() may not work properly
Bram Moolenaar071d4272004-06-13 20:20:40 +00003642 p_ul = old_value;
Bram Moolenaar779b74b2006-04-10 14:55:34 +00003643 u_sync(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003644 p_ul = value;
3645 }
Bram Moolenaarf5a2fd82013-11-06 05:26:15 +01003646 else if (pp == &curbuf->b_p_ul)
3647 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003648 // use the old value, otherwise u_sync() may not work properly
Bram Moolenaarf5a2fd82013-11-06 05:26:15 +01003649 curbuf->b_p_ul = old_value;
3650 u_sync(TRUE);
3651 curbuf->b_p_ul = value;
3652 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003653
Bram Moolenaar592e0a22004-07-03 16:05:59 +00003654#ifdef FEAT_LINEBREAK
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003655 // 'numberwidth' must be positive
Bram Moolenaar592e0a22004-07-03 16:05:59 +00003656 else if (pp == &curwin->w_p_nuw)
3657 {
3658 if (curwin->w_p_nuw < 1)
3659 {
3660 errmsg = e_positive;
3661 curwin->w_p_nuw = 1;
3662 }
Bram Moolenaarf8a07122019-07-01 22:06:07 +02003663 if (curwin->w_p_nuw > 20)
Bram Moolenaar592e0a22004-07-03 16:05:59 +00003664 {
3665 errmsg = e_invarg;
Bram Moolenaarf8a07122019-07-01 22:06:07 +02003666 curwin->w_p_nuw = 20;
Bram Moolenaar592e0a22004-07-03 16:05:59 +00003667 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003668 curwin->w_nrwidth_line_count = 0; // trigger a redraw
Bram Moolenaar592e0a22004-07-03 16:05:59 +00003669 }
3670#endif
3671
Bram Moolenaar1a384422010-07-14 19:53:30 +02003672 else if (pp == &curbuf->b_p_tw)
3673 {
3674 if (curbuf->b_p_tw < 0)
3675 {
3676 errmsg = e_positive;
3677 curbuf->b_p_tw = 0;
3678 }
3679#ifdef FEAT_SYN_HL
Bram Moolenaar1a384422010-07-14 19:53:30 +02003680 {
3681 win_T *wp;
3682 tabpage_T *tp;
3683
3684 FOR_ALL_TAB_WINDOWS(tp, wp)
3685 check_colorcolumn(wp);
3686 }
Bram Moolenaar1a384422010-07-14 19:53:30 +02003687#endif
3688 }
3689
Bram Moolenaar071d4272004-06-13 20:20:40 +00003690 /*
3691 * Check the bounds for numeric options here
3692 */
3693 if (Rows < min_rows() && full_screen)
3694 {
3695 if (errbuf != NULL)
3696 {
Bram Moolenaar555b2802005-05-19 21:08:39 +00003697 vim_snprintf((char *)errbuf, errbuflen,
3698 _("E593: Need at least %d lines"), min_rows());
Bram Moolenaar071d4272004-06-13 20:20:40 +00003699 errmsg = errbuf;
3700 }
3701 Rows = min_rows();
3702 }
3703 if (Columns < MIN_COLUMNS && full_screen)
3704 {
3705 if (errbuf != NULL)
3706 {
Bram Moolenaar555b2802005-05-19 21:08:39 +00003707 vim_snprintf((char *)errbuf, errbuflen,
3708 _("E594: Need at least %d columns"), MIN_COLUMNS);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003709 errmsg = errbuf;
3710 }
3711 Columns = MIN_COLUMNS;
3712 }
Bram Moolenaare057d402013-06-30 17:51:51 +02003713 limit_screen_size();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003714
Bram Moolenaar071d4272004-06-13 20:20:40 +00003715 /*
3716 * If the screen (shell) height has been changed, assume it is the
3717 * physical screenheight.
3718 */
3719 if (old_Rows != Rows || old_Columns != Columns)
3720 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003721 // Changing the screen size is not allowed while updating the screen.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003722 if (updating_screen)
3723 *pp = old_value;
3724 else if (full_screen
3725#ifdef FEAT_GUI
3726 && !gui.starting
3727#endif
3728 )
3729 set_shellsize((int)Columns, (int)Rows, TRUE);
3730 else
3731 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003732 // Postpone the resizing; check the size and cmdline position for
3733 // messages.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003734 check_shellsize();
3735 if (cmdline_row > Rows - p_ch && Rows > p_ch)
3736 cmdline_row = Rows - p_ch;
3737 }
Bram Moolenaard68071d2006-05-02 22:08:30 +00003738 if (p_window >= Rows || !option_was_set((char_u *)"window"))
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003739 p_window = Rows - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003740 }
3741
Bram Moolenaar071d4272004-06-13 20:20:40 +00003742 if (curbuf->b_p_ts <= 0)
3743 {
3744 errmsg = e_positive;
3745 curbuf->b_p_ts = 8;
3746 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003747 if (p_tm < 0)
3748 {
3749 errmsg = e_positive;
3750 p_tm = 0;
3751 }
3752 if ((curwin->w_p_scr <= 0
3753 || (curwin->w_p_scr > curwin->w_height
3754 && curwin->w_height > 0))
3755 && full_screen)
3756 {
3757 if (pp == &(curwin->w_p_scr))
3758 {
3759 if (curwin->w_p_scr != 0)
Bram Moolenaard8e44472021-07-21 22:20:33 +02003760 errmsg = e_invalid_scroll_size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003761 win_comp_scroll(curwin);
3762 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003763 // If 'scroll' became invalid because of a side effect silently adjust
3764 // it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003765 else if (curwin->w_p_scr <= 0)
3766 curwin->w_p_scr = 1;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003767 else // curwin->w_p_scr > curwin->w_height
Bram Moolenaar071d4272004-06-13 20:20:40 +00003768 curwin->w_p_scr = curwin->w_height;
3769 }
Bram Moolenaar991e10f2008-10-02 20:48:41 +00003770 if (p_hi < 0)
3771 {
3772 errmsg = e_positive;
3773 p_hi = 0;
3774 }
Bram Moolenaar78159bb2014-06-25 11:48:54 +02003775 else if (p_hi > 10000)
3776 {
3777 errmsg = e_invarg;
3778 p_hi = 10000;
3779 }
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02003780 if (p_re < 0 || p_re > 2)
3781 {
3782 errmsg = e_invarg;
3783 p_re = 0;
3784 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003785 if (p_report < 0)
3786 {
3787 errmsg = e_positive;
3788 p_report = 1;
3789 }
Bram Moolenaar1e015462005-09-25 22:16:38 +00003790 if ((p_sj < -100 || p_sj >= Rows) && full_screen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003791 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003792 if (Rows != old_Rows) // Rows changed, just adjust p_sj
Bram Moolenaar071d4272004-06-13 20:20:40 +00003793 p_sj = Rows / 2;
3794 else
3795 {
Bram Moolenaard8e44472021-07-21 22:20:33 +02003796 errmsg = e_invalid_scroll_size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003797 p_sj = 1;
3798 }
3799 }
3800 if (p_so < 0 && full_screen)
3801 {
Bram Moolenaar375e3392019-01-31 18:26:10 +01003802 errmsg = e_positive;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003803 p_so = 0;
3804 }
3805 if (p_siso < 0 && full_screen)
3806 {
3807 errmsg = e_positive;
3808 p_siso = 0;
3809 }
3810#ifdef FEAT_CMDWIN
3811 if (p_cwh < 1)
3812 {
3813 errmsg = e_positive;
3814 p_cwh = 1;
3815 }
3816#endif
3817 if (p_ut < 0)
3818 {
3819 errmsg = e_positive;
3820 p_ut = 2000;
3821 }
3822 if (p_ss < 0)
3823 {
3824 errmsg = e_positive;
3825 p_ss = 0;
3826 }
3827
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003828 // May set global value for local option.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003829 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0)
3830 *(long *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) = *pp;
3831
3832 options[opt_idx].flags |= P_WAS_SET;
3833
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003834#if defined(FEAT_EVAL)
Bram Moolenaarf4140482020-02-15 23:06:45 +01003835 apply_optionset_autocmd(opt_idx, opt_flags, old_value, old_global_value,
3836 value, errmsg);
Bram Moolenaar53744302015-07-17 17:38:22 +02003837#endif
3838
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003839 comp_col(); // in case 'columns' or 'ls' changed
Bram Moolenaar913077c2012-03-28 19:59:04 +02003840 if (curwin->w_curswant != MAXCOL
Bram Moolenaar488eb262015-03-13 11:23:50 +01003841 && (options[opt_idx].flags & (P_CURSWANT | P_RALL)) != 0)
Bram Moolenaar913077c2012-03-28 19:59:04 +02003842 curwin->w_set_curswant = TRUE;
Bram Moolenaar37294bd2021-03-10 13:40:08 +01003843 if ((opt_flags & OPT_NO_REDRAW) == 0)
3844 check_redraw(options[opt_idx].flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003845
3846 return errmsg;
3847}
3848
3849/*
3850 * Called after an option changed: check if something needs to be redrawn.
3851 */
Bram Moolenaardac13472019-09-16 21:06:21 +02003852 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003853check_redraw(long_u flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003854{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003855 // Careful: P_RCLR and P_RALL are a combination of other P_ flags
Bram Moolenaar70b2a562012-01-10 22:26:17 +01003856 int doclear = (flags & P_RCLR) == P_RCLR;
3857 int all = ((flags & P_RALL) == P_RALL || doclear);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003858
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003859 if ((flags & P_RSTAT) || all) // mark all status lines dirty
Bram Moolenaar071d4272004-06-13 20:20:40 +00003860 status_redraw_all();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003861
3862 if ((flags & P_RBUF) || (flags & P_RWIN) || all)
3863 changed_window_setting();
3864 if (flags & P_RBUF)
3865 redraw_curbuf_later(NOT_VALID);
Bram Moolenaara2477fd2016-12-03 15:13:20 +01003866 if (flags & P_RWINONLY)
3867 redraw_later(NOT_VALID);
Bram Moolenaar70b2a562012-01-10 22:26:17 +01003868 if (doclear)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003869 redraw_all_later(CLEAR);
3870 else if (all)
3871 redraw_all_later(NOT_VALID);
3872}
3873
3874/*
3875 * Find index for option 'arg'.
3876 * Return -1 if not found.
3877 */
Bram Moolenaardac13472019-09-16 21:06:21 +02003878 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003879findoption(char_u *arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003880{
3881 int opt_idx;
3882 char *s, *p;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003883 static short quick_tab[27] = {0, 0}; // quick access table
Bram Moolenaar071d4272004-06-13 20:20:40 +00003884 int is_term_opt;
3885
3886 /*
3887 * For first call: Initialize the quick-access table.
3888 * It contains the index for the first option that starts with a certain
3889 * letter. There are 26 letters, plus the first "t_" option.
3890 */
3891 if (quick_tab[1] == 0)
3892 {
3893 p = options[0].fullname;
3894 for (opt_idx = 1; (s = options[opt_idx].fullname) != NULL; opt_idx++)
3895 {
3896 if (s[0] != p[0])
3897 {
3898 if (s[0] == 't' && s[1] == '_')
3899 quick_tab[26] = opt_idx;
3900 else
3901 quick_tab[CharOrdLow(s[0])] = opt_idx;
3902 }
3903 p = s;
3904 }
3905 }
3906
3907 /*
3908 * Check for name starting with an illegal character.
3909 */
3910#ifdef EBCDIC
3911 if (!islower(arg[0]))
3912#else
3913 if (arg[0] < 'a' || arg[0] > 'z')
3914#endif
3915 return -1;
3916
3917 is_term_opt = (arg[0] == 't' && arg[1] == '_');
3918 if (is_term_opt)
3919 opt_idx = quick_tab[26];
3920 else
3921 opt_idx = quick_tab[CharOrdLow(arg[0])];
3922 for ( ; (s = options[opt_idx].fullname) != NULL; opt_idx++)
3923 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003924 if (STRCMP(arg, s) == 0) // match full name
Bram Moolenaar071d4272004-06-13 20:20:40 +00003925 break;
3926 }
3927 if (s == NULL && !is_term_opt)
3928 {
3929 opt_idx = quick_tab[CharOrdLow(arg[0])];
3930 for ( ; options[opt_idx].fullname != NULL; opt_idx++)
3931 {
3932 s = options[opt_idx].shortname;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003933 if (s != NULL && STRCMP(arg, s) == 0) // match short name
Bram Moolenaar071d4272004-06-13 20:20:40 +00003934 break;
3935 s = NULL;
3936 }
3937 }
3938 if (s == NULL)
3939 opt_idx = -1;
3940 return opt_idx;
3941}
3942
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003943#if defined(FEAT_EVAL) || defined(FEAT_TCL) || defined(FEAT_MZSCHEME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003944/*
3945 * Get the value for an option.
3946 *
3947 * Returns:
Bram Moolenaardd1f4262020-12-31 17:41:01 +01003948 * Number option: gov_number, *numval gets value.
Bram Moolenaara7251492021-01-02 16:53:13 +01003949 * Toggle option: gov_bool, *numval gets value.
Bram Moolenaardd1f4262020-12-31 17:41:01 +01003950 * String option: gov_string, *stringval gets allocated string.
3951 * Hidden Number option: gov_hidden_number.
3952 * Hidden Toggle option: gov_hidden_bool.
3953 * Hidden String option: gov_hidden_string.
3954 * Unknown option: gov_unknown.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003955 */
Bram Moolenaardd1f4262020-12-31 17:41:01 +01003956 getoption_T
Bram Moolenaar9b578142016-01-30 19:39:49 +01003957get_option_value(
3958 char_u *name,
3959 long *numval,
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003960 char_u **stringval, // NULL when only checking existence
Bram Moolenaar9b578142016-01-30 19:39:49 +01003961 int opt_flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003962{
3963 int opt_idx;
3964 char_u *varp;
3965
3966 opt_idx = findoption(name);
Bram Moolenaardd1f4262020-12-31 17:41:01 +01003967 if (opt_idx < 0) // option not in the table
Bram Moolenaare353c402017-02-04 19:49:16 +01003968 {
3969 int key;
3970
3971 if (STRLEN(name) == 4 && name[0] == 't' && name[1] == '_'
Bram Moolenaardd1f4262020-12-31 17:41:01 +01003972 && (key = find_key_option(name, FALSE)) != 0)
Bram Moolenaare353c402017-02-04 19:49:16 +01003973 {
3974 char_u key_name[2];
3975 char_u *p;
3976
Bram Moolenaardd1f4262020-12-31 17:41:01 +01003977 // check for a terminal option
Bram Moolenaare353c402017-02-04 19:49:16 +01003978 if (key < 0)
3979 {
3980 key_name[0] = KEY2TERMCAP0(key);
3981 key_name[1] = KEY2TERMCAP1(key);
3982 }
3983 else
3984 {
3985 key_name[0] = KS_KEY;
3986 key_name[1] = (key & 0xff);
3987 }
3988 p = find_termcode(key_name);
3989 if (p != NULL)
3990 {
3991 if (stringval != NULL)
3992 *stringval = vim_strsave(p);
Bram Moolenaardd1f4262020-12-31 17:41:01 +01003993 return gov_string;
Bram Moolenaare353c402017-02-04 19:49:16 +01003994 }
3995 }
Bram Moolenaardd1f4262020-12-31 17:41:01 +01003996 return gov_unknown;
Bram Moolenaare353c402017-02-04 19:49:16 +01003997 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003998
3999 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
4000
4001 if (options[opt_idx].flags & P_STRING)
4002 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004003 if (varp == NULL) // hidden option
Bram Moolenaardd1f4262020-12-31 17:41:01 +01004004 return gov_hidden_string;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004005 if (stringval != NULL)
4006 {
4007#ifdef FEAT_CRYPT
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004008 // never return the value of the crypt key
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +00004009 if ((char_u **)varp == &curbuf->b_p_key
4010 && **(char_u **)(varp) != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004011 *stringval = vim_strsave((char_u *)"*****");
4012 else
4013#endif
4014 *stringval = vim_strsave(*(char_u **)(varp));
4015 }
Bram Moolenaardd1f4262020-12-31 17:41:01 +01004016 return gov_string;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004017 }
4018
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004019 if (varp == NULL) // hidden option
Bram Moolenaardd1f4262020-12-31 17:41:01 +01004020 return (options[opt_idx].flags & P_NUM)
4021 ? gov_hidden_number : gov_hidden_bool;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004022 if (options[opt_idx].flags & P_NUM)
4023 *numval = *(long *)varp;
4024 else
4025 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004026 // Special case: 'modified' is b_changed, but we also want to consider
4027 // it set when 'ff' or 'fenc' changed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004028 if ((int *)varp == &curbuf->b_changed)
4029 *numval = curbufIsChanged();
4030 else
Bram Moolenaar2acfbed2016-07-01 23:14:02 +02004031 *numval = (long) *(int *)varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004032 }
Bram Moolenaardd1f4262020-12-31 17:41:01 +01004033 return (options[opt_idx].flags & P_NUM) ? gov_number : gov_bool;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004034}
4035#endif
4036
Bram Moolenaar1028f4d2014-01-14 16:55:00 +01004037#if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) || defined(PROTO)
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02004038/*
4039 * Returns the option attributes and its value. Unlike the above function it
4040 * will return either global value or local value of the option depending on
4041 * what was requested, but it will never return global value if it was
4042 * requested to return local one and vice versa. Neither it will return
4043 * buffer-local value if it was requested to return window-local one.
4044 *
4045 * Pretends that option is absent if it is not present in the requested scope
4046 * (i.e. has no global, window-local or buffer-local value depending on
4047 * opt_type). Uses
4048 *
4049 * Returned flags:
Bram Moolenaar75a8d742014-05-07 15:10:21 +02004050 * 0 hidden or unknown option, also option that does not have requested
4051 * type (see SREQ_* in vim.h)
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02004052 * see SOPT_* in vim.h for other flags
4053 *
4054 * Possible opt_type values: see SREQ_* in vim.h
4055 */
4056 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004057get_option_value_strict(
4058 char_u *name,
4059 long *numval,
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004060 char_u **stringval, // NULL when only obtaining attributes
Bram Moolenaar9b578142016-01-30 19:39:49 +01004061 int opt_type,
4062 void *from)
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02004063{
4064 int opt_idx;
Bram Moolenaar68001862013-05-11 13:45:05 +02004065 char_u *varp = NULL;
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02004066 struct vimoption *p;
4067 int r = 0;
4068
4069 opt_idx = findoption(name);
4070 if (opt_idx < 0)
4071 return 0;
4072
4073 p = &(options[opt_idx]);
4074
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004075 // Hidden option
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02004076 if (p->var == NULL)
4077 return 0;
4078
4079 if (p->flags & P_BOOL)
4080 r |= SOPT_BOOL;
4081 else if (p->flags & P_NUM)
4082 r |= SOPT_NUM;
4083 else if (p->flags & P_STRING)
4084 r |= SOPT_STRING;
4085
4086 if (p->indir == PV_NONE)
4087 {
4088 if (opt_type == SREQ_GLOBAL)
4089 r |= SOPT_GLOBAL;
4090 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004091 return 0; // Did not request global-only option
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02004092 }
4093 else
4094 {
4095 if (p->indir & PV_BOTH)
4096 r |= SOPT_GLOBAL;
4097 else if (opt_type == SREQ_GLOBAL)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004098 return 0; // Requested global option
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02004099
4100 if (p->indir & PV_WIN)
4101 {
4102 if (opt_type == SREQ_BUF)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004103 return 0; // Did not request window-local option
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02004104 else
4105 r |= SOPT_WIN;
4106 }
4107 else if (p->indir & PV_BUF)
4108 {
4109 if (opt_type == SREQ_WIN)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004110 return 0; // Did not request buffer-local option
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02004111 else
4112 r |= SOPT_BUF;
4113 }
4114 }
4115
4116 if (stringval == NULL)
4117 return r;
4118
4119 if (opt_type == SREQ_GLOBAL)
4120 varp = p->var;
4121 else
4122 {
4123 if (opt_type == SREQ_BUF)
4124 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004125 // Special case: 'modified' is b_changed, but we also want to
4126 // consider it set when 'ff' or 'fenc' changed.
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02004127 if (p->indir == PV_MOD)
4128 {
Bram Moolenaardefe6422018-06-24 15:14:07 +02004129 *numval = bufIsChanged((buf_T *)from);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02004130 varp = NULL;
4131 }
4132#ifdef FEAT_CRYPT
4133 else if (p->indir == PV_KEY)
4134 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004135 // never return the value of the crypt key
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02004136 *stringval = NULL;
4137 varp = NULL;
4138 }
4139#endif
4140 else
4141 {
Bram Moolenaardefe6422018-06-24 15:14:07 +02004142 buf_T *save_curbuf = curbuf;
4143
4144 // only getting a pointer, no need to use aucmd_prepbuf()
4145 curbuf = (buf_T *)from;
4146 curwin->w_buffer = curbuf;
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02004147 varp = get_varp(p);
Bram Moolenaardefe6422018-06-24 15:14:07 +02004148 curbuf = save_curbuf;
4149 curwin->w_buffer = curbuf;
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02004150 }
4151 }
4152 else if (opt_type == SREQ_WIN)
4153 {
Bram Moolenaardefe6422018-06-24 15:14:07 +02004154 win_T *save_curwin = curwin;
4155
4156 curwin = (win_T *)from;
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02004157 curbuf = curwin->w_buffer;
4158 varp = get_varp(p);
4159 curwin = save_curwin;
4160 curbuf = curwin->w_buffer;
4161 }
4162 if (varp == p->var)
4163 return (r | SOPT_UNSET);
4164 }
4165
4166 if (varp != NULL)
4167 {
4168 if (p->flags & P_STRING)
4169 *stringval = vim_strsave(*(char_u **)(varp));
4170 else if (p->flags & P_NUM)
4171 *numval = *(long *) varp;
4172 else
4173 *numval = *(int *)varp;
4174 }
4175
4176 return r;
4177}
Bram Moolenaar1028f4d2014-01-14 16:55:00 +01004178
4179/*
Bram Moolenaarb8ee25a2014-09-23 15:45:08 +02004180 * Iterate over options. First argument is a pointer to a pointer to a
4181 * structure inside options[] array, second is option type like in the above
4182 * function.
Bram Moolenaar1028f4d2014-01-14 16:55:00 +01004183 *
Bram Moolenaarb8ee25a2014-09-23 15:45:08 +02004184 * If first argument points to NULL it is assumed that iteration just started
Bram Moolenaar1028f4d2014-01-14 16:55:00 +01004185 * and caller needs the very first value.
Bram Moolenaarb8ee25a2014-09-23 15:45:08 +02004186 * If first argument points to the end marker function returns NULL and sets
Bram Moolenaar1028f4d2014-01-14 16:55:00 +01004187 * first argument to NULL.
4188 *
4189 * Returns full option name for current option on each call.
4190 */
4191 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01004192option_iter_next(void **option, int opt_type)
Bram Moolenaar1028f4d2014-01-14 16:55:00 +01004193{
4194 struct vimoption *ret = NULL;
4195 do
4196 {
4197 if (*option == NULL)
4198 *option = (void *) options;
4199 else if (((struct vimoption *) (*option))->fullname == NULL)
4200 {
4201 *option = NULL;
4202 return NULL;
4203 }
4204 else
4205 *option = (void *) (((struct vimoption *) (*option)) + 1);
4206
4207 ret = ((struct vimoption *) (*option));
4208
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004209 // Hidden option
Bram Moolenaar1028f4d2014-01-14 16:55:00 +01004210 if (ret->var == NULL)
4211 {
4212 ret = NULL;
4213 continue;
4214 }
4215
4216 switch (opt_type)
4217 {
4218 case SREQ_GLOBAL:
4219 if (!(ret->indir == PV_NONE || ret->indir & PV_BOTH))
4220 ret = NULL;
4221 break;
4222 case SREQ_BUF:
4223 if (!(ret->indir & PV_BUF))
4224 ret = NULL;
4225 break;
4226 case SREQ_WIN:
4227 if (!(ret->indir & PV_WIN))
4228 ret = NULL;
4229 break;
4230 default:
Bram Moolenaar95f09602016-11-10 20:01:45 +01004231 internal_error("option_iter_next()");
Bram Moolenaar1028f4d2014-01-14 16:55:00 +01004232 return NULL;
4233 }
4234 }
4235 while (ret == NULL);
4236
4237 return (char_u *)ret->fullname;
4238}
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02004239#endif
4240
Bram Moolenaar071d4272004-06-13 20:20:40 +00004241/*
Bram Moolenaardac13472019-09-16 21:06:21 +02004242 * Return the flags for the option at 'opt_idx'.
4243 */
4244 long_u
4245get_option_flags(int opt_idx)
4246{
4247 return options[opt_idx].flags;
4248}
4249
4250/*
4251 * Set a flag for the option at 'opt_idx'.
4252 */
4253 void
4254set_option_flag(int opt_idx, long_u flag)
4255{
4256 options[opt_idx].flags |= flag;
4257}
4258
4259/*
4260 * Clear a flag for the option at 'opt_idx'.
4261 */
4262 void
4263clear_option_flag(int opt_idx, long_u flag)
4264{
4265 options[opt_idx].flags &= ~flag;
4266}
4267
4268/*
4269 * Returns TRUE if the option at 'opt_idx' is a global option
4270 */
4271 int
4272is_global_option(int opt_idx)
4273{
4274 return options[opt_idx].indir == PV_NONE;
4275}
4276
4277/*
4278 * Returns TRUE if the option at 'opt_idx' is a global option which also has a
4279 * local value.
4280 */
4281 int
4282is_global_local_option(int opt_idx)
4283{
4284 return options[opt_idx].indir & PV_BOTH;
4285}
4286
4287/*
4288 * Returns TRUE if the option at 'opt_idx' is a window-local option
4289 */
4290 int
4291is_window_local_option(int opt_idx)
4292{
4293 return options[opt_idx].var == VAR_WIN;
4294}
4295
4296/*
4297 * Returns TRUE if the option at 'opt_idx' is a hidden option
4298 */
4299 int
4300is_hidden_option(int opt_idx)
4301{
4302 return options[opt_idx].var == NULL;
4303}
4304
4305#if defined(FEAT_CRYPT) || defined(PROTO)
4306/*
4307 * Returns TRUE if the option at 'opt_idx' is a crypt key option
4308 */
4309 int
4310is_crypt_key_option(int opt_idx)
4311{
4312 return options[opt_idx].indir == PV_KEY;
4313}
4314#endif
4315
4316/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004317 * Set the value of option "name".
4318 * Use "string" for string options, use "number" for other options.
Bram Moolenaarc96ebe72013-05-21 22:38:18 +02004319 *
4320 * Returns NULL on success or error message on error.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004321 */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004322 char *
Bram Moolenaar9b578142016-01-30 19:39:49 +01004323set_option_value(
4324 char_u *name,
4325 long number,
4326 char_u *string,
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004327 int opt_flags) // OPT_LOCAL or 0 (both)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004328{
4329 int opt_idx;
4330 char_u *varp;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004331 long_u flags;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004332
4333 opt_idx = findoption(name);
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00004334 if (opt_idx < 0)
Bram Moolenaare353c402017-02-04 19:49:16 +01004335 {
4336 int key;
4337
4338 if (STRLEN(name) == 4 && name[0] == 't' && name[1] == '_'
Bram Moolenaar9cf4b502018-07-23 04:12:03 +02004339 && (key = find_key_option(name, FALSE)) != 0)
Bram Moolenaare353c402017-02-04 19:49:16 +01004340 {
4341 char_u key_name[2];
4342
4343 if (key < 0)
4344 {
4345 key_name[0] = KEY2TERMCAP0(key);
4346 key_name[1] = KEY2TERMCAP1(key);
4347 }
4348 else
4349 {
4350 key_name[0] = KS_KEY;
4351 key_name[1] = (key & 0xff);
4352 }
4353 add_termcode(key_name, string, FALSE);
4354 if (full_screen)
4355 ttest(FALSE);
4356 redraw_all_later(CLEAR);
4357 return NULL;
4358 }
4359
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004360 semsg(_("E355: Unknown option: %s"), name);
Bram Moolenaare353c402017-02-04 19:49:16 +01004361 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004362 else
4363 {
4364 flags = options[opt_idx].flags;
4365#ifdef HAVE_SANDBOX
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004366 // Disallow changing some options in the sandbox
Bram Moolenaar071d4272004-06-13 20:20:40 +00004367 if (sandbox > 0 && (flags & P_SECURE))
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00004368 {
Bram Moolenaard8e44472021-07-21 22:20:33 +02004369 emsg(_(e_not_allowed_in_sandbox));
Bram Moolenaarc96ebe72013-05-21 22:38:18 +02004370 return NULL;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00004371 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004372#endif
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00004373 if (flags & P_STRING)
Bram Moolenaarc96ebe72013-05-21 22:38:18 +02004374 return set_string_option(opt_idx, string, opt_flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004375 else
4376 {
Bram Moolenaarb3163762008-07-08 15:15:08 +00004377 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004378 if (varp != NULL) // hidden option is not changed
Bram Moolenaar071d4272004-06-13 20:20:40 +00004379 {
Bram Moolenaar96bb6212007-06-19 18:52:53 +00004380 if (number == 0 && string != NULL)
4381 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004382 int idx;
Bram Moolenaar96bb6212007-06-19 18:52:53 +00004383
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004384 // Either we are given a string or we are setting option
4385 // to zero.
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004386 for (idx = 0; string[idx] == '0'; ++idx)
Bram Moolenaar96bb6212007-06-19 18:52:53 +00004387 ;
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004388 if (string[idx] != NUL || idx == 0)
Bram Moolenaar96bb6212007-06-19 18:52:53 +00004389 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004390 // There's another character after zeros or the string
4391 // is empty. In both cases, we are trying to set a
4392 // num option using a string.
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004393 semsg(_("E521: Number required: &%s = '%s'"),
Bram Moolenaar96bb6212007-06-19 18:52:53 +00004394 name, string);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004395 return NULL; // do nothing as we hit an error
Bram Moolenaar96bb6212007-06-19 18:52:53 +00004396
4397 }
4398 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004399 if (flags & P_NUM)
Bram Moolenaarc96ebe72013-05-21 22:38:18 +02004400 return set_num_option(opt_idx, varp, number,
Bram Moolenaar555b2802005-05-19 21:08:39 +00004401 NULL, 0, opt_flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004402 else
Bram Moolenaarc96ebe72013-05-21 22:38:18 +02004403 return set_bool_option(opt_idx, varp, (int)number,
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00004404 opt_flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004405 }
4406 }
4407 }
Bram Moolenaarc96ebe72013-05-21 22:38:18 +02004408 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004409}
4410
4411/*
4412 * Get the terminal code for a terminal option.
4413 * Returns NULL when not found.
4414 */
4415 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01004416get_term_code(char_u *tname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004417{
4418 int opt_idx;
4419 char_u *varp;
4420
4421 if (tname[0] != 't' || tname[1] != '_' ||
4422 tname[2] == NUL || tname[3] == NUL)
4423 return NULL;
4424 if ((opt_idx = findoption(tname)) >= 0)
4425 {
4426 varp = get_varp(&(options[opt_idx]));
4427 if (varp != NULL)
4428 varp = *(char_u **)(varp);
4429 return varp;
4430 }
4431 return find_termcode(tname + 2);
4432}
4433
4434 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01004435get_highlight_default(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004436{
4437 int i;
4438
4439 i = findoption((char_u *)"hl");
4440 if (i >= 0)
4441 return options[i].def_val[VI_DEFAULT];
4442 return (char_u *)NULL;
4443}
4444
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004445 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01004446get_encoding_default(void)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004447{
4448 int i;
4449
4450 i = findoption((char_u *)"enc");
4451 if (i >= 0)
4452 return options[i].def_val[VI_DEFAULT];
4453 return (char_u *)NULL;
4454}
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004455
Bram Moolenaar071d4272004-06-13 20:20:40 +00004456/*
4457 * Translate a string like "t_xx", "<t_xx>" or "<S-Tab>" to a key number.
Bram Moolenaar9cf4b502018-07-23 04:12:03 +02004458 * When "has_lt" is true there is a '<' before "*arg_arg".
4459 * Returns 0 when the key is not recognized.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004460 */
4461 static int
Bram Moolenaar9cf4b502018-07-23 04:12:03 +02004462find_key_option(char_u *arg_arg, int has_lt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004463{
Bram Moolenaar9cf4b502018-07-23 04:12:03 +02004464 int key = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004465 int modifiers;
Bram Moolenaar9cf4b502018-07-23 04:12:03 +02004466 char_u *arg = arg_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004467
4468 /*
4469 * Don't use get_special_key_code() for t_xx, we don't want it to call
4470 * add_termcap_entry().
4471 */
4472 if (arg[0] == 't' && arg[1] == '_' && arg[2] && arg[3])
4473 key = TERMCAP2KEY(arg[2], arg[3]);
Bram Moolenaar9cf4b502018-07-23 04:12:03 +02004474 else if (has_lt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004475 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004476 --arg; // put arg at the '<'
Bram Moolenaar071d4272004-06-13 20:20:40 +00004477 modifiers = 0;
Bram Moolenaarebe9d342020-05-30 21:52:54 +02004478 key = find_special_key(&arg, &modifiers,
4479 FSK_KEYCODE | FSK_KEEP_X_KEY | FSK_SIMPLIFY, NULL);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004480 if (modifiers) // can't handle modifiers here
Bram Moolenaar071d4272004-06-13 20:20:40 +00004481 key = 0;
4482 }
4483 return key;
4484}
4485
4486/*
4487 * if 'all' == 0: show changed options
4488 * if 'all' == 1: show all normal options
4489 * if 'all' == 2: show all terminal options
4490 */
4491 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004492showoptions(
4493 int all,
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004494 int opt_flags) // OPT_LOCAL and/or OPT_GLOBAL
Bram Moolenaar071d4272004-06-13 20:20:40 +00004495{
4496 struct vimoption *p;
4497 int col;
4498 int isterm;
4499 char_u *varp;
4500 struct vimoption **items;
4501 int item_count;
4502 int run;
4503 int row, rows;
4504 int cols;
4505 int i;
4506 int len;
4507
4508#define INC 20
4509#define GAP 3
4510
Bram Moolenaar6b915c02020-01-18 15:53:19 +01004511 items = ALLOC_MULT(struct vimoption *, OPTION_COUNT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004512 if (items == NULL)
4513 return;
4514
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004515 // Highlight title
Bram Moolenaar071d4272004-06-13 20:20:40 +00004516 if (all == 2)
Bram Moolenaar32526b32019-01-19 17:43:09 +01004517 msg_puts_title(_("\n--- Terminal codes ---"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004518 else if (opt_flags & OPT_GLOBAL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01004519 msg_puts_title(_("\n--- Global option values ---"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004520 else if (opt_flags & OPT_LOCAL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01004521 msg_puts_title(_("\n--- Local option values ---"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004522 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01004523 msg_puts_title(_("\n--- Options ---"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004524
4525 /*
Bram Moolenaar6b915c02020-01-18 15:53:19 +01004526 * Do the loop two times:
Bram Moolenaar071d4272004-06-13 20:20:40 +00004527 * 1. display the short items
4528 * 2. display the long items (only strings and numbers)
Bram Moolenaar6b915c02020-01-18 15:53:19 +01004529 * When "opt_flags" has OPT_ONECOLUMN do everything in run 2.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004530 */
4531 for (run = 1; run <= 2 && !got_int; ++run)
4532 {
4533 /*
4534 * collect the items in items[]
4535 */
4536 item_count = 0;
4537 for (p = &options[0]; p->fullname != NULL; p++)
4538 {
Bram Moolenaarf86db782018-10-25 13:31:37 +02004539 // apply :filter /pat/
Bram Moolenaar6b915c02020-01-18 15:53:19 +01004540 if (message_filtered((char_u *)p->fullname))
Bram Moolenaarf86db782018-10-25 13:31:37 +02004541 continue;
4542
Bram Moolenaar071d4272004-06-13 20:20:40 +00004543 varp = NULL;
4544 isterm = istermoption(p);
Bram Moolenaar6b915c02020-01-18 15:53:19 +01004545 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004546 {
4547 if (p->indir != PV_NONE && !isterm)
4548 varp = get_varp_scope(p, opt_flags);
4549 }
4550 else
4551 varp = get_varp(p);
4552 if (varp != NULL
4553 && ((all == 2 && isterm)
4554 || (all == 1 && !isterm)
Bram Moolenaarcacc6a52019-05-30 15:22:43 +02004555 || (all == 0 && !optval_default(p, varp, p_cp))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004556 {
Bram Moolenaar6b915c02020-01-18 15:53:19 +01004557 if (opt_flags & OPT_ONECOLUMN)
4558 len = Columns;
4559 else if (p->flags & P_BOOL)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004560 len = 1; // a toggle option fits always
Bram Moolenaar071d4272004-06-13 20:20:40 +00004561 else
4562 {
4563 option_value2string(p, opt_flags);
4564 len = (int)STRLEN(p->fullname) + vim_strsize(NameBuff) + 1;
4565 }
4566 if ((len <= INC - GAP && run == 1) ||
4567 (len > INC - GAP && run == 2))
4568 items[item_count++] = p;
4569 }
4570 }
4571
4572 /*
4573 * display the items
4574 */
4575 if (run == 1)
4576 {
4577 cols = (Columns + GAP - 3) / INC;
4578 if (cols == 0)
4579 cols = 1;
4580 rows = (item_count + cols - 1) / cols;
4581 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004582 else // run == 2
Bram Moolenaar071d4272004-06-13 20:20:40 +00004583 rows = item_count;
4584 for (row = 0; row < rows && !got_int; ++row)
4585 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004586 msg_putchar('\n'); // go to next line
4587 if (got_int) // 'q' typed in more
Bram Moolenaar071d4272004-06-13 20:20:40 +00004588 break;
4589 col = 0;
4590 for (i = row; i < item_count; i += rows)
4591 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004592 msg_col = col; // make columns
Bram Moolenaar071d4272004-06-13 20:20:40 +00004593 showoneopt(items[i], opt_flags);
4594 col += INC;
4595 }
4596 out_flush();
4597 ui_breakcheck();
4598 }
4599 }
4600 vim_free(items);
4601}
4602
4603/*
4604 * Return TRUE if option "p" has its default value.
4605 */
4606 static int
Bram Moolenaarcacc6a52019-05-30 15:22:43 +02004607optval_default(struct vimoption *p, char_u *varp, int compatible)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004608{
4609 int dvi;
4610
4611 if (varp == NULL)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004612 return TRUE; // hidden option is always at default
Bram Moolenaarcacc6a52019-05-30 15:22:43 +02004613 dvi = ((p->flags & P_VI_DEF) || compatible) ? VI_DEFAULT : VIM_DEFAULT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004614 if (p->flags & P_NUM)
Bram Moolenaareb3593b2006-04-22 22:33:57 +00004615 return (*(long *)varp == (long)(long_i)p->def_val[dvi]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004616 if (p->flags & P_BOOL)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004617 // the cast to long is required for Manx C, long_i is
4618 // needed for MSVC
Bram Moolenaareb3593b2006-04-22 22:33:57 +00004619 return (*(int *)varp == (int)(long)(long_i)p->def_val[dvi]);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004620 // P_STRING
Bram Moolenaar071d4272004-06-13 20:20:40 +00004621 return (STRCMP(*(char_u **)varp, p->def_val[dvi]) == 0);
4622}
4623
4624/*
4625 * showoneopt: show the value of one option
4626 * must not be called with a hidden option!
4627 */
4628 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004629showoneopt(
4630 struct vimoption *p,
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004631 int opt_flags) // OPT_LOCAL or OPT_GLOBAL
Bram Moolenaar071d4272004-06-13 20:20:40 +00004632{
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004633 char_u *varp;
4634 int save_silent = silent_mode;
4635
4636 silent_mode = FALSE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004637 info_message = TRUE; // use mch_msg(), not mch_errmsg()
Bram Moolenaar071d4272004-06-13 20:20:40 +00004638
4639 varp = get_varp_scope(p, opt_flags);
4640
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004641 // for 'modified' we also need to check if 'ff' or 'fenc' changed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004642 if ((p->flags & P_BOOL) && ((int *)varp == &curbuf->b_changed
4643 ? !curbufIsChanged() : !*(int *)varp))
Bram Moolenaar32526b32019-01-19 17:43:09 +01004644 msg_puts("no");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004645 else if ((p->flags & P_BOOL) && *(int *)varp < 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01004646 msg_puts("--");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004647 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01004648 msg_puts(" ");
4649 msg_puts(p->fullname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004650 if (!(p->flags & P_BOOL))
4651 {
4652 msg_putchar('=');
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004653 // put value string in NameBuff
Bram Moolenaar071d4272004-06-13 20:20:40 +00004654 option_value2string(p, opt_flags);
4655 msg_outtrans(NameBuff);
4656 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004657
4658 silent_mode = save_silent;
4659 info_message = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004660}
4661
4662/*
4663 * Write modified options as ":set" commands to a file.
4664 *
4665 * There are three values for "opt_flags":
4666 * OPT_GLOBAL: Write global option values and fresh values of
4667 * buffer-local options (used for start of a session
4668 * file).
4669 * OPT_GLOBAL + OPT_LOCAL: Idem, add fresh values of window-local options for
4670 * curwin (used for a vimrc file).
4671 * OPT_LOCAL: Write buffer-local option values for curbuf, fresh
4672 * and local values for window-local options of
4673 * curwin. Local values are also written when at the
4674 * default value, because a modeline or autocommand
4675 * may have set them when doing ":edit file" and the
4676 * user has set them back at the default or fresh
4677 * value.
4678 * When "local_only" is TRUE, don't write fresh
4679 * values, only local values (for ":mkview").
4680 * (fresh value = value used for a new buffer or window for a local option).
4681 *
4682 * Return FAIL on error, OK otherwise.
4683 */
4684 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004685makeset(FILE *fd, int opt_flags, int local_only)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004686{
4687 struct vimoption *p;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004688 char_u *varp; // currently used value
4689 char_u *varp_fresh; // local value
4690 char_u *varp_local = NULL; // fresh value
Bram Moolenaar071d4272004-06-13 20:20:40 +00004691 char *cmd;
4692 int round;
Bram Moolenaar7fd16022007-09-06 14:35:35 +00004693 int pri;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004694
4695 /*
4696 * The options that don't have a default (terminal name, columns, lines)
4697 * are never written. Terminal options are also not written.
Bram Moolenaar7fd16022007-09-06 14:35:35 +00004698 * Do the loop over "options[]" twice: once for options with the
4699 * P_PRI_MKRC flag and once without.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004700 */
Bram Moolenaar7fd16022007-09-06 14:35:35 +00004701 for (pri = 1; pri >= 0; --pri)
4702 {
4703 for (p = &options[0]; !istermoption(p); p++)
4704 if (!(p->flags & P_NO_MKRC)
4705 && !istermoption(p)
4706 && ((pri == 1) == ((p->flags & P_PRI_MKRC) != 0)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004707 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004708 // skip global option when only doing locals
Bram Moolenaar071d4272004-06-13 20:20:40 +00004709 if (p->indir == PV_NONE && !(opt_flags & OPT_GLOBAL))
4710 continue;
4711
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004712 // Do not store options like 'bufhidden' and 'syntax' in a vimrc
4713 // file, they are always buffer-specific.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004714 if ((opt_flags & OPT_GLOBAL) && (p->flags & P_NOGLOB))
4715 continue;
4716
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004717 // Global values are only written when not at the default value.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004718 varp = get_varp_scope(p, opt_flags);
Bram Moolenaarcacc6a52019-05-30 15:22:43 +02004719 if ((opt_flags & OPT_GLOBAL) && optval_default(p, varp, p_cp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004720 continue;
4721
Bram Moolenaard23b7142021-04-17 21:04:34 +02004722 if ((opt_flags & OPT_SKIPRTP) && (p->var == (char_u *)&p_rtp
4723 || p->var == (char_u *)&p_pp))
Bram Moolenaar635bd602021-04-16 19:58:22 +02004724 continue;
4725
Bram Moolenaar071d4272004-06-13 20:20:40 +00004726 round = 2;
4727 if (p->indir != PV_NONE)
4728 {
4729 if (p->var == VAR_WIN)
4730 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004731 // skip window-local option when only doing globals
Bram Moolenaar071d4272004-06-13 20:20:40 +00004732 if (!(opt_flags & OPT_LOCAL))
4733 continue;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004734 // When fresh value of window-local option is not at the
4735 // default, need to write it too.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004736 if (!(opt_flags & OPT_GLOBAL) && !local_only)
4737 {
4738 varp_fresh = get_varp_scope(p, OPT_GLOBAL);
Bram Moolenaarcacc6a52019-05-30 15:22:43 +02004739 if (!optval_default(p, varp_fresh, p_cp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004740 {
4741 round = 1;
4742 varp_local = varp;
4743 varp = varp_fresh;
4744 }
4745 }
4746 }
4747 }
4748
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004749 // Round 1: fresh value for window-local options.
4750 // Round 2: other values
Bram Moolenaar071d4272004-06-13 20:20:40 +00004751 for ( ; round <= 2; varp = varp_local, ++round)
4752 {
4753 if (round == 1 || (opt_flags & OPT_GLOBAL))
4754 cmd = "set";
4755 else
4756 cmd = "setlocal";
4757
4758 if (p->flags & P_BOOL)
4759 {
4760 if (put_setbool(fd, cmd, p->fullname, *(int *)varp) == FAIL)
4761 return FAIL;
4762 }
4763 else if (p->flags & P_NUM)
4764 {
4765 if (put_setnum(fd, cmd, p->fullname, (long *)varp) == FAIL)
4766 return FAIL;
4767 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004768 else // P_STRING
Bram Moolenaar071d4272004-06-13 20:20:40 +00004769 {
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00004770 int do_endif = FALSE;
4771
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004772 // Don't set 'syntax' and 'filetype' again if the value is
4773 // already right, avoids reloading the syntax file.
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00004774 if (
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004775#if defined(FEAT_SYN_HL)
4776 p->indir == PV_SYN ||
4777#endif
4778 p->indir == PV_FT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004779 {
4780 if (fprintf(fd, "if &%s != '%s'", p->fullname,
4781 *(char_u **)(varp)) < 0
4782 || put_eol(fd) < 0)
4783 return FAIL;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00004784 do_endif = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004785 }
4786 if (put_setstring(fd, cmd, p->fullname, (char_u **)varp,
Bram Moolenaared18f2c2019-01-24 20:30:52 +01004787 p->flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004788 return FAIL;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00004789 if (do_endif)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004790 {
4791 if (put_line(fd, "endif") == FAIL)
4792 return FAIL;
4793 }
4794 }
4795 }
4796 }
Bram Moolenaar7fd16022007-09-06 14:35:35 +00004797 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004798 return OK;
4799}
4800
4801#if defined(FEAT_FOLDING) || defined(PROTO)
4802/*
4803 * Generate set commands for the local fold options only. Used when
4804 * 'sessionoptions' or 'viewoptions' contains "folds" but not "options".
4805 */
4806 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004807makefoldset(FILE *fd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004808{
Bram Moolenaared18f2c2019-01-24 20:30:52 +01004809 if (put_setstring(fd, "setlocal", "fdm", &curwin->w_p_fdm, 0) == FAIL
Bram Moolenaar071d4272004-06-13 20:20:40 +00004810# ifdef FEAT_EVAL
Bram Moolenaared18f2c2019-01-24 20:30:52 +01004811 || put_setstring(fd, "setlocal", "fde", &curwin->w_p_fde, 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004812 == FAIL
4813# endif
Bram Moolenaared18f2c2019-01-24 20:30:52 +01004814 || put_setstring(fd, "setlocal", "fmr", &curwin->w_p_fmr, 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004815 == FAIL
Bram Moolenaared18f2c2019-01-24 20:30:52 +01004816 || put_setstring(fd, "setlocal", "fdi", &curwin->w_p_fdi, 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004817 == FAIL
4818 || put_setnum(fd, "setlocal", "fdl", &curwin->w_p_fdl) == FAIL
4819 || put_setnum(fd, "setlocal", "fml", &curwin->w_p_fml) == FAIL
4820 || put_setnum(fd, "setlocal", "fdn", &curwin->w_p_fdn) == FAIL
4821 || put_setbool(fd, "setlocal", "fen", curwin->w_p_fen) == FAIL
4822 )
4823 return FAIL;
4824
4825 return OK;
4826}
4827#endif
4828
4829 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004830put_setstring(
4831 FILE *fd,
4832 char *cmd,
4833 char *name,
4834 char_u **valuep,
Bram Moolenaared18f2c2019-01-24 20:30:52 +01004835 long_u flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004836{
4837 char_u *s;
Bram Moolenaared18f2c2019-01-24 20:30:52 +01004838 char_u *buf = NULL;
4839 char_u *part = NULL;
4840 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004841
4842 if (fprintf(fd, "%s %s=", cmd, name) < 0)
4843 return FAIL;
4844 if (*valuep != NULL)
4845 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004846 // Output 'pastetoggle' as key names. For other
4847 // options some characters have to be escaped with
4848 // CTRL-V or backslash
Bram Moolenaar071d4272004-06-13 20:20:40 +00004849 if (valuep == &p_pt)
4850 {
4851 s = *valuep;
4852 while (*s != NUL)
Bram Moolenaar7d96acd2008-06-09 15:07:54 +00004853 if (put_escstr(fd, str2special(&s, FALSE), 2) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004854 return FAIL;
4855 }
Bram Moolenaared18f2c2019-01-24 20:30:52 +01004856 // expand the option value, replace $HOME by ~
4857 else if ((flags & P_EXPAND) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004858 {
Bram Moolenaared18f2c2019-01-24 20:30:52 +01004859 int size = (int)STRLEN(*valuep) + 1;
4860
4861 // replace home directory in the whole option value into "buf"
4862 buf = alloc(size);
Bram Moolenaarf8441472011-04-28 17:24:58 +02004863 if (buf == NULL)
Bram Moolenaared18f2c2019-01-24 20:30:52 +01004864 goto fail;
4865 home_replace(NULL, *valuep, buf, size, FALSE);
4866
4867 // If the option value is longer than MAXPATHL, we need to append
Bram Moolenaar32aa1022019-11-02 22:54:41 +01004868 // each comma separated part of the option separately, so that it
Bram Moolenaared18f2c2019-01-24 20:30:52 +01004869 // can be expanded when read back.
4870 if (size >= MAXPATHL && (flags & P_COMMA) != 0
4871 && vim_strchr(*valuep, ',') != NULL)
4872 {
4873 part = alloc(size);
4874 if (part == NULL)
4875 goto fail;
4876
4877 // write line break to clear the option, e.g. ':set rtp='
4878 if (put_eol(fd) == FAIL)
4879 goto fail;
4880
4881 p = buf;
4882 while (*p != NUL)
4883 {
4884 // for each comma separated option part, append value to
4885 // the option, :set rtp+=value
4886 if (fprintf(fd, "%s %s+=", cmd, name) < 0)
4887 goto fail;
4888 (void)copy_option_part(&p, part, size, ",");
4889 if (put_escstr(fd, part, 2) == FAIL || put_eol(fd) == FAIL)
4890 goto fail;
4891 }
4892 vim_free(buf);
4893 vim_free(part);
4894 return OK;
4895 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004896 if (put_escstr(fd, buf, 2) == FAIL)
Bram Moolenaarf8441472011-04-28 17:24:58 +02004897 {
4898 vim_free(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004899 return FAIL;
Bram Moolenaarf8441472011-04-28 17:24:58 +02004900 }
4901 vim_free(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004902 }
4903 else if (put_escstr(fd, *valuep, 2) == FAIL)
4904 return FAIL;
4905 }
4906 if (put_eol(fd) < 0)
4907 return FAIL;
4908 return OK;
Bram Moolenaared18f2c2019-01-24 20:30:52 +01004909fail:
4910 vim_free(buf);
4911 vim_free(part);
4912 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004913}
4914
4915 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004916put_setnum(
4917 FILE *fd,
4918 char *cmd,
4919 char *name,
4920 long *valuep)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004921{
4922 long wc;
4923
4924 if (fprintf(fd, "%s %s=", cmd, name) < 0)
4925 return FAIL;
4926 if (wc_use_keyname((char_u *)valuep, &wc))
4927 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004928 // print 'wildchar' and 'wildcharm' as a key name
Bram Moolenaar071d4272004-06-13 20:20:40 +00004929 if (fputs((char *)get_special_key_name((int)wc, 0), fd) < 0)
4930 return FAIL;
4931 }
4932 else if (fprintf(fd, "%ld", *valuep) < 0)
4933 return FAIL;
4934 if (put_eol(fd) < 0)
4935 return FAIL;
4936 return OK;
4937}
4938
4939 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004940put_setbool(
4941 FILE *fd,
4942 char *cmd,
4943 char *name,
4944 int value)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004945{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004946 if (value < 0) // global/local option using global value
Bram Moolenaar893de922007-10-02 18:40:57 +00004947 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004948 if (fprintf(fd, "%s %s%s", cmd, value ? "" : "no", name) < 0
4949 || put_eol(fd) < 0)
4950 return FAIL;
4951 return OK;
4952}
4953
4954/*
4955 * Clear all the terminal options.
4956 * If the option has been allocated, free the memory.
4957 * Terminal options are never hidden or indirect.
4958 */
4959 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004960clear_termoptions(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004961{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004962 /*
4963 * Reset a few things before clearing the old options. This may cause
4964 * outputting a few things that the terminal doesn't understand, but the
4965 * screen will be cleared later, so this is OK.
4966 */
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02004967 mch_setmouse(FALSE); // switch mouse off
Bram Moolenaar071d4272004-06-13 20:20:40 +00004968#ifdef FEAT_TITLE
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004969 mch_restore_title(SAVE_RESTORE_BOTH); // restore window titles
Bram Moolenaar071d4272004-06-13 20:20:40 +00004970#endif
4971#if defined(FEAT_XCLIPBOARD) && defined(FEAT_GUI)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004972 // When starting the GUI close the display opened for the clipboard.
4973 // After restoring the title, because that will need the display.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004974 if (gui.starting)
4975 clear_xterm_clip();
4976#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004977 stoptermcap(); // stop termcap mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00004978
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00004979 free_termoptions();
4980}
4981
4982 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004983free_termoptions(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00004984{
4985 struct vimoption *p;
4986
Bram Moolenaar35bc7d62018-10-02 14:45:10 +02004987 for (p = options; p->fullname != NULL; p++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004988 if (istermoption(p))
4989 {
4990 if (p->flags & P_ALLOCED)
4991 free_string_option(*(char_u **)(p->var));
4992 if (p->flags & P_DEF_ALLOCED)
4993 free_string_option(p->def_val[VI_DEFAULT]);
4994 *(char_u **)(p->var) = empty_option;
4995 p->def_val[VI_DEFAULT] = empty_option;
4996 p->flags &= ~(P_ALLOCED|P_DEF_ALLOCED);
Bram Moolenaar35bc7d62018-10-02 14:45:10 +02004997#ifdef FEAT_EVAL
4998 // remember where the option was cleared
4999 set_option_sctx_idx((int)(p - options), OPT_GLOBAL, current_sctx);
5000#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005001 }
5002 clear_termcodes();
5003}
5004
5005/*
Bram Moolenaar363cb672009-07-22 12:28:17 +00005006 * Free the string for one term option, if it was allocated.
5007 * Set the string to empty_option and clear allocated flag.
5008 * "var" points to the option value.
5009 */
5010 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005011free_one_termoption(char_u *var)
Bram Moolenaar363cb672009-07-22 12:28:17 +00005012{
5013 struct vimoption *p;
5014
5015 for (p = &options[0]; p->fullname != NULL; p++)
5016 if (p->var == var)
5017 {
5018 if (p->flags & P_ALLOCED)
5019 free_string_option(*(char_u **)(p->var));
5020 *(char_u **)(p->var) = empty_option;
5021 p->flags &= ~P_ALLOCED;
5022 break;
5023 }
5024}
5025
5026/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005027 * Set the terminal option defaults to the current value.
5028 * Used after setting the terminal name.
5029 */
5030 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005031set_term_defaults(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005032{
5033 struct vimoption *p;
5034
5035 for (p = &options[0]; p->fullname != NULL; p++)
5036 {
5037 if (istermoption(p) && p->def_val[VI_DEFAULT] != *(char_u **)(p->var))
5038 {
5039 if (p->flags & P_DEF_ALLOCED)
5040 {
5041 free_string_option(p->def_val[VI_DEFAULT]);
5042 p->flags &= ~P_DEF_ALLOCED;
5043 }
5044 p->def_val[VI_DEFAULT] = *(char_u **)(p->var);
5045 if (p->flags & P_ALLOCED)
5046 {
5047 p->flags |= P_DEF_ALLOCED;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005048 p->flags &= ~P_ALLOCED; // don't free the value now
Bram Moolenaar071d4272004-06-13 20:20:40 +00005049 }
5050 }
5051 }
5052}
5053
5054/*
5055 * return TRUE if 'p' starts with 't_'
5056 */
5057 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005058istermoption(struct vimoption *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005059{
5060 return (p->fullname[0] == 't' && p->fullname[1] == '_');
5061}
5062
Bram Moolenaardac13472019-09-16 21:06:21 +02005063/*
5064 * Returns TRUE if the option at 'opt_idx' starts with 't_'
5065 */
5066 int
5067istermoption_idx(int opt_idx)
5068{
5069 return istermoption(&options[opt_idx]);
5070}
5071
Bram Moolenaar113e1072019-01-20 15:30:40 +01005072#if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005073/*
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02005074 * Unset local option value, similar to ":set opt<".
5075 */
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02005076 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005077unset_global_local_option(char_u *name, void *from)
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02005078{
5079 struct vimoption *p;
5080 int opt_idx;
Bram Moolenaar51ac8a22013-05-06 06:45:47 +02005081 buf_T *buf = (buf_T *)from;
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02005082
5083 opt_idx = findoption(name);
Bram Moolenaarbd8539a2015-08-11 18:53:03 +02005084 if (opt_idx < 0)
5085 return;
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02005086 p = &(options[opt_idx]);
5087
5088 switch ((int)p->indir)
5089 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005090 // global option with local value: use local value if it's been set
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02005091 case PV_EP:
Bram Moolenaar51ac8a22013-05-06 06:45:47 +02005092 clear_string_option(&buf->b_p_ep);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02005093 break;
5094 case PV_KP:
Bram Moolenaar51ac8a22013-05-06 06:45:47 +02005095 clear_string_option(&buf->b_p_kp);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02005096 break;
5097 case PV_PATH:
Bram Moolenaar51ac8a22013-05-06 06:45:47 +02005098 clear_string_option(&buf->b_p_path);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02005099 break;
5100 case PV_AR:
5101 buf->b_p_ar = -1;
5102 break;
Bram Moolenaarb8ee25a2014-09-23 15:45:08 +02005103 case PV_BKC:
5104 clear_string_option(&buf->b_p_bkc);
5105 buf->b_bkc_flags = 0;
5106 break;
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02005107 case PV_TAGS:
Bram Moolenaar51ac8a22013-05-06 06:45:47 +02005108 clear_string_option(&buf->b_p_tags);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02005109 break;
Bram Moolenaar0f6562e2015-11-24 18:48:14 +01005110 case PV_TC:
5111 clear_string_option(&buf->b_p_tc);
5112 buf->b_tc_flags = 0;
5113 break;
Bram Moolenaar375e3392019-01-31 18:26:10 +01005114 case PV_SISO:
5115 curwin->w_p_siso = -1;
5116 break;
5117 case PV_SO:
5118 curwin->w_p_so = -1;
5119 break;
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02005120#ifdef FEAT_FIND_ID
5121 case PV_DEF:
Bram Moolenaar51ac8a22013-05-06 06:45:47 +02005122 clear_string_option(&buf->b_p_def);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02005123 break;
5124 case PV_INC:
Bram Moolenaar51ac8a22013-05-06 06:45:47 +02005125 clear_string_option(&buf->b_p_inc);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02005126 break;
5127#endif
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02005128 case PV_DICT:
Bram Moolenaar51ac8a22013-05-06 06:45:47 +02005129 clear_string_option(&buf->b_p_dict);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02005130 break;
5131 case PV_TSR:
Bram Moolenaar51ac8a22013-05-06 06:45:47 +02005132 clear_string_option(&buf->b_p_tsr);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02005133 break;
Bram Moolenaar9be7c042017-01-14 14:28:30 +01005134 case PV_FP:
5135 clear_string_option(&buf->b_p_fp);
5136 break;
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02005137#ifdef FEAT_QUICKFIX
5138 case PV_EFM:
Bram Moolenaar51ac8a22013-05-06 06:45:47 +02005139 clear_string_option(&buf->b_p_efm);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02005140 break;
5141 case PV_GP:
Bram Moolenaar51ac8a22013-05-06 06:45:47 +02005142 clear_string_option(&buf->b_p_gp);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02005143 break;
5144 case PV_MP:
Bram Moolenaar51ac8a22013-05-06 06:45:47 +02005145 clear_string_option(&buf->b_p_mp);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02005146 break;
5147#endif
5148#if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
5149 case PV_BEXPR:
Bram Moolenaar51ac8a22013-05-06 06:45:47 +02005150 clear_string_option(&buf->b_p_bexpr);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02005151 break;
5152#endif
5153#if defined(FEAT_CRYPT)
5154 case PV_CM:
Bram Moolenaar51ac8a22013-05-06 06:45:47 +02005155 clear_string_option(&buf->b_p_cm);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02005156 break;
5157#endif
Bram Moolenaaree857022019-11-09 23:26:40 +01005158#ifdef FEAT_LINEBREAK
5159 case PV_SBR:
5160 clear_string_option(&((win_T *)from)->w_p_sbr);
5161 break;
5162#endif
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02005163#ifdef FEAT_STL_OPT
5164 case PV_STL:
Bram Moolenaar51ac8a22013-05-06 06:45:47 +02005165 clear_string_option(&((win_T *)from)->w_p_stl);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02005166 break;
5167#endif
Bram Moolenaarf5a2fd82013-11-06 05:26:15 +01005168 case PV_UL:
5169 buf->b_p_ul = NO_LOCAL_UNDOLEVEL;
5170 break;
Bram Moolenaaraf6c1312014-03-12 18:55:58 +01005171#ifdef FEAT_LISP
5172 case PV_LW:
5173 clear_string_option(&buf->b_p_lw);
5174 break;
5175#endif
Bram Moolenaar2c7292d2017-03-05 17:43:31 +01005176 case PV_MENC:
5177 clear_string_option(&buf->b_p_menc);
5178 break;
Bram Moolenaareed9d462021-02-15 20:38:25 +01005179 case PV_LCS:
5180 clear_string_option(&((win_T *)from)->w_p_lcs);
5181 set_chars_option((win_T *)from, &((win_T *)from)->w_p_lcs);
5182 redraw_later(NOT_VALID);
5183 break;
Gary Johnson53ba05b2021-07-26 22:19:10 +02005184 case PV_VE:
Gary Johnson51ad8502021-08-03 18:33:08 +02005185 clear_string_option(&((win_T *)from)->w_p_ve);
5186 ((win_T *)from)->w_ve_flags = 0;
Gary Johnson53ba05b2021-07-26 22:19:10 +02005187 break;
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02005188 }
5189}
Bram Moolenaar113e1072019-01-20 15:30:40 +01005190#endif
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02005191
5192/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005193 * Get pointer to option variable, depending on local or global scope.
5194 */
5195 static char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01005196get_varp_scope(struct vimoption *p, int opt_flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005197{
5198 if ((opt_flags & OPT_GLOBAL) && p->indir != PV_NONE)
5199 {
5200 if (p->var == VAR_WIN)
5201 return (char_u *)GLOBAL_WO(get_varp(p));
5202 return p->var;
5203 }
Bram Moolenaara23ccb82006-02-27 00:08:02 +00005204 if ((opt_flags & OPT_LOCAL) && ((int)p->indir & PV_BOTH))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005205 {
5206 switch ((int)p->indir)
5207 {
Bram Moolenaar9be7c042017-01-14 14:28:30 +01005208 case PV_FP: return (char_u *)&(curbuf->b_p_fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005209#ifdef FEAT_QUICKFIX
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00005210 case PV_EFM: return (char_u *)&(curbuf->b_p_efm);
5211 case PV_GP: return (char_u *)&(curbuf->b_p_gp);
5212 case PV_MP: return (char_u *)&(curbuf->b_p_mp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005213#endif
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00005214 case PV_EP: return (char_u *)&(curbuf->b_p_ep);
5215 case PV_KP: return (char_u *)&(curbuf->b_p_kp);
5216 case PV_PATH: return (char_u *)&(curbuf->b_p_path);
Bram Moolenaara23ccb82006-02-27 00:08:02 +00005217 case PV_AR: return (char_u *)&(curbuf->b_p_ar);
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00005218 case PV_TAGS: return (char_u *)&(curbuf->b_p_tags);
Bram Moolenaar0f6562e2015-11-24 18:48:14 +01005219 case PV_TC: return (char_u *)&(curbuf->b_p_tc);
Bram Moolenaar375e3392019-01-31 18:26:10 +01005220 case PV_SISO: return (char_u *)&(curwin->w_p_siso);
5221 case PV_SO: return (char_u *)&(curwin->w_p_so);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005222#ifdef FEAT_FIND_ID
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00005223 case PV_DEF: return (char_u *)&(curbuf->b_p_def);
5224 case PV_INC: return (char_u *)&(curbuf->b_p_inc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005225#endif
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00005226 case PV_DICT: return (char_u *)&(curbuf->b_p_dict);
5227 case PV_TSR: return (char_u *)&(curbuf->b_p_tsr);
Bram Moolenaar9b2200a2006-03-20 21:55:45 +00005228#if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
5229 case PV_BEXPR: return (char_u *)&(curbuf->b_p_bexpr);
5230#endif
Bram Moolenaar49771f42010-07-20 17:32:38 +02005231#if defined(FEAT_CRYPT)
5232 case PV_CM: return (char_u *)&(curbuf->b_p_cm);
5233#endif
Bram Moolenaaree857022019-11-09 23:26:40 +01005234#ifdef FEAT_LINEBREAK
5235 case PV_SBR: return (char_u *)&(curwin->w_p_sbr);
5236#endif
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00005237#ifdef FEAT_STL_OPT
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00005238 case PV_STL: return (char_u *)&(curwin->w_p_stl);
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00005239#endif
Bram Moolenaarf5a2fd82013-11-06 05:26:15 +01005240 case PV_UL: return (char_u *)&(curbuf->b_p_ul);
Bram Moolenaaraf6c1312014-03-12 18:55:58 +01005241#ifdef FEAT_LISP
5242 case PV_LW: return (char_u *)&(curbuf->b_p_lw);
5243#endif
Bram Moolenaarb8ee25a2014-09-23 15:45:08 +02005244 case PV_BKC: return (char_u *)&(curbuf->b_p_bkc);
Bram Moolenaar2c7292d2017-03-05 17:43:31 +01005245 case PV_MENC: return (char_u *)&(curbuf->b_p_menc);
Gary Johnson53ba05b2021-07-26 22:19:10 +02005246 case PV_LCS: return (char_u *)&(curwin->w_p_lcs);
Gary Johnson51ad8502021-08-03 18:33:08 +02005247 case PV_VE: return (char_u *)&(curwin->w_p_ve);
Bram Moolenaareed9d462021-02-15 20:38:25 +01005248
Bram Moolenaar071d4272004-06-13 20:20:40 +00005249 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005250 return NULL; // "cannot happen"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005251 }
5252 return get_varp(p);
5253}
5254
5255/*
Bram Moolenaardac13472019-09-16 21:06:21 +02005256 * Get pointer to option variable at 'opt_idx', depending on local or global
5257 * scope.
5258 */
5259 char_u *
5260get_option_varp_scope(int opt_idx, int opt_flags)
5261{
5262 return get_varp_scope(&(options[opt_idx]), opt_flags);
5263}
5264
5265/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005266 * Get pointer to option variable.
5267 */
5268 static char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01005269get_varp(struct vimoption *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005270{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005271 // hidden option, always return NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00005272 if (p->var == NULL)
5273 return NULL;
5274
5275 switch ((int)p->indir)
5276 {
5277 case PV_NONE: return p->var;
5278
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005279 // global option with local value: use local value if it's been set
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00005280 case PV_EP: return *curbuf->b_p_ep != NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00005281 ? (char_u *)&curbuf->b_p_ep : p->var;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00005282 case PV_KP: return *curbuf->b_p_kp != NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00005283 ? (char_u *)&curbuf->b_p_kp : p->var;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00005284 case PV_PATH: return *curbuf->b_p_path != NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00005285 ? (char_u *)&(curbuf->b_p_path) : p->var;
Bram Moolenaara23ccb82006-02-27 00:08:02 +00005286 case PV_AR: return curbuf->b_p_ar >= 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00005287 ? (char_u *)&(curbuf->b_p_ar) : p->var;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00005288 case PV_TAGS: return *curbuf->b_p_tags != NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00005289 ? (char_u *)&(curbuf->b_p_tags) : p->var;
Bram Moolenaar0f6562e2015-11-24 18:48:14 +01005290 case PV_TC: return *curbuf->b_p_tc != NUL
5291 ? (char_u *)&(curbuf->b_p_tc) : p->var;
Bram Moolenaarb8ee25a2014-09-23 15:45:08 +02005292 case PV_BKC: return *curbuf->b_p_bkc != NUL
5293 ? (char_u *)&(curbuf->b_p_bkc) : p->var;
Bram Moolenaar375e3392019-01-31 18:26:10 +01005294 case PV_SISO: return curwin->w_p_siso >= 0
5295 ? (char_u *)&(curwin->w_p_siso) : p->var;
5296 case PV_SO: return curwin->w_p_so >= 0
5297 ? (char_u *)&(curwin->w_p_so) : p->var;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005298#ifdef FEAT_FIND_ID
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00005299 case PV_DEF: return *curbuf->b_p_def != NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00005300 ? (char_u *)&(curbuf->b_p_def) : p->var;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00005301 case PV_INC: return *curbuf->b_p_inc != NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00005302 ? (char_u *)&(curbuf->b_p_inc) : p->var;
5303#endif
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00005304 case PV_DICT: return *curbuf->b_p_dict != NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00005305 ? (char_u *)&(curbuf->b_p_dict) : p->var;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00005306 case PV_TSR: return *curbuf->b_p_tsr != NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00005307 ? (char_u *)&(curbuf->b_p_tsr) : p->var;
Bram Moolenaar9be7c042017-01-14 14:28:30 +01005308 case PV_FP: return *curbuf->b_p_fp != NUL
5309 ? (char_u *)&(curbuf->b_p_fp) : p->var;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005310#ifdef FEAT_QUICKFIX
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00005311 case PV_EFM: return *curbuf->b_p_efm != NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00005312 ? (char_u *)&(curbuf->b_p_efm) : p->var;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00005313 case PV_GP: return *curbuf->b_p_gp != NUL
5314 ? (char_u *)&(curbuf->b_p_gp) : p->var;
5315 case PV_MP: return *curbuf->b_p_mp != NUL
5316 ? (char_u *)&(curbuf->b_p_mp) : p->var;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005317#endif
Bram Moolenaar9b2200a2006-03-20 21:55:45 +00005318#if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
5319 case PV_BEXPR: return *curbuf->b_p_bexpr != NUL
5320 ? (char_u *)&(curbuf->b_p_bexpr) : p->var;
5321#endif
Bram Moolenaar49771f42010-07-20 17:32:38 +02005322#if defined(FEAT_CRYPT)
5323 case PV_CM: return *curbuf->b_p_cm != NUL
5324 ? (char_u *)&(curbuf->b_p_cm) : p->var;
5325#endif
Bram Moolenaaree857022019-11-09 23:26:40 +01005326#ifdef FEAT_LINEBREAK
5327 case PV_SBR: return *curwin->w_p_sbr != NUL
5328 ? (char_u *)&(curwin->w_p_sbr) : p->var;
5329#endif
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00005330#ifdef FEAT_STL_OPT
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00005331 case PV_STL: return *curwin->w_p_stl != NUL
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00005332 ? (char_u *)&(curwin->w_p_stl) : p->var;
5333#endif
Bram Moolenaarf5a2fd82013-11-06 05:26:15 +01005334 case PV_UL: return curbuf->b_p_ul != NO_LOCAL_UNDOLEVEL
5335 ? (char_u *)&(curbuf->b_p_ul) : p->var;
Bram Moolenaaraf6c1312014-03-12 18:55:58 +01005336#ifdef FEAT_LISP
5337 case PV_LW: return *curbuf->b_p_lw != NUL
5338 ? (char_u *)&(curbuf->b_p_lw) : p->var;
5339#endif
Bram Moolenaar2c7292d2017-03-05 17:43:31 +01005340 case PV_MENC: return *curbuf->b_p_menc != NUL
5341 ? (char_u *)&(curbuf->b_p_menc) : p->var;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005342#ifdef FEAT_ARABIC
5343 case PV_ARAB: return (char_u *)&(curwin->w_p_arab);
5344#endif
5345 case PV_LIST: return (char_u *)&(curwin->w_p_list);
Bram Moolenaareed9d462021-02-15 20:38:25 +01005346 case PV_LCS: return *curwin->w_p_lcs != NUL
5347 ? (char_u *)&(curwin->w_p_lcs) : p->var;
Gary Johnson51ad8502021-08-03 18:33:08 +02005348 case PV_VE: return *curwin->w_p_ve != NUL
5349 ? (char_u *)&(curwin->w_p_ve) : p->var;
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00005350#ifdef FEAT_SPELL
Bram Moolenaar217ad922005-03-20 22:37:15 +00005351 case PV_SPELL: return (char_u *)&(curwin->w_p_spell);
5352#endif
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00005353#ifdef FEAT_SYN_HL
5354 case PV_CUC: return (char_u *)&(curwin->w_p_cuc);
5355 case PV_CUL: return (char_u *)&(curwin->w_p_cul);
Bram Moolenaar410e98a2019-09-09 22:05:49 +02005356 case PV_CULOPT: return (char_u *)&(curwin->w_p_culopt);
Bram Moolenaar1a384422010-07-14 19:53:30 +02005357 case PV_CC: return (char_u *)&(curwin->w_p_cc);
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00005358#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005359#ifdef FEAT_DIFF
5360 case PV_DIFF: return (char_u *)&(curwin->w_p_diff);
5361#endif
5362#ifdef FEAT_FOLDING
5363 case PV_FDC: return (char_u *)&(curwin->w_p_fdc);
5364 case PV_FEN: return (char_u *)&(curwin->w_p_fen);
5365 case PV_FDI: return (char_u *)&(curwin->w_p_fdi);
5366 case PV_FDL: return (char_u *)&(curwin->w_p_fdl);
5367 case PV_FDM: return (char_u *)&(curwin->w_p_fdm);
5368 case PV_FML: return (char_u *)&(curwin->w_p_fml);
5369 case PV_FDN: return (char_u *)&(curwin->w_p_fdn);
5370# ifdef FEAT_EVAL
5371 case PV_FDE: return (char_u *)&(curwin->w_p_fde);
5372 case PV_FDT: return (char_u *)&(curwin->w_p_fdt);
5373# endif
5374 case PV_FMR: return (char_u *)&(curwin->w_p_fmr);
5375#endif
5376 case PV_NU: return (char_u *)&(curwin->w_p_nu);
Bram Moolenaar64486672010-05-16 15:46:46 +02005377 case PV_RNU: return (char_u *)&(curwin->w_p_rnu);
Bram Moolenaar592e0a22004-07-03 16:05:59 +00005378#ifdef FEAT_LINEBREAK
5379 case PV_NUW: return (char_u *)&(curwin->w_p_nuw);
5380#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005381 case PV_WFH: return (char_u *)&(curwin->w_p_wfh);
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00005382 case PV_WFW: return (char_u *)&(curwin->w_p_wfw);
Bram Moolenaar4033c552017-09-16 20:54:51 +02005383#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005384 case PV_PVW: return (char_u *)&(curwin->w_p_pvw);
5385#endif
5386#ifdef FEAT_RIGHTLEFT
5387 case PV_RL: return (char_u *)&(curwin->w_p_rl);
5388 case PV_RLC: return (char_u *)&(curwin->w_p_rlc);
5389#endif
5390 case PV_SCROLL: return (char_u *)&(curwin->w_p_scr);
5391 case PV_WRAP: return (char_u *)&(curwin->w_p_wrap);
5392#ifdef FEAT_LINEBREAK
5393 case PV_LBR: return (char_u *)&(curwin->w_p_lbr);
Bram Moolenaar597a4222014-06-25 14:39:50 +02005394 case PV_BRI: return (char_u *)&(curwin->w_p_bri);
5395 case PV_BRIOPT: return (char_u *)&(curwin->w_p_briopt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005396#endif
Bram Moolenaar4d784b22019-05-25 19:51:39 +02005397 case PV_WCR: return (char_u *)&(curwin->w_p_wcr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005398 case PV_SCBIND: return (char_u *)&(curwin->w_p_scb);
Bram Moolenaar860cae12010-06-05 23:22:07 +02005399 case PV_CRBIND: return (char_u *)&(curwin->w_p_crb);
Bram Moolenaar860cae12010-06-05 23:22:07 +02005400#ifdef FEAT_CONCEAL
Bram Moolenaare4f25e42017-07-07 11:54:15 +02005401 case PV_COCU: return (char_u *)&(curwin->w_p_cocu);
5402 case PV_COLE: return (char_u *)&(curwin->w_p_cole);
5403#endif
5404#ifdef FEAT_TERMINAL
Bram Moolenaar6d150f72018-04-21 20:03:20 +02005405 case PV_TWK: return (char_u *)&(curwin->w_p_twk);
5406 case PV_TWS: return (char_u *)&(curwin->w_p_tws);
5407 case PV_TWSL: return (char_u *)&(curbuf->b_p_twsl);
Bram Moolenaar860cae12010-06-05 23:22:07 +02005408#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005409
5410 case PV_AI: return (char_u *)&(curbuf->b_p_ai);
5411 case PV_BIN: return (char_u *)&(curbuf->b_p_bin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005412 case PV_BOMB: return (char_u *)&(curbuf->b_p_bomb);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005413 case PV_BH: return (char_u *)&(curbuf->b_p_bh);
5414 case PV_BT: return (char_u *)&(curbuf->b_p_bt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005415 case PV_BL: return (char_u *)&(curbuf->b_p_bl);
5416 case PV_CI: return (char_u *)&(curbuf->b_p_ci);
5417#ifdef FEAT_CINDENT
5418 case PV_CIN: return (char_u *)&(curbuf->b_p_cin);
5419 case PV_CINK: return (char_u *)&(curbuf->b_p_cink);
5420 case PV_CINO: return (char_u *)&(curbuf->b_p_cino);
5421#endif
5422#if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
5423 case PV_CINW: return (char_u *)&(curbuf->b_p_cinw);
5424#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005425 case PV_COM: return (char_u *)&(curbuf->b_p_com);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005426#ifdef FEAT_FOLDING
5427 case PV_CMS: return (char_u *)&(curbuf->b_p_cms);
5428#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005429 case PV_CPT: return (char_u *)&(curbuf->b_p_cpt);
Bram Moolenaare2c453d2019-08-21 14:37:09 +02005430#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaarac3150d2019-07-28 16:36:39 +02005431 case PV_CSL: return (char_u *)&(curbuf->b_p_csl);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005432#endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00005433#ifdef FEAT_COMPL_FUNC
5434 case PV_CFU: return (char_u *)&(curbuf->b_p_cfu);
Bram Moolenaare344bea2005-09-01 20:46:49 +00005435 case PV_OFU: return (char_u *)&(curbuf->b_p_ofu);
Bram Moolenaard4c4bfa2021-10-16 21:14:11 +01005436 case PV_THSFU: return (char_u *)&(curbuf->b_p_tsrfu);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00005437#endif
Bram Moolenaar45e18cb2019-04-28 18:05:35 +02005438#ifdef FEAT_EVAL
5439 case PV_TFU: return (char_u *)&(curbuf->b_p_tfu);
5440#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005441 case PV_EOL: return (char_u *)&(curbuf->b_p_eol);
Bram Moolenaar34d72d42015-07-17 14:18:08 +02005442 case PV_FIXEOL: return (char_u *)&(curbuf->b_p_fixeol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005443 case PV_ET: return (char_u *)&(curbuf->b_p_et);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005444 case PV_FENC: return (char_u *)&(curbuf->b_p_fenc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005445 case PV_FF: return (char_u *)&(curbuf->b_p_ff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005446 case PV_FT: return (char_u *)&(curbuf->b_p_ft);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005447 case PV_FO: return (char_u *)&(curbuf->b_p_fo);
Bram Moolenaar86b68352004-12-27 21:59:20 +00005448 case PV_FLP: return (char_u *)&(curbuf->b_p_flp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005449 case PV_IMI: return (char_u *)&(curbuf->b_p_iminsert);
5450 case PV_IMS: return (char_u *)&(curbuf->b_p_imsearch);
5451 case PV_INF: return (char_u *)&(curbuf->b_p_inf);
5452 case PV_ISK: return (char_u *)&(curbuf->b_p_isk);
5453#ifdef FEAT_FIND_ID
5454# ifdef FEAT_EVAL
5455 case PV_INEX: return (char_u *)&(curbuf->b_p_inex);
5456# endif
5457#endif
5458#if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
5459 case PV_INDE: return (char_u *)&(curbuf->b_p_inde);
5460 case PV_INDK: return (char_u *)&(curbuf->b_p_indk);
5461#endif
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00005462#ifdef FEAT_EVAL
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005463 case PV_FEX: return (char_u *)&(curbuf->b_p_fex);
5464#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005465#ifdef FEAT_CRYPT
5466 case PV_KEY: return (char_u *)&(curbuf->b_p_key);
5467#endif
5468#ifdef FEAT_LISP
5469 case PV_LISP: return (char_u *)&(curbuf->b_p_lisp);
5470#endif
5471 case PV_ML: return (char_u *)&(curbuf->b_p_ml);
5472 case PV_MPS: return (char_u *)&(curbuf->b_p_mps);
5473 case PV_MA: return (char_u *)&(curbuf->b_p_ma);
5474 case PV_MOD: return (char_u *)&(curbuf->b_changed);
5475 case PV_NF: return (char_u *)&(curbuf->b_p_nf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005476 case PV_PI: return (char_u *)&(curbuf->b_p_pi);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00005477#ifdef FEAT_TEXTOBJ
5478 case PV_QE: return (char_u *)&(curbuf->b_p_qe);
5479#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005480 case PV_RO: return (char_u *)&(curbuf->b_p_ro);
5481#ifdef FEAT_SMARTINDENT
5482 case PV_SI: return (char_u *)&(curbuf->b_p_si);
5483#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005484 case PV_SN: return (char_u *)&(curbuf->b_p_sn);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005485 case PV_STS: return (char_u *)&(curbuf->b_p_sts);
5486#ifdef FEAT_SEARCHPATH
5487 case PV_SUA: return (char_u *)&(curbuf->b_p_sua);
5488#endif
5489 case PV_SWF: return (char_u *)&(curbuf->b_p_swf);
5490#ifdef FEAT_SYN_HL
Bram Moolenaar3b56eb32005-07-11 22:40:32 +00005491 case PV_SMC: return (char_u *)&(curbuf->b_p_smc);
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00005492 case PV_SYN: return (char_u *)&(curbuf->b_p_syn);
5493#endif
5494#ifdef FEAT_SPELL
Bram Moolenaar860cae12010-06-05 23:22:07 +02005495 case PV_SPC: return (char_u *)&(curwin->w_s->b_p_spc);
5496 case PV_SPF: return (char_u *)&(curwin->w_s->b_p_spf);
5497 case PV_SPL: return (char_u *)&(curwin->w_s->b_p_spl);
Bram Moolenaar362b44b2020-06-10 21:47:00 +02005498 case PV_SPO: return (char_u *)&(curwin->w_s->b_p_spo);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005499#endif
5500 case PV_SW: return (char_u *)&(curbuf->b_p_sw);
5501 case PV_TS: return (char_u *)&(curbuf->b_p_ts);
5502 case PV_TW: return (char_u *)&(curbuf->b_p_tw);
5503 case PV_TX: return (char_u *)&(curbuf->b_p_tx);
Bram Moolenaar55debbe2010-05-23 23:34:36 +02005504#ifdef FEAT_PERSISTENT_UNDO
5505 case PV_UDF: return (char_u *)&(curbuf->b_p_udf);
5506#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005507 case PV_WM: return (char_u *)&(curbuf->b_p_wm);
5508#ifdef FEAT_KEYMAP
5509 case PV_KMAP: return (char_u *)&(curbuf->b_p_keymap);
5510#endif
Bram Moolenaar95ec9d62016-08-12 18:29:59 +02005511#ifdef FEAT_SIGNS
5512 case PV_SCL: return (char_u *)&(curwin->w_p_scl);
5513#endif
Bram Moolenaar04958cb2018-06-23 19:23:02 +02005514#ifdef FEAT_VARTABS
5515 case PV_VSTS: return (char_u *)&(curbuf->b_p_vsts);
5516 case PV_VTS: return (char_u *)&(curbuf->b_p_vts);
5517#endif
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005518 default: iemsg(_("E356: get_varp ERROR"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005519 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005520 // always return a valid pointer to avoid a crash!
Bram Moolenaar071d4272004-06-13 20:20:40 +00005521 return (char_u *)&(curbuf->b_p_wm);
5522}
5523
5524/*
Bram Moolenaardac13472019-09-16 21:06:21 +02005525 * Return a pointer to the variable for option at 'opt_idx'
5526 */
5527 char_u *
5528get_option_var(int opt_idx)
5529{
5530 return options[opt_idx].var;
5531}
5532
5533/*
5534 * Return the full name of the option at 'opt_idx'
5535 */
5536 char_u *
5537get_option_fullname(int opt_idx)
5538{
5539 return (char_u *)options[opt_idx].fullname;
5540}
5541
5542/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005543 * Get the value of 'equalprg', either the buffer-local one or the global one.
5544 */
5545 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01005546get_equalprg(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005547{
5548 if (*curbuf->b_p_ep == NUL)
5549 return p_ep;
5550 return curbuf->b_p_ep;
5551}
5552
Bram Moolenaar071d4272004-06-13 20:20:40 +00005553/*
5554 * Copy options from one window to another.
5555 * Used when splitting a window.
5556 */
5557 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005558win_copy_options(win_T *wp_from, win_T *wp_to)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005559{
5560 copy_winopt(&wp_from->w_onebuf_opt, &wp_to->w_onebuf_opt);
5561 copy_winopt(&wp_from->w_allbuf_opt, &wp_to->w_allbuf_opt);
Bram Moolenaar010ee962019-09-25 20:37:36 +02005562 after_copy_winopt(wp_to);
5563}
5564
5565/*
5566 * After copying window options: update variables depending on options.
5567 */
5568 void
Bram Moolenaar473952e2019-09-28 16:30:04 +02005569after_copy_winopt(win_T *wp UNUSED)
Bram Moolenaar010ee962019-09-25 20:37:36 +02005570{
5571#ifdef FEAT_LINEBREAK
5572 briopt_check(wp);
Bram Moolenaar285ed7e2014-08-24 21:39:49 +02005573#endif
Bram Moolenaar017ba072019-09-14 21:01:23 +02005574#ifdef FEAT_SYN_HL
Bram Moolenaar010ee962019-09-25 20:37:36 +02005575 fill_culopt_flags(NULL, wp);
5576 check_colorcolumn(wp);
Bram Moolenaar017ba072019-09-14 21:01:23 +02005577#endif
Bram Moolenaareed9d462021-02-15 20:38:25 +01005578 set_chars_option(wp, &wp->w_p_lcs);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005579}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005580
5581/*
5582 * Copy the options from one winopt_T to another.
5583 * Doesn't free the old option values in "to", use clear_winopt() for that.
5584 * The 'scroll' option is not copied, because it depends on the window height.
5585 * The 'previewwindow' option is reset, there can be only one preview window.
5586 */
5587 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005588copy_winopt(winopt_T *from, winopt_T *to)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005589{
5590#ifdef FEAT_ARABIC
5591 to->wo_arab = from->wo_arab;
5592#endif
5593 to->wo_list = from->wo_list;
Bram Moolenaareed9d462021-02-15 20:38:25 +01005594 to->wo_lcs = vim_strsave(from->wo_lcs);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005595 to->wo_nu = from->wo_nu;
Bram Moolenaar64486672010-05-16 15:46:46 +02005596 to->wo_rnu = from->wo_rnu;
Gary Johnson51ad8502021-08-03 18:33:08 +02005597 to->wo_ve = vim_strsave(from->wo_ve);
5598 to->wo_ve_flags = from->wo_ve_flags;
Bram Moolenaar592e0a22004-07-03 16:05:59 +00005599#ifdef FEAT_LINEBREAK
5600 to->wo_nuw = from->wo_nuw;
5601#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005602#ifdef FEAT_RIGHTLEFT
5603 to->wo_rl = from->wo_rl;
5604 to->wo_rlc = vim_strsave(from->wo_rlc);
5605#endif
Bram Moolenaaree857022019-11-09 23:26:40 +01005606#ifdef FEAT_LINEBREAK
5607 to->wo_sbr = vim_strsave(from->wo_sbr);
5608#endif
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00005609#ifdef FEAT_STL_OPT
5610 to->wo_stl = vim_strsave(from->wo_stl);
5611#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005612 to->wo_wrap = from->wo_wrap;
Bram Moolenaara87aa802013-07-03 15:47:03 +02005613#ifdef FEAT_DIFF
5614 to->wo_wrap_save = from->wo_wrap_save;
5615#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005616#ifdef FEAT_LINEBREAK
5617 to->wo_lbr = from->wo_lbr;
Bram Moolenaar597a4222014-06-25 14:39:50 +02005618 to->wo_bri = from->wo_bri;
5619 to->wo_briopt = vim_strsave(from->wo_briopt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005620#endif
Bram Moolenaar4d784b22019-05-25 19:51:39 +02005621 to->wo_wcr = vim_strsave(from->wo_wcr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005622 to->wo_scb = from->wo_scb;
Bram Moolenaara87aa802013-07-03 15:47:03 +02005623 to->wo_scb_save = from->wo_scb_save;
Bram Moolenaar4161dcc2010-12-02 15:33:21 +01005624 to->wo_crb = from->wo_crb;
Bram Moolenaara87aa802013-07-03 15:47:03 +02005625 to->wo_crb_save = from->wo_crb_save;
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00005626#ifdef FEAT_SPELL
Bram Moolenaar217ad922005-03-20 22:37:15 +00005627 to->wo_spell = from->wo_spell;
5628#endif
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00005629#ifdef FEAT_SYN_HL
5630 to->wo_cuc = from->wo_cuc;
5631 to->wo_cul = from->wo_cul;
Bram Moolenaar410e98a2019-09-09 22:05:49 +02005632 to->wo_culopt = vim_strsave(from->wo_culopt);
Bram Moolenaar1a384422010-07-14 19:53:30 +02005633 to->wo_cc = vim_strsave(from->wo_cc);
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00005634#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005635#ifdef FEAT_DIFF
5636 to->wo_diff = from->wo_diff;
Bram Moolenaara87aa802013-07-03 15:47:03 +02005637 to->wo_diff_saved = from->wo_diff_saved;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005638#endif
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005639#ifdef FEAT_CONCEAL
5640 to->wo_cocu = vim_strsave(from->wo_cocu);
Bram Moolenaard497a302010-07-23 22:27:03 +02005641 to->wo_cole = from->wo_cole;
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005642#endif
Bram Moolenaare4f25e42017-07-07 11:54:15 +02005643#ifdef FEAT_TERMINAL
Bram Moolenaar6d150f72018-04-21 20:03:20 +02005644 to->wo_twk = vim_strsave(from->wo_twk);
5645 to->wo_tws = vim_strsave(from->wo_tws);
Bram Moolenaare4f25e42017-07-07 11:54:15 +02005646#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005647#ifdef FEAT_FOLDING
5648 to->wo_fdc = from->wo_fdc;
Bram Moolenaara87aa802013-07-03 15:47:03 +02005649 to->wo_fdc_save = from->wo_fdc_save;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005650 to->wo_fen = from->wo_fen;
Bram Moolenaara87aa802013-07-03 15:47:03 +02005651 to->wo_fen_save = from->wo_fen_save;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005652 to->wo_fdi = vim_strsave(from->wo_fdi);
5653 to->wo_fml = from->wo_fml;
5654 to->wo_fdl = from->wo_fdl;
Bram Moolenaara87aa802013-07-03 15:47:03 +02005655 to->wo_fdl_save = from->wo_fdl_save;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005656 to->wo_fdm = vim_strsave(from->wo_fdm);
Bram Moolenaara87aa802013-07-03 15:47:03 +02005657 to->wo_fdm_save = from->wo_diff_saved
5658 ? vim_strsave(from->wo_fdm_save) : empty_option;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005659 to->wo_fdn = from->wo_fdn;
5660# ifdef FEAT_EVAL
5661 to->wo_fde = vim_strsave(from->wo_fde);
5662 to->wo_fdt = vim_strsave(from->wo_fdt);
5663# endif
5664 to->wo_fmr = vim_strsave(from->wo_fmr);
5665#endif
Bram Moolenaar95ec9d62016-08-12 18:29:59 +02005666#ifdef FEAT_SIGNS
5667 to->wo_scl = vim_strsave(from->wo_scl);
5668#endif
Bram Moolenaarcfb38142019-10-19 20:18:47 +02005669
5670#ifdef FEAT_EVAL
5671 // Copy the script context so that we know where the value was last set.
5672 mch_memmove(to->wo_script_ctx, from->wo_script_ctx,
5673 sizeof(to->wo_script_ctx));
5674#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005675 check_winopt(to); // don't want NULL pointers
Bram Moolenaar071d4272004-06-13 20:20:40 +00005676}
5677
5678/*
5679 * Check string options in a window for a NULL value.
5680 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02005681 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005682check_win_options(win_T *win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005683{
5684 check_winopt(&win->w_onebuf_opt);
5685 check_winopt(&win->w_allbuf_opt);
5686}
5687
5688/*
5689 * Check for NULL pointers in a winopt_T and replace them with empty_option.
5690 */
Bram Moolenaar8dc907d2014-06-25 14:44:10 +02005691 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005692check_winopt(winopt_T *wop UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005693{
5694#ifdef FEAT_FOLDING
5695 check_string_option(&wop->wo_fdi);
5696 check_string_option(&wop->wo_fdm);
Bram Moolenaara87aa802013-07-03 15:47:03 +02005697 check_string_option(&wop->wo_fdm_save);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005698# ifdef FEAT_EVAL
5699 check_string_option(&wop->wo_fde);
5700 check_string_option(&wop->wo_fdt);
5701# endif
5702 check_string_option(&wop->wo_fmr);
5703#endif
Bram Moolenaar95ec9d62016-08-12 18:29:59 +02005704#ifdef FEAT_SIGNS
5705 check_string_option(&wop->wo_scl);
5706#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005707#ifdef FEAT_RIGHTLEFT
5708 check_string_option(&wop->wo_rlc);
5709#endif
Bram Moolenaaree857022019-11-09 23:26:40 +01005710#ifdef FEAT_LINEBREAK
5711 check_string_option(&wop->wo_sbr);
5712#endif
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00005713#ifdef FEAT_STL_OPT
5714 check_string_option(&wop->wo_stl);
5715#endif
Bram Moolenaar1a384422010-07-14 19:53:30 +02005716#ifdef FEAT_SYN_HL
Bram Moolenaar410e98a2019-09-09 22:05:49 +02005717 check_string_option(&wop->wo_culopt);
Bram Moolenaar1a384422010-07-14 19:53:30 +02005718 check_string_option(&wop->wo_cc);
5719#endif
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005720#ifdef FEAT_CONCEAL
5721 check_string_option(&wop->wo_cocu);
5722#endif
Bram Moolenaare4f25e42017-07-07 11:54:15 +02005723#ifdef FEAT_TERMINAL
Bram Moolenaar6d150f72018-04-21 20:03:20 +02005724 check_string_option(&wop->wo_twk);
5725 check_string_option(&wop->wo_tws);
Bram Moolenaare4f25e42017-07-07 11:54:15 +02005726#endif
Bram Moolenaar597a4222014-06-25 14:39:50 +02005727#ifdef FEAT_LINEBREAK
5728 check_string_option(&wop->wo_briopt);
5729#endif
Bram Moolenaar4d784b22019-05-25 19:51:39 +02005730 check_string_option(&wop->wo_wcr);
Bram Moolenaareed9d462021-02-15 20:38:25 +01005731 check_string_option(&wop->wo_lcs);
Gary Johnson51ad8502021-08-03 18:33:08 +02005732 check_string_option(&wop->wo_ve);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005733}
5734
5735/*
5736 * Free the allocated memory inside a winopt_T.
5737 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005738 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005739clear_winopt(winopt_T *wop UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005740{
5741#ifdef FEAT_FOLDING
5742 clear_string_option(&wop->wo_fdi);
5743 clear_string_option(&wop->wo_fdm);
Bram Moolenaara87aa802013-07-03 15:47:03 +02005744 clear_string_option(&wop->wo_fdm_save);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005745# ifdef FEAT_EVAL
5746 clear_string_option(&wop->wo_fde);
5747 clear_string_option(&wop->wo_fdt);
5748# endif
5749 clear_string_option(&wop->wo_fmr);
5750#endif
Bram Moolenaar95ec9d62016-08-12 18:29:59 +02005751#ifdef FEAT_SIGNS
5752 clear_string_option(&wop->wo_scl);
5753#endif
Bram Moolenaar597a4222014-06-25 14:39:50 +02005754#ifdef FEAT_LINEBREAK
5755 clear_string_option(&wop->wo_briopt);
5756#endif
Bram Moolenaar4d784b22019-05-25 19:51:39 +02005757 clear_string_option(&wop->wo_wcr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005758#ifdef FEAT_RIGHTLEFT
5759 clear_string_option(&wop->wo_rlc);
5760#endif
Bram Moolenaaree857022019-11-09 23:26:40 +01005761#ifdef FEAT_LINEBREAK
5762 clear_string_option(&wop->wo_sbr);
5763#endif
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00005764#ifdef FEAT_STL_OPT
5765 clear_string_option(&wop->wo_stl);
5766#endif
Bram Moolenaar1a384422010-07-14 19:53:30 +02005767#ifdef FEAT_SYN_HL
Bram Moolenaar410e98a2019-09-09 22:05:49 +02005768 clear_string_option(&wop->wo_culopt);
Bram Moolenaar1a384422010-07-14 19:53:30 +02005769 clear_string_option(&wop->wo_cc);
5770#endif
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005771#ifdef FEAT_CONCEAL
5772 clear_string_option(&wop->wo_cocu);
5773#endif
Bram Moolenaare4f25e42017-07-07 11:54:15 +02005774#ifdef FEAT_TERMINAL
Bram Moolenaar6d150f72018-04-21 20:03:20 +02005775 clear_string_option(&wop->wo_twk);
5776 clear_string_option(&wop->wo_tws);
Bram Moolenaare4f25e42017-07-07 11:54:15 +02005777#endif
Bram Moolenaareed9d462021-02-15 20:38:25 +01005778 clear_string_option(&wop->wo_lcs);
Gary Johnson51ad8502021-08-03 18:33:08 +02005779 clear_string_option(&wop->wo_ve);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005780}
5781
Bram Moolenaarcfb38142019-10-19 20:18:47 +02005782#ifdef FEAT_EVAL
5783// Index into the options table for a buffer-local option enum.
5784static int buf_opt_idx[BV_COUNT];
5785# define COPY_OPT_SCTX(buf, bv) buf->b_p_script_ctx[bv] = options[buf_opt_idx[bv]].script_ctx
5786
5787/*
5788 * Initialize buf_opt_idx[] if not done already.
5789 */
5790 static void
5791init_buf_opt_idx(void)
5792{
5793 static int did_init_buf_opt_idx = FALSE;
5794 int i;
5795
5796 if (did_init_buf_opt_idx)
5797 return;
5798 did_init_buf_opt_idx = TRUE;
5799 for (i = 0; !istermoption_idx(i); i++)
5800 if (options[i].indir & PV_BUF)
5801 buf_opt_idx[options[i].indir & PV_MASK] = i;
5802}
5803#else
5804# define COPY_OPT_SCTX(buf, bv)
5805#endif
5806
Bram Moolenaar071d4272004-06-13 20:20:40 +00005807/*
5808 * Copy global option values to local options for one buffer.
5809 * Used when creating a new buffer and sometimes when entering a buffer.
5810 * flags:
Bram Moolenaarcfb38142019-10-19 20:18:47 +02005811 * BCO_ENTER We will enter the buffer "buf".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005812 * BCO_ALWAYS Always copy the options, but only set b_p_initialized when
5813 * appropriate.
5814 * BCO_NOHELP Don't copy the values to a help buffer.
5815 */
5816 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005817buf_copy_options(buf_T *buf, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005818{
5819 int should_copy = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005820 char_u *save_p_isk = NULL; // init for GCC
Bram Moolenaar071d4272004-06-13 20:20:40 +00005821 int dont_do_help;
5822 int did_isk = FALSE;
5823
5824 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005825 * Skip this when the option defaults have not been set yet. Happens when
5826 * main() allocates the first buffer.
5827 */
5828 if (p_cpo != NULL)
5829 {
5830 /*
5831 * Always copy when entering and 'cpo' contains 'S'.
5832 * Don't copy when already initialized.
5833 * Don't copy when 'cpo' contains 's' and not entering.
5834 * 'S' BCO_ENTER initialized 's' should_copy
5835 * yes yes X X TRUE
5836 * yes no yes X FALSE
5837 * no X yes X FALSE
5838 * X no no yes FALSE
5839 * X no no no TRUE
5840 * no yes no X TRUE
5841 */
5842 if ((vim_strchr(p_cpo, CPO_BUFOPTGLOB) == NULL || !(flags & BCO_ENTER))
5843 && (buf->b_p_initialized
5844 || (!(flags & BCO_ENTER)
5845 && vim_strchr(p_cpo, CPO_BUFOPT) != NULL)))
5846 should_copy = FALSE;
5847
5848 if (should_copy || (flags & BCO_ALWAYS))
5849 {
Bram Moolenaarcfb38142019-10-19 20:18:47 +02005850#ifdef FEAT_EVAL
Bram Moolenaara80faa82020-04-12 19:37:17 +02005851 CLEAR_FIELD(buf->b_p_script_ctx);
Bram Moolenaarcfb38142019-10-19 20:18:47 +02005852 init_buf_opt_idx();
5853#endif
5854 // Don't copy the options specific to a help buffer when
5855 // BCO_NOHELP is given or the options were initialized already
5856 // (jumping back to a help file with CTRL-T or CTRL-O)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005857 dont_do_help = ((flags & BCO_NOHELP) && buf->b_help)
5858 || buf->b_p_initialized;
Bram Moolenaarcfb38142019-10-19 20:18:47 +02005859 if (dont_do_help) // don't free b_p_isk
Bram Moolenaar071d4272004-06-13 20:20:40 +00005860 {
5861 save_p_isk = buf->b_p_isk;
5862 buf->b_p_isk = NULL;
5863 }
5864 /*
Bram Moolenaar40385db2018-08-07 22:31:44 +02005865 * Always free the allocated strings. If not already initialized,
5866 * reset 'readonly' and copy 'fileformat'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005867 */
5868 if (!buf->b_p_initialized)
5869 {
5870 free_buf_options(buf, TRUE);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005871 buf->b_p_ro = FALSE; // don't copy readonly
Bram Moolenaar071d4272004-06-13 20:20:40 +00005872 buf->b_p_tx = p_tx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005873 buf->b_p_fenc = vim_strsave(p_fenc);
Bram Moolenaare8ef3a02016-10-12 17:45:29 +02005874 switch (*p_ffs)
5875 {
5876 case 'm':
5877 buf->b_p_ff = vim_strsave((char_u *)FF_MAC); break;
5878 case 'd':
5879 buf->b_p_ff = vim_strsave((char_u *)FF_DOS); break;
5880 case 'u':
5881 buf->b_p_ff = vim_strsave((char_u *)FF_UNIX); break;
5882 default:
5883 buf->b_p_ff = vim_strsave(p_ff);
5884 }
5885 if (buf->b_p_ff != NULL)
5886 buf->b_start_ffc = *buf->b_p_ff;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005887 buf->b_p_bh = empty_option;
5888 buf->b_p_bt = empty_option;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005889 }
5890 else
5891 free_buf_options(buf, FALSE);
5892
5893 buf->b_p_ai = p_ai;
Bram Moolenaarcfb38142019-10-19 20:18:47 +02005894 COPY_OPT_SCTX(buf, BV_AI);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005895 buf->b_p_ai_nopaste = p_ai_nopaste;
5896 buf->b_p_sw = p_sw;
Bram Moolenaarcfb38142019-10-19 20:18:47 +02005897 COPY_OPT_SCTX(buf, BV_SW);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005898 buf->b_p_tw = p_tw;
Bram Moolenaarcfb38142019-10-19 20:18:47 +02005899 COPY_OPT_SCTX(buf, BV_TW);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005900 buf->b_p_tw_nopaste = p_tw_nopaste;
5901 buf->b_p_tw_nobin = p_tw_nobin;
5902 buf->b_p_wm = p_wm;
Bram Moolenaarcfb38142019-10-19 20:18:47 +02005903 COPY_OPT_SCTX(buf, BV_WM);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005904 buf->b_p_wm_nopaste = p_wm_nopaste;
5905 buf->b_p_wm_nobin = p_wm_nobin;
5906 buf->b_p_bin = p_bin;
Bram Moolenaarcfb38142019-10-19 20:18:47 +02005907 COPY_OPT_SCTX(buf, BV_BIN);
Bram Moolenaare8bb2552005-07-08 22:26:47 +00005908 buf->b_p_bomb = p_bomb;
Bram Moolenaarcfb38142019-10-19 20:18:47 +02005909 COPY_OPT_SCTX(buf, BV_BOMB);
Bram Moolenaarb388be02015-07-22 22:19:38 +02005910 buf->b_p_fixeol = p_fixeol;
Bram Moolenaarcfb38142019-10-19 20:18:47 +02005911 COPY_OPT_SCTX(buf, BV_FIXEOL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005912 buf->b_p_et = p_et;
Bram Moolenaarcfb38142019-10-19 20:18:47 +02005913 COPY_OPT_SCTX(buf, BV_ET);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005914 buf->b_p_et_nobin = p_et_nobin;
Bram Moolenaar54f018c2015-09-15 17:30:40 +02005915 buf->b_p_et_nopaste = p_et_nopaste;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005916 buf->b_p_ml = p_ml;
Bram Moolenaarcfb38142019-10-19 20:18:47 +02005917 COPY_OPT_SCTX(buf, BV_ML);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005918 buf->b_p_ml_nobin = p_ml_nobin;
5919 buf->b_p_inf = p_inf;
Bram Moolenaarcfb38142019-10-19 20:18:47 +02005920 COPY_OPT_SCTX(buf, BV_INF);
Bram Moolenaare1004402020-10-24 20:49:43 +02005921 if (cmdmod.cmod_flags & CMOD_NOSWAPFILE)
Bram Moolenaarcfb38142019-10-19 20:18:47 +02005922 buf->b_p_swf = FALSE;
5923 else
5924 {
5925 buf->b_p_swf = p_swf;
5926 COPY_OPT_SCTX(buf, BV_INF);
5927 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005928 buf->b_p_cpt = vim_strsave(p_cpt);
Bram Moolenaarcfb38142019-10-19 20:18:47 +02005929 COPY_OPT_SCTX(buf, BV_CPT);
Bram Moolenaare2c453d2019-08-21 14:37:09 +02005930#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaarac3150d2019-07-28 16:36:39 +02005931 buf->b_p_csl = vim_strsave(p_csl);
Bram Moolenaarcfb38142019-10-19 20:18:47 +02005932 COPY_OPT_SCTX(buf, BV_CSL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005933#endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00005934#ifdef FEAT_COMPL_FUNC
5935 buf->b_p_cfu = vim_strsave(p_cfu);
Bram Moolenaarcfb38142019-10-19 20:18:47 +02005936 COPY_OPT_SCTX(buf, BV_CFU);
Bram Moolenaare344bea2005-09-01 20:46:49 +00005937 buf->b_p_ofu = vim_strsave(p_ofu);
Bram Moolenaarcfb38142019-10-19 20:18:47 +02005938 COPY_OPT_SCTX(buf, BV_OFU);
Bram Moolenaard4c4bfa2021-10-16 21:14:11 +01005939 buf->b_p_tsrfu = vim_strsave(p_thsfu);
Yegappan Lakshmanan160e9942021-10-16 15:41:29 +01005940 COPY_OPT_SCTX(buf, BV_THSFU);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00005941#endif
Bram Moolenaar45e18cb2019-04-28 18:05:35 +02005942#ifdef FEAT_EVAL
5943 buf->b_p_tfu = vim_strsave(p_tfu);
Bram Moolenaarcfb38142019-10-19 20:18:47 +02005944 COPY_OPT_SCTX(buf, BV_TFU);
Bram Moolenaar45e18cb2019-04-28 18:05:35 +02005945#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005946 buf->b_p_sts = p_sts;
Bram Moolenaarcfb38142019-10-19 20:18:47 +02005947 COPY_OPT_SCTX(buf, BV_STS);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005948 buf->b_p_sts_nopaste = p_sts_nopaste;
Bram Moolenaar04958cb2018-06-23 19:23:02 +02005949#ifdef FEAT_VARTABS
5950 buf->b_p_vsts = vim_strsave(p_vsts);
Bram Moolenaarcfb38142019-10-19 20:18:47 +02005951 COPY_OPT_SCTX(buf, BV_VSTS);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02005952 if (p_vsts && p_vsts != empty_option)
Bram Moolenaarb7081e12021-09-04 18:47:28 +02005953 (void)tabstop_set(p_vsts, &buf->b_p_vsts_array);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02005954 else
5955 buf->b_p_vsts_array = 0;
5956 buf->b_p_vsts_nopaste = p_vsts_nopaste
5957 ? vim_strsave(p_vsts_nopaste) : NULL;
5958#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005959 buf->b_p_sn = p_sn;
Bram Moolenaarcfb38142019-10-19 20:18:47 +02005960 COPY_OPT_SCTX(buf, BV_SN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005961 buf->b_p_com = vim_strsave(p_com);
Bram Moolenaarcfb38142019-10-19 20:18:47 +02005962 COPY_OPT_SCTX(buf, BV_COM);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005963#ifdef FEAT_FOLDING
5964 buf->b_p_cms = vim_strsave(p_cms);
Bram Moolenaarcfb38142019-10-19 20:18:47 +02005965 COPY_OPT_SCTX(buf, BV_CMS);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005966#endif
5967 buf->b_p_fo = vim_strsave(p_fo);
Bram Moolenaarcfb38142019-10-19 20:18:47 +02005968 COPY_OPT_SCTX(buf, BV_FO);
Bram Moolenaar86b68352004-12-27 21:59:20 +00005969 buf->b_p_flp = vim_strsave(p_flp);
Bram Moolenaarcfb38142019-10-19 20:18:47 +02005970 COPY_OPT_SCTX(buf, BV_FLP);
Bram Moolenaar473952e2019-09-28 16:30:04 +02005971 // NOTE: Valgrind may report a bogus memory leak for 'nrformats'
5972 // when it is set to 8 bytes in defaults.vim.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005973 buf->b_p_nf = vim_strsave(p_nf);
Bram Moolenaarcfb38142019-10-19 20:18:47 +02005974 COPY_OPT_SCTX(buf, BV_NF);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005975 buf->b_p_mps = vim_strsave(p_mps);
Bram Moolenaarcfb38142019-10-19 20:18:47 +02005976 COPY_OPT_SCTX(buf, BV_MPS);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005977#ifdef FEAT_SMARTINDENT
5978 buf->b_p_si = p_si;
Bram Moolenaarcfb38142019-10-19 20:18:47 +02005979 COPY_OPT_SCTX(buf, BV_SI);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005980#endif
5981 buf->b_p_ci = p_ci;
Bram Moolenaarcfb38142019-10-19 20:18:47 +02005982 COPY_OPT_SCTX(buf, BV_CI);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005983#ifdef FEAT_CINDENT
5984 buf->b_p_cin = p_cin;
Bram Moolenaarcfb38142019-10-19 20:18:47 +02005985 COPY_OPT_SCTX(buf, BV_CIN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005986 buf->b_p_cink = vim_strsave(p_cink);
Bram Moolenaarcfb38142019-10-19 20:18:47 +02005987 COPY_OPT_SCTX(buf, BV_CINK);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005988 buf->b_p_cino = vim_strsave(p_cino);
Bram Moolenaarcfb38142019-10-19 20:18:47 +02005989 COPY_OPT_SCTX(buf, BV_CINO);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005990#endif
Bram Moolenaarcfb38142019-10-19 20:18:47 +02005991 // Don't copy 'filetype', it must be detected
Bram Moolenaar071d4272004-06-13 20:20:40 +00005992 buf->b_p_ft = empty_option;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005993 buf->b_p_pi = p_pi;
Bram Moolenaarcfb38142019-10-19 20:18:47 +02005994 COPY_OPT_SCTX(buf, BV_PI);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005995#if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
5996 buf->b_p_cinw = vim_strsave(p_cinw);
Bram Moolenaarcfb38142019-10-19 20:18:47 +02005997 COPY_OPT_SCTX(buf, BV_CINW);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005998#endif
5999#ifdef FEAT_LISP
6000 buf->b_p_lisp = p_lisp;
Bram Moolenaarcfb38142019-10-19 20:18:47 +02006001 COPY_OPT_SCTX(buf, BV_LISP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006002#endif
6003#ifdef FEAT_SYN_HL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006004 // Don't copy 'syntax', it must be set
Bram Moolenaar071d4272004-06-13 20:20:40 +00006005 buf->b_p_syn = empty_option;
Bram Moolenaar3b56eb32005-07-11 22:40:32 +00006006 buf->b_p_smc = p_smc;
Bram Moolenaarcfb38142019-10-19 20:18:47 +02006007 COPY_OPT_SCTX(buf, BV_SMC);
Bram Moolenaarb8060fe2016-01-19 22:29:28 +01006008 buf->b_s.b_syn_isk = empty_option;
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00006009#endif
6010#ifdef FEAT_SPELL
Bram Moolenaard5784f92010-10-13 14:05:35 +02006011 buf->b_s.b_p_spc = vim_strsave(p_spc);
Bram Moolenaarcfb38142019-10-19 20:18:47 +02006012 COPY_OPT_SCTX(buf, BV_SPC);
Bram Moolenaar860cae12010-06-05 23:22:07 +02006013 (void)compile_cap_prog(&buf->b_s);
6014 buf->b_s.b_p_spf = vim_strsave(p_spf);
Bram Moolenaarcfb38142019-10-19 20:18:47 +02006015 COPY_OPT_SCTX(buf, BV_SPF);
Bram Moolenaar860cae12010-06-05 23:22:07 +02006016 buf->b_s.b_p_spl = vim_strsave(p_spl);
Bram Moolenaarcfb38142019-10-19 20:18:47 +02006017 COPY_OPT_SCTX(buf, BV_SPL);
Bram Moolenaar362b44b2020-06-10 21:47:00 +02006018 buf->b_s.b_p_spo = vim_strsave(p_spo);
6019 COPY_OPT_SCTX(buf, BV_SPO);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006020#endif
6021#if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
6022 buf->b_p_inde = vim_strsave(p_inde);
Bram Moolenaarcfb38142019-10-19 20:18:47 +02006023 COPY_OPT_SCTX(buf, BV_INDE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006024 buf->b_p_indk = vim_strsave(p_indk);
Bram Moolenaarcfb38142019-10-19 20:18:47 +02006025 COPY_OPT_SCTX(buf, BV_INDK);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006026#endif
Bram Moolenaar9be7c042017-01-14 14:28:30 +01006027 buf->b_p_fp = empty_option;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006028#if defined(FEAT_EVAL)
6029 buf->b_p_fex = vim_strsave(p_fex);
Bram Moolenaarcfb38142019-10-19 20:18:47 +02006030 COPY_OPT_SCTX(buf, BV_FEX);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006031#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006032#ifdef FEAT_CRYPT
6033 buf->b_p_key = vim_strsave(p_key);
Bram Moolenaarcfb38142019-10-19 20:18:47 +02006034 COPY_OPT_SCTX(buf, BV_KEY);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006035#endif
6036#ifdef FEAT_SEARCHPATH
6037 buf->b_p_sua = vim_strsave(p_sua);
Bram Moolenaarcfb38142019-10-19 20:18:47 +02006038 COPY_OPT_SCTX(buf, BV_SUA);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006039#endif
6040#ifdef FEAT_KEYMAP
6041 buf->b_p_keymap = vim_strsave(p_keymap);
Bram Moolenaarcfb38142019-10-19 20:18:47 +02006042 COPY_OPT_SCTX(buf, BV_KMAP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006043 buf->b_kmap_state |= KEYMAP_INIT;
6044#endif
Bram Moolenaar6d150f72018-04-21 20:03:20 +02006045#ifdef FEAT_TERMINAL
6046 buf->b_p_twsl = p_twsl;
Bram Moolenaarcfb38142019-10-19 20:18:47 +02006047 COPY_OPT_SCTX(buf, BV_TWSL);
Bram Moolenaar6d150f72018-04-21 20:03:20 +02006048#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006049 // This isn't really an option, but copying the langmap and IME
6050 // state from the current buffer is better than resetting it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006051 buf->b_p_iminsert = p_iminsert;
Bram Moolenaarcfb38142019-10-19 20:18:47 +02006052 COPY_OPT_SCTX(buf, BV_IMI);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006053 buf->b_p_imsearch = p_imsearch;
Bram Moolenaarcfb38142019-10-19 20:18:47 +02006054 COPY_OPT_SCTX(buf, BV_IMS);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006055
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006056 // options that are normally global but also have a local value
6057 // are not copied, start using the global value
Bram Moolenaar071d4272004-06-13 20:20:40 +00006058 buf->b_p_ar = -1;
Bram Moolenaarf5a2fd82013-11-06 05:26:15 +01006059 buf->b_p_ul = NO_LOCAL_UNDOLEVEL;
Bram Moolenaarb8ee25a2014-09-23 15:45:08 +02006060 buf->b_p_bkc = empty_option;
6061 buf->b_bkc_flags = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006062#ifdef FEAT_QUICKFIX
6063 buf->b_p_gp = empty_option;
6064 buf->b_p_mp = empty_option;
6065 buf->b_p_efm = empty_option;
6066#endif
6067 buf->b_p_ep = empty_option;
6068 buf->b_p_kp = empty_option;
6069 buf->b_p_path = empty_option;
6070 buf->b_p_tags = empty_option;
Bram Moolenaar0f6562e2015-11-24 18:48:14 +01006071 buf->b_p_tc = empty_option;
6072 buf->b_tc_flags = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006073#ifdef FEAT_FIND_ID
6074 buf->b_p_def = empty_option;
6075 buf->b_p_inc = empty_option;
6076# ifdef FEAT_EVAL
6077 buf->b_p_inex = vim_strsave(p_inex);
Bram Moolenaarcfb38142019-10-19 20:18:47 +02006078 COPY_OPT_SCTX(buf, BV_INEX);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006079# endif
6080#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006081 buf->b_p_dict = empty_option;
6082 buf->b_p_tsr = empty_option;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00006083#ifdef FEAT_TEXTOBJ
6084 buf->b_p_qe = vim_strsave(p_qe);
Bram Moolenaarcfb38142019-10-19 20:18:47 +02006085 COPY_OPT_SCTX(buf, BV_QE);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00006086#endif
Bram Moolenaar9b2200a2006-03-20 21:55:45 +00006087#if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
6088 buf->b_p_bexpr = empty_option;
6089#endif
Bram Moolenaar49771f42010-07-20 17:32:38 +02006090#if defined(FEAT_CRYPT)
6091 buf->b_p_cm = empty_option;
6092#endif
Bram Moolenaar55debbe2010-05-23 23:34:36 +02006093#ifdef FEAT_PERSISTENT_UNDO
6094 buf->b_p_udf = p_udf;
Bram Moolenaarcfb38142019-10-19 20:18:47 +02006095 COPY_OPT_SCTX(buf, BV_UDF);
Bram Moolenaar55debbe2010-05-23 23:34:36 +02006096#endif
Bram Moolenaaraf6c1312014-03-12 18:55:58 +01006097#ifdef FEAT_LISP
6098 buf->b_p_lw = empty_option;
6099#endif
Bram Moolenaar2c7292d2017-03-05 17:43:31 +01006100 buf->b_p_menc = empty_option;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006101
6102 /*
6103 * Don't copy the options set by ex_help(), use the saved values,
6104 * when going from a help buffer to a non-help buffer.
6105 * Don't touch these at all when BCO_NOHELP is used and going from
6106 * or to a help buffer.
6107 */
6108 if (dont_do_help)
Bram Moolenaar04958cb2018-06-23 19:23:02 +02006109 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006110 buf->b_p_isk = save_p_isk;
Bram Moolenaar04958cb2018-06-23 19:23:02 +02006111#ifdef FEAT_VARTABS
6112 if (p_vts && p_vts != empty_option && !buf->b_p_vts_array)
Bram Moolenaarb7081e12021-09-04 18:47:28 +02006113 (void)tabstop_set(p_vts, &buf->b_p_vts_array);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02006114 else
6115 buf->b_p_vts_array = NULL;
6116#endif
6117 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006118 else
6119 {
6120 buf->b_p_isk = vim_strsave(p_isk);
Bram Moolenaarcfb38142019-10-19 20:18:47 +02006121 COPY_OPT_SCTX(buf, BV_ISK);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006122 did_isk = TRUE;
6123 buf->b_p_ts = p_ts;
Bram Moolenaar04958cb2018-06-23 19:23:02 +02006124#ifdef FEAT_VARTABS
6125 buf->b_p_vts = vim_strsave(p_vts);
Bram Moolenaarcfb38142019-10-19 20:18:47 +02006126 COPY_OPT_SCTX(buf, BV_VTS);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02006127 if (p_vts && p_vts != empty_option && !buf->b_p_vts_array)
Bram Moolenaarb7081e12021-09-04 18:47:28 +02006128 (void)tabstop_set(p_vts, &buf->b_p_vts_array);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02006129 else
6130 buf->b_p_vts_array = NULL;
6131#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006132 buf->b_help = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006133 if (buf->b_p_bt[0] == 'h')
6134 clear_string_option(&buf->b_p_bt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006135 buf->b_p_ma = p_ma;
Bram Moolenaarcfb38142019-10-19 20:18:47 +02006136 COPY_OPT_SCTX(buf, BV_MA);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006137 }
6138 }
6139
6140 /*
6141 * When the options should be copied (ignoring BCO_ALWAYS), set the
6142 * flag that indicates that the options have been initialized.
6143 */
6144 if (should_copy)
6145 buf->b_p_initialized = TRUE;
6146 }
6147
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006148 check_buf_options(buf); // make sure we don't have NULLs
Bram Moolenaar071d4272004-06-13 20:20:40 +00006149 if (did_isk)
6150 (void)buf_init_chartab(buf, FALSE);
6151}
6152
6153/*
6154 * Reset the 'modifiable' option and its default value.
6155 */
6156 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006157reset_modifiable(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006158{
6159 int opt_idx;
6160
6161 curbuf->b_p_ma = FALSE;
6162 p_ma = FALSE;
6163 opt_idx = findoption((char_u *)"ma");
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00006164 if (opt_idx >= 0)
6165 options[opt_idx].def_val[VI_DEFAULT] = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006166}
6167
6168/*
6169 * Set the global value for 'iminsert' to the local value.
6170 */
6171 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006172set_iminsert_global(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006173{
6174 p_iminsert = curbuf->b_p_iminsert;
6175}
6176
6177/*
6178 * Set the global value for 'imsearch' to the local value.
6179 */
6180 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006181set_imsearch_global(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006182{
6183 p_imsearch = curbuf->b_p_imsearch;
6184}
6185
Bram Moolenaar071d4272004-06-13 20:20:40 +00006186static int expand_option_idx = -1;
6187static char_u expand_option_name[5] = {'t', '_', NUL, NUL, NUL};
6188static int expand_option_flags = 0;
6189
6190 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006191set_context_in_set_cmd(
6192 expand_T *xp,
6193 char_u *arg,
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006194 int opt_flags) // OPT_GLOBAL and/or OPT_LOCAL
Bram Moolenaar071d4272004-06-13 20:20:40 +00006195{
6196 int nextchar;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006197 long_u flags = 0; // init for GCC
6198 int opt_idx = 0; // init for GCC
Bram Moolenaar071d4272004-06-13 20:20:40 +00006199 char_u *p;
6200 char_u *s;
6201 int is_term_option = FALSE;
6202 int key;
6203
6204 expand_option_flags = opt_flags;
6205
6206 xp->xp_context = EXPAND_SETTINGS;
6207 if (*arg == NUL)
6208 {
6209 xp->xp_pattern = arg;
6210 return;
6211 }
6212 p = arg + STRLEN(arg) - 1;
6213 if (*p == ' ' && *(p - 1) != '\\')
6214 {
6215 xp->xp_pattern = p + 1;
6216 return;
6217 }
6218 while (p > arg)
6219 {
6220 s = p;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006221 // count number of backslashes before ' ' or ','
Bram Moolenaar071d4272004-06-13 20:20:40 +00006222 if (*p == ' ' || *p == ',')
6223 {
6224 while (s > arg && *(s - 1) == '\\')
6225 --s;
6226 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006227 // break at a space with an even number of backslashes
Bram Moolenaar071d4272004-06-13 20:20:40 +00006228 if (*p == ' ' && ((p - s) & 1) == 0)
6229 {
6230 ++p;
6231 break;
6232 }
6233 --p;
6234 }
Bram Moolenaar2a7b9ee2009-06-16 15:50:33 +00006235 if (STRNCMP(p, "no", 2) == 0 && STRNCMP(p, "novice", 6) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006236 {
6237 xp->xp_context = EXPAND_BOOL_SETTINGS;
6238 p += 2;
6239 }
6240 if (STRNCMP(p, "inv", 3) == 0)
6241 {
6242 xp->xp_context = EXPAND_BOOL_SETTINGS;
6243 p += 3;
6244 }
6245 xp->xp_pattern = arg = p;
6246 if (*arg == '<')
6247 {
6248 while (*p != '>')
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006249 if (*p++ == NUL) // expand terminal option name
Bram Moolenaar071d4272004-06-13 20:20:40 +00006250 return;
6251 key = get_special_key_code(arg + 1);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006252 if (key == 0) // unknown name
Bram Moolenaar071d4272004-06-13 20:20:40 +00006253 {
6254 xp->xp_context = EXPAND_NOTHING;
6255 return;
6256 }
6257 nextchar = *++p;
6258 is_term_option = TRUE;
6259 expand_option_name[2] = KEY2TERMCAP0(key);
6260 expand_option_name[3] = KEY2TERMCAP1(key);
6261 }
6262 else
6263 {
6264 if (p[0] == 't' && p[1] == '_')
6265 {
6266 p += 2;
6267 if (*p != NUL)
6268 ++p;
6269 if (*p == NUL)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006270 return; // expand option name
Bram Moolenaar071d4272004-06-13 20:20:40 +00006271 nextchar = *++p;
6272 is_term_option = TRUE;
6273 expand_option_name[2] = p[-2];
6274 expand_option_name[3] = p[-1];
6275 }
6276 else
6277 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006278 // Allow * wildcard
Bram Moolenaar071d4272004-06-13 20:20:40 +00006279 while (ASCII_ISALNUM(*p) || *p == '_' || *p == '*')
6280 p++;
6281 if (*p == NUL)
6282 return;
6283 nextchar = *p;
6284 *p = NUL;
6285 opt_idx = findoption(arg);
6286 *p = nextchar;
6287 if (opt_idx == -1 || options[opt_idx].var == NULL)
6288 {
6289 xp->xp_context = EXPAND_NOTHING;
6290 return;
6291 }
6292 flags = options[opt_idx].flags;
6293 if (flags & P_BOOL)
6294 {
6295 xp->xp_context = EXPAND_NOTHING;
6296 return;
6297 }
6298 }
6299 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006300 // handle "-=" and "+="
Bram Moolenaar071d4272004-06-13 20:20:40 +00006301 if ((nextchar == '-' || nextchar == '+' || nextchar == '^') && p[1] == '=')
6302 {
6303 ++p;
6304 nextchar = '=';
6305 }
6306 if ((nextchar != '=' && nextchar != ':')
6307 || xp->xp_context == EXPAND_BOOL_SETTINGS)
6308 {
6309 xp->xp_context = EXPAND_UNSUCCESSFUL;
6310 return;
6311 }
6312 if (xp->xp_context != EXPAND_BOOL_SETTINGS && p[1] == NUL)
6313 {
6314 xp->xp_context = EXPAND_OLD_SETTING;
6315 if (is_term_option)
6316 expand_option_idx = -1;
6317 else
6318 expand_option_idx = opt_idx;
6319 xp->xp_pattern = p + 1;
6320 return;
6321 }
6322 xp->xp_context = EXPAND_NOTHING;
6323 if (is_term_option || (flags & P_NUM))
6324 return;
6325
6326 xp->xp_pattern = p + 1;
6327
6328 if (flags & P_EXPAND)
6329 {
6330 p = options[opt_idx].var;
6331 if (p == (char_u *)&p_bdir
6332 || p == (char_u *)&p_dir
6333 || p == (char_u *)&p_path
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +01006334 || p == (char_u *)&p_pp
Bram Moolenaar071d4272004-06-13 20:20:40 +00006335 || p == (char_u *)&p_rtp
6336#ifdef FEAT_SEARCHPATH
6337 || p == (char_u *)&p_cdpath
6338#endif
6339#ifdef FEAT_SESSION
6340 || p == (char_u *)&p_vdir
6341#endif
6342 )
6343 {
6344 xp->xp_context = EXPAND_DIRECTORIES;
6345 if (p == (char_u *)&p_path
6346#ifdef FEAT_SEARCHPATH
6347 || p == (char_u *)&p_cdpath
6348#endif
6349 )
6350 xp->xp_backslash = XP_BS_THREE;
6351 else
6352 xp->xp_backslash = XP_BS_ONE;
6353 }
Bram Moolenaard5e8c922021-02-02 21:10:01 +01006354 else if (p == (char_u *)&p_ft)
6355 {
6356 xp->xp_context = EXPAND_FILETYPE;
6357 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006358 else
6359 {
6360 xp->xp_context = EXPAND_FILES;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006361 // for 'tags' need three backslashes for a space
Bram Moolenaar071d4272004-06-13 20:20:40 +00006362 if (p == (char_u *)&p_tags)
6363 xp->xp_backslash = XP_BS_THREE;
6364 else
6365 xp->xp_backslash = XP_BS_ONE;
6366 }
6367 }
6368
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006369 // For an option that is a list of file names, find the start of the
6370 // last file name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006371 for (p = arg + STRLEN(arg) - 1; p > xp->xp_pattern; --p)
6372 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006373 // count number of backslashes before ' ' or ','
Bram Moolenaar071d4272004-06-13 20:20:40 +00006374 if (*p == ' ' || *p == ',')
6375 {
6376 s = p;
6377 while (s > xp->xp_pattern && *(s - 1) == '\\')
6378 --s;
6379 if ((*p == ' ' && (xp->xp_backslash == XP_BS_THREE && (p - s) < 3))
6380 || (*p == ',' && (flags & P_COMMA) && ((p - s) & 1) == 0))
6381 {
6382 xp->xp_pattern = p + 1;
6383 break;
6384 }
6385 }
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00006386
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00006387#ifdef FEAT_SPELL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006388 // for 'spellsuggest' start at "file:"
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00006389 if (options[opt_idx].var == (char_u *)&p_sps
6390 && STRNCMP(p, "file:", 5) == 0)
6391 {
6392 xp->xp_pattern = p + 5;
6393 break;
6394 }
6395#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006396 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006397}
6398
6399 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006400ExpandSettings(
6401 expand_T *xp,
6402 regmatch_T *regmatch,
6403 int *num_file,
6404 char_u ***file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006405{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006406 int num_normal = 0; // Nr of matching non-term-code settings
6407 int num_term = 0; // Nr of matching terminal code settings
Bram Moolenaar071d4272004-06-13 20:20:40 +00006408 int opt_idx;
6409 int match;
6410 int count = 0;
6411 char_u *str;
6412 int loop;
6413 int is_term_opt;
6414 char_u name_buf[MAX_KEY_NAME_LEN];
6415 static char *(names[]) = {"all", "termcap"};
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006416 int ic = regmatch->rm_ic; // remember the ignore-case flag
Bram Moolenaar071d4272004-06-13 20:20:40 +00006417
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006418 // do this loop twice:
6419 // loop == 0: count the number of matching options
6420 // loop == 1: copy the matching options into allocated memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00006421 for (loop = 0; loop <= 1; ++loop)
6422 {
6423 regmatch->rm_ic = ic;
6424 if (xp->xp_context != EXPAND_BOOL_SETTINGS)
6425 {
K.Takataeeec2542021-06-02 13:28:16 +02006426 for (match = 0; match < (int)ARRAY_LENGTH(names); ++match)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006427 if (vim_regexec(regmatch, (char_u *)names[match], (colnr_T)0))
6428 {
6429 if (loop == 0)
6430 num_normal++;
6431 else
6432 (*file)[count++] = vim_strsave((char_u *)names[match]);
6433 }
6434 }
6435 for (opt_idx = 0; (str = (char_u *)options[opt_idx].fullname) != NULL;
6436 opt_idx++)
6437 {
6438 if (options[opt_idx].var == NULL)
6439 continue;
6440 if (xp->xp_context == EXPAND_BOOL_SETTINGS
6441 && !(options[opt_idx].flags & P_BOOL))
6442 continue;
Bram Moolenaardac13472019-09-16 21:06:21 +02006443 is_term_opt = istermoption_idx(opt_idx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006444 if (is_term_opt && num_normal > 0)
6445 continue;
6446 match = FALSE;
6447 if (vim_regexec(regmatch, str, (colnr_T)0)
6448 || (options[opt_idx].shortname != NULL
6449 && vim_regexec(regmatch,
6450 (char_u *)options[opt_idx].shortname, (colnr_T)0)))
6451 match = TRUE;
6452 else if (is_term_opt)
6453 {
6454 name_buf[0] = '<';
6455 name_buf[1] = 't';
6456 name_buf[2] = '_';
6457 name_buf[3] = str[2];
6458 name_buf[4] = str[3];
6459 name_buf[5] = '>';
6460 name_buf[6] = NUL;
6461 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
6462 {
6463 match = TRUE;
6464 str = name_buf;
6465 }
6466 }
6467 if (match)
6468 {
6469 if (loop == 0)
6470 {
6471 if (is_term_opt)
6472 num_term++;
6473 else
6474 num_normal++;
6475 }
6476 else
6477 (*file)[count++] = vim_strsave(str);
6478 }
6479 }
6480 /*
6481 * Check terminal key codes, these are not in the option table
6482 */
6483 if (xp->xp_context != EXPAND_BOOL_SETTINGS && num_normal == 0)
6484 {
6485 for (opt_idx = 0; (str = get_termcode(opt_idx)) != NULL; opt_idx++)
6486 {
6487 if (!isprint(str[0]) || !isprint(str[1]))
6488 continue;
6489
6490 name_buf[0] = 't';
6491 name_buf[1] = '_';
6492 name_buf[2] = str[0];
6493 name_buf[3] = str[1];
6494 name_buf[4] = NUL;
6495
6496 match = FALSE;
6497 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
6498 match = TRUE;
6499 else
6500 {
6501 name_buf[0] = '<';
6502 name_buf[1] = 't';
6503 name_buf[2] = '_';
6504 name_buf[3] = str[0];
6505 name_buf[4] = str[1];
6506 name_buf[5] = '>';
6507 name_buf[6] = NUL;
6508
6509 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
6510 match = TRUE;
6511 }
6512 if (match)
6513 {
6514 if (loop == 0)
6515 num_term++;
6516 else
6517 (*file)[count++] = vim_strsave(name_buf);
6518 }
6519 }
6520
6521 /*
6522 * Check special key names.
6523 */
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006524 regmatch->rm_ic = TRUE; // ignore case here
Bram Moolenaar071d4272004-06-13 20:20:40 +00006525 for (opt_idx = 0; (str = get_key_name(opt_idx)) != NULL; opt_idx++)
6526 {
6527 name_buf[0] = '<';
6528 STRCPY(name_buf + 1, str);
6529 STRCAT(name_buf, ">");
6530
6531 if (vim_regexec(regmatch, name_buf, (colnr_T)0))
6532 {
6533 if (loop == 0)
6534 num_term++;
6535 else
6536 (*file)[count++] = vim_strsave(name_buf);
6537 }
6538 }
6539 }
6540 if (loop == 0)
6541 {
6542 if (num_normal > 0)
6543 *num_file = num_normal;
6544 else if (num_term > 0)
6545 *num_file = num_term;
6546 else
6547 return OK;
Bram Moolenaarc799fe22019-05-28 23:08:19 +02006548 *file = ALLOC_MULT(char_u *, *num_file);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006549 if (*file == NULL)
6550 {
6551 *file = (char_u **)"";
6552 return FAIL;
6553 }
6554 }
6555 }
6556 return OK;
6557}
6558
6559 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006560ExpandOldSetting(int *num_file, char_u ***file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006561{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006562 char_u *var = NULL; // init for GCC
Bram Moolenaar071d4272004-06-13 20:20:40 +00006563 char_u *buf;
6564
6565 *num_file = 0;
Bram Moolenaarc799fe22019-05-28 23:08:19 +02006566 *file = ALLOC_ONE(char_u *);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006567 if (*file == NULL)
6568 return FAIL;
6569
6570 /*
6571 * For a terminal key code expand_option_idx is < 0.
6572 */
6573 if (expand_option_idx < 0)
6574 {
6575 var = find_termcode(expand_option_name + 2);
6576 if (var == NULL)
6577 expand_option_idx = findoption(expand_option_name);
6578 }
6579
6580 if (expand_option_idx >= 0)
6581 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006582 // put string of option value in NameBuff
Bram Moolenaar071d4272004-06-13 20:20:40 +00006583 option_value2string(&options[expand_option_idx], expand_option_flags);
6584 var = NameBuff;
6585 }
6586 else if (var == NULL)
6587 var = (char_u *)"";
6588
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006589 // A backslash is required before some characters. This is the reverse of
6590 // what happens in do_set().
Bram Moolenaar071d4272004-06-13 20:20:40 +00006591 buf = vim_strsave_escaped(var, escape_chars);
6592
6593 if (buf == NULL)
6594 {
Bram Moolenaard23a8232018-02-10 18:45:26 +01006595 VIM_CLEAR(*file);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006596 return FAIL;
6597 }
6598
6599#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006600 // For MS-Windows et al. we don't double backslashes at the start and
6601 // before a file name character.
Bram Moolenaar91acfff2017-03-12 19:22:36 +01006602 for (var = buf; *var != NUL; MB_PTR_ADV(var))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006603 if (var[0] == '\\' && var[1] == '\\'
6604 && expand_option_idx >= 0
6605 && (options[expand_option_idx].flags & P_EXPAND)
6606 && vim_isfilec(var[2])
6607 && (var[2] != '\\' || (var == buf && var[4] != '\\')))
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +00006608 STRMOVE(var, var + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006609#endif
6610
6611 *file[0] = buf;
6612 *num_file = 1;
6613 return OK;
6614}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006615
6616/*
6617 * Get the value for the numeric or string option *opp in a nice format into
6618 * NameBuff[]. Must not be called with a hidden option!
6619 */
6620 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006621option_value2string(
6622 struct vimoption *opp,
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006623 int opt_flags) // OPT_GLOBAL and/or OPT_LOCAL
Bram Moolenaar071d4272004-06-13 20:20:40 +00006624{
6625 char_u *varp;
6626
6627 varp = get_varp_scope(opp, opt_flags);
6628
6629 if (opp->flags & P_NUM)
6630 {
6631 long wc = 0;
6632
6633 if (wc_use_keyname(varp, &wc))
6634 STRCPY(NameBuff, get_special_key_name((int)wc, 0));
6635 else if (wc != 0)
6636 STRCPY(NameBuff, transchar((int)wc));
6637 else
6638 sprintf((char *)NameBuff, "%ld", *(long *)varp);
6639 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006640 else // P_STRING
Bram Moolenaar071d4272004-06-13 20:20:40 +00006641 {
6642 varp = *(char_u **)(varp);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006643 if (varp == NULL) // just in case
Bram Moolenaar071d4272004-06-13 20:20:40 +00006644 NameBuff[0] = NUL;
6645#ifdef FEAT_CRYPT
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006646 // don't show the actual value of 'key', only that it's set
Bram Moolenaareb3593b2006-04-22 22:33:57 +00006647 else if (opp->var == (char_u *)&p_key && *varp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006648 STRCPY(NameBuff, "*****");
6649#endif
6650 else if (opp->flags & P_EXPAND)
6651 home_replace(NULL, varp, NameBuff, MAXPATHL, FALSE);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006652 // Translate 'pastetoggle' into special key names
Bram Moolenaar071d4272004-06-13 20:20:40 +00006653 else if ((char_u **)opp->var == &p_pt)
6654 str2specialbuf(p_pt, NameBuff, MAXPATHL);
6655 else
Bram Moolenaarce0842a2005-07-18 21:58:11 +00006656 vim_strncpy(NameBuff, varp, MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006657 }
6658}
6659
6660/*
6661 * Return TRUE if "varp" points to 'wildchar' or 'wildcharm' and it can be
6662 * printed as a keyname.
6663 * "*wcp" is set to the value of the option if it's 'wildchar' or 'wildcharm'.
6664 */
6665 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006666wc_use_keyname(char_u *varp, long *wcp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006667{
6668 if (((long *)varp == &p_wc) || ((long *)varp == &p_wcm))
6669 {
6670 *wcp = *(long *)varp;
6671 if (IS_SPECIAL(*wcp) || find_special_key_in_table((int)*wcp) >= 0)
6672 return TRUE;
6673 }
6674 return FALSE;
6675}
6676
Bram Moolenaar071d4272004-06-13 20:20:40 +00006677/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006678 * Return TRUE if "x" is present in 'shortmess' option, or
6679 * 'shortmess' contains 'a' and "x" is present in SHM_A.
6680 */
6681 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006682shortmess(int x)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006683{
Bram Moolenaar7f29f7a2012-02-29 13:51:37 +01006684 return p_shm != NULL &&
6685 ( vim_strchr(p_shm, x) != NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00006686 || (vim_strchr(p_shm, 'a') != NULL
6687 && vim_strchr((char_u *)SHM_A, x) != NULL));
6688}
6689
6690/*
6691 * paste_option_changed() - Called after p_paste was set or reset.
6692 */
6693 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006694paste_option_changed(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006695{
6696 static int old_p_paste = FALSE;
6697 static int save_sm = 0;
Bram Moolenaar54f018c2015-09-15 17:30:40 +02006698 static int save_sta = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006699#ifdef FEAT_CMDL_INFO
6700 static int save_ru = 0;
6701#endif
6702#ifdef FEAT_RIGHTLEFT
6703 static int save_ri = 0;
6704 static int save_hkmap = 0;
6705#endif
6706 buf_T *buf;
6707
6708 if (p_paste)
6709 {
6710 /*
6711 * Paste switched from off to on.
6712 * Save the current values, so they can be restored later.
6713 */
6714 if (!old_p_paste)
6715 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006716 // save options for each buffer
Bram Moolenaar29323592016-07-24 22:04:11 +02006717 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006718 {
6719 buf->b_p_tw_nopaste = buf->b_p_tw;
6720 buf->b_p_wm_nopaste = buf->b_p_wm;
6721 buf->b_p_sts_nopaste = buf->b_p_sts;
6722 buf->b_p_ai_nopaste = buf->b_p_ai;
Bram Moolenaar54f018c2015-09-15 17:30:40 +02006723 buf->b_p_et_nopaste = buf->b_p_et;
Bram Moolenaar04958cb2018-06-23 19:23:02 +02006724#ifdef FEAT_VARTABS
6725 if (buf->b_p_vsts_nopaste)
6726 vim_free(buf->b_p_vsts_nopaste);
6727 buf->b_p_vsts_nopaste = buf->b_p_vsts && buf->b_p_vsts != empty_option
6728 ? vim_strsave(buf->b_p_vsts) : NULL;
6729#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006730 }
6731
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006732 // save global options
Bram Moolenaar071d4272004-06-13 20:20:40 +00006733 save_sm = p_sm;
Bram Moolenaar54f018c2015-09-15 17:30:40 +02006734 save_sta = p_sta;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006735#ifdef FEAT_CMDL_INFO
6736 save_ru = p_ru;
6737#endif
6738#ifdef FEAT_RIGHTLEFT
6739 save_ri = p_ri;
6740 save_hkmap = p_hkmap;
6741#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006742 // save global values for local buffer options
Bram Moolenaar54f018c2015-09-15 17:30:40 +02006743 p_ai_nopaste = p_ai;
6744 p_et_nopaste = p_et;
6745 p_sts_nopaste = p_sts;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006746 p_tw_nopaste = p_tw;
6747 p_wm_nopaste = p_wm;
Bram Moolenaar04958cb2018-06-23 19:23:02 +02006748#ifdef FEAT_VARTABS
6749 if (p_vsts_nopaste)
6750 vim_free(p_vsts_nopaste);
6751 p_vsts_nopaste = p_vsts && p_vsts != empty_option ? vim_strsave(p_vsts) : NULL;
6752#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006753 }
6754
6755 /*
6756 * Always set the option values, also when 'paste' is set when it is
6757 * already on.
6758 */
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006759 // set options for each buffer
Bram Moolenaar29323592016-07-24 22:04:11 +02006760 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006761 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006762 buf->b_p_tw = 0; // textwidth is 0
6763 buf->b_p_wm = 0; // wrapmargin is 0
6764 buf->b_p_sts = 0; // softtabstop is 0
6765 buf->b_p_ai = 0; // no auto-indent
6766 buf->b_p_et = 0; // no expandtab
Bram Moolenaar04958cb2018-06-23 19:23:02 +02006767#ifdef FEAT_VARTABS
6768 if (buf->b_p_vsts)
6769 free_string_option(buf->b_p_vsts);
6770 buf->b_p_vsts = empty_option;
6771 if (buf->b_p_vsts_array)
6772 vim_free(buf->b_p_vsts_array);
6773 buf->b_p_vsts_array = 0;
6774#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006775 }
6776
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006777 // set global options
6778 p_sm = 0; // no showmatch
6779 p_sta = 0; // no smarttab
Bram Moolenaar071d4272004-06-13 20:20:40 +00006780#ifdef FEAT_CMDL_INFO
Bram Moolenaar071d4272004-06-13 20:20:40 +00006781 if (p_ru)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006782 status_redraw_all(); // redraw to remove the ruler
6783 p_ru = 0; // no ruler
Bram Moolenaar071d4272004-06-13 20:20:40 +00006784#endif
6785#ifdef FEAT_RIGHTLEFT
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006786 p_ri = 0; // no reverse insert
6787 p_hkmap = 0; // no Hebrew keyboard
Bram Moolenaar071d4272004-06-13 20:20:40 +00006788#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006789 // set global values for local buffer options
Bram Moolenaar071d4272004-06-13 20:20:40 +00006790 p_tw = 0;
6791 p_wm = 0;
6792 p_sts = 0;
6793 p_ai = 0;
Bram Moolenaar04958cb2018-06-23 19:23:02 +02006794#ifdef FEAT_VARTABS
6795 if (p_vsts)
6796 free_string_option(p_vsts);
6797 p_vsts = empty_option;
6798#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006799 }
6800
6801 /*
6802 * Paste switched from on to off: Restore saved values.
6803 */
6804 else if (old_p_paste)
6805 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006806 // restore options for each buffer
Bram Moolenaar29323592016-07-24 22:04:11 +02006807 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006808 {
6809 buf->b_p_tw = buf->b_p_tw_nopaste;
6810 buf->b_p_wm = buf->b_p_wm_nopaste;
6811 buf->b_p_sts = buf->b_p_sts_nopaste;
6812 buf->b_p_ai = buf->b_p_ai_nopaste;
Bram Moolenaar54f018c2015-09-15 17:30:40 +02006813 buf->b_p_et = buf->b_p_et_nopaste;
Bram Moolenaar04958cb2018-06-23 19:23:02 +02006814#ifdef FEAT_VARTABS
6815 if (buf->b_p_vsts)
6816 free_string_option(buf->b_p_vsts);
6817 buf->b_p_vsts = buf->b_p_vsts_nopaste
6818 ? vim_strsave(buf->b_p_vsts_nopaste) : empty_option;
6819 if (buf->b_p_vsts_array)
6820 vim_free(buf->b_p_vsts_array);
6821 if (buf->b_p_vsts && buf->b_p_vsts != empty_option)
Bram Moolenaarb7081e12021-09-04 18:47:28 +02006822 (void)tabstop_set(buf->b_p_vsts, &buf->b_p_vsts_array);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02006823 else
6824 buf->b_p_vsts_array = 0;
6825#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006826 }
6827
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006828 // restore global options
Bram Moolenaar071d4272004-06-13 20:20:40 +00006829 p_sm = save_sm;
Bram Moolenaar54f018c2015-09-15 17:30:40 +02006830 p_sta = save_sta;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006831#ifdef FEAT_CMDL_INFO
Bram Moolenaar071d4272004-06-13 20:20:40 +00006832 if (p_ru != save_ru)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006833 status_redraw_all(); // redraw to draw the ruler
Bram Moolenaar071d4272004-06-13 20:20:40 +00006834 p_ru = save_ru;
6835#endif
6836#ifdef FEAT_RIGHTLEFT
6837 p_ri = save_ri;
6838 p_hkmap = save_hkmap;
6839#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006840 // set global values for local buffer options
Bram Moolenaar54f018c2015-09-15 17:30:40 +02006841 p_ai = p_ai_nopaste;
6842 p_et = p_et_nopaste;
6843 p_sts = p_sts_nopaste;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006844 p_tw = p_tw_nopaste;
6845 p_wm = p_wm_nopaste;
Bram Moolenaar04958cb2018-06-23 19:23:02 +02006846#ifdef FEAT_VARTABS
6847 if (p_vsts)
6848 free_string_option(p_vsts);
6849 p_vsts = p_vsts_nopaste ? vim_strsave(p_vsts_nopaste) : empty_option;
6850#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006851 }
6852
6853 old_p_paste = p_paste;
6854}
6855
6856/*
6857 * vimrc_found() - Called when a ".vimrc" or "VIMINIT" has been found.
6858 *
6859 * Reset 'compatible' and set the values for options that didn't get set yet
6860 * to the Vim defaults.
6861 * Don't do this if the 'compatible' option has been set or reset before.
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006862 * When "fname" is not NULL, use it to set $"envname" when it wasn't set yet.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006863 */
6864 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006865vimrc_found(char_u *fname, char_u *envname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006866{
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006867 int opt_idx;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +00006868 int dofree = FALSE;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006869 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006870
6871 if (!option_was_set((char_u *)"cp"))
6872 {
6873 p_cp = FALSE;
Bram Moolenaardac13472019-09-16 21:06:21 +02006874 for (opt_idx = 0; !istermoption_idx(opt_idx); opt_idx++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006875 if (!(options[opt_idx].flags & (P_WAS_SET|P_VI_DEF)))
6876 set_option_default(opt_idx, OPT_FREE, FALSE);
6877 didset_options();
Bram Moolenaare68c25c2015-08-25 15:39:55 +02006878 didset_options2();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006879 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006880
6881 if (fname != NULL)
6882 {
6883 p = vim_getenv(envname, &dofree);
6884 if (p == NULL)
6885 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006886 // Set $MYVIMRC to the first vimrc file found.
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006887 p = FullName_save(fname, FALSE);
6888 if (p != NULL)
6889 {
6890 vim_setenv(envname, p);
6891 vim_free(p);
6892 }
6893 }
6894 else if (dofree)
6895 vim_free(p);
6896 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006897}
6898
6899/*
6900 * Set 'compatible' on or off. Called for "-C" and "-N" command line arg.
6901 */
6902 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006903change_compatible(int on)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006904{
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00006905 int opt_idx;
6906
Bram Moolenaar071d4272004-06-13 20:20:40 +00006907 if (p_cp != on)
6908 {
6909 p_cp = on;
6910 compatible_set();
6911 }
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00006912 opt_idx = findoption((char_u *)"cp");
6913 if (opt_idx >= 0)
6914 options[opt_idx].flags |= P_WAS_SET;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006915}
6916
6917/*
6918 * Return TRUE when option "name" has been set.
Bram Moolenaar1a4a75c2013-07-28 16:03:06 +02006919 * Only works correctly for global options.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006920 */
6921 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006922option_was_set(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006923{
6924 int idx;
6925
6926 idx = findoption(name);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006927 if (idx < 0) // unknown option
Bram Moolenaar071d4272004-06-13 20:20:40 +00006928 return FALSE;
6929 if (options[idx].flags & P_WAS_SET)
6930 return TRUE;
6931 return FALSE;
6932}
6933
6934/*
Bram Moolenaar15d55de2012-12-05 14:43:02 +01006935 * Reset the flag indicating option "name" was set.
6936 */
Bram Moolenaarfe8ef982018-09-13 20:31:54 +02006937 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006938reset_option_was_set(char_u *name)
Bram Moolenaar15d55de2012-12-05 14:43:02 +01006939{
6940 int idx = findoption(name);
6941
6942 if (idx >= 0)
Bram Moolenaarfe8ef982018-09-13 20:31:54 +02006943 {
Bram Moolenaar15d55de2012-12-05 14:43:02 +01006944 options[idx].flags &= ~P_WAS_SET;
Bram Moolenaarfe8ef982018-09-13 20:31:54 +02006945 return OK;
6946 }
6947 return FAIL;
Bram Moolenaar15d55de2012-12-05 14:43:02 +01006948}
6949
6950/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006951 * compatible_set() - Called when 'compatible' has been set or unset.
6952 *
6953 * When 'compatible' set: Set all relevant options (those that have the P_VIM)
6954 * flag) to a Vi compatible value.
6955 * When 'compatible' is unset: Set all options that have a different default
6956 * for Vim (without the P_VI_DEF flag) to that default.
6957 */
6958 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006959compatible_set(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006960{
6961 int opt_idx;
6962
Bram Moolenaardac13472019-09-16 21:06:21 +02006963 for (opt_idx = 0; !istermoption_idx(opt_idx); opt_idx++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006964 if ( ((options[opt_idx].flags & P_VIM) && p_cp)
6965 || (!(options[opt_idx].flags & P_VI_DEF) && !p_cp))
6966 set_option_default(opt_idx, OPT_FREE, p_cp);
6967 didset_options();
Bram Moolenaare68c25c2015-08-25 15:39:55 +02006968 didset_options2();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006969}
6970
Bram Moolenaardac13472019-09-16 21:06:21 +02006971#if defined(FEAT_LINEBREAK) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006972
Bram Moolenaar071d4272004-06-13 20:20:40 +00006973/*
6974 * fill_breakat_flags() -- called when 'breakat' changes value.
6975 */
Bram Moolenaardac13472019-09-16 21:06:21 +02006976 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006977fill_breakat_flags(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006978{
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00006979 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006980 int i;
6981
6982 for (i = 0; i < 256; i++)
6983 breakat_flags[i] = FALSE;
6984
6985 if (p_breakat != NULL)
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00006986 for (p = p_breakat; *p; p++)
6987 breakat_flags[*p] = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006988}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006989#endif
6990
6991/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006992 * Check if backspacing over something is allowed.
6993 */
6994 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006995can_bs(
Bram Moolenaaraa0489e2020-04-17 19:41:21 +02006996 int what) // BS_INDENT, BS_EOL, BS_START or BS_NOSTOP
Bram Moolenaar071d4272004-06-13 20:20:40 +00006997{
Bram Moolenaar6b810d92018-06-04 17:28:44 +02006998#ifdef FEAT_JOB_CHANNEL
6999 if (what == BS_START && bt_prompt(curbuf))
7000 return FALSE;
7001#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007002 switch (*p_bs)
7003 {
Bram Moolenaaraa0489e2020-04-17 19:41:21 +02007004 case '3': return TRUE;
7005 case '2': return (what != BS_NOSTOP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007006 case '1': return (what != BS_START);
7007 case '0': return FALSE;
7008 }
7009 return vim_strchr(p_bs, what) != NULL;
7010}
7011
7012/*
Bram Moolenaar375e3392019-01-31 18:26:10 +01007013 * Return the effective 'scrolloff' value for the current window, using the
7014 * global value when appropriate.
7015 */
7016 long
7017get_scrolloff_value(void)
7018{
7019 return curwin->w_p_so < 0 ? p_so : curwin->w_p_so;
7020}
7021
7022/*
7023 * Return the effective 'sidescrolloff' value for the current window, using the
7024 * global value when appropriate.
7025 */
7026 long
7027get_sidescrolloff_value(void)
7028{
7029 return curwin->w_p_siso < 0 ? p_siso : curwin->w_p_siso;
7030}
7031
7032/*
Bram Moolenaarb8ee25a2014-09-23 15:45:08 +02007033 * Get the local or global value of 'backupcopy'.
7034 */
7035 unsigned int
Bram Moolenaar9b578142016-01-30 19:39:49 +01007036get_bkc_value(buf_T *buf)
Bram Moolenaarb8ee25a2014-09-23 15:45:08 +02007037{
7038 return buf->b_bkc_flags ? buf->b_bkc_flags : bkc_flags;
7039}
Bram Moolenaar95ec9d62016-08-12 18:29:59 +02007040
Gary Johnson53ba05b2021-07-26 22:19:10 +02007041/*
7042 * Get the local or global value of the 'virtualedit' flags.
7043 */
7044 unsigned int
7045get_ve_flags(void)
7046{
Gary Johnson51ad8502021-08-03 18:33:08 +02007047 return (curwin->w_ve_flags ? curwin->w_ve_flags : ve_flags)
7048 & ~(VE_NONE | VE_NONEU);
Gary Johnson53ba05b2021-07-26 22:19:10 +02007049}
7050
Bram Moolenaaree857022019-11-09 23:26:40 +01007051#if defined(FEAT_LINEBREAK) || defined(PROTO)
7052/*
7053 * Get the local or global value of 'showbreak'.
7054 */
7055 char_u *
7056get_showbreak_value(win_T *win)
7057{
7058 if (win->w_p_sbr == NULL || *win->w_p_sbr == NUL)
7059 return p_sbr;
7060 if (STRCMP(win->w_p_sbr, "NONE") == 0)
7061 return empty_option;
7062 return win->w_p_sbr;
7063}
7064#endif
7065
Bram Moolenaarb5ae48e2016-08-12 22:23:25 +02007066#if defined(FEAT_EVAL) || defined(PROTO)
7067/*
7068 * Get window or buffer local options.
7069 */
7070 dict_T *
7071get_winbuf_options(int bufopt)
7072{
7073 dict_T *d;
7074 int opt_idx;
7075
7076 d = dict_alloc();
7077 if (d == NULL)
7078 return NULL;
7079
Bram Moolenaardac13472019-09-16 21:06:21 +02007080 for (opt_idx = 0; !istermoption_idx(opt_idx); opt_idx++)
Bram Moolenaarb5ae48e2016-08-12 22:23:25 +02007081 {
7082 struct vimoption *opt = &options[opt_idx];
7083
7084 if ((bufopt && (opt->indir & PV_BUF))
7085 || (!bufopt && (opt->indir & PV_WIN)))
7086 {
7087 char_u *varp = get_varp(opt);
7088
7089 if (varp != NULL)
7090 {
7091 if (opt->flags & P_STRING)
Bram Moolenaare0be1672018-07-08 16:50:37 +02007092 dict_add_string(d, opt->fullname, *(char_u **)varp);
Bram Moolenaar789a5c02016-09-12 19:51:11 +02007093 else if (opt->flags & P_NUM)
Bram Moolenaare0be1672018-07-08 16:50:37 +02007094 dict_add_number(d, opt->fullname, *(long *)varp);
Bram Moolenaarb5ae48e2016-08-12 22:23:25 +02007095 else
Bram Moolenaare0be1672018-07-08 16:50:37 +02007096 dict_add_number(d, opt->fullname, *(int *)varp);
Bram Moolenaarb5ae48e2016-08-12 22:23:25 +02007097 }
7098 }
7099 }
7100
7101 return d;
7102}
7103#endif
Bram Moolenaar017ba072019-09-14 21:01:23 +02007104
Bram Moolenaardac13472019-09-16 21:06:21 +02007105#if defined(FEAT_SYN_HL) || defined(PROTO)
Bram Moolenaar017ba072019-09-14 21:01:23 +02007106/*
7107 * This is called when 'culopt' is changed
7108 */
Bram Moolenaardac13472019-09-16 21:06:21 +02007109 int
Bram Moolenaar017ba072019-09-14 21:01:23 +02007110fill_culopt_flags(char_u *val, win_T *wp)
7111{
7112 char_u *p;
7113 char_u culopt_flags_new = 0;
7114
7115 if (val == NULL)
7116 p = wp->w_p_culopt;
7117 else
7118 p = val;
7119 while (*p != NUL)
7120 {
7121 if (STRNCMP(p, "line", 4) == 0)
7122 {
7123 p += 4;
7124 culopt_flags_new |= CULOPT_LINE;
7125 }
7126 else if (STRNCMP(p, "both", 4) == 0)
7127 {
7128 p += 4;
7129 culopt_flags_new |= CULOPT_LINE | CULOPT_NBR;
7130 }
7131 else if (STRNCMP(p, "number", 6) == 0)
7132 {
7133 p += 6;
7134 culopt_flags_new |= CULOPT_NBR;
7135 }
7136 else if (STRNCMP(p, "screenline", 10) == 0)
7137 {
7138 p += 10;
7139 culopt_flags_new |= CULOPT_SCRLINE;
7140 }
7141
7142 if (*p != ',' && *p != NUL)
7143 return FAIL;
7144 if (*p == ',')
7145 ++p;
7146 }
7147
7148 // Can't have both "line" and "screenline".
7149 if ((culopt_flags_new & CULOPT_LINE) && (culopt_flags_new & CULOPT_SCRLINE))
7150 return FAIL;
7151 wp->w_p_culopt_flags = culopt_flags_new;
7152
7153 return OK;
7154}
7155#endif
Bram Moolenaarf4e20992020-12-21 19:59:08 +01007156
7157/*
7158 * Get the value of 'magic' adjusted for Vim9 script.
7159 */
7160 int
7161magic_isset(void)
7162{
7163 switch (magic_overruled)
7164 {
Bram Moolenaard93a7fc2021-01-04 12:42:13 +01007165 case OPTION_MAGIC_ON: return TRUE;
7166 case OPTION_MAGIC_OFF: return FALSE;
7167 case OPTION_MAGIC_NOT_SET: break;
Bram Moolenaarf4e20992020-12-21 19:59:08 +01007168 }
7169#ifdef FEAT_EVAL
7170 if (in_vim9script())
7171 return TRUE;
7172#endif
7173 return p_magic;
7174}