annotate src/option.c @ 31964:c0a9bc376b54 v9.0.1314

patch 9.0.1314: :messages behavior depends on 'fileformat' of current buffer Commit: https://github.com/vim/vim/commit/1d87e11a1ef201b26ed87585fba70182ad0c468a Author: cero1988 <mirkoceroni@mirkoceroni.it> Date: Thu Feb 16 15:03:12 2023 +0000 patch 9.0.1314: :messages behavior depends on 'fileformat' of current buffer Problem: :messages behavior depends on 'fileformat' of current buffer. Solution: Pass the buffer pointer to where it is used. (Mirko Ceroni, closes #11995)
author Bram Moolenaar <Bram@vim.org>
date Thu, 16 Feb 2023 16:15:04 +0100
parents 4efcb5c68112
children ca6bc7c04163
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
10042
4aead6a9b7a9 commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents: 9959
diff changeset
1 /* vi:set ts=8 sts=4 sw=4 noet:
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3 * VIM - Vi IMproved by Bram Moolenaar
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5 * Do ":help uganda" in Vim to read copying and usage conditions.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6 * Do ":help credits" in Vim to see a list of people who contributed.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7 * See README.txt for an overview of the Vim source code.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
9
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
10 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
11 * Code to handle user-settable options. This is all pretty much table-
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
12 * driven. Checklist for adding a new option:
31886
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
13 * - Put it in the options array in optiondefs.h (copy an existing entry).
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
14 * - For a global option: Add a variable for it in option.h.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
15 * - For a buffer or window local option:
31886
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
16 * - Add a PV_XX macro definition to the optiondefs.h file.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
17 * - Add a variable to the window or buffer struct in structs.h.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
18 * - For a window option, add some code to copy_winopt().
31886
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
19 * - For a window string option, add code to check_win_options() and
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
20 * clear_winopt().
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
21 * - For a buffer option, add some code to buf_copy_options().
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
22 * - For a buffer string option, add code to check_buf_options().
31886
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
23 * - If it's a numeric option, add any necessary bounds checks to
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
24 * set_num_option().
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
25 * - If it's a list of flags, add some code in did_set_string_option(), search
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
26 * for WW_ALL.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
27 * - When adding an option with expansion (P_EXPAND), but with a different
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
28 * default for Vi and Vim (no P_VI_DEF), add some code at VIMEXP.
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10205
diff changeset
29 * - Add documentation! One line in doc/quickref.txt, full description in
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
30 * options.txt, and any other related places.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
31 * - Add an entry in runtime/optwin.vim.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
32 * When making changes:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
33 * - Adjust the help for the option in doc/option.txt.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
34 * - When an entry has the P_VIM flag, or is lacking the P_VI_DEF flag, add a
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
35 * comment at the help for the 'compatible' option.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
36 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
37
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
38 #define IN_OPTION_C
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
39 #include "vim.h"
18054
88b5c2b4e3d2 patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18047
diff changeset
40 #include "optiondefs.h"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
41
7805
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7697
diff changeset
42 static void set_options_default(int opt_flags);
13162
51521b8a370c patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect
Christian Brabandt <cb@256bit.org>
parents: 13154
diff changeset
43 static void set_string_default_esc(char *name, char_u *val, int escape);
22234
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
44 static char_u *find_dup_item(char_u *origval, char_u *newval, long_u flags);
7805
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7697
diff changeset
45 static char_u *option_expand(int opt_idx, char_u *val);
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7697
diff changeset
46 static void didset_options(void);
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7697
diff changeset
47 static void didset_options2(void);
681
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
48 #if defined(FEAT_EVAL) || defined(PROTO)
7805
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7697
diff changeset
49 static long_u *insecure_flag(int opt_idx, int opt_flags);
681
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
50 #else
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
51 # define insecure_flag(opt_idx, opt_flags) (&options[opt_idx].flags)
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
52 #endif
15470
55ccc2d353bd patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents: 15207
diff changeset
53 static char *set_bool_option(int opt_idx, char_u *varp, int value, int opt_flags);
55ccc2d353bd patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents: 15207
diff changeset
54 static char *set_num_option(int opt_idx, char_u *varp, long value, char *errbuf, size_t errbuflen, int opt_flags);
14381
d9e6eec551e1 patch 8.1.0205: invalid memory access with invalid modeline
Christian Brabandt <cb@256bit.org>
parents: 14313
diff changeset
55 static int find_key_option(char_u *arg_arg, int has_lt);
7805
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7697
diff changeset
56 static void showoptions(int all, int opt_flags);
16843
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
57 static int optval_default(struct vimoption *, char_u *varp, int compatible);
7805
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7697
diff changeset
58 static void showoneopt(struct vimoption *, int opt_flags);
15613
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
59 static int put_setstring(FILE *fd, char *cmd, char *name, char_u **valuep, long_u flags);
7805
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7697
diff changeset
60 static int put_setnum(FILE *fd, char *cmd, char *name, long *valuep);
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7697
diff changeset
61 static int put_setbool(FILE *fd, char *cmd, char *name, int value);
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
62 static int istermoption(struct vimoption *p);
26441
65ab0b035dd8 patch 8.2.3751: cannot assign a lambda to an option that takes a function
Bram Moolenaar <Bram@vim.org>
parents: 26400
diff changeset
63 static char_u *get_varp_scope(struct vimoption *p, int scope);
7805
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7697
diff changeset
64 static char_u *get_varp(struct vimoption *);
17789
0f7ae8010787 patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents: 17781
diff changeset
65 static void check_win_options(win_T *win);
26441
65ab0b035dd8 patch 8.2.3751: cannot assign a lambda to an option that takes a function
Bram Moolenaar <Bram@vim.org>
parents: 26400
diff changeset
66 static void option_value2string(struct vimoption *, int scope);
7805
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7697
diff changeset
67 static void check_winopt(winopt_T *wop);
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7697
diff changeset
68 static int wc_use_keyname(char_u *varp, long *wcp);
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7697
diff changeset
69 static void paste_option_changed(void);
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7697
diff changeset
70 static void compatible_set(void);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
71
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
72 /*
31926
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
73 * Initialize the 'shell' option to a default value.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
74 */
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
75 static void
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
76 set_init_default_shell(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
77 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
78 char_u *p;
31926
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
79
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
80 // Find default value for 'shell' option.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
81 // Don't use it if it is empty.
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 148
diff changeset
82 if (((p = mch_getenv((char_u *)"SHELL")) != NULL && *p != NUL)
8212
05b88224cea1 commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce
Christian Brabandt <cb@256bit.org>
parents: 8182
diff changeset
83 #if defined(MSWIN)
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 148
diff changeset
84 || ((p = mch_getenv((char_u *)"COMSPEC")) != NULL && *p != NUL)
8080
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 7829
diff changeset
85 || ((p = (char_u *)default_shell()) != NULL && *p != NUL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
86 #endif
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 148
diff changeset
87 )
18241
85160a3649b9 patch 8.1.2115: MS-Windows: shell commands fail if &shell contains a space
Bram Moolenaar <Bram@vim.org>
parents: 18225
diff changeset
88 #if defined(MSWIN)
85160a3649b9 patch 8.1.2115: MS-Windows: shell commands fail if &shell contains a space
Bram Moolenaar <Bram@vim.org>
parents: 18225
diff changeset
89 {
85160a3649b9 patch 8.1.2115: MS-Windows: shell commands fail if &shell contains a space
Bram Moolenaar <Bram@vim.org>
parents: 18225
diff changeset
90 // For MS-Windows put the path in quotes instead of escaping spaces.
85160a3649b9 patch 8.1.2115: MS-Windows: shell commands fail if &shell contains a space
Bram Moolenaar <Bram@vim.org>
parents: 18225
diff changeset
91 char_u *cmd;
85160a3649b9 patch 8.1.2115: MS-Windows: shell commands fail if &shell contains a space
Bram Moolenaar <Bram@vim.org>
parents: 18225
diff changeset
92 size_t len;
85160a3649b9 patch 8.1.2115: MS-Windows: shell commands fail if &shell contains a space
Bram Moolenaar <Bram@vim.org>
parents: 18225
diff changeset
93
85160a3649b9 patch 8.1.2115: MS-Windows: shell commands fail if &shell contains a space
Bram Moolenaar <Bram@vim.org>
parents: 18225
diff changeset
94 if (vim_strchr(p, ' ') != NULL)
85160a3649b9 patch 8.1.2115: MS-Windows: shell commands fail if &shell contains a space
Bram Moolenaar <Bram@vim.org>
parents: 18225
diff changeset
95 {
85160a3649b9 patch 8.1.2115: MS-Windows: shell commands fail if &shell contains a space
Bram Moolenaar <Bram@vim.org>
parents: 18225
diff changeset
96 len = STRLEN(p) + 3; // two quotes and a trailing NUL
85160a3649b9 patch 8.1.2115: MS-Windows: shell commands fail if &shell contains a space
Bram Moolenaar <Bram@vim.org>
parents: 18225
diff changeset
97 cmd = alloc(len);
18243
463da8586749 patch 8.1.2116: no check for out of memory
Bram Moolenaar <Bram@vim.org>
parents: 18241
diff changeset
98 if (cmd != NULL)
463da8586749 patch 8.1.2116: no check for out of memory
Bram Moolenaar <Bram@vim.org>
parents: 18241
diff changeset
99 {
463da8586749 patch 8.1.2116: no check for out of memory
Bram Moolenaar <Bram@vim.org>
parents: 18241
diff changeset
100 vim_snprintf((char *)cmd, len, "\"%s\"", p);
463da8586749 patch 8.1.2116: no check for out of memory
Bram Moolenaar <Bram@vim.org>
parents: 18241
diff changeset
101 set_string_default("sh", cmd);
463da8586749 patch 8.1.2116: no check for out of memory
Bram Moolenaar <Bram@vim.org>
parents: 18241
diff changeset
102 vim_free(cmd);
463da8586749 patch 8.1.2116: no check for out of memory
Bram Moolenaar <Bram@vim.org>
parents: 18241
diff changeset
103 }
18241
85160a3649b9 patch 8.1.2115: MS-Windows: shell commands fail if &shell contains a space
Bram Moolenaar <Bram@vim.org>
parents: 18225
diff changeset
104 }
85160a3649b9 patch 8.1.2115: MS-Windows: shell commands fail if &shell contains a space
Bram Moolenaar <Bram@vim.org>
parents: 18225
diff changeset
105 else
85160a3649b9 patch 8.1.2115: MS-Windows: shell commands fail if &shell contains a space
Bram Moolenaar <Bram@vim.org>
parents: 18225
diff changeset
106 set_string_default("sh", p);
85160a3649b9 patch 8.1.2115: MS-Windows: shell commands fail if &shell contains a space
Bram Moolenaar <Bram@vim.org>
parents: 18225
diff changeset
107 }
85160a3649b9 patch 8.1.2115: MS-Windows: shell commands fail if &shell contains a space
Bram Moolenaar <Bram@vim.org>
parents: 18225
diff changeset
108 #else
13162
51521b8a370c patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect
Christian Brabandt <cb@256bit.org>
parents: 13154
diff changeset
109 set_string_default_esc("sh", p, TRUE);
18241
85160a3649b9 patch 8.1.2115: MS-Windows: shell commands fail if &shell contains a space
Bram Moolenaar <Bram@vim.org>
parents: 18225
diff changeset
110 #endif
31926
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
111 }
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
112
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
113 /*
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
114 * Set the default for 'backupskip' to include environment variables for
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
115 * temp files.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
116 */
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
117 static void
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
118 set_init_default_backupskip(void)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
119 {
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
120 int opt_idx;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
121 long_u n;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
122 char_u *p;
29879
77141226eb2e patch 9.0.0278: the +wildignore feature is nearly always available
Bram Moolenaar <Bram@vim.org>
parents: 29853
diff changeset
123 #ifdef UNIX
31926
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
124 static char *(names[4]) = {"", "TMPDIR", "TEMP", "TMP"};
29879
77141226eb2e patch 9.0.0278: the +wildignore feature is nearly always available
Bram Moolenaar <Bram@vim.org>
parents: 29853
diff changeset
125 #else
31926
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
126 static char *(names[3]) = {"TMPDIR", "TEMP", "TMP"};
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
127 #endif
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
128 int len;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
129 garray_T ga;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
130 int mustfree;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
131 char_u *item;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
132
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
133 opt_idx = findoption((char_u *)"backupskip");
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
134
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
135 ga_init2(&ga, 1, 100);
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
136 for (n = 0; n < (long)ARRAY_LENGTH(names); ++n)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
137 {
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
138 mustfree = FALSE;
29879
77141226eb2e patch 9.0.0278: the +wildignore feature is nearly always available
Bram Moolenaar <Bram@vim.org>
parents: 29853
diff changeset
139 #ifdef UNIX
31926
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
140 if (*names[n] == NUL)
29879
77141226eb2e patch 9.0.0278: the +wildignore feature is nearly always available
Bram Moolenaar <Bram@vim.org>
parents: 29853
diff changeset
141 # ifdef MACOS_X
31926
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
142 p = (char_u *)"/private/tmp";
29879
77141226eb2e patch 9.0.0278: the +wildignore feature is nearly always available
Bram Moolenaar <Bram@vim.org>
parents: 29853
diff changeset
143 # else
31926
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
144 p = (char_u *)"/tmp";
29879
77141226eb2e patch 9.0.0278: the +wildignore feature is nearly always available
Bram Moolenaar <Bram@vim.org>
parents: 29853
diff changeset
145 # endif
31926
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
146 else
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
147 #endif
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
148 p = vim_getenv((char_u *)names[n], &mustfree);
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
149 if (p != NULL && *p != NUL)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
150 {
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
151 // First time count the NUL, otherwise count the ','.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
152 len = (int)STRLEN(p) + 3;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
153 item = alloc(len);
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
154 STRCPY(item, p);
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
155 add_pathsep(item);
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
156 STRCAT(item, "*");
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
157 if (find_dup_item(ga.ga_data, item, options[opt_idx].flags)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
158 == NULL
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
159 && ga_grow(&ga, len) == OK)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
160 {
31926
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
161 if (ga.ga_len > 0)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
162 STRCAT(ga.ga_data, ",");
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
163 STRCAT(ga.ga_data, item);
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
164 ga.ga_len += len;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
165 }
31926
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
166 vim_free(item);
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
167 }
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
168 if (mustfree)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
169 vim_free(p);
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
170 }
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
171 if (ga.ga_data != NULL)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
172 {
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
173 set_string_default("bsk", ga.ga_data);
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
174 vim_free(ga.ga_data);
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
175 }
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
176 }
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
177
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
178 /*
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
179 * Initialize the 'maxmemtot' and 'maxmem' options to a default value.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
180 * 'maxmemtot' and 'maxmem' may have to be adjusted for available memory.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
181 */
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
182 static void
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
183 set_init_default_maxmemtot(void)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
184 {
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
185 int opt_idx;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
186 long_u n;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
187
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
188 opt_idx = findoption((char_u *)"maxmemtot");
31952
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
189 if (opt_idx < 0)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
190 return;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
191
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
192 #if !defined(HAVE_AVAIL_MEM) && !defined(HAVE_TOTAL_MEM)
31952
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
193 if (options[opt_idx].def_val[VI_DEFAULT] == (char_u *)0L)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
194 #endif
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
195 {
28337
1cd053ebb5fc patch 8.2.4694: avoidance of #elif causes more preproc nesting
Bram Moolenaar <Bram@vim.org>
parents: 28177
diff changeset
196 #if defined(HAVE_AVAIL_MEM)
31952
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
197 // Use amount of memory available at this moment.
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
198 n = (mch_avail_mem(FALSE) >> 1);
28337
1cd053ebb5fc patch 8.2.4694: avoidance of #elif causes more preproc nesting
Bram Moolenaar <Bram@vim.org>
parents: 28177
diff changeset
199 #elif defined(HAVE_TOTAL_MEM)
31952
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
200 // Use amount of memory available to Vim.
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
201 n = (mch_total_mem(FALSE) >> 1);
28337
1cd053ebb5fc patch 8.2.4694: avoidance of #elif causes more preproc nesting
Bram Moolenaar <Bram@vim.org>
parents: 28177
diff changeset
202 #else
31952
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
203 n = (0x7fffffff >> 11);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
204 #endif
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
205 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)n;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
206 opt_idx = findoption((char_u *)"maxmem");
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
207 if (opt_idx >= 0)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
208 {
838
8e5830943bff updated for version 7.0e04
vimboss
parents: 836
diff changeset
209 #if !defined(HAVE_AVAIL_MEM) && !defined(HAVE_TOTAL_MEM)
31952
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
210 if ((long)(long_i)options[opt_idx].def_val[VI_DEFAULT] > (long)n
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
211 || (long)(long_i)options[opt_idx].def_val[VI_DEFAULT] == 0L)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
212 #endif
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
213 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)n;
838
8e5830943bff updated for version 7.0e04
vimboss
parents: 836
diff changeset
214 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
215 }
31926
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
216 }
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
217
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
218 /*
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
219 * Initialize the 'cdpath' option to a default value.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
220 */
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
221 static void
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
222 set_init_default_cdpath(void)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
223 {
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
224 int opt_idx;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
225 char_u *cdpath;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
226 char_u *buf;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
227 int i;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
228 int j;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
229 int mustfree = FALSE;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
230
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
231 cdpath = vim_getenv((char_u *)"CDPATH", &mustfree);
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
232 if (cdpath == NULL)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
233 return;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
234
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
235 buf = alloc((STRLEN(cdpath) << 1) + 2);
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
236 if (buf != NULL)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
237 {
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
238 buf[0] = ','; // start with ",", current dir first
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
239 j = 1;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
240 for (i = 0; cdpath[i] != NUL; ++i)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
241 {
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
242 if (vim_ispathlistsep(cdpath[i]))
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
243 buf[j++] = ',';
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
244 else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
245 {
31926
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
246 if (cdpath[i] == ' ' || cdpath[i] == ',')
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
247 buf[j++] = '\\';
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
248 buf[j++] = cdpath[i];
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
249 }
31926
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
250 }
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
251 buf[j] = NUL;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
252 opt_idx = findoption((char_u *)"cdpath");
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
253 if (opt_idx >= 0)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
254 {
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
255 options[opt_idx].def_val[VI_DEFAULT] = buf;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
256 options[opt_idx].flags |= P_DEF_ALLOCED;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
257 }
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
258 else
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
259 vim_free(buf); // cannot happen
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
260 }
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
261 if (mustfree)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
262 vim_free(cdpath);
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
263 }
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
264
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
265 /*
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
266 * Initialize the 'printencoding' option to a default value.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
267 */
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
268 static void
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
269 set_init_default_printencoding(void)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
270 {
28337
1cd053ebb5fc patch 8.2.4694: avoidance of #elif causes more preproc nesting
Bram Moolenaar <Bram@vim.org>
parents: 28177
diff changeset
271 #if defined(FEAT_POSTSCRIPT) && \
31926
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
272 (defined(MSWIN) || defined(VMS) || defined(MAC) || defined(hpux))
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
273 // Set print encoding on platforms that don't default to latin1
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
274 set_string_default("penc",
7408
1886f2863437 commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents: 7334
diff changeset
275 # if defined(MSWIN)
31926
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
276 (char_u *)"cp1252"
28337
1cd053ebb5fc patch 8.2.4694: avoidance of #elif causes more preproc nesting
Bram Moolenaar <Bram@vim.org>
parents: 28177
diff changeset
277 # elif defined(VMS)
31926
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
278 (char_u *)"dec-mcs"
28337
1cd053ebb5fc patch 8.2.4694: avoidance of #elif causes more preproc nesting
Bram Moolenaar <Bram@vim.org>
parents: 28177
diff changeset
279 # elif defined(MAC)
31926
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
280 (char_u *)"mac-roman"
28337
1cd053ebb5fc patch 8.2.4694: avoidance of #elif causes more preproc nesting
Bram Moolenaar <Bram@vim.org>
parents: 28177
diff changeset
281 # else // HPUX
31926
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
282 (char_u *)"hp-roman8"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
283 # endif
31926
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
284 );
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
285 #endif
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
286 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
287
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
288 #ifdef FEAT_POSTSCRIPT
31926
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
289 /*
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
290 * Initialize the 'printexpr' option to a default value.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
291 */
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
292 static void
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
293 set_init_default_printexpr(void)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
294 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
295 // 'printexpr' must be allocated to be able to evaluate it.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
296 set_string_default("pexpr",
8212
05b88224cea1 commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce
Christian Brabandt <cb@256bit.org>
parents: 8182
diff changeset
297 # if defined(MSWIN)
8
7edf9b6e4c36 Various changes
vimboss
parents: 7
diff changeset
298 (char_u *)"system('copy' . ' ' . v:fname_in . (&printdevice == '' ? ' LPT1:' : (' \"' . &printdevice . '\"'))) . delete(v:fname_in)"
28337
1cd053ebb5fc patch 8.2.4694: avoidance of #elif causes more preproc nesting
Bram Moolenaar <Bram@vim.org>
parents: 28177
diff changeset
299 # elif defined(VMS)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
300 (char_u *)"system('print/delete' . (&printdevice == '' ? '' : ' /queue=' . &printdevice) . ' ' . v:fname_in)"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
301
28337
1cd053ebb5fc patch 8.2.4694: avoidance of #elif causes more preproc nesting
Bram Moolenaar <Bram@vim.org>
parents: 28177
diff changeset
302 # else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
303 (char_u *)"system('lpr' . (&printdevice == '' ? '' : ' -P' . &printdevice) . ' ' . v:fname_in) . delete(v:fname_in) + v:shell_error"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
304 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
305 );
31926
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
306 }
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
307 #endif
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
308
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
309 #ifdef UNIX
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
310 /*
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
311 * Force restricted-mode on for "nologin" or "false" $SHELL
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
312 */
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
313 static void
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
314 set_init_restricted_mode(void)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
315 {
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
316 char_u *p;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
317
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
318 p = get_isolated_shell_name();
31952
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
319 if (p == NULL)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
320 return;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
321 if (fnamecmp(p, "nologin") == 0 || fnamecmp(p, "false") == 0)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
322 restricted = TRUE;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
323 vim_free(p);
31926
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
324 }
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
325 #endif
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
326
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
327 #ifdef CLEAN_RUNTIMEPATH
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
328 /*
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
329 * When Vim is started with the "--clean" argument, set the default value
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
330 * for the 'runtimepath' and 'packpath' options.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
331 */
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
332 static void
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
333 set_init_clean_rtp(void)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
334 {
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
335 int opt_idx;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
336
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
337 opt_idx = findoption((char_u *)"runtimepath");
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
338 if (opt_idx >= 0)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
339 {
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
340 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)CLEAN_RUNTIMEPATH;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
341 p_rtp = (char_u *)CLEAN_RUNTIMEPATH;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
342 }
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
343 opt_idx = findoption((char_u *)"packpath");
31952
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
344 if (opt_idx < 0)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
345 return;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
346 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)CLEAN_RUNTIMEPATH;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
347 p_pp = (char_u *)CLEAN_RUNTIMEPATH;
31926
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
348 }
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
349 #endif
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
350
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
351 /*
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
352 * Expand environment variables and things like "~" for the defaults.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
353 * If option_expand() returns non-NULL the variable is expanded. This can
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
354 * only happen for non-indirect options.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
355 * Also set the default to the expanded value, so ":set" does not list
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
356 * them.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
357 * Don't set the P_ALLOCED flag, because we don't want to free the
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
358 * default.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
359 */
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
360 static void
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
361 set_init_expand_env(void)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
362 {
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
363 int opt_idx;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
364 char_u *p;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
365
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
366 for (opt_idx = 0; !istermoption_idx(opt_idx); opt_idx++)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
367 {
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
368 if ((options[opt_idx].flags & P_GETTEXT)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
369 && options[opt_idx].var != NULL)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
370 p = (char_u *)_(*(char **)options[opt_idx].var);
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
371 else
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
372 p = option_expand(opt_idx, NULL);
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
373 if (p != NULL && (p = vim_strsave(p)) != NULL)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
374 {
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
375 *(char_u **)options[opt_idx].var = p;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
376 // VIMEXP
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
377 // Defaults for all expanded options are currently the same for Vi
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
378 // and Vim. When this changes, add some code here! Also need to
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
379 // split P_DEF_ALLOCED in two.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
380 if (options[opt_idx].flags & P_DEF_ALLOCED)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
381 vim_free(options[opt_idx].def_val[VI_DEFAULT]);
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
382 options[opt_idx].def_val[VI_DEFAULT] = p;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
383 options[opt_idx].flags |= P_DEF_ALLOCED;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
384 }
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
385 }
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
386 }
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
387
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
388 /*
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
389 * Initialize the 'LANG' environment variable to a default value.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
390 */
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
391 static void
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
392 set_init_lang_env(void)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
393 {
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
394 #if defined(MSWIN) && defined(FEAT_GETTEXT)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
395 // If $LANG isn't set, try to get a good value for it. This makes the
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
396 // right language be used automatically. Don't do this for English.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
397 if (mch_getenv((char_u *)"LANG") == NULL)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
398 {
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
399 char buf[20];
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
400 long_u n;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
401
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
402 // Could use LOCALE_SISO639LANGNAME, but it's not in Win95.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
403 // LOCALE_SABBREVLANGNAME gives us three letters, like "enu", we use
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
404 // only the first two.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
405 n = GetLocaleInfo(LOCALE_USER_DEFAULT, LOCALE_SABBREVLANGNAME,
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
406 (LPTSTR)buf, 20);
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
407 if (n >= 2 && STRNICMP(buf, "en", 2) != 0)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
408 {
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
409 // There are a few exceptions (probably more)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
410 if (STRNICMP(buf, "cht", 3) == 0 || STRNICMP(buf, "zht", 3) == 0)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
411 STRCPY(buf, "zh_TW");
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
412 else if (STRNICMP(buf, "chs", 3) == 0
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
413 || STRNICMP(buf, "zhc", 3) == 0)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
414 STRCPY(buf, "zh_CN");
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
415 else if (STRNICMP(buf, "jp", 2) == 0)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
416 STRCPY(buf, "ja");
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
417 else
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
418 buf[2] = NUL; // truncate to two-letter code
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
419 vim_setenv((char_u *)"LANG", (char_u *)buf);
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
420 }
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
421 }
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
422 #elif defined(MACOS_CONVERT)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
423 // Moved to os_mac_conv.c to avoid dependency problems.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
424 mac_lang_init();
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
425 #endif
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
426 }
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
427
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
428 /*
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
429 * Initialize the 'encoding' option to a default value.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
430 */
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
431 static void
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
432 set_init_default_encoding(void)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
433 {
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
434 char_u *p;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
435 int opt_idx;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
436
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
437 # ifdef MSWIN
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
438 // MS-Windows has builtin support for conversion to and from Unicode, using
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
439 // "utf-8" for 'encoding' should work best for most users.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
440 p = vim_strsave((char_u *)ENC_DFLT);
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
441 # else
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
442 // enc_locale() will try to find the encoding of the current locale.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
443 // This works best for properly configured systems, old and new.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
444 p = enc_locale();
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
445 # endif
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
446 if (p == NULL)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
447 return;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
448
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
449 // Try setting 'encoding' and check if the value is valid.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
450 // If not, go back to the default encoding.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
451 char_u *save_enc = p_enc;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
452 p_enc = p;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
453 if (STRCMP(p_enc, "gb18030") == 0)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
454 {
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
455 // We don't support "gb18030", but "cp936" is a good substitute
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
456 // for practical purposes, thus use that. It's not an alias to
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
457 // still support conversion between gb18030 and utf-8.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
458 p_enc = vim_strsave((char_u *)"cp936");
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
459 vim_free(p);
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
460 }
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
461 if (mb_init() == NULL)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
462 {
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
463 opt_idx = findoption((char_u *)"encoding");
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
464 if (opt_idx >= 0)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
465 {
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
466 options[opt_idx].def_val[VI_DEFAULT] = p_enc;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
467 options[opt_idx].flags |= P_DEF_ALLOCED;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
468 }
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
469
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
470 #if defined(MSWIN) || defined(MACOS_X) || defined(VMS)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
471 if (STRCMP(p_enc, "latin1") == 0 || enc_utf8)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
472 {
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
473 // Adjust the default for 'isprint' and 'iskeyword' to match
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
474 // latin1. Also set the defaults for when 'nocompatible' is
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
475 // set.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
476 set_string_option_direct((char_u *)"isp", -1,
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
477 ISP_LATIN1, OPT_FREE, SID_NONE);
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
478 set_string_option_direct((char_u *)"isk", -1,
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
479 ISK_LATIN1, OPT_FREE, SID_NONE);
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
480 opt_idx = findoption((char_u *)"isp");
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
481 if (opt_idx >= 0)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
482 options[opt_idx].def_val[VIM_DEFAULT] = ISP_LATIN1;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
483 opt_idx = findoption((char_u *)"isk");
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
484 if (opt_idx >= 0)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
485 options[opt_idx].def_val[VIM_DEFAULT] = ISK_LATIN1;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
486 (void)init_chartab();
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
487 }
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
488 #endif
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
489
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
490 #if defined(MSWIN) && (!defined(FEAT_GUI) || defined(VIMDLL))
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
491 // Win32 console: When GetACP() returns a different value from
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
492 // GetConsoleCP() set 'termencoding'.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
493 if (
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
494 # ifdef VIMDLL
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
495 (!gui.in_use && !gui.starting) &&
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
496 # endif
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
497 GetACP() != GetConsoleCP())
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
498 {
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
499 char buf[50];
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
500
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
501 // Win32 console: In ConPTY, GetConsoleCP() returns zero.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
502 // Use an alternative value.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
503 if (GetConsoleCP() == 0)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
504 sprintf(buf, "cp%ld", (long)GetACP());
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
505 else
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
506 sprintf(buf, "cp%ld", (long)GetConsoleCP());
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
507 p_tenc = vim_strsave((char_u *)buf);
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
508 if (p_tenc != NULL)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
509 {
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
510 opt_idx = findoption((char_u *)"termencoding");
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
511 if (opt_idx >= 0)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
512 {
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
513 options[opt_idx].def_val[VI_DEFAULT] = p_tenc;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
514 options[opt_idx].flags |= P_DEF_ALLOCED;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
515 }
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
516 convert_setup(&input_conv, p_tenc, p_enc);
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
517 convert_setup(&output_conv, p_enc, p_tenc);
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
518 }
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
519 else
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
520 p_tenc = empty_option;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
521 }
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
522 #endif
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
523 #if defined(MSWIN)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
524 // $HOME may have characters in active code page.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
525 init_homedir();
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
526 #endif
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
527 }
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
528 else
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
529 {
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
530 vim_free(p_enc);
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
531 p_enc = save_enc;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
532 }
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
533 }
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
534
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
535 /*
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
536 * Initialize the options, first part.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
537 *
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
538 * Called only once from main(), just after creating the first buffer.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
539 * If "clean_arg" is TRUE Vim was started with --clean.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
540 */
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
541 void
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
542 set_init_1(int clean_arg)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
543 {
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
544 #ifdef FEAT_LANGMAP
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
545 langmap_init();
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
546 #endif
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
547
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
548 // Be Vi compatible by default
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
549 p_cp = TRUE;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
550
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
551 // Use POSIX compatibility when $VIM_POSIX is set.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
552 if (mch_getenv((char_u *)"VIM_POSIX") != NULL)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
553 {
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
554 set_string_default("cpo", (char_u *)CPO_ALL);
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
555 set_string_default("shm", (char_u *)SHM_POSIX);
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
556 }
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
557
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
558 set_init_default_shell();
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
559 set_init_default_backupskip();
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
560 set_init_default_maxmemtot();
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
561 set_init_default_cdpath();
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
562 set_init_default_printencoding();
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
563 #ifdef FEAT_POSTSCRIPT
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
564 set_init_default_printexpr();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
565 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
566
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
567 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
568 * Set all the options (except the terminal options) to their default
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
569 * value. Also set the global value for local options.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
570 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
571 set_options_default(0);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
572
27509
ef32ea9fbe6c patch 8.2.4282: restricted mode requires the -Z command line option
Bram Moolenaar <Bram@vim.org>
parents: 27490
diff changeset
573 #ifdef UNIX
31926
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
574 set_init_restricted_mode();
27509
ef32ea9fbe6c patch 8.2.4282: restricted mode requires the -Z command line option
Bram Moolenaar <Bram@vim.org>
parents: 27490
diff changeset
575 #endif
ef32ea9fbe6c patch 8.2.4282: restricted mode requires the -Z command line option
Bram Moolenaar <Bram@vim.org>
parents: 27490
diff changeset
576
13361
65c29bd4548b patch 8.0.1554: custom plugins loaded with --clean
Christian Brabandt <cb@256bit.org>
parents: 13314
diff changeset
577 #ifdef CLEAN_RUNTIMEPATH
65c29bd4548b patch 8.0.1554: custom plugins loaded with --clean
Christian Brabandt <cb@256bit.org>
parents: 13314
diff changeset
578 if (clean_arg)
31926
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
579 set_init_clean_rtp();
13361
65c29bd4548b patch 8.0.1554: custom plugins loaded with --clean
Christian Brabandt <cb@256bit.org>
parents: 13314
diff changeset
580 #endif
65c29bd4548b patch 8.0.1554: custom plugins loaded with --clean
Christian Brabandt <cb@256bit.org>
parents: 13314
diff changeset
581
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
582 #ifdef FEAT_GUI
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
583 if (found_reverse_arg)
28457
4dcccb2673fe patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents: 28405
diff changeset
584 set_option_value_give_err((char_u *)"bg", 0L, (char_u *)"dark", 0);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
585 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
586
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
587 curbuf->b_p_initialized = TRUE;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
588 curbuf->b_p_ar = -1; // no local 'autoread' value
5446
d0595545e98a updated for version 7.4.073
Bram Moolenaar <bram@vim.org>
parents: 5438
diff changeset
589 curbuf->b_p_ul = NO_LOCAL_UNDOLEVEL;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
590 check_buf_options(curbuf);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
591 check_win_options(curwin);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
592 check_options();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
593
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
594 // Must be before option_expand(), because that one needs vim_isIDc()
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
595 didset_options();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
596
744
07f7b4a7755c updated for version 7.0222
vimboss
parents: 731
diff changeset
597 #ifdef FEAT_SPELL
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
598 // Use the current chartab for the generic chartab. This is not in
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
599 // didset_options() because it only depends on 'encoding'.
227
ef254e0f2365 updated for version 7.0063
vimboss
parents: 221
diff changeset
600 init_spell_chartab();
ef254e0f2365 updated for version 7.0063
vimboss
parents: 221
diff changeset
601 #endif
ef254e0f2365 updated for version 7.0063
vimboss
parents: 221
diff changeset
602
31962
4efcb5c68112 patch 9.0.1313: some settings use the current codepage instead of 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 31958
diff changeset
603 set_init_default_encoding();
4efcb5c68112 patch 9.0.1313: some settings use the current codepage instead of 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 31958
diff changeset
604
31926
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
605 // Expand environment variables and things like "~" for the defaults.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
606 set_init_expand_env();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
607
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
608 save_file_ff(curbuf); // Buffer is unchanged
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
609
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
610 #if defined(FEAT_ARABIC)
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
611 // Detect use of mlterm.
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
612 // Mlterm is a terminal emulator akin to xterm that has some special
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
613 // abilities (bidi namely).
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
614 // NOTE: mlterm's author is being asked to 'set' a variable
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
615 // instead of an environment variable due to inheritance.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
616 if (mch_getenv((char_u *)"MLTERM") != NULL)
28457
4dcccb2673fe patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents: 28405
diff changeset
617 set_option_value_give_err((char_u *)"tbidi", 1L, NULL, 0);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
618 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
619
7040
17a3fa77e941 commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents: 7034
diff changeset
620 didset_options2();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
621
31926
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
622 set_init_lang_env();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
623
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
624 #ifdef FEAT_MULTI_LANG
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
625 // Set the default for 'helplang'.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
626 set_helplang_default(get_mess_lang());
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
627 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
628 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
629
24912
02fa8d72e4e3 patch 8.2.2993: 'fileencodings' default value should depend on 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 24768
diff changeset
630 static char_u *fencs_utf8_default = (char_u *)"ucs-bom,utf-8,default,latin1";
02fa8d72e4e3 patch 8.2.2993: 'fileencodings' default value should depend on 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 24768
diff changeset
631
02fa8d72e4e3 patch 8.2.2993: 'fileencodings' default value should depend on 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 24768
diff changeset
632 /*
02fa8d72e4e3 patch 8.2.2993: 'fileencodings' default value should depend on 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 24768
diff changeset
633 * Set the "fileencodings" option to the default value for when 'encoding' is
02fa8d72e4e3 patch 8.2.2993: 'fileencodings' default value should depend on 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 24768
diff changeset
634 * utf-8.
02fa8d72e4e3 patch 8.2.2993: 'fileencodings' default value should depend on 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 24768
diff changeset
635 */
02fa8d72e4e3 patch 8.2.2993: 'fileencodings' default value should depend on 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 24768
diff changeset
636 void
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
637 set_fencs_unicode(void)
24912
02fa8d72e4e3 patch 8.2.2993: 'fileencodings' default value should depend on 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 24768
diff changeset
638 {
02fa8d72e4e3 patch 8.2.2993: 'fileencodings' default value should depend on 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 24768
diff changeset
639 set_string_option_direct((char_u *)"fencs", -1, fencs_utf8_default,
02fa8d72e4e3 patch 8.2.2993: 'fileencodings' default value should depend on 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 24768
diff changeset
640 OPT_FREE, 0);
02fa8d72e4e3 patch 8.2.2993: 'fileencodings' default value should depend on 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 24768
diff changeset
641 }
02fa8d72e4e3 patch 8.2.2993: 'fileencodings' default value should depend on 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 24768
diff changeset
642
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
643 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
644 * Set an option to its default value.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
645 * This does not take care of side effects!
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
646 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
647 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
648 set_option_default(
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
649 int opt_idx,
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
650 int opt_flags, // OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
651 int compatible) // use Vi default value
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
652 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
653 char_u *varp; // pointer to variable for current option
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
654 int dvi; // index in def_val[]
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
655 long_u flags;
681
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
656 long_u *flagsp;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
657 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
658
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
659 varp = get_varp_scope(&(options[opt_idx]), both ? OPT_LOCAL : opt_flags);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
660 flags = options[opt_idx].flags;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
661 if (varp != NULL) // skip hidden option, nothing to do for it
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
662 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
663 dvi = ((flags & P_VI_DEF) || compatible) ? VI_DEFAULT : VIM_DEFAULT;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
664 if (flags & P_STRING)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
665 {
24912
02fa8d72e4e3 patch 8.2.2993: 'fileencodings' default value should depend on 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 24768
diff changeset
666 // 'fencs' default value depends on 'encoding'
02fa8d72e4e3 patch 8.2.2993: 'fileencodings' default value should depend on 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 24768
diff changeset
667 if (options[opt_idx].var == (char_u *)&p_fencs && enc_utf8)
02fa8d72e4e3 patch 8.2.2993: 'fileencodings' default value should depend on 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 24768
diff changeset
668 set_fencs_unicode();
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
669 // Use set_string_option_direct() for local options to handle
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
670 // freeing and allocating the value.
24912
02fa8d72e4e3 patch 8.2.2993: 'fileencodings' default value should depend on 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 24768
diff changeset
671 else if (options[opt_idx].indir != PV_NONE)
13845
f22db93bd887 patch 8.0.1794: duplicate term options after renaming
Christian Brabandt <cb@256bit.org>
parents: 13823
diff changeset
672 set_string_option_direct(NULL, opt_idx,
f22db93bd887 patch 8.0.1794: duplicate term options after renaming
Christian Brabandt <cb@256bit.org>
parents: 13823
diff changeset
673 options[opt_idx].def_val[dvi], opt_flags, 0);
f22db93bd887 patch 8.0.1794: duplicate term options after renaming
Christian Brabandt <cb@256bit.org>
parents: 13823
diff changeset
674 else
f22db93bd887 patch 8.0.1794: duplicate term options after renaming
Christian Brabandt <cb@256bit.org>
parents: 13823
diff changeset
675 {
f22db93bd887 patch 8.0.1794: duplicate term options after renaming
Christian Brabandt <cb@256bit.org>
parents: 13823
diff changeset
676 if ((opt_flags & OPT_FREE) && (flags & P_ALLOCED))
f22db93bd887 patch 8.0.1794: duplicate term options after renaming
Christian Brabandt <cb@256bit.org>
parents: 13823
diff changeset
677 free_string_option(*(char_u **)(varp));
f22db93bd887 patch 8.0.1794: duplicate term options after renaming
Christian Brabandt <cb@256bit.org>
parents: 13823
diff changeset
678 *(char_u **)varp = options[opt_idx].def_val[dvi];
f22db93bd887 patch 8.0.1794: duplicate term options after renaming
Christian Brabandt <cb@256bit.org>
parents: 13823
diff changeset
679 options[opt_idx].flags &= ~P_ALLOCED;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
680 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
681 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
682 else if (flags & P_NUM)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
683 {
1017
0d31f8a78ab3 updated for version 7.0-143
vimboss
parents: 1004
diff changeset
684 if (options[opt_idx].indir == PV_SCROLL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
685 win_comp_scroll(curwin);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
686 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
687 {
15713
ad8b2c109b22 patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents: 15701
diff changeset
688 long def_val = (long)(long_i)options[opt_idx].def_val[dvi];
ad8b2c109b22 patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents: 15701
diff changeset
689
ad8b2c109b22 patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents: 15701
diff changeset
690 if ((long *)varp == &curwin->w_p_so
ad8b2c109b22 patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents: 15701
diff changeset
691 || (long *)varp == &curwin->w_p_siso)
ad8b2c109b22 patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents: 15701
diff changeset
692 // 'scrolloff' and 'sidescrolloff' local values have a
ad8b2c109b22 patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents: 15701
diff changeset
693 // different default value than the global default.
ad8b2c109b22 patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents: 15701
diff changeset
694 *(long *)varp = -1;
ad8b2c109b22 patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents: 15701
diff changeset
695 else
ad8b2c109b22 patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents: 15701
diff changeset
696 *(long *)varp = def_val;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
697 // May also set global value for local option.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
698 if (both)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
699 *(long *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) =
15713
ad8b2c109b22 patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents: 15701
diff changeset
700 def_val;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
701 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
702 }
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
703 else // P_BOOL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
704 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
705 // the cast to long is required for Manx C, long_i is needed for
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
706 // MSVC
840
2c885fab04e3 updated for version 7.0e06
vimboss
parents: 839
diff changeset
707 *(int *)varp = (int)(long)(long_i)options[opt_idx].def_val[dvi];
1111
53fd0a213cff updated for version 7.0-237
vimboss
parents: 1110
diff changeset
708 #ifdef UNIX
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
709 // 'modeline' defaults to off for root
1111
53fd0a213cff updated for version 7.0-237
vimboss
parents: 1110
diff changeset
710 if (options[opt_idx].indir == PV_ML && getuid() == ROOT_UID)
53fd0a213cff updated for version 7.0-237
vimboss
parents: 1110
diff changeset
711 *(int *)varp = FALSE;
53fd0a213cff updated for version 7.0-237
vimboss
parents: 1110
diff changeset
712 #endif
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
713 // May also set global value for local option.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
714 if (both)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
715 *(int *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) =
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
716 *(int *)varp;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
717 }
634
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
718
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
719 // The default value is not insecure.
681
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
720 flagsp = insecure_flag(opt_idx, opt_flags);
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
721 *flagsp = *flagsp & ~P_INSECURE;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
722 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
723
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
724 #ifdef FEAT_EVAL
14700
0a3b9ecf7cb8 patch 8.1.0362: cannot get the script line number when executing a function
Christian Brabandt <cb@256bit.org>
parents: 14479
diff changeset
725 set_option_sctx_idx(opt_idx, opt_flags, current_sctx);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
726 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
727 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
728
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
729 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
730 * Set all options (except terminal options) to their default value.
7034
e668b160ac68 commit https://github.com/vim/vim/commit/b341dda575899458f7075614dcedf0a80ee9d080
Christian Brabandt <cb@256bit.org>
parents: 7007
diff changeset
731 * When "opt_flags" is non-zero skip 'encoding'.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
732 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
733 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
734 set_options_default(
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
735 int opt_flags) // OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
736 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
737 int i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
738 win_T *wp;
671
83a006f81bac updated for version 7.0199
vimboss
parents: 670
diff changeset
739 tabpage_T *tp;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
740
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
741 for (i = 0; !istermoption_idx(i); i++)
7034
e668b160ac68 commit https://github.com/vim/vim/commit/b341dda575899458f7075614dcedf0a80ee9d080
Christian Brabandt <cb@256bit.org>
parents: 7007
diff changeset
742 if (!(options[i].flags & P_NODEFAULT)
7040
17a3fa77e941 commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents: 7034
diff changeset
743 && (opt_flags == 0
15597
536dd2bc5ac9 patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 15555
diff changeset
744 || (options[i].var != (char_u *)&p_enc
7058
64dc5b11ad33 commit https://github.com/vim/vim/commit/5ea87a04964b0ccd017380b8247d04d2a69f6062
Christian Brabandt <cb@256bit.org>
parents: 7052
diff changeset
745 # if defined(FEAT_CRYPT)
7040
17a3fa77e941 commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents: 7034
diff changeset
746 && options[i].var != (char_u *)&p_cm
7052
9ec3329823f9 commit https://github.com/vim/vim/commit/8060687905bdadc46abb68ee6d40e5660e352297
Christian Brabandt <cb@256bit.org>
parents: 7040
diff changeset
747 && options[i].var != (char_u *)&p_key
7058
64dc5b11ad33 commit https://github.com/vim/vim/commit/5ea87a04964b0ccd017380b8247d04d2a69f6062
Christian Brabandt <cb@256bit.org>
parents: 7052
diff changeset
748 # endif
15597
536dd2bc5ac9 patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 15555
diff changeset
749 )))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
750 set_option_default(i, opt_flags, p_cp);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
751
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
752 // The 'scroll' option must be computed for all windows.
671
83a006f81bac updated for version 7.0199
vimboss
parents: 670
diff changeset
753 FOR_ALL_TAB_WINDOWS(tp, wp)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
754 win_comp_scroll(wp);
6205
db3b8fe8330e updated for version 7.4.438
Bram Moolenaar <bram@vim.org>
parents: 6162
diff changeset
755 parse_cino(curbuf);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
756 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
757
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
758 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
759 * Set the Vi-default value of a string option.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
760 * Used for 'sh', 'backupskip' and 'term'.
13162
51521b8a370c patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect
Christian Brabandt <cb@256bit.org>
parents: 13154
diff changeset
761 * When "escape" is TRUE escape spaces with a backslash.
51521b8a370c patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect
Christian Brabandt <cb@256bit.org>
parents: 13154
diff changeset
762 */
51521b8a370c patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect
Christian Brabandt <cb@256bit.org>
parents: 13154
diff changeset
763 static void
51521b8a370c patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect
Christian Brabandt <cb@256bit.org>
parents: 13154
diff changeset
764 set_string_default_esc(char *name, char_u *val, int escape)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
765 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
766 char_u *p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
767 int opt_idx;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
768
13162
51521b8a370c patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect
Christian Brabandt <cb@256bit.org>
parents: 13154
diff changeset
769 if (escape && vim_strchr(val, ' ') != NULL)
51521b8a370c patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect
Christian Brabandt <cb@256bit.org>
parents: 13154
diff changeset
770 p = vim_strsave_escaped(val, (char_u *)" ");
51521b8a370c patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect
Christian Brabandt <cb@256bit.org>
parents: 13154
diff changeset
771 else
51521b8a370c patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect
Christian Brabandt <cb@256bit.org>
parents: 13154
diff changeset
772 p = vim_strsave(val);
31752
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
773 if (p == NULL) // we don't want a NULL
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
774 return;
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
775
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
776 opt_idx = findoption((char_u *)name);
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
777 if (opt_idx < 0)
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
778 return;
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
779
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
780 if (options[opt_idx].flags & P_DEF_ALLOCED)
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
781 vim_free(options[opt_idx].def_val[VI_DEFAULT]);
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
782 options[opt_idx].def_val[VI_DEFAULT] = p;
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
783 options[opt_idx].flags |= P_DEF_ALLOCED;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
784 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
785
13162
51521b8a370c patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect
Christian Brabandt <cb@256bit.org>
parents: 13154
diff changeset
786 void
51521b8a370c patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect
Christian Brabandt <cb@256bit.org>
parents: 13154
diff changeset
787 set_string_default(char *name, char_u *val)
51521b8a370c patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect
Christian Brabandt <cb@256bit.org>
parents: 13154
diff changeset
788 {
51521b8a370c patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect
Christian Brabandt <cb@256bit.org>
parents: 13154
diff changeset
789 set_string_default_esc(name, val, FALSE);
51521b8a370c patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect
Christian Brabandt <cb@256bit.org>
parents: 13154
diff changeset
790 }
51521b8a370c patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect
Christian Brabandt <cb@256bit.org>
parents: 13154
diff changeset
791
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
792 /*
22234
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
793 * For an option value that contains comma separated items, find "newval" in
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
794 * "origval". Return NULL if not found.
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
795 */
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
796 static char_u *
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
797 find_dup_item(char_u *origval, char_u *newval, long_u flags)
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
798 {
22242
f7871f02ddcd patch 8.2.1670: a couple of gcc compiler warnings
Bram Moolenaar <Bram@vim.org>
parents: 22234
diff changeset
799 int bs = 0;
22234
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
800 size_t newlen;
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
801 char_u *s;
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
802
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
803 if (origval == NULL)
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
804 return NULL;
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
805
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
806 newlen = STRLEN(newval);
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
807 for (s = origval; *s != NUL; ++s)
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
808 {
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
809 if ((!(flags & P_COMMA)
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
810 || s == origval
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
811 || (s[-1] == ',' && !(bs & 1)))
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
812 && STRNCMP(s, newval, newlen) == 0
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
813 && (!(flags & P_COMMA)
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
814 || s[newlen] == ','
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
815 || s[newlen] == NUL))
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
816 return s;
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
817 // Count backslashes. Only a comma with an even number of backslashes
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
818 // or a single backslash preceded by a comma before it is recognized as
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
819 // a separator.
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
820 if ((s > origval + 1
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
821 && s[-1] == '\\'
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
822 && s[-2] != ',')
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
823 || (s == origval + 1
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
824 && s[-1] == '\\'))
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
825 ++bs;
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
826 else
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
827 bs = 0;
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
828 }
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
829 return NULL;
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
830 }
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
831
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
832 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
833 * Set the Vi-default value of a number option.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
834 * Used for 'lines' and 'columns'.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
835 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
836 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
837 set_number_default(char *name, long val)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
838 {
838
8e5830943bff updated for version 7.0e04
vimboss
parents: 836
diff changeset
839 int opt_idx;
8e5830943bff updated for version 7.0e04
vimboss
parents: 836
diff changeset
840
8e5830943bff updated for version 7.0e04
vimboss
parents: 836
diff changeset
841 opt_idx = findoption((char_u *)name);
8e5830943bff updated for version 7.0e04
vimboss
parents: 836
diff changeset
842 if (opt_idx >= 0)
840
2c885fab04e3 updated for version 7.0e06
vimboss
parents: 839
diff changeset
843 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
844 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
845
27018
268f6a3511df patch 8.2.4038: various code not used when features are disabled
Bram Moolenaar <Bram@vim.org>
parents: 26966
diff changeset
846 #if defined(FEAT_PROP_POPUP) || defined(PROTO)
16843
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
847 /*
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
848 * Set all window-local and buffer-local options to the Vim default.
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
849 * local-global options will use the global value.
17845
b6acc24df7de patch 8.1.1919: using window options when passing a buffer to popup_create()
Bram Moolenaar <Bram@vim.org>
parents: 17833
diff changeset
850 * When "do_buffer" is FALSE don't set buffer-local options.
16843
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
851 */
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
852 void
17845
b6acc24df7de patch 8.1.1919: using window options when passing a buffer to popup_create()
Bram Moolenaar <Bram@vim.org>
parents: 17833
diff changeset
853 set_local_options_default(win_T *wp, int do_buffer)
16843
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
854 {
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
855 win_T *save_curwin = curwin;
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
856 int i;
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
857
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
858 curwin = wp;
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
859 curbuf = curwin->w_buffer;
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
860 block_autocmds();
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
861
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
862 for (i = 0; !istermoption_idx(i); i++)
16843
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
863 {
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
864 struct vimoption *p = &(options[i]);
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
865 char_u *varp = get_varp_scope(p, OPT_LOCAL);
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
866
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
867 if (p->indir != PV_NONE
17845
b6acc24df7de patch 8.1.1919: using window options when passing a buffer to popup_create()
Bram Moolenaar <Bram@vim.org>
parents: 17833
diff changeset
868 && (do_buffer || (p->indir & PV_BUF) == 0)
16843
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
869 && !(options[i].flags & P_NODEFAULT)
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
870 && !optval_default(p, varp, FALSE))
18225
6c3a8312486d patch 8.1.2107: various memory leaks reported by asan
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
871 set_option_default(i, OPT_FREE|OPT_LOCAL, FALSE);
16843
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
872 }
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
873
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
874 unblock_autocmds();
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
875 curwin = save_curwin;
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
876 curbuf = curwin->w_buffer;
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
877 }
27018
268f6a3511df patch 8.2.4038: various code not used when features are disabled
Bram Moolenaar <Bram@vim.org>
parents: 26966
diff changeset
878 #endif
16843
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
879
359
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
880 #if defined(EXITFREE) || defined(PROTO)
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
881 /*
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
882 * Free all options.
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
883 */
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
884 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
885 free_all_options(void)
359
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
886 {
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
887 int i;
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
888
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
889 for (i = 0; !istermoption_idx(i); i++)
359
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
890 {
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
891 if (options[i].indir == PV_NONE)
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
892 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
893 // global option: free value and default value.
10906
7fc1df5536c9 patch 8.0.0342: double free with EXITFREE and setting 'ttytype'
Christian Brabandt <cb@256bit.org>
parents: 10887
diff changeset
894 if ((options[i].flags & P_ALLOCED) && options[i].var != NULL)
359
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
895 free_string_option(*(char_u **)options[i].var);
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
896 if (options[i].flags & P_DEF_ALLOCED)
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
897 free_string_option(options[i].def_val[VI_DEFAULT]);
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
898 }
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
899 else if (options[i].var != VAR_WIN
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
900 && (options[i].flags & P_STRING))
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
901 // buffer-local option: free global value
25419
8a0234862ce6 patch 8.2.3246: memory use after free
Bram Moolenaar <Bram@vim.org>
parents: 25380
diff changeset
902 clear_string_option((char_u **)options[i].var);
359
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
903 }
26175
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
904 free_operatorfunc_option();
26268
3aa48d4e3dc8 patch 8.2.3665: cannot use a lambda for 'tagfunc'
Bram Moolenaar <Bram@vim.org>
parents: 26193
diff changeset
905 free_tagfunc_option();
359
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
906 }
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
907 #endif
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
908
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
909
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
910 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
911 * Initialize the options, part two: After getting Rows and Columns and
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
912 * setting 'term'.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
913 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
914 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
915 set_init_2(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
916 {
164
8b0ee9d57d7f updated for version 7.0050
vimboss
parents: 161
diff changeset
917 int idx;
8b0ee9d57d7f updated for version 7.0050
vimboss
parents: 161
diff changeset
918
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
919 /*
12718
f8f505ffc0a6 patch 8.0.1237: ":set scroll&" often gives an error
Christian Brabandt <cb@256bit.org>
parents: 12716
diff changeset
920 * 'scroll' defaults to half the window height. The stored default is zero,
f8f505ffc0a6 patch 8.0.1237: ":set scroll&" often gives an error
Christian Brabandt <cb@256bit.org>
parents: 12716
diff changeset
921 * which results in the actual value computed from the window height.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
922 */
168
4d9eabb1396e updated for version 7.0051
vimboss
parents: 164
diff changeset
923 idx = findoption((char_u *)"scroll");
838
8e5830943bff updated for version 7.0e04
vimboss
parents: 836
diff changeset
924 if (idx >= 0 && !(options[idx].flags & P_WAS_SET))
168
4d9eabb1396e updated for version 7.0051
vimboss
parents: 164
diff changeset
925 set_option_default(idx, OPT_LOCAL, p_cp);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
926 comp_col();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
927
164
8b0ee9d57d7f updated for version 7.0050
vimboss
parents: 161
diff changeset
928 /*
8b0ee9d57d7f updated for version 7.0050
vimboss
parents: 161
diff changeset
929 * 'window' is only for backwards compatibility with Vi.
8b0ee9d57d7f updated for version 7.0050
vimboss
parents: 161
diff changeset
930 * Default is Rows - 1.
8b0ee9d57d7f updated for version 7.0050
vimboss
parents: 161
diff changeset
931 */
857
b933657f7c9d updated for version 7.0g01
vimboss
parents: 842
diff changeset
932 if (!option_was_set((char_u *)"window"))
164
8b0ee9d57d7f updated for version 7.0050
vimboss
parents: 161
diff changeset
933 p_window = Rows - 1;
8b0ee9d57d7f updated for version 7.0050
vimboss
parents: 161
diff changeset
934 set_number_default("window", Rows - 1);
8b0ee9d57d7f updated for version 7.0050
vimboss
parents: 161
diff changeset
935
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
936 // For DOS console the default is always black.
15868
7fad90423bd2 patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15858
diff changeset
937 #if !((defined(MSWIN)) && !defined(FEAT_GUI))
671
83a006f81bac updated for version 7.0199
vimboss
parents: 670
diff changeset
938 /*
83a006f81bac updated for version 7.0199
vimboss
parents: 670
diff changeset
939 * If 'background' wasn't set by the user, try guessing the value,
83a006f81bac updated for version 7.0199
vimboss
parents: 670
diff changeset
940 * depending on the terminal name. Only need to check for terminals
83a006f81bac updated for version 7.0199
vimboss
parents: 670
diff changeset
941 * with a dark background, that can handle color.
83a006f81bac updated for version 7.0199
vimboss
parents: 670
diff changeset
942 */
83a006f81bac updated for version 7.0199
vimboss
parents: 670
diff changeset
943 idx = findoption((char_u *)"bg");
838
8e5830943bff updated for version 7.0e04
vimboss
parents: 836
diff changeset
944 if (idx >= 0 && !(options[idx].flags & P_WAS_SET)
8e5830943bff updated for version 7.0e04
vimboss
parents: 836
diff changeset
945 && *term_bg_default() == 'd')
671
83a006f81bac updated for version 7.0199
vimboss
parents: 670
diff changeset
946 {
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
947 set_string_option_direct(NULL, idx, (char_u *)"dark", OPT_FREE, 0);
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
948 // don't mark it as set, when starting the GUI it may be
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
949 // changed again
671
83a006f81bac updated for version 7.0199
vimboss
parents: 670
diff changeset
950 options[idx].flags &= ~P_WAS_SET;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
951 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
952 #endif
440
eb531146be0e updated for version 7.0114
vimboss
parents: 419
diff changeset
953
eb531146be0e updated for version 7.0114
vimboss
parents: 419
diff changeset
954 #ifdef CURSOR_SHAPE
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
955 parse_shape_opt(SHAPE_CURSOR); // set cursor shapes from 'guicursor'
440
eb531146be0e updated for version 7.0114
vimboss
parents: 419
diff changeset
956 #endif
eb531146be0e updated for version 7.0114
vimboss
parents: 419
diff changeset
957 #ifdef FEAT_MOUSESHAPE
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
958 parse_shape_opt(SHAPE_MOUSE); // set mouse shapes from 'mouseshape'
440
eb531146be0e updated for version 7.0114
vimboss
parents: 419
diff changeset
959 #endif
eb531146be0e updated for version 7.0114
vimboss
parents: 419
diff changeset
960 #ifdef FEAT_PRINTER
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
961 (void)parse_printoptions(); // parse 'printoptions' default value
440
eb531146be0e updated for version 7.0114
vimboss
parents: 419
diff changeset
962 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
963 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
964
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
965 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
966 * Initialize the options, part three: After reading the .vimrc
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
967 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
968 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
969 set_init_3(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
970 {
15868
7fad90423bd2 patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15858
diff changeset
971 #if defined(UNIX) || defined(MSWIN)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
972 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
973 * Set 'shellpipe' and 'shellredir', depending on the 'shell' option.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
974 * This is done after other initializations, where 'shell' might have been
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
975 * set, but only if they have not been set before.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
976 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
977 char_u *p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
978 int idx_srr;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
979 int do_srr;
7408
1886f2863437 commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents: 7334
diff changeset
980 # ifdef FEAT_QUICKFIX
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
981 int idx_sp;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
982 int do_sp;
7408
1886f2863437 commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents: 7334
diff changeset
983 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
984
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
985 idx_srr = findoption((char_u *)"srr");
838
8e5830943bff updated for version 7.0e04
vimboss
parents: 836
diff changeset
986 if (idx_srr < 0)
8e5830943bff updated for version 7.0e04
vimboss
parents: 836
diff changeset
987 do_srr = FALSE;
8e5830943bff updated for version 7.0e04
vimboss
parents: 836
diff changeset
988 else
8e5830943bff updated for version 7.0e04
vimboss
parents: 836
diff changeset
989 do_srr = !(options[idx_srr].flags & P_WAS_SET);
7408
1886f2863437 commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents: 7334
diff changeset
990 # ifdef FEAT_QUICKFIX
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
991 idx_sp = findoption((char_u *)"sp");
838
8e5830943bff updated for version 7.0e04
vimboss
parents: 836
diff changeset
992 if (idx_sp < 0)
8e5830943bff updated for version 7.0e04
vimboss
parents: 836
diff changeset
993 do_sp = FALSE;
8e5830943bff updated for version 7.0e04
vimboss
parents: 836
diff changeset
994 else
8e5830943bff updated for version 7.0e04
vimboss
parents: 836
diff changeset
995 do_sp = !(options[idx_sp].flags & P_WAS_SET);
7408
1886f2863437 commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents: 7334
diff changeset
996 # endif
5867
a6b59ee633a3 updated for version 7.4.276
Bram Moolenaar <bram@vim.org>
parents: 5735
diff changeset
997 p = get_isolated_shell_name();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
998 if (p != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
999 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1000 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1001 * Default for p_sp is "| tee", for p_srr is ">".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1002 * For known shells it is changed here to include stderr.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1003 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1004 if ( fnamecmp(p, "csh") == 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1005 || fnamecmp(p, "tcsh") == 0
15868
7fad90423bd2 patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15858
diff changeset
1006 # if defined(MSWIN) // also check with .exe extension
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1007 || fnamecmp(p, "csh.exe") == 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1008 || fnamecmp(p, "tcsh.exe") == 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1009 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1010 )
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1011 {
7408
1886f2863437 commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents: 7334
diff changeset
1012 # if defined(FEAT_QUICKFIX)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1013 if (do_sp)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1014 {
15868
7fad90423bd2 patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15858
diff changeset
1015 # ifdef MSWIN
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1016 p_sp = (char_u *)">&";
7408
1886f2863437 commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents: 7334
diff changeset
1017 # else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1018 p_sp = (char_u *)"|& tee";
7408
1886f2863437 commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents: 7334
diff changeset
1019 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1020 options[idx_sp].def_val[VI_DEFAULT] = p_sp;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1021 }
7408
1886f2863437 commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents: 7334
diff changeset
1022 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1023 if (do_srr)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1024 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1025 p_srr = (char_u *)">&";
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1026 options[idx_srr].def_val[VI_DEFAULT] = p_srr;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1027 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1028 }
25068
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1029 # ifdef MSWIN
25084
beff72446e2e patch 8.2.3079: Powershell core not supported by default
Bram Moolenaar <Bram@vim.org>
parents: 25068
diff changeset
1030 // Windows PowerShell output is UTF-16 with BOM so re-encode to the
beff72446e2e patch 8.2.3079: Powershell core not supported by default
Bram Moolenaar <Bram@vim.org>
parents: 25068
diff changeset
1031 // current codepage.
25068
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1032 else if ( fnamecmp(p, "powershell") == 0
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1033 || fnamecmp(p, "powershell.exe") == 0
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1034 )
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1035 {
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1036 # if defined(FEAT_QUICKFIX)
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1037 if (do_sp)
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1038 {
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1039 p_sp = (char_u *)"2>&1 | Out-File -Encoding default";
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1040 options[idx_sp].def_val[VI_DEFAULT] = p_sp;
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1041 }
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1042 # endif
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1043 if (do_srr)
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1044 {
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1045 p_srr = (char_u *)"2>&1 | Out-File -Encoding default";
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1046 options[idx_srr].def_val[VI_DEFAULT] = p_srr;
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1047 }
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1048 }
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1049 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1050 else
24600
cb4cb3ff5736 patch 8.2.2839: default redirection missing "ash" and "dash"
Bram Moolenaar <Bram@vim.org>
parents: 24476
diff changeset
1051 // Always use POSIX shell style redirection if we reach this
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1052 if ( fnamecmp(p, "sh") == 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1053 || fnamecmp(p, "ksh") == 0
2774
e8f012b00187 updated for version 7.3.163
Bram Moolenaar <bram@vim.org>
parents: 2726
diff changeset
1054 || fnamecmp(p, "mksh") == 0
e8f012b00187 updated for version 7.3.163
Bram Moolenaar <bram@vim.org>
parents: 2726
diff changeset
1055 || fnamecmp(p, "pdksh") == 0
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1056 || fnamecmp(p, "zsh") == 0
836
5a7843c57316 updated for version 7.0e02
vimboss
parents: 835
diff changeset
1057 || fnamecmp(p, "zsh-beta") == 0
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1058 || fnamecmp(p, "bash") == 0
5867
a6b59ee633a3 updated for version 7.4.276
Bram Moolenaar <bram@vim.org>
parents: 5735
diff changeset
1059 || fnamecmp(p, "fish") == 0
24600
cb4cb3ff5736 patch 8.2.2839: default redirection missing "ash" and "dash"
Bram Moolenaar <Bram@vim.org>
parents: 24476
diff changeset
1060 || fnamecmp(p, "ash") == 0
cb4cb3ff5736 patch 8.2.2839: default redirection missing "ash" and "dash"
Bram Moolenaar <Bram@vim.org>
parents: 24476
diff changeset
1061 || fnamecmp(p, "dash") == 0
25084
beff72446e2e patch 8.2.3079: Powershell core not supported by default
Bram Moolenaar <Bram@vim.org>
parents: 25068
diff changeset
1062 || fnamecmp(p, "pwsh") == 0
15868
7fad90423bd2 patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15858
diff changeset
1063 # ifdef MSWIN
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1064 || fnamecmp(p, "cmd") == 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1065 || fnamecmp(p, "sh.exe") == 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1066 || fnamecmp(p, "ksh.exe") == 0
2774
e8f012b00187 updated for version 7.3.163
Bram Moolenaar <bram@vim.org>
parents: 2726
diff changeset
1067 || fnamecmp(p, "mksh.exe") == 0
e8f012b00187 updated for version 7.3.163
Bram Moolenaar <bram@vim.org>
parents: 2726
diff changeset
1068 || fnamecmp(p, "pdksh.exe") == 0
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1069 || fnamecmp(p, "zsh.exe") == 0
836
5a7843c57316 updated for version 7.0e02
vimboss
parents: 835
diff changeset
1070 || fnamecmp(p, "zsh-beta.exe") == 0
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1071 || fnamecmp(p, "bash.exe") == 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1072 || fnamecmp(p, "cmd.exe") == 0
24600
cb4cb3ff5736 patch 8.2.2839: default redirection missing "ash" and "dash"
Bram Moolenaar <Bram@vim.org>
parents: 24476
diff changeset
1073 || fnamecmp(p, "dash.exe") == 0
25084
beff72446e2e patch 8.2.3079: Powershell core not supported by default
Bram Moolenaar <Bram@vim.org>
parents: 25068
diff changeset
1074 || fnamecmp(p, "pwsh.exe") == 0
7408
1886f2863437 commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents: 7334
diff changeset
1075 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1076 )
7408
1886f2863437 commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents: 7334
diff changeset
1077 {
1886f2863437 commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents: 7334
diff changeset
1078 # if defined(FEAT_QUICKFIX)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1079 if (do_sp)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1080 {
15868
7fad90423bd2 patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15858
diff changeset
1081 # ifdef MSWIN
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1082 p_sp = (char_u *)">%s 2>&1";
7408
1886f2863437 commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents: 7334
diff changeset
1083 # else
25084
beff72446e2e patch 8.2.3079: Powershell core not supported by default
Bram Moolenaar <Bram@vim.org>
parents: 25068
diff changeset
1084 if (fnamecmp(p, "pwsh") == 0)
beff72446e2e patch 8.2.3079: Powershell core not supported by default
Bram Moolenaar <Bram@vim.org>
parents: 25068
diff changeset
1085 p_sp = (char_u *)">%s 2>&1";
beff72446e2e patch 8.2.3079: Powershell core not supported by default
Bram Moolenaar <Bram@vim.org>
parents: 25068
diff changeset
1086 else
beff72446e2e patch 8.2.3079: Powershell core not supported by default
Bram Moolenaar <Bram@vim.org>
parents: 25068
diff changeset
1087 p_sp = (char_u *)"2>&1| tee";
7408
1886f2863437 commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents: 7334
diff changeset
1088 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1089 options[idx_sp].def_val[VI_DEFAULT] = p_sp;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1090 }
7408
1886f2863437 commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents: 7334
diff changeset
1091 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1092 if (do_srr)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1093 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1094 p_srr = (char_u *)">%s 2>&1";
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1095 options[idx_srr].def_val[VI_DEFAULT] = p_srr;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1096 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1097 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1098 vim_free(p);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1099 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1100 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1101
15868
7fad90423bd2 patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15858
diff changeset
1102 #if defined(MSWIN)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1103 /*
3352
de050fcc24cf updated for version 7.3.443
Bram Moolenaar <bram@vim.org>
parents: 3308
diff changeset
1104 * Set 'shellcmdflag', 'shellxquote', and 'shellquote' depending on the
de050fcc24cf updated for version 7.3.443
Bram Moolenaar <bram@vim.org>
parents: 3308
diff changeset
1105 * 'shell' option.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1106 * This is done after other initializations, where 'shell' might have been
25068
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1107 * set, but only if they have not been set before.
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1108 * Default values depend on shell (cmd.exe is default shell):
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1109 *
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1110 * p_shcf p_sxq
28809
d0241e74bfdb patch 8.2.4928: various white space and cosmetic mistakes
Bram Moolenaar <Bram@vim.org>
parents: 28804
diff changeset
1111 * cmd.exe - "/c" "("
25068
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1112 * powershell.exe - "-Command" "\""
25084
beff72446e2e patch 8.2.3079: Powershell core not supported by default
Bram Moolenaar <Bram@vim.org>
parents: 25068
diff changeset
1113 * pwsh.exe - "-c" "\""
25068
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1114 * "sh" like shells - "-c" "\""
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1115 *
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1116 * For Win32 p_sxq is set instead of p_shq to include shell redirection.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1117 */
25068
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1118 if (strstr((char *)gettail(p_sh), "powershell") != NULL)
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1119 {
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1120 int idx_opt;
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1121
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1122 idx_opt = findoption((char_u *)"shcf");
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1123 if (idx_opt >= 0 && !(options[idx_opt].flags & P_WAS_SET))
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1124 {
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1125 p_shcf = (char_u*)"-Command";
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1126 options[idx_opt].def_val[VI_DEFAULT] = p_shcf;
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1127 }
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1128
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1129 idx_opt = findoption((char_u *)"sxq");
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1130 if (idx_opt >= 0 && !(options[idx_opt].flags & P_WAS_SET))
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1131 {
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1132 p_sxq = (char_u*)"\"";
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1133 options[idx_opt].def_val[VI_DEFAULT] = p_sxq;
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1134 }
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1135 }
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1136 else if (strstr((char *)gettail(p_sh), "sh") != NULL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1137 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1138 int idx3;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1139
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1140 idx3 = findoption((char_u *)"shcf");
838
8e5830943bff updated for version 7.0e04
vimboss
parents: 836
diff changeset
1141 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1142 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1143 p_shcf = (char_u *)"-c";
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1144 options[idx3].def_val[VI_DEFAULT] = p_shcf;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1145 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1146
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
1147 // Somehow Win32 requires the quotes around the redirection too
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1148 idx3 = findoption((char_u *)"sxq");
838
8e5830943bff updated for version 7.0e04
vimboss
parents: 836
diff changeset
1149 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1150 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1151 p_sxq = (char_u *)"\"";
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1152 options[idx3].def_val[VI_DEFAULT] = p_sxq;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1153 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1154 }
3352
de050fcc24cf updated for version 7.3.443
Bram Moolenaar <bram@vim.org>
parents: 3308
diff changeset
1155 else if (strstr((char *)gettail(p_sh), "cmd.exe") != NULL)
de050fcc24cf updated for version 7.3.443
Bram Moolenaar <bram@vim.org>
parents: 3308
diff changeset
1156 {
de050fcc24cf updated for version 7.3.443
Bram Moolenaar <bram@vim.org>
parents: 3308
diff changeset
1157 int idx3;
de050fcc24cf updated for version 7.3.443
Bram Moolenaar <bram@vim.org>
parents: 3308
diff changeset
1158
de050fcc24cf updated for version 7.3.443
Bram Moolenaar <bram@vim.org>
parents: 3308
diff changeset
1159 /*
de050fcc24cf updated for version 7.3.443
Bram Moolenaar <bram@vim.org>
parents: 3308
diff changeset
1160 * cmd.exe on Windows will strip the first and last double quote given
de050fcc24cf updated for version 7.3.443
Bram Moolenaar <bram@vim.org>
parents: 3308
diff changeset
1161 * on the command line, e.g. most of the time things like:
de050fcc24cf updated for version 7.3.443
Bram Moolenaar <bram@vim.org>
parents: 3308
diff changeset
1162 * cmd /c "my path/to/echo" "my args to echo"
de050fcc24cf updated for version 7.3.443
Bram Moolenaar <bram@vim.org>
parents: 3308
diff changeset
1163 * become:
de050fcc24cf updated for version 7.3.443
Bram Moolenaar <bram@vim.org>
parents: 3308
diff changeset
1164 * my path/to/echo" "my args to echo
de050fcc24cf updated for version 7.3.443
Bram Moolenaar <bram@vim.org>
parents: 3308
diff changeset
1165 * when executed.
de050fcc24cf updated for version 7.3.443
Bram Moolenaar <bram@vim.org>
parents: 3308
diff changeset
1166 *
3357
397e7e49bb0b updated for version 7.3.445
Bram Moolenaar <bram@vim.org>
parents: 3352
diff changeset
1167 * To avoid this, set shellxquote to surround the command in
397e7e49bb0b updated for version 7.3.445
Bram Moolenaar <bram@vim.org>
parents: 3352
diff changeset
1168 * parenthesis. This appears to make most commands work, without
397e7e49bb0b updated for version 7.3.445
Bram Moolenaar <bram@vim.org>
parents: 3352
diff changeset
1169 * breaking commands that worked previously, such as
397e7e49bb0b updated for version 7.3.445
Bram Moolenaar <bram@vim.org>
parents: 3352
diff changeset
1170 * '"path with spaces/cmd" "a&b"'.
3352
de050fcc24cf updated for version 7.3.443
Bram Moolenaar <bram@vim.org>
parents: 3308
diff changeset
1171 */
de050fcc24cf updated for version 7.3.443
Bram Moolenaar <bram@vim.org>
parents: 3308
diff changeset
1172 idx3 = findoption((char_u *)"sxq");
de050fcc24cf updated for version 7.3.443
Bram Moolenaar <bram@vim.org>
parents: 3308
diff changeset
1173 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
de050fcc24cf updated for version 7.3.443
Bram Moolenaar <bram@vim.org>
parents: 3308
diff changeset
1174 {
3357
397e7e49bb0b updated for version 7.3.445
Bram Moolenaar <bram@vim.org>
parents: 3352
diff changeset
1175 p_sxq = (char_u *)"(";
3352
de050fcc24cf updated for version 7.3.443
Bram Moolenaar <bram@vim.org>
parents: 3308
diff changeset
1176 options[idx3].def_val[VI_DEFAULT] = p_sxq;
de050fcc24cf updated for version 7.3.443
Bram Moolenaar <bram@vim.org>
parents: 3308
diff changeset
1177 }
de050fcc24cf updated for version 7.3.443
Bram Moolenaar <bram@vim.org>
parents: 3308
diff changeset
1178
de050fcc24cf updated for version 7.3.443
Bram Moolenaar <bram@vim.org>
parents: 3308
diff changeset
1179 idx3 = findoption((char_u *)"shcf");
de050fcc24cf updated for version 7.3.443
Bram Moolenaar <bram@vim.org>
parents: 3308
diff changeset
1180 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
de050fcc24cf updated for version 7.3.443
Bram Moolenaar <bram@vim.org>
parents: 3308
diff changeset
1181 {
3357
397e7e49bb0b updated for version 7.3.445
Bram Moolenaar <bram@vim.org>
parents: 3352
diff changeset
1182 p_shcf = (char_u *)"/c";
3352
de050fcc24cf updated for version 7.3.443
Bram Moolenaar <bram@vim.org>
parents: 3308
diff changeset
1183 options[idx3].def_val[VI_DEFAULT] = p_shcf;
de050fcc24cf updated for version 7.3.443
Bram Moolenaar <bram@vim.org>
parents: 3308
diff changeset
1184 }
de050fcc24cf updated for version 7.3.443
Bram Moolenaar <bram@vim.org>
parents: 3308
diff changeset
1185 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1186 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1187
11121
778c10516955 patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11107
diff changeset
1188 if (BUFEMPTY())
8659
72e2f387466f commit https://github.com/vim/vim/commit/364fa5c7ec2a99a791c8f8b66fe70b0bf1dd9a41
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
1189 {
72e2f387466f commit https://github.com/vim/vim/commit/364fa5c7ec2a99a791c8f8b66fe70b0bf1dd9a41
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
1190 int idx_ffs = findoption((char_u *)"ffs");
72e2f387466f commit https://github.com/vim/vim/commit/364fa5c7ec2a99a791c8f8b66fe70b0bf1dd9a41
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
1191
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
1192 // Apply the first entry of 'fileformats' to the initial buffer.
8659
72e2f387466f commit https://github.com/vim/vim/commit/364fa5c7ec2a99a791c8f8b66fe70b0bf1dd9a41
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
1193 if (idx_ffs >= 0 && (options[idx_ffs].flags & P_WAS_SET))
72e2f387466f commit https://github.com/vim/vim/commit/364fa5c7ec2a99a791c8f8b66fe70b0bf1dd9a41
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
1194 set_fileformat(default_fileformat(), OPT_LOCAL);
72e2f387466f commit https://github.com/vim/vim/commit/364fa5c7ec2a99a791c8f8b66fe70b0bf1dd9a41
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
1195 }
72e2f387466f commit https://github.com/vim/vim/commit/364fa5c7ec2a99a791c8f8b66fe70b0bf1dd9a41
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
1196
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1197 set_title_defaults();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1198 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1199
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1200 #if defined(FEAT_MULTI_LANG) || defined(PROTO)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1201 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1202 * When 'helplang' is still at its default value, set it to "lang".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1203 * Only the first two characters of "lang" are used.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1204 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1205 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
1206 set_helplang_default(char_u *lang)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1207 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1208 int idx;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1209
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
1210 if (lang == NULL || STRLEN(lang) < 2) // safety check
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1211 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1212 idx = findoption((char_u *)"hlg");
31752
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1213 if (idx < 0 || (options[idx].flags & P_WAS_SET))
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1214 return;
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1215
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1216 if (options[idx].flags & P_ALLOCED)
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1217 free_string_option(p_hlg);
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1218 p_hlg = vim_strsave(lang);
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1219 if (p_hlg == NULL)
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1220 p_hlg = empty_option;
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1221 else
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1222 {
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1223 // zh_CN becomes "cn", zh_TW becomes "tw"
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1224 if (STRNICMP(p_hlg, "zh_", 3) == 0 && STRLEN(p_hlg) >= 5)
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1225 {
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1226 p_hlg[0] = TOLOWER_ASC(p_hlg[3]);
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1227 p_hlg[1] = TOLOWER_ASC(p_hlg[4]);
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1228 }
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1229 // any C like setting, such as C.UTF-8, becomes "en"
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1230 else if (STRLEN(p_hlg) >= 1 && *p_hlg == 'C')
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1231 {
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1232 p_hlg[0] = 'e';
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1233 p_hlg[1] = 'n';
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1234 }
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1235 p_hlg[2] = NUL;
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1236 }
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1237 options[idx].flags |= P_ALLOCED;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1238 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1239 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1240
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1241 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1242 * 'title' and 'icon' only default to true if they have not been set or reset
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1243 * in .vimrc and we can read the old value.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1244 * When 'title' and 'icon' have been reset in .vimrc, we won't even check if
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1245 * they can be reset. This reduces startup time when using X on a remote
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1246 * machine.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1247 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1248 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
1249 set_title_defaults(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1250 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1251 int idx1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1252 long val;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1253
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1254 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1255 * If GUI is (going to be) used, we can always set the window title and
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1256 * icon name. Saves a bit of time, because the X11 display server does
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1257 * not need to be contacted.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1258 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1259 idx1 = findoption((char_u *)"title");
838
8e5830943bff updated for version 7.0e04
vimboss
parents: 836
diff changeset
1260 if (idx1 >= 0 && !(options[idx1].flags & P_WAS_SET))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1261 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1262 #ifdef FEAT_GUI
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1263 if (gui.starting || gui.in_use)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1264 val = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1265 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1266 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1267 val = mch_can_restore_title();
840
2c885fab04e3 updated for version 7.0e06
vimboss
parents: 839
diff changeset
1268 options[idx1].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1269 p_title = val;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1270 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1271 idx1 = findoption((char_u *)"icon");
31752
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1272 if (idx1 < 0 || (options[idx1].flags & P_WAS_SET))
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1273 {
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1274 return;
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1275 }
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1276
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1277 #ifdef FEAT_GUI
31752
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1278 if (gui.starting || gui.in_use)
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1279 val = TRUE;
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1280 else
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1281 #endif
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1282 val = mch_can_restore_icon();
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1283 options[idx1].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1284 p_icon = val;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1285 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1286
19137
69f0e9b5c107 patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents: 18991
diff changeset
1287 void
69f0e9b5c107 patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents: 18991
diff changeset
1288 ex_set(exarg_T *eap)
69f0e9b5c107 patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents: 18991
diff changeset
1289 {
69f0e9b5c107 patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents: 18991
diff changeset
1290 int flags = 0;
69f0e9b5c107 patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents: 18991
diff changeset
1291
69f0e9b5c107 patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents: 18991
diff changeset
1292 if (eap->cmdidx == CMD_setlocal)
69f0e9b5c107 patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents: 18991
diff changeset
1293 flags = OPT_LOCAL;
69f0e9b5c107 patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents: 18991
diff changeset
1294 else if (eap->cmdidx == CMD_setglobal)
69f0e9b5c107 patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents: 18991
diff changeset
1295 flags = OPT_GLOBAL;
69f0e9b5c107 patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents: 18991
diff changeset
1296 #if defined(FEAT_EVAL) && defined(FEAT_BROWSE)
22699
e82579016863 patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents: 22242
diff changeset
1297 if ((cmdmod.cmod_flags & CMOD_BROWSE) && flags == 0)
19137
69f0e9b5c107 patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents: 18991
diff changeset
1298 ex_options(eap);
69f0e9b5c107 patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents: 18991
diff changeset
1299 else
69f0e9b5c107 patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents: 18991
diff changeset
1300 #endif
69f0e9b5c107 patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents: 18991
diff changeset
1301 {
69f0e9b5c107 patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents: 18991
diff changeset
1302 if (eap->forceit)
69f0e9b5c107 patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents: 18991
diff changeset
1303 flags |= OPT_ONECOLUMN;
69f0e9b5c107 patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents: 18991
diff changeset
1304 (void)do_set(eap->arg, flags);
69f0e9b5c107 patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents: 18991
diff changeset
1305 }
69f0e9b5c107 patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents: 18991
diff changeset
1306 }
69f0e9b5c107 patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents: 18991
diff changeset
1307
31902
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1308 /*
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1309 * :set operator types
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1310 */
30403
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1311 typedef enum {
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1312 OP_NONE = 0,
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1313 OP_ADDING, // "opt+=arg"
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1314 OP_PREPENDING, // "opt^=arg"
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1315 OP_REMOVING, // "opt-=arg"
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1316 } set_op_T;
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1317
31902
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1318 typedef enum {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1319 PREFIX_NO = 0, // "no" prefix
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1320 PREFIX_NONE, // no prefix
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1321 PREFIX_INV, // "inv" prefix
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1322 } set_prefix_T;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1323
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1324 /*
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1325 * Return the prefix type for the option name in *argp.
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1326 */
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1327 static set_prefix_T
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1328 get_option_prefix(char_u **argp)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1329 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1330 int prefix = PREFIX_NONE;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1331 char_u *arg = *argp;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1332
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1333 if (STRNCMP(arg, "no", 2) == 0 && STRNCMP(arg, "novice", 6) != 0)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1334 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1335 prefix = PREFIX_NO;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1336 arg += 2;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1337 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1338 else if (STRNCMP(arg, "inv", 3) == 0)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1339 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1340 prefix = PREFIX_INV;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1341 arg += 3;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1342 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1343
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1344 *argp = arg;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1345 return prefix;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1346 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1347
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1348 /*
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1349 * Parse the option name in "arg" and return the option index in "*opt_idxp",
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1350 * and the option name length in "*lenp". For a <t_xx> option, return the key
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1351 * number in "*keyp".
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1352 *
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1353 * Returns FAIL if an option starting with "<" doesn't end with a ">",
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1354 * otherwise returns OK.
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1355 */
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1356 static int
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1357 parse_option_name(char_u *arg, int *opt_idxp, int *lenp, int *keyp)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1358 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1359 int key = 0;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1360 int len;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1361 int opt_idx;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1362
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1363 if (*arg == '<')
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1364 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1365 opt_idx = -1;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1366 // look out for <t_>;>
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1367 if (arg[1] == 't' && arg[2] == '_' && arg[3] && arg[4])
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1368 len = 5;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1369 else
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1370 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1371 len = 1;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1372 while (arg[len] != NUL && arg[len] != '>')
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1373 ++len;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1374 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1375 if (arg[len] != '>')
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1376 return FAIL;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1377
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1378 arg[len] = NUL; // put NUL after name
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1379 if (arg[1] == 't' && arg[2] == '_') // could be term code
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1380 opt_idx = findoption(arg + 1);
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1381 arg[len++] = '>'; // restore '>'
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1382 if (opt_idx == -1)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1383 key = find_key_option(arg + 1, TRUE);
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1384 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1385 else
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1386 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1387 int nextchar; // next non-white char after option name
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1388
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1389 len = 0;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1390 /*
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1391 * The two characters after "t_" may not be alphanumeric.
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1392 */
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1393 if (arg[0] == 't' && arg[1] == '_' && arg[2] && arg[3])
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1394 len = 4;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1395 else
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1396 while (ASCII_ISALNUM(arg[len]) || arg[len] == '_')
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1397 ++len;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1398 nextchar = arg[len];
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1399 arg[len] = NUL; // put NUL after name
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1400 opt_idx = findoption(arg);
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1401 arg[len] = nextchar; // restore nextchar
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1402 if (opt_idx == -1)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1403 key = find_key_option(arg, FALSE);
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1404 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1405
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1406 *keyp = key;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1407 *lenp = len;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1408 *opt_idxp = opt_idx;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1409
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1410 return OK;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1411 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1412
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1413 /*
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1414 * Get the option operator (+=, ^=, -=).
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1415 */
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1416 static set_op_T
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1417 get_opt_op(char_u *arg)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1418 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1419 set_op_T op = OP_NONE;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1420
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1421 if (*arg != NUL && *(arg + 1) == '=')
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1422 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1423 if (*arg == '+')
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1424 op = OP_ADDING; // "+="
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1425 else if (*arg == '^')
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1426 op = OP_PREPENDING; // "^="
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1427 else if (*arg == '-')
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1428 op = OP_REMOVING; // "-="
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1429 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1430
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1431 return op;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1432 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1433
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1434 /*
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1435 * Validate whether the value of the option in "opt_idx" can be changed.
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1436 * Returns FAIL if the option can be skipped or cannot be changed. Returns OK
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1437 * if it can be changed.
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1438 */
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1439 static int
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1440 validate_opt_idx(int opt_idx, int opt_flags, long_u flags, char **errmsg)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1441 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1442 // Skip all options that are not window-local (used when showing
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1443 // an already loaded buffer in a window).
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1444 if ((opt_flags & OPT_WINONLY)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1445 && (opt_idx < 0 || options[opt_idx].var != VAR_WIN))
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1446 return FAIL;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1447
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1448 // Skip all options that are window-local (used for :vimgrep).
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1449 if ((opt_flags & OPT_NOWIN) && opt_idx >= 0
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1450 && options[opt_idx].var == VAR_WIN)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1451 return FAIL;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1452
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1453 // Disallow changing some options from modelines.
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1454 if (opt_flags & OPT_MODELINE)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1455 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1456 if (flags & (P_SECURE | P_NO_ML))
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1457 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1458 *errmsg = e_not_allowed_in_modeline;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1459 return FAIL;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1460 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1461 if ((flags & P_MLE) && !p_mle)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1462 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1463 *errmsg = e_not_allowed_in_modeline_when_modelineexpr_is_off;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1464 return FAIL;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1465 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1466 #ifdef FEAT_DIFF
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1467 // In diff mode some options are overruled. This avoids that
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1468 // 'foldmethod' becomes "marker" instead of "diff" and that
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1469 // "wrap" gets set.
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1470 if (curwin->w_p_diff
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1471 && opt_idx >= 0 // shut up coverity warning
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1472 && (
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1473 # ifdef FEAT_FOLDING
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1474 options[opt_idx].indir == PV_FDM ||
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1475 # endif
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1476 options[opt_idx].indir == PV_WRAP))
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1477 return FAIL;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1478 #endif
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1479 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1480
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1481 #ifdef HAVE_SANDBOX
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1482 // Disallow changing some options in the sandbox
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1483 if (sandbox != 0 && (flags & P_SECURE))
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1484 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1485 *errmsg = e_not_allowed_in_sandbox;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1486 return FAIL;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1487 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1488 #endif
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1489
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1490 return OK;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1491 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1492
30403
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1493 /*
31952
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1494 * Get the Vim/Vi default value for a string option.
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1495 */
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1496 static char_u *
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1497 stropt_get_default_val(
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1498 int opt_idx,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1499 char_u *varp,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1500 int flags,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1501 int cp_val)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1502 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1503 char_u *newval;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1504
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1505 newval = options[opt_idx].def_val[((flags & P_VI_DEF) || cp_val)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1506 ? VI_DEFAULT : VIM_DEFAULT];
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1507 if ((char_u **)varp == &p_bg)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1508 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1509 // guess the value of 'background'
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1510 #ifdef FEAT_GUI
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1511 if (gui.in_use)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1512 newval = gui_bg_default();
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1513 else
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1514 #endif
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1515 newval = term_bg_default();
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1516 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1517 else if ((char_u **)varp == &p_fencs && enc_utf8)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1518 newval = fencs_utf8_default;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1519
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1520 // expand environment variables and ~ since the default value was
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1521 // already expanded, only required when an environment variable was set
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1522 // later
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1523 if (newval == NULL)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1524 newval = empty_option;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1525 else
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1526 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1527 char_u *s = option_expand(opt_idx, newval);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1528 if (s == NULL)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1529 s = newval;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1530 newval = vim_strsave(s);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1531 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1532
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1533 return newval;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1534 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1535
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1536 /*
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1537 * Convert the 'backspace' option number value to a string: for adding,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1538 * prepending and removing string.
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1539 */
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1540 static void
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1541 opt_backspace_nr2str(
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1542 char_u *varp,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1543 char_u **origval_p,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1544 char_u **origval_l_p,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1545 char_u **origval_g_p,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1546 char_u **oldval_p)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1547 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1548 int i = getdigits((char_u **)varp);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1549
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1550 switch (i)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1551 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1552 case 0:
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1553 *(char_u **)varp = empty_option;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1554 break;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1555 case 1:
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1556 *(char_u **)varp = vim_strsave((char_u *)"indent,eol");
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1557 break;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1558 case 2:
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1559 *(char_u **)varp = vim_strsave((char_u *)"indent,eol,start");
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1560 break;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1561 case 3:
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1562 *(char_u **)varp = vim_strsave((char_u *)"indent,eol,nostop");
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1563 break;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1564 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1565 vim_free(*oldval_p);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1566 if (*origval_p == *oldval_p)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1567 *origval_p = *(char_u **)varp;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1568 if (*origval_l_p == *oldval_p)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1569 *origval_l_p = *(char_u **)varp;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1570 if (*origval_g_p == *oldval_p)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1571 *origval_g_p = *(char_u **)varp;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1572 *oldval_p = *(char_u **)varp;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1573 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1574
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1575 /*
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1576 * Convert the 'whichwrap' option number value to a string, for backwards
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1577 * compatibility with Vim 3.0.
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1578 * Note: 'argp' is a pointer to a char_u pointer and is updated.
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1579 */
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1580 static char_u *
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1581 opt_whichwrap_nr2str(char_u **argp, char_u *whichwrap)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1582 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1583 *whichwrap = NUL;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1584 int i = getdigits(argp);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1585 if (i & 1)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1586 STRCAT(whichwrap, "b,");
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1587 if (i & 2)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1588 STRCAT(whichwrap, "s,");
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1589 if (i & 4)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1590 STRCAT(whichwrap, "h,l,");
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1591 if (i & 8)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1592 STRCAT(whichwrap, "<,>,");
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1593 if (i & 16)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1594 STRCAT(whichwrap, "[,],");
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1595 if (*whichwrap != NUL) // remove trailing ,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1596 whichwrap[STRLEN(whichwrap) - 1] = NUL;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1597
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1598 return whichwrap;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1599 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1600
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1601 /*
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1602 * Copy the new string value into allocated memory for the option.
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1603 * Can't use set_string_option_direct(), because we need to remove the
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1604 * backslashes.
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1605 */
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1606 static char_u *
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1607 stropt_copy_value(
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1608 char_u *origval,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1609 char_u **argp,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1610 set_op_T op,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1611 int flags UNUSED)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1612 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1613 char_u *arg = *argp;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1614 unsigned newlen;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1615 char_u *newval;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1616 char_u *s = NULL;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1617
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1618 // get a bit too much
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1619 newlen = (unsigned)STRLEN(arg) + 1;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1620 if (op != OP_NONE)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1621 newlen += (unsigned)STRLEN(origval) + 1;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1622 newval = alloc(newlen);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1623 if (newval == NULL) // out of mem, don't change
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1624 return NULL;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1625 s = newval;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1626
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1627 // Copy the string, skip over escaped chars.
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1628 // For MS-DOS and WIN32 backslashes before normal file name characters
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1629 // are not removed, and keep backslash at start, for "\\machine\path",
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1630 // but do remove it for "\\\\machine\\path".
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1631 // The reverse is found in ExpandOldSetting().
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1632 while (*arg != NUL && !VIM_ISWHITE(*arg))
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1633 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1634 int i;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1635
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1636 if (*arg == '\\' && arg[1] != NUL
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1637 #ifdef BACKSLASH_IN_FILENAME
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1638 && !((flags & P_EXPAND)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1639 && vim_isfilec(arg[1])
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1640 && !VIM_ISWHITE(arg[1])
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1641 && (arg[1] != '\\'
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1642 || (s == newval && arg[2] != '\\')))
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1643 #endif
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1644 )
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1645 ++arg; // remove backslash
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1646 if (has_mbyte && (i = (*mb_ptr2len)(arg)) > 1)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1647 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1648 // copy multibyte char
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1649 mch_memmove(s, arg, (size_t)i);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1650 arg += i;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1651 s += i;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1652 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1653 else
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1654 *s++ = *arg++;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1655 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1656 *s = NUL;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1657
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1658 *argp = arg;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1659 return newval;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1660 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1661
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1662 /*
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1663 * Expand environment variables and ~ in string option value 'newval'.
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1664 */
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1665 static char_u *
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1666 stropt_expand_envvar(
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1667 int opt_idx,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1668 char_u *origval,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1669 char_u *newval,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1670 set_op_T op)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1671 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1672 char_u *s = option_expand(opt_idx, newval);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1673 if (s == NULL)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1674 return newval;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1675
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1676 vim_free(newval);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1677 unsigned newlen = (unsigned)STRLEN(s) + 1;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1678 if (op != OP_NONE)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1679 newlen += (unsigned)STRLEN(origval) + 1;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1680
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1681 newval = alloc(newlen);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1682 if (newval == NULL)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1683 return NULL;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1684
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1685 STRCPY(newval, s);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1686
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1687 return newval;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1688 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1689
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1690 /*
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1691 * Concatenate the original and new values of a string option, adding a "," if
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1692 * needed.
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1693 */
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1694 static void
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1695 stropt_concat_with_comma(
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1696 char_u *origval,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1697 char_u *newval,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1698 set_op_T op,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1699 int flags)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1700 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1701 int len = 0;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1702
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1703 int comma = ((flags & P_COMMA) && *origval != NUL && *newval != NUL);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1704 if (op == OP_ADDING)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1705 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1706 len = (int)STRLEN(origval);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1707 // strip a trailing comma, would get 2
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1708 if (comma && len > 1
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1709 && (flags & P_ONECOMMA) == P_ONECOMMA
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1710 && origval[len - 1] == ','
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1711 && origval[len - 2] != '\\')
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1712 len--;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1713 mch_memmove(newval + len + comma, newval, STRLEN(newval) + 1);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1714 mch_memmove(newval, origval, (size_t)len);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1715 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1716 else
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1717 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1718 len = (int)STRLEN(newval);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1719 STRMOVE(newval + len + comma, origval);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1720 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1721 if (comma)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1722 newval[len] = ',';
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1723 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1724
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1725 /*
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1726 * Remove a value from a string option. Copy string option value in "origval"
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1727 * to "newval" and then remove the string "strval" of length "len".
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1728 */
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1729 static void
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1730 stropt_remove_val(
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1731 char_u *origval,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1732 char_u *newval,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1733 int flags,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1734 char_u *strval,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1735 int len)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1736 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1737 // Remove newval[] from origval[]. (Note: "len" has been set above
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1738 // and is used here).
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1739 STRCPY(newval, origval);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1740 if (*strval)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1741 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1742 // may need to remove a comma
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1743 if (flags & P_COMMA)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1744 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1745 if (strval == origval)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1746 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1747 // include comma after string
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1748 if (strval[len] == ',')
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1749 ++len;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1750 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1751 else
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1752 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1753 // include comma before string
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1754 --strval;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1755 ++len;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1756 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1757 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1758 STRMOVE(newval + (strval - origval), strval + len);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1759 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1760 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1761
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1762 /*
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1763 * Remove flags that appear twice in the string option value 'newval'.
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1764 */
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1765 static void
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1766 stropt_remove_dupflags(char_u *newval, int flags)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1767 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1768 char_u *s = newval;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1769
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1770 // Remove flags that appear twice.
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1771 while (*s)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1772 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1773 // if options have P_FLAGLIST and P_ONECOMMA such as 'whichwrap'
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1774 if (flags & P_ONECOMMA)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1775 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1776 if (*s != ',' && *(s + 1) == ',' && vim_strchr(s + 2, *s) != NULL)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1777 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1778 // Remove the duplicated value and the next comma.
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1779 STRMOVE(s, s + 2);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1780 continue;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1781 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1782 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1783 else
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1784 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1785 if ((!(flags & P_COMMA) || *s != ',')
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1786 && vim_strchr(s + 1, *s) != NULL)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1787 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1788 STRMOVE(s, s + 1);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1789 continue;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1790 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1791 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1792 ++s;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1793 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1794 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1795
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1796 /*
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1797 * Get the string value specified for a ":set" command. The following set
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1798 * options are supported:
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1799 * set {opt}&
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1800 * set {opt}<
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1801 * set {opt}={val}
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1802 * set {opt}:{val}
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1803 */
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1804 static char_u *
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1805 stropt_get_newval(
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1806 int nextchar,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1807 int opt_idx,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1808 char_u **argp,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1809 char_u *varp,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1810 char_u **origval_arg,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1811 char_u **origval_l_arg,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1812 char_u **origval_g_arg,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1813 char_u **oldval_arg,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1814 set_op_T *op_arg,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1815 int flags,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1816 int cp_val)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1817 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1818 char_u *arg = *argp;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1819 char_u *origval = *origval_arg;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1820 char_u *origval_l = *origval_l_arg;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1821 char_u *origval_g = *origval_g_arg;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1822 char_u *oldval = *oldval_arg;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1823 set_op_T op = *op_arg;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1824 char_u *save_arg = NULL;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1825 char_u *newval;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1826 char_u *s = NULL;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1827 char_u whichwrap[80];
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1828
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1829 if (nextchar == '&') // set to default val
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1830 newval = stropt_get_default_val(opt_idx, varp, flags, cp_val);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1831 else if (nextchar == '<') // set to global val
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1832 newval = vim_strsave(*(char_u **)get_varp_scope(
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1833 &(options[opt_idx]), OPT_GLOBAL));
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1834 else
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1835 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1836 ++arg; // jump to after the '=' or ':'
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1837
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1838 // Set 'keywordprg' to ":help" if an empty
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1839 // value was passed to :set by the user.
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1840 if (varp == (char_u *)&p_kp && (*arg == NUL || *arg == ' '))
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1841 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1842 save_arg = arg;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1843 arg = (char_u *)":help";
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1844 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1845 // Convert 'backspace' number to string
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1846 else if (varp == (char_u *)&p_bs && VIM_ISDIGIT(**(char_u **)varp))
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1847 opt_backspace_nr2str(varp, &origval, &origval_l, &origval_g,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1848 &oldval);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1849 else if (varp == (char_u *)&p_ww && VIM_ISDIGIT(*arg))
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1850 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1851 // Convert 'whichwrap' number to string, for backwards
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1852 // compatibility with Vim 3.0.
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1853 char_u *t = opt_whichwrap_nr2str(&arg, whichwrap);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1854 save_arg = arg;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1855 arg = t;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1856 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1857 // Remove '>' before 'dir' and 'bdir', for backwards compatibility with
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1858 // version 3.0
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1859 else if (*arg == '>' && (varp == (char_u *)&p_dir
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1860 || varp == (char_u *)&p_bdir))
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1861 ++arg;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1862
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1863 // Copy the new string into allocated memory.
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1864 newval = stropt_copy_value(origval, &arg, op, flags);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1865 if (newval == NULL)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1866 goto done;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1867
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1868 // Expand environment variables and ~.
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1869 // Don't do it when adding without inserting a comma.
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1870 if (op == OP_NONE || (flags & P_COMMA))
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1871 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1872 newval = stropt_expand_envvar(opt_idx, origval, newval, op);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1873 if (newval == NULL)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1874 goto done;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1875 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1876
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1877 // locate newval[] in origval[] when removing it and when adding to
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1878 // avoid duplicates
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1879 int len = 0;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1880 if (op == OP_REMOVING || (flags & P_NODUP))
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1881 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1882 len = (int)STRLEN(newval);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1883 s = find_dup_item(origval, newval, flags);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1884
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1885 // do not add if already there
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1886 if ((op == OP_ADDING || op == OP_PREPENDING) && s != NULL)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1887 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1888 op = OP_NONE;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1889 STRCPY(newval, origval);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1890 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1891
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1892 // if no duplicate, move pointer to end of original value
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1893 if (s == NULL)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1894 s = origval + (int)STRLEN(origval);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1895 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1896
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1897 // concatenate the two strings; add a ',' if needed
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1898 if (op == OP_ADDING || op == OP_PREPENDING)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1899 stropt_concat_with_comma(origval, newval, op, flags);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1900 else if (op == OP_REMOVING)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1901 // Remove newval[] from origval[]. (Note: "len" has been set above
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1902 // and is used here).
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1903 stropt_remove_val(origval, newval, flags, s, len);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1904
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1905 if (flags & P_FLAGLIST)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1906 // Remove flags that appear twice.
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1907 stropt_remove_dupflags(newval, flags);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1908 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1909
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1910 done:
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1911 if (save_arg != NULL)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1912 arg = save_arg; // arg was temporarily changed, restore it
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1913 *argp = arg;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1914 *origval_arg = origval;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1915 *origval_l_arg = origval_l;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1916 *origval_g_arg = origval_g;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1917 *oldval_arg = oldval;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1918 *op_arg = op;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1919
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1920 return newval;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1921 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1922
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1923 /*
30403
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1924 * Part of do_set() for string options.
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1925 * Returns FAIL on failure, do not process further options.
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1926 */
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1927 static int
31952
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1928 do_set_option_string(
30403
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1929 int opt_idx,
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1930 int opt_flags,
30409
aea53db7eeec patch 9.0.0540: assigning stack variable to argument confuses Coverity
Bram Moolenaar <Bram@vim.org>
parents: 30403
diff changeset
1931 char_u **argp,
30403
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1932 int nextchar,
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1933 set_op_T op_arg,
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1934 int flags,
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1935 int cp_val,
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1936 char_u *varp_arg,
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1937 char *errbuf,
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1938 int *value_checked,
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1939 char **errmsg)
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1940 {
30409
aea53db7eeec patch 9.0.0540: assigning stack variable to argument confuses Coverity
Bram Moolenaar <Bram@vim.org>
parents: 30403
diff changeset
1941 char_u *arg = *argp;
30403
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1942 set_op_T op = op_arg;
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1943 char_u *varp = varp_arg;
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1944 char_u *oldval = NULL; // previous value if *varp
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1945 char_u *newval;
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1946 char_u *origval = NULL;
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1947 char_u *origval_l = NULL;
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1948 char_u *origval_g = NULL;
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1949 #if defined(FEAT_EVAL)
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1950 char_u *saved_origval = NULL;
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1951 char_u *saved_origval_l = NULL;
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1952 char_u *saved_origval_g = NULL;
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1953 char_u *saved_newval = NULL;
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1954 #endif
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1955
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1956 // When using ":set opt=val" for a global option
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1957 // with a local value the local value will be
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1958 // reset, use the global value here.
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1959 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1960 && ((int)options[opt_idx].indir & PV_BOTH))
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1961 varp = options[opt_idx].var;
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1962
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1963 // The old value is kept until we are sure that the new value is valid.
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1964 oldval = *(char_u **)varp;
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1965
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1966 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0)
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1967 {
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1968 origval_l = *(char_u **)get_varp_scope(
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1969 &(options[opt_idx]), OPT_LOCAL);
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1970 origval_g = *(char_u **)get_varp_scope(
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1971 &(options[opt_idx]), OPT_GLOBAL);
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1972
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1973 // A global-local string option might have an empty option as value to
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1974 // indicate that the global value should be used.
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1975 if (((int)options[opt_idx].indir & PV_BOTH)
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1976 && origval_l == empty_option)
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1977 origval_l = origval_g;
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1978 }
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1979
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1980 // When setting the local value of a global option, the old value may be
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1981 // the global value.
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1982 if (((int)options[opt_idx].indir & PV_BOTH) && (opt_flags & OPT_LOCAL))
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1983 origval = *(char_u **)get_varp(&options[opt_idx]);
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1984 else
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1985 origval = oldval;
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1986
31952
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1987 // Get the new value for the option
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1988 newval = stropt_get_newval(nextchar, opt_idx, &arg, varp, &origval,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1989 &origval_l, &origval_g, &oldval, &op, flags,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1990 cp_val);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1991
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1992 // Set the new value.
30403
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1993 *(char_u **)(varp) = newval;
31958
b08c410578a5 patch 9.0.1311: Coverity warns for using a NULL pointer
Bram Moolenaar <Bram@vim.org>
parents: 31952
diff changeset
1994 if (newval == NULL)
b08c410578a5 patch 9.0.1311: Coverity warns for using a NULL pointer
Bram Moolenaar <Bram@vim.org>
parents: 31952
diff changeset
1995 *(char_u **)(varp) = empty_option;
30403
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1996
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1997 #if defined(FEAT_EVAL)
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1998 if (!starting
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1999 # ifdef FEAT_CRYPT
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2000 && options[opt_idx].indir != PV_KEY
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2001 # endif
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2002 && origval != NULL && newval != NULL)
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2003 {
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2004 // origval may be freed by did_set_string_option(), make a copy.
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2005 saved_origval = vim_strsave(origval);
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2006 // newval (and varp) may become invalid if the buffer is closed by
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2007 // autocommands.
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2008 saved_newval = vim_strsave(newval);
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2009 if (origval_l != NULL)
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2010 saved_origval_l = vim_strsave(origval_l);
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2011 if (origval_g != NULL)
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2012 saved_origval_g = vim_strsave(origval_g);
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2013 }
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2014 #endif
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2015
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2016 {
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2017 long_u *p = insecure_flag(opt_idx, opt_flags);
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2018 int secure_saved = secure;
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2019
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2020 // When an option is set in the sandbox, from a modeline or in secure
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2021 // mode, then deal with side effects in secure mode. Also when the
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2022 // value was set with the P_INSECURE flag and is not completely
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2023 // replaced.
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2024 if ((opt_flags & OPT_MODELINE)
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2025 #ifdef HAVE_SANDBOX
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2026 || sandbox != 0
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2027 #endif
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2028 || (op != OP_NONE && (*p & P_INSECURE)))
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2029 secure = 1;
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2030
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2031 // Handle side effects, and set the global value for ":set" on local
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2032 // options. Note: when setting 'syntax' or 'filetype' autocommands may
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2033 // be triggered that can cause havoc.
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2034 *errmsg = did_set_string_option(
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2035 opt_idx, (char_u **)varp, oldval, errbuf,
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2036 opt_flags, value_checked);
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2037
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2038 secure = secure_saved;
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2039 }
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2040
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2041 #if defined(FEAT_EVAL)
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2042 if (*errmsg == NULL)
31259
a7dba627a21b patch 9.0.0963: function name does not match autocmd event name
Bram Moolenaar <Bram@vim.org>
parents: 31174
diff changeset
2043 trigger_optionset_string(opt_idx, opt_flags, saved_origval,
30403
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2044 saved_origval_l, saved_origval_g, saved_newval);
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2045 vim_free(saved_origval);
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2046 vim_free(saved_origval_l);
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2047 vim_free(saved_origval_g);
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2048 vim_free(saved_newval);
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2049 #endif
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2050
30409
aea53db7eeec patch 9.0.0540: assigning stack variable to argument confuses Coverity
Bram Moolenaar <Bram@vim.org>
parents: 30403
diff changeset
2051 *argp = arg;
30403
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2052 return *errmsg == NULL ? OK : FAIL;
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2053 }
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2054
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2055 /*
31908
1ae3ad2e3d03 patch 9.0.1286: Coverity warns for using a NULL pointer
Bram Moolenaar <Bram@vim.org>
parents: 31904
diff changeset
2056 * Set a boolean option.
1ae3ad2e3d03 patch 9.0.1286: Coverity warns for using a NULL pointer
Bram Moolenaar <Bram@vim.org>
parents: 31904
diff changeset
2057 * Returns an untranslated error message or NULL.
31902
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2058 */
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2059 static char *
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2060 do_set_option_bool(
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2061 int opt_idx,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2062 int opt_flags,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2063 set_prefix_T prefix,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2064 long_u flags,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2065 char_u *varp,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2066 int nextchar,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2067 int afterchar,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2068 int cp_val)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2069
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2070 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2071 varnumber_T value;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2072
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2073 if (nextchar == '=' || nextchar == ':')
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2074 return e_invalid_argument;
31908
1ae3ad2e3d03 patch 9.0.1286: Coverity warns for using a NULL pointer
Bram Moolenaar <Bram@vim.org>
parents: 31904
diff changeset
2075 if (opt_idx < 0 || varp == NULL)
1ae3ad2e3d03 patch 9.0.1286: Coverity warns for using a NULL pointer
Bram Moolenaar <Bram@vim.org>
parents: 31904
diff changeset
2076 return NULL; // "cannot happen"
31902
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2077
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2078 /*
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2079 * ":set opt!": invert
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2080 * ":set opt&": reset to default value
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2081 * ":set opt<": reset to global value
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2082 */
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2083 if (nextchar == '!')
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2084 value = *(int *)(varp) ^ 1;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2085 else if (nextchar == '&')
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2086 value = (int)(long)(long_i)options[opt_idx].def_val[
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2087 ((flags & P_VI_DEF) || cp_val) ? VI_DEFAULT : VIM_DEFAULT];
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2088 else if (nextchar == '<')
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2089 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2090 // For 'autoread' -1 means to use global value.
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2091 if ((int *)varp == &curbuf->b_p_ar && opt_flags == OPT_LOCAL)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2092 value = -1;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2093 else
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2094 value = *(int *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL);
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2095 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2096 else
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2097 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2098 /*
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2099 * ":set invopt": invert
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2100 * ":set opt" or ":set noopt": set or reset
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2101 */
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2102 if (nextchar != NUL && !VIM_ISWHITE(afterchar))
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2103 return e_trailing_characters;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2104 if (prefix == PREFIX_INV)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2105 value = *(int *)(varp) ^ 1;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2106 else
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2107 value = prefix == PREFIX_NO ? 0 : 1;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2108 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2109
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2110 return set_bool_option(opt_idx, varp, (int)value, opt_flags);
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2111 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2112
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2113 /*
31908
1ae3ad2e3d03 patch 9.0.1286: Coverity warns for using a NULL pointer
Bram Moolenaar <Bram@vim.org>
parents: 31904
diff changeset
2114 * Set a numeric option.
1ae3ad2e3d03 patch 9.0.1286: Coverity warns for using a NULL pointer
Bram Moolenaar <Bram@vim.org>
parents: 31904
diff changeset
2115 * Returns an untranslated error message or NULL.
31902
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2116 */
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2117 static char *
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2118 do_set_option_numeric(
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2119 int opt_idx,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2120 int opt_flags,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2121 char_u **argp,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2122 int nextchar,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2123 set_op_T op,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2124 long_u flags,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2125 int cp_val,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2126 char_u *varp,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2127 char *errbuf,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2128 size_t errbuflen)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2129 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2130 char_u *arg = *argp;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2131 varnumber_T value;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2132 int i;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2133 char *errmsg = NULL;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2134
31908
1ae3ad2e3d03 patch 9.0.1286: Coverity warns for using a NULL pointer
Bram Moolenaar <Bram@vim.org>
parents: 31904
diff changeset
2135 if (opt_idx < 0 || varp == NULL)
1ae3ad2e3d03 patch 9.0.1286: Coverity warns for using a NULL pointer
Bram Moolenaar <Bram@vim.org>
parents: 31904
diff changeset
2136 return NULL; // "cannot happen"
1ae3ad2e3d03 patch 9.0.1286: Coverity warns for using a NULL pointer
Bram Moolenaar <Bram@vim.org>
parents: 31904
diff changeset
2137 //
31902
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2138 /*
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2139 * Different ways to set a number option:
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2140 * & set to default value
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2141 * < set to global value
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2142 * <xx> accept special key codes for 'wildchar'
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2143 * c accept any non-digit for 'wildchar'
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2144 * [-]0-9 set number
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2145 * other error
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2146 */
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2147 ++arg;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2148 if (nextchar == '&')
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2149 value = (long)(long_i)options[opt_idx].def_val[
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2150 ((flags & P_VI_DEF) || cp_val) ? VI_DEFAULT : VIM_DEFAULT];
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2151 else if (nextchar == '<')
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2152 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2153 // For 'undolevels' NO_LOCAL_UNDOLEVEL means to
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2154 // use the global value.
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2155 if ((long *)varp == &curbuf->b_p_ul && opt_flags == OPT_LOCAL)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2156 value = NO_LOCAL_UNDOLEVEL;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2157 else
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2158 value = *(long *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL);
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2159 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2160 else if (((long *)varp == &p_wc || (long *)varp == &p_wcm)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2161 && (*arg == '<'
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2162 || *arg == '^'
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2163 || (*arg != NUL
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2164 && (!arg[1] || VIM_ISWHITE(arg[1]))
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2165 && !VIM_ISDIGIT(*arg))))
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2166 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2167 value = string_to_key(arg, FALSE);
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2168 if (value == 0 && (long *)varp != &p_wcm)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2169 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2170 errmsg = e_invalid_argument;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2171 goto skip;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2172 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2173 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2174 else if (*arg == '-' || VIM_ISDIGIT(*arg))
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2175 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2176 // Allow negative (for 'undolevels'), octal and hex numbers.
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2177 vim_str2nr(arg, NULL, &i, STR2NR_ALL, &value, NULL, 0, TRUE);
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2178 if (i == 0 || (arg[i] != NUL && !VIM_ISWHITE(arg[i])))
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2179 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2180 errmsg = e_number_required_after_equal;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2181 goto skip;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2182 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2183 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2184 else
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2185 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2186 errmsg = e_number_required_after_equal;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2187 goto skip;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2188 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2189
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2190 if (op == OP_ADDING)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2191 value = *(long *)varp + value;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2192 else if (op == OP_PREPENDING)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2193 value = *(long *)varp * value;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2194 else if (op == OP_REMOVING)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2195 value = *(long *)varp - value;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2196
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2197 errmsg = set_num_option(opt_idx, varp, value, errbuf, errbuflen,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2198 opt_flags);
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2199
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2200 skip:
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2201 *argp = arg;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2202 return errmsg;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2203 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2204
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2205 /*
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2206 * Set a key code (t_xx) option
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2207 */
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2208 static char *
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2209 do_set_option_keycode(char_u **argp, char_u *key_name, int nextchar)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2210 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2211 char_u *arg = *argp;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2212 char_u *p;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2213
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2214 if (nextchar == '&')
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2215 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2216 if (add_termcap_entry(key_name, TRUE) == FAIL)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2217 return e_not_found_in_termcap;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2218 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2219 else
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2220 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2221 ++arg; // jump to after the '=' or ':'
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2222 for (p = arg; *p && !VIM_ISWHITE(*p); ++p)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2223 if (*p == '\\' && p[1] != NUL)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2224 ++p;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2225 nextchar = *p;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2226 *p = NUL;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2227 add_termcode(key_name, arg, FALSE);
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2228 *p = nextchar;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2229 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2230 if (full_screen)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2231 ttest(FALSE);
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2232 redraw_all_later(UPD_CLEAR);
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2233
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2234 *argp = arg;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2235 return NULL;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2236 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2237
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2238 /*
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2239 * Set an option to a new value.
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2240 */
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2241 static char *
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2242 do_set_option_value(
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2243 int opt_idx,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2244 int opt_flags,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2245 char_u **argp,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2246 set_prefix_T prefix,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2247 set_op_T op,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2248 long_u flags,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2249 char_u *varp,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2250 char_u *key_name,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2251 int nextchar,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2252 int afterchar,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2253 int cp_val,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2254 int *stopopteval,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2255 char *errbuf,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2256 size_t errbuflen)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2257 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2258 int value_checked = FALSE;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2259 char *errmsg = NULL;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2260 char_u *arg = *argp;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2261
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2262 if (flags & P_BOOL)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2263 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2264 // boolean option
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2265 errmsg = do_set_option_bool(opt_idx, opt_flags, prefix, flags, varp,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2266 nextchar, afterchar, cp_val);
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2267 if (errmsg != NULL)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2268 goto skip;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2269 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2270 else
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2271 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2272 // numeric or string option
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2273 if (vim_strchr((char_u *)"=:&<", nextchar) == NULL
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2274 || prefix != PREFIX_NONE)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2275 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2276 errmsg = e_invalid_argument;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2277 goto skip;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2278 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2279
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2280 if (flags & P_NUM)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2281 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2282 // numeric option
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2283 errmsg = do_set_option_numeric(opt_idx, opt_flags, &arg, nextchar,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2284 op, flags, cp_val, varp,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2285 errbuf, errbuflen);
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2286 if (errmsg != NULL)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2287 goto skip;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2288 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2289 else if (opt_idx >= 0)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2290 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2291 // string option
31952
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
2292 if (do_set_option_string(opt_idx, opt_flags, &arg, nextchar, op,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
2293 flags, cp_val, varp, errbuf,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
2294 &value_checked, &errmsg) == FAIL)
31902
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2295 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2296 if (errmsg != NULL)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2297 goto skip;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2298 *stopopteval = TRUE;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2299 goto skip;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2300 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2301 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2302 else
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2303 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2304 // key code option
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2305 errmsg = do_set_option_keycode(&arg, key_name, nextchar);
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2306 if (errmsg != NULL)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2307 goto skip;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2308 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2309 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2310
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2311 if (opt_idx >= 0)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2312 did_set_option(opt_idx, opt_flags, op == OP_NONE, value_checked);
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2313
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2314 skip:
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2315 *argp = arg;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2316 return errmsg;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2317 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2318
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2319 /*
31886
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2320 * Set an option to a new value.
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2321 * Return NULL if OK, return an untranslated error message when something is
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2322 * wrong. "errbuf[errbuflen]" can be used to create the error message.
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2323 */
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2324 static char *
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2325 do_set_option(
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2326 int opt_flags,
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2327 char_u **argp,
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2328 char_u *arg_start,
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2329 char_u **startarg,
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2330 int *did_show,
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2331 int *stopopteval,
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2332 char *errbuf,
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2333 size_t errbuflen)
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2334 {
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2335 int opt_idx;
31902
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2336 char_u *arg;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2337 set_prefix_T prefix; // no prefix, "no" prefix or "inv" prefix
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2338 set_op_T op;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2339 long_u flags; // flags for current option
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2340 char_u *varp; // pointer to variable for current option
31886
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2341 char_u key_name[2];
31902
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2342 int nextchar; // next non-white char after option name
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2343 int afterchar; // character just after option name
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2344 char *errmsg = NULL;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2345 int key;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2346 int len;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2347
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2348 prefix = get_option_prefix(argp);
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2349 arg = *argp;
31886
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2350
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2351 // find end of name
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2352 key = 0;
31902
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2353 if (parse_option_name(arg, &opt_idx, &len, &key) == FAIL)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2354 return e_invalid_argument;
31886
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2355
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2356 // remember character after option name
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2357 afterchar = arg[len];
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2358
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2359 if (in_vim9script())
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2360 {
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2361 char_u *p = skipwhite(arg + len);
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2362
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2363 // disallow white space before =val, +=val, -=val, ^=val
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2364 if (p > arg + len && (p[0] == '='
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2365 || (vim_strchr((char_u *)"+-^", p[0]) != NULL
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2366 && p[1] == '=')))
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2367 {
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2368 errmsg = e_no_white_space_allowed_between_option_and;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2369 arg = p;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2370 *startarg = p;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2371 goto skip;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2372 }
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2373 }
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2374 else
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2375 // skip white space, allow ":set ai ?", ":set hlsearch !"
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2376 while (VIM_ISWHITE(arg[len]))
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2377 ++len;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2378
31902
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2379 op = get_opt_op(arg + len);
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2380 if (op != OP_NONE)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2381 len++;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2382
31886
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2383 nextchar = arg[len];
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2384
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2385 if (opt_idx == -1 && key == 0) // found a mismatch: skip
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2386 {
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2387 if (in_vim9script() && arg > arg_start
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2388 && vim_strchr((char_u *)"!&<", *arg) != NULL)
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2389 errmsg = e_no_white_space_allowed_between_option_and;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2390 else
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2391 errmsg = e_unknown_option;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2392 goto skip;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2393 }
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2394
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2395 if (opt_idx >= 0)
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2396 {
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2397 if (options[opt_idx].var == NULL) // hidden option: skip
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2398 {
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2399 // Only give an error message when requesting the value of
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2400 // a hidden option, ignore setting it.
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2401 if (vim_strchr((char_u *)"=:!&<", nextchar) == NULL
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2402 && (!(options[opt_idx].flags & P_BOOL)
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2403 || nextchar == '?'))
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2404 errmsg = e_option_not_supported;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2405 goto skip;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2406 }
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2407
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2408 flags = options[opt_idx].flags;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2409 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2410 }
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2411 else
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2412 {
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2413 flags = P_STRING;
31904
a4358b58d3fb patch 9.0.1284: compiler warnings for uninitialized variables
Bram Moolenaar <Bram@vim.org>
parents: 31902
diff changeset
2414 varp = NULL;
31886
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2415 if (key < 0)
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2416 {
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2417 key_name[0] = KEY2TERMCAP0(key);
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2418 key_name[1] = KEY2TERMCAP1(key);
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2419 }
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2420 else
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2421 {
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2422 key_name[0] = KS_KEY;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2423 key_name[1] = (key & 0xff);
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2424 }
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2425 }
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2426
31902
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2427 // Make sure the option value can be changed.
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2428 if (validate_opt_idx(opt_idx, opt_flags, flags, &errmsg) == FAIL)
31886
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2429 goto skip;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2430
31904
a4358b58d3fb patch 9.0.1284: compiler warnings for uninitialized variables
Bram Moolenaar <Bram@vim.org>
parents: 31902
diff changeset
2431 int cp_val = p_cp;
31886
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2432 if (vim_strchr((char_u *)"?=:!&<", nextchar) != NULL)
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2433 {
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2434 arg += len;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2435 if (nextchar == '&' && arg[1] == 'v' && arg[2] == 'i')
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2436 {
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2437 if (arg[3] == 'm') // "opt&vim": set to Vim default
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2438 {
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2439 cp_val = FALSE;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2440 arg += 3;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2441 }
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2442 else // "opt&vi": set to Vi default
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2443 {
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2444 cp_val = TRUE;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2445 arg += 2;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2446 }
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2447 }
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2448 if (vim_strchr((char_u *)"?!&<", nextchar) != NULL
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2449 && arg[1] != NUL && !VIM_ISWHITE(arg[1]))
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2450 {
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2451 errmsg = e_trailing_characters;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2452 goto skip;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2453 }
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2454 }
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2455
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2456 /*
31908
1ae3ad2e3d03 patch 9.0.1286: Coverity warns for using a NULL pointer
Bram Moolenaar <Bram@vim.org>
parents: 31904
diff changeset
2457 * Allow '=' and ':' for historical reasons (MSDOS command.com).
1ae3ad2e3d03 patch 9.0.1286: Coverity warns for using a NULL pointer
Bram Moolenaar <Bram@vim.org>
parents: 31904
diff changeset
2458 * Allows only one '=' character per "set" command line. grrr. (jw)
31886
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2459 */
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2460 if (nextchar == '?'
31902
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2461 || (prefix == PREFIX_NONE
31886
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2462 && vim_strchr((char_u *)"=:&<", nextchar) == NULL
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2463 && !(flags & P_BOOL)))
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2464 {
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2465 /*
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2466 * print value
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2467 */
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2468 if (*did_show)
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2469 msg_putchar('\n'); // cursor below last one
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2470 else
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2471 {
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2472 gotocmdline(TRUE); // cursor at status line
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2473 *did_show = TRUE; // remember that we did a line
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2474 }
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2475 if (opt_idx >= 0)
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2476 {
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2477 showoneopt(&options[opt_idx], opt_flags);
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2478 #ifdef FEAT_EVAL
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2479 if (p_verbose > 0)
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2480 {
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2481 // Mention where the option was last set.
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2482 if (varp == options[opt_idx].var)
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2483 last_set_msg(options[opt_idx].script_ctx);
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2484 else if ((int)options[opt_idx].indir & PV_WIN)
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2485 last_set_msg(curwin->w_p_script_ctx[
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2486 (int)options[opt_idx].indir & PV_MASK]);
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2487 else if ((int)options[opt_idx].indir & PV_BUF)
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2488 last_set_msg(curbuf->b_p_script_ctx[
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2489 (int)options[opt_idx].indir & PV_MASK]);
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2490 }
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2491 #endif
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2492 }
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2493 else
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2494 {
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2495 char_u *p;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2496
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2497 p = find_termcode(key_name);
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2498 if (p == NULL)
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2499 {
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2500 errmsg = e_key_code_not_set;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2501 goto skip;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2502 }
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2503 else
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2504 (void)show_one_termcode(key_name, p, TRUE);
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2505 }
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2506 if (nextchar != '?'
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2507 && nextchar != NUL && !VIM_ISWHITE(afterchar))
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2508 errmsg = e_trailing_characters;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2509 }
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2510 else
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2511 {
31902
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2512 errmsg = do_set_option_value(opt_idx, opt_flags, &arg, prefix, op,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2513 flags, varp, key_name, nextchar,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2514 afterchar, cp_val, stopopteval, errbuf,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2515 errbuflen);
31886
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2516 }
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2517
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2518 skip:
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2519 *argp = arg;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2520 return errmsg;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2521 }
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2522
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2523 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2524 * Parse 'arg' for option settings.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2525 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2526 * 'arg' may be IObuff, but only when no errors can be present and option
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2527 * does not need to be expanded with option_expand().
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2528 * "opt_flags":
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2529 * 0 for ":set"
26400
d26bab4f6aca patch 8.2.3731: "set! termcap" shows codes in one column, but not keys
Bram Moolenaar <Bram@vim.org>
parents: 26388
diff changeset
2530 * OPT_GLOBAL for ":setglobal"
d26bab4f6aca patch 8.2.3731: "set! termcap" shows codes in one column, but not keys
Bram Moolenaar <Bram@vim.org>
parents: 26388
diff changeset
2531 * OPT_LOCAL for ":setlocal" and a modeline
d26bab4f6aca patch 8.2.3731: "set! termcap" shows codes in one column, but not keys
Bram Moolenaar <Bram@vim.org>
parents: 26388
diff changeset
2532 * OPT_MODELINE for a modeline
d26bab4f6aca patch 8.2.3731: "set! termcap" shows codes in one column, but not keys
Bram Moolenaar <Bram@vim.org>
parents: 26388
diff changeset
2533 * OPT_WINONLY to only set window-local options
d26bab4f6aca patch 8.2.3731: "set! termcap" shows codes in one column, but not keys
Bram Moolenaar <Bram@vim.org>
parents: 26388
diff changeset
2534 * OPT_NOWIN to skip setting window-local options
d26bab4f6aca patch 8.2.3731: "set! termcap" shows codes in one column, but not keys
Bram Moolenaar <Bram@vim.org>
parents: 26388
diff changeset
2535 * OPT_ONECOLUMN do not use multiple columns
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2536 *
31886
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2537 * Returns FAIL if an error is detected, OK otherwise.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2538 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2539 int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2540 do_set(
25174
b32c83317492 patch 8.2.3123: Vim9: confusing error when using white space after option
Bram Moolenaar <Bram@vim.org>
parents: 25084
diff changeset
2541 char_u *arg_start, // option string (may be written to!)
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2542 int opt_flags)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2543 {
25174
b32c83317492 patch 8.2.3123: Vim9: confusing error when using white space after option
Bram Moolenaar <Bram@vim.org>
parents: 25084
diff changeset
2544 char_u *arg = arg_start;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2545 int i;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
2546 int did_show = FALSE; // already showed one value
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2547
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2548 if (*arg == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2549 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2550 showoptions(0, opt_flags);
168
4d9eabb1396e updated for version 7.0051
vimboss
parents: 164
diff changeset
2551 did_show = TRUE;
4d9eabb1396e updated for version 7.0051
vimboss
parents: 164
diff changeset
2552 goto theend;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2553 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2554
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
2555 while (*arg != NUL) // loop to process all options
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2556 {
31766
9f1504e36ae9 patch 9.0.1215: using isalpha() adds dependency on current locale
Bram Moolenaar <Bram@vim.org>
parents: 31752
diff changeset
2557 if (STRNCMP(arg, "all", 3) == 0 && !ASCII_ISALPHA(arg[3])
36
125e80798a85 updated for version 7.0021
vimboss
parents: 29
diff changeset
2558 && !(opt_flags & OPT_MODELINE))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2559 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2560 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2561 * ":set all" show all options.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2562 * ":set all&" set all options to their default value.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2563 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2564 arg += 3;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2565 if (*arg == '&')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2566 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2567 ++arg;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
2568 // Only for :set command set global value of local options.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2569 set_options_default(OPT_FREE | opt_flags);
7040
17a3fa77e941 commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents: 7034
diff changeset
2570 didset_options();
17a3fa77e941 commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents: 7034
diff changeset
2571 didset_options2();
29732
89e1d67814a9 patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
2572 redraw_all_later(UPD_CLEAR);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2573 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2574 else
168
4d9eabb1396e updated for version 7.0051
vimboss
parents: 164
diff changeset
2575 {
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2576 showoptions(1, opt_flags);
168
4d9eabb1396e updated for version 7.0051
vimboss
parents: 164
diff changeset
2577 did_show = TRUE;
4d9eabb1396e updated for version 7.0051
vimboss
parents: 164
diff changeset
2578 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2579 }
36
125e80798a85 updated for version 7.0021
vimboss
parents: 29
diff changeset
2580 else if (STRNCMP(arg, "termcap", 7) == 0 && !(opt_flags & OPT_MODELINE))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2581 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2582 showoptions(2, opt_flags);
26400
d26bab4f6aca patch 8.2.3731: "set! termcap" shows codes in one column, but not keys
Bram Moolenaar <Bram@vim.org>
parents: 26388
diff changeset
2583 show_termcodes(opt_flags);
168
4d9eabb1396e updated for version 7.0051
vimboss
parents: 164
diff changeset
2584 did_show = TRUE;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2585 arg += 7;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2586 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2587 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2588 {
31886
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2589 int stopopteval = FALSE;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2590 char *errmsg = NULL;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2591 char errbuf[80];
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2592 char_u *startarg = arg;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2593
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2594 errmsg = do_set_option(opt_flags, &arg, arg_start, &startarg,
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2595 &did_show, &stopopteval, errbuf,
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2596 sizeof(errbuf));
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2597 if (stopopteval)
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2598 break;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2599
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2600 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2601 * Advance to next argument.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2602 * - skip until a blank found, taking care of backslashes
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2603 * - skip blanks
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2604 * - skip one "=val" argument (for hidden options ":set gfn =xx")
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2605 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2606 for (i = 0; i < 2 ; ++i)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2607 {
11129
f4ea50924c6d patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11127
diff changeset
2608 while (*arg != NUL && !VIM_ISWHITE(*arg))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2609 if (*arg++ == '\\' && *arg != NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2610 ++arg;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2611 arg = skipwhite(arg);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2612 if (*arg != '=')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2613 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2614 }
31886
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2615
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2616 if (errmsg != NULL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2617 {
31886
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2618 vim_strncpy(IObuff, (char_u *)_(errmsg), IOSIZE - 1);
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2619 i = (int)STRLEN(IObuff) + 2;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2620 if (i + (arg - startarg) < IOSIZE)
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2621 {
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2622 // append the argument with the error
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2623 STRCAT(IObuff, ": ");
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2624 mch_memmove(IObuff + i, startarg, (arg - startarg));
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2625 IObuff[i + (arg - startarg)] = NUL;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2626 }
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2627 // make sure all characters are printable
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2628 trans_characters(IObuff, IOSIZE);
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2629
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2630 ++no_wait_return; // wait_return() done later
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2631 emsg((char *)IObuff); // show error highlighted
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2632 --no_wait_return;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2633
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2634 return FAIL;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2635 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2636 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2637
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2638 arg = skipwhite(arg);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2639 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2640
168
4d9eabb1396e updated for version 7.0051
vimboss
parents: 164
diff changeset
2641 theend:
4d9eabb1396e updated for version 7.0051
vimboss
parents: 164
diff changeset
2642 if (silent_mode && did_show)
4d9eabb1396e updated for version 7.0051
vimboss
parents: 164
diff changeset
2643 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
2644 // After displaying option values in silent mode.
168
4d9eabb1396e updated for version 7.0051
vimboss
parents: 164
diff changeset
2645 silent_mode = FALSE;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
2646 info_message = TRUE; // use mch_msg(), not mch_errmsg()
168
4d9eabb1396e updated for version 7.0051
vimboss
parents: 164
diff changeset
2647 msg_putchar('\n');
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
2648 cursor_on(); // msg_start() switches it off
168
4d9eabb1396e updated for version 7.0051
vimboss
parents: 164
diff changeset
2649 out_flush();
4d9eabb1396e updated for version 7.0051
vimboss
parents: 164
diff changeset
2650 silent_mode = TRUE;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
2651 info_message = FALSE; // use mch_msg(), not mch_errmsg()
168
4d9eabb1396e updated for version 7.0051
vimboss
parents: 164
diff changeset
2652 }
4d9eabb1396e updated for version 7.0051
vimboss
parents: 164
diff changeset
2653
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2654 return OK;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2655 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2656
634
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
2657 /*
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
2658 * Call this when an option has been given a new value through a user command.
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
2659 * Sets the P_WAS_SET flag and takes care of the P_INSECURE flag.
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
2660 */
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
2661 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2662 did_set_option(
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2663 int opt_idx,
15066
40d9218b2b12 patch 8.1.0544: setting 'filetype' in a modeline causes an error
Bram Moolenaar <Bram@vim.org>
parents: 15062
diff changeset
2664 int opt_flags, // possibly with OPT_MODELINE
40d9218b2b12 patch 8.1.0544: setting 'filetype' in a modeline causes an error
Bram Moolenaar <Bram@vim.org>
parents: 15062
diff changeset
2665 int new_value, // value was replaced completely
40d9218b2b12 patch 8.1.0544: setting 'filetype' in a modeline causes an error
Bram Moolenaar <Bram@vim.org>
parents: 15062
diff changeset
2666 int value_checked) // value was checked to be safe, no need to set the
40d9218b2b12 patch 8.1.0544: setting 'filetype' in a modeline causes an error
Bram Moolenaar <Bram@vim.org>
parents: 15062
diff changeset
2667 // P_INSECURE flag.
634
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
2668 {
681
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2669 long_u *p;
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2670
634
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
2671 options[opt_idx].flags |= P_WAS_SET;
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
2672
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
2673 // When an option is set in the sandbox, from a modeline or in secure mode
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
2674 // set the P_INSECURE flag. Otherwise, if a new value is stored reset the
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
2675 // flag.
681
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2676 p = insecure_flag(opt_idx, opt_flags);
15066
40d9218b2b12 patch 8.1.0544: setting 'filetype' in a modeline causes an error
Bram Moolenaar <Bram@vim.org>
parents: 15062
diff changeset
2677 if (!value_checked && (secure
634
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
2678 #ifdef HAVE_SANDBOX
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
2679 || sandbox != 0
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
2680 #endif
15066
40d9218b2b12 patch 8.1.0544: setting 'filetype' in a modeline causes an error
Bram Moolenaar <Bram@vim.org>
parents: 15062
diff changeset
2681 || (opt_flags & OPT_MODELINE)))
681
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2682 *p = *p | P_INSECURE;
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2683 else if (new_value)
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2684 *p = *p & ~P_INSECURE;
634
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
2685 }
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
2686
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2687 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2688 * Convert a key name or string into a key value.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2689 * Used for 'wildchar' and 'cedit' options.
11764
b82dad3fa176 patch 8.0.0764: 'termkey' does not work yet
Christian Brabandt <cb@256bit.org>
parents: 11757
diff changeset
2690 * When "multi_byte" is TRUE allow for multi-byte characters.
b82dad3fa176 patch 8.0.0764: 'termkey' does not work yet
Christian Brabandt <cb@256bit.org>
parents: 11757
diff changeset
2691 */
b82dad3fa176 patch 8.0.0764: 'termkey' does not work yet
Christian Brabandt <cb@256bit.org>
parents: 11757
diff changeset
2692 int
b82dad3fa176 patch 8.0.0764: 'termkey' does not work yet
Christian Brabandt <cb@256bit.org>
parents: 11757
diff changeset
2693 string_to_key(char_u *arg, int multi_byte)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2694 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2695 if (*arg == '<')
14381
d9e6eec551e1 patch 8.1.0205: invalid memory access with invalid modeline
Christian Brabandt <cb@256bit.org>
parents: 14313
diff changeset
2696 return find_key_option(arg + 1, TRUE);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2697 if (*arg == '^')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2698 return Ctrl_chr(arg[1]);
11764
b82dad3fa176 patch 8.0.0764: 'termkey' does not work yet
Christian Brabandt <cb@256bit.org>
parents: 11757
diff changeset
2699 if (multi_byte)
b82dad3fa176 patch 8.0.0764: 'termkey' does not work yet
Christian Brabandt <cb@256bit.org>
parents: 11757
diff changeset
2700 return PTR2CHAR(arg);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2701 return *arg;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2702 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2703
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2704 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2705 * When changing 'title', 'titlestring', 'icon' or 'iconstring', call
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2706 * maketitle() to create and display it.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2707 * When switching the title or icon off, call mch_restore_title() to get
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2708 * the old value back.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2709 */
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
2710 void
14087
1d25a3e8e03c patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents: 14057
diff changeset
2711 did_set_title(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2712 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2713 if (starting != NO_SCREEN
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2714 #ifdef FEAT_GUI
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2715 && !gui.starting
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2716 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2717 )
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2718 maketitle();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2719 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2720
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2721 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2722 * set_options_bin - called when 'bin' changes value.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2723 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2724 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2725 set_options_bin(
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2726 int oldval,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2727 int newval,
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
2728 int opt_flags) // OPT_LOCAL and/or OPT_GLOBAL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2729 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2730 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2731 * The option values that are changed when 'bin' changes are
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2732 * copied when 'bin is set and restored when 'bin' is reset.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2733 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2734 if (newval)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2735 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
2736 if (!oldval) // switched on
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2737 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2738 if (!(opt_flags & OPT_GLOBAL))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2739 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2740 curbuf->b_p_tw_nobin = curbuf->b_p_tw;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2741 curbuf->b_p_wm_nobin = curbuf->b_p_wm;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2742 curbuf->b_p_ml_nobin = curbuf->b_p_ml;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2743 curbuf->b_p_et_nobin = curbuf->b_p_et;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2744 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2745 if (!(opt_flags & OPT_LOCAL))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2746 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2747 p_tw_nobin = p_tw;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2748 p_wm_nobin = p_wm;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2749 p_ml_nobin = p_ml;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2750 p_et_nobin = p_et;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2751 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2752 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2753
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2754 if (!(opt_flags & OPT_GLOBAL))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2755 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
2756 curbuf->b_p_tw = 0; // no automatic line wrap
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
2757 curbuf->b_p_wm = 0; // no automatic line wrap
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
2758 curbuf->b_p_ml = 0; // no modelines
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
2759 curbuf->b_p_et = 0; // no expandtab
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2760 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2761 if (!(opt_flags & OPT_LOCAL))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2762 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2763 p_tw = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2764 p_wm = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2765 p_ml = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2766 p_et = FALSE;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
2767 p_bin = TRUE; // needed when called for the "-b" argument
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2768 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2769 }
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
2770 else if (oldval) // switched off
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2771 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2772 if (!(opt_flags & OPT_GLOBAL))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2773 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2774 curbuf->b_p_tw = curbuf->b_p_tw_nobin;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2775 curbuf->b_p_wm = curbuf->b_p_wm_nobin;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2776 curbuf->b_p_ml = curbuf->b_p_ml_nobin;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2777 curbuf->b_p_et = curbuf->b_p_et_nobin;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2778 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2779 if (!(opt_flags & OPT_LOCAL))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2780 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2781 p_tw = p_tw_nobin;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2782 p_wm = p_wm_nobin;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2783 p_ml = p_ml_nobin;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2784 p_et = p_et_nobin;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2785 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2786 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2787 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2788
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2789 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2790 * Expand environment variables for some string options.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2791 * These string options cannot be indirect!
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2792 * If "val" is NULL expand the current value of the option.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2793 * Return pointer to NameBuff, or NULL when not expanded.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2794 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2795 static char_u *
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2796 option_expand(int opt_idx, char_u *val)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2797 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
2798 // if option doesn't need expansion nothing to do
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2799 if (!(options[opt_idx].flags & P_EXPAND) || options[opt_idx].var == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2800 return NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2801
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
2802 // If val is longer than MAXPATHL no meaningful expansion can be done,
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
2803 // expand_env() would truncate the string.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2804 if (val != NULL && STRLEN(val) > MAXPATHL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2805 return NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2806
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2807 if (val == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2808 val = *(char_u **)options[opt_idx].var;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2809
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2810 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2811 * Expanding this with NameBuff, expand_env() must not be passed IObuff.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2812 * Escape spaces when expanding 'tags', they are used to separate file
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2813 * names.
374
575dacb554d8 updated for version 7.0096
vimboss
parents: 359
diff changeset
2814 * For 'spellsuggest' expand after "file:".
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2815 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2816 expand_env_esc(val, NameBuff, MAXPATHL,
1408
db8309865794 updated for version 7.1-123
vimboss
parents: 1404
diff changeset
2817 (char_u **)options[opt_idx].var == &p_tags, FALSE,
744
07f7b4a7755c updated for version 7.0222
vimboss
parents: 731
diff changeset
2818 #ifdef FEAT_SPELL
374
575dacb554d8 updated for version 7.0096
vimboss
parents: 359
diff changeset
2819 (char_u **)options[opt_idx].var == &p_sps ? (char_u *)"file:" :
575dacb554d8 updated for version 7.0096
vimboss
parents: 359
diff changeset
2820 #endif
575dacb554d8 updated for version 7.0096
vimboss
parents: 359
diff changeset
2821 NULL);
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
2822 if (STRCMP(NameBuff, val) == 0) // they are the same
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2823 return NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2824
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2825 return NameBuff;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2826 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2827
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2828 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2829 * After setting various option values: recompute variables that depend on
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2830 * option values.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2831 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2832 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2833 didset_options(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2834 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
2835 // initialize the table for 'iskeyword' et.al.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2836 (void)init_chartab();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2837
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
2838 didset_string_options();
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
2839
744
07f7b4a7755c updated for version 7.0222
vimboss
parents: 731
diff changeset
2840 #ifdef FEAT_SPELL
484
f012c4ed8c38 updated for version 7.0132
vimboss
parents: 480
diff changeset
2841 (void)spell_check_msm();
374
575dacb554d8 updated for version 7.0096
vimboss
parents: 359
diff changeset
2842 (void)spell_check_sps();
2250
1bac28a53fae Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents: 2248
diff changeset
2843 (void)compile_cap_prog(curwin->w_s);
7040
17a3fa77e941 commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents: 7034
diff changeset
2844 (void)did_set_spell_option(TRUE);
344
7033303ea0c0 updated for version 7.0089
vimboss
parents: 323
diff changeset
2845 #endif
18156
c81370b3ede4 patch 8.1.2073: when editing a buffer 'colorcolumn' may not work
Bram Moolenaar <Bram@vim.org>
parents: 18100
diff changeset
2846 // set cedit_key
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2847 (void)check_cedit();
5995
ef83b423ebf7 updated for version 7.4.338
Bram Moolenaar <bram@vim.org>
parents: 5991
diff changeset
2848 #ifdef FEAT_LINEBREAK
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
2849 // initialize the table for 'breakat'.
7040
17a3fa77e941 commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents: 7034
diff changeset
2850 fill_breakat_flags();
17a3fa77e941 commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents: 7034
diff changeset
2851 #endif
18156
c81370b3ede4 patch 8.1.2073: when editing a buffer 'colorcolumn' may not work
Bram Moolenaar <Bram@vim.org>
parents: 18100
diff changeset
2852 after_copy_winopt(curwin);
7040
17a3fa77e941 commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents: 7034
diff changeset
2853 }
17a3fa77e941 commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents: 7034
diff changeset
2854
17a3fa77e941 commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents: 7034
diff changeset
2855 /*
17a3fa77e941 commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents: 7034
diff changeset
2856 * More side effects of setting options.
17a3fa77e941 commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents: 7034
diff changeset
2857 */
17a3fa77e941 commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents: 7034
diff changeset
2858 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2859 didset_options2(void)
7040
17a3fa77e941 commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents: 7034
diff changeset
2860 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
2861 // Initialize the highlight_attr[] table.
7040
17a3fa77e941 commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents: 7034
diff changeset
2862 (void)highlight_changed();
17a3fa77e941 commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents: 7034
diff changeset
2863
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
2864 // Parse default for 'wildmode'
7040
17a3fa77e941 commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents: 7034
diff changeset
2865 check_opt_wim();
17a3fa77e941 commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents: 7034
diff changeset
2866
23952
44be09b25619 patch 8.2.2518: 'listchars' should be window-local
Bram Moolenaar <Bram@vim.org>
parents: 23821
diff changeset
2867 // Parse default for 'listchars'.
29395
caaf5b270018 patch 9.0.0040: use of set_chars_option() is confusing
Bram Moolenaar <Bram@vim.org>
parents: 29387
diff changeset
2868 (void)set_chars_option(curwin, &curwin->w_p_lcs, TRUE);
23952
44be09b25619 patch 8.2.2518: 'listchars' should be window-local
Bram Moolenaar <Bram@vim.org>
parents: 23821
diff changeset
2869
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
2870 // Parse default for 'fillchars'.
29395
caaf5b270018 patch 9.0.0040: use of set_chars_option() is confusing
Bram Moolenaar <Bram@vim.org>
parents: 29387
diff changeset
2871 (void)set_chars_option(curwin, &curwin->w_p_fcs, TRUE);
7040
17a3fa77e941 commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents: 7034
diff changeset
2872
17a3fa77e941 commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents: 7034
diff changeset
2873 #ifdef FEAT_CLIPBOARD
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
2874 // Parse default for 'clipboard'
7040
17a3fa77e941 commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents: 7034
diff changeset
2875 (void)check_clipboard_option();
17a3fa77e941 commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents: 7034
diff changeset
2876 #endif
14175
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
2877 #ifdef FEAT_VARTABS
15858
3a45b89639fb patch 8.1.0936: may leak memory when using 'vartabstop'
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
2878 vim_free(curbuf->b_p_vsts_array);
25733
4b2616ffe32b patch 8.2.3402: invalid memory access when using :retab with large value
Bram Moolenaar <Bram@vim.org>
parents: 25487
diff changeset
2879 (void)tabstop_set(curbuf->b_p_vsts, &curbuf->b_p_vsts_array);
15858
3a45b89639fb patch 8.1.0936: may leak memory when using 'vartabstop'
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
2880 vim_free(curbuf->b_p_vts_array);
25733
4b2616ffe32b patch 8.2.3402: invalid memory access when using :retab with large value
Bram Moolenaar <Bram@vim.org>
parents: 25487
diff changeset
2881 (void)tabstop_set(curbuf->b_p_vts, &curbuf->b_p_vts_array);
14175
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
2882 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2883 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2884
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2885 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2886 * Check for string options that are NULL (normally only termcap options).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2887 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2888 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2889 check_options(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2890 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2891 int opt_idx;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2892
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2893 for (opt_idx = 0; options[opt_idx].fullname != NULL; opt_idx++)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2894 if ((options[opt_idx].flags & P_STRING) && options[opt_idx].var != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2895 check_string_option((char_u **)get_varp(&(options[opt_idx])));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2896 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2897
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2898 /*
14867
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
2899 * Return the option index found by a pointer into term_strings[].
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
2900 * Return -1 if not found.
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
2901 */
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
2902 int
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
2903 get_term_opt_idx(char_u **p)
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
2904 {
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
2905 int opt_idx;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2906
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2907 for (opt_idx = 1; options[opt_idx].fullname != NULL; opt_idx++)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2908 if (options[opt_idx].var == (char_u *)p)
14867
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
2909 return opt_idx;
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
2910 return -1; // cannot happen: didn't find it!
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
2911 }
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
2912
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
2913 /*
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
2914 * Mark a terminal option as allocated, found by a pointer into term_strings[].
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
2915 * Return the option index or -1 if not found.
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
2916 */
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
2917 int
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
2918 set_term_option_alloced(char_u **p)
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
2919 {
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
2920 int opt_idx = get_term_opt_idx(p);
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
2921
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
2922 if (opt_idx >= 0)
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
2923 options[opt_idx].flags |= P_ALLOCED;
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
2924 return opt_idx;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2925 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2926
634
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
2927 #if defined(FEAT_EVAL) || defined(PROTO)
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
2928 /*
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
2929 * Return TRUE when option "opt" was set from a modeline or in secure mode.
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
2930 * Return FALSE when it wasn't.
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
2931 * Return -1 for an unknown option.
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
2932 */
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
2933 int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2934 was_set_insecurely(char_u *opt, int opt_flags)
634
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
2935 {
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
2936 int idx = findoption(opt);
681
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2937 long_u *flagp;
634
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
2938
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
2939 if (idx >= 0)
681
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2940 {
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2941 flagp = insecure_flag(idx, opt_flags);
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2942 return (*flagp & P_INSECURE) != 0;
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2943 }
10359
66f1b5bf3fa6 commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents: 10357
diff changeset
2944 internal_error("was_set_insecurely()");
634
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
2945 return -1;
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
2946 }
681
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2947
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2948 /*
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2949 * Get a pointer to the flags used for the P_INSECURE flag of option
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2950 * "opt_idx". For some local options a local flags field is used.
23821
bfc1ae959d9d patch 8.2.2452: no completion for the 'filetype' option
Bram Moolenaar <Bram@vim.org>
parents: 23505
diff changeset
2951 * NOTE: Caller must make sure that "curwin" is set to the window from which
bfc1ae959d9d patch 8.2.2452: no completion for the 'filetype' option
Bram Moolenaar <Bram@vim.org>
parents: 23505
diff changeset
2952 * the option is used.
681
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2953 */
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2954 static long_u *
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2955 insecure_flag(int opt_idx, int opt_flags)
681
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2956 {
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2957 if (opt_flags & OPT_LOCAL)
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2958 switch ((int)options[opt_idx].indir)
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2959 {
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2960 #ifdef FEAT_STL_OPT
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
2961 case PV_STL: return &curwin->w_p_stl_flags;
681
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2962 #endif
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2963 #ifdef FEAT_EVAL
885
2548cf0a5f62 updated for version 7.0-011
vimboss
parents: 875
diff changeset
2964 # ifdef FEAT_FOLDING
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
2965 case PV_FDE: return &curwin->w_p_fde_flags;
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
2966 case PV_FDT: return &curwin->w_p_fdt_flags;
885
2548cf0a5f62 updated for version 7.0-011
vimboss
parents: 875
diff changeset
2967 # endif
790
c8680debe1cc updated for version 7.0230
vimboss
parents: 786
diff changeset
2968 # ifdef FEAT_BEVAL
c8680debe1cc updated for version 7.0230
vimboss
parents: 786
diff changeset
2969 case PV_BEXPR: return &curbuf->b_p_bexpr_flags;
c8680debe1cc updated for version 7.0230
vimboss
parents: 786
diff changeset
2970 # endif
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
2971 case PV_INDE: return &curbuf->b_p_inde_flags;
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
2972 case PV_FEX: return &curbuf->b_p_fex_flags;
681
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2973 # ifdef FEAT_FIND_ID
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
2974 case PV_INEX: return &curbuf->b_p_inex_flags;
681
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2975 # endif
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2976 #endif
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2977 }
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2978
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
2979 // Nothing special, return global flags field.
681
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2980 return &options[opt_idx].flags;
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2981 }
634
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
2982 #endif
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
2983
1805
a5e1d6526ac7 updated for version 7.2-103
vimboss
parents: 1801
diff changeset
2984 /*
a5e1d6526ac7 updated for version 7.2-103
vimboss
parents: 1801
diff changeset
2985 * Redraw the window title and/or tab page text later.
a5e1d6526ac7 updated for version 7.2-103
vimboss
parents: 1801
diff changeset
2986 */
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
2987 void redraw_titles(void)
1805
a5e1d6526ac7 updated for version 7.2-103
vimboss
parents: 1801
diff changeset
2988 {
a5e1d6526ac7 updated for version 7.2-103
vimboss
parents: 1801
diff changeset
2989 need_maketitle = TRUE;
a5e1d6526ac7 updated for version 7.2-103
vimboss
parents: 1801
diff changeset
2990 redraw_tabline = TRUE;
a5e1d6526ac7 updated for version 7.2-103
vimboss
parents: 1801
diff changeset
2991 }
a5e1d6526ac7 updated for version 7.2-103
vimboss
parents: 1801
diff changeset
2992
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2993 /*
16277
5ef25fa57f71 patch 8.1.1143: may pass weird strings to file name expansion
Bram Moolenaar <Bram@vim.org>
parents: 16223
diff changeset
2994 * Return TRUE if "val" is a valid name: only consists of alphanumeric ASCII
5ef25fa57f71 patch 8.1.1143: may pass weird strings to file name expansion
Bram Moolenaar <Bram@vim.org>
parents: 16223
diff changeset
2995 * characters or characters in "allowed".
5ef25fa57f71 patch 8.1.1143: may pass weird strings to file name expansion
Bram Moolenaar <Bram@vim.org>
parents: 16223
diff changeset
2996 */
17940
079e10a49ea1 patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents: 17845
diff changeset
2997 int
16277
5ef25fa57f71 patch 8.1.1143: may pass weird strings to file name expansion
Bram Moolenaar <Bram@vim.org>
parents: 16223
diff changeset
2998 valid_name(char_u *val, char *allowed)
5ef25fa57f71 patch 8.1.1143: may pass weird strings to file name expansion
Bram Moolenaar <Bram@vim.org>
parents: 16223
diff changeset
2999 {
5ef25fa57f71 patch 8.1.1143: may pass weird strings to file name expansion
Bram Moolenaar <Bram@vim.org>
parents: 16223
diff changeset
3000 char_u *s;
5ef25fa57f71 patch 8.1.1143: may pass weird strings to file name expansion
Bram Moolenaar <Bram@vim.org>
parents: 16223
diff changeset
3001
5ef25fa57f71 patch 8.1.1143: may pass weird strings to file name expansion
Bram Moolenaar <Bram@vim.org>
parents: 16223
diff changeset
3002 for (s = val; *s != NUL; ++s)
5ef25fa57f71 patch 8.1.1143: may pass weird strings to file name expansion
Bram Moolenaar <Bram@vim.org>
parents: 16223
diff changeset
3003 if (!ASCII_ISALNUM(*s) && vim_strchr((char_u *)allowed, *s) == NULL)
5ef25fa57f71 patch 8.1.1143: may pass weird strings to file name expansion
Bram Moolenaar <Bram@vim.org>
parents: 16223
diff changeset
3004 return FALSE;
5ef25fa57f71 patch 8.1.1143: may pass weird strings to file name expansion
Bram Moolenaar <Bram@vim.org>
parents: 16223
diff changeset
3005 return TRUE;
5ef25fa57f71 patch 8.1.1143: may pass weird strings to file name expansion
Bram Moolenaar <Bram@vim.org>
parents: 16223
diff changeset
3006 }
5ef25fa57f71 patch 8.1.1143: may pass weird strings to file name expansion
Bram Moolenaar <Bram@vim.org>
parents: 16223
diff changeset
3007
681
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
3008 #if defined(FEAT_EVAL) || defined(PROTO)
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
3009 /*
14700
0a3b9ecf7cb8 patch 8.1.0362: cannot get the script line number when executing a function
Christian Brabandt <cb@256bit.org>
parents: 14479
diff changeset
3010 * Set the script_ctx for an option, taking care of setting the buffer- or
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
3011 * window-local value.
681
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
3012 */
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
3013 void
14700
0a3b9ecf7cb8 patch 8.1.0362: cannot get the script line number when executing a function
Christian Brabandt <cb@256bit.org>
parents: 14479
diff changeset
3014 set_option_sctx_idx(int opt_idx, int opt_flags, sctx_T script_ctx)
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
3015 {
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
3016 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
3017 int indir = (int)options[opt_idx].indir;
14700
0a3b9ecf7cb8 patch 8.1.0362: cannot get the script line number when executing a function
Christian Brabandt <cb@256bit.org>
parents: 14479
diff changeset
3018 sctx_T new_script_ctx = script_ctx;
0a3b9ecf7cb8 patch 8.1.0362: cannot get the script line number when executing a function
Christian Brabandt <cb@256bit.org>
parents: 14479
diff changeset
3019
20269
246101db63a4 patch 8.2.0690: line number of option set by modeline is wrong
Bram Moolenaar <Bram@vim.org>
parents: 20237
diff changeset
3020 // Modeline already has the line number set.
246101db63a4 patch 8.2.0690: line number of option set by modeline is wrong
Bram Moolenaar <Bram@vim.org>
parents: 20237
diff changeset
3021 if (!(opt_flags & OPT_MODELINE))
246101db63a4 patch 8.2.0690: line number of option set by modeline is wrong
Bram Moolenaar <Bram@vim.org>
parents: 20237
diff changeset
3022 new_script_ctx.sc_lnum += SOURCING_LNUM;
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
3023
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
3024 // Remember where the option was set. For local options need to do that
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
3025 // in the buffer or window structure.
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
3026 if (both || (opt_flags & OPT_GLOBAL) || (indir & (PV_BUF|PV_WIN)) == 0)
14700
0a3b9ecf7cb8 patch 8.1.0362: cannot get the script line number when executing a function
Christian Brabandt <cb@256bit.org>
parents: 14479
diff changeset
3027 options[opt_idx].script_ctx = new_script_ctx;
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
3028 if (both || (opt_flags & OPT_LOCAL))
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
3029 {
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
3030 if (indir & PV_BUF)
14700
0a3b9ecf7cb8 patch 8.1.0362: cannot get the script line number when executing a function
Christian Brabandt <cb@256bit.org>
parents: 14479
diff changeset
3031 curbuf->b_p_script_ctx[indir & PV_MASK] = new_script_ctx;
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
3032 else if (indir & PV_WIN)
27289
e11682ba8c80 patch 8.2.4173: cannot use an import in 'foldexpr'
Bram Moolenaar <Bram@vim.org>
parents: 27285
diff changeset
3033 {
14700
0a3b9ecf7cb8 patch 8.1.0362: cannot get the script line number when executing a function
Christian Brabandt <cb@256bit.org>
parents: 14479
diff changeset
3034 curwin->w_p_script_ctx[indir & PV_MASK] = new_script_ctx;
27289
e11682ba8c80 patch 8.2.4173: cannot use an import in 'foldexpr'
Bram Moolenaar <Bram@vim.org>
parents: 27285
diff changeset
3035 if (both)
e11682ba8c80 patch 8.2.4173: cannot use an import in 'foldexpr'
Bram Moolenaar <Bram@vim.org>
parents: 27285
diff changeset
3036 // also setting the "all buffers" value
e11682ba8c80 patch 8.2.4173: cannot use an import in 'foldexpr'
Bram Moolenaar <Bram@vim.org>
parents: 27285
diff changeset
3037 curwin->w_allbuf_opt.wo_script_ctx[indir & PV_MASK] =
e11682ba8c80 patch 8.2.4173: cannot use an import in 'foldexpr'
Bram Moolenaar <Bram@vim.org>
parents: 27285
diff changeset
3038 new_script_ctx;
e11682ba8c80 patch 8.2.4173: cannot use an import in 'foldexpr'
Bram Moolenaar <Bram@vim.org>
parents: 27285
diff changeset
3039 }
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
3040 }
681
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
3041 }
14867
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
3042
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
3043 /*
27303
9e0ac05f579a patch 8.2.4180: 'balloonexpr' is evaluated in the current script context
Bram Moolenaar <Bram@vim.org>
parents: 27289
diff changeset
3044 * Get the script context of global option "name".
9e0ac05f579a patch 8.2.4180: 'balloonexpr' is evaluated in the current script context
Bram Moolenaar <Bram@vim.org>
parents: 27289
diff changeset
3045 *
9e0ac05f579a patch 8.2.4180: 'balloonexpr' is evaluated in the current script context
Bram Moolenaar <Bram@vim.org>
parents: 27289
diff changeset
3046 */
9e0ac05f579a patch 8.2.4180: 'balloonexpr' is evaluated in the current script context
Bram Moolenaar <Bram@vim.org>
parents: 27289
diff changeset
3047 sctx_T *
9e0ac05f579a patch 8.2.4180: 'balloonexpr' is evaluated in the current script context
Bram Moolenaar <Bram@vim.org>
parents: 27289
diff changeset
3048 get_option_sctx(char *name)
9e0ac05f579a patch 8.2.4180: 'balloonexpr' is evaluated in the current script context
Bram Moolenaar <Bram@vim.org>
parents: 27289
diff changeset
3049 {
9e0ac05f579a patch 8.2.4180: 'balloonexpr' is evaluated in the current script context
Bram Moolenaar <Bram@vim.org>
parents: 27289
diff changeset
3050 int idx = findoption((char_u *)name);
9e0ac05f579a patch 8.2.4180: 'balloonexpr' is evaluated in the current script context
Bram Moolenaar <Bram@vim.org>
parents: 27289
diff changeset
3051
9e0ac05f579a patch 8.2.4180: 'balloonexpr' is evaluated in the current script context
Bram Moolenaar <Bram@vim.org>
parents: 27289
diff changeset
3052 if (idx >= 0)
9e0ac05f579a patch 8.2.4180: 'balloonexpr' is evaluated in the current script context
Bram Moolenaar <Bram@vim.org>
parents: 27289
diff changeset
3053 return &options[idx].script_ctx;
9e0ac05f579a patch 8.2.4180: 'balloonexpr' is evaluated in the current script context
Bram Moolenaar <Bram@vim.org>
parents: 27289
diff changeset
3054 siemsg("no such option: %s", name);
9e0ac05f579a patch 8.2.4180: 'balloonexpr' is evaluated in the current script context
Bram Moolenaar <Bram@vim.org>
parents: 27289
diff changeset
3055 return NULL;
9e0ac05f579a patch 8.2.4180: 'balloonexpr' is evaluated in the current script context
Bram Moolenaar <Bram@vim.org>
parents: 27289
diff changeset
3056 }
9e0ac05f579a patch 8.2.4180: 'balloonexpr' is evaluated in the current script context
Bram Moolenaar <Bram@vim.org>
parents: 27289
diff changeset
3057
9e0ac05f579a patch 8.2.4180: 'balloonexpr' is evaluated in the current script context
Bram Moolenaar <Bram@vim.org>
parents: 27289
diff changeset
3058 /*
14867
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
3059 * Set the script_ctx for a termcap option.
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
3060 * "name" must be the two character code, e.g. "RV".
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
3061 * When "name" is NULL use "opt_idx".
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
3062 */
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
3063 void
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
3064 set_term_option_sctx_idx(char *name, int opt_idx)
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
3065 {
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
3066 char_u buf[5];
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
3067 int idx;
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
3068
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
3069 if (name == NULL)
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
3070 idx = opt_idx;
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
3071 else
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
3072 {
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
3073 buf[0] = 't';
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
3074 buf[1] = '_';
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
3075 buf[2] = name[0];
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
3076 buf[3] = name[1];
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
3077 buf[4] = 0;
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
3078 idx = findoption(buf);
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
3079 }
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
3080 if (idx >= 0)
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
3081 set_option_sctx_idx(idx, OPT_GLOBAL, current_sctx);
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
3082 }
681
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
3083 #endif
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
3084
19405
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3085 #if defined(FEAT_EVAL)
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3086 /*
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3087 * Apply the OptionSet autocommand.
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3088 */
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3089 static void
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3090 apply_optionset_autocmd(
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3091 int opt_idx,
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3092 long opt_flags,
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3093 long oldval,
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3094 long oldval_g,
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3095 long newval,
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3096 char *errmsg)
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3097 {
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3098 char_u buf_old[12], buf_old_global[12], buf_new[12], buf_type[12];
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3099
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3100 // Don't do this while starting up, failure or recursively.
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3101 if (starting || errmsg != NULL || *get_vim_var_str(VV_OPTION_TYPE) != NUL)
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3102 return;
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3103
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3104 vim_snprintf((char *)buf_old, sizeof(buf_old), "%ld", oldval);
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3105 vim_snprintf((char *)buf_old_global, sizeof(buf_old_global), "%ld",
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3106 oldval_g);
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3107 vim_snprintf((char *)buf_new, sizeof(buf_new), "%ld", newval);
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3108 vim_snprintf((char *)buf_type, sizeof(buf_type), "%s",
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3109 (opt_flags & OPT_LOCAL) ? "local" : "global");
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3110 set_vim_var_string(VV_OPTION_NEW, buf_new, -1);
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3111 set_vim_var_string(VV_OPTION_OLD, buf_old, -1);
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3112 set_vim_var_string(VV_OPTION_TYPE, buf_type, -1);
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3113 if (opt_flags & OPT_LOCAL)
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3114 {
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3115 set_vim_var_string(VV_OPTION_COMMAND, (char_u *)"setlocal", -1);
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3116 set_vim_var_string(VV_OPTION_OLDLOCAL, buf_old, -1);
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3117 }
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3118 if (opt_flags & OPT_GLOBAL)
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3119 {
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3120 set_vim_var_string(VV_OPTION_COMMAND, (char_u *)"setglobal", -1);
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3121 set_vim_var_string(VV_OPTION_OLDGLOBAL, buf_old, -1);
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3122 }
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3123 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0)
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3124 {
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3125 set_vim_var_string(VV_OPTION_COMMAND, (char_u *)"set", -1);
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3126 set_vim_var_string(VV_OPTION_OLDLOCAL, buf_old, -1);
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3127 set_vim_var_string(VV_OPTION_OLDGLOBAL, buf_old_global, -1);
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3128 }
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3129 if (opt_flags & OPT_MODELINE)
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3130 {
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3131 set_vim_var_string(VV_OPTION_COMMAND, (char_u *)"modeline", -1);
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3132 set_vim_var_string(VV_OPTION_OLDLOCAL, buf_old, -1);
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3133 }
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3134 apply_autocmds(EVENT_OPTIONSET, (char_u *)options[opt_idx].fullname,
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3135 NULL, FALSE, NULL);
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3136 reset_v_option_vars();
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3137 }
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3138 #endif
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3139
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3140 /*
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3141 * Process the updated 'compatible' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3142 */
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3143 static void
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3144 did_set_compatible(void)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3145 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3146 compatible_set();
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3147 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3148
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3149 #ifdef FEAT_LANGMAP
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3150 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3151 * Process the updated 'langremap' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3152 */
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3153 static void
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3154 did_set_langremap(void)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3155 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3156 // 'langremap' -> !'langnoremap'
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3157 p_lnr = !p_lrm;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3158 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3159
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3160 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3161 * Process the updated 'langnoremap' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3162 */
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3163 static void
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3164 did_set_langnoremap(void)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3165 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3166 // 'langnoremap' -> !'langremap'
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3167 p_lrm = !p_lnr;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3168 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3169 #endif
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3170
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3171 #ifdef FEAT_PERSISTENT_UNDO
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3172 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3173 * Process the updated 'undofile' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3174 */
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3175 static void
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3176 did_set_undofile(int opt_flags)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3177 {
31952
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3178 // Only take action when the option was set.
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3179 if (!curbuf->b_p_udf && !p_udf)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3180 return;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3181
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3182 // When reset we do not delete the undo file, the option may be set again
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3183 // without making any changes in between.
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3184 char_u hash[UNDO_HASH_SIZE];
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3185 buf_T *save_curbuf = curbuf;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3186
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3187 FOR_ALL_BUFFERS(curbuf)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3188 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3189 // When 'undofile' is set globally: for every buffer, otherwise
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3190 // only for the current buffer: Try to read in the undofile,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3191 // if one exists, the buffer wasn't changed and the buffer was
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3192 // loaded
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3193 if ((curbuf == save_curbuf
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3194 || (opt_flags & OPT_GLOBAL) || opt_flags == 0)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3195 && !curbufIsChanged() && curbuf->b_ml.ml_mfp != NULL)
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3196 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3197 #ifdef FEAT_CRYPT
31952
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3198 if (crypt_get_method_nr(curbuf) == CRYPT_M_SOD)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3199 continue;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3200 #endif
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3201 u_compute_hash(hash);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3202 u_read_undo(NULL, hash, curbuf->b_fname);
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3203 }
31952
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3204 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3205 curbuf = save_curbuf;
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3206 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3207 #endif
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3208
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3209 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3210 * Process the updated 'readonly' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3211 */
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3212 static void
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3213 did_set_readonly(int opt_flags)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3214 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3215 // when 'readonly' is reset globally, also reset readonlymode
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3216 if (!curbuf->b_p_ro && (opt_flags & OPT_LOCAL) == 0)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3217 readonlymode = FALSE;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3218
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3219 // when 'readonly' is set may give W10 again
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3220 if (curbuf->b_p_ro)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3221 curbuf->b_did_warn = FALSE;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3222
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3223 redraw_titles();
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3224 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3225
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3226 #ifdef FEAT_GUI
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3227 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3228 * Process the updated 'mousehide' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3229 */
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3230 static void
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3231 did_set_mousehide(void)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3232 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3233 if (!p_mh)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3234 gui_mch_mousehide(FALSE);
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3235 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3236 #endif
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3237
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3238 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3239 * Process the updated 'modifiable' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3240 */
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3241 static char *
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3242 did_set_modifiable(int *doskip UNUSED)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3243 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3244 // when 'modifiable' is changed, redraw the window title
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3245
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3246 # ifdef FEAT_TERMINAL
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3247 // Cannot set 'modifiable' when in Terminal mode.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3248 if (curbuf->b_p_ma && (term_in_normal_mode() || (bt_terminal(curbuf)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3249 && curbuf->b_term != NULL && !term_is_finished(curbuf))))
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3250 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3251 curbuf->b_p_ma = FALSE;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3252 *doskip = TRUE;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3253 return e_cannot_make_terminal_with_running_job_modifiable;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3254 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3255 # endif
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3256 redraw_titles();
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3257
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3258 return NULL;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3259 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3260
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3261 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3262 * Process the updated 'endoffile' or 'endofline' or 'fixendofline' or 'bomb'
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3263 * option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3264 */
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3265 static void
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3266 did_set_eof_eol_fixeol_bomb(void)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3267 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3268 // redraw the window title and tab page text
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3269 redraw_titles();
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3270 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3271
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3272 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3273 * Process the updated 'binary' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3274 */
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3275 static void
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3276 did_set_binary(int opt_flags, long old_value)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3277 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3278 // when 'bin' is set also set some other options
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3279 set_options_bin(old_value, curbuf->b_p_bin, opt_flags);
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3280 redraw_titles();
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3281 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3282
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3283 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3284 * Process the updated 'buflisted' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3285 */
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3286 static void
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3287 did_set_buflisted(long old_value)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3288 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3289 // when 'buflisted' changes, trigger autocommands
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3290 if (old_value != curbuf->b_p_bl)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3291 apply_autocmds(curbuf->b_p_bl ? EVENT_BUFADD : EVENT_BUFDELETE,
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3292 NULL, NULL, TRUE, curbuf);
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3293 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3294
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3295 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3296 * Process the updated 'swapfile' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3297 */
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3298 static void
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3299 did_set_swapfile(void)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3300 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3301 // when 'swf' is set, create swapfile, when reset remove swapfile
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3302 if (curbuf->b_p_swf && p_uc)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3303 ml_open_file(curbuf); // create the swap file
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3304 else
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3305 // no need to reset curbuf->b_may_swap, ml_open_file() will check
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3306 // buf->b_p_swf
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3307 mf_close_file(curbuf, TRUE); // remove the swap file
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3308 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3309
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3310 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3311 * Process the updated 'terse' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3312 */
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3313 static void
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3314 did_set_terse(void)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3315 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3316 char_u *p;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3317
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3318 // when 'terse' is set change 'shortmess'
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3319 p = vim_strchr(p_shm, SHM_SEARCH);
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3320
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3321 // insert 's' in p_shm
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3322 if (p_terse && p == NULL)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3323 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3324 STRCPY(IObuff, p_shm);
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3325 STRCAT(IObuff, "s");
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3326 set_string_option_direct((char_u *)"shm", -1, IObuff, OPT_FREE, 0);
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3327 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3328 // remove 's' from p_shm
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3329 else if (!p_terse && p != NULL)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3330 STRMOVE(p, p + 1);
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3331 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3332
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3333 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3334 * Process the updated 'paste' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3335 */
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3336 static void
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3337 did_set_paste(void)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3338 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3339 // when 'paste' is set or reset also change other options
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3340 paste_option_changed();
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3341 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3342
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3343 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3344 * Process the updated 'insertmode' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3345 */
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3346 static void
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3347 did_set_insertmode(long old_value)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3348 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3349 // when 'insertmode' is set from an autocommand need to do work here
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3350 if (p_im)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3351 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3352 if ((State & MODE_INSERT) == 0)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3353 need_start_insertmode = TRUE;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3354 stop_insert_mode = FALSE;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3355 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3356 // only reset if it was set previously
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3357 else if (old_value)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3358 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3359 need_start_insertmode = FALSE;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3360 stop_insert_mode = TRUE;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3361 if (restart_edit != 0 && mode_displayed)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3362 clear_cmdline = TRUE; // remove "(insert)"
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3363 restart_edit = 0;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3364 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3365 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3366
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3367 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3368 * Process the updated 'ignorecase' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3369 */
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3370 static void
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3371 did_set_ignorecase(void)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3372 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3373 // when 'ignorecase' is set or reset and 'hlsearch' is set, redraw
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3374 if (p_hls)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3375 redraw_all_later(UPD_SOME_VALID);
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3376 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3377
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3378 #ifdef FEAT_SEARCH_EXTRA
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3379 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3380 * Process the updated 'hlsearch' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3381 */
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3382 static void
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3383 did_set_hlsearch(void)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3384 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3385 // when 'hlsearch' is set or reset: reset no_hlsearch
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3386 set_no_hlsearch(FALSE);
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3387 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3388 #endif
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3389
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3390 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3391 * Process the updated 'scrollbind' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3392 */
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3393 static void
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3394 did_set_scrollbind(void)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3395 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3396 // when 'scrollbind' is set: snapshot the current position to avoid a jump
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3397 // at the end of normal_cmd()
31952
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3398 if (!curwin->w_p_scb)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3399 return;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3400 do_check_scrollbind(FALSE);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3401 curwin->w_scbind_pos = curwin->w_topline;
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3402 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3403
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3404 #ifdef FEAT_QUICKFIX
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3405 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3406 * Process the updated 'previewwindow' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3407 */
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3408 static char *
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3409 did_set_previewwindow(int *doskip)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3410 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3411 if (!curwin->w_p_pvw)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3412 return NULL;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3413
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3414 // There can be only one window with 'previewwindow' set.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3415 win_T *win;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3416
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3417 FOR_ALL_WINDOWS(win)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3418 if (win->w_p_pvw && win != curwin)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3419 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3420 curwin->w_p_pvw = FALSE;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3421 *doskip = TRUE;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3422 return e_preview_window_already_exists;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3423 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3424
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3425 return NULL;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3426 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3427 #endif
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3428
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3429 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3430 * Process the updated 'smoothscroll' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3431 */
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3432 static void
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3433 did_set_smoothscroll(void)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3434 {
31952
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3435 if (curwin->w_p_sms)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3436 return;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3437 curwin->w_skipcol = 0;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3438 changed_line_abv_curs();
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3439 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3440
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3441 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3442 * Process the updated 'textmode' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3443 */
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3444 static void
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3445 did_set_textmode(int opt_flags)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3446 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3447 // when 'textmode' is set or reset also change 'fileformat'
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3448 set_fileformat(curbuf->b_p_tx ? EOL_DOS : EOL_UNIX, opt_flags);
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3449 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3450
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3451 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3452 * Process the updated 'textauto' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3453 */
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3454 static void
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3455 did_set_textauto(int opt_flags)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3456 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3457 // when 'textauto' is set or reset also change 'fileformats'
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3458 set_string_option_direct((char_u *)"ffs", -1,
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3459 p_ta ? (char_u *)DFLT_FFS_VIM : (char_u *)"",
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3460 OPT_FREE | opt_flags, 0);
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3461 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3462
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3463 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3464 * Process the updated 'lisp' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3465 */
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3466 static void
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3467 did_set_lisp(void)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3468 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3469 // When 'lisp' option changes include/exclude '-' in keyword characters.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3470 (void)buf_init_chartab(curbuf, FALSE); // ignore errors
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3471 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3472
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3473 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3474 * Process the updated 'title' or the 'icon' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3475 */
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3476 static void
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3477 did_set_title_icon(void)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3478 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3479 // when 'title' changed, may need to change the title; same for 'icon'
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3480 did_set_title();
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3481 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3482
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3483 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3484 * Process the updated 'modified' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3485 */
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3486 static void
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3487 did_set_modified(long value)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3488 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3489 if (!value)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3490 save_file_ff(curbuf); // Buffer is unchanged
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3491 redraw_titles();
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3492 modified_was_set = value;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3493 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3494
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3495 #ifdef BACKSLASH_IN_FILENAME
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3496 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3497 * Process the updated 'shellslash' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3498 */
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3499 static void
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3500 did_set_shellslash(void)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3501 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3502 if (p_ssl)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3503 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3504 psepc = '/';
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3505 psepcN = '\\';
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3506 pseps[0] = '/';
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3507 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3508 else
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3509 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3510 psepc = '\\';
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3511 psepcN = '/';
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3512 pseps[0] = '\\';
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3513 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3514
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3515 // need to adjust the file name arguments and buffer names.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3516 buflist_slash_adjust();
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3517 alist_slash_adjust();
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3518 # ifdef FEAT_EVAL
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3519 scriptnames_slash_adjust();
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3520 # endif
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3521 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3522 #endif
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3523
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3524 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3525 * Process the updated 'wrap' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3526 */
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3527 static void
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3528 did_set_wrap(void)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3529 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3530 // If 'wrap' is set, set w_leftcol to zero.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3531 if (curwin->w_p_wrap)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3532 curwin->w_leftcol = 0;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3533 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3534
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3535 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3536 * Process the updated 'equalalways' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3537 */
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3538 static void
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3539 did_set_equalalways(long old_value)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3540 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3541 if (p_ea && !old_value)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3542 win_equal(curwin, FALSE, 0);
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3543 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3544
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3545 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3546 * Process the updated 'weirdinvert' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3547 */
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3548 static void
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3549 did_set_weirdinvert(long old_value)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3550 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3551 // When 'weirdinvert' changed, set/reset 't_xs'.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3552 // Then set 'weirdinvert' according to value of 't_xs'.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3553 if (p_wiv && !old_value)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3554 T_XS = (char_u *)"y";
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3555 else if (!p_wiv && old_value)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3556 T_XS = empty_option;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3557 p_wiv = (*T_XS != NUL);
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3558 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3559
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3560 #ifdef FEAT_BEVAL_GUI
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3561 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3562 * Process the updated 'ballooneval' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3563 */
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3564 static void
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3565 did_set_ballooneval(long old_value)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3566 {
31952
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3567 if (balloonEvalForTerm)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3568 return;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3569 if (p_beval && !old_value)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3570 gui_mch_enable_beval_area(balloonEval);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3571 else if (!p_beval && old_value)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3572 gui_mch_disable_beval_area(balloonEval);
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3573 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3574 #endif
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3575
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3576 #ifdef FEAT_BEVAL_TERM
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3577 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3578 * Process the updated 'balloonevalterm' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3579 */
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3580 static void
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3581 did_set_balloonevalterm(void)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3582 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3583 mch_bevalterm_changed();
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3584 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3585 #endif
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3586
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3587 #ifdef FEAT_AUTOCHDIR
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3588 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3589 * Process the updated 'autochdir' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3590 */
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3591 static void
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3592 did_set_autochdir(void)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3593 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3594 // Change directories when the 'acd' option is set now.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3595 DO_AUTOCHDIR;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3596 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3597 #endif
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3598
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3599 #ifdef FEAT_DIFF
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3600 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3601 * Process the updated 'diff' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3602 */
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3603 static void
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3604 did_set_diff(void)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3605 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3606 // May add or remove the buffer from the list of diff buffers.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3607 diff_buf_adjust(curwin);
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3608 # ifdef FEAT_FOLDING
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3609 if (foldmethodIsDiff(curwin))
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3610 foldUpdateAll(curwin);
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3611 # endif
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3612 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3613 #endif
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3614
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3615 #ifdef HAVE_INPUT_METHOD
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3616 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3617 * Process the updated 'imdisable' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3618 */
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3619 static void
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3620 did_set_imdisable(void)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3621 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3622 // Only de-activate it here, it will be enabled when changing mode.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3623 if (p_imdisable)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3624 im_set_active(FALSE);
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3625 else if (State & MODE_INSERT)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3626 // When the option is set from an autocommand, it may need to take
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3627 // effect right away.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3628 im_set_active(curbuf->b_p_iminsert == B_IMODE_IM);
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3629 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3630 #endif
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3631
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3632 #ifdef FEAT_SPELL
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3633 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3634 * Process the updated 'spell' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3635 */
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3636 static char *
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3637 did_set_spell(void)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3638 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3639 if (curwin->w_p_spell)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3640 return did_set_spelllang(curwin);
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3641
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3642 return NULL;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3643 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3644 #endif
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3645
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3646 #ifdef FEAT_ARABIC
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3647 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3648 * Process the updated 'arabic' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3649 */
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3650 static char *
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3651 did_set_arabic(void)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3652 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3653 char *errmsg = NULL;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3654
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3655 if (curwin->w_p_arab)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3656 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3657 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3658 * 'arabic' is set, handle various sub-settings.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3659 */
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3660 if (!p_tbidi)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3661 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3662 // set rightleft mode
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3663 if (!curwin->w_p_rl)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3664 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3665 curwin->w_p_rl = TRUE;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3666 changed_window_setting();
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3667 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3668
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3669 // Enable Arabic shaping (major part of what Arabic requires)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3670 if (!p_arshape)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3671 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3672 p_arshape = TRUE;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3673 redraw_later_clear();
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3674 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3675 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3676
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3677 // Arabic requires a utf-8 encoding, inform the user if it's not
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3678 // set.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3679 if (STRCMP(p_enc, "utf-8") != 0)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3680 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3681 static char *w_arabic = N_("W17: Arabic requires UTF-8, do ':set encoding=utf-8'");
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3682
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3683 msg_source(HL_ATTR(HLF_W));
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3684 msg_attr(_(w_arabic), HL_ATTR(HLF_W));
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3685 #ifdef FEAT_EVAL
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3686 set_vim_var_string(VV_WARNINGMSG, (char_u *)_(w_arabic), -1);
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3687 #endif
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3688 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3689
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3690 // set 'delcombine'
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3691 p_deco = TRUE;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3692
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3693 # ifdef FEAT_KEYMAP
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3694 // Force-set the necessary keymap for arabic
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3695 errmsg = set_option_value((char_u *)"keymap",
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3696 0L, (char_u *)"arabic", OPT_LOCAL);
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3697 # endif
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3698 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3699 else
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3700 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3701 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3702 * 'arabic' is reset, handle various sub-settings.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3703 */
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3704 if (!p_tbidi)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3705 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3706 // reset rightleft mode
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3707 if (curwin->w_p_rl)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3708 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3709 curwin->w_p_rl = FALSE;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3710 changed_window_setting();
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3711 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3712
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3713 // 'arabicshape' isn't reset, it is a global option and
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3714 // another window may still need it "on".
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3715 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3716
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3717 // 'delcombine' isn't reset, it is a global option and another
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3718 // window may still want it "on".
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3719
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3720 # ifdef FEAT_KEYMAP
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3721 // Revert to the default keymap
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3722 curbuf->b_p_iminsert = B_IMODE_NONE;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3723 curbuf->b_p_imsearch = B_IMODE_USE_INSERT;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3724 # endif
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3725 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3726
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3727 return errmsg;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3728 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3729 #endif
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3730
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3731 #if defined(FEAT_SIGNS) && defined(FEAT_GUI)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3732 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3733 * Process the updated 'number' or 'relativenumber' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3734 */
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3735 static void
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3736 did_set_number_relativenumber(char_u *varp)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3737 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3738 if (gui.in_use
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3739 && (*curwin->w_p_scl == 'n' && *(curwin->w_p_scl + 1) == 'u')
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3740 && curbuf->b_signlist != NULL)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3741 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3742 // If the 'number' or 'relativenumber' options are modified and
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3743 // 'signcolumn' is set to 'number', then clear the screen for a full
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3744 // refresh. Otherwise the sign icons are not displayed properly in the
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3745 // number column. If the 'number' option is set and only the
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3746 // 'relativenumber' option is toggled, then don't refresh the screen
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3747 // (optimization).
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3748 if (!(curwin->w_p_nu && ((int *)varp == &curwin->w_p_rnu)))
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3749 redraw_all_later(UPD_CLEAR);
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3750 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3751 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3752 #endif
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3753
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3754 #ifdef FEAT_TERMGUICOLORS
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3755 static char *
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3756 did_set_termguicolors(int *doskip UNUSED)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3757 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3758 # ifdef FEAT_VTP
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3759 // Do not turn on 'tgc' when 24-bit colors are not supported.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3760 if (
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3761 # ifdef VIMDLL
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3762 !gui.in_use && !gui.starting &&
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3763 # endif
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3764 !has_vtp_working())
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3765 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3766 p_tgc = 0;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3767 *doskip = TRUE;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3768 return e_24_bit_colors_are_not_supported_on_this_environment;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3769 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3770 if (is_term_win32())
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3771 swap_tcap();
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3772 # endif
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3773 # ifdef FEAT_GUI
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3774 if (!gui.in_use && !gui.starting)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3775 # endif
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3776 highlight_gui_started();
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3777 # ifdef FEAT_VTP
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3778 // reset t_Co
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3779 if (is_term_win32())
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3780 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3781 control_console_color_rgb();
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3782 set_termname(T_NAME);
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3783 init_highlight(TRUE, FALSE);
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3784 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3785 # endif
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3786 # ifdef FEAT_TERMINAL
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3787 term_update_colors_all();
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3788 term_update_palette_all();
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3789 term_update_wincolor_all();
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3790 # endif
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3791
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3792 return NULL;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3793 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3794 #endif
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3795
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3796 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3797 * When some boolean options are changed, need to take some action.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3798 */
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3799 static char *
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3800 did_set_bool_option(
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3801 char_u *varp,
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3802 int opt_flags,
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3803 long value,
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3804 long old_value,
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3805 int *doskip)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3806 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3807 char *errmsg = NULL;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3808
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3809 if ((int *)varp == &p_cp) // 'compatible'
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3810 did_set_compatible();
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3811 #ifdef FEAT_LANGMAP
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3812 else if ((int *)varp == &p_lrm) // 'langremap'
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3813 did_set_langremap();
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3814 else if ((int *)varp == &p_lnr) // 'langnoremap'
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3815 did_set_langnoremap();
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3816 #endif
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3817 #ifdef FEAT_PERSISTENT_UNDO
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3818 else if ((int *)varp == &curbuf->b_p_udf // buffer local 'undofile'
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3819 || (int *)varp == &p_udf) // 'undofile'
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3820 did_set_undofile(opt_flags);
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3821 #endif
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3822 else if ((int *)varp == &curbuf->b_p_ro) // 'readonly'
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3823 did_set_readonly(opt_flags);
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3824 #ifdef FEAT_GUI
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3825 else if ((int *)varp == &p_mh) // 'mousehide'
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3826 did_set_mousehide();
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3827 #endif
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3828 else if ((int *)varp == &curbuf->b_p_ma)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3829 errmsg = did_set_modifiable(doskip); // 'modifiable'
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3830 else if ((int *)varp == &curbuf->b_p_eof // 'endoffile'
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3831 || (int *)varp == &curbuf->b_p_eol // 'endofline'
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3832 || (int *)varp == &curbuf->b_p_fixeol // 'fixendofline'
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3833 || (int *)varp == &curbuf->b_p_bomb) // 'bomb'
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3834 did_set_eof_eol_fixeol_bomb();
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3835 else if ((int *)varp == &curbuf->b_p_bin) // 'binary'
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3836 did_set_binary(opt_flags, old_value);
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3837 else if ((int *)varp == &curbuf->b_p_bl) // 'buflisted'
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3838 did_set_buflisted(old_value);
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3839 else if ((int *)varp == &curbuf->b_p_swf) // 'swapfile'
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3840 did_set_swapfile();
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3841 else if ((int *)varp == &p_terse) // 'terse'
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3842 did_set_terse();
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3843 else if ((int *)varp == &p_paste) // 'paste'
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3844 did_set_paste();
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3845 else if ((int *)varp == &p_im) // 'insertmode'
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3846 did_set_insertmode(old_value);
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3847 else if ((int *)varp == &p_ic) // 'ignorecase'
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3848 did_set_ignorecase();
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3849 #ifdef FEAT_SEARCH_EXTRA
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3850 else if ((int *)varp == &p_hls) // 'hlsearch'
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3851 did_set_hlsearch();
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3852 #endif
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3853 else if ((int *)varp == &curwin->w_p_scb) // 'scrollbind'
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3854 did_set_scrollbind();
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3855 #ifdef FEAT_QUICKFIX
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3856 else if ((int *)varp == &curwin->w_p_pvw) // 'previewwindow'
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3857 errmsg = did_set_previewwindow(doskip);
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3858 #endif
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3859 else if ((int *)varp == &curwin->w_p_sms) // 'smoothscroll'
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3860 did_set_smoothscroll();
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3861 else if ((int *)varp == &curbuf->b_p_tx) // 'textmode'
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3862 did_set_textmode(opt_flags);
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3863 else if ((int *)varp == &p_ta) // 'textauto'
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3864 did_set_textauto(opt_flags);
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3865 else if (varp == (char_u *)&(curbuf->b_p_lisp)) // 'lisp'
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3866 did_set_lisp();
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3867 else if ( (int *)varp == &p_title // 'title'
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3868 || (int *)varp == &p_icon) // 'icon'
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3869 did_set_title_icon();
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3870 else if ((int *)varp == &curbuf->b_changed) // 'modified'
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3871 did_set_modified(value);
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3872 #ifdef BACKSLASH_IN_FILENAME
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3873 else if ((int *)varp == &p_ssl) // 'shellslash'
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3874 did_set_shellslash();
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3875 #endif
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3876 else if ((int *)varp == &curwin->w_p_wrap) // 'wrap'
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3877 did_set_wrap();
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3878 else if ((int *)varp == &p_ea) // 'equalalways'
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3879 did_set_equalalways(old_value);
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3880 else if ((int *)varp == &p_wiv) // weirdinvert'
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3881 did_set_weirdinvert(old_value);
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3882 #ifdef FEAT_BEVAL_GUI
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3883 else if ((int *)varp == &p_beval) // 'ballooneval'
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3884 did_set_ballooneval(old_value);
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3885 #endif
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3886 #ifdef FEAT_BEVAL_TERM
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3887 else if ((int *)varp == &p_bevalterm) // 'balloonevalterm'
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3888 did_set_balloonevalterm();
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3889 #endif
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3890 #ifdef FEAT_AUTOCHDIR
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3891 else if ((int *)varp == &p_acd) // 'autochdir'
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3892 did_set_autochdir();
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3893 #endif
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3894 #ifdef FEAT_DIFF
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3895 else if ((int *)varp == &curwin->w_p_diff) // 'diff'
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3896 did_set_diff();
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3897 #endif
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3898 #ifdef HAVE_INPUT_METHOD
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3899 else if ((int *)varp == &p_imdisable) // 'imdisable'
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3900 did_set_imdisable();
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3901 #endif
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3902 #ifdef FEAT_SPELL
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3903 else if ((int *)varp == &curwin->w_p_spell) // 'spell'
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3904 errmsg = did_set_spell();
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3905 #endif
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3906 #ifdef FEAT_ARABIC
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3907 else if ((int *)varp == &curwin->w_p_arab) // 'arabic'
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3908 errmsg = did_set_arabic();
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3909 #endif
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3910 #if defined(FEAT_SIGNS) && defined(FEAT_GUI)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3911 else if ( (int *)varp == &curwin->w_p_nu // 'number'
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3912 || (int *)varp == &curwin->w_p_rnu) // 'relativenumber'
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3913 did_set_number_relativenumber(varp);
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3914 #endif
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3915 #ifdef FEAT_TERMGUICOLORS
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3916 else if ((int *)varp == &p_tgc) // 'termguicolors'
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3917 errmsg = did_set_termguicolors(doskip);
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3918 #endif
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3919
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3920 return errmsg;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3921 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3922
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3923 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3924 * Set the value of a boolean option, and take care of side effects.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3925 * Returns NULL for success, or an error message for an error.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3926 */
15470
55ccc2d353bd patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents: 15207
diff changeset
3927 static char *
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3928 set_bool_option(
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
3929 int opt_idx, // index in options[] table
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
3930 char_u *varp, // pointer to the option variable
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
3931 int value, // new value
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
3932 int opt_flags) // OPT_LOCAL and/or OPT_GLOBAL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3933 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3934 int old_value = *(int *)varp;
17115
1c2d05cb4d1d patch 8.1.1557: compiler warning for unused variables in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17085
diff changeset
3935 #if defined(FEAT_EVAL)
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 17039
diff changeset
3936 int old_global_value = 0;
17115
1c2d05cb4d1d patch 8.1.1557: compiler warning for unused variables in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17085
diff changeset
3937 #endif
28457
4dcccb2673fe patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents: 28405
diff changeset
3938 char *errmsg = NULL;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3939
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
3940 // Disallow changing some options from secure mode
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3941 if ((secure
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3942 #ifdef HAVE_SANDBOX
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3943 || sandbox != 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3944 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3945 ) && (options[opt_idx].flags & P_SECURE))
26883
7f150a4936f2 patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
3946 return e_not_allowed_here;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3947
17115
1c2d05cb4d1d patch 8.1.1557: compiler warning for unused variables in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17085
diff changeset
3948 #if defined(FEAT_EVAL)
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 17039
diff changeset
3949 // Save the global value before changing anything. This is needed as for
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 17039
diff changeset
3950 // a global-only option setting the "local value" in fact sets the global
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 17039
diff changeset
3951 // value (since there is only one value).
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 17039
diff changeset
3952 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 17039
diff changeset
3953 old_global_value = *(int *)get_varp_scope(&(options[opt_idx]),
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 17039
diff changeset
3954 OPT_GLOBAL);
17115
1c2d05cb4d1d patch 8.1.1557: compiler warning for unused variables in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17085
diff changeset
3955 #endif
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 17039
diff changeset
3956
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
3957 *(int *)varp = value; // set the new value
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3958 #ifdef FEAT_EVAL
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
3959 // Remember where the option was set.
14700
0a3b9ecf7cb8 patch 8.1.0362: cannot get the script line number when executing a function
Christian Brabandt <cb@256bit.org>
parents: 14479
diff changeset
3960 set_option_sctx_idx(opt_idx, opt_flags, current_sctx);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3961 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3962
634
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
3963 #ifdef FEAT_GUI
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
3964 need_mouse_correct = TRUE;
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
3965 #endif
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
3966
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
3967 // May set global value for local option.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3968 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3969 *(int *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) = value;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3970
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3971 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3972 * Handle side effects of changing a bool option.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3973 */
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3974 int doskip = FALSE;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3975 errmsg = did_set_bool_option(varp, opt_flags, value, old_value, &doskip);
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3976 if (doskip)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3977 return errmsg;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3978
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
3979 // after handling side effects, call autocommand
6935
4db70c94226b patch 7.4.786
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
3980
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3981 options[opt_idx].flags |= P_WAS_SET;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3982
13380
69517d67421f patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 13361
diff changeset
3983 #if defined(FEAT_EVAL)
19405
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3984 apply_optionset_autocmd(opt_idx, opt_flags,
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3985 (long)(old_value ? TRUE : FALSE),
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3986 (long)(old_global_value ? TRUE : FALSE),
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3987 (long)(value ? TRUE : FALSE), NULL);
6935
4db70c94226b patch 7.4.786
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
3988 #endif
4db70c94226b patch 7.4.786
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
3989
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
3990 comp_col(); // in case 'ruler' or 'showcmd' changed
3443
21219ffc9790 updated for version 7.3.487
Bram Moolenaar <bram@vim.org>
parents: 3427
diff changeset
3991 if (curwin->w_curswant != MAXCOL
6669
5a12a6861367 updated for version 7.4.659
Bram Moolenaar <bram@vim.org>
parents: 6602
diff changeset
3992 && (options[opt_idx].flags & (P_CURSWANT | P_RALL)) != 0)
3443
21219ffc9790 updated for version 7.3.487
Bram Moolenaar <bram@vim.org>
parents: 3427
diff changeset
3993 curwin->w_set_curswant = TRUE;
24079
a9ff8368d35f patch 8.2.2581: Vim9: sourcing Vim9 script triggers a redraw
Bram Moolenaar <Bram@vim.org>
parents: 23952
diff changeset
3994
a9ff8368d35f patch 8.2.2581: Vim9: sourcing Vim9 script triggers a redraw
Bram Moolenaar <Bram@vim.org>
parents: 23952
diff changeset
3995 if ((opt_flags & OPT_NO_REDRAW) == 0)
a9ff8368d35f patch 8.2.2581: Vim9: sourcing Vim9 script triggers a redraw
Bram Moolenaar <Bram@vim.org>
parents: 23952
diff changeset
3996 check_redraw(options[opt_idx].flags);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3997
28457
4dcccb2673fe patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents: 28405
diff changeset
3998 return errmsg;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3999 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4000
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4001 /*
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4002 * Process the new 'winheight' or the 'helpheight' option value.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4003 */
15470
55ccc2d353bd patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents: 15207
diff changeset
4004 static char *
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4005 did_set_winheight_helpheight(long *pp, char *errmsg)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4006 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4007 if (p_wh < 1)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4008 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4009 errmsg = e_argument_must_be_positive;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4010 p_wh = 1;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4011 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4012 if (p_wmh > p_wh)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4013 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4014 errmsg = e_winheight_cannot_be_smaller_than_winminheight;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4015 p_wh = p_wmh;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4016 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4017 if (p_hh < 0)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4018 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4019 errmsg = e_argument_must_be_positive;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4020 p_hh = 0;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4021 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4022
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4023 // Change window height NOW
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4024 if (!ONE_WINDOW)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4025 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4026 if (pp == &p_wh && curwin->w_height < p_wh)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4027 win_setheight((int)p_wh);
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4028 if (pp == &p_hh && curbuf->b_help && curwin->w_height < p_hh)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4029 win_setheight((int)p_hh);
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4030 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4031
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4032 return errmsg;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4033 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4034
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4035 /*
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4036 * Process the new 'winminheight' option value.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4037 */
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4038 static char *
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4039 did_set_winminheight(char *errmsg)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4040 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4041 if (p_wmh < 0)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4042 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4043 errmsg = e_argument_must_be_positive;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4044 p_wmh = 0;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4045 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4046 if (p_wmh > p_wh)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4047 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4048 errmsg = e_winheight_cannot_be_smaller_than_winminheight;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4049 p_wmh = p_wh;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4050 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4051 win_setminheight();
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4052
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4053 return errmsg;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4054 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4055
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4056 /*
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4057 * Process the new 'winwidth' option value.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4058 */
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4059 static char *
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4060 did_set_winwidth(char *errmsg)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4061 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4062 if (p_wiw < 1)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4063 {
26877
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26865
diff changeset
4064 errmsg = e_argument_must_be_positive;
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4065 p_wiw = 1;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4066 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4067 if (p_wmw > p_wiw)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4068 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4069 errmsg = e_winwidth_cannot_be_smaller_than_winminwidth;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4070 p_wiw = p_wmw;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4071 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4072
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4073 // Change window width NOW
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4074 if (!ONE_WINDOW && curwin->w_width < p_wiw)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4075 win_setwidth((int)p_wiw);
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4076
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4077 return errmsg;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4078 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4079
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4080 /*
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4081 * Process the new 'winminwidth' option value.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4082 */
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4083 static char *
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4084 did_set_winminwidth(char *errmsg)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4085 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4086 if (p_wmw < 0)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4087 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4088 errmsg = e_argument_must_be_positive;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4089 p_wmw = 0;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4090 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4091 if (p_wmw > p_wiw)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4092 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4093 errmsg = e_winwidth_cannot_be_smaller_than_winminwidth;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4094 p_wmw = p_wiw;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4095 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4096 win_setminwidth();
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4097
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4098 return errmsg;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4099 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4100
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4101 /*
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4102 * Process the new 'laststatus' option value.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4103 */
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4104 static void
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4105 did_set_laststatus(void)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4106 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4107 last_status(FALSE); // (re)set last window status line
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4108 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4109
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4110 /*
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4111 * Process the new 'showtabline' option value.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4112 */
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4113 static void
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4114 did_set_showtabline(void)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4115 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4116 shell_new_rows(); // recompute window positions and heights
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4117 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4118
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4119 #ifdef FEAT_GUI
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4120 /*
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4121 * Process the new 'linespace' option value.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4122 */
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4123 static void
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4124 did_set_linespace(void)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4125 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4126 // Recompute gui.char_height and resize the Vim window to keep the
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4127 // same number of lines.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4128 if (gui.in_use && gui_mch_adjust_charheight() == OK)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4129 gui_set_shellsize(FALSE, FALSE, RESIZE_VERT);
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4130 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4131 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4132
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4133 #ifdef FEAT_FOLDING
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4134 /*
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4135 * Process the new 'foldlevel' option value.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4136 */
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4137 static void
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4138 did_set_foldlevel(void)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4139 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4140 if (curwin->w_p_fdl < 0)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4141 curwin->w_p_fdl = 0;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4142 newFoldLevel();
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4143 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4144
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4145 /*
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4146 * Process the new 'foldminlines' option value.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4147 */
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4148 static void
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4149 did_set_foldminlines(void)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4150 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4151 foldUpdateAll(curwin);
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4152 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4153
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4154 /*
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4155 * Process the new 'foldnestmax' option value.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4156 */
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4157 static void
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4158 did_set_foldnestmax(void)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4159 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4160 if (foldmethodIsSyntax(curwin) || foldmethodIsIndent(curwin))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4161 foldUpdateAll(curwin);
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4162 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4163
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4164 /*
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4165 * Process the new 'foldcolumn' option value.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4166 */
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4167 static char *
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4168 did_set_foldcolumn(char *errmsg)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4169 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4170 if (curwin->w_p_fdc < 0)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4171 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4172 errmsg = e_argument_must_be_positive;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4173 curwin->w_p_fdc = 0;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4174 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4175 else if (curwin->w_p_fdc > 12)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4176 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4177 errmsg = e_invalid_argument;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4178 curwin->w_p_fdc = 12;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4179 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4180
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4181 return errmsg;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4182 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4183 #endif
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4184
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4185 /*
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4186 * Process the new 'shiftwidth' or the 'tabstop' option value.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4187 */
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4188 static void
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4189 did_set_shiftwidth_tabstop(long *pp)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4190 {
28942
6cdf55afaae9 patch 8.2.4993: smart/C/lisp indenting is optional
Bram Moolenaar <Bram@vim.org>
parents: 28919
diff changeset
4191 #ifdef FEAT_FOLDING
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4192 if (foldmethodIsIndent(curwin))
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4193 foldUpdateAll(curwin);
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4194 #endif
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4195 // When 'shiftwidth' changes, or it's zero and 'tabstop' changes:
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4196 // parse 'cinoptions'.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4197 if (pp == &curbuf->b_p_sw || curbuf->b_p_sw == 0)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4198 parse_cino(curbuf);
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4199 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4200
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4201 /*
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4202 * Process the new 'maxcombine' option value.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4203 */
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4204 static void
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4205 did_set_maxcombine(void)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4206 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4207 if (p_mco > MAX_MCO)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4208 p_mco = MAX_MCO;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4209 else if (p_mco < 0)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4210 p_mco = 0;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4211 screenclear(); // will re-allocate the screen
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4212 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4213
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4214 /*
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4215 * Process the new 'iminsert' option value.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4216 */
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4217 static char *
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4218 did_set_iminsert(char *errmsg)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4219 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4220 if (curbuf->b_p_iminsert < 0 || curbuf->b_p_iminsert > B_IMODE_LAST)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4221 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4222 errmsg = e_invalid_argument;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4223 curbuf->b_p_iminsert = B_IMODE_NONE;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4224 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4225 p_iminsert = curbuf->b_p_iminsert;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4226 if (termcap_active) // don't do this in the alternate screen
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4227 showmode();
12477
68d7bc045dbe patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 12469
diff changeset
4228 #if defined(FEAT_KEYMAP)
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4229 // Show/unshow value of 'keymap' in status lines.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4230 status_redraw_curbuf();
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4231 #endif
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4232
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4233 return errmsg;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4234 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4235
12293
1ff5e5dfa9b0 patch 8.0.1026: GTK on-the-spot input has problems
Christian Brabandt <cb@256bit.org>
parents: 12259
diff changeset
4236 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4237 /*
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4238 * Process the new 'imstyle' option value.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4239 */
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4240 static char *
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4241 did_set_imstyle(char *errmsg)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4242 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4243 if (p_imst != IM_ON_THE_SPOT && p_imst != IM_OVER_THE_SPOT)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4244 errmsg = e_invalid_argument;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4245
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4246 return errmsg;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4247 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4248 #endif
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4249
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4250 /*
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4251 * Process the new 'window' option value.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4252 */
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4253 static void
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4254 did_set_window(void)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4255 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4256 if (p_window < 1)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4257 p_window = 1;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4258 else if (p_window >= Rows)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4259 p_window = Rows - 1;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4260 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4261
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4262 /*
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4263 * Process the new 'imsearch' option value.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4264 */
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4265 static char *
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4266 did_set_imsearch(char *errmsg)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4267 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4268 if (curbuf->b_p_imsearch < -1 || curbuf->b_p_imsearch > B_IMODE_LAST)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4269 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4270 errmsg = e_invalid_argument;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4271 curbuf->b_p_imsearch = B_IMODE_NONE;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4272 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4273 p_imsearch = curbuf->b_p_imsearch;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4274
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4275 return errmsg;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4276 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4277
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4278 /*
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4279 * Process the new 'titlelen' option value.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4280 */
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4281 static char *
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4282 did_set_titlelen(long old_value, char *errmsg)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4283 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
4284 // if 'titlelen' has changed, redraw the title
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4285 if (p_titlelen < 0)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4286 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4287 errmsg = e_argument_must_be_positive;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4288 p_titlelen = 85;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4289 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4290 if (starting != NO_SCREEN && old_value != p_titlelen)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4291 need_maketitle = TRUE;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4292
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4293 return errmsg;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4294 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4295
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4296 /*
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4297 * Process the new 'cmdheight' option value.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4298 */
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4299 static char *
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4300 did_set_cmdheight(long old_value, char *errmsg)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4301 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
4302 // if p_ch changed value, change the command line height
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4303 if (p_ch < 1)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4304 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4305 errmsg = e_argument_must_be_positive;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4306 p_ch = 1;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4307 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4308 if (p_ch > Rows - min_rows() + 1)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4309 p_ch = Rows - min_rows() + 1;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4310
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4311 // Only compute the new window layout when startup has been
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4312 // completed. Otherwise the frame sizes may be wrong.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4313 if ((p_ch != old_value
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4314 || tabline_height() + topframe->fr_height != Rows - p_ch)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4315 && full_screen
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4316 #ifdef FEAT_GUI
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4317 && !gui.starting
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4318 #endif
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4319 )
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4320 command_height();
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4321
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4322 return errmsg;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4323 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4324
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4325 /*
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4326 * Process the new 'updatecount' option value.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4327 */
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4328 static char *
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4329 did_set_updatecount(long old_value, char *errmsg)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4330 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
4331 // when 'updatecount' changes from zero to non-zero, open swap files
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4332 if (p_uc < 0)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4333 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4334 errmsg = e_argument_must_be_positive;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4335 p_uc = 100;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4336 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4337 if (p_uc && !old_value)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4338 ml_open_files();
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4339
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4340 return errmsg;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4341 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4342
2250
1bac28a53fae Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents: 2248
diff changeset
4343 #ifdef FEAT_CONCEAL
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4344 /*
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4345 * Process the new 'conceallevel' option value.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4346 */
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4347 static char *
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4348 did_set_conceallevel(char *errmsg)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4349 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4350 if (curwin->w_p_cole < 0)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4351 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4352 errmsg = e_argument_must_be_positive;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4353 curwin->w_p_cole = 0;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4354 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4355 else if (curwin->w_p_cole > 3)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4356 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4357 errmsg = e_invalid_argument;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4358 curwin->w_p_cole = 3;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4359 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4360
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4361 return errmsg;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4362 }
14
946da5994c01 updated for version 7.0006
vimboss
parents: 13
diff changeset
4363 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4364
10722
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10708
diff changeset
4365 #if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3)
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4366 /*
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4367 * Process the new 'pyxversion' option value.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4368 */
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4369 static char *
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4370 did_set_pyxversion(char *errmsg)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4371 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4372 if (p_pyx != 0 && p_pyx != 2 && p_pyx != 3)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4373 errmsg = e_invalid_argument;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4374
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4375 return errmsg;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4376 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4377 #endif
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4378
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4379 /*
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4380 * Process the new global 'undolevels' option value.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4381 */
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4382 static void
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4383 did_set_global_undolevels(long value, long old_value)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4384 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
4385 // sync undo before 'undolevels' changes
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4386
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4387 // use the old value, otherwise u_sync() may not work properly
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4388 p_ul = old_value;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4389 u_sync(TRUE);
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4390 p_ul = value;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4391 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4392
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4393 /*
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4394 * Process the new buffer local 'undolevels' option value.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4395 */
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4396 static void
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4397 did_set_buflocal_undolevels(long value, long old_value)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4398 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4399 // use the old value, otherwise u_sync() may not work properly
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4400 curbuf->b_p_ul = old_value;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4401 u_sync(TRUE);
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4402 curbuf->b_p_ul = value;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4403 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4404
13
24d5189d3956 updated for version 7.0005
vimboss
parents: 12
diff changeset
4405 #ifdef FEAT_LINEBREAK
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4406 /*
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4407 * Process the new 'numberwidth' option value.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4408 */
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4409 static char *
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4410 did_set_numberwidth(char *errmsg)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4411 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
4412 // 'numberwidth' must be positive
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4413 if (curwin->w_p_nuw < 1)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4414 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4415 errmsg = e_argument_must_be_positive;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4416 curwin->w_p_nuw = 1;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4417 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4418 if (curwin->w_p_nuw > 20)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4419 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4420 errmsg = e_invalid_argument;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4421 curwin->w_p_nuw = 20;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4422 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4423 curwin->w_nrwidth_line_count = 0; // trigger a redraw
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4424
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4425 return errmsg;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4426 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4427 #endif
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4428
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4429 /*
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4430 * Process the new 'textwidth' option value.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4431 */
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4432 static char *
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4433 did_set_textwidth(char *errmsg)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4434 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4435 if (curbuf->b_p_tw < 0)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4436 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4437 errmsg = e_argument_must_be_positive;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4438 curbuf->b_p_tw = 0;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4439 }
2314
233eb4412f5d Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
4440 #ifdef FEAT_SYN_HL
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4441 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4442 win_T *wp;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4443 tabpage_T *tp;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4444
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4445 FOR_ALL_TAB_WINDOWS(tp, wp)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4446 check_colorcolumn(wp);
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4447 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4448 #endif
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4449
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4450 return errmsg;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4451 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4452
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4453 /*
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4454 * When some number options are changed, need to take some action.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4455 */
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4456 static char *
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4457 did_set_num_option(long *pp, long value, long old_value, char *errmsg)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4458 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4459 if (pp == &p_wh // 'winheight'
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4460 || pp == &p_hh) // 'helpheight'
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4461 errmsg = did_set_winheight_helpheight(pp, errmsg);
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4462 else if (pp == &p_wmh) // 'winminheight'
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4463 errmsg = did_set_winminheight(errmsg);
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4464 else if (pp == &p_wiw) // 'winwidth'
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4465 errmsg = did_set_winwidth(errmsg);
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4466 else if (pp == &p_wmw) // 'winminwidth'
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4467 errmsg = did_set_winminwidth(errmsg);
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4468 else if (pp == &p_ls)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4469 did_set_laststatus(); // 'laststatus'
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4470 else if (pp == &p_stal)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4471 did_set_showtabline(); // 'showtabline'
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4472 #ifdef FEAT_GUI
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4473 else if (pp == &p_linespace) // 'linespace'
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4474 did_set_linespace();
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4475 #endif
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4476 #ifdef FEAT_FOLDING
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4477 else if (pp == &curwin->w_p_fdl) // 'foldlevel'
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4478 did_set_foldlevel();
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4479 else if (pp == &curwin->w_p_fml) // 'foldminlines'
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4480 did_set_foldminlines();
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4481 else if (pp == &curwin->w_p_fdn) // 'foldnestmax'
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4482 did_set_foldnestmax();
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4483 else if (pp == &curwin->w_p_fdc) // 'foldcolumn'
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4484 errmsg = did_set_foldcolumn(errmsg);
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4485 #endif // FEAT_FOLDING
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4486 else if ( pp == &curbuf->b_p_sw // 'shiftwidth'
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4487 || pp == &curbuf->b_p_ts) // 'tabstop'
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4488 did_set_shiftwidth_tabstop(pp);
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4489 else if (pp == &p_mco) // 'maxcombine'
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4490 did_set_maxcombine();
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4491 else if (pp == &curbuf->b_p_iminsert) // 'iminsert'
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4492 errmsg = did_set_iminsert(errmsg);
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4493 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4494 else if (pp == &p_imst) // 'imstyle'
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4495 errmsg = did_set_imstyle(errmsg);
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4496 #endif
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4497 else if (pp == &p_window) // 'window'
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4498 did_set_window();
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4499 else if (pp == &curbuf->b_p_imsearch) // 'imsearch'
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4500 errmsg = did_set_imsearch(errmsg);
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4501 else if (pp == &p_titlelen) // 'titlelen'
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4502 errmsg = did_set_titlelen(old_value, errmsg);
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4503 else if (pp == &p_ch) // 'cmdheight'
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4504 errmsg = did_set_cmdheight(old_value, errmsg);
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4505 else if (pp == &p_uc) // 'updatecount'
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4506 errmsg = did_set_updatecount(old_value, errmsg);
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4507 #ifdef FEAT_CONCEAL
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4508 else if (pp == &curwin->w_p_cole) // 'conceallevel'
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4509 errmsg = did_set_conceallevel(errmsg);
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4510 #endif
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4511 #ifdef MZSCHEME_GUI_THREADS
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4512 else if (pp == &p_mzq) // 'mzquantum'
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4513 mzvim_reset_timer();
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4514 #endif
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4515 #if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4516 else if (pp == &p_pyx) // 'pyxversion'
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4517 errmsg = did_set_pyxversion(errmsg);
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4518 #endif
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4519 else if (pp == &p_ul) // global 'undolevels'
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4520 did_set_global_undolevels(value, old_value);
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4521 else if (pp == &curbuf->b_p_ul) // buffer local 'undolevels'
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4522 did_set_buflocal_undolevels(value, old_value);
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4523 #ifdef FEAT_LINEBREAK
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4524 else if (pp == &curwin->w_p_nuw) // 'numberwidth'
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4525 errmsg = did_set_numberwidth(errmsg);
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4526 #endif
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4527 else if (pp == &curbuf->b_p_tw) // 'textwidth'
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4528 errmsg = did_set_textwidth(errmsg);
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4529
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4530 return errmsg;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4531 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4532
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4533 /*
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4534 * Check the bounds of numeric options.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4535 */
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4536 static char *
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4537 check_num_option_bounds(
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4538 long *pp,
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4539 long old_value,
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4540 long old_Rows,
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4541 long old_Columns,
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4542 char *errbuf,
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4543 size_t errbuflen,
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4544 char *errmsg)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4545 {
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4546 if (Rows < min_rows() && full_screen)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4547 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4548 if (errbuf != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4549 {
27426
41e0dcf38521 patch 8.2.4241: some type casts are redundant
Bram Moolenaar <Bram@vim.org>
parents: 27303
diff changeset
4550 vim_snprintf(errbuf, errbuflen,
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4551 _(e_need_at_least_nr_lines), min_rows());
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4552 errmsg = errbuf;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4553 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4554 Rows = min_rows();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4555 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4556 if (Columns < MIN_COLUMNS && full_screen)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4557 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4558 if (errbuf != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4559 {
27426
41e0dcf38521 patch 8.2.4241: some type casts are redundant
Bram Moolenaar <Bram@vim.org>
parents: 27303
diff changeset
4560 vim_snprintf(errbuf, errbuflen,
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4561 _(e_need_at_least_nr_columns), MIN_COLUMNS);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4562 errmsg = errbuf;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4563 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4564 Columns = MIN_COLUMNS;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4565 }
5070
cf52d2a8c05c updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents: 5039
diff changeset
4566 limit_screen_size();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4567
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4568 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4569 * If the screen (shell) height has been changed, assume it is the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4570 * physical screenheight.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4571 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4572 if (old_Rows != Rows || old_Columns != Columns)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4573 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
4574 // Changing the screen size is not allowed while updating the screen.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4575 if (updating_screen)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4576 *pp = old_value;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4577 else if (full_screen
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4578 #ifdef FEAT_GUI
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4579 && !gui.starting
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4580 #endif
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4581 )
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4582 set_shellsize((int)Columns, (int)Rows, TRUE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4583 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4584 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
4585 // Postpone the resizing; check the size and cmdline position for
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
4586 // messages.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4587 check_shellsize();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4588 if (cmdline_row > Rows - p_ch && Rows > p_ch)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4589 cmdline_row = Rows - p_ch;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4590 }
857
b933657f7c9d updated for version 7.0g01
vimboss
parents: 842
diff changeset
4591 if (p_window >= Rows || !option_was_set((char_u *)"window"))
164
8b0ee9d57d7f updated for version 7.0050
vimboss
parents: 161
diff changeset
4592 p_window = Rows - 1;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4593 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4594
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4595 if (curbuf->b_p_ts <= 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4596 {
26877
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26865
diff changeset
4597 errmsg = e_argument_must_be_positive;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4598 curbuf->b_p_ts = 8;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4599 }
27434
c1702fd7e716 patch 8.2.4245: ":retab 0" may cause illegal memory access
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
4600 else if (curbuf->b_p_ts > TABSTOP_MAX)
c1702fd7e716 patch 8.2.4245: ":retab 0" may cause illegal memory access
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
4601 {
c1702fd7e716 patch 8.2.4245: ":retab 0" may cause illegal memory access
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
4602 errmsg = e_invalid_argument;
c1702fd7e716 patch 8.2.4245: ":retab 0" may cause illegal memory access
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
4603 curbuf->b_p_ts = 8;
c1702fd7e716 patch 8.2.4245: ":retab 0" may cause illegal memory access
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
4604 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4605 if (p_tm < 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4606 {
26877
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26865
diff changeset
4607 errmsg = e_argument_must_be_positive;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4608 p_tm = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4609 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4610 if ((curwin->w_p_scr <= 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4611 || (curwin->w_p_scr > curwin->w_height
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4612 && curwin->w_height > 0))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4613 && full_screen)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4614 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4615 if (pp == &(curwin->w_p_scr))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4616 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4617 if (curwin->w_p_scr != 0)
25320
1e6da8364a02 patch 8.2.3197: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 25176
diff changeset
4618 errmsg = e_invalid_scroll_size;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4619 win_comp_scroll(curwin);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4620 }
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
4621 // If 'scroll' became invalid because of a side effect silently adjust
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
4622 // it.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4623 else if (curwin->w_p_scr <= 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4624 curwin->w_p_scr = 1;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
4625 else // curwin->w_p_scr > curwin->w_height
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4626 curwin->w_p_scr = curwin->w_height;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4627 }
1726
1e25b58fbf7b updated for version 7.2-024
vimboss
parents: 1683
diff changeset
4628 if (p_hi < 0)
1e25b58fbf7b updated for version 7.2-024
vimboss
parents: 1683
diff changeset
4629 {
26877
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26865
diff changeset
4630 errmsg = e_argument_must_be_positive;
1726
1e25b58fbf7b updated for version 7.2-024
vimboss
parents: 1683
diff changeset
4631 p_hi = 0;
1e25b58fbf7b updated for version 7.2-024
vimboss
parents: 1683
diff changeset
4632 }
5991
a42ba1e50992 updated for version 7.4.336
Bram Moolenaar <bram@vim.org>
parents: 5883
diff changeset
4633 else if (p_hi > 10000)
a42ba1e50992 updated for version 7.4.336
Bram Moolenaar <bram@vim.org>
parents: 5883
diff changeset
4634 {
26865
bce848ec8b1b patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26802
diff changeset
4635 errmsg = e_invalid_argument;
5991
a42ba1e50992 updated for version 7.4.336
Bram Moolenaar <bram@vim.org>
parents: 5883
diff changeset
4636 p_hi = 10000;
a42ba1e50992 updated for version 7.4.336
Bram Moolenaar <bram@vim.org>
parents: 5883
diff changeset
4637 }
4444
ccecb03e5e8b updated for version 7.3.970
Bram Moolenaar <bram@vim.org>
parents: 4367
diff changeset
4638 if (p_re < 0 || p_re > 2)
ccecb03e5e8b updated for version 7.3.970
Bram Moolenaar <bram@vim.org>
parents: 4367
diff changeset
4639 {
26865
bce848ec8b1b patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26802
diff changeset
4640 errmsg = e_invalid_argument;
4444
ccecb03e5e8b updated for version 7.3.970
Bram Moolenaar <bram@vim.org>
parents: 4367
diff changeset
4641 p_re = 0;
ccecb03e5e8b updated for version 7.3.970
Bram Moolenaar <bram@vim.org>
parents: 4367
diff changeset
4642 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4643 if (p_report < 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4644 {
26877
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26865
diff changeset
4645 errmsg = e_argument_must_be_positive;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4646 p_report = 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4647 }
532
7052f11a3dc9 updated for version 7.0150
vimboss
parents: 523
diff changeset
4648 if ((p_sj < -100 || p_sj >= Rows) && full_screen)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4649 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
4650 if (Rows != old_Rows) // Rows changed, just adjust p_sj
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4651 p_sj = Rows / 2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4652 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4653 {
25320
1e6da8364a02 patch 8.2.3197: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 25176
diff changeset
4654 errmsg = e_invalid_scroll_size;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4655 p_sj = 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4656 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4657 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4658 if (p_so < 0 && full_screen)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4659 {
26877
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26865
diff changeset
4660 errmsg = e_argument_must_be_positive;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4661 p_so = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4662 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4663 if (p_siso < 0 && full_screen)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4664 {
26877
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26865
diff changeset
4665 errmsg = e_argument_must_be_positive;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4666 p_siso = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4667 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4668 if (p_cwh < 1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4669 {
26877
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26865
diff changeset
4670 errmsg = e_argument_must_be_positive;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4671 p_cwh = 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4672 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4673 if (p_ut < 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4674 {
26877
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26865
diff changeset
4675 errmsg = e_argument_must_be_positive;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4676 p_ut = 2000;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4677 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4678 if (p_ss < 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4679 {
26877
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26865
diff changeset
4680 errmsg = e_argument_must_be_positive;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4681 p_ss = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4682 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4683
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4684 return errmsg;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4685 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4686
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4687 /*
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4688 * Set the value of a number option, and take care of side effects.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4689 * Returns NULL for success, or an error message for an error.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4690 */
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4691 static char *
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4692 set_num_option(
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4693 int opt_idx, // index in options[] table
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4694 char_u *varp, // pointer to the option variable
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4695 long value, // new value
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4696 char *errbuf, // buffer for error messages
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4697 size_t errbuflen, // length of "errbuf"
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4698 int opt_flags) // OPT_LOCAL, OPT_GLOBAL,
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4699 // OPT_MODELINE, etc.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4700 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4701 char *errmsg = NULL;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4702 long old_value = *(long *)varp;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4703 #if defined(FEAT_EVAL)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4704 long old_global_value = 0; // only used when setting a local and
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4705 // global option
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4706 #endif
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4707 long old_Rows = Rows; // remember old Rows
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4708 long old_Columns = Columns; // remember old Columns
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4709 long *pp = (long *)varp;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4710
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4711 // Disallow changing some options from secure mode.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4712 if ((secure
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4713 #ifdef HAVE_SANDBOX
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4714 || sandbox != 0
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4715 #endif
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4716 ) && (options[opt_idx].flags & P_SECURE))
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4717 return e_not_allowed_here;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4718
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4719 #if defined(FEAT_EVAL)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4720 // Save the global value before changing anything. This is needed as for
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4721 // a global-only option setting the "local value" in fact sets the global
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4722 // value (since there is only one value).
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4723 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4724 old_global_value = *(long *)get_varp_scope(&(options[opt_idx]),
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4725 OPT_GLOBAL);
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4726 #endif
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4727
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4728 *pp = value;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4729 #ifdef FEAT_EVAL
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4730 // Remember where the option was set.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4731 set_option_sctx_idx(opt_idx, opt_flags, current_sctx);
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4732 #endif
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4733 #ifdef FEAT_GUI
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4734 need_mouse_correct = TRUE;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4735 #endif
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4736
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4737 if (curbuf->b_p_sw < 0)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4738 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4739 errmsg = e_argument_must_be_positive;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4740 #ifdef FEAT_VARTABS
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4741 // Use the first 'vartabstop' value, or 'tabstop' if vts isn't in use.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4742 curbuf->b_p_sw = tabstop_count(curbuf->b_p_vts_array) > 0
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4743 ? tabstop_first(curbuf->b_p_vts_array)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4744 : curbuf->b_p_ts;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4745 #else
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4746 curbuf->b_p_sw = curbuf->b_p_ts;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4747 #endif
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4748 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4749
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4750 /*
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4751 * Number options that need some action when changed
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4752 */
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4753 errmsg = did_set_num_option(pp, value, old_value, errmsg);
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4754
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4755 /*
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4756 * Check the bounds for numeric options here
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4757 */
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4758 errmsg = check_num_option_bounds(pp, old_value, old_Rows, old_Columns,
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4759 errbuf, errbuflen, errmsg);
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4760
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
4761 // May set global value for local option.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4762 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4763 *(long *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) = *pp;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4764
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4765 options[opt_idx].flags |= P_WAS_SET;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4766
13380
69517d67421f patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 13361
diff changeset
4767 #if defined(FEAT_EVAL)
19405
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
4768 apply_optionset_autocmd(opt_idx, opt_flags, old_value, old_global_value,
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
4769 value, errmsg);
6935
4db70c94226b patch 7.4.786
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
4770 #endif
4db70c94226b patch 7.4.786
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
4771
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
4772 comp_col(); // in case 'columns' or 'ls' changed
3443
21219ffc9790 updated for version 7.3.487
Bram Moolenaar <bram@vim.org>
parents: 3427
diff changeset
4773 if (curwin->w_curswant != MAXCOL
6669
5a12a6861367 updated for version 7.4.659
Bram Moolenaar <bram@vim.org>
parents: 6602
diff changeset
4774 && (options[opt_idx].flags & (P_CURSWANT | P_RALL)) != 0)
3443
21219ffc9790 updated for version 7.3.487
Bram Moolenaar <bram@vim.org>
parents: 3427
diff changeset
4775 curwin->w_set_curswant = TRUE;
24079
a9ff8368d35f patch 8.2.2581: Vim9: sourcing Vim9 script triggers a redraw
Bram Moolenaar <Bram@vim.org>
parents: 23952
diff changeset
4776 if ((opt_flags & OPT_NO_REDRAW) == 0)
a9ff8368d35f patch 8.2.2581: Vim9: sourcing Vim9 script triggers a redraw
Bram Moolenaar <Bram@vim.org>
parents: 23952
diff changeset
4777 check_redraw(options[opt_idx].flags);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4778
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4779 return errmsg;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4780 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4781
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4782 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4783 * Called after an option changed: check if something needs to be redrawn.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4784 */
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
4785 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
4786 check_redraw(long_u flags)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4787 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
4788 // Careful: P_RCLR and P_RALL are a combination of other P_ flags
3263
320cc46d0eb0 updated for version 7.3.400
Bram Moolenaar <bram@vim.org>
parents: 3246
diff changeset
4789 int doclear = (flags & P_RCLR) == P_RCLR;
320cc46d0eb0 updated for version 7.3.400
Bram Moolenaar <bram@vim.org>
parents: 3246
diff changeset
4790 int all = ((flags & P_RALL) == P_RALL || doclear);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4791
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
4792 if ((flags & P_RSTAT) || all) // mark all status lines dirty
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4793 status_redraw_all();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4794
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4795 if ((flags & P_RBUF) || (flags & P_RWIN) || all)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4796 changed_window_setting();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4797 if (flags & P_RBUF)
29732
89e1d67814a9 patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4798 redraw_curbuf_later(UPD_NOT_VALID);
10456
536a7d49249c commit https://github.com/vim/vim/commit/a2477fd3490c1166522631eee53c57d34321086a
Christian Brabandt <cb@256bit.org>
parents: 10424
diff changeset
4799 if (flags & P_RWINONLY)
29732
89e1d67814a9 patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4800 redraw_later(UPD_NOT_VALID);
3263
320cc46d0eb0 updated for version 7.3.400
Bram Moolenaar <bram@vim.org>
parents: 3246
diff changeset
4801 if (doclear)
29732
89e1d67814a9 patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4802 redraw_all_later(UPD_CLEAR);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4803 else if (all)
29732
89e1d67814a9 patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4804 redraw_all_later(UPD_NOT_VALID);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4805 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4806
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4807 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4808 * Find index for option 'arg'.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4809 * Return -1 if not found.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4810 */
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
4811 int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
4812 findoption(char_u *arg)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4813 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4814 int opt_idx;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4815 char *s, *p;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
4816 static short quick_tab[27] = {0, 0}; // quick access table
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4817 int is_term_opt;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4818
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4819 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4820 * For first call: Initialize the quick-access table.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4821 * It contains the index for the first option that starts with a certain
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4822 * letter. There are 26 letters, plus the first "t_" option.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4823 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4824 if (quick_tab[1] == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4825 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4826 p = options[0].fullname;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4827 for (opt_idx = 1; (s = options[opt_idx].fullname) != NULL; opt_idx++)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4828 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4829 if (s[0] != p[0])
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4830 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4831 if (s[0] == 't' && s[1] == '_')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4832 quick_tab[26] = opt_idx;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4833 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4834 quick_tab[CharOrdLow(s[0])] = opt_idx;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4835 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4836 p = s;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4837 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4838 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4839
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4840 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4841 * Check for name starting with an illegal character.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4842 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4843 if (arg[0] < 'a' || arg[0] > 'z')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4844 return -1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4845
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4846 is_term_opt = (arg[0] == 't' && arg[1] == '_');
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4847 if (is_term_opt)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4848 opt_idx = quick_tab[26];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4849 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4850 opt_idx = quick_tab[CharOrdLow(arg[0])];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4851 for ( ; (s = options[opt_idx].fullname) != NULL; opt_idx++)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4852 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
4853 if (STRCMP(arg, s) == 0) // match full name
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4854 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4855 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4856 if (s == NULL && !is_term_opt)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4857 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4858 opt_idx = quick_tab[CharOrdLow(arg[0])];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4859 for ( ; options[opt_idx].fullname != NULL; opt_idx++)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4860 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4861 s = options[opt_idx].shortname;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
4862 if (s != NULL && STRCMP(arg, s) == 0) // match short name
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4863 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4864 s = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4865 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4866 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4867 if (s == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4868 opt_idx = -1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4869 return opt_idx;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4870 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4871
31174
1d00fa720007 patch 9.0.0921: missing defined(PROTO) in #ifdef
Bram Moolenaar <Bram@vim.org>
parents: 31000
diff changeset
4872 #if defined(FEAT_EVAL) || defined(FEAT_TCL) || defined(FEAT_MZSCHEME) \
1d00fa720007 patch 9.0.0921: missing defined(PROTO) in #ifdef
Bram Moolenaar <Bram@vim.org>
parents: 31000
diff changeset
4873 || defined(FEAT_SPELL) || defined(PROTO)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4874 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4875 * Get the value for an option.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4876 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4877 * Returns:
23422
bb0c53f4ef8b patch 8.2.2254: Vim9: bool option type is number
Bram Moolenaar <Bram@vim.org>
parents: 23272
diff changeset
4878 * Number option: gov_number, *numval gets value.
23467
826a6406ea7b patch 8.2.2276: list of distributed files is outdated
Bram Moolenaar <Bram@vim.org>
parents: 23422
diff changeset
4879 * Toggle option: gov_bool, *numval gets value.
23422
bb0c53f4ef8b patch 8.2.2254: Vim9: bool option type is number
Bram Moolenaar <Bram@vim.org>
parents: 23272
diff changeset
4880 * String option: gov_string, *stringval gets allocated string.
bb0c53f4ef8b patch 8.2.2254: Vim9: bool option type is number
Bram Moolenaar <Bram@vim.org>
parents: 23272
diff changeset
4881 * Hidden Number option: gov_hidden_number.
bb0c53f4ef8b patch 8.2.2254: Vim9: bool option type is number
Bram Moolenaar <Bram@vim.org>
parents: 23272
diff changeset
4882 * Hidden Toggle option: gov_hidden_bool.
bb0c53f4ef8b patch 8.2.2254: Vim9: bool option type is number
Bram Moolenaar <Bram@vim.org>
parents: 23272
diff changeset
4883 * Hidden String option: gov_hidden_string.
bb0c53f4ef8b patch 8.2.2254: Vim9: bool option type is number
Bram Moolenaar <Bram@vim.org>
parents: 23272
diff changeset
4884 * Unknown option: gov_unknown.
26441
65ab0b035dd8 patch 8.2.3751: cannot assign a lambda to an option that takes a function
Bram Moolenaar <Bram@vim.org>
parents: 26400
diff changeset
4885 *
65ab0b035dd8 patch 8.2.3751: cannot assign a lambda to an option that takes a function
Bram Moolenaar <Bram@vim.org>
parents: 26400
diff changeset
4886 * "flagsp" (if not NULL) is set to the option flags (P_xxxx).
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4887 */
23422
bb0c53f4ef8b patch 8.2.2254: Vim9: bool option type is number
Bram Moolenaar <Bram@vim.org>
parents: 23272
diff changeset
4888 getoption_T
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
4889 get_option_value(
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
4890 char_u *name,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
4891 long *numval,
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
4892 char_u **stringval, // NULL when only checking existence
26441
65ab0b035dd8 patch 8.2.3751: cannot assign a lambda to an option that takes a function
Bram Moolenaar <Bram@vim.org>
parents: 26400
diff changeset
4893 int *flagsp,
65ab0b035dd8 patch 8.2.3751: cannot assign a lambda to an option that takes a function
Bram Moolenaar <Bram@vim.org>
parents: 26400
diff changeset
4894 int scope)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4895 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4896 int opt_idx;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4897 char_u *varp;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4898
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4899 opt_idx = findoption(name);
23422
bb0c53f4ef8b patch 8.2.2254: Vim9: bool option type is number
Bram Moolenaar <Bram@vim.org>
parents: 23272
diff changeset
4900 if (opt_idx < 0) // option not in the table
10825
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
4901 {
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
4902 int key;
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
4903
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
4904 if (STRLEN(name) == 4 && name[0] == 't' && name[1] == '_'
23422
bb0c53f4ef8b patch 8.2.2254: Vim9: bool option type is number
Bram Moolenaar <Bram@vim.org>
parents: 23272
diff changeset
4905 && (key = find_key_option(name, FALSE)) != 0)
10825
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
4906 {
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
4907 char_u key_name[2];
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
4908 char_u *p;
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
4909
26802
f6b10a501a0e patch 8.2.3929: using unititialized variable
Bram Moolenaar <Bram@vim.org>
parents: 26771
diff changeset
4910 if (flagsp != NULL)
f6b10a501a0e patch 8.2.3929: using unititialized variable
Bram Moolenaar <Bram@vim.org>
parents: 26771
diff changeset
4911 *flagsp = 0; // terminal option has no flags
f6b10a501a0e patch 8.2.3929: using unititialized variable
Bram Moolenaar <Bram@vim.org>
parents: 26771
diff changeset
4912
23422
bb0c53f4ef8b patch 8.2.2254: Vim9: bool option type is number
Bram Moolenaar <Bram@vim.org>
parents: 23272
diff changeset
4913 // check for a terminal option
10825
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
4914 if (key < 0)
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
4915 {
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
4916 key_name[0] = KEY2TERMCAP0(key);
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
4917 key_name[1] = KEY2TERMCAP1(key);
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
4918 }
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
4919 else
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
4920 {
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
4921 key_name[0] = KS_KEY;
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
4922 key_name[1] = (key & 0xff);
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
4923 }
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
4924 p = find_termcode(key_name);
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
4925 if (p != NULL)
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
4926 {
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
4927 if (stringval != NULL)
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
4928 *stringval = vim_strsave(p);
23422
bb0c53f4ef8b patch 8.2.2254: Vim9: bool option type is number
Bram Moolenaar <Bram@vim.org>
parents: 23272
diff changeset
4929 return gov_string;
10825
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
4930 }
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
4931 }
23422
bb0c53f4ef8b patch 8.2.2254: Vim9: bool option type is number
Bram Moolenaar <Bram@vim.org>
parents: 23272
diff changeset
4932 return gov_unknown;
10825
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
4933 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4934
26441
65ab0b035dd8 patch 8.2.3751: cannot assign a lambda to an option that takes a function
Bram Moolenaar <Bram@vim.org>
parents: 26400
diff changeset
4935 varp = get_varp_scope(&(options[opt_idx]), scope);
65ab0b035dd8 patch 8.2.3751: cannot assign a lambda to an option that takes a function
Bram Moolenaar <Bram@vim.org>
parents: 26400
diff changeset
4936
65ab0b035dd8 patch 8.2.3751: cannot assign a lambda to an option that takes a function
Bram Moolenaar <Bram@vim.org>
parents: 26400
diff changeset
4937 if (flagsp != NULL)
65ab0b035dd8 patch 8.2.3751: cannot assign a lambda to an option that takes a function
Bram Moolenaar <Bram@vim.org>
parents: 26400
diff changeset
4938 // Return the P_xxxx option flags.
65ab0b035dd8 patch 8.2.3751: cannot assign a lambda to an option that takes a function
Bram Moolenaar <Bram@vim.org>
parents: 26400
diff changeset
4939 *flagsp = options[opt_idx].flags;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4940
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4941 if (options[opt_idx].flags & P_STRING)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4942 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
4943 if (varp == NULL) // hidden option
23422
bb0c53f4ef8b patch 8.2.2254: Vim9: bool option type is number
Bram Moolenaar <Bram@vim.org>
parents: 23272
diff changeset
4944 return gov_hidden_string;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4945 if (stringval != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4946 {
28804
12bbd8a31cac patch 8.2.4926: #ifdef for crypt feature around too many lines
Bram Moolenaar <Bram@vim.org>
parents: 28800
diff changeset
4947 if ((char_u **)varp == &p_pt) // 'pastetoggle'
30226
b6b803ed4a53 patch 9.0.0449: there is no easy way to translate a key code into a string
Bram Moolenaar <Bram@vim.org>
parents: 30005
diff changeset
4948 *stringval = str2special_save(*(char_u **)(varp), FALSE,
b6b803ed4a53 patch 9.0.0449: there is no easy way to translate a key code into a string
Bram Moolenaar <Bram@vim.org>
parents: 30005
diff changeset
4949 FALSE);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4950 #ifdef FEAT_CRYPT
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
4951 // never return the value of the crypt key
28804
12bbd8a31cac patch 8.2.4926: #ifdef for crypt feature around too many lines
Bram Moolenaar <Bram@vim.org>
parents: 28800
diff changeset
4952 else if ((char_u **)varp == &curbuf->b_p_key
1622
149d8b46404c updated for version 7.2a
vimboss
parents: 1601
diff changeset
4953 && **(char_u **)(varp) != NUL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4954 *stringval = vim_strsave((char_u *)"*****");
28804
12bbd8a31cac patch 8.2.4926: #ifdef for crypt feature around too many lines
Bram Moolenaar <Bram@vim.org>
parents: 28800
diff changeset
4955 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4956 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4957 *stringval = vim_strsave(*(char_u **)(varp));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4958 }
23422
bb0c53f4ef8b patch 8.2.2254: Vim9: bool option type is number
Bram Moolenaar <Bram@vim.org>
parents: 23272
diff changeset
4959 return gov_string;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4960 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4961
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
4962 if (varp == NULL) // hidden option
23422
bb0c53f4ef8b patch 8.2.2254: Vim9: bool option type is number
Bram Moolenaar <Bram@vim.org>
parents: 23272
diff changeset
4963 return (options[opt_idx].flags & P_NUM)
bb0c53f4ef8b patch 8.2.2254: Vim9: bool option type is number
Bram Moolenaar <Bram@vim.org>
parents: 23272
diff changeset
4964 ? gov_hidden_number : gov_hidden_bool;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4965 if (options[opt_idx].flags & P_NUM)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4966 *numval = *(long *)varp;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4967 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4968 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
4969 // Special case: 'modified' is b_changed, but we also want to consider
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
4970 // it set when 'ff' or 'fenc' changed.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4971 if ((int *)varp == &curbuf->b_changed)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4972 *numval = curbufIsChanged();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4973 else
9395
beab399e3883 commit https://github.com/vim/vim/commit/2acfbed9dbea990f129535de7ff3df360365130b
Christian Brabandt <cb@256bit.org>
parents: 9389
diff changeset
4974 *numval = (long) *(int *)varp;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4975 }
23422
bb0c53f4ef8b patch 8.2.2254: Vim9: bool option type is number
Bram Moolenaar <Bram@vim.org>
parents: 23272
diff changeset
4976 return (options[opt_idx].flags & P_NUM) ? gov_number : gov_bool;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4977 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4978 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4979
5610
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
4980 #if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) || defined(PROTO)
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4981 /*
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4982 * Returns the option attributes and its value. Unlike the above function it
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4983 * will return either global value or local value of the option depending on
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4984 * what was requested, but it will never return global value if it was
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4985 * requested to return local one and vice versa. Neither it will return
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4986 * buffer-local value if it was requested to return window-local one.
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4987 *
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4988 * Pretends that option is absent if it is not present in the requested scope
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4989 * (i.e. has no global, window-local or buffer-local value depending on
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4990 * opt_type). Uses
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4991 *
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4992 * Returned flags:
5867
a6b59ee633a3 updated for version 7.4.276
Bram Moolenaar <bram@vim.org>
parents: 5735
diff changeset
4993 * 0 hidden or unknown option, also option that does not have requested
a6b59ee633a3 updated for version 7.4.276
Bram Moolenaar <bram@vim.org>
parents: 5735
diff changeset
4994 * type (see SREQ_* in vim.h)
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4995 * see SOPT_* in vim.h for other flags
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4996 *
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4997 * Possible opt_type values: see SREQ_* in vim.h
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4998 */
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4999 int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5000 get_option_value_strict(
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5001 char_u *name,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5002 long *numval,
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5003 char_u **stringval, // NULL when only obtaining attributes
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5004 int opt_type,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5005 void *from)
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5006 {
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5007 int opt_idx;
4367
b7f2d97ae2b7 updated for version 7.3.932
Bram Moolenaar <bram@vim.org>
parents: 4361
diff changeset
5008 char_u *varp = NULL;
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5009 struct vimoption *p;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5010 int r = 0;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5011
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5012 opt_idx = findoption(name);
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5013 if (opt_idx < 0)
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5014 return 0;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5015
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5016 p = &(options[opt_idx]);
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5017
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5018 // Hidden option
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5019 if (p->var == NULL)
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5020 return 0;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5021
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5022 if (p->flags & P_BOOL)
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5023 r |= SOPT_BOOL;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5024 else if (p->flags & P_NUM)
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5025 r |= SOPT_NUM;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5026 else if (p->flags & P_STRING)
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5027 r |= SOPT_STRING;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5028
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5029 if (p->indir == PV_NONE)
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5030 {
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5031 if (opt_type == SREQ_GLOBAL)
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5032 r |= SOPT_GLOBAL;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5033 else
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5034 return 0; // Did not request global-only option
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5035 }
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5036 else
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5037 {
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5038 if (p->indir & PV_BOTH)
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5039 r |= SOPT_GLOBAL;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5040 else if (opt_type == SREQ_GLOBAL)
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5041 return 0; // Requested global option
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5042
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5043 if (p->indir & PV_WIN)
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5044 {
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5045 if (opt_type == SREQ_BUF)
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5046 return 0; // Did not request window-local option
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5047 else
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5048 r |= SOPT_WIN;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5049 }
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5050 else if (p->indir & PV_BUF)
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5051 {
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5052 if (opt_type == SREQ_WIN)
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5053 return 0; // Did not request buffer-local option
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5054 else
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5055 r |= SOPT_BUF;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5056 }
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5057 }
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5058
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5059 if (stringval == NULL)
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5060 return r;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5061
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5062 if (opt_type == SREQ_GLOBAL)
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5063 varp = p->var;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5064 else
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5065 {
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5066 if (opt_type == SREQ_BUF)
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5067 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5068 // Special case: 'modified' is b_changed, but we also want to
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5069 // consider it set when 'ff' or 'fenc' changed.
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5070 if (p->indir == PV_MOD)
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5071 {
14179
ab64a4fb5edd patch 8.1.0107: Python: getting buffer option clears message
Christian Brabandt <cb@256bit.org>
parents: 14175
diff changeset
5072 *numval = bufIsChanged((buf_T *)from);
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5073 varp = NULL;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5074 }
31174
1d00fa720007 patch 9.0.0921: missing defined(PROTO) in #ifdef
Bram Moolenaar <Bram@vim.org>
parents: 31000
diff changeset
5075 # ifdef FEAT_CRYPT
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5076 else if (p->indir == PV_KEY)
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5077 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5078 // never return the value of the crypt key
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5079 *stringval = NULL;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5080 varp = NULL;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5081 }
31174
1d00fa720007 patch 9.0.0921: missing defined(PROTO) in #ifdef
Bram Moolenaar <Bram@vim.org>
parents: 31000
diff changeset
5082 # endif
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5083 else
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5084 {
14179
ab64a4fb5edd patch 8.1.0107: Python: getting buffer option clears message
Christian Brabandt <cb@256bit.org>
parents: 14175
diff changeset
5085 buf_T *save_curbuf = curbuf;
ab64a4fb5edd patch 8.1.0107: Python: getting buffer option clears message
Christian Brabandt <cb@256bit.org>
parents: 14175
diff changeset
5086
ab64a4fb5edd patch 8.1.0107: Python: getting buffer option clears message
Christian Brabandt <cb@256bit.org>
parents: 14175
diff changeset
5087 // only getting a pointer, no need to use aucmd_prepbuf()
ab64a4fb5edd patch 8.1.0107: Python: getting buffer option clears message
Christian Brabandt <cb@256bit.org>
parents: 14175
diff changeset
5088 curbuf = (buf_T *)from;
ab64a4fb5edd patch 8.1.0107: Python: getting buffer option clears message
Christian Brabandt <cb@256bit.org>
parents: 14175
diff changeset
5089 curwin->w_buffer = curbuf;
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5090 varp = get_varp(p);
14179
ab64a4fb5edd patch 8.1.0107: Python: getting buffer option clears message
Christian Brabandt <cb@256bit.org>
parents: 14175
diff changeset
5091 curbuf = save_curbuf;
ab64a4fb5edd patch 8.1.0107: Python: getting buffer option clears message
Christian Brabandt <cb@256bit.org>
parents: 14175
diff changeset
5092 curwin->w_buffer = curbuf;
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5093 }
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5094 }
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5095 else if (opt_type == SREQ_WIN)
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5096 {
14179
ab64a4fb5edd patch 8.1.0107: Python: getting buffer option clears message
Christian Brabandt <cb@256bit.org>
parents: 14175
diff changeset
5097 win_T *save_curwin = curwin;
ab64a4fb5edd patch 8.1.0107: Python: getting buffer option clears message
Christian Brabandt <cb@256bit.org>
parents: 14175
diff changeset
5098
ab64a4fb5edd patch 8.1.0107: Python: getting buffer option clears message
Christian Brabandt <cb@256bit.org>
parents: 14175
diff changeset
5099 curwin = (win_T *)from;
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5100 curbuf = curwin->w_buffer;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5101 varp = get_varp(p);
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5102 curwin = save_curwin;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5103 curbuf = curwin->w_buffer;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5104 }
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5105 if (varp == p->var)
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5106 return (r | SOPT_UNSET);
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5107 }
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5108
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5109 if (varp != NULL)
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5110 {
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5111 if (p->flags & P_STRING)
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5112 *stringval = vim_strsave(*(char_u **)(varp));
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5113 else if (p->flags & P_NUM)
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5114 *numval = *(long *) varp;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5115 else
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5116 *numval = *(int *)varp;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5117 }
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5118
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5119 return r;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5120 }
5610
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5121
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5122 /*
6243
54194bd6ed60 updated for version 7.4.456
Bram Moolenaar <bram@vim.org>
parents: 6205
diff changeset
5123 * Iterate over options. First argument is a pointer to a pointer to a
54194bd6ed60 updated for version 7.4.456
Bram Moolenaar <bram@vim.org>
parents: 6205
diff changeset
5124 * structure inside options[] array, second is option type like in the above
54194bd6ed60 updated for version 7.4.456
Bram Moolenaar <bram@vim.org>
parents: 6205
diff changeset
5125 * function.
5610
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5126 *
6243
54194bd6ed60 updated for version 7.4.456
Bram Moolenaar <bram@vim.org>
parents: 6205
diff changeset
5127 * If first argument points to NULL it is assumed that iteration just started
5610
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5128 * and caller needs the very first value.
6243
54194bd6ed60 updated for version 7.4.456
Bram Moolenaar <bram@vim.org>
parents: 6205
diff changeset
5129 * If first argument points to the end marker function returns NULL and sets
5610
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5130 * first argument to NULL.
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5131 *
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5132 * Returns full option name for current option on each call.
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5133 */
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5134 char_u *
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5135 option_iter_next(void **option, int opt_type)
5610
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5136 {
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5137 struct vimoption *ret = NULL;
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5138 do
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5139 {
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5140 if (*option == NULL)
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5141 *option = (void *) options;
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5142 else if (((struct vimoption *) (*option))->fullname == NULL)
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5143 {
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5144 *option = NULL;
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5145 return NULL;
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5146 }
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5147 else
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5148 *option = (void *) (((struct vimoption *) (*option)) + 1);
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5149
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5150 ret = ((struct vimoption *) (*option));
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5151
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5152 // Hidden option
5610
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5153 if (ret->var == NULL)
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5154 {
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5155 ret = NULL;
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5156 continue;
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5157 }
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5158
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5159 switch (opt_type)
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5160 {
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5161 case SREQ_GLOBAL:
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5162 if (!(ret->indir == PV_NONE || ret->indir & PV_BOTH))
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5163 ret = NULL;
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5164 break;
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5165 case SREQ_BUF:
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5166 if (!(ret->indir & PV_BUF))
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5167 ret = NULL;
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5168 break;
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5169 case SREQ_WIN:
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5170 if (!(ret->indir & PV_WIN))
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5171 ret = NULL;
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5172 break;
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5173 default:
10359
66f1b5bf3fa6 commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents: 10357
diff changeset
5174 internal_error("option_iter_next()");
5610
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5175 return NULL;
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5176 }
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5177 }
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5178 while (ret == NULL);
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5179
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5180 return (char_u *)ret->fullname;
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5181 }
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5182 #endif
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5183
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5184 /*
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5185 * Return the flags for the option at 'opt_idx'.
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5186 */
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5187 long_u
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5188 get_option_flags(int opt_idx)
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5189 {
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5190 return options[opt_idx].flags;
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5191 }
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5192
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5193 /*
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5194 * Set a flag for the option at 'opt_idx'.
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5195 */
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5196 void
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5197 set_option_flag(int opt_idx, long_u flag)
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5198 {
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5199 options[opt_idx].flags |= flag;
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5200 }
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5201
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5202 /*
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5203 * Clear a flag for the option at 'opt_idx'.
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5204 */
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5205 void
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5206 clear_option_flag(int opt_idx, long_u flag)
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5207 {
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5208 options[opt_idx].flags &= ~flag;
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5209 }
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5210
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5211 /*
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5212 * Returns TRUE if the option at 'opt_idx' is a global option
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5213 */
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5214 int
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5215 is_global_option(int opt_idx)
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5216 {
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5217 return options[opt_idx].indir == PV_NONE;
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5218 }
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5219
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5220 /*
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5221 * Returns TRUE if the option at 'opt_idx' is a global option which also has a
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5222 * local value.
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5223 */
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5224 int
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5225 is_global_local_option(int opt_idx)
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5226 {
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5227 return options[opt_idx].indir & PV_BOTH;
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5228 }
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5229
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5230 /*
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5231 * Returns TRUE if the option at 'opt_idx' is a window-local option
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5232 */
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5233 int
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5234 is_window_local_option(int opt_idx)
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5235 {
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5236 return options[opt_idx].var == VAR_WIN;
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5237 }
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5238
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5239 /*
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5240 * Returns TRUE if the option at 'opt_idx' is a hidden option
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5241 */
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5242 int
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5243 is_hidden_option(int opt_idx)
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5244 {
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5245 return options[opt_idx].var == NULL;
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5246 }
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5247
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5248 #if defined(FEAT_CRYPT) || defined(PROTO)
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5249 /*
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5250 * Returns TRUE if the option at 'opt_idx' is a crypt key option
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5251 */
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5252 int
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5253 is_crypt_key_option(int opt_idx)
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5254 {
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5255 return options[opt_idx].indir == PV_KEY;
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5256 }
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5257 #endif
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5258
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5259 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5260 * Set the value of option "name".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5261 * Use "string" for string options, use "number" for other options.
4513
cadb57fbb781 updated for version 7.3.1004
Bram Moolenaar <bram@vim.org>
parents: 4444
diff changeset
5262 *
28457
4dcccb2673fe patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents: 28405
diff changeset
5263 * Returns NULL on success or an untranslated error message on error.
4513
cadb57fbb781 updated for version 7.3.1004
Bram Moolenaar <bram@vim.org>
parents: 4444
diff changeset
5264 */
15470
55ccc2d353bd patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents: 15207
diff changeset
5265 char *
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5266 set_option_value(
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5267 char_u *name,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5268 long number,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5269 char_u *string,
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5270 int opt_flags) // OPT_LOCAL or 0 (both)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5271 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5272 int opt_idx;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5273 char_u *varp;
835
8bebcabccc2c updated for version 7.0e01
vimboss
parents: 828
diff changeset
5274 long_u flags;
31950
b0717fcca5eb patch 9.0.1307: setting 'formatoptions' with :let doesn't check for errors
Bram Moolenaar <Bram@vim.org>
parents: 31926
diff changeset
5275 static char errbuf[80];
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5276
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5277 opt_idx = findoption(name);
838
8e5830943bff updated for version 7.0e04
vimboss
parents: 836
diff changeset
5278 if (opt_idx < 0)
10825
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
5279 {
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
5280 int key;
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
5281
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
5282 if (STRLEN(name) == 4 && name[0] == 't' && name[1] == '_'
14381
d9e6eec551e1 patch 8.1.0205: invalid memory access with invalid modeline
Christian Brabandt <cb@256bit.org>
parents: 14313
diff changeset
5283 && (key = find_key_option(name, FALSE)) != 0)
10825
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
5284 {
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
5285 char_u key_name[2];
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
5286
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
5287 if (key < 0)
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
5288 {
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
5289 key_name[0] = KEY2TERMCAP0(key);
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
5290 key_name[1] = KEY2TERMCAP1(key);
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
5291 }
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
5292 else
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
5293 {
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
5294 key_name[0] = KS_KEY;
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
5295 key_name[1] = (key & 0xff);
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
5296 }
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
5297 add_termcode(key_name, string, FALSE);
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
5298 if (full_screen)
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
5299 ttest(FALSE);
29732
89e1d67814a9 patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
5300 redraw_all_later(UPD_CLEAR);
10825
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
5301 return NULL;
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
5302 }
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
5303
26913
d4e61d61afd9 patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26883
diff changeset
5304 semsg(_(e_unknown_option_str_2), name);
10825
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
5305 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5306 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5307 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5308 flags = options[opt_idx].flags;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5309 #ifdef HAVE_SANDBOX
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5310 // Disallow changing some options in the sandbox
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5311 if (sandbox > 0 && (flags & P_SECURE))
634
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
5312 {
25320
1e6da8364a02 patch 8.2.3197: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 25176
diff changeset
5313 emsg(_(e_not_allowed_in_sandbox));
4513
cadb57fbb781 updated for version 7.3.1004
Bram Moolenaar <bram@vim.org>
parents: 4444
diff changeset
5314 return NULL;
634
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
5315 }
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
5316 #endif
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
5317 if (flags & P_STRING)
31950
b0717fcca5eb patch 9.0.1307: setting 'formatoptions' with :let doesn't check for errors
Bram Moolenaar <Bram@vim.org>
parents: 31926
diff changeset
5318 return set_string_option(opt_idx, string, opt_flags, errbuf);
28357
86b6432aa1d8 patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents: 28353
diff changeset
5319
86b6432aa1d8 patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents: 28353
diff changeset
5320 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
86b6432aa1d8 patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents: 28353
diff changeset
5321 if (varp != NULL) // hidden option is not changed
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5322 {
28357
86b6432aa1d8 patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents: 28353
diff changeset
5323 if (number == 0 && string != NULL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5324 {
28357
86b6432aa1d8 patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents: 28353
diff changeset
5325 int idx;
86b6432aa1d8 patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents: 28353
diff changeset
5326
86b6432aa1d8 patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents: 28353
diff changeset
5327 // Either we are given a string or we are setting option
86b6432aa1d8 patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents: 28353
diff changeset
5328 // to zero.
86b6432aa1d8 patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents: 28353
diff changeset
5329 for (idx = 0; string[idx] == '0'; ++idx)
86b6432aa1d8 patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents: 28353
diff changeset
5330 ;
86b6432aa1d8 patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents: 28353
diff changeset
5331 if (string[idx] != NUL || idx == 0)
1298
f4c7b5da017a updated for version 7.1-012
vimboss
parents: 1157
diff changeset
5332 {
28357
86b6432aa1d8 patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents: 28353
diff changeset
5333 // There's another character after zeros or the string
86b6432aa1d8 patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents: 28353
diff changeset
5334 // is empty. In both cases, we are trying to set a
86b6432aa1d8 patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents: 28353
diff changeset
5335 // num option using a string.
86b6432aa1d8 patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents: 28353
diff changeset
5336 semsg(_(e_number_required_after_str_equal_str),
86b6432aa1d8 patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents: 28353
diff changeset
5337 name, string);
86b6432aa1d8 patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents: 28353
diff changeset
5338 return NULL; // do nothing as we hit an error
86b6432aa1d8 patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents: 28353
diff changeset
5339
1298
f4c7b5da017a updated for version 7.1-012
vimboss
parents: 1157
diff changeset
5340 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5341 }
28357
86b6432aa1d8 patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents: 28353
diff changeset
5342 if (flags & P_NUM)
31950
b0717fcca5eb patch 9.0.1307: setting 'formatoptions' with :let doesn't check for errors
Bram Moolenaar <Bram@vim.org>
parents: 31926
diff changeset
5343 {
28357
86b6432aa1d8 patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents: 28353
diff changeset
5344 return set_num_option(opt_idx, varp, number,
31950
b0717fcca5eb patch 9.0.1307: setting 'formatoptions' with :let doesn't check for errors
Bram Moolenaar <Bram@vim.org>
parents: 31926
diff changeset
5345 errbuf, sizeof(errbuf), opt_flags);
b0717fcca5eb patch 9.0.1307: setting 'formatoptions' with :let doesn't check for errors
Bram Moolenaar <Bram@vim.org>
parents: 31926
diff changeset
5346 }
28357
86b6432aa1d8 patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents: 28353
diff changeset
5347 else
86b6432aa1d8 patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents: 28353
diff changeset
5348 return set_bool_option(opt_idx, varp, (int)number, opt_flags);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5349 }
28357
86b6432aa1d8 patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents: 28353
diff changeset
5350
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5351 }
4513
cadb57fbb781 updated for version 7.3.1004
Bram Moolenaar <bram@vim.org>
parents: 4444
diff changeset
5352 return NULL;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5353 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5354
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5355 /*
28457
4dcccb2673fe patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents: 28405
diff changeset
5356 * Call set_option_value() and when an error is returned report it.
4dcccb2673fe patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents: 28405
diff changeset
5357 */
4dcccb2673fe patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents: 28405
diff changeset
5358 void
4dcccb2673fe patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents: 28405
diff changeset
5359 set_option_value_give_err(
4dcccb2673fe patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents: 28405
diff changeset
5360 char_u *name,
4dcccb2673fe patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents: 28405
diff changeset
5361 long number,
4dcccb2673fe patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents: 28405
diff changeset
5362 char_u *string,
4dcccb2673fe patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents: 28405
diff changeset
5363 int opt_flags) // OPT_LOCAL or 0 (both)
4dcccb2673fe patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents: 28405
diff changeset
5364 {
4dcccb2673fe patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents: 28405
diff changeset
5365 char *errmsg = set_option_value(name, number, string, opt_flags);
4dcccb2673fe patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents: 28405
diff changeset
5366
4dcccb2673fe patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents: 28405
diff changeset
5367 if (errmsg != NULL)
4dcccb2673fe patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents: 28405
diff changeset
5368 emsg(_(errmsg));
4dcccb2673fe patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents: 28405
diff changeset
5369 }
4dcccb2673fe patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents: 28405
diff changeset
5370
4dcccb2673fe patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents: 28405
diff changeset
5371 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5372 * Get the terminal code for a terminal option.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5373 * Returns NULL when not found.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5374 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5375 char_u *
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5376 get_term_code(char_u *tname)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5377 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5378 int opt_idx;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5379 char_u *varp;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5380
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5381 if (tname[0] != 't' || tname[1] != '_' ||
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5382 tname[2] == NUL || tname[3] == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5383 return NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5384 if ((opt_idx = findoption(tname)) >= 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5385 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5386 varp = get_varp(&(options[opt_idx]));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5387 if (varp != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5388 varp = *(char_u **)(varp);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5389 return varp;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5390 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5391 return find_termcode(tname + 2);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5392 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5393
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5394 char_u *
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5395 get_highlight_default(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5396 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5397 int i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5398
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5399 i = findoption((char_u *)"hl");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5400 if (i >= 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5401 return options[i].def_val[VI_DEFAULT];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5402 return (char_u *)NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5403 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5404
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 36
diff changeset
5405 char_u *
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5406 get_encoding_default(void)
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 36
diff changeset
5407 {
410fa1a31baf updated for version 7.0023
vimboss
parents: 36
diff changeset
5408 int i;
410fa1a31baf updated for version 7.0023
vimboss
parents: 36
diff changeset
5409
410fa1a31baf updated for version 7.0023
vimboss
parents: 36
diff changeset
5410 i = findoption((char_u *)"enc");
410fa1a31baf updated for version 7.0023
vimboss
parents: 36
diff changeset
5411 if (i >= 0)
410fa1a31baf updated for version 7.0023
vimboss
parents: 36
diff changeset
5412 return options[i].def_val[VI_DEFAULT];
410fa1a31baf updated for version 7.0023
vimboss
parents: 36
diff changeset
5413 return (char_u *)NULL;
410fa1a31baf updated for version 7.0023
vimboss
parents: 36
diff changeset
5414 }
410fa1a31baf updated for version 7.0023
vimboss
parents: 36
diff changeset
5415
28405
473cfd79bcd8 patch 8.2.4727: unused code
Bram Moolenaar <Bram@vim.org>
parents: 28357
diff changeset
5416 #if defined(FEAT_QUICKFIX) || defined(PROTO)
27855
44a552776007 patch 8.2.4453: :helpgrep may free an option that was not allocated
Bram Moolenaar <Bram@vim.org>
parents: 27659
diff changeset
5417 int
44a552776007 patch 8.2.4453: :helpgrep may free an option that was not allocated
Bram Moolenaar <Bram@vim.org>
parents: 27659
diff changeset
5418 is_option_allocated(char *name)
44a552776007 patch 8.2.4453: :helpgrep may free an option that was not allocated
Bram Moolenaar <Bram@vim.org>
parents: 27659
diff changeset
5419 {
44a552776007 patch 8.2.4453: :helpgrep may free an option that was not allocated
Bram Moolenaar <Bram@vim.org>
parents: 27659
diff changeset
5420 int idx = findoption((char_u *)name);
44a552776007 patch 8.2.4453: :helpgrep may free an option that was not allocated
Bram Moolenaar <Bram@vim.org>
parents: 27659
diff changeset
5421
44a552776007 patch 8.2.4453: :helpgrep may free an option that was not allocated
Bram Moolenaar <Bram@vim.org>
parents: 27659
diff changeset
5422 return idx >= 0 && (options[idx].flags & P_ALLOCED);
44a552776007 patch 8.2.4453: :helpgrep may free an option that was not allocated
Bram Moolenaar <Bram@vim.org>
parents: 27659
diff changeset
5423 }
28405
473cfd79bcd8 patch 8.2.4727: unused code
Bram Moolenaar <Bram@vim.org>
parents: 28357
diff changeset
5424 #endif
27855
44a552776007 patch 8.2.4453: :helpgrep may free an option that was not allocated
Bram Moolenaar <Bram@vim.org>
parents: 27659
diff changeset
5425
29497
9908c07ccb56 patch 9.0.0090: no error when assigning bool to a string option
Bram Moolenaar <Bram@vim.org>
parents: 29395
diff changeset
5426 #if defined(FEAT_EVAL) || defined(PROTO)
9908c07ccb56 patch 9.0.0090: no error when assigning bool to a string option
Bram Moolenaar <Bram@vim.org>
parents: 29395
diff changeset
5427 /*
9908c07ccb56 patch 9.0.0090: no error when assigning bool to a string option
Bram Moolenaar <Bram@vim.org>
parents: 29395
diff changeset
5428 * Return TRUE if "name" is a string option.
9908c07ccb56 patch 9.0.0090: no error when assigning bool to a string option
Bram Moolenaar <Bram@vim.org>
parents: 29395
diff changeset
5429 * Returns FALSE if option "name" does not exist.
9908c07ccb56 patch 9.0.0090: no error when assigning bool to a string option
Bram Moolenaar <Bram@vim.org>
parents: 29395
diff changeset
5430 */
9908c07ccb56 patch 9.0.0090: no error when assigning bool to a string option
Bram Moolenaar <Bram@vim.org>
parents: 29395
diff changeset
5431 int
9908c07ccb56 patch 9.0.0090: no error when assigning bool to a string option
Bram Moolenaar <Bram@vim.org>
parents: 29395
diff changeset
5432 is_string_option(char_u *name)
9908c07ccb56 patch 9.0.0090: no error when assigning bool to a string option
Bram Moolenaar <Bram@vim.org>
parents: 29395
diff changeset
5433 {
9908c07ccb56 patch 9.0.0090: no error when assigning bool to a string option
Bram Moolenaar <Bram@vim.org>
parents: 29395
diff changeset
5434 int idx = findoption(name);
9908c07ccb56 patch 9.0.0090: no error when assigning bool to a string option
Bram Moolenaar <Bram@vim.org>
parents: 29395
diff changeset
5435
9908c07ccb56 patch 9.0.0090: no error when assigning bool to a string option
Bram Moolenaar <Bram@vim.org>
parents: 29395
diff changeset
5436 return idx >= 0 && (options[idx].flags & P_STRING);
9908c07ccb56 patch 9.0.0090: no error when assigning bool to a string option
Bram Moolenaar <Bram@vim.org>
parents: 29395
diff changeset
5437 }
9908c07ccb56 patch 9.0.0090: no error when assigning bool to a string option
Bram Moolenaar <Bram@vim.org>
parents: 29395
diff changeset
5438 #endif
9908c07ccb56 patch 9.0.0090: no error when assigning bool to a string option
Bram Moolenaar <Bram@vim.org>
parents: 29395
diff changeset
5439
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5440 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5441 * Translate a string like "t_xx", "<t_xx>" or "<S-Tab>" to a key number.
14381
d9e6eec551e1 patch 8.1.0205: invalid memory access with invalid modeline
Christian Brabandt <cb@256bit.org>
parents: 14313
diff changeset
5442 * When "has_lt" is true there is a '<' before "*arg_arg".
d9e6eec551e1 patch 8.1.0205: invalid memory access with invalid modeline
Christian Brabandt <cb@256bit.org>
parents: 14313
diff changeset
5443 * Returns 0 when the key is not recognized.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5444 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5445 static int
14381
d9e6eec551e1 patch 8.1.0205: invalid memory access with invalid modeline
Christian Brabandt <cb@256bit.org>
parents: 14313
diff changeset
5446 find_key_option(char_u *arg_arg, int has_lt)
d9e6eec551e1 patch 8.1.0205: invalid memory access with invalid modeline
Christian Brabandt <cb@256bit.org>
parents: 14313
diff changeset
5447 {
d9e6eec551e1 patch 8.1.0205: invalid memory access with invalid modeline
Christian Brabandt <cb@256bit.org>
parents: 14313
diff changeset
5448 int key = 0;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5449 int modifiers;
14381
d9e6eec551e1 patch 8.1.0205: invalid memory access with invalid modeline
Christian Brabandt <cb@256bit.org>
parents: 14313
diff changeset
5450 char_u *arg = arg_arg;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5451
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5452 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5453 * Don't use get_special_key_code() for t_xx, we don't want it to call
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5454 * add_termcap_entry().
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5455 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5456 if (arg[0] == 't' && arg[1] == '_' && arg[2] && arg[3])
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5457 key = TERMCAP2KEY(arg[2], arg[3]);
14381
d9e6eec551e1 patch 8.1.0205: invalid memory access with invalid modeline
Christian Brabandt <cb@256bit.org>
parents: 14313
diff changeset
5458 else if (has_lt)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5459 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5460 --arg; // put arg at the '<'
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5461 modifiers = 0;
20603
c2570baa2e4c patch 8.2.0855: GUI tests fail because the test doesn't use a modifier
Bram Moolenaar <Bram@vim.org>
parents: 20269
diff changeset
5462 key = find_special_key(&arg, &modifiers,
c2570baa2e4c patch 8.2.0855: GUI tests fail because the test doesn't use a modifier
Bram Moolenaar <Bram@vim.org>
parents: 20269
diff changeset
5463 FSK_KEYCODE | FSK_KEEP_X_KEY | FSK_SIMPLIFY, NULL);
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5464 if (modifiers) // can't handle modifiers here
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5465 key = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5466 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5467 return key;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5468 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5469
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5470 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5471 * if 'all' == 0: show changed options
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5472 * if 'all' == 1: show all normal options
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5473 * if 'all' == 2: show all terminal options
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5474 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5475 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5476 showoptions(
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5477 int all,
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5478 int opt_flags) // OPT_LOCAL and/or OPT_GLOBAL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5479 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5480 struct vimoption *p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5481 int col;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5482 int isterm;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5483 char_u *varp;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5484 struct vimoption **items;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5485 int item_count;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5486 int run;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5487 int row, rows;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5488 int cols;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5489 int i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5490 int len;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5491
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5492 #define INC 20
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5493 #define GAP 3
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5494
19137
69f0e9b5c107 patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents: 18991
diff changeset
5495 items = ALLOC_MULT(struct vimoption *, OPTION_COUNT);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5496 if (items == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5497 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5498
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5499 // Highlight title
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5500 if (all == 2)
15543
dd725a8ab112 patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15502
diff changeset
5501 msg_puts_title(_("\n--- Terminal codes ---"));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5502 else if (opt_flags & OPT_GLOBAL)
15543
dd725a8ab112 patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15502
diff changeset
5503 msg_puts_title(_("\n--- Global option values ---"));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5504 else if (opt_flags & OPT_LOCAL)
15543
dd725a8ab112 patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15502
diff changeset
5505 msg_puts_title(_("\n--- Local option values ---"));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5506 else
15543
dd725a8ab112 patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15502
diff changeset
5507 msg_puts_title(_("\n--- Options ---"));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5508
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5509 /*
19137
69f0e9b5c107 patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents: 18991
diff changeset
5510 * Do the loop two times:
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5511 * 1. display the short items
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5512 * 2. display the long items (only strings and numbers)
19137
69f0e9b5c107 patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents: 18991
diff changeset
5513 * When "opt_flags" has OPT_ONECOLUMN do everything in run 2.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5514 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5515 for (run = 1; run <= 2 && !got_int; ++run)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5516 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5517 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5518 * collect the items in items[]
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5519 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5520 item_count = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5521 for (p = &options[0]; p->fullname != NULL; p++)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5522 {
14968
c5ec5ddbe814 patch 8.1.0495: :filter only supports some commands
Bram Moolenaar <Bram@vim.org>
parents: 14935
diff changeset
5523 // apply :filter /pat/
19137
69f0e9b5c107 patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents: 18991
diff changeset
5524 if (message_filtered((char_u *)p->fullname))
14968
c5ec5ddbe814 patch 8.1.0495: :filter only supports some commands
Bram Moolenaar <Bram@vim.org>
parents: 14935
diff changeset
5525 continue;
c5ec5ddbe814 patch 8.1.0495: :filter only supports some commands
Bram Moolenaar <Bram@vim.org>
parents: 14935
diff changeset
5526
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5527 varp = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5528 isterm = istermoption(p);
19137
69f0e9b5c107 patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents: 18991
diff changeset
5529 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) != 0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5530 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5531 if (p->indir != PV_NONE && !isterm)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5532 varp = get_varp_scope(p, opt_flags);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5533 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5534 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5535 varp = get_varp(p);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5536 if (varp != NULL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5537 && ((all == 2 && isterm)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5538 || (all == 1 && !isterm)
16843
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
5539 || (all == 0 && !optval_default(p, varp, p_cp))))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5540 {
19137
69f0e9b5c107 patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents: 18991
diff changeset
5541 if (opt_flags & OPT_ONECOLUMN)
69f0e9b5c107 patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents: 18991
diff changeset
5542 len = Columns;
69f0e9b5c107 patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents: 18991
diff changeset
5543 else if (p->flags & P_BOOL)
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5544 len = 1; // a toggle option fits always
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5545 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5546 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5547 option_value2string(p, opt_flags);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5548 len = (int)STRLEN(p->fullname) + vim_strsize(NameBuff) + 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5549 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5550 if ((len <= INC - GAP && run == 1) ||
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5551 (len > INC - GAP && run == 2))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5552 items[item_count++] = p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5553 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5554 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5555
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5556 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5557 * display the items
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5558 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5559 if (run == 1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5560 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5561 cols = (Columns + GAP - 3) / INC;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5562 if (cols == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5563 cols = 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5564 rows = (item_count + cols - 1) / cols;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5565 }
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5566 else // run == 2
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5567 rows = item_count;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5568 for (row = 0; row < rows && !got_int; ++row)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5569 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5570 msg_putchar('\n'); // go to next line
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5571 if (got_int) // 'q' typed in more
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5572 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5573 col = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5574 for (i = row; i < item_count; i += rows)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5575 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5576 msg_col = col; // make columns
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5577 showoneopt(items[i], opt_flags);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5578 col += INC;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5579 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5580 out_flush();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5581 ui_breakcheck();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5582 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5583 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5584 vim_free(items);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5585 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5586
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5587 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5588 * Return TRUE if option "p" has its default value.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5589 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5590 static int
16843
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
5591 optval_default(struct vimoption *p, char_u *varp, int compatible)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5592 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5593 int dvi;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5594
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5595 if (varp == NULL)
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5596 return TRUE; // hidden option is always at default
16843
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
5597 dvi = ((p->flags & P_VI_DEF) || compatible) ? VI_DEFAULT : VIM_DEFAULT;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5598 if (p->flags & P_NUM)
840
2c885fab04e3 updated for version 7.0e06
vimboss
parents: 839
diff changeset
5599 return (*(long *)varp == (long)(long_i)p->def_val[dvi]);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5600 if (p->flags & P_BOOL)
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5601 // the cast to long is required for Manx C, long_i is
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5602 // needed for MSVC
840
2c885fab04e3 updated for version 7.0e06
vimboss
parents: 839
diff changeset
5603 return (*(int *)varp == (int)(long)(long_i)p->def_val[dvi]);
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5604 // P_STRING
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5605 return (STRCMP(*(char_u **)varp, p->def_val[dvi]) == 0);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5606 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5607
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5608 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5609 * showoneopt: show the value of one option
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5610 * must not be called with a hidden option!
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5611 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5612 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5613 showoneopt(
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5614 struct vimoption *p,
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5615 int opt_flags) // OPT_LOCAL or OPT_GLOBAL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5616 {
168
4d9eabb1396e updated for version 7.0051
vimboss
parents: 164
diff changeset
5617 char_u *varp;
4d9eabb1396e updated for version 7.0051
vimboss
parents: 164
diff changeset
5618 int save_silent = silent_mode;
4d9eabb1396e updated for version 7.0051
vimboss
parents: 164
diff changeset
5619
4d9eabb1396e updated for version 7.0051
vimboss
parents: 164
diff changeset
5620 silent_mode = FALSE;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5621 info_message = TRUE; // use mch_msg(), not mch_errmsg()
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5622
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5623 varp = get_varp_scope(p, opt_flags);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5624
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5625 // for 'modified' we also need to check if 'ff' or 'fenc' changed.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5626 if ((p->flags & P_BOOL) && ((int *)varp == &curbuf->b_changed
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5627 ? !curbufIsChanged() : !*(int *)varp))
15543
dd725a8ab112 patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15502
diff changeset
5628 msg_puts("no");
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5629 else if ((p->flags & P_BOOL) && *(int *)varp < 0)
15543
dd725a8ab112 patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15502
diff changeset
5630 msg_puts("--");
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5631 else
15543
dd725a8ab112 patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15502
diff changeset
5632 msg_puts(" ");
dd725a8ab112 patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15502
diff changeset
5633 msg_puts(p->fullname);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5634 if (!(p->flags & P_BOOL))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5635 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5636 msg_putchar('=');
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5637 // put value string in NameBuff
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5638 option_value2string(p, opt_flags);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5639 msg_outtrans(NameBuff);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5640 }
168
4d9eabb1396e updated for version 7.0051
vimboss
parents: 164
diff changeset
5641
4d9eabb1396e updated for version 7.0051
vimboss
parents: 164
diff changeset
5642 silent_mode = save_silent;
4d9eabb1396e updated for version 7.0051
vimboss
parents: 164
diff changeset
5643 info_message = FALSE;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5644 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5645
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5646 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5647 * Write modified options as ":set" commands to a file.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5648 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5649 * There are three values for "opt_flags":
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5650 * OPT_GLOBAL: Write global option values and fresh values of
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5651 * buffer-local options (used for start of a session
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5652 * file).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5653 * OPT_GLOBAL + OPT_LOCAL: Idem, add fresh values of window-local options for
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5654 * curwin (used for a vimrc file).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5655 * OPT_LOCAL: Write buffer-local option values for curbuf, fresh
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5656 * and local values for window-local options of
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5657 * curwin. Local values are also written when at the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5658 * default value, because a modeline or autocommand
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5659 * may have set them when doing ":edit file" and the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5660 * user has set them back at the default or fresh
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5661 * value.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5662 * When "local_only" is TRUE, don't write fresh
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5663 * values, only local values (for ":mkview").
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5664 * (fresh value = value used for a new buffer or window for a local option).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5665 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5666 * Return FAIL on error, OK otherwise.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5667 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5668 int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5669 makeset(FILE *fd, int opt_flags, int local_only)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5670 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5671 struct vimoption *p;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5672 char_u *varp; // currently used value
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5673 char_u *varp_fresh; // local value
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5674 char_u *varp_local = NULL; // fresh value
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5675 char *cmd;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5676 int round;
1384
5ef53a1677ee updated for version 7.1-099
vimboss
parents: 1382
diff changeset
5677 int pri;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5678
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5679 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5680 * The options that don't have a default (terminal name, columns, lines)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5681 * are never written. Terminal options are also not written.
1384
5ef53a1677ee updated for version 7.1-099
vimboss
parents: 1382
diff changeset
5682 * Do the loop over "options[]" twice: once for options with the
5ef53a1677ee updated for version 7.1-099
vimboss
parents: 1382
diff changeset
5683 * P_PRI_MKRC flag and once without.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5684 */
1384
5ef53a1677ee updated for version 7.1-099
vimboss
parents: 1382
diff changeset
5685 for (pri = 1; pri >= 0; --pri)
5ef53a1677ee updated for version 7.1-099
vimboss
parents: 1382
diff changeset
5686 {
5ef53a1677ee updated for version 7.1-099
vimboss
parents: 1382
diff changeset
5687 for (p = &options[0]; !istermoption(p); p++)
5ef53a1677ee updated for version 7.1-099
vimboss
parents: 1382
diff changeset
5688 if (!(p->flags & P_NO_MKRC)
5ef53a1677ee updated for version 7.1-099
vimboss
parents: 1382
diff changeset
5689 && !istermoption(p)
5ef53a1677ee updated for version 7.1-099
vimboss
parents: 1382
diff changeset
5690 && ((pri == 1) == ((p->flags & P_PRI_MKRC) != 0)))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5691 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5692 // skip global option when only doing locals
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5693 if (p->indir == PV_NONE && !(opt_flags & OPT_GLOBAL))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5694 continue;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5695
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5696 // Do not store options like 'bufhidden' and 'syntax' in a vimrc
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5697 // file, they are always buffer-specific.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5698 if ((opt_flags & OPT_GLOBAL) && (p->flags & P_NOGLOB))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5699 continue;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5700
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5701 // Global values are only written when not at the default value.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5702 varp = get_varp_scope(p, opt_flags);
16843
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
5703 if ((opt_flags & OPT_GLOBAL) && optval_default(p, varp, p_cp))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5704 continue;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5705
24476
e79d1475fc89 patch 8.2.2778: problem restoring 'packpath' in session
Bram Moolenaar <Bram@vim.org>
parents: 24464
diff changeset
5706 if ((opt_flags & OPT_SKIPRTP) && (p->var == (char_u *)&p_rtp
e79d1475fc89 patch 8.2.2778: problem restoring 'packpath' in session
Bram Moolenaar <Bram@vim.org>
parents: 24464
diff changeset
5707 || p->var == (char_u *)&p_pp))
24464
a56f9c2ba51c patch 8.2.2772: problems when restoring 'runtimepath' from a session file
Bram Moolenaar <Bram@vim.org>
parents: 24079
diff changeset
5708 continue;
a56f9c2ba51c patch 8.2.2772: problems when restoring 'runtimepath' from a session file
Bram Moolenaar <Bram@vim.org>
parents: 24079
diff changeset
5709
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5710 round = 2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5711 if (p->indir != PV_NONE)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5712 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5713 if (p->var == VAR_WIN)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5714 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5715 // skip window-local option when only doing globals
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5716 if (!(opt_flags & OPT_LOCAL))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5717 continue;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5718 // When fresh value of window-local option is not at the
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5719 // default, need to write it too.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5720 if (!(opt_flags & OPT_GLOBAL) && !local_only)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5721 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5722 varp_fresh = get_varp_scope(p, OPT_GLOBAL);
16843
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
5723 if (!optval_default(p, varp_fresh, p_cp))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5724 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5725 round = 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5726 varp_local = varp;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5727 varp = varp_fresh;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5728 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5729 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5730 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5731 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5732
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5733 // Round 1: fresh value for window-local options.
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5734 // Round 2: other values
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5735 for ( ; round <= 2; varp = varp_local, ++round)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5736 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5737 if (round == 1 || (opt_flags & OPT_GLOBAL))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5738 cmd = "set";
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5739 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5740 cmd = "setlocal";
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5741
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5742 if (p->flags & P_BOOL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5743 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5744 if (put_setbool(fd, cmd, p->fullname, *(int *)varp) == FAIL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5745 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5746 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5747 else if (p->flags & P_NUM)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5748 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5749 if (put_setnum(fd, cmd, p->fullname, (long *)varp) == FAIL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5750 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5751 }
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5752 else // P_STRING
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5753 {
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
5754 int do_endif = FALSE;
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
5755
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5756 // Don't set 'syntax' and 'filetype' again if the value is
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5757 // already right, avoids reloading the syntax file.
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
5758 if (
13380
69517d67421f patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 13361
diff changeset
5759 #if defined(FEAT_SYN_HL)
69517d67421f patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 13361
diff changeset
5760 p->indir == PV_SYN ||
69517d67421f patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 13361
diff changeset
5761 #endif
69517d67421f patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 13361
diff changeset
5762 p->indir == PV_FT)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5763 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5764 if (fprintf(fd, "if &%s != '%s'", p->fullname,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5765 *(char_u **)(varp)) < 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5766 || put_eol(fd) < 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5767 return FAIL;
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
5768 do_endif = TRUE;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5769 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5770 if (put_setstring(fd, cmd, p->fullname, (char_u **)varp,
15613
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5771 p->flags) == FAIL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5772 return FAIL;
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
5773 if (do_endif)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5774 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5775 if (put_line(fd, "endif") == FAIL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5776 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5777 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5778 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5779 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5780 }
1384
5ef53a1677ee updated for version 7.1-099
vimboss
parents: 1382
diff changeset
5781 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5782 return OK;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5783 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5784
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5785 #if defined(FEAT_FOLDING) || defined(PROTO)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5786 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5787 * Generate set commands for the local fold options only. Used when
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5788 * 'sessionoptions' or 'viewoptions' contains "folds" but not "options".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5789 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5790 int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5791 makefoldset(FILE *fd)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5792 {
15613
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5793 if (put_setstring(fd, "setlocal", "fdm", &curwin->w_p_fdm, 0) == FAIL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5794 # ifdef FEAT_EVAL
15613
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5795 || put_setstring(fd, "setlocal", "fde", &curwin->w_p_fde, 0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5796 == FAIL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5797 # endif
15613
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5798 || put_setstring(fd, "setlocal", "fmr", &curwin->w_p_fmr, 0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5799 == FAIL
15613
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5800 || put_setstring(fd, "setlocal", "fdi", &curwin->w_p_fdi, 0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5801 == FAIL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5802 || put_setnum(fd, "setlocal", "fdl", &curwin->w_p_fdl) == FAIL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5803 || put_setnum(fd, "setlocal", "fml", &curwin->w_p_fml) == FAIL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5804 || put_setnum(fd, "setlocal", "fdn", &curwin->w_p_fdn) == FAIL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5805 || put_setbool(fd, "setlocal", "fen", curwin->w_p_fen) == FAIL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5806 )
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5807 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5808
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5809 return OK;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5810 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5811 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5812
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5813 static int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5814 put_setstring(
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5815 FILE *fd,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5816 char *cmd,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5817 char *name,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5818 char_u **valuep,
15613
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5819 long_u flags)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5820 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5821 char_u *s;
15613
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5822 char_u *buf = NULL;
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5823 char_u *part = NULL;
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5824 char_u *p;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5825
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5826 if (fprintf(fd, "%s %s=", cmd, name) < 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5827 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5828 if (*valuep != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5829 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5830 // Output 'pastetoggle' as key names. For other
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5831 // options some characters have to be escaped with
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5832 // CTRL-V or backslash
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5833 if (valuep == &p_pt)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5834 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5835 s = *valuep;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5836 while (*s != NUL)
30226
b6b803ed4a53 patch 9.0.0449: there is no easy way to translate a key code into a string
Bram Moolenaar <Bram@vim.org>
parents: 30005
diff changeset
5837 if (put_escstr(fd, str2special(&s, FALSE, FALSE), 2) == FAIL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5838 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5839 }
15613
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5840 // expand the option value, replace $HOME by ~
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5841 else if ((flags & P_EXPAND) != 0)
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5842 {
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5843 int size = (int)STRLEN(*valuep) + 1;
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5844
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5845 // replace home directory in the whole option value into "buf"
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5846 buf = alloc(size);
2780
5ddb68c2a845 updated for version 7.3.166
Bram Moolenaar <bram@vim.org>
parents: 2774
diff changeset
5847 if (buf == NULL)
15613
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5848 goto fail;
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5849 home_replace(NULL, *valuep, buf, size, FALSE);
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5850
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5851 // If the option value is longer than MAXPATHL, we need to append
18498
9e6d5a4abb1c patch 8.1.2243: typos in comments
Bram Moolenaar <Bram@vim.org>
parents: 18463
diff changeset
5852 // each comma separated part of the option separately, so that it
15613
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5853 // can be expanded when read back.
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5854 if (size >= MAXPATHL && (flags & P_COMMA) != 0
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5855 && vim_strchr(*valuep, ',') != NULL)
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5856 {
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5857 part = alloc(size);
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5858 if (part == NULL)
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5859 goto fail;
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5860
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5861 // write line break to clear the option, e.g. ':set rtp='
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5862 if (put_eol(fd) == FAIL)
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5863 goto fail;
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5864
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5865 p = buf;
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5866 while (*p != NUL)
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5867 {
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5868 // for each comma separated option part, append value to
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5869 // the option, :set rtp+=value
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5870 if (fprintf(fd, "%s %s+=", cmd, name) < 0)
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5871 goto fail;
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5872 (void)copy_option_part(&p, part, size, ",");
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5873 if (put_escstr(fd, part, 2) == FAIL || put_eol(fd) == FAIL)
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5874 goto fail;
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5875 }
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5876 vim_free(buf);
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5877 vim_free(part);
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5878 return OK;
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5879 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5880 if (put_escstr(fd, buf, 2) == FAIL)
2780
5ddb68c2a845 updated for version 7.3.166
Bram Moolenaar <bram@vim.org>
parents: 2774
diff changeset
5881 {
5ddb68c2a845 updated for version 7.3.166
Bram Moolenaar <bram@vim.org>
parents: 2774
diff changeset
5882 vim_free(buf);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5883 return FAIL;
2780
5ddb68c2a845 updated for version 7.3.166
Bram Moolenaar <bram@vim.org>
parents: 2774
diff changeset
5884 }
5ddb68c2a845 updated for version 7.3.166
Bram Moolenaar <bram@vim.org>
parents: 2774
diff changeset
5885 vim_free(buf);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5886 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5887 else if (put_escstr(fd, *valuep, 2) == FAIL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5888 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5889 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5890 if (put_eol(fd) < 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5891 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5892 return OK;
15613
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5893 fail:
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5894 vim_free(buf);
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5895 vim_free(part);
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5896 return FAIL;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5897 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5898
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5899 static int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5900 put_setnum(
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5901 FILE *fd,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5902 char *cmd,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5903 char *name,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5904 long *valuep)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5905 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5906 long wc;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5907
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5908 if (fprintf(fd, "%s %s=", cmd, name) < 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5909 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5910 if (wc_use_keyname((char_u *)valuep, &wc))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5911 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5912 // print 'wildchar' and 'wildcharm' as a key name
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5913 if (fputs((char *)get_special_key_name((int)wc, 0), fd) < 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5914 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5915 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5916 else if (fprintf(fd, "%ld", *valuep) < 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5917 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5918 if (put_eol(fd) < 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5919 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5920 return OK;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5921 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5922
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5923 static int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5924 put_setbool(
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5925 FILE *fd,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5926 char *cmd,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5927 char *name,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5928 int value)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5929 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5930 if (value < 0) // global/local option using global value
1416
0a80dc6d7804 updated for version 7.1-131
vimboss
parents: 1408
diff changeset
5931 return OK;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5932 if (fprintf(fd, "%s %s%s", cmd, value ? "" : "no", name) < 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5933 || put_eol(fd) < 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5934 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5935 return OK;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5936 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5937
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5938 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5939 * Clear all the terminal options.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5940 * If the option has been allocated, free the memory.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5941 * Terminal options are never hidden or indirect.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5942 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5943 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5944 clear_termoptions(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5945 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5946 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5947 * Reset a few things before clearing the old options. This may cause
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5948 * outputting a few things that the terminal doesn't understand, but the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5949 * screen will be cleared later, so this is OK.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5950 */
18354
9f51d0cef8da patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents: 18301
diff changeset
5951 mch_setmouse(FALSE); // switch mouse off
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5952 mch_restore_title(SAVE_RESTORE_BOTH); // restore window titles
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5953 #if defined(FEAT_XCLIPBOARD) && defined(FEAT_GUI)
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5954 // When starting the GUI close the display opened for the clipboard.
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5955 // After restoring the title, because that will need the display.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5956 if (gui.starting)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5957 clear_xterm_clip();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5958 #endif
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5959 stoptermcap(); // stop termcap mode
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5960
359
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
5961 free_termoptions();
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
5962 }
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
5963
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
5964 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5965 free_termoptions(void)
359
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
5966 {
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
5967 struct vimoption *p;
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
5968
14867
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
5969 for (p = options; p->fullname != NULL; p++)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5970 if (istermoption(p))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5971 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5972 if (p->flags & P_ALLOCED)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5973 free_string_option(*(char_u **)(p->var));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5974 if (p->flags & P_DEF_ALLOCED)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5975 free_string_option(p->def_val[VI_DEFAULT]);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5976 *(char_u **)(p->var) = empty_option;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5977 p->def_val[VI_DEFAULT] = empty_option;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5978 p->flags &= ~(P_ALLOCED|P_DEF_ALLOCED);
14867
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
5979 #ifdef FEAT_EVAL
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
5980 // remember where the option was cleared
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
5981 set_option_sctx_idx((int)(p - options), OPT_GLOBAL, current_sctx);
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
5982 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5983 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5984 clear_termcodes();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5985 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5986
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5987 /*
1941
d92358c7d621 updated for version 7.2-238
vimboss
parents: 1911
diff changeset
5988 * Free the string for one term option, if it was allocated.
d92358c7d621 updated for version 7.2-238
vimboss
parents: 1911
diff changeset
5989 * Set the string to empty_option and clear allocated flag.
d92358c7d621 updated for version 7.2-238
vimboss
parents: 1911
diff changeset
5990 * "var" points to the option value.
d92358c7d621 updated for version 7.2-238
vimboss
parents: 1911
diff changeset
5991 */
d92358c7d621 updated for version 7.2-238
vimboss
parents: 1911
diff changeset
5992 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5993 free_one_termoption(char_u *var)
1941
d92358c7d621 updated for version 7.2-238
vimboss
parents: 1911
diff changeset
5994 {
d92358c7d621 updated for version 7.2-238
vimboss
parents: 1911
diff changeset
5995 struct vimoption *p;
d92358c7d621 updated for version 7.2-238
vimboss
parents: 1911
diff changeset
5996
d92358c7d621 updated for version 7.2-238
vimboss
parents: 1911
diff changeset
5997 for (p = &options[0]; p->fullname != NULL; p++)
d92358c7d621 updated for version 7.2-238
vimboss
parents: 1911
diff changeset
5998 if (p->var == var)
d92358c7d621 updated for version 7.2-238
vimboss
parents: 1911
diff changeset
5999 {
d92358c7d621 updated for version 7.2-238
vimboss
parents: 1911
diff changeset
6000 if (p->flags & P_ALLOCED)
d92358c7d621 updated for version 7.2-238
vimboss
parents: 1911
diff changeset
6001 free_string_option(*(char_u **)(p->var));
d92358c7d621 updated for version 7.2-238
vimboss
parents: 1911
diff changeset
6002 *(char_u **)(p->var) = empty_option;
d92358c7d621 updated for version 7.2-238
vimboss
parents: 1911
diff changeset
6003 p->flags &= ~P_ALLOCED;
d92358c7d621 updated for version 7.2-238
vimboss
parents: 1911
diff changeset
6004 break;
d92358c7d621 updated for version 7.2-238
vimboss
parents: 1911
diff changeset
6005 }
d92358c7d621 updated for version 7.2-238
vimboss
parents: 1911
diff changeset
6006 }
d92358c7d621 updated for version 7.2-238
vimboss
parents: 1911
diff changeset
6007
d92358c7d621 updated for version 7.2-238
vimboss
parents: 1911
diff changeset
6008 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6009 * Set the terminal option defaults to the current value.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6010 * Used after setting the terminal name.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6011 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6012 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
6013 set_term_defaults(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6014 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6015 struct vimoption *p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6016
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6017 for (p = &options[0]; p->fullname != NULL; p++)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6018 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6019 if (istermoption(p) && p->def_val[VI_DEFAULT] != *(char_u **)(p->var))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6020 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6021 if (p->flags & P_DEF_ALLOCED)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6022 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6023 free_string_option(p->def_val[VI_DEFAULT]);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6024 p->flags &= ~P_DEF_ALLOCED;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6025 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6026 p->def_val[VI_DEFAULT] = *(char_u **)(p->var);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6027 if (p->flags & P_ALLOCED)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6028 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6029 p->flags |= P_DEF_ALLOCED;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
6030 p->flags &= ~P_ALLOCED; // don't free the value now
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6031 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6032 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6033 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6034 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6035
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6036 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6037 * return TRUE if 'p' starts with 't_'
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6038 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6039 static int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
6040 istermoption(struct vimoption *p)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6041 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6042 return (p->fullname[0] == 't' && p->fullname[1] == '_');
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6043 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6044
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
6045 /*
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
6046 * Returns TRUE if the option at 'opt_idx' starts with 't_'
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
6047 */
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
6048 int
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
6049 istermoption_idx(int opt_idx)
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
6050 {
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
6051 return istermoption(&options[opt_idx]);
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
6052 }
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
6053
15555
d89c5b339c2a patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents: 15543
diff changeset
6054 #if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) || defined(PROTO)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6055 /*
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6056 * Unset local option value, similar to ":set opt<".
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6057 */
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6058 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
6059 unset_global_local_option(char_u *name, void *from)
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6060 {
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6061 struct vimoption *p;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6062 int opt_idx;
4361
94aa0d30a3ea updated for version 7.3.929
Bram Moolenaar <bram@vim.org>
parents: 4350
diff changeset
6063 buf_T *buf = (buf_T *)from;
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6064
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6065 opt_idx = findoption(name);
7007
5ea5bd9c18d2 patch 7.4.821
Bram Moolenaar <bram@vim.org>
parents: 6954
diff changeset
6066 if (opt_idx < 0)
5ea5bd9c18d2 patch 7.4.821
Bram Moolenaar <bram@vim.org>
parents: 6954
diff changeset
6067 return;
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6068 p = &(options[opt_idx]);
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6069
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6070 switch ((int)p->indir)
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6071 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
6072 // global option with local value: use local value if it's been set
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6073 case PV_EP:
4361
94aa0d30a3ea updated for version 7.3.929
Bram Moolenaar <bram@vim.org>
parents: 4350
diff changeset
6074 clear_string_option(&buf->b_p_ep);
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6075 break;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6076 case PV_KP:
4361
94aa0d30a3ea updated for version 7.3.929
Bram Moolenaar <bram@vim.org>
parents: 4350
diff changeset
6077 clear_string_option(&buf->b_p_kp);
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6078 break;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6079 case PV_PATH:
4361
94aa0d30a3ea updated for version 7.3.929
Bram Moolenaar <bram@vim.org>
parents: 4350
diff changeset
6080 clear_string_option(&buf->b_p_path);
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6081 break;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6082 case PV_AR:
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6083 buf->b_p_ar = -1;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6084 break;
6243
54194bd6ed60 updated for version 7.4.456
Bram Moolenaar <bram@vim.org>
parents: 6205
diff changeset
6085 case PV_BKC:
54194bd6ed60 updated for version 7.4.456
Bram Moolenaar <bram@vim.org>
parents: 6205
diff changeset
6086 clear_string_option(&buf->b_p_bkc);
54194bd6ed60 updated for version 7.4.456
Bram Moolenaar <bram@vim.org>
parents: 6205
diff changeset
6087 buf->b_bkc_flags = 0;
54194bd6ed60 updated for version 7.4.456
Bram Moolenaar <bram@vim.org>
parents: 6205
diff changeset
6088 break;
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6089 case PV_TAGS:
4361
94aa0d30a3ea updated for version 7.3.929
Bram Moolenaar <bram@vim.org>
parents: 4350
diff changeset
6090 clear_string_option(&buf->b_p_tags);
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6091 break;
7266
6ba7182fb7bd commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents: 7218
diff changeset
6092 case PV_TC:
6ba7182fb7bd commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents: 7218
diff changeset
6093 clear_string_option(&buf->b_p_tc);
6ba7182fb7bd commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents: 7218
diff changeset
6094 buf->b_tc_flags = 0;
6ba7182fb7bd commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents: 7218
diff changeset
6095 break;
28809
d0241e74bfdb patch 8.2.4928: various white space and cosmetic mistakes
Bram Moolenaar <Bram@vim.org>
parents: 28804
diff changeset
6096 case PV_SISO:
d0241e74bfdb patch 8.2.4928: various white space and cosmetic mistakes
Bram Moolenaar <Bram@vim.org>
parents: 28804
diff changeset
6097 curwin->w_p_siso = -1;
d0241e74bfdb patch 8.2.4928: various white space and cosmetic mistakes
Bram Moolenaar <Bram@vim.org>
parents: 28804
diff changeset
6098 break;
d0241e74bfdb patch 8.2.4928: various white space and cosmetic mistakes
Bram Moolenaar <Bram@vim.org>
parents: 28804
diff changeset
6099 case PV_SO:
d0241e74bfdb patch 8.2.4928: various white space and cosmetic mistakes
Bram Moolenaar <Bram@vim.org>
parents: 28804
diff changeset
6100 curwin->w_p_so = -1;
d0241e74bfdb patch 8.2.4928: various white space and cosmetic mistakes
Bram Moolenaar <Bram@vim.org>
parents: 28804
diff changeset
6101 break;
31174
1d00fa720007 patch 9.0.0921: missing defined(PROTO) in #ifdef
Bram Moolenaar <Bram@vim.org>
parents: 31000
diff changeset
6102 # ifdef FEAT_FIND_ID
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6103 case PV_DEF:
4361
94aa0d30a3ea updated for version 7.3.929
Bram Moolenaar <bram@vim.org>
parents: 4350
diff changeset
6104 clear_string_option(&buf->b_p_def);
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6105 break;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6106 case PV_INC:
4361
94aa0d30a3ea updated for version 7.3.929
Bram Moolenaar <bram@vim.org>
parents: 4350
diff changeset
6107 clear_string_option(&buf->b_p_inc);
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6108 break;
31174
1d00fa720007 patch 9.0.0921: missing defined(PROTO) in #ifdef
Bram Moolenaar <Bram@vim.org>
parents: 31000
diff changeset
6109 # endif
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6110 case PV_DICT:
4361
94aa0d30a3ea updated for version 7.3.929
Bram Moolenaar <bram@vim.org>
parents: 4350
diff changeset
6111 clear_string_option(&buf->b_p_dict);
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6112 break;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6113 case PV_TSR:
4361
94aa0d30a3ea updated for version 7.3.929
Bram Moolenaar <bram@vim.org>
parents: 4350
diff changeset
6114 clear_string_option(&buf->b_p_tsr);
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6115 break;
31174
1d00fa720007 patch 9.0.0921: missing defined(PROTO) in #ifdef
Bram Moolenaar <Bram@vim.org>
parents: 31000
diff changeset
6116 # ifdef FEAT_COMPL_FUNC
25990
ac330e2fecc4 patch 8.2.3528: 'thesaurus' and 'thesaurusfunc' do not have the same scope
Bram Moolenaar <Bram@vim.org>
parents: 25984
diff changeset
6117 case PV_TSRFU:
ac330e2fecc4 patch 8.2.3528: 'thesaurus' and 'thesaurusfunc' do not have the same scope
Bram Moolenaar <Bram@vim.org>
parents: 25984
diff changeset
6118 clear_string_option(&buf->b_p_tsrfu);
ac330e2fecc4 patch 8.2.3528: 'thesaurus' and 'thesaurusfunc' do not have the same scope
Bram Moolenaar <Bram@vim.org>
parents: 25984
diff changeset
6119 break;
31174
1d00fa720007 patch 9.0.0921: missing defined(PROTO) in #ifdef
Bram Moolenaar <Bram@vim.org>
parents: 31000
diff changeset
6120 # endif
10579
688b97124d23 patch 8.0.0179: cannot have a local value for 'formatprg'
Christian Brabandt <cb@256bit.org>
parents: 10456
diff changeset
6121 case PV_FP:
688b97124d23 patch 8.0.0179: cannot have a local value for 'formatprg'
Christian Brabandt <cb@256bit.org>
parents: 10456
diff changeset
6122 clear_string_option(&buf->b_p_fp);
688b97124d23 patch 8.0.0179: cannot have a local value for 'formatprg'
Christian Brabandt <cb@256bit.org>
parents: 10456
diff changeset
6123 break;
31174
1d00fa720007 patch 9.0.0921: missing defined(PROTO) in #ifdef
Bram Moolenaar <Bram@vim.org>
parents: 31000
diff changeset
6124 # ifdef FEAT_QUICKFIX
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6125 case PV_EFM:
4361
94aa0d30a3ea updated for version 7.3.929
Bram Moolenaar <bram@vim.org>
parents: 4350
diff changeset
6126 clear_string_option(&buf->b_p_efm);
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6127 break;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6128 case PV_GP:
4361
94aa0d30a3ea updated for version 7.3.929
Bram Moolenaar <bram@vim.org>
parents: 4350
diff changeset
6129 clear_string_option(&buf->b_p_gp);
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6130 break;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6131 case PV_MP:
4361
94aa0d30a3ea updated for version 7.3.929
Bram Moolenaar <bram@vim.org>
parents: 4350
diff changeset
6132 clear_string_option(&buf->b_p_mp);
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6133 break;
31174
1d00fa720007 patch 9.0.0921: missing defined(PROTO) in #ifdef
Bram Moolenaar <Bram@vim.org>
parents: 31000
diff changeset
6134 # endif
1d00fa720007 patch 9.0.0921: missing defined(PROTO) in #ifdef
Bram Moolenaar <Bram@vim.org>
parents: 31000
diff changeset
6135 # if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6136 case PV_BEXPR:
4361
94aa0d30a3ea updated for version 7.3.929
Bram Moolenaar <bram@vim.org>
parents: 4350
diff changeset
6137 clear_string_option(&buf->b_p_bexpr);
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6138 break;
31174
1d00fa720007 patch 9.0.0921: missing defined(PROTO) in #ifdef
Bram Moolenaar <Bram@vim.org>
parents: 31000
diff changeset
6139 # endif
1d00fa720007 patch 9.0.0921: missing defined(PROTO) in #ifdef
Bram Moolenaar <Bram@vim.org>
parents: 31000
diff changeset
6140 # if defined(FEAT_CRYPT)
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6141 case PV_CM:
4361
94aa0d30a3ea updated for version 7.3.929
Bram Moolenaar <bram@vim.org>
parents: 4350
diff changeset
6142 clear_string_option(&buf->b_p_cm);
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6143 break;
31174
1d00fa720007 patch 9.0.0921: missing defined(PROTO) in #ifdef
Bram Moolenaar <Bram@vim.org>
parents: 31000
diff changeset
6144 # endif
1d00fa720007 patch 9.0.0921: missing defined(PROTO) in #ifdef
Bram Moolenaar <Bram@vim.org>
parents: 31000
diff changeset
6145 # ifdef FEAT_LINEBREAK
18574
8b0114ffde2b patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents: 18498
diff changeset
6146 case PV_SBR:
8b0114ffde2b patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents: 18498
diff changeset
6147 clear_string_option(&((win_T *)from)->w_p_sbr);
8b0114ffde2b patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents: 18498
diff changeset
6148 break;
31174
1d00fa720007 patch 9.0.0921: missing defined(PROTO) in #ifdef
Bram Moolenaar <Bram@vim.org>
parents: 31000
diff changeset
6149 # endif
1d00fa720007 patch 9.0.0921: missing defined(PROTO) in #ifdef
Bram Moolenaar <Bram@vim.org>
parents: 31000
diff changeset
6150 # ifdef FEAT_STL_OPT
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6151 case PV_STL:
4361
94aa0d30a3ea updated for version 7.3.929
Bram Moolenaar <bram@vim.org>
parents: 4350
diff changeset
6152 clear_string_option(&((win_T *)from)->w_p_stl);
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6153 break;
31174
1d00fa720007 patch 9.0.0921: missing defined(PROTO) in #ifdef
Bram Moolenaar <Bram@vim.org>
parents: 31000
diff changeset
6154 # endif
5446
d0595545e98a updated for version 7.4.073
Bram Moolenaar <bram@vim.org>
parents: 5438
diff changeset
6155 case PV_UL:
d0595545e98a updated for version 7.4.073
Bram Moolenaar <bram@vim.org>
parents: 5438
diff changeset
6156 buf->b_p_ul = NO_LOCAL_UNDOLEVEL;
d0595545e98a updated for version 7.4.073
Bram Moolenaar <bram@vim.org>
parents: 5438
diff changeset
6157 break;
5712
06e5f65c34d8 updated for version 7.4.201
Bram Moolenaar <bram@vim.org>
parents: 5610
diff changeset
6158 case PV_LW:
06e5f65c34d8 updated for version 7.4.201
Bram Moolenaar <bram@vim.org>
parents: 5610
diff changeset
6159 clear_string_option(&buf->b_p_lw);
06e5f65c34d8 updated for version 7.4.201
Bram Moolenaar <bram@vim.org>
parents: 5610
diff changeset
6160 break;
11063
e71d3bdf3bc3 patch 8.0.0420: text garbled when the system encoding differs from 'encoding'
Christian Brabandt <cb@256bit.org>
parents: 10968
diff changeset
6161 case PV_MENC:
e71d3bdf3bc3 patch 8.0.0420: text garbled when the system encoding differs from 'encoding'
Christian Brabandt <cb@256bit.org>
parents: 10968
diff changeset
6162 clear_string_option(&buf->b_p_menc);
e71d3bdf3bc3 patch 8.0.0420: text garbled when the system encoding differs from 'encoding'
Christian Brabandt <cb@256bit.org>
parents: 10968
diff changeset
6163 break;
23952
44be09b25619 patch 8.2.2518: 'listchars' should be window-local
Bram Moolenaar <Bram@vim.org>
parents: 23821
diff changeset
6164 case PV_LCS:
44be09b25619 patch 8.2.2518: 'listchars' should be window-local
Bram Moolenaar <Bram@vim.org>
parents: 23821
diff changeset
6165 clear_string_option(&((win_T *)from)->w_p_lcs);
29395
caaf5b270018 patch 9.0.0040: use of set_chars_option() is confusing
Bram Moolenaar <Bram@vim.org>
parents: 29387
diff changeset
6166 set_chars_option((win_T *)from, &((win_T *)from)->w_p_lcs, TRUE);
29732
89e1d67814a9 patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
6167 redraw_later(UPD_NOT_VALID);
23952
44be09b25619 patch 8.2.2518: 'listchars' should be window-local
Bram Moolenaar <Bram@vim.org>
parents: 23821
diff changeset
6168 break;
29387
9dce192d1ac2 patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents: 28942
diff changeset
6169 case PV_FCS:
9dce192d1ac2 patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents: 28942
diff changeset
6170 clear_string_option(&((win_T *)from)->w_p_fcs);
29395
caaf5b270018 patch 9.0.0040: use of set_chars_option() is confusing
Bram Moolenaar <Bram@vim.org>
parents: 29387
diff changeset
6171 set_chars_option((win_T *)from, &((win_T *)from)->w_p_fcs, TRUE);
29732
89e1d67814a9 patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
6172 redraw_later(UPD_NOT_VALID);
29387
9dce192d1ac2 patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents: 28942
diff changeset
6173 break;
25380
ac88cd21ae88 patch 8.2.3227: 'virtualedit' can only be set globally
Bram Moolenaar <Bram@vim.org>
parents: 25320
diff changeset
6174 case PV_VE:
25487
c26ff3203b43 patch 8.2.3280: 'virtualedit' local to buffer is not the best solution
Bram Moolenaar <Bram@vim.org>
parents: 25419
diff changeset
6175 clear_string_option(&((win_T *)from)->w_p_ve);
c26ff3203b43 patch 8.2.3280: 'virtualedit' local to buffer is not the best solution
Bram Moolenaar <Bram@vim.org>
parents: 25419
diff changeset
6176 ((win_T *)from)->w_ve_flags = 0;
25380
ac88cd21ae88 patch 8.2.3227: 'virtualedit' can only be set globally
Bram Moolenaar <Bram@vim.org>
parents: 25320
diff changeset
6177 break;
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6178 }
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6179 }
15555
d89c5b339c2a patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents: 15543
diff changeset
6180 #endif
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6181
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6182 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6183 * Get pointer to option variable, depending on local or global scope.
26441
65ab0b035dd8 patch 8.2.3751: cannot assign a lambda to an option that takes a function
Bram Moolenaar <Bram@vim.org>
parents: 26400
diff changeset
6184 * "scope" can be OPT_LOCAL, OPT_GLOBAL or a combination.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6185 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6186 static char_u *
26441
65ab0b035dd8 patch 8.2.3751: cannot assign a lambda to an option that takes a function
Bram Moolenaar <Bram@vim.org>
parents: 26400
diff changeset
6187 get_varp_scope(struct vimoption *p, int scope)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6188 {
26441
65ab0b035dd8 patch 8.2.3751: cannot assign a lambda to an option that takes a function
Bram Moolenaar <Bram@vim.org>
parents: 26400
diff changeset
6189 if ((scope & OPT_GLOBAL) && p->indir != PV_NONE)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6190 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6191 if (p->var == VAR_WIN)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6192 return (char_u *)GLOBAL_WO(get_varp(p));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6193 return p->var;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6194 }
26441
65ab0b035dd8 patch 8.2.3751: cannot assign a lambda to an option that takes a function
Bram Moolenaar <Bram@vim.org>
parents: 26400
diff changeset
6195 if ((scope & OPT_LOCAL) && ((int)p->indir & PV_BOTH))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6196 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6197 switch ((int)p->indir)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6198 {
10579
688b97124d23 patch 8.0.0179: cannot have a local value for 'formatprg'
Christian Brabandt <cb@256bit.org>
parents: 10456
diff changeset
6199 case PV_FP: return (char_u *)&(curbuf->b_p_fp);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6200 #ifdef FEAT_QUICKFIX
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
6201 case PV_EFM: return (char_u *)&(curbuf->b_p_efm);
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
6202 case PV_GP: return (char_u *)&(curbuf->b_p_gp);
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
6203 case PV_MP: return (char_u *)&(curbuf->b_p_mp);
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
6204 #endif
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
6205 case PV_EP: return (char_u *)&(curbuf->b_p_ep);
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
6206 case PV_KP: return (char_u *)&(curbuf->b_p_kp);
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
6207 case PV_PATH: return (char_u *)&(curbuf->b_p_path);
692
a28f83d37113 updated for version 7.0208
vimboss
parents: 688
diff changeset
6208 case PV_AR: return (char_u *)&(curbuf->b_p_ar);
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
6209 case PV_TAGS: return (char_u *)&(curbuf->b_p_tags);
7266
6ba7182fb7bd commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents: 7218
diff changeset
6210 case PV_TC: return (char_u *)&(curbuf->b_p_tc);
28809
d0241e74bfdb patch 8.2.4928: various white space and cosmetic mistakes
Bram Moolenaar <Bram@vim.org>
parents: 28804
diff changeset
6211 case PV_SISO: return (char_u *)&(curwin->w_p_siso);
d0241e74bfdb patch 8.2.4928: various white space and cosmetic mistakes
Bram Moolenaar <Bram@vim.org>
parents: 28804
diff changeset
6212 case PV_SO: return (char_u *)&(curwin->w_p_so);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6213 #ifdef FEAT_FIND_ID
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
6214 case PV_DEF: return (char_u *)&(curbuf->b_p_def);
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
6215 case PV_INC: return (char_u *)&(curbuf->b_p_inc);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6216 #endif
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
6217 case PV_DICT: return (char_u *)&(curbuf->b_p_dict);
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
6218 case PV_TSR: return (char_u *)&(curbuf->b_p_tsr);
25990
ac330e2fecc4 patch 8.2.3528: 'thesaurus' and 'thesaurusfunc' do not have the same scope
Bram Moolenaar <Bram@vim.org>
parents: 25984
diff changeset
6219 #ifdef FEAT_COMPL_FUNC
ac330e2fecc4 patch 8.2.3528: 'thesaurus' and 'thesaurusfunc' do not have the same scope
Bram Moolenaar <Bram@vim.org>
parents: 25984
diff changeset
6220 case PV_TSRFU: return (char_u *)&(curbuf->b_p_tsrfu);
ac330e2fecc4 patch 8.2.3528: 'thesaurus' and 'thesaurusfunc' do not have the same scope
Bram Moolenaar <Bram@vim.org>
parents: 25984
diff changeset
6221 #endif
790
c8680debe1cc updated for version 7.0230
vimboss
parents: 786
diff changeset
6222 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
c8680debe1cc updated for version 7.0230
vimboss
parents: 786
diff changeset
6223 case PV_BEXPR: return (char_u *)&(curbuf->b_p_bexpr);
c8680debe1cc updated for version 7.0230
vimboss
parents: 786
diff changeset
6224 #endif
2360
d8e4b27cef80 Change 'cryptmethod' from a number to a string option. Make it global-local.
Bram Moolenaar <bram@vim.org>
parents: 2348
diff changeset
6225 #if defined(FEAT_CRYPT)
d8e4b27cef80 Change 'cryptmethod' from a number to a string option. Make it global-local.
Bram Moolenaar <bram@vim.org>
parents: 2348
diff changeset
6226 case PV_CM: return (char_u *)&(curbuf->b_p_cm);
d8e4b27cef80 Change 'cryptmethod' from a number to a string option. Make it global-local.
Bram Moolenaar <bram@vim.org>
parents: 2348
diff changeset
6227 #endif
18574
8b0114ffde2b patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents: 18498
diff changeset
6228 #ifdef FEAT_LINEBREAK
8b0114ffde2b patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents: 18498
diff changeset
6229 case PV_SBR: return (char_u *)&(curwin->w_p_sbr);
8b0114ffde2b patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents: 18498
diff changeset
6230 #endif
40
f1d2a58883b9 updated for version 7.0024
vimboss
parents: 39
diff changeset
6231 #ifdef FEAT_STL_OPT
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
6232 case PV_STL: return (char_u *)&(curwin->w_p_stl);
40
f1d2a58883b9 updated for version 7.0024
vimboss
parents: 39
diff changeset
6233 #endif
5446
d0595545e98a updated for version 7.4.073
Bram Moolenaar <bram@vim.org>
parents: 5438
diff changeset
6234 case PV_UL: return (char_u *)&(curbuf->b_p_ul);
5712
06e5f65c34d8 updated for version 7.4.201
Bram Moolenaar <bram@vim.org>
parents: 5610
diff changeset
6235 case PV_LW: return (char_u *)&(curbuf->b_p_lw);
6243
54194bd6ed60 updated for version 7.4.456
Bram Moolenaar <bram@vim.org>
parents: 6205
diff changeset
6236 case PV_BKC: return (char_u *)&(curbuf->b_p_bkc);
11063
e71d3bdf3bc3 patch 8.0.0420: text garbled when the system encoding differs from 'encoding'
Christian Brabandt <cb@256bit.org>
parents: 10968
diff changeset
6237 case PV_MENC: return (char_u *)&(curbuf->b_p_menc);
25380
ac88cd21ae88 patch 8.2.3227: 'virtualedit' can only be set globally
Bram Moolenaar <Bram@vim.org>
parents: 25320
diff changeset
6238 case PV_LCS: return (char_u *)&(curwin->w_p_lcs);
29387
9dce192d1ac2 patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents: 28942
diff changeset
6239 case PV_FCS: return (char_u *)&(curwin->w_p_fcs);
25487
c26ff3203b43 patch 8.2.3280: 'virtualedit' local to buffer is not the best solution
Bram Moolenaar <Bram@vim.org>
parents: 25419
diff changeset
6240 case PV_VE: return (char_u *)&(curwin->w_p_ve);
23952
44be09b25619 patch 8.2.2518: 'listchars' should be window-local
Bram Moolenaar <Bram@vim.org>
parents: 23821
diff changeset
6241
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6242 }
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
6243 return NULL; // "cannot happen"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6244 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6245 return get_varp(p);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6246 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6247
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6248 /*
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
6249 * Get pointer to option variable at 'opt_idx', depending on local or global
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
6250 * scope.
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
6251 */
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
6252 char_u *
26441
65ab0b035dd8 patch 8.2.3751: cannot assign a lambda to an option that takes a function
Bram Moolenaar <Bram@vim.org>
parents: 26400
diff changeset
6253 get_option_varp_scope(int opt_idx, int scope)
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
6254 {
26441
65ab0b035dd8 patch 8.2.3751: cannot assign a lambda to an option that takes a function
Bram Moolenaar <Bram@vim.org>
parents: 26400
diff changeset
6255 return get_varp_scope(&(options[opt_idx]), scope);
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
6256 }
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
6257
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
6258 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6259 * Get pointer to option variable.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6260 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6261 static char_u *
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
6262 get_varp(struct vimoption *p)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6263 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
6264 // hidden option, always return NULL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6265 if (p->var == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6266 return NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6267
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6268 switch ((int)p->indir)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6269 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6270 case PV_NONE: return p->var;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6271
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
6272 // global option with local value: use local value if it's been set
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
6273 case PV_EP: return *curbuf->b_p_ep != NUL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6274 ? (char_u *)&curbuf->b_p_ep : p->var;
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
6275 case PV_KP: return *curbuf->b_p_kp != NUL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6276 ? (char_u *)&curbuf->b_p_kp : p->var;
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
6277 case PV_PATH: return *curbuf->b_p_path != NUL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6278 ? (char_u *)&(curbuf->b_p_path) : p->var;
692
a28f83d37113 updated for version 7.0208
vimboss
parents: 688
diff changeset
6279 case PV_AR: return curbuf->b_p_ar >= 0
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6280 ? (char_u *)&(curbuf->b_p_ar) : p->var;
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
6281 case PV_TAGS: return *curbuf->b_p_tags != NUL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6282 ? (char_u *)&(curbuf->b_p_tags) : p->var;
7266
6ba7182fb7bd commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents: 7218
diff changeset
6283 case PV_TC: return *curbuf->b_p_tc != NUL
6ba7182fb7bd commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents: 7218
diff changeset
6284 ? (char_u *)&(curbuf->b_p_tc) : p->var;
6243
54194bd6ed60 updated for version 7.4.456
Bram Moolenaar <bram@vim.org>
parents: 6205
diff changeset
6285 case PV_BKC: return *curbuf->b_p_bkc != NUL
54194bd6ed60 updated for version 7.4.456
Bram Moolenaar <bram@vim.org>
parents: 6205
diff changeset
6286 ? (char_u *)&(curbuf->b_p_bkc) : p->var;
15713
ad8b2c109b22 patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents: 15701
diff changeset
6287 case PV_SISO: return curwin->w_p_siso >= 0
ad8b2c109b22 patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents: 15701
diff changeset
6288 ? (char_u *)&(curwin->w_p_siso) : p->var;
ad8b2c109b22 patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents: 15701
diff changeset
6289 case PV_SO: return curwin->w_p_so >= 0
ad8b2c109b22 patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents: 15701
diff changeset
6290 ? (char_u *)&(curwin->w_p_so) : p->var;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6291 #ifdef FEAT_FIND_ID
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
6292 case PV_DEF: return *curbuf->b_p_def != NUL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6293 ? (char_u *)&(curbuf->b_p_def) : p->var;
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
6294 case PV_INC: return *curbuf->b_p_inc != NUL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6295 ? (char_u *)&(curbuf->b_p_inc) : p->var;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6296 #endif
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
6297 case PV_DICT: return *curbuf->b_p_dict != NUL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6298 ? (char_u *)&(curbuf->b_p_dict) : p->var;
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
6299 case PV_TSR: return *curbuf->b_p_tsr != NUL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6300 ? (char_u *)&(curbuf->b_p_tsr) : p->var;
25990
ac330e2fecc4 patch 8.2.3528: 'thesaurus' and 'thesaurusfunc' do not have the same scope
Bram Moolenaar <Bram@vim.org>
parents: 25984
diff changeset
6301 #ifdef FEAT_COMPL_FUNC
ac330e2fecc4 patch 8.2.3528: 'thesaurus' and 'thesaurusfunc' do not have the same scope
Bram Moolenaar <Bram@vim.org>
parents: 25984
diff changeset
6302 case PV_TSRFU: return *curbuf->b_p_tsrfu != NUL
ac330e2fecc4 patch 8.2.3528: 'thesaurus' and 'thesaurusfunc' do not have the same scope
Bram Moolenaar <Bram@vim.org>
parents: 25984
diff changeset
6303 ? (char_u *)&(curbuf->b_p_tsrfu) : p->var;
ac330e2fecc4 patch 8.2.3528: 'thesaurus' and 'thesaurusfunc' do not have the same scope
Bram Moolenaar <Bram@vim.org>
parents: 25984
diff changeset
6304 #endif
10579
688b97124d23 patch 8.0.0179: cannot have a local value for 'formatprg'
Christian Brabandt <cb@256bit.org>
parents: 10456
diff changeset
6305 case PV_FP: return *curbuf->b_p_fp != NUL
688b97124d23 patch 8.0.0179: cannot have a local value for 'formatprg'
Christian Brabandt <cb@256bit.org>
parents: 10456
diff changeset
6306 ? (char_u *)&(curbuf->b_p_fp) : p->var;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6307 #ifdef FEAT_QUICKFIX
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
6308 case PV_EFM: return *curbuf->b_p_efm != NUL
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
6309 ? (char_u *)&(curbuf->b_p_efm) : p->var;
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
6310 case PV_GP: return *curbuf->b_p_gp != NUL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6311 ? (char_u *)&(curbuf->b_p_gp) : p->var;
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
6312 case PV_MP: return *curbuf->b_p_mp != NUL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6313 ? (char_u *)&(curbuf->b_p_mp) : p->var;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6314 #endif
790
c8680debe1cc updated for version 7.0230
vimboss
parents: 786
diff changeset
6315 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
c8680debe1cc updated for version 7.0230
vimboss
parents: 786
diff changeset
6316 case PV_BEXPR: return *curbuf->b_p_bexpr != NUL
c8680debe1cc updated for version 7.0230
vimboss
parents: 786
diff changeset
6317 ? (char_u *)&(curbuf->b_p_bexpr) : p->var;
c8680debe1cc updated for version 7.0230
vimboss
parents: 786
diff changeset
6318 #endif
2360
d8e4b27cef80 Change 'cryptmethod' from a number to a string option. Make it global-local.
Bram Moolenaar <bram@vim.org>
parents: 2348
diff changeset
6319 #if defined(FEAT_CRYPT)
d8e4b27cef80 Change 'cryptmethod' from a number to a string option. Make it global-local.
Bram Moolenaar <bram@vim.org>
parents: 2348
diff changeset
6320 case PV_CM: return *curbuf->b_p_cm != NUL
d8e4b27cef80 Change 'cryptmethod' from a number to a string option. Make it global-local.
Bram Moolenaar <bram@vim.org>
parents: 2348
diff changeset
6321 ? (char_u *)&(curbuf->b_p_cm) : p->var;
d8e4b27cef80 Change 'cryptmethod' from a number to a string option. Make it global-local.
Bram Moolenaar <bram@vim.org>
parents: 2348
diff changeset
6322 #endif
18574
8b0114ffde2b patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents: 18498
diff changeset
6323 #ifdef FEAT_LINEBREAK
8b0114ffde2b patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents: 18498
diff changeset
6324 case PV_SBR: return *curwin->w_p_sbr != NUL
8b0114ffde2b patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents: 18498
diff changeset
6325 ? (char_u *)&(curwin->w_p_sbr) : p->var;
8b0114ffde2b patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents: 18498
diff changeset
6326 #endif
40
f1d2a58883b9 updated for version 7.0024
vimboss
parents: 39
diff changeset
6327 #ifdef FEAT_STL_OPT
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
6328 case PV_STL: return *curwin->w_p_stl != NUL
40
f1d2a58883b9 updated for version 7.0024
vimboss
parents: 39
diff changeset
6329 ? (char_u *)&(curwin->w_p_stl) : p->var;
f1d2a58883b9 updated for version 7.0024
vimboss
parents: 39
diff changeset
6330 #endif
5446
d0595545e98a updated for version 7.4.073
Bram Moolenaar <bram@vim.org>
parents: 5438
diff changeset
6331 case PV_UL: return curbuf->b_p_ul != NO_LOCAL_UNDOLEVEL
d0595545e98a updated for version 7.4.073
Bram Moolenaar <bram@vim.org>
parents: 5438
diff changeset
6332 ? (char_u *)&(curbuf->b_p_ul) : p->var;
5712
06e5f65c34d8 updated for version 7.4.201
Bram Moolenaar <bram@vim.org>
parents: 5610
diff changeset
6333 case PV_LW: return *curbuf->b_p_lw != NUL
06e5f65c34d8 updated for version 7.4.201
Bram Moolenaar <bram@vim.org>
parents: 5610
diff changeset
6334 ? (char_u *)&(curbuf->b_p_lw) : p->var;
11063
e71d3bdf3bc3 patch 8.0.0420: text garbled when the system encoding differs from 'encoding'
Christian Brabandt <cb@256bit.org>
parents: 10968
diff changeset
6335 case PV_MENC: return *curbuf->b_p_menc != NUL
e71d3bdf3bc3 patch 8.0.0420: text garbled when the system encoding differs from 'encoding'
Christian Brabandt <cb@256bit.org>
parents: 10968
diff changeset
6336 ? (char_u *)&(curbuf->b_p_menc) : p->var;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6337 #ifdef FEAT_ARABIC
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6338 case PV_ARAB: return (char_u *)&(curwin->w_p_arab);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6339 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6340 case PV_LIST: return (char_u *)&(curwin->w_p_list);
23952
44be09b25619 patch 8.2.2518: 'listchars' should be window-local
Bram Moolenaar <Bram@vim.org>
parents: 23821
diff changeset
6341 case PV_LCS: return *curwin->w_p_lcs != NUL
44be09b25619 patch 8.2.2518: 'listchars' should be window-local
Bram Moolenaar <Bram@vim.org>
parents: 23821
diff changeset
6342 ? (char_u *)&(curwin->w_p_lcs) : p->var;
29387
9dce192d1ac2 patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents: 28942
diff changeset
6343 case PV_FCS: return *curwin->w_p_fcs != NUL
9dce192d1ac2 patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents: 28942
diff changeset
6344 ? (char_u *)&(curwin->w_p_fcs) : p->var;
25487
c26ff3203b43 patch 8.2.3280: 'virtualedit' local to buffer is not the best solution
Bram Moolenaar <Bram@vim.org>
parents: 25419
diff changeset
6345 case PV_VE: return *curwin->w_p_ve != NUL
c26ff3203b43 patch 8.2.3280: 'virtualedit' local to buffer is not the best solution
Bram Moolenaar <Bram@vim.org>
parents: 25419
diff changeset
6346 ? (char_u *)&(curwin->w_p_ve) : p->var;
744
07f7b4a7755c updated for version 7.0222
vimboss
parents: 731
diff changeset
6347 #ifdef FEAT_SPELL
07f7b4a7755c updated for version 7.0222
vimboss
parents: 731
diff changeset
6348 case PV_SPELL: return (char_u *)&(curwin->w_p_spell);
07f7b4a7755c updated for version 7.0222
vimboss
parents: 731
diff changeset
6349 #endif
221
7fd4b5df33be updated for version 7.0062
vimboss
parents: 190
diff changeset
6350 #ifdef FEAT_SYN_HL
744
07f7b4a7755c updated for version 7.0222
vimboss
parents: 731
diff changeset
6351 case PV_CUC: return (char_u *)&(curwin->w_p_cuc);
07f7b4a7755c updated for version 7.0222
vimboss
parents: 731
diff changeset
6352 case PV_CUL: return (char_u *)&(curwin->w_p_cul);
18047
6650e3dff8d4 patch 8.1.2019: 'cursorline' always highlights the whole line
Bram Moolenaar <Bram@vim.org>
parents: 17940
diff changeset
6353 case PV_CULOPT: return (char_u *)&(curwin->w_p_culopt);
2314
233eb4412f5d Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
6354 case PV_CC: return (char_u *)&(curwin->w_p_cc);
221
7fd4b5df33be updated for version 7.0062
vimboss
parents: 190
diff changeset
6355 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6356 #ifdef FEAT_DIFF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6357 case PV_DIFF: return (char_u *)&(curwin->w_p_diff);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6358 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6359 #ifdef FEAT_FOLDING
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6360 case PV_FDC: return (char_u *)&(curwin->w_p_fdc);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6361 case PV_FEN: return (char_u *)&(curwin->w_p_fen);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6362 case PV_FDI: return (char_u *)&(curwin->w_p_fdi);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6363 case PV_FDL: return (char_u *)&(curwin->w_p_fdl);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6364 case PV_FDM: return (char_u *)&(curwin->w_p_fdm);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6365 case PV_FML: return (char_u *)&(curwin->w_p_fml);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6366 case PV_FDN: return (char_u *)&(curwin->w_p_fdn);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6367 # ifdef FEAT_EVAL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6368 case PV_FDE: return (char_u *)&(curwin->w_p_fde);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6369 case PV_FDT: return (char_u *)&(curwin->w_p_fdt);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6370 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6371 case PV_FMR: return (char_u *)&(curwin->w_p_fmr);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6372 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6373 case PV_NU: return (char_u *)&(curwin->w_p_nu);
2178
c6f1aa1e9f32 Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents: 2144
diff changeset
6374 case PV_RNU: return (char_u *)&(curwin->w_p_rnu);
13
24d5189d3956 updated for version 7.0005
vimboss
parents: 12
diff changeset
6375 #ifdef FEAT_LINEBREAK
24d5189d3956 updated for version 7.0005
vimboss
parents: 12
diff changeset
6376 case PV_NUW: return (char_u *)&(curwin->w_p_nuw);
24d5189d3956 updated for version 7.0005
vimboss
parents: 12
diff changeset
6377 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6378 case PV_WFH: return (char_u *)&(curwin->w_p_wfh);
782
d20041a02ee5 updated for version 7.0228
vimboss
parents: 767
diff changeset
6379 case PV_WFW: return (char_u *)&(curwin->w_p_wfw);
12477
68d7bc045dbe patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 12469
diff changeset
6380 #if defined(FEAT_QUICKFIX)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6381 case PV_PVW: return (char_u *)&(curwin->w_p_pvw);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6382 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6383 #ifdef FEAT_RIGHTLEFT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6384 case PV_RL: return (char_u *)&(curwin->w_p_rl);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6385 case PV_RLC: return (char_u *)&(curwin->w_p_rlc);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6386 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6387 case PV_SCROLL: return (char_u *)&(curwin->w_p_scr);
30610
6c6ac189a05f patch 9.0.0640: cannot scroll by screen line if a line wraps
Bram Moolenaar <Bram@vim.org>
parents: 30417
diff changeset
6388 case PV_SMS: return (char_u *)&(curwin->w_p_sms);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6389 case PV_WRAP: return (char_u *)&(curwin->w_p_wrap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6390 #ifdef FEAT_LINEBREAK
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6391 case PV_LBR: return (char_u *)&(curwin->w_p_lbr);
5995
ef83b423ebf7 updated for version 7.4.338
Bram Moolenaar <bram@vim.org>
parents: 5991
diff changeset
6392 case PV_BRI: return (char_u *)&(curwin->w_p_bri);
ef83b423ebf7 updated for version 7.4.338
Bram Moolenaar <bram@vim.org>
parents: 5991
diff changeset
6393 case PV_BRIOPT: return (char_u *)&(curwin->w_p_briopt);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6394 #endif
16778
eda4d65f232c patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents: 16764
diff changeset
6395 case PV_WCR: return (char_u *)&(curwin->w_p_wcr);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6396 case PV_SCBIND: return (char_u *)&(curwin->w_p_scb);
2250
1bac28a53fae Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents: 2248
diff changeset
6397 case PV_CRBIND: return (char_u *)&(curwin->w_p_crb);
1bac28a53fae Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents: 2248
diff changeset
6398 #ifdef FEAT_CONCEAL
11621
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents: 11587
diff changeset
6399 case PV_COCU: return (char_u *)&(curwin->w_p_cocu);
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents: 11587
diff changeset
6400 case PV_COLE: return (char_u *)&(curwin->w_p_cole);
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents: 11587
diff changeset
6401 #endif
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents: 11587
diff changeset
6402 #ifdef FEAT_TERMINAL
13742
a34b1323286c patch 8.0.1743: terminal window options are named inconsistently
Christian Brabandt <cb@256bit.org>
parents: 13700
diff changeset
6403 case PV_TWK: return (char_u *)&(curwin->w_p_twk);
a34b1323286c patch 8.0.1743: terminal window options are named inconsistently
Christian Brabandt <cb@256bit.org>
parents: 13700
diff changeset
6404 case PV_TWS: return (char_u *)&(curwin->w_p_tws);
a34b1323286c patch 8.0.1743: terminal window options are named inconsistently
Christian Brabandt <cb@256bit.org>
parents: 13700
diff changeset
6405 case PV_TWSL: return (char_u *)&(curbuf->b_p_twsl);
2250
1bac28a53fae Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents: 2248
diff changeset
6406 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6407
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6408 case PV_AI: return (char_u *)&(curbuf->b_p_ai);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6409 case PV_BIN: return (char_u *)&(curbuf->b_p_bin);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6410 case PV_BOMB: return (char_u *)&(curbuf->b_p_bomb);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6411 case PV_BH: return (char_u *)&(curbuf->b_p_bh);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6412 case PV_BT: return (char_u *)&(curbuf->b_p_bt);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6413 case PV_BL: return (char_u *)&(curbuf->b_p_bl);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6414 case PV_CI: return (char_u *)&(curbuf->b_p_ci);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6415 case PV_CIN: return (char_u *)&(curbuf->b_p_cin);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6416 case PV_CINK: return (char_u *)&(curbuf->b_p_cink);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6417 case PV_CINO: return (char_u *)&(curbuf->b_p_cino);
28353
8bc8071928ed patch 8.2.4702: C++ scope labels are hard-coded
Bram Moolenaar <Bram@vim.org>
parents: 28337
diff changeset
6418 case PV_CINSD: return (char_u *)&(curbuf->b_p_cinsd);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6419 case PV_CINW: return (char_u *)&(curbuf->b_p_cinw);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6420 case PV_COM: return (char_u *)&(curbuf->b_p_com);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6421 #ifdef FEAT_FOLDING
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6422 case PV_CMS: return (char_u *)&(curbuf->b_p_cms);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6423 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6424 case PV_CPT: return (char_u *)&(curbuf->b_p_cpt);
17809
59f8948b7590 patch 8.1.1901: the +insert_expand feature is not always available
Bram Moolenaar <Bram@vim.org>
parents: 17791
diff changeset
6425 #ifdef BACKSLASH_IN_FILENAME
17543
77c3f6428b6c patch 8.1.1769: 'shellslash' is also used for completion
Bram Moolenaar <Bram@vim.org>
parents: 17476
diff changeset
6426 case PV_CSL: return (char_u *)&(curbuf->b_p_csl);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6427 #endif
12
bdeee1504ac1 updated for version 7.0004
vimboss
parents: 11
diff changeset
6428 #ifdef FEAT_COMPL_FUNC
bdeee1504ac1 updated for version 7.0004
vimboss
parents: 11
diff changeset
6429 case PV_CFU: return (char_u *)&(curbuf->b_p_cfu);
502
52e76e2b5b65 updated for version 7.0140
vimboss
parents: 501
diff changeset
6430 case PV_OFU: return (char_u *)&(curbuf->b_p_ofu);
12
bdeee1504ac1 updated for version 7.0004
vimboss
parents: 11
diff changeset
6431 #endif
16447
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16429
diff changeset
6432 #ifdef FEAT_EVAL
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16429
diff changeset
6433 case PV_TFU: return (char_u *)&(curbuf->b_p_tfu);
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16429
diff changeset
6434 #endif
30966
685ee8453163 Add missing entry for the 'endoffile' option.
Bram Moolenaar <Bram@vim.org>
parents: 30853
diff changeset
6435 case PV_EOF: return (char_u *)&(curbuf->b_p_eof);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6436 case PV_EOL: return (char_u *)&(curbuf->b_p_eol);
6933
62ba356c2d4e patch 7.4.785
Bram Moolenaar <bram@vim.org>
parents: 6927
diff changeset
6437 case PV_FIXEOL: return (char_u *)&(curbuf->b_p_fixeol);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6438 case PV_ET: return (char_u *)&(curbuf->b_p_et);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6439 case PV_FENC: return (char_u *)&(curbuf->b_p_fenc);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6440 case PV_FF: return (char_u *)&(curbuf->b_p_ff);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6441 case PV_FT: return (char_u *)&(curbuf->b_p_ft);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6442 case PV_FO: return (char_u *)&(curbuf->b_p_fo);
41
f529edb9bab3 updated for version 7.0025
vimboss
parents: 40
diff changeset
6443 case PV_FLP: return (char_u *)&(curbuf->b_p_flp);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6444 case PV_IMI: return (char_u *)&(curbuf->b_p_iminsert);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6445 case PV_IMS: return (char_u *)&(curbuf->b_p_imsearch);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6446 case PV_INF: return (char_u *)&(curbuf->b_p_inf);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6447 case PV_ISK: return (char_u *)&(curbuf->b_p_isk);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6448 #ifdef FEAT_FIND_ID
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6449 # ifdef FEAT_EVAL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6450 case PV_INEX: return (char_u *)&(curbuf->b_p_inex);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6451 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6452 #endif
28942
6cdf55afaae9 patch 8.2.4993: smart/C/lisp indenting is optional
Bram Moolenaar <Bram@vim.org>
parents: 28919
diff changeset
6453 #if defined(FEAT_EVAL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6454 case PV_INDE: return (char_u *)&(curbuf->b_p_inde);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6455 case PV_INDK: return (char_u *)&(curbuf->b_p_indk);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6456 #endif
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
6457 #ifdef FEAT_EVAL
667
9090f866cd57 updated for version 7.0197
vimboss
parents: 665
diff changeset
6458 case PV_FEX: return (char_u *)&(curbuf->b_p_fex);
9090f866cd57 updated for version 7.0197
vimboss
parents: 665
diff changeset
6459 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6460 #ifdef FEAT_CRYPT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6461 case PV_KEY: return (char_u *)&(curbuf->b_p_key);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6462 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6463 case PV_LISP: return (char_u *)&(curbuf->b_p_lisp);
30853
40df8a6515f6 patch 9.0.0761: cannot use 'indentexpr' for Lisp indenting
Bram Moolenaar <Bram@vim.org>
parents: 30825
diff changeset
6464 case PV_LOP: return (char_u *)&(curbuf->b_p_lop);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6465 case PV_ML: return (char_u *)&(curbuf->b_p_ml);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6466 case PV_MPS: return (char_u *)&(curbuf->b_p_mps);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6467 case PV_MA: return (char_u *)&(curbuf->b_p_ma);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6468 case PV_MOD: return (char_u *)&(curbuf->b_changed);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6469 case PV_NF: return (char_u *)&(curbuf->b_p_nf);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6470 case PV_PI: return (char_u *)&(curbuf->b_p_pi);
12
bdeee1504ac1 updated for version 7.0004
vimboss
parents: 11
diff changeset
6471 case PV_QE: return (char_u *)&(curbuf->b_p_qe);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6472 case PV_RO: return (char_u *)&(curbuf->b_p_ro);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6473 case PV_SI: return (char_u *)&(curbuf->b_p_si);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6474 case PV_SN: return (char_u *)&(curbuf->b_p_sn);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6475 case PV_STS: return (char_u *)&(curbuf->b_p_sts);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6476 case PV_SUA: return (char_u *)&(curbuf->b_p_sua);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6477 case PV_SWF: return (char_u *)&(curbuf->b_p_swf);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6478 #ifdef FEAT_SYN_HL
410
c60ba877860b updated for version 7.0107
vimboss
parents: 402
diff changeset
6479 case PV_SMC: return (char_u *)&(curbuf->b_p_smc);
744
07f7b4a7755c updated for version 7.0222
vimboss
parents: 731
diff changeset
6480 case PV_SYN: return (char_u *)&(curbuf->b_p_syn);
07f7b4a7755c updated for version 7.0222
vimboss
parents: 731
diff changeset
6481 #endif
07f7b4a7755c updated for version 7.0222
vimboss
parents: 731
diff changeset
6482 #ifdef FEAT_SPELL
2250
1bac28a53fae Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents: 2248
diff changeset
6483 case PV_SPC: return (char_u *)&(curwin->w_s->b_p_spc);
1bac28a53fae Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents: 2248
diff changeset
6484 case PV_SPF: return (char_u *)&(curwin->w_s->b_p_spf);
1bac28a53fae Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents: 2248
diff changeset
6485 case PV_SPL: return (char_u *)&(curwin->w_s->b_p_spl);
20802
ed00f0fbdaef patch 8.2.0953: spell checking doesn't work for CamelCased words
Bram Moolenaar <Bram@vim.org>
parents: 20603
diff changeset
6486 case PV_SPO: return (char_u *)&(curwin->w_s->b_p_spo);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6487 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6488 case PV_SW: return (char_u *)&(curbuf->b_p_sw);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6489 case PV_TS: return (char_u *)&(curbuf->b_p_ts);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6490 case PV_TW: return (char_u *)&(curbuf->b_p_tw);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6491 case PV_TX: return (char_u *)&(curbuf->b_p_tx);
2214
f8222d1f9a73 Included patch for persistent undo. Lots of changes and added test.
Bram Moolenaar <bram@vim.org>
parents: 2184
diff changeset
6492 #ifdef FEAT_PERSISTENT_UNDO
f8222d1f9a73 Included patch for persistent undo. Lots of changes and added test.
Bram Moolenaar <bram@vim.org>
parents: 2184
diff changeset
6493 case PV_UDF: return (char_u *)&(curbuf->b_p_udf);
f8222d1f9a73 Included patch for persistent undo. Lots of changes and added test.
Bram Moolenaar <bram@vim.org>
parents: 2184
diff changeset
6494 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6495 case PV_WM: return (char_u *)&(curbuf->b_p_wm);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6496 #ifdef FEAT_KEYMAP
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6497 case PV_KMAP: return (char_u *)&(curbuf->b_p_keymap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6498 #endif
9852
4eea48b76d03 commit https://github.com/vim/vim/commit/95ec9d6a6ab3117d60ff638670a803d43974ba51
Christian Brabandt <cb@256bit.org>
parents: 9798
diff changeset
6499 #ifdef FEAT_SIGNS
4eea48b76d03 commit https://github.com/vim/vim/commit/95ec9d6a6ab3117d60ff638670a803d43974ba51
Christian Brabandt <cb@256bit.org>
parents: 9798
diff changeset
6500 case PV_SCL: return (char_u *)&(curwin->w_p_scl);
4eea48b76d03 commit https://github.com/vim/vim/commit/95ec9d6a6ab3117d60ff638670a803d43974ba51
Christian Brabandt <cb@256bit.org>
parents: 9798
diff changeset
6501 #endif
14175
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
6502 #ifdef FEAT_VARTABS
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
6503 case PV_VSTS: return (char_u *)&(curbuf->b_p_vsts);
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
6504 case PV_VTS: return (char_u *)&(curbuf->b_p_vts);
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
6505 #endif
26913
d4e61d61afd9 patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26883
diff changeset
6506 default: iemsg(_(e_get_varp_error));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6507 }
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
6508 // always return a valid pointer to avoid a crash!
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6509 return (char_u *)&(curbuf->b_p_wm);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6510 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6511
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6512 /*
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
6513 * Return a pointer to the variable for option at 'opt_idx'
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
6514 */
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
6515 char_u *
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
6516 get_option_var(int opt_idx)
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
6517 {
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
6518 return options[opt_idx].var;
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
6519 }
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
6520
27018
268f6a3511df patch 8.2.4038: various code not used when features are disabled
Bram Moolenaar <Bram@vim.org>
parents: 26966
diff changeset
6521 #if defined(FEAT_EVAL) || defined(PROTO)
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
6522 /*
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
6523 * Return the full name of the option at 'opt_idx'
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
6524 */
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
6525 char_u *
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
6526 get_option_fullname(int opt_idx)
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
6527 {
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
6528 return (char_u *)options[opt_idx].fullname;
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
6529 }
27018
268f6a3511df patch 8.2.4038: various code not used when features are disabled
Bram Moolenaar <Bram@vim.org>
parents: 26966
diff changeset
6530 #endif
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
6531
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
6532 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6533 * Get the value of 'equalprg', either the buffer-local one or the global one.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6534 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6535 char_u *
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
6536 get_equalprg(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6537 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6538 if (*curbuf->b_p_ep == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6539 return p_ep;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6540 return curbuf->b_p_ep;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6541 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6542
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6543 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6544 * Copy options from one window to another.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6545 * Used when splitting a window.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6546 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6547 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
6548 win_copy_options(win_T *wp_from, win_T *wp_to)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6549 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6550 copy_winopt(&wp_from->w_onebuf_opt, &wp_to->w_onebuf_opt);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6551 copy_winopt(&wp_from->w_allbuf_opt, &wp_to->w_allbuf_opt);
18156
c81370b3ede4 patch 8.1.2073: when editing a buffer 'colorcolumn' may not work
Bram Moolenaar <Bram@vim.org>
parents: 18100
diff changeset
6552 after_copy_winopt(wp_to);
c81370b3ede4 patch 8.1.2073: when editing a buffer 'colorcolumn' may not work
Bram Moolenaar <Bram@vim.org>
parents: 18100
diff changeset
6553 }
c81370b3ede4 patch 8.1.2073: when editing a buffer 'colorcolumn' may not work
Bram Moolenaar <Bram@vim.org>
parents: 18100
diff changeset
6554
c81370b3ede4 patch 8.1.2073: when editing a buffer 'colorcolumn' may not work
Bram Moolenaar <Bram@vim.org>
parents: 18100
diff changeset
6555 /*
c81370b3ede4 patch 8.1.2073: when editing a buffer 'colorcolumn' may not work
Bram Moolenaar <Bram@vim.org>
parents: 18100
diff changeset
6556 * After copying window options: update variables depending on options.
c81370b3ede4 patch 8.1.2073: when editing a buffer 'colorcolumn' may not work
Bram Moolenaar <Bram@vim.org>
parents: 18100
diff changeset
6557 */
c81370b3ede4 patch 8.1.2073: when editing a buffer 'colorcolumn' may not work
Bram Moolenaar <Bram@vim.org>
parents: 18100
diff changeset
6558 void
27659
b5ebc885c25c patch 8.2.4355: unnecessary call to check_colorcolumn()
Bram Moolenaar <Bram@vim.org>
parents: 27509
diff changeset
6559 after_copy_winopt(win_T *wp)
18156
c81370b3ede4 patch 8.1.2073: when editing a buffer 'colorcolumn' may not work
Bram Moolenaar <Bram@vim.org>
parents: 18100
diff changeset
6560 {
c81370b3ede4 patch 8.1.2073: when editing a buffer 'colorcolumn' may not work
Bram Moolenaar <Bram@vim.org>
parents: 18100
diff changeset
6561 #ifdef FEAT_LINEBREAK
c81370b3ede4 patch 8.1.2073: when editing a buffer 'colorcolumn' may not work
Bram Moolenaar <Bram@vim.org>
parents: 18100
diff changeset
6562 briopt_check(wp);
6162
e60327caf909 updated for version 7.4.417
Bram Moolenaar <bram@vim.org>
parents: 6130
diff changeset
6563 #endif
18068
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
6564 #ifdef FEAT_SYN_HL
18156
c81370b3ede4 patch 8.1.2073: when editing a buffer 'colorcolumn' may not work
Bram Moolenaar <Bram@vim.org>
parents: 18100
diff changeset
6565 fill_culopt_flags(NULL, wp);
c81370b3ede4 patch 8.1.2073: when editing a buffer 'colorcolumn' may not work
Bram Moolenaar <Bram@vim.org>
parents: 18100
diff changeset
6566 check_colorcolumn(wp);
18068
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
6567 #endif
29395
caaf5b270018 patch 9.0.0040: use of set_chars_option() is confusing
Bram Moolenaar <Bram@vim.org>
parents: 29387
diff changeset
6568 set_chars_option(wp, &wp->w_p_lcs, TRUE);
caaf5b270018 patch 9.0.0040: use of set_chars_option() is confusing
Bram Moolenaar <Bram@vim.org>
parents: 29387
diff changeset
6569 set_chars_option(wp, &wp->w_p_fcs, TRUE);
29387
9dce192d1ac2 patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents: 28942
diff changeset
6570 }
9dce192d1ac2 patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents: 28942
diff changeset
6571
9dce192d1ac2 patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents: 28942
diff changeset
6572 static char_u *
9dce192d1ac2 patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents: 28942
diff changeset
6573 copy_option_val(char_u *val)
9dce192d1ac2 patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents: 28942
diff changeset
6574 {
9dce192d1ac2 patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents: 28942
diff changeset
6575 if (val == empty_option)
9dce192d1ac2 patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents: 28942
diff changeset
6576 return empty_option; // no need to allocate memory
9dce192d1ac2 patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents: 28942
diff changeset
6577 return vim_strsave(val);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6578 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6579
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6580 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6581 * Copy the options from one winopt_T to another.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6582 * Doesn't free the old option values in "to", use clear_winopt() for that.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6583 * The 'scroll' option is not copied, because it depends on the window height.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6584 * The 'previewwindow' option is reset, there can be only one preview window.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6585 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6586 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
6587 copy_winopt(winopt_T *from, winopt_T *to)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6588 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6589 #ifdef FEAT_ARABIC
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6590 to->wo_arab = from->wo_arab;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6591 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6592 to->wo_list = from->wo_list;
29387
9dce192d1ac2 patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents: 28942
diff changeset
6593 to->wo_lcs = copy_option_val(from->wo_lcs);
9dce192d1ac2 patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents: 28942
diff changeset
6594 to->wo_fcs = copy_option_val(from->wo_fcs);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6595 to->wo_nu = from->wo_nu;
2178
c6f1aa1e9f32 Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents: 2144
diff changeset
6596 to->wo_rnu = from->wo_rnu;
29387
9dce192d1ac2 patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents: 28942
diff changeset
6597 to->wo_ve = copy_option_val(from->wo_ve);
25487
c26ff3203b43 patch 8.2.3280: 'virtualedit' local to buffer is not the best solution
Bram Moolenaar <Bram@vim.org>
parents: 25419
diff changeset
6598 to->wo_ve_flags = from->wo_ve_flags;
13
24d5189d3956 updated for version 7.0005
vimboss
parents: 12
diff changeset
6599 #ifdef FEAT_LINEBREAK
24d5189d3956 updated for version 7.0005
vimboss
parents: 12
diff changeset
6600 to->wo_nuw = from->wo_nuw;
24d5189d3956 updated for version 7.0005
vimboss
parents: 12
diff changeset
6601 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6602 #ifdef FEAT_RIGHTLEFT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6603 to->wo_rl = from->wo_rl;
29387
9dce192d1ac2 patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents: 28942
diff changeset
6604 to->wo_rlc = copy_option_val(from->wo_rlc);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6605 #endif
18574
8b0114ffde2b patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents: 18498
diff changeset
6606 #ifdef FEAT_LINEBREAK
29387
9dce192d1ac2 patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents: 28942
diff changeset
6607 to->wo_sbr = copy_option_val(from->wo_sbr);
18574
8b0114ffde2b patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents: 18498
diff changeset
6608 #endif
40
f1d2a58883b9 updated for version 7.0024
vimboss
parents: 39
diff changeset
6609 #ifdef FEAT_STL_OPT
29387
9dce192d1ac2 patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents: 28942
diff changeset
6610 to->wo_stl = copy_option_val(from->wo_stl);
40
f1d2a58883b9 updated for version 7.0024
vimboss
parents: 39
diff changeset
6611 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6612 to->wo_wrap = from->wo_wrap;
5102
11d0c6df1d7b updated for version 7.3.1294
Bram Moolenaar <bram@vim.org>
parents: 5070
diff changeset
6613 #ifdef FEAT_DIFF
11d0c6df1d7b updated for version 7.3.1294
Bram Moolenaar <bram@vim.org>
parents: 5070
diff changeset
6614 to->wo_wrap_save = from->wo_wrap_save;
11d0c6df1d7b updated for version 7.3.1294
Bram Moolenaar <bram@vim.org>
parents: 5070
diff changeset
6615 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6616 #ifdef FEAT_LINEBREAK
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6617 to->wo_lbr = from->wo_lbr;
5995
ef83b423ebf7 updated for version 7.4.338
Bram Moolenaar <bram@vim.org>
parents: 5991
diff changeset
6618 to->wo_bri = from->wo_bri;
29387
9dce192d1ac2 patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents: 28942
diff changeset
6619 to->wo_briopt = copy_option_val(from->wo_briopt);
9dce192d1ac2 patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents: 28942
diff changeset
6620 #endif
9dce192d1ac2 patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents: 28942
diff changeset
6621 to->wo_wcr = copy_option_val(from->wo_wcr);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6622 to->wo_scb = from->wo_scb;
5102
11d0c6df1d7b updated for version 7.3.1294
Bram Moolenaar <bram@vim.org>
parents: 5070
diff changeset
6623 to->wo_scb_save = from->wo_scb_save;
30618
c2031ad5ed54 patch 9.0.0644: 'smoothscroll' is not copied to a new window on :split
Bram Moolenaar <Bram@vim.org>
parents: 30610
diff changeset
6624 to->wo_sms = from->wo_sms;
2651
b254cfdd7405 updated for version 7.3.071
Bram Moolenaar <bram@vim.org>
parents: 2599
diff changeset
6625 to->wo_crb = from->wo_crb;
5102
11d0c6df1d7b updated for version 7.3.1294
Bram Moolenaar <bram@vim.org>
parents: 5070
diff changeset
6626 to->wo_crb_save = from->wo_crb_save;
744
07f7b4a7755c updated for version 7.0222
vimboss
parents: 731
diff changeset
6627 #ifdef FEAT_SPELL
07f7b4a7755c updated for version 7.0222
vimboss
parents: 731
diff changeset
6628 to->wo_spell = from->wo_spell;
07f7b4a7755c updated for version 7.0222
vimboss
parents: 731
diff changeset
6629 #endif
221
7fd4b5df33be updated for version 7.0062
vimboss
parents: 190
diff changeset
6630 #ifdef FEAT_SYN_HL
744
07f7b4a7755c updated for version 7.0222
vimboss
parents: 731
diff changeset
6631 to->wo_cuc = from->wo_cuc;
07f7b4a7755c updated for version 7.0222
vimboss
parents: 731
diff changeset
6632 to->wo_cul = from->wo_cul;
29387
9dce192d1ac2 patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents: 28942
diff changeset
6633 to->wo_culopt = copy_option_val(from->wo_culopt);
9dce192d1ac2 patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents: 28942
diff changeset
6634 to->wo_cc = copy_option_val(from->wo_cc);
221
7fd4b5df33be updated for version 7.0062
vimboss
parents: 190
diff changeset
6635 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6636 #ifdef FEAT_DIFF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6637 to->wo_diff = from->wo_diff;
5102
11d0c6df1d7b updated for version 7.3.1294
Bram Moolenaar <bram@vim.org>
parents: 5070
diff changeset
6638 to->wo_diff_saved = from->wo_diff_saved;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6639 #endif
2378
85b7dc8da5eb Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents: 2362
diff changeset
6640 #ifdef FEAT_CONCEAL
29387
9dce192d1ac2 patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents: 28942
diff changeset
6641 to->wo_cocu = copy_option_val(from->wo_cocu);
2379
b67b0b5a93d3 Window split didn't copy the value of 'conceallevel'.
Bram Moolenaar <bram@vim.org>
parents: 2378
diff changeset
6642 to->wo_cole = from->wo_cole;
2378
85b7dc8da5eb Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents: 2362
diff changeset
6643 #endif
11621
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents: 11587
diff changeset
6644 #ifdef FEAT_TERMINAL
29387
9dce192d1ac2 patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents: 28942
diff changeset
6645 to->wo_twk = copy_option_val(from->wo_twk);
9dce192d1ac2 patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents: 28942
diff changeset
6646 to->wo_tws = copy_option_val(from->wo_tws);
11621
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents: 11587
diff changeset
6647 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6648 #ifdef FEAT_FOLDING
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6649 to->wo_fdc = from->wo_fdc;
5102
11d0c6df1d7b updated for version 7.3.1294
Bram Moolenaar <bram@vim.org>
parents: 5070
diff changeset
6650 to->wo_fdc_save = from->wo_fdc_save;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6651 to->wo_fen = from->wo_fen;
5102
11d0c6df1d7b updated for version 7.3.1294
Bram Moolenaar <bram@vim.org>
parents: 5070
diff changeset
6652 to->wo_fen_save = from->wo_fen_save;
29387
9dce192d1ac2 patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents: 28942
diff changeset
6653 to->wo_fdi = copy_option_val(from->wo_fdi);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6654 to->wo_fml = from->wo_fml;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6655 to->wo_fdl = from->wo_fdl;
5102
11d0c6df1d7b updated for version 7.3.1294
Bram Moolenaar <bram@vim.org>
parents: 5070
diff changeset
6656 to->wo_fdl_save = from->wo_fdl_save;
29387
9dce192d1ac2 patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents: 28942
diff changeset
6657 to->wo_fdm = copy_option_val(from->wo_fdm);
5102
11d0c6df1d7b updated for version 7.3.1294
Bram Moolenaar <bram@vim.org>
parents: 5070
diff changeset
6658 to->wo_fdm_save = from->wo_diff_saved
29387
9dce192d1ac2 patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents: 28942
diff changeset
6659 ? vim_strsave(from->wo_fdm_save) : empty_option;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6660 to->wo_fdn = from->wo_fdn;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6661 # ifdef FEAT_EVAL
29387
9dce192d1ac2 patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents: 28942
diff changeset
6662 to->wo_fde = copy_option_val(from->wo_fde);
9dce192d1ac2 patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents: 28942
diff changeset
6663 to->wo_fdt = copy_option_val(from->wo_fdt);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6664 # endif
29387
9dce192d1ac2 patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents: 28942
diff changeset
6665 to->wo_fmr = copy_option_val(from->wo_fmr);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6666 #endif
9852
4eea48b76d03 commit https://github.com/vim/vim/commit/95ec9d6a6ab3117d60ff638670a803d43974ba51
Christian Brabandt <cb@256bit.org>
parents: 9798
diff changeset
6667 #ifdef FEAT_SIGNS
29387
9dce192d1ac2 patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents: 28942
diff changeset
6668 to->wo_scl = copy_option_val(from->wo_scl);
9852
4eea48b76d03 commit https://github.com/vim/vim/commit/95ec9d6a6ab3117d60ff638670a803d43974ba51
Christian Brabandt <cb@256bit.org>
parents: 9798
diff changeset
6669 #endif
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6670
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6671 #ifdef FEAT_EVAL
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6672 // Copy the script context so that we know where the value was last set.
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6673 mch_memmove(to->wo_script_ctx, from->wo_script_ctx,
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6674 sizeof(to->wo_script_ctx));
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6675 #endif
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
6676 check_winopt(to); // don't want NULL pointers
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6677 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6678
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6679 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6680 * Check string options in a window for a NULL value.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6681 */
17789
0f7ae8010787 patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents: 17781
diff changeset
6682 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
6683 check_win_options(win_T *win)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6684 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6685 check_winopt(&win->w_onebuf_opt);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6686 check_winopt(&win->w_allbuf_opt);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6687 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6688
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6689 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6690 * Check for NULL pointers in a winopt_T and replace them with empty_option.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6691 */
5997
fd7110d0c3bf updated for version 7.4.339
Bram Moolenaar <bram@vim.org>
parents: 5995
diff changeset
6692 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
6693 check_winopt(winopt_T *wop UNUSED)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6694 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6695 #ifdef FEAT_FOLDING
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6696 check_string_option(&wop->wo_fdi);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6697 check_string_option(&wop->wo_fdm);
5102
11d0c6df1d7b updated for version 7.3.1294
Bram Moolenaar <bram@vim.org>
parents: 5070
diff changeset
6698 check_string_option(&wop->wo_fdm_save);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6699 # ifdef FEAT_EVAL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6700 check_string_option(&wop->wo_fde);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6701 check_string_option(&wop->wo_fdt);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6702 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6703 check_string_option(&wop->wo_fmr);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6704 #endif
9852
4eea48b76d03 commit https://github.com/vim/vim/commit/95ec9d6a6ab3117d60ff638670a803d43974ba51
Christian Brabandt <cb@256bit.org>
parents: 9798
diff changeset
6705 #ifdef FEAT_SIGNS
4eea48b76d03 commit https://github.com/vim/vim/commit/95ec9d6a6ab3117d60ff638670a803d43974ba51
Christian Brabandt <cb@256bit.org>
parents: 9798
diff changeset
6706 check_string_option(&wop->wo_scl);
4eea48b76d03 commit https://github.com/vim/vim/commit/95ec9d6a6ab3117d60ff638670a803d43974ba51
Christian Brabandt <cb@256bit.org>
parents: 9798
diff changeset
6707 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6708 #ifdef FEAT_RIGHTLEFT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6709 check_string_option(&wop->wo_rlc);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6710 #endif
18574
8b0114ffde2b patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents: 18498
diff changeset
6711 #ifdef FEAT_LINEBREAK
8b0114ffde2b patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents: 18498
diff changeset
6712 check_string_option(&wop->wo_sbr);
8b0114ffde2b patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents: 18498
diff changeset
6713 #endif
40
f1d2a58883b9 updated for version 7.0024
vimboss
parents: 39
diff changeset
6714 #ifdef FEAT_STL_OPT
f1d2a58883b9 updated for version 7.0024
vimboss
parents: 39
diff changeset
6715 check_string_option(&wop->wo_stl);
f1d2a58883b9 updated for version 7.0024
vimboss
parents: 39
diff changeset
6716 #endif
2314
233eb4412f5d Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
6717 #ifdef FEAT_SYN_HL
18047
6650e3dff8d4 patch 8.1.2019: 'cursorline' always highlights the whole line
Bram Moolenaar <Bram@vim.org>
parents: 17940
diff changeset
6718 check_string_option(&wop->wo_culopt);
2314
233eb4412f5d Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
6719 check_string_option(&wop->wo_cc);
233eb4412f5d Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
6720 #endif
2378
85b7dc8da5eb Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents: 2362
diff changeset
6721 #ifdef FEAT_CONCEAL
85b7dc8da5eb Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents: 2362
diff changeset
6722 check_string_option(&wop->wo_cocu);
85b7dc8da5eb Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents: 2362
diff changeset
6723 #endif
11621
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents: 11587
diff changeset
6724 #ifdef FEAT_TERMINAL
13742
a34b1323286c patch 8.0.1743: terminal window options are named inconsistently
Christian Brabandt <cb@256bit.org>
parents: 13700
diff changeset
6725 check_string_option(&wop->wo_twk);
a34b1323286c patch 8.0.1743: terminal window options are named inconsistently
Christian Brabandt <cb@256bit.org>
parents: 13700
diff changeset
6726 check_string_option(&wop->wo_tws);
11621
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents: 11587
diff changeset
6727 #endif
5995
ef83b423ebf7 updated for version 7.4.338
Bram Moolenaar <bram@vim.org>
parents: 5991
diff changeset
6728 #ifdef FEAT_LINEBREAK
ef83b423ebf7 updated for version 7.4.338
Bram Moolenaar <bram@vim.org>
parents: 5991
diff changeset
6729 check_string_option(&wop->wo_briopt);
ef83b423ebf7 updated for version 7.4.338
Bram Moolenaar <bram@vim.org>
parents: 5991
diff changeset
6730 #endif
16778
eda4d65f232c patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents: 16764
diff changeset
6731 check_string_option(&wop->wo_wcr);
23952
44be09b25619 patch 8.2.2518: 'listchars' should be window-local
Bram Moolenaar <Bram@vim.org>
parents: 23821
diff changeset
6732 check_string_option(&wop->wo_lcs);
29387
9dce192d1ac2 patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents: 28942
diff changeset
6733 check_string_option(&wop->wo_fcs);
25487
c26ff3203b43 patch 8.2.3280: 'virtualedit' local to buffer is not the best solution
Bram Moolenaar <Bram@vim.org>
parents: 25419
diff changeset
6734 check_string_option(&wop->wo_ve);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6735 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6736
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6737 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6738 * Free the allocated memory inside a winopt_T.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6739 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6740 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
6741 clear_winopt(winopt_T *wop UNUSED)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6742 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6743 #ifdef FEAT_FOLDING
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6744 clear_string_option(&wop->wo_fdi);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6745 clear_string_option(&wop->wo_fdm);
5102
11d0c6df1d7b updated for version 7.3.1294
Bram Moolenaar <bram@vim.org>
parents: 5070
diff changeset
6746 clear_string_option(&wop->wo_fdm_save);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6747 # ifdef FEAT_EVAL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6748 clear_string_option(&wop->wo_fde);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6749 clear_string_option(&wop->wo_fdt);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6750 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6751 clear_string_option(&wop->wo_fmr);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6752 #endif
9852
4eea48b76d03 commit https://github.com/vim/vim/commit/95ec9d6a6ab3117d60ff638670a803d43974ba51
Christian Brabandt <cb@256bit.org>
parents: 9798
diff changeset
6753 #ifdef FEAT_SIGNS
4eea48b76d03 commit https://github.com/vim/vim/commit/95ec9d6a6ab3117d60ff638670a803d43974ba51
Christian Brabandt <cb@256bit.org>
parents: 9798
diff changeset
6754 clear_string_option(&wop->wo_scl);
4eea48b76d03 commit https://github.com/vim/vim/commit/95ec9d6a6ab3117d60ff638670a803d43974ba51
Christian Brabandt <cb@256bit.org>
parents: 9798
diff changeset
6755 #endif
5995
ef83b423ebf7 updated for version 7.4.338
Bram Moolenaar <bram@vim.org>
parents: 5991
diff changeset
6756 #ifdef FEAT_LINEBREAK
ef83b423ebf7 updated for version 7.4.338
Bram Moolenaar <bram@vim.org>
parents: 5991
diff changeset
6757 clear_string_option(&wop->wo_briopt);
ef83b423ebf7 updated for version 7.4.338
Bram Moolenaar <bram@vim.org>
parents: 5991
diff changeset
6758 #endif
16778
eda4d65f232c patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents: 16764
diff changeset
6759 clear_string_option(&wop->wo_wcr);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6760 #ifdef FEAT_RIGHTLEFT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6761 clear_string_option(&wop->wo_rlc);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6762 #endif
18574
8b0114ffde2b patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents: 18498
diff changeset
6763 #ifdef FEAT_LINEBREAK
8b0114ffde2b patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents: 18498
diff changeset
6764 clear_string_option(&wop->wo_sbr);
8b0114ffde2b patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents: 18498
diff changeset
6765 #endif
40
f1d2a58883b9 updated for version 7.0024
vimboss
parents: 39
diff changeset
6766 #ifdef FEAT_STL_OPT
f1d2a58883b9 updated for version 7.0024
vimboss
parents: 39
diff changeset
6767 clear_string_option(&wop->wo_stl);
f1d2a58883b9 updated for version 7.0024
vimboss
parents: 39
diff changeset
6768 #endif
2314
233eb4412f5d Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
6769 #ifdef FEAT_SYN_HL
18047
6650e3dff8d4 patch 8.1.2019: 'cursorline' always highlights the whole line
Bram Moolenaar <Bram@vim.org>
parents: 17940
diff changeset
6770 clear_string_option(&wop->wo_culopt);
2314
233eb4412f5d Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
6771 clear_string_option(&wop->wo_cc);
233eb4412f5d Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
6772 #endif
2378
85b7dc8da5eb Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents: 2362
diff changeset
6773 #ifdef FEAT_CONCEAL
85b7dc8da5eb Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents: 2362
diff changeset
6774 clear_string_option(&wop->wo_cocu);
85b7dc8da5eb Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents: 2362
diff changeset
6775 #endif
11621
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents: 11587
diff changeset
6776 #ifdef FEAT_TERMINAL
13742
a34b1323286c patch 8.0.1743: terminal window options are named inconsistently
Christian Brabandt <cb@256bit.org>
parents: 13700
diff changeset
6777 clear_string_option(&wop->wo_twk);
a34b1323286c patch 8.0.1743: terminal window options are named inconsistently
Christian Brabandt <cb@256bit.org>
parents: 13700
diff changeset
6778 clear_string_option(&wop->wo_tws);
11621
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents: 11587
diff changeset
6779 #endif
23952
44be09b25619 patch 8.2.2518: 'listchars' should be window-local
Bram Moolenaar <Bram@vim.org>
parents: 23821
diff changeset
6780 clear_string_option(&wop->wo_lcs);
29387
9dce192d1ac2 patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents: 28942
diff changeset
6781 clear_string_option(&wop->wo_fcs);
25487
c26ff3203b43 patch 8.2.3280: 'virtualedit' local to buffer is not the best solution
Bram Moolenaar <Bram@vim.org>
parents: 25419
diff changeset
6782 clear_string_option(&wop->wo_ve);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6783 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6784
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6785 #ifdef FEAT_EVAL
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6786 // Index into the options table for a buffer-local option enum.
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6787 static int buf_opt_idx[BV_COUNT];
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6788 # define COPY_OPT_SCTX(buf, bv) buf->b_p_script_ctx[bv] = options[buf_opt_idx[bv]].script_ctx
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6789
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6790 /*
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6791 * Initialize buf_opt_idx[] if not done already.
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6792 */
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6793 static void
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6794 init_buf_opt_idx(void)
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6795 {
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6796 static int did_init_buf_opt_idx = FALSE;
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6797 int i;
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6798
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6799 if (did_init_buf_opt_idx)
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6800 return;
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6801 did_init_buf_opt_idx = TRUE;
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6802 for (i = 0; !istermoption_idx(i); i++)
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6803 if (options[i].indir & PV_BUF)
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6804 buf_opt_idx[options[i].indir & PV_MASK] = i;
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6805 }
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6806 #else
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6807 # define COPY_OPT_SCTX(buf, bv)
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6808 #endif
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6809
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6810 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6811 * Copy global option values to local options for one buffer.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6812 * Used when creating a new buffer and sometimes when entering a buffer.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6813 * flags:
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6814 * BCO_ENTER We will enter the buffer "buf".
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6815 * BCO_ALWAYS Always copy the options, but only set b_p_initialized when
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6816 * appropriate.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6817 * BCO_NOHELP Don't copy the values to a help buffer.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6818 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6819 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
6820 buf_copy_options(buf_T *buf, int flags)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6821 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6822 int should_copy = TRUE;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
6823 char_u *save_p_isk = NULL; // init for GCC
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6824 int dont_do_help;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6825 int did_isk = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6826
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6827 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6828 * Skip this when the option defaults have not been set yet. Happens when
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6829 * main() allocates the first buffer.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6830 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6831 if (p_cpo != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6832 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6833 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6834 * Always copy when entering and 'cpo' contains 'S'.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6835 * Don't copy when already initialized.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6836 * Don't copy when 'cpo' contains 's' and not entering.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6837 * 'S' BCO_ENTER initialized 's' should_copy
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6838 * yes yes X X TRUE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6839 * yes no yes X FALSE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6840 * no X yes X FALSE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6841 * X no no yes FALSE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6842 * X no no no TRUE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6843 * no yes no X TRUE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6844 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6845 if ((vim_strchr(p_cpo, CPO_BUFOPTGLOB) == NULL || !(flags & BCO_ENTER))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6846 && (buf->b_p_initialized
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6847 || (!(flags & BCO_ENTER)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6848 && vim_strchr(p_cpo, CPO_BUFOPT) != NULL)))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6849 should_copy = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6850
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6851 if (should_copy || (flags & BCO_ALWAYS))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6852 {
18384
63dd78ea6610 patch 8.1.2186: error for bad regexp even though regexp is not used
Bram Moolenaar <Bram@vim.org>
parents: 18380
diff changeset
6853 #ifdef FEAT_EVAL
20007
aadd1cae2ff5 patch 8.2.0559: clearing a struct is verbose
Bram Moolenaar <Bram@vim.org>
parents: 19405
diff changeset
6854 CLEAR_FIELD(buf->b_p_script_ctx);
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6855 init_buf_opt_idx();
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6856 #endif
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6857 // Don't copy the options specific to a help buffer when
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6858 // BCO_NOHELP is given or the options were initialized already
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6859 // (jumping back to a help file with CTRL-T or CTRL-O)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6860 dont_do_help = ((flags & BCO_NOHELP) && buf->b_help)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6861 || buf->b_p_initialized;
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6862 if (dont_do_help) // don't free b_p_isk
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6863 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6864 save_p_isk = buf->b_p_isk;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6865 buf->b_p_isk = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6866 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6867 /*
14479
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14381
diff changeset
6868 * Always free the allocated strings. If not already initialized,
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14381
diff changeset
6869 * reset 'readonly' and copy 'fileformat'.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6870 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6871 if (!buf->b_p_initialized)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6872 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6873 free_buf_options(buf, TRUE);
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
6874 buf->b_p_ro = FALSE; // don't copy readonly
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6875 buf->b_p_tx = p_tx;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6876 buf->b_p_fenc = vim_strsave(p_fenc);
10268
c55a7232fb48 commit https://github.com/vim/vim/commit/e8ef3a093453b73594e15462d4de50b011c8ba66
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6877 switch (*p_ffs)
c55a7232fb48 commit https://github.com/vim/vim/commit/e8ef3a093453b73594e15462d4de50b011c8ba66
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6878 {
c55a7232fb48 commit https://github.com/vim/vim/commit/e8ef3a093453b73594e15462d4de50b011c8ba66
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6879 case 'm':
c55a7232fb48 commit https://github.com/vim/vim/commit/e8ef3a093453b73594e15462d4de50b011c8ba66
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6880 buf->b_p_ff = vim_strsave((char_u *)FF_MAC); break;
c55a7232fb48 commit https://github.com/vim/vim/commit/e8ef3a093453b73594e15462d4de50b011c8ba66
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6881 case 'd':
c55a7232fb48 commit https://github.com/vim/vim/commit/e8ef3a093453b73594e15462d4de50b011c8ba66
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6882 buf->b_p_ff = vim_strsave((char_u *)FF_DOS); break;
c55a7232fb48 commit https://github.com/vim/vim/commit/e8ef3a093453b73594e15462d4de50b011c8ba66
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6883 case 'u':
c55a7232fb48 commit https://github.com/vim/vim/commit/e8ef3a093453b73594e15462d4de50b011c8ba66
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6884 buf->b_p_ff = vim_strsave((char_u *)FF_UNIX); break;
c55a7232fb48 commit https://github.com/vim/vim/commit/e8ef3a093453b73594e15462d4de50b011c8ba66
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6885 default:
c55a7232fb48 commit https://github.com/vim/vim/commit/e8ef3a093453b73594e15462d4de50b011c8ba66
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6886 buf->b_p_ff = vim_strsave(p_ff);
c55a7232fb48 commit https://github.com/vim/vim/commit/e8ef3a093453b73594e15462d4de50b011c8ba66
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6887 }
c55a7232fb48 commit https://github.com/vim/vim/commit/e8ef3a093453b73594e15462d4de50b011c8ba66
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6888 if (buf->b_p_ff != NULL)
c55a7232fb48 commit https://github.com/vim/vim/commit/e8ef3a093453b73594e15462d4de50b011c8ba66
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6889 buf->b_start_ffc = *buf->b_p_ff;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6890 buf->b_p_bh = empty_option;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6891 buf->b_p_bt = empty_option;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6892 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6893 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6894 free_buf_options(buf, FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6895
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6896 buf->b_p_ai = p_ai;
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6897 COPY_OPT_SCTX(buf, BV_AI);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6898 buf->b_p_ai_nopaste = p_ai_nopaste;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6899 buf->b_p_sw = p_sw;
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6900 COPY_OPT_SCTX(buf, BV_SW);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6901 buf->b_p_tw = p_tw;
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6902 COPY_OPT_SCTX(buf, BV_TW);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6903 buf->b_p_tw_nopaste = p_tw_nopaste;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6904 buf->b_p_tw_nobin = p_tw_nobin;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6905 buf->b_p_wm = p_wm;
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6906 COPY_OPT_SCTX(buf, BV_WM);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6907 buf->b_p_wm_nopaste = p_wm_nopaste;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6908 buf->b_p_wm_nobin = p_wm_nobin;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6909 buf->b_p_bin = p_bin;
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6910 COPY_OPT_SCTX(buf, BV_BIN);
402
5b1544b1b228 updated for version 7.0105
vimboss
parents: 389
diff changeset
6911 buf->b_p_bomb = p_bomb;
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6912 COPY_OPT_SCTX(buf, BV_BOMB);
6954
a958ac497a81 patch 7.4.795
Bram Moolenaar <bram@vim.org>
parents: 6949
diff changeset
6913 buf->b_p_fixeol = p_fixeol;
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6914 COPY_OPT_SCTX(buf, BV_FIXEOL);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6915 buf->b_p_et = p_et;
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6916 COPY_OPT_SCTX(buf, BV_ET);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6917 buf->b_p_et_nobin = p_et_nobin;
7113
83b3261352b3 commit https://github.com/vim/vim/commit/54f018cd5994c3ffcd0740526e56db6934edf1f2
Christian Brabandt <cb@256bit.org>
parents: 7058
diff changeset
6918 buf->b_p_et_nopaste = p_et_nopaste;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6919 buf->b_p_ml = p_ml;
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6920 COPY_OPT_SCTX(buf, BV_ML);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6921 buf->b_p_ml_nobin = p_ml_nobin;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6922 buf->b_p_inf = p_inf;
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6923 COPY_OPT_SCTX(buf, BV_INF);
22699
e82579016863 patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents: 22242
diff changeset
6924 if (cmdmod.cmod_flags & CMOD_NOSWAPFILE)
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6925 buf->b_p_swf = FALSE;
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6926 else
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6927 {
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6928 buf->b_p_swf = p_swf;
26550
919ee902079a patch 8.2.3804: script context not set when copying 'swf' and 'ts'
Bram Moolenaar <Bram@vim.org>
parents: 26452
diff changeset
6929 COPY_OPT_SCTX(buf, BV_SWF);
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6930 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6931 buf->b_p_cpt = vim_strsave(p_cpt);
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6932 COPY_OPT_SCTX(buf, BV_CPT);
17809
59f8948b7590 patch 8.1.1901: the +insert_expand feature is not always available
Bram Moolenaar <Bram@vim.org>
parents: 17791
diff changeset
6933 #ifdef BACKSLASH_IN_FILENAME
17543
77c3f6428b6c patch 8.1.1769: 'shellslash' is also used for completion
Bram Moolenaar <Bram@vim.org>
parents: 17476
diff changeset
6934 buf->b_p_csl = vim_strsave(p_csl);
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6935 COPY_OPT_SCTX(buf, BV_CSL);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6936 #endif
12
bdeee1504ac1 updated for version 7.0004
vimboss
parents: 11
diff changeset
6937 #ifdef FEAT_COMPL_FUNC
bdeee1504ac1 updated for version 7.0004
vimboss
parents: 11
diff changeset
6938 buf->b_p_cfu = vim_strsave(p_cfu);
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6939 COPY_OPT_SCTX(buf, BV_CFU);
26388
8aba638e91eb patch 8.2.3725: cannot use a lambda for 'completefunc' and 'omnifunc'
Bram Moolenaar <Bram@vim.org>
parents: 26362
diff changeset
6940 set_buflocal_cfu_callback(buf);
502
52e76e2b5b65 updated for version 7.0140
vimboss
parents: 501
diff changeset
6941 buf->b_p_ofu = vim_strsave(p_ofu);
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6942 COPY_OPT_SCTX(buf, BV_OFU);
26388
8aba638e91eb patch 8.2.3725: cannot use a lambda for 'completefunc' and 'omnifunc'
Bram Moolenaar <Bram@vim.org>
parents: 26362
diff changeset
6943 set_buflocal_ofu_callback(buf);
12
bdeee1504ac1 updated for version 7.0004
vimboss
parents: 11
diff changeset
6944 #endif
16447
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16429
diff changeset
6945 #ifdef FEAT_EVAL
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16429
diff changeset
6946 buf->b_p_tfu = vim_strsave(p_tfu);
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6947 COPY_OPT_SCTX(buf, BV_TFU);
26388
8aba638e91eb patch 8.2.3725: cannot use a lambda for 'completefunc' and 'omnifunc'
Bram Moolenaar <Bram@vim.org>
parents: 26362
diff changeset
6948 set_buflocal_tfu_callback(buf);
16447
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16429
diff changeset
6949 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6950 buf->b_p_sts = p_sts;
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6951 COPY_OPT_SCTX(buf, BV_STS);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6952 buf->b_p_sts_nopaste = p_sts_nopaste;
14175
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
6953 #ifdef FEAT_VARTABS
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
6954 buf->b_p_vsts = vim_strsave(p_vsts);
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6955 COPY_OPT_SCTX(buf, BV_VSTS);
14175
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
6956 if (p_vsts && p_vsts != empty_option)
25733
4b2616ffe32b patch 8.2.3402: invalid memory access when using :retab with large value
Bram Moolenaar <Bram@vim.org>
parents: 25487
diff changeset
6957 (void)tabstop_set(p_vsts, &buf->b_p_vsts_array);
14175
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
6958 else
27434
c1702fd7e716 patch 8.2.4245: ":retab 0" may cause illegal memory access
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
6959 buf->b_p_vsts_array = NULL;
14175
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
6960 buf->b_p_vsts_nopaste = p_vsts_nopaste
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
6961 ? vim_strsave(p_vsts_nopaste) : NULL;
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
6962 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6963 buf->b_p_sn = p_sn;
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6964 COPY_OPT_SCTX(buf, BV_SN);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6965 buf->b_p_com = vim_strsave(p_com);
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6966 COPY_OPT_SCTX(buf, BV_COM);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6967 #ifdef FEAT_FOLDING
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6968 buf->b_p_cms = vim_strsave(p_cms);
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6969 COPY_OPT_SCTX(buf, BV_CMS);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6970 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6971 buf->b_p_fo = vim_strsave(p_fo);
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6972 COPY_OPT_SCTX(buf, BV_FO);
41
f529edb9bab3 updated for version 7.0025
vimboss
parents: 40
diff changeset
6973 buf->b_p_flp = vim_strsave(p_flp);
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6974 COPY_OPT_SCTX(buf, BV_FLP);
18199
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18156
diff changeset
6975 // NOTE: Valgrind may report a bogus memory leak for 'nrformats'
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18156
diff changeset
6976 // when it is set to 8 bytes in defaults.vim.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6977 buf->b_p_nf = vim_strsave(p_nf);
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6978 COPY_OPT_SCTX(buf, BV_NF);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6979 buf->b_p_mps = vim_strsave(p_mps);
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6980 COPY_OPT_SCTX(buf, BV_MPS);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6981 buf->b_p_si = p_si;
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6982 COPY_OPT_SCTX(buf, BV_SI);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6983 buf->b_p_ci = p_ci;
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6984 COPY_OPT_SCTX(buf, BV_CI);
28942
6cdf55afaae9 patch 8.2.4993: smart/C/lisp indenting is optional
Bram Moolenaar <Bram@vim.org>
parents: 28919
diff changeset
6985
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6986 buf->b_p_cin = p_cin;
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6987 COPY_OPT_SCTX(buf, BV_CIN);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6988 buf->b_p_cink = vim_strsave(p_cink);
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6989 COPY_OPT_SCTX(buf, BV_CINK);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6990 buf->b_p_cino = vim_strsave(p_cino);
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6991 COPY_OPT_SCTX(buf, BV_CINO);
28353
8bc8071928ed patch 8.2.4702: C++ scope labels are hard-coded
Bram Moolenaar <Bram@vim.org>
parents: 28337
diff changeset
6992 buf->b_p_cinsd = vim_strsave(p_cinsd);
8bc8071928ed patch 8.2.4702: C++ scope labels are hard-coded
Bram Moolenaar <Bram@vim.org>
parents: 28337
diff changeset
6993 COPY_OPT_SCTX(buf, BV_CINSD);
30853
40df8a6515f6 patch 9.0.0761: cannot use 'indentexpr' for Lisp indenting
Bram Moolenaar <Bram@vim.org>
parents: 30825
diff changeset
6994 buf->b_p_lop = vim_strsave(p_lop);
40df8a6515f6 patch 9.0.0761: cannot use 'indentexpr' for Lisp indenting
Bram Moolenaar <Bram@vim.org>
parents: 30825
diff changeset
6995 COPY_OPT_SCTX(buf, BV_LOP);
28942
6cdf55afaae9 patch 8.2.4993: smart/C/lisp indenting is optional
Bram Moolenaar <Bram@vim.org>
parents: 28919
diff changeset
6996
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6997 // Don't copy 'filetype', it must be detected
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6998 buf->b_p_ft = empty_option;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6999 buf->b_p_pi = p_pi;
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
7000 COPY_OPT_SCTX(buf, BV_PI);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7001 buf->b_p_cinw = vim_strsave(p_cinw);
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
7002 COPY_OPT_SCTX(buf, BV_CINW);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7003 buf->b_p_lisp = p_lisp;
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
7004 COPY_OPT_SCTX(buf, BV_LISP);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7005 #ifdef FEAT_SYN_HL
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7006 // Don't copy 'syntax', it must be set
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7007 buf->b_p_syn = empty_option;
410
c60ba877860b updated for version 7.0107
vimboss
parents: 402
diff changeset
7008 buf->b_p_smc = p_smc;
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
7009 COPY_OPT_SCTX(buf, BV_SMC);
7687
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents: 7538
diff changeset
7010 buf->b_s.b_syn_isk = empty_option;
744
07f7b4a7755c updated for version 7.0222
vimboss
parents: 731
diff changeset
7011 #endif
07f7b4a7755c updated for version 7.0222
vimboss
parents: 731
diff changeset
7012 #ifdef FEAT_SPELL
2599
8aa94f8080bd updated for version 7.3.022
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
7013 buf->b_s.b_p_spc = vim_strsave(p_spc);
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
7014 COPY_OPT_SCTX(buf, BV_SPC);
2250
1bac28a53fae Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents: 2248
diff changeset
7015 (void)compile_cap_prog(&buf->b_s);
1bac28a53fae Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents: 2248
diff changeset
7016 buf->b_s.b_p_spf = vim_strsave(p_spf);
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
7017 COPY_OPT_SCTX(buf, BV_SPF);
2250
1bac28a53fae Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents: 2248
diff changeset
7018 buf->b_s.b_p_spl = vim_strsave(p_spl);
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
7019 COPY_OPT_SCTX(buf, BV_SPL);
20802
ed00f0fbdaef patch 8.2.0953: spell checking doesn't work for CamelCased words
Bram Moolenaar <Bram@vim.org>
parents: 20603
diff changeset
7020 buf->b_s.b_p_spo = vim_strsave(p_spo);
ed00f0fbdaef patch 8.2.0953: spell checking doesn't work for CamelCased words
Bram Moolenaar <Bram@vim.org>
parents: 20603
diff changeset
7021 COPY_OPT_SCTX(buf, BV_SPO);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7022 #endif
28942
6cdf55afaae9 patch 8.2.4993: smart/C/lisp indenting is optional
Bram Moolenaar <Bram@vim.org>
parents: 28919
diff changeset
7023 #if defined(FEAT_EVAL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7024 buf->b_p_inde = vim_strsave(p_inde);
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
7025 COPY_OPT_SCTX(buf, BV_INDE);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7026 buf->b_p_indk = vim_strsave(p_indk);
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
7027 COPY_OPT_SCTX(buf, BV_INDK);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7028 #endif
10579
688b97124d23 patch 8.0.0179: cannot have a local value for 'formatprg'
Christian Brabandt <cb@256bit.org>
parents: 10456
diff changeset
7029 buf->b_p_fp = empty_option;
667
9090f866cd57 updated for version 7.0197
vimboss
parents: 665
diff changeset
7030 #if defined(FEAT_EVAL)
9090f866cd57 updated for version 7.0197
vimboss
parents: 665
diff changeset
7031 buf->b_p_fex = vim_strsave(p_fex);
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
7032 COPY_OPT_SCTX(buf, BV_FEX);
667
9090f866cd57 updated for version 7.0197
vimboss
parents: 665
diff changeset
7033 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7034 #ifdef FEAT_CRYPT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7035 buf->b_p_key = vim_strsave(p_key);
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
7036 COPY_OPT_SCTX(buf, BV_KEY);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7037 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7038 buf->b_p_sua = vim_strsave(p_sua);
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
7039 COPY_OPT_SCTX(buf, BV_SUA);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7040 #ifdef FEAT_KEYMAP
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7041 buf->b_p_keymap = vim_strsave(p_keymap);
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
7042 COPY_OPT_SCTX(buf, BV_KMAP);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7043 buf->b_kmap_state |= KEYMAP_INIT;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7044 #endif
13742
a34b1323286c patch 8.0.1743: terminal window options are named inconsistently
Christian Brabandt <cb@256bit.org>
parents: 13700
diff changeset
7045 #ifdef FEAT_TERMINAL
a34b1323286c patch 8.0.1743: terminal window options are named inconsistently
Christian Brabandt <cb@256bit.org>
parents: 13700
diff changeset
7046 buf->b_p_twsl = p_twsl;
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
7047 COPY_OPT_SCTX(buf, BV_TWSL);
13742
a34b1323286c patch 8.0.1743: terminal window options are named inconsistently
Christian Brabandt <cb@256bit.org>
parents: 13700
diff changeset
7048 #endif
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7049 // This isn't really an option, but copying the langmap and IME
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7050 // state from the current buffer is better than resetting it.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7051 buf->b_p_iminsert = p_iminsert;
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
7052 COPY_OPT_SCTX(buf, BV_IMI);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7053 buf->b_p_imsearch = p_imsearch;
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
7054 COPY_OPT_SCTX(buf, BV_IMS);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7055
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7056 // options that are normally global but also have a local value
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7057 // are not copied, start using the global value
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7058 buf->b_p_ar = -1;
5446
d0595545e98a updated for version 7.4.073
Bram Moolenaar <bram@vim.org>
parents: 5438
diff changeset
7059 buf->b_p_ul = NO_LOCAL_UNDOLEVEL;
6243
54194bd6ed60 updated for version 7.4.456
Bram Moolenaar <bram@vim.org>
parents: 6205
diff changeset
7060 buf->b_p_bkc = empty_option;
54194bd6ed60 updated for version 7.4.456
Bram Moolenaar <bram@vim.org>
parents: 6205
diff changeset
7061 buf->b_bkc_flags = 0;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7062 #ifdef FEAT_QUICKFIX
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7063 buf->b_p_gp = empty_option;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7064 buf->b_p_mp = empty_option;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7065 buf->b_p_efm = empty_option;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7066 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7067 buf->b_p_ep = empty_option;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7068 buf->b_p_kp = empty_option;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7069 buf->b_p_path = empty_option;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7070 buf->b_p_tags = empty_option;
7266
6ba7182fb7bd commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents: 7218
diff changeset
7071 buf->b_p_tc = empty_option;
6ba7182fb7bd commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents: 7218
diff changeset
7072 buf->b_tc_flags = 0;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7073 #ifdef FEAT_FIND_ID
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7074 buf->b_p_def = empty_option;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7075 buf->b_p_inc = empty_option;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7076 # ifdef FEAT_EVAL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7077 buf->b_p_inex = vim_strsave(p_inex);
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
7078 COPY_OPT_SCTX(buf, BV_INEX);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7079 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7080 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7081 buf->b_p_dict = empty_option;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7082 buf->b_p_tsr = empty_option;
25990
ac330e2fecc4 patch 8.2.3528: 'thesaurus' and 'thesaurusfunc' do not have the same scope
Bram Moolenaar <Bram@vim.org>
parents: 25984
diff changeset
7083 #ifdef FEAT_COMPL_FUNC
ac330e2fecc4 patch 8.2.3528: 'thesaurus' and 'thesaurusfunc' do not have the same scope
Bram Moolenaar <Bram@vim.org>
parents: 25984
diff changeset
7084 buf->b_p_tsrfu = empty_option;
ac330e2fecc4 patch 8.2.3528: 'thesaurus' and 'thesaurusfunc' do not have the same scope
Bram Moolenaar <Bram@vim.org>
parents: 25984
diff changeset
7085 #endif
12
bdeee1504ac1 updated for version 7.0004
vimboss
parents: 11
diff changeset
7086 buf->b_p_qe = vim_strsave(p_qe);
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
7087 COPY_OPT_SCTX(buf, BV_QE);
790
c8680debe1cc updated for version 7.0230
vimboss
parents: 786
diff changeset
7088 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
c8680debe1cc updated for version 7.0230
vimboss
parents: 786
diff changeset
7089 buf->b_p_bexpr = empty_option;
c8680debe1cc updated for version 7.0230
vimboss
parents: 786
diff changeset
7090 #endif
2360
d8e4b27cef80 Change 'cryptmethod' from a number to a string option. Make it global-local.
Bram Moolenaar <bram@vim.org>
parents: 2348
diff changeset
7091 #if defined(FEAT_CRYPT)
d8e4b27cef80 Change 'cryptmethod' from a number to a string option. Make it global-local.
Bram Moolenaar <bram@vim.org>
parents: 2348
diff changeset
7092 buf->b_p_cm = empty_option;
d8e4b27cef80 Change 'cryptmethod' from a number to a string option. Make it global-local.
Bram Moolenaar <bram@vim.org>
parents: 2348
diff changeset
7093 #endif
2214
f8222d1f9a73 Included patch for persistent undo. Lots of changes and added test.
Bram Moolenaar <bram@vim.org>
parents: 2184
diff changeset
7094 #ifdef FEAT_PERSISTENT_UNDO
f8222d1f9a73 Included patch for persistent undo. Lots of changes and added test.
Bram Moolenaar <bram@vim.org>
parents: 2184
diff changeset
7095 buf->b_p_udf = p_udf;
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
7096 COPY_OPT_SCTX(buf, BV_UDF);
2214
f8222d1f9a73 Included patch for persistent undo. Lots of changes and added test.
Bram Moolenaar <bram@vim.org>
parents: 2184
diff changeset
7097 #endif
5712
06e5f65c34d8 updated for version 7.4.201
Bram Moolenaar <bram@vim.org>
parents: 5610
diff changeset
7098 buf->b_p_lw = empty_option;
11063
e71d3bdf3bc3 patch 8.0.0420: text garbled when the system encoding differs from 'encoding'
Christian Brabandt <cb@256bit.org>
parents: 10968
diff changeset
7099 buf->b_p_menc = empty_option;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7100
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7101 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7102 * Don't copy the options set by ex_help(), use the saved values,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7103 * when going from a help buffer to a non-help buffer.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7104 * Don't touch these at all when BCO_NOHELP is used and going from
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7105 * or to a help buffer.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7106 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7107 if (dont_do_help)
14175
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
7108 {
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7109 buf->b_p_isk = save_p_isk;
14175
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
7110 #ifdef FEAT_VARTABS
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
7111 if (p_vts && p_vts != empty_option && !buf->b_p_vts_array)
25733
4b2616ffe32b patch 8.2.3402: invalid memory access when using :retab with large value
Bram Moolenaar <Bram@vim.org>
parents: 25487
diff changeset
7112 (void)tabstop_set(p_vts, &buf->b_p_vts_array);
14175
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
7113 else
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
7114 buf->b_p_vts_array = NULL;
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
7115 #endif
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
7116 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7117 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7118 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7119 buf->b_p_isk = vim_strsave(p_isk);
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
7120 COPY_OPT_SCTX(buf, BV_ISK);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7121 did_isk = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7122 buf->b_p_ts = p_ts;
26550
919ee902079a patch 8.2.3804: script context not set when copying 'swf' and 'ts'
Bram Moolenaar <Bram@vim.org>
parents: 26452
diff changeset
7123 COPY_OPT_SCTX(buf, BV_TS);
14175
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
7124 #ifdef FEAT_VARTABS
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
7125 buf->b_p_vts = vim_strsave(p_vts);
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
7126 COPY_OPT_SCTX(buf, BV_VTS);
14175
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
7127 if (p_vts && p_vts != empty_option && !buf->b_p_vts_array)
25733
4b2616ffe32b patch 8.2.3402: invalid memory access when using :retab with large value
Bram Moolenaar <Bram@vim.org>
parents: 25487
diff changeset
7128 (void)tabstop_set(p_vts, &buf->b_p_vts_array);
14175
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
7129 else
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
7130 buf->b_p_vts_array = NULL;
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
7131 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7132 buf->b_help = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7133 if (buf->b_p_bt[0] == 'h')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7134 clear_string_option(&buf->b_p_bt);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7135 buf->b_p_ma = p_ma;
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
7136 COPY_OPT_SCTX(buf, BV_MA);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7137 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7138 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7139
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7140 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7141 * When the options should be copied (ignoring BCO_ALWAYS), set the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7142 * flag that indicates that the options have been initialized.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7143 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7144 if (should_copy)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7145 buf->b_p_initialized = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7146 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7147
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7148 check_buf_options(buf); // make sure we don't have NULLs
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7149 if (did_isk)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7150 (void)buf_init_chartab(buf, FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7151 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7152
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7153 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7154 * Reset the 'modifiable' option and its default value.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7155 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7156 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
7157 reset_modifiable(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7158 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7159 int opt_idx;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7160
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7161 curbuf->b_p_ma = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7162 p_ma = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7163 opt_idx = findoption((char_u *)"ma");
838
8e5830943bff updated for version 7.0e04
vimboss
parents: 836
diff changeset
7164 if (opt_idx >= 0)
8e5830943bff updated for version 7.0e04
vimboss
parents: 836
diff changeset
7165 options[opt_idx].def_val[VI_DEFAULT] = FALSE;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7166 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7167
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7168 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7169 * Set the global value for 'iminsert' to the local value.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7170 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7171 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
7172 set_iminsert_global(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7173 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7174 p_iminsert = curbuf->b_p_iminsert;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7175 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7176
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7177 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7178 * Set the global value for 'imsearch' to the local value.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7179 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7180 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
7181 set_imsearch_global(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7182 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7183 p_imsearch = curbuf->b_p_imsearch;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7184 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7185
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7186 static int expand_option_idx = -1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7187 static char_u expand_option_name[5] = {'t', '_', NUL, NUL, NUL};
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7188 static int expand_option_flags = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7189
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7190 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
7191 set_context_in_set_cmd(
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
7192 expand_T *xp,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
7193 char_u *arg,
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7194 int opt_flags) // OPT_GLOBAL and/or OPT_LOCAL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7195 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7196 int nextchar;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7197 long_u flags = 0; // init for GCC
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7198 int opt_idx = 0; // init for GCC
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7199 char_u *p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7200 char_u *s;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7201 int is_term_option = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7202 int key;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7203
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7204 expand_option_flags = opt_flags;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7205
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7206 xp->xp_context = EXPAND_SETTINGS;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7207 if (*arg == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7208 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7209 xp->xp_pattern = arg;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7210 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7211 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7212 p = arg + STRLEN(arg) - 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7213 if (*p == ' ' && *(p - 1) != '\\')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7214 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7215 xp->xp_pattern = p + 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7216 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7217 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7218 while (p > arg)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7219 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7220 s = p;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7221 // count number of backslashes before ' ' or ','
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7222 if (*p == ' ' || *p == ',')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7223 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7224 while (s > arg && *(s - 1) == '\\')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7225 --s;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7226 }
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7227 // break at a space with an even number of backslashes
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7228 if (*p == ' ' && ((p - s) & 1) == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7229 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7230 ++p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7231 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7232 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7233 --p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7234 }
1911
afbe4a4c884c updated for version 7.2-208
vimboss
parents: 1904
diff changeset
7235 if (STRNCMP(p, "no", 2) == 0 && STRNCMP(p, "novice", 6) != 0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7236 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7237 xp->xp_context = EXPAND_BOOL_SETTINGS;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7238 p += 2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7239 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7240 if (STRNCMP(p, "inv", 3) == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7241 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7242 xp->xp_context = EXPAND_BOOL_SETTINGS;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7243 p += 3;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7244 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7245 xp->xp_pattern = arg = p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7246 if (*arg == '<')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7247 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7248 while (*p != '>')
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7249 if (*p++ == NUL) // expand terminal option name
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7250 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7251 key = get_special_key_code(arg + 1);
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7252 if (key == 0) // unknown name
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7253 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7254 xp->xp_context = EXPAND_NOTHING;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7255 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7256 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7257 nextchar = *++p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7258 is_term_option = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7259 expand_option_name[2] = KEY2TERMCAP0(key);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7260 expand_option_name[3] = KEY2TERMCAP1(key);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7261 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7262 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7263 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7264 if (p[0] == 't' && p[1] == '_')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7265 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7266 p += 2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7267 if (*p != NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7268 ++p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7269 if (*p == NUL)
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7270 return; // expand option name
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7271 nextchar = *++p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7272 is_term_option = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7273 expand_option_name[2] = p[-2];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7274 expand_option_name[3] = p[-1];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7275 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7276 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7277 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7278 // Allow * wildcard
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7279 while (ASCII_ISALNUM(*p) || *p == '_' || *p == '*')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7280 p++;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7281 if (*p == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7282 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7283 nextchar = *p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7284 *p = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7285 opt_idx = findoption(arg);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7286 *p = nextchar;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7287 if (opt_idx == -1 || options[opt_idx].var == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7288 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7289 xp->xp_context = EXPAND_NOTHING;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7290 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7291 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7292 flags = options[opt_idx].flags;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7293 if (flags & P_BOOL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7294 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7295 xp->xp_context = EXPAND_NOTHING;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7296 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7297 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7298 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7299 }
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7300 // handle "-=" and "+="
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7301 if ((nextchar == '-' || nextchar == '+' || nextchar == '^') && p[1] == '=')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7302 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7303 ++p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7304 nextchar = '=';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7305 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7306 if ((nextchar != '=' && nextchar != ':')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7307 || xp->xp_context == EXPAND_BOOL_SETTINGS)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7308 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7309 xp->xp_context = EXPAND_UNSUCCESSFUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7310 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7311 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7312 if (xp->xp_context != EXPAND_BOOL_SETTINGS && p[1] == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7313 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7314 xp->xp_context = EXPAND_OLD_SETTING;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7315 if (is_term_option)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7316 expand_option_idx = -1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7317 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7318 expand_option_idx = opt_idx;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7319 xp->xp_pattern = p + 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7320 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7321 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7322 xp->xp_context = EXPAND_NOTHING;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7323 if (is_term_option || (flags & P_NUM))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7324 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7325
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7326 xp->xp_pattern = p + 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7327
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7328 if (flags & P_EXPAND)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7329 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7330 p = options[opt_idx].var;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7331 if (p == (char_u *)&p_bdir
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7332 || p == (char_u *)&p_dir
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7333 || p == (char_u *)&p_path
8182
95d59081580f commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents: 8163
diff changeset
7334 || p == (char_u *)&p_pp
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7335 || p == (char_u *)&p_rtp
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7336 || p == (char_u *)&p_cdpath
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7337 #ifdef FEAT_SESSION
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7338 || p == (char_u *)&p_vdir
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7339 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7340 )
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7341 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7342 xp->xp_context = EXPAND_DIRECTORIES;
29853
31c598083364 patch 9.0.0265: no good reason why the "gf" command isn't in the tiny version
Bram Moolenaar <Bram@vim.org>
parents: 29765
diff changeset
7343 if (p == (char_u *)&p_path || p == (char_u *)&p_cdpath)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7344 xp->xp_backslash = XP_BS_THREE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7345 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7346 xp->xp_backslash = XP_BS_ONE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7347 }
23821
bfc1ae959d9d patch 8.2.2452: no completion for the 'filetype' option
Bram Moolenaar <Bram@vim.org>
parents: 23505
diff changeset
7348 else if (p == (char_u *)&p_ft)
bfc1ae959d9d patch 8.2.2452: no completion for the 'filetype' option
Bram Moolenaar <Bram@vim.org>
parents: 23505
diff changeset
7349 {
bfc1ae959d9d patch 8.2.2452: no completion for the 'filetype' option
Bram Moolenaar <Bram@vim.org>
parents: 23505
diff changeset
7350 xp->xp_context = EXPAND_FILETYPE;
bfc1ae959d9d patch 8.2.2452: no completion for the 'filetype' option
Bram Moolenaar <Bram@vim.org>
parents: 23505
diff changeset
7351 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7352 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7353 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7354 xp->xp_context = EXPAND_FILES;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7355 // for 'tags' need three backslashes for a space
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7356 if (p == (char_u *)&p_tags)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7357 xp->xp_backslash = XP_BS_THREE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7358 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7359 xp->xp_backslash = XP_BS_ONE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7360 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7361 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7362
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7363 // For an option that is a list of file names, find the start of the
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7364 // last file name.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7365 for (p = arg + STRLEN(arg) - 1; p > xp->xp_pattern; --p)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7366 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7367 // count number of backslashes before ' ' or ','
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7368 if (*p == ' ' || *p == ',')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7369 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7370 s = p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7371 while (s > xp->xp_pattern && *(s - 1) == '\\')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7372 --s;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7373 if ((*p == ' ' && (xp->xp_backslash == XP_BS_THREE && (p - s) < 3))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7374 || (*p == ',' && (flags & P_COMMA) && ((p - s) & 1) == 0))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7375 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7376 xp->xp_pattern = p + 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7377 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7378 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7379 }
374
575dacb554d8 updated for version 7.0096
vimboss
parents: 359
diff changeset
7380
744
07f7b4a7755c updated for version 7.0222
vimboss
parents: 731
diff changeset
7381 #ifdef FEAT_SPELL
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7382 // for 'spellsuggest' start at "file:"
374
575dacb554d8 updated for version 7.0096
vimboss
parents: 359
diff changeset
7383 if (options[opt_idx].var == (char_u *)&p_sps
575dacb554d8 updated for version 7.0096
vimboss
parents: 359
diff changeset
7384 && STRNCMP(p, "file:", 5) == 0)
575dacb554d8 updated for version 7.0096
vimboss
parents: 359
diff changeset
7385 {
575dacb554d8 updated for version 7.0096
vimboss
parents: 359
diff changeset
7386 xp->xp_pattern = p + 5;
575dacb554d8 updated for version 7.0096
vimboss
parents: 359
diff changeset
7387 break;
575dacb554d8 updated for version 7.0096
vimboss
parents: 359
diff changeset
7388 }
575dacb554d8 updated for version 7.0096
vimboss
parents: 359
diff changeset
7389 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7390 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7391 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7392
27875
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7393 /*
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7394 * Returns TRUE if 'str' either matches 'regmatch' or fuzzy matches 'pat'.
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7395 *
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7396 * If 'test_only' is TRUE and 'fuzzy' is FALSE and if 'str' matches the regular
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7397 * expression 'regmatch', then returns TRUE. Otherwise returns FALSE.
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7398 *
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7399 * If 'test_only' is FALSE and 'fuzzy' is FALSE and if 'str' matches the
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7400 * regular expression 'regmatch', then stores the match in matches[idx] and
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7401 * returns TRUE.
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7402 *
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7403 * If 'test_only' is TRUE and 'fuzzy' is TRUE and if 'str' fuzzy matches
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7404 * 'fuzzystr', then returns TRUE. Otherwise returns FALSE.
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7405 *
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7406 * If 'test_only' is FALSE and 'fuzzy' is TRUE and if 'str' fuzzy matches
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7407 * 'fuzzystr', then stores the match details in fuzmatch[idx] and returns TRUE.
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7408 */
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7409 static int
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7410 match_str(
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7411 char_u *str,
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7412 regmatch_T *regmatch,
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7413 char_u **matches,
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7414 int idx,
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7415 int test_only,
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7416 int fuzzy,
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7417 char_u *fuzzystr,
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7418 fuzmatch_str_T *fuzmatch)
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7419 {
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7420 if (!fuzzy)
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7421 {
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7422 if (vim_regexec(regmatch, str, (colnr_T)0))
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7423 {
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7424 if (!test_only)
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7425 matches[idx] = vim_strsave(str);
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7426 return TRUE;
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7427 }
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7428 }
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7429 else
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7430 {
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7431 int score;
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7432
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7433 score = fuzzy_match_str(str, fuzzystr);
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7434 if (score != 0)
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7435 {
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7436 if (!test_only)
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7437 {
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7438 fuzmatch[idx].idx = idx;
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7439 fuzmatch[idx].str = vim_strsave(str);
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7440 fuzmatch[idx].score = score;
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7441 }
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7442
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7443 return TRUE;
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7444 }
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7445 }
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7446
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7447 return FALSE;
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7448 }
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7449
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7450 int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
7451 ExpandSettings(
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
7452 expand_T *xp,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
7453 regmatch_T *regmatch,
27875
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7454 char_u *fuzzystr,
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7455 int *numMatches,
28786
fd5942a62312 patch 8.2.4917: fuzzy expansion of option names is not right
Bram Moolenaar <Bram@vim.org>
parents: 28773
diff changeset
7456 char_u ***matches,
28809
d0241e74bfdb patch 8.2.4928: various white space and cosmetic mistakes
Bram Moolenaar <Bram@vim.org>
parents: 28804
diff changeset
7457 int can_fuzzy)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7458 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7459 int num_normal = 0; // Nr of matching non-term-code settings
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7460 int num_term = 0; // Nr of matching terminal code settings
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7461 int opt_idx;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7462 int match;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7463 int count = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7464 char_u *str;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7465 int loop;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7466 int is_term_opt;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7467 char_u name_buf[MAX_KEY_NAME_LEN];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7468 static char *(names[]) = {"all", "termcap"};
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7469 int ic = regmatch->rm_ic; // remember the ignore-case flag
27875
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7470 int fuzzy;
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7471 fuzmatch_str_T *fuzmatch = NULL;
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7472
28786
fd5942a62312 patch 8.2.4917: fuzzy expansion of option names is not right
Bram Moolenaar <Bram@vim.org>
parents: 28773
diff changeset
7473 fuzzy = can_fuzzy && cmdline_fuzzy_complete(fuzzystr);
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7474
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7475 // do this loop twice:
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7476 // loop == 0: count the number of matching options
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7477 // loop == 1: copy the matching options into allocated memory
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7478 for (loop = 0; loop <= 1; ++loop)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7479 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7480 regmatch->rm_ic = ic;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7481 if (xp->xp_context != EXPAND_BOOL_SETTINGS)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7482 {
24768
7334bf933510 patch 8.2.2922: computing array length is done in various ways
Bram Moolenaar <Bram@vim.org>
parents: 24747
diff changeset
7483 for (match = 0; match < (int)ARRAY_LENGTH(names); ++match)
27875
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7484 {
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7485 if (match_str((char_u *)names[match], regmatch, *matches,
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7486 count, (loop == 0), fuzzy, fuzzystr, fuzmatch))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7487 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7488 if (loop == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7489 num_normal++;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7490 else
27875
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7491 count++;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7492 }
27875
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7493 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7494 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7495 for (opt_idx = 0; (str = (char_u *)options[opt_idx].fullname) != NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7496 opt_idx++)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7497 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7498 if (options[opt_idx].var == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7499 continue;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7500 if (xp->xp_context == EXPAND_BOOL_SETTINGS
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7501 && !(options[opt_idx].flags & P_BOOL))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7502 continue;
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
7503 is_term_opt = istermoption_idx(opt_idx);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7504 if (is_term_opt && num_normal > 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7505 continue;
27875
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7506
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7507 if (match_str(str, regmatch, *matches, count, (loop == 0),
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7508 fuzzy, fuzzystr, fuzmatch))
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7509 {
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7510 if (loop == 0)
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7511 {
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7512 if (is_term_opt)
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7513 num_term++;
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7514 else
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7515 num_normal++;
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7516 }
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7517 else
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7518 count++;
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7519 }
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7520 else if (!fuzzy && options[opt_idx].shortname != NULL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7521 && vim_regexec(regmatch,
28809
d0241e74bfdb patch 8.2.4928: various white space and cosmetic mistakes
Bram Moolenaar <Bram@vim.org>
parents: 28804
diff changeset
7522 (char_u *)options[opt_idx].shortname, (colnr_T)0))
27875
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7523 {
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7524 // Compare against the abbreviated option name (for regular
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7525 // expression match). Fuzzy matching (previous if) already
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7526 // matches against both the expanded and abbreviated names.
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7527 if (loop == 0)
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7528 {
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7529 if (is_term_opt)
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7530 num_term++;
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7531 else
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7532 num_normal++;
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7533 }
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7534 else
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7535 (*matches)[count++] = vim_strsave(str);
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7536 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7537 else if (is_term_opt)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7538 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7539 name_buf[0] = '<';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7540 name_buf[1] = 't';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7541 name_buf[2] = '_';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7542 name_buf[3] = str[2];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7543 name_buf[4] = str[3];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7544 name_buf[5] = '>';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7545 name_buf[6] = NUL;
27875
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7546
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7547 if (match_str(name_buf, regmatch, *matches, count, (loop == 0),
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7548 fuzzy, fuzzystr, fuzmatch))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7549 {
27875
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7550 if (loop == 0)
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7551 num_term++;
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7552 else
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7553 count++;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7554 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7555 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7556 }
27875
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7557
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7558 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7559 * Check terminal key codes, these are not in the option table
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7560 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7561 if (xp->xp_context != EXPAND_BOOL_SETTINGS && num_normal == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7562 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7563 for (opt_idx = 0; (str = get_termcode(opt_idx)) != NULL; opt_idx++)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7564 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7565 if (!isprint(str[0]) || !isprint(str[1]))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7566 continue;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7567
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7568 name_buf[0] = 't';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7569 name_buf[1] = '_';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7570 name_buf[2] = str[0];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7571 name_buf[3] = str[1];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7572 name_buf[4] = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7573
27875
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7574 if (match_str(name_buf, regmatch, *matches, count,
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7575 (loop == 0), fuzzy, fuzzystr, fuzmatch))
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7576 {
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7577 if (loop == 0)
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7578 num_term++;
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7579 else
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7580 count++;
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7581 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7582 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7583 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7584 name_buf[0] = '<';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7585 name_buf[1] = 't';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7586 name_buf[2] = '_';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7587 name_buf[3] = str[0];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7588 name_buf[4] = str[1];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7589 name_buf[5] = '>';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7590 name_buf[6] = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7591
27875
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7592 if (match_str(name_buf, regmatch, *matches, count,
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7593 (loop == 0), fuzzy, fuzzystr,
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7594 fuzmatch))
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7595 {
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7596 if (loop == 0)
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7597 num_term++;
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7598 else
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7599 count++;
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7600 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7601 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7602 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7603
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7604 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7605 * Check special key names.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7606 */
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7607 regmatch->rm_ic = TRUE; // ignore case here
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7608 for (opt_idx = 0; (str = get_key_name(opt_idx)) != NULL; opt_idx++)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7609 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7610 name_buf[0] = '<';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7611 STRCPY(name_buf + 1, str);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7612 STRCAT(name_buf, ">");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7613
27875
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7614 if (match_str(name_buf, regmatch, *matches, count, (loop == 0),
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7615 fuzzy, fuzzystr, fuzmatch))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7616 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7617 if (loop == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7618 num_term++;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7619 else
27875
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7620 count++;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7621 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7622 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7623 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7624 if (loop == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7625 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7626 if (num_normal > 0)
27875
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7627 *numMatches = num_normal;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7628 else if (num_term > 0)
27875
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7629 *numMatches = num_term;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7630 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7631 return OK;
27875
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7632 if (!fuzzy)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7633 {
27875
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7634 *matches = ALLOC_MULT(char_u *, *numMatches);
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7635 if (*matches == NULL)
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7636 {
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7637 *matches = (char_u **)"";
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7638 return FAIL;
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7639 }
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7640 }
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7641 else
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7642 {
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7643 fuzmatch = ALLOC_MULT(fuzmatch_str_T, *numMatches);
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7644 if (fuzmatch == NULL)
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7645 {
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7646 *matches = (char_u **)"";
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7647 return FAIL;
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7648 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7649 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7650 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7651 }
27875
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7652
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7653 if (fuzzy &&
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7654 fuzzymatches_to_strmatches(fuzmatch, matches, count, FALSE) == FAIL)
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7655 return FAIL;
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7656
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7657 return OK;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7658 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7659
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7660 int
31819
aec031683d61 patch 9.0.1242: code for :runtime completion is not consistent
Bram Moolenaar <Bram@vim.org>
parents: 31766
diff changeset
7661 ExpandOldSetting(int *numMatches, char_u ***matches)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7662 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7663 char_u *var = NULL; // init for GCC
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7664 char_u *buf;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7665
31819
aec031683d61 patch 9.0.1242: code for :runtime completion is not consistent
Bram Moolenaar <Bram@vim.org>
parents: 31766
diff changeset
7666 *numMatches = 0;
aec031683d61 patch 9.0.1242: code for :runtime completion is not consistent
Bram Moolenaar <Bram@vim.org>
parents: 31766
diff changeset
7667 *matches = ALLOC_ONE(char_u *);
aec031683d61 patch 9.0.1242: code for :runtime completion is not consistent
Bram Moolenaar <Bram@vim.org>
parents: 31766
diff changeset
7668 if (*matches == NULL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7669 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7670
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7671 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7672 * For a terminal key code expand_option_idx is < 0.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7673 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7674 if (expand_option_idx < 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7675 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7676 var = find_termcode(expand_option_name + 2);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7677 if (var == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7678 expand_option_idx = findoption(expand_option_name);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7679 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7680
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7681 if (expand_option_idx >= 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7682 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7683 // put string of option value in NameBuff
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7684 option_value2string(&options[expand_option_idx], expand_option_flags);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7685 var = NameBuff;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7686 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7687 else if (var == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7688 var = (char_u *)"";
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7689
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7690 // A backslash is required before some characters. This is the reverse of
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7691 // what happens in do_set().
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7692 buf = vim_strsave_escaped(var, escape_chars);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7693
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7694 if (buf == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7695 {
31819
aec031683d61 patch 9.0.1242: code for :runtime completion is not consistent
Bram Moolenaar <Bram@vim.org>
parents: 31766
diff changeset
7696 VIM_CLEAR(*matches);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7697 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7698 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7699
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7700 #ifdef BACKSLASH_IN_FILENAME
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7701 // For MS-Windows et al. we don't double backslashes at the start and
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7702 // before a file name character.
11127
506f5d8b7d8b patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11121
diff changeset
7703 for (var = buf; *var != NUL; MB_PTR_ADV(var))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7704 if (var[0] == '\\' && var[1] == '\\'
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7705 && expand_option_idx >= 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7706 && (options[expand_option_idx].flags & P_EXPAND)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7707 && vim_isfilec(var[2])
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7708 && (var[2] != '\\' || (var == buf && var[4] != '\\')))
1622
149d8b46404c updated for version 7.2a
vimboss
parents: 1601
diff changeset
7709 STRMOVE(var, var + 1);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7710 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7711
31819
aec031683d61 patch 9.0.1242: code for :runtime completion is not consistent
Bram Moolenaar <Bram@vim.org>
parents: 31766
diff changeset
7712 *matches[0] = buf;
aec031683d61 patch 9.0.1242: code for :runtime completion is not consistent
Bram Moolenaar <Bram@vim.org>
parents: 31766
diff changeset
7713 *numMatches = 1;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7714 return OK;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7715 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7716
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7717 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7718 * Get the value for the numeric or string option *opp in a nice format into
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7719 * NameBuff[]. Must not be called with a hidden option!
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7720 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7721 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
7722 option_value2string(
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
7723 struct vimoption *opp,
26441
65ab0b035dd8 patch 8.2.3751: cannot assign a lambda to an option that takes a function
Bram Moolenaar <Bram@vim.org>
parents: 26400
diff changeset
7724 int scope) // OPT_GLOBAL and/or OPT_LOCAL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7725 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7726 char_u *varp;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7727
26441
65ab0b035dd8 patch 8.2.3751: cannot assign a lambda to an option that takes a function
Bram Moolenaar <Bram@vim.org>
parents: 26400
diff changeset
7728 varp = get_varp_scope(opp, scope);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7729
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7730 if (opp->flags & P_NUM)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7731 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7732 long wc = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7733
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7734 if (wc_use_keyname(varp, &wc))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7735 STRCPY(NameBuff, get_special_key_name((int)wc, 0));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7736 else if (wc != 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7737 STRCPY(NameBuff, transchar((int)wc));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7738 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7739 sprintf((char *)NameBuff, "%ld", *(long *)varp);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7740 }
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7741 else // P_STRING
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7742 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7743 varp = *(char_u **)(varp);
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7744 if (varp == NULL) // just in case
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7745 NameBuff[0] = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7746 #ifdef FEAT_CRYPT
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7747 // don't show the actual value of 'key', only that it's set
840
2c885fab04e3 updated for version 7.0e06
vimboss
parents: 839
diff changeset
7748 else if (opp->var == (char_u *)&p_key && *varp)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7749 STRCPY(NameBuff, "*****");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7750 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7751 else if (opp->flags & P_EXPAND)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7752 home_replace(NULL, varp, NameBuff, MAXPATHL, FALSE);
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7753 // Translate 'pastetoggle' into special key names
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7754 else if ((char_u **)opp->var == &p_pt)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7755 str2specialbuf(p_pt, NameBuff, MAXPATHL);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7756 else
419
f713fc55bf7b updated for version 7.0109
vimboss
parents: 410
diff changeset
7757 vim_strncpy(NameBuff, varp, MAXPATHL - 1);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7758 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7759 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7760
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7761 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7762 * Return TRUE if "varp" points to 'wildchar' or 'wildcharm' and it can be
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7763 * printed as a keyname.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7764 * "*wcp" is set to the value of the option if it's 'wildchar' or 'wildcharm'.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7765 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7766 static int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
7767 wc_use_keyname(char_u *varp, long *wcp)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7768 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7769 if (((long *)varp == &p_wc) || ((long *)varp == &p_wcm))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7770 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7771 *wcp = *(long *)varp;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7772 if (IS_SPECIAL(*wcp) || find_special_key_in_table((int)*wcp) >= 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7773 return TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7774 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7775 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7776 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7777
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7778 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7779 * Return TRUE if "x" is present in 'shortmess' option, or
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7780 * 'shortmess' contains 'a' and "x" is present in SHM_A.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7781 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7782 int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
7783 shortmess(int x)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7784 {
3384
da670fb71d30 updated for version 7.3.458
Bram Moolenaar <bram@vim.org>
parents: 3359
diff changeset
7785 return p_shm != NULL &&
da670fb71d30 updated for version 7.3.458
Bram Moolenaar <bram@vim.org>
parents: 3359
diff changeset
7786 ( vim_strchr(p_shm, x) != NULL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7787 || (vim_strchr(p_shm, 'a') != NULL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7788 && vim_strchr((char_u *)SHM_A, x) != NULL));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7789 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7790
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7791 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7792 * paste_option_changed() - Called after p_paste was set or reset.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7793 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7794 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
7795 paste_option_changed(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7796 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7797 static int old_p_paste = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7798 static int save_sm = 0;
7113
83b3261352b3 commit https://github.com/vim/vim/commit/54f018cd5994c3ffcd0740526e56db6934edf1f2
Christian Brabandt <cb@256bit.org>
parents: 7058
diff changeset
7799 static int save_sta = 0;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7800 static int save_ru = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7801 #ifdef FEAT_RIGHTLEFT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7802 static int save_ri = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7803 static int save_hkmap = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7804 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7805 buf_T *buf;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7806
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7807 if (p_paste)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7808 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7809 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7810 * Paste switched from off to on.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7811 * Save the current values, so they can be restored later.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7812 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7813 if (!old_p_paste)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7814 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7815 // save options for each buffer
9649
fd9727ae3c49 commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
7816 FOR_ALL_BUFFERS(buf)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7817 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7818 buf->b_p_tw_nopaste = buf->b_p_tw;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7819 buf->b_p_wm_nopaste = buf->b_p_wm;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7820 buf->b_p_sts_nopaste = buf->b_p_sts;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7821 buf->b_p_ai_nopaste = buf->b_p_ai;
7113
83b3261352b3 commit https://github.com/vim/vim/commit/54f018cd5994c3ffcd0740526e56db6934edf1f2
Christian Brabandt <cb@256bit.org>
parents: 7058
diff changeset
7822 buf->b_p_et_nopaste = buf->b_p_et;
14175
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
7823 #ifdef FEAT_VARTABS
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
7824 if (buf->b_p_vsts_nopaste)
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
7825 vim_free(buf->b_p_vsts_nopaste);
31174
1d00fa720007 patch 9.0.0921: missing defined(PROTO) in #ifdef
Bram Moolenaar <Bram@vim.org>
parents: 31000
diff changeset
7826 buf->b_p_vsts_nopaste =
1d00fa720007 patch 9.0.0921: missing defined(PROTO) in #ifdef
Bram Moolenaar <Bram@vim.org>
parents: 31000
diff changeset
7827 buf->b_p_vsts && buf->b_p_vsts != empty_option
1d00fa720007 patch 9.0.0921: missing defined(PROTO) in #ifdef
Bram Moolenaar <Bram@vim.org>
parents: 31000
diff changeset
7828 ? vim_strsave(buf->b_p_vsts) : NULL;
14175
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
7829 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7830 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7831
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7832 // save global options
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7833 save_sm = p_sm;
7113
83b3261352b3 commit https://github.com/vim/vim/commit/54f018cd5994c3ffcd0740526e56db6934edf1f2
Christian Brabandt <cb@256bit.org>
parents: 7058
diff changeset
7834 save_sta = p_sta;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7835 save_ru = p_ru;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7836 #ifdef FEAT_RIGHTLEFT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7837 save_ri = p_ri;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7838 save_hkmap = p_hkmap;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7839 #endif
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7840 // save global values for local buffer options
7113
83b3261352b3 commit https://github.com/vim/vim/commit/54f018cd5994c3ffcd0740526e56db6934edf1f2
Christian Brabandt <cb@256bit.org>
parents: 7058
diff changeset
7841 p_ai_nopaste = p_ai;
83b3261352b3 commit https://github.com/vim/vim/commit/54f018cd5994c3ffcd0740526e56db6934edf1f2
Christian Brabandt <cb@256bit.org>
parents: 7058
diff changeset
7842 p_et_nopaste = p_et;
83b3261352b3 commit https://github.com/vim/vim/commit/54f018cd5994c3ffcd0740526e56db6934edf1f2
Christian Brabandt <cb@256bit.org>
parents: 7058
diff changeset
7843 p_sts_nopaste = p_sts;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7844 p_tw_nopaste = p_tw;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7845 p_wm_nopaste = p_wm;
14175
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
7846 #ifdef FEAT_VARTABS
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
7847 if (p_vsts_nopaste)
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
7848 vim_free(p_vsts_nopaste);
31174
1d00fa720007 patch 9.0.0921: missing defined(PROTO) in #ifdef
Bram Moolenaar <Bram@vim.org>
parents: 31000
diff changeset
7849 p_vsts_nopaste = p_vsts && p_vsts != empty_option
1d00fa720007 patch 9.0.0921: missing defined(PROTO) in #ifdef
Bram Moolenaar <Bram@vim.org>
parents: 31000
diff changeset
7850 ? vim_strsave(p_vsts) : NULL;
14175
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
7851 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7852 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7853
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7854 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7855 * Always set the option values, also when 'paste' is set when it is
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7856 * already on.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7857 */
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7858 // set options for each buffer
9649
fd9727ae3c49 commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
7859 FOR_ALL_BUFFERS(buf)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7860 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7861 buf->b_p_tw = 0; // textwidth is 0
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7862 buf->b_p_wm = 0; // wrapmargin is 0
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7863 buf->b_p_sts = 0; // softtabstop is 0
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7864 buf->b_p_ai = 0; // no auto-indent
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7865 buf->b_p_et = 0; // no expandtab
14175
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
7866 #ifdef FEAT_VARTABS
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
7867 if (buf->b_p_vsts)
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
7868 free_string_option(buf->b_p_vsts);
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
7869 buf->b_p_vsts = empty_option;
27434
c1702fd7e716 patch 8.2.4245: ":retab 0" may cause illegal memory access
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
7870 VIM_CLEAR(buf->b_p_vsts_array);
14175
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
7871 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7872 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7873
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7874 // set global options
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7875 p_sm = 0; // no showmatch
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7876 p_sta = 0; // no smarttab
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7877 if (p_ru)
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7878 status_redraw_all(); // redraw to remove the ruler
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7879 p_ru = 0; // no ruler
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7880 #ifdef FEAT_RIGHTLEFT
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7881 p_ri = 0; // no reverse insert
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7882 p_hkmap = 0; // no Hebrew keyboard
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7883 #endif
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7884 // set global values for local buffer options
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7885 p_tw = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7886 p_wm = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7887 p_sts = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7888 p_ai = 0;
14175
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
7889 #ifdef FEAT_VARTABS
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
7890 if (p_vsts)
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
7891 free_string_option(p_vsts);
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
7892 p_vsts = empty_option;
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
7893 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7894 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7895
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7896 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7897 * Paste switched from on to off: Restore saved values.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7898 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7899 else if (old_p_paste)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7900 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7901 // restore options for each buffer
9649
fd9727ae3c49 commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
7902 FOR_ALL_BUFFERS(buf)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7903 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7904 buf->b_p_tw = buf->b_p_tw_nopaste;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7905 buf->b_p_wm = buf->b_p_wm_nopaste;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7906 buf->b_p_sts = buf->b_p_sts_nopaste;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7907 buf->b_p_ai = buf->b_p_ai_nopaste;
7113
83b3261352b3 commit https://github.com/vim/vim/commit/54f018cd5994c3ffcd0740526e56db6934edf1f2
Christian Brabandt <cb@256bit.org>
parents: 7058
diff changeset
7908 buf->b_p_et = buf->b_p_et_nopaste;
14175
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
7909 #ifdef FEAT_VARTABS
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
7910 if (buf->b_p_vsts)
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
7911 free_string_option(buf->b_p_vsts);
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
7912 buf->b_p_vsts = buf->b_p_vsts_nopaste
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
7913 ? vim_strsave(buf->b_p_vsts_nopaste) : empty_option;
27434
c1702fd7e716 patch 8.2.4245: ":retab 0" may cause illegal memory access
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
7914 vim_free(buf->b_p_vsts_array);
14175
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
7915 if (buf->b_p_vsts && buf->b_p_vsts != empty_option)
25733
4b2616ffe32b patch 8.2.3402: invalid memory access when using :retab with large value
Bram Moolenaar <Bram@vim.org>
parents: 25487
diff changeset
7916 (void)tabstop_set(buf->b_p_vsts, &buf->b_p_vsts_array);
14175
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
7917 else
27434
c1702fd7e716 patch 8.2.4245: ":retab 0" may cause illegal memory access
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
7918 buf->b_p_vsts_array = NULL;
14175
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
7919 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7920 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7921
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7922 // restore global options
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7923 p_sm = save_sm;
7113
83b3261352b3 commit https://github.com/vim/vim/commit/54f018cd5994c3ffcd0740526e56db6934edf1f2
Christian Brabandt <cb@256bit.org>
parents: 7058
diff changeset
7924 p_sta = save_sta;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7925 if (p_ru != save_ru)
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7926 status_redraw_all(); // redraw to draw the ruler
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7927 p_ru = save_ru;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7928 #ifdef FEAT_RIGHTLEFT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7929 p_ri = save_ri;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7930 p_hkmap = save_hkmap;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7931 #endif
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7932 // set global values for local buffer options
7113
83b3261352b3 commit https://github.com/vim/vim/commit/54f018cd5994c3ffcd0740526e56db6934edf1f2
Christian Brabandt <cb@256bit.org>
parents: 7058
diff changeset
7933 p_ai = p_ai_nopaste;
83b3261352b3 commit https://github.com/vim/vim/commit/54f018cd5994c3ffcd0740526e56db6934edf1f2
Christian Brabandt <cb@256bit.org>
parents: 7058
diff changeset
7934 p_et = p_et_nopaste;
83b3261352b3 commit https://github.com/vim/vim/commit/54f018cd5994c3ffcd0740526e56db6934edf1f2
Christian Brabandt <cb@256bit.org>
parents: 7058
diff changeset
7935 p_sts = p_sts_nopaste;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7936 p_tw = p_tw_nopaste;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7937 p_wm = p_wm_nopaste;
14175
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
7938 #ifdef FEAT_VARTABS
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
7939 if (p_vsts)
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
7940 free_string_option(p_vsts);
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
7941 p_vsts = p_vsts_nopaste ? vim_strsave(p_vsts_nopaste) : empty_option;
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
7942 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7943 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7944
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7945 old_p_paste = p_paste;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7946 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7947
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7948 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7949 * vimrc_found() - Called when a ".vimrc" or "VIMINIT" has been found.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7950 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7951 * Reset 'compatible' and set the values for options that didn't get set yet
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7952 * to the Vim defaults.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7953 * Don't do this if the 'compatible' option has been set or reset before.
819
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 818
diff changeset
7954 * When "fname" is not NULL, use it to set $"envname" when it wasn't set yet.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7955 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7956 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
7957 vimrc_found(char_u *fname, char_u *envname)
819
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 818
diff changeset
7958 {
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 818
diff changeset
7959 int opt_idx;
826
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 825
diff changeset
7960 int dofree = FALSE;
819
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 818
diff changeset
7961 char_u *p;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7962
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7963 if (!option_was_set((char_u *)"cp"))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7964 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7965 p_cp = FALSE;
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
7966 for (opt_idx = 0; !istermoption_idx(opt_idx); opt_idx++)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7967 if (!(options[opt_idx].flags & (P_WAS_SET|P_VI_DEF)))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7968 set_option_default(opt_idx, OPT_FREE, FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7969 didset_options();
7040
17a3fa77e941 commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents: 7034
diff changeset
7970 didset_options2();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7971 }
819
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 818
diff changeset
7972
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 818
diff changeset
7973 if (fname != NULL)
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 818
diff changeset
7974 {
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 818
diff changeset
7975 p = vim_getenv(envname, &dofree);
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 818
diff changeset
7976 if (p == NULL)
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 818
diff changeset
7977 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7978 // Set $MYVIMRC to the first vimrc file found.
819
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 818
diff changeset
7979 p = FullName_save(fname, FALSE);
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 818
diff changeset
7980 if (p != NULL)
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 818
diff changeset
7981 {
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 818
diff changeset
7982 vim_setenv(envname, p);
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 818
diff changeset
7983 vim_free(p);
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 818
diff changeset
7984 }
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 818
diff changeset
7985 }
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 818
diff changeset
7986 else if (dofree)
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 818
diff changeset
7987 vim_free(p);
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 818
diff changeset
7988 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7989 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7990
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7991 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7992 * Set 'compatible' on or off. Called for "-C" and "-N" command line arg.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7993 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7994 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
7995 change_compatible(int on)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7996 {
838
8e5830943bff updated for version 7.0e04
vimboss
parents: 836
diff changeset
7997 int opt_idx;
8e5830943bff updated for version 7.0e04
vimboss
parents: 836
diff changeset
7998
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7999 if (p_cp != on)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8000 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8001 p_cp = on;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8002 compatible_set();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8003 }
838
8e5830943bff updated for version 7.0e04
vimboss
parents: 836
diff changeset
8004 opt_idx = findoption((char_u *)"cp");
8e5830943bff updated for version 7.0e04
vimboss
parents: 836
diff changeset
8005 if (opt_idx >= 0)
8e5830943bff updated for version 7.0e04
vimboss
parents: 836
diff changeset
8006 options[opt_idx].flags |= P_WAS_SET;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8007 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8008
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8009 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8010 * Return TRUE when option "name" has been set.
5245
8c6615a30951 updated for version 7.4a.047
Bram Moolenaar <bram@vim.org>
parents: 5157
diff changeset
8011 * Only works correctly for global options.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8012 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8013 int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
8014 option_was_set(char_u *name)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8015 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8016 int idx;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8017
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8018 idx = findoption(name);
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
8019 if (idx < 0) // unknown option
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8020 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8021 if (options[idx].flags & P_WAS_SET)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8022 return TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8023 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8024 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8025
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8026 /*
3980
aab4b29520e7 updated for version 7.3.745
Bram Moolenaar <bram@vim.org>
parents: 3894
diff changeset
8027 * Reset the flag indicating option "name" was set.
aab4b29520e7 updated for version 7.3.745
Bram Moolenaar <bram@vim.org>
parents: 3894
diff changeset
8028 */
14748
00da090af0ab patch 8.1.0386: cannot test with non-default option value
Christian Brabandt <cb@256bit.org>
parents: 14702
diff changeset
8029 int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
8030 reset_option_was_set(char_u *name)
3980
aab4b29520e7 updated for version 7.3.745
Bram Moolenaar <bram@vim.org>
parents: 3894
diff changeset
8031 {
aab4b29520e7 updated for version 7.3.745
Bram Moolenaar <bram@vim.org>
parents: 3894
diff changeset
8032 int idx = findoption(name);
aab4b29520e7 updated for version 7.3.745
Bram Moolenaar <bram@vim.org>
parents: 3894
diff changeset
8033
31752
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
8034 if (idx < 0)
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
8035 return FAIL;
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
8036
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
8037 options[idx].flags &= ~P_WAS_SET;
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
8038 return OK;
3980
aab4b29520e7 updated for version 7.3.745
Bram Moolenaar <bram@vim.org>
parents: 3894
diff changeset
8039 }
aab4b29520e7 updated for version 7.3.745
Bram Moolenaar <bram@vim.org>
parents: 3894
diff changeset
8040
aab4b29520e7 updated for version 7.3.745
Bram Moolenaar <bram@vim.org>
parents: 3894
diff changeset
8041 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8042 * compatible_set() - Called when 'compatible' has been set or unset.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8043 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8044 * When 'compatible' set: Set all relevant options (those that have the P_VIM)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8045 * flag) to a Vi compatible value.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8046 * When 'compatible' is unset: Set all options that have a different default
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8047 * for Vim (without the P_VI_DEF flag) to that default.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8048 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8049 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
8050 compatible_set(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8051 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8052 int opt_idx;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8053
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
8054 for (opt_idx = 0; !istermoption_idx(opt_idx); opt_idx++)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8055 if ( ((options[opt_idx].flags & P_VIM) && p_cp)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8056 || (!(options[opt_idx].flags & P_VI_DEF) && !p_cp))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8057 set_option_default(opt_idx, OPT_FREE, p_cp);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8058 didset_options();
7040
17a3fa77e941 commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents: 7034
diff changeset
8059 didset_options2();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8060 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8061
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
8062 #if defined(FEAT_LINEBREAK) || defined(PROTO)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8063
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8064 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8065 * fill_breakat_flags() -- called when 'breakat' changes value.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8066 */
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
8067 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
8068 fill_breakat_flags(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8069 {
500
4772a5e3f9fa updated for version 7.0138
vimboss
parents: 484
diff changeset
8070 char_u *p;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8071 int i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8072
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8073 for (i = 0; i < 256; i++)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8074 breakat_flags[i] = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8075
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8076 if (p_breakat != NULL)
500
4772a5e3f9fa updated for version 7.0138
vimboss
parents: 484
diff changeset
8077 for (p = p_breakat; *p; p++)
4772a5e3f9fa updated for version 7.0138
vimboss
parents: 484
diff changeset
8078 breakat_flags[*p] = TRUE;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8079 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8080 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8081
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8082 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8083 * Check if backspacing over something is allowed.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8084 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8085 int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
8086 can_bs(
20069
9a67d41708d2 patch 8.2.0590: no 'backspace' value allows ignoring the insertion point
Bram Moolenaar <Bram@vim.org>
parents: 20007
diff changeset
8087 int what) // BS_INDENT, BS_EOL, BS_START or BS_NOSTOP
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8088 {
14029
d9fc15c833d5 patch 8.1.0032: BS in prompt buffer starts new line
Christian Brabandt <cb@256bit.org>
parents: 14019
diff changeset
8089 #ifdef FEAT_JOB_CHANNEL
d9fc15c833d5 patch 8.1.0032: BS in prompt buffer starts new line
Christian Brabandt <cb@256bit.org>
parents: 14019
diff changeset
8090 if (what == BS_START && bt_prompt(curbuf))
d9fc15c833d5 patch 8.1.0032: BS in prompt buffer starts new line
Christian Brabandt <cb@256bit.org>
parents: 14019
diff changeset
8091 return FALSE;
d9fc15c833d5 patch 8.1.0032: BS in prompt buffer starts new line
Christian Brabandt <cb@256bit.org>
parents: 14019
diff changeset
8092 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8093 switch (*p_bs)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8094 {
20069
9a67d41708d2 patch 8.2.0590: no 'backspace' value allows ignoring the insertion point
Bram Moolenaar <Bram@vim.org>
parents: 20007
diff changeset
8095 case '3': return TRUE;
9a67d41708d2 patch 8.2.0590: no 'backspace' value allows ignoring the insertion point
Bram Moolenaar <Bram@vim.org>
parents: 20007
diff changeset
8096 case '2': return (what != BS_NOSTOP);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8097 case '1': return (what != BS_START);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8098 case '0': return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8099 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8100 return vim_strchr(p_bs, what) != NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8101 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8102
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8103 /*
15713
ad8b2c109b22 patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents: 15701
diff changeset
8104 * Return the effective 'scrolloff' value for the current window, using the
ad8b2c109b22 patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents: 15701
diff changeset
8105 * global value when appropriate.
ad8b2c109b22 patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents: 15701
diff changeset
8106 */
ad8b2c109b22 patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents: 15701
diff changeset
8107 long
ad8b2c109b22 patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents: 15701
diff changeset
8108 get_scrolloff_value(void)
ad8b2c109b22 patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents: 15701
diff changeset
8109 {
ad8b2c109b22 patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents: 15701
diff changeset
8110 return curwin->w_p_so < 0 ? p_so : curwin->w_p_so;
ad8b2c109b22 patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents: 15701
diff changeset
8111 }
ad8b2c109b22 patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents: 15701
diff changeset
8112
ad8b2c109b22 patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents: 15701
diff changeset
8113 /*
ad8b2c109b22 patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents: 15701
diff changeset
8114 * Return the effective 'sidescrolloff' value for the current window, using the
ad8b2c109b22 patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents: 15701
diff changeset
8115 * global value when appropriate.
ad8b2c109b22 patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents: 15701
diff changeset
8116 */
ad8b2c109b22 patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents: 15701
diff changeset
8117 long
ad8b2c109b22 patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents: 15701
diff changeset
8118 get_sidescrolloff_value(void)
ad8b2c109b22 patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents: 15701
diff changeset
8119 {
ad8b2c109b22 patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents: 15701
diff changeset
8120 return curwin->w_p_siso < 0 ? p_siso : curwin->w_p_siso;
ad8b2c109b22 patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents: 15701
diff changeset
8121 }
ad8b2c109b22 patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents: 15701
diff changeset
8122
ad8b2c109b22 patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents: 15701
diff changeset
8123 /*
6243
54194bd6ed60 updated for version 7.4.456
Bram Moolenaar <bram@vim.org>
parents: 6205
diff changeset
8124 * Get the local or global value of 'backupcopy'.
54194bd6ed60 updated for version 7.4.456
Bram Moolenaar <bram@vim.org>
parents: 6205
diff changeset
8125 */
54194bd6ed60 updated for version 7.4.456
Bram Moolenaar <bram@vim.org>
parents: 6205
diff changeset
8126 unsigned int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
8127 get_bkc_value(buf_T *buf)
6243
54194bd6ed60 updated for version 7.4.456
Bram Moolenaar <bram@vim.org>
parents: 6205
diff changeset
8128 {
54194bd6ed60 updated for version 7.4.456
Bram Moolenaar <bram@vim.org>
parents: 6205
diff changeset
8129 return buf->b_bkc_flags ? buf->b_bkc_flags : bkc_flags;
54194bd6ed60 updated for version 7.4.456
Bram Moolenaar <bram@vim.org>
parents: 6205
diff changeset
8130 }
9852
4eea48b76d03 commit https://github.com/vim/vim/commit/95ec9d6a6ab3117d60ff638670a803d43974ba51
Christian Brabandt <cb@256bit.org>
parents: 9798
diff changeset
8131
28405
473cfd79bcd8 patch 8.2.4727: unused code
Bram Moolenaar <Bram@vim.org>
parents: 28357
diff changeset
8132 #if defined(FEAT_LINEBREAK) || defined(PROTO)
25380
ac88cd21ae88 patch 8.2.3227: 'virtualedit' can only be set globally
Bram Moolenaar <Bram@vim.org>
parents: 25320
diff changeset
8133 /*
27128
164d59ddd48a patch 8.2.4093: cached breakindent values not initialized properly
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
8134 * Get the local or global value of 'formatlistpat'.
164d59ddd48a patch 8.2.4093: cached breakindent values not initialized properly
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
8135 */
164d59ddd48a patch 8.2.4093: cached breakindent values not initialized properly
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
8136 char_u *
164d59ddd48a patch 8.2.4093: cached breakindent values not initialized properly
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
8137 get_flp_value(buf_T *buf)
164d59ddd48a patch 8.2.4093: cached breakindent values not initialized properly
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
8138 {
164d59ddd48a patch 8.2.4093: cached breakindent values not initialized properly
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
8139 if (buf->b_p_flp == NULL || *buf->b_p_flp == NUL)
164d59ddd48a patch 8.2.4093: cached breakindent values not initialized properly
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
8140 return p_flp;
164d59ddd48a patch 8.2.4093: cached breakindent values not initialized properly
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
8141 return buf->b_p_flp;
164d59ddd48a patch 8.2.4093: cached breakindent values not initialized properly
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
8142 }
28405
473cfd79bcd8 patch 8.2.4727: unused code
Bram Moolenaar <Bram@vim.org>
parents: 28357
diff changeset
8143 #endif
27128
164d59ddd48a patch 8.2.4093: cached breakindent values not initialized properly
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
8144
164d59ddd48a patch 8.2.4093: cached breakindent values not initialized properly
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
8145 /*
25380
ac88cd21ae88 patch 8.2.3227: 'virtualedit' can only be set globally
Bram Moolenaar <Bram@vim.org>
parents: 25320
diff changeset
8146 * Get the local or global value of the 'virtualedit' flags.
ac88cd21ae88 patch 8.2.3227: 'virtualedit' can only be set globally
Bram Moolenaar <Bram@vim.org>
parents: 25320
diff changeset
8147 */
ac88cd21ae88 patch 8.2.3227: 'virtualedit' can only be set globally
Bram Moolenaar <Bram@vim.org>
parents: 25320
diff changeset
8148 unsigned int
ac88cd21ae88 patch 8.2.3227: 'virtualedit' can only be set globally
Bram Moolenaar <Bram@vim.org>
parents: 25320
diff changeset
8149 get_ve_flags(void)
ac88cd21ae88 patch 8.2.3227: 'virtualedit' can only be set globally
Bram Moolenaar <Bram@vim.org>
parents: 25320
diff changeset
8150 {
25487
c26ff3203b43 patch 8.2.3280: 'virtualedit' local to buffer is not the best solution
Bram Moolenaar <Bram@vim.org>
parents: 25419
diff changeset
8151 return (curwin->w_ve_flags ? curwin->w_ve_flags : ve_flags)
c26ff3203b43 patch 8.2.3280: 'virtualedit' local to buffer is not the best solution
Bram Moolenaar <Bram@vim.org>
parents: 25419
diff changeset
8152 & ~(VE_NONE | VE_NONEU);
25380
ac88cd21ae88 patch 8.2.3227: 'virtualedit' can only be set globally
Bram Moolenaar <Bram@vim.org>
parents: 25320
diff changeset
8153 }
ac88cd21ae88 patch 8.2.3227: 'virtualedit' can only be set globally
Bram Moolenaar <Bram@vim.org>
parents: 25320
diff changeset
8154
18574
8b0114ffde2b patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents: 18498
diff changeset
8155 #if defined(FEAT_LINEBREAK) || defined(PROTO)
8b0114ffde2b patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents: 18498
diff changeset
8156 /*
8b0114ffde2b patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents: 18498
diff changeset
8157 * Get the local or global value of 'showbreak'.
8b0114ffde2b patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents: 18498
diff changeset
8158 */
8b0114ffde2b patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents: 18498
diff changeset
8159 char_u *
8b0114ffde2b patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents: 18498
diff changeset
8160 get_showbreak_value(win_T *win)
8b0114ffde2b patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents: 18498
diff changeset
8161 {
8b0114ffde2b patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents: 18498
diff changeset
8162 if (win->w_p_sbr == NULL || *win->w_p_sbr == NUL)
8b0114ffde2b patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents: 18498
diff changeset
8163 return p_sbr;
8b0114ffde2b patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents: 18498
diff changeset
8164 if (STRCMP(win->w_p_sbr, "NONE") == 0)
8b0114ffde2b patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents: 18498
diff changeset
8165 return empty_option;
8b0114ffde2b patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents: 18498
diff changeset
8166 return win->w_p_sbr;
8b0114ffde2b patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents: 18498
diff changeset
8167 }
8b0114ffde2b patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents: 18498
diff changeset
8168 #endif
8b0114ffde2b patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents: 18498
diff changeset
8169
9858
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8170 #if defined(FEAT_EVAL) || defined(PROTO)
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8171 /*
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8172 * Get window or buffer local options.
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8173 */
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8174 dict_T *
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8175 get_winbuf_options(int bufopt)
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8176 {
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8177 dict_T *d;
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8178 int opt_idx;
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8179
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8180 d = dict_alloc();
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8181 if (d == NULL)
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8182 return NULL;
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8183
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
8184 for (opt_idx = 0; !istermoption_idx(opt_idx); opt_idx++)
9858
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8185 {
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8186 struct vimoption *opt = &options[opt_idx];
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8187
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8188 if ((bufopt && (opt->indir & PV_BUF))
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8189 || (!bufopt && (opt->indir & PV_WIN)))
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8190 {
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8191 char_u *varp = get_varp(opt);
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8192
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8193 if (varp != NULL)
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8194 {
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8195 if (opt->flags & P_STRING)
14301
3c80092eb211 patch 8.1.0166: using dict_add_nr_str() is clumsy
Christian Brabandt <cb@256bit.org>
parents: 14243
diff changeset
8196 dict_add_string(d, opt->fullname, *(char_u **)varp);
10205
22e97a250277 commit https://github.com/vim/vim/commit/789a5c0e3d27f09456678f0cfb6c1bd2d8ab4a35
Christian Brabandt <cb@256bit.org>
parents: 10070
diff changeset
8197 else if (opt->flags & P_NUM)
14301
3c80092eb211 patch 8.1.0166: using dict_add_nr_str() is clumsy
Christian Brabandt <cb@256bit.org>
parents: 14243
diff changeset
8198 dict_add_number(d, opt->fullname, *(long *)varp);
9858
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8199 else
14301
3c80092eb211 patch 8.1.0166: using dict_add_nr_str() is clumsy
Christian Brabandt <cb@256bit.org>
parents: 14243
diff changeset
8200 dict_add_number(d, opt->fullname, *(int *)varp);
9858
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8201 }
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8202 }
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8203 }
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8204
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8205 return d;
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8206 }
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8207 #endif
18068
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8208
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
8209 #if defined(FEAT_SYN_HL) || defined(PROTO)
18068
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8210 /*
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8211 * This is called when 'culopt' is changed
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8212 */
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
8213 int
18068
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8214 fill_culopt_flags(char_u *val, win_T *wp)
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8215 {
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8216 char_u *p;
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8217 char_u culopt_flags_new = 0;
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8218
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8219 if (val == NULL)
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8220 p = wp->w_p_culopt;
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8221 else
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8222 p = val;
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8223 while (*p != NUL)
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8224 {
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8225 if (STRNCMP(p, "line", 4) == 0)
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8226 {
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8227 p += 4;
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8228 culopt_flags_new |= CULOPT_LINE;
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8229 }
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8230 else if (STRNCMP(p, "both", 4) == 0)
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8231 {
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8232 p += 4;
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8233 culopt_flags_new |= CULOPT_LINE | CULOPT_NBR;
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8234 }
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8235 else if (STRNCMP(p, "number", 6) == 0)
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8236 {
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8237 p += 6;
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8238 culopt_flags_new |= CULOPT_NBR;
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8239 }
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8240 else if (STRNCMP(p, "screenline", 10) == 0)
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8241 {
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8242 p += 10;
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8243 culopt_flags_new |= CULOPT_SCRLINE;
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8244 }
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8245
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8246 if (*p != ',' && *p != NUL)
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8247 return FAIL;
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8248 if (*p == ',')
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8249 ++p;
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8250 }
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8251
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8252 // Can't have both "line" and "screenline".
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8253 if ((culopt_flags_new & CULOPT_LINE) && (culopt_flags_new & CULOPT_SCRLINE))
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8254 return FAIL;
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8255 wp->w_p_culopt_flags = culopt_flags_new;
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8256
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8257 return OK;
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8258 }
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8259 #endif
23272
a84e7abb0c92 patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents: 22699
diff changeset
8260
a84e7abb0c92 patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents: 22699
diff changeset
8261 /*
a84e7abb0c92 patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents: 22699
diff changeset
8262 * Get the value of 'magic' adjusted for Vim9 script.
a84e7abb0c92 patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents: 22699
diff changeset
8263 */
a84e7abb0c92 patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents: 22699
diff changeset
8264 int
a84e7abb0c92 patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents: 22699
diff changeset
8265 magic_isset(void)
a84e7abb0c92 patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents: 22699
diff changeset
8266 {
a84e7abb0c92 patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents: 22699
diff changeset
8267 switch (magic_overruled)
a84e7abb0c92 patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents: 22699
diff changeset
8268 {
23505
bb29b09902d5 patch 8.2.2295: incsearch does not detect empty pattern properly
Bram Moolenaar <Bram@vim.org>
parents: 23467
diff changeset
8269 case OPTION_MAGIC_ON: return TRUE;
bb29b09902d5 patch 8.2.2295: incsearch does not detect empty pattern properly
Bram Moolenaar <Bram@vim.org>
parents: 23467
diff changeset
8270 case OPTION_MAGIC_OFF: return FALSE;
bb29b09902d5 patch 8.2.2295: incsearch does not detect empty pattern properly
Bram Moolenaar <Bram@vim.org>
parents: 23467
diff changeset
8271 case OPTION_MAGIC_NOT_SET: break;
23272
a84e7abb0c92 patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents: 22699
diff changeset
8272 }
a84e7abb0c92 patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents: 22699
diff changeset
8273 #ifdef FEAT_EVAL
a84e7abb0c92 patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents: 22699
diff changeset
8274 if (in_vim9script())
a84e7abb0c92 patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents: 22699
diff changeset
8275 return TRUE;
a84e7abb0c92 patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents: 22699
diff changeset
8276 #endif
a84e7abb0c92 patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents: 22699
diff changeset
8277 return p_magic;
a84e7abb0c92 patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents: 22699
diff changeset
8278 }
26175
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8279
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8280 /*
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8281 * Set the callback function value for an option that accepts a function name,
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8282 * lambda, et al. (e.g. 'operatorfunc', 'tagfunc', etc.)
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8283 * Returns OK if the option is successfully set to a function, otherwise
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8284 * returns FAIL.
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8285 */
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8286 int
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8287 option_set_callback_func(char_u *optval UNUSED, callback_T *optcb UNUSED)
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8288 {
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8289 #ifdef FEAT_EVAL
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8290 typval_T *tv;
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8291 callback_T cb;
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8292
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8293 if (optval == NULL || *optval == NUL)
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8294 {
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8295 free_callback(optcb);
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8296 return OK;
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8297 }
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8298
26362
dbe615b75f15 patch 8.2.3712: cannot use Vim9 lambda for 'tagfunc'
Bram Moolenaar <Bram@vim.org>
parents: 26336
diff changeset
8299 if (*optval == '{' || (in_vim9script() && *optval == '(')
26175
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8300 || (STRNCMP(optval, "function(", 9) == 0)
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8301 || (STRNCMP(optval, "funcref(", 8) == 0))
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8302 // Lambda expression or a funcref
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8303 tv = eval_expr(optval, NULL);
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8304 else
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8305 // treat everything else as a function name string
26721
9c9b8d95b05f patch 8.2.3889: duplicate code for translating script-local function name
Bram Moolenaar <Bram@vim.org>
parents: 26618
diff changeset
8306 tv = alloc_string_tv(vim_strsave(optval));
26175
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8307 if (tv == NULL)
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8308 return FAIL;
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8309
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8310 cb = get_callback(tv);
26452
65b4109a4297 patch 8.2.3756: might crash when callback is not valid
Bram Moolenaar <Bram@vim.org>
parents: 26441
diff changeset
8311 if (cb.cb_name == NULL || *cb.cb_name == NUL)
26175
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8312 {
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8313 free_tv(tv);
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8314 return FAIL;
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8315 }
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8316
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8317 free_callback(optcb);
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8318 set_callback(optcb, &cb);
31313
b6bef244837e patch 9.0.0990: callback name argument is changed by setqflist()
Bram Moolenaar <Bram@vim.org>
parents: 31259
diff changeset
8319 if (cb.cb_free_name)
b6bef244837e patch 9.0.0990: callback name argument is changed by setqflist()
Bram Moolenaar <Bram@vim.org>
parents: 31259
diff changeset
8320 vim_free(cb.cb_name);
26175
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8321 free_tv(tv);
27285
53edd190a607 patch 8.2.4171: cannot invoke option function using autoload import
Bram Moolenaar <Bram@vim.org>
parents: 27142
diff changeset
8322
53edd190a607 patch 8.2.4171: cannot invoke option function using autoload import
Bram Moolenaar <Bram@vim.org>
parents: 27142
diff changeset
8323 // when using Vim9 style "import.funcname" it needs to be expanded to
53edd190a607 patch 8.2.4171: cannot invoke option function using autoload import
Bram Moolenaar <Bram@vim.org>
parents: 27142
diff changeset
8324 // "import#funcname".
53edd190a607 patch 8.2.4171: cannot invoke option function using autoload import
Bram Moolenaar <Bram@vim.org>
parents: 27142
diff changeset
8325 expand_autload_callback(optcb);
53edd190a607 patch 8.2.4171: cannot invoke option function using autoload import
Bram Moolenaar <Bram@vim.org>
parents: 27142
diff changeset
8326
26175
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8327 return OK;
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8328 #else
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8329 return FAIL;
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8330 #endif
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8331 }