Mercurial > vim
annotate src/option.c @ 22171:d4c7b3e9cd17
Update runtime files.
Commit: https://github.com/vim/vim/commit/1c6737b20a5cf71751b180461cea22fc76d8870c
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon Sep 7 22:18:52 2020 +0200
Update runtime files.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Mon, 07 Sep 2020 22:30:04 +0200 |
parents | 9099eb378758 |
children | b5abb88d5700 |
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 | 2 * |
3 * VIM - Vi IMproved by Bram Moolenaar | |
4 * | |
5 * Do ":help uganda" in Vim to read copying and usage conditions. | |
6 * Do ":help credits" in Vim to see a list of people who contributed. | |
7 * See README.txt for an overview of the Vim source code. | |
8 */ | |
9 | |
10 /* | |
11 * Code to handle user-settable options. This is all pretty much table- | |
12 * driven. Checklist for adding a new option: | |
13 * - Put it in the options array below (copy an existing entry). | |
14 * - For a global option: Add a variable for it in option.h. | |
15 * - For a buffer or window local option: | |
16 * - Add a PV_XX entry to the enum below. | |
17 * - Add a variable to the window or buffer struct in structs.h. | |
18 * - For a window option, add some code to copy_winopt(). | |
19 * - For a buffer option, add some code to buf_copy_options(). | |
20 * - For a buffer string option, add code to check_buf_options(). | |
21 * - If it's a numeric option, add any necessary bounds checks to do_set(). | |
22 * - If it's a list of flags, add some code in do_set(), search for WW_ALL. | |
23 * - When adding an option with expansion (P_EXPAND), but with a different | |
24 * default for Vi and Vim (no P_VI_DEF), add some code at VIMEXP. | |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10205
diff
changeset
|
25 * - Add documentation! One line in doc/quickref.txt, full description in |
7 | 26 * options.txt, and any other related places. |
27 * - Add an entry in runtime/optwin.vim. | |
28 * When making changes: | |
29 * - Adjust the help for the option in doc/option.txt. | |
30 * - When an entry has the P_VIM flag, or is lacking the P_VI_DEF flag, add a | |
31 * comment at the help for the 'compatible' option. | |
32 */ | |
33 | |
34 #define IN_OPTION_C | |
35 #include "vim.h" | |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18047
diff
changeset
|
36 #include "optiondefs.h" |
7 | 37 |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7697
diff
changeset
|
38 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
|
39 static void set_string_default_esc(char *name, char_u *val, int escape); |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7697
diff
changeset
|
40 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
|
41 static void didset_options(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7697
diff
changeset
|
42 static void didset_options2(void); |
681 | 43 #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
|
44 static long_u *insecure_flag(int opt_idx, int opt_flags); |
681 | 45 #else |
46 # define insecure_flag(opt_idx, opt_flags) (&options[opt_idx].flags) | |
47 #endif | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15207
diff
changeset
|
48 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
|
49 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
|
50 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
|
51 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
|
52 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
|
53 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
|
54 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
|
55 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
|
56 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
|
57 static int istermoption(struct vimoption *p); |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7697
diff
changeset
|
58 static char_u *get_varp_scope(struct vimoption *p, int opt_flags); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7697
diff
changeset
|
59 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
|
60 static void check_win_options(win_T *win); |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7697
diff
changeset
|
61 static void option_value2string(struct vimoption *, int opt_flags); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7697
diff
changeset
|
62 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
|
63 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
|
64 static void paste_option_changed(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7697
diff
changeset
|
65 static void compatible_set(void); |
7 | 66 |
67 /* | |
68 * Initialize the options, first part. | |
69 * | |
70 * Called only once from main(), just after creating the first buffer. | |
13361
65c29bd4548b
patch 8.0.1554: custom plugins loaded with --clean
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
71 * If "clean_arg" is TRUE Vim was started with --clean. |
7 | 72 */ |
73 void | |
13361
65c29bd4548b
patch 8.0.1554: custom plugins loaded with --clean
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
74 set_init_1(int clean_arg) |
7 | 75 { |
76 char_u *p; | |
77 int opt_idx; | |
835 | 78 long_u n; |
7 | 79 |
80 #ifdef FEAT_LANGMAP | |
81 langmap_init(); | |
82 #endif | |
83 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
84 // Be Vi compatible by default |
7 | 85 p_cp = TRUE; |
86 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
87 // Use POSIX compatibility when $VIM_POSIX is set. |
164 | 88 if (mch_getenv((char_u *)"VIM_POSIX") != NULL) |
168 | 89 { |
164 | 90 set_string_default("cpo", (char_u *)CPO_ALL); |
16533
5e25171e0e75
patch 8.1.1270: cannot see current match position
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
91 set_string_default("shm", (char_u *)SHM_POSIX); |
168 | 92 } |
164 | 93 |
7 | 94 /* |
95 * Find default value for 'shell' option. | |
161 | 96 * Don't use it if it is empty. |
7 | 97 */ |
161 | 98 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
|
99 #if defined(MSWIN) |
161 | 100 || ((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
|
101 || ((p = (char_u *)default_shell()) != NULL && *p != NUL) |
7 | 102 #endif |
161 | 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 #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
|
105 { |
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 // 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
|
107 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
|
108 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
|
109 |
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 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
|
111 { |
85160a3649b9
patch 8.1.2115: MS-Windows: shell commands fail if &shell contains a space
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
112 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
|
113 cmd = alloc(len); |
18243
463da8586749
patch 8.1.2116: no check for out of memory
Bram Moolenaar <Bram@vim.org>
parents:
18241
diff
changeset
|
114 if (cmd != NULL) |
463da8586749
patch 8.1.2116: no check for out of memory
Bram Moolenaar <Bram@vim.org>
parents:
18241
diff
changeset
|
115 { |
463da8586749
patch 8.1.2116: no check for out of memory
Bram Moolenaar <Bram@vim.org>
parents:
18241
diff
changeset
|
116 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
|
117 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
|
118 vim_free(cmd); |
463da8586749
patch 8.1.2116: no check for out of memory
Bram Moolenaar <Bram@vim.org>
parents:
18241
diff
changeset
|
119 } |
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
|
120 } |
85160a3649b9
patch 8.1.2115: MS-Windows: shell commands fail if &shell contains a space
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
121 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
|
122 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
|
123 } |
85160a3649b9
patch 8.1.2115: MS-Windows: shell commands fail if &shell contains a space
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
124 #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
|
125 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
|
126 #endif |
7 | 127 |
128 #ifdef FEAT_WILDIGN | |
129 /* | |
130 * Set the default for 'backupskip' to include environment variables for | |
131 * temp files. | |
132 */ | |
133 { | |
134 # ifdef UNIX | |
135 static char *(names[4]) = {"", "TMPDIR", "TEMP", "TMP"}; | |
136 # else | |
137 static char *(names[3]) = {"TMPDIR", "TEMP", "TMP"}; | |
138 # endif | |
170 | 139 int len; |
140 garray_T ga; | |
141 int mustfree; | |
7 | 142 |
143 ga_init2(&ga, 1, 100); | |
144 for (n = 0; n < (long)(sizeof(names) / sizeof(char *)); ++n) | |
145 { | |
170 | 146 mustfree = FALSE; |
7 | 147 # ifdef UNIX |
148 if (*names[n] == NUL) | |
13664
f64c5e636c9f
patch 8.0.1704: 'backupskip' default doesn't work for Mac
Christian Brabandt <cb@256bit.org>
parents:
13632
diff
changeset
|
149 # ifdef MACOS_X |
f64c5e636c9f
patch 8.0.1704: 'backupskip' default doesn't work for Mac
Christian Brabandt <cb@256bit.org>
parents:
13632
diff
changeset
|
150 p = (char_u *)"/private/tmp"; |
f64c5e636c9f
patch 8.0.1704: 'backupskip' default doesn't work for Mac
Christian Brabandt <cb@256bit.org>
parents:
13632
diff
changeset
|
151 # else |
7 | 152 p = (char_u *)"/tmp"; |
13664
f64c5e636c9f
patch 8.0.1704: 'backupskip' default doesn't work for Mac
Christian Brabandt <cb@256bit.org>
parents:
13632
diff
changeset
|
153 # endif |
7 | 154 else |
155 # endif | |
170 | 156 p = vim_getenv((char_u *)names[n], &mustfree); |
7 | 157 if (p != NULL && *p != NUL) |
158 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
159 // First time count the NUL, otherwise count the ','. |
835 | 160 len = (int)STRLEN(p) + 3; |
7 | 161 if (ga_grow(&ga, len) == OK) |
162 { | |
163 if (ga.ga_len > 0) | |
164 STRCAT(ga.ga_data, ","); | |
165 STRCAT(ga.ga_data, p); | |
166 add_pathsep(ga.ga_data); | |
167 STRCAT(ga.ga_data, "*"); | |
168 ga.ga_len += len; | |
169 } | |
170 } | |
170 | 171 if (mustfree) |
172 vim_free(p); | |
7 | 173 } |
174 if (ga.ga_data != NULL) | |
175 { | |
176 set_string_default("bsk", ga.ga_data); | |
177 vim_free(ga.ga_data); | |
178 } | |
179 } | |
180 #endif | |
181 | |
182 /* | |
183 * 'maxmemtot' and 'maxmem' may have to be adjusted for available memory | |
184 */ | |
185 opt_idx = findoption((char_u *)"maxmemtot"); | |
838 | 186 if (opt_idx >= 0) |
187 { | |
7 | 188 #if !defined(HAVE_AVAIL_MEM) && !defined(HAVE_TOTAL_MEM) |
838 | 189 if (options[opt_idx].def_val[VI_DEFAULT] == (char_u *)0L) |
190 #endif | |
191 { | |
7 | 192 #ifdef HAVE_AVAIL_MEM |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
193 // Use amount of memory available at this moment. |
3634 | 194 n = (mch_avail_mem(FALSE) >> 1); |
7 | 195 #else |
196 # ifdef HAVE_TOTAL_MEM | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
197 // Use amount of memory available to Vim. |
1110 | 198 n = (mch_total_mem(FALSE) >> 1); |
7 | 199 # else |
838 | 200 n = (0x7fffffff >> 11); |
7 | 201 # endif |
202 #endif | |
203 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)n; | |
838 | 204 opt_idx = findoption((char_u *)"maxmem"); |
205 if (opt_idx >= 0) | |
206 { | |
207 #if !defined(HAVE_AVAIL_MEM) && !defined(HAVE_TOTAL_MEM) | |
7328
6679f41bddea
commit https://github.com/vim/vim/commit/35be4534c029148a89ccc41e8e465d793e7ed7c2
Christian Brabandt <cb@256bit.org>
parents:
7266
diff
changeset
|
208 if ((long)(long_i)options[opt_idx].def_val[VI_DEFAULT] > (long)n |
6679f41bddea
commit https://github.com/vim/vim/commit/35be4534c029148a89ccc41e8e465d793e7ed7c2
Christian Brabandt <cb@256bit.org>
parents:
7266
diff
changeset
|
209 || (long)(long_i)options[opt_idx].def_val[VI_DEFAULT] == 0L) |
838 | 210 #endif |
211 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)n; | |
212 } | |
213 } | |
7 | 214 } |
215 | |
216 #ifdef FEAT_SEARCHPATH | |
217 { | |
218 char_u *cdpath; | |
219 char_u *buf; | |
220 int i; | |
221 int j; | |
170 | 222 int mustfree = FALSE; |
7 | 223 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
224 // Initialize the 'cdpath' option's default value. |
170 | 225 cdpath = vim_getenv((char_u *)"CDPATH", &mustfree); |
7 | 226 if (cdpath != NULL) |
227 { | |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16730
diff
changeset
|
228 buf = alloc((STRLEN(cdpath) << 1) + 2); |
7 | 229 if (buf != NULL) |
230 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
231 buf[0] = ','; // start with ",", current dir first |
7 | 232 j = 1; |
233 for (i = 0; cdpath[i] != NUL; ++i) | |
234 { | |
235 if (vim_ispathlistsep(cdpath[i])) | |
236 buf[j++] = ','; | |
237 else | |
238 { | |
239 if (cdpath[i] == ' ' || cdpath[i] == ',') | |
240 buf[j++] = '\\'; | |
241 buf[j++] = cdpath[i]; | |
242 } | |
243 } | |
244 buf[j] = NUL; | |
245 opt_idx = findoption((char_u *)"cdpath"); | |
838 | 246 if (opt_idx >= 0) |
247 { | |
248 options[opt_idx].def_val[VI_DEFAULT] = buf; | |
249 options[opt_idx].flags |= P_DEF_ALLOCED; | |
250 } | |
2445
04dae202d316
Fixes for coverity warnings.
Bram Moolenaar <bram@vim.org>
parents:
2394
diff
changeset
|
251 else |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
252 vim_free(buf); // cannot happen |
7 | 253 } |
170 | 254 if (mustfree) |
255 vim_free(cdpath); | |
7 | 256 } |
257 } | |
258 #endif | |
259 | |
7408
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
7334
diff
changeset
|
260 #if defined(FEAT_POSTSCRIPT) && (defined(MSWIN) || defined(VMS) || defined(EBCDIC) || defined(MAC) || defined(hpux)) |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
261 // Set print encoding on platforms that don't default to latin1 |
7 | 262 set_string_default("penc", |
7408
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
7334
diff
changeset
|
263 # if defined(MSWIN) |
7 | 264 (char_u *)"cp1252" |
265 # else | |
266 # ifdef VMS | |
267 (char_u *)"dec-mcs" | |
268 # else | |
269 # ifdef EBCDIC | |
270 (char_u *)"ebcdic-uk" | |
271 # else | |
272 # ifdef MAC | |
273 (char_u *)"mac-roman" | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
274 # else // HPUX |
7 | 275 (char_u *)"hp-roman8" |
276 # endif | |
277 # endif | |
278 # endif | |
279 # endif | |
280 ); | |
281 #endif | |
282 | |
283 #ifdef FEAT_POSTSCRIPT | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
284 // 'printexpr' must be allocated to be able to evaluate it. |
7 | 285 set_string_default("pexpr", |
8212
05b88224cea1
commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce
Christian Brabandt <cb@256bit.org>
parents:
8182
diff
changeset
|
286 # if defined(MSWIN) |
8 | 287 (char_u *)"system('copy' . ' ' . v:fname_in . (&printdevice == '' ? ' LPT1:' : (' \"' . &printdevice . '\"'))) . delete(v:fname_in)" |
7 | 288 # else |
289 # ifdef VMS | |
290 (char_u *)"system('print/delete' . (&printdevice == '' ? '' : ' /queue=' . &printdevice) . ' ' . v:fname_in)" | |
291 | |
292 # else | |
293 (char_u *)"system('lpr' . (&printdevice == '' ? '' : ' -P' . &printdevice) . ' ' . v:fname_in) . delete(v:fname_in) + v:shell_error" | |
294 # endif | |
295 # endif | |
296 ); | |
297 #endif | |
298 | |
299 /* | |
300 * Set all the options (except the terminal options) to their default | |
301 * value. Also set the global value for local options. | |
302 */ | |
303 set_options_default(0); | |
304 | |
13361
65c29bd4548b
patch 8.0.1554: custom plugins loaded with --clean
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
305 #ifdef CLEAN_RUNTIMEPATH |
65c29bd4548b
patch 8.0.1554: custom plugins loaded with --clean
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
306 if (clean_arg) |
65c29bd4548b
patch 8.0.1554: custom plugins loaded with --clean
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
307 { |
65c29bd4548b
patch 8.0.1554: custom plugins loaded with --clean
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
308 opt_idx = findoption((char_u *)"runtimepath"); |
65c29bd4548b
patch 8.0.1554: custom plugins loaded with --clean
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
309 if (opt_idx >= 0) |
65c29bd4548b
patch 8.0.1554: custom plugins loaded with --clean
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
310 { |
65c29bd4548b
patch 8.0.1554: custom plugins loaded with --clean
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
311 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)CLEAN_RUNTIMEPATH; |
65c29bd4548b
patch 8.0.1554: custom plugins loaded with --clean
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
312 p_rtp = (char_u *)CLEAN_RUNTIMEPATH; |
65c29bd4548b
patch 8.0.1554: custom plugins loaded with --clean
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
313 } |
65c29bd4548b
patch 8.0.1554: custom plugins loaded with --clean
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
314 opt_idx = findoption((char_u *)"packpath"); |
65c29bd4548b
patch 8.0.1554: custom plugins loaded with --clean
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
315 if (opt_idx >= 0) |
65c29bd4548b
patch 8.0.1554: custom plugins loaded with --clean
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
316 { |
65c29bd4548b
patch 8.0.1554: custom plugins loaded with --clean
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
317 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)CLEAN_RUNTIMEPATH; |
65c29bd4548b
patch 8.0.1554: custom plugins loaded with --clean
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
318 p_pp = (char_u *)CLEAN_RUNTIMEPATH; |
65c29bd4548b
patch 8.0.1554: custom plugins loaded with --clean
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
319 } |
65c29bd4548b
patch 8.0.1554: custom plugins loaded with --clean
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
320 } |
65c29bd4548b
patch 8.0.1554: custom plugins loaded with --clean
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
321 #endif |
65c29bd4548b
patch 8.0.1554: custom plugins loaded with --clean
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
322 |
7 | 323 #ifdef FEAT_GUI |
324 if (found_reverse_arg) | |
325 set_option_value((char_u *)"bg", 0L, (char_u *)"dark", 0); | |
326 #endif | |
327 | |
328 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
|
329 curbuf->b_p_ar = -1; // no local 'autoread' value |
5446 | 330 curbuf->b_p_ul = NO_LOCAL_UNDOLEVEL; |
7 | 331 check_buf_options(curbuf); |
332 check_win_options(curwin); | |
333 check_options(); | |
334 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
335 // Must be before option_expand(), because that one needs vim_isIDc() |
7 | 336 didset_options(); |
337 | |
744 | 338 #ifdef FEAT_SPELL |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
339 // 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
|
340 // didset_options() because it only depends on 'encoding'. |
227 | 341 init_spell_chartab(); |
342 #endif | |
343 | |
7 | 344 /* |
345 * Expand environment variables and things like "~" for the defaults. | |
346 * If option_expand() returns non-NULL the variable is expanded. This can | |
347 * only happen for non-indirect options. | |
348 * Also set the default to the expanded value, so ":set" does not list | |
349 * them. | |
350 * Don't set the P_ALLOCED flag, because we don't want to free the | |
351 * default. | |
352 */ | |
18100
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
353 for (opt_idx = 0; !istermoption_idx(opt_idx); opt_idx++) |
7 | 354 { |
355 if ((options[opt_idx].flags & P_GETTEXT) | |
356 && options[opt_idx].var != NULL) | |
357 p = (char_u *)_(*(char **)options[opt_idx].var); | |
358 else | |
359 p = option_expand(opt_idx, NULL); | |
360 if (p != NULL && (p = vim_strsave(p)) != NULL) | |
361 { | |
362 *(char_u **)options[opt_idx].var = p; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
363 // VIMEXP |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
364 // Defaults for all expanded options are currently the same for Vi |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
365 // and Vim. When this changes, add some code here! Also need to |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
366 // split P_DEF_ALLOCED in two. |
7 | 367 if (options[opt_idx].flags & P_DEF_ALLOCED) |
368 vim_free(options[opt_idx].def_val[VI_DEFAULT]); | |
369 options[opt_idx].def_val[VI_DEFAULT] = p; | |
370 options[opt_idx].flags |= P_DEF_ALLOCED; | |
371 } | |
372 } | |
373 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
374 save_file_ff(curbuf); // Buffer is unchanged |
7 | 375 |
376 #if defined(FEAT_ARABIC) | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
377 // Detect use of mlterm. |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
378 // 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
|
379 // abilities (bidi namely). |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
380 // 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
|
381 // instead of an environment variable due to inheritance. |
7 | 382 if (mch_getenv((char_u *)"MLTERM") != NULL) |
383 set_option_value((char_u *)"tbidi", 1L, NULL, 0); | |
384 #endif | |
385 | |
7040
17a3fa77e941
commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents:
7034
diff
changeset
|
386 didset_options2(); |
7 | 387 |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15858
diff
changeset
|
388 # if defined(MSWIN) && defined(FEAT_GETTEXT) |
7 | 389 /* |
390 * If $LANG isn't set, try to get a good value for it. This makes the | |
391 * right language be used automatically. Don't do this for English. | |
392 */ | |
393 if (mch_getenv((char_u *)"LANG") == NULL) | |
394 { | |
395 char buf[20]; | |
396 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
397 // Could use LOCALE_SISO639LANGNAME, but it's not in Win95. |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
398 // LOCALE_SABBREVLANGNAME gives us three letters, like "enu", we use |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
399 // only the first two. |
7 | 400 n = GetLocaleInfo(LOCALE_USER_DEFAULT, LOCALE_SABBREVLANGNAME, |
401 (LPTSTR)buf, 20); | |
402 if (n >= 2 && STRNICMP(buf, "en", 2) != 0) | |
403 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
404 // There are a few exceptions (probably more) |
7 | 405 if (STRNICMP(buf, "cht", 3) == 0 || STRNICMP(buf, "zht", 3) == 0) |
406 STRCPY(buf, "zh_TW"); | |
407 else if (STRNICMP(buf, "chs", 3) == 0 | |
408 || STRNICMP(buf, "zhc", 3) == 0) | |
409 STRCPY(buf, "zh_CN"); | |
410 else if (STRNICMP(buf, "jp", 2) == 0) | |
411 STRCPY(buf, "ja"); | |
412 else | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
413 buf[2] = NUL; // truncate to two-letter code |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7829
diff
changeset
|
414 vim_setenv((char_u *)"LANG", (char_u *)buf); |
7 | 415 } |
416 } | |
168 | 417 # else |
767 | 418 # ifdef MACOS_CONVERT |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
419 // Moved to os_mac_conv.c to avoid dependency problems. |
1622 | 420 mac_lang_init(); |
168 | 421 # endif |
7 | 422 # endif |
423 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
424 // enc_locale() will try to find the encoding of the current locale. |
7 | 425 p = enc_locale(); |
426 if (p != NULL) | |
427 { | |
428 char_u *save_enc; | |
429 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
430 // Try setting 'encoding' and check if the value is valid. |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
431 // If not, go back to the default "latin1". |
7 | 432 save_enc = p_enc; |
433 p_enc = p; | |
1080 | 434 if (STRCMP(p_enc, "gb18030") == 0) |
435 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
436 // We don't support "gb18030", but "cp936" is a good substitute |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
437 // for practical purposes, thus use that. It's not an alias to |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
438 // still support conversion between gb18030 and utf-8. |
1080 | 439 p_enc = vim_strsave((char_u *)"cp936"); |
440 vim_free(p); | |
441 } | |
7 | 442 if (mb_init() == NULL) |
443 { | |
444 opt_idx = findoption((char_u *)"encoding"); | |
838 | 445 if (opt_idx >= 0) |
446 { | |
447 options[opt_idx].def_val[VI_DEFAULT] = p_enc; | |
448 options[opt_idx].flags |= P_DEF_ALLOCED; | |
449 } | |
7 | 450 |
12716
351cf7c67bbe
patch 8.0.1236: Mac features are confusing
Christian Brabandt <cb@256bit.org>
parents:
12636
diff
changeset
|
451 #if defined(MSWIN) || defined(MACOS_X) || defined(VMS) |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15207
diff
changeset
|
452 if (STRCMP(p_enc, "latin1") == 0 || enc_utf8) |
24 | 453 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
454 // Adjust the default for 'isprint' and 'iskeyword' to match |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
455 // latin1. Also set the defaults for when 'nocompatible' is |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
456 // set. |
24 | 457 set_string_option_direct((char_u *)"isp", -1, |
719 | 458 ISP_LATIN1, OPT_FREE, SID_NONE); |
714 | 459 set_string_option_direct((char_u *)"isk", -1, |
460 ISK_LATIN1, OPT_FREE, SID_NONE); | |
461 opt_idx = findoption((char_u *)"isp"); | |
838 | 462 if (opt_idx >= 0) |
463 options[opt_idx].def_val[VIM_DEFAULT] = ISP_LATIN1; | |
714 | 464 opt_idx = findoption((char_u *)"isk"); |
838 | 465 if (opt_idx >= 0) |
466 options[opt_idx].def_val[VIM_DEFAULT] = ISK_LATIN1; | |
24 | 467 (void)init_chartab(); |
468 } | |
469 #endif | |
470 | |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
471 #if defined(MSWIN) && (!defined(FEAT_GUI) || defined(VIMDLL)) |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
472 // Win32 console: When GetACP() returns a different value from |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
473 // GetConsoleCP() set 'termencoding'. |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
474 if ( |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
475 # ifdef VIMDLL |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
476 (!gui.in_use && !gui.starting) && |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
477 # endif |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
478 GetACP() != GetConsoleCP()) |
7 | 479 { |
480 char buf[50]; | |
481 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
482 // Win32 console: In ConPTY, GetConsoleCP() returns zero. |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
483 // Use an alternative value. |
15725
a3e2e7948ee4
patch 8.1.0870: Vim doesn't use the new ConPTY support in Windows 10
Bram Moolenaar <Bram@vim.org>
parents:
15713
diff
changeset
|
484 if (GetConsoleCP() == 0) |
a3e2e7948ee4
patch 8.1.0870: Vim doesn't use the new ConPTY support in Windows 10
Bram Moolenaar <Bram@vim.org>
parents:
15713
diff
changeset
|
485 sprintf(buf, "cp%ld", (long)GetACP()); |
a3e2e7948ee4
patch 8.1.0870: Vim doesn't use the new ConPTY support in Windows 10
Bram Moolenaar <Bram@vim.org>
parents:
15713
diff
changeset
|
486 else |
a3e2e7948ee4
patch 8.1.0870: Vim doesn't use the new ConPTY support in Windows 10
Bram Moolenaar <Bram@vim.org>
parents:
15713
diff
changeset
|
487 sprintf(buf, "cp%ld", (long)GetConsoleCP()); |
7 | 488 p_tenc = vim_strsave((char_u *)buf); |
489 if (p_tenc != NULL) | |
490 { | |
491 opt_idx = findoption((char_u *)"termencoding"); | |
838 | 492 if (opt_idx >= 0) |
493 { | |
494 options[opt_idx].def_val[VI_DEFAULT] = p_tenc; | |
495 options[opt_idx].flags |= P_DEF_ALLOCED; | |
496 } | |
7 | 497 convert_setup(&input_conv, p_tenc, p_enc); |
498 convert_setup(&output_conv, p_enc, p_tenc); | |
499 } | |
500 else | |
501 p_tenc = empty_option; | |
502 } | |
15597
536dd2bc5ac9
patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
503 #endif |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15858
diff
changeset
|
504 #if defined(MSWIN) |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
505 // $HOME may have characters in active code page. |
170 | 506 init_homedir(); |
15597
536dd2bc5ac9
patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
507 #endif |
7 | 508 } |
509 else | |
510 { | |
511 vim_free(p_enc); | |
512 p_enc = save_enc; | |
513 } | |
514 } | |
515 | |
516 #ifdef FEAT_MULTI_LANG | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
517 // Set the default for 'helplang'. |
7 | 518 set_helplang_default(get_mess_lang()); |
519 #endif | |
520 } | |
521 | |
522 /* | |
523 * Set an option to its default value. | |
524 * This does not take care of side effects! | |
525 */ | |
526 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
527 set_option_default( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
528 int opt_idx, |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
529 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
|
530 int compatible) // use Vi default value |
7 | 531 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
532 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
|
533 int dvi; // index in def_val[] |
7 | 534 long_u flags; |
681 | 535 long_u *flagsp; |
7 | 536 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0; |
537 | |
538 varp = get_varp_scope(&(options[opt_idx]), both ? OPT_LOCAL : opt_flags); | |
539 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
|
540 if (varp != NULL) // skip hidden option, nothing to do for it |
7 | 541 { |
542 dvi = ((flags & P_VI_DEF) || compatible) ? VI_DEFAULT : VIM_DEFAULT; | |
543 if (flags & P_STRING) | |
544 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
545 // 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
|
546 // freeing and allocating the value. |
13845
f22db93bd887
patch 8.0.1794: duplicate term options after renaming
Christian Brabandt <cb@256bit.org>
parents:
13823
diff
changeset
|
547 if (options[opt_idx].indir != PV_NONE) |
f22db93bd887
patch 8.0.1794: duplicate term options after renaming
Christian Brabandt <cb@256bit.org>
parents:
13823
diff
changeset
|
548 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
|
549 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
|
550 else |
f22db93bd887
patch 8.0.1794: duplicate term options after renaming
Christian Brabandt <cb@256bit.org>
parents:
13823
diff
changeset
|
551 { |
f22db93bd887
patch 8.0.1794: duplicate term options after renaming
Christian Brabandt <cb@256bit.org>
parents:
13823
diff
changeset
|
552 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
|
553 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
|
554 *(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
|
555 options[opt_idx].flags &= ~P_ALLOCED; |
7 | 556 } |
557 } | |
558 else if (flags & P_NUM) | |
559 { | |
1017 | 560 if (options[opt_idx].indir == PV_SCROLL) |
7 | 561 win_comp_scroll(curwin); |
562 else | |
563 { | |
15713
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15701
diff
changeset
|
564 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
|
565 |
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15701
diff
changeset
|
566 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
|
567 || (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
|
568 // '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
|
569 // 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
|
570 *(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
|
571 else |
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15701
diff
changeset
|
572 *(long *)varp = def_val; |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
573 // May also set global value for local option. |
7 | 574 if (both) |
575 *(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
|
576 def_val; |
7 | 577 } |
578 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
579 else // P_BOOL |
7 | 580 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
581 // 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
|
582 // MSVC |
840 | 583 *(int *)varp = (int)(long)(long_i)options[opt_idx].def_val[dvi]; |
1111 | 584 #ifdef UNIX |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
585 // 'modeline' defaults to off for root |
1111 | 586 if (options[opt_idx].indir == PV_ML && getuid() == ROOT_UID) |
587 *(int *)varp = FALSE; | |
588 #endif | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
589 // May also set global value for local option. |
7 | 590 if (both) |
591 *(int *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) = | |
592 *(int *)varp; | |
593 } | |
634 | 594 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
595 // The default value is not insecure. |
681 | 596 flagsp = insecure_flag(opt_idx, opt_flags); |
597 *flagsp = *flagsp & ~P_INSECURE; | |
7 | 598 } |
599 | |
600 #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
|
601 set_option_sctx_idx(opt_idx, opt_flags, current_sctx); |
7 | 602 #endif |
603 } | |
604 | |
605 /* | |
606 * 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
|
607 * When "opt_flags" is non-zero skip 'encoding'. |
7 | 608 */ |
609 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
610 set_options_default( |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
611 int opt_flags) // OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL |
7 | 612 { |
613 int i; | |
614 win_T *wp; | |
671 | 615 tabpage_T *tp; |
7 | 616 |
18100
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
617 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
|
618 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
|
619 && (opt_flags == 0 |
15597
536dd2bc5ac9
patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
620 || (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
|
621 # if defined(FEAT_CRYPT) |
7040
17a3fa77e941
commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents:
7034
diff
changeset
|
622 && 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
|
623 && 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
|
624 # endif |
15597
536dd2bc5ac9
patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
625 ))) |
7 | 626 set_option_default(i, opt_flags, p_cp); |
627 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
628 // The 'scroll' option must be computed for all windows. |
671 | 629 FOR_ALL_TAB_WINDOWS(tp, wp) |
7 | 630 win_comp_scroll(wp); |
6205 | 631 #ifdef FEAT_CINDENT |
632 parse_cino(curbuf); | |
633 #endif | |
7 | 634 } |
635 | |
636 /* | |
637 * Set the Vi-default value of a string option. | |
638 * 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
|
639 * 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
|
640 */ |
51521b8a370c
patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect
Christian Brabandt <cb@256bit.org>
parents:
13154
diff
changeset
|
641 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
|
642 set_string_default_esc(char *name, char_u *val, int escape) |
7 | 643 { |
644 char_u *p; | |
645 int opt_idx; | |
646 | |
13162
51521b8a370c
patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect
Christian Brabandt <cb@256bit.org>
parents:
13154
diff
changeset
|
647 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
|
648 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
|
649 else |
51521b8a370c
patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect
Christian Brabandt <cb@256bit.org>
parents:
13154
diff
changeset
|
650 p = vim_strsave(val); |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
651 if (p != NULL) // we don't want a NULL |
7 | 652 { |
653 opt_idx = findoption((char_u *)name); | |
838 | 654 if (opt_idx >= 0) |
655 { | |
656 if (options[opt_idx].flags & P_DEF_ALLOCED) | |
657 vim_free(options[opt_idx].def_val[VI_DEFAULT]); | |
658 options[opt_idx].def_val[VI_DEFAULT] = p; | |
659 options[opt_idx].flags |= P_DEF_ALLOCED; | |
660 } | |
7 | 661 } |
662 } | |
663 | |
13162
51521b8a370c
patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect
Christian Brabandt <cb@256bit.org>
parents:
13154
diff
changeset
|
664 void |
51521b8a370c
patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect
Christian Brabandt <cb@256bit.org>
parents:
13154
diff
changeset
|
665 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
|
666 { |
51521b8a370c
patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect
Christian Brabandt <cb@256bit.org>
parents:
13154
diff
changeset
|
667 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
|
668 } |
51521b8a370c
patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect
Christian Brabandt <cb@256bit.org>
parents:
13154
diff
changeset
|
669 |
7 | 670 /* |
671 * Set the Vi-default value of a number option. | |
672 * Used for 'lines' and 'columns'. | |
673 */ | |
674 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
675 set_number_default(char *name, long val) |
7 | 676 { |
838 | 677 int opt_idx; |
678 | |
679 opt_idx = findoption((char_u *)name); | |
680 if (opt_idx >= 0) | |
840 | 681 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)(long_i)val; |
7 | 682 } |
683 | |
16843
283037126560
patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
684 /* |
283037126560
patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
685 * 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
|
686 * 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
|
687 * 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
|
688 */ |
283037126560
patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
689 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
|
690 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
|
691 { |
283037126560
patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
692 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
|
693 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
|
694 |
283037126560
patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
695 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
|
696 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
|
697 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
|
698 |
18100
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
699 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
|
700 { |
283037126560
patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
701 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
|
702 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
|
703 |
283037126560
patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
704 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
|
705 && (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
|
706 && !(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
|
707 && !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
|
708 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
|
709 } |
283037126560
patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
710 |
283037126560
patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
711 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
|
712 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
|
713 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
|
714 } |
283037126560
patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
715 |
359 | 716 #if defined(EXITFREE) || defined(PROTO) |
717 /* | |
718 * Free all options. | |
719 */ | |
720 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
721 free_all_options(void) |
359 | 722 { |
723 int i; | |
724 | |
18100
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
725 for (i = 0; !istermoption_idx(i); i++) |
359 | 726 { |
727 if (options[i].indir == PV_NONE) | |
728 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
729 // 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
|
730 if ((options[i].flags & P_ALLOCED) && options[i].var != NULL) |
359 | 731 free_string_option(*(char_u **)options[i].var); |
732 if (options[i].flags & P_DEF_ALLOCED) | |
733 free_string_option(options[i].def_val[VI_DEFAULT]); | |
734 } | |
735 else if (options[i].var != VAR_WIN | |
736 && (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
|
737 // buffer-local option: free global value |
359 | 738 free_string_option(*(char_u **)options[i].var); |
739 } | |
740 } | |
741 #endif | |
742 | |
743 | |
7 | 744 /* |
745 * Initialize the options, part two: After getting Rows and Columns and | |
746 * setting 'term'. | |
747 */ | |
748 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
749 set_init_2(void) |
7 | 750 { |
164 | 751 int idx; |
752 | |
7 | 753 /* |
12718
f8f505ffc0a6
patch 8.0.1237: ":set scroll&" often gives an error
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
754 * '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
|
755 * which results in the actual value computed from the window height. |
7 | 756 */ |
168 | 757 idx = findoption((char_u *)"scroll"); |
838 | 758 if (idx >= 0 && !(options[idx].flags & P_WAS_SET)) |
168 | 759 set_option_default(idx, OPT_LOCAL, p_cp); |
7 | 760 comp_col(); |
761 | |
164 | 762 /* |
763 * 'window' is only for backwards compatibility with Vi. | |
764 * Default is Rows - 1. | |
765 */ | |
857 | 766 if (!option_was_set((char_u *)"window")) |
164 | 767 p_window = Rows - 1; |
768 set_number_default("window", Rows - 1); | |
769 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
770 // 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
|
771 #if !((defined(MSWIN)) && !defined(FEAT_GUI)) |
671 | 772 /* |
773 * If 'background' wasn't set by the user, try guessing the value, | |
774 * depending on the terminal name. Only need to check for terminals | |
775 * with a dark background, that can handle color. | |
776 */ | |
777 idx = findoption((char_u *)"bg"); | |
838 | 778 if (idx >= 0 && !(options[idx].flags & P_WAS_SET) |
779 && *term_bg_default() == 'd') | |
671 | 780 { |
694 | 781 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
|
782 // 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
|
783 // changed again |
671 | 784 options[idx].flags &= ~P_WAS_SET; |
7 | 785 } |
786 #endif | |
440 | 787 |
788 #ifdef CURSOR_SHAPE | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
789 parse_shape_opt(SHAPE_CURSOR); // set cursor shapes from 'guicursor' |
440 | 790 #endif |
791 #ifdef FEAT_MOUSESHAPE | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
792 parse_shape_opt(SHAPE_MOUSE); // set mouse shapes from 'mouseshape' |
440 | 793 #endif |
794 #ifdef FEAT_PRINTER | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
795 (void)parse_printoptions(); // parse 'printoptions' default value |
440 | 796 #endif |
7 | 797 } |
798 | |
799 /* | |
800 * Initialize the options, part three: After reading the .vimrc | |
801 */ | |
802 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
803 set_init_3(void) |
7 | 804 { |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15858
diff
changeset
|
805 #if defined(UNIX) || defined(MSWIN) |
7 | 806 /* |
807 * Set 'shellpipe' and 'shellredir', depending on the 'shell' option. | |
808 * This is done after other initializations, where 'shell' might have been | |
809 * set, but only if they have not been set before. | |
810 */ | |
811 char_u *p; | |
812 int idx_srr; | |
813 int do_srr; | |
7408
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
7334
diff
changeset
|
814 # ifdef FEAT_QUICKFIX |
7 | 815 int idx_sp; |
816 int do_sp; | |
7408
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
7334
diff
changeset
|
817 # endif |
7 | 818 |
819 idx_srr = findoption((char_u *)"srr"); | |
838 | 820 if (idx_srr < 0) |
821 do_srr = FALSE; | |
822 else | |
823 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
|
824 # ifdef FEAT_QUICKFIX |
7 | 825 idx_sp = findoption((char_u *)"sp"); |
838 | 826 if (idx_sp < 0) |
827 do_sp = FALSE; | |
828 else | |
829 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
|
830 # endif |
5867 | 831 p = get_isolated_shell_name(); |
7 | 832 if (p != NULL) |
833 { | |
834 /* | |
835 * Default for p_sp is "| tee", for p_srr is ">". | |
836 * For known shells it is changed here to include stderr. | |
837 */ | |
838 if ( fnamecmp(p, "csh") == 0 | |
839 || 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
|
840 # if defined(MSWIN) // also check with .exe extension |
7 | 841 || fnamecmp(p, "csh.exe") == 0 |
842 || fnamecmp(p, "tcsh.exe") == 0 | |
843 # endif | |
844 ) | |
845 { | |
7408
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
7334
diff
changeset
|
846 # if defined(FEAT_QUICKFIX) |
7 | 847 if (do_sp) |
848 { | |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15858
diff
changeset
|
849 # ifdef MSWIN |
7 | 850 p_sp = (char_u *)">&"; |
7408
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
7334
diff
changeset
|
851 # else |
7 | 852 p_sp = (char_u *)"|& tee"; |
7408
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
7334
diff
changeset
|
853 # endif |
7 | 854 options[idx_sp].def_val[VI_DEFAULT] = p_sp; |
855 } | |
7408
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
7334
diff
changeset
|
856 # endif |
7 | 857 if (do_srr) |
858 { | |
859 p_srr = (char_u *)">&"; | |
860 options[idx_srr].def_val[VI_DEFAULT] = p_srr; | |
861 } | |
862 } | |
863 else | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
864 // Always use bourne shell style redirection if we reach this |
7 | 865 if ( fnamecmp(p, "sh") == 0 |
866 || fnamecmp(p, "ksh") == 0 | |
2774 | 867 || fnamecmp(p, "mksh") == 0 |
868 || fnamecmp(p, "pdksh") == 0 | |
7 | 869 || fnamecmp(p, "zsh") == 0 |
836 | 870 || fnamecmp(p, "zsh-beta") == 0 |
7 | 871 || fnamecmp(p, "bash") == 0 |
5867 | 872 || fnamecmp(p, "fish") == 0 |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15858
diff
changeset
|
873 # ifdef MSWIN |
7 | 874 || fnamecmp(p, "cmd") == 0 |
875 || fnamecmp(p, "sh.exe") == 0 | |
876 || fnamecmp(p, "ksh.exe") == 0 | |
2774 | 877 || fnamecmp(p, "mksh.exe") == 0 |
878 || fnamecmp(p, "pdksh.exe") == 0 | |
7 | 879 || fnamecmp(p, "zsh.exe") == 0 |
836 | 880 || fnamecmp(p, "zsh-beta.exe") == 0 |
7 | 881 || fnamecmp(p, "bash.exe") == 0 |
882 || fnamecmp(p, "cmd.exe") == 0 | |
7408
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
7334
diff
changeset
|
883 # endif |
7 | 884 ) |
7408
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
7334
diff
changeset
|
885 { |
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
7334
diff
changeset
|
886 # if defined(FEAT_QUICKFIX) |
7 | 887 if (do_sp) |
888 { | |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15858
diff
changeset
|
889 # ifdef MSWIN |
7 | 890 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
|
891 # else |
7 | 892 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
|
893 # endif |
7 | 894 options[idx_sp].def_val[VI_DEFAULT] = p_sp; |
895 } | |
7408
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
7334
diff
changeset
|
896 # endif |
7 | 897 if (do_srr) |
898 { | |
899 p_srr = (char_u *)">%s 2>&1"; | |
900 options[idx_srr].def_val[VI_DEFAULT] = p_srr; | |
901 } | |
902 } | |
903 vim_free(p); | |
904 } | |
905 #endif | |
906 | |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15858
diff
changeset
|
907 #if defined(MSWIN) |
7 | 908 /* |
3352 | 909 * Set 'shellcmdflag', 'shellxquote', and 'shellquote' depending on the |
910 * 'shell' option. | |
7 | 911 * This is done after other initializations, where 'shell' might have been |
912 * set, but only if they have not been set before. Default for p_shcf is | |
913 * "/c", for p_shq is "". For "sh" like shells it is changed here to | |
8212
05b88224cea1
commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce
Christian Brabandt <cb@256bit.org>
parents:
8182
diff
changeset
|
914 * "-c" and "\"". And for Win32 we need to set p_sxq instead. |
7 | 915 */ |
10 | 916 if (strstr((char *)gettail(p_sh), "sh") != NULL) |
7 | 917 { |
918 int idx3; | |
919 | |
920 idx3 = findoption((char_u *)"shcf"); | |
838 | 921 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET)) |
7 | 922 { |
923 p_shcf = (char_u *)"-c"; | |
924 options[idx3].def_val[VI_DEFAULT] = p_shcf; | |
925 } | |
926 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
927 // Somehow Win32 requires the quotes around the redirection too |
7 | 928 idx3 = findoption((char_u *)"sxq"); |
838 | 929 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET)) |
7 | 930 { |
931 p_sxq = (char_u *)"\""; | |
932 options[idx3].def_val[VI_DEFAULT] = p_sxq; | |
933 } | |
934 } | |
3352 | 935 else if (strstr((char *)gettail(p_sh), "cmd.exe") != NULL) |
936 { | |
937 int idx3; | |
938 | |
939 /* | |
940 * cmd.exe on Windows will strip the first and last double quote given | |
941 * on the command line, e.g. most of the time things like: | |
942 * cmd /c "my path/to/echo" "my args to echo" | |
943 * become: | |
944 * my path/to/echo" "my args to echo | |
945 * when executed. | |
946 * | |
3357 | 947 * To avoid this, set shellxquote to surround the command in |
948 * parenthesis. This appears to make most commands work, without | |
949 * breaking commands that worked previously, such as | |
950 * '"path with spaces/cmd" "a&b"'. | |
3352 | 951 */ |
952 idx3 = findoption((char_u *)"sxq"); | |
953 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET)) | |
954 { | |
3357 | 955 p_sxq = (char_u *)"("; |
3352 | 956 options[idx3].def_val[VI_DEFAULT] = p_sxq; |
957 } | |
958 | |
959 idx3 = findoption((char_u *)"shcf"); | |
960 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET)) | |
961 { | |
3357 | 962 p_shcf = (char_u *)"/c"; |
3352 | 963 options[idx3].def_val[VI_DEFAULT] = p_shcf; |
964 } | |
965 } | |
7 | 966 #endif |
967 | |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11107
diff
changeset
|
968 if (BUFEMPTY()) |
8659
72e2f387466f
commit https://github.com/vim/vim/commit/364fa5c7ec2a99a791c8f8b66fe70b0bf1dd9a41
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
969 { |
72e2f387466f
commit https://github.com/vim/vim/commit/364fa5c7ec2a99a791c8f8b66fe70b0bf1dd9a41
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
970 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
|
971 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
972 // 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
|
973 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
|
974 set_fileformat(default_fileformat(), OPT_LOCAL); |
72e2f387466f
commit https://github.com/vim/vim/commit/364fa5c7ec2a99a791c8f8b66fe70b0bf1dd9a41
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
975 } |
72e2f387466f
commit https://github.com/vim/vim/commit/364fa5c7ec2a99a791c8f8b66fe70b0bf1dd9a41
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
976 |
7 | 977 #ifdef FEAT_TITLE |
978 set_title_defaults(); | |
979 #endif | |
980 } | |
981 | |
982 #if defined(FEAT_MULTI_LANG) || defined(PROTO) | |
983 /* | |
984 * When 'helplang' is still at its default value, set it to "lang". | |
985 * Only the first two characters of "lang" are used. | |
986 */ | |
987 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
988 set_helplang_default(char_u *lang) |
7 | 989 { |
990 int idx; | |
991 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
992 if (lang == NULL || STRLEN(lang) < 2) // safety check |
7 | 993 return; |
994 idx = findoption((char_u *)"hlg"); | |
838 | 995 if (idx >= 0 && !(options[idx].flags & P_WAS_SET)) |
7 | 996 { |
997 if (options[idx].flags & P_ALLOCED) | |
998 free_string_option(p_hlg); | |
999 p_hlg = vim_strsave(lang); | |
1000 if (p_hlg == NULL) | |
1001 p_hlg = empty_option; | |
1002 else | |
18 | 1003 { |
14997
0058cdd5b752
patch 8.1.0510: filter test fails when $LANG is C.UTF-8
Bram Moolenaar <Bram@vim.org>
parents:
14968
diff
changeset
|
1004 // zh_CN becomes "cn", zh_TW becomes "tw" |
18 | 1005 if (STRNICMP(p_hlg, "zh_", 3) == 0 && STRLEN(p_hlg) >= 5) |
1006 { | |
1007 p_hlg[0] = TOLOWER_ASC(p_hlg[3]); | |
1008 p_hlg[1] = TOLOWER_ASC(p_hlg[4]); | |
1009 } | |
14997
0058cdd5b752
patch 8.1.0510: filter test fails when $LANG is C.UTF-8
Bram Moolenaar <Bram@vim.org>
parents:
14968
diff
changeset
|
1010 // any C like setting, such as C.UTF-8, becomes "en" |
0058cdd5b752
patch 8.1.0510: filter test fails when $LANG is C.UTF-8
Bram Moolenaar <Bram@vim.org>
parents:
14968
diff
changeset
|
1011 else if (STRLEN(p_hlg) >= 1 && *p_hlg == 'C') |
0058cdd5b752
patch 8.1.0510: filter test fails when $LANG is C.UTF-8
Bram Moolenaar <Bram@vim.org>
parents:
14968
diff
changeset
|
1012 { |
0058cdd5b752
patch 8.1.0510: filter test fails when $LANG is C.UTF-8
Bram Moolenaar <Bram@vim.org>
parents:
14968
diff
changeset
|
1013 p_hlg[0] = 'e'; |
0058cdd5b752
patch 8.1.0510: filter test fails when $LANG is C.UTF-8
Bram Moolenaar <Bram@vim.org>
parents:
14968
diff
changeset
|
1014 p_hlg[1] = 'n'; |
0058cdd5b752
patch 8.1.0510: filter test fails when $LANG is C.UTF-8
Bram Moolenaar <Bram@vim.org>
parents:
14968
diff
changeset
|
1015 } |
7 | 1016 p_hlg[2] = NUL; |
18 | 1017 } |
7 | 1018 options[idx].flags |= P_ALLOCED; |
1019 } | |
1020 } | |
1021 #endif | |
1022 | |
1023 #ifdef FEAT_TITLE | |
1024 /* | |
1025 * 'title' and 'icon' only default to true if they have not been set or reset | |
1026 * in .vimrc and we can read the old value. | |
1027 * When 'title' and 'icon' have been reset in .vimrc, we won't even check if | |
1028 * they can be reset. This reduces startup time when using X on a remote | |
1029 * machine. | |
1030 */ | |
1031 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1032 set_title_defaults(void) |
7 | 1033 { |
1034 int idx1; | |
1035 long val; | |
1036 | |
1037 /* | |
1038 * If GUI is (going to be) used, we can always set the window title and | |
1039 * icon name. Saves a bit of time, because the X11 display server does | |
1040 * not need to be contacted. | |
1041 */ | |
1042 idx1 = findoption((char_u *)"title"); | |
838 | 1043 if (idx1 >= 0 && !(options[idx1].flags & P_WAS_SET)) |
7 | 1044 { |
1045 #ifdef FEAT_GUI | |
1046 if (gui.starting || gui.in_use) | |
1047 val = TRUE; | |
1048 else | |
1049 #endif | |
1050 val = mch_can_restore_title(); | |
840 | 1051 options[idx1].def_val[VI_DEFAULT] = (char_u *)(long_i)val; |
7 | 1052 p_title = val; |
1053 } | |
1054 idx1 = findoption((char_u *)"icon"); | |
838 | 1055 if (idx1 >= 0 && !(options[idx1].flags & P_WAS_SET)) |
7 | 1056 { |
1057 #ifdef FEAT_GUI | |
1058 if (gui.starting || gui.in_use) | |
1059 val = TRUE; | |
1060 else | |
1061 #endif | |
1062 val = mch_can_restore_icon(); | |
840 | 1063 options[idx1].def_val[VI_DEFAULT] = (char_u *)(long_i)val; |
7 | 1064 p_icon = val; |
1065 } | |
1066 } | |
1067 #endif | |
1068 | |
19137
69f0e9b5c107
patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
1069 void |
69f0e9b5c107
patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
1070 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
|
1071 { |
69f0e9b5c107
patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
1072 int flags = 0; |
69f0e9b5c107
patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
1073 |
69f0e9b5c107
patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
1074 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
|
1075 flags = OPT_LOCAL; |
69f0e9b5c107
patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
1076 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
|
1077 flags = OPT_GLOBAL; |
69f0e9b5c107
patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
1078 #if defined(FEAT_EVAL) && defined(FEAT_BROWSE) |
69f0e9b5c107
patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
1079 if (cmdmod.browse && flags == 0) |
69f0e9b5c107
patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
1080 ex_options(eap); |
69f0e9b5c107
patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
1081 else |
69f0e9b5c107
patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
1082 #endif |
69f0e9b5c107
patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
1083 { |
69f0e9b5c107
patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
1084 if (eap->forceit) |
69f0e9b5c107
patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
1085 flags |= OPT_ONECOLUMN; |
69f0e9b5c107
patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
1086 (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
|
1087 } |
69f0e9b5c107
patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
1088 } |
69f0e9b5c107
patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
1089 |
7 | 1090 /* |
1091 * Parse 'arg' for option settings. | |
1092 * | |
1093 * 'arg' may be IObuff, but only when no errors can be present and option | |
1094 * does not need to be expanded with option_expand(). | |
1095 * "opt_flags": | |
1096 * 0 for ":set" | |
717 | 1097 * OPT_GLOBAL for ":setglobal" |
1098 * OPT_LOCAL for ":setlocal" and a modeline | |
7 | 1099 * OPT_MODELINE for a modeline |
717 | 1100 * OPT_WINONLY to only set window-local options |
1101 * OPT_NOWIN to skip setting window-local options | |
7 | 1102 * |
1103 * returns FAIL if an error is detected, OK otherwise | |
1104 */ | |
1105 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1106 do_set( |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1107 char_u *arg, // 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
|
1108 int opt_flags) |
7 | 1109 { |
1110 int opt_idx; | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15207
diff
changeset
|
1111 char *errmsg; |
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15207
diff
changeset
|
1112 char errbuf[80]; |
7 | 1113 char_u *startarg; |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1114 int prefix; // 1: nothing, 0: "no", 2: "inv" in front of name |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1115 int nextchar; // next non-white char after option name |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1116 int afterchar; // character just after option name |
7 | 1117 int len; |
1118 int i; | |
9389
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9359
diff
changeset
|
1119 varnumber_T value; |
7 | 1120 int key; |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1121 long_u flags; // flags for current option |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1122 char_u *varp = NULL; // 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
|
1123 int did_show = FALSE; // already showed one value |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1124 int adding; // "opt+=arg" |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1125 int prepending; // "opt^=arg" |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1126 int removing; // "opt-=arg" |
7 | 1127 int cp_val = 0; |
1128 char_u key_name[2]; | |
1129 | |
1130 if (*arg == NUL) | |
1131 { | |
1132 showoptions(0, opt_flags); | |
168 | 1133 did_show = TRUE; |
1134 goto theend; | |
7 | 1135 } |
1136 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1137 while (*arg != NUL) // loop to process all options |
7 | 1138 { |
1139 errmsg = NULL; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1140 startarg = arg; // remember for error message |
7 | 1141 |
36 | 1142 if (STRNCMP(arg, "all", 3) == 0 && !isalpha(arg[3]) |
1143 && !(opt_flags & OPT_MODELINE)) | |
7 | 1144 { |
1145 /* | |
1146 * ":set all" show all options. | |
1147 * ":set all&" set all options to their default value. | |
1148 */ | |
1149 arg += 3; | |
1150 if (*arg == '&') | |
1151 { | |
1152 ++arg; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1153 // Only for :set command set global value of local options. |
7 | 1154 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
|
1155 didset_options(); |
17a3fa77e941
commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents:
7034
diff
changeset
|
1156 didset_options2(); |
7034
e668b160ac68
commit https://github.com/vim/vim/commit/b341dda575899458f7075614dcedf0a80ee9d080
Christian Brabandt <cb@256bit.org>
parents:
7007
diff
changeset
|
1157 redraw_all_later(CLEAR); |
7 | 1158 } |
1159 else | |
168 | 1160 { |
7 | 1161 showoptions(1, opt_flags); |
168 | 1162 did_show = TRUE; |
1163 } | |
7 | 1164 } |
36 | 1165 else if (STRNCMP(arg, "termcap", 7) == 0 && !(opt_flags & OPT_MODELINE)) |
7 | 1166 { |
1167 showoptions(2, opt_flags); | |
1168 show_termcodes(); | |
168 | 1169 did_show = TRUE; |
7 | 1170 arg += 7; |
1171 } | |
1172 else | |
1173 { | |
1174 prefix = 1; | |
1911 | 1175 if (STRNCMP(arg, "no", 2) == 0 && STRNCMP(arg, "novice", 6) != 0) |
7 | 1176 { |
1177 prefix = 0; | |
1178 arg += 2; | |
1179 } | |
1180 else if (STRNCMP(arg, "inv", 3) == 0) | |
1181 { | |
1182 prefix = 2; | |
1183 arg += 3; | |
1184 } | |
1185 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1186 // find end of name |
7 | 1187 key = 0; |
1188 if (*arg == '<') | |
1189 { | |
1190 opt_idx = -1; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1191 // look out for <t_>;> |
7 | 1192 if (arg[1] == 't' && arg[2] == '_' && arg[3] && arg[4]) |
1193 len = 5; | |
1194 else | |
1195 { | |
1196 len = 1; | |
1197 while (arg[len] != NUL && arg[len] != '>') | |
1198 ++len; | |
1199 } | |
1200 if (arg[len] != '>') | |
1201 { | |
1202 errmsg = e_invarg; | |
1203 goto skip; | |
1204 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1205 arg[len] = NUL; // put NUL after name |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1206 if (arg[1] == 't' && arg[2] == '_') // could be term code |
7 | 1207 opt_idx = findoption(arg + 1); |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1208 arg[len++] = '>'; // restore '>' |
7 | 1209 if (opt_idx == -1) |
14381
d9e6eec551e1
patch 8.1.0205: invalid memory access with invalid modeline
Christian Brabandt <cb@256bit.org>
parents:
14313
diff
changeset
|
1210 key = find_key_option(arg + 1, TRUE); |
7 | 1211 } |
1212 else | |
1213 { | |
1214 len = 0; | |
1215 /* | |
1216 * The two characters after "t_" may not be alphanumeric. | |
1217 */ | |
1218 if (arg[0] == 't' && arg[1] == '_' && arg[2] && arg[3]) | |
1219 len = 4; | |
1220 else | |
1221 while (ASCII_ISALNUM(arg[len]) || arg[len] == '_') | |
1222 ++len; | |
1223 nextchar = arg[len]; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1224 arg[len] = NUL; // put NUL after name |
7 | 1225 opt_idx = findoption(arg); |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1226 arg[len] = nextchar; // restore nextchar |
7 | 1227 if (opt_idx == -1) |
14381
d9e6eec551e1
patch 8.1.0205: invalid memory access with invalid modeline
Christian Brabandt <cb@256bit.org>
parents:
14313
diff
changeset
|
1228 key = find_key_option(arg, FALSE); |
7 | 1229 } |
1230 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1231 // remember character after option name |
7 | 1232 afterchar = arg[len]; |
1233 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1234 // skip white space, allow ":set ai ?" |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
1235 while (VIM_ISWHITE(arg[len])) |
7 | 1236 ++len; |
1237 | |
1238 adding = FALSE; | |
1239 prepending = FALSE; | |
1240 removing = FALSE; | |
1241 if (arg[len] != NUL && arg[len + 1] == '=') | |
1242 { | |
1243 if (arg[len] == '+') | |
1244 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1245 adding = TRUE; // "+=" |
7 | 1246 ++len; |
1247 } | |
1248 else if (arg[len] == '^') | |
1249 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1250 prepending = TRUE; // "^=" |
7 | 1251 ++len; |
1252 } | |
1253 else if (arg[len] == '-') | |
1254 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1255 removing = TRUE; // "-=" |
7 | 1256 ++len; |
1257 } | |
1258 } | |
1259 nextchar = arg[len]; | |
1260 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1261 if (opt_idx == -1 && key == 0) // found a mismatch: skip |
7 | 1262 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15207
diff
changeset
|
1263 errmsg = N_("E518: Unknown option"); |
7 | 1264 goto skip; |
1265 } | |
1266 | |
1267 if (opt_idx >= 0) | |
1268 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1269 if (options[opt_idx].var == NULL) // hidden option: skip |
7 | 1270 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1271 // Only give an error message when requesting the value of |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1272 // a hidden option, ignore setting it. |
7 | 1273 if (vim_strchr((char_u *)"=:!&<", nextchar) == NULL |
1274 && (!(options[opt_idx].flags & P_BOOL) | |
1275 || nextchar == '?')) | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15207
diff
changeset
|
1276 errmsg = N_("E519: Option not supported"); |
7 | 1277 goto skip; |
1278 } | |
1279 | |
1280 flags = options[opt_idx].flags; | |
1281 varp = get_varp_scope(&(options[opt_idx]), opt_flags); | |
1282 } | |
1283 else | |
1284 { | |
1285 flags = P_STRING; | |
1286 if (key < 0) | |
1287 { | |
1288 key_name[0] = KEY2TERMCAP0(key); | |
1289 key_name[1] = KEY2TERMCAP1(key); | |
1290 } | |
1291 else | |
1292 { | |
1293 key_name[0] = KS_KEY; | |
1294 key_name[1] = (key & 0xff); | |
1295 } | |
1296 } | |
1297 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1298 // Skip all options that are not window-local (used when showing |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1299 // an already loaded buffer in a window). |
634 | 1300 if ((opt_flags & OPT_WINONLY) |
1301 && (opt_idx < 0 || options[opt_idx].var != VAR_WIN)) | |
1302 goto skip; | |
1303 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1304 // Skip all options that are window-local (used for :vimgrep). |
717 | 1305 if ((opt_flags & OPT_NOWIN) && opt_idx >= 0 |
1306 && options[opt_idx].var == VAR_WIN) | |
1307 goto skip; | |
1308 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1309 // Disallow changing some options from modelines. |
1807 | 1310 if (opt_flags & OPT_MODELINE) |
7 | 1311 { |
2317
2b2cd34569eb
Disallow setting 'enc' in a modeline. (Patrick Texier)
Bram Moolenaar <bram@vim.org>
parents:
2314
diff
changeset
|
1312 if (flags & (P_SECURE | P_NO_ML)) |
1807 | 1313 { |
21672
9099eb378758
patch 8.2.1386: backslash not removed afer space with space in 'isfname'
Bram Moolenaar <Bram@vim.org>
parents:
20802
diff
changeset
|
1314 errmsg = N_("E520: Not allowed in a modeline"); |
1807 | 1315 goto skip; |
1316 } | |
16728
e55c26aaf484
patch 8.1.1366: using expressions in a modeline is unsafe
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
1317 if ((flags & P_MLE) && !p_mle) |
e55c26aaf484
patch 8.1.1366: using expressions in a modeline is unsafe
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
1318 { |
21672
9099eb378758
patch 8.2.1386: backslash not removed afer space with space in 'isfname'
Bram Moolenaar <Bram@vim.org>
parents:
20802
diff
changeset
|
1319 errmsg = N_("E992: Not allowed in a modeline when 'modelineexpr' is off"); |
16728
e55c26aaf484
patch 8.1.1366: using expressions in a modeline is unsafe
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
1320 goto skip; |
e55c26aaf484
patch 8.1.1366: using expressions in a modeline is unsafe
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
1321 } |
1810 | 1322 #ifdef FEAT_DIFF |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1323 // In diff mode some options are overruled. This avoids that |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1324 // 'foldmethod' becomes "marker" instead of "diff" and that |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1325 // "wrap" gets set. |
1807 | 1326 if (curwin->w_p_diff |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1327 && opt_idx >= 0 // shut up coverity warning |
11073
d2178a6cc9f3
patch 8.0.0425: build errors when building without folding
Christian Brabandt <cb@256bit.org>
parents:
11063
diff
changeset
|
1328 && ( |
d2178a6cc9f3
patch 8.0.0425: build errors when building without folding
Christian Brabandt <cb@256bit.org>
parents:
11063
diff
changeset
|
1329 #ifdef FEAT_FOLDING |
d2178a6cc9f3
patch 8.0.0425: build errors when building without folding
Christian Brabandt <cb@256bit.org>
parents:
11063
diff
changeset
|
1330 options[opt_idx].indir == PV_FDM || |
d2178a6cc9f3
patch 8.0.0425: build errors when building without folding
Christian Brabandt <cb@256bit.org>
parents:
11063
diff
changeset
|
1331 #endif |
d2178a6cc9f3
patch 8.0.0425: build errors when building without folding
Christian Brabandt <cb@256bit.org>
parents:
11063
diff
changeset
|
1332 options[opt_idx].indir == PV_WRAP)) |
1807 | 1333 goto skip; |
1810 | 1334 #endif |
7 | 1335 } |
1336 | |
1337 #ifdef HAVE_SANDBOX | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1338 // Disallow changing some options in the sandbox |
634 | 1339 if (sandbox != 0 && (flags & P_SECURE)) |
7 | 1340 { |
21672
9099eb378758
patch 8.2.1386: backslash not removed afer space with space in 'isfname'
Bram Moolenaar <Bram@vim.org>
parents:
20802
diff
changeset
|
1341 errmsg = e_sandbox; |
7 | 1342 goto skip; |
1343 } | |
1344 #endif | |
1345 | |
1346 if (vim_strchr((char_u *)"?=:!&<", nextchar) != NULL) | |
1347 { | |
1348 arg += len; | |
1349 cp_val = p_cp; | |
1350 if (nextchar == '&' && arg[1] == 'v' && arg[2] == 'i') | |
1351 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1352 if (arg[3] == 'm') // "opt&vim": set to Vim default |
7 | 1353 { |
1354 cp_val = FALSE; | |
1355 arg += 3; | |
1356 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1357 else // "opt&vi": set to Vi default |
7 | 1358 { |
1359 cp_val = TRUE; | |
1360 arg += 2; | |
1361 } | |
1362 } | |
1363 if (vim_strchr((char_u *)"?!&<", nextchar) != NULL | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
1364 && arg[1] != NUL && !VIM_ISWHITE(arg[1])) |
7 | 1365 { |
1366 errmsg = e_trailing; | |
1367 goto skip; | |
1368 } | |
1369 } | |
1370 | |
1371 /* | |
20007
aadd1cae2ff5
patch 8.2.0559: clearing a struct is verbose
Bram Moolenaar <Bram@vim.org>
parents:
19405
diff
changeset
|
1372 * allow '=' and ':' for historical reasons (MSDOS command.com |
8212
05b88224cea1
commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce
Christian Brabandt <cb@256bit.org>
parents:
8182
diff
changeset
|
1373 * allows only one '=' character per "set" command line. grrr. (jw) |
7 | 1374 */ |
1375 if (nextchar == '?' | |
1376 || (prefix == 1 | |
1377 && vim_strchr((char_u *)"=:&<", nextchar) == NULL | |
1378 && !(flags & P_BOOL))) | |
1379 { | |
1380 /* | |
1381 * print value | |
1382 */ | |
1383 if (did_show) | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1384 msg_putchar('\n'); // cursor below last one |
7 | 1385 else |
1386 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1387 gotocmdline(TRUE); // cursor at status line |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1388 did_show = TRUE; // remember that we did a line |
7 | 1389 } |
1390 if (opt_idx >= 0) | |
1391 { | |
1392 showoneopt(&options[opt_idx], opt_flags); | |
1393 #ifdef FEAT_EVAL | |
1394 if (p_verbose > 0) | |
694 | 1395 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1396 // Mention where the option was last set. |
694 | 1397 if (varp == options[opt_idx].var) |
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
|
1398 last_set_msg(options[opt_idx].script_ctx); |
694 | 1399 else if ((int)options[opt_idx].indir & PV_WIN) |
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
|
1400 last_set_msg(curwin->w_p_script_ctx[ |
694 | 1401 (int)options[opt_idx].indir & PV_MASK]); |
1402 else if ((int)options[opt_idx].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
|
1403 last_set_msg(curbuf->b_p_script_ctx[ |
694 | 1404 (int)options[opt_idx].indir & PV_MASK]); |
1405 } | |
7 | 1406 #endif |
1407 } | |
1408 else | |
1409 { | |
1410 char_u *p; | |
1411 | |
1412 p = find_termcode(key_name); | |
1413 if (p == NULL) | |
1414 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15207
diff
changeset
|
1415 errmsg = N_("E846: Key code not set"); |
7 | 1416 goto skip; |
1417 } | |
1418 else | |
1419 (void)show_one_termcode(key_name, p, TRUE); | |
1420 } | |
1421 if (nextchar != '?' | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
1422 && nextchar != NUL && !VIM_ISWHITE(afterchar)) |
7 | 1423 errmsg = e_trailing; |
1424 } | |
1425 else | |
1426 { | |
15058
5997b84a838a
patch 8.1.0540: may evaluate insecure value when appending to option
Bram Moolenaar <Bram@vim.org>
parents:
15056
diff
changeset
|
1427 int value_is_replaced = !prepending && !adding && !removing; |
15066
40d9218b2b12
patch 8.1.0544: setting 'filetype' in a modeline causes an error
Bram Moolenaar <Bram@vim.org>
parents:
15062
diff
changeset
|
1428 int value_checked = FALSE; |
15058
5997b84a838a
patch 8.1.0540: may evaluate insecure value when appending to option
Bram Moolenaar <Bram@vim.org>
parents:
15056
diff
changeset
|
1429 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1430 if (flags & P_BOOL) // boolean |
7 | 1431 { |
1432 if (nextchar == '=' || nextchar == ':') | |
1433 { | |
1434 errmsg = e_invarg; | |
1435 goto skip; | |
1436 } | |
1437 | |
1438 /* | |
1439 * ":set opt!": invert | |
1440 * ":set opt&": reset to default value | |
1441 * ":set opt<": reset to global value | |
1442 */ | |
1443 if (nextchar == '!') | |
1444 value = *(int *)(varp) ^ 1; | |
1445 else if (nextchar == '&') | |
840 | 1446 value = (int)(long)(long_i)options[opt_idx].def_val[ |
7 | 1447 ((flags & P_VI_DEF) || cp_val) |
1448 ? VI_DEFAULT : VIM_DEFAULT]; | |
1449 else if (nextchar == '<') | |
1450 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1451 // For 'autoread' -1 means to use global value. |
7 | 1452 if ((int *)varp == &curbuf->b_p_ar |
1453 && opt_flags == OPT_LOCAL) | |
1454 value = -1; | |
1455 else | |
1456 value = *(int *)get_varp_scope(&(options[opt_idx]), | |
1457 OPT_GLOBAL); | |
1458 } | |
1459 else | |
1460 { | |
1461 /* | |
1462 * ":set invopt": invert | |
1463 * ":set opt" or ":set noopt": set or reset | |
1464 */ | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
1465 if (nextchar != NUL && !VIM_ISWHITE(afterchar)) |
7 | 1466 { |
1467 errmsg = e_trailing; | |
1468 goto skip; | |
1469 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1470 if (prefix == 2) // inv |
7 | 1471 value = *(int *)(varp) ^ 1; |
1472 else | |
1473 value = prefix; | |
1474 } | |
1475 | |
1476 errmsg = set_bool_option(opt_idx, varp, (int)value, | |
1477 opt_flags); | |
1478 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1479 else // numeric or string |
7 | 1480 { |
1481 if (vim_strchr((char_u *)"=:&<", nextchar) == NULL | |
1482 || prefix != 1) | |
1483 { | |
1484 errmsg = e_invarg; | |
1485 goto skip; | |
1486 } | |
1487 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1488 if (flags & P_NUM) // numeric |
7 | 1489 { |
1490 /* | |
1491 * Different ways to set a number option: | |
1492 * & set to default value | |
1493 * < set to global value | |
1494 * <xx> accept special key codes for 'wildchar' | |
1495 * c accept any non-digit for 'wildchar' | |
1496 * [-]0-9 set number | |
1497 * other error | |
1498 */ | |
1499 ++arg; | |
1500 if (nextchar == '&') | |
840 | 1501 value = (long)(long_i)options[opt_idx].def_val[ |
7 | 1502 ((flags & P_VI_DEF) || cp_val) |
1503 ? VI_DEFAULT : VIM_DEFAULT]; | |
1504 else if (nextchar == '<') | |
5446 | 1505 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1506 // For 'undolevels' NO_LOCAL_UNDOLEVEL means to |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1507 // use the global value. |
5446 | 1508 if ((long *)varp == &curbuf->b_p_ul |
1509 && opt_flags == OPT_LOCAL) | |
1510 value = NO_LOCAL_UNDOLEVEL; | |
1511 else | |
1512 value = *(long *)get_varp_scope( | |
1513 &(options[opt_idx]), OPT_GLOBAL); | |
1514 } | |
7 | 1515 else if (((long *)varp == &p_wc |
1516 || (long *)varp == &p_wcm) | |
1517 && (*arg == '<' | |
1518 || *arg == '^' | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
1519 || (*arg != NUL |
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
1520 && (!arg[1] || VIM_ISWHITE(arg[1])) |
7 | 1521 && !VIM_ISDIGIT(*arg)))) |
1522 { | |
11764
b82dad3fa176
patch 8.0.0764: 'termkey' does not work yet
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
1523 value = string_to_key(arg, FALSE); |
7 | 1524 if (value == 0 && (long *)varp != &p_wcm) |
1525 { | |
1526 errmsg = e_invarg; | |
1527 goto skip; | |
1528 } | |
1529 } | |
1530 else if (*arg == '-' || VIM_ISDIGIT(*arg)) | |
1531 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1532 // Allow negative (for 'undolevels'), octal and |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1533 // hex numbers. |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7426
diff
changeset
|
1534 vim_str2nr(arg, NULL, &i, STR2NR_ALL, |
16706
77bcb5055fec
patch 8.1.1355: obvious mistakes are accepted as valid expressions
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
1535 &value, NULL, 0, TRUE); |
17039
d726d8cce996
patch 8.1.1519: 'backupskip' may contain duplicates
Bram Moolenaar <Bram@vim.org>
parents:
16843
diff
changeset
|
1536 if (i == 0 || (arg[i] != NUL |
d726d8cce996
patch 8.1.1519: 'backupskip' may contain duplicates
Bram Moolenaar <Bram@vim.org>
parents:
16843
diff
changeset
|
1537 && !VIM_ISWHITE(arg[i]))) |
7 | 1538 { |
16706
77bcb5055fec
patch 8.1.1355: obvious mistakes are accepted as valid expressions
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
1539 errmsg = N_("E521: Number required after ="); |
7 | 1540 goto skip; |
1541 } | |
1542 } | |
1543 else | |
1544 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15207
diff
changeset
|
1545 errmsg = N_("E521: Number required after ="); |
7 | 1546 goto skip; |
1547 } | |
1548 | |
1549 if (adding) | |
1550 value = *(long *)varp + value; | |
1551 if (prepending) | |
1552 value = *(long *)varp * value; | |
1553 if (removing) | |
1554 value = *(long *)varp - value; | |
1555 errmsg = set_num_option(opt_idx, varp, value, | |
274 | 1556 errbuf, sizeof(errbuf), opt_flags); |
7 | 1557 } |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1558 else if (opt_idx >= 0) // string |
7 | 1559 { |
12188
d2e367d9de1f
patch 8.0.0974: resetting a string option does not trigger OptionSet
Christian Brabandt <cb@256bit.org>
parents:
12186
diff
changeset
|
1560 char_u *save_arg = NULL; |
d2e367d9de1f
patch 8.0.0974: resetting a string option does not trigger OptionSet
Christian Brabandt <cb@256bit.org>
parents:
12186
diff
changeset
|
1561 char_u *s = NULL; |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1562 char_u *oldval = NULL; // previous value if *varp |
12188
d2e367d9de1f
patch 8.0.0974: resetting a string option does not trigger OptionSet
Christian Brabandt <cb@256bit.org>
parents:
12186
diff
changeset
|
1563 char_u *newval; |
d2e367d9de1f
patch 8.0.0974: resetting a string option does not trigger OptionSet
Christian Brabandt <cb@256bit.org>
parents:
12186
diff
changeset
|
1564 char_u *origval = NULL; |
17085
620e9011b685
patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents:
17039
diff
changeset
|
1565 char_u *origval_l = NULL; |
620e9011b685
patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents:
17039
diff
changeset
|
1566 char_u *origval_g = NULL; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13361
diff
changeset
|
1567 #if defined(FEAT_EVAL) |
12188
d2e367d9de1f
patch 8.0.0974: resetting a string option does not trigger OptionSet
Christian Brabandt <cb@256bit.org>
parents:
12186
diff
changeset
|
1568 char_u *saved_origval = NULL; |
17085
620e9011b685
patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents:
17039
diff
changeset
|
1569 char_u *saved_origval_l = NULL; |
620e9011b685
patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents:
17039
diff
changeset
|
1570 char_u *saved_origval_g = NULL; |
12188
d2e367d9de1f
patch 8.0.0974: resetting a string option does not trigger OptionSet
Christian Brabandt <cb@256bit.org>
parents:
12186
diff
changeset
|
1571 char_u *saved_newval = NULL; |
d2e367d9de1f
patch 8.0.0974: resetting a string option does not trigger OptionSet
Christian Brabandt <cb@256bit.org>
parents:
12186
diff
changeset
|
1572 #endif |
d2e367d9de1f
patch 8.0.0974: resetting a string option does not trigger OptionSet
Christian Brabandt <cb@256bit.org>
parents:
12186
diff
changeset
|
1573 unsigned newlen; |
d2e367d9de1f
patch 8.0.0974: resetting a string option does not trigger OptionSet
Christian Brabandt <cb@256bit.org>
parents:
12186
diff
changeset
|
1574 int comma; |
d2e367d9de1f
patch 8.0.0974: resetting a string option does not trigger OptionSet
Christian Brabandt <cb@256bit.org>
parents:
12186
diff
changeset
|
1575 int bs; |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1576 int new_value_alloced; // new string option |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1577 // was allocated |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1578 |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1579 // When using ":set opt=val" for a global option |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1580 // with a local value the local value will be |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1581 // reset, use the global value here. |
7 | 1582 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0 |
692 | 1583 && ((int)options[opt_idx].indir & PV_BOTH)) |
7 | 1584 varp = options[opt_idx].var; |
1585 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1586 // The old value is kept until we are sure that the |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1587 // new value is valid. |
7 | 1588 oldval = *(char_u **)varp; |
12188
d2e367d9de1f
patch 8.0.0974: resetting a string option does not trigger OptionSet
Christian Brabandt <cb@256bit.org>
parents:
12186
diff
changeset
|
1589 |
17085
620e9011b685
patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents:
17039
diff
changeset
|
1590 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
|
1591 { |
620e9011b685
patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents:
17039
diff
changeset
|
1592 origval_l = *(char_u **)get_varp_scope( |
620e9011b685
patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents:
17039
diff
changeset
|
1593 &(options[opt_idx]), OPT_LOCAL); |
620e9011b685
patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents:
17039
diff
changeset
|
1594 origval_g = *(char_u **)get_varp_scope( |
620e9011b685
patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents:
17039
diff
changeset
|
1595 &(options[opt_idx]), OPT_GLOBAL); |
620e9011b685
patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents:
17039
diff
changeset
|
1596 |
620e9011b685
patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents:
17039
diff
changeset
|
1597 // A global-local string option might have an empty |
620e9011b685
patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents:
17039
diff
changeset
|
1598 // option as value to indicate that the global |
620e9011b685
patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents:
17039
diff
changeset
|
1599 // value should be used. |
620e9011b685
patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents:
17039
diff
changeset
|
1600 if (((int)options[opt_idx].indir & PV_BOTH) |
620e9011b685
patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents:
17039
diff
changeset
|
1601 && origval_l == empty_option) |
620e9011b685
patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents:
17039
diff
changeset
|
1602 origval_l = origval_g; |
620e9011b685
patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents:
17039
diff
changeset
|
1603 } |
620e9011b685
patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents:
17039
diff
changeset
|
1604 |
620e9011b685
patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents:
17039
diff
changeset
|
1605 // When setting the local value of a global |
620e9011b685
patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents:
17039
diff
changeset
|
1606 // option, the old value may be the global value. |
12188
d2e367d9de1f
patch 8.0.0974: resetting a string option does not trigger OptionSet
Christian Brabandt <cb@256bit.org>
parents:
12186
diff
changeset
|
1607 if (((int)options[opt_idx].indir & PV_BOTH) |
d2e367d9de1f
patch 8.0.0974: resetting a string option does not trigger OptionSet
Christian Brabandt <cb@256bit.org>
parents:
12186
diff
changeset
|
1608 && (opt_flags & OPT_LOCAL)) |
d2e367d9de1f
patch 8.0.0974: resetting a string option does not trigger OptionSet
Christian Brabandt <cb@256bit.org>
parents:
12186
diff
changeset
|
1609 origval = *(char_u **)get_varp( |
d2e367d9de1f
patch 8.0.0974: resetting a string option does not trigger OptionSet
Christian Brabandt <cb@256bit.org>
parents:
12186
diff
changeset
|
1610 &options[opt_idx]); |
d2e367d9de1f
patch 8.0.0974: resetting a string option does not trigger OptionSet
Christian Brabandt <cb@256bit.org>
parents:
12186
diff
changeset
|
1611 else |
d2e367d9de1f
patch 8.0.0974: resetting a string option does not trigger OptionSet
Christian Brabandt <cb@256bit.org>
parents:
12186
diff
changeset
|
1612 origval = oldval; |
d2e367d9de1f
patch 8.0.0974: resetting a string option does not trigger OptionSet
Christian Brabandt <cb@256bit.org>
parents:
12186
diff
changeset
|
1613 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1614 if (nextchar == '&') // set to default val |
7 | 1615 { |
1616 newval = options[opt_idx].def_val[ | |
1617 ((flags & P_VI_DEF) || cp_val) | |
1618 ? VI_DEFAULT : VIM_DEFAULT]; | |
1619 if ((char_u **)varp == &p_bg) | |
1620 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1621 // guess the value of 'background' |
7 | 1622 #ifdef FEAT_GUI |
1623 if (gui.in_use) | |
1624 newval = gui_bg_default(); | |
1625 else | |
1626 #endif | |
671 | 1627 newval = term_bg_default(); |
7 | 1628 } |
1629 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1630 // expand environment variables and ~ (since the |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1631 // default value was already expanded, only |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1632 // required when an environment variable was set |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1633 // later |
7 | 1634 if (newval == NULL) |
1635 newval = empty_option; | |
1636 else | |
1637 { | |
1638 s = option_expand(opt_idx, newval); | |
1639 if (s == NULL) | |
1640 s = newval; | |
1641 newval = vim_strsave(s); | |
1642 } | |
1643 new_value_alloced = TRUE; | |
1644 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1645 else if (nextchar == '<') // set to global val |
7 | 1646 { |
1647 newval = vim_strsave(*(char_u **)get_varp_scope( | |
1648 &(options[opt_idx]), OPT_GLOBAL)); | |
1649 new_value_alloced = TRUE; | |
1650 } | |
1651 else | |
1652 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1653 ++arg; // jump to after the '=' or ':' |
7 | 1654 |
1655 /* | |
1656 * Set 'keywordprg' to ":help" if an empty | |
1657 * value was passed to :set by the user. | |
1658 * Misuse errbuf[] for the resulting string. | |
1659 */ | |
1660 if (varp == (char_u *)&p_kp | |
1661 && (*arg == NUL || *arg == ' ')) | |
1662 { | |
1663 STRCPY(errbuf, ":help"); | |
1664 save_arg = arg; | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15207
diff
changeset
|
1665 arg = (char_u *)errbuf; |
7 | 1666 } |
1667 /* | |
3168 | 1668 * Convert 'backspace' number to string, for |
1669 * adding, prepending and removing string. | |
1670 */ | |
1671 else if (varp == (char_u *)&p_bs | |
1672 && VIM_ISDIGIT(**(char_u **)varp)) | |
1673 { | |
1674 i = getdigits((char_u **)varp); | |
1675 switch (i) | |
1676 { | |
1677 case 0: | |
1678 *(char_u **)varp = empty_option; | |
1679 break; | |
1680 case 1: | |
1681 *(char_u **)varp = vim_strsave( | |
1682 (char_u *)"indent,eol"); | |
1683 break; | |
1684 case 2: | |
1685 *(char_u **)varp = vim_strsave( | |
1686 (char_u *)"indent,eol,start"); | |
1687 break; | |
20069
9a67d41708d2
patch 8.2.0590: no 'backspace' value allows ignoring the insertion point
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
1688 case 3: |
9a67d41708d2
patch 8.2.0590: no 'backspace' value allows ignoring the insertion point
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
1689 *(char_u **)varp = vim_strsave( |
9a67d41708d2
patch 8.2.0590: no 'backspace' value allows ignoring the insertion point
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
1690 (char_u *)"indent,eol,nostop"); |
9a67d41708d2
patch 8.2.0590: no 'backspace' value allows ignoring the insertion point
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
1691 break; |
3168 | 1692 } |
1693 vim_free(oldval); | |
12190
497b78526358
patch 8.0.0975: using freed memory when setting 'backspace'
Christian Brabandt <cb@256bit.org>
parents:
12188
diff
changeset
|
1694 if (origval == oldval) |
497b78526358
patch 8.0.0975: using freed memory when setting 'backspace'
Christian Brabandt <cb@256bit.org>
parents:
12188
diff
changeset
|
1695 origval = *(char_u **)varp; |
17085
620e9011b685
patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents:
17039
diff
changeset
|
1696 if (origval_l == oldval) |
620e9011b685
patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents:
17039
diff
changeset
|
1697 origval_l = *(char_u **)varp; |
620e9011b685
patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents:
17039
diff
changeset
|
1698 if (origval_g == oldval) |
620e9011b685
patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents:
17039
diff
changeset
|
1699 origval_g = *(char_u **)varp; |
3168 | 1700 oldval = *(char_u **)varp; |
1701 } | |
1702 /* | |
7 | 1703 * Convert 'whichwrap' number to string, for |
1704 * backwards compatibility with Vim 3.0. | |
1705 * Misuse errbuf[] for the resulting string. | |
1706 */ | |
1707 else if (varp == (char_u *)&p_ww | |
1708 && VIM_ISDIGIT(*arg)) | |
1709 { | |
1710 *errbuf = NUL; | |
1711 i = getdigits(&arg); | |
1712 if (i & 1) | |
1713 STRCAT(errbuf, "b,"); | |
1714 if (i & 2) | |
1715 STRCAT(errbuf, "s,"); | |
1716 if (i & 4) | |
1717 STRCAT(errbuf, "h,l,"); | |
1718 if (i & 8) | |
1719 STRCAT(errbuf, "<,>,"); | |
1720 if (i & 16) | |
1721 STRCAT(errbuf, "[,],"); | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1722 if (*errbuf != NUL) // remove trailing , |
7 | 1723 errbuf[STRLEN(errbuf) - 1] = NUL; |
1724 save_arg = arg; | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15207
diff
changeset
|
1725 arg = (char_u *)errbuf; |
7 | 1726 } |
1727 /* | |
1728 * Remove '>' before 'dir' and 'bdir', for | |
1729 * backwards compatibility with version 3.0 | |
1730 */ | |
1731 else if ( *arg == '>' | |
1732 && (varp == (char_u *)&p_dir | |
1733 || varp == (char_u *)&p_bdir)) | |
1734 { | |
1735 ++arg; | |
1736 } | |
1737 | |
1738 /* | |
1739 * Copy the new string into allocated memory. | |
1740 * Can't use set_string_option_direct(), because | |
1741 * we need to remove the backslashes. | |
1742 */ | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1743 // get a bit too much |
7 | 1744 newlen = (unsigned)STRLEN(arg) + 1; |
1745 if (adding || prepending || removing) | |
1746 newlen += (unsigned)STRLEN(origval) + 1; | |
1747 newval = alloc(newlen); | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1748 if (newval == NULL) // out of mem, don't change |
7 | 1749 break; |
1750 s = newval; | |
1751 | |
1752 /* | |
1753 * Copy the string, skip over escaped chars. | |
1754 * For MS-DOS and WIN32 backslashes before normal | |
1755 * file name characters are not removed, and keep | |
1756 * backslash at start, for "\\machine\path", but | |
1757 * do remove it for "\\\\machine\\path". | |
1758 * The reverse is found in ExpandOldSetting(). | |
1759 */ | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
1760 while (*arg && !VIM_ISWHITE(*arg)) |
7 | 1761 { |
1762 if (*arg == '\\' && arg[1] != NUL | |
1763 #ifdef BACKSLASH_IN_FILENAME | |
1764 && !((flags & P_EXPAND) | |
1765 && vim_isfilec(arg[1]) | |
21672
9099eb378758
patch 8.2.1386: backslash not removed afer space with space in 'isfname'
Bram Moolenaar <Bram@vim.org>
parents:
20802
diff
changeset
|
1766 && !VIM_ISWHITE(arg[1]) |
7 | 1767 && (arg[1] != '\\' |
1768 || (s == newval | |
1769 && arg[2] != '\\'))) | |
1770 #endif | |
1771 ) | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1772 ++arg; // remove backslash |
7 | 1773 if (has_mbyte |
474 | 1774 && (i = (*mb_ptr2len)(arg)) > 1) |
7 | 1775 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1776 // copy multibyte char |
7 | 1777 mch_memmove(s, arg, (size_t)i); |
1778 arg += i; | |
1779 s += i; | |
1780 } | |
1781 else | |
1782 *s++ = *arg++; | |
1783 } | |
1784 *s = NUL; | |
1785 | |
1786 /* | |
1787 * Expand environment variables and ~. | |
1788 * Don't do it when adding without inserting a | |
1789 * comma. | |
1790 */ | |
1791 if (!(adding || prepending || removing) | |
1792 || (flags & P_COMMA)) | |
1793 { | |
1794 s = option_expand(opt_idx, newval); | |
1795 if (s != NULL) | |
1796 { | |
1797 vim_free(newval); | |
1798 newlen = (unsigned)STRLEN(s) + 1; | |
1799 if (adding || prepending || removing) | |
1800 newlen += (unsigned)STRLEN(origval) + 1; | |
1801 newval = alloc(newlen); | |
1802 if (newval == NULL) | |
1803 break; | |
1804 STRCPY(newval, s); | |
1805 } | |
1806 } | |
1807 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1808 // locate newval[] in origval[] when removing it |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1809 // and when adding to avoid duplicates |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1810 i = 0; // init for GCC |
7 | 1811 if (removing || (flags & P_NODUP)) |
1812 { | |
1813 i = (int)STRLEN(newval); | |
1814 bs = 0; | |
1815 for (s = origval; *s; ++s) | |
1816 { | |
1817 if ((!(flags & P_COMMA) | |
1818 || s == origval | |
1819 || (s[-1] == ',' && !(bs & 1))) | |
1820 && STRNCMP(s, newval, i) == 0 | |
1821 && (!(flags & P_COMMA) | |
1822 || s[i] == ',' | |
1823 || s[i] == NUL)) | |
1824 break; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1825 // Count backslashes. Only a comma with an |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1826 // even number of backslashes or a single |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1827 // backslash preceded by a comma before it |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1828 // is recognized as a separator |
7426
779a7c14c795
commit https://github.com/vim/vim/commit/8f79acdf7ede2693fbda53c3c9693f16db4f193b
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
1829 if ((s > origval + 1 |
779a7c14c795
commit https://github.com/vim/vim/commit/8f79acdf7ede2693fbda53c3c9693f16db4f193b
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
1830 && s[-1] == '\\' |
779a7c14c795
commit https://github.com/vim/vim/commit/8f79acdf7ede2693fbda53c3c9693f16db4f193b
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
1831 && s[-2] != ',') |
779a7c14c795
commit https://github.com/vim/vim/commit/8f79acdf7ede2693fbda53c3c9693f16db4f193b
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
1832 || (s == origval + 1 |
779a7c14c795
commit https://github.com/vim/vim/commit/8f79acdf7ede2693fbda53c3c9693f16db4f193b
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
1833 && s[-1] == '\\')) |
779a7c14c795
commit https://github.com/vim/vim/commit/8f79acdf7ede2693fbda53c3c9693f16db4f193b
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
1834 |
7 | 1835 ++bs; |
1836 else | |
1837 bs = 0; | |
1838 } | |
1839 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1840 // do not add if already there |
7 | 1841 if ((adding || prepending) && *s) |
1842 { | |
1843 prepending = FALSE; | |
1844 adding = FALSE; | |
1845 STRCPY(newval, origval); | |
1846 } | |
1847 } | |
1848 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1849 // concatenate the two strings; add a ',' if |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1850 // needed |
7 | 1851 if (adding || prepending) |
1852 { | |
1853 comma = ((flags & P_COMMA) && *origval != NUL | |
1854 && *newval != NUL); | |
1855 if (adding) | |
1856 { | |
1857 i = (int)STRLEN(origval); | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1858 // strip a trailing comma, would get 2 |
7212
55c67e16e4fd
commit https://github.com/vim/vim/commit/174674743d9a2d7361c9cd89836f8dd8651edeeb
Christian Brabandt <cb@256bit.org>
parents:
7204
diff
changeset
|
1859 if (comma && i > 1 |
55c67e16e4fd
commit https://github.com/vim/vim/commit/174674743d9a2d7361c9cd89836f8dd8651edeeb
Christian Brabandt <cb@256bit.org>
parents:
7204
diff
changeset
|
1860 && (flags & P_ONECOMMA) == P_ONECOMMA |
55c67e16e4fd
commit https://github.com/vim/vim/commit/174674743d9a2d7361c9cd89836f8dd8651edeeb
Christian Brabandt <cb@256bit.org>
parents:
7204
diff
changeset
|
1861 && origval[i - 1] == ',' |
55c67e16e4fd
commit https://github.com/vim/vim/commit/174674743d9a2d7361c9cd89836f8dd8651edeeb
Christian Brabandt <cb@256bit.org>
parents:
7204
diff
changeset
|
1862 && origval[i - 2] != '\\') |
6841 | 1863 i--; |
7 | 1864 mch_memmove(newval + i + comma, newval, |
1865 STRLEN(newval) + 1); | |
1866 mch_memmove(newval, origval, (size_t)i); | |
1867 } | |
1868 else | |
1869 { | |
1870 i = (int)STRLEN(newval); | |
1622 | 1871 STRMOVE(newval + i + comma, origval); |
7 | 1872 } |
1873 if (comma) | |
1874 newval[i] = ','; | |
1875 } | |
1876 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1877 // Remove newval[] from origval[]. (Note: "i" has |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1878 // been set above and is used here). |
7 | 1879 if (removing) |
1880 { | |
1881 STRCPY(newval, origval); | |
1882 if (*s) | |
1883 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1884 // may need to remove a comma |
7 | 1885 if (flags & P_COMMA) |
1886 { | |
1887 if (s == origval) | |
1888 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1889 // include comma after string |
7 | 1890 if (s[i] == ',') |
1891 ++i; | |
1892 } | |
1893 else | |
1894 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1895 // include comma before string |
7 | 1896 --s; |
1897 ++i; | |
1898 } | |
1899 } | |
1622 | 1900 STRMOVE(newval + (s - origval), s + i); |
7 | 1901 } |
1902 } | |
1903 | |
1904 if (flags & P_FLAGLIST) | |
1905 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1906 // Remove flags that appear twice. |
10831
e926c5a7f9bf
patch 8.0.0305: invalid memory access when option has duplicate flag
Christian Brabandt <cb@256bit.org>
parents:
10825
diff
changeset
|
1907 for (s = newval; *s;) |
9798
e34e4547f3d1
commit https://github.com/vim/vim/commit/c8ce615299b4d8c1b2e6cf83496f48cd497d8a37
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
1908 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1909 // if options have P_FLAGLIST and |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1910 // P_ONECOMMA such as 'whichwrap' |
9798
e34e4547f3d1
commit https://github.com/vim/vim/commit/c8ce615299b4d8c1b2e6cf83496f48cd497d8a37
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
1911 if (flags & P_ONECOMMA) |
7 | 1912 { |
9798
e34e4547f3d1
commit https://github.com/vim/vim/commit/c8ce615299b4d8c1b2e6cf83496f48cd497d8a37
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
1913 if (*s != ',' && *(s + 1) == ',' |
e34e4547f3d1
commit https://github.com/vim/vim/commit/c8ce615299b4d8c1b2e6cf83496f48cd497d8a37
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
1914 && vim_strchr(s + 2, *s) != NULL) |
e34e4547f3d1
commit https://github.com/vim/vim/commit/c8ce615299b4d8c1b2e6cf83496f48cd497d8a37
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
1915 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1916 // Remove the duplicated value and |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1917 // the next comma. |
9798
e34e4547f3d1
commit https://github.com/vim/vim/commit/c8ce615299b4d8c1b2e6cf83496f48cd497d8a37
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
1918 STRMOVE(s, s + 2); |
10831
e926c5a7f9bf
patch 8.0.0305: invalid memory access when option has duplicate flag
Christian Brabandt <cb@256bit.org>
parents:
10825
diff
changeset
|
1919 continue; |
9798
e34e4547f3d1
commit https://github.com/vim/vim/commit/c8ce615299b4d8c1b2e6cf83496f48cd497d8a37
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
1920 } |
7 | 1921 } |
9798
e34e4547f3d1
commit https://github.com/vim/vim/commit/c8ce615299b4d8c1b2e6cf83496f48cd497d8a37
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
1922 else |
e34e4547f3d1
commit https://github.com/vim/vim/commit/c8ce615299b4d8c1b2e6cf83496f48cd497d8a37
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
1923 { |
e34e4547f3d1
commit https://github.com/vim/vim/commit/c8ce615299b4d8c1b2e6cf83496f48cd497d8a37
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
1924 if ((!(flags & P_COMMA) || *s != ',') |
e34e4547f3d1
commit https://github.com/vim/vim/commit/c8ce615299b4d8c1b2e6cf83496f48cd497d8a37
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
1925 && vim_strchr(s + 1, *s) != NULL) |
e34e4547f3d1
commit https://github.com/vim/vim/commit/c8ce615299b4d8c1b2e6cf83496f48cd497d8a37
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
1926 { |
e34e4547f3d1
commit https://github.com/vim/vim/commit/c8ce615299b4d8c1b2e6cf83496f48cd497d8a37
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
1927 STRMOVE(s, s + 1); |
10831
e926c5a7f9bf
patch 8.0.0305: invalid memory access when option has duplicate flag
Christian Brabandt <cb@256bit.org>
parents:
10825
diff
changeset
|
1928 continue; |
9798
e34e4547f3d1
commit https://github.com/vim/vim/commit/c8ce615299b4d8c1b2e6cf83496f48cd497d8a37
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
1929 } |
e34e4547f3d1
commit https://github.com/vim/vim/commit/c8ce615299b4d8c1b2e6cf83496f48cd497d8a37
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
1930 } |
10831
e926c5a7f9bf
patch 8.0.0305: invalid memory access when option has duplicate flag
Christian Brabandt <cb@256bit.org>
parents:
10825
diff
changeset
|
1931 ++s; |
9798
e34e4547f3d1
commit https://github.com/vim/vim/commit/c8ce615299b4d8c1b2e6cf83496f48cd497d8a37
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
1932 } |
7 | 1933 } |
1934 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1935 if (save_arg != NULL) // number for 'whichwrap' |
7 | 1936 arg = save_arg; |
1937 new_value_alloced = TRUE; | |
1938 } | |
1939 | |
12188
d2e367d9de1f
patch 8.0.0974: resetting a string option does not trigger OptionSet
Christian Brabandt <cb@256bit.org>
parents:
12186
diff
changeset
|
1940 /* |
d2e367d9de1f
patch 8.0.0974: resetting a string option does not trigger OptionSet
Christian Brabandt <cb@256bit.org>
parents:
12186
diff
changeset
|
1941 * Set the new value. |
d2e367d9de1f
patch 8.0.0974: resetting a string option does not trigger OptionSet
Christian Brabandt <cb@256bit.org>
parents:
12186
diff
changeset
|
1942 */ |
7 | 1943 *(char_u **)(varp) = newval; |
1944 | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13361
diff
changeset
|
1945 #if defined(FEAT_EVAL) |
6939 | 1946 if (!starting |
1947 # ifdef FEAT_CRYPT | |
1948 && options[opt_idx].indir != PV_KEY | |
1949 # endif | |
11587
439835c4b7aa
patch 8.0.0676: crash when closing quickfix window in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11533
diff
changeset
|
1950 && origval != NULL && newval != NULL) |
439835c4b7aa
patch 8.0.0676: crash when closing quickfix window in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11533
diff
changeset
|
1951 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1952 // origval may be freed by |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1953 // did_set_string_option(), make a copy. |
6935 | 1954 saved_origval = vim_strsave(origval); |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1955 // newval (and varp) may become invalid if the |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1956 // buffer is closed by autocommands. |
11587
439835c4b7aa
patch 8.0.0676: crash when closing quickfix window in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11533
diff
changeset
|
1957 saved_newval = vim_strsave(newval); |
17085
620e9011b685
patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents:
17039
diff
changeset
|
1958 if (origval_l != NULL) |
620e9011b685
patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents:
17039
diff
changeset
|
1959 saved_origval_l = vim_strsave(origval_l); |
620e9011b685
patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents:
17039
diff
changeset
|
1960 if (origval_g != NULL) |
620e9011b685
patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents:
17039
diff
changeset
|
1961 saved_origval_g = vim_strsave(origval_g); |
11587
439835c4b7aa
patch 8.0.0676: crash when closing quickfix window in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11533
diff
changeset
|
1962 } |
6935 | 1963 #endif |
1964 | |
15058
5997b84a838a
patch 8.1.0540: may evaluate insecure value when appending to option
Bram Moolenaar <Bram@vim.org>
parents:
15056
diff
changeset
|
1965 { |
5997b84a838a
patch 8.1.0540: may evaluate insecure value when appending to option
Bram Moolenaar <Bram@vim.org>
parents:
15056
diff
changeset
|
1966 long_u *p = insecure_flag(opt_idx, opt_flags); |
15207
6ab9c18708c4
patch 8.1.0613: when executing an insecure function the secure flag is stuck
Bram Moolenaar <Bram@vim.org>
parents:
15192
diff
changeset
|
1967 int secure_saved = secure; |
15058
5997b84a838a
patch 8.1.0540: may evaluate insecure value when appending to option
Bram Moolenaar <Bram@vim.org>
parents:
15056
diff
changeset
|
1968 |
5997b84a838a
patch 8.1.0540: may evaluate insecure value when appending to option
Bram Moolenaar <Bram@vim.org>
parents:
15056
diff
changeset
|
1969 // When an option is set in the sandbox, from a |
5997b84a838a
patch 8.1.0540: may evaluate insecure value when appending to option
Bram Moolenaar <Bram@vim.org>
parents:
15056
diff
changeset
|
1970 // modeline or in secure mode, then deal with side |
5997b84a838a
patch 8.1.0540: may evaluate insecure value when appending to option
Bram Moolenaar <Bram@vim.org>
parents:
15056
diff
changeset
|
1971 // effects in secure mode. Also when the value was |
5997b84a838a
patch 8.1.0540: may evaluate insecure value when appending to option
Bram Moolenaar <Bram@vim.org>
parents:
15056
diff
changeset
|
1972 // set with the P_INSECURE flag and is not |
5997b84a838a
patch 8.1.0540: may evaluate insecure value when appending to option
Bram Moolenaar <Bram@vim.org>
parents:
15056
diff
changeset
|
1973 // completely replaced. |
16082
2699db3e4d9d
patch 8.1.1046: the "secure" variable is used inconsistently
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
1974 if ((opt_flags & OPT_MODELINE) |
15058
5997b84a838a
patch 8.1.0540: may evaluate insecure value when appending to option
Bram Moolenaar <Bram@vim.org>
parents:
15056
diff
changeset
|
1975 #ifdef HAVE_SANDBOX |
16082
2699db3e4d9d
patch 8.1.1046: the "secure" variable is used inconsistently
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
1976 || sandbox != 0 |
2699db3e4d9d
patch 8.1.1046: the "secure" variable is used inconsistently
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
1977 #endif |
2699db3e4d9d
patch 8.1.1046: the "secure" variable is used inconsistently
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
1978 || (!value_is_replaced && (*p & P_INSECURE))) |
2699db3e4d9d
patch 8.1.1046: the "secure" variable is used inconsistently
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
1979 secure = 1; |
15207
6ab9c18708c4
patch 8.1.0613: when executing an insecure function the secure flag is stuck
Bram Moolenaar <Bram@vim.org>
parents:
15192
diff
changeset
|
1980 |
6ab9c18708c4
patch 8.1.0613: when executing an insecure function the secure flag is stuck
Bram Moolenaar <Bram@vim.org>
parents:
15192
diff
changeset
|
1981 // Handle side effects, and set the global value |
6ab9c18708c4
patch 8.1.0613: when executing an insecure function the secure flag is stuck
Bram Moolenaar <Bram@vim.org>
parents:
15192
diff
changeset
|
1982 // for ":set" on local options. Note: when setting |
6ab9c18708c4
patch 8.1.0613: when executing an insecure function the secure flag is stuck
Bram Moolenaar <Bram@vim.org>
parents:
15192
diff
changeset
|
1983 // 'syntax' or 'filetype' autocommands may be |
6ab9c18708c4
patch 8.1.0613: when executing an insecure function the secure flag is stuck
Bram Moolenaar <Bram@vim.org>
parents:
15192
diff
changeset
|
1984 // triggered that can cause havoc. |
6ab9c18708c4
patch 8.1.0613: when executing an insecure function the secure flag is stuck
Bram Moolenaar <Bram@vim.org>
parents:
15192
diff
changeset
|
1985 errmsg = did_set_string_option( |
6ab9c18708c4
patch 8.1.0613: when executing an insecure function the secure flag is stuck
Bram Moolenaar <Bram@vim.org>
parents:
15192
diff
changeset
|
1986 opt_idx, (char_u **)varp, |
15066
40d9218b2b12
patch 8.1.0544: setting 'filetype' in a modeline causes an error
Bram Moolenaar <Bram@vim.org>
parents:
15062
diff
changeset
|
1987 new_value_alloced, oldval, errbuf, |
40d9218b2b12
patch 8.1.0544: setting 'filetype' in a modeline causes an error
Bram Moolenaar <Bram@vim.org>
parents:
15062
diff
changeset
|
1988 opt_flags, &value_checked); |
15058
5997b84a838a
patch 8.1.0540: may evaluate insecure value when appending to option
Bram Moolenaar <Bram@vim.org>
parents:
15056
diff
changeset
|
1989 |
15207
6ab9c18708c4
patch 8.1.0613: when executing an insecure function the secure flag is stuck
Bram Moolenaar <Bram@vim.org>
parents:
15192
diff
changeset
|
1990 secure = secure_saved; |
15058
5997b84a838a
patch 8.1.0540: may evaluate insecure value when appending to option
Bram Moolenaar <Bram@vim.org>
parents:
15056
diff
changeset
|
1991 } |
7 | 1992 |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13361
diff
changeset
|
1993 #if defined(FEAT_EVAL) |
12188
d2e367d9de1f
patch 8.0.0974: resetting a string option does not trigger OptionSet
Christian Brabandt <cb@256bit.org>
parents:
12186
diff
changeset
|
1994 if (errmsg == NULL) |
17085
620e9011b685
patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents:
17039
diff
changeset
|
1995 trigger_optionsset_string( |
620e9011b685
patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents:
17039
diff
changeset
|
1996 opt_idx, opt_flags, saved_origval, |
620e9011b685
patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents:
17039
diff
changeset
|
1997 saved_origval_l, saved_origval_g, |
620e9011b685
patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents:
17039
diff
changeset
|
1998 saved_newval); |
12188
d2e367d9de1f
patch 8.0.0974: resetting a string option does not trigger OptionSet
Christian Brabandt <cb@256bit.org>
parents:
12186
diff
changeset
|
1999 vim_free(saved_origval); |
17085
620e9011b685
patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents:
17039
diff
changeset
|
2000 vim_free(saved_origval_l); |
620e9011b685
patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents:
17039
diff
changeset
|
2001 vim_free(saved_origval_g); |
12188
d2e367d9de1f
patch 8.0.0974: resetting a string option does not trigger OptionSet
Christian Brabandt <cb@256bit.org>
parents:
12186
diff
changeset
|
2002 vim_free(saved_newval); |
d2e367d9de1f
patch 8.0.0974: resetting a string option does not trigger OptionSet
Christian Brabandt <cb@256bit.org>
parents:
12186
diff
changeset
|
2003 #endif |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2004 // If error detected, print the error message. |
7 | 2005 if (errmsg != NULL) |
2006 goto skip; | |
2007 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2008 else // key code option |
7 | 2009 { |
2010 char_u *p; | |
2011 | |
2012 if (nextchar == '&') | |
2013 { | |
2014 if (add_termcap_entry(key_name, TRUE) == FAIL) | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15207
diff
changeset
|
2015 errmsg = N_("E522: Not found in termcap"); |
7 | 2016 } |
2017 else | |
2018 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2019 ++arg; // jump to after the '=' or ':' |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
2020 for (p = arg; *p && !VIM_ISWHITE(*p); ++p) |
7 | 2021 if (*p == '\\' && p[1] != NUL) |
2022 ++p; | |
2023 nextchar = *p; | |
2024 *p = NUL; | |
2025 add_termcode(key_name, arg, FALSE); | |
2026 *p = nextchar; | |
2027 } | |
2028 if (full_screen) | |
2029 ttest(FALSE); | |
2030 redraw_all_later(CLEAR); | |
2031 } | |
2032 } | |
634 | 2033 |
7 | 2034 if (opt_idx >= 0) |
15066
40d9218b2b12
patch 8.1.0544: setting 'filetype' in a modeline causes an error
Bram Moolenaar <Bram@vim.org>
parents:
15062
diff
changeset
|
2035 did_set_option( |
40d9218b2b12
patch 8.1.0544: setting 'filetype' in a modeline causes an error
Bram Moolenaar <Bram@vim.org>
parents:
15062
diff
changeset
|
2036 opt_idx, opt_flags, value_is_replaced, value_checked); |
7 | 2037 } |
2038 | |
2039 skip: | |
2040 /* | |
2041 * Advance to next argument. | |
2042 * - skip until a blank found, taking care of backslashes | |
2043 * - skip blanks | |
2044 * - skip one "=val" argument (for hidden options ":set gfn =xx") | |
2045 */ | |
2046 for (i = 0; i < 2 ; ++i) | |
2047 { | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
2048 while (*arg != NUL && !VIM_ISWHITE(*arg)) |
7 | 2049 if (*arg++ == '\\' && *arg != NUL) |
2050 ++arg; | |
2051 arg = skipwhite(arg); | |
2052 if (*arg != '=') | |
2053 break; | |
2054 } | |
2055 } | |
2056 | |
2057 if (errmsg != NULL) | |
2058 { | |
419 | 2059 vim_strncpy(IObuff, (char_u *)_(errmsg), IOSIZE - 1); |
835 | 2060 i = (int)STRLEN(IObuff) + 2; |
7 | 2061 if (i + (arg - startarg) < IOSIZE) |
2062 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2063 // append the argument with the error |
7 | 2064 STRCAT(IObuff, ": "); |
2065 mch_memmove(IObuff + i, startarg, (arg - startarg)); | |
2066 IObuff[i + (arg - startarg)] = NUL; | |
2067 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2068 // make sure all characters are printable |
7 | 2069 trans_characters(IObuff, IOSIZE); |
2070 | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15207
diff
changeset
|
2071 ++no_wait_return; // wait_return done later |
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15207
diff
changeset
|
2072 emsg((char *)IObuff); // show error highlighted |
7 | 2073 --no_wait_return; |
2074 | |
2075 return FAIL; | |
2076 } | |
2077 | |
2078 arg = skipwhite(arg); | |
2079 } | |
2080 | |
168 | 2081 theend: |
2082 if (silent_mode && did_show) | |
2083 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2084 // After displaying option values in silent mode. |
168 | 2085 silent_mode = FALSE; |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2086 info_message = TRUE; // use mch_msg(), not mch_errmsg() |
168 | 2087 msg_putchar('\n'); |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2088 cursor_on(); // msg_start() switches it off |
168 | 2089 out_flush(); |
2090 silent_mode = TRUE; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2091 info_message = FALSE; // use mch_msg(), not mch_errmsg() |
168 | 2092 } |
2093 | |
7 | 2094 return OK; |
2095 } | |
2096 | |
634 | 2097 /* |
2098 * Call this when an option has been given a new value through a user command. | |
2099 * Sets the P_WAS_SET flag and takes care of the P_INSECURE flag. | |
2100 */ | |
18100
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
2101 void |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2102 did_set_option( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2103 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
|
2104 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
|
2105 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
|
2106 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
|
2107 // P_INSECURE flag. |
634 | 2108 { |
681 | 2109 long_u *p; |
2110 | |
634 | 2111 options[opt_idx].flags |= P_WAS_SET; |
2112 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2113 // 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
|
2114 // 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
|
2115 // flag. |
681 | 2116 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
|
2117 if (!value_checked && (secure |
634 | 2118 #ifdef HAVE_SANDBOX |
2119 || sandbox != 0 | |
2120 #endif | |
15066
40d9218b2b12
patch 8.1.0544: setting 'filetype' in a modeline causes an error
Bram Moolenaar <Bram@vim.org>
parents:
15062
diff
changeset
|
2121 || (opt_flags & OPT_MODELINE))) |
681 | 2122 *p = *p | P_INSECURE; |
2123 else if (new_value) | |
2124 *p = *p & ~P_INSECURE; | |
634 | 2125 } |
2126 | |
7 | 2127 /* |
2128 * Convert a key name or string into a key value. | |
2129 * 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
|
2130 * 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
|
2131 */ |
b82dad3fa176
patch 8.0.0764: 'termkey' does not work yet
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
2132 int |
b82dad3fa176
patch 8.0.0764: 'termkey' does not work yet
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
2133 string_to_key(char_u *arg, int multi_byte) |
7 | 2134 { |
2135 if (*arg == '<') | |
14381
d9e6eec551e1
patch 8.1.0205: invalid memory access with invalid modeline
Christian Brabandt <cb@256bit.org>
parents:
14313
diff
changeset
|
2136 return find_key_option(arg + 1, TRUE); |
7 | 2137 if (*arg == '^') |
2138 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
|
2139 if (multi_byte) |
b82dad3fa176
patch 8.0.0764: 'termkey' does not work yet
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
2140 return PTR2CHAR(arg); |
7 | 2141 return *arg; |
2142 } | |
2143 | |
2144 #ifdef FEAT_TITLE | |
2145 /* | |
2146 * When changing 'title', 'titlestring', 'icon' or 'iconstring', call | |
2147 * maketitle() to create and display it. | |
2148 * When switching the title or icon off, call mch_restore_title() to get | |
2149 * the old value back. | |
2150 */ | |
18100
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
2151 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
|
2152 did_set_title(void) |
7 | 2153 { |
2154 if (starting != NO_SCREEN | |
2155 #ifdef FEAT_GUI | |
2156 && !gui.starting | |
2157 #endif | |
2158 ) | |
2159 maketitle(); | |
2160 } | |
2161 #endif | |
2162 | |
2163 /* | |
2164 * set_options_bin - called when 'bin' changes value. | |
2165 */ | |
2166 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2167 set_options_bin( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2168 int oldval, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2169 int newval, |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2170 int opt_flags) // OPT_LOCAL and/or OPT_GLOBAL |
7 | 2171 { |
2172 /* | |
2173 * The option values that are changed when 'bin' changes are | |
2174 * copied when 'bin is set and restored when 'bin' is reset. | |
2175 */ | |
2176 if (newval) | |
2177 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2178 if (!oldval) // switched on |
7 | 2179 { |
2180 if (!(opt_flags & OPT_GLOBAL)) | |
2181 { | |
2182 curbuf->b_p_tw_nobin = curbuf->b_p_tw; | |
2183 curbuf->b_p_wm_nobin = curbuf->b_p_wm; | |
2184 curbuf->b_p_ml_nobin = curbuf->b_p_ml; | |
2185 curbuf->b_p_et_nobin = curbuf->b_p_et; | |
2186 } | |
2187 if (!(opt_flags & OPT_LOCAL)) | |
2188 { | |
2189 p_tw_nobin = p_tw; | |
2190 p_wm_nobin = p_wm; | |
2191 p_ml_nobin = p_ml; | |
2192 p_et_nobin = p_et; | |
2193 } | |
2194 } | |
2195 | |
2196 if (!(opt_flags & OPT_GLOBAL)) | |
2197 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2198 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
|
2199 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
|
2200 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
|
2201 curbuf->b_p_et = 0; // no expandtab |
7 | 2202 } |
2203 if (!(opt_flags & OPT_LOCAL)) | |
2204 { | |
2205 p_tw = 0; | |
2206 p_wm = 0; | |
2207 p_ml = FALSE; | |
2208 p_et = FALSE; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2209 p_bin = TRUE; // needed when called for the "-b" argument |
7 | 2210 } |
2211 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2212 else if (oldval) // switched off |
7 | 2213 { |
2214 if (!(opt_flags & OPT_GLOBAL)) | |
2215 { | |
2216 curbuf->b_p_tw = curbuf->b_p_tw_nobin; | |
2217 curbuf->b_p_wm = curbuf->b_p_wm_nobin; | |
2218 curbuf->b_p_ml = curbuf->b_p_ml_nobin; | |
2219 curbuf->b_p_et = curbuf->b_p_et_nobin; | |
2220 } | |
2221 if (!(opt_flags & OPT_LOCAL)) | |
2222 { | |
2223 p_tw = p_tw_nobin; | |
2224 p_wm = p_wm_nobin; | |
2225 p_ml = p_ml_nobin; | |
2226 p_et = p_et_nobin; | |
2227 } | |
2228 } | |
2229 } | |
2230 | |
2231 /* | |
2232 * Expand environment variables for some string options. | |
2233 * These string options cannot be indirect! | |
2234 * If "val" is NULL expand the current value of the option. | |
2235 * Return pointer to NameBuff, or NULL when not expanded. | |
2236 */ | |
2237 static char_u * | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2238 option_expand(int opt_idx, char_u *val) |
7 | 2239 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2240 // if option doesn't need expansion nothing to do |
7 | 2241 if (!(options[opt_idx].flags & P_EXPAND) || options[opt_idx].var == NULL) |
2242 return NULL; | |
2243 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2244 // 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
|
2245 // expand_env() would truncate the string. |
7 | 2246 if (val != NULL && STRLEN(val) > MAXPATHL) |
2247 return NULL; | |
2248 | |
2249 if (val == NULL) | |
2250 val = *(char_u **)options[opt_idx].var; | |
2251 | |
2252 /* | |
2253 * Expanding this with NameBuff, expand_env() must not be passed IObuff. | |
2254 * Escape spaces when expanding 'tags', they are used to separate file | |
2255 * names. | |
374 | 2256 * For 'spellsuggest' expand after "file:". |
7 | 2257 */ |
2258 expand_env_esc(val, NameBuff, MAXPATHL, | |
1408 | 2259 (char_u **)options[opt_idx].var == &p_tags, FALSE, |
744 | 2260 #ifdef FEAT_SPELL |
374 | 2261 (char_u **)options[opt_idx].var == &p_sps ? (char_u *)"file:" : |
2262 #endif | |
2263 NULL); | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2264 if (STRCMP(NameBuff, val) == 0) // they are the same |
7 | 2265 return NULL; |
2266 | |
2267 return NameBuff; | |
2268 } | |
2269 | |
2270 /* | |
2271 * After setting various option values: recompute variables that depend on | |
2272 * option values. | |
2273 */ | |
2274 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2275 didset_options(void) |
7 | 2276 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2277 // initialize the table for 'iskeyword' et.al. |
7 | 2278 (void)init_chartab(); |
2279 | |
18100
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
2280 didset_string_options(); |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
2281 |
744 | 2282 #ifdef FEAT_SPELL |
484 | 2283 (void)spell_check_msm(); |
374 | 2284 (void)spell_check_sps(); |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2248
diff
changeset
|
2285 (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
|
2286 (void)did_set_spell_option(TRUE); |
344 | 2287 #endif |
7 | 2288 #ifdef FEAT_CMDWIN |
18156
c81370b3ede4
patch 8.1.2073: when editing a buffer 'colorcolumn' may not work
Bram Moolenaar <Bram@vim.org>
parents:
18100
diff
changeset
|
2289 // set cedit_key |
7 | 2290 (void)check_cedit(); |
2291 #endif | |
5995 | 2292 #ifdef FEAT_LINEBREAK |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2293 // initialize the table for 'breakat'. |
7040
17a3fa77e941
commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents:
7034
diff
changeset
|
2294 fill_breakat_flags(); |
17a3fa77e941
commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents:
7034
diff
changeset
|
2295 #endif |
18156
c81370b3ede4
patch 8.1.2073: when editing a buffer 'colorcolumn' may not work
Bram Moolenaar <Bram@vim.org>
parents:
18100
diff
changeset
|
2296 after_copy_winopt(curwin); |
7040
17a3fa77e941
commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents:
7034
diff
changeset
|
2297 } |
17a3fa77e941
commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents:
7034
diff
changeset
|
2298 |
17a3fa77e941
commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents:
7034
diff
changeset
|
2299 /* |
17a3fa77e941
commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents:
7034
diff
changeset
|
2300 * More side effects of setting options. |
17a3fa77e941
commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents:
7034
diff
changeset
|
2301 */ |
17a3fa77e941
commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents:
7034
diff
changeset
|
2302 static void |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2303 didset_options2(void) |
7040
17a3fa77e941
commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents:
7034
diff
changeset
|
2304 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2305 // Initialize the highlight_attr[] table. |
7040
17a3fa77e941
commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents:
7034
diff
changeset
|
2306 (void)highlight_changed(); |
17a3fa77e941
commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents:
7034
diff
changeset
|
2307 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2308 // Parse default for 'wildmode' |
7040
17a3fa77e941
commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents:
7034
diff
changeset
|
2309 check_opt_wim(); |
17a3fa77e941
commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents:
7034
diff
changeset
|
2310 |
17a3fa77e941
commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents:
7034
diff
changeset
|
2311 (void)set_chars_option(&p_lcs); |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2312 // Parse default for 'fillchars'. |
7040
17a3fa77e941
commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents:
7034
diff
changeset
|
2313 (void)set_chars_option(&p_fcs); |
17a3fa77e941
commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents:
7034
diff
changeset
|
2314 |
17a3fa77e941
commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents:
7034
diff
changeset
|
2315 #ifdef FEAT_CLIPBOARD |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2316 // Parse default for 'clipboard' |
7040
17a3fa77e941
commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents:
7034
diff
changeset
|
2317 (void)check_clipboard_option(); |
17a3fa77e941
commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents:
7034
diff
changeset
|
2318 #endif |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
2319 #ifdef FEAT_VARTABS |
15858
3a45b89639fb
patch 8.1.0936: may leak memory when using 'vartabstop'
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
2320 vim_free(curbuf->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
|
2321 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
|
2322 vim_free(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
|
2323 tabstop_set(curbuf->b_p_vts, &curbuf->b_p_vts_array); |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
2324 #endif |
7 | 2325 } |
2326 | |
2327 /* | |
2328 * Check for string options that are NULL (normally only termcap options). | |
2329 */ | |
2330 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2331 check_options(void) |
7 | 2332 { |
2333 int opt_idx; | |
2334 | |
2335 for (opt_idx = 0; options[opt_idx].fullname != NULL; opt_idx++) | |
2336 if ((options[opt_idx].flags & P_STRING) && options[opt_idx].var != NULL) | |
2337 check_string_option((char_u **)get_varp(&(options[opt_idx]))); | |
2338 } | |
2339 | |
2340 /* | |
14867
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
2341 * 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
|
2342 * 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
|
2343 */ |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
2344 int |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
2345 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
|
2346 { |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
2347 int opt_idx; |
7 | 2348 |
2349 for (opt_idx = 1; options[opt_idx].fullname != NULL; opt_idx++) | |
2350 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
|
2351 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
|
2352 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
|
2353 } |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
2354 |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
2355 /* |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
2356 * 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
|
2357 * 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
|
2358 */ |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
2359 int |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
2360 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
|
2361 { |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
2362 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
|
2363 |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
2364 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
|
2365 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
|
2366 return opt_idx; |
7 | 2367 } |
2368 | |
634 | 2369 #if defined(FEAT_EVAL) || defined(PROTO) |
2370 /* | |
2371 * Return TRUE when option "opt" was set from a modeline or in secure mode. | |
2372 * Return FALSE when it wasn't. | |
2373 * Return -1 for an unknown option. | |
2374 */ | |
2375 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2376 was_set_insecurely(char_u *opt, int opt_flags) |
634 | 2377 { |
2378 int idx = findoption(opt); | |
681 | 2379 long_u *flagp; |
634 | 2380 |
2381 if (idx >= 0) | |
681 | 2382 { |
2383 flagp = insecure_flag(idx, opt_flags); | |
2384 return (*flagp & P_INSECURE) != 0; | |
2385 } | |
10359
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10357
diff
changeset
|
2386 internal_error("was_set_insecurely()"); |
634 | 2387 return -1; |
2388 } | |
681 | 2389 |
2390 /* | |
2391 * Get a pointer to the flags used for the P_INSECURE flag of option | |
2392 * "opt_idx". For some local options a local flags field is used. | |
2393 */ | |
2394 static long_u * | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2395 insecure_flag(int opt_idx, int opt_flags) |
681 | 2396 { |
2397 if (opt_flags & OPT_LOCAL) | |
2398 switch ((int)options[opt_idx].indir) | |
2399 { | |
2400 #ifdef FEAT_STL_OPT | |
694 | 2401 case PV_STL: return &curwin->w_p_stl_flags; |
681 | 2402 #endif |
2403 #ifdef FEAT_EVAL | |
885 | 2404 # ifdef FEAT_FOLDING |
694 | 2405 case PV_FDE: return &curwin->w_p_fde_flags; |
2406 case PV_FDT: return &curwin->w_p_fdt_flags; | |
885 | 2407 # endif |
790 | 2408 # ifdef FEAT_BEVAL |
2409 case PV_BEXPR: return &curbuf->b_p_bexpr_flags; | |
2410 # endif | |
681 | 2411 # if defined(FEAT_CINDENT) |
694 | 2412 case PV_INDE: return &curbuf->b_p_inde_flags; |
681 | 2413 # endif |
694 | 2414 case PV_FEX: return &curbuf->b_p_fex_flags; |
681 | 2415 # ifdef FEAT_FIND_ID |
694 | 2416 case PV_INEX: return &curbuf->b_p_inex_flags; |
681 | 2417 # endif |
2418 #endif | |
2419 } | |
2420 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2421 // Nothing special, return global flags field. |
681 | 2422 return &options[opt_idx].flags; |
2423 } | |
634 | 2424 #endif |
2425 | |
18100
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
2426 #if defined(FEAT_TITLE) || defined(PROTO) |
1805 | 2427 /* |
2428 * Redraw the window title and/or tab page text later. | |
2429 */ | |
18100
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
2430 void redraw_titles(void) |
1805 | 2431 { |
2432 need_maketitle = TRUE; | |
2433 redraw_tabline = TRUE; | |
2434 } | |
2435 #endif | |
2436 | |
7 | 2437 /* |
16277
5ef25fa57f71
patch 8.1.1143: may pass weird strings to file name expansion
Bram Moolenaar <Bram@vim.org>
parents:
16223
diff
changeset
|
2438 * 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
|
2439 * 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
|
2440 */ |
17940
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17845
diff
changeset
|
2441 int |
16277
5ef25fa57f71
patch 8.1.1143: may pass weird strings to file name expansion
Bram Moolenaar <Bram@vim.org>
parents:
16223
diff
changeset
|
2442 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
|
2443 { |
5ef25fa57f71
patch 8.1.1143: may pass weird strings to file name expansion
Bram Moolenaar <Bram@vim.org>
parents:
16223
diff
changeset
|
2444 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
|
2445 |
5ef25fa57f71
patch 8.1.1143: may pass weird strings to file name expansion
Bram Moolenaar <Bram@vim.org>
parents:
16223
diff
changeset
|
2446 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
|
2447 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
|
2448 return FALSE; |
5ef25fa57f71
patch 8.1.1143: may pass weird strings to file name expansion
Bram Moolenaar <Bram@vim.org>
parents:
16223
diff
changeset
|
2449 return TRUE; |
5ef25fa57f71
patch 8.1.1143: may pass weird strings to file name expansion
Bram Moolenaar <Bram@vim.org>
parents:
16223
diff
changeset
|
2450 } |
5ef25fa57f71
patch 8.1.1143: may pass weird strings to file name expansion
Bram Moolenaar <Bram@vim.org>
parents:
16223
diff
changeset
|
2451 |
681 | 2452 #if defined(FEAT_EVAL) || defined(PROTO) |
2453 /* | |
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
|
2454 * Set the script_ctx for an option, taking care of setting the buffer- or |
694 | 2455 * window-local value. |
681 | 2456 */ |
18100
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
2457 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
|
2458 set_option_sctx_idx(int opt_idx, int opt_flags, sctx_T script_ctx) |
694 | 2459 { |
2460 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0; | |
2461 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
|
2462 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
|
2463 |
20269
246101db63a4
patch 8.2.0690: line number of option set by modeline is wrong
Bram Moolenaar <Bram@vim.org>
parents:
20237
diff
changeset
|
2464 // 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
|
2465 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
|
2466 new_script_ctx.sc_lnum += SOURCING_LNUM; |
694 | 2467 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2468 // 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
|
2469 // in the buffer or window structure. |
694 | 2470 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
|
2471 options[opt_idx].script_ctx = new_script_ctx; |
694 | 2472 if (both || (opt_flags & OPT_LOCAL)) |
2473 { | |
2474 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
|
2475 curbuf->b_p_script_ctx[indir & PV_MASK] = new_script_ctx; |
694 | 2476 else if (indir & PV_WIN) |
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
|
2477 curwin->w_p_script_ctx[indir & PV_MASK] = new_script_ctx; |
694 | 2478 } |
681 | 2479 } |
14867
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
2480 |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
2481 /* |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
2482 * 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
|
2483 * "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
|
2484 * 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
|
2485 */ |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
2486 void |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
2487 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
|
2488 { |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
2489 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
|
2490 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
|
2491 |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
2492 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
|
2493 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
|
2494 else |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
2495 { |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
2496 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
|
2497 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
|
2498 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
|
2499 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
|
2500 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
|
2501 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
|
2502 } |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
2503 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
|
2504 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
|
2505 } |
681 | 2506 #endif |
2507 | |
19405
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2508 #if defined(FEAT_EVAL) |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2509 /* |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2510 * Apply the OptionSet autocommand. |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2511 */ |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2512 static void |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2513 apply_optionset_autocmd( |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2514 int opt_idx, |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2515 long opt_flags, |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2516 long oldval, |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2517 long oldval_g, |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2518 long newval, |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2519 char *errmsg) |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2520 { |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2521 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
|
2522 |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2523 // 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
|
2524 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
|
2525 return; |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2526 |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2527 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
|
2528 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
|
2529 oldval_g); |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2530 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
|
2531 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
|
2532 (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
|
2533 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
|
2534 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
|
2535 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
|
2536 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
|
2537 { |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2538 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
|
2539 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
|
2540 } |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2541 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
|
2542 { |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2543 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
|
2544 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
|
2545 } |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2546 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
|
2547 { |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2548 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
|
2549 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
|
2550 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
|
2551 } |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2552 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
|
2553 { |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2554 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
|
2555 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
|
2556 } |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2557 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
|
2558 NULL, FALSE, NULL); |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2559 reset_v_option_vars(); |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2560 } |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2561 #endif |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2562 |
7 | 2563 /* |
2564 * Set the value of a boolean option, and take care of side effects. | |
2565 * Returns NULL for success, or an error message for an error. | |
2566 */ | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15207
diff
changeset
|
2567 static char * |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2568 set_bool_option( |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2569 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
|
2570 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
|
2571 int value, // new value |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2572 int opt_flags) // OPT_LOCAL and/or OPT_GLOBAL |
7 | 2573 { |
2574 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
|
2575 #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
|
2576 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
|
2577 #endif |
7 | 2578 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2579 // Disallow changing some options from secure mode |
7 | 2580 if ((secure |
2581 #ifdef HAVE_SANDBOX | |
2582 || sandbox != 0 | |
2583 #endif | |
2584 ) && (options[opt_idx].flags & P_SECURE)) | |
2585 return e_secure; | |
2586 | |
17115
1c2d05cb4d1d
patch 8.1.1557: compiler warning for unused variables in tiny version
Bram Moolenaar <Bram@vim.org>
parents:
17085
diff
changeset
|
2587 #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
|
2588 // 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
|
2589 // 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
|
2590 // 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
|
2591 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
|
2592 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
|
2593 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
|
2594 #endif |
17085
620e9011b685
patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents:
17039
diff
changeset
|
2595 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2596 *(int *)varp = value; // set the new value |
7 | 2597 #ifdef FEAT_EVAL |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2598 // 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
|
2599 set_option_sctx_idx(opt_idx, opt_flags, current_sctx); |
7 | 2600 #endif |
2601 | |
634 | 2602 #ifdef FEAT_GUI |
2603 need_mouse_correct = TRUE; | |
2604 #endif | |
2605 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2606 // May set global value for local option. |
7 | 2607 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0) |
2608 *(int *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) = value; | |
2609 | |
2610 /* | |
2611 * Handle side effects of changing a bool option. | |
2612 */ | |
2613 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2614 // 'compatible' |
7 | 2615 if ((int *)varp == &p_cp) |
2616 compatible_set(); | |
2617 | |
9925
3fba3e8326a7
commit https://github.com/vim/vim/commit/920694c1b60fac8017b8909efcc24f189804a9bb
Christian Brabandt <cb@256bit.org>
parents:
9877
diff
changeset
|
2618 #ifdef FEAT_LANGMAP |
3fba3e8326a7
commit https://github.com/vim/vim/commit/920694c1b60fac8017b8909efcc24f189804a9bb
Christian Brabandt <cb@256bit.org>
parents:
9877
diff
changeset
|
2619 if ((int *)varp == &p_lrm) |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2620 // 'langremap' -> !'langnoremap' |
9925
3fba3e8326a7
commit https://github.com/vim/vim/commit/920694c1b60fac8017b8909efcc24f189804a9bb
Christian Brabandt <cb@256bit.org>
parents:
9877
diff
changeset
|
2621 p_lnr = !p_lrm; |
3fba3e8326a7
commit https://github.com/vim/vim/commit/920694c1b60fac8017b8909efcc24f189804a9bb
Christian Brabandt <cb@256bit.org>
parents:
9877
diff
changeset
|
2622 else if ((int *)varp == &p_lnr) |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2623 // 'langnoremap' -> !'langremap' |
9925
3fba3e8326a7
commit https://github.com/vim/vim/commit/920694c1b60fac8017b8909efcc24f189804a9bb
Christian Brabandt <cb@256bit.org>
parents:
9877
diff
changeset
|
2624 p_lrm = !p_lnr; |
3fba3e8326a7
commit https://github.com/vim/vim/commit/920694c1b60fac8017b8909efcc24f189804a9bb
Christian Brabandt <cb@256bit.org>
parents:
9877
diff
changeset
|
2625 #endif |
3fba3e8326a7
commit https://github.com/vim/vim/commit/920694c1b60fac8017b8909efcc24f189804a9bb
Christian Brabandt <cb@256bit.org>
parents:
9877
diff
changeset
|
2626 |
14846
10107703b9b2
patch 8.1.0435: cursorline highlight not removed in some situation
Christian Brabandt <cb@256bit.org>
parents:
14806
diff
changeset
|
2627 #ifdef FEAT_SYN_HL |
10107703b9b2
patch 8.1.0435: cursorline highlight not removed in some situation
Christian Brabandt <cb@256bit.org>
parents:
14806
diff
changeset
|
2628 else if ((int *)varp == &curwin->w_p_cul && !value && old_value) |
10107703b9b2
patch 8.1.0435: cursorline highlight not removed in some situation
Christian Brabandt <cb@256bit.org>
parents:
14806
diff
changeset
|
2629 reset_cursorline(); |
10107703b9b2
patch 8.1.0435: cursorline highlight not removed in some situation
Christian Brabandt <cb@256bit.org>
parents:
14806
diff
changeset
|
2630 #endif |
10107703b9b2
patch 8.1.0435: cursorline highlight not removed in some situation
Christian Brabandt <cb@256bit.org>
parents:
14806
diff
changeset
|
2631 |
3246 | 2632 #ifdef FEAT_PERSISTENT_UNDO |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2633 // 'undofile' |
3246 | 2634 else if ((int *)varp == &curbuf->b_p_udf || (int *)varp == &p_udf) |
2635 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2636 // Only take action when the option was set. When reset we do not |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2637 // delete the undo file, the option may be set again without making |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2638 // any changes in between. |
3894 | 2639 if (curbuf->b_p_udf || p_udf) |
2640 { | |
2641 char_u hash[UNDO_HASH_SIZE]; | |
2642 buf_T *save_curbuf = curbuf; | |
2643 | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
2644 FOR_ALL_BUFFERS(curbuf) |
3894 | 2645 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2646 // When 'undofile' is set globally: for every buffer, otherwise |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2647 // only for the current buffer: Try to read in the undofile, |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2648 // if one exists, the buffer wasn't changed and the buffer was |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2649 // loaded |
3894 | 2650 if ((curbuf == save_curbuf |
3246 | 2651 || (opt_flags & OPT_GLOBAL) || opt_flags == 0) |
3894 | 2652 && !curbufIsChanged() && curbuf->b_ml.ml_mfp != NULL) |
2653 { | |
2654 u_compute_hash(hash); | |
2655 u_read_undo(NULL, hash, curbuf->b_fname); | |
2656 } | |
2657 } | |
2658 curbuf = save_curbuf; | |
2659 } | |
3246 | 2660 } |
2661 #endif | |
2662 | |
7 | 2663 else if ((int *)varp == &curbuf->b_p_ro) |
2664 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2665 // when 'readonly' is reset globally, also reset readonlymode |
7 | 2666 if (!curbuf->b_p_ro && (opt_flags & OPT_LOCAL) == 0) |
2667 readonlymode = FALSE; | |
548 | 2668 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2669 // when 'readonly' is set may give W10 again |
548 | 2670 if (curbuf->b_p_ro) |
2671 curbuf->b_did_warn = FALSE; | |
2672 | |
7 | 2673 #ifdef FEAT_TITLE |
1805 | 2674 redraw_titles(); |
7 | 2675 #endif |
2676 } | |
2677 | |
2362
6cee3bf00495
When resetting 'mousehide' show the mouse pointer right away.
Bram Moolenaar <bram@vim.org>
parents:
2360
diff
changeset
|
2678 #ifdef FEAT_GUI |
6cee3bf00495
When resetting 'mousehide' show the mouse pointer right away.
Bram Moolenaar <bram@vim.org>
parents:
2360
diff
changeset
|
2679 else if ((int *)varp == &p_mh) |
6cee3bf00495
When resetting 'mousehide' show the mouse pointer right away.
Bram Moolenaar <bram@vim.org>
parents:
2360
diff
changeset
|
2680 { |
6cee3bf00495
When resetting 'mousehide' show the mouse pointer right away.
Bram Moolenaar <bram@vim.org>
parents:
2360
diff
changeset
|
2681 if (!p_mh) |
6cee3bf00495
When resetting 'mousehide' show the mouse pointer right away.
Bram Moolenaar <bram@vim.org>
parents:
2360
diff
changeset
|
2682 gui_mch_mousehide(FALSE); |
6cee3bf00495
When resetting 'mousehide' show the mouse pointer right away.
Bram Moolenaar <bram@vim.org>
parents:
2360
diff
changeset
|
2683 } |
6cee3bf00495
When resetting 'mousehide' show the mouse pointer right away.
Bram Moolenaar <bram@vim.org>
parents:
2360
diff
changeset
|
2684 #endif |
6cee3bf00495
When resetting 'mousehide' show the mouse pointer right away.
Bram Moolenaar <bram@vim.org>
parents:
2360
diff
changeset
|
2685 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2686 // when 'modifiable' is changed, redraw the window title |
7 | 2687 else if ((int *)varp == &curbuf->b_p_ma) |
1805 | 2688 { |
11866
be40c8a9240d
patch 8.0.0813: cannot use a terminal window while the job is running
Christian Brabandt <cb@256bit.org>
parents:
11814
diff
changeset
|
2689 # ifdef FEAT_TERMINAL |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2690 // Cannot set 'modifiable' when in Terminal mode. |
13429
1bb09ac80ef6
patch 8.0.1589: error for setting 'modifiable' when resetting it
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
2691 if (curbuf->b_p_ma && (term_in_normal_mode() || (bt_terminal(curbuf) |
1bb09ac80ef6
patch 8.0.1589: error for setting 'modifiable' when resetting it
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
2692 && curbuf->b_term != NULL && !term_is_finished(curbuf)))) |
11866
be40c8a9240d
patch 8.0.0813: cannot use a terminal window while the job is running
Christian Brabandt <cb@256bit.org>
parents:
11814
diff
changeset
|
2693 { |
be40c8a9240d
patch 8.0.0813: cannot use a terminal window while the job is running
Christian Brabandt <cb@256bit.org>
parents:
11814
diff
changeset
|
2694 curbuf->b_p_ma = FALSE; |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15207
diff
changeset
|
2695 return N_("E946: Cannot make a terminal with running job modifiable"); |
11866
be40c8a9240d
patch 8.0.0813: cannot use a terminal window while the job is running
Christian Brabandt <cb@256bit.org>
parents:
11814
diff
changeset
|
2696 } |
be40c8a9240d
patch 8.0.0813: cannot use a terminal window while the job is running
Christian Brabandt <cb@256bit.org>
parents:
11814
diff
changeset
|
2697 # endif |
be40c8a9240d
patch 8.0.0813: cannot use a terminal window while the job is running
Christian Brabandt <cb@256bit.org>
parents:
11814
diff
changeset
|
2698 # ifdef FEAT_TITLE |
1805 | 2699 redraw_titles(); |
11866
be40c8a9240d
patch 8.0.0813: cannot use a terminal window while the job is running
Christian Brabandt <cb@256bit.org>
parents:
11814
diff
changeset
|
2700 # endif |
be40c8a9240d
patch 8.0.0813: cannot use a terminal window while the job is running
Christian Brabandt <cb@256bit.org>
parents:
11814
diff
changeset
|
2701 } |
be40c8a9240d
patch 8.0.0813: cannot use a terminal window while the job is running
Christian Brabandt <cb@256bit.org>
parents:
11814
diff
changeset
|
2702 #ifdef FEAT_TITLE |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2703 // when 'endofline' is changed, redraw the window title |
7 | 2704 else if ((int *)varp == &curbuf->b_p_eol) |
1805 | 2705 { |
2706 redraw_titles(); | |
2707 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2708 // when 'fixeol' is changed, redraw the window title |
6933 | 2709 else if ((int *)varp == &curbuf->b_p_fixeol) |
2710 { | |
2711 redraw_titles(); | |
2712 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2713 // when 'bomb' is changed, redraw the window title and tab page text |
1352 | 2714 else if ((int *)varp == &curbuf->b_p_bomb) |
1805 | 2715 { |
2716 redraw_titles(); | |
2717 } | |
7 | 2718 #endif |
2719 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2720 // when 'bin' is set also set some other options |
7 | 2721 else if ((int *)varp == &curbuf->b_p_bin) |
2722 { | |
2723 set_options_bin(old_value, curbuf->b_p_bin, opt_flags); | |
2724 #ifdef FEAT_TITLE | |
1805 | 2725 redraw_titles(); |
7 | 2726 #endif |
2727 } | |
2728 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2729 // when 'buflisted' changes, trigger autocommands |
7 | 2730 else if ((int *)varp == &curbuf->b_p_bl && old_value != curbuf->b_p_bl) |
2731 { | |
2732 apply_autocmds(curbuf->b_p_bl ? EVENT_BUFADD : EVENT_BUFDELETE, | |
2733 NULL, NULL, TRUE, curbuf); | |
2734 } | |
2735 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2736 // when 'swf' is set, create swapfile, when reset remove swapfile |
7 | 2737 else if ((int *)varp == &curbuf->b_p_swf) |
2738 { | |
2739 if (curbuf->b_p_swf && p_uc) | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2740 ml_open_file(curbuf); // create the swap file |
7 | 2741 else |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2742 // no need to reset curbuf->b_may_swap, ml_open_file() will check |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2743 // buf->b_p_swf |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2744 mf_close_file(curbuf, TRUE); // remove the swap file |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2745 } |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2746 |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2747 // when 'terse' is set change 'shortmess' |
7 | 2748 else if ((int *)varp == &p_terse) |
2749 { | |
2750 char_u *p; | |
2751 | |
2752 p = vim_strchr(p_shm, SHM_SEARCH); | |
2753 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2754 // insert 's' in p_shm |
7 | 2755 if (p_terse && p == NULL) |
2756 { | |
2757 STRCPY(IObuff, p_shm); | |
2758 STRCAT(IObuff, "s"); | |
694 | 2759 set_string_option_direct((char_u *)"shm", -1, IObuff, OPT_FREE, 0); |
7 | 2760 } |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2761 // remove 's' from p_shm |
7 | 2762 else if (!p_terse && p != NULL) |
1622 | 2763 STRMOVE(p, p + 1); |
7 | 2764 } |
2765 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2766 // when 'paste' is set or reset also change other options |
7 | 2767 else if ((int *)varp == &p_paste) |
2768 { | |
2769 paste_option_changed(); | |
2770 } | |
2771 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2772 // when 'insertmode' is set from an autocommand need to do work here |
7 | 2773 else if ((int *)varp == &p_im) |
2774 { | |
2775 if (p_im) | |
2776 { | |
2777 if ((State & INSERT) == 0) | |
2778 need_start_insertmode = TRUE; | |
2779 stop_insert_mode = FALSE; | |
2780 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2781 // only reset if it was set previously |
9359
35b173e37dc6
commit https://github.com/vim/vim/commit/00672e1d3f59dbff91a18d418b2984be96f89ee5
Christian Brabandt <cb@256bit.org>
parents:
9228
diff
changeset
|
2782 else if (old_value) |
7 | 2783 { |
2784 need_start_insertmode = FALSE; | |
2785 stop_insert_mode = TRUE; | |
644 | 2786 if (restart_edit != 0 && mode_displayed) |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2787 clear_cmdline = TRUE; // remove "(insert)" |
7 | 2788 restart_edit = 0; |
2789 } | |
2790 } | |
2791 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2792 // when 'ignorecase' is set or reset and 'hlsearch' is set, redraw |
7 | 2793 else if ((int *)varp == &p_ic && p_hls) |
2794 { | |
744 | 2795 redraw_all_later(SOME_VALID); |
7 | 2796 } |
2797 | |
2798 #ifdef FEAT_SEARCH_EXTRA | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2799 // when 'hlsearch' is set or reset: reset no_hlsearch |
7 | 2800 else if ((int *)varp == &p_hls) |
2801 { | |
13792
0e9b2971d7c3
patch 8.0.1768: SET_NO_HLSEARCH() used in a wrong way
Christian Brabandt <cb@256bit.org>
parents:
13774
diff
changeset
|
2802 set_no_hlsearch(FALSE); |
7 | 2803 } |
2804 #endif | |
2805 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2806 // when 'scrollbind' is set: snapshot the current position to avoid a jump |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2807 // at the end of normal_cmd() |
7 | 2808 else if ((int *)varp == &curwin->w_p_scb) |
2809 { | |
2810 if (curwin->w_p_scb) | |
5157
7a6ce0c426fe
updated for version 7.4a.005
Bram Moolenaar <bram@vim.org>
parents:
5102
diff
changeset
|
2811 { |
7 | 2812 do_check_scrollbind(FALSE); |
5157
7a6ce0c426fe
updated for version 7.4a.005
Bram Moolenaar <bram@vim.org>
parents:
5102
diff
changeset
|
2813 curwin->w_scbind_pos = curwin->w_topline; |
7a6ce0c426fe
updated for version 7.4a.005
Bram Moolenaar <bram@vim.org>
parents:
5102
diff
changeset
|
2814 } |
7 | 2815 } |
2816 | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12469
diff
changeset
|
2817 #if defined(FEAT_QUICKFIX) |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2818 // There can be only one window with 'previewwindow' set. |
7 | 2819 else if ((int *)varp == &curwin->w_p_pvw) |
2820 { | |
2821 if (curwin->w_p_pvw) | |
2822 { | |
2823 win_T *win; | |
2824 | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
2825 FOR_ALL_WINDOWS(win) |
7 | 2826 if (win->w_p_pvw && win != curwin) |
2827 { | |
2828 curwin->w_p_pvw = FALSE; | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15207
diff
changeset
|
2829 return N_("E590: A preview window already exists"); |
7 | 2830 } |
2831 } | |
2832 } | |
2833 #endif | |
2834 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2835 // when 'textmode' is set or reset also change 'fileformat' |
7 | 2836 else if ((int *)varp == &curbuf->b_p_tx) |
2837 { | |
2838 set_fileformat(curbuf->b_p_tx ? EOL_DOS : EOL_UNIX, opt_flags); | |
2839 } | |
2840 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2841 // when 'textauto' is set or reset also change 'fileformats' |
7 | 2842 else if ((int *)varp == &p_ta) |
16162
cd5c83115ec6
patch 8.1.1086: too many curly braces
Bram Moolenaar <Bram@vim.org>
parents:
16082
diff
changeset
|
2843 { |
7 | 2844 set_string_option_direct((char_u *)"ffs", -1, |
2845 p_ta ? (char_u *)DFLT_FFS_VIM : (char_u *)"", | |
694 | 2846 OPT_FREE | opt_flags, 0); |
16162
cd5c83115ec6
patch 8.1.1086: too many curly braces
Bram Moolenaar <Bram@vim.org>
parents:
16082
diff
changeset
|
2847 } |
7 | 2848 |
2849 /* | |
2850 * When 'lisp' option changes include/exclude '-' in | |
2851 * keyword characters. | |
2852 */ | |
2853 #ifdef FEAT_LISP | |
2854 else if (varp == (char_u *)&(curbuf->b_p_lisp)) | |
2855 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2856 (void)buf_init_chartab(curbuf, FALSE); // ignore errors |
7 | 2857 } |
2858 #endif | |
2859 | |
2860 #ifdef FEAT_TITLE | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2861 // when 'title' changed, may need to change the title; same for 'icon' |
14087
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14057
diff
changeset
|
2862 else if ((int *)varp == &p_title || (int *)varp == &p_icon) |
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14057
diff
changeset
|
2863 { |
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14057
diff
changeset
|
2864 did_set_title(); |
7 | 2865 } |
2866 #endif | |
2867 | |
2868 else if ((int *)varp == &curbuf->b_changed) | |
2869 { | |
2870 if (!value) | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2871 save_file_ff(curbuf); // Buffer is unchanged |
7 | 2872 #ifdef FEAT_TITLE |
1805 | 2873 redraw_titles(); |
7 | 2874 #endif |
2875 modified_was_set = value; | |
2876 } | |
2877 | |
2878 #ifdef BACKSLASH_IN_FILENAME | |
2879 else if ((int *)varp == &p_ssl) | |
2880 { | |
2881 if (p_ssl) | |
2882 { | |
2883 psepc = '/'; | |
2884 psepcN = '\\'; | |
2885 pseps[0] = '/'; | |
2886 } | |
2887 else | |
2888 { | |
2889 psepc = '\\'; | |
2890 psepcN = '/'; | |
2891 pseps[0] = '\\'; | |
2892 } | |
2893 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2894 // need to adjust the file name arguments and buffer names. |
7 | 2895 buflist_slash_adjust(); |
2896 alist_slash_adjust(); | |
2897 # ifdef FEAT_EVAL | |
2898 scriptnames_slash_adjust(); | |
2899 # endif | |
2900 } | |
2901 #endif | |
2902 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2903 // If 'wrap' is set, set w_leftcol to zero. |
7 | 2904 else if ((int *)varp == &curwin->w_p_wrap) |
2905 { | |
2906 if (curwin->w_p_wrap) | |
2907 curwin->w_leftcol = 0; | |
2908 } | |
2909 | |
2910 else if ((int *)varp == &p_ea) | |
2911 { | |
2912 if (p_ea && !old_value) | |
2913 win_equal(curwin, FALSE, 0); | |
2914 } | |
2915 | |
2916 else if ((int *)varp == &p_wiv) | |
2917 { | |
2918 /* | |
2919 * When 'weirdinvert' changed, set/reset 't_xs'. | |
2920 * Then set 'weirdinvert' according to value of 't_xs'. | |
2921 */ | |
2922 if (p_wiv && !old_value) | |
2923 T_XS = (char_u *)"y"; | |
2924 else if (!p_wiv && old_value) | |
2925 T_XS = empty_option; | |
2926 p_wiv = (*T_XS != NUL); | |
2927 } | |
2928 | |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
12865
diff
changeset
|
2929 #ifdef FEAT_BEVAL_GUI |
7 | 2930 else if ((int *)varp == &p_beval) |
2931 { | |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12824
diff
changeset
|
2932 if (!balloonEvalForTerm) |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12824
diff
changeset
|
2933 { |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12824
diff
changeset
|
2934 if (p_beval && !old_value) |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12824
diff
changeset
|
2935 gui_mch_enable_beval_area(balloonEval); |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12824
diff
changeset
|
2936 else if (!p_beval && old_value) |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12824
diff
changeset
|
2937 gui_mch_disable_beval_area(balloonEval); |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12824
diff
changeset
|
2938 } |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12824
diff
changeset
|
2939 } |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12824
diff
changeset
|
2940 #endif |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
12865
diff
changeset
|
2941 #ifdef FEAT_BEVAL_TERM |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12824
diff
changeset
|
2942 else if ((int *)varp == &p_bevalterm) |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12824
diff
changeset
|
2943 { |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12824
diff
changeset
|
2944 mch_bevalterm_changed(); |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12824
diff
changeset
|
2945 } |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
12865
diff
changeset
|
2946 #endif |
820 | 2947 |
2948 #ifdef FEAT_AUTOCHDIR | |
7 | 2949 else if ((int *)varp == &p_acd) |
2950 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2951 // Change directories when the 'acd' option is set now. |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13435
diff
changeset
|
2952 DO_AUTOCHDIR; |
7 | 2953 } |
2954 #endif | |
2955 | |
2956 #ifdef FEAT_DIFF | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2957 // 'diff' |
7 | 2958 else if ((int *)varp == &curwin->w_p_diff) |
2959 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2960 // May add or remove the buffer from the list of diff buffers. |
16 | 2961 diff_buf_adjust(curwin); |
2962 # ifdef FEAT_FOLDING | |
7 | 2963 if (foldmethodIsDiff(curwin)) |
2964 foldUpdateAll(curwin); | |
16 | 2965 # endif |
7 | 2966 } |
2967 #endif | |
2968 | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13361
diff
changeset
|
2969 #ifdef HAVE_INPUT_METHOD |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2970 // 'imdisable' |
7 | 2971 else if ((int *)varp == &p_imdisable) |
2972 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2973 // Only de-activate it here, it will be enabled when changing mode. |
7 | 2974 if (p_imdisable) |
2975 im_set_active(FALSE); | |
3129 | 2976 else if (State & INSERT) |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2977 // When the option is set from an autocommand, it may need to take |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2978 // effect right away. |
3129 | 2979 im_set_active(curbuf->b_p_iminsert == B_IMODE_IM); |
7 | 2980 } |
2981 #endif | |
2982 | |
744 | 2983 #ifdef FEAT_SPELL |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2984 // 'spell' |
258 | 2985 else if ((int *)varp == &curwin->w_p_spell) |
2986 { | |
2987 if (curwin->w_p_spell) | |
2988 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15207
diff
changeset
|
2989 char *errmsg = did_set_spelllang(curwin); |
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15207
diff
changeset
|
2990 |
258 | 2991 if (errmsg != NULL) |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15207
diff
changeset
|
2992 emsg(_(errmsg)); |
258 | 2993 } |
2994 } | |
2995 #endif | |
2996 | |
7 | 2997 #ifdef FEAT_ARABIC |
2998 if ((int *)varp == &curwin->w_p_arab) | |
2999 { | |
3000 if (curwin->w_p_arab) | |
3001 { | |
3002 /* | |
3003 * 'arabic' is set, handle various sub-settings. | |
3004 */ | |
3005 if (!p_tbidi) | |
3006 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3007 // set rightleft mode |
7 | 3008 if (!curwin->w_p_rl) |
3009 { | |
3010 curwin->w_p_rl = TRUE; | |
3011 changed_window_setting(); | |
3012 } | |
3013 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3014 // Enable Arabic shaping (major part of what Arabic requires) |
7 | 3015 if (!p_arshape) |
3016 { | |
3017 p_arshape = TRUE; | |
3018 redraw_later_clear(); | |
3019 } | |
3020 } | |
3021 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3022 // Arabic requires a utf-8 encoding, inform the user if its not |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3023 // set. |
7 | 3024 if (STRCMP(p_enc, "utf-8") != 0) |
16 | 3025 { |
1848 | 3026 static char *w_arabic = N_("W17: Arabic requires UTF-8, do ':set encoding=utf-8'"); |
3027 | |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
3028 msg_source(HL_ATTR(HLF_W)); |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
3029 msg_attr(_(w_arabic), HL_ATTR(HLF_W)); |
1848 | 3030 #ifdef FEAT_EVAL |
3031 set_vim_var_string(VV_WARNINGMSG, (char_u *)_(w_arabic), -1); | |
3032 #endif | |
16 | 3033 } |
7 | 3034 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3035 // set 'delcombine' |
7 | 3036 p_deco = TRUE; |
3037 | |
3038 # ifdef FEAT_KEYMAP | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3039 // Force-set the necessary keymap for arabic |
7 | 3040 set_option_value((char_u *)"keymap", 0L, (char_u *)"arabic", |
3041 OPT_LOCAL); | |
3042 # endif | |
3043 } | |
3044 else | |
3045 { | |
3046 /* | |
3047 * 'arabic' is reset, handle various sub-settings. | |
3048 */ | |
3049 if (!p_tbidi) | |
3050 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3051 // reset rightleft mode |
7 | 3052 if (curwin->w_p_rl) |
3053 { | |
3054 curwin->w_p_rl = FALSE; | |
3055 changed_window_setting(); | |
3056 } | |
3057 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3058 // 'arabicshape' isn't reset, it is a global option and |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3059 // another window may still need it "on". |
7 | 3060 } |
3061 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3062 // 'delcombine' isn't reset, it is a global option and another |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3063 // window may still want it "on". |
7 | 3064 |
3065 # ifdef FEAT_KEYMAP | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3066 // Revert to the default keymap |
7 | 3067 curbuf->b_p_iminsert = B_IMODE_NONE; |
3068 curbuf->b_p_imsearch = B_IMODE_USE_INSERT; | |
3069 # endif | |
3070 } | |
3443 | 3071 } |
3072 | |
1958 | 3073 #endif |
3074 | |
17827
6de5558c5242
patch 8.1.1910: redrawing too much when toggling 'relativenumber'
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
3075 #if defined(FEAT_SIGNS) && defined(FEAT_GUI) |
6de5558c5242
patch 8.1.1910: redrawing too much when toggling 'relativenumber'
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
3076 else if (((int *)varp == &curwin->w_p_nu |
6de5558c5242
patch 8.1.1910: redrawing too much when toggling 'relativenumber'
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
3077 || (int *)varp == &curwin->w_p_rnu) |
6de5558c5242
patch 8.1.1910: redrawing too much when toggling 'relativenumber'
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
3078 && gui.in_use |
6de5558c5242
patch 8.1.1910: redrawing too much when toggling 'relativenumber'
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
3079 && (*curwin->w_p_scl == 'n' && *(curwin->w_p_scl + 1) == 'u') |
6de5558c5242
patch 8.1.1910: redrawing too much when toggling 'relativenumber'
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
3080 && curbuf->b_signlist != NULL) |
6de5558c5242
patch 8.1.1910: redrawing too much when toggling 'relativenumber'
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
3081 { |
6de5558c5242
patch 8.1.1910: redrawing too much when toggling 'relativenumber'
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
3082 // If the 'number' or 'relativenumber' options are modified and |
6de5558c5242
patch 8.1.1910: redrawing too much when toggling 'relativenumber'
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
3083 // 'signcolumn' is set to 'number', then clear the screen for a full |
6de5558c5242
patch 8.1.1910: redrawing too much when toggling 'relativenumber'
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
3084 // refresh. Otherwise the sign icons are not displayed properly in the |
6de5558c5242
patch 8.1.1910: redrawing too much when toggling 'relativenumber'
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
3085 // number column. If the 'number' option is set and only the |
6de5558c5242
patch 8.1.1910: redrawing too much when toggling 'relativenumber'
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
3086 // 'relativenumber' option is toggled, then don't refresh the screen |
6de5558c5242
patch 8.1.1910: redrawing too much when toggling 'relativenumber'
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
3087 // (optimization). |
6de5558c5242
patch 8.1.1910: redrawing too much when toggling 'relativenumber'
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
3088 if (!(curwin->w_p_nu && ((int *)varp == &curwin->w_p_rnu))) |
6de5558c5242
patch 8.1.1910: redrawing too much when toggling 'relativenumber'
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
3089 redraw_all_later(CLEAR); |
6de5558c5242
patch 8.1.1910: redrawing too much when toggling 'relativenumber'
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
3090 } |
6de5558c5242
patch 8.1.1910: redrawing too much when toggling 'relativenumber'
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
3091 #endif |
6de5558c5242
patch 8.1.1910: redrawing too much when toggling 'relativenumber'
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
3092 |
9027
773d627cac0b
commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents:
8969
diff
changeset
|
3093 #ifdef FEAT_TERMGUICOLORS |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3094 // 'termguicolors' |
9027
773d627cac0b
commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents:
8969
diff
changeset
|
3095 else if ((int *)varp == &p_tgc) |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8941
diff
changeset
|
3096 { |
13314
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
3097 # ifdef FEAT_VTP |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3098 // Do not turn on 'tgc' when 24-bit colors are not supported. |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
3099 if ( |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
3100 # ifdef VIMDLL |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
3101 !gui.in_use && !gui.starting && |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
3102 # endif |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
3103 !has_vtp_working()) |
13314
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
3104 { |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
3105 p_tgc = 0; |
15725
a3e2e7948ee4
patch 8.1.0870: Vim doesn't use the new ConPTY support in Windows 10
Bram Moolenaar <Bram@vim.org>
parents:
15713
diff
changeset
|
3106 return N_("E954: 24-bit colors are not supported on this environment"); |
13314
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
3107 } |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
3108 if (is_term_win32()) |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
3109 swap_tcap(); |
13314
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
3110 # endif |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8941
diff
changeset
|
3111 # ifdef FEAT_GUI |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8941
diff
changeset
|
3112 if (!gui.in_use && !gui.starting) |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8941
diff
changeset
|
3113 # endif |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8941
diff
changeset
|
3114 highlight_gui_started(); |
13314
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
3115 # ifdef FEAT_VTP |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3116 // reset t_Co |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
3117 if (is_term_win32()) |
14212
2bebc49116fd
patch 8.1.0123: MS-Windows: colors are wrong after setting 'notgc'
Christian Brabandt <cb@256bit.org>
parents:
14194
diff
changeset
|
3118 { |
2bebc49116fd
patch 8.1.0123: MS-Windows: colors are wrong after setting 'notgc'
Christian Brabandt <cb@256bit.org>
parents:
14194
diff
changeset
|
3119 control_console_color_rgb(); |
13314
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
3120 set_termname(T_NAME); |
14212
2bebc49116fd
patch 8.1.0123: MS-Windows: colors are wrong after setting 'notgc'
Christian Brabandt <cb@256bit.org>
parents:
14194
diff
changeset
|
3121 init_highlight(TRUE, FALSE); |
2bebc49116fd
patch 8.1.0123: MS-Windows: colors are wrong after setting 'notgc'
Christian Brabandt <cb@256bit.org>
parents:
14194
diff
changeset
|
3122 } |
13314
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
3123 # endif |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8941
diff
changeset
|
3124 } |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8941
diff
changeset
|
3125 #endif |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8941
diff
changeset
|
3126 |
7 | 3127 /* |
3128 * End of handling side effects for bool options. | |
3129 */ | |
3130 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3131 // after handling side effects, call autocommand |
6935 | 3132 |
7 | 3133 options[opt_idx].flags |= P_WAS_SET; |
3134 | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13361
diff
changeset
|
3135 #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
|
3136 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
|
3137 (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
|
3138 (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
|
3139 (long)(value ? TRUE : FALSE), NULL); |
6935 | 3140 #endif |
3141 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3142 comp_col(); // in case 'ruler' or 'showcmd' changed |
3443 | 3143 if (curwin->w_curswant != MAXCOL |
6669 | 3144 && (options[opt_idx].flags & (P_CURSWANT | P_RALL)) != 0) |
3443 | 3145 curwin->w_set_curswant = TRUE; |
7 | 3146 check_redraw(options[opt_idx].flags); |
3147 | |
3148 return NULL; | |
3149 } | |
3150 | |
3151 /* | |
3152 * Set the value of a number option, and take care of side effects. | |
3153 * Returns NULL for success, or an error message for an error. | |
3154 */ | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15207
diff
changeset
|
3155 static char * |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3156 set_num_option( |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3157 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
|
3158 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
|
3159 long value, // new value |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3160 char *errbuf, // buffer for error messages |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3161 size_t errbuflen, // length of "errbuf" |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3162 int opt_flags) // OPT_LOCAL, OPT_GLOBAL and |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3163 // OPT_MODELINE |
7 | 3164 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15207
diff
changeset
|
3165 char *errmsg = NULL; |
7 | 3166 long old_value = *(long *)varp; |
17115
1c2d05cb4d1d
patch 8.1.1557: compiler warning for unused variables in tiny version
Bram Moolenaar <Bram@vim.org>
parents:
17085
diff
changeset
|
3167 #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
|
3168 long old_global_value = 0; // only used when setting a local and |
620e9011b685
patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents:
17039
diff
changeset
|
3169 // global option |
17115
1c2d05cb4d1d
patch 8.1.1557: compiler warning for unused variables in tiny version
Bram Moolenaar <Bram@vim.org>
parents:
17085
diff
changeset
|
3170 #endif |
17085
620e9011b685
patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents:
17039
diff
changeset
|
3171 long old_Rows = Rows; // remember old Rows |
620e9011b685
patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents:
17039
diff
changeset
|
3172 long old_Columns = Columns; // remember old Columns |
7 | 3173 long *pp = (long *)varp; |
3174 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3175 // Disallow changing some options from secure mode. |
634 | 3176 if ((secure |
3177 #ifdef HAVE_SANDBOX | |
3178 || sandbox != 0 | |
3179 #endif | |
3180 ) && (options[opt_idx].flags & P_SECURE)) | |
3181 return e_secure; | |
7 | 3182 |
17115
1c2d05cb4d1d
patch 8.1.1557: compiler warning for unused variables in tiny version
Bram Moolenaar <Bram@vim.org>
parents:
17085
diff
changeset
|
3183 #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
|
3184 // Save the global value before changing anything. This is needed as for |
19195
2ef19eed524a
patch 8.2.0156: various typos in source files and tests
Bram Moolenaar <Bram@vim.org>
parents:
19137
diff
changeset
|
3185 // a global-only option setting the "local value" in fact sets the global |
17085
620e9011b685
patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents:
17039
diff
changeset
|
3186 // 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
|
3187 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0) |
17115
1c2d05cb4d1d
patch 8.1.1557: compiler warning for unused variables in tiny version
Bram Moolenaar <Bram@vim.org>
parents:
17085
diff
changeset
|
3188 old_global_value = *(long *)get_varp_scope(&(options[opt_idx]), |
1c2d05cb4d1d
patch 8.1.1557: compiler warning for unused variables in tiny version
Bram Moolenaar <Bram@vim.org>
parents:
17085
diff
changeset
|
3189 OPT_GLOBAL); |
1c2d05cb4d1d
patch 8.1.1557: compiler warning for unused variables in tiny version
Bram Moolenaar <Bram@vim.org>
parents:
17085
diff
changeset
|
3190 #endif |
17085
620e9011b685
patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents:
17039
diff
changeset
|
3191 |
7 | 3192 *pp = value; |
3193 #ifdef FEAT_EVAL | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3194 // 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
|
3195 set_option_sctx_idx(opt_idx, opt_flags, current_sctx); |
7 | 3196 #endif |
634 | 3197 #ifdef FEAT_GUI |
3198 need_mouse_correct = TRUE; | |
3199 #endif | |
7 | 3200 |
3740 | 3201 if (curbuf->b_p_sw < 0) |
7 | 3202 { |
3203 errmsg = e_positive; | |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
3204 #ifdef FEAT_VARTABS |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
3205 // Use the first 'vartabstop' value, or 'tabstop' if vts isn't in use. |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
3206 curbuf->b_p_sw = tabstop_count(curbuf->b_p_vts_array) > 0 |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
3207 ? tabstop_first(curbuf->b_p_vts_array) |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
3208 : curbuf->b_p_ts; |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
3209 #else |
7 | 3210 curbuf->b_p_sw = curbuf->b_p_ts; |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
3211 #endif |
7 | 3212 } |
3213 | |
3214 /* | |
3215 * Number options that need some action when changed | |
3216 */ | |
3217 if (pp == &p_wh || pp == &p_hh) | |
3218 { | |
14057
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14029
diff
changeset
|
3219 // 'winheight' and 'helpheight' |
7 | 3220 if (p_wh < 1) |
3221 { | |
3222 errmsg = e_positive; | |
3223 p_wh = 1; | |
3224 } | |
3225 if (p_wmh > p_wh) | |
3226 { | |
3227 errmsg = e_winheight; | |
3228 p_wh = p_wmh; | |
3229 } | |
3230 if (p_hh < 0) | |
3231 { | |
3232 errmsg = e_positive; | |
3233 p_hh = 0; | |
3234 } | |
3235 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3236 // Change window height NOW |
10357
59d01e335858
commit https://github.com/vim/vim/commit/459ca563128f2edb7e3bb190090bbb755a56dd55
Christian Brabandt <cb@256bit.org>
parents:
10340
diff
changeset
|
3237 if (!ONE_WINDOW) |
7 | 3238 { |
3239 if (pp == &p_wh && curwin->w_height < p_wh) | |
3240 win_setheight((int)p_wh); | |
3241 if (pp == &p_hh && curbuf->b_help && curwin->w_height < p_hh) | |
3242 win_setheight((int)p_hh); | |
3243 } | |
3244 } | |
3245 else if (pp == &p_wmh) | |
3246 { | |
14057
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14029
diff
changeset
|
3247 // 'winminheight' |
7 | 3248 if (p_wmh < 0) |
3249 { | |
3250 errmsg = e_positive; | |
3251 p_wmh = 0; | |
3252 } | |
3253 if (p_wmh > p_wh) | |
3254 { | |
3255 errmsg = e_winheight; | |
3256 p_wmh = p_wh; | |
3257 } | |
3258 win_setminheight(); | |
3259 } | |
13 | 3260 else if (pp == &p_wiw) |
7 | 3261 { |
14057
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14029
diff
changeset
|
3262 // 'winwidth' |
7 | 3263 if (p_wiw < 1) |
3264 { | |
3265 errmsg = e_positive; | |
3266 p_wiw = 1; | |
3267 } | |
3268 if (p_wmw > p_wiw) | |
3269 { | |
3270 errmsg = e_winwidth; | |
3271 p_wiw = p_wmw; | |
3272 } | |
3273 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3274 // Change window width NOW |
10357
59d01e335858
commit https://github.com/vim/vim/commit/459ca563128f2edb7e3bb190090bbb755a56dd55
Christian Brabandt <cb@256bit.org>
parents:
10340
diff
changeset
|
3275 if (!ONE_WINDOW && curwin->w_width < p_wiw) |
7 | 3276 win_setwidth((int)p_wiw); |
3277 } | |
3278 else if (pp == &p_wmw) | |
3279 { | |
14057
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14029
diff
changeset
|
3280 // 'winminwidth' |
7 | 3281 if (p_wmw < 0) |
3282 { | |
3283 errmsg = e_positive; | |
3284 p_wmw = 0; | |
3285 } | |
3286 if (p_wmw > p_wiw) | |
3287 { | |
3288 errmsg = e_winwidth; | |
3289 p_wmw = p_wiw; | |
3290 } | |
14057
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14029
diff
changeset
|
3291 win_setminwidth(); |
7 | 3292 } |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12469
diff
changeset
|
3293 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3294 // (re)set last window status line |
7 | 3295 else if (pp == &p_ls) |
3296 { | |
3297 last_status(FALSE); | |
3298 } | |
670 | 3299 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3300 // (re)set tab page line |
677 | 3301 else if (pp == &p_stal) |
670 | 3302 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3303 shell_new_rows(); // recompute window positions and heights |
670 | 3304 } |
7 | 3305 |
3306 #ifdef FEAT_GUI | |
3307 else if (pp == &p_linespace) | |
3308 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3309 // Recompute gui.char_height and resize the Vim window to keep the |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3310 // same number of lines. |
444 | 3311 if (gui.in_use && gui_mch_adjust_charheight() == OK) |
813 | 3312 gui_set_shellsize(FALSE, FALSE, RESIZE_VERT); |
7 | 3313 } |
3314 #endif | |
3315 | |
3316 #ifdef FEAT_FOLDING | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3317 // 'foldlevel' |
7 | 3318 else if (pp == &curwin->w_p_fdl) |
3319 { | |
3320 if (curwin->w_p_fdl < 0) | |
3321 curwin->w_p_fdl = 0; | |
3322 newFoldLevel(); | |
3323 } | |
3324 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3325 // 'foldminlines' |
7 | 3326 else if (pp == &curwin->w_p_fml) |
3327 { | |
3328 foldUpdateAll(curwin); | |
3329 } | |
3330 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3331 // 'foldnestmax' |
7 | 3332 else if (pp == &curwin->w_p_fdn) |
3333 { | |
3334 if (foldmethodIsSyntax(curwin) || foldmethodIsIndent(curwin)) | |
3335 foldUpdateAll(curwin); | |
3336 } | |
3337 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3338 // 'foldcolumn' |
7 | 3339 else if (pp == &curwin->w_p_fdc) |
3340 { | |
3341 if (curwin->w_p_fdc < 0) | |
3342 { | |
3343 errmsg = e_positive; | |
3344 curwin->w_p_fdc = 0; | |
3345 } | |
3346 else if (curwin->w_p_fdc > 12) | |
3347 { | |
3348 errmsg = e_invarg; | |
3349 curwin->w_p_fdc = 12; | |
3350 } | |
3351 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3352 #endif // FEAT_FOLDING |
5438 | 3353 |
3354 #if defined(FEAT_FOLDING) || defined(FEAT_CINDENT) | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3355 // 'shiftwidth' or 'tabstop' |
7 | 3356 else if (pp == &curbuf->b_p_sw || pp == &curbuf->b_p_ts) |
3357 { | |
5438 | 3358 # ifdef FEAT_FOLDING |
7 | 3359 if (foldmethodIsIndent(curwin)) |
3360 foldUpdateAll(curwin); | |
5438 | 3361 # endif |
3362 # ifdef FEAT_CINDENT | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3363 // When 'shiftwidth' changes, or it's zero and 'tabstop' changes: |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3364 // parse 'cinoptions'. |
5438 | 3365 if (pp == &curbuf->b_p_sw || curbuf->b_p_sw == 0) |
3366 parse_cino(curbuf); | |
3367 # endif | |
3368 } | |
3369 #endif | |
7 | 3370 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3371 // 'maxcombine' |
714 | 3372 else if (pp == &p_mco) |
3373 { | |
3374 if (p_mco > MAX_MCO) | |
3375 p_mco = MAX_MCO; | |
3376 else if (p_mco < 0) | |
3377 p_mco = 0; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3378 screenclear(); // will re-allocate the screen |
714 | 3379 } |
3380 | |
7 | 3381 else if (pp == &curbuf->b_p_iminsert) |
3382 { | |
3383 if (curbuf->b_p_iminsert < 0 || curbuf->b_p_iminsert > B_IMODE_LAST) | |
3384 { | |
3385 errmsg = e_invarg; | |
3386 curbuf->b_p_iminsert = B_IMODE_NONE; | |
3387 } | |
3388 p_iminsert = curbuf->b_p_iminsert; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3389 if (termcap_active) // don't do this in the alternate screen |
7 | 3390 showmode(); |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12469
diff
changeset
|
3391 #if defined(FEAT_KEYMAP) |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3392 // Show/unshow value of 'keymap' in status lines. |
7 | 3393 status_redraw_curbuf(); |
3394 #endif | |
3395 } | |
3396 | |
12293
1ff5e5dfa9b0
patch 8.0.1026: GTK on-the-spot input has problems
Christian Brabandt <cb@256bit.org>
parents:
12259
diff
changeset
|
3397 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK) |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3398 // 'imstyle' |
12293
1ff5e5dfa9b0
patch 8.0.1026: GTK on-the-spot input has problems
Christian Brabandt <cb@256bit.org>
parents:
12259
diff
changeset
|
3399 else if (pp == &p_imst) |
1ff5e5dfa9b0
patch 8.0.1026: GTK on-the-spot input has problems
Christian Brabandt <cb@256bit.org>
parents:
12259
diff
changeset
|
3400 { |
1ff5e5dfa9b0
patch 8.0.1026: GTK on-the-spot input has problems
Christian Brabandt <cb@256bit.org>
parents:
12259
diff
changeset
|
3401 if (p_imst != IM_ON_THE_SPOT && p_imst != IM_OVER_THE_SPOT) |
1ff5e5dfa9b0
patch 8.0.1026: GTK on-the-spot input has problems
Christian Brabandt <cb@256bit.org>
parents:
12259
diff
changeset
|
3402 errmsg = e_invarg; |
1ff5e5dfa9b0
patch 8.0.1026: GTK on-the-spot input has problems
Christian Brabandt <cb@256bit.org>
parents:
12259
diff
changeset
|
3403 } |
1ff5e5dfa9b0
patch 8.0.1026: GTK on-the-spot input has problems
Christian Brabandt <cb@256bit.org>
parents:
12259
diff
changeset
|
3404 #endif |
1ff5e5dfa9b0
patch 8.0.1026: GTK on-the-spot input has problems
Christian Brabandt <cb@256bit.org>
parents:
12259
diff
changeset
|
3405 |
164 | 3406 else if (pp == &p_window) |
3407 { | |
3408 if (p_window < 1) | |
3409 p_window = 1; | |
3410 else if (p_window >= Rows) | |
3411 p_window = Rows - 1; | |
3412 } | |
3413 | |
7 | 3414 else if (pp == &curbuf->b_p_imsearch) |
3415 { | |
3416 if (curbuf->b_p_imsearch < -1 || curbuf->b_p_imsearch > B_IMODE_LAST) | |
3417 { | |
3418 errmsg = e_invarg; | |
3419 curbuf->b_p_imsearch = B_IMODE_NONE; | |
3420 } | |
3421 p_imsearch = curbuf->b_p_imsearch; | |
3422 } | |
3423 | |
3424 #ifdef FEAT_TITLE | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3425 // if 'titlelen' has changed, redraw the title |
7 | 3426 else if (pp == &p_titlelen) |
3427 { | |
3428 if (p_titlelen < 0) | |
3429 { | |
3430 errmsg = e_positive; | |
3431 p_titlelen = 85; | |
3432 } | |
3433 if (starting != NO_SCREEN && old_value != p_titlelen) | |
3434 need_maketitle = TRUE; | |
3435 } | |
3436 #endif | |
3437 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3438 // if p_ch changed value, change the command line height |
7 | 3439 else if (pp == &p_ch) |
3440 { | |
3441 if (p_ch < 1) | |
3442 { | |
3443 errmsg = e_positive; | |
3444 p_ch = 1; | |
3445 } | |
1404 | 3446 if (p_ch > Rows - min_rows() + 1) |
3447 p_ch = Rows - min_rows() + 1; | |
7 | 3448 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3449 // Only compute the new window layout when startup has been |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3450 // completed. Otherwise the frame sizes may be wrong. |
7 | 3451 if (p_ch != old_value && full_screen |
3452 #ifdef FEAT_GUI | |
3453 && !gui.starting | |
3454 #endif | |
3455 ) | |
824 | 3456 command_height(); |
7 | 3457 } |
3458 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3459 // when 'updatecount' changes from zero to non-zero, open swap files |
7 | 3460 else if (pp == &p_uc) |
3461 { | |
3462 if (p_uc < 0) | |
3463 { | |
3464 errmsg = e_positive; | |
3465 p_uc = 100; | |
3466 } | |
3467 if (p_uc && !old_value) | |
3468 ml_open_files(); | |
3469 } | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2248
diff
changeset
|
3470 #ifdef FEAT_CONCEAL |
2378
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2362
diff
changeset
|
3471 else if (pp == &curwin->w_p_cole) |
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2362
diff
changeset
|
3472 { |
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2362
diff
changeset
|
3473 if (curwin->w_p_cole < 0) |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2248
diff
changeset
|
3474 { |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2248
diff
changeset
|
3475 errmsg = e_positive; |
2378
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2362
diff
changeset
|
3476 curwin->w_p_cole = 0; |
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2362
diff
changeset
|
3477 } |
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2362
diff
changeset
|
3478 else if (curwin->w_p_cole > 3) |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2248
diff
changeset
|
3479 { |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2248
diff
changeset
|
3480 errmsg = e_invarg; |
2378
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2362
diff
changeset
|
3481 curwin->w_p_cole = 3; |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2248
diff
changeset
|
3482 } |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2248
diff
changeset
|
3483 } |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2248
diff
changeset
|
3484 #endif |
16 | 3485 #ifdef MZSCHEME_GUI_THREADS |
14 | 3486 else if (pp == &p_mzq) |
3487 mzvim_reset_timer(); | |
3488 #endif | |
7 | 3489 |
10722
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10708
diff
changeset
|
3490 #if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3491 // 'pyxversion' |
10722
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10708
diff
changeset
|
3492 else if (pp == &p_pyx) |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10708
diff
changeset
|
3493 { |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10708
diff
changeset
|
3494 if (p_pyx != 0 && p_pyx != 2 && p_pyx != 3) |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10708
diff
changeset
|
3495 errmsg = e_invarg; |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10708
diff
changeset
|
3496 } |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10708
diff
changeset
|
3497 #endif |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10708
diff
changeset
|
3498 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3499 // sync undo before 'undolevels' changes |
7 | 3500 else if (pp == &p_ul) |
3501 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3502 // use the old value, otherwise u_sync() may not work properly |
7 | 3503 p_ul = old_value; |
825 | 3504 u_sync(TRUE); |
7 | 3505 p_ul = value; |
3506 } | |
5446 | 3507 else if (pp == &curbuf->b_p_ul) |
3508 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3509 // use the old value, otherwise u_sync() may not work properly |
5446 | 3510 curbuf->b_p_ul = old_value; |
3511 u_sync(TRUE); | |
3512 curbuf->b_p_ul = value; | |
3513 } | |
7 | 3514 |
13 | 3515 #ifdef FEAT_LINEBREAK |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3516 // 'numberwidth' must be positive |
13 | 3517 else if (pp == &curwin->w_p_nuw) |
3518 { | |
3519 if (curwin->w_p_nuw < 1) | |
3520 { | |
3521 errmsg = e_positive; | |
3522 curwin->w_p_nuw = 1; | |
3523 } | |
17229
f1c7b7a4d9e4
patch 8.1.1614: 'numberwidth' can only go up to 10
Bram Moolenaar <Bram@vim.org>
parents:
17176
diff
changeset
|
3524 if (curwin->w_p_nuw > 20) |
13 | 3525 { |
3526 errmsg = e_invarg; | |
17229
f1c7b7a4d9e4
patch 8.1.1614: 'numberwidth' can only go up to 10
Bram Moolenaar <Bram@vim.org>
parents:
17176
diff
changeset
|
3527 curwin->w_p_nuw = 20; |
13 | 3528 } |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3529 curwin->w_nrwidth_line_count = 0; // trigger a redraw |
13 | 3530 } |
3531 #endif | |
3532 | |
2314
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3533 else if (pp == &curbuf->b_p_tw) |
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3534 { |
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3535 if (curbuf->b_p_tw < 0) |
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3536 { |
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3537 errmsg = e_positive; |
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3538 curbuf->b_p_tw = 0; |
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3539 } |
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3540 #ifdef FEAT_SYN_HL |
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3541 { |
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3542 win_T *wp; |
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3543 tabpage_T *tp; |
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3544 |
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3545 FOR_ALL_TAB_WINDOWS(tp, wp) |
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3546 check_colorcolumn(wp); |
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3547 } |
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3548 #endif |
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3549 } |
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3550 |
7 | 3551 /* |
3552 * Check the bounds for numeric options here | |
3553 */ | |
3554 if (Rows < min_rows() && full_screen) | |
3555 { | |
3556 if (errbuf != NULL) | |
3557 { | |
274 | 3558 vim_snprintf((char *)errbuf, errbuflen, |
3559 _("E593: Need at least %d lines"), min_rows()); | |
7 | 3560 errmsg = errbuf; |
3561 } | |
3562 Rows = min_rows(); | |
3563 } | |
3564 if (Columns < MIN_COLUMNS && full_screen) | |
3565 { | |
3566 if (errbuf != NULL) | |
3567 { | |
274 | 3568 vim_snprintf((char *)errbuf, errbuflen, |
3569 _("E594: Need at least %d columns"), MIN_COLUMNS); | |
7 | 3570 errmsg = errbuf; |
3571 } | |
3572 Columns = MIN_COLUMNS; | |
3573 } | |
5070
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
5039
diff
changeset
|
3574 limit_screen_size(); |
7 | 3575 |
3576 /* | |
3577 * If the screen (shell) height has been changed, assume it is the | |
3578 * physical screenheight. | |
3579 */ | |
3580 if (old_Rows != Rows || old_Columns != Columns) | |
3581 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3582 // Changing the screen size is not allowed while updating the screen. |
7 | 3583 if (updating_screen) |
3584 *pp = old_value; | |
3585 else if (full_screen | |
3586 #ifdef FEAT_GUI | |
3587 && !gui.starting | |
3588 #endif | |
3589 ) | |
3590 set_shellsize((int)Columns, (int)Rows, TRUE); | |
3591 else | |
3592 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3593 // 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
|
3594 // messages. |
7 | 3595 check_shellsize(); |
3596 if (cmdline_row > Rows - p_ch && Rows > p_ch) | |
3597 cmdline_row = Rows - p_ch; | |
3598 } | |
857 | 3599 if (p_window >= Rows || !option_was_set((char_u *)"window")) |
164 | 3600 p_window = Rows - 1; |
7 | 3601 } |
3602 | |
3603 if (curbuf->b_p_ts <= 0) | |
3604 { | |
3605 errmsg = e_positive; | |
3606 curbuf->b_p_ts = 8; | |
3607 } | |
3608 if (p_tm < 0) | |
3609 { | |
3610 errmsg = e_positive; | |
3611 p_tm = 0; | |
3612 } | |
3613 if ((curwin->w_p_scr <= 0 | |
3614 || (curwin->w_p_scr > curwin->w_height | |
3615 && curwin->w_height > 0)) | |
3616 && full_screen) | |
3617 { | |
3618 if (pp == &(curwin->w_p_scr)) | |
3619 { | |
3620 if (curwin->w_p_scr != 0) | |
3621 errmsg = e_scroll; | |
3622 win_comp_scroll(curwin); | |
3623 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3624 // 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
|
3625 // it. |
7 | 3626 else if (curwin->w_p_scr <= 0) |
3627 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
|
3628 else // curwin->w_p_scr > curwin->w_height |
7 | 3629 curwin->w_p_scr = curwin->w_height; |
3630 } | |
1726 | 3631 if (p_hi < 0) |
3632 { | |
3633 errmsg = e_positive; | |
3634 p_hi = 0; | |
3635 } | |
5991 | 3636 else if (p_hi > 10000) |
3637 { | |
3638 errmsg = e_invarg; | |
3639 p_hi = 10000; | |
3640 } | |
4444 | 3641 if (p_re < 0 || p_re > 2) |
3642 { | |
3643 errmsg = e_invarg; | |
3644 p_re = 0; | |
3645 } | |
7 | 3646 if (p_report < 0) |
3647 { | |
3648 errmsg = e_positive; | |
3649 p_report = 1; | |
3650 } | |
532 | 3651 if ((p_sj < -100 || p_sj >= Rows) && full_screen) |
7 | 3652 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3653 if (Rows != old_Rows) // Rows changed, just adjust p_sj |
7 | 3654 p_sj = Rows / 2; |
3655 else | |
3656 { | |
3657 errmsg = e_scroll; | |
3658 p_sj = 1; | |
3659 } | |
3660 } | |
3661 if (p_so < 0 && full_screen) | |
3662 { | |
15713
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15701
diff
changeset
|
3663 errmsg = e_positive; |
7 | 3664 p_so = 0; |
3665 } | |
3666 if (p_siso < 0 && full_screen) | |
3667 { | |
3668 errmsg = e_positive; | |
3669 p_siso = 0; | |
3670 } | |
3671 #ifdef FEAT_CMDWIN | |
3672 if (p_cwh < 1) | |
3673 { | |
3674 errmsg = e_positive; | |
3675 p_cwh = 1; | |
3676 } | |
3677 #endif | |
3678 if (p_ut < 0) | |
3679 { | |
3680 errmsg = e_positive; | |
3681 p_ut = 2000; | |
3682 } | |
3683 if (p_ss < 0) | |
3684 { | |
3685 errmsg = e_positive; | |
3686 p_ss = 0; | |
3687 } | |
3688 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3689 // May set global value for local option. |
7 | 3690 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0) |
3691 *(long *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) = *pp; | |
3692 | |
3693 options[opt_idx].flags |= P_WAS_SET; | |
3694 | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13361
diff
changeset
|
3695 #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
|
3696 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
|
3697 value, errmsg); |
6935 | 3698 #endif |
3699 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3700 comp_col(); // in case 'columns' or 'ls' changed |
3443 | 3701 if (curwin->w_curswant != MAXCOL |
6669 | 3702 && (options[opt_idx].flags & (P_CURSWANT | P_RALL)) != 0) |
3443 | 3703 curwin->w_set_curswant = TRUE; |
7 | 3704 check_redraw(options[opt_idx].flags); |
3705 | |
3706 return errmsg; | |
3707 } | |
3708 | |
3709 /* | |
3710 * Called after an option changed: check if something needs to be redrawn. | |
3711 */ | |
18100
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
3712 void |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3713 check_redraw(long_u flags) |
7 | 3714 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3715 // Careful: P_RCLR and P_RALL are a combination of other P_ flags |
3263 | 3716 int doclear = (flags & P_RCLR) == P_RCLR; |
3717 int all = ((flags & P_RALL) == P_RALL || doclear); | |
7 | 3718 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3719 if ((flags & P_RSTAT) || all) // mark all status lines dirty |
7 | 3720 status_redraw_all(); |
3721 | |
3722 if ((flags & P_RBUF) || (flags & P_RWIN) || all) | |
3723 changed_window_setting(); | |
3724 if (flags & P_RBUF) | |
3725 redraw_curbuf_later(NOT_VALID); | |
10456
536a7d49249c
commit https://github.com/vim/vim/commit/a2477fd3490c1166522631eee53c57d34321086a
Christian Brabandt <cb@256bit.org>
parents:
10424
diff
changeset
|
3726 if (flags & P_RWINONLY) |
536a7d49249c
commit https://github.com/vim/vim/commit/a2477fd3490c1166522631eee53c57d34321086a
Christian Brabandt <cb@256bit.org>
parents:
10424
diff
changeset
|
3727 redraw_later(NOT_VALID); |
3263 | 3728 if (doclear) |
7 | 3729 redraw_all_later(CLEAR); |
3730 else if (all) | |
3731 redraw_all_later(NOT_VALID); | |
3732 } | |
3733 | |
3734 /* | |
3735 * Find index for option 'arg'. | |
3736 * Return -1 if not found. | |
3737 */ | |
18100
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
3738 int |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3739 findoption(char_u *arg) |
7 | 3740 { |
3741 int opt_idx; | |
3742 char *s, *p; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3743 static short quick_tab[27] = {0, 0}; // quick access table |
7 | 3744 int is_term_opt; |
3745 | |
3746 /* | |
3747 * For first call: Initialize the quick-access table. | |
3748 * It contains the index for the first option that starts with a certain | |
3749 * letter. There are 26 letters, plus the first "t_" option. | |
3750 */ | |
3751 if (quick_tab[1] == 0) | |
3752 { | |
3753 p = options[0].fullname; | |
3754 for (opt_idx = 1; (s = options[opt_idx].fullname) != NULL; opt_idx++) | |
3755 { | |
3756 if (s[0] != p[0]) | |
3757 { | |
3758 if (s[0] == 't' && s[1] == '_') | |
3759 quick_tab[26] = opt_idx; | |
3760 else | |
3761 quick_tab[CharOrdLow(s[0])] = opt_idx; | |
3762 } | |
3763 p = s; | |
3764 } | |
3765 } | |
3766 | |
3767 /* | |
3768 * Check for name starting with an illegal character. | |
3769 */ | |
3770 #ifdef EBCDIC | |
3771 if (!islower(arg[0])) | |
3772 #else | |
3773 if (arg[0] < 'a' || arg[0] > 'z') | |
3774 #endif | |
3775 return -1; | |
3776 | |
3777 is_term_opt = (arg[0] == 't' && arg[1] == '_'); | |
3778 if (is_term_opt) | |
3779 opt_idx = quick_tab[26]; | |
3780 else | |
3781 opt_idx = quick_tab[CharOrdLow(arg[0])]; | |
3782 for ( ; (s = options[opt_idx].fullname) != NULL; opt_idx++) | |
3783 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3784 if (STRCMP(arg, s) == 0) // match full name |
7 | 3785 break; |
3786 } | |
3787 if (s == NULL && !is_term_opt) | |
3788 { | |
3789 opt_idx = quick_tab[CharOrdLow(arg[0])]; | |
3790 for ( ; options[opt_idx].fullname != NULL; opt_idx++) | |
3791 { | |
3792 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
|
3793 if (s != NULL && STRCMP(arg, s) == 0) // match short name |
7 | 3794 break; |
3795 s = NULL; | |
3796 } | |
3797 } | |
3798 if (s == NULL) | |
3799 opt_idx = -1; | |
3800 return opt_idx; | |
3801 } | |
3802 | |
14 | 3803 #if defined(FEAT_EVAL) || defined(FEAT_TCL) || defined(FEAT_MZSCHEME) |
7 | 3804 /* |
3805 * Get the value for an option. | |
3806 * | |
3807 * Returns: | |
3808 * Number or Toggle option: 1, *numval gets value. | |
3809 * String option: 0, *stringval gets allocated string. | |
3810 * Hidden Number or Toggle option: -1. | |
3811 * hidden String option: -2. | |
3812 * unknown option: -3. | |
3813 */ | |
3814 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3815 get_option_value( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3816 char_u *name, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3817 long *numval, |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3818 char_u **stringval, // NULL when only checking existence |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3819 int opt_flags) |
7 | 3820 { |
3821 int opt_idx; | |
3822 char_u *varp; | |
3823 | |
3824 opt_idx = findoption(name); | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3825 if (opt_idx < 0) // unknown option |
10825
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
3826 { |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
3827 int key; |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
3828 |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
3829 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
|
3830 && (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
|
3831 { |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
3832 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
|
3833 char_u *p; |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
3834 |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
3835 if (key < 0) |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
3836 { |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
3837 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
|
3838 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
|
3839 } |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
3840 else |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
3841 { |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
3842 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
|
3843 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
|
3844 } |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
3845 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
|
3846 if (p != NULL) |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
3847 { |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
3848 if (stringval != NULL) |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
3849 *stringval = vim_strsave(p); |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
3850 return 0; |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
3851 } |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
3852 } |
7 | 3853 return -3; |
10825
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
3854 } |
7 | 3855 |
3856 varp = get_varp_scope(&(options[opt_idx]), opt_flags); | |
3857 | |
3858 if (options[opt_idx].flags & P_STRING) | |
3859 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3860 if (varp == NULL) // hidden option |
7 | 3861 return -2; |
3862 if (stringval != NULL) | |
3863 { | |
3864 #ifdef FEAT_CRYPT | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3865 // never return the value of the crypt key |
1622 | 3866 if ((char_u **)varp == &curbuf->b_p_key |
3867 && **(char_u **)(varp) != NUL) | |
7 | 3868 *stringval = vim_strsave((char_u *)"*****"); |
3869 else | |
3870 #endif | |
3871 *stringval = vim_strsave(*(char_u **)(varp)); | |
3872 } | |
3873 return 0; | |
3874 } | |
3875 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3876 if (varp == NULL) // hidden option |
7 | 3877 return -1; |
3878 if (options[opt_idx].flags & P_NUM) | |
3879 *numval = *(long *)varp; | |
3880 else | |
3881 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3882 // 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
|
3883 // it set when 'ff' or 'fenc' changed. |
7 | 3884 if ((int *)varp == &curbuf->b_changed) |
3885 *numval = curbufIsChanged(); | |
3886 else | |
9395
beab399e3883
commit https://github.com/vim/vim/commit/2acfbed9dbea990f129535de7ff3df360365130b
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
3887 *numval = (long) *(int *)varp; |
7 | 3888 } |
3889 return 1; | |
3890 } | |
3891 #endif | |
3892 | |
5610 | 3893 #if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) || defined(PROTO) |
4350 | 3894 /* |
3895 * Returns the option attributes and its value. Unlike the above function it | |
3896 * will return either global value or local value of the option depending on | |
3897 * what was requested, but it will never return global value if it was | |
3898 * requested to return local one and vice versa. Neither it will return | |
3899 * buffer-local value if it was requested to return window-local one. | |
3900 * | |
3901 * Pretends that option is absent if it is not present in the requested scope | |
3902 * (i.e. has no global, window-local or buffer-local value depending on | |
3903 * opt_type). Uses | |
3904 * | |
3905 * Returned flags: | |
5867 | 3906 * 0 hidden or unknown option, also option that does not have requested |
3907 * type (see SREQ_* in vim.h) | |
4350 | 3908 * see SOPT_* in vim.h for other flags |
3909 * | |
3910 * Possible opt_type values: see SREQ_* in vim.h | |
3911 */ | |
3912 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3913 get_option_value_strict( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3914 char_u *name, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3915 long *numval, |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3916 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
|
3917 int opt_type, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3918 void *from) |
4350 | 3919 { |
3920 int opt_idx; | |
4367 | 3921 char_u *varp = NULL; |
4350 | 3922 struct vimoption *p; |
3923 int r = 0; | |
3924 | |
3925 opt_idx = findoption(name); | |
3926 if (opt_idx < 0) | |
3927 return 0; | |
3928 | |
3929 p = &(options[opt_idx]); | |
3930 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3931 // Hidden option |
4350 | 3932 if (p->var == NULL) |
3933 return 0; | |
3934 | |
3935 if (p->flags & P_BOOL) | |
3936 r |= SOPT_BOOL; | |
3937 else if (p->flags & P_NUM) | |
3938 r |= SOPT_NUM; | |
3939 else if (p->flags & P_STRING) | |
3940 r |= SOPT_STRING; | |
3941 | |
3942 if (p->indir == PV_NONE) | |
3943 { | |
3944 if (opt_type == SREQ_GLOBAL) | |
3945 r |= SOPT_GLOBAL; | |
3946 else | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3947 return 0; // Did not request global-only option |
4350 | 3948 } |
3949 else | |
3950 { | |
3951 if (p->indir & PV_BOTH) | |
3952 r |= SOPT_GLOBAL; | |
3953 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
|
3954 return 0; // Requested global option |
4350 | 3955 |
3956 if (p->indir & PV_WIN) | |
3957 { | |
3958 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
|
3959 return 0; // Did not request window-local option |
4350 | 3960 else |
3961 r |= SOPT_WIN; | |
3962 } | |
3963 else if (p->indir & PV_BUF) | |
3964 { | |
3965 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
|
3966 return 0; // Did not request buffer-local option |
4350 | 3967 else |
3968 r |= SOPT_BUF; | |
3969 } | |
3970 } | |
3971 | |
3972 if (stringval == NULL) | |
3973 return r; | |
3974 | |
3975 if (opt_type == SREQ_GLOBAL) | |
3976 varp = p->var; | |
3977 else | |
3978 { | |
3979 if (opt_type == SREQ_BUF) | |
3980 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3981 // 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
|
3982 // consider it set when 'ff' or 'fenc' changed. |
4350 | 3983 if (p->indir == PV_MOD) |
3984 { | |
14179
ab64a4fb5edd
patch 8.1.0107: Python: getting buffer option clears message
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
3985 *numval = bufIsChanged((buf_T *)from); |
4350 | 3986 varp = NULL; |
3987 } | |
3988 #ifdef FEAT_CRYPT | |
3989 else if (p->indir == PV_KEY) | |
3990 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3991 // never return the value of the crypt key |
4350 | 3992 *stringval = NULL; |
3993 varp = NULL; | |
3994 } | |
3995 #endif | |
3996 else | |
3997 { | |
14179
ab64a4fb5edd
patch 8.1.0107: Python: getting buffer option clears message
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
3998 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
|
3999 |
ab64a4fb5edd
patch 8.1.0107: Python: getting buffer option clears message
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
4000 // 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
|
4001 curbuf = (buf_T *)from; |
ab64a4fb5edd
patch 8.1.0107: Python: getting buffer option clears message
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
4002 curwin->w_buffer = curbuf; |
4350 | 4003 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
|
4004 curbuf = save_curbuf; |
ab64a4fb5edd
patch 8.1.0107: Python: getting buffer option clears message
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
4005 curwin->w_buffer = curbuf; |
4350 | 4006 } |
4007 } | |
4008 else if (opt_type == SREQ_WIN) | |
4009 { | |
14179
ab64a4fb5edd
patch 8.1.0107: Python: getting buffer option clears message
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
4010 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
|
4011 |
ab64a4fb5edd
patch 8.1.0107: Python: getting buffer option clears message
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
4012 curwin = (win_T *)from; |
4350 | 4013 curbuf = curwin->w_buffer; |
4014 varp = get_varp(p); | |
4015 curwin = save_curwin; | |
4016 curbuf = curwin->w_buffer; | |
4017 } | |
4018 if (varp == p->var) | |
4019 return (r | SOPT_UNSET); | |
4020 } | |
4021 | |
4022 if (varp != NULL) | |
4023 { | |
4024 if (p->flags & P_STRING) | |
4025 *stringval = vim_strsave(*(char_u **)(varp)); | |
4026 else if (p->flags & P_NUM) | |
4027 *numval = *(long *) varp; | |
4028 else | |
4029 *numval = *(int *)varp; | |
4030 } | |
4031 | |
4032 return r; | |
4033 } | |
5610 | 4034 |
4035 /* | |
6243 | 4036 * Iterate over options. First argument is a pointer to a pointer to a |
4037 * structure inside options[] array, second is option type like in the above | |
4038 * function. | |
5610 | 4039 * |
6243 | 4040 * If first argument points to NULL it is assumed that iteration just started |
5610 | 4041 * and caller needs the very first value. |
6243 | 4042 * If first argument points to the end marker function returns NULL and sets |
5610 | 4043 * first argument to NULL. |
4044 * | |
4045 * Returns full option name for current option on each call. | |
4046 */ | |
4047 char_u * | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4048 option_iter_next(void **option, int opt_type) |
5610 | 4049 { |
4050 struct vimoption *ret = NULL; | |
4051 do | |
4052 { | |
4053 if (*option == NULL) | |
4054 *option = (void *) options; | |
4055 else if (((struct vimoption *) (*option))->fullname == NULL) | |
4056 { | |
4057 *option = NULL; | |
4058 return NULL; | |
4059 } | |
4060 else | |
4061 *option = (void *) (((struct vimoption *) (*option)) + 1); | |
4062 | |
4063 ret = ((struct vimoption *) (*option)); | |
4064 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4065 // Hidden option |
5610 | 4066 if (ret->var == NULL) |
4067 { | |
4068 ret = NULL; | |
4069 continue; | |
4070 } | |
4071 | |
4072 switch (opt_type) | |
4073 { | |
4074 case SREQ_GLOBAL: | |
4075 if (!(ret->indir == PV_NONE || ret->indir & PV_BOTH)) | |
4076 ret = NULL; | |
4077 break; | |
4078 case SREQ_BUF: | |
4079 if (!(ret->indir & PV_BUF)) | |
4080 ret = NULL; | |
4081 break; | |
4082 case SREQ_WIN: | |
4083 if (!(ret->indir & PV_WIN)) | |
4084 ret = NULL; | |
4085 break; | |
4086 default: | |
10359
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10357
diff
changeset
|
4087 internal_error("option_iter_next()"); |
5610 | 4088 return NULL; |
4089 } | |
4090 } | |
4091 while (ret == NULL); | |
4092 | |
4093 return (char_u *)ret->fullname; | |
4094 } | |
4350 | 4095 #endif |
4096 | |
7 | 4097 /* |
18100
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4098 * 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
|
4099 */ |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4100 long_u |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4101 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
|
4102 { |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4103 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
|
4104 } |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4105 |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4106 /* |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4107 * 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
|
4108 */ |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4109 void |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4110 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
|
4111 { |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4112 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
|
4113 } |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4114 |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4115 /* |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4116 * 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
|
4117 */ |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4118 void |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4119 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
|
4120 { |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4121 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
|
4122 } |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4123 |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4124 /* |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4125 * 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
|
4126 */ |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4127 int |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4128 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
|
4129 { |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4130 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
|
4131 } |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4132 |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4133 /* |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4134 * 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
|
4135 * local value. |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4136 */ |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4137 int |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4138 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
|
4139 { |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4140 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
|
4141 } |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4142 |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4143 /* |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4144 * 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
|
4145 */ |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4146 int |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4147 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
|
4148 { |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4149 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
|
4150 } |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4151 |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4152 /* |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4153 * 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
|
4154 */ |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4155 int |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4156 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
|
4157 { |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4158 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
|
4159 } |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4160 |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4161 #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
|
4162 /* |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4163 * 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
|
4164 */ |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4165 int |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4166 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
|
4167 { |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4168 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
|
4169 } |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4170 #endif |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4171 |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4172 /* |
7 | 4173 * Set the value of option "name". |
4174 * 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
|
4175 * |
cadb57fbb781
updated for version 7.3.1004
Bram Moolenaar <bram@vim.org>
parents:
4444
diff
changeset
|
4176 * Returns NULL on success or error message on error. |
cadb57fbb781
updated for version 7.3.1004
Bram Moolenaar <bram@vim.org>
parents:
4444
diff
changeset
|
4177 */ |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15207
diff
changeset
|
4178 char * |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4179 set_option_value( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4180 char_u *name, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4181 long number, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4182 char_u *string, |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4183 int opt_flags) // OPT_LOCAL or 0 (both) |
7 | 4184 { |
4185 int opt_idx; | |
4186 char_u *varp; | |
835 | 4187 long_u flags; |
7 | 4188 |
4189 opt_idx = findoption(name); | |
838 | 4190 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
|
4191 { |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
4192 int key; |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
4193 |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
4194 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
|
4195 && (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
|
4196 { |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
4197 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
|
4198 |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
4199 if (key < 0) |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
4200 { |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
4201 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
|
4202 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
|
4203 } |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
4204 else |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
4205 { |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
4206 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
|
4207 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
|
4208 } |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
4209 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
|
4210 if (full_screen) |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
4211 ttest(FALSE); |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
4212 redraw_all_later(CLEAR); |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
4213 return NULL; |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
4214 } |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
4215 |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15207
diff
changeset
|
4216 semsg(_("E355: Unknown option: %s"), name); |
10825
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
4217 } |
7 | 4218 else |
4219 { | |
4220 flags = options[opt_idx].flags; | |
4221 #ifdef HAVE_SANDBOX | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4222 // Disallow changing some options in the sandbox |
7 | 4223 if (sandbox > 0 && (flags & P_SECURE)) |
634 | 4224 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15207
diff
changeset
|
4225 emsg(_(e_sandbox)); |
4513
cadb57fbb781
updated for version 7.3.1004
Bram Moolenaar <bram@vim.org>
parents:
4444
diff
changeset
|
4226 return NULL; |
634 | 4227 } |
4228 #endif | |
4229 if (flags & P_STRING) | |
4513
cadb57fbb781
updated for version 7.3.1004
Bram Moolenaar <bram@vim.org>
parents:
4444
diff
changeset
|
4230 return set_string_option(opt_idx, string, opt_flags); |
7 | 4231 else |
4232 { | |
1667 | 4233 varp = get_varp_scope(&(options[opt_idx]), opt_flags); |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4234 if (varp != NULL) // hidden option is not changed |
7 | 4235 { |
1298 | 4236 if (number == 0 && string != NULL) |
4237 { | |
1757 | 4238 int idx; |
1298 | 4239 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4240 // Either we are given a string or we are setting option |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4241 // to zero. |
1757 | 4242 for (idx = 0; string[idx] == '0'; ++idx) |
1298 | 4243 ; |
1757 | 4244 if (string[idx] != NUL || idx == 0) |
1298 | 4245 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4246 // There's another character after zeros or the string |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4247 // is empty. In both cases, we are trying to set a |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4248 // num option using a string. |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15207
diff
changeset
|
4249 semsg(_("E521: Number required: &%s = '%s'"), |
1298 | 4250 name, string); |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4251 return NULL; // do nothing as we hit an error |
1298 | 4252 |
4253 } | |
4254 } | |
7 | 4255 if (flags & P_NUM) |
4513
cadb57fbb781
updated for version 7.3.1004
Bram Moolenaar <bram@vim.org>
parents:
4444
diff
changeset
|
4256 return set_num_option(opt_idx, varp, number, |
274 | 4257 NULL, 0, opt_flags); |
7 | 4258 else |
4513
cadb57fbb781
updated for version 7.3.1004
Bram Moolenaar <bram@vim.org>
parents:
4444
diff
changeset
|
4259 return set_bool_option(opt_idx, varp, (int)number, |
634 | 4260 opt_flags); |
7 | 4261 } |
4262 } | |
4263 } | |
4513
cadb57fbb781
updated for version 7.3.1004
Bram Moolenaar <bram@vim.org>
parents:
4444
diff
changeset
|
4264 return NULL; |
7 | 4265 } |
4266 | |
4267 /* | |
4268 * Get the terminal code for a terminal option. | |
4269 * Returns NULL when not found. | |
4270 */ | |
4271 char_u * | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4272 get_term_code(char_u *tname) |
7 | 4273 { |
4274 int opt_idx; | |
4275 char_u *varp; | |
4276 | |
4277 if (tname[0] != 't' || tname[1] != '_' || | |
4278 tname[2] == NUL || tname[3] == NUL) | |
4279 return NULL; | |
4280 if ((opt_idx = findoption(tname)) >= 0) | |
4281 { | |
4282 varp = get_varp(&(options[opt_idx])); | |
4283 if (varp != NULL) | |
4284 varp = *(char_u **)(varp); | |
4285 return varp; | |
4286 } | |
4287 return find_termcode(tname + 2); | |
4288 } | |
4289 | |
4290 char_u * | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4291 get_highlight_default(void) |
7 | 4292 { |
4293 int i; | |
4294 | |
4295 i = findoption((char_u *)"hl"); | |
4296 if (i >= 0) | |
4297 return options[i].def_val[VI_DEFAULT]; | |
4298 return (char_u *)NULL; | |
4299 } | |
4300 | |
39 | 4301 char_u * |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4302 get_encoding_default(void) |
39 | 4303 { |
4304 int i; | |
4305 | |
4306 i = findoption((char_u *)"enc"); | |
4307 if (i >= 0) | |
4308 return options[i].def_val[VI_DEFAULT]; | |
4309 return (char_u *)NULL; | |
4310 } | |
4311 | |
7 | 4312 /* |
4313 * 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
|
4314 * 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
|
4315 * Returns 0 when the key is not recognized. |
7 | 4316 */ |
4317 static int | |
14381
d9e6eec551e1
patch 8.1.0205: invalid memory access with invalid modeline
Christian Brabandt <cb@256bit.org>
parents:
14313
diff
changeset
|
4318 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
|
4319 { |
d9e6eec551e1
patch 8.1.0205: invalid memory access with invalid modeline
Christian Brabandt <cb@256bit.org>
parents:
14313
diff
changeset
|
4320 int key = 0; |
7 | 4321 int modifiers; |
14381
d9e6eec551e1
patch 8.1.0205: invalid memory access with invalid modeline
Christian Brabandt <cb@256bit.org>
parents:
14313
diff
changeset
|
4322 char_u *arg = arg_arg; |
7 | 4323 |
4324 /* | |
4325 * Don't use get_special_key_code() for t_xx, we don't want it to call | |
4326 * add_termcap_entry(). | |
4327 */ | |
4328 if (arg[0] == 't' && arg[1] == '_' && arg[2] && arg[3]) | |
4329 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
|
4330 else if (has_lt) |
7 | 4331 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4332 --arg; // put arg at the '<' |
7 | 4333 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
|
4334 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
|
4335 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
|
4336 if (modifiers) // can't handle modifiers here |
7 | 4337 key = 0; |
4338 } | |
4339 return key; | |
4340 } | |
4341 | |
4342 /* | |
4343 * if 'all' == 0: show changed options | |
4344 * if 'all' == 1: show all normal options | |
4345 * if 'all' == 2: show all terminal options | |
4346 */ | |
4347 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4348 showoptions( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4349 int all, |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4350 int opt_flags) // OPT_LOCAL and/or OPT_GLOBAL |
7 | 4351 { |
4352 struct vimoption *p; | |
4353 int col; | |
4354 int isterm; | |
4355 char_u *varp; | |
4356 struct vimoption **items; | |
4357 int item_count; | |
4358 int run; | |
4359 int row, rows; | |
4360 int cols; | |
4361 int i; | |
4362 int len; | |
4363 | |
4364 #define INC 20 | |
4365 #define GAP 3 | |
4366 | |
19137
69f0e9b5c107
patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
4367 items = ALLOC_MULT(struct vimoption *, OPTION_COUNT); |
7 | 4368 if (items == NULL) |
4369 return; | |
4370 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4371 // Highlight title |
7 | 4372 if (all == 2) |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
4373 msg_puts_title(_("\n--- Terminal codes ---")); |
7 | 4374 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
|
4375 msg_puts_title(_("\n--- Global option values ---")); |
7 | 4376 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
|
4377 msg_puts_title(_("\n--- Local option values ---")); |
7 | 4378 else |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
4379 msg_puts_title(_("\n--- Options ---")); |
7 | 4380 |
4381 /* | |
19137
69f0e9b5c107
patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
4382 * Do the loop two times: |
7 | 4383 * 1. display the short items |
4384 * 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
|
4385 * When "opt_flags" has OPT_ONECOLUMN do everything in run 2. |
7 | 4386 */ |
4387 for (run = 1; run <= 2 && !got_int; ++run) | |
4388 { | |
4389 /* | |
4390 * collect the items in items[] | |
4391 */ | |
4392 item_count = 0; | |
4393 for (p = &options[0]; p->fullname != NULL; p++) | |
4394 { | |
14968
c5ec5ddbe814
patch 8.1.0495: :filter only supports some commands
Bram Moolenaar <Bram@vim.org>
parents:
14935
diff
changeset
|
4395 // apply :filter /pat/ |
19137
69f0e9b5c107
patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
4396 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
|
4397 continue; |
c5ec5ddbe814
patch 8.1.0495: :filter only supports some commands
Bram Moolenaar <Bram@vim.org>
parents:
14935
diff
changeset
|
4398 |
7 | 4399 varp = NULL; |
4400 isterm = istermoption(p); | |
19137
69f0e9b5c107
patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
4401 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) != 0) |
7 | 4402 { |
4403 if (p->indir != PV_NONE && !isterm) | |
4404 varp = get_varp_scope(p, opt_flags); | |
4405 } | |
4406 else | |
4407 varp = get_varp(p); | |
4408 if (varp != NULL | |
4409 && ((all == 2 && isterm) | |
4410 || (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
|
4411 || (all == 0 && !optval_default(p, varp, p_cp)))) |
7 | 4412 { |
19137
69f0e9b5c107
patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
4413 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
|
4414 len = Columns; |
69f0e9b5c107
patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
4415 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
|
4416 len = 1; // a toggle option fits always |
7 | 4417 else |
4418 { | |
4419 option_value2string(p, opt_flags); | |
4420 len = (int)STRLEN(p->fullname) + vim_strsize(NameBuff) + 1; | |
4421 } | |
4422 if ((len <= INC - GAP && run == 1) || | |
4423 (len > INC - GAP && run == 2)) | |
4424 items[item_count++] = p; | |
4425 } | |
4426 } | |
4427 | |
4428 /* | |
4429 * display the items | |
4430 */ | |
4431 if (run == 1) | |
4432 { | |
4433 cols = (Columns + GAP - 3) / INC; | |
4434 if (cols == 0) | |
4435 cols = 1; | |
4436 rows = (item_count + cols - 1) / cols; | |
4437 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4438 else // run == 2 |
7 | 4439 rows = item_count; |
4440 for (row = 0; row < rows && !got_int; ++row) | |
4441 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4442 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
|
4443 if (got_int) // 'q' typed in more |
7 | 4444 break; |
4445 col = 0; | |
4446 for (i = row; i < item_count; i += rows) | |
4447 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4448 msg_col = col; // make columns |
7 | 4449 showoneopt(items[i], opt_flags); |
4450 col += INC; | |
4451 } | |
4452 out_flush(); | |
4453 ui_breakcheck(); | |
4454 } | |
4455 } | |
4456 vim_free(items); | |
4457 } | |
4458 | |
4459 /* | |
4460 * Return TRUE if option "p" has its default value. | |
4461 */ | |
4462 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
|
4463 optval_default(struct vimoption *p, char_u *varp, int compatible) |
7 | 4464 { |
4465 int dvi; | |
4466 | |
4467 if (varp == NULL) | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4468 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
|
4469 dvi = ((p->flags & P_VI_DEF) || compatible) ? VI_DEFAULT : VIM_DEFAULT; |
7 | 4470 if (p->flags & P_NUM) |
840 | 4471 return (*(long *)varp == (long)(long_i)p->def_val[dvi]); |
7 | 4472 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
|
4473 // 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
|
4474 // needed for MSVC |
840 | 4475 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
|
4476 // P_STRING |
7 | 4477 return (STRCMP(*(char_u **)varp, p->def_val[dvi]) == 0); |
4478 } | |
4479 | |
4480 /* | |
4481 * showoneopt: show the value of one option | |
4482 * must not be called with a hidden option! | |
4483 */ | |
4484 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4485 showoneopt( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4486 struct vimoption *p, |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4487 int opt_flags) // OPT_LOCAL or OPT_GLOBAL |
7 | 4488 { |
168 | 4489 char_u *varp; |
4490 int save_silent = silent_mode; | |
4491 | |
4492 silent_mode = FALSE; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4493 info_message = TRUE; // use mch_msg(), not mch_errmsg() |
7 | 4494 |
4495 varp = get_varp_scope(p, opt_flags); | |
4496 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4497 // for 'modified' we also need to check if 'ff' or 'fenc' changed. |
7 | 4498 if ((p->flags & P_BOOL) && ((int *)varp == &curbuf->b_changed |
4499 ? !curbufIsChanged() : !*(int *)varp)) | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
4500 msg_puts("no"); |
7 | 4501 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
|
4502 msg_puts("--"); |
7 | 4503 else |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
4504 msg_puts(" "); |
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
4505 msg_puts(p->fullname); |
7 | 4506 if (!(p->flags & P_BOOL)) |
4507 { | |
4508 msg_putchar('='); | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4509 // put value string in NameBuff |
7 | 4510 option_value2string(p, opt_flags); |
4511 msg_outtrans(NameBuff); | |
4512 } | |
168 | 4513 |
4514 silent_mode = save_silent; | |
4515 info_message = FALSE; | |
7 | 4516 } |
4517 | |
4518 /* | |
4519 * Write modified options as ":set" commands to a file. | |
4520 * | |
4521 * There are three values for "opt_flags": | |
4522 * OPT_GLOBAL: Write global option values and fresh values of | |
4523 * buffer-local options (used for start of a session | |
4524 * file). | |
4525 * OPT_GLOBAL + OPT_LOCAL: Idem, add fresh values of window-local options for | |
4526 * curwin (used for a vimrc file). | |
4527 * OPT_LOCAL: Write buffer-local option values for curbuf, fresh | |
4528 * and local values for window-local options of | |
4529 * curwin. Local values are also written when at the | |
4530 * default value, because a modeline or autocommand | |
4531 * may have set them when doing ":edit file" and the | |
4532 * user has set them back at the default or fresh | |
4533 * value. | |
4534 * When "local_only" is TRUE, don't write fresh | |
4535 * values, only local values (for ":mkview"). | |
4536 * (fresh value = value used for a new buffer or window for a local option). | |
4537 * | |
4538 * Return FAIL on error, OK otherwise. | |
4539 */ | |
4540 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4541 makeset(FILE *fd, int opt_flags, int local_only) |
7 | 4542 { |
4543 struct vimoption *p; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4544 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
|
4545 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
|
4546 char_u *varp_local = NULL; // fresh value |
7 | 4547 char *cmd; |
4548 int round; | |
1384 | 4549 int pri; |
7 | 4550 |
4551 /* | |
4552 * The options that don't have a default (terminal name, columns, lines) | |
4553 * are never written. Terminal options are also not written. | |
1384 | 4554 * Do the loop over "options[]" twice: once for options with the |
4555 * P_PRI_MKRC flag and once without. | |
7 | 4556 */ |
1384 | 4557 for (pri = 1; pri >= 0; --pri) |
4558 { | |
4559 for (p = &options[0]; !istermoption(p); p++) | |
4560 if (!(p->flags & P_NO_MKRC) | |
4561 && !istermoption(p) | |
4562 && ((pri == 1) == ((p->flags & P_PRI_MKRC) != 0))) | |
7 | 4563 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4564 // skip global option when only doing locals |
7 | 4565 if (p->indir == PV_NONE && !(opt_flags & OPT_GLOBAL)) |
4566 continue; | |
4567 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4568 // 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
|
4569 // file, they are always buffer-specific. |
7 | 4570 if ((opt_flags & OPT_GLOBAL) && (p->flags & P_NOGLOB)) |
4571 continue; | |
4572 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4573 // Global values are only written when not at the default value. |
7 | 4574 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
|
4575 if ((opt_flags & OPT_GLOBAL) && optval_default(p, varp, p_cp)) |
7 | 4576 continue; |
4577 | |
4578 round = 2; | |
4579 if (p->indir != PV_NONE) | |
4580 { | |
4581 if (p->var == VAR_WIN) | |
4582 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4583 // skip window-local option when only doing globals |
7 | 4584 if (!(opt_flags & OPT_LOCAL)) |
4585 continue; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4586 // 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
|
4587 // default, need to write it too. |
7 | 4588 if (!(opt_flags & OPT_GLOBAL) && !local_only) |
4589 { | |
4590 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
|
4591 if (!optval_default(p, varp_fresh, p_cp)) |
7 | 4592 { |
4593 round = 1; | |
4594 varp_local = varp; | |
4595 varp = varp_fresh; | |
4596 } | |
4597 } | |
4598 } | |
4599 } | |
4600 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4601 // 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
|
4602 // Round 2: other values |
7 | 4603 for ( ; round <= 2; varp = varp_local, ++round) |
4604 { | |
4605 if (round == 1 || (opt_flags & OPT_GLOBAL)) | |
4606 cmd = "set"; | |
4607 else | |
4608 cmd = "setlocal"; | |
4609 | |
4610 if (p->flags & P_BOOL) | |
4611 { | |
4612 if (put_setbool(fd, cmd, p->fullname, *(int *)varp) == FAIL) | |
4613 return FAIL; | |
4614 } | |
4615 else if (p->flags & P_NUM) | |
4616 { | |
4617 if (put_setnum(fd, cmd, p->fullname, (long *)varp) == FAIL) | |
4618 return FAIL; | |
4619 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4620 else // P_STRING |
7 | 4621 { |
694 | 4622 int do_endif = FALSE; |
4623 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4624 // 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
|
4625 // already right, avoids reloading the syntax file. |
694 | 4626 if ( |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13361
diff
changeset
|
4627 #if defined(FEAT_SYN_HL) |
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13361
diff
changeset
|
4628 p->indir == PV_SYN || |
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13361
diff
changeset
|
4629 #endif |
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13361
diff
changeset
|
4630 p->indir == PV_FT) |
7 | 4631 { |
4632 if (fprintf(fd, "if &%s != '%s'", p->fullname, | |
4633 *(char_u **)(varp)) < 0 | |
4634 || put_eol(fd) < 0) | |
4635 return FAIL; | |
694 | 4636 do_endif = TRUE; |
7 | 4637 } |
4638 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
|
4639 p->flags) == FAIL) |
7 | 4640 return FAIL; |
694 | 4641 if (do_endif) |
7 | 4642 { |
4643 if (put_line(fd, "endif") == FAIL) | |
4644 return FAIL; | |
4645 } | |
4646 } | |
4647 } | |
4648 } | |
1384 | 4649 } |
7 | 4650 return OK; |
4651 } | |
4652 | |
4653 #if defined(FEAT_FOLDING) || defined(PROTO) | |
4654 /* | |
4655 * Generate set commands for the local fold options only. Used when | |
4656 * 'sessionoptions' or 'viewoptions' contains "folds" but not "options". | |
4657 */ | |
4658 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4659 makefoldset(FILE *fd) |
7 | 4660 { |
15613
90f01701ecad
patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
4661 if (put_setstring(fd, "setlocal", "fdm", &curwin->w_p_fdm, 0) == FAIL |
7 | 4662 # 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
|
4663 || put_setstring(fd, "setlocal", "fde", &curwin->w_p_fde, 0) |
7 | 4664 == FAIL |
4665 # endif | |
15613
90f01701ecad
patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
4666 || put_setstring(fd, "setlocal", "fmr", &curwin->w_p_fmr, 0) |
7 | 4667 == FAIL |
15613
90f01701ecad
patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
4668 || put_setstring(fd, "setlocal", "fdi", &curwin->w_p_fdi, 0) |
7 | 4669 == FAIL |
4670 || put_setnum(fd, "setlocal", "fdl", &curwin->w_p_fdl) == FAIL | |
4671 || put_setnum(fd, "setlocal", "fml", &curwin->w_p_fml) == FAIL | |
4672 || put_setnum(fd, "setlocal", "fdn", &curwin->w_p_fdn) == FAIL | |
4673 || put_setbool(fd, "setlocal", "fen", curwin->w_p_fen) == FAIL | |
4674 ) | |
4675 return FAIL; | |
4676 | |
4677 return OK; | |
4678 } | |
4679 #endif | |
4680 | |
4681 static int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4682 put_setstring( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4683 FILE *fd, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4684 char *cmd, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4685 char *name, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4686 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
|
4687 long_u flags) |
7 | 4688 { |
4689 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
|
4690 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
|
4691 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
|
4692 char_u *p; |
7 | 4693 |
4694 if (fprintf(fd, "%s %s=", cmd, name) < 0) | |
4695 return FAIL; | |
4696 if (*valuep != NULL) | |
4697 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4698 // 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
|
4699 // 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
|
4700 // CTRL-V or backslash |
7 | 4701 if (valuep == &p_pt) |
4702 { | |
4703 s = *valuep; | |
4704 while (*s != NUL) | |
1601 | 4705 if (put_escstr(fd, str2special(&s, FALSE), 2) == FAIL) |
7 | 4706 return FAIL; |
4707 } | |
15613
90f01701ecad
patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
4708 // 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
|
4709 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
|
4710 { |
90f01701ecad
patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
4711 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
|
4712 |
90f01701ecad
patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
4713 // 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
|
4714 buf = alloc(size); |
2780 | 4715 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
|
4716 goto fail; |
90f01701ecad
patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
4717 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
|
4718 |
90f01701ecad
patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
4719 // 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
|
4720 // 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
|
4721 // 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
|
4722 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
|
4723 && 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
|
4724 { |
90f01701ecad
patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
4725 part = alloc(size); |
90f01701ecad
patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
4726 if (part == NULL) |
90f01701ecad
patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
4727 goto fail; |
90f01701ecad
patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
4728 |
90f01701ecad
patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
4729 // 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
|
4730 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
|
4731 goto fail; |
90f01701ecad
patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
4732 |
90f01701ecad
patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
4733 p = buf; |
90f01701ecad
patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
4734 while (*p != NUL) |
90f01701ecad
patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
4735 { |
90f01701ecad
patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
4736 // 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
|
4737 // 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
|
4738 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
|
4739 goto fail; |
90f01701ecad
patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
4740 (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
|
4741 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
|
4742 goto fail; |
90f01701ecad
patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
4743 } |
90f01701ecad
patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
4744 vim_free(buf); |
90f01701ecad
patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
4745 vim_free(part); |
90f01701ecad
patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
4746 return OK; |
90f01701ecad
patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
4747 } |
7 | 4748 if (put_escstr(fd, buf, 2) == FAIL) |
2780 | 4749 { |
4750 vim_free(buf); | |
7 | 4751 return FAIL; |
2780 | 4752 } |
4753 vim_free(buf); | |
7 | 4754 } |
4755 else if (put_escstr(fd, *valuep, 2) == FAIL) | |
4756 return FAIL; | |
4757 } | |
4758 if (put_eol(fd) < 0) | |
4759 return FAIL; | |
4760 return OK; | |
15613
90f01701ecad
patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
4761 fail: |
90f01701ecad
patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
4762 vim_free(buf); |
90f01701ecad
patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
4763 vim_free(part); |
90f01701ecad
patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
4764 return FAIL; |
7 | 4765 } |
4766 | |
4767 static int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4768 put_setnum( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4769 FILE *fd, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4770 char *cmd, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4771 char *name, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4772 long *valuep) |
7 | 4773 { |
4774 long wc; | |
4775 | |
4776 if (fprintf(fd, "%s %s=", cmd, name) < 0) | |
4777 return FAIL; | |
4778 if (wc_use_keyname((char_u *)valuep, &wc)) | |
4779 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4780 // print 'wildchar' and 'wildcharm' as a key name |
7 | 4781 if (fputs((char *)get_special_key_name((int)wc, 0), fd) < 0) |
4782 return FAIL; | |
4783 } | |
4784 else if (fprintf(fd, "%ld", *valuep) < 0) | |
4785 return FAIL; | |
4786 if (put_eol(fd) < 0) | |
4787 return FAIL; | |
4788 return OK; | |
4789 } | |
4790 | |
4791 static int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4792 put_setbool( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4793 FILE *fd, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4794 char *cmd, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4795 char *name, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4796 int value) |
7 | 4797 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4798 if (value < 0) // global/local option using global value |
1416 | 4799 return OK; |
7 | 4800 if (fprintf(fd, "%s %s%s", cmd, value ? "" : "no", name) < 0 |
4801 || put_eol(fd) < 0) | |
4802 return FAIL; | |
4803 return OK; | |
4804 } | |
4805 | |
4806 /* | |
4807 * Clear all the terminal options. | |
4808 * If the option has been allocated, free the memory. | |
4809 * Terminal options are never hidden or indirect. | |
4810 */ | |
4811 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4812 clear_termoptions(void) |
7 | 4813 { |
4814 /* | |
4815 * Reset a few things before clearing the old options. This may cause | |
4816 * outputting a few things that the terminal doesn't understand, but the | |
4817 * screen will be cleared later, so this is OK. | |
4818 */ | |
18354
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18301
diff
changeset
|
4819 mch_setmouse(FALSE); // switch mouse off |
7 | 4820 #ifdef FEAT_TITLE |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4821 mch_restore_title(SAVE_RESTORE_BOTH); // restore window titles |
7 | 4822 #endif |
4823 #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
|
4824 // 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
|
4825 // After restoring the title, because that will need the display. |
7 | 4826 if (gui.starting) |
4827 clear_xterm_clip(); | |
4828 #endif | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4829 stoptermcap(); // stop termcap mode |
7 | 4830 |
359 | 4831 free_termoptions(); |
4832 } | |
4833 | |
4834 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4835 free_termoptions(void) |
359 | 4836 { |
4837 struct vimoption *p; | |
4838 | |
14867
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
4839 for (p = options; p->fullname != NULL; p++) |
7 | 4840 if (istermoption(p)) |
4841 { | |
4842 if (p->flags & P_ALLOCED) | |
4843 free_string_option(*(char_u **)(p->var)); | |
4844 if (p->flags & P_DEF_ALLOCED) | |
4845 free_string_option(p->def_val[VI_DEFAULT]); | |
4846 *(char_u **)(p->var) = empty_option; | |
4847 p->def_val[VI_DEFAULT] = empty_option; | |
4848 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
|
4849 #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
|
4850 // 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
|
4851 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
|
4852 #endif |
7 | 4853 } |
4854 clear_termcodes(); | |
4855 } | |
4856 | |
4857 /* | |
1941 | 4858 * Free the string for one term option, if it was allocated. |
4859 * Set the string to empty_option and clear allocated flag. | |
4860 * "var" points to the option value. | |
4861 */ | |
4862 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4863 free_one_termoption(char_u *var) |
1941 | 4864 { |
4865 struct vimoption *p; | |
4866 | |
4867 for (p = &options[0]; p->fullname != NULL; p++) | |
4868 if (p->var == var) | |
4869 { | |
4870 if (p->flags & P_ALLOCED) | |
4871 free_string_option(*(char_u **)(p->var)); | |
4872 *(char_u **)(p->var) = empty_option; | |
4873 p->flags &= ~P_ALLOCED; | |
4874 break; | |
4875 } | |
4876 } | |
4877 | |
4878 /* | |
7 | 4879 * Set the terminal option defaults to the current value. |
4880 * Used after setting the terminal name. | |
4881 */ | |
4882 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4883 set_term_defaults(void) |
7 | 4884 { |
4885 struct vimoption *p; | |
4886 | |
4887 for (p = &options[0]; p->fullname != NULL; p++) | |
4888 { | |
4889 if (istermoption(p) && p->def_val[VI_DEFAULT] != *(char_u **)(p->var)) | |
4890 { | |
4891 if (p->flags & P_DEF_ALLOCED) | |
4892 { | |
4893 free_string_option(p->def_val[VI_DEFAULT]); | |
4894 p->flags &= ~P_DEF_ALLOCED; | |
4895 } | |
4896 p->def_val[VI_DEFAULT] = *(char_u **)(p->var); | |
4897 if (p->flags & P_ALLOCED) | |
4898 { | |
4899 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
|
4900 p->flags &= ~P_ALLOCED; // don't free the value now |
7 | 4901 } |
4902 } | |
4903 } | |
4904 } | |
4905 | |
4906 /* | |
4907 * return TRUE if 'p' starts with 't_' | |
4908 */ | |
4909 static int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4910 istermoption(struct vimoption *p) |
7 | 4911 { |
4912 return (p->fullname[0] == 't' && p->fullname[1] == '_'); | |
4913 } | |
4914 | |
18100
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4915 /* |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4916 * 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
|
4917 */ |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4918 int |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4919 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
|
4920 { |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4921 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
|
4922 } |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4923 |
15555
d89c5b339c2a
patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
4924 #if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) || defined(PROTO) |
7 | 4925 /* |
4350 | 4926 * Unset local option value, similar to ":set opt<". |
4927 */ | |
4928 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4929 unset_global_local_option(char_u *name, void *from) |
4350 | 4930 { |
4931 struct vimoption *p; | |
4932 int opt_idx; | |
4361 | 4933 buf_T *buf = (buf_T *)from; |
4350 | 4934 |
4935 opt_idx = findoption(name); | |
7007 | 4936 if (opt_idx < 0) |
4937 return; | |
4350 | 4938 p = &(options[opt_idx]); |
4939 | |
4940 switch ((int)p->indir) | |
4941 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4942 // global option with local value: use local value if it's been set |
4350 | 4943 case PV_EP: |
4361 | 4944 clear_string_option(&buf->b_p_ep); |
4350 | 4945 break; |
4946 case PV_KP: | |
4361 | 4947 clear_string_option(&buf->b_p_kp); |
4350 | 4948 break; |
4949 case PV_PATH: | |
4361 | 4950 clear_string_option(&buf->b_p_path); |
4350 | 4951 break; |
4952 case PV_AR: | |
4953 buf->b_p_ar = -1; | |
4954 break; | |
6243 | 4955 case PV_BKC: |
4956 clear_string_option(&buf->b_p_bkc); | |
4957 buf->b_bkc_flags = 0; | |
4958 break; | |
4350 | 4959 case PV_TAGS: |
4361 | 4960 clear_string_option(&buf->b_p_tags); |
4350 | 4961 break; |
7266
6ba7182fb7bd
commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents:
7218
diff
changeset
|
4962 case PV_TC: |
6ba7182fb7bd
commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents:
7218
diff
changeset
|
4963 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
|
4964 buf->b_tc_flags = 0; |
6ba7182fb7bd
commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents:
7218
diff
changeset
|
4965 break; |
15713
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15701
diff
changeset
|
4966 case PV_SISO: |
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15701
diff
changeset
|
4967 curwin->w_p_siso = -1; |
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15701
diff
changeset
|
4968 break; |
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15701
diff
changeset
|
4969 case PV_SO: |
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15701
diff
changeset
|
4970 curwin->w_p_so = -1; |
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15701
diff
changeset
|
4971 break; |
4350 | 4972 #ifdef FEAT_FIND_ID |
4973 case PV_DEF: | |
4361 | 4974 clear_string_option(&buf->b_p_def); |
4350 | 4975 break; |
4976 case PV_INC: | |
4361 | 4977 clear_string_option(&buf->b_p_inc); |
4350 | 4978 break; |
4979 #endif | |
4980 case PV_DICT: | |
4361 | 4981 clear_string_option(&buf->b_p_dict); |
4350 | 4982 break; |
4983 case PV_TSR: | |
4361 | 4984 clear_string_option(&buf->b_p_tsr); |
4350 | 4985 break; |
10579
688b97124d23
patch 8.0.0179: cannot have a local value for 'formatprg'
Christian Brabandt <cb@256bit.org>
parents:
10456
diff
changeset
|
4986 case PV_FP: |
688b97124d23
patch 8.0.0179: cannot have a local value for 'formatprg'
Christian Brabandt <cb@256bit.org>
parents:
10456
diff
changeset
|
4987 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
|
4988 break; |
4350 | 4989 #ifdef FEAT_QUICKFIX |
4990 case PV_EFM: | |
4361 | 4991 clear_string_option(&buf->b_p_efm); |
4350 | 4992 break; |
4993 case PV_GP: | |
4361 | 4994 clear_string_option(&buf->b_p_gp); |
4350 | 4995 break; |
4996 case PV_MP: | |
4361 | 4997 clear_string_option(&buf->b_p_mp); |
4350 | 4998 break; |
4999 #endif | |
5000 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL) | |
5001 case PV_BEXPR: | |
4361 | 5002 clear_string_option(&buf->b_p_bexpr); |
4350 | 5003 break; |
5004 #endif | |
5005 #if defined(FEAT_CRYPT) | |
5006 case PV_CM: | |
4361 | 5007 clear_string_option(&buf->b_p_cm); |
4350 | 5008 break; |
5009 #endif | |
18574
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
5010 #ifdef FEAT_LINEBREAK |
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
5011 case PV_SBR: |
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
5012 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
|
5013 break; |
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
5014 #endif |
4350 | 5015 #ifdef FEAT_STL_OPT |
5016 case PV_STL: | |
4361 | 5017 clear_string_option(&((win_T *)from)->w_p_stl); |
4350 | 5018 break; |
5019 #endif | |
5446 | 5020 case PV_UL: |
5021 buf->b_p_ul = NO_LOCAL_UNDOLEVEL; | |
5022 break; | |
5712 | 5023 #ifdef FEAT_LISP |
5024 case PV_LW: | |
5025 clear_string_option(&buf->b_p_lw); | |
5026 break; | |
5027 #endif | |
11063
e71d3bdf3bc3
patch 8.0.0420: text garbled when the system encoding differs from 'encoding'
Christian Brabandt <cb@256bit.org>
parents:
10968
diff
changeset
|
5028 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
|
5029 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
|
5030 break; |
4350 | 5031 } |
5032 } | |
15555
d89c5b339c2a
patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
5033 #endif |
4350 | 5034 |
5035 /* | |
7 | 5036 * Get pointer to option variable, depending on local or global scope. |
5037 */ | |
5038 static char_u * | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5039 get_varp_scope(struct vimoption *p, int opt_flags) |
7 | 5040 { |
5041 if ((opt_flags & OPT_GLOBAL) && p->indir != PV_NONE) | |
5042 { | |
5043 if (p->var == VAR_WIN) | |
5044 return (char_u *)GLOBAL_WO(get_varp(p)); | |
5045 return p->var; | |
5046 } | |
692 | 5047 if ((opt_flags & OPT_LOCAL) && ((int)p->indir & PV_BOTH)) |
7 | 5048 { |
5049 switch ((int)p->indir) | |
5050 { | |
10579
688b97124d23
patch 8.0.0179: cannot have a local value for 'formatprg'
Christian Brabandt <cb@256bit.org>
parents:
10456
diff
changeset
|
5051 case PV_FP: return (char_u *)&(curbuf->b_p_fp); |
7 | 5052 #ifdef FEAT_QUICKFIX |
694 | 5053 case PV_EFM: return (char_u *)&(curbuf->b_p_efm); |
5054 case PV_GP: return (char_u *)&(curbuf->b_p_gp); | |
5055 case PV_MP: return (char_u *)&(curbuf->b_p_mp); | |
5056 #endif | |
5057 case PV_EP: return (char_u *)&(curbuf->b_p_ep); | |
5058 case PV_KP: return (char_u *)&(curbuf->b_p_kp); | |
5059 case PV_PATH: return (char_u *)&(curbuf->b_p_path); | |
692 | 5060 case PV_AR: return (char_u *)&(curbuf->b_p_ar); |
694 | 5061 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
|
5062 case PV_TC: return (char_u *)&(curbuf->b_p_tc); |
15713
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15701
diff
changeset
|
5063 case PV_SISO: return (char_u *)&(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
|
5064 case PV_SO: return (char_u *)&(curwin->w_p_so); |
7 | 5065 #ifdef FEAT_FIND_ID |
694 | 5066 case PV_DEF: return (char_u *)&(curbuf->b_p_def); |
5067 case PV_INC: return (char_u *)&(curbuf->b_p_inc); | |
7 | 5068 #endif |
694 | 5069 case PV_DICT: return (char_u *)&(curbuf->b_p_dict); |
5070 case PV_TSR: return (char_u *)&(curbuf->b_p_tsr); | |
790 | 5071 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL) |
5072 case PV_BEXPR: return (char_u *)&(curbuf->b_p_bexpr); | |
5073 #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
|
5074 #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
|
5075 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
|
5076 #endif |
18574
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
5077 #ifdef FEAT_LINEBREAK |
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
5078 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
|
5079 #endif |
40 | 5080 #ifdef FEAT_STL_OPT |
694 | 5081 case PV_STL: return (char_u *)&(curwin->w_p_stl); |
40 | 5082 #endif |
5446 | 5083 case PV_UL: return (char_u *)&(curbuf->b_p_ul); |
5712 | 5084 #ifdef FEAT_LISP |
5085 case PV_LW: return (char_u *)&(curbuf->b_p_lw); | |
5086 #endif | |
6243 | 5087 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
|
5088 case PV_MENC: return (char_u *)&(curbuf->b_p_menc); |
7 | 5089 } |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
5090 return NULL; // "cannot happen" |
7 | 5091 } |
5092 return get_varp(p); | |
5093 } | |
5094 | |
5095 /* | |
18100
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
5096 * 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
|
5097 * scope. |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
5098 */ |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
5099 char_u * |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
5100 get_option_varp_scope(int opt_idx, int opt_flags) |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
5101 { |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
5102 return get_varp_scope(&(options[opt_idx]), opt_flags); |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
5103 } |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
5104 |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
5105 /* |
7 | 5106 * Get pointer to option variable. |
5107 */ | |
5108 static char_u * | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5109 get_varp(struct vimoption *p) |
7 | 5110 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
5111 // hidden option, always return NULL |
7 | 5112 if (p->var == NULL) |
5113 return NULL; | |
5114 | |
5115 switch ((int)p->indir) | |
5116 { | |
5117 case PV_NONE: return p->var; | |
5118 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
5119 // global option with local value: use local value if it's been set |
694 | 5120 case PV_EP: return *curbuf->b_p_ep != NUL |
7 | 5121 ? (char_u *)&curbuf->b_p_ep : p->var; |
694 | 5122 case PV_KP: return *curbuf->b_p_kp != NUL |
7 | 5123 ? (char_u *)&curbuf->b_p_kp : p->var; |
694 | 5124 case PV_PATH: return *curbuf->b_p_path != NUL |
7 | 5125 ? (char_u *)&(curbuf->b_p_path) : p->var; |
692 | 5126 case PV_AR: return curbuf->b_p_ar >= 0 |
7 | 5127 ? (char_u *)&(curbuf->b_p_ar) : p->var; |
694 | 5128 case PV_TAGS: return *curbuf->b_p_tags != NUL |
7 | 5129 ? (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
|
5130 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
|
5131 ? (char_u *)&(curbuf->b_p_tc) : p->var; |
6243 | 5132 case PV_BKC: return *curbuf->b_p_bkc != NUL |
5133 ? (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
|
5134 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
|
5135 ? (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
|
5136 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
|
5137 ? (char_u *)&(curwin->w_p_so) : p->var; |
7 | 5138 #ifdef FEAT_FIND_ID |
694 | 5139 case PV_DEF: return *curbuf->b_p_def != NUL |
7 | 5140 ? (char_u *)&(curbuf->b_p_def) : p->var; |
694 | 5141 case PV_INC: return *curbuf->b_p_inc != NUL |
7 | 5142 ? (char_u *)&(curbuf->b_p_inc) : p->var; |
5143 #endif | |
694 | 5144 case PV_DICT: return *curbuf->b_p_dict != NUL |
7 | 5145 ? (char_u *)&(curbuf->b_p_dict) : p->var; |
694 | 5146 case PV_TSR: return *curbuf->b_p_tsr != NUL |
7 | 5147 ? (char_u *)&(curbuf->b_p_tsr) : p->var; |
10579
688b97124d23
patch 8.0.0179: cannot have a local value for 'formatprg'
Christian Brabandt <cb@256bit.org>
parents:
10456
diff
changeset
|
5148 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
|
5149 ? (char_u *)&(curbuf->b_p_fp) : p->var; |
7 | 5150 #ifdef FEAT_QUICKFIX |
694 | 5151 case PV_EFM: return *curbuf->b_p_efm != NUL |
5152 ? (char_u *)&(curbuf->b_p_efm) : p->var; | |
5153 case PV_GP: return *curbuf->b_p_gp != NUL | |
7 | 5154 ? (char_u *)&(curbuf->b_p_gp) : p->var; |
694 | 5155 case PV_MP: return *curbuf->b_p_mp != NUL |
7 | 5156 ? (char_u *)&(curbuf->b_p_mp) : p->var; |
5157 #endif | |
790 | 5158 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL) |
5159 case PV_BEXPR: return *curbuf->b_p_bexpr != NUL | |
5160 ? (char_u *)&(curbuf->b_p_bexpr) : p->var; | |
5161 #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
|
5162 #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
|
5163 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
|
5164 ? (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
|
5165 #endif |
18574
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
5166 #ifdef FEAT_LINEBREAK |
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
5167 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
|
5168 ? (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
|
5169 #endif |
40 | 5170 #ifdef FEAT_STL_OPT |
694 | 5171 case PV_STL: return *curwin->w_p_stl != NUL |
40 | 5172 ? (char_u *)&(curwin->w_p_stl) : p->var; |
5173 #endif | |
5446 | 5174 case PV_UL: return curbuf->b_p_ul != NO_LOCAL_UNDOLEVEL |
5175 ? (char_u *)&(curbuf->b_p_ul) : p->var; | |
5712 | 5176 #ifdef FEAT_LISP |
5177 case PV_LW: return *curbuf->b_p_lw != NUL | |
5178 ? (char_u *)&(curbuf->b_p_lw) : p->var; | |
5179 #endif | |
11063
e71d3bdf3bc3
patch 8.0.0420: text garbled when the system encoding differs from 'encoding'
Christian Brabandt <cb@256bit.org>
parents:
10968
diff
changeset
|
5180 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
|
5181 ? (char_u *)&(curbuf->b_p_menc) : p->var; |
7 | 5182 #ifdef FEAT_ARABIC |
5183 case PV_ARAB: return (char_u *)&(curwin->w_p_arab); | |
5184 #endif | |
5185 case PV_LIST: return (char_u *)&(curwin->w_p_list); | |
744 | 5186 #ifdef FEAT_SPELL |
5187 case PV_SPELL: return (char_u *)&(curwin->w_p_spell); | |
5188 #endif | |
221 | 5189 #ifdef FEAT_SYN_HL |
744 | 5190 case PV_CUC: return (char_u *)&(curwin->w_p_cuc); |
5191 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
|
5192 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
|
5193 case PV_CC: return (char_u *)&(curwin->w_p_cc); |
221 | 5194 #endif |
7 | 5195 #ifdef FEAT_DIFF |
5196 case PV_DIFF: return (char_u *)&(curwin->w_p_diff); | |
5197 #endif | |
5198 #ifdef FEAT_FOLDING | |
5199 case PV_FDC: return (char_u *)&(curwin->w_p_fdc); | |
5200 case PV_FEN: return (char_u *)&(curwin->w_p_fen); | |
5201 case PV_FDI: return (char_u *)&(curwin->w_p_fdi); | |
5202 case PV_FDL: return (char_u *)&(curwin->w_p_fdl); | |
5203 case PV_FDM: return (char_u *)&(curwin->w_p_fdm); | |
5204 case PV_FML: return (char_u *)&(curwin->w_p_fml); | |
5205 case PV_FDN: return (char_u *)&(curwin->w_p_fdn); | |
5206 # ifdef FEAT_EVAL | |
5207 case PV_FDE: return (char_u *)&(curwin->w_p_fde); | |
5208 case PV_FDT: return (char_u *)&(curwin->w_p_fdt); | |
5209 # endif | |
5210 case PV_FMR: return (char_u *)&(curwin->w_p_fmr); | |
5211 #endif | |
5212 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
|
5213 case PV_RNU: return (char_u *)&(curwin->w_p_rnu); |
13 | 5214 #ifdef FEAT_LINEBREAK |
5215 case PV_NUW: return (char_u *)&(curwin->w_p_nuw); | |
5216 #endif | |
7 | 5217 case PV_WFH: return (char_u *)&(curwin->w_p_wfh); |
782 | 5218 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
|
5219 #if defined(FEAT_QUICKFIX) |
7 | 5220 case PV_PVW: return (char_u *)&(curwin->w_p_pvw); |
5221 #endif | |
5222 #ifdef FEAT_RIGHTLEFT | |
5223 case PV_RL: return (char_u *)&(curwin->w_p_rl); | |
5224 case PV_RLC: return (char_u *)&(curwin->w_p_rlc); | |
5225 #endif | |
5226 case PV_SCROLL: return (char_u *)&(curwin->w_p_scr); | |
5227 case PV_WRAP: return (char_u *)&(curwin->w_p_wrap); | |
5228 #ifdef FEAT_LINEBREAK | |
5229 case PV_LBR: return (char_u *)&(curwin->w_p_lbr); | |
5995 | 5230 case PV_BRI: return (char_u *)&(curwin->w_p_bri); |
5231 case PV_BRIOPT: return (char_u *)&(curwin->w_p_briopt); | |
7 | 5232 #endif |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16764
diff
changeset
|
5233 case PV_WCR: return (char_u *)&(curwin->w_p_wcr); |
7 | 5234 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
|
5235 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
|
5236 #ifdef FEAT_CONCEAL |
11621
b8299e742f41
patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
11587
diff
changeset
|
5237 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
|
5238 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
|
5239 #endif |
b8299e742f41
patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
11587
diff
changeset
|
5240 #ifdef FEAT_TERMINAL |
13742
a34b1323286c
patch 8.0.1743: terminal window options are named inconsistently
Christian Brabandt <cb@256bit.org>
parents:
13700
diff
changeset
|
5241 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
|
5242 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
|
5243 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
|
5244 #endif |
7 | 5245 |
5246 case PV_AI: return (char_u *)&(curbuf->b_p_ai); | |
5247 case PV_BIN: return (char_u *)&(curbuf->b_p_bin); | |
5248 case PV_BOMB: return (char_u *)&(curbuf->b_p_bomb); | |
5249 case PV_BH: return (char_u *)&(curbuf->b_p_bh); | |
5250 case PV_BT: return (char_u *)&(curbuf->b_p_bt); | |
5251 case PV_BL: return (char_u *)&(curbuf->b_p_bl); | |
5252 case PV_CI: return (char_u *)&(curbuf->b_p_ci); | |
5253 #ifdef FEAT_CINDENT | |
5254 case PV_CIN: return (char_u *)&(curbuf->b_p_cin); | |
5255 case PV_CINK: return (char_u *)&(curbuf->b_p_cink); | |
5256 case PV_CINO: return (char_u *)&(curbuf->b_p_cino); | |
5257 #endif | |
5258 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT) | |
5259 case PV_CINW: return (char_u *)&(curbuf->b_p_cinw); | |
5260 #endif | |
5261 case PV_COM: return (char_u *)&(curbuf->b_p_com); | |
5262 #ifdef FEAT_FOLDING | |
5263 case PV_CMS: return (char_u *)&(curbuf->b_p_cms); | |
5264 #endif | |
5265 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
|
5266 #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
|
5267 case PV_CSL: return (char_u *)&(curbuf->b_p_csl); |
7 | 5268 #endif |
12 | 5269 #ifdef FEAT_COMPL_FUNC |
5270 case PV_CFU: return (char_u *)&(curbuf->b_p_cfu); | |
502 | 5271 case PV_OFU: return (char_u *)&(curbuf->b_p_ofu); |
12 | 5272 #endif |
16447
54ffc82f38a8
patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents:
16429
diff
changeset
|
5273 #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
|
5274 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
|
5275 #endif |
7 | 5276 case PV_EOL: return (char_u *)&(curbuf->b_p_eol); |
6933 | 5277 case PV_FIXEOL: return (char_u *)&(curbuf->b_p_fixeol); |
7 | 5278 case PV_ET: return (char_u *)&(curbuf->b_p_et); |
5279 case PV_FENC: return (char_u *)&(curbuf->b_p_fenc); | |
5280 case PV_FF: return (char_u *)&(curbuf->b_p_ff); | |
5281 case PV_FT: return (char_u *)&(curbuf->b_p_ft); | |
5282 case PV_FO: return (char_u *)&(curbuf->b_p_fo); | |
41 | 5283 case PV_FLP: return (char_u *)&(curbuf->b_p_flp); |
7 | 5284 case PV_IMI: return (char_u *)&(curbuf->b_p_iminsert); |
5285 case PV_IMS: return (char_u *)&(curbuf->b_p_imsearch); | |
5286 case PV_INF: return (char_u *)&(curbuf->b_p_inf); | |
5287 case PV_ISK: return (char_u *)&(curbuf->b_p_isk); | |
5288 #ifdef FEAT_FIND_ID | |
5289 # ifdef FEAT_EVAL | |
5290 case PV_INEX: return (char_u *)&(curbuf->b_p_inex); | |
5291 # endif | |
5292 #endif | |
5293 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL) | |
5294 case PV_INDE: return (char_u *)&(curbuf->b_p_inde); | |
5295 case PV_INDK: return (char_u *)&(curbuf->b_p_indk); | |
5296 #endif | |
694 | 5297 #ifdef FEAT_EVAL |
667 | 5298 case PV_FEX: return (char_u *)&(curbuf->b_p_fex); |
5299 #endif | |
7 | 5300 #ifdef FEAT_CRYPT |
5301 case PV_KEY: return (char_u *)&(curbuf->b_p_key); | |
5302 #endif | |
5303 #ifdef FEAT_LISP | |
5304 case PV_LISP: return (char_u *)&(curbuf->b_p_lisp); | |
5305 #endif | |
5306 case PV_ML: return (char_u *)&(curbuf->b_p_ml); | |
5307 case PV_MPS: return (char_u *)&(curbuf->b_p_mps); | |
5308 case PV_MA: return (char_u *)&(curbuf->b_p_ma); | |
5309 case PV_MOD: return (char_u *)&(curbuf->b_changed); | |
5310 case PV_NF: return (char_u *)&(curbuf->b_p_nf); | |
5311 case PV_PI: return (char_u *)&(curbuf->b_p_pi); | |
12 | 5312 #ifdef FEAT_TEXTOBJ |
5313 case PV_QE: return (char_u *)&(curbuf->b_p_qe); | |
5314 #endif | |
7 | 5315 case PV_RO: return (char_u *)&(curbuf->b_p_ro); |
5316 #ifdef FEAT_SMARTINDENT | |
5317 case PV_SI: return (char_u *)&(curbuf->b_p_si); | |
5318 #endif | |
5319 case PV_SN: return (char_u *)&(curbuf->b_p_sn); | |
5320 case PV_STS: return (char_u *)&(curbuf->b_p_sts); | |
5321 #ifdef FEAT_SEARCHPATH | |
5322 case PV_SUA: return (char_u *)&(curbuf->b_p_sua); | |
5323 #endif | |
5324 case PV_SWF: return (char_u *)&(curbuf->b_p_swf); | |
5325 #ifdef FEAT_SYN_HL | |
410 | 5326 case PV_SMC: return (char_u *)&(curbuf->b_p_smc); |
744 | 5327 case PV_SYN: return (char_u *)&(curbuf->b_p_syn); |
5328 #endif | |
5329 #ifdef FEAT_SPELL | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2248
diff
changeset
|
5330 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
|
5331 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
|
5332 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
|
5333 case PV_SPO: return (char_u *)&(curwin->w_s->b_p_spo); |
7 | 5334 #endif |
5335 case PV_SW: return (char_u *)&(curbuf->b_p_sw); | |
5336 case PV_TS: return (char_u *)&(curbuf->b_p_ts); | |
5337 case PV_TW: return (char_u *)&(curbuf->b_p_tw); | |
5338 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
|
5339 #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
|
5340 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
|
5341 #endif |
7 | 5342 case PV_WM: return (char_u *)&(curbuf->b_p_wm); |
5343 #ifdef FEAT_KEYMAP | |
5344 case PV_KMAP: return (char_u *)&(curbuf->b_p_keymap); | |
5345 #endif | |
9852
4eea48b76d03
commit https://github.com/vim/vim/commit/95ec9d6a6ab3117d60ff638670a803d43974ba51
Christian Brabandt <cb@256bit.org>
parents:
9798
diff
changeset
|
5346 #ifdef FEAT_SIGNS |
4eea48b76d03
commit https://github.com/vim/vim/commit/95ec9d6a6ab3117d60ff638670a803d43974ba51
Christian Brabandt <cb@256bit.org>
parents:
9798
diff
changeset
|
5347 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
|
5348 #endif |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
5349 #ifdef FEAT_VARTABS |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
5350 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
|
5351 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
|
5352 #endif |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15207
diff
changeset
|
5353 default: iemsg(_("E356: get_varp ERROR")); |
7 | 5354 } |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
5355 // always return a valid pointer to avoid a crash! |
7 | 5356 return (char_u *)&(curbuf->b_p_wm); |
5357 } | |
5358 | |
5359 /* | |
18100
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
5360 * 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
|
5361 */ |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
5362 char_u * |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
5363 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
|
5364 { |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
5365 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
|
5366 } |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
5367 |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
5368 /* |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
5369 * 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
|
5370 */ |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
5371 char_u * |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
5372 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
|
5373 { |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
5374 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
|
5375 } |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
5376 |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
5377 /* |
7 | 5378 * Get the value of 'equalprg', either the buffer-local one or the global one. |
5379 */ | |
5380 char_u * | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5381 get_equalprg(void) |
7 | 5382 { |
5383 if (*curbuf->b_p_ep == NUL) | |
5384 return p_ep; | |
5385 return curbuf->b_p_ep; | |
5386 } | |
5387 | |
5388 /* | |
5389 * Copy options from one window to another. | |
5390 * Used when splitting a window. | |
5391 */ | |
5392 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5393 win_copy_options(win_T *wp_from, win_T *wp_to) |
7 | 5394 { |
5395 copy_winopt(&wp_from->w_onebuf_opt, &wp_to->w_onebuf_opt); | |
5396 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
|
5397 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
|
5398 } |
c81370b3ede4
patch 8.1.2073: when editing a buffer 'colorcolumn' may not work
Bram Moolenaar <Bram@vim.org>
parents:
18100
diff
changeset
|
5399 |
c81370b3ede4
patch 8.1.2073: when editing a buffer 'colorcolumn' may not work
Bram Moolenaar <Bram@vim.org>
parents:
18100
diff
changeset
|
5400 /* |
c81370b3ede4
patch 8.1.2073: when editing a buffer 'colorcolumn' may not work
Bram Moolenaar <Bram@vim.org>
parents:
18100
diff
changeset
|
5401 * 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
|
5402 */ |
c81370b3ede4
patch 8.1.2073: when editing a buffer 'colorcolumn' may not work
Bram Moolenaar <Bram@vim.org>
parents:
18100
diff
changeset
|
5403 void |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18156
diff
changeset
|
5404 after_copy_winopt(win_T *wp UNUSED) |
18156
c81370b3ede4
patch 8.1.2073: when editing a buffer 'colorcolumn' may not work
Bram Moolenaar <Bram@vim.org>
parents:
18100
diff
changeset
|
5405 { |
c81370b3ede4
patch 8.1.2073: when editing a buffer 'colorcolumn' may not work
Bram Moolenaar <Bram@vim.org>
parents:
18100
diff
changeset
|
5406 #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
|
5407 briopt_check(wp); |
6162 | 5408 #endif |
18068
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
5409 #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
|
5410 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
|
5411 check_colorcolumn(wp); |
18068
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
5412 #endif |
7 | 5413 } |
5414 | |
5415 /* | |
5416 * Copy the options from one winopt_T to another. | |
5417 * Doesn't free the old option values in "to", use clear_winopt() for that. | |
5418 * The 'scroll' option is not copied, because it depends on the window height. | |
5419 * The 'previewwindow' option is reset, there can be only one preview window. | |
5420 */ | |
5421 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5422 copy_winopt(winopt_T *from, winopt_T *to) |
7 | 5423 { |
5424 #ifdef FEAT_ARABIC | |
5425 to->wo_arab = from->wo_arab; | |
5426 #endif | |
5427 to->wo_list = from->wo_list; | |
5428 to->wo_nu = from->wo_nu; | |
2178
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2144
diff
changeset
|
5429 to->wo_rnu = from->wo_rnu; |
13 | 5430 #ifdef FEAT_LINEBREAK |
5431 to->wo_nuw = from->wo_nuw; | |
5432 #endif | |
7 | 5433 #ifdef FEAT_RIGHTLEFT |
5434 to->wo_rl = from->wo_rl; | |
5435 to->wo_rlc = vim_strsave(from->wo_rlc); | |
5436 #endif | |
18574
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
5437 #ifdef FEAT_LINEBREAK |
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
5438 to->wo_sbr = vim_strsave(from->wo_sbr); |
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
5439 #endif |
40 | 5440 #ifdef FEAT_STL_OPT |
5441 to->wo_stl = vim_strsave(from->wo_stl); | |
5442 #endif | |
7 | 5443 to->wo_wrap = from->wo_wrap; |
5102
11d0c6df1d7b
updated for version 7.3.1294
Bram Moolenaar <bram@vim.org>
parents:
5070
diff
changeset
|
5444 #ifdef FEAT_DIFF |
11d0c6df1d7b
updated for version 7.3.1294
Bram Moolenaar <bram@vim.org>
parents:
5070
diff
changeset
|
5445 to->wo_wrap_save = from->wo_wrap_save; |
11d0c6df1d7b
updated for version 7.3.1294
Bram Moolenaar <bram@vim.org>
parents:
5070
diff
changeset
|
5446 #endif |
7 | 5447 #ifdef FEAT_LINEBREAK |
5448 to->wo_lbr = from->wo_lbr; | |
5995 | 5449 to->wo_bri = from->wo_bri; |
5450 to->wo_briopt = vim_strsave(from->wo_briopt); | |
7 | 5451 #endif |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16764
diff
changeset
|
5452 to->wo_wcr = vim_strsave(from->wo_wcr); |
7 | 5453 to->wo_scb = from->wo_scb; |
5102
11d0c6df1d7b
updated for version 7.3.1294
Bram Moolenaar <bram@vim.org>
parents:
5070
diff
changeset
|
5454 to->wo_scb_save = from->wo_scb_save; |
2651 | 5455 to->wo_crb = from->wo_crb; |
5102
11d0c6df1d7b
updated for version 7.3.1294
Bram Moolenaar <bram@vim.org>
parents:
5070
diff
changeset
|
5456 to->wo_crb_save = from->wo_crb_save; |
744 | 5457 #ifdef FEAT_SPELL |
5458 to->wo_spell = from->wo_spell; | |
5459 #endif | |
221 | 5460 #ifdef FEAT_SYN_HL |
744 | 5461 to->wo_cuc = from->wo_cuc; |
5462 to->wo_cul = from->wo_cul; | |
18047
6650e3dff8d4
patch 8.1.2019: 'cursorline' always highlights the whole line
Bram Moolenaar <Bram@vim.org>
parents:
17940
diff
changeset
|
5463 to->wo_culopt = vim_strsave(from->wo_culopt); |
2314
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
5464 to->wo_cc = vim_strsave(from->wo_cc); |
221 | 5465 #endif |
7 | 5466 #ifdef FEAT_DIFF |
5467 to->wo_diff = from->wo_diff; | |
5102
11d0c6df1d7b
updated for version 7.3.1294
Bram Moolenaar <bram@vim.org>
parents:
5070
diff
changeset
|
5468 to->wo_diff_saved = from->wo_diff_saved; |
7 | 5469 #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
|
5470 #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
|
5471 to->wo_cocu = vim_strsave(from->wo_cocu); |
2379
b67b0b5a93d3
Window split didn't copy the value of 'conceallevel'.
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
5472 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
|
5473 #endif |
11621
b8299e742f41
patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
11587
diff
changeset
|
5474 #ifdef FEAT_TERMINAL |
13742
a34b1323286c
patch 8.0.1743: terminal window options are named inconsistently
Christian Brabandt <cb@256bit.org>
parents:
13700
diff
changeset
|
5475 to->wo_twk = vim_strsave(from->wo_twk); |
a34b1323286c
patch 8.0.1743: terminal window options are named inconsistently
Christian Brabandt <cb@256bit.org>
parents:
13700
diff
changeset
|
5476 to->wo_tws = vim_strsave(from->wo_tws); |
11621
b8299e742f41
patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
11587
diff
changeset
|
5477 #endif |
7 | 5478 #ifdef FEAT_FOLDING |
5479 to->wo_fdc = from->wo_fdc; | |
5102
11d0c6df1d7b
updated for version 7.3.1294
Bram Moolenaar <bram@vim.org>
parents:
5070
diff
changeset
|
5480 to->wo_fdc_save = from->wo_fdc_save; |
7 | 5481 to->wo_fen = from->wo_fen; |
5102
11d0c6df1d7b
updated for version 7.3.1294
Bram Moolenaar <bram@vim.org>
parents:
5070
diff
changeset
|
5482 to->wo_fen_save = from->wo_fen_save; |
7 | 5483 to->wo_fdi = vim_strsave(from->wo_fdi); |
5484 to->wo_fml = from->wo_fml; | |
5485 to->wo_fdl = from->wo_fdl; | |
5102
11d0c6df1d7b
updated for version 7.3.1294
Bram Moolenaar <bram@vim.org>
parents:
5070
diff
changeset
|
5486 to->wo_fdl_save = from->wo_fdl_save; |
7 | 5487 to->wo_fdm = vim_strsave(from->wo_fdm); |
5102
11d0c6df1d7b
updated for version 7.3.1294
Bram Moolenaar <bram@vim.org>
parents:
5070
diff
changeset
|
5488 to->wo_fdm_save = from->wo_diff_saved |
11d0c6df1d7b
updated for version 7.3.1294
Bram Moolenaar <bram@vim.org>
parents:
5070
diff
changeset
|
5489 ? vim_strsave(from->wo_fdm_save) : empty_option; |
7 | 5490 to->wo_fdn = from->wo_fdn; |
5491 # ifdef FEAT_EVAL | |
5492 to->wo_fde = vim_strsave(from->wo_fde); | |
5493 to->wo_fdt = vim_strsave(from->wo_fdt); | |
5494 # endif | |
5495 to->wo_fmr = vim_strsave(from->wo_fmr); | |
5496 #endif | |
9852
4eea48b76d03
commit https://github.com/vim/vim/commit/95ec9d6a6ab3117d60ff638670a803d43974ba51
Christian Brabandt <cb@256bit.org>
parents:
9798
diff
changeset
|
5497 #ifdef FEAT_SIGNS |
4eea48b76d03
commit https://github.com/vim/vim/commit/95ec9d6a6ab3117d60ff638670a803d43974ba51
Christian Brabandt <cb@256bit.org>
parents:
9798
diff
changeset
|
5498 to->wo_scl = vim_strsave(from->wo_scl); |
4eea48b76d03
commit https://github.com/vim/vim/commit/95ec9d6a6ab3117d60ff638670a803d43974ba51
Christian Brabandt <cb@256bit.org>
parents:
9798
diff
changeset
|
5499 #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
|
5500 |
212284f893d5
patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
5501 #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
|
5502 // 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
|
5503 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
|
5504 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
|
5505 #endif |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
5506 check_winopt(to); // don't want NULL pointers |
7 | 5507 } |
5508 | |
5509 /* | |
5510 * Check string options in a window for a NULL value. | |
5511 */ | |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17781
diff
changeset
|
5512 static void |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5513 check_win_options(win_T *win) |
7 | 5514 { |
5515 check_winopt(&win->w_onebuf_opt); | |
5516 check_winopt(&win->w_allbuf_opt); | |
5517 } | |
5518 | |
5519 /* | |
5520 * Check for NULL pointers in a winopt_T and replace them with empty_option. | |
5521 */ | |
5997 | 5522 static void |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5523 check_winopt(winopt_T *wop UNUSED) |
7 | 5524 { |
5525 #ifdef FEAT_FOLDING | |
5526 check_string_option(&wop->wo_fdi); | |
5527 check_string_option(&wop->wo_fdm); | |
5102
11d0c6df1d7b
updated for version 7.3.1294
Bram Moolenaar <bram@vim.org>
parents:
5070
diff
changeset
|
5528 check_string_option(&wop->wo_fdm_save); |
7 | 5529 # ifdef FEAT_EVAL |
5530 check_string_option(&wop->wo_fde); | |
5531 check_string_option(&wop->wo_fdt); | |
5532 # endif | |
5533 check_string_option(&wop->wo_fmr); | |
5534 #endif | |
9852
4eea48b76d03
commit https://github.com/vim/vim/commit/95ec9d6a6ab3117d60ff638670a803d43974ba51
Christian Brabandt <cb@256bit.org>
parents:
9798
diff
changeset
|
5535 #ifdef FEAT_SIGNS |
4eea48b76d03
commit https://github.com/vim/vim/commit/95ec9d6a6ab3117d60ff638670a803d43974ba51
Christian Brabandt <cb@256bit.org>
parents:
9798
diff
changeset
|
5536 check_string_option(&wop->wo_scl); |
4eea48b76d03
commit https://github.com/vim/vim/commit/95ec9d6a6ab3117d60ff638670a803d43974ba51
Christian Brabandt <cb@256bit.org>
parents:
9798
diff
changeset
|
5537 #endif |
7 | 5538 #ifdef FEAT_RIGHTLEFT |
5539 check_string_option(&wop->wo_rlc); | |
5540 #endif | |
18574
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
5541 #ifdef FEAT_LINEBREAK |
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
5542 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
|
5543 #endif |
40 | 5544 #ifdef FEAT_STL_OPT |
5545 check_string_option(&wop->wo_stl); | |
5546 #endif | |
2314
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
5547 #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
|
5548 check_string_option(&wop->wo_culopt); |
2314
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
5549 check_string_option(&wop->wo_cc); |
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
5550 #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
|
5551 #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
|
5552 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
|
5553 #endif |
11621
b8299e742f41
patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
11587
diff
changeset
|
5554 #ifdef FEAT_TERMINAL |
13742
a34b1323286c
patch 8.0.1743: terminal window options are named inconsistently
Christian Brabandt <cb@256bit.org>
parents:
13700
diff
changeset
|
5555 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
|
5556 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
|
5557 #endif |
5995 | 5558 #ifdef FEAT_LINEBREAK |
5559 check_string_option(&wop->wo_briopt); | |
5560 #endif | |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16764
diff
changeset
|
5561 check_string_option(&wop->wo_wcr); |
7 | 5562 } |
5563 | |
5564 /* | |
5565 * Free the allocated memory inside a winopt_T. | |
5566 */ | |
5567 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5568 clear_winopt(winopt_T *wop UNUSED) |
7 | 5569 { |
5570 #ifdef FEAT_FOLDING | |
5571 clear_string_option(&wop->wo_fdi); | |
5572 clear_string_option(&wop->wo_fdm); | |
5102
11d0c6df1d7b
updated for version 7.3.1294
Bram Moolenaar <bram@vim.org>
parents:
5070
diff
changeset
|
5573 clear_string_option(&wop->wo_fdm_save); |
7 | 5574 # ifdef FEAT_EVAL |
5575 clear_string_option(&wop->wo_fde); | |
5576 clear_string_option(&wop->wo_fdt); | |
5577 # endif | |
5578 clear_string_option(&wop->wo_fmr); | |
5579 #endif | |
9852
4eea48b76d03
commit https://github.com/vim/vim/commit/95ec9d6a6ab3117d60ff638670a803d43974ba51
Christian Brabandt <cb@256bit.org>
parents:
9798
diff
changeset
|
5580 #ifdef FEAT_SIGNS |
4eea48b76d03
commit https://github.com/vim/vim/commit/95ec9d6a6ab3117d60ff638670a803d43974ba51
Christian Brabandt <cb@256bit.org>
parents:
9798
diff
changeset
|
5581 clear_string_option(&wop->wo_scl); |
4eea48b76d03
commit https://github.com/vim/vim/commit/95ec9d6a6ab3117d60ff638670a803d43974ba51
Christian Brabandt <cb@256bit.org>
parents:
9798
diff
changeset
|
5582 #endif |
5995 | 5583 #ifdef FEAT_LINEBREAK |
5584 clear_string_option(&wop->wo_briopt); | |
5585 #endif | |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16764
diff
changeset
|
5586 clear_string_option(&wop->wo_wcr); |
7 | 5587 #ifdef FEAT_RIGHTLEFT |
5588 clear_string_option(&wop->wo_rlc); | |
5589 #endif | |
18574
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
5590 #ifdef FEAT_LINEBREAK |
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
5591 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
|
5592 #endif |
40 | 5593 #ifdef FEAT_STL_OPT |
5594 clear_string_option(&wop->wo_stl); | |
5595 #endif | |
2314
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
5596 #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
|
5597 clear_string_option(&wop->wo_culopt); |
2314
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
5598 clear_string_option(&wop->wo_cc); |
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
5599 #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
|
5600 #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
|
5601 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
|
5602 #endif |
11621
b8299e742f41
patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
11587
diff
changeset
|
5603 #ifdef FEAT_TERMINAL |
13742
a34b1323286c
patch 8.0.1743: terminal window options are named inconsistently
Christian Brabandt <cb@256bit.org>
parents:
13700
diff
changeset
|
5604 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
|
5605 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
|
5606 #endif |
7 | 5607 } |
5608 | |
18380
212284f893d5
patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
5609 #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
|
5610 // 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
|
5611 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
|
5612 # 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
|
5613 |
212284f893d5
patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
5614 /* |
212284f893d5
patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
5615 * 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
|
5616 */ |
212284f893d5
patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
5617 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
|
5618 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
|
5619 { |
212284f893d5
patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
5620 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
|
5621 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
|
5622 |
212284f893d5
patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
5623 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
|
5624 return; |
212284f893d5
patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
5625 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
|
5626 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
|
5627 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
|
5628 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
|
5629 } |
212284f893d5
patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
5630 #else |
212284f893d5
patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
5631 # 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
|
5632 #endif |
212284f893d5
patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
5633 |
7 | 5634 /* |
5635 * Copy global option values to local options for one buffer. | |
5636 * Used when creating a new buffer and sometimes when entering a buffer. | |
5637 * 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
|
5638 * BCO_ENTER We will enter the buffer "buf". |
7 | 5639 * BCO_ALWAYS Always copy the options, but only set b_p_initialized when |
5640 * appropriate. | |
5641 * BCO_NOHELP Don't copy the values to a help buffer. | |
5642 */ | |
5643 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5644 buf_copy_options(buf_T *buf, int flags) |
7 | 5645 { |
5646 int should_copy = TRUE; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
5647 char_u *save_p_isk = NULL; // init for GCC |
7 | 5648 int dont_do_help; |
5649 int did_isk = FALSE; | |
5650 | |
5651 /* | |
5652 * Skip this when the option defaults have not been set yet. Happens when | |
5653 * main() allocates the first buffer. | |
5654 */ | |
5655 if (p_cpo != NULL) | |
5656 { | |
5657 /* | |
5658 * Always copy when entering and 'cpo' contains 'S'. | |
5659 * Don't copy when already initialized. | |
5660 * Don't copy when 'cpo' contains 's' and not entering. | |
5661 * 'S' BCO_ENTER initialized 's' should_copy | |
5662 * yes yes X X TRUE | |
5663 * yes no yes X FALSE | |
5664 * no X yes X FALSE | |
5665 * X no no yes FALSE | |
5666 * X no no no TRUE | |
5667 * no yes no X TRUE | |
5668 */ | |
5669 if ((vim_strchr(p_cpo, CPO_BUFOPTGLOB) == NULL || !(flags & BCO_ENTER)) | |
5670 && (buf->b_p_initialized | |
5671 || (!(flags & BCO_ENTER) | |
5672 && vim_strchr(p_cpo, CPO_BUFOPT) != NULL))) | |
5673 should_copy = FALSE; | |
5674 | |
5675 if (should_copy || (flags & BCO_ALWAYS)) | |
5676 { | |
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
|
5677 #ifdef FEAT_EVAL |
20007
aadd1cae2ff5
patch 8.2.0559: clearing a struct is verbose
Bram Moolenaar <Bram@vim.org>
parents:
19405
diff
changeset
|
5678 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
|
5679 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
|
5680 #endif |
212284f893d5
patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
5681 // 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
|
5682 // 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
|
5683 // (jumping back to a help file with CTRL-T or CTRL-O) |
7 | 5684 dont_do_help = ((flags & BCO_NOHELP) && buf->b_help) |
5685 || 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
|
5686 if (dont_do_help) // don't free b_p_isk |
7 | 5687 { |
5688 save_p_isk = buf->b_p_isk; | |
5689 buf->b_p_isk = NULL; | |
5690 } | |
5691 /* | |
14479
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14381
diff
changeset
|
5692 * 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
|
5693 * reset 'readonly' and copy 'fileformat'. |
7 | 5694 */ |
5695 if (!buf->b_p_initialized) | |
5696 { | |
5697 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
|
5698 buf->b_p_ro = FALSE; // don't copy readonly |
7 | 5699 buf->b_p_tx = p_tx; |
5700 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
|
5701 switch (*p_ffs) |
c55a7232fb48
commit https://github.com/vim/vim/commit/e8ef3a093453b73594e15462d4de50b011c8ba66
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5702 { |
c55a7232fb48
commit https://github.com/vim/vim/commit/e8ef3a093453b73594e15462d4de50b011c8ba66
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5703 case 'm': |
c55a7232fb48
commit https://github.com/vim/vim/commit/e8ef3a093453b73594e15462d4de50b011c8ba66
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5704 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
|
5705 case 'd': |
c55a7232fb48
commit https://github.com/vim/vim/commit/e8ef3a093453b73594e15462d4de50b011c8ba66
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5706 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
|
5707 case 'u': |
c55a7232fb48
commit https://github.com/vim/vim/commit/e8ef3a093453b73594e15462d4de50b011c8ba66
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5708 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
|
5709 default: |
c55a7232fb48
commit https://github.com/vim/vim/commit/e8ef3a093453b73594e15462d4de50b011c8ba66
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5710 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
|
5711 } |
c55a7232fb48
commit https://github.com/vim/vim/commit/e8ef3a093453b73594e15462d4de50b011c8ba66
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5712 if (buf->b_p_ff != NULL) |
c55a7232fb48
commit https://github.com/vim/vim/commit/e8ef3a093453b73594e15462d4de50b011c8ba66
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5713 buf->b_start_ffc = *buf->b_p_ff; |
7 | 5714 buf->b_p_bh = empty_option; |
5715 buf->b_p_bt = empty_option; | |
5716 } | |
5717 else | |
5718 free_buf_options(buf, FALSE); | |
5719 | |
5720 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
|
5721 COPY_OPT_SCTX(buf, BV_AI); |
7 | 5722 buf->b_p_ai_nopaste = p_ai_nopaste; |
5723 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
|
5724 COPY_OPT_SCTX(buf, BV_SW); |
7 | 5725 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
|
5726 COPY_OPT_SCTX(buf, BV_TW); |
7 | 5727 buf->b_p_tw_nopaste = p_tw_nopaste; |
5728 buf->b_p_tw_nobin = p_tw_nobin; | |
5729 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
|
5730 COPY_OPT_SCTX(buf, BV_WM); |
7 | 5731 buf->b_p_wm_nopaste = p_wm_nopaste; |
5732 buf->b_p_wm_nobin = p_wm_nobin; | |
5733 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
|
5734 COPY_OPT_SCTX(buf, BV_BIN); |
402 | 5735 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
|
5736 COPY_OPT_SCTX(buf, BV_BOMB); |
6954 | 5737 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
|
5738 COPY_OPT_SCTX(buf, BV_FIXEOL); |
7 | 5739 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
|
5740 COPY_OPT_SCTX(buf, BV_ET); |
7 | 5741 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
|
5742 buf->b_p_et_nopaste = p_et_nopaste; |
7 | 5743 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
|
5744 COPY_OPT_SCTX(buf, BV_ML); |
7 | 5745 buf->b_p_ml_nobin = p_ml_nobin; |
5746 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
|
5747 COPY_OPT_SCTX(buf, BV_INF); |
212284f893d5
patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
5748 if (cmdmod.noswapfile) |
212284f893d5
patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
5749 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
|
5750 else |
212284f893d5
patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
5751 { |
212284f893d5
patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
5752 buf->b_p_swf = p_swf; |
212284f893d5
patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
5753 COPY_OPT_SCTX(buf, BV_INF); |
212284f893d5
patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
5754 } |
7 | 5755 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
|
5756 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
|
5757 #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
|
5758 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
|
5759 COPY_OPT_SCTX(buf, BV_CSL); |
7 | 5760 #endif |
12 | 5761 #ifdef FEAT_COMPL_FUNC |
5762 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
|
5763 COPY_OPT_SCTX(buf, BV_CFU); |
502 | 5764 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
|
5765 COPY_OPT_SCTX(buf, BV_OFU); |
12 | 5766 #endif |
16447
54ffc82f38a8
patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents:
16429
diff
changeset
|
5767 #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
|
5768 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
|
5769 COPY_OPT_SCTX(buf, BV_TFU); |
16447
54ffc82f38a8
patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents:
16429
diff
changeset
|
5770 #endif |
7 | 5771 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
|
5772 COPY_OPT_SCTX(buf, BV_STS); |
7 | 5773 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
|
5774 #ifdef FEAT_VARTABS |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
5775 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
|
5776 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
|
5777 if (p_vsts && p_vsts != empty_option) |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
5778 tabstop_set(p_vsts, &buf->b_p_vsts_array); |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
5779 else |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
5780 buf->b_p_vsts_array = 0; |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
5781 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
|
5782 ? 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
|
5783 #endif |
7 | 5784 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
|
5785 COPY_OPT_SCTX(buf, BV_SN); |
7 | 5786 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
|
5787 COPY_OPT_SCTX(buf, BV_COM); |
7 | 5788 #ifdef FEAT_FOLDING |
5789 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
|
5790 COPY_OPT_SCTX(buf, BV_CMS); |
7 | 5791 #endif |
5792 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
|
5793 COPY_OPT_SCTX(buf, BV_FO); |
41 | 5794 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
|
5795 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
|
5796 // 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
|
5797 // when it is set to 8 bytes in defaults.vim. |
7 | 5798 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
|
5799 COPY_OPT_SCTX(buf, BV_NF); |
7 | 5800 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
|
5801 COPY_OPT_SCTX(buf, BV_MPS); |
7 | 5802 #ifdef FEAT_SMARTINDENT |
5803 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
|
5804 COPY_OPT_SCTX(buf, BV_SI); |
7 | 5805 #endif |
5806 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
|
5807 COPY_OPT_SCTX(buf, BV_CI); |
7 | 5808 #ifdef FEAT_CINDENT |
5809 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
|
5810 COPY_OPT_SCTX(buf, BV_CIN); |
7 | 5811 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
|
5812 COPY_OPT_SCTX(buf, BV_CINK); |
7 | 5813 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
|
5814 COPY_OPT_SCTX(buf, BV_CINO); |
212284f893d5
patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
5815 #endif |
212284f893d5
patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
5816 // Don't copy 'filetype', it must be detected |
7 | 5817 buf->b_p_ft = empty_option; |
5818 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
|
5819 COPY_OPT_SCTX(buf, BV_PI); |
7 | 5820 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT) |
5821 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
|
5822 COPY_OPT_SCTX(buf, BV_CINW); |
7 | 5823 #endif |
5824 #ifdef FEAT_LISP | |
5825 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
|
5826 COPY_OPT_SCTX(buf, BV_LISP); |
7 | 5827 #endif |
5828 #ifdef FEAT_SYN_HL | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
5829 // Don't copy 'syntax', it must be set |
7 | 5830 buf->b_p_syn = empty_option; |
410 | 5831 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
|
5832 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
|
5833 buf->b_s.b_syn_isk = empty_option; |
744 | 5834 #endif |
5835 #ifdef FEAT_SPELL | |
2599 | 5836 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
|
5837 COPY_OPT_SCTX(buf, BV_SPC); |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2248
diff
changeset
|
5838 (void)compile_cap_prog(&buf->b_s); |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2248
diff
changeset
|
5839 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
|
5840 COPY_OPT_SCTX(buf, BV_SPF); |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2248
diff
changeset
|
5841 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
|
5842 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
|
5843 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
|
5844 COPY_OPT_SCTX(buf, BV_SPO); |
7 | 5845 #endif |
5846 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL) | |
5847 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
|
5848 COPY_OPT_SCTX(buf, BV_INDE); |
7 | 5849 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
|
5850 COPY_OPT_SCTX(buf, BV_INDK); |
7 | 5851 #endif |
10579
688b97124d23
patch 8.0.0179: cannot have a local value for 'formatprg'
Christian Brabandt <cb@256bit.org>
parents:
10456
diff
changeset
|
5852 buf->b_p_fp = empty_option; |
667 | 5853 #if defined(FEAT_EVAL) |
5854 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
|
5855 COPY_OPT_SCTX(buf, BV_FEX); |
667 | 5856 #endif |
7 | 5857 #ifdef FEAT_CRYPT |
5858 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
|
5859 COPY_OPT_SCTX(buf, BV_KEY); |
7 | 5860 #endif |
5861 #ifdef FEAT_SEARCHPATH | |
5862 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
|
5863 COPY_OPT_SCTX(buf, BV_SUA); |
7 | 5864 #endif |
5865 #ifdef FEAT_KEYMAP | |
5866 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
|
5867 COPY_OPT_SCTX(buf, BV_KMAP); |
7 | 5868 buf->b_kmap_state |= KEYMAP_INIT; |
5869 #endif | |
13742
a34b1323286c
patch 8.0.1743: terminal window options are named inconsistently
Christian Brabandt <cb@256bit.org>
parents:
13700
diff
changeset
|
5870 #ifdef FEAT_TERMINAL |
a34b1323286c
patch 8.0.1743: terminal window options are named inconsistently
Christian Brabandt <cb@256bit.org>
parents:
13700
diff
changeset
|
5871 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
|
5872 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
|
5873 #endif |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
5874 // 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
|
5875 // state from the current buffer is better than resetting it. |
7 | 5876 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
|
5877 COPY_OPT_SCTX(buf, BV_IMI); |
7 | 5878 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
|
5879 COPY_OPT_SCTX(buf, BV_IMS); |
7 | 5880 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
5881 // 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
|
5882 // are not copied, start using the global value |
7 | 5883 buf->b_p_ar = -1; |
5446 | 5884 buf->b_p_ul = NO_LOCAL_UNDOLEVEL; |
6243 | 5885 buf->b_p_bkc = empty_option; |
5886 buf->b_bkc_flags = 0; | |
7 | 5887 #ifdef FEAT_QUICKFIX |
5888 buf->b_p_gp = empty_option; | |
5889 buf->b_p_mp = empty_option; | |
5890 buf->b_p_efm = empty_option; | |
5891 #endif | |
5892 buf->b_p_ep = empty_option; | |
5893 buf->b_p_kp = empty_option; | |
5894 buf->b_p_path = empty_option; | |
5895 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
|
5896 buf->b_p_tc = empty_option; |
6ba7182fb7bd
commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents:
7218
diff
changeset
|
5897 buf->b_tc_flags = 0; |
7 | 5898 #ifdef FEAT_FIND_ID |
5899 buf->b_p_def = empty_option; | |
5900 buf->b_p_inc = empty_option; | |
5901 # ifdef FEAT_EVAL | |
5902 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
|
5903 COPY_OPT_SCTX(buf, BV_INEX); |
7 | 5904 # endif |
5905 #endif | |
5906 buf->b_p_dict = empty_option; | |
5907 buf->b_p_tsr = empty_option; | |
12 | 5908 #ifdef FEAT_TEXTOBJ |
5909 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
|
5910 COPY_OPT_SCTX(buf, BV_QE); |
12 | 5911 #endif |
790 | 5912 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL) |
5913 buf->b_p_bexpr = empty_option; | |
5914 #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
|
5915 #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
|
5916 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
|
5917 #endif |
2214
f8222d1f9a73
Included patch for persistent undo. Lots of changes and added test.
Bram Moolenaar <bram@vim.org>
parents:
2184
diff
changeset
|
5918 #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
|
5919 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
|
5920 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
|
5921 #endif |
5712 | 5922 #ifdef FEAT_LISP |
5923 buf->b_p_lw = empty_option; | |
5924 #endif | |
11063
e71d3bdf3bc3
patch 8.0.0420: text garbled when the system encoding differs from 'encoding'
Christian Brabandt <cb@256bit.org>
parents:
10968
diff
changeset
|
5925 buf->b_p_menc = empty_option; |
7 | 5926 |
5927 /* | |
5928 * Don't copy the options set by ex_help(), use the saved values, | |
5929 * when going from a help buffer to a non-help buffer. | |
5930 * Don't touch these at all when BCO_NOHELP is used and going from | |
5931 * or to a help buffer. | |
5932 */ | |
5933 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
|
5934 { |
7 | 5935 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
|
5936 #ifdef FEAT_VARTABS |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
5937 if (p_vts && p_vts != empty_option && !buf->b_p_vts_array) |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
5938 tabstop_set(p_vts, &buf->b_p_vts_array); |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
5939 else |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
5940 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
|
5941 #endif |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
5942 } |
7 | 5943 else |
5944 { | |
5945 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
|
5946 COPY_OPT_SCTX(buf, BV_ISK); |
7 | 5947 did_isk = TRUE; |
5948 buf->b_p_ts = p_ts; | |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
5949 #ifdef FEAT_VARTABS |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
5950 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
|
5951 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
|
5952 if (p_vts && p_vts != empty_option && !buf->b_p_vts_array) |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
5953 tabstop_set(p_vts, &buf->b_p_vts_array); |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
5954 else |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
5955 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
|
5956 #endif |
7 | 5957 buf->b_help = FALSE; |
5958 if (buf->b_p_bt[0] == 'h') | |
5959 clear_string_option(&buf->b_p_bt); | |
5960 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
|
5961 COPY_OPT_SCTX(buf, BV_MA); |
7 | 5962 } |
5963 } | |
5964 | |
5965 /* | |
5966 * When the options should be copied (ignoring BCO_ALWAYS), set the | |
5967 * flag that indicates that the options have been initialized. | |
5968 */ | |
5969 if (should_copy) | |
5970 buf->b_p_initialized = TRUE; | |
5971 } | |
5972 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
5973 check_buf_options(buf); // make sure we don't have NULLs |
7 | 5974 if (did_isk) |
5975 (void)buf_init_chartab(buf, FALSE); | |
5976 } | |
5977 | |
5978 /* | |
5979 * Reset the 'modifiable' option and its default value. | |
5980 */ | |
5981 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5982 reset_modifiable(void) |
7 | 5983 { |
5984 int opt_idx; | |
5985 | |
5986 curbuf->b_p_ma = FALSE; | |
5987 p_ma = FALSE; | |
5988 opt_idx = findoption((char_u *)"ma"); | |
838 | 5989 if (opt_idx >= 0) |
5990 options[opt_idx].def_val[VI_DEFAULT] = FALSE; | |
7 | 5991 } |
5992 | |
5993 /* | |
5994 * Set the global value for 'iminsert' to the local value. | |
5995 */ | |
5996 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5997 set_iminsert_global(void) |
7 | 5998 { |
5999 p_iminsert = curbuf->b_p_iminsert; | |
6000 } | |
6001 | |
6002 /* | |
6003 * Set the global value for 'imsearch' to the local value. | |
6004 */ | |
6005 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6006 set_imsearch_global(void) |
7 | 6007 { |
6008 p_imsearch = curbuf->b_p_imsearch; | |
6009 } | |
6010 | |
6011 static int expand_option_idx = -1; | |
6012 static char_u expand_option_name[5] = {'t', '_', NUL, NUL, NUL}; | |
6013 static int expand_option_flags = 0; | |
6014 | |
6015 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6016 set_context_in_set_cmd( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6017 expand_T *xp, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6018 char_u *arg, |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6019 int opt_flags) // OPT_GLOBAL and/or OPT_LOCAL |
7 | 6020 { |
6021 int nextchar; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6022 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
|
6023 int opt_idx = 0; // init for GCC |
7 | 6024 char_u *p; |
6025 char_u *s; | |
6026 int is_term_option = FALSE; | |
6027 int key; | |
6028 | |
6029 expand_option_flags = opt_flags; | |
6030 | |
6031 xp->xp_context = EXPAND_SETTINGS; | |
6032 if (*arg == NUL) | |
6033 { | |
6034 xp->xp_pattern = arg; | |
6035 return; | |
6036 } | |
6037 p = arg + STRLEN(arg) - 1; | |
6038 if (*p == ' ' && *(p - 1) != '\\') | |
6039 { | |
6040 xp->xp_pattern = p + 1; | |
6041 return; | |
6042 } | |
6043 while (p > arg) | |
6044 { | |
6045 s = p; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6046 // count number of backslashes before ' ' or ',' |
7 | 6047 if (*p == ' ' || *p == ',') |
6048 { | |
6049 while (s > arg && *(s - 1) == '\\') | |
6050 --s; | |
6051 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6052 // break at a space with an even number of backslashes |
7 | 6053 if (*p == ' ' && ((p - s) & 1) == 0) |
6054 { | |
6055 ++p; | |
6056 break; | |
6057 } | |
6058 --p; | |
6059 } | |
1911 | 6060 if (STRNCMP(p, "no", 2) == 0 && STRNCMP(p, "novice", 6) != 0) |
7 | 6061 { |
6062 xp->xp_context = EXPAND_BOOL_SETTINGS; | |
6063 p += 2; | |
6064 } | |
6065 if (STRNCMP(p, "inv", 3) == 0) | |
6066 { | |
6067 xp->xp_context = EXPAND_BOOL_SETTINGS; | |
6068 p += 3; | |
6069 } | |
6070 xp->xp_pattern = arg = p; | |
6071 if (*arg == '<') | |
6072 { | |
6073 while (*p != '>') | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6074 if (*p++ == NUL) // expand terminal option name |
7 | 6075 return; |
6076 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
|
6077 if (key == 0) // unknown name |
7 | 6078 { |
6079 xp->xp_context = EXPAND_NOTHING; | |
6080 return; | |
6081 } | |
6082 nextchar = *++p; | |
6083 is_term_option = TRUE; | |
6084 expand_option_name[2] = KEY2TERMCAP0(key); | |
6085 expand_option_name[3] = KEY2TERMCAP1(key); | |
6086 } | |
6087 else | |
6088 { | |
6089 if (p[0] == 't' && p[1] == '_') | |
6090 { | |
6091 p += 2; | |
6092 if (*p != NUL) | |
6093 ++p; | |
6094 if (*p == NUL) | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6095 return; // expand option name |
7 | 6096 nextchar = *++p; |
6097 is_term_option = TRUE; | |
6098 expand_option_name[2] = p[-2]; | |
6099 expand_option_name[3] = p[-1]; | |
6100 } | |
6101 else | |
6102 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6103 // Allow * wildcard |
7 | 6104 while (ASCII_ISALNUM(*p) || *p == '_' || *p == '*') |
6105 p++; | |
6106 if (*p == NUL) | |
6107 return; | |
6108 nextchar = *p; | |
6109 *p = NUL; | |
6110 opt_idx = findoption(arg); | |
6111 *p = nextchar; | |
6112 if (opt_idx == -1 || options[opt_idx].var == NULL) | |
6113 { | |
6114 xp->xp_context = EXPAND_NOTHING; | |
6115 return; | |
6116 } | |
6117 flags = options[opt_idx].flags; | |
6118 if (flags & P_BOOL) | |
6119 { | |
6120 xp->xp_context = EXPAND_NOTHING; | |
6121 return; | |
6122 } | |
6123 } | |
6124 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6125 // handle "-=" and "+=" |
7 | 6126 if ((nextchar == '-' || nextchar == '+' || nextchar == '^') && p[1] == '=') |
6127 { | |
6128 ++p; | |
6129 nextchar = '='; | |
6130 } | |
6131 if ((nextchar != '=' && nextchar != ':') | |
6132 || xp->xp_context == EXPAND_BOOL_SETTINGS) | |
6133 { | |
6134 xp->xp_context = EXPAND_UNSUCCESSFUL; | |
6135 return; | |
6136 } | |
6137 if (xp->xp_context != EXPAND_BOOL_SETTINGS && p[1] == NUL) | |
6138 { | |
6139 xp->xp_context = EXPAND_OLD_SETTING; | |
6140 if (is_term_option) | |
6141 expand_option_idx = -1; | |
6142 else | |
6143 expand_option_idx = opt_idx; | |
6144 xp->xp_pattern = p + 1; | |
6145 return; | |
6146 } | |
6147 xp->xp_context = EXPAND_NOTHING; | |
6148 if (is_term_option || (flags & P_NUM)) | |
6149 return; | |
6150 | |
6151 xp->xp_pattern = p + 1; | |
6152 | |
6153 if (flags & P_EXPAND) | |
6154 { | |
6155 p = options[opt_idx].var; | |
6156 if (p == (char_u *)&p_bdir | |
6157 || p == (char_u *)&p_dir | |
6158 || p == (char_u *)&p_path | |
8182
95d59081580f
commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents:
8163
diff
changeset
|
6159 || p == (char_u *)&p_pp |
7 | 6160 || p == (char_u *)&p_rtp |
6161 #ifdef FEAT_SEARCHPATH | |
6162 || p == (char_u *)&p_cdpath | |
6163 #endif | |
6164 #ifdef FEAT_SESSION | |
6165 || p == (char_u *)&p_vdir | |
6166 #endif | |
6167 ) | |
6168 { | |
6169 xp->xp_context = EXPAND_DIRECTORIES; | |
6170 if (p == (char_u *)&p_path | |
6171 #ifdef FEAT_SEARCHPATH | |
6172 || p == (char_u *)&p_cdpath | |
6173 #endif | |
6174 ) | |
6175 xp->xp_backslash = XP_BS_THREE; | |
6176 else | |
6177 xp->xp_backslash = XP_BS_ONE; | |
6178 } | |
6179 else | |
6180 { | |
6181 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
|
6182 // for 'tags' need three backslashes for a space |
7 | 6183 if (p == (char_u *)&p_tags) |
6184 xp->xp_backslash = XP_BS_THREE; | |
6185 else | |
6186 xp->xp_backslash = XP_BS_ONE; | |
6187 } | |
6188 } | |
6189 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6190 // 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
|
6191 // last file name. |
7 | 6192 for (p = arg + STRLEN(arg) - 1; p > xp->xp_pattern; --p) |
6193 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6194 // count number of backslashes before ' ' or ',' |
7 | 6195 if (*p == ' ' || *p == ',') |
6196 { | |
6197 s = p; | |
6198 while (s > xp->xp_pattern && *(s - 1) == '\\') | |
6199 --s; | |
6200 if ((*p == ' ' && (xp->xp_backslash == XP_BS_THREE && (p - s) < 3)) | |
6201 || (*p == ',' && (flags & P_COMMA) && ((p - s) & 1) == 0)) | |
6202 { | |
6203 xp->xp_pattern = p + 1; | |
6204 break; | |
6205 } | |
6206 } | |
374 | 6207 |
744 | 6208 #ifdef FEAT_SPELL |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6209 // for 'spellsuggest' start at "file:" |
374 | 6210 if (options[opt_idx].var == (char_u *)&p_sps |
6211 && STRNCMP(p, "file:", 5) == 0) | |
6212 { | |
6213 xp->xp_pattern = p + 5; | |
6214 break; | |
6215 } | |
6216 #endif | |
7 | 6217 } |
6218 | |
6219 return; | |
6220 } | |
6221 | |
6222 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6223 ExpandSettings( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6224 expand_T *xp, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6225 regmatch_T *regmatch, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6226 int *num_file, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6227 char_u ***file) |
7 | 6228 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6229 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
|
6230 int num_term = 0; // Nr of matching terminal code settings |
7 | 6231 int opt_idx; |
6232 int match; | |
6233 int count = 0; | |
6234 char_u *str; | |
6235 int loop; | |
6236 int is_term_opt; | |
6237 char_u name_buf[MAX_KEY_NAME_LEN]; | |
6238 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
|
6239 int ic = regmatch->rm_ic; // remember the ignore-case flag |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6240 |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6241 // do this loop twice: |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6242 // 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
|
6243 // loop == 1: copy the matching options into allocated memory |
7 | 6244 for (loop = 0; loop <= 1; ++loop) |
6245 { | |
6246 regmatch->rm_ic = ic; | |
6247 if (xp->xp_context != EXPAND_BOOL_SETTINGS) | |
6248 { | |
1883 | 6249 for (match = 0; match < (int)(sizeof(names) / sizeof(char *)); |
6250 ++match) | |
7 | 6251 if (vim_regexec(regmatch, (char_u *)names[match], (colnr_T)0)) |
6252 { | |
6253 if (loop == 0) | |
6254 num_normal++; | |
6255 else | |
6256 (*file)[count++] = vim_strsave((char_u *)names[match]); | |
6257 } | |
6258 } | |
6259 for (opt_idx = 0; (str = (char_u *)options[opt_idx].fullname) != NULL; | |
6260 opt_idx++) | |
6261 { | |
6262 if (options[opt_idx].var == NULL) | |
6263 continue; | |
6264 if (xp->xp_context == EXPAND_BOOL_SETTINGS | |
6265 && !(options[opt_idx].flags & P_BOOL)) | |
6266 continue; | |
18100
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
6267 is_term_opt = istermoption_idx(opt_idx); |
7 | 6268 if (is_term_opt && num_normal > 0) |
6269 continue; | |
6270 match = FALSE; | |
6271 if (vim_regexec(regmatch, str, (colnr_T)0) | |
6272 || (options[opt_idx].shortname != NULL | |
6273 && vim_regexec(regmatch, | |
6274 (char_u *)options[opt_idx].shortname, (colnr_T)0))) | |
6275 match = TRUE; | |
6276 else if (is_term_opt) | |
6277 { | |
6278 name_buf[0] = '<'; | |
6279 name_buf[1] = 't'; | |
6280 name_buf[2] = '_'; | |
6281 name_buf[3] = str[2]; | |
6282 name_buf[4] = str[3]; | |
6283 name_buf[5] = '>'; | |
6284 name_buf[6] = NUL; | |
6285 if (vim_regexec(regmatch, name_buf, (colnr_T)0)) | |
6286 { | |
6287 match = TRUE; | |
6288 str = name_buf; | |
6289 } | |
6290 } | |
6291 if (match) | |
6292 { | |
6293 if (loop == 0) | |
6294 { | |
6295 if (is_term_opt) | |
6296 num_term++; | |
6297 else | |
6298 num_normal++; | |
6299 } | |
6300 else | |
6301 (*file)[count++] = vim_strsave(str); | |
6302 } | |
6303 } | |
6304 /* | |
6305 * Check terminal key codes, these are not in the option table | |
6306 */ | |
6307 if (xp->xp_context != EXPAND_BOOL_SETTINGS && num_normal == 0) | |
6308 { | |
6309 for (opt_idx = 0; (str = get_termcode(opt_idx)) != NULL; opt_idx++) | |
6310 { | |
6311 if (!isprint(str[0]) || !isprint(str[1])) | |
6312 continue; | |
6313 | |
6314 name_buf[0] = 't'; | |
6315 name_buf[1] = '_'; | |
6316 name_buf[2] = str[0]; | |
6317 name_buf[3] = str[1]; | |
6318 name_buf[4] = NUL; | |
6319 | |
6320 match = FALSE; | |
6321 if (vim_regexec(regmatch, name_buf, (colnr_T)0)) | |
6322 match = TRUE; | |
6323 else | |
6324 { | |
6325 name_buf[0] = '<'; | |
6326 name_buf[1] = 't'; | |
6327 name_buf[2] = '_'; | |
6328 name_buf[3] = str[0]; | |
6329 name_buf[4] = str[1]; | |
6330 name_buf[5] = '>'; | |
6331 name_buf[6] = NUL; | |
6332 | |
6333 if (vim_regexec(regmatch, name_buf, (colnr_T)0)) | |
6334 match = TRUE; | |
6335 } | |
6336 if (match) | |
6337 { | |
6338 if (loop == 0) | |
6339 num_term++; | |
6340 else | |
6341 (*file)[count++] = vim_strsave(name_buf); | |
6342 } | |
6343 } | |
6344 | |
6345 /* | |
6346 * Check special key names. | |
6347 */ | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6348 regmatch->rm_ic = TRUE; // ignore case here |
7 | 6349 for (opt_idx = 0; (str = get_key_name(opt_idx)) != NULL; opt_idx++) |
6350 { | |
6351 name_buf[0] = '<'; | |
6352 STRCPY(name_buf + 1, str); | |
6353 STRCAT(name_buf, ">"); | |
6354 | |
6355 if (vim_regexec(regmatch, name_buf, (colnr_T)0)) | |
6356 { | |
6357 if (loop == 0) | |
6358 num_term++; | |
6359 else | |
6360 (*file)[count++] = vim_strsave(name_buf); | |
6361 } | |
6362 } | |
6363 } | |
6364 if (loop == 0) | |
6365 { | |
6366 if (num_normal > 0) | |
6367 *num_file = num_normal; | |
6368 else if (num_term > 0) | |
6369 *num_file = num_term; | |
6370 else | |
6371 return OK; | |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16806
diff
changeset
|
6372 *file = ALLOC_MULT(char_u *, *num_file); |
7 | 6373 if (*file == NULL) |
6374 { | |
6375 *file = (char_u **)""; | |
6376 return FAIL; | |
6377 } | |
6378 } | |
6379 } | |
6380 return OK; | |
6381 } | |
6382 | |
6383 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6384 ExpandOldSetting(int *num_file, char_u ***file) |
7 | 6385 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6386 char_u *var = NULL; // init for GCC |
7 | 6387 char_u *buf; |
6388 | |
6389 *num_file = 0; | |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16806
diff
changeset
|
6390 *file = ALLOC_ONE(char_u *); |
7 | 6391 if (*file == NULL) |
6392 return FAIL; | |
6393 | |
6394 /* | |
6395 * For a terminal key code expand_option_idx is < 0. | |
6396 */ | |
6397 if (expand_option_idx < 0) | |
6398 { | |
6399 var = find_termcode(expand_option_name + 2); | |
6400 if (var == NULL) | |
6401 expand_option_idx = findoption(expand_option_name); | |
6402 } | |
6403 | |
6404 if (expand_option_idx >= 0) | |
6405 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6406 // put string of option value in NameBuff |
7 | 6407 option_value2string(&options[expand_option_idx], expand_option_flags); |
6408 var = NameBuff; | |
6409 } | |
6410 else if (var == NULL) | |
6411 var = (char_u *)""; | |
6412 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6413 // 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
|
6414 // what happens in do_set(). |
7 | 6415 buf = vim_strsave_escaped(var, escape_chars); |
6416 | |
6417 if (buf == NULL) | |
6418 { | |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13242
diff
changeset
|
6419 VIM_CLEAR(*file); |
7 | 6420 return FAIL; |
6421 } | |
6422 | |
6423 #ifdef BACKSLASH_IN_FILENAME | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6424 // 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
|
6425 // 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
|
6426 for (var = buf; *var != NUL; MB_PTR_ADV(var)) |
7 | 6427 if (var[0] == '\\' && var[1] == '\\' |
6428 && expand_option_idx >= 0 | |
6429 && (options[expand_option_idx].flags & P_EXPAND) | |
6430 && vim_isfilec(var[2]) | |
6431 && (var[2] != '\\' || (var == buf && var[4] != '\\'))) | |
1622 | 6432 STRMOVE(var, var + 1); |
7 | 6433 #endif |
6434 | |
6435 *file[0] = buf; | |
6436 *num_file = 1; | |
6437 return OK; | |
6438 } | |
6439 | |
6440 /* | |
6441 * Get the value for the numeric or string option *opp in a nice format into | |
6442 * NameBuff[]. Must not be called with a hidden option! | |
6443 */ | |
6444 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6445 option_value2string( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6446 struct vimoption *opp, |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6447 int opt_flags) // OPT_GLOBAL and/or OPT_LOCAL |
7 | 6448 { |
6449 char_u *varp; | |
6450 | |
6451 varp = get_varp_scope(opp, opt_flags); | |
6452 | |
6453 if (opp->flags & P_NUM) | |
6454 { | |
6455 long wc = 0; | |
6456 | |
6457 if (wc_use_keyname(varp, &wc)) | |
6458 STRCPY(NameBuff, get_special_key_name((int)wc, 0)); | |
6459 else if (wc != 0) | |
6460 STRCPY(NameBuff, transchar((int)wc)); | |
6461 else | |
6462 sprintf((char *)NameBuff, "%ld", *(long *)varp); | |
6463 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6464 else // P_STRING |
7 | 6465 { |
6466 varp = *(char_u **)(varp); | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6467 if (varp == NULL) // just in case |
7 | 6468 NameBuff[0] = NUL; |
6469 #ifdef FEAT_CRYPT | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6470 // don't show the actual value of 'key', only that it's set |
840 | 6471 else if (opp->var == (char_u *)&p_key && *varp) |
7 | 6472 STRCPY(NameBuff, "*****"); |
6473 #endif | |
6474 else if (opp->flags & P_EXPAND) | |
6475 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
|
6476 // Translate 'pastetoggle' into special key names |
7 | 6477 else if ((char_u **)opp->var == &p_pt) |
6478 str2specialbuf(p_pt, NameBuff, MAXPATHL); | |
6479 else | |
419 | 6480 vim_strncpy(NameBuff, varp, MAXPATHL - 1); |
7 | 6481 } |
6482 } | |
6483 | |
6484 /* | |
6485 * Return TRUE if "varp" points to 'wildchar' or 'wildcharm' and it can be | |
6486 * printed as a keyname. | |
6487 * "*wcp" is set to the value of the option if it's 'wildchar' or 'wildcharm'. | |
6488 */ | |
6489 static int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6490 wc_use_keyname(char_u *varp, long *wcp) |
7 | 6491 { |
6492 if (((long *)varp == &p_wc) || ((long *)varp == &p_wcm)) | |
6493 { | |
6494 *wcp = *(long *)varp; | |
6495 if (IS_SPECIAL(*wcp) || find_special_key_in_table((int)*wcp) >= 0) | |
6496 return TRUE; | |
6497 } | |
6498 return FALSE; | |
6499 } | |
6500 | |
6501 /* | |
6502 * Return TRUE if "x" is present in 'shortmess' option, or | |
6503 * 'shortmess' contains 'a' and "x" is present in SHM_A. | |
6504 */ | |
6505 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6506 shortmess(int x) |
7 | 6507 { |
3384 | 6508 return p_shm != NULL && |
6509 ( vim_strchr(p_shm, x) != NULL | |
7 | 6510 || (vim_strchr(p_shm, 'a') != NULL |
6511 && vim_strchr((char_u *)SHM_A, x) != NULL)); | |
6512 } | |
6513 | |
6514 /* | |
6515 * paste_option_changed() - Called after p_paste was set or reset. | |
6516 */ | |
6517 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6518 paste_option_changed(void) |
7 | 6519 { |
6520 static int old_p_paste = FALSE; | |
6521 static int save_sm = 0; | |
7113
83b3261352b3
commit https://github.com/vim/vim/commit/54f018cd5994c3ffcd0740526e56db6934edf1f2
Christian Brabandt <cb@256bit.org>
parents:
7058
diff
changeset
|
6522 static int save_sta = 0; |
7 | 6523 #ifdef FEAT_CMDL_INFO |
6524 static int save_ru = 0; | |
6525 #endif | |
6526 #ifdef FEAT_RIGHTLEFT | |
6527 static int save_ri = 0; | |
6528 static int save_hkmap = 0; | |
6529 #endif | |
6530 buf_T *buf; | |
6531 | |
6532 if (p_paste) | |
6533 { | |
6534 /* | |
6535 * Paste switched from off to on. | |
6536 * Save the current values, so they can be restored later. | |
6537 */ | |
6538 if (!old_p_paste) | |
6539 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6540 // save options for each buffer |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6541 FOR_ALL_BUFFERS(buf) |
7 | 6542 { |
6543 buf->b_p_tw_nopaste = buf->b_p_tw; | |
6544 buf->b_p_wm_nopaste = buf->b_p_wm; | |
6545 buf->b_p_sts_nopaste = buf->b_p_sts; | |
6546 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
|
6547 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
|
6548 #ifdef FEAT_VARTABS |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
6549 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
|
6550 vim_free(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
|
6551 buf->b_p_vsts_nopaste = buf->b_p_vsts && buf->b_p_vsts != empty_option |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
6552 ? vim_strsave(buf->b_p_vsts) : NULL; |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
6553 #endif |
7 | 6554 } |
6555 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6556 // save global options |
7 | 6557 save_sm = p_sm; |
7113
83b3261352b3
commit https://github.com/vim/vim/commit/54f018cd5994c3ffcd0740526e56db6934edf1f2
Christian Brabandt <cb@256bit.org>
parents:
7058
diff
changeset
|
6558 save_sta = p_sta; |
7 | 6559 #ifdef FEAT_CMDL_INFO |
6560 save_ru = p_ru; | |
6561 #endif | |
6562 #ifdef FEAT_RIGHTLEFT | |
6563 save_ri = p_ri; | |
6564 save_hkmap = p_hkmap; | |
6565 #endif | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6566 // 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
|
6567 p_ai_nopaste = p_ai; |
83b3261352b3
commit https://github.com/vim/vim/commit/54f018cd5994c3ffcd0740526e56db6934edf1f2
Christian Brabandt <cb@256bit.org>
parents:
7058
diff
changeset
|
6568 p_et_nopaste = p_et; |
83b3261352b3
commit https://github.com/vim/vim/commit/54f018cd5994c3ffcd0740526e56db6934edf1f2
Christian Brabandt <cb@256bit.org>
parents:
7058
diff
changeset
|
6569 p_sts_nopaste = p_sts; |
7 | 6570 p_tw_nopaste = p_tw; |
6571 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
|
6572 #ifdef FEAT_VARTABS |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
6573 if (p_vsts_nopaste) |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
6574 vim_free(p_vsts_nopaste); |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
6575 p_vsts_nopaste = p_vsts && p_vsts != empty_option ? vim_strsave(p_vsts) : NULL; |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
6576 #endif |
7 | 6577 } |
6578 | |
6579 /* | |
6580 * Always set the option values, also when 'paste' is set when it is | |
6581 * already on. | |
6582 */ | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6583 // set options for each buffer |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6584 FOR_ALL_BUFFERS(buf) |
7 | 6585 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6586 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
|
6587 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
|
6588 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
|
6589 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
|
6590 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
|
6591 #ifdef FEAT_VARTABS |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
6592 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
|
6593 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
|
6594 buf->b_p_vsts = empty_option; |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
6595 if (buf->b_p_vsts_array) |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
6596 vim_free(buf->b_p_vsts_array); |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
6597 buf->b_p_vsts_array = 0; |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
6598 #endif |
7 | 6599 } |
6600 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6601 // set global options |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6602 p_sm = 0; // no showmatch |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6603 p_sta = 0; // no smarttab |
7 | 6604 #ifdef FEAT_CMDL_INFO |
6605 if (p_ru) | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6606 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
|
6607 p_ru = 0; // no ruler |
7 | 6608 #endif |
6609 #ifdef FEAT_RIGHTLEFT | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6610 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
|
6611 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
|
6612 #endif |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6613 // set global values for local buffer options |
7 | 6614 p_tw = 0; |
6615 p_wm = 0; | |
6616 p_sts = 0; | |
6617 p_ai = 0; | |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
6618 #ifdef FEAT_VARTABS |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
6619 if (p_vsts) |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
6620 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
|
6621 p_vsts = empty_option; |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
6622 #endif |
7 | 6623 } |
6624 | |
6625 /* | |
6626 * Paste switched from on to off: Restore saved values. | |
6627 */ | |
6628 else if (old_p_paste) | |
6629 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6630 // restore options for each buffer |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6631 FOR_ALL_BUFFERS(buf) |
7 | 6632 { |
6633 buf->b_p_tw = buf->b_p_tw_nopaste; | |
6634 buf->b_p_wm = buf->b_p_wm_nopaste; | |
6635 buf->b_p_sts = buf->b_p_sts_nopaste; | |
6636 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
|
6637 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
|
6638 #ifdef FEAT_VARTABS |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
6639 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
|
6640 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
|
6641 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
|
6642 ? vim_strsave(buf->b_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
|
6643 if (buf->b_p_vsts_array) |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
6644 vim_free(buf->b_p_vsts_array); |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
6645 if (buf->b_p_vsts && buf->b_p_vsts != empty_option) |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
6646 tabstop_set(buf->b_p_vsts, &buf->b_p_vsts_array); |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
6647 else |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
6648 buf->b_p_vsts_array = 0; |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
6649 #endif |
7 | 6650 } |
6651 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6652 // restore global options |
7 | 6653 p_sm = save_sm; |
7113
83b3261352b3
commit https://github.com/vim/vim/commit/54f018cd5994c3ffcd0740526e56db6934edf1f2
Christian Brabandt <cb@256bit.org>
parents:
7058
diff
changeset
|
6654 p_sta = save_sta; |
7 | 6655 #ifdef FEAT_CMDL_INFO |
6656 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
|
6657 status_redraw_all(); // redraw to draw the ruler |
7 | 6658 p_ru = save_ru; |
6659 #endif | |
6660 #ifdef FEAT_RIGHTLEFT | |
6661 p_ri = save_ri; | |
6662 p_hkmap = save_hkmap; | |
6663 #endif | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6664 // 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
|
6665 p_ai = p_ai_nopaste; |
83b3261352b3
commit https://github.com/vim/vim/commit/54f018cd5994c3ffcd0740526e56db6934edf1f2
Christian Brabandt <cb@256bit.org>
parents:
7058
diff
changeset
|
6666 p_et = p_et_nopaste; |
83b3261352b3
commit https://github.com/vim/vim/commit/54f018cd5994c3ffcd0740526e56db6934edf1f2
Christian Brabandt <cb@256bit.org>
parents:
7058
diff
changeset
|
6667 p_sts = p_sts_nopaste; |
7 | 6668 p_tw = p_tw_nopaste; |
6669 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
|
6670 #ifdef FEAT_VARTABS |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
6671 if (p_vsts) |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
6672 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
|
6673 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
|
6674 #endif |
7 | 6675 } |
6676 | |
6677 old_p_paste = p_paste; | |
6678 } | |
6679 | |
6680 /* | |
6681 * vimrc_found() - Called when a ".vimrc" or "VIMINIT" has been found. | |
6682 * | |
6683 * Reset 'compatible' and set the values for options that didn't get set yet | |
6684 * to the Vim defaults. | |
6685 * Don't do this if the 'compatible' option has been set or reset before. | |
819 | 6686 * When "fname" is not NULL, use it to set $"envname" when it wasn't set yet. |
7 | 6687 */ |
6688 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6689 vimrc_found(char_u *fname, char_u *envname) |
819 | 6690 { |
6691 int opt_idx; | |
826 | 6692 int dofree = FALSE; |
819 | 6693 char_u *p; |
7 | 6694 |
6695 if (!option_was_set((char_u *)"cp")) | |
6696 { | |
6697 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
|
6698 for (opt_idx = 0; !istermoption_idx(opt_idx); opt_idx++) |
7 | 6699 if (!(options[opt_idx].flags & (P_WAS_SET|P_VI_DEF))) |
6700 set_option_default(opt_idx, OPT_FREE, FALSE); | |
6701 didset_options(); | |
7040
17a3fa77e941
commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents:
7034
diff
changeset
|
6702 didset_options2(); |
7 | 6703 } |
819 | 6704 |
6705 if (fname != NULL) | |
6706 { | |
6707 p = vim_getenv(envname, &dofree); | |
6708 if (p == NULL) | |
6709 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6710 // Set $MYVIMRC to the first vimrc file found. |
819 | 6711 p = FullName_save(fname, FALSE); |
6712 if (p != NULL) | |
6713 { | |
6714 vim_setenv(envname, p); | |
6715 vim_free(p); | |
6716 } | |
6717 } | |
6718 else if (dofree) | |
6719 vim_free(p); | |
6720 } | |
7 | 6721 } |
6722 | |
6723 /* | |
6724 * Set 'compatible' on or off. Called for "-C" and "-N" command line arg. | |
6725 */ | |
6726 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6727 change_compatible(int on) |
7 | 6728 { |
838 | 6729 int opt_idx; |
6730 | |
7 | 6731 if (p_cp != on) |
6732 { | |
6733 p_cp = on; | |
6734 compatible_set(); | |
6735 } | |
838 | 6736 opt_idx = findoption((char_u *)"cp"); |
6737 if (opt_idx >= 0) | |
6738 options[opt_idx].flags |= P_WAS_SET; | |
7 | 6739 } |
6740 | |
6741 /* | |
6742 * 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
|
6743 * Only works correctly for global options. |
7 | 6744 */ |
6745 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6746 option_was_set(char_u *name) |
7 | 6747 { |
6748 int idx; | |
6749 | |
6750 idx = findoption(name); | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6751 if (idx < 0) // unknown option |
7 | 6752 return FALSE; |
6753 if (options[idx].flags & P_WAS_SET) | |
6754 return TRUE; | |
6755 return FALSE; | |
6756 } | |
6757 | |
6758 /* | |
3980 | 6759 * Reset the flag indicating option "name" was set. |
6760 */ | |
14748
00da090af0ab
patch 8.1.0386: cannot test with non-default option value
Christian Brabandt <cb@256bit.org>
parents:
14702
diff
changeset
|
6761 int |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6762 reset_option_was_set(char_u *name) |
3980 | 6763 { |
6764 int idx = findoption(name); | |
6765 | |
6766 if (idx >= 0) | |
14748
00da090af0ab
patch 8.1.0386: cannot test with non-default option value
Christian Brabandt <cb@256bit.org>
parents:
14702
diff
changeset
|
6767 { |
3980 | 6768 options[idx].flags &= ~P_WAS_SET; |
14748
00da090af0ab
patch 8.1.0386: cannot test with non-default option value
Christian Brabandt <cb@256bit.org>
parents:
14702
diff
changeset
|
6769 return OK; |
00da090af0ab
patch 8.1.0386: cannot test with non-default option value
Christian Brabandt <cb@256bit.org>
parents:
14702
diff
changeset
|
6770 } |
00da090af0ab
patch 8.1.0386: cannot test with non-default option value
Christian Brabandt <cb@256bit.org>
parents:
14702
diff
changeset
|
6771 return FAIL; |
3980 | 6772 } |
6773 | |
6774 /* | |
7 | 6775 * compatible_set() - Called when 'compatible' has been set or unset. |
6776 * | |
6777 * When 'compatible' set: Set all relevant options (those that have the P_VIM) | |
6778 * flag) to a Vi compatible value. | |
6779 * When 'compatible' is unset: Set all options that have a different default | |
6780 * for Vim (without the P_VI_DEF flag) to that default. | |
6781 */ | |
6782 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6783 compatible_set(void) |
7 | 6784 { |
6785 int opt_idx; | |
6786 | |
18100
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
6787 for (opt_idx = 0; !istermoption_idx(opt_idx); opt_idx++) |
7 | 6788 if ( ((options[opt_idx].flags & P_VIM) && p_cp) |
6789 || (!(options[opt_idx].flags & P_VI_DEF) && !p_cp)) | |
6790 set_option_default(opt_idx, OPT_FREE, p_cp); | |
6791 didset_options(); | |
7040
17a3fa77e941
commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents:
7034
diff
changeset
|
6792 didset_options2(); |
7 | 6793 } |
6794 | |
18100
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
6795 #if defined(FEAT_LINEBREAK) || defined(PROTO) |
7 | 6796 |
6797 /* | |
6798 * fill_breakat_flags() -- called when 'breakat' changes value. | |
6799 */ | |
18100
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
6800 void |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6801 fill_breakat_flags(void) |
7 | 6802 { |
500 | 6803 char_u *p; |
7 | 6804 int i; |
6805 | |
6806 for (i = 0; i < 256; i++) | |
6807 breakat_flags[i] = FALSE; | |
6808 | |
6809 if (p_breakat != NULL) | |
500 | 6810 for (p = p_breakat; *p; p++) |
6811 breakat_flags[*p] = TRUE; | |
7 | 6812 } |
6813 #endif | |
6814 | |
6815 /* | |
6816 * Check if backspacing over something is allowed. | |
6817 */ | |
6818 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6819 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
|
6820 int what) // BS_INDENT, BS_EOL, BS_START or BS_NOSTOP |
7 | 6821 { |
14029
d9fc15c833d5
patch 8.1.0032: BS in prompt buffer starts new line
Christian Brabandt <cb@256bit.org>
parents:
14019
diff
changeset
|
6822 #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
|
6823 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
|
6824 return FALSE; |
d9fc15c833d5
patch 8.1.0032: BS in prompt buffer starts new line
Christian Brabandt <cb@256bit.org>
parents:
14019
diff
changeset
|
6825 #endif |
7 | 6826 switch (*p_bs) |
6827 { | |
20069
9a67d41708d2
patch 8.2.0590: no 'backspace' value allows ignoring the insertion point
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
6828 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
|
6829 case '2': return (what != BS_NOSTOP); |
7 | 6830 case '1': return (what != BS_START); |
6831 case '0': return FALSE; | |
6832 } | |
6833 return vim_strchr(p_bs, what) != NULL; | |
6834 } | |
6835 | |
6836 /* | |
15713
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15701
diff
changeset
|
6837 * 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
|
6838 * 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
|
6839 */ |
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15701
diff
changeset
|
6840 long |
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15701
diff
changeset
|
6841 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
|
6842 { |
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15701
diff
changeset
|
6843 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
|
6844 } |
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15701
diff
changeset
|
6845 |
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15701
diff
changeset
|
6846 /* |
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15701
diff
changeset
|
6847 * 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
|
6848 * 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
|
6849 */ |
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15701
diff
changeset
|
6850 long |
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15701
diff
changeset
|
6851 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
|
6852 { |
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15701
diff
changeset
|
6853 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
|
6854 } |
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15701
diff
changeset
|
6855 |
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15701
diff
changeset
|
6856 /* |
6243 | 6857 * Get the local or global value of 'backupcopy'. |
6858 */ | |
6859 unsigned int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6860 get_bkc_value(buf_T *buf) |
6243 | 6861 { |
6862 return buf->b_bkc_flags ? buf->b_bkc_flags : bkc_flags; | |
6863 } | |
9852
4eea48b76d03
commit https://github.com/vim/vim/commit/95ec9d6a6ab3117d60ff638670a803d43974ba51
Christian Brabandt <cb@256bit.org>
parents:
9798
diff
changeset
|
6864 |
18574
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
6865 #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
|
6866 /* |
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
6867 * 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
|
6868 */ |
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
6869 char_u * |
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
6870 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
|
6871 { |
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
6872 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
|
6873 return p_sbr; |
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
6874 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
|
6875 return empty_option; |
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
6876 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
|
6877 } |
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
6878 #endif |
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
6879 |
9858
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9854
diff
changeset
|
6880 #if defined(FEAT_EVAL) || defined(PROTO) |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9854
diff
changeset
|
6881 /* |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9854
diff
changeset
|
6882 * Get window or buffer local options. |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9854
diff
changeset
|
6883 */ |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9854
diff
changeset
|
6884 dict_T * |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9854
diff
changeset
|
6885 get_winbuf_options(int bufopt) |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9854
diff
changeset
|
6886 { |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9854
diff
changeset
|
6887 dict_T *d; |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9854
diff
changeset
|
6888 int opt_idx; |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9854
diff
changeset
|
6889 |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9854
diff
changeset
|
6890 d = dict_alloc(); |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9854
diff
changeset
|
6891 if (d == NULL) |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9854
diff
changeset
|
6892 return NULL; |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9854
diff
changeset
|
6893 |
18100
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
6894 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
|
6895 { |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9854
diff
changeset
|
6896 struct vimoption *opt = &options[opt_idx]; |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9854
diff
changeset
|
6897 |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9854
diff
changeset
|
6898 if ((bufopt && (opt->indir & PV_BUF)) |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9854
diff
changeset
|
6899 || (!bufopt && (opt->indir & PV_WIN))) |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9854
diff
changeset
|
6900 { |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9854
diff
changeset
|
6901 char_u *varp = get_varp(opt); |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9854
diff
changeset
|
6902 |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9854
diff
changeset
|
6903 if (varp != NULL) |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9854
diff
changeset
|
6904 { |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9854
diff
changeset
|
6905 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
|
6906 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
|
6907 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
|
6908 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
|
6909 else |
14301
3c80092eb211
patch 8.1.0166: using dict_add_nr_str() is clumsy
Christian Brabandt <cb@256bit.org>
parents:
14243
diff
changeset
|
6910 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
|
6911 } |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9854
diff
changeset
|
6912 } |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9854
diff
changeset
|
6913 } |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9854
diff
changeset
|
6914 |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9854
diff
changeset
|
6915 return d; |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9854
diff
changeset
|
6916 } |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9854
diff
changeset
|
6917 #endif |
18068
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
6918 |
18100
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
6919 #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
|
6920 /* |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
6921 * 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
|
6922 */ |
18100
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
6923 int |
18068
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
6924 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
|
6925 { |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
6926 char_u *p; |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
6927 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
|
6928 |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
6929 if (val == NULL) |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
6930 p = wp->w_p_culopt; |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
6931 else |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
6932 p = val; |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
6933 while (*p != NUL) |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
6934 { |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
6935 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
|
6936 { |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
6937 p += 4; |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
6938 culopt_flags_new |= CULOPT_LINE; |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
6939 } |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
6940 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
|
6941 { |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
6942 p += 4; |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
6943 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
|
6944 } |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
6945 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
|
6946 { |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
6947 p += 6; |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
6948 culopt_flags_new |= CULOPT_NBR; |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
6949 } |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
6950 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
|
6951 { |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
6952 p += 10; |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
6953 culopt_flags_new |= CULOPT_SCRLINE; |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
6954 } |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
6955 |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
6956 if (*p != ',' && *p != NUL) |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
6957 return FAIL; |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
6958 if (*p == ',') |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
6959 ++p; |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
6960 } |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
6961 |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
6962 // 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
|
6963 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
|
6964 return FAIL; |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
6965 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
|
6966 |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
6967 return OK; |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
6968 } |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
6969 #endif |