Mercurial > vim
annotate src/option.c @ 30998:10aa54743543 v9.0.0834
patch 9.0.0834: warning for missing return type
Commit: https://github.com/vim/vim/commit/f8ea10677d007befbb6f24cd20f35c3bf71c1296
Author: Sam James <sam@gentoo.org>
Date: Sat Nov 5 15:13:50 2022 +0000
patch 9.0.0834: warning for missing return type
Problem: Warning for missing return type.
Solution: Add "int". (San James, closes https://github.com/vim/vim/issues/11496)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 05 Nov 2022 16:15:03 +0100 |
parents | 685ee8453163 |
children | 2a1a4a13b396 |
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); |
22234
b5abb88d5700
patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents:
21672
diff
changeset
|
40 static char_u *find_dup_item(char_u *origval, char_u *newval, long_u flags); |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7697
diff
changeset
|
41 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
|
42 static void didset_options(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7697
diff
changeset
|
43 static void didset_options2(void); |
681 | 44 #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
|
45 static long_u *insecure_flag(int opt_idx, int opt_flags); |
681 | 46 #else |
47 # define insecure_flag(opt_idx, opt_flags) (&options[opt_idx].flags) | |
48 #endif | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15207
diff
changeset
|
49 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
|
50 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
|
51 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
|
52 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
|
53 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
|
54 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
|
55 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
|
56 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
|
57 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
|
58 static int istermoption(struct vimoption *p); |
26441
65ab0b035dd8
patch 8.2.3751: cannot assign a lambda to an option that takes a function
Bram Moolenaar <Bram@vim.org>
parents:
26400
diff
changeset
|
59 static char_u *get_varp_scope(struct vimoption *p, int scope); |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7697
diff
changeset
|
60 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
|
61 static void check_win_options(win_T *win); |
26441
65ab0b035dd8
patch 8.2.3751: cannot assign a lambda to an option that takes a function
Bram Moolenaar <Bram@vim.org>
parents:
26400
diff
changeset
|
62 static void option_value2string(struct vimoption *, int scope); |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7697
diff
changeset
|
63 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
|
64 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
|
65 static void paste_option_changed(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7697
diff
changeset
|
66 static void compatible_set(void); |
7 | 67 |
68 /* | |
69 * Initialize the options, first part. | |
70 * | |
71 * 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
|
72 * If "clean_arg" is TRUE Vim was started with --clean. |
7 | 73 */ |
74 void | |
13361
65c29bd4548b
patch 8.0.1554: custom plugins loaded with --clean
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
75 set_init_1(int clean_arg) |
7 | 76 { |
77 char_u *p; | |
78 int opt_idx; | |
835 | 79 long_u n; |
7 | 80 |
81 #ifdef FEAT_LANGMAP | |
82 langmap_init(); | |
83 #endif | |
84 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
85 // Be Vi compatible by default |
7 | 86 p_cp = TRUE; |
87 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
88 // Use POSIX compatibility when $VIM_POSIX is set. |
164 | 89 if (mch_getenv((char_u *)"VIM_POSIX") != NULL) |
168 | 90 { |
164 | 91 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
|
92 set_string_default("shm", (char_u *)SHM_POSIX); |
168 | 93 } |
164 | 94 |
7 | 95 /* |
96 * Find default value for 'shell' option. | |
161 | 97 * Don't use it if it is empty. |
7 | 98 */ |
161 | 99 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
|
100 #if defined(MSWIN) |
161 | 101 || ((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
|
102 || ((p = (char_u *)default_shell()) != NULL && *p != NUL) |
7 | 103 #endif |
161 | 104 ) |
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
|
105 #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
|
106 { |
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 // 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
|
108 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
|
109 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
|
110 |
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 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
|
112 { |
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 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
|
114 cmd = alloc(len); |
18243
463da8586749
patch 8.1.2116: no check for out of memory
Bram Moolenaar <Bram@vim.org>
parents:
18241
diff
changeset
|
115 if (cmd != NULL) |
463da8586749
patch 8.1.2116: no check for out of memory
Bram Moolenaar <Bram@vim.org>
parents:
18241
diff
changeset
|
116 { |
463da8586749
patch 8.1.2116: no check for out of memory
Bram Moolenaar <Bram@vim.org>
parents:
18241
diff
changeset
|
117 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
|
118 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
|
119 vim_free(cmd); |
463da8586749
patch 8.1.2116: no check for out of memory
Bram Moolenaar <Bram@vim.org>
parents:
18241
diff
changeset
|
120 } |
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
|
121 } |
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 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
|
123 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
|
124 } |
85160a3649b9
patch 8.1.2115: MS-Windows: shell commands fail if &shell contains a space
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
125 #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
|
126 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
|
127 #endif |
7 | 128 |
129 /* | |
130 * Set the default for 'backupskip' to include environment variables for | |
131 * temp files. | |
132 */ | |
133 { | |
29879
77141226eb2e
patch 9.0.0278: the +wildignore feature is nearly always available
Bram Moolenaar <Bram@vim.org>
parents:
29853
diff
changeset
|
134 #ifdef UNIX |
7 | 135 static char *(names[4]) = {"", "TMPDIR", "TEMP", "TMP"}; |
29879
77141226eb2e
patch 9.0.0278: the +wildignore feature is nearly always available
Bram Moolenaar <Bram@vim.org>
parents:
29853
diff
changeset
|
136 #else |
7 | 137 static char *(names[3]) = {"TMPDIR", "TEMP", "TMP"}; |
29879
77141226eb2e
patch 9.0.0278: the +wildignore feature is nearly always available
Bram Moolenaar <Bram@vim.org>
parents:
29853
diff
changeset
|
138 #endif |
170 | 139 int len; |
140 garray_T ga; | |
141 int mustfree; | |
22234
b5abb88d5700
patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents:
21672
diff
changeset
|
142 char_u *item; |
b5abb88d5700
patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents:
21672
diff
changeset
|
143 |
b5abb88d5700
patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents:
21672
diff
changeset
|
144 opt_idx = findoption((char_u *)"backupskip"); |
7 | 145 |
146 ga_init2(&ga, 1, 100); | |
24768
7334bf933510
patch 8.2.2922: computing array length is done in various ways
Bram Moolenaar <Bram@vim.org>
parents:
24747
diff
changeset
|
147 for (n = 0; n < (long)ARRAY_LENGTH(names); ++n) |
7 | 148 { |
170 | 149 mustfree = FALSE; |
29879
77141226eb2e
patch 9.0.0278: the +wildignore feature is nearly always available
Bram Moolenaar <Bram@vim.org>
parents:
29853
diff
changeset
|
150 #ifdef UNIX |
7 | 151 if (*names[n] == NUL) |
29879
77141226eb2e
patch 9.0.0278: the +wildignore feature is nearly always available
Bram Moolenaar <Bram@vim.org>
parents:
29853
diff
changeset
|
152 # ifdef MACOS_X |
13664
f64c5e636c9f
patch 8.0.1704: 'backupskip' default doesn't work for Mac
Christian Brabandt <cb@256bit.org>
parents:
13632
diff
changeset
|
153 p = (char_u *)"/private/tmp"; |
29879
77141226eb2e
patch 9.0.0278: the +wildignore feature is nearly always available
Bram Moolenaar <Bram@vim.org>
parents:
29853
diff
changeset
|
154 # else |
7 | 155 p = (char_u *)"/tmp"; |
29879
77141226eb2e
patch 9.0.0278: the +wildignore feature is nearly always available
Bram Moolenaar <Bram@vim.org>
parents:
29853
diff
changeset
|
156 # endif |
7 | 157 else |
29879
77141226eb2e
patch 9.0.0278: the +wildignore feature is nearly always available
Bram Moolenaar <Bram@vim.org>
parents:
29853
diff
changeset
|
158 #endif |
170 | 159 p = vim_getenv((char_u *)names[n], &mustfree); |
7 | 160 if (p != NULL && *p != NUL) |
161 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
162 // First time count the NUL, otherwise count the ','. |
835 | 163 len = (int)STRLEN(p) + 3; |
22234
b5abb88d5700
patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents:
21672
diff
changeset
|
164 item = alloc(len); |
b5abb88d5700
patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents:
21672
diff
changeset
|
165 STRCPY(item, p); |
b5abb88d5700
patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents:
21672
diff
changeset
|
166 add_pathsep(item); |
b5abb88d5700
patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents:
21672
diff
changeset
|
167 STRCAT(item, "*"); |
b5abb88d5700
patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents:
21672
diff
changeset
|
168 if (find_dup_item(ga.ga_data, item, options[opt_idx].flags) |
b5abb88d5700
patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents:
21672
diff
changeset
|
169 == NULL |
b5abb88d5700
patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents:
21672
diff
changeset
|
170 && ga_grow(&ga, len) == OK) |
7 | 171 { |
172 if (ga.ga_len > 0) | |
173 STRCAT(ga.ga_data, ","); | |
22234
b5abb88d5700
patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents:
21672
diff
changeset
|
174 STRCAT(ga.ga_data, item); |
7 | 175 ga.ga_len += len; |
176 } | |
22234
b5abb88d5700
patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents:
21672
diff
changeset
|
177 vim_free(item); |
7 | 178 } |
170 | 179 if (mustfree) |
180 vim_free(p); | |
7 | 181 } |
182 if (ga.ga_data != NULL) | |
183 { | |
184 set_string_default("bsk", ga.ga_data); | |
185 vim_free(ga.ga_data); | |
186 } | |
187 } | |
188 | |
189 /* | |
190 * 'maxmemtot' and 'maxmem' may have to be adjusted for available memory | |
191 */ | |
192 opt_idx = findoption((char_u *)"maxmemtot"); | |
838 | 193 if (opt_idx >= 0) |
194 { | |
7 | 195 #if !defined(HAVE_AVAIL_MEM) && !defined(HAVE_TOTAL_MEM) |
838 | 196 if (options[opt_idx].def_val[VI_DEFAULT] == (char_u *)0L) |
197 #endif | |
198 { | |
28337
1cd053ebb5fc
patch 8.2.4694: avoidance of #elif causes more preproc nesting
Bram Moolenaar <Bram@vim.org>
parents:
28177
diff
changeset
|
199 #if defined(HAVE_AVAIL_MEM) |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
200 // Use amount of memory available at this moment. |
3634 | 201 n = (mch_avail_mem(FALSE) >> 1); |
28337
1cd053ebb5fc
patch 8.2.4694: avoidance of #elif causes more preproc nesting
Bram Moolenaar <Bram@vim.org>
parents:
28177
diff
changeset
|
202 #elif defined(HAVE_TOTAL_MEM) |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
203 // Use amount of memory available to Vim. |
1110 | 204 n = (mch_total_mem(FALSE) >> 1); |
28337
1cd053ebb5fc
patch 8.2.4694: avoidance of #elif causes more preproc nesting
Bram Moolenaar <Bram@vim.org>
parents:
28177
diff
changeset
|
205 #else |
838 | 206 n = (0x7fffffff >> 11); |
7 | 207 #endif |
208 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)n; | |
838 | 209 opt_idx = findoption((char_u *)"maxmem"); |
210 if (opt_idx >= 0) | |
211 { | |
212 #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
|
213 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
|
214 || (long)(long_i)options[opt_idx].def_val[VI_DEFAULT] == 0L) |
838 | 215 #endif |
216 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)n; | |
217 } | |
218 } | |
7 | 219 } |
220 | |
221 { | |
222 char_u *cdpath; | |
223 char_u *buf; | |
224 int i; | |
225 int j; | |
170 | 226 int mustfree = FALSE; |
7 | 227 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
228 // Initialize the 'cdpath' option's default value. |
170 | 229 cdpath = vim_getenv((char_u *)"CDPATH", &mustfree); |
7 | 230 if (cdpath != NULL) |
231 { | |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16730
diff
changeset
|
232 buf = alloc((STRLEN(cdpath) << 1) + 2); |
7 | 233 if (buf != NULL) |
234 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
235 buf[0] = ','; // start with ",", current dir first |
7 | 236 j = 1; |
237 for (i = 0; cdpath[i] != NUL; ++i) | |
238 { | |
239 if (vim_ispathlistsep(cdpath[i])) | |
240 buf[j++] = ','; | |
241 else | |
242 { | |
243 if (cdpath[i] == ' ' || cdpath[i] == ',') | |
244 buf[j++] = '\\'; | |
245 buf[j++] = cdpath[i]; | |
246 } | |
247 } | |
248 buf[j] = NUL; | |
249 opt_idx = findoption((char_u *)"cdpath"); | |
838 | 250 if (opt_idx >= 0) |
251 { | |
252 options[opt_idx].def_val[VI_DEFAULT] = buf; | |
253 options[opt_idx].flags |= P_DEF_ALLOCED; | |
254 } | |
2445
04dae202d316
Fixes for coverity warnings.
Bram Moolenaar <bram@vim.org>
parents:
2394
diff
changeset
|
255 else |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
256 vim_free(buf); // cannot happen |
7 | 257 } |
170 | 258 if (mustfree) |
259 vim_free(cdpath); | |
7 | 260 } |
261 } | |
262 | |
28337
1cd053ebb5fc
patch 8.2.4694: avoidance of #elif causes more preproc nesting
Bram Moolenaar <Bram@vim.org>
parents:
28177
diff
changeset
|
263 #if defined(FEAT_POSTSCRIPT) && \ |
1cd053ebb5fc
patch 8.2.4694: avoidance of #elif causes more preproc nesting
Bram Moolenaar <Bram@vim.org>
parents:
28177
diff
changeset
|
264 (defined(MSWIN) || defined(VMS) || defined(MAC) || defined(hpux)) |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
265 // Set print encoding on platforms that don't default to latin1 |
7 | 266 set_string_default("penc", |
7408
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
7334
diff
changeset
|
267 # if defined(MSWIN) |
7 | 268 (char_u *)"cp1252" |
28337
1cd053ebb5fc
patch 8.2.4694: avoidance of #elif causes more preproc nesting
Bram Moolenaar <Bram@vim.org>
parents:
28177
diff
changeset
|
269 # elif defined(VMS) |
7 | 270 (char_u *)"dec-mcs" |
28337
1cd053ebb5fc
patch 8.2.4694: avoidance of #elif causes more preproc nesting
Bram Moolenaar <Bram@vim.org>
parents:
28177
diff
changeset
|
271 # elif defined(MAC) |
7 | 272 (char_u *)"mac-roman" |
28337
1cd053ebb5fc
patch 8.2.4694: avoidance of #elif causes more preproc nesting
Bram Moolenaar <Bram@vim.org>
parents:
28177
diff
changeset
|
273 # else // HPUX |
7 | 274 (char_u *)"hp-roman8" |
275 # endif | |
276 ); | |
277 #endif | |
278 | |
279 #ifdef FEAT_POSTSCRIPT | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
280 // 'printexpr' must be allocated to be able to evaluate it. |
7 | 281 set_string_default("pexpr", |
8212
05b88224cea1
commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce
Christian Brabandt <cb@256bit.org>
parents:
8182
diff
changeset
|
282 # if defined(MSWIN) |
8 | 283 (char_u *)"system('copy' . ' ' . v:fname_in . (&printdevice == '' ? ' LPT1:' : (' \"' . &printdevice . '\"'))) . delete(v:fname_in)" |
28337
1cd053ebb5fc
patch 8.2.4694: avoidance of #elif causes more preproc nesting
Bram Moolenaar <Bram@vim.org>
parents:
28177
diff
changeset
|
284 # elif defined(VMS) |
7 | 285 (char_u *)"system('print/delete' . (&printdevice == '' ? '' : ' /queue=' . &printdevice) . ' ' . v:fname_in)" |
286 | |
28337
1cd053ebb5fc
patch 8.2.4694: avoidance of #elif causes more preproc nesting
Bram Moolenaar <Bram@vim.org>
parents:
28177
diff
changeset
|
287 # else |
7 | 288 (char_u *)"system('lpr' . (&printdevice == '' ? '' : ' -P' . &printdevice) . ' ' . v:fname_in) . delete(v:fname_in) + v:shell_error" |
289 # endif | |
290 ); | |
291 #endif | |
292 | |
293 /* | |
294 * Set all the options (except the terminal options) to their default | |
295 * value. Also set the global value for local options. | |
296 */ | |
297 set_options_default(0); | |
298 | |
27509
ef32ea9fbe6c
patch 8.2.4282: restricted mode requires the -Z command line option
Bram Moolenaar <Bram@vim.org>
parents:
27490
diff
changeset
|
299 #ifdef UNIX |
ef32ea9fbe6c
patch 8.2.4282: restricted mode requires the -Z command line option
Bram Moolenaar <Bram@vim.org>
parents:
27490
diff
changeset
|
300 // Force restricted-mode on for "nologin" or "false" $SHELL |
ef32ea9fbe6c
patch 8.2.4282: restricted mode requires the -Z command line option
Bram Moolenaar <Bram@vim.org>
parents:
27490
diff
changeset
|
301 p = get_isolated_shell_name(); |
ef32ea9fbe6c
patch 8.2.4282: restricted mode requires the -Z command line option
Bram Moolenaar <Bram@vim.org>
parents:
27490
diff
changeset
|
302 if (p != NULL) |
ef32ea9fbe6c
patch 8.2.4282: restricted mode requires the -Z command line option
Bram Moolenaar <Bram@vim.org>
parents:
27490
diff
changeset
|
303 { |
ef32ea9fbe6c
patch 8.2.4282: restricted mode requires the -Z command line option
Bram Moolenaar <Bram@vim.org>
parents:
27490
diff
changeset
|
304 if (fnamecmp(p, "nologin") == 0 || fnamecmp(p, "false") == 0) |
ef32ea9fbe6c
patch 8.2.4282: restricted mode requires the -Z command line option
Bram Moolenaar <Bram@vim.org>
parents:
27490
diff
changeset
|
305 restricted = TRUE; |
ef32ea9fbe6c
patch 8.2.4282: restricted mode requires the -Z command line option
Bram Moolenaar <Bram@vim.org>
parents:
27490
diff
changeset
|
306 vim_free(p); |
ef32ea9fbe6c
patch 8.2.4282: restricted mode requires the -Z command line option
Bram Moolenaar <Bram@vim.org>
parents:
27490
diff
changeset
|
307 } |
ef32ea9fbe6c
patch 8.2.4282: restricted mode requires the -Z command line option
Bram Moolenaar <Bram@vim.org>
parents:
27490
diff
changeset
|
308 #endif |
ef32ea9fbe6c
patch 8.2.4282: restricted mode requires the -Z command line option
Bram Moolenaar <Bram@vim.org>
parents:
27490
diff
changeset
|
309 |
13361
65c29bd4548b
patch 8.0.1554: custom plugins loaded with --clean
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
310 #ifdef CLEAN_RUNTIMEPATH |
65c29bd4548b
patch 8.0.1554: custom plugins loaded with --clean
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
311 if (clean_arg) |
65c29bd4548b
patch 8.0.1554: custom plugins loaded with --clean
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
312 { |
65c29bd4548b
patch 8.0.1554: custom plugins loaded with --clean
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
313 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
|
314 if (opt_idx >= 0) |
65c29bd4548b
patch 8.0.1554: custom plugins loaded with --clean
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
315 { |
65c29bd4548b
patch 8.0.1554: custom plugins loaded with --clean
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
316 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
|
317 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
|
318 } |
65c29bd4548b
patch 8.0.1554: custom plugins loaded with --clean
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
319 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
|
320 if (opt_idx >= 0) |
65c29bd4548b
patch 8.0.1554: custom plugins loaded with --clean
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
321 { |
65c29bd4548b
patch 8.0.1554: custom plugins loaded with --clean
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
322 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
|
323 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
|
324 } |
65c29bd4548b
patch 8.0.1554: custom plugins loaded with --clean
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
325 } |
65c29bd4548b
patch 8.0.1554: custom plugins loaded with --clean
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
326 #endif |
65c29bd4548b
patch 8.0.1554: custom plugins loaded with --clean
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
327 |
7 | 328 #ifdef FEAT_GUI |
329 if (found_reverse_arg) | |
28457
4dcccb2673fe
patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents:
28405
diff
changeset
|
330 set_option_value_give_err((char_u *)"bg", 0L, (char_u *)"dark", 0); |
7 | 331 #endif |
332 | |
333 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
|
334 curbuf->b_p_ar = -1; // no local 'autoread' value |
5446 | 335 curbuf->b_p_ul = NO_LOCAL_UNDOLEVEL; |
7 | 336 check_buf_options(curbuf); |
337 check_win_options(curwin); | |
338 check_options(); | |
339 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
340 // Must be before option_expand(), because that one needs vim_isIDc() |
7 | 341 didset_options(); |
342 | |
744 | 343 #ifdef FEAT_SPELL |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
344 // 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
|
345 // didset_options() because it only depends on 'encoding'. |
227 | 346 init_spell_chartab(); |
347 #endif | |
348 | |
7 | 349 /* |
350 * Expand environment variables and things like "~" for the defaults. | |
351 * If option_expand() returns non-NULL the variable is expanded. This can | |
352 * only happen for non-indirect options. | |
353 * Also set the default to the expanded value, so ":set" does not list | |
354 * them. | |
355 * Don't set the P_ALLOCED flag, because we don't want to free the | |
356 * default. | |
357 */ | |
18100
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
358 for (opt_idx = 0; !istermoption_idx(opt_idx); opt_idx++) |
7 | 359 { |
360 if ((options[opt_idx].flags & P_GETTEXT) | |
361 && options[opt_idx].var != NULL) | |
362 p = (char_u *)_(*(char **)options[opt_idx].var); | |
363 else | |
364 p = option_expand(opt_idx, NULL); | |
365 if (p != NULL && (p = vim_strsave(p)) != NULL) | |
366 { | |
367 *(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
|
368 // VIMEXP |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
369 // 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
|
370 // 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
|
371 // split P_DEF_ALLOCED in two. |
7 | 372 if (options[opt_idx].flags & P_DEF_ALLOCED) |
373 vim_free(options[opt_idx].def_val[VI_DEFAULT]); | |
374 options[opt_idx].def_val[VI_DEFAULT] = p; | |
375 options[opt_idx].flags |= P_DEF_ALLOCED; | |
376 } | |
377 } | |
378 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
379 save_file_ff(curbuf); // Buffer is unchanged |
7 | 380 |
381 #if defined(FEAT_ARABIC) | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
382 // Detect use of mlterm. |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
383 // 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
|
384 // abilities (bidi namely). |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
385 // 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
|
386 // instead of an environment variable due to inheritance. |
7 | 387 if (mch_getenv((char_u *)"MLTERM") != NULL) |
28457
4dcccb2673fe
patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents:
28405
diff
changeset
|
388 set_option_value_give_err((char_u *)"tbidi", 1L, NULL, 0); |
7 | 389 #endif |
390 | |
7040
17a3fa77e941
commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents:
7034
diff
changeset
|
391 didset_options2(); |
7 | 392 |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15858
diff
changeset
|
393 # if defined(MSWIN) && defined(FEAT_GETTEXT) |
7 | 394 /* |
395 * If $LANG isn't set, try to get a good value for it. This makes the | |
396 * right language be used automatically. Don't do this for English. | |
397 */ | |
398 if (mch_getenv((char_u *)"LANG") == NULL) | |
399 { | |
400 char buf[20]; | |
401 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
402 // 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
|
403 // 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
|
404 // only the first two. |
7 | 405 n = GetLocaleInfo(LOCALE_USER_DEFAULT, LOCALE_SABBREVLANGNAME, |
406 (LPTSTR)buf, 20); | |
407 if (n >= 2 && STRNICMP(buf, "en", 2) != 0) | |
408 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
409 // There are a few exceptions (probably more) |
7 | 410 if (STRNICMP(buf, "cht", 3) == 0 || STRNICMP(buf, "zht", 3) == 0) |
411 STRCPY(buf, "zh_TW"); | |
412 else if (STRNICMP(buf, "chs", 3) == 0 | |
413 || STRNICMP(buf, "zhc", 3) == 0) | |
414 STRCPY(buf, "zh_CN"); | |
415 else if (STRNICMP(buf, "jp", 2) == 0) | |
416 STRCPY(buf, "ja"); | |
417 else | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
418 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
|
419 vim_setenv((char_u *)"LANG", (char_u *)buf); |
7 | 420 } |
421 } | |
28337
1cd053ebb5fc
patch 8.2.4694: avoidance of #elif causes more preproc nesting
Bram Moolenaar <Bram@vim.org>
parents:
28177
diff
changeset
|
422 # elif defined(MACOS_CONVERT) |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
423 // Moved to os_mac_conv.c to avoid dependency problems. |
1622 | 424 mac_lang_init(); |
7 | 425 # endif |
426 | |
24747
7da496081b91
patch 8.2.2912: MS-Windows: most users expect using Unicode
Bram Moolenaar <Bram@vim.org>
parents:
24600
diff
changeset
|
427 # ifdef MSWIN |
7da496081b91
patch 8.2.2912: MS-Windows: most users expect using Unicode
Bram Moolenaar <Bram@vim.org>
parents:
24600
diff
changeset
|
428 // MS-Windows has builtin support for conversion to and from Unicode, using |
7da496081b91
patch 8.2.2912: MS-Windows: most users expect using Unicode
Bram Moolenaar <Bram@vim.org>
parents:
24600
diff
changeset
|
429 // "utf-8" for 'encoding' should work best for most users. |
7da496081b91
patch 8.2.2912: MS-Windows: most users expect using Unicode
Bram Moolenaar <Bram@vim.org>
parents:
24600
diff
changeset
|
430 p = vim_strsave((char_u *)ENC_DFLT); |
7da496081b91
patch 8.2.2912: MS-Windows: most users expect using Unicode
Bram Moolenaar <Bram@vim.org>
parents:
24600
diff
changeset
|
431 # else |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
432 // enc_locale() will try to find the encoding of the current locale. |
24747
7da496081b91
patch 8.2.2912: MS-Windows: most users expect using Unicode
Bram Moolenaar <Bram@vim.org>
parents:
24600
diff
changeset
|
433 // This works best for properly configured systems, old and new. |
7 | 434 p = enc_locale(); |
24747
7da496081b91
patch 8.2.2912: MS-Windows: most users expect using Unicode
Bram Moolenaar <Bram@vim.org>
parents:
24600
diff
changeset
|
435 # endif |
7 | 436 if (p != NULL) |
437 { | |
438 char_u *save_enc; | |
439 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
440 // Try setting 'encoding' and check if the value is valid. |
24747
7da496081b91
patch 8.2.2912: MS-Windows: most users expect using Unicode
Bram Moolenaar <Bram@vim.org>
parents:
24600
diff
changeset
|
441 // If not, go back to the default encoding. |
7 | 442 save_enc = p_enc; |
443 p_enc = p; | |
1080 | 444 if (STRCMP(p_enc, "gb18030") == 0) |
445 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
446 // 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
|
447 // 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
|
448 // still support conversion between gb18030 and utf-8. |
1080 | 449 p_enc = vim_strsave((char_u *)"cp936"); |
450 vim_free(p); | |
451 } | |
7 | 452 if (mb_init() == NULL) |
453 { | |
454 opt_idx = findoption((char_u *)"encoding"); | |
838 | 455 if (opt_idx >= 0) |
456 { | |
457 options[opt_idx].def_val[VI_DEFAULT] = p_enc; | |
458 options[opt_idx].flags |= P_DEF_ALLOCED; | |
459 } | |
7 | 460 |
12716
351cf7c67bbe
patch 8.0.1236: Mac features are confusing
Christian Brabandt <cb@256bit.org>
parents:
12636
diff
changeset
|
461 #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
|
462 if (STRCMP(p_enc, "latin1") == 0 || enc_utf8) |
24 | 463 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
464 // 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
|
465 // 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
|
466 // set. |
24 | 467 set_string_option_direct((char_u *)"isp", -1, |
719 | 468 ISP_LATIN1, OPT_FREE, SID_NONE); |
714 | 469 set_string_option_direct((char_u *)"isk", -1, |
470 ISK_LATIN1, OPT_FREE, SID_NONE); | |
471 opt_idx = findoption((char_u *)"isp"); | |
838 | 472 if (opt_idx >= 0) |
473 options[opt_idx].def_val[VIM_DEFAULT] = ISP_LATIN1; | |
714 | 474 opt_idx = findoption((char_u *)"isk"); |
838 | 475 if (opt_idx >= 0) |
476 options[opt_idx].def_val[VIM_DEFAULT] = ISK_LATIN1; | |
24 | 477 (void)init_chartab(); |
478 } | |
479 #endif | |
480 | |
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
|
481 #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
|
482 // 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
|
483 // 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
|
484 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
|
485 # 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
|
486 (!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
|
487 # endif |
28809
d0241e74bfdb
patch 8.2.4928: various white space and cosmetic mistakes
Bram Moolenaar <Bram@vim.org>
parents:
28804
diff
changeset
|
488 GetACP() != GetConsoleCP()) |
7 | 489 { |
490 char buf[50]; | |
491 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
492 // 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
|
493 // 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
|
494 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
|
495 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
|
496 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
|
497 sprintf(buf, "cp%ld", (long)GetConsoleCP()); |
7 | 498 p_tenc = vim_strsave((char_u *)buf); |
499 if (p_tenc != NULL) | |
500 { | |
501 opt_idx = findoption((char_u *)"termencoding"); | |
838 | 502 if (opt_idx >= 0) |
503 { | |
504 options[opt_idx].def_val[VI_DEFAULT] = p_tenc; | |
505 options[opt_idx].flags |= P_DEF_ALLOCED; | |
506 } | |
7 | 507 convert_setup(&input_conv, p_tenc, p_enc); |
508 convert_setup(&output_conv, p_enc, p_tenc); | |
509 } | |
510 else | |
511 p_tenc = empty_option; | |
512 } | |
15597
536dd2bc5ac9
patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
513 #endif |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15858
diff
changeset
|
514 #if defined(MSWIN) |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
515 // $HOME may have characters in active code page. |
170 | 516 init_homedir(); |
15597
536dd2bc5ac9
patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
517 #endif |
7 | 518 } |
519 else | |
520 { | |
521 vim_free(p_enc); | |
522 p_enc = save_enc; | |
523 } | |
524 } | |
525 | |
526 #ifdef FEAT_MULTI_LANG | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
527 // Set the default for 'helplang'. |
7 | 528 set_helplang_default(get_mess_lang()); |
529 #endif | |
530 } | |
531 | |
24912
02fa8d72e4e3
patch 8.2.2993: 'fileencodings' default value should depend on 'encoding'
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
532 static char_u *fencs_utf8_default = (char_u *)"ucs-bom,utf-8,default,latin1"; |
02fa8d72e4e3
patch 8.2.2993: 'fileencodings' default value should depend on 'encoding'
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
533 |
02fa8d72e4e3
patch 8.2.2993: 'fileencodings' default value should depend on 'encoding'
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
534 /* |
02fa8d72e4e3
patch 8.2.2993: 'fileencodings' default value should depend on 'encoding'
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
535 * Set the "fileencodings" option to the default value for when 'encoding' is |
02fa8d72e4e3
patch 8.2.2993: 'fileencodings' default value should depend on 'encoding'
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
536 * utf-8. |
02fa8d72e4e3
patch 8.2.2993: 'fileencodings' default value should depend on 'encoding'
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
537 */ |
02fa8d72e4e3
patch 8.2.2993: 'fileencodings' default value should depend on 'encoding'
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
538 void |
02fa8d72e4e3
patch 8.2.2993: 'fileencodings' default value should depend on 'encoding'
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
539 set_fencs_unicode() |
02fa8d72e4e3
patch 8.2.2993: 'fileencodings' default value should depend on 'encoding'
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
540 { |
02fa8d72e4e3
patch 8.2.2993: 'fileencodings' default value should depend on 'encoding'
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
541 set_string_option_direct((char_u *)"fencs", -1, fencs_utf8_default, |
02fa8d72e4e3
patch 8.2.2993: 'fileencodings' default value should depend on 'encoding'
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
542 OPT_FREE, 0); |
02fa8d72e4e3
patch 8.2.2993: 'fileencodings' default value should depend on 'encoding'
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
543 } |
02fa8d72e4e3
patch 8.2.2993: 'fileencodings' default value should depend on 'encoding'
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
544 |
7 | 545 /* |
546 * Set an option to its default value. | |
547 * This does not take care of side effects! | |
548 */ | |
549 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
550 set_option_default( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
551 int opt_idx, |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
552 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
|
553 int compatible) // use Vi default value |
7 | 554 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
555 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
|
556 int dvi; // index in def_val[] |
7 | 557 long_u flags; |
681 | 558 long_u *flagsp; |
7 | 559 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0; |
560 | |
561 varp = get_varp_scope(&(options[opt_idx]), both ? OPT_LOCAL : opt_flags); | |
562 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
|
563 if (varp != NULL) // skip hidden option, nothing to do for it |
7 | 564 { |
565 dvi = ((flags & P_VI_DEF) || compatible) ? VI_DEFAULT : VIM_DEFAULT; | |
566 if (flags & P_STRING) | |
567 { | |
24912
02fa8d72e4e3
patch 8.2.2993: 'fileencodings' default value should depend on 'encoding'
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
568 // 'fencs' default value depends on 'encoding' |
02fa8d72e4e3
patch 8.2.2993: 'fileencodings' default value should depend on 'encoding'
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
569 if (options[opt_idx].var == (char_u *)&p_fencs && enc_utf8) |
02fa8d72e4e3
patch 8.2.2993: 'fileencodings' default value should depend on 'encoding'
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
570 set_fencs_unicode(); |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
571 // 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
|
572 // freeing and allocating the value. |
24912
02fa8d72e4e3
patch 8.2.2993: 'fileencodings' default value should depend on 'encoding'
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
573 else if (options[opt_idx].indir != PV_NONE) |
13845
f22db93bd887
patch 8.0.1794: duplicate term options after renaming
Christian Brabandt <cb@256bit.org>
parents:
13823
diff
changeset
|
574 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
|
575 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
|
576 else |
f22db93bd887
patch 8.0.1794: duplicate term options after renaming
Christian Brabandt <cb@256bit.org>
parents:
13823
diff
changeset
|
577 { |
f22db93bd887
patch 8.0.1794: duplicate term options after renaming
Christian Brabandt <cb@256bit.org>
parents:
13823
diff
changeset
|
578 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
|
579 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
|
580 *(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
|
581 options[opt_idx].flags &= ~P_ALLOCED; |
7 | 582 } |
583 } | |
584 else if (flags & P_NUM) | |
585 { | |
1017 | 586 if (options[opt_idx].indir == PV_SCROLL) |
7 | 587 win_comp_scroll(curwin); |
588 else | |
589 { | |
15713
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15701
diff
changeset
|
590 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
|
591 |
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15701
diff
changeset
|
592 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
|
593 || (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
|
594 // '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
|
595 // 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
|
596 *(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
|
597 else |
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15701
diff
changeset
|
598 *(long *)varp = def_val; |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
599 // May also set global value for local option. |
7 | 600 if (both) |
601 *(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
|
602 def_val; |
7 | 603 } |
604 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
605 else // P_BOOL |
7 | 606 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
607 // 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
|
608 // MSVC |
840 | 609 *(int *)varp = (int)(long)(long_i)options[opt_idx].def_val[dvi]; |
1111 | 610 #ifdef UNIX |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
611 // 'modeline' defaults to off for root |
1111 | 612 if (options[opt_idx].indir == PV_ML && getuid() == ROOT_UID) |
613 *(int *)varp = FALSE; | |
614 #endif | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
615 // May also set global value for local option. |
7 | 616 if (both) |
617 *(int *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) = | |
618 *(int *)varp; | |
619 } | |
634 | 620 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
621 // The default value is not insecure. |
681 | 622 flagsp = insecure_flag(opt_idx, opt_flags); |
623 *flagsp = *flagsp & ~P_INSECURE; | |
7 | 624 } |
625 | |
626 #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
|
627 set_option_sctx_idx(opt_idx, opt_flags, current_sctx); |
7 | 628 #endif |
629 } | |
630 | |
631 /* | |
632 * 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
|
633 * When "opt_flags" is non-zero skip 'encoding'. |
7 | 634 */ |
635 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
636 set_options_default( |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
637 int opt_flags) // OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL |
7 | 638 { |
639 int i; | |
640 win_T *wp; | |
671 | 641 tabpage_T *tp; |
7 | 642 |
18100
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
643 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
|
644 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
|
645 && (opt_flags == 0 |
15597
536dd2bc5ac9
patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
646 || (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
|
647 # if defined(FEAT_CRYPT) |
7040
17a3fa77e941
commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents:
7034
diff
changeset
|
648 && 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
|
649 && 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
|
650 # endif |
15597
536dd2bc5ac9
patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
651 ))) |
7 | 652 set_option_default(i, opt_flags, p_cp); |
653 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
654 // The 'scroll' option must be computed for all windows. |
671 | 655 FOR_ALL_TAB_WINDOWS(tp, wp) |
7 | 656 win_comp_scroll(wp); |
6205 | 657 parse_cino(curbuf); |
7 | 658 } |
659 | |
660 /* | |
661 * Set the Vi-default value of a string option. | |
662 * 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
|
663 * 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
|
664 */ |
51521b8a370c
patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect
Christian Brabandt <cb@256bit.org>
parents:
13154
diff
changeset
|
665 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
|
666 set_string_default_esc(char *name, char_u *val, int escape) |
7 | 667 { |
668 char_u *p; | |
669 int opt_idx; | |
670 | |
13162
51521b8a370c
patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect
Christian Brabandt <cb@256bit.org>
parents:
13154
diff
changeset
|
671 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
|
672 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
|
673 else |
51521b8a370c
patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect
Christian Brabandt <cb@256bit.org>
parents:
13154
diff
changeset
|
674 p = vim_strsave(val); |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
675 if (p != NULL) // we don't want a NULL |
7 | 676 { |
677 opt_idx = findoption((char_u *)name); | |
838 | 678 if (opt_idx >= 0) |
679 { | |
680 if (options[opt_idx].flags & P_DEF_ALLOCED) | |
681 vim_free(options[opt_idx].def_val[VI_DEFAULT]); | |
682 options[opt_idx].def_val[VI_DEFAULT] = p; | |
683 options[opt_idx].flags |= P_DEF_ALLOCED; | |
684 } | |
7 | 685 } |
686 } | |
687 | |
13162
51521b8a370c
patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect
Christian Brabandt <cb@256bit.org>
parents:
13154
diff
changeset
|
688 void |
51521b8a370c
patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect
Christian Brabandt <cb@256bit.org>
parents:
13154
diff
changeset
|
689 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
|
690 { |
51521b8a370c
patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect
Christian Brabandt <cb@256bit.org>
parents:
13154
diff
changeset
|
691 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
|
692 } |
51521b8a370c
patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect
Christian Brabandt <cb@256bit.org>
parents:
13154
diff
changeset
|
693 |
7 | 694 /* |
22234
b5abb88d5700
patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents:
21672
diff
changeset
|
695 * For an option value that contains comma separated items, find "newval" in |
b5abb88d5700
patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents:
21672
diff
changeset
|
696 * "origval". Return NULL if not found. |
b5abb88d5700
patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents:
21672
diff
changeset
|
697 */ |
b5abb88d5700
patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents:
21672
diff
changeset
|
698 static char_u * |
b5abb88d5700
patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents:
21672
diff
changeset
|
699 find_dup_item(char_u *origval, char_u *newval, long_u flags) |
b5abb88d5700
patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents:
21672
diff
changeset
|
700 { |
22242
f7871f02ddcd
patch 8.2.1670: a couple of gcc compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
22234
diff
changeset
|
701 int bs = 0; |
22234
b5abb88d5700
patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents:
21672
diff
changeset
|
702 size_t newlen; |
b5abb88d5700
patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents:
21672
diff
changeset
|
703 char_u *s; |
b5abb88d5700
patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents:
21672
diff
changeset
|
704 |
b5abb88d5700
patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents:
21672
diff
changeset
|
705 if (origval == NULL) |
b5abb88d5700
patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents:
21672
diff
changeset
|
706 return NULL; |
b5abb88d5700
patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents:
21672
diff
changeset
|
707 |
b5abb88d5700
patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents:
21672
diff
changeset
|
708 newlen = STRLEN(newval); |
b5abb88d5700
patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents:
21672
diff
changeset
|
709 for (s = origval; *s != NUL; ++s) |
b5abb88d5700
patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents:
21672
diff
changeset
|
710 { |
b5abb88d5700
patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents:
21672
diff
changeset
|
711 if ((!(flags & P_COMMA) |
b5abb88d5700
patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents:
21672
diff
changeset
|
712 || s == origval |
b5abb88d5700
patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents:
21672
diff
changeset
|
713 || (s[-1] == ',' && !(bs & 1))) |
b5abb88d5700
patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents:
21672
diff
changeset
|
714 && STRNCMP(s, newval, newlen) == 0 |
b5abb88d5700
patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents:
21672
diff
changeset
|
715 && (!(flags & P_COMMA) |
b5abb88d5700
patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents:
21672
diff
changeset
|
716 || s[newlen] == ',' |
b5abb88d5700
patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents:
21672
diff
changeset
|
717 || s[newlen] == NUL)) |
b5abb88d5700
patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents:
21672
diff
changeset
|
718 return s; |
b5abb88d5700
patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents:
21672
diff
changeset
|
719 // Count backslashes. Only a comma with an even number of backslashes |
b5abb88d5700
patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents:
21672
diff
changeset
|
720 // or a single backslash preceded by a comma before it is recognized as |
b5abb88d5700
patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents:
21672
diff
changeset
|
721 // a separator. |
b5abb88d5700
patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents:
21672
diff
changeset
|
722 if ((s > origval + 1 |
b5abb88d5700
patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents:
21672
diff
changeset
|
723 && s[-1] == '\\' |
b5abb88d5700
patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents:
21672
diff
changeset
|
724 && s[-2] != ',') |
b5abb88d5700
patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents:
21672
diff
changeset
|
725 || (s == origval + 1 |
b5abb88d5700
patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents:
21672
diff
changeset
|
726 && s[-1] == '\\')) |
b5abb88d5700
patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents:
21672
diff
changeset
|
727 ++bs; |
b5abb88d5700
patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents:
21672
diff
changeset
|
728 else |
b5abb88d5700
patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents:
21672
diff
changeset
|
729 bs = 0; |
b5abb88d5700
patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents:
21672
diff
changeset
|
730 } |
b5abb88d5700
patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents:
21672
diff
changeset
|
731 return NULL; |
b5abb88d5700
patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents:
21672
diff
changeset
|
732 } |
b5abb88d5700
patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents:
21672
diff
changeset
|
733 |
b5abb88d5700
patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents:
21672
diff
changeset
|
734 /* |
7 | 735 * Set the Vi-default value of a number option. |
736 * Used for 'lines' and 'columns'. | |
737 */ | |
738 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
739 set_number_default(char *name, long val) |
7 | 740 { |
838 | 741 int opt_idx; |
742 | |
743 opt_idx = findoption((char_u *)name); | |
744 if (opt_idx >= 0) | |
840 | 745 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)(long_i)val; |
7 | 746 } |
747 | |
27018
268f6a3511df
patch 8.2.4038: various code not used when features are disabled
Bram Moolenaar <Bram@vim.org>
parents:
26966
diff
changeset
|
748 #if defined(FEAT_PROP_POPUP) || defined(PROTO) |
16843
283037126560
patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
749 /* |
283037126560
patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
750 * 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
|
751 * 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
|
752 * 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
|
753 */ |
283037126560
patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
754 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
|
755 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
|
756 { |
283037126560
patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
757 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
|
758 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
|
759 |
283037126560
patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
760 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
|
761 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
|
762 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
|
763 |
18100
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
764 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
|
765 { |
283037126560
patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
766 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
|
767 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
|
768 |
283037126560
patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
769 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
|
770 && (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
|
771 && !(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
|
772 && !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
|
773 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
|
774 } |
283037126560
patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
775 |
283037126560
patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
776 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
|
777 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
|
778 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
|
779 } |
27018
268f6a3511df
patch 8.2.4038: various code not used when features are disabled
Bram Moolenaar <Bram@vim.org>
parents:
26966
diff
changeset
|
780 #endif |
16843
283037126560
patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
781 |
359 | 782 #if defined(EXITFREE) || defined(PROTO) |
783 /* | |
784 * Free all options. | |
785 */ | |
786 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
787 free_all_options(void) |
359 | 788 { |
789 int i; | |
790 | |
18100
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
791 for (i = 0; !istermoption_idx(i); i++) |
359 | 792 { |
793 if (options[i].indir == PV_NONE) | |
794 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
795 // 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
|
796 if ((options[i].flags & P_ALLOCED) && options[i].var != NULL) |
359 | 797 free_string_option(*(char_u **)options[i].var); |
798 if (options[i].flags & P_DEF_ALLOCED) | |
799 free_string_option(options[i].def_val[VI_DEFAULT]); | |
800 } | |
801 else if (options[i].var != VAR_WIN | |
802 && (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
|
803 // buffer-local option: free global value |
25419
8a0234862ce6
patch 8.2.3246: memory use after free
Bram Moolenaar <Bram@vim.org>
parents:
25380
diff
changeset
|
804 clear_string_option((char_u **)options[i].var); |
359 | 805 } |
26175
6b4f017d7005
patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents:
25990
diff
changeset
|
806 free_operatorfunc_option(); |
26268
3aa48d4e3dc8
patch 8.2.3665: cannot use a lambda for 'tagfunc'
Bram Moolenaar <Bram@vim.org>
parents:
26193
diff
changeset
|
807 free_tagfunc_option(); |
359 | 808 } |
809 #endif | |
810 | |
811 | |
7 | 812 /* |
813 * Initialize the options, part two: After getting Rows and Columns and | |
814 * setting 'term'. | |
815 */ | |
816 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
817 set_init_2(void) |
7 | 818 { |
164 | 819 int idx; |
820 | |
7 | 821 /* |
12718
f8f505ffc0a6
patch 8.0.1237: ":set scroll&" often gives an error
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
822 * '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
|
823 * which results in the actual value computed from the window height. |
7 | 824 */ |
168 | 825 idx = findoption((char_u *)"scroll"); |
838 | 826 if (idx >= 0 && !(options[idx].flags & P_WAS_SET)) |
168 | 827 set_option_default(idx, OPT_LOCAL, p_cp); |
7 | 828 comp_col(); |
829 | |
164 | 830 /* |
831 * 'window' is only for backwards compatibility with Vi. | |
832 * Default is Rows - 1. | |
833 */ | |
857 | 834 if (!option_was_set((char_u *)"window")) |
164 | 835 p_window = Rows - 1; |
836 set_number_default("window", Rows - 1); | |
837 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
838 // 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
|
839 #if !((defined(MSWIN)) && !defined(FEAT_GUI)) |
671 | 840 /* |
841 * If 'background' wasn't set by the user, try guessing the value, | |
842 * depending on the terminal name. Only need to check for terminals | |
843 * with a dark background, that can handle color. | |
844 */ | |
845 idx = findoption((char_u *)"bg"); | |
838 | 846 if (idx >= 0 && !(options[idx].flags & P_WAS_SET) |
847 && *term_bg_default() == 'd') | |
671 | 848 { |
694 | 849 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
|
850 // 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
|
851 // changed again |
671 | 852 options[idx].flags &= ~P_WAS_SET; |
7 | 853 } |
854 #endif | |
440 | 855 |
856 #ifdef CURSOR_SHAPE | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
857 parse_shape_opt(SHAPE_CURSOR); // set cursor shapes from 'guicursor' |
440 | 858 #endif |
859 #ifdef FEAT_MOUSESHAPE | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
860 parse_shape_opt(SHAPE_MOUSE); // set mouse shapes from 'mouseshape' |
440 | 861 #endif |
862 #ifdef FEAT_PRINTER | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
863 (void)parse_printoptions(); // parse 'printoptions' default value |
440 | 864 #endif |
7 | 865 } |
866 | |
867 /* | |
868 * Initialize the options, part three: After reading the .vimrc | |
869 */ | |
870 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
871 set_init_3(void) |
7 | 872 { |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15858
diff
changeset
|
873 #if defined(UNIX) || defined(MSWIN) |
7 | 874 /* |
875 * Set 'shellpipe' and 'shellredir', depending on the 'shell' option. | |
876 * This is done after other initializations, where 'shell' might have been | |
877 * set, but only if they have not been set before. | |
878 */ | |
879 char_u *p; | |
880 int idx_srr; | |
881 int do_srr; | |
7408
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
7334
diff
changeset
|
882 # ifdef FEAT_QUICKFIX |
7 | 883 int idx_sp; |
884 int do_sp; | |
7408
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
7334
diff
changeset
|
885 # endif |
7 | 886 |
887 idx_srr = findoption((char_u *)"srr"); | |
838 | 888 if (idx_srr < 0) |
889 do_srr = FALSE; | |
890 else | |
891 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
|
892 # ifdef FEAT_QUICKFIX |
7 | 893 idx_sp = findoption((char_u *)"sp"); |
838 | 894 if (idx_sp < 0) |
895 do_sp = FALSE; | |
896 else | |
897 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
|
898 # endif |
5867 | 899 p = get_isolated_shell_name(); |
7 | 900 if (p != NULL) |
901 { | |
902 /* | |
903 * Default for p_sp is "| tee", for p_srr is ">". | |
904 * For known shells it is changed here to include stderr. | |
905 */ | |
906 if ( fnamecmp(p, "csh") == 0 | |
907 || 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
|
908 # if defined(MSWIN) // also check with .exe extension |
7 | 909 || fnamecmp(p, "csh.exe") == 0 |
910 || fnamecmp(p, "tcsh.exe") == 0 | |
911 # endif | |
912 ) | |
913 { | |
7408
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
7334
diff
changeset
|
914 # if defined(FEAT_QUICKFIX) |
7 | 915 if (do_sp) |
916 { | |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15858
diff
changeset
|
917 # ifdef MSWIN |
7 | 918 p_sp = (char_u *)">&"; |
7408
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
7334
diff
changeset
|
919 # else |
7 | 920 p_sp = (char_u *)"|& tee"; |
7408
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
7334
diff
changeset
|
921 # endif |
7 | 922 options[idx_sp].def_val[VI_DEFAULT] = p_sp; |
923 } | |
7408
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
7334
diff
changeset
|
924 # endif |
7 | 925 if (do_srr) |
926 { | |
927 p_srr = (char_u *)">&"; | |
928 options[idx_srr].def_val[VI_DEFAULT] = p_srr; | |
929 } | |
930 } | |
25068
0ce24f734615
patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents:
24970
diff
changeset
|
931 # ifdef MSWIN |
25084
beff72446e2e
patch 8.2.3079: Powershell core not supported by default
Bram Moolenaar <Bram@vim.org>
parents:
25068
diff
changeset
|
932 // Windows PowerShell output is UTF-16 with BOM so re-encode to the |
beff72446e2e
patch 8.2.3079: Powershell core not supported by default
Bram Moolenaar <Bram@vim.org>
parents:
25068
diff
changeset
|
933 // current codepage. |
25068
0ce24f734615
patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents:
24970
diff
changeset
|
934 else if ( fnamecmp(p, "powershell") == 0 |
0ce24f734615
patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents:
24970
diff
changeset
|
935 || fnamecmp(p, "powershell.exe") == 0 |
0ce24f734615
patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents:
24970
diff
changeset
|
936 ) |
0ce24f734615
patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents:
24970
diff
changeset
|
937 { |
0ce24f734615
patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents:
24970
diff
changeset
|
938 # if defined(FEAT_QUICKFIX) |
0ce24f734615
patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents:
24970
diff
changeset
|
939 if (do_sp) |
0ce24f734615
patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents:
24970
diff
changeset
|
940 { |
0ce24f734615
patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents:
24970
diff
changeset
|
941 p_sp = (char_u *)"2>&1 | Out-File -Encoding default"; |
0ce24f734615
patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents:
24970
diff
changeset
|
942 options[idx_sp].def_val[VI_DEFAULT] = p_sp; |
0ce24f734615
patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents:
24970
diff
changeset
|
943 } |
0ce24f734615
patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents:
24970
diff
changeset
|
944 # endif |
0ce24f734615
patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents:
24970
diff
changeset
|
945 if (do_srr) |
0ce24f734615
patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents:
24970
diff
changeset
|
946 { |
0ce24f734615
patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents:
24970
diff
changeset
|
947 p_srr = (char_u *)"2>&1 | Out-File -Encoding default"; |
0ce24f734615
patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents:
24970
diff
changeset
|
948 options[idx_srr].def_val[VI_DEFAULT] = p_srr; |
0ce24f734615
patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents:
24970
diff
changeset
|
949 } |
0ce24f734615
patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents:
24970
diff
changeset
|
950 } |
0ce24f734615
patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents:
24970
diff
changeset
|
951 #endif |
7 | 952 else |
24600
cb4cb3ff5736
patch 8.2.2839: default redirection missing "ash" and "dash"
Bram Moolenaar <Bram@vim.org>
parents:
24476
diff
changeset
|
953 // Always use POSIX shell style redirection if we reach this |
7 | 954 if ( fnamecmp(p, "sh") == 0 |
955 || fnamecmp(p, "ksh") == 0 | |
2774 | 956 || fnamecmp(p, "mksh") == 0 |
957 || fnamecmp(p, "pdksh") == 0 | |
7 | 958 || fnamecmp(p, "zsh") == 0 |
836 | 959 || fnamecmp(p, "zsh-beta") == 0 |
7 | 960 || fnamecmp(p, "bash") == 0 |
5867 | 961 || fnamecmp(p, "fish") == 0 |
24600
cb4cb3ff5736
patch 8.2.2839: default redirection missing "ash" and "dash"
Bram Moolenaar <Bram@vim.org>
parents:
24476
diff
changeset
|
962 || fnamecmp(p, "ash") == 0 |
cb4cb3ff5736
patch 8.2.2839: default redirection missing "ash" and "dash"
Bram Moolenaar <Bram@vim.org>
parents:
24476
diff
changeset
|
963 || fnamecmp(p, "dash") == 0 |
25084
beff72446e2e
patch 8.2.3079: Powershell core not supported by default
Bram Moolenaar <Bram@vim.org>
parents:
25068
diff
changeset
|
964 || fnamecmp(p, "pwsh") == 0 |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15858
diff
changeset
|
965 # ifdef MSWIN |
7 | 966 || fnamecmp(p, "cmd") == 0 |
967 || fnamecmp(p, "sh.exe") == 0 | |
968 || fnamecmp(p, "ksh.exe") == 0 | |
2774 | 969 || fnamecmp(p, "mksh.exe") == 0 |
970 || fnamecmp(p, "pdksh.exe") == 0 | |
7 | 971 || fnamecmp(p, "zsh.exe") == 0 |
836 | 972 || fnamecmp(p, "zsh-beta.exe") == 0 |
7 | 973 || fnamecmp(p, "bash.exe") == 0 |
974 || fnamecmp(p, "cmd.exe") == 0 | |
24600
cb4cb3ff5736
patch 8.2.2839: default redirection missing "ash" and "dash"
Bram Moolenaar <Bram@vim.org>
parents:
24476
diff
changeset
|
975 || fnamecmp(p, "dash.exe") == 0 |
25084
beff72446e2e
patch 8.2.3079: Powershell core not supported by default
Bram Moolenaar <Bram@vim.org>
parents:
25068
diff
changeset
|
976 || fnamecmp(p, "pwsh.exe") == 0 |
7408
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
7334
diff
changeset
|
977 # endif |
7 | 978 ) |
7408
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
7334
diff
changeset
|
979 { |
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
7334
diff
changeset
|
980 # if defined(FEAT_QUICKFIX) |
7 | 981 if (do_sp) |
982 { | |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15858
diff
changeset
|
983 # ifdef MSWIN |
7 | 984 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
|
985 # else |
25084
beff72446e2e
patch 8.2.3079: Powershell core not supported by default
Bram Moolenaar <Bram@vim.org>
parents:
25068
diff
changeset
|
986 if (fnamecmp(p, "pwsh") == 0) |
beff72446e2e
patch 8.2.3079: Powershell core not supported by default
Bram Moolenaar <Bram@vim.org>
parents:
25068
diff
changeset
|
987 p_sp = (char_u *)">%s 2>&1"; |
beff72446e2e
patch 8.2.3079: Powershell core not supported by default
Bram Moolenaar <Bram@vim.org>
parents:
25068
diff
changeset
|
988 else |
beff72446e2e
patch 8.2.3079: Powershell core not supported by default
Bram Moolenaar <Bram@vim.org>
parents:
25068
diff
changeset
|
989 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
|
990 # endif |
7 | 991 options[idx_sp].def_val[VI_DEFAULT] = p_sp; |
992 } | |
7408
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
7334
diff
changeset
|
993 # endif |
7 | 994 if (do_srr) |
995 { | |
996 p_srr = (char_u *)">%s 2>&1"; | |
997 options[idx_srr].def_val[VI_DEFAULT] = p_srr; | |
998 } | |
999 } | |
1000 vim_free(p); | |
1001 } | |
1002 #endif | |
1003 | |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15858
diff
changeset
|
1004 #if defined(MSWIN) |
7 | 1005 /* |
3352 | 1006 * Set 'shellcmdflag', 'shellxquote', and 'shellquote' depending on the |
1007 * 'shell' option. | |
7 | 1008 * This is done after other initializations, where 'shell' might have been |
25068
0ce24f734615
patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents:
24970
diff
changeset
|
1009 * set, but only if they have not been set before. |
0ce24f734615
patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents:
24970
diff
changeset
|
1010 * Default values depend on shell (cmd.exe is default shell): |
0ce24f734615
patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents:
24970
diff
changeset
|
1011 * |
0ce24f734615
patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents:
24970
diff
changeset
|
1012 * p_shcf p_sxq |
28809
d0241e74bfdb
patch 8.2.4928: various white space and cosmetic mistakes
Bram Moolenaar <Bram@vim.org>
parents:
28804
diff
changeset
|
1013 * cmd.exe - "/c" "(" |
25068
0ce24f734615
patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents:
24970
diff
changeset
|
1014 * powershell.exe - "-Command" "\"" |
25084
beff72446e2e
patch 8.2.3079: Powershell core not supported by default
Bram Moolenaar <Bram@vim.org>
parents:
25068
diff
changeset
|
1015 * pwsh.exe - "-c" "\"" |
25068
0ce24f734615
patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents:
24970
diff
changeset
|
1016 * "sh" like shells - "-c" "\"" |
0ce24f734615
patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents:
24970
diff
changeset
|
1017 * |
0ce24f734615
patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents:
24970
diff
changeset
|
1018 * For Win32 p_sxq is set instead of p_shq to include shell redirection. |
7 | 1019 */ |
25068
0ce24f734615
patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents:
24970
diff
changeset
|
1020 if (strstr((char *)gettail(p_sh), "powershell") != NULL) |
0ce24f734615
patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents:
24970
diff
changeset
|
1021 { |
0ce24f734615
patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents:
24970
diff
changeset
|
1022 int idx_opt; |
0ce24f734615
patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents:
24970
diff
changeset
|
1023 |
0ce24f734615
patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents:
24970
diff
changeset
|
1024 idx_opt = findoption((char_u *)"shcf"); |
0ce24f734615
patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents:
24970
diff
changeset
|
1025 if (idx_opt >= 0 && !(options[idx_opt].flags & P_WAS_SET)) |
0ce24f734615
patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents:
24970
diff
changeset
|
1026 { |
0ce24f734615
patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents:
24970
diff
changeset
|
1027 p_shcf = (char_u*)"-Command"; |
0ce24f734615
patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents:
24970
diff
changeset
|
1028 options[idx_opt].def_val[VI_DEFAULT] = p_shcf; |
0ce24f734615
patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents:
24970
diff
changeset
|
1029 } |
0ce24f734615
patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents:
24970
diff
changeset
|
1030 |
0ce24f734615
patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents:
24970
diff
changeset
|
1031 idx_opt = findoption((char_u *)"sxq"); |
0ce24f734615
patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents:
24970
diff
changeset
|
1032 if (idx_opt >= 0 && !(options[idx_opt].flags & P_WAS_SET)) |
0ce24f734615
patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents:
24970
diff
changeset
|
1033 { |
0ce24f734615
patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents:
24970
diff
changeset
|
1034 p_sxq = (char_u*)"\""; |
0ce24f734615
patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents:
24970
diff
changeset
|
1035 options[idx_opt].def_val[VI_DEFAULT] = p_sxq; |
0ce24f734615
patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents:
24970
diff
changeset
|
1036 } |
0ce24f734615
patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents:
24970
diff
changeset
|
1037 } |
0ce24f734615
patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents:
24970
diff
changeset
|
1038 else if (strstr((char *)gettail(p_sh), "sh") != NULL) |
7 | 1039 { |
1040 int idx3; | |
1041 | |
1042 idx3 = findoption((char_u *)"shcf"); | |
838 | 1043 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET)) |
7 | 1044 { |
1045 p_shcf = (char_u *)"-c"; | |
1046 options[idx3].def_val[VI_DEFAULT] = p_shcf; | |
1047 } | |
1048 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1049 // Somehow Win32 requires the quotes around the redirection too |
7 | 1050 idx3 = findoption((char_u *)"sxq"); |
838 | 1051 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET)) |
7 | 1052 { |
1053 p_sxq = (char_u *)"\""; | |
1054 options[idx3].def_val[VI_DEFAULT] = p_sxq; | |
1055 } | |
1056 } | |
3352 | 1057 else if (strstr((char *)gettail(p_sh), "cmd.exe") != NULL) |
1058 { | |
1059 int idx3; | |
1060 | |
1061 /* | |
1062 * cmd.exe on Windows will strip the first and last double quote given | |
1063 * on the command line, e.g. most of the time things like: | |
1064 * cmd /c "my path/to/echo" "my args to echo" | |
1065 * become: | |
1066 * my path/to/echo" "my args to echo | |
1067 * when executed. | |
1068 * | |
3357 | 1069 * To avoid this, set shellxquote to surround the command in |
1070 * parenthesis. This appears to make most commands work, without | |
1071 * breaking commands that worked previously, such as | |
1072 * '"path with spaces/cmd" "a&b"'. | |
3352 | 1073 */ |
1074 idx3 = findoption((char_u *)"sxq"); | |
1075 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET)) | |
1076 { | |
3357 | 1077 p_sxq = (char_u *)"("; |
3352 | 1078 options[idx3].def_val[VI_DEFAULT] = p_sxq; |
1079 } | |
1080 | |
1081 idx3 = findoption((char_u *)"shcf"); | |
1082 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET)) | |
1083 { | |
3357 | 1084 p_shcf = (char_u *)"/c"; |
3352 | 1085 options[idx3].def_val[VI_DEFAULT] = p_shcf; |
1086 } | |
1087 } | |
7 | 1088 #endif |
1089 | |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11107
diff
changeset
|
1090 if (BUFEMPTY()) |
8659
72e2f387466f
commit https://github.com/vim/vim/commit/364fa5c7ec2a99a791c8f8b66fe70b0bf1dd9a41
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1091 { |
72e2f387466f
commit https://github.com/vim/vim/commit/364fa5c7ec2a99a791c8f8b66fe70b0bf1dd9a41
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1092 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
|
1093 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1094 // 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
|
1095 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
|
1096 set_fileformat(default_fileformat(), OPT_LOCAL); |
72e2f387466f
commit https://github.com/vim/vim/commit/364fa5c7ec2a99a791c8f8b66fe70b0bf1dd9a41
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1097 } |
72e2f387466f
commit https://github.com/vim/vim/commit/364fa5c7ec2a99a791c8f8b66fe70b0bf1dd9a41
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1098 |
7 | 1099 set_title_defaults(); |
1100 } | |
1101 | |
1102 #if defined(FEAT_MULTI_LANG) || defined(PROTO) | |
1103 /* | |
1104 * When 'helplang' is still at its default value, set it to "lang". | |
1105 * Only the first two characters of "lang" are used. | |
1106 */ | |
1107 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1108 set_helplang_default(char_u *lang) |
7 | 1109 { |
1110 int idx; | |
1111 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1112 if (lang == NULL || STRLEN(lang) < 2) // safety check |
7 | 1113 return; |
1114 idx = findoption((char_u *)"hlg"); | |
838 | 1115 if (idx >= 0 && !(options[idx].flags & P_WAS_SET)) |
7 | 1116 { |
1117 if (options[idx].flags & P_ALLOCED) | |
1118 free_string_option(p_hlg); | |
1119 p_hlg = vim_strsave(lang); | |
1120 if (p_hlg == NULL) | |
1121 p_hlg = empty_option; | |
1122 else | |
18 | 1123 { |
14997
0058cdd5b752
patch 8.1.0510: filter test fails when $LANG is C.UTF-8
Bram Moolenaar <Bram@vim.org>
parents:
14968
diff
changeset
|
1124 // zh_CN becomes "cn", zh_TW becomes "tw" |
18 | 1125 if (STRNICMP(p_hlg, "zh_", 3) == 0 && STRLEN(p_hlg) >= 5) |
1126 { | |
1127 p_hlg[0] = TOLOWER_ASC(p_hlg[3]); | |
1128 p_hlg[1] = TOLOWER_ASC(p_hlg[4]); | |
1129 } | |
14997
0058cdd5b752
patch 8.1.0510: filter test fails when $LANG is C.UTF-8
Bram Moolenaar <Bram@vim.org>
parents:
14968
diff
changeset
|
1130 // 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
|
1131 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
|
1132 { |
0058cdd5b752
patch 8.1.0510: filter test fails when $LANG is C.UTF-8
Bram Moolenaar <Bram@vim.org>
parents:
14968
diff
changeset
|
1133 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
|
1134 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
|
1135 } |
7 | 1136 p_hlg[2] = NUL; |
18 | 1137 } |
7 | 1138 options[idx].flags |= P_ALLOCED; |
1139 } | |
1140 } | |
1141 #endif | |
1142 | |
1143 /* | |
1144 * 'title' and 'icon' only default to true if they have not been set or reset | |
1145 * in .vimrc and we can read the old value. | |
1146 * When 'title' and 'icon' have been reset in .vimrc, we won't even check if | |
1147 * they can be reset. This reduces startup time when using X on a remote | |
1148 * machine. | |
1149 */ | |
1150 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1151 set_title_defaults(void) |
7 | 1152 { |
1153 int idx1; | |
1154 long val; | |
1155 | |
1156 /* | |
1157 * If GUI is (going to be) used, we can always set the window title and | |
1158 * icon name. Saves a bit of time, because the X11 display server does | |
1159 * not need to be contacted. | |
1160 */ | |
1161 idx1 = findoption((char_u *)"title"); | |
838 | 1162 if (idx1 >= 0 && !(options[idx1].flags & P_WAS_SET)) |
7 | 1163 { |
1164 #ifdef FEAT_GUI | |
1165 if (gui.starting || gui.in_use) | |
1166 val = TRUE; | |
1167 else | |
1168 #endif | |
1169 val = mch_can_restore_title(); | |
840 | 1170 options[idx1].def_val[VI_DEFAULT] = (char_u *)(long_i)val; |
7 | 1171 p_title = val; |
1172 } | |
1173 idx1 = findoption((char_u *)"icon"); | |
838 | 1174 if (idx1 >= 0 && !(options[idx1].flags & P_WAS_SET)) |
7 | 1175 { |
1176 #ifdef FEAT_GUI | |
1177 if (gui.starting || gui.in_use) | |
1178 val = TRUE; | |
1179 else | |
1180 #endif | |
1181 val = mch_can_restore_icon(); | |
840 | 1182 options[idx1].def_val[VI_DEFAULT] = (char_u *)(long_i)val; |
7 | 1183 p_icon = val; |
1184 } | |
1185 } | |
1186 | |
19137
69f0e9b5c107
patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
1187 void |
69f0e9b5c107
patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
1188 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
|
1189 { |
69f0e9b5c107
patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
1190 int flags = 0; |
69f0e9b5c107
patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
1191 |
69f0e9b5c107
patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
1192 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
|
1193 flags = OPT_LOCAL; |
69f0e9b5c107
patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
1194 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
|
1195 flags = OPT_GLOBAL; |
69f0e9b5c107
patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
1196 #if defined(FEAT_EVAL) && defined(FEAT_BROWSE) |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
22242
diff
changeset
|
1197 if ((cmdmod.cmod_flags & CMOD_BROWSE) && flags == 0) |
19137
69f0e9b5c107
patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
1198 ex_options(eap); |
69f0e9b5c107
patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
1199 else |
69f0e9b5c107
patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
1200 #endif |
69f0e9b5c107
patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
1201 { |
69f0e9b5c107
patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
1202 if (eap->forceit) |
69f0e9b5c107
patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
1203 flags |= OPT_ONECOLUMN; |
69f0e9b5c107
patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
1204 (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
|
1205 } |
69f0e9b5c107
patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
1206 } |
69f0e9b5c107
patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
1207 |
30403
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1208 typedef enum { |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1209 OP_NONE = 0, |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1210 OP_ADDING, // "opt+=arg" |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1211 OP_PREPENDING, // "opt^=arg" |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1212 OP_REMOVING, // "opt-=arg" |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1213 } set_op_T; |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1214 |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1215 /* |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1216 * Part of do_set() for string options. |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1217 * Returns FAIL on failure, do not process further options. |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1218 */ |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1219 static int |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1220 do_set_string( |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1221 int opt_idx, |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1222 int opt_flags, |
30409
aea53db7eeec
patch 9.0.0540: assigning stack variable to argument confuses Coverity
Bram Moolenaar <Bram@vim.org>
parents:
30403
diff
changeset
|
1223 char_u **argp, |
30403
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1224 int nextchar, |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1225 set_op_T op_arg, |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1226 int flags, |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1227 int cp_val, |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1228 char_u *varp_arg, |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1229 char *errbuf, |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1230 int *value_checked, |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1231 char **errmsg) |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1232 { |
30409
aea53db7eeec
patch 9.0.0540: assigning stack variable to argument confuses Coverity
Bram Moolenaar <Bram@vim.org>
parents:
30403
diff
changeset
|
1233 char_u *arg = *argp; |
30403
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1234 set_op_T op = op_arg; |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1235 char_u *varp = varp_arg; |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1236 char_u *save_arg = NULL; |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1237 char_u *s = NULL; |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1238 char_u *oldval = NULL; // previous value if *varp |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1239 char_u *newval; |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1240 char_u *origval = NULL; |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1241 char_u *origval_l = NULL; |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1242 char_u *origval_g = NULL; |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1243 #if defined(FEAT_EVAL) |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1244 char_u *saved_origval = NULL; |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1245 char_u *saved_origval_l = NULL; |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1246 char_u *saved_origval_g = NULL; |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1247 char_u *saved_newval = NULL; |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1248 #endif |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1249 unsigned newlen; |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1250 int comma; |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1251 char_u whichwrap[80]; |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1252 |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1253 // When using ":set opt=val" for a global option |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1254 // with a local value the local value will be |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1255 // reset, use the global value here. |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1256 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0 |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1257 && ((int)options[opt_idx].indir & PV_BOTH)) |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1258 varp = options[opt_idx].var; |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1259 |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1260 // The old value is kept until we are sure that the new value is valid. |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1261 oldval = *(char_u **)varp; |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1262 |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1263 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0) |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1264 { |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1265 origval_l = *(char_u **)get_varp_scope( |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1266 &(options[opt_idx]), OPT_LOCAL); |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1267 origval_g = *(char_u **)get_varp_scope( |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1268 &(options[opt_idx]), OPT_GLOBAL); |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1269 |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1270 // A global-local string option might have an empty option as value to |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1271 // indicate that the global value should be used. |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1272 if (((int)options[opt_idx].indir & PV_BOTH) |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1273 && origval_l == empty_option) |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1274 origval_l = origval_g; |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1275 } |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1276 |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1277 // When setting the local value of a global option, the old value may be |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1278 // the global value. |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1279 if (((int)options[opt_idx].indir & PV_BOTH) && (opt_flags & OPT_LOCAL)) |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1280 origval = *(char_u **)get_varp(&options[opt_idx]); |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1281 else |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1282 origval = oldval; |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1283 |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1284 if (nextchar == '&') // set to default val |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1285 { |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1286 newval = options[opt_idx].def_val[((flags & P_VI_DEF) || cp_val) |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1287 ? VI_DEFAULT : VIM_DEFAULT]; |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1288 if ((char_u **)varp == &p_bg) |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1289 { |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1290 // guess the value of 'background' |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1291 #ifdef FEAT_GUI |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1292 if (gui.in_use) |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1293 newval = gui_bg_default(); |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1294 else |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1295 #endif |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1296 newval = term_bg_default(); |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1297 } |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1298 else if ((char_u **)varp == &p_fencs && enc_utf8) |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1299 newval = fencs_utf8_default; |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1300 |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1301 // expand environment variables and ~ since the default value was |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1302 // already expanded, only required when an environment variable was set |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1303 // later |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1304 if (newval == NULL) |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1305 newval = empty_option; |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1306 else |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1307 { |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1308 s = option_expand(opt_idx, newval); |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1309 if (s == NULL) |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1310 s = newval; |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1311 newval = vim_strsave(s); |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1312 } |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1313 } |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1314 else if (nextchar == '<') // set to global val |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1315 { |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1316 newval = vim_strsave(*(char_u **)get_varp_scope( |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1317 &(options[opt_idx]), OPT_GLOBAL)); |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1318 } |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1319 else |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1320 { |
30409
aea53db7eeec
patch 9.0.0540: assigning stack variable to argument confuses Coverity
Bram Moolenaar <Bram@vim.org>
parents:
30403
diff
changeset
|
1321 ++arg; // jump to after the '=' or ':' |
30403
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1322 |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1323 /* |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1324 * Set 'keywordprg' to ":help" if an empty |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1325 * value was passed to :set by the user. |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1326 */ |
30409
aea53db7eeec
patch 9.0.0540: assigning stack variable to argument confuses Coverity
Bram Moolenaar <Bram@vim.org>
parents:
30403
diff
changeset
|
1327 if (varp == (char_u *)&p_kp && (*arg == NUL || *arg == ' ')) |
30403
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1328 { |
30409
aea53db7eeec
patch 9.0.0540: assigning stack variable to argument confuses Coverity
Bram Moolenaar <Bram@vim.org>
parents:
30403
diff
changeset
|
1329 save_arg = arg; |
30417
6a1862bfb280
patch 9.0.0544: minor issues with setting a string option
Bram Moolenaar <Bram@vim.org>
parents:
30409
diff
changeset
|
1330 arg = (char_u *)":help"; |
30403
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1331 } |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1332 /* |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1333 * Convert 'backspace' number to string, for |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1334 * adding, prepending and removing string. |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1335 */ |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1336 else if (varp == (char_u *)&p_bs && VIM_ISDIGIT(**(char_u **)varp)) |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1337 { |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1338 int i = getdigits((char_u **)varp); |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1339 |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1340 switch (i) |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1341 { |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1342 case 0: |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1343 *(char_u **)varp = empty_option; |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1344 break; |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1345 case 1: |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1346 *(char_u **)varp = vim_strsave((char_u *)"indent,eol"); |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1347 break; |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1348 case 2: |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1349 *(char_u **)varp = vim_strsave( |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1350 (char_u *)"indent,eol,start"); |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1351 break; |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1352 case 3: |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1353 *(char_u **)varp = vim_strsave( |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1354 (char_u *)"indent,eol,nostop"); |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1355 break; |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1356 } |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1357 vim_free(oldval); |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1358 if (origval == oldval) |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1359 origval = *(char_u **)varp; |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1360 if (origval_l == oldval) |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1361 origval_l = *(char_u **)varp; |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1362 if (origval_g == oldval) |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1363 origval_g = *(char_u **)varp; |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1364 oldval = *(char_u **)varp; |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1365 } |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1366 /* |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1367 * Convert 'whichwrap' number to string, for backwards compatibility |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1368 * with Vim 3.0. |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1369 */ |
30409
aea53db7eeec
patch 9.0.0540: assigning stack variable to argument confuses Coverity
Bram Moolenaar <Bram@vim.org>
parents:
30403
diff
changeset
|
1370 else if (varp == (char_u *)&p_ww && VIM_ISDIGIT(*arg)) |
30403
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1371 { |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1372 *whichwrap = NUL; |
30409
aea53db7eeec
patch 9.0.0540: assigning stack variable to argument confuses Coverity
Bram Moolenaar <Bram@vim.org>
parents:
30403
diff
changeset
|
1373 int i = getdigits(&arg); |
30403
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1374 if (i & 1) |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1375 STRCAT(whichwrap, "b,"); |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1376 if (i & 2) |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1377 STRCAT(whichwrap, "s,"); |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1378 if (i & 4) |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1379 STRCAT(whichwrap, "h,l,"); |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1380 if (i & 8) |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1381 STRCAT(whichwrap, "<,>,"); |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1382 if (i & 16) |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1383 STRCAT(whichwrap, "[,],"); |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1384 if (*whichwrap != NUL) // remove trailing , |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1385 whichwrap[STRLEN(whichwrap) - 1] = NUL; |
30409
aea53db7eeec
patch 9.0.0540: assigning stack variable to argument confuses Coverity
Bram Moolenaar <Bram@vim.org>
parents:
30403
diff
changeset
|
1386 save_arg = arg; |
aea53db7eeec
patch 9.0.0540: assigning stack variable to argument confuses Coverity
Bram Moolenaar <Bram@vim.org>
parents:
30403
diff
changeset
|
1387 arg = (char_u *)whichwrap; |
30403
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1388 } |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1389 /* |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1390 * Remove '>' before 'dir' and 'bdir', for backwards compatibility with |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1391 * version 3.0 |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1392 */ |
30409
aea53db7eeec
patch 9.0.0540: assigning stack variable to argument confuses Coverity
Bram Moolenaar <Bram@vim.org>
parents:
30403
diff
changeset
|
1393 else if (*arg == '>' && (varp == (char_u *)&p_dir |
30403
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1394 || varp == (char_u *)&p_bdir)) |
30409
aea53db7eeec
patch 9.0.0540: assigning stack variable to argument confuses Coverity
Bram Moolenaar <Bram@vim.org>
parents:
30403
diff
changeset
|
1395 ++arg; |
30403
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1396 |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1397 /* |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1398 * Copy the new string into allocated memory. |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1399 * Can't use set_string_option_direct(), because we need to remove the |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1400 * backslashes. |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1401 */ |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1402 // get a bit too much |
30409
aea53db7eeec
patch 9.0.0540: assigning stack variable to argument confuses Coverity
Bram Moolenaar <Bram@vim.org>
parents:
30403
diff
changeset
|
1403 newlen = (unsigned)STRLEN(arg) + 1; |
30403
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1404 if (op != OP_NONE) |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1405 newlen += (unsigned)STRLEN(origval) + 1; |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1406 newval = alloc(newlen); |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1407 if (newval == NULL) // out of mem, don't change |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1408 return FAIL; |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1409 s = newval; |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1410 |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1411 /* |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1412 * Copy the string, skip over escaped chars. |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1413 * For MS-DOS and WIN32 backslashes before normal file name characters |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1414 * are not removed, and keep backslash at start, for "\\machine\path", |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1415 * but do remove it for "\\\\machine\\path". |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1416 * The reverse is found in ExpandOldSetting(). |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1417 */ |
30417
6a1862bfb280
patch 9.0.0544: minor issues with setting a string option
Bram Moolenaar <Bram@vim.org>
parents:
30409
diff
changeset
|
1418 while (*arg != NUL && !VIM_ISWHITE(*arg)) |
30403
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1419 { |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1420 int i; |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1421 |
30409
aea53db7eeec
patch 9.0.0540: assigning stack variable to argument confuses Coverity
Bram Moolenaar <Bram@vim.org>
parents:
30403
diff
changeset
|
1422 if (*arg == '\\' && arg[1] != NUL |
30403
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1423 #ifdef BACKSLASH_IN_FILENAME |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1424 && !((flags & P_EXPAND) |
30409
aea53db7eeec
patch 9.0.0540: assigning stack variable to argument confuses Coverity
Bram Moolenaar <Bram@vim.org>
parents:
30403
diff
changeset
|
1425 && vim_isfilec(arg[1]) |
aea53db7eeec
patch 9.0.0540: assigning stack variable to argument confuses Coverity
Bram Moolenaar <Bram@vim.org>
parents:
30403
diff
changeset
|
1426 && !VIM_ISWHITE(arg[1]) |
aea53db7eeec
patch 9.0.0540: assigning stack variable to argument confuses Coverity
Bram Moolenaar <Bram@vim.org>
parents:
30403
diff
changeset
|
1427 && (arg[1] != '\\' |
30417
6a1862bfb280
patch 9.0.0544: minor issues with setting a string option
Bram Moolenaar <Bram@vim.org>
parents:
30409
diff
changeset
|
1428 || (s == newval && arg[2] != '\\'))) |
30403
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1429 #endif |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1430 ) |
30409
aea53db7eeec
patch 9.0.0540: assigning stack variable to argument confuses Coverity
Bram Moolenaar <Bram@vim.org>
parents:
30403
diff
changeset
|
1431 ++arg; // remove backslash |
aea53db7eeec
patch 9.0.0540: assigning stack variable to argument confuses Coverity
Bram Moolenaar <Bram@vim.org>
parents:
30403
diff
changeset
|
1432 if (has_mbyte && (i = (*mb_ptr2len)(arg)) > 1) |
30403
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1433 { |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1434 // copy multibyte char |
30409
aea53db7eeec
patch 9.0.0540: assigning stack variable to argument confuses Coverity
Bram Moolenaar <Bram@vim.org>
parents:
30403
diff
changeset
|
1435 mch_memmove(s, arg, (size_t)i); |
aea53db7eeec
patch 9.0.0540: assigning stack variable to argument confuses Coverity
Bram Moolenaar <Bram@vim.org>
parents:
30403
diff
changeset
|
1436 arg += i; |
30403
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1437 s += i; |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1438 } |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1439 else |
30409
aea53db7eeec
patch 9.0.0540: assigning stack variable to argument confuses Coverity
Bram Moolenaar <Bram@vim.org>
parents:
30403
diff
changeset
|
1440 *s++ = *arg++; |
30403
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1441 } |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1442 *s = NUL; |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1443 |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1444 /* |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1445 * Expand environment variables and ~. |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1446 * Don't do it when adding without inserting a comma. |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1447 */ |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1448 if (op == OP_NONE || (flags & P_COMMA)) |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1449 { |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1450 s = option_expand(opt_idx, newval); |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1451 if (s != NULL) |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1452 { |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1453 vim_free(newval); |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1454 newlen = (unsigned)STRLEN(s) + 1; |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1455 if (op != OP_NONE) |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1456 newlen += (unsigned)STRLEN(origval) + 1; |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1457 newval = alloc(newlen); |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1458 if (newval == NULL) |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1459 return FAIL; |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1460 STRCPY(newval, s); |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1461 } |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1462 } |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1463 |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1464 // locate newval[] in origval[] when removing it |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1465 // and when adding to avoid duplicates |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1466 int len = 0; |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1467 if (op == OP_REMOVING || (flags & P_NODUP)) |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1468 { |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1469 len = (int)STRLEN(newval); |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1470 s = find_dup_item(origval, newval, flags); |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1471 |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1472 // do not add if already there |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1473 if ((op == OP_ADDING || op == OP_PREPENDING) && s != NULL) |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1474 { |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1475 op = OP_NONE; |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1476 STRCPY(newval, origval); |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1477 } |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1478 |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1479 // if no duplicate, move pointer to end of original value |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1480 if (s == NULL) |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1481 s = origval + (int)STRLEN(origval); |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1482 } |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1483 |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1484 // concatenate the two strings; add a ',' if needed |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1485 if (op == OP_ADDING || op == OP_PREPENDING) |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1486 { |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1487 comma = ((flags & P_COMMA) && *origval != NUL && *newval != NUL); |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1488 if (op == OP_ADDING) |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1489 { |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1490 len = (int)STRLEN(origval); |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1491 // strip a trailing comma, would get 2 |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1492 if (comma && len > 1 |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1493 && (flags & P_ONECOMMA) == P_ONECOMMA |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1494 && origval[len - 1] == ',' |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1495 && origval[len - 2] != '\\') |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1496 len--; |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1497 mch_memmove(newval + len + comma, newval, STRLEN(newval) + 1); |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1498 mch_memmove(newval, origval, (size_t)len); |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1499 } |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1500 else |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1501 { |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1502 len = (int)STRLEN(newval); |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1503 STRMOVE(newval + len + comma, origval); |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1504 } |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1505 if (comma) |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1506 newval[len] = ','; |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1507 } |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1508 |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1509 // Remove newval[] from origval[]. (Note: "len" has been set above and |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1510 // is used here). |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1511 if (op == OP_REMOVING) |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1512 { |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1513 STRCPY(newval, origval); |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1514 if (*s) |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1515 { |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1516 // may need to remove a comma |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1517 if (flags & P_COMMA) |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1518 { |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1519 if (s == origval) |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1520 { |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1521 // include comma after string |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1522 if (s[len] == ',') |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1523 ++len; |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1524 } |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1525 else |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1526 { |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1527 // include comma before string |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1528 --s; |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1529 ++len; |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1530 } |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1531 } |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1532 STRMOVE(newval + (s - origval), s + len); |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1533 } |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1534 } |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1535 |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1536 if (flags & P_FLAGLIST) |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1537 { |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1538 // Remove flags that appear twice. |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1539 for (s = newval; *s;) |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1540 { |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1541 // if options have P_FLAGLIST and P_ONECOMMA such as |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1542 // 'whichwrap' |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1543 if (flags & P_ONECOMMA) |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1544 { |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1545 if (*s != ',' && *(s + 1) == ',' |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1546 && vim_strchr(s + 2, *s) != NULL) |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1547 { |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1548 // Remove the duplicated value and the next comma. |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1549 STRMOVE(s, s + 2); |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1550 continue; |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1551 } |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1552 } |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1553 else |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1554 { |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1555 if ((!(flags & P_COMMA) || *s != ',') |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1556 && vim_strchr(s + 1, *s) != NULL) |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1557 { |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1558 STRMOVE(s, s + 1); |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1559 continue; |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1560 } |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1561 } |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1562 ++s; |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1563 } |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1564 } |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1565 |
30417
6a1862bfb280
patch 9.0.0544: minor issues with setting a string option
Bram Moolenaar <Bram@vim.org>
parents:
30409
diff
changeset
|
1566 if (save_arg != NULL) |
6a1862bfb280
patch 9.0.0544: minor issues with setting a string option
Bram Moolenaar <Bram@vim.org>
parents:
30409
diff
changeset
|
1567 arg = save_arg; // arg was temporarily changed, restore it |
30403
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1568 } |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1569 |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1570 /* |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1571 * Set the new value. |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1572 */ |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1573 *(char_u **)(varp) = newval; |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1574 |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1575 #if defined(FEAT_EVAL) |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1576 if (!starting |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1577 # ifdef FEAT_CRYPT |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1578 && options[opt_idx].indir != PV_KEY |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1579 # endif |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1580 && origval != NULL && newval != NULL) |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1581 { |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1582 // origval may be freed by did_set_string_option(), make a copy. |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1583 saved_origval = vim_strsave(origval); |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1584 // newval (and varp) may become invalid if the buffer is closed by |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1585 // autocommands. |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1586 saved_newval = vim_strsave(newval); |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1587 if (origval_l != NULL) |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1588 saved_origval_l = vim_strsave(origval_l); |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1589 if (origval_g != NULL) |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1590 saved_origval_g = vim_strsave(origval_g); |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1591 } |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1592 #endif |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1593 |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1594 { |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1595 long_u *p = insecure_flag(opt_idx, opt_flags); |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1596 int secure_saved = secure; |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1597 |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1598 // When an option is set in the sandbox, from a modeline or in secure |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1599 // mode, then deal with side effects in secure mode. Also when the |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1600 // value was set with the P_INSECURE flag and is not completely |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1601 // replaced. |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1602 if ((opt_flags & OPT_MODELINE) |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1603 #ifdef HAVE_SANDBOX |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1604 || sandbox != 0 |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1605 #endif |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1606 || (op != OP_NONE && (*p & P_INSECURE))) |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1607 secure = 1; |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1608 |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1609 // Handle side effects, and set the global value for ":set" on local |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1610 // options. Note: when setting 'syntax' or 'filetype' autocommands may |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1611 // be triggered that can cause havoc. |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1612 *errmsg = did_set_string_option( |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1613 opt_idx, (char_u **)varp, oldval, errbuf, |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1614 opt_flags, value_checked); |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1615 |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1616 secure = secure_saved; |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1617 } |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1618 |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1619 #if defined(FEAT_EVAL) |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1620 if (*errmsg == NULL) |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1621 trigger_optionsset_string(opt_idx, opt_flags, saved_origval, |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1622 saved_origval_l, saved_origval_g, saved_newval); |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1623 vim_free(saved_origval); |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1624 vim_free(saved_origval_l); |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1625 vim_free(saved_origval_g); |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1626 vim_free(saved_newval); |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1627 #endif |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1628 |
30409
aea53db7eeec
patch 9.0.0540: assigning stack variable to argument confuses Coverity
Bram Moolenaar <Bram@vim.org>
parents:
30403
diff
changeset
|
1629 *argp = arg; |
30403
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1630 return *errmsg == NULL ? OK : FAIL; |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1631 } |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1632 |
7 | 1633 /* |
1634 * Parse 'arg' for option settings. | |
1635 * | |
1636 * 'arg' may be IObuff, but only when no errors can be present and option | |
1637 * does not need to be expanded with option_expand(). | |
1638 * "opt_flags": | |
1639 * 0 for ":set" | |
26400
d26bab4f6aca
patch 8.2.3731: "set! termcap" shows codes in one column, but not keys
Bram Moolenaar <Bram@vim.org>
parents:
26388
diff
changeset
|
1640 * OPT_GLOBAL for ":setglobal" |
d26bab4f6aca
patch 8.2.3731: "set! termcap" shows codes in one column, but not keys
Bram Moolenaar <Bram@vim.org>
parents:
26388
diff
changeset
|
1641 * OPT_LOCAL for ":setlocal" and a modeline |
d26bab4f6aca
patch 8.2.3731: "set! termcap" shows codes in one column, but not keys
Bram Moolenaar <Bram@vim.org>
parents:
26388
diff
changeset
|
1642 * OPT_MODELINE for a modeline |
d26bab4f6aca
patch 8.2.3731: "set! termcap" shows codes in one column, but not keys
Bram Moolenaar <Bram@vim.org>
parents:
26388
diff
changeset
|
1643 * OPT_WINONLY to only set window-local options |
d26bab4f6aca
patch 8.2.3731: "set! termcap" shows codes in one column, but not keys
Bram Moolenaar <Bram@vim.org>
parents:
26388
diff
changeset
|
1644 * OPT_NOWIN to skip setting window-local options |
d26bab4f6aca
patch 8.2.3731: "set! termcap" shows codes in one column, but not keys
Bram Moolenaar <Bram@vim.org>
parents:
26388
diff
changeset
|
1645 * OPT_ONECOLUMN do not use multiple columns |
7 | 1646 * |
1647 * returns FAIL if an error is detected, OK otherwise | |
1648 */ | |
1649 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1650 do_set( |
25174
b32c83317492
patch 8.2.3123: Vim9: confusing error when using white space after option
Bram Moolenaar <Bram@vim.org>
parents:
25084
diff
changeset
|
1651 char_u *arg_start, // option string (may be written to!) |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1652 int opt_flags) |
7 | 1653 { |
25174
b32c83317492
patch 8.2.3123: Vim9: confusing error when using white space after option
Bram Moolenaar <Bram@vim.org>
parents:
25084
diff
changeset
|
1654 char_u *arg = arg_start; |
7 | 1655 int opt_idx; |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15207
diff
changeset
|
1656 char *errmsg; |
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15207
diff
changeset
|
1657 char errbuf[80]; |
7 | 1658 char_u *startarg; |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1659 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
|
1660 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
|
1661 int afterchar; // character just after option name |
7 | 1662 int len; |
1663 int i; | |
9389
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9359
diff
changeset
|
1664 varnumber_T value; |
7 | 1665 int key; |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1666 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
|
1667 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
|
1668 int did_show = FALSE; // already showed one value |
30403
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1669 set_op_T op = 0; |
7 | 1670 int cp_val = 0; |
1671 char_u key_name[2]; | |
1672 | |
1673 if (*arg == NUL) | |
1674 { | |
1675 showoptions(0, opt_flags); | |
168 | 1676 did_show = TRUE; |
1677 goto theend; | |
7 | 1678 } |
1679 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1680 while (*arg != NUL) // loop to process all options |
7 | 1681 { |
1682 errmsg = NULL; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1683 startarg = arg; // remember for error message |
7 | 1684 |
36 | 1685 if (STRNCMP(arg, "all", 3) == 0 && !isalpha(arg[3]) |
1686 && !(opt_flags & OPT_MODELINE)) | |
7 | 1687 { |
1688 /* | |
1689 * ":set all" show all options. | |
1690 * ":set all&" set all options to their default value. | |
1691 */ | |
1692 arg += 3; | |
1693 if (*arg == '&') | |
1694 { | |
1695 ++arg; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1696 // Only for :set command set global value of local options. |
7 | 1697 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
|
1698 didset_options(); |
17a3fa77e941
commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents:
7034
diff
changeset
|
1699 didset_options2(); |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
1700 redraw_all_later(UPD_CLEAR); |
7 | 1701 } |
1702 else | |
168 | 1703 { |
7 | 1704 showoptions(1, opt_flags); |
168 | 1705 did_show = TRUE; |
1706 } | |
7 | 1707 } |
36 | 1708 else if (STRNCMP(arg, "termcap", 7) == 0 && !(opt_flags & OPT_MODELINE)) |
7 | 1709 { |
1710 showoptions(2, opt_flags); | |
26400
d26bab4f6aca
patch 8.2.3731: "set! termcap" shows codes in one column, but not keys
Bram Moolenaar <Bram@vim.org>
parents:
26388
diff
changeset
|
1711 show_termcodes(opt_flags); |
168 | 1712 did_show = TRUE; |
7 | 1713 arg += 7; |
1714 } | |
1715 else | |
1716 { | |
1717 prefix = 1; | |
1911 | 1718 if (STRNCMP(arg, "no", 2) == 0 && STRNCMP(arg, "novice", 6) != 0) |
7 | 1719 { |
1720 prefix = 0; | |
1721 arg += 2; | |
1722 } | |
1723 else if (STRNCMP(arg, "inv", 3) == 0) | |
1724 { | |
1725 prefix = 2; | |
1726 arg += 3; | |
1727 } | |
1728 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1729 // find end of name |
7 | 1730 key = 0; |
1731 if (*arg == '<') | |
1732 { | |
1733 opt_idx = -1; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1734 // look out for <t_>;> |
7 | 1735 if (arg[1] == 't' && arg[2] == '_' && arg[3] && arg[4]) |
1736 len = 5; | |
1737 else | |
1738 { | |
1739 len = 1; | |
1740 while (arg[len] != NUL && arg[len] != '>') | |
1741 ++len; | |
1742 } | |
1743 if (arg[len] != '>') | |
1744 { | |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26802
diff
changeset
|
1745 errmsg = e_invalid_argument; |
7 | 1746 goto skip; |
1747 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1748 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
|
1749 if (arg[1] == 't' && arg[2] == '_') // could be term code |
7 | 1750 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
|
1751 arg[len++] = '>'; // restore '>' |
7 | 1752 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
|
1753 key = find_key_option(arg + 1, TRUE); |
7 | 1754 } |
1755 else | |
1756 { | |
1757 len = 0; | |
1758 /* | |
1759 * The two characters after "t_" may not be alphanumeric. | |
1760 */ | |
1761 if (arg[0] == 't' && arg[1] == '_' && arg[2] && arg[3]) | |
1762 len = 4; | |
1763 else | |
1764 while (ASCII_ISALNUM(arg[len]) || arg[len] == '_') | |
1765 ++len; | |
1766 nextchar = arg[len]; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1767 arg[len] = NUL; // put NUL after name |
7 | 1768 opt_idx = findoption(arg); |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1769 arg[len] = nextchar; // restore nextchar |
7 | 1770 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
|
1771 key = find_key_option(arg, FALSE); |
7 | 1772 } |
1773 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1774 // remember character after option name |
7 | 1775 afterchar = arg[len]; |
1776 | |
25176
af3d0198faad
patch 8.2.3124: Vim9: no error for white space between option and "=9"
Bram Moolenaar <Bram@vim.org>
parents:
25174
diff
changeset
|
1777 if (in_vim9script()) |
af3d0198faad
patch 8.2.3124: Vim9: no error for white space between option and "=9"
Bram Moolenaar <Bram@vim.org>
parents:
25174
diff
changeset
|
1778 { |
af3d0198faad
patch 8.2.3124: Vim9: no error for white space between option and "=9"
Bram Moolenaar <Bram@vim.org>
parents:
25174
diff
changeset
|
1779 char_u *p = skipwhite(arg + len); |
af3d0198faad
patch 8.2.3124: Vim9: no error for white space between option and "=9"
Bram Moolenaar <Bram@vim.org>
parents:
25174
diff
changeset
|
1780 |
af3d0198faad
patch 8.2.3124: Vim9: no error for white space between option and "=9"
Bram Moolenaar <Bram@vim.org>
parents:
25174
diff
changeset
|
1781 // disallow white space before =val, +=val, -=val, ^=val |
af3d0198faad
patch 8.2.3124: Vim9: no error for white space between option and "=9"
Bram Moolenaar <Bram@vim.org>
parents:
25174
diff
changeset
|
1782 if (p > arg + len && (p[0] == '=' |
af3d0198faad
patch 8.2.3124: Vim9: no error for white space between option and "=9"
Bram Moolenaar <Bram@vim.org>
parents:
25174
diff
changeset
|
1783 || (vim_strchr((char_u *)"+-^", p[0]) != NULL |
af3d0198faad
patch 8.2.3124: Vim9: no error for white space between option and "=9"
Bram Moolenaar <Bram@vim.org>
parents:
25174
diff
changeset
|
1784 && p[1] == '='))) |
af3d0198faad
patch 8.2.3124: Vim9: no error for white space between option and "=9"
Bram Moolenaar <Bram@vim.org>
parents:
25174
diff
changeset
|
1785 { |
af3d0198faad
patch 8.2.3124: Vim9: no error for white space between option and "=9"
Bram Moolenaar <Bram@vim.org>
parents:
25174
diff
changeset
|
1786 errmsg = e_no_white_space_allowed_between_option_and; |
af3d0198faad
patch 8.2.3124: Vim9: no error for white space between option and "=9"
Bram Moolenaar <Bram@vim.org>
parents:
25174
diff
changeset
|
1787 arg = p; |
af3d0198faad
patch 8.2.3124: Vim9: no error for white space between option and "=9"
Bram Moolenaar <Bram@vim.org>
parents:
25174
diff
changeset
|
1788 startarg = p; |
af3d0198faad
patch 8.2.3124: Vim9: no error for white space between option and "=9"
Bram Moolenaar <Bram@vim.org>
parents:
25174
diff
changeset
|
1789 goto skip; |
af3d0198faad
patch 8.2.3124: Vim9: no error for white space between option and "=9"
Bram Moolenaar <Bram@vim.org>
parents:
25174
diff
changeset
|
1790 } |
af3d0198faad
patch 8.2.3124: Vim9: no error for white space between option and "=9"
Bram Moolenaar <Bram@vim.org>
parents:
25174
diff
changeset
|
1791 } |
af3d0198faad
patch 8.2.3124: Vim9: no error for white space between option and "=9"
Bram Moolenaar <Bram@vim.org>
parents:
25174
diff
changeset
|
1792 else |
24968
d81a5c3a3aa6
patch 8.2.3021: spaces allowed between option name and "!", "?", etc.
Bram Moolenaar <Bram@vim.org>
parents:
24912
diff
changeset
|
1793 // skip white space, allow ":set ai ?", ":set hlsearch !" |
d81a5c3a3aa6
patch 8.2.3021: spaces allowed between option name and "!", "?", etc.
Bram Moolenaar <Bram@vim.org>
parents:
24912
diff
changeset
|
1794 while (VIM_ISWHITE(arg[len])) |
d81a5c3a3aa6
patch 8.2.3021: spaces allowed between option name and "!", "?", etc.
Bram Moolenaar <Bram@vim.org>
parents:
24912
diff
changeset
|
1795 ++len; |
7 | 1796 |
30403
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1797 op = OP_NONE; |
7 | 1798 if (arg[len] != NUL && arg[len + 1] == '=') |
1799 { | |
1800 if (arg[len] == '+') | |
1801 { | |
30403
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1802 op = OP_ADDING; // "+=" |
7 | 1803 ++len; |
1804 } | |
1805 else if (arg[len] == '^') | |
1806 { | |
30403
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1807 op = OP_PREPENDING; // "^=" |
7 | 1808 ++len; |
1809 } | |
1810 else if (arg[len] == '-') | |
1811 { | |
30403
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
1812 op = OP_REMOVING; // "-=" |
7 | 1813 ++len; |
1814 } | |
1815 } | |
1816 nextchar = arg[len]; | |
1817 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1818 if (opt_idx == -1 && key == 0) // found a mismatch: skip |
7 | 1819 { |
25174
b32c83317492
patch 8.2.3123: Vim9: confusing error when using white space after option
Bram Moolenaar <Bram@vim.org>
parents:
25084
diff
changeset
|
1820 if (in_vim9script() && arg > arg_start |
b32c83317492
patch 8.2.3123: Vim9: confusing error when using white space after option
Bram Moolenaar <Bram@vim.org>
parents:
25084
diff
changeset
|
1821 && vim_strchr((char_u *)"!&<", *arg) != NULL) |
b32c83317492
patch 8.2.3123: Vim9: confusing error when using white space after option
Bram Moolenaar <Bram@vim.org>
parents:
25084
diff
changeset
|
1822 errmsg = e_no_white_space_allowed_between_option_and; |
b32c83317492
patch 8.2.3123: Vim9: confusing error when using white space after option
Bram Moolenaar <Bram@vim.org>
parents:
25084
diff
changeset
|
1823 else |
28457
4dcccb2673fe
patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents:
28405
diff
changeset
|
1824 errmsg = e_unknown_option; |
7 | 1825 goto skip; |
1826 } | |
1827 | |
1828 if (opt_idx >= 0) | |
1829 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1830 if (options[opt_idx].var == NULL) // hidden option: skip |
7 | 1831 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1832 // 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
|
1833 // a hidden option, ignore setting it. |
7 | 1834 if (vim_strchr((char_u *)"=:!&<", nextchar) == NULL |
1835 && (!(options[opt_idx].flags & P_BOOL) | |
1836 || nextchar == '?')) | |
28457
4dcccb2673fe
patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents:
28405
diff
changeset
|
1837 errmsg = e_option_not_supported; |
7 | 1838 goto skip; |
1839 } | |
1840 | |
1841 flags = options[opt_idx].flags; | |
1842 varp = get_varp_scope(&(options[opt_idx]), opt_flags); | |
1843 } | |
1844 else | |
1845 { | |
1846 flags = P_STRING; | |
1847 if (key < 0) | |
1848 { | |
1849 key_name[0] = KEY2TERMCAP0(key); | |
1850 key_name[1] = KEY2TERMCAP1(key); | |
1851 } | |
1852 else | |
1853 { | |
1854 key_name[0] = KS_KEY; | |
1855 key_name[1] = (key & 0xff); | |
1856 } | |
1857 } | |
1858 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1859 // 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
|
1860 // an already loaded buffer in a window). |
634 | 1861 if ((opt_flags & OPT_WINONLY) |
1862 && (opt_idx < 0 || options[opt_idx].var != VAR_WIN)) | |
1863 goto skip; | |
1864 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1865 // Skip all options that are window-local (used for :vimgrep). |
717 | 1866 if ((opt_flags & OPT_NOWIN) && opt_idx >= 0 |
1867 && options[opt_idx].var == VAR_WIN) | |
1868 goto skip; | |
1869 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1870 // Disallow changing some options from modelines. |
1807 | 1871 if (opt_flags & OPT_MODELINE) |
7 | 1872 { |
2317
2b2cd34569eb
Disallow setting 'enc' in a modeline. (Patrick Texier)
Bram Moolenaar <bram@vim.org>
parents:
2314
diff
changeset
|
1873 if (flags & (P_SECURE | P_NO_ML)) |
1807 | 1874 { |
28457
4dcccb2673fe
patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents:
28405
diff
changeset
|
1875 errmsg = e_not_allowed_in_modeline; |
1807 | 1876 goto skip; |
1877 } | |
16728
e55c26aaf484
patch 8.1.1366: using expressions in a modeline is unsafe
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
1878 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
|
1879 { |
28457
4dcccb2673fe
patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents:
28405
diff
changeset
|
1880 errmsg = e_not_allowed_in_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
|
1881 goto skip; |
e55c26aaf484
patch 8.1.1366: using expressions in a modeline is unsafe
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
1882 } |
1810 | 1883 #ifdef FEAT_DIFF |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1884 // 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
|
1885 // '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
|
1886 // "wrap" gets set. |
1807 | 1887 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
|
1888 && 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
|
1889 && ( |
d2178a6cc9f3
patch 8.0.0425: build errors when building without folding
Christian Brabandt <cb@256bit.org>
parents:
11063
diff
changeset
|
1890 #ifdef FEAT_FOLDING |
d2178a6cc9f3
patch 8.0.0425: build errors when building without folding
Christian Brabandt <cb@256bit.org>
parents:
11063
diff
changeset
|
1891 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
|
1892 #endif |
d2178a6cc9f3
patch 8.0.0425: build errors when building without folding
Christian Brabandt <cb@256bit.org>
parents:
11063
diff
changeset
|
1893 options[opt_idx].indir == PV_WRAP)) |
1807 | 1894 goto skip; |
1810 | 1895 #endif |
7 | 1896 } |
1897 | |
1898 #ifdef HAVE_SANDBOX | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1899 // Disallow changing some options in the sandbox |
634 | 1900 if (sandbox != 0 && (flags & P_SECURE)) |
7 | 1901 { |
25320
1e6da8364a02
patch 8.2.3197: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25176
diff
changeset
|
1902 errmsg = e_not_allowed_in_sandbox; |
7 | 1903 goto skip; |
1904 } | |
1905 #endif | |
1906 | |
1907 if (vim_strchr((char_u *)"?=:!&<", nextchar) != NULL) | |
1908 { | |
1909 arg += len; | |
1910 cp_val = p_cp; | |
1911 if (nextchar == '&' && arg[1] == 'v' && arg[2] == 'i') | |
1912 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1913 if (arg[3] == 'm') // "opt&vim": set to Vim default |
7 | 1914 { |
1915 cp_val = FALSE; | |
1916 arg += 3; | |
1917 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1918 else // "opt&vi": set to Vi default |
7 | 1919 { |
1920 cp_val = TRUE; | |
1921 arg += 2; | |
1922 } | |
1923 } | |
1924 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
|
1925 && arg[1] != NUL && !VIM_ISWHITE(arg[1])) |
7 | 1926 { |
26883
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
1927 errmsg = e_trailing_characters; |
7 | 1928 goto skip; |
1929 } | |
1930 } | |
1931 | |
1932 /* | |
20007
aadd1cae2ff5
patch 8.2.0559: clearing a struct is verbose
Bram Moolenaar <Bram@vim.org>
parents:
19405
diff
changeset
|
1933 * 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
|
1934 * allows only one '=' character per "set" command line. grrr. (jw) |
7 | 1935 */ |
1936 if (nextchar == '?' | |
1937 || (prefix == 1 | |
1938 && vim_strchr((char_u *)"=:&<", nextchar) == NULL | |
1939 && !(flags & P_BOOL))) | |
1940 { | |
1941 /* | |
1942 * print value | |
1943 */ | |
1944 if (did_show) | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1945 msg_putchar('\n'); // cursor below last one |
7 | 1946 else |
1947 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1948 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
|
1949 did_show = TRUE; // remember that we did a line |
7 | 1950 } |
1951 if (opt_idx >= 0) | |
1952 { | |
1953 showoneopt(&options[opt_idx], opt_flags); | |
1954 #ifdef FEAT_EVAL | |
1955 if (p_verbose > 0) | |
694 | 1956 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1957 // Mention where the option was last set. |
694 | 1958 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
|
1959 last_set_msg(options[opt_idx].script_ctx); |
694 | 1960 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
|
1961 last_set_msg(curwin->w_p_script_ctx[ |
694 | 1962 (int)options[opt_idx].indir & PV_MASK]); |
1963 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
|
1964 last_set_msg(curbuf->b_p_script_ctx[ |
694 | 1965 (int)options[opt_idx].indir & PV_MASK]); |
1966 } | |
7 | 1967 #endif |
1968 } | |
1969 else | |
1970 { | |
1971 char_u *p; | |
1972 | |
1973 p = find_termcode(key_name); | |
1974 if (p == NULL) | |
1975 { | |
28457
4dcccb2673fe
patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents:
28405
diff
changeset
|
1976 errmsg = e_key_code_not_set; |
7 | 1977 goto skip; |
1978 } | |
1979 else | |
1980 (void)show_one_termcode(key_name, p, TRUE); | |
1981 } | |
1982 if (nextchar != '?' | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
1983 && nextchar != NUL && !VIM_ISWHITE(afterchar)) |
26883
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
1984 errmsg = e_trailing_characters; |
7 | 1985 } |
1986 else | |
1987 { | |
15066
40d9218b2b12
patch 8.1.0544: setting 'filetype' in a modeline causes an error
Bram Moolenaar <Bram@vim.org>
parents:
15062
diff
changeset
|
1988 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
|
1989 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
1990 if (flags & P_BOOL) // boolean |
7 | 1991 { |
1992 if (nextchar == '=' || nextchar == ':') | |
1993 { | |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26802
diff
changeset
|
1994 errmsg = e_invalid_argument; |
7 | 1995 goto skip; |
1996 } | |
1997 | |
1998 /* | |
1999 * ":set opt!": invert | |
2000 * ":set opt&": reset to default value | |
2001 * ":set opt<": reset to global value | |
2002 */ | |
2003 if (nextchar == '!') | |
2004 value = *(int *)(varp) ^ 1; | |
2005 else if (nextchar == '&') | |
840 | 2006 value = (int)(long)(long_i)options[opt_idx].def_val[ |
7 | 2007 ((flags & P_VI_DEF) || cp_val) |
2008 ? VI_DEFAULT : VIM_DEFAULT]; | |
2009 else if (nextchar == '<') | |
2010 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2011 // For 'autoread' -1 means to use global value. |
7 | 2012 if ((int *)varp == &curbuf->b_p_ar |
2013 && opt_flags == OPT_LOCAL) | |
2014 value = -1; | |
2015 else | |
2016 value = *(int *)get_varp_scope(&(options[opt_idx]), | |
2017 OPT_GLOBAL); | |
2018 } | |
2019 else | |
2020 { | |
2021 /* | |
2022 * ":set invopt": invert | |
2023 * ":set opt" or ":set noopt": set or reset | |
2024 */ | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
2025 if (nextchar != NUL && !VIM_ISWHITE(afterchar)) |
7 | 2026 { |
26883
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
2027 errmsg = e_trailing_characters; |
7 | 2028 goto skip; |
2029 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2030 if (prefix == 2) // inv |
7 | 2031 value = *(int *)(varp) ^ 1; |
2032 else | |
2033 value = prefix; | |
2034 } | |
2035 | |
2036 errmsg = set_bool_option(opt_idx, varp, (int)value, | |
2037 opt_flags); | |
2038 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2039 else // numeric or string |
7 | 2040 { |
2041 if (vim_strchr((char_u *)"=:&<", nextchar) == NULL | |
2042 || prefix != 1) | |
2043 { | |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26802
diff
changeset
|
2044 errmsg = e_invalid_argument; |
7 | 2045 goto skip; |
2046 } | |
2047 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2048 if (flags & P_NUM) // numeric |
7 | 2049 { |
2050 /* | |
2051 * Different ways to set a number option: | |
2052 * & set to default value | |
2053 * < set to global value | |
2054 * <xx> accept special key codes for 'wildchar' | |
2055 * c accept any non-digit for 'wildchar' | |
2056 * [-]0-9 set number | |
2057 * other error | |
2058 */ | |
2059 ++arg; | |
2060 if (nextchar == '&') | |
840 | 2061 value = (long)(long_i)options[opt_idx].def_val[ |
7 | 2062 ((flags & P_VI_DEF) || cp_val) |
2063 ? VI_DEFAULT : VIM_DEFAULT]; | |
2064 else if (nextchar == '<') | |
5446 | 2065 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2066 // 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
|
2067 // use the global value. |
5446 | 2068 if ((long *)varp == &curbuf->b_p_ul |
2069 && opt_flags == OPT_LOCAL) | |
2070 value = NO_LOCAL_UNDOLEVEL; | |
2071 else | |
2072 value = *(long *)get_varp_scope( | |
2073 &(options[opt_idx]), OPT_GLOBAL); | |
2074 } | |
7 | 2075 else if (((long *)varp == &p_wc |
2076 || (long *)varp == &p_wcm) | |
2077 && (*arg == '<' | |
2078 || *arg == '^' | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
2079 || (*arg != NUL |
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
2080 && (!arg[1] || VIM_ISWHITE(arg[1])) |
7 | 2081 && !VIM_ISDIGIT(*arg)))) |
2082 { | |
11764
b82dad3fa176
patch 8.0.0764: 'termkey' does not work yet
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
2083 value = string_to_key(arg, FALSE); |
7 | 2084 if (value == 0 && (long *)varp != &p_wcm) |
2085 { | |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26802
diff
changeset
|
2086 errmsg = e_invalid_argument; |
7 | 2087 goto skip; |
2088 } | |
2089 } | |
2090 else if (*arg == '-' || VIM_ISDIGIT(*arg)) | |
2091 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2092 // 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
|
2093 // hex numbers. |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7426
diff
changeset
|
2094 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
|
2095 &value, NULL, 0, TRUE); |
17039
d726d8cce996
patch 8.1.1519: 'backupskip' may contain duplicates
Bram Moolenaar <Bram@vim.org>
parents:
16843
diff
changeset
|
2096 if (i == 0 || (arg[i] != NUL |
d726d8cce996
patch 8.1.1519: 'backupskip' may contain duplicates
Bram Moolenaar <Bram@vim.org>
parents:
16843
diff
changeset
|
2097 && !VIM_ISWHITE(arg[i]))) |
7 | 2098 { |
28457
4dcccb2673fe
patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents:
28405
diff
changeset
|
2099 errmsg = e_number_required_after_equal; |
7 | 2100 goto skip; |
2101 } | |
2102 } | |
2103 else | |
2104 { | |
28457
4dcccb2673fe
patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents:
28405
diff
changeset
|
2105 errmsg = e_number_required_after_equal; |
7 | 2106 goto skip; |
2107 } | |
2108 | |
30403
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
2109 if (op == OP_ADDING) |
7 | 2110 value = *(long *)varp + value; |
30403
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
2111 else if (op == OP_PREPENDING) |
7 | 2112 value = *(long *)varp * value; |
30403
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
2113 else if (op == OP_REMOVING) |
7 | 2114 value = *(long *)varp - value; |
2115 errmsg = set_num_option(opt_idx, varp, value, | |
274 | 2116 errbuf, sizeof(errbuf), opt_flags); |
7 | 2117 } |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2118 else if (opt_idx >= 0) // string |
7 | 2119 { |
30403
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
2120 if (do_set_string(opt_idx, opt_flags, &arg, nextchar, |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
2121 op, flags, cp_val, varp, errbuf, |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
2122 &value_checked, &errmsg) == FAIL) |
7 | 2123 { |
30403
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
2124 if (errmsg != NULL) |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
2125 goto skip; |
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
2126 break; |
7 | 2127 } |
2128 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2129 else // key code option |
7 | 2130 { |
2131 char_u *p; | |
2132 | |
2133 if (nextchar == '&') | |
2134 { | |
2135 if (add_termcap_entry(key_name, TRUE) == FAIL) | |
28457
4dcccb2673fe
patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents:
28405
diff
changeset
|
2136 errmsg = e_not_found_in_termcap; |
7 | 2137 } |
2138 else | |
2139 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2140 ++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
|
2141 for (p = arg; *p && !VIM_ISWHITE(*p); ++p) |
7 | 2142 if (*p == '\\' && p[1] != NUL) |
2143 ++p; | |
2144 nextchar = *p; | |
2145 *p = NUL; | |
2146 add_termcode(key_name, arg, FALSE); | |
2147 *p = nextchar; | |
2148 } | |
2149 if (full_screen) | |
2150 ttest(FALSE); | |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
2151 redraw_all_later(UPD_CLEAR); |
7 | 2152 } |
2153 } | |
634 | 2154 |
7 | 2155 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
|
2156 did_set_option( |
30403
42d592459521
patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
2157 opt_idx, opt_flags, op == OP_NONE, value_checked); |
7 | 2158 } |
2159 | |
2160 skip: | |
2161 /* | |
2162 * Advance to next argument. | |
2163 * - skip until a blank found, taking care of backslashes | |
2164 * - skip blanks | |
2165 * - skip one "=val" argument (for hidden options ":set gfn =xx") | |
2166 */ | |
2167 for (i = 0; i < 2 ; ++i) | |
2168 { | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
2169 while (*arg != NUL && !VIM_ISWHITE(*arg)) |
7 | 2170 if (*arg++ == '\\' && *arg != NUL) |
2171 ++arg; | |
2172 arg = skipwhite(arg); | |
2173 if (*arg != '=') | |
2174 break; | |
2175 } | |
2176 } | |
2177 | |
2178 if (errmsg != NULL) | |
2179 { | |
419 | 2180 vim_strncpy(IObuff, (char_u *)_(errmsg), IOSIZE - 1); |
835 | 2181 i = (int)STRLEN(IObuff) + 2; |
7 | 2182 if (i + (arg - startarg) < IOSIZE) |
2183 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2184 // append the argument with the error |
7 | 2185 STRCAT(IObuff, ": "); |
2186 mch_memmove(IObuff + i, startarg, (arg - startarg)); | |
2187 IObuff[i + (arg - startarg)] = NUL; | |
2188 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2189 // make sure all characters are printable |
7 | 2190 trans_characters(IObuff, IOSIZE); |
2191 | |
29960
4fcf816aa806
patch 9.0.0318: clearing screen causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
29879
diff
changeset
|
2192 ++no_wait_return; // wait_return() done later |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15207
diff
changeset
|
2193 emsg((char *)IObuff); // show error highlighted |
7 | 2194 --no_wait_return; |
2195 | |
2196 return FAIL; | |
2197 } | |
2198 | |
2199 arg = skipwhite(arg); | |
2200 } | |
2201 | |
168 | 2202 theend: |
2203 if (silent_mode && did_show) | |
2204 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2205 // After displaying option values in silent mode. |
168 | 2206 silent_mode = FALSE; |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2207 info_message = TRUE; // use mch_msg(), not mch_errmsg() |
168 | 2208 msg_putchar('\n'); |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2209 cursor_on(); // msg_start() switches it off |
168 | 2210 out_flush(); |
2211 silent_mode = TRUE; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2212 info_message = FALSE; // use mch_msg(), not mch_errmsg() |
168 | 2213 } |
2214 | |
7 | 2215 return OK; |
2216 } | |
2217 | |
634 | 2218 /* |
2219 * Call this when an option has been given a new value through a user command. | |
2220 * Sets the P_WAS_SET flag and takes care of the P_INSECURE flag. | |
2221 */ | |
18100
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
2222 void |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2223 did_set_option( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2224 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
|
2225 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
|
2226 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
|
2227 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
|
2228 // P_INSECURE flag. |
634 | 2229 { |
681 | 2230 long_u *p; |
2231 | |
634 | 2232 options[opt_idx].flags |= P_WAS_SET; |
2233 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2234 // 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
|
2235 // 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
|
2236 // flag. |
681 | 2237 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
|
2238 if (!value_checked && (secure |
634 | 2239 #ifdef HAVE_SANDBOX |
2240 || sandbox != 0 | |
2241 #endif | |
15066
40d9218b2b12
patch 8.1.0544: setting 'filetype' in a modeline causes an error
Bram Moolenaar <Bram@vim.org>
parents:
15062
diff
changeset
|
2242 || (opt_flags & OPT_MODELINE))) |
681 | 2243 *p = *p | P_INSECURE; |
2244 else if (new_value) | |
2245 *p = *p & ~P_INSECURE; | |
634 | 2246 } |
2247 | |
7 | 2248 /* |
2249 * Convert a key name or string into a key value. | |
2250 * 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
|
2251 * 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
|
2252 */ |
b82dad3fa176
patch 8.0.0764: 'termkey' does not work yet
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
2253 int |
b82dad3fa176
patch 8.0.0764: 'termkey' does not work yet
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
2254 string_to_key(char_u *arg, int multi_byte) |
7 | 2255 { |
2256 if (*arg == '<') | |
14381
d9e6eec551e1
patch 8.1.0205: invalid memory access with invalid modeline
Christian Brabandt <cb@256bit.org>
parents:
14313
diff
changeset
|
2257 return find_key_option(arg + 1, TRUE); |
7 | 2258 if (*arg == '^') |
2259 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
|
2260 if (multi_byte) |
b82dad3fa176
patch 8.0.0764: 'termkey' does not work yet
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
2261 return PTR2CHAR(arg); |
7 | 2262 return *arg; |
2263 } | |
2264 | |
2265 /* | |
2266 * When changing 'title', 'titlestring', 'icon' or 'iconstring', call | |
2267 * maketitle() to create and display it. | |
2268 * When switching the title or icon off, call mch_restore_title() to get | |
2269 * the old value back. | |
2270 */ | |
18100
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
2271 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
|
2272 did_set_title(void) |
7 | 2273 { |
2274 if (starting != NO_SCREEN | |
2275 #ifdef FEAT_GUI | |
2276 && !gui.starting | |
2277 #endif | |
2278 ) | |
2279 maketitle(); | |
2280 } | |
2281 | |
2282 /* | |
2283 * set_options_bin - called when 'bin' changes value. | |
2284 */ | |
2285 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2286 set_options_bin( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2287 int oldval, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2288 int newval, |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2289 int opt_flags) // OPT_LOCAL and/or OPT_GLOBAL |
7 | 2290 { |
2291 /* | |
2292 * The option values that are changed when 'bin' changes are | |
2293 * copied when 'bin is set and restored when 'bin' is reset. | |
2294 */ | |
2295 if (newval) | |
2296 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2297 if (!oldval) // switched on |
7 | 2298 { |
2299 if (!(opt_flags & OPT_GLOBAL)) | |
2300 { | |
2301 curbuf->b_p_tw_nobin = curbuf->b_p_tw; | |
2302 curbuf->b_p_wm_nobin = curbuf->b_p_wm; | |
2303 curbuf->b_p_ml_nobin = curbuf->b_p_ml; | |
2304 curbuf->b_p_et_nobin = curbuf->b_p_et; | |
2305 } | |
2306 if (!(opt_flags & OPT_LOCAL)) | |
2307 { | |
2308 p_tw_nobin = p_tw; | |
2309 p_wm_nobin = p_wm; | |
2310 p_ml_nobin = p_ml; | |
2311 p_et_nobin = p_et; | |
2312 } | |
2313 } | |
2314 | |
2315 if (!(opt_flags & OPT_GLOBAL)) | |
2316 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2317 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
|
2318 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
|
2319 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
|
2320 curbuf->b_p_et = 0; // no expandtab |
7 | 2321 } |
2322 if (!(opt_flags & OPT_LOCAL)) | |
2323 { | |
2324 p_tw = 0; | |
2325 p_wm = 0; | |
2326 p_ml = FALSE; | |
2327 p_et = FALSE; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2328 p_bin = TRUE; // needed when called for the "-b" argument |
7 | 2329 } |
2330 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2331 else if (oldval) // switched off |
7 | 2332 { |
2333 if (!(opt_flags & OPT_GLOBAL)) | |
2334 { | |
2335 curbuf->b_p_tw = curbuf->b_p_tw_nobin; | |
2336 curbuf->b_p_wm = curbuf->b_p_wm_nobin; | |
2337 curbuf->b_p_ml = curbuf->b_p_ml_nobin; | |
2338 curbuf->b_p_et = curbuf->b_p_et_nobin; | |
2339 } | |
2340 if (!(opt_flags & OPT_LOCAL)) | |
2341 { | |
2342 p_tw = p_tw_nobin; | |
2343 p_wm = p_wm_nobin; | |
2344 p_ml = p_ml_nobin; | |
2345 p_et = p_et_nobin; | |
2346 } | |
2347 } | |
2348 } | |
2349 | |
2350 /* | |
2351 * Expand environment variables for some string options. | |
2352 * These string options cannot be indirect! | |
2353 * If "val" is NULL expand the current value of the option. | |
2354 * Return pointer to NameBuff, or NULL when not expanded. | |
2355 */ | |
2356 static char_u * | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2357 option_expand(int opt_idx, char_u *val) |
7 | 2358 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2359 // if option doesn't need expansion nothing to do |
7 | 2360 if (!(options[opt_idx].flags & P_EXPAND) || options[opt_idx].var == NULL) |
2361 return NULL; | |
2362 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2363 // 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
|
2364 // expand_env() would truncate the string. |
7 | 2365 if (val != NULL && STRLEN(val) > MAXPATHL) |
2366 return NULL; | |
2367 | |
2368 if (val == NULL) | |
2369 val = *(char_u **)options[opt_idx].var; | |
2370 | |
2371 /* | |
2372 * Expanding this with NameBuff, expand_env() must not be passed IObuff. | |
2373 * Escape spaces when expanding 'tags', they are used to separate file | |
2374 * names. | |
374 | 2375 * For 'spellsuggest' expand after "file:". |
7 | 2376 */ |
2377 expand_env_esc(val, NameBuff, MAXPATHL, | |
1408 | 2378 (char_u **)options[opt_idx].var == &p_tags, FALSE, |
744 | 2379 #ifdef FEAT_SPELL |
374 | 2380 (char_u **)options[opt_idx].var == &p_sps ? (char_u *)"file:" : |
2381 #endif | |
2382 NULL); | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2383 if (STRCMP(NameBuff, val) == 0) // they are the same |
7 | 2384 return NULL; |
2385 | |
2386 return NameBuff; | |
2387 } | |
2388 | |
2389 /* | |
2390 * After setting various option values: recompute variables that depend on | |
2391 * option values. | |
2392 */ | |
2393 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2394 didset_options(void) |
7 | 2395 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2396 // initialize the table for 'iskeyword' et.al. |
7 | 2397 (void)init_chartab(); |
2398 | |
18100
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
2399 didset_string_options(); |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
2400 |
744 | 2401 #ifdef FEAT_SPELL |
484 | 2402 (void)spell_check_msm(); |
374 | 2403 (void)spell_check_sps(); |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2248
diff
changeset
|
2404 (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
|
2405 (void)did_set_spell_option(TRUE); |
344 | 2406 #endif |
18156
c81370b3ede4
patch 8.1.2073: when editing a buffer 'colorcolumn' may not work
Bram Moolenaar <Bram@vim.org>
parents:
18100
diff
changeset
|
2407 // set cedit_key |
7 | 2408 (void)check_cedit(); |
5995 | 2409 #ifdef FEAT_LINEBREAK |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2410 // initialize the table for 'breakat'. |
7040
17a3fa77e941
commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents:
7034
diff
changeset
|
2411 fill_breakat_flags(); |
17a3fa77e941
commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents:
7034
diff
changeset
|
2412 #endif |
18156
c81370b3ede4
patch 8.1.2073: when editing a buffer 'colorcolumn' may not work
Bram Moolenaar <Bram@vim.org>
parents:
18100
diff
changeset
|
2413 after_copy_winopt(curwin); |
7040
17a3fa77e941
commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents:
7034
diff
changeset
|
2414 } |
17a3fa77e941
commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents:
7034
diff
changeset
|
2415 |
17a3fa77e941
commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents:
7034
diff
changeset
|
2416 /* |
17a3fa77e941
commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents:
7034
diff
changeset
|
2417 * More side effects of setting options. |
17a3fa77e941
commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents:
7034
diff
changeset
|
2418 */ |
17a3fa77e941
commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents:
7034
diff
changeset
|
2419 static void |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2420 didset_options2(void) |
7040
17a3fa77e941
commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents:
7034
diff
changeset
|
2421 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2422 // Initialize the highlight_attr[] table. |
7040
17a3fa77e941
commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents:
7034
diff
changeset
|
2423 (void)highlight_changed(); |
17a3fa77e941
commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents:
7034
diff
changeset
|
2424 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2425 // Parse default for 'wildmode' |
7040
17a3fa77e941
commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents:
7034
diff
changeset
|
2426 check_opt_wim(); |
17a3fa77e941
commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents:
7034
diff
changeset
|
2427 |
23952
44be09b25619
patch 8.2.2518: 'listchars' should be window-local
Bram Moolenaar <Bram@vim.org>
parents:
23821
diff
changeset
|
2428 // Parse default for 'listchars'. |
29395
caaf5b270018
patch 9.0.0040: use of set_chars_option() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
29387
diff
changeset
|
2429 (void)set_chars_option(curwin, &curwin->w_p_lcs, TRUE); |
23952
44be09b25619
patch 8.2.2518: 'listchars' should be window-local
Bram Moolenaar <Bram@vim.org>
parents:
23821
diff
changeset
|
2430 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2431 // Parse default for 'fillchars'. |
29395
caaf5b270018
patch 9.0.0040: use of set_chars_option() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
29387
diff
changeset
|
2432 (void)set_chars_option(curwin, &curwin->w_p_fcs, TRUE); |
7040
17a3fa77e941
commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents:
7034
diff
changeset
|
2433 |
17a3fa77e941
commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents:
7034
diff
changeset
|
2434 #ifdef FEAT_CLIPBOARD |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2435 // Parse default for 'clipboard' |
7040
17a3fa77e941
commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents:
7034
diff
changeset
|
2436 (void)check_clipboard_option(); |
17a3fa77e941
commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents:
7034
diff
changeset
|
2437 #endif |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
2438 #ifdef FEAT_VARTABS |
15858
3a45b89639fb
patch 8.1.0936: may leak memory when using 'vartabstop'
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
2439 vim_free(curbuf->b_p_vsts_array); |
25733
4b2616ffe32b
patch 8.2.3402: invalid memory access when using :retab with large value
Bram Moolenaar <Bram@vim.org>
parents:
25487
diff
changeset
|
2440 (void)tabstop_set(curbuf->b_p_vsts, &curbuf->b_p_vsts_array); |
15858
3a45b89639fb
patch 8.1.0936: may leak memory when using 'vartabstop'
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
2441 vim_free(curbuf->b_p_vts_array); |
25733
4b2616ffe32b
patch 8.2.3402: invalid memory access when using :retab with large value
Bram Moolenaar <Bram@vim.org>
parents:
25487
diff
changeset
|
2442 (void)tabstop_set(curbuf->b_p_vts, &curbuf->b_p_vts_array); |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
2443 #endif |
7 | 2444 } |
2445 | |
2446 /* | |
2447 * Check for string options that are NULL (normally only termcap options). | |
2448 */ | |
2449 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2450 check_options(void) |
7 | 2451 { |
2452 int opt_idx; | |
2453 | |
2454 for (opt_idx = 0; options[opt_idx].fullname != NULL; opt_idx++) | |
2455 if ((options[opt_idx].flags & P_STRING) && options[opt_idx].var != NULL) | |
2456 check_string_option((char_u **)get_varp(&(options[opt_idx]))); | |
2457 } | |
2458 | |
2459 /* | |
14867
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
2460 * 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
|
2461 * 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
|
2462 */ |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
2463 int |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
2464 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
|
2465 { |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
2466 int opt_idx; |
7 | 2467 |
2468 for (opt_idx = 1; options[opt_idx].fullname != NULL; opt_idx++) | |
2469 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
|
2470 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
|
2471 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
|
2472 } |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
2473 |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
2474 /* |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
2475 * 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
|
2476 * 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
|
2477 */ |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
2478 int |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
2479 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
|
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 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
|
2482 |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
2483 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
|
2484 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
|
2485 return opt_idx; |
7 | 2486 } |
2487 | |
634 | 2488 #if defined(FEAT_EVAL) || defined(PROTO) |
2489 /* | |
2490 * Return TRUE when option "opt" was set from a modeline or in secure mode. | |
2491 * Return FALSE when it wasn't. | |
2492 * Return -1 for an unknown option. | |
2493 */ | |
2494 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2495 was_set_insecurely(char_u *opt, int opt_flags) |
634 | 2496 { |
2497 int idx = findoption(opt); | |
681 | 2498 long_u *flagp; |
634 | 2499 |
2500 if (idx >= 0) | |
681 | 2501 { |
2502 flagp = insecure_flag(idx, opt_flags); | |
2503 return (*flagp & P_INSECURE) != 0; | |
2504 } | |
10359
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10357
diff
changeset
|
2505 internal_error("was_set_insecurely()"); |
634 | 2506 return -1; |
2507 } | |
681 | 2508 |
2509 /* | |
2510 * Get a pointer to the flags used for the P_INSECURE flag of option | |
2511 * "opt_idx". For some local options a local flags field is used. | |
23821
bfc1ae959d9d
patch 8.2.2452: no completion for the 'filetype' option
Bram Moolenaar <Bram@vim.org>
parents:
23505
diff
changeset
|
2512 * NOTE: Caller must make sure that "curwin" is set to the window from which |
bfc1ae959d9d
patch 8.2.2452: no completion for the 'filetype' option
Bram Moolenaar <Bram@vim.org>
parents:
23505
diff
changeset
|
2513 * the option is used. |
681 | 2514 */ |
2515 static long_u * | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2516 insecure_flag(int opt_idx, int opt_flags) |
681 | 2517 { |
2518 if (opt_flags & OPT_LOCAL) | |
2519 switch ((int)options[opt_idx].indir) | |
2520 { | |
2521 #ifdef FEAT_STL_OPT | |
694 | 2522 case PV_STL: return &curwin->w_p_stl_flags; |
681 | 2523 #endif |
2524 #ifdef FEAT_EVAL | |
885 | 2525 # ifdef FEAT_FOLDING |
694 | 2526 case PV_FDE: return &curwin->w_p_fde_flags; |
2527 case PV_FDT: return &curwin->w_p_fdt_flags; | |
885 | 2528 # endif |
790 | 2529 # ifdef FEAT_BEVAL |
2530 case PV_BEXPR: return &curbuf->b_p_bexpr_flags; | |
2531 # endif | |
694 | 2532 case PV_INDE: return &curbuf->b_p_inde_flags; |
2533 case PV_FEX: return &curbuf->b_p_fex_flags; | |
681 | 2534 # ifdef FEAT_FIND_ID |
694 | 2535 case PV_INEX: return &curbuf->b_p_inex_flags; |
681 | 2536 # endif |
2537 #endif | |
2538 } | |
2539 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2540 // Nothing special, return global flags field. |
681 | 2541 return &options[opt_idx].flags; |
2542 } | |
634 | 2543 #endif |
2544 | |
1805 | 2545 /* |
2546 * Redraw the window title and/or tab page text later. | |
2547 */ | |
18100
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
2548 void redraw_titles(void) |
1805 | 2549 { |
2550 need_maketitle = TRUE; | |
2551 redraw_tabline = TRUE; | |
2552 } | |
2553 | |
7 | 2554 /* |
16277
5ef25fa57f71
patch 8.1.1143: may pass weird strings to file name expansion
Bram Moolenaar <Bram@vim.org>
parents:
16223
diff
changeset
|
2555 * 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
|
2556 * 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
|
2557 */ |
17940
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17845
diff
changeset
|
2558 int |
16277
5ef25fa57f71
patch 8.1.1143: may pass weird strings to file name expansion
Bram Moolenaar <Bram@vim.org>
parents:
16223
diff
changeset
|
2559 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
|
2560 { |
5ef25fa57f71
patch 8.1.1143: may pass weird strings to file name expansion
Bram Moolenaar <Bram@vim.org>
parents:
16223
diff
changeset
|
2561 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
|
2562 |
5ef25fa57f71
patch 8.1.1143: may pass weird strings to file name expansion
Bram Moolenaar <Bram@vim.org>
parents:
16223
diff
changeset
|
2563 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
|
2564 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
|
2565 return FALSE; |
5ef25fa57f71
patch 8.1.1143: may pass weird strings to file name expansion
Bram Moolenaar <Bram@vim.org>
parents:
16223
diff
changeset
|
2566 return TRUE; |
5ef25fa57f71
patch 8.1.1143: may pass weird strings to file name expansion
Bram Moolenaar <Bram@vim.org>
parents:
16223
diff
changeset
|
2567 } |
5ef25fa57f71
patch 8.1.1143: may pass weird strings to file name expansion
Bram Moolenaar <Bram@vim.org>
parents:
16223
diff
changeset
|
2568 |
681 | 2569 #if defined(FEAT_EVAL) || defined(PROTO) |
2570 /* | |
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
|
2571 * Set the script_ctx for an option, taking care of setting the buffer- or |
694 | 2572 * window-local value. |
681 | 2573 */ |
18100
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
2574 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
|
2575 set_option_sctx_idx(int opt_idx, int opt_flags, sctx_T script_ctx) |
694 | 2576 { |
2577 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0; | |
2578 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
|
2579 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
|
2580 |
20269
246101db63a4
patch 8.2.0690: line number of option set by modeline is wrong
Bram Moolenaar <Bram@vim.org>
parents:
20237
diff
changeset
|
2581 // 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
|
2582 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
|
2583 new_script_ctx.sc_lnum += SOURCING_LNUM; |
694 | 2584 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2585 // 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
|
2586 // in the buffer or window structure. |
694 | 2587 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
|
2588 options[opt_idx].script_ctx = new_script_ctx; |
694 | 2589 if (both || (opt_flags & OPT_LOCAL)) |
2590 { | |
2591 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
|
2592 curbuf->b_p_script_ctx[indir & PV_MASK] = new_script_ctx; |
694 | 2593 else if (indir & PV_WIN) |
27289
e11682ba8c80
patch 8.2.4173: cannot use an import in 'foldexpr'
Bram Moolenaar <Bram@vim.org>
parents:
27285
diff
changeset
|
2594 { |
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
|
2595 curwin->w_p_script_ctx[indir & PV_MASK] = new_script_ctx; |
27289
e11682ba8c80
patch 8.2.4173: cannot use an import in 'foldexpr'
Bram Moolenaar <Bram@vim.org>
parents:
27285
diff
changeset
|
2596 if (both) |
e11682ba8c80
patch 8.2.4173: cannot use an import in 'foldexpr'
Bram Moolenaar <Bram@vim.org>
parents:
27285
diff
changeset
|
2597 // also setting the "all buffers" value |
e11682ba8c80
patch 8.2.4173: cannot use an import in 'foldexpr'
Bram Moolenaar <Bram@vim.org>
parents:
27285
diff
changeset
|
2598 curwin->w_allbuf_opt.wo_script_ctx[indir & PV_MASK] = |
e11682ba8c80
patch 8.2.4173: cannot use an import in 'foldexpr'
Bram Moolenaar <Bram@vim.org>
parents:
27285
diff
changeset
|
2599 new_script_ctx; |
e11682ba8c80
patch 8.2.4173: cannot use an import in 'foldexpr'
Bram Moolenaar <Bram@vim.org>
parents:
27285
diff
changeset
|
2600 } |
694 | 2601 } |
681 | 2602 } |
14867
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
2603 |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
2604 /* |
27303
9e0ac05f579a
patch 8.2.4180: 'balloonexpr' is evaluated in the current script context
Bram Moolenaar <Bram@vim.org>
parents:
27289
diff
changeset
|
2605 * Get the script context of global option "name". |
9e0ac05f579a
patch 8.2.4180: 'balloonexpr' is evaluated in the current script context
Bram Moolenaar <Bram@vim.org>
parents:
27289
diff
changeset
|
2606 * |
9e0ac05f579a
patch 8.2.4180: 'balloonexpr' is evaluated in the current script context
Bram Moolenaar <Bram@vim.org>
parents:
27289
diff
changeset
|
2607 */ |
9e0ac05f579a
patch 8.2.4180: 'balloonexpr' is evaluated in the current script context
Bram Moolenaar <Bram@vim.org>
parents:
27289
diff
changeset
|
2608 sctx_T * |
9e0ac05f579a
patch 8.2.4180: 'balloonexpr' is evaluated in the current script context
Bram Moolenaar <Bram@vim.org>
parents:
27289
diff
changeset
|
2609 get_option_sctx(char *name) |
9e0ac05f579a
patch 8.2.4180: 'balloonexpr' is evaluated in the current script context
Bram Moolenaar <Bram@vim.org>
parents:
27289
diff
changeset
|
2610 { |
9e0ac05f579a
patch 8.2.4180: 'balloonexpr' is evaluated in the current script context
Bram Moolenaar <Bram@vim.org>
parents:
27289
diff
changeset
|
2611 int idx = findoption((char_u *)name); |
9e0ac05f579a
patch 8.2.4180: 'balloonexpr' is evaluated in the current script context
Bram Moolenaar <Bram@vim.org>
parents:
27289
diff
changeset
|
2612 |
9e0ac05f579a
patch 8.2.4180: 'balloonexpr' is evaluated in the current script context
Bram Moolenaar <Bram@vim.org>
parents:
27289
diff
changeset
|
2613 if (idx >= 0) |
9e0ac05f579a
patch 8.2.4180: 'balloonexpr' is evaluated in the current script context
Bram Moolenaar <Bram@vim.org>
parents:
27289
diff
changeset
|
2614 return &options[idx].script_ctx; |
9e0ac05f579a
patch 8.2.4180: 'balloonexpr' is evaluated in the current script context
Bram Moolenaar <Bram@vim.org>
parents:
27289
diff
changeset
|
2615 siemsg("no such option: %s", name); |
9e0ac05f579a
patch 8.2.4180: 'balloonexpr' is evaluated in the current script context
Bram Moolenaar <Bram@vim.org>
parents:
27289
diff
changeset
|
2616 return NULL; |
9e0ac05f579a
patch 8.2.4180: 'balloonexpr' is evaluated in the current script context
Bram Moolenaar <Bram@vim.org>
parents:
27289
diff
changeset
|
2617 } |
9e0ac05f579a
patch 8.2.4180: 'balloonexpr' is evaluated in the current script context
Bram Moolenaar <Bram@vim.org>
parents:
27289
diff
changeset
|
2618 |
9e0ac05f579a
patch 8.2.4180: 'balloonexpr' is evaluated in the current script context
Bram Moolenaar <Bram@vim.org>
parents:
27289
diff
changeset
|
2619 /* |
14867
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
2620 * 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
|
2621 * "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
|
2622 * 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
|
2623 */ |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
2624 void |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
2625 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
|
2626 { |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
2627 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
|
2628 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
|
2629 |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
2630 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
|
2631 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
|
2632 else |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
2633 { |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
2634 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
|
2635 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
|
2636 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
|
2637 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
|
2638 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
|
2639 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
|
2640 } |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
2641 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
|
2642 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
|
2643 } |
681 | 2644 #endif |
2645 | |
19405
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2646 #if defined(FEAT_EVAL) |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2647 /* |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2648 * Apply the OptionSet autocommand. |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2649 */ |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2650 static void |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2651 apply_optionset_autocmd( |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2652 int opt_idx, |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2653 long opt_flags, |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2654 long oldval, |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2655 long oldval_g, |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2656 long newval, |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2657 char *errmsg) |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2658 { |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2659 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
|
2660 |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2661 // 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
|
2662 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
|
2663 return; |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2664 |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2665 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
|
2666 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
|
2667 oldval_g); |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2668 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
|
2669 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
|
2670 (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
|
2671 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
|
2672 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
|
2673 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
|
2674 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
|
2675 { |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2676 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
|
2677 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
|
2678 } |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2679 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
|
2680 { |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2681 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
|
2682 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
|
2683 } |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2684 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
|
2685 { |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2686 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
|
2687 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
|
2688 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
|
2689 } |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2690 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
|
2691 { |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2692 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
|
2693 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
|
2694 } |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2695 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
|
2696 NULL, FALSE, NULL); |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2697 reset_v_option_vars(); |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2698 } |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2699 #endif |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2700 |
7 | 2701 /* |
2702 * Set the value of a boolean option, and take care of side effects. | |
2703 * Returns NULL for success, or an error message for an error. | |
2704 */ | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15207
diff
changeset
|
2705 static char * |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2706 set_bool_option( |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2707 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
|
2708 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
|
2709 int value, // new value |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2710 int opt_flags) // OPT_LOCAL and/or OPT_GLOBAL |
7 | 2711 { |
2712 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
|
2713 #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
|
2714 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
|
2715 #endif |
28457
4dcccb2673fe
patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents:
28405
diff
changeset
|
2716 char *errmsg = NULL; |
7 | 2717 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2718 // Disallow changing some options from secure mode |
7 | 2719 if ((secure |
2720 #ifdef HAVE_SANDBOX | |
2721 || sandbox != 0 | |
2722 #endif | |
2723 ) && (options[opt_idx].flags & P_SECURE)) | |
26883
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
2724 return e_not_allowed_here; |
7 | 2725 |
17115
1c2d05cb4d1d
patch 8.1.1557: compiler warning for unused variables in tiny version
Bram Moolenaar <Bram@vim.org>
parents:
17085
diff
changeset
|
2726 #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
|
2727 // 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
|
2728 // 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
|
2729 // 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
|
2730 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
|
2731 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
|
2732 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
|
2733 #endif |
17085
620e9011b685
patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents:
17039
diff
changeset
|
2734 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2735 *(int *)varp = value; // set the new value |
7 | 2736 #ifdef FEAT_EVAL |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2737 // 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
|
2738 set_option_sctx_idx(opt_idx, opt_flags, current_sctx); |
7 | 2739 #endif |
2740 | |
634 | 2741 #ifdef FEAT_GUI |
2742 need_mouse_correct = TRUE; | |
2743 #endif | |
2744 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2745 // May set global value for local option. |
7 | 2746 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0) |
2747 *(int *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) = value; | |
2748 | |
2749 /* | |
2750 * Handle side effects of changing a bool option. | |
2751 */ | |
2752 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2753 // 'compatible' |
7 | 2754 if ((int *)varp == &p_cp) |
2755 compatible_set(); | |
2756 | |
9925
3fba3e8326a7
commit https://github.com/vim/vim/commit/920694c1b60fac8017b8909efcc24f189804a9bb
Christian Brabandt <cb@256bit.org>
parents:
9877
diff
changeset
|
2757 #ifdef FEAT_LANGMAP |
3fba3e8326a7
commit https://github.com/vim/vim/commit/920694c1b60fac8017b8909efcc24f189804a9bb
Christian Brabandt <cb@256bit.org>
parents:
9877
diff
changeset
|
2758 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
|
2759 // 'langremap' -> !'langnoremap' |
9925
3fba3e8326a7
commit https://github.com/vim/vim/commit/920694c1b60fac8017b8909efcc24f189804a9bb
Christian Brabandt <cb@256bit.org>
parents:
9877
diff
changeset
|
2760 p_lnr = !p_lrm; |
3fba3e8326a7
commit https://github.com/vim/vim/commit/920694c1b60fac8017b8909efcc24f189804a9bb
Christian Brabandt <cb@256bit.org>
parents:
9877
diff
changeset
|
2761 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
|
2762 // 'langnoremap' -> !'langremap' |
9925
3fba3e8326a7
commit https://github.com/vim/vim/commit/920694c1b60fac8017b8909efcc24f189804a9bb
Christian Brabandt <cb@256bit.org>
parents:
9877
diff
changeset
|
2763 p_lrm = !p_lnr; |
3fba3e8326a7
commit https://github.com/vim/vim/commit/920694c1b60fac8017b8909efcc24f189804a9bb
Christian Brabandt <cb@256bit.org>
parents:
9877
diff
changeset
|
2764 #endif |
3fba3e8326a7
commit https://github.com/vim/vim/commit/920694c1b60fac8017b8909efcc24f189804a9bb
Christian Brabandt <cb@256bit.org>
parents:
9877
diff
changeset
|
2765 |
3246 | 2766 #ifdef FEAT_PERSISTENT_UNDO |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2767 // 'undofile' |
3246 | 2768 else if ((int *)varp == &curbuf->b_p_udf || (int *)varp == &p_udf) |
2769 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2770 // 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
|
2771 // 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
|
2772 // any changes in between. |
3894 | 2773 if (curbuf->b_p_udf || p_udf) |
2774 { | |
2775 char_u hash[UNDO_HASH_SIZE]; | |
2776 buf_T *save_curbuf = curbuf; | |
2777 | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
2778 FOR_ALL_BUFFERS(curbuf) |
3894 | 2779 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2780 // 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
|
2781 // 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
|
2782 // 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
|
2783 // loaded |
3894 | 2784 if ((curbuf == save_curbuf |
3246 | 2785 || (opt_flags & OPT_GLOBAL) || opt_flags == 0) |
3894 | 2786 && !curbufIsChanged() && curbuf->b_ml.ml_mfp != NULL) |
2787 { | |
24970
7e9e53a0368f
patch 8.2.3022: available encryption methods are not strong enough
Bram Moolenaar <Bram@vim.org>
parents:
24968
diff
changeset
|
2788 #ifdef FEAT_CRYPT |
7e9e53a0368f
patch 8.2.3022: available encryption methods are not strong enough
Bram Moolenaar <Bram@vim.org>
parents:
24968
diff
changeset
|
2789 if (crypt_get_method_nr(curbuf) == CRYPT_M_SOD) |
7e9e53a0368f
patch 8.2.3022: available encryption methods are not strong enough
Bram Moolenaar <Bram@vim.org>
parents:
24968
diff
changeset
|
2790 continue; |
7e9e53a0368f
patch 8.2.3022: available encryption methods are not strong enough
Bram Moolenaar <Bram@vim.org>
parents:
24968
diff
changeset
|
2791 #endif |
3894 | 2792 u_compute_hash(hash); |
2793 u_read_undo(NULL, hash, curbuf->b_fname); | |
2794 } | |
2795 } | |
2796 curbuf = save_curbuf; | |
2797 } | |
3246 | 2798 } |
2799 #endif | |
2800 | |
7 | 2801 else if ((int *)varp == &curbuf->b_p_ro) |
2802 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2803 // when 'readonly' is reset globally, also reset readonlymode |
7 | 2804 if (!curbuf->b_p_ro && (opt_flags & OPT_LOCAL) == 0) |
2805 readonlymode = FALSE; | |
548 | 2806 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2807 // when 'readonly' is set may give W10 again |
548 | 2808 if (curbuf->b_p_ro) |
2809 curbuf->b_did_warn = FALSE; | |
2810 | |
1805 | 2811 redraw_titles(); |
7 | 2812 } |
2813 | |
2362
6cee3bf00495
When resetting 'mousehide' show the mouse pointer right away.
Bram Moolenaar <bram@vim.org>
parents:
2360
diff
changeset
|
2814 #ifdef FEAT_GUI |
6cee3bf00495
When resetting 'mousehide' show the mouse pointer right away.
Bram Moolenaar <bram@vim.org>
parents:
2360
diff
changeset
|
2815 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
|
2816 { |
6cee3bf00495
When resetting 'mousehide' show the mouse pointer right away.
Bram Moolenaar <bram@vim.org>
parents:
2360
diff
changeset
|
2817 if (!p_mh) |
6cee3bf00495
When resetting 'mousehide' show the mouse pointer right away.
Bram Moolenaar <bram@vim.org>
parents:
2360
diff
changeset
|
2818 gui_mch_mousehide(FALSE); |
6cee3bf00495
When resetting 'mousehide' show the mouse pointer right away.
Bram Moolenaar <bram@vim.org>
parents:
2360
diff
changeset
|
2819 } |
6cee3bf00495
When resetting 'mousehide' show the mouse pointer right away.
Bram Moolenaar <bram@vim.org>
parents:
2360
diff
changeset
|
2820 #endif |
6cee3bf00495
When resetting 'mousehide' show the mouse pointer right away.
Bram Moolenaar <bram@vim.org>
parents:
2360
diff
changeset
|
2821 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2822 // when 'modifiable' is changed, redraw the window title |
7 | 2823 else if ((int *)varp == &curbuf->b_p_ma) |
1805 | 2824 { |
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
|
2825 # ifdef FEAT_TERMINAL |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2826 // 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
|
2827 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
|
2828 && 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
|
2829 { |
be40c8a9240d
patch 8.0.0813: cannot use a terminal window while the job is running
Christian Brabandt <cb@256bit.org>
parents:
11814
diff
changeset
|
2830 curbuf->b_p_ma = FALSE; |
28457
4dcccb2673fe
patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents:
28405
diff
changeset
|
2831 return e_cannot_make_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
|
2832 } |
be40c8a9240d
patch 8.0.0813: cannot use a terminal window while the job is running
Christian Brabandt <cb@256bit.org>
parents:
11814
diff
changeset
|
2833 # endif |
1805 | 2834 redraw_titles(); |
26336
a2e6da79274d
patch 8.2.3699: the +title feature adds a lot of #ifdef but little code
Bram Moolenaar <Bram@vim.org>
parents:
26268
diff
changeset
|
2835 } |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2836 // when 'endofline' is changed, redraw the window title |
7 | 2837 else if ((int *)varp == &curbuf->b_p_eol) |
1805 | 2838 { |
2839 redraw_titles(); | |
2840 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2841 // when 'fixeol' is changed, redraw the window title |
6933 | 2842 else if ((int *)varp == &curbuf->b_p_fixeol) |
2843 { | |
2844 redraw_titles(); | |
2845 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2846 // when 'bomb' is changed, redraw the window title and tab page text |
1352 | 2847 else if ((int *)varp == &curbuf->b_p_bomb) |
1805 | 2848 { |
2849 redraw_titles(); | |
2850 } | |
7 | 2851 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2852 // when 'bin' is set also set some other options |
7 | 2853 else if ((int *)varp == &curbuf->b_p_bin) |
2854 { | |
2855 set_options_bin(old_value, curbuf->b_p_bin, opt_flags); | |
1805 | 2856 redraw_titles(); |
7 | 2857 } |
2858 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2859 // when 'buflisted' changes, trigger autocommands |
7 | 2860 else if ((int *)varp == &curbuf->b_p_bl && old_value != curbuf->b_p_bl) |
2861 { | |
2862 apply_autocmds(curbuf->b_p_bl ? EVENT_BUFADD : EVENT_BUFDELETE, | |
2863 NULL, NULL, TRUE, curbuf); | |
2864 } | |
2865 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2866 // when 'swf' is set, create swapfile, when reset remove swapfile |
7 | 2867 else if ((int *)varp == &curbuf->b_p_swf) |
2868 { | |
2869 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
|
2870 ml_open_file(curbuf); // create the swap file |
7 | 2871 else |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2872 // 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
|
2873 // buf->b_p_swf |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2874 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
|
2875 } |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2876 |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2877 // when 'terse' is set change 'shortmess' |
7 | 2878 else if ((int *)varp == &p_terse) |
2879 { | |
2880 char_u *p; | |
2881 | |
2882 p = vim_strchr(p_shm, SHM_SEARCH); | |
2883 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2884 // insert 's' in p_shm |
7 | 2885 if (p_terse && p == NULL) |
2886 { | |
2887 STRCPY(IObuff, p_shm); | |
2888 STRCAT(IObuff, "s"); | |
694 | 2889 set_string_option_direct((char_u *)"shm", -1, IObuff, OPT_FREE, 0); |
7 | 2890 } |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2891 // remove 's' from p_shm |
7 | 2892 else if (!p_terse && p != NULL) |
1622 | 2893 STRMOVE(p, p + 1); |
7 | 2894 } |
2895 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2896 // when 'paste' is set or reset also change other options |
7 | 2897 else if ((int *)varp == &p_paste) |
2898 { | |
2899 paste_option_changed(); | |
2900 } | |
2901 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2902 // when 'insertmode' is set from an autocommand need to do work here |
7 | 2903 else if ((int *)varp == &p_im) |
2904 { | |
2905 if (p_im) | |
2906 { | |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28457
diff
changeset
|
2907 if ((State & MODE_INSERT) == 0) |
7 | 2908 need_start_insertmode = TRUE; |
2909 stop_insert_mode = FALSE; | |
2910 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2911 // 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
|
2912 else if (old_value) |
7 | 2913 { |
2914 need_start_insertmode = FALSE; | |
2915 stop_insert_mode = TRUE; | |
644 | 2916 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
|
2917 clear_cmdline = TRUE; // remove "(insert)" |
7 | 2918 restart_edit = 0; |
2919 } | |
2920 } | |
2921 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2922 // when 'ignorecase' is set or reset and 'hlsearch' is set, redraw |
7 | 2923 else if ((int *)varp == &p_ic && p_hls) |
2924 { | |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
2925 redraw_all_later(UPD_SOME_VALID); |
7 | 2926 } |
2927 | |
2928 #ifdef FEAT_SEARCH_EXTRA | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2929 // when 'hlsearch' is set or reset: reset no_hlsearch |
7 | 2930 else if ((int *)varp == &p_hls) |
2931 { | |
13792
0e9b2971d7c3
patch 8.0.1768: SET_NO_HLSEARCH() used in a wrong way
Christian Brabandt <cb@256bit.org>
parents:
13774
diff
changeset
|
2932 set_no_hlsearch(FALSE); |
7 | 2933 } |
2934 #endif | |
2935 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2936 // 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
|
2937 // at the end of normal_cmd() |
7 | 2938 else if ((int *)varp == &curwin->w_p_scb) |
2939 { | |
2940 if (curwin->w_p_scb) | |
5157
7a6ce0c426fe
updated for version 7.4a.005
Bram Moolenaar <bram@vim.org>
parents:
5102
diff
changeset
|
2941 { |
7 | 2942 do_check_scrollbind(FALSE); |
5157
7a6ce0c426fe
updated for version 7.4a.005
Bram Moolenaar <bram@vim.org>
parents:
5102
diff
changeset
|
2943 curwin->w_scbind_pos = curwin->w_topline; |
7a6ce0c426fe
updated for version 7.4a.005
Bram Moolenaar <bram@vim.org>
parents:
5102
diff
changeset
|
2944 } |
7 | 2945 } |
2946 | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12469
diff
changeset
|
2947 #if defined(FEAT_QUICKFIX) |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2948 // There can be only one window with 'previewwindow' set. |
7 | 2949 else if ((int *)varp == &curwin->w_p_pvw) |
2950 { | |
2951 if (curwin->w_p_pvw) | |
2952 { | |
2953 win_T *win; | |
2954 | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
2955 FOR_ALL_WINDOWS(win) |
7 | 2956 if (win->w_p_pvw && win != curwin) |
2957 { | |
2958 curwin->w_p_pvw = FALSE; | |
28457
4dcccb2673fe
patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents:
28405
diff
changeset
|
2959 return e_preview_window_already_exists; |
7 | 2960 } |
2961 } | |
2962 } | |
2963 #endif | |
2964 | |
30610
6c6ac189a05f
patch 9.0.0640: cannot scroll by screen line if a line wraps
Bram Moolenaar <Bram@vim.org>
parents:
30417
diff
changeset
|
2965 else if ((int *)varp == &curwin->w_p_sms) |
6c6ac189a05f
patch 9.0.0640: cannot scroll by screen line if a line wraps
Bram Moolenaar <Bram@vim.org>
parents:
30417
diff
changeset
|
2966 { |
6c6ac189a05f
patch 9.0.0640: cannot scroll by screen line if a line wraps
Bram Moolenaar <Bram@vim.org>
parents:
30417
diff
changeset
|
2967 if (!curwin->w_p_sms) |
6c6ac189a05f
patch 9.0.0640: cannot scroll by screen line if a line wraps
Bram Moolenaar <Bram@vim.org>
parents:
30417
diff
changeset
|
2968 { |
6c6ac189a05f
patch 9.0.0640: cannot scroll by screen line if a line wraps
Bram Moolenaar <Bram@vim.org>
parents:
30417
diff
changeset
|
2969 curwin->w_skipcol = 0; |
6c6ac189a05f
patch 9.0.0640: cannot scroll by screen line if a line wraps
Bram Moolenaar <Bram@vim.org>
parents:
30417
diff
changeset
|
2970 changed_line_abv_curs(); |
6c6ac189a05f
patch 9.0.0640: cannot scroll by screen line if a line wraps
Bram Moolenaar <Bram@vim.org>
parents:
30417
diff
changeset
|
2971 } |
6c6ac189a05f
patch 9.0.0640: cannot scroll by screen line if a line wraps
Bram Moolenaar <Bram@vim.org>
parents:
30417
diff
changeset
|
2972 } |
6c6ac189a05f
patch 9.0.0640: cannot scroll by screen line if a line wraps
Bram Moolenaar <Bram@vim.org>
parents:
30417
diff
changeset
|
2973 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2974 // when 'textmode' is set or reset also change 'fileformat' |
7 | 2975 else if ((int *)varp == &curbuf->b_p_tx) |
2976 { | |
2977 set_fileformat(curbuf->b_p_tx ? EOL_DOS : EOL_UNIX, opt_flags); | |
2978 } | |
2979 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2980 // when 'textauto' is set or reset also change 'fileformats' |
7 | 2981 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
|
2982 { |
7 | 2983 set_string_option_direct((char_u *)"ffs", -1, |
2984 p_ta ? (char_u *)DFLT_FFS_VIM : (char_u *)"", | |
694 | 2985 OPT_FREE | opt_flags, 0); |
16162
cd5c83115ec6
patch 8.1.1086: too many curly braces
Bram Moolenaar <Bram@vim.org>
parents:
16082
diff
changeset
|
2986 } |
7 | 2987 |
2988 /* | |
2989 * When 'lisp' option changes include/exclude '-' in | |
2990 * keyword characters. | |
2991 */ | |
2992 else if (varp == (char_u *)&(curbuf->b_p_lisp)) | |
2993 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2994 (void)buf_init_chartab(curbuf, FALSE); // ignore errors |
7 | 2995 } |
2996 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
2997 // 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
|
2998 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
|
2999 { |
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14057
diff
changeset
|
3000 did_set_title(); |
7 | 3001 } |
3002 | |
3003 else if ((int *)varp == &curbuf->b_changed) | |
3004 { | |
3005 if (!value) | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3006 save_file_ff(curbuf); // Buffer is unchanged |
1805 | 3007 redraw_titles(); |
7 | 3008 modified_was_set = value; |
3009 } | |
3010 | |
3011 #ifdef BACKSLASH_IN_FILENAME | |
3012 else if ((int *)varp == &p_ssl) | |
3013 { | |
3014 if (p_ssl) | |
3015 { | |
3016 psepc = '/'; | |
3017 psepcN = '\\'; | |
3018 pseps[0] = '/'; | |
3019 } | |
3020 else | |
3021 { | |
3022 psepc = '\\'; | |
3023 psepcN = '/'; | |
3024 pseps[0] = '\\'; | |
3025 } | |
3026 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3027 // need to adjust the file name arguments and buffer names. |
7 | 3028 buflist_slash_adjust(); |
3029 alist_slash_adjust(); | |
3030 # ifdef FEAT_EVAL | |
3031 scriptnames_slash_adjust(); | |
3032 # endif | |
3033 } | |
3034 #endif | |
3035 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3036 // If 'wrap' is set, set w_leftcol to zero. |
7 | 3037 else if ((int *)varp == &curwin->w_p_wrap) |
3038 { | |
3039 if (curwin->w_p_wrap) | |
3040 curwin->w_leftcol = 0; | |
3041 } | |
3042 | |
3043 else if ((int *)varp == &p_ea) | |
3044 { | |
3045 if (p_ea && !old_value) | |
3046 win_equal(curwin, FALSE, 0); | |
3047 } | |
3048 | |
3049 else if ((int *)varp == &p_wiv) | |
3050 { | |
3051 /* | |
3052 * When 'weirdinvert' changed, set/reset 't_xs'. | |
3053 * Then set 'weirdinvert' according to value of 't_xs'. | |
3054 */ | |
3055 if (p_wiv && !old_value) | |
3056 T_XS = (char_u *)"y"; | |
3057 else if (!p_wiv && old_value) | |
3058 T_XS = empty_option; | |
3059 p_wiv = (*T_XS != NUL); | |
3060 } | |
3061 | |
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
|
3062 #ifdef FEAT_BEVAL_GUI |
7 | 3063 else if ((int *)varp == &p_beval) |
3064 { | |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12824
diff
changeset
|
3065 if (!balloonEvalForTerm) |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12824
diff
changeset
|
3066 { |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12824
diff
changeset
|
3067 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
|
3068 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
|
3069 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
|
3070 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
|
3071 } |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12824
diff
changeset
|
3072 } |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12824
diff
changeset
|
3073 #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
|
3074 #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
|
3075 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
|
3076 { |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12824
diff
changeset
|
3077 mch_bevalterm_changed(); |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12824
diff
changeset
|
3078 } |
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
|
3079 #endif |
820 | 3080 |
3081 #ifdef FEAT_AUTOCHDIR | |
7 | 3082 else if ((int *)varp == &p_acd) |
3083 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3084 // 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
|
3085 DO_AUTOCHDIR; |
7 | 3086 } |
3087 #endif | |
3088 | |
3089 #ifdef FEAT_DIFF | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3090 // 'diff' |
7 | 3091 else if ((int *)varp == &curwin->w_p_diff) |
3092 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3093 // May add or remove the buffer from the list of diff buffers. |
16 | 3094 diff_buf_adjust(curwin); |
3095 # ifdef FEAT_FOLDING | |
7 | 3096 if (foldmethodIsDiff(curwin)) |
3097 foldUpdateAll(curwin); | |
16 | 3098 # endif |
7 | 3099 } |
3100 #endif | |
3101 | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13361
diff
changeset
|
3102 #ifdef HAVE_INPUT_METHOD |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3103 // 'imdisable' |
7 | 3104 else if ((int *)varp == &p_imdisable) |
3105 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3106 // Only de-activate it here, it will be enabled when changing mode. |
7 | 3107 if (p_imdisable) |
3108 im_set_active(FALSE); | |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28457
diff
changeset
|
3109 else if (State & MODE_INSERT) |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3110 // 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
|
3111 // effect right away. |
3129 | 3112 im_set_active(curbuf->b_p_iminsert == B_IMODE_IM); |
7 | 3113 } |
3114 #endif | |
3115 | |
744 | 3116 #ifdef FEAT_SPELL |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3117 // 'spell' |
258 | 3118 else if ((int *)varp == &curwin->w_p_spell) |
3119 { | |
3120 if (curwin->w_p_spell) | |
28457
4dcccb2673fe
patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents:
28405
diff
changeset
|
3121 errmsg = did_set_spelllang(curwin); |
258 | 3122 } |
3123 #endif | |
3124 | |
7 | 3125 #ifdef FEAT_ARABIC |
3126 if ((int *)varp == &curwin->w_p_arab) | |
3127 { | |
3128 if (curwin->w_p_arab) | |
3129 { | |
3130 /* | |
3131 * 'arabic' is set, handle various sub-settings. | |
3132 */ | |
3133 if (!p_tbidi) | |
3134 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3135 // set rightleft mode |
7 | 3136 if (!curwin->w_p_rl) |
3137 { | |
3138 curwin->w_p_rl = TRUE; | |
3139 changed_window_setting(); | |
3140 } | |
3141 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3142 // Enable Arabic shaping (major part of what Arabic requires) |
7 | 3143 if (!p_arshape) |
3144 { | |
3145 p_arshape = TRUE; | |
3146 redraw_later_clear(); | |
3147 } | |
3148 } | |
3149 | |
26771
fc859aea8cec
patch 8.2.3914: various spelling mistakes in comments
Bram Moolenaar <Bram@vim.org>
parents:
26721
diff
changeset
|
3150 // Arabic requires a utf-8 encoding, inform the user if it's not |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3151 // set. |
7 | 3152 if (STRCMP(p_enc, "utf-8") != 0) |
16 | 3153 { |
1848 | 3154 static char *w_arabic = N_("W17: Arabic requires UTF-8, do ':set encoding=utf-8'"); |
3155 | |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
3156 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
|
3157 msg_attr(_(w_arabic), HL_ATTR(HLF_W)); |
1848 | 3158 #ifdef FEAT_EVAL |
3159 set_vim_var_string(VV_WARNINGMSG, (char_u *)_(w_arabic), -1); | |
3160 #endif | |
16 | 3161 } |
7 | 3162 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3163 // set 'delcombine' |
7 | 3164 p_deco = TRUE; |
3165 | |
3166 # ifdef FEAT_KEYMAP | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3167 // Force-set the necessary keymap for arabic |
28457
4dcccb2673fe
patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents:
28405
diff
changeset
|
3168 errmsg = set_option_value((char_u *)"keymap", |
4dcccb2673fe
patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents:
28405
diff
changeset
|
3169 0L, (char_u *)"arabic", OPT_LOCAL); |
7 | 3170 # endif |
3171 } | |
3172 else | |
3173 { | |
3174 /* | |
3175 * 'arabic' is reset, handle various sub-settings. | |
3176 */ | |
3177 if (!p_tbidi) | |
3178 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3179 // reset rightleft mode |
7 | 3180 if (curwin->w_p_rl) |
3181 { | |
3182 curwin->w_p_rl = FALSE; | |
3183 changed_window_setting(); | |
3184 } | |
3185 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3186 // '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
|
3187 // another window may still need it "on". |
7 | 3188 } |
3189 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3190 // '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
|
3191 // window may still want it "on". |
7 | 3192 |
3193 # ifdef FEAT_KEYMAP | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3194 // Revert to the default keymap |
7 | 3195 curbuf->b_p_iminsert = B_IMODE_NONE; |
3196 curbuf->b_p_imsearch = B_IMODE_USE_INSERT; | |
3197 # endif | |
3198 } | |
3443 | 3199 } |
3200 | |
1958 | 3201 #endif |
3202 | |
17827
6de5558c5242
patch 8.1.1910: redrawing too much when toggling 'relativenumber'
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
3203 #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
|
3204 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
|
3205 || (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
|
3206 && gui.in_use |
6de5558c5242
patch 8.1.1910: redrawing too much when toggling 'relativenumber'
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
3207 && (*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
|
3208 && curbuf->b_signlist != NULL) |
6de5558c5242
patch 8.1.1910: redrawing too much when toggling 'relativenumber'
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
3209 { |
6de5558c5242
patch 8.1.1910: redrawing too much when toggling 'relativenumber'
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
3210 // 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
|
3211 // '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
|
3212 // 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
|
3213 // 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
|
3214 // '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
|
3215 // (optimization). |
6de5558c5242
patch 8.1.1910: redrawing too much when toggling 'relativenumber'
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
3216 if (!(curwin->w_p_nu && ((int *)varp == &curwin->w_p_rnu))) |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
3217 redraw_all_later(UPD_CLEAR); |
17827
6de5558c5242
patch 8.1.1910: redrawing too much when toggling 'relativenumber'
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
3218 } |
6de5558c5242
patch 8.1.1910: redrawing too much when toggling 'relativenumber'
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
3219 #endif |
6de5558c5242
patch 8.1.1910: redrawing too much when toggling 'relativenumber'
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
3220 |
9027
773d627cac0b
commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents:
8969
diff
changeset
|
3221 #ifdef FEAT_TERMGUICOLORS |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3222 // 'termguicolors' |
9027
773d627cac0b
commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents:
8969
diff
changeset
|
3223 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
|
3224 { |
13314
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
3225 # ifdef FEAT_VTP |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3226 // 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
|
3227 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
|
3228 # 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
|
3229 !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
|
3230 # 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
|
3231 !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
|
3232 { |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
3233 p_tgc = 0; |
28457
4dcccb2673fe
patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents:
28405
diff
changeset
|
3234 return e_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
|
3235 } |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
3236 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
|
3237 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
|
3238 # endif |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8941
diff
changeset
|
3239 # ifdef FEAT_GUI |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8941
diff
changeset
|
3240 if (!gui.in_use && !gui.starting) |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8941
diff
changeset
|
3241 # endif |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8941
diff
changeset
|
3242 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
|
3243 # ifdef FEAT_VTP |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3244 // 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
|
3245 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
|
3246 { |
2bebc49116fd
patch 8.1.0123: MS-Windows: colors are wrong after setting 'notgc'
Christian Brabandt <cb@256bit.org>
parents:
14194
diff
changeset
|
3247 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
|
3248 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
|
3249 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
|
3250 } |
13314
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
3251 # endif |
26193
c83460a14407
patch 8.2.3628: looking terminal colors is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
26175
diff
changeset
|
3252 # ifdef FEAT_TERMINAL |
c83460a14407
patch 8.2.3628: looking terminal colors is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
26175
diff
changeset
|
3253 term_update_colors_all(); |
28919
99c1356f4210
patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
3254 term_update_palette_all(); |
26193
c83460a14407
patch 8.2.3628: looking terminal colors is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
26175
diff
changeset
|
3255 term_update_wincolor_all(); |
c83460a14407
patch 8.2.3628: looking terminal colors is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
26175
diff
changeset
|
3256 # endif |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8941
diff
changeset
|
3257 } |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8941
diff
changeset
|
3258 #endif |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8941
diff
changeset
|
3259 |
7 | 3260 /* |
3261 * End of handling side effects for bool options. | |
3262 */ | |
3263 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3264 // after handling side effects, call autocommand |
6935 | 3265 |
7 | 3266 options[opt_idx].flags |= P_WAS_SET; |
3267 | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13361
diff
changeset
|
3268 #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
|
3269 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
|
3270 (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
|
3271 (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
|
3272 (long)(value ? TRUE : FALSE), NULL); |
6935 | 3273 #endif |
3274 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3275 comp_col(); // in case 'ruler' or 'showcmd' changed |
3443 | 3276 if (curwin->w_curswant != MAXCOL |
6669 | 3277 && (options[opt_idx].flags & (P_CURSWANT | P_RALL)) != 0) |
3443 | 3278 curwin->w_set_curswant = TRUE; |
24079
a9ff8368d35f
patch 8.2.2581: Vim9: sourcing Vim9 script triggers a redraw
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
3279 |
a9ff8368d35f
patch 8.2.2581: Vim9: sourcing Vim9 script triggers a redraw
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
3280 if ((opt_flags & OPT_NO_REDRAW) == 0) |
a9ff8368d35f
patch 8.2.2581: Vim9: sourcing Vim9 script triggers a redraw
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
3281 check_redraw(options[opt_idx].flags); |
7 | 3282 |
28457
4dcccb2673fe
patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents:
28405
diff
changeset
|
3283 return errmsg; |
7 | 3284 } |
3285 | |
3286 /* | |
3287 * Set the value of a number option, and take care of side effects. | |
3288 * Returns NULL for success, or an error message for an error. | |
3289 */ | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15207
diff
changeset
|
3290 static char * |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3291 set_num_option( |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3292 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
|
3293 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
|
3294 long value, // new value |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3295 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
|
3296 size_t errbuflen, // length of "errbuf" |
24079
a9ff8368d35f
patch 8.2.2581: Vim9: sourcing Vim9 script triggers a redraw
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
3297 int opt_flags) // OPT_LOCAL, OPT_GLOBAL, |
a9ff8368d35f
patch 8.2.2581: Vim9: sourcing Vim9 script triggers a redraw
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
3298 // OPT_MODELINE, etc. |
7 | 3299 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15207
diff
changeset
|
3300 char *errmsg = NULL; |
7 | 3301 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
|
3302 #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
|
3303 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
|
3304 // 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
|
3305 #endif |
17085
620e9011b685
patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents:
17039
diff
changeset
|
3306 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
|
3307 long old_Columns = Columns; // remember old Columns |
7 | 3308 long *pp = (long *)varp; |
3309 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3310 // Disallow changing some options from secure mode. |
634 | 3311 if ((secure |
3312 #ifdef HAVE_SANDBOX | |
3313 || sandbox != 0 | |
3314 #endif | |
3315 ) && (options[opt_idx].flags & P_SECURE)) | |
26883
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
3316 return e_not_allowed_here; |
7 | 3317 |
17115
1c2d05cb4d1d
patch 8.1.1557: compiler warning for unused variables in tiny version
Bram Moolenaar <Bram@vim.org>
parents:
17085
diff
changeset
|
3318 #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
|
3319 // 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
|
3320 // 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
|
3321 // 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
|
3322 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
|
3323 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
|
3324 OPT_GLOBAL); |
1c2d05cb4d1d
patch 8.1.1557: compiler warning for unused variables in tiny version
Bram Moolenaar <Bram@vim.org>
parents:
17085
diff
changeset
|
3325 #endif |
17085
620e9011b685
patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents:
17039
diff
changeset
|
3326 |
7 | 3327 *pp = value; |
3328 #ifdef FEAT_EVAL | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3329 // 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
|
3330 set_option_sctx_idx(opt_idx, opt_flags, current_sctx); |
7 | 3331 #endif |
634 | 3332 #ifdef FEAT_GUI |
3333 need_mouse_correct = TRUE; | |
3334 #endif | |
7 | 3335 |
3740 | 3336 if (curbuf->b_p_sw < 0) |
7 | 3337 { |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26865
diff
changeset
|
3338 errmsg = e_argument_must_be_positive; |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
3339 #ifdef FEAT_VARTABS |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
3340 // 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
|
3341 curbuf->b_p_sw = tabstop_count(curbuf->b_p_vts_array) > 0 |
28809
d0241e74bfdb
patch 8.2.4928: various white space and cosmetic mistakes
Bram Moolenaar <Bram@vim.org>
parents:
28804
diff
changeset
|
3342 ? tabstop_first(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
|
3343 : curbuf->b_p_ts; |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
3344 #else |
7 | 3345 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
|
3346 #endif |
7 | 3347 } |
3348 | |
3349 /* | |
3350 * Number options that need some action when changed | |
3351 */ | |
3352 if (pp == &p_wh || pp == &p_hh) | |
3353 { | |
14057
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14029
diff
changeset
|
3354 // 'winheight' and 'helpheight' |
7 | 3355 if (p_wh < 1) |
3356 { | |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26865
diff
changeset
|
3357 errmsg = e_argument_must_be_positive; |
7 | 3358 p_wh = 1; |
3359 } | |
3360 if (p_wmh > p_wh) | |
3361 { | |
26883
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
3362 errmsg = e_winheight_cannot_be_smaller_than_winminheight; |
7 | 3363 p_wh = p_wmh; |
3364 } | |
3365 if (p_hh < 0) | |
3366 { | |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26865
diff
changeset
|
3367 errmsg = e_argument_must_be_positive; |
7 | 3368 p_hh = 0; |
3369 } | |
3370 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3371 // Change window height NOW |
10357
59d01e335858
commit https://github.com/vim/vim/commit/459ca563128f2edb7e3bb190090bbb755a56dd55
Christian Brabandt <cb@256bit.org>
parents:
10340
diff
changeset
|
3372 if (!ONE_WINDOW) |
7 | 3373 { |
3374 if (pp == &p_wh && curwin->w_height < p_wh) | |
3375 win_setheight((int)p_wh); | |
3376 if (pp == &p_hh && curbuf->b_help && curwin->w_height < p_hh) | |
3377 win_setheight((int)p_hh); | |
3378 } | |
3379 } | |
3380 else if (pp == &p_wmh) | |
3381 { | |
14057
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14029
diff
changeset
|
3382 // 'winminheight' |
7 | 3383 if (p_wmh < 0) |
3384 { | |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26865
diff
changeset
|
3385 errmsg = e_argument_must_be_positive; |
7 | 3386 p_wmh = 0; |
3387 } | |
3388 if (p_wmh > p_wh) | |
3389 { | |
26883
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
3390 errmsg = e_winheight_cannot_be_smaller_than_winminheight; |
7 | 3391 p_wmh = p_wh; |
3392 } | |
3393 win_setminheight(); | |
3394 } | |
13 | 3395 else if (pp == &p_wiw) |
7 | 3396 { |
14057
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14029
diff
changeset
|
3397 // 'winwidth' |
7 | 3398 if (p_wiw < 1) |
3399 { | |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26865
diff
changeset
|
3400 errmsg = e_argument_must_be_positive; |
7 | 3401 p_wiw = 1; |
3402 } | |
3403 if (p_wmw > p_wiw) | |
3404 { | |
26883
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
3405 errmsg = e_winwidth_cannot_be_smaller_than_winminwidth; |
7 | 3406 p_wiw = p_wmw; |
3407 } | |
3408 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3409 // Change window width NOW |
10357
59d01e335858
commit https://github.com/vim/vim/commit/459ca563128f2edb7e3bb190090bbb755a56dd55
Christian Brabandt <cb@256bit.org>
parents:
10340
diff
changeset
|
3410 if (!ONE_WINDOW && curwin->w_width < p_wiw) |
7 | 3411 win_setwidth((int)p_wiw); |
3412 } | |
3413 else if (pp == &p_wmw) | |
3414 { | |
14057
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14029
diff
changeset
|
3415 // 'winminwidth' |
7 | 3416 if (p_wmw < 0) |
3417 { | |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26865
diff
changeset
|
3418 errmsg = e_argument_must_be_positive; |
7 | 3419 p_wmw = 0; |
3420 } | |
3421 if (p_wmw > p_wiw) | |
3422 { | |
26883
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
3423 errmsg = e_winwidth_cannot_be_smaller_than_winminwidth; |
7 | 3424 p_wmw = p_wiw; |
3425 } | |
14057
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14029
diff
changeset
|
3426 win_setminwidth(); |
7 | 3427 } |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12469
diff
changeset
|
3428 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3429 // (re)set last window status line |
7 | 3430 else if (pp == &p_ls) |
3431 { | |
3432 last_status(FALSE); | |
3433 } | |
670 | 3434 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3435 // (re)set tab page line |
677 | 3436 else if (pp == &p_stal) |
670 | 3437 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3438 shell_new_rows(); // recompute window positions and heights |
670 | 3439 } |
7 | 3440 |
3441 #ifdef FEAT_GUI | |
3442 else if (pp == &p_linespace) | |
3443 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3444 // 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
|
3445 // same number of lines. |
444 | 3446 if (gui.in_use && gui_mch_adjust_charheight() == OK) |
813 | 3447 gui_set_shellsize(FALSE, FALSE, RESIZE_VERT); |
7 | 3448 } |
3449 #endif | |
3450 | |
3451 #ifdef FEAT_FOLDING | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3452 // 'foldlevel' |
7 | 3453 else if (pp == &curwin->w_p_fdl) |
3454 { | |
3455 if (curwin->w_p_fdl < 0) | |
3456 curwin->w_p_fdl = 0; | |
3457 newFoldLevel(); | |
3458 } | |
3459 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3460 // 'foldminlines' |
7 | 3461 else if (pp == &curwin->w_p_fml) |
3462 { | |
3463 foldUpdateAll(curwin); | |
3464 } | |
3465 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3466 // 'foldnestmax' |
7 | 3467 else if (pp == &curwin->w_p_fdn) |
3468 { | |
3469 if (foldmethodIsSyntax(curwin) || foldmethodIsIndent(curwin)) | |
3470 foldUpdateAll(curwin); | |
3471 } | |
3472 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3473 // 'foldcolumn' |
7 | 3474 else if (pp == &curwin->w_p_fdc) |
3475 { | |
3476 if (curwin->w_p_fdc < 0) | |
3477 { | |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26865
diff
changeset
|
3478 errmsg = e_argument_must_be_positive; |
7 | 3479 curwin->w_p_fdc = 0; |
3480 } | |
3481 else if (curwin->w_p_fdc > 12) | |
3482 { | |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26802
diff
changeset
|
3483 errmsg = e_invalid_argument; |
7 | 3484 curwin->w_p_fdc = 12; |
3485 } | |
3486 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3487 #endif // FEAT_FOLDING |
5438 | 3488 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3489 // 'shiftwidth' or 'tabstop' |
7 | 3490 else if (pp == &curbuf->b_p_sw || pp == &curbuf->b_p_ts) |
3491 { | |
28942
6cdf55afaae9
patch 8.2.4993: smart/C/lisp indenting is optional
Bram Moolenaar <Bram@vim.org>
parents:
28919
diff
changeset
|
3492 #ifdef FEAT_FOLDING |
7 | 3493 if (foldmethodIsIndent(curwin)) |
3494 foldUpdateAll(curwin); | |
28942
6cdf55afaae9
patch 8.2.4993: smart/C/lisp indenting is optional
Bram Moolenaar <Bram@vim.org>
parents:
28919
diff
changeset
|
3495 #endif |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3496 // 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
|
3497 // parse 'cinoptions'. |
5438 | 3498 if (pp == &curbuf->b_p_sw || curbuf->b_p_sw == 0) |
3499 parse_cino(curbuf); | |
28942
6cdf55afaae9
patch 8.2.4993: smart/C/lisp indenting is optional
Bram Moolenaar <Bram@vim.org>
parents:
28919
diff
changeset
|
3500 } |
7 | 3501 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3502 // 'maxcombine' |
714 | 3503 else if (pp == &p_mco) |
3504 { | |
3505 if (p_mco > MAX_MCO) | |
3506 p_mco = MAX_MCO; | |
3507 else if (p_mco < 0) | |
3508 p_mco = 0; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3509 screenclear(); // will re-allocate the screen |
714 | 3510 } |
3511 | |
7 | 3512 else if (pp == &curbuf->b_p_iminsert) |
3513 { | |
3514 if (curbuf->b_p_iminsert < 0 || curbuf->b_p_iminsert > B_IMODE_LAST) | |
3515 { | |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26802
diff
changeset
|
3516 errmsg = e_invalid_argument; |
7 | 3517 curbuf->b_p_iminsert = B_IMODE_NONE; |
3518 } | |
3519 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
|
3520 if (termcap_active) // don't do this in the alternate screen |
7 | 3521 showmode(); |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12469
diff
changeset
|
3522 #if defined(FEAT_KEYMAP) |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3523 // Show/unshow value of 'keymap' in status lines. |
7 | 3524 status_redraw_curbuf(); |
3525 #endif | |
3526 } | |
3527 | |
12293
1ff5e5dfa9b0
patch 8.0.1026: GTK on-the-spot input has problems
Christian Brabandt <cb@256bit.org>
parents:
12259
diff
changeset
|
3528 #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
|
3529 // 'imstyle' |
12293
1ff5e5dfa9b0
patch 8.0.1026: GTK on-the-spot input has problems
Christian Brabandt <cb@256bit.org>
parents:
12259
diff
changeset
|
3530 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
|
3531 { |
1ff5e5dfa9b0
patch 8.0.1026: GTK on-the-spot input has problems
Christian Brabandt <cb@256bit.org>
parents:
12259
diff
changeset
|
3532 if (p_imst != IM_ON_THE_SPOT && p_imst != IM_OVER_THE_SPOT) |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26802
diff
changeset
|
3533 errmsg = e_invalid_argument; |
12293
1ff5e5dfa9b0
patch 8.0.1026: GTK on-the-spot input has problems
Christian Brabandt <cb@256bit.org>
parents:
12259
diff
changeset
|
3534 } |
1ff5e5dfa9b0
patch 8.0.1026: GTK on-the-spot input has problems
Christian Brabandt <cb@256bit.org>
parents:
12259
diff
changeset
|
3535 #endif |
1ff5e5dfa9b0
patch 8.0.1026: GTK on-the-spot input has problems
Christian Brabandt <cb@256bit.org>
parents:
12259
diff
changeset
|
3536 |
164 | 3537 else if (pp == &p_window) |
3538 { | |
3539 if (p_window < 1) | |
3540 p_window = 1; | |
3541 else if (p_window >= Rows) | |
3542 p_window = Rows - 1; | |
3543 } | |
3544 | |
7 | 3545 else if (pp == &curbuf->b_p_imsearch) |
3546 { | |
3547 if (curbuf->b_p_imsearch < -1 || curbuf->b_p_imsearch > B_IMODE_LAST) | |
3548 { | |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26802
diff
changeset
|
3549 errmsg = e_invalid_argument; |
7 | 3550 curbuf->b_p_imsearch = B_IMODE_NONE; |
3551 } | |
3552 p_imsearch = curbuf->b_p_imsearch; | |
3553 } | |
3554 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3555 // if 'titlelen' has changed, redraw the title |
7 | 3556 else if (pp == &p_titlelen) |
3557 { | |
3558 if (p_titlelen < 0) | |
3559 { | |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26865
diff
changeset
|
3560 errmsg = e_argument_must_be_positive; |
7 | 3561 p_titlelen = 85; |
3562 } | |
3563 if (starting != NO_SCREEN && old_value != p_titlelen) | |
3564 need_maketitle = TRUE; | |
3565 } | |
3566 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3567 // if p_ch changed value, change the command line height |
7 | 3568 else if (pp == &p_ch) |
3569 { | |
30005
bb0e525e1393
patch 9.0.0340: the 'cmdheight' zero support causes too much trouble
Bram Moolenaar <Bram@vim.org>
parents:
29960
diff
changeset
|
3570 if (p_ch < 1) |
7 | 3571 { |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26865
diff
changeset
|
3572 errmsg = e_argument_must_be_positive; |
7 | 3573 p_ch = 1; |
3574 } | |
1404 | 3575 if (p_ch > Rows - min_rows() + 1) |
3576 p_ch = Rows - min_rows() + 1; | |
7 | 3577 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3578 // 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
|
3579 // completed. Otherwise the frame sizes may be wrong. |
30671
15ac28c12c8f
patch 9.0.0670: no space for command line when there is a tabline
Bram Moolenaar <Bram@vim.org>
parents:
30661
diff
changeset
|
3580 if ((p_ch != old_value |
15ac28c12c8f
patch 9.0.0670: no space for command line when there is a tabline
Bram Moolenaar <Bram@vim.org>
parents:
30661
diff
changeset
|
3581 || tabline_height() + topframe->fr_height != Rows - p_ch) |
30661
57ebc2a4d2ca
patch 9.0.0665: setting 'cmdheight' has no effect if last window was resized
Bram Moolenaar <Bram@vim.org>
parents:
30645
diff
changeset
|
3582 && full_screen |
7 | 3583 #ifdef FEAT_GUI |
3584 && !gui.starting | |
3585 #endif | |
30661
57ebc2a4d2ca
patch 9.0.0665: setting 'cmdheight' has no effect if last window was resized
Bram Moolenaar <Bram@vim.org>
parents:
30645
diff
changeset
|
3586 ) |
824 | 3587 command_height(); |
7 | 3588 } |
3589 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3590 // when 'updatecount' changes from zero to non-zero, open swap files |
7 | 3591 else if (pp == &p_uc) |
3592 { | |
3593 if (p_uc < 0) | |
3594 { | |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26865
diff
changeset
|
3595 errmsg = e_argument_must_be_positive; |
7 | 3596 p_uc = 100; |
3597 } | |
3598 if (p_uc && !old_value) | |
3599 ml_open_files(); | |
3600 } | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2248
diff
changeset
|
3601 #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
|
3602 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
|
3603 { |
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2362
diff
changeset
|
3604 if (curwin->w_p_cole < 0) |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2248
diff
changeset
|
3605 { |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26865
diff
changeset
|
3606 errmsg = e_argument_must_be_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
|
3607 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
|
3608 } |
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2362
diff
changeset
|
3609 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
|
3610 { |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26802
diff
changeset
|
3611 errmsg = e_invalid_argument; |
2378
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2362
diff
changeset
|
3612 curwin->w_p_cole = 3; |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2248
diff
changeset
|
3613 } |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2248
diff
changeset
|
3614 } |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2248
diff
changeset
|
3615 #endif |
16 | 3616 #ifdef MZSCHEME_GUI_THREADS |
14 | 3617 else if (pp == &p_mzq) |
3618 mzvim_reset_timer(); | |
3619 #endif | |
7 | 3620 |
10722
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10708
diff
changeset
|
3621 #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
|
3622 // 'pyxversion' |
10722
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10708
diff
changeset
|
3623 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
|
3624 { |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10708
diff
changeset
|
3625 if (p_pyx != 0 && p_pyx != 2 && p_pyx != 3) |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26802
diff
changeset
|
3626 errmsg = e_invalid_argument; |
10722
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10708
diff
changeset
|
3627 } |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10708
diff
changeset
|
3628 #endif |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10708
diff
changeset
|
3629 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3630 // sync undo before 'undolevels' changes |
7 | 3631 else if (pp == &p_ul) |
3632 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3633 // use the old value, otherwise u_sync() may not work properly |
7 | 3634 p_ul = old_value; |
825 | 3635 u_sync(TRUE); |
7 | 3636 p_ul = value; |
3637 } | |
5446 | 3638 else if (pp == &curbuf->b_p_ul) |
3639 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3640 // use the old value, otherwise u_sync() may not work properly |
5446 | 3641 curbuf->b_p_ul = old_value; |
3642 u_sync(TRUE); | |
3643 curbuf->b_p_ul = value; | |
3644 } | |
7 | 3645 |
13 | 3646 #ifdef FEAT_LINEBREAK |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3647 // 'numberwidth' must be positive |
13 | 3648 else if (pp == &curwin->w_p_nuw) |
3649 { | |
3650 if (curwin->w_p_nuw < 1) | |
3651 { | |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26865
diff
changeset
|
3652 errmsg = e_argument_must_be_positive; |
13 | 3653 curwin->w_p_nuw = 1; |
3654 } | |
17229
f1c7b7a4d9e4
patch 8.1.1614: 'numberwidth' can only go up to 10
Bram Moolenaar <Bram@vim.org>
parents:
17176
diff
changeset
|
3655 if (curwin->w_p_nuw > 20) |
13 | 3656 { |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26802
diff
changeset
|
3657 errmsg = e_invalid_argument; |
17229
f1c7b7a4d9e4
patch 8.1.1614: 'numberwidth' can only go up to 10
Bram Moolenaar <Bram@vim.org>
parents:
17176
diff
changeset
|
3658 curwin->w_p_nuw = 20; |
13 | 3659 } |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3660 curwin->w_nrwidth_line_count = 0; // trigger a redraw |
13 | 3661 } |
3662 #endif | |
3663 | |
2314
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3664 else if (pp == &curbuf->b_p_tw) |
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3665 { |
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3666 if (curbuf->b_p_tw < 0) |
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3667 { |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26865
diff
changeset
|
3668 errmsg = e_argument_must_be_positive; |
2314
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3669 curbuf->b_p_tw = 0; |
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3670 } |
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3671 #ifdef FEAT_SYN_HL |
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3672 { |
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3673 win_T *wp; |
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3674 tabpage_T *tp; |
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3675 |
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3676 FOR_ALL_TAB_WINDOWS(tp, wp) |
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3677 check_colorcolumn(wp); |
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3678 } |
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3679 #endif |
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3680 } |
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3681 |
7 | 3682 /* |
3683 * Check the bounds for numeric options here | |
3684 */ | |
3685 if (Rows < min_rows() && full_screen) | |
3686 { | |
3687 if (errbuf != NULL) | |
3688 { | |
27426
41e0dcf38521
patch 8.2.4241: some type casts are redundant
Bram Moolenaar <Bram@vim.org>
parents:
27303
diff
changeset
|
3689 vim_snprintf(errbuf, errbuflen, |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
3690 _(e_need_at_least_nr_lines), min_rows()); |
7 | 3691 errmsg = errbuf; |
3692 } | |
3693 Rows = min_rows(); | |
3694 } | |
3695 if (Columns < MIN_COLUMNS && full_screen) | |
3696 { | |
3697 if (errbuf != NULL) | |
3698 { | |
27426
41e0dcf38521
patch 8.2.4241: some type casts are redundant
Bram Moolenaar <Bram@vim.org>
parents:
27303
diff
changeset
|
3699 vim_snprintf(errbuf, errbuflen, |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
3700 _(e_need_at_least_nr_columns), MIN_COLUMNS); |
7 | 3701 errmsg = errbuf; |
3702 } | |
3703 Columns = MIN_COLUMNS; | |
3704 } | |
5070
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
5039
diff
changeset
|
3705 limit_screen_size(); |
7 | 3706 |
3707 /* | |
3708 * If the screen (shell) height has been changed, assume it is the | |
3709 * physical screenheight. | |
3710 */ | |
3711 if (old_Rows != Rows || old_Columns != Columns) | |
3712 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3713 // Changing the screen size is not allowed while updating the screen. |
7 | 3714 if (updating_screen) |
3715 *pp = old_value; | |
3716 else if (full_screen | |
3717 #ifdef FEAT_GUI | |
3718 && !gui.starting | |
3719 #endif | |
3720 ) | |
3721 set_shellsize((int)Columns, (int)Rows, TRUE); | |
3722 else | |
3723 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3724 // 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
|
3725 // messages. |
7 | 3726 check_shellsize(); |
3727 if (cmdline_row > Rows - p_ch && Rows > p_ch) | |
3728 cmdline_row = Rows - p_ch; | |
3729 } | |
857 | 3730 if (p_window >= Rows || !option_was_set((char_u *)"window")) |
164 | 3731 p_window = Rows - 1; |
7 | 3732 } |
3733 | |
3734 if (curbuf->b_p_ts <= 0) | |
3735 { | |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26865
diff
changeset
|
3736 errmsg = e_argument_must_be_positive; |
7 | 3737 curbuf->b_p_ts = 8; |
3738 } | |
27434
c1702fd7e716
patch 8.2.4245: ":retab 0" may cause illegal memory access
Bram Moolenaar <Bram@vim.org>
parents:
27426
diff
changeset
|
3739 else if (curbuf->b_p_ts > TABSTOP_MAX) |
c1702fd7e716
patch 8.2.4245: ":retab 0" may cause illegal memory access
Bram Moolenaar <Bram@vim.org>
parents:
27426
diff
changeset
|
3740 { |
c1702fd7e716
patch 8.2.4245: ":retab 0" may cause illegal memory access
Bram Moolenaar <Bram@vim.org>
parents:
27426
diff
changeset
|
3741 errmsg = e_invalid_argument; |
c1702fd7e716
patch 8.2.4245: ":retab 0" may cause illegal memory access
Bram Moolenaar <Bram@vim.org>
parents:
27426
diff
changeset
|
3742 curbuf->b_p_ts = 8; |
c1702fd7e716
patch 8.2.4245: ":retab 0" may cause illegal memory access
Bram Moolenaar <Bram@vim.org>
parents:
27426
diff
changeset
|
3743 } |
7 | 3744 if (p_tm < 0) |
3745 { | |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26865
diff
changeset
|
3746 errmsg = e_argument_must_be_positive; |
7 | 3747 p_tm = 0; |
3748 } | |
3749 if ((curwin->w_p_scr <= 0 | |
3750 || (curwin->w_p_scr > curwin->w_height | |
3751 && curwin->w_height > 0)) | |
3752 && full_screen) | |
3753 { | |
3754 if (pp == &(curwin->w_p_scr)) | |
3755 { | |
3756 if (curwin->w_p_scr != 0) | |
25320
1e6da8364a02
patch 8.2.3197: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25176
diff
changeset
|
3757 errmsg = e_invalid_scroll_size; |
7 | 3758 win_comp_scroll(curwin); |
3759 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3760 // 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
|
3761 // it. |
7 | 3762 else if (curwin->w_p_scr <= 0) |
3763 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
|
3764 else // curwin->w_p_scr > curwin->w_height |
7 | 3765 curwin->w_p_scr = curwin->w_height; |
3766 } | |
1726 | 3767 if (p_hi < 0) |
3768 { | |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26865
diff
changeset
|
3769 errmsg = e_argument_must_be_positive; |
1726 | 3770 p_hi = 0; |
3771 } | |
5991 | 3772 else if (p_hi > 10000) |
3773 { | |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26802
diff
changeset
|
3774 errmsg = e_invalid_argument; |
5991 | 3775 p_hi = 10000; |
3776 } | |
4444 | 3777 if (p_re < 0 || p_re > 2) |
3778 { | |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26802
diff
changeset
|
3779 errmsg = e_invalid_argument; |
4444 | 3780 p_re = 0; |
3781 } | |
7 | 3782 if (p_report < 0) |
3783 { | |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26865
diff
changeset
|
3784 errmsg = e_argument_must_be_positive; |
7 | 3785 p_report = 1; |
3786 } | |
532 | 3787 if ((p_sj < -100 || p_sj >= Rows) && full_screen) |
7 | 3788 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3789 if (Rows != old_Rows) // Rows changed, just adjust p_sj |
7 | 3790 p_sj = Rows / 2; |
3791 else | |
3792 { | |
25320
1e6da8364a02
patch 8.2.3197: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25176
diff
changeset
|
3793 errmsg = e_invalid_scroll_size; |
7 | 3794 p_sj = 1; |
3795 } | |
3796 } | |
3797 if (p_so < 0 && full_screen) | |
3798 { | |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26865
diff
changeset
|
3799 errmsg = e_argument_must_be_positive; |
7 | 3800 p_so = 0; |
3801 } | |
3802 if (p_siso < 0 && full_screen) | |
3803 { | |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26865
diff
changeset
|
3804 errmsg = e_argument_must_be_positive; |
7 | 3805 p_siso = 0; |
3806 } | |
3807 if (p_cwh < 1) | |
3808 { | |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26865
diff
changeset
|
3809 errmsg = e_argument_must_be_positive; |
7 | 3810 p_cwh = 1; |
3811 } | |
3812 if (p_ut < 0) | |
3813 { | |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26865
diff
changeset
|
3814 errmsg = e_argument_must_be_positive; |
7 | 3815 p_ut = 2000; |
3816 } | |
3817 if (p_ss < 0) | |
3818 { | |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26865
diff
changeset
|
3819 errmsg = e_argument_must_be_positive; |
7 | 3820 p_ss = 0; |
3821 } | |
3822 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3823 // May set global value for local option. |
7 | 3824 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0) |
3825 *(long *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) = *pp; | |
3826 | |
3827 options[opt_idx].flags |= P_WAS_SET; | |
3828 | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13361
diff
changeset
|
3829 #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
|
3830 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
|
3831 value, errmsg); |
6935 | 3832 #endif |
3833 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3834 comp_col(); // in case 'columns' or 'ls' changed |
3443 | 3835 if (curwin->w_curswant != MAXCOL |
6669 | 3836 && (options[opt_idx].flags & (P_CURSWANT | P_RALL)) != 0) |
3443 | 3837 curwin->w_set_curswant = TRUE; |
24079
a9ff8368d35f
patch 8.2.2581: Vim9: sourcing Vim9 script triggers a redraw
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
3838 if ((opt_flags & OPT_NO_REDRAW) == 0) |
a9ff8368d35f
patch 8.2.2581: Vim9: sourcing Vim9 script triggers a redraw
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
3839 check_redraw(options[opt_idx].flags); |
7 | 3840 |
3841 return errmsg; | |
3842 } | |
3843 | |
3844 /* | |
3845 * Called after an option changed: check if something needs to be redrawn. | |
3846 */ | |
18100
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
3847 void |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3848 check_redraw(long_u flags) |
7 | 3849 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3850 // Careful: P_RCLR and P_RALL are a combination of other P_ flags |
3263 | 3851 int doclear = (flags & P_RCLR) == P_RCLR; |
3852 int all = ((flags & P_RALL) == P_RALL || doclear); | |
7 | 3853 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3854 if ((flags & P_RSTAT) || all) // mark all status lines dirty |
7 | 3855 status_redraw_all(); |
3856 | |
3857 if ((flags & P_RBUF) || (flags & P_RWIN) || all) | |
3858 changed_window_setting(); | |
3859 if (flags & P_RBUF) | |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
3860 redraw_curbuf_later(UPD_NOT_VALID); |
10456
536a7d49249c
commit https://github.com/vim/vim/commit/a2477fd3490c1166522631eee53c57d34321086a
Christian Brabandt <cb@256bit.org>
parents:
10424
diff
changeset
|
3861 if (flags & P_RWINONLY) |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
3862 redraw_later(UPD_NOT_VALID); |
3263 | 3863 if (doclear) |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
3864 redraw_all_later(UPD_CLEAR); |
7 | 3865 else if (all) |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
3866 redraw_all_later(UPD_NOT_VALID); |
7 | 3867 } |
3868 | |
3869 /* | |
3870 * Find index for option 'arg'. | |
3871 * Return -1 if not found. | |
3872 */ | |
18100
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
3873 int |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3874 findoption(char_u *arg) |
7 | 3875 { |
3876 int opt_idx; | |
3877 char *s, *p; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3878 static short quick_tab[27] = {0, 0}; // quick access table |
7 | 3879 int is_term_opt; |
3880 | |
3881 /* | |
3882 * For first call: Initialize the quick-access table. | |
3883 * It contains the index for the first option that starts with a certain | |
3884 * letter. There are 26 letters, plus the first "t_" option. | |
3885 */ | |
3886 if (quick_tab[1] == 0) | |
3887 { | |
3888 p = options[0].fullname; | |
3889 for (opt_idx = 1; (s = options[opt_idx].fullname) != NULL; opt_idx++) | |
3890 { | |
3891 if (s[0] != p[0]) | |
3892 { | |
3893 if (s[0] == 't' && s[1] == '_') | |
3894 quick_tab[26] = opt_idx; | |
3895 else | |
3896 quick_tab[CharOrdLow(s[0])] = opt_idx; | |
3897 } | |
3898 p = s; | |
3899 } | |
3900 } | |
3901 | |
3902 /* | |
3903 * Check for name starting with an illegal character. | |
3904 */ | |
3905 if (arg[0] < 'a' || arg[0] > 'z') | |
3906 return -1; | |
3907 | |
3908 is_term_opt = (arg[0] == 't' && arg[1] == '_'); | |
3909 if (is_term_opt) | |
3910 opt_idx = quick_tab[26]; | |
3911 else | |
3912 opt_idx = quick_tab[CharOrdLow(arg[0])]; | |
3913 for ( ; (s = options[opt_idx].fullname) != NULL; opt_idx++) | |
3914 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3915 if (STRCMP(arg, s) == 0) // match full name |
7 | 3916 break; |
3917 } | |
3918 if (s == NULL && !is_term_opt) | |
3919 { | |
3920 opt_idx = quick_tab[CharOrdLow(arg[0])]; | |
3921 for ( ; options[opt_idx].fullname != NULL; opt_idx++) | |
3922 { | |
3923 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
|
3924 if (s != NULL && STRCMP(arg, s) == 0) // match short name |
7 | 3925 break; |
3926 s = NULL; | |
3927 } | |
3928 } | |
3929 if (s == NULL) | |
3930 opt_idx = -1; | |
3931 return opt_idx; | |
3932 } | |
3933 | |
30825
c7983f593fa7
patch 9.0.0747: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
30671
diff
changeset
|
3934 #if defined(FEAT_EVAL) || defined(FEAT_TCL) || defined(FEAT_MZSCHEME) || defined(FEAT_SPELL) |
7 | 3935 /* |
3936 * Get the value for an option. | |
3937 * | |
3938 * Returns: | |
23422
bb0c53f4ef8b
patch 8.2.2254: Vim9: bool option type is number
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
3939 * Number option: gov_number, *numval gets value. |
23467
826a6406ea7b
patch 8.2.2276: list of distributed files is outdated
Bram Moolenaar <Bram@vim.org>
parents:
23422
diff
changeset
|
3940 * Toggle option: gov_bool, *numval gets value. |
23422
bb0c53f4ef8b
patch 8.2.2254: Vim9: bool option type is number
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
3941 * String option: gov_string, *stringval gets allocated string. |
bb0c53f4ef8b
patch 8.2.2254: Vim9: bool option type is number
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
3942 * Hidden Number option: gov_hidden_number. |
bb0c53f4ef8b
patch 8.2.2254: Vim9: bool option type is number
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
3943 * Hidden Toggle option: gov_hidden_bool. |
bb0c53f4ef8b
patch 8.2.2254: Vim9: bool option type is number
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
3944 * Hidden String option: gov_hidden_string. |
bb0c53f4ef8b
patch 8.2.2254: Vim9: bool option type is number
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
3945 * Unknown option: gov_unknown. |
26441
65ab0b035dd8
patch 8.2.3751: cannot assign a lambda to an option that takes a function
Bram Moolenaar <Bram@vim.org>
parents:
26400
diff
changeset
|
3946 * |
65ab0b035dd8
patch 8.2.3751: cannot assign a lambda to an option that takes a function
Bram Moolenaar <Bram@vim.org>
parents:
26400
diff
changeset
|
3947 * "flagsp" (if not NULL) is set to the option flags (P_xxxx). |
7 | 3948 */ |
23422
bb0c53f4ef8b
patch 8.2.2254: Vim9: bool option type is number
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
3949 getoption_T |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3950 get_option_value( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3951 char_u *name, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3952 long *numval, |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
3953 char_u **stringval, // NULL when only checking existence |
26441
65ab0b035dd8
patch 8.2.3751: cannot assign a lambda to an option that takes a function
Bram Moolenaar <Bram@vim.org>
parents:
26400
diff
changeset
|
3954 int *flagsp, |
65ab0b035dd8
patch 8.2.3751: cannot assign a lambda to an option that takes a function
Bram Moolenaar <Bram@vim.org>
parents:
26400
diff
changeset
|
3955 int scope) |
7 | 3956 { |
3957 int opt_idx; | |
3958 char_u *varp; | |
3959 | |
3960 opt_idx = findoption(name); | |
23422
bb0c53f4ef8b
patch 8.2.2254: Vim9: bool option type is number
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
3961 if (opt_idx < 0) // option not in the table |
10825
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
3962 { |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
3963 int key; |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
3964 |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
3965 if (STRLEN(name) == 4 && name[0] == 't' && name[1] == '_' |
23422
bb0c53f4ef8b
patch 8.2.2254: Vim9: bool option type is number
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
3966 && (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
|
3967 { |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
3968 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
|
3969 char_u *p; |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
3970 |
26802
f6b10a501a0e
patch 8.2.3929: using unititialized variable
Bram Moolenaar <Bram@vim.org>
parents:
26771
diff
changeset
|
3971 if (flagsp != NULL) |
f6b10a501a0e
patch 8.2.3929: using unititialized variable
Bram Moolenaar <Bram@vim.org>
parents:
26771
diff
changeset
|
3972 *flagsp = 0; // terminal option has no flags |
f6b10a501a0e
patch 8.2.3929: using unititialized variable
Bram Moolenaar <Bram@vim.org>
parents:
26771
diff
changeset
|
3973 |
23422
bb0c53f4ef8b
patch 8.2.2254: Vim9: bool option type is number
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
3974 // check for a terminal option |
10825
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
3975 if (key < 0) |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
3976 { |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
3977 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
|
3978 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
|
3979 } |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
3980 else |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
3981 { |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
3982 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
|
3983 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
|
3984 } |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
3985 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
|
3986 if (p != NULL) |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
3987 { |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
3988 if (stringval != NULL) |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
3989 *stringval = vim_strsave(p); |
23422
bb0c53f4ef8b
patch 8.2.2254: Vim9: bool option type is number
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
3990 return gov_string; |
10825
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
3991 } |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
3992 } |
23422
bb0c53f4ef8b
patch 8.2.2254: Vim9: bool option type is number
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
3993 return gov_unknown; |
10825
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
3994 } |
7 | 3995 |
26441
65ab0b035dd8
patch 8.2.3751: cannot assign a lambda to an option that takes a function
Bram Moolenaar <Bram@vim.org>
parents:
26400
diff
changeset
|
3996 varp = get_varp_scope(&(options[opt_idx]), scope); |
65ab0b035dd8
patch 8.2.3751: cannot assign a lambda to an option that takes a function
Bram Moolenaar <Bram@vim.org>
parents:
26400
diff
changeset
|
3997 |
65ab0b035dd8
patch 8.2.3751: cannot assign a lambda to an option that takes a function
Bram Moolenaar <Bram@vim.org>
parents:
26400
diff
changeset
|
3998 if (flagsp != NULL) |
65ab0b035dd8
patch 8.2.3751: cannot assign a lambda to an option that takes a function
Bram Moolenaar <Bram@vim.org>
parents:
26400
diff
changeset
|
3999 // Return the P_xxxx option flags. |
65ab0b035dd8
patch 8.2.3751: cannot assign a lambda to an option that takes a function
Bram Moolenaar <Bram@vim.org>
parents:
26400
diff
changeset
|
4000 *flagsp = options[opt_idx].flags; |
7 | 4001 |
4002 if (options[opt_idx].flags & P_STRING) | |
4003 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4004 if (varp == NULL) // hidden option |
23422
bb0c53f4ef8b
patch 8.2.2254: Vim9: bool option type is number
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
4005 return gov_hidden_string; |
7 | 4006 if (stringval != NULL) |
4007 { | |
28804
12bbd8a31cac
patch 8.2.4926: #ifdef for crypt feature around too many lines
Bram Moolenaar <Bram@vim.org>
parents:
28800
diff
changeset
|
4008 if ((char_u **)varp == &p_pt) // 'pastetoggle' |
30226
b6b803ed4a53
patch 9.0.0449: there is no easy way to translate a key code into a string
Bram Moolenaar <Bram@vim.org>
parents:
30005
diff
changeset
|
4009 *stringval = str2special_save(*(char_u **)(varp), FALSE, |
b6b803ed4a53
patch 9.0.0449: there is no easy way to translate a key code into a string
Bram Moolenaar <Bram@vim.org>
parents:
30005
diff
changeset
|
4010 FALSE); |
7 | 4011 #ifdef FEAT_CRYPT |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4012 // never return the value of the crypt key |
28804
12bbd8a31cac
patch 8.2.4926: #ifdef for crypt feature around too many lines
Bram Moolenaar <Bram@vim.org>
parents:
28800
diff
changeset
|
4013 else if ((char_u **)varp == &curbuf->b_p_key |
1622 | 4014 && **(char_u **)(varp) != NUL) |
7 | 4015 *stringval = vim_strsave((char_u *)"*****"); |
28804
12bbd8a31cac
patch 8.2.4926: #ifdef for crypt feature around too many lines
Bram Moolenaar <Bram@vim.org>
parents:
28800
diff
changeset
|
4016 #endif |
7 | 4017 else |
4018 *stringval = vim_strsave(*(char_u **)(varp)); | |
4019 } | |
23422
bb0c53f4ef8b
patch 8.2.2254: Vim9: bool option type is number
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
4020 return gov_string; |
7 | 4021 } |
4022 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4023 if (varp == NULL) // hidden option |
23422
bb0c53f4ef8b
patch 8.2.2254: Vim9: bool option type is number
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
4024 return (options[opt_idx].flags & P_NUM) |
bb0c53f4ef8b
patch 8.2.2254: Vim9: bool option type is number
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
4025 ? gov_hidden_number : gov_hidden_bool; |
7 | 4026 if (options[opt_idx].flags & P_NUM) |
4027 *numval = *(long *)varp; | |
4028 else | |
4029 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4030 // 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
|
4031 // it set when 'ff' or 'fenc' changed. |
7 | 4032 if ((int *)varp == &curbuf->b_changed) |
4033 *numval = curbufIsChanged(); | |
4034 else | |
9395
beab399e3883
commit https://github.com/vim/vim/commit/2acfbed9dbea990f129535de7ff3df360365130b
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
4035 *numval = (long) *(int *)varp; |
7 | 4036 } |
23422
bb0c53f4ef8b
patch 8.2.2254: Vim9: bool option type is number
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
4037 return (options[opt_idx].flags & P_NUM) ? gov_number : gov_bool; |
7 | 4038 } |
4039 #endif | |
4040 | |
5610 | 4041 #if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) || defined(PROTO) |
4350 | 4042 /* |
4043 * Returns the option attributes and its value. Unlike the above function it | |
4044 * will return either global value or local value of the option depending on | |
4045 * what was requested, but it will never return global value if it was | |
4046 * requested to return local one and vice versa. Neither it will return | |
4047 * buffer-local value if it was requested to return window-local one. | |
4048 * | |
4049 * Pretends that option is absent if it is not present in the requested scope | |
4050 * (i.e. has no global, window-local or buffer-local value depending on | |
4051 * opt_type). Uses | |
4052 * | |
4053 * Returned flags: | |
5867 | 4054 * 0 hidden or unknown option, also option that does not have requested |
4055 * type (see SREQ_* in vim.h) | |
4350 | 4056 * see SOPT_* in vim.h for other flags |
4057 * | |
4058 * Possible opt_type values: see SREQ_* in vim.h | |
4059 */ | |
4060 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4061 get_option_value_strict( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4062 char_u *name, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4063 long *numval, |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4064 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
|
4065 int opt_type, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4066 void *from) |
4350 | 4067 { |
4068 int opt_idx; | |
4367 | 4069 char_u *varp = NULL; |
4350 | 4070 struct vimoption *p; |
4071 int r = 0; | |
4072 | |
4073 opt_idx = findoption(name); | |
4074 if (opt_idx < 0) | |
4075 return 0; | |
4076 | |
4077 p = &(options[opt_idx]); | |
4078 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4079 // Hidden option |
4350 | 4080 if (p->var == NULL) |
4081 return 0; | |
4082 | |
4083 if (p->flags & P_BOOL) | |
4084 r |= SOPT_BOOL; | |
4085 else if (p->flags & P_NUM) | |
4086 r |= SOPT_NUM; | |
4087 else if (p->flags & P_STRING) | |
4088 r |= SOPT_STRING; | |
4089 | |
4090 if (p->indir == PV_NONE) | |
4091 { | |
4092 if (opt_type == SREQ_GLOBAL) | |
4093 r |= SOPT_GLOBAL; | |
4094 else | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4095 return 0; // Did not request global-only option |
4350 | 4096 } |
4097 else | |
4098 { | |
4099 if (p->indir & PV_BOTH) | |
4100 r |= SOPT_GLOBAL; | |
4101 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
|
4102 return 0; // Requested global option |
4350 | 4103 |
4104 if (p->indir & PV_WIN) | |
4105 { | |
4106 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
|
4107 return 0; // Did not request window-local option |
4350 | 4108 else |
4109 r |= SOPT_WIN; | |
4110 } | |
4111 else if (p->indir & PV_BUF) | |
4112 { | |
4113 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
|
4114 return 0; // Did not request buffer-local option |
4350 | 4115 else |
4116 r |= SOPT_BUF; | |
4117 } | |
4118 } | |
4119 | |
4120 if (stringval == NULL) | |
4121 return r; | |
4122 | |
4123 if (opt_type == SREQ_GLOBAL) | |
4124 varp = p->var; | |
4125 else | |
4126 { | |
4127 if (opt_type == SREQ_BUF) | |
4128 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4129 // 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
|
4130 // consider it set when 'ff' or 'fenc' changed. |
4350 | 4131 if (p->indir == PV_MOD) |
4132 { | |
14179
ab64a4fb5edd
patch 8.1.0107: Python: getting buffer option clears message
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
4133 *numval = bufIsChanged((buf_T *)from); |
4350 | 4134 varp = NULL; |
4135 } | |
4136 #ifdef FEAT_CRYPT | |
4137 else if (p->indir == PV_KEY) | |
4138 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4139 // never return the value of the crypt key |
4350 | 4140 *stringval = NULL; |
4141 varp = NULL; | |
4142 } | |
4143 #endif | |
4144 else | |
4145 { | |
14179
ab64a4fb5edd
patch 8.1.0107: Python: getting buffer option clears message
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
4146 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
|
4147 |
ab64a4fb5edd
patch 8.1.0107: Python: getting buffer option clears message
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
4148 // 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
|
4149 curbuf = (buf_T *)from; |
ab64a4fb5edd
patch 8.1.0107: Python: getting buffer option clears message
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
4150 curwin->w_buffer = curbuf; |
4350 | 4151 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
|
4152 curbuf = save_curbuf; |
ab64a4fb5edd
patch 8.1.0107: Python: getting buffer option clears message
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
4153 curwin->w_buffer = curbuf; |
4350 | 4154 } |
4155 } | |
4156 else if (opt_type == SREQ_WIN) | |
4157 { | |
14179
ab64a4fb5edd
patch 8.1.0107: Python: getting buffer option clears message
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
4158 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
|
4159 |
ab64a4fb5edd
patch 8.1.0107: Python: getting buffer option clears message
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
4160 curwin = (win_T *)from; |
4350 | 4161 curbuf = curwin->w_buffer; |
4162 varp = get_varp(p); | |
4163 curwin = save_curwin; | |
4164 curbuf = curwin->w_buffer; | |
4165 } | |
4166 if (varp == p->var) | |
4167 return (r | SOPT_UNSET); | |
4168 } | |
4169 | |
4170 if (varp != NULL) | |
4171 { | |
4172 if (p->flags & P_STRING) | |
4173 *stringval = vim_strsave(*(char_u **)(varp)); | |
4174 else if (p->flags & P_NUM) | |
4175 *numval = *(long *) varp; | |
4176 else | |
4177 *numval = *(int *)varp; | |
4178 } | |
4179 | |
4180 return r; | |
4181 } | |
5610 | 4182 |
4183 /* | |
6243 | 4184 * Iterate over options. First argument is a pointer to a pointer to a |
4185 * structure inside options[] array, second is option type like in the above | |
4186 * function. | |
5610 | 4187 * |
6243 | 4188 * If first argument points to NULL it is assumed that iteration just started |
5610 | 4189 * and caller needs the very first value. |
6243 | 4190 * If first argument points to the end marker function returns NULL and sets |
5610 | 4191 * first argument to NULL. |
4192 * | |
4193 * Returns full option name for current option on each call. | |
4194 */ | |
4195 char_u * | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4196 option_iter_next(void **option, int opt_type) |
5610 | 4197 { |
4198 struct vimoption *ret = NULL; | |
4199 do | |
4200 { | |
4201 if (*option == NULL) | |
4202 *option = (void *) options; | |
4203 else if (((struct vimoption *) (*option))->fullname == NULL) | |
4204 { | |
4205 *option = NULL; | |
4206 return NULL; | |
4207 } | |
4208 else | |
4209 *option = (void *) (((struct vimoption *) (*option)) + 1); | |
4210 | |
4211 ret = ((struct vimoption *) (*option)); | |
4212 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4213 // Hidden option |
5610 | 4214 if (ret->var == NULL) |
4215 { | |
4216 ret = NULL; | |
4217 continue; | |
4218 } | |
4219 | |
4220 switch (opt_type) | |
4221 { | |
4222 case SREQ_GLOBAL: | |
4223 if (!(ret->indir == PV_NONE || ret->indir & PV_BOTH)) | |
4224 ret = NULL; | |
4225 break; | |
4226 case SREQ_BUF: | |
4227 if (!(ret->indir & PV_BUF)) | |
4228 ret = NULL; | |
4229 break; | |
4230 case SREQ_WIN: | |
4231 if (!(ret->indir & PV_WIN)) | |
4232 ret = NULL; | |
4233 break; | |
4234 default: | |
10359
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10357
diff
changeset
|
4235 internal_error("option_iter_next()"); |
5610 | 4236 return NULL; |
4237 } | |
4238 } | |
4239 while (ret == NULL); | |
4240 | |
4241 return (char_u *)ret->fullname; | |
4242 } | |
4350 | 4243 #endif |
4244 | |
7 | 4245 /* |
18100
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4246 * 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
|
4247 */ |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4248 long_u |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4249 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
|
4250 { |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4251 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
|
4252 } |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4253 |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4254 /* |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4255 * 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
|
4256 */ |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4257 void |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4258 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
|
4259 { |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4260 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
|
4261 } |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4262 |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4263 /* |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4264 * 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
|
4265 */ |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4266 void |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4267 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
|
4268 { |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4269 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
|
4270 } |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4271 |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4272 /* |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4273 * 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
|
4274 */ |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4275 int |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4276 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
|
4277 { |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4278 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
|
4279 } |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4280 |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4281 /* |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4282 * 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
|
4283 * local value. |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4284 */ |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4285 int |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4286 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
|
4287 { |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4288 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
|
4289 } |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4290 |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4291 /* |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4292 * 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
|
4293 */ |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4294 int |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4295 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
|
4296 { |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4297 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
|
4298 } |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4299 |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4300 /* |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4301 * 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
|
4302 */ |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4303 int |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4304 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
|
4305 { |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4306 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
|
4307 } |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4308 |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4309 #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
|
4310 /* |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4311 * 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
|
4312 */ |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4313 int |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4314 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
|
4315 { |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4316 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
|
4317 } |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4318 #endif |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4319 |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
4320 /* |
7 | 4321 * Set the value of option "name". |
4322 * 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
|
4323 * |
28457
4dcccb2673fe
patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents:
28405
diff
changeset
|
4324 * Returns NULL on success or an untranslated error message on error. |
4513
cadb57fbb781
updated for version 7.3.1004
Bram Moolenaar <bram@vim.org>
parents:
4444
diff
changeset
|
4325 */ |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15207
diff
changeset
|
4326 char * |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4327 set_option_value( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4328 char_u *name, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4329 long number, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4330 char_u *string, |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4331 int opt_flags) // OPT_LOCAL or 0 (both) |
7 | 4332 { |
4333 int opt_idx; | |
4334 char_u *varp; | |
835 | 4335 long_u flags; |
7 | 4336 |
4337 opt_idx = findoption(name); | |
838 | 4338 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
|
4339 { |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
4340 int key; |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
4341 |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
4342 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
|
4343 && (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
|
4344 { |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
4345 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
|
4346 |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
4347 if (key < 0) |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
4348 { |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
4349 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
|
4350 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
|
4351 } |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
4352 else |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
4353 { |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
4354 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
|
4355 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
|
4356 } |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
4357 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
|
4358 if (full_screen) |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
4359 ttest(FALSE); |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4360 redraw_all_later(UPD_CLEAR); |
10825
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
4361 return NULL; |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
4362 } |
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
4363 |
26913
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26883
diff
changeset
|
4364 semsg(_(e_unknown_option_str_2), name); |
10825
4dea7c96fc82
patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents:
10722
diff
changeset
|
4365 } |
7 | 4366 else |
4367 { | |
4368 flags = options[opt_idx].flags; | |
4369 #ifdef HAVE_SANDBOX | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4370 // Disallow changing some options in the sandbox |
7 | 4371 if (sandbox > 0 && (flags & P_SECURE)) |
634 | 4372 { |
25320
1e6da8364a02
patch 8.2.3197: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25176
diff
changeset
|
4373 emsg(_(e_not_allowed_in_sandbox)); |
4513
cadb57fbb781
updated for version 7.3.1004
Bram Moolenaar <bram@vim.org>
parents:
4444
diff
changeset
|
4374 return NULL; |
634 | 4375 } |
4376 #endif | |
4377 if (flags & P_STRING) | |
4513
cadb57fbb781
updated for version 7.3.1004
Bram Moolenaar <bram@vim.org>
parents:
4444
diff
changeset
|
4378 return set_string_option(opt_idx, string, opt_flags); |
28357
86b6432aa1d8
patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents:
28353
diff
changeset
|
4379 |
86b6432aa1d8
patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents:
28353
diff
changeset
|
4380 varp = get_varp_scope(&(options[opt_idx]), opt_flags); |
86b6432aa1d8
patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents:
28353
diff
changeset
|
4381 if (varp != NULL) // hidden option is not changed |
7 | 4382 { |
28357
86b6432aa1d8
patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents:
28353
diff
changeset
|
4383 if (number == 0 && string != NULL) |
7 | 4384 { |
28357
86b6432aa1d8
patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents:
28353
diff
changeset
|
4385 int idx; |
86b6432aa1d8
patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents:
28353
diff
changeset
|
4386 |
86b6432aa1d8
patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents:
28353
diff
changeset
|
4387 // Either we are given a string or we are setting option |
86b6432aa1d8
patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents:
28353
diff
changeset
|
4388 // to zero. |
86b6432aa1d8
patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents:
28353
diff
changeset
|
4389 for (idx = 0; string[idx] == '0'; ++idx) |
86b6432aa1d8
patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents:
28353
diff
changeset
|
4390 ; |
86b6432aa1d8
patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents:
28353
diff
changeset
|
4391 if (string[idx] != NUL || idx == 0) |
1298 | 4392 { |
28357
86b6432aa1d8
patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents:
28353
diff
changeset
|
4393 // There's another character after zeros or the string |
86b6432aa1d8
patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents:
28353
diff
changeset
|
4394 // is empty. In both cases, we are trying to set a |
86b6432aa1d8
patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents:
28353
diff
changeset
|
4395 // num option using a string. |
86b6432aa1d8
patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents:
28353
diff
changeset
|
4396 semsg(_(e_number_required_after_str_equal_str), |
86b6432aa1d8
patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents:
28353
diff
changeset
|
4397 name, string); |
86b6432aa1d8
patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents:
28353
diff
changeset
|
4398 return NULL; // do nothing as we hit an error |
86b6432aa1d8
patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents:
28353
diff
changeset
|
4399 |
1298 | 4400 } |
7 | 4401 } |
28357
86b6432aa1d8
patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents:
28353
diff
changeset
|
4402 if (flags & P_NUM) |
86b6432aa1d8
patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents:
28353
diff
changeset
|
4403 return set_num_option(opt_idx, varp, number, |
86b6432aa1d8
patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents:
28353
diff
changeset
|
4404 NULL, 0, opt_flags); |
86b6432aa1d8
patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents:
28353
diff
changeset
|
4405 else |
86b6432aa1d8
patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents:
28353
diff
changeset
|
4406 return set_bool_option(opt_idx, varp, (int)number, opt_flags); |
7 | 4407 } |
28357
86b6432aa1d8
patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents:
28353
diff
changeset
|
4408 |
7 | 4409 } |
4513
cadb57fbb781
updated for version 7.3.1004
Bram Moolenaar <bram@vim.org>
parents:
4444
diff
changeset
|
4410 return NULL; |
7 | 4411 } |
4412 | |
4413 /* | |
28457
4dcccb2673fe
patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents:
28405
diff
changeset
|
4414 * Call set_option_value() and when an error is returned report it. |
4dcccb2673fe
patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents:
28405
diff
changeset
|
4415 */ |
4dcccb2673fe
patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents:
28405
diff
changeset
|
4416 void |
4dcccb2673fe
patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents:
28405
diff
changeset
|
4417 set_option_value_give_err( |
4dcccb2673fe
patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents:
28405
diff
changeset
|
4418 char_u *name, |
4dcccb2673fe
patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents:
28405
diff
changeset
|
4419 long number, |
4dcccb2673fe
patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents:
28405
diff
changeset
|
4420 char_u *string, |
4dcccb2673fe
patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents:
28405
diff
changeset
|
4421 int opt_flags) // OPT_LOCAL or 0 (both) |
4dcccb2673fe
patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents:
28405
diff
changeset
|
4422 { |
4dcccb2673fe
patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents:
28405
diff
changeset
|
4423 char *errmsg = set_option_value(name, number, string, opt_flags); |
4dcccb2673fe
patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents:
28405
diff
changeset
|
4424 |
4dcccb2673fe
patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents:
28405
diff
changeset
|
4425 if (errmsg != NULL) |
4dcccb2673fe
patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents:
28405
diff
changeset
|
4426 emsg(_(errmsg)); |
4dcccb2673fe
patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents:
28405
diff
changeset
|
4427 } |
4dcccb2673fe
patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents:
28405
diff
changeset
|
4428 |
4dcccb2673fe
patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents:
28405
diff
changeset
|
4429 /* |
7 | 4430 * Get the terminal code for a terminal option. |
4431 * Returns NULL when not found. | |
4432 */ | |
4433 char_u * | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4434 get_term_code(char_u *tname) |
7 | 4435 { |
4436 int opt_idx; | |
4437 char_u *varp; | |
4438 | |
4439 if (tname[0] != 't' || tname[1] != '_' || | |
4440 tname[2] == NUL || tname[3] == NUL) | |
4441 return NULL; | |
4442 if ((opt_idx = findoption(tname)) >= 0) | |
4443 { | |
4444 varp = get_varp(&(options[opt_idx])); | |
4445 if (varp != NULL) | |
4446 varp = *(char_u **)(varp); | |
4447 return varp; | |
4448 } | |
4449 return find_termcode(tname + 2); | |
4450 } | |
4451 | |
4452 char_u * | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4453 get_highlight_default(void) |
7 | 4454 { |
4455 int i; | |
4456 | |
4457 i = findoption((char_u *)"hl"); | |
4458 if (i >= 0) | |
4459 return options[i].def_val[VI_DEFAULT]; | |
4460 return (char_u *)NULL; | |
4461 } | |
4462 | |
39 | 4463 char_u * |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4464 get_encoding_default(void) |
39 | 4465 { |
4466 int i; | |
4467 | |
4468 i = findoption((char_u *)"enc"); | |
4469 if (i >= 0) | |
4470 return options[i].def_val[VI_DEFAULT]; | |
4471 return (char_u *)NULL; | |
4472 } | |
4473 | |
28405
473cfd79bcd8
patch 8.2.4727: unused code
Bram Moolenaar <Bram@vim.org>
parents:
28357
diff
changeset
|
4474 #if defined(FEAT_QUICKFIX) || defined(PROTO) |
27855
44a552776007
patch 8.2.4453: :helpgrep may free an option that was not allocated
Bram Moolenaar <Bram@vim.org>
parents:
27659
diff
changeset
|
4475 int |
44a552776007
patch 8.2.4453: :helpgrep may free an option that was not allocated
Bram Moolenaar <Bram@vim.org>
parents:
27659
diff
changeset
|
4476 is_option_allocated(char *name) |
44a552776007
patch 8.2.4453: :helpgrep may free an option that was not allocated
Bram Moolenaar <Bram@vim.org>
parents:
27659
diff
changeset
|
4477 { |
44a552776007
patch 8.2.4453: :helpgrep may free an option that was not allocated
Bram Moolenaar <Bram@vim.org>
parents:
27659
diff
changeset
|
4478 int idx = findoption((char_u *)name); |
44a552776007
patch 8.2.4453: :helpgrep may free an option that was not allocated
Bram Moolenaar <Bram@vim.org>
parents:
27659
diff
changeset
|
4479 |
44a552776007
patch 8.2.4453: :helpgrep may free an option that was not allocated
Bram Moolenaar <Bram@vim.org>
parents:
27659
diff
changeset
|
4480 return idx >= 0 && (options[idx].flags & P_ALLOCED); |
44a552776007
patch 8.2.4453: :helpgrep may free an option that was not allocated
Bram Moolenaar <Bram@vim.org>
parents:
27659
diff
changeset
|
4481 } |
28405
473cfd79bcd8
patch 8.2.4727: unused code
Bram Moolenaar <Bram@vim.org>
parents:
28357
diff
changeset
|
4482 #endif |
27855
44a552776007
patch 8.2.4453: :helpgrep may free an option that was not allocated
Bram Moolenaar <Bram@vim.org>
parents:
27659
diff
changeset
|
4483 |
29497
9908c07ccb56
patch 9.0.0090: no error when assigning bool to a string option
Bram Moolenaar <Bram@vim.org>
parents:
29395
diff
changeset
|
4484 #if defined(FEAT_EVAL) || defined(PROTO) |
9908c07ccb56
patch 9.0.0090: no error when assigning bool to a string option
Bram Moolenaar <Bram@vim.org>
parents:
29395
diff
changeset
|
4485 /* |
9908c07ccb56
patch 9.0.0090: no error when assigning bool to a string option
Bram Moolenaar <Bram@vim.org>
parents:
29395
diff
changeset
|
4486 * Return TRUE if "name" is a string option. |
9908c07ccb56
patch 9.0.0090: no error when assigning bool to a string option
Bram Moolenaar <Bram@vim.org>
parents:
29395
diff
changeset
|
4487 * Returns FALSE if option "name" does not exist. |
9908c07ccb56
patch 9.0.0090: no error when assigning bool to a string option
Bram Moolenaar <Bram@vim.org>
parents:
29395
diff
changeset
|
4488 */ |
9908c07ccb56
patch 9.0.0090: no error when assigning bool to a string option
Bram Moolenaar <Bram@vim.org>
parents:
29395
diff
changeset
|
4489 int |
9908c07ccb56
patch 9.0.0090: no error when assigning bool to a string option
Bram Moolenaar <Bram@vim.org>
parents:
29395
diff
changeset
|
4490 is_string_option(char_u *name) |
9908c07ccb56
patch 9.0.0090: no error when assigning bool to a string option
Bram Moolenaar <Bram@vim.org>
parents:
29395
diff
changeset
|
4491 { |
9908c07ccb56
patch 9.0.0090: no error when assigning bool to a string option
Bram Moolenaar <Bram@vim.org>
parents:
29395
diff
changeset
|
4492 int idx = findoption(name); |
9908c07ccb56
patch 9.0.0090: no error when assigning bool to a string option
Bram Moolenaar <Bram@vim.org>
parents:
29395
diff
changeset
|
4493 |
9908c07ccb56
patch 9.0.0090: no error when assigning bool to a string option
Bram Moolenaar <Bram@vim.org>
parents:
29395
diff
changeset
|
4494 return idx >= 0 && (options[idx].flags & P_STRING); |
9908c07ccb56
patch 9.0.0090: no error when assigning bool to a string option
Bram Moolenaar <Bram@vim.org>
parents:
29395
diff
changeset
|
4495 } |
9908c07ccb56
patch 9.0.0090: no error when assigning bool to a string option
Bram Moolenaar <Bram@vim.org>
parents:
29395
diff
changeset
|
4496 #endif |
9908c07ccb56
patch 9.0.0090: no error when assigning bool to a string option
Bram Moolenaar <Bram@vim.org>
parents:
29395
diff
changeset
|
4497 |
7 | 4498 /* |
4499 * 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
|
4500 * 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
|
4501 * Returns 0 when the key is not recognized. |
7 | 4502 */ |
4503 static int | |
14381
d9e6eec551e1
patch 8.1.0205: invalid memory access with invalid modeline
Christian Brabandt <cb@256bit.org>
parents:
14313
diff
changeset
|
4504 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
|
4505 { |
d9e6eec551e1
patch 8.1.0205: invalid memory access with invalid modeline
Christian Brabandt <cb@256bit.org>
parents:
14313
diff
changeset
|
4506 int key = 0; |
7 | 4507 int modifiers; |
14381
d9e6eec551e1
patch 8.1.0205: invalid memory access with invalid modeline
Christian Brabandt <cb@256bit.org>
parents:
14313
diff
changeset
|
4508 char_u *arg = arg_arg; |
7 | 4509 |
4510 /* | |
4511 * Don't use get_special_key_code() for t_xx, we don't want it to call | |
4512 * add_termcap_entry(). | |
4513 */ | |
4514 if (arg[0] == 't' && arg[1] == '_' && arg[2] && arg[3]) | |
4515 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
|
4516 else if (has_lt) |
7 | 4517 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4518 --arg; // put arg at the '<' |
7 | 4519 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
|
4520 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
|
4521 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
|
4522 if (modifiers) // can't handle modifiers here |
7 | 4523 key = 0; |
4524 } | |
4525 return key; | |
4526 } | |
4527 | |
4528 /* | |
4529 * if 'all' == 0: show changed options | |
4530 * if 'all' == 1: show all normal options | |
4531 * if 'all' == 2: show all terminal options | |
4532 */ | |
4533 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4534 showoptions( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4535 int all, |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4536 int opt_flags) // OPT_LOCAL and/or OPT_GLOBAL |
7 | 4537 { |
4538 struct vimoption *p; | |
4539 int col; | |
4540 int isterm; | |
4541 char_u *varp; | |
4542 struct vimoption **items; | |
4543 int item_count; | |
4544 int run; | |
4545 int row, rows; | |
4546 int cols; | |
4547 int i; | |
4548 int len; | |
4549 | |
4550 #define INC 20 | |
4551 #define GAP 3 | |
4552 | |
19137
69f0e9b5c107
patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
4553 items = ALLOC_MULT(struct vimoption *, OPTION_COUNT); |
7 | 4554 if (items == NULL) |
4555 return; | |
4556 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4557 // Highlight title |
7 | 4558 if (all == 2) |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
4559 msg_puts_title(_("\n--- Terminal codes ---")); |
7 | 4560 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
|
4561 msg_puts_title(_("\n--- Global option values ---")); |
7 | 4562 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
|
4563 msg_puts_title(_("\n--- Local option values ---")); |
7 | 4564 else |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
4565 msg_puts_title(_("\n--- Options ---")); |
7 | 4566 |
4567 /* | |
19137
69f0e9b5c107
patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
4568 * Do the loop two times: |
7 | 4569 * 1. display the short items |
4570 * 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
|
4571 * When "opt_flags" has OPT_ONECOLUMN do everything in run 2. |
7 | 4572 */ |
4573 for (run = 1; run <= 2 && !got_int; ++run) | |
4574 { | |
4575 /* | |
4576 * collect the items in items[] | |
4577 */ | |
4578 item_count = 0; | |
4579 for (p = &options[0]; p->fullname != NULL; p++) | |
4580 { | |
14968
c5ec5ddbe814
patch 8.1.0495: :filter only supports some commands
Bram Moolenaar <Bram@vim.org>
parents:
14935
diff
changeset
|
4581 // apply :filter /pat/ |
19137
69f0e9b5c107
patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
4582 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
|
4583 continue; |
c5ec5ddbe814
patch 8.1.0495: :filter only supports some commands
Bram Moolenaar <Bram@vim.org>
parents:
14935
diff
changeset
|
4584 |
7 | 4585 varp = NULL; |
4586 isterm = istermoption(p); | |
19137
69f0e9b5c107
patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
4587 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) != 0) |
7 | 4588 { |
4589 if (p->indir != PV_NONE && !isterm) | |
4590 varp = get_varp_scope(p, opt_flags); | |
4591 } | |
4592 else | |
4593 varp = get_varp(p); | |
4594 if (varp != NULL | |
4595 && ((all == 2 && isterm) | |
4596 || (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
|
4597 || (all == 0 && !optval_default(p, varp, p_cp)))) |
7 | 4598 { |
19137
69f0e9b5c107
patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
4599 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
|
4600 len = Columns; |
69f0e9b5c107
patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
4601 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
|
4602 len = 1; // a toggle option fits always |
7 | 4603 else |
4604 { | |
4605 option_value2string(p, opt_flags); | |
4606 len = (int)STRLEN(p->fullname) + vim_strsize(NameBuff) + 1; | |
4607 } | |
4608 if ((len <= INC - GAP && run == 1) || | |
4609 (len > INC - GAP && run == 2)) | |
4610 items[item_count++] = p; | |
4611 } | |
4612 } | |
4613 | |
4614 /* | |
4615 * display the items | |
4616 */ | |
4617 if (run == 1) | |
4618 { | |
4619 cols = (Columns + GAP - 3) / INC; | |
4620 if (cols == 0) | |
4621 cols = 1; | |
4622 rows = (item_count + cols - 1) / cols; | |
4623 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4624 else // run == 2 |
7 | 4625 rows = item_count; |
4626 for (row = 0; row < rows && !got_int; ++row) | |
4627 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4628 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
|
4629 if (got_int) // 'q' typed in more |
7 | 4630 break; |
4631 col = 0; | |
4632 for (i = row; i < item_count; i += rows) | |
4633 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4634 msg_col = col; // make columns |
7 | 4635 showoneopt(items[i], opt_flags); |
4636 col += INC; | |
4637 } | |
4638 out_flush(); | |
4639 ui_breakcheck(); | |
4640 } | |
4641 } | |
4642 vim_free(items); | |
4643 } | |
4644 | |
4645 /* | |
4646 * Return TRUE if option "p" has its default value. | |
4647 */ | |
4648 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
|
4649 optval_default(struct vimoption *p, char_u *varp, int compatible) |
7 | 4650 { |
4651 int dvi; | |
4652 | |
4653 if (varp == NULL) | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4654 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
|
4655 dvi = ((p->flags & P_VI_DEF) || compatible) ? VI_DEFAULT : VIM_DEFAULT; |
7 | 4656 if (p->flags & P_NUM) |
840 | 4657 return (*(long *)varp == (long)(long_i)p->def_val[dvi]); |
7 | 4658 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
|
4659 // 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
|
4660 // needed for MSVC |
840 | 4661 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
|
4662 // P_STRING |
7 | 4663 return (STRCMP(*(char_u **)varp, p->def_val[dvi]) == 0); |
4664 } | |
4665 | |
4666 /* | |
4667 * showoneopt: show the value of one option | |
4668 * must not be called with a hidden option! | |
4669 */ | |
4670 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4671 showoneopt( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4672 struct vimoption *p, |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4673 int opt_flags) // OPT_LOCAL or OPT_GLOBAL |
7 | 4674 { |
168 | 4675 char_u *varp; |
4676 int save_silent = silent_mode; | |
4677 | |
4678 silent_mode = FALSE; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4679 info_message = TRUE; // use mch_msg(), not mch_errmsg() |
7 | 4680 |
4681 varp = get_varp_scope(p, opt_flags); | |
4682 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4683 // for 'modified' we also need to check if 'ff' or 'fenc' changed. |
7 | 4684 if ((p->flags & P_BOOL) && ((int *)varp == &curbuf->b_changed |
4685 ? !curbufIsChanged() : !*(int *)varp)) | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
4686 msg_puts("no"); |
7 | 4687 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
|
4688 msg_puts("--"); |
7 | 4689 else |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
4690 msg_puts(" "); |
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
4691 msg_puts(p->fullname); |
7 | 4692 if (!(p->flags & P_BOOL)) |
4693 { | |
4694 msg_putchar('='); | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4695 // put value string in NameBuff |
7 | 4696 option_value2string(p, opt_flags); |
4697 msg_outtrans(NameBuff); | |
4698 } | |
168 | 4699 |
4700 silent_mode = save_silent; | |
4701 info_message = FALSE; | |
7 | 4702 } |
4703 | |
4704 /* | |
4705 * Write modified options as ":set" commands to a file. | |
4706 * | |
4707 * There are three values for "opt_flags": | |
4708 * OPT_GLOBAL: Write global option values and fresh values of | |
4709 * buffer-local options (used for start of a session | |
4710 * file). | |
4711 * OPT_GLOBAL + OPT_LOCAL: Idem, add fresh values of window-local options for | |
4712 * curwin (used for a vimrc file). | |
4713 * OPT_LOCAL: Write buffer-local option values for curbuf, fresh | |
4714 * and local values for window-local options of | |
4715 * curwin. Local values are also written when at the | |
4716 * default value, because a modeline or autocommand | |
4717 * may have set them when doing ":edit file" and the | |
4718 * user has set them back at the default or fresh | |
4719 * value. | |
4720 * When "local_only" is TRUE, don't write fresh | |
4721 * values, only local values (for ":mkview"). | |
4722 * (fresh value = value used for a new buffer or window for a local option). | |
4723 * | |
4724 * Return FAIL on error, OK otherwise. | |
4725 */ | |
4726 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4727 makeset(FILE *fd, int opt_flags, int local_only) |
7 | 4728 { |
4729 struct vimoption *p; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4730 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
|
4731 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
|
4732 char_u *varp_local = NULL; // fresh value |
7 | 4733 char *cmd; |
4734 int round; | |
1384 | 4735 int pri; |
7 | 4736 |
4737 /* | |
4738 * The options that don't have a default (terminal name, columns, lines) | |
4739 * are never written. Terminal options are also not written. | |
1384 | 4740 * Do the loop over "options[]" twice: once for options with the |
4741 * P_PRI_MKRC flag and once without. | |
7 | 4742 */ |
1384 | 4743 for (pri = 1; pri >= 0; --pri) |
4744 { | |
4745 for (p = &options[0]; !istermoption(p); p++) | |
4746 if (!(p->flags & P_NO_MKRC) | |
4747 && !istermoption(p) | |
4748 && ((pri == 1) == ((p->flags & P_PRI_MKRC) != 0))) | |
7 | 4749 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4750 // skip global option when only doing locals |
7 | 4751 if (p->indir == PV_NONE && !(opt_flags & OPT_GLOBAL)) |
4752 continue; | |
4753 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4754 // 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
|
4755 // file, they are always buffer-specific. |
7 | 4756 if ((opt_flags & OPT_GLOBAL) && (p->flags & P_NOGLOB)) |
4757 continue; | |
4758 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4759 // Global values are only written when not at the default value. |
7 | 4760 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
|
4761 if ((opt_flags & OPT_GLOBAL) && optval_default(p, varp, p_cp)) |
7 | 4762 continue; |
4763 | |
24476
e79d1475fc89
patch 8.2.2778: problem restoring 'packpath' in session
Bram Moolenaar <Bram@vim.org>
parents:
24464
diff
changeset
|
4764 if ((opt_flags & OPT_SKIPRTP) && (p->var == (char_u *)&p_rtp |
e79d1475fc89
patch 8.2.2778: problem restoring 'packpath' in session
Bram Moolenaar <Bram@vim.org>
parents:
24464
diff
changeset
|
4765 || p->var == (char_u *)&p_pp)) |
24464
a56f9c2ba51c
patch 8.2.2772: problems when restoring 'runtimepath' from a session file
Bram Moolenaar <Bram@vim.org>
parents:
24079
diff
changeset
|
4766 continue; |
a56f9c2ba51c
patch 8.2.2772: problems when restoring 'runtimepath' from a session file
Bram Moolenaar <Bram@vim.org>
parents:
24079
diff
changeset
|
4767 |
7 | 4768 round = 2; |
4769 if (p->indir != PV_NONE) | |
4770 { | |
4771 if (p->var == VAR_WIN) | |
4772 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4773 // skip window-local option when only doing globals |
7 | 4774 if (!(opt_flags & OPT_LOCAL)) |
4775 continue; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4776 // 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
|
4777 // default, need to write it too. |
7 | 4778 if (!(opt_flags & OPT_GLOBAL) && !local_only) |
4779 { | |
4780 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
|
4781 if (!optval_default(p, varp_fresh, p_cp)) |
7 | 4782 { |
4783 round = 1; | |
4784 varp_local = varp; | |
4785 varp = varp_fresh; | |
4786 } | |
4787 } | |
4788 } | |
4789 } | |
4790 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4791 // 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
|
4792 // Round 2: other values |
7 | 4793 for ( ; round <= 2; varp = varp_local, ++round) |
4794 { | |
4795 if (round == 1 || (opt_flags & OPT_GLOBAL)) | |
4796 cmd = "set"; | |
4797 else | |
4798 cmd = "setlocal"; | |
4799 | |
4800 if (p->flags & P_BOOL) | |
4801 { | |
4802 if (put_setbool(fd, cmd, p->fullname, *(int *)varp) == FAIL) | |
4803 return FAIL; | |
4804 } | |
4805 else if (p->flags & P_NUM) | |
4806 { | |
4807 if (put_setnum(fd, cmd, p->fullname, (long *)varp) == FAIL) | |
4808 return FAIL; | |
4809 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4810 else // P_STRING |
7 | 4811 { |
694 | 4812 int do_endif = FALSE; |
4813 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4814 // 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
|
4815 // already right, avoids reloading the syntax file. |
694 | 4816 if ( |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13361
diff
changeset
|
4817 #if defined(FEAT_SYN_HL) |
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13361
diff
changeset
|
4818 p->indir == PV_SYN || |
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13361
diff
changeset
|
4819 #endif |
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13361
diff
changeset
|
4820 p->indir == PV_FT) |
7 | 4821 { |
4822 if (fprintf(fd, "if &%s != '%s'", p->fullname, | |
4823 *(char_u **)(varp)) < 0 | |
4824 || put_eol(fd) < 0) | |
4825 return FAIL; | |
694 | 4826 do_endif = TRUE; |
7 | 4827 } |
4828 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
|
4829 p->flags) == FAIL) |
7 | 4830 return FAIL; |
694 | 4831 if (do_endif) |
7 | 4832 { |
4833 if (put_line(fd, "endif") == FAIL) | |
4834 return FAIL; | |
4835 } | |
4836 } | |
4837 } | |
4838 } | |
1384 | 4839 } |
7 | 4840 return OK; |
4841 } | |
4842 | |
4843 #if defined(FEAT_FOLDING) || defined(PROTO) | |
4844 /* | |
4845 * Generate set commands for the local fold options only. Used when | |
4846 * 'sessionoptions' or 'viewoptions' contains "folds" but not "options". | |
4847 */ | |
4848 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4849 makefoldset(FILE *fd) |
7 | 4850 { |
15613
90f01701ecad
patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
4851 if (put_setstring(fd, "setlocal", "fdm", &curwin->w_p_fdm, 0) == FAIL |
7 | 4852 # 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
|
4853 || put_setstring(fd, "setlocal", "fde", &curwin->w_p_fde, 0) |
7 | 4854 == FAIL |
4855 # endif | |
15613
90f01701ecad
patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
4856 || put_setstring(fd, "setlocal", "fmr", &curwin->w_p_fmr, 0) |
7 | 4857 == FAIL |
15613
90f01701ecad
patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
4858 || put_setstring(fd, "setlocal", "fdi", &curwin->w_p_fdi, 0) |
7 | 4859 == FAIL |
4860 || put_setnum(fd, "setlocal", "fdl", &curwin->w_p_fdl) == FAIL | |
4861 || put_setnum(fd, "setlocal", "fml", &curwin->w_p_fml) == FAIL | |
4862 || put_setnum(fd, "setlocal", "fdn", &curwin->w_p_fdn) == FAIL | |
4863 || put_setbool(fd, "setlocal", "fen", curwin->w_p_fen) == FAIL | |
4864 ) | |
4865 return FAIL; | |
4866 | |
4867 return OK; | |
4868 } | |
4869 #endif | |
4870 | |
4871 static int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4872 put_setstring( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4873 FILE *fd, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4874 char *cmd, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4875 char *name, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4876 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
|
4877 long_u flags) |
7 | 4878 { |
4879 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
|
4880 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
|
4881 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
|
4882 char_u *p; |
7 | 4883 |
4884 if (fprintf(fd, "%s %s=", cmd, name) < 0) | |
4885 return FAIL; | |
4886 if (*valuep != NULL) | |
4887 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4888 // 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
|
4889 // 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
|
4890 // CTRL-V or backslash |
7 | 4891 if (valuep == &p_pt) |
4892 { | |
4893 s = *valuep; | |
4894 while (*s != NUL) | |
30226
b6b803ed4a53
patch 9.0.0449: there is no easy way to translate a key code into a string
Bram Moolenaar <Bram@vim.org>
parents:
30005
diff
changeset
|
4895 if (put_escstr(fd, str2special(&s, FALSE, FALSE), 2) == FAIL) |
7 | 4896 return FAIL; |
4897 } | |
15613
90f01701ecad
patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
4898 // 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
|
4899 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
|
4900 { |
90f01701ecad
patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
4901 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
|
4902 |
90f01701ecad
patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
4903 // 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
|
4904 buf = alloc(size); |
2780 | 4905 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
|
4906 goto fail; |
90f01701ecad
patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
4907 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
|
4908 |
90f01701ecad
patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
4909 // 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
|
4910 // 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
|
4911 // 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
|
4912 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
|
4913 && 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
|
4914 { |
90f01701ecad
patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
4915 part = alloc(size); |
90f01701ecad
patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
4916 if (part == NULL) |
90f01701ecad
patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
4917 goto fail; |
90f01701ecad
patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
4918 |
90f01701ecad
patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
4919 // 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
|
4920 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
|
4921 goto fail; |
90f01701ecad
patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
4922 |
90f01701ecad
patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
4923 p = buf; |
90f01701ecad
patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
4924 while (*p != NUL) |
90f01701ecad
patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
4925 { |
90f01701ecad
patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
4926 // 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
|
4927 // 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
|
4928 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
|
4929 goto fail; |
90f01701ecad
patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
4930 (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
|
4931 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
|
4932 goto fail; |
90f01701ecad
patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
4933 } |
90f01701ecad
patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
4934 vim_free(buf); |
90f01701ecad
patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
4935 vim_free(part); |
90f01701ecad
patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
4936 return OK; |
90f01701ecad
patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
4937 } |
7 | 4938 if (put_escstr(fd, buf, 2) == FAIL) |
2780 | 4939 { |
4940 vim_free(buf); | |
7 | 4941 return FAIL; |
2780 | 4942 } |
4943 vim_free(buf); | |
7 | 4944 } |
4945 else if (put_escstr(fd, *valuep, 2) == FAIL) | |
4946 return FAIL; | |
4947 } | |
4948 if (put_eol(fd) < 0) | |
4949 return FAIL; | |
4950 return OK; | |
15613
90f01701ecad
patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
4951 fail: |
90f01701ecad
patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
4952 vim_free(buf); |
90f01701ecad
patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
4953 vim_free(part); |
90f01701ecad
patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
4954 return FAIL; |
7 | 4955 } |
4956 | |
4957 static int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4958 put_setnum( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4959 FILE *fd, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4960 char *cmd, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4961 char *name, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4962 long *valuep) |
7 | 4963 { |
4964 long wc; | |
4965 | |
4966 if (fprintf(fd, "%s %s=", cmd, name) < 0) | |
4967 return FAIL; | |
4968 if (wc_use_keyname((char_u *)valuep, &wc)) | |
4969 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4970 // print 'wildchar' and 'wildcharm' as a key name |
7 | 4971 if (fputs((char *)get_special_key_name((int)wc, 0), fd) < 0) |
4972 return FAIL; | |
4973 } | |
4974 else if (fprintf(fd, "%ld", *valuep) < 0) | |
4975 return FAIL; | |
4976 if (put_eol(fd) < 0) | |
4977 return FAIL; | |
4978 return OK; | |
4979 } | |
4980 | |
4981 static int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4982 put_setbool( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4983 FILE *fd, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4984 char *cmd, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4985 char *name, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4986 int value) |
7 | 4987 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4988 if (value < 0) // global/local option using global value |
1416 | 4989 return OK; |
7 | 4990 if (fprintf(fd, "%s %s%s", cmd, value ? "" : "no", name) < 0 |
4991 || put_eol(fd) < 0) | |
4992 return FAIL; | |
4993 return OK; | |
4994 } | |
4995 | |
4996 /* | |
4997 * Clear all the terminal options. | |
4998 * If the option has been allocated, free the memory. | |
4999 * Terminal options are never hidden or indirect. | |
5000 */ | |
5001 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5002 clear_termoptions(void) |
7 | 5003 { |
5004 /* | |
5005 * Reset a few things before clearing the old options. This may cause | |
5006 * outputting a few things that the terminal doesn't understand, but the | |
5007 * screen will be cleared later, so this is OK. | |
5008 */ | |
18354
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18301
diff
changeset
|
5009 mch_setmouse(FALSE); // switch mouse off |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
5010 mch_restore_title(SAVE_RESTORE_BOTH); // restore window titles |
7 | 5011 #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
|
5012 // 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
|
5013 // After restoring the title, because that will need the display. |
7 | 5014 if (gui.starting) |
5015 clear_xterm_clip(); | |
5016 #endif | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
5017 stoptermcap(); // stop termcap mode |
7 | 5018 |
359 | 5019 free_termoptions(); |
5020 } | |
5021 | |
5022 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5023 free_termoptions(void) |
359 | 5024 { |
5025 struct vimoption *p; | |
5026 | |
14867
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
5027 for (p = options; p->fullname != NULL; p++) |
7 | 5028 if (istermoption(p)) |
5029 { | |
5030 if (p->flags & P_ALLOCED) | |
5031 free_string_option(*(char_u **)(p->var)); | |
5032 if (p->flags & P_DEF_ALLOCED) | |
5033 free_string_option(p->def_val[VI_DEFAULT]); | |
5034 *(char_u **)(p->var) = empty_option; | |
5035 p->def_val[VI_DEFAULT] = empty_option; | |
5036 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
|
5037 #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
|
5038 // 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
|
5039 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
|
5040 #endif |
7 | 5041 } |
5042 clear_termcodes(); | |
5043 } | |
5044 | |
5045 /* | |
1941 | 5046 * Free the string for one term option, if it was allocated. |
5047 * Set the string to empty_option and clear allocated flag. | |
5048 * "var" points to the option value. | |
5049 */ | |
5050 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5051 free_one_termoption(char_u *var) |
1941 | 5052 { |
5053 struct vimoption *p; | |
5054 | |
5055 for (p = &options[0]; p->fullname != NULL; p++) | |
5056 if (p->var == var) | |
5057 { | |
5058 if (p->flags & P_ALLOCED) | |
5059 free_string_option(*(char_u **)(p->var)); | |
5060 *(char_u **)(p->var) = empty_option; | |
5061 p->flags &= ~P_ALLOCED; | |
5062 break; | |
5063 } | |
5064 } | |
5065 | |
5066 /* | |
7 | 5067 * Set the terminal option defaults to the current value. |
5068 * Used after setting the terminal name. | |
5069 */ | |
5070 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5071 set_term_defaults(void) |
7 | 5072 { |
5073 struct vimoption *p; | |
5074 | |
5075 for (p = &options[0]; p->fullname != NULL; p++) | |
5076 { | |
5077 if (istermoption(p) && p->def_val[VI_DEFAULT] != *(char_u **)(p->var)) | |
5078 { | |
5079 if (p->flags & P_DEF_ALLOCED) | |
5080 { | |
5081 free_string_option(p->def_val[VI_DEFAULT]); | |
5082 p->flags &= ~P_DEF_ALLOCED; | |
5083 } | |
5084 p->def_val[VI_DEFAULT] = *(char_u **)(p->var); | |
5085 if (p->flags & P_ALLOCED) | |
5086 { | |
5087 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
|
5088 p->flags &= ~P_ALLOCED; // don't free the value now |
7 | 5089 } |
5090 } | |
5091 } | |
5092 } | |
5093 | |
5094 /* | |
5095 * return TRUE if 'p' starts with 't_' | |
5096 */ | |
5097 static int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5098 istermoption(struct vimoption *p) |
7 | 5099 { |
5100 return (p->fullname[0] == 't' && p->fullname[1] == '_'); | |
5101 } | |
5102 | |
18100
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 * 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
|
5105 */ |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
5106 int |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
5107 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
|
5108 { |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
5109 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
|
5110 } |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
5111 |
15555
d89c5b339c2a
patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
5112 #if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) || defined(PROTO) |
7 | 5113 /* |
4350 | 5114 * Unset local option value, similar to ":set opt<". |
5115 */ | |
5116 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5117 unset_global_local_option(char_u *name, void *from) |
4350 | 5118 { |
5119 struct vimoption *p; | |
5120 int opt_idx; | |
4361 | 5121 buf_T *buf = (buf_T *)from; |
4350 | 5122 |
5123 opt_idx = findoption(name); | |
7007 | 5124 if (opt_idx < 0) |
5125 return; | |
4350 | 5126 p = &(options[opt_idx]); |
5127 | |
5128 switch ((int)p->indir) | |
5129 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
5130 // global option with local value: use local value if it's been set |
4350 | 5131 case PV_EP: |
4361 | 5132 clear_string_option(&buf->b_p_ep); |
4350 | 5133 break; |
5134 case PV_KP: | |
4361 | 5135 clear_string_option(&buf->b_p_kp); |
4350 | 5136 break; |
5137 case PV_PATH: | |
4361 | 5138 clear_string_option(&buf->b_p_path); |
4350 | 5139 break; |
5140 case PV_AR: | |
5141 buf->b_p_ar = -1; | |
5142 break; | |
6243 | 5143 case PV_BKC: |
5144 clear_string_option(&buf->b_p_bkc); | |
5145 buf->b_bkc_flags = 0; | |
5146 break; | |
4350 | 5147 case PV_TAGS: |
4361 | 5148 clear_string_option(&buf->b_p_tags); |
4350 | 5149 break; |
7266
6ba7182fb7bd
commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents:
7218
diff
changeset
|
5150 case PV_TC: |
6ba7182fb7bd
commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents:
7218
diff
changeset
|
5151 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
|
5152 buf->b_tc_flags = 0; |
6ba7182fb7bd
commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents:
7218
diff
changeset
|
5153 break; |
28809
d0241e74bfdb
patch 8.2.4928: various white space and cosmetic mistakes
Bram Moolenaar <Bram@vim.org>
parents:
28804
diff
changeset
|
5154 case PV_SISO: |
d0241e74bfdb
patch 8.2.4928: various white space and cosmetic mistakes
Bram Moolenaar <Bram@vim.org>
parents:
28804
diff
changeset
|
5155 curwin->w_p_siso = -1; |
d0241e74bfdb
patch 8.2.4928: various white space and cosmetic mistakes
Bram Moolenaar <Bram@vim.org>
parents:
28804
diff
changeset
|
5156 break; |
d0241e74bfdb
patch 8.2.4928: various white space and cosmetic mistakes
Bram Moolenaar <Bram@vim.org>
parents:
28804
diff
changeset
|
5157 case PV_SO: |
d0241e74bfdb
patch 8.2.4928: various white space and cosmetic mistakes
Bram Moolenaar <Bram@vim.org>
parents:
28804
diff
changeset
|
5158 curwin->w_p_so = -1; |
d0241e74bfdb
patch 8.2.4928: various white space and cosmetic mistakes
Bram Moolenaar <Bram@vim.org>
parents:
28804
diff
changeset
|
5159 break; |
4350 | 5160 #ifdef FEAT_FIND_ID |
5161 case PV_DEF: | |
4361 | 5162 clear_string_option(&buf->b_p_def); |
4350 | 5163 break; |
5164 case PV_INC: | |
4361 | 5165 clear_string_option(&buf->b_p_inc); |
4350 | 5166 break; |
5167 #endif | |
5168 case PV_DICT: | |
4361 | 5169 clear_string_option(&buf->b_p_dict); |
4350 | 5170 break; |
5171 case PV_TSR: | |
4361 | 5172 clear_string_option(&buf->b_p_tsr); |
4350 | 5173 break; |
25990
ac330e2fecc4
patch 8.2.3528: 'thesaurus' and 'thesaurusfunc' do not have the same scope
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
5174 #ifdef FEAT_COMPL_FUNC |
ac330e2fecc4
patch 8.2.3528: 'thesaurus' and 'thesaurusfunc' do not have the same scope
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
5175 case PV_TSRFU: |
ac330e2fecc4
patch 8.2.3528: 'thesaurus' and 'thesaurusfunc' do not have the same scope
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
5176 clear_string_option(&buf->b_p_tsrfu); |
ac330e2fecc4
patch 8.2.3528: 'thesaurus' and 'thesaurusfunc' do not have the same scope
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
5177 break; |
ac330e2fecc4
patch 8.2.3528: 'thesaurus' and 'thesaurusfunc' do not have the same scope
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
5178 #endif |
10579
688b97124d23
patch 8.0.0179: cannot have a local value for 'formatprg'
Christian Brabandt <cb@256bit.org>
parents:
10456
diff
changeset
|
5179 case PV_FP: |
688b97124d23
patch 8.0.0179: cannot have a local value for 'formatprg'
Christian Brabandt <cb@256bit.org>
parents:
10456
diff
changeset
|
5180 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
|
5181 break; |
4350 | 5182 #ifdef FEAT_QUICKFIX |
5183 case PV_EFM: | |
4361 | 5184 clear_string_option(&buf->b_p_efm); |
4350 | 5185 break; |
5186 case PV_GP: | |
4361 | 5187 clear_string_option(&buf->b_p_gp); |
4350 | 5188 break; |
5189 case PV_MP: | |
4361 | 5190 clear_string_option(&buf->b_p_mp); |
4350 | 5191 break; |
5192 #endif | |
5193 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL) | |
5194 case PV_BEXPR: | |
4361 | 5195 clear_string_option(&buf->b_p_bexpr); |
4350 | 5196 break; |
5197 #endif | |
5198 #if defined(FEAT_CRYPT) | |
5199 case PV_CM: | |
4361 | 5200 clear_string_option(&buf->b_p_cm); |
4350 | 5201 break; |
5202 #endif | |
18574
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
5203 #ifdef FEAT_LINEBREAK |
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
5204 case PV_SBR: |
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
5205 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
|
5206 break; |
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
5207 #endif |
4350 | 5208 #ifdef FEAT_STL_OPT |
5209 case PV_STL: | |
4361 | 5210 clear_string_option(&((win_T *)from)->w_p_stl); |
4350 | 5211 break; |
5212 #endif | |
5446 | 5213 case PV_UL: |
5214 buf->b_p_ul = NO_LOCAL_UNDOLEVEL; | |
5215 break; | |
5712 | 5216 case PV_LW: |
5217 clear_string_option(&buf->b_p_lw); | |
5218 break; | |
11063
e71d3bdf3bc3
patch 8.0.0420: text garbled when the system encoding differs from 'encoding'
Christian Brabandt <cb@256bit.org>
parents:
10968
diff
changeset
|
5219 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
|
5220 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
|
5221 break; |
23952
44be09b25619
patch 8.2.2518: 'listchars' should be window-local
Bram Moolenaar <Bram@vim.org>
parents:
23821
diff
changeset
|
5222 case PV_LCS: |
44be09b25619
patch 8.2.2518: 'listchars' should be window-local
Bram Moolenaar <Bram@vim.org>
parents:
23821
diff
changeset
|
5223 clear_string_option(&((win_T *)from)->w_p_lcs); |
29395
caaf5b270018
patch 9.0.0040: use of set_chars_option() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
29387
diff
changeset
|
5224 set_chars_option((win_T *)from, &((win_T *)from)->w_p_lcs, TRUE); |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
5225 redraw_later(UPD_NOT_VALID); |
23952
44be09b25619
patch 8.2.2518: 'listchars' should be window-local
Bram Moolenaar <Bram@vim.org>
parents:
23821
diff
changeset
|
5226 break; |
29387
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
28942
diff
changeset
|
5227 case PV_FCS: |
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
28942
diff
changeset
|
5228 clear_string_option(&((win_T *)from)->w_p_fcs); |
29395
caaf5b270018
patch 9.0.0040: use of set_chars_option() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
29387
diff
changeset
|
5229 set_chars_option((win_T *)from, &((win_T *)from)->w_p_fcs, TRUE); |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
5230 redraw_later(UPD_NOT_VALID); |
29387
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
28942
diff
changeset
|
5231 break; |
25380
ac88cd21ae88
patch 8.2.3227: 'virtualedit' can only be set globally
Bram Moolenaar <Bram@vim.org>
parents:
25320
diff
changeset
|
5232 case PV_VE: |
25487
c26ff3203b43
patch 8.2.3280: 'virtualedit' local to buffer is not the best solution
Bram Moolenaar <Bram@vim.org>
parents:
25419
diff
changeset
|
5233 clear_string_option(&((win_T *)from)->w_p_ve); |
c26ff3203b43
patch 8.2.3280: 'virtualedit' local to buffer is not the best solution
Bram Moolenaar <Bram@vim.org>
parents:
25419
diff
changeset
|
5234 ((win_T *)from)->w_ve_flags = 0; |
25380
ac88cd21ae88
patch 8.2.3227: 'virtualedit' can only be set globally
Bram Moolenaar <Bram@vim.org>
parents:
25320
diff
changeset
|
5235 break; |
4350 | 5236 } |
5237 } | |
15555
d89c5b339c2a
patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
5238 #endif |
4350 | 5239 |
5240 /* | |
7 | 5241 * Get pointer to option variable, depending on local or global scope. |
26441
65ab0b035dd8
patch 8.2.3751: cannot assign a lambda to an option that takes a function
Bram Moolenaar <Bram@vim.org>
parents:
26400
diff
changeset
|
5242 * "scope" can be OPT_LOCAL, OPT_GLOBAL or a combination. |
7 | 5243 */ |
5244 static char_u * | |
26441
65ab0b035dd8
patch 8.2.3751: cannot assign a lambda to an option that takes a function
Bram Moolenaar <Bram@vim.org>
parents:
26400
diff
changeset
|
5245 get_varp_scope(struct vimoption *p, int scope) |
7 | 5246 { |
26441
65ab0b035dd8
patch 8.2.3751: cannot assign a lambda to an option that takes a function
Bram Moolenaar <Bram@vim.org>
parents:
26400
diff
changeset
|
5247 if ((scope & OPT_GLOBAL) && p->indir != PV_NONE) |
7 | 5248 { |
5249 if (p->var == VAR_WIN) | |
5250 return (char_u *)GLOBAL_WO(get_varp(p)); | |
5251 return p->var; | |
5252 } | |
26441
65ab0b035dd8
patch 8.2.3751: cannot assign a lambda to an option that takes a function
Bram Moolenaar <Bram@vim.org>
parents:
26400
diff
changeset
|
5253 if ((scope & OPT_LOCAL) && ((int)p->indir & PV_BOTH)) |
7 | 5254 { |
5255 switch ((int)p->indir) | |
5256 { | |
10579
688b97124d23
patch 8.0.0179: cannot have a local value for 'formatprg'
Christian Brabandt <cb@256bit.org>
parents:
10456
diff
changeset
|
5257 case PV_FP: return (char_u *)&(curbuf->b_p_fp); |
7 | 5258 #ifdef FEAT_QUICKFIX |
694 | 5259 case PV_EFM: return (char_u *)&(curbuf->b_p_efm); |
5260 case PV_GP: return (char_u *)&(curbuf->b_p_gp); | |
5261 case PV_MP: return (char_u *)&(curbuf->b_p_mp); | |
5262 #endif | |
5263 case PV_EP: return (char_u *)&(curbuf->b_p_ep); | |
5264 case PV_KP: return (char_u *)&(curbuf->b_p_kp); | |
5265 case PV_PATH: return (char_u *)&(curbuf->b_p_path); | |
692 | 5266 case PV_AR: return (char_u *)&(curbuf->b_p_ar); |
694 | 5267 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
|
5268 case PV_TC: return (char_u *)&(curbuf->b_p_tc); |
28809
d0241e74bfdb
patch 8.2.4928: various white space and cosmetic mistakes
Bram Moolenaar <Bram@vim.org>
parents:
28804
diff
changeset
|
5269 case PV_SISO: return (char_u *)&(curwin->w_p_siso); |
d0241e74bfdb
patch 8.2.4928: various white space and cosmetic mistakes
Bram Moolenaar <Bram@vim.org>
parents:
28804
diff
changeset
|
5270 case PV_SO: return (char_u *)&(curwin->w_p_so); |
7 | 5271 #ifdef FEAT_FIND_ID |
694 | 5272 case PV_DEF: return (char_u *)&(curbuf->b_p_def); |
5273 case PV_INC: return (char_u *)&(curbuf->b_p_inc); | |
7 | 5274 #endif |
694 | 5275 case PV_DICT: return (char_u *)&(curbuf->b_p_dict); |
5276 case PV_TSR: return (char_u *)&(curbuf->b_p_tsr); | |
25990
ac330e2fecc4
patch 8.2.3528: 'thesaurus' and 'thesaurusfunc' do not have the same scope
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
5277 #ifdef FEAT_COMPL_FUNC |
ac330e2fecc4
patch 8.2.3528: 'thesaurus' and 'thesaurusfunc' do not have the same scope
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
5278 case PV_TSRFU: return (char_u *)&(curbuf->b_p_tsrfu); |
ac330e2fecc4
patch 8.2.3528: 'thesaurus' and 'thesaurusfunc' do not have the same scope
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
5279 #endif |
790 | 5280 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL) |
5281 case PV_BEXPR: return (char_u *)&(curbuf->b_p_bexpr); | |
5282 #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
|
5283 #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
|
5284 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
|
5285 #endif |
18574
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
5286 #ifdef FEAT_LINEBREAK |
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
5287 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
|
5288 #endif |
40 | 5289 #ifdef FEAT_STL_OPT |
694 | 5290 case PV_STL: return (char_u *)&(curwin->w_p_stl); |
40 | 5291 #endif |
5446 | 5292 case PV_UL: return (char_u *)&(curbuf->b_p_ul); |
5712 | 5293 case PV_LW: return (char_u *)&(curbuf->b_p_lw); |
6243 | 5294 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
|
5295 case PV_MENC: return (char_u *)&(curbuf->b_p_menc); |
25380
ac88cd21ae88
patch 8.2.3227: 'virtualedit' can only be set globally
Bram Moolenaar <Bram@vim.org>
parents:
25320
diff
changeset
|
5296 case PV_LCS: return (char_u *)&(curwin->w_p_lcs); |
29387
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
28942
diff
changeset
|
5297 case PV_FCS: return (char_u *)&(curwin->w_p_fcs); |
25487
c26ff3203b43
patch 8.2.3280: 'virtualedit' local to buffer is not the best solution
Bram Moolenaar <Bram@vim.org>
parents:
25419
diff
changeset
|
5298 case PV_VE: return (char_u *)&(curwin->w_p_ve); |
23952
44be09b25619
patch 8.2.2518: 'listchars' should be window-local
Bram Moolenaar <Bram@vim.org>
parents:
23821
diff
changeset
|
5299 |
7 | 5300 } |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
5301 return NULL; // "cannot happen" |
7 | 5302 } |
5303 return get_varp(p); | |
5304 } | |
5305 | |
5306 /* | |
18100
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
5307 * 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
|
5308 * scope. |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
5309 */ |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
5310 char_u * |
26441
65ab0b035dd8
patch 8.2.3751: cannot assign a lambda to an option that takes a function
Bram Moolenaar <Bram@vim.org>
parents:
26400
diff
changeset
|
5311 get_option_varp_scope(int opt_idx, int scope) |
18100
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
5312 { |
26441
65ab0b035dd8
patch 8.2.3751: cannot assign a lambda to an option that takes a function
Bram Moolenaar <Bram@vim.org>
parents:
26400
diff
changeset
|
5313 return get_varp_scope(&(options[opt_idx]), scope); |
18100
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
5314 } |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
5315 |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
5316 /* |
7 | 5317 * Get pointer to option variable. |
5318 */ | |
5319 static char_u * | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5320 get_varp(struct vimoption *p) |
7 | 5321 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
5322 // hidden option, always return NULL |
7 | 5323 if (p->var == NULL) |
5324 return NULL; | |
5325 | |
5326 switch ((int)p->indir) | |
5327 { | |
5328 case PV_NONE: return p->var; | |
5329 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
5330 // global option with local value: use local value if it's been set |
694 | 5331 case PV_EP: return *curbuf->b_p_ep != NUL |
7 | 5332 ? (char_u *)&curbuf->b_p_ep : p->var; |
694 | 5333 case PV_KP: return *curbuf->b_p_kp != NUL |
7 | 5334 ? (char_u *)&curbuf->b_p_kp : p->var; |
694 | 5335 case PV_PATH: return *curbuf->b_p_path != NUL |
7 | 5336 ? (char_u *)&(curbuf->b_p_path) : p->var; |
692 | 5337 case PV_AR: return curbuf->b_p_ar >= 0 |
7 | 5338 ? (char_u *)&(curbuf->b_p_ar) : p->var; |
694 | 5339 case PV_TAGS: return *curbuf->b_p_tags != NUL |
7 | 5340 ? (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
|
5341 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
|
5342 ? (char_u *)&(curbuf->b_p_tc) : p->var; |
6243 | 5343 case PV_BKC: return *curbuf->b_p_bkc != NUL |
5344 ? (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
|
5345 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
|
5346 ? (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
|
5347 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
|
5348 ? (char_u *)&(curwin->w_p_so) : p->var; |
7 | 5349 #ifdef FEAT_FIND_ID |
694 | 5350 case PV_DEF: return *curbuf->b_p_def != NUL |
7 | 5351 ? (char_u *)&(curbuf->b_p_def) : p->var; |
694 | 5352 case PV_INC: return *curbuf->b_p_inc != NUL |
7 | 5353 ? (char_u *)&(curbuf->b_p_inc) : p->var; |
5354 #endif | |
694 | 5355 case PV_DICT: return *curbuf->b_p_dict != NUL |
7 | 5356 ? (char_u *)&(curbuf->b_p_dict) : p->var; |
694 | 5357 case PV_TSR: return *curbuf->b_p_tsr != NUL |
7 | 5358 ? (char_u *)&(curbuf->b_p_tsr) : p->var; |
25990
ac330e2fecc4
patch 8.2.3528: 'thesaurus' and 'thesaurusfunc' do not have the same scope
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
5359 #ifdef FEAT_COMPL_FUNC |
ac330e2fecc4
patch 8.2.3528: 'thesaurus' and 'thesaurusfunc' do not have the same scope
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
5360 case PV_TSRFU: return *curbuf->b_p_tsrfu != NUL |
ac330e2fecc4
patch 8.2.3528: 'thesaurus' and 'thesaurusfunc' do not have the same scope
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
5361 ? (char_u *)&(curbuf->b_p_tsrfu) : p->var; |
ac330e2fecc4
patch 8.2.3528: 'thesaurus' and 'thesaurusfunc' do not have the same scope
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
5362 #endif |
10579
688b97124d23
patch 8.0.0179: cannot have a local value for 'formatprg'
Christian Brabandt <cb@256bit.org>
parents:
10456
diff
changeset
|
5363 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
|
5364 ? (char_u *)&(curbuf->b_p_fp) : p->var; |
7 | 5365 #ifdef FEAT_QUICKFIX |
694 | 5366 case PV_EFM: return *curbuf->b_p_efm != NUL |
5367 ? (char_u *)&(curbuf->b_p_efm) : p->var; | |
5368 case PV_GP: return *curbuf->b_p_gp != NUL | |
7 | 5369 ? (char_u *)&(curbuf->b_p_gp) : p->var; |
694 | 5370 case PV_MP: return *curbuf->b_p_mp != NUL |
7 | 5371 ? (char_u *)&(curbuf->b_p_mp) : p->var; |
5372 #endif | |
790 | 5373 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL) |
5374 case PV_BEXPR: return *curbuf->b_p_bexpr != NUL | |
5375 ? (char_u *)&(curbuf->b_p_bexpr) : p->var; | |
5376 #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
|
5377 #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
|
5378 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
|
5379 ? (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
|
5380 #endif |
18574
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
5381 #ifdef FEAT_LINEBREAK |
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
5382 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
|
5383 ? (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
|
5384 #endif |
40 | 5385 #ifdef FEAT_STL_OPT |
694 | 5386 case PV_STL: return *curwin->w_p_stl != NUL |
40 | 5387 ? (char_u *)&(curwin->w_p_stl) : p->var; |
5388 #endif | |
5446 | 5389 case PV_UL: return curbuf->b_p_ul != NO_LOCAL_UNDOLEVEL |
5390 ? (char_u *)&(curbuf->b_p_ul) : p->var; | |
5712 | 5391 case PV_LW: return *curbuf->b_p_lw != NUL |
5392 ? (char_u *)&(curbuf->b_p_lw) : p->var; | |
11063
e71d3bdf3bc3
patch 8.0.0420: text garbled when the system encoding differs from 'encoding'
Christian Brabandt <cb@256bit.org>
parents:
10968
diff
changeset
|
5393 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
|
5394 ? (char_u *)&(curbuf->b_p_menc) : p->var; |
7 | 5395 #ifdef FEAT_ARABIC |
5396 case PV_ARAB: return (char_u *)&(curwin->w_p_arab); | |
5397 #endif | |
5398 case PV_LIST: return (char_u *)&(curwin->w_p_list); | |
23952
44be09b25619
patch 8.2.2518: 'listchars' should be window-local
Bram Moolenaar <Bram@vim.org>
parents:
23821
diff
changeset
|
5399 case PV_LCS: return *curwin->w_p_lcs != NUL |
44be09b25619
patch 8.2.2518: 'listchars' should be window-local
Bram Moolenaar <Bram@vim.org>
parents:
23821
diff
changeset
|
5400 ? (char_u *)&(curwin->w_p_lcs) : p->var; |
29387
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
28942
diff
changeset
|
5401 case PV_FCS: return *curwin->w_p_fcs != NUL |
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
28942
diff
changeset
|
5402 ? (char_u *)&(curwin->w_p_fcs) : p->var; |
25487
c26ff3203b43
patch 8.2.3280: 'virtualedit' local to buffer is not the best solution
Bram Moolenaar <Bram@vim.org>
parents:
25419
diff
changeset
|
5403 case PV_VE: return *curwin->w_p_ve != NUL |
c26ff3203b43
patch 8.2.3280: 'virtualedit' local to buffer is not the best solution
Bram Moolenaar <Bram@vim.org>
parents:
25419
diff
changeset
|
5404 ? (char_u *)&(curwin->w_p_ve) : p->var; |
744 | 5405 #ifdef FEAT_SPELL |
5406 case PV_SPELL: return (char_u *)&(curwin->w_p_spell); | |
5407 #endif | |
221 | 5408 #ifdef FEAT_SYN_HL |
744 | 5409 case PV_CUC: return (char_u *)&(curwin->w_p_cuc); |
5410 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
|
5411 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
|
5412 case PV_CC: return (char_u *)&(curwin->w_p_cc); |
221 | 5413 #endif |
7 | 5414 #ifdef FEAT_DIFF |
5415 case PV_DIFF: return (char_u *)&(curwin->w_p_diff); | |
5416 #endif | |
5417 #ifdef FEAT_FOLDING | |
5418 case PV_FDC: return (char_u *)&(curwin->w_p_fdc); | |
5419 case PV_FEN: return (char_u *)&(curwin->w_p_fen); | |
5420 case PV_FDI: return (char_u *)&(curwin->w_p_fdi); | |
5421 case PV_FDL: return (char_u *)&(curwin->w_p_fdl); | |
5422 case PV_FDM: return (char_u *)&(curwin->w_p_fdm); | |
5423 case PV_FML: return (char_u *)&(curwin->w_p_fml); | |
5424 case PV_FDN: return (char_u *)&(curwin->w_p_fdn); | |
5425 # ifdef FEAT_EVAL | |
5426 case PV_FDE: return (char_u *)&(curwin->w_p_fde); | |
5427 case PV_FDT: return (char_u *)&(curwin->w_p_fdt); | |
5428 # endif | |
5429 case PV_FMR: return (char_u *)&(curwin->w_p_fmr); | |
5430 #endif | |
5431 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
|
5432 case PV_RNU: return (char_u *)&(curwin->w_p_rnu); |
13 | 5433 #ifdef FEAT_LINEBREAK |
5434 case PV_NUW: return (char_u *)&(curwin->w_p_nuw); | |
5435 #endif | |
7 | 5436 case PV_WFH: return (char_u *)&(curwin->w_p_wfh); |
782 | 5437 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
|
5438 #if defined(FEAT_QUICKFIX) |
7 | 5439 case PV_PVW: return (char_u *)&(curwin->w_p_pvw); |
5440 #endif | |
5441 #ifdef FEAT_RIGHTLEFT | |
5442 case PV_RL: return (char_u *)&(curwin->w_p_rl); | |
5443 case PV_RLC: return (char_u *)&(curwin->w_p_rlc); | |
5444 #endif | |
5445 case PV_SCROLL: return (char_u *)&(curwin->w_p_scr); | |
30610
6c6ac189a05f
patch 9.0.0640: cannot scroll by screen line if a line wraps
Bram Moolenaar <Bram@vim.org>
parents:
30417
diff
changeset
|
5446 case PV_SMS: return (char_u *)&(curwin->w_p_sms); |
7 | 5447 case PV_WRAP: return (char_u *)&(curwin->w_p_wrap); |
5448 #ifdef FEAT_LINEBREAK | |
5449 case PV_LBR: return (char_u *)&(curwin->w_p_lbr); | |
5995 | 5450 case PV_BRI: return (char_u *)&(curwin->w_p_bri); |
5451 case PV_BRIOPT: return (char_u *)&(curwin->w_p_briopt); | |
7 | 5452 #endif |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16764
diff
changeset
|
5453 case PV_WCR: return (char_u *)&(curwin->w_p_wcr); |
7 | 5454 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
|
5455 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
|
5456 #ifdef FEAT_CONCEAL |
11621
b8299e742f41
patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
11587
diff
changeset
|
5457 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
|
5458 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
|
5459 #endif |
b8299e742f41
patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
11587
diff
changeset
|
5460 #ifdef FEAT_TERMINAL |
13742
a34b1323286c
patch 8.0.1743: terminal window options are named inconsistently
Christian Brabandt <cb@256bit.org>
parents:
13700
diff
changeset
|
5461 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
|
5462 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
|
5463 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
|
5464 #endif |
7 | 5465 |
5466 case PV_AI: return (char_u *)&(curbuf->b_p_ai); | |
5467 case PV_BIN: return (char_u *)&(curbuf->b_p_bin); | |
5468 case PV_BOMB: return (char_u *)&(curbuf->b_p_bomb); | |
5469 case PV_BH: return (char_u *)&(curbuf->b_p_bh); | |
5470 case PV_BT: return (char_u *)&(curbuf->b_p_bt); | |
5471 case PV_BL: return (char_u *)&(curbuf->b_p_bl); | |
5472 case PV_CI: return (char_u *)&(curbuf->b_p_ci); | |
5473 case PV_CIN: return (char_u *)&(curbuf->b_p_cin); | |
5474 case PV_CINK: return (char_u *)&(curbuf->b_p_cink); | |
5475 case PV_CINO: return (char_u *)&(curbuf->b_p_cino); | |
28353
8bc8071928ed
patch 8.2.4702: C++ scope labels are hard-coded
Bram Moolenaar <Bram@vim.org>
parents:
28337
diff
changeset
|
5476 case PV_CINSD: return (char_u *)&(curbuf->b_p_cinsd); |
7 | 5477 case PV_CINW: return (char_u *)&(curbuf->b_p_cinw); |
5478 case PV_COM: return (char_u *)&(curbuf->b_p_com); | |
5479 #ifdef FEAT_FOLDING | |
5480 case PV_CMS: return (char_u *)&(curbuf->b_p_cms); | |
5481 #endif | |
5482 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
|
5483 #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
|
5484 case PV_CSL: return (char_u *)&(curbuf->b_p_csl); |
7 | 5485 #endif |
12 | 5486 #ifdef FEAT_COMPL_FUNC |
5487 case PV_CFU: return (char_u *)&(curbuf->b_p_cfu); | |
502 | 5488 case PV_OFU: return (char_u *)&(curbuf->b_p_ofu); |
12 | 5489 #endif |
16447
54ffc82f38a8
patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents:
16429
diff
changeset
|
5490 #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
|
5491 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
|
5492 #endif |
30966
685ee8453163
Add missing entry for the 'endoffile' option.
Bram Moolenaar <Bram@vim.org>
parents:
30853
diff
changeset
|
5493 case PV_EOF: return (char_u *)&(curbuf->b_p_eof); |
7 | 5494 case PV_EOL: return (char_u *)&(curbuf->b_p_eol); |
6933 | 5495 case PV_FIXEOL: return (char_u *)&(curbuf->b_p_fixeol); |
7 | 5496 case PV_ET: return (char_u *)&(curbuf->b_p_et); |
5497 case PV_FENC: return (char_u *)&(curbuf->b_p_fenc); | |
5498 case PV_FF: return (char_u *)&(curbuf->b_p_ff); | |
5499 case PV_FT: return (char_u *)&(curbuf->b_p_ft); | |
5500 case PV_FO: return (char_u *)&(curbuf->b_p_fo); | |
41 | 5501 case PV_FLP: return (char_u *)&(curbuf->b_p_flp); |
7 | 5502 case PV_IMI: return (char_u *)&(curbuf->b_p_iminsert); |
5503 case PV_IMS: return (char_u *)&(curbuf->b_p_imsearch); | |
5504 case PV_INF: return (char_u *)&(curbuf->b_p_inf); | |
5505 case PV_ISK: return (char_u *)&(curbuf->b_p_isk); | |
5506 #ifdef FEAT_FIND_ID | |
5507 # ifdef FEAT_EVAL | |
5508 case PV_INEX: return (char_u *)&(curbuf->b_p_inex); | |
5509 # endif | |
5510 #endif | |
28942
6cdf55afaae9
patch 8.2.4993: smart/C/lisp indenting is optional
Bram Moolenaar <Bram@vim.org>
parents:
28919
diff
changeset
|
5511 #if defined(FEAT_EVAL) |
7 | 5512 case PV_INDE: return (char_u *)&(curbuf->b_p_inde); |
5513 case PV_INDK: return (char_u *)&(curbuf->b_p_indk); | |
5514 #endif | |
694 | 5515 #ifdef FEAT_EVAL |
667 | 5516 case PV_FEX: return (char_u *)&(curbuf->b_p_fex); |
5517 #endif | |
7 | 5518 #ifdef FEAT_CRYPT |
5519 case PV_KEY: return (char_u *)&(curbuf->b_p_key); | |
5520 #endif | |
5521 case PV_LISP: return (char_u *)&(curbuf->b_p_lisp); | |
30853
40df8a6515f6
patch 9.0.0761: cannot use 'indentexpr' for Lisp indenting
Bram Moolenaar <Bram@vim.org>
parents:
30825
diff
changeset
|
5522 case PV_LOP: return (char_u *)&(curbuf->b_p_lop); |
7 | 5523 case PV_ML: return (char_u *)&(curbuf->b_p_ml); |
5524 case PV_MPS: return (char_u *)&(curbuf->b_p_mps); | |
5525 case PV_MA: return (char_u *)&(curbuf->b_p_ma); | |
5526 case PV_MOD: return (char_u *)&(curbuf->b_changed); | |
5527 case PV_NF: return (char_u *)&(curbuf->b_p_nf); | |
5528 case PV_PI: return (char_u *)&(curbuf->b_p_pi); | |
12 | 5529 case PV_QE: return (char_u *)&(curbuf->b_p_qe); |
7 | 5530 case PV_RO: return (char_u *)&(curbuf->b_p_ro); |
5531 case PV_SI: return (char_u *)&(curbuf->b_p_si); | |
5532 case PV_SN: return (char_u *)&(curbuf->b_p_sn); | |
5533 case PV_STS: return (char_u *)&(curbuf->b_p_sts); | |
5534 case PV_SUA: return (char_u *)&(curbuf->b_p_sua); | |
5535 case PV_SWF: return (char_u *)&(curbuf->b_p_swf); | |
5536 #ifdef FEAT_SYN_HL | |
410 | 5537 case PV_SMC: return (char_u *)&(curbuf->b_p_smc); |
744 | 5538 case PV_SYN: return (char_u *)&(curbuf->b_p_syn); |
5539 #endif | |
5540 #ifdef FEAT_SPELL | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2248
diff
changeset
|
5541 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
|
5542 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
|
5543 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
|
5544 case PV_SPO: return (char_u *)&(curwin->w_s->b_p_spo); |
7 | 5545 #endif |
5546 case PV_SW: return (char_u *)&(curbuf->b_p_sw); | |
5547 case PV_TS: return (char_u *)&(curbuf->b_p_ts); | |
5548 case PV_TW: return (char_u *)&(curbuf->b_p_tw); | |
5549 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
|
5550 #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
|
5551 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
|
5552 #endif |
7 | 5553 case PV_WM: return (char_u *)&(curbuf->b_p_wm); |
5554 #ifdef FEAT_KEYMAP | |
5555 case PV_KMAP: return (char_u *)&(curbuf->b_p_keymap); | |
5556 #endif | |
9852
4eea48b76d03
commit https://github.com/vim/vim/commit/95ec9d6a6ab3117d60ff638670a803d43974ba51
Christian Brabandt <cb@256bit.org>
parents:
9798
diff
changeset
|
5557 #ifdef FEAT_SIGNS |
4eea48b76d03
commit https://github.com/vim/vim/commit/95ec9d6a6ab3117d60ff638670a803d43974ba51
Christian Brabandt <cb@256bit.org>
parents:
9798
diff
changeset
|
5558 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
|
5559 #endif |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
5560 #ifdef FEAT_VARTABS |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
5561 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
|
5562 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
|
5563 #endif |
26913
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26883
diff
changeset
|
5564 default: iemsg(_(e_get_varp_error)); |
7 | 5565 } |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
5566 // always return a valid pointer to avoid a crash! |
7 | 5567 return (char_u *)&(curbuf->b_p_wm); |
5568 } | |
5569 | |
5570 /* | |
18100
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
5571 * 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
|
5572 */ |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
5573 char_u * |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
5574 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
|
5575 { |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
5576 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
|
5577 } |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
5578 |
27018
268f6a3511df
patch 8.2.4038: various code not used when features are disabled
Bram Moolenaar <Bram@vim.org>
parents:
26966
diff
changeset
|
5579 #if defined(FEAT_EVAL) || defined(PROTO) |
18100
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
5580 /* |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
5581 * 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
|
5582 */ |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
5583 char_u * |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
5584 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
|
5585 { |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
5586 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
|
5587 } |
27018
268f6a3511df
patch 8.2.4038: various code not used when features are disabled
Bram Moolenaar <Bram@vim.org>
parents:
26966
diff
changeset
|
5588 #endif |
18100
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
5589 |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
5590 /* |
7 | 5591 * Get the value of 'equalprg', either the buffer-local one or the global one. |
5592 */ | |
5593 char_u * | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5594 get_equalprg(void) |
7 | 5595 { |
5596 if (*curbuf->b_p_ep == NUL) | |
5597 return p_ep; | |
5598 return curbuf->b_p_ep; | |
5599 } | |
5600 | |
5601 /* | |
5602 * Copy options from one window to another. | |
5603 * Used when splitting a window. | |
5604 */ | |
5605 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5606 win_copy_options(win_T *wp_from, win_T *wp_to) |
7 | 5607 { |
5608 copy_winopt(&wp_from->w_onebuf_opt, &wp_to->w_onebuf_opt); | |
5609 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
|
5610 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
|
5611 } |
c81370b3ede4
patch 8.1.2073: when editing a buffer 'colorcolumn' may not work
Bram Moolenaar <Bram@vim.org>
parents:
18100
diff
changeset
|
5612 |
c81370b3ede4
patch 8.1.2073: when editing a buffer 'colorcolumn' may not work
Bram Moolenaar <Bram@vim.org>
parents:
18100
diff
changeset
|
5613 /* |
c81370b3ede4
patch 8.1.2073: when editing a buffer 'colorcolumn' may not work
Bram Moolenaar <Bram@vim.org>
parents:
18100
diff
changeset
|
5614 * 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
|
5615 */ |
c81370b3ede4
patch 8.1.2073: when editing a buffer 'colorcolumn' may not work
Bram Moolenaar <Bram@vim.org>
parents:
18100
diff
changeset
|
5616 void |
27659
b5ebc885c25c
patch 8.2.4355: unnecessary call to check_colorcolumn()
Bram Moolenaar <Bram@vim.org>
parents:
27509
diff
changeset
|
5617 after_copy_winopt(win_T *wp) |
18156
c81370b3ede4
patch 8.1.2073: when editing a buffer 'colorcolumn' may not work
Bram Moolenaar <Bram@vim.org>
parents:
18100
diff
changeset
|
5618 { |
c81370b3ede4
patch 8.1.2073: when editing a buffer 'colorcolumn' may not work
Bram Moolenaar <Bram@vim.org>
parents:
18100
diff
changeset
|
5619 #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
|
5620 briopt_check(wp); |
6162 | 5621 #endif |
18068
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
5622 #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
|
5623 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
|
5624 check_colorcolumn(wp); |
18068
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
5625 #endif |
29395
caaf5b270018
patch 9.0.0040: use of set_chars_option() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
29387
diff
changeset
|
5626 set_chars_option(wp, &wp->w_p_lcs, TRUE); |
caaf5b270018
patch 9.0.0040: use of set_chars_option() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
29387
diff
changeset
|
5627 set_chars_option(wp, &wp->w_p_fcs, TRUE); |
29387
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
28942
diff
changeset
|
5628 } |
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
28942
diff
changeset
|
5629 |
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
28942
diff
changeset
|
5630 static char_u * |
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
28942
diff
changeset
|
5631 copy_option_val(char_u *val) |
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
28942
diff
changeset
|
5632 { |
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
28942
diff
changeset
|
5633 if (val == empty_option) |
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
28942
diff
changeset
|
5634 return empty_option; // no need to allocate memory |
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
28942
diff
changeset
|
5635 return vim_strsave(val); |
7 | 5636 } |
5637 | |
5638 /* | |
5639 * Copy the options from one winopt_T to another. | |
5640 * Doesn't free the old option values in "to", use clear_winopt() for that. | |
5641 * The 'scroll' option is not copied, because it depends on the window height. | |
5642 * The 'previewwindow' option is reset, there can be only one preview window. | |
5643 */ | |
5644 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5645 copy_winopt(winopt_T *from, winopt_T *to) |
7 | 5646 { |
5647 #ifdef FEAT_ARABIC | |
5648 to->wo_arab = from->wo_arab; | |
5649 #endif | |
5650 to->wo_list = from->wo_list; | |
29387
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
28942
diff
changeset
|
5651 to->wo_lcs = copy_option_val(from->wo_lcs); |
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
28942
diff
changeset
|
5652 to->wo_fcs = copy_option_val(from->wo_fcs); |
7 | 5653 to->wo_nu = from->wo_nu; |
2178
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2144
diff
changeset
|
5654 to->wo_rnu = from->wo_rnu; |
29387
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
28942
diff
changeset
|
5655 to->wo_ve = copy_option_val(from->wo_ve); |
25487
c26ff3203b43
patch 8.2.3280: 'virtualedit' local to buffer is not the best solution
Bram Moolenaar <Bram@vim.org>
parents:
25419
diff
changeset
|
5656 to->wo_ve_flags = from->wo_ve_flags; |
13 | 5657 #ifdef FEAT_LINEBREAK |
5658 to->wo_nuw = from->wo_nuw; | |
5659 #endif | |
7 | 5660 #ifdef FEAT_RIGHTLEFT |
5661 to->wo_rl = from->wo_rl; | |
29387
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
28942
diff
changeset
|
5662 to->wo_rlc = copy_option_val(from->wo_rlc); |
7 | 5663 #endif |
18574
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
5664 #ifdef FEAT_LINEBREAK |
29387
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
28942
diff
changeset
|
5665 to->wo_sbr = copy_option_val(from->wo_sbr); |
18574
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
5666 #endif |
40 | 5667 #ifdef FEAT_STL_OPT |
29387
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
28942
diff
changeset
|
5668 to->wo_stl = copy_option_val(from->wo_stl); |
40 | 5669 #endif |
7 | 5670 to->wo_wrap = from->wo_wrap; |
5102
11d0c6df1d7b
updated for version 7.3.1294
Bram Moolenaar <bram@vim.org>
parents:
5070
diff
changeset
|
5671 #ifdef FEAT_DIFF |
11d0c6df1d7b
updated for version 7.3.1294
Bram Moolenaar <bram@vim.org>
parents:
5070
diff
changeset
|
5672 to->wo_wrap_save = from->wo_wrap_save; |
11d0c6df1d7b
updated for version 7.3.1294
Bram Moolenaar <bram@vim.org>
parents:
5070
diff
changeset
|
5673 #endif |
7 | 5674 #ifdef FEAT_LINEBREAK |
5675 to->wo_lbr = from->wo_lbr; | |
5995 | 5676 to->wo_bri = from->wo_bri; |
29387
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
28942
diff
changeset
|
5677 to->wo_briopt = copy_option_val(from->wo_briopt); |
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
28942
diff
changeset
|
5678 #endif |
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
28942
diff
changeset
|
5679 to->wo_wcr = copy_option_val(from->wo_wcr); |
7 | 5680 to->wo_scb = from->wo_scb; |
5102
11d0c6df1d7b
updated for version 7.3.1294
Bram Moolenaar <bram@vim.org>
parents:
5070
diff
changeset
|
5681 to->wo_scb_save = from->wo_scb_save; |
30618
c2031ad5ed54
patch 9.0.0644: 'smoothscroll' is not copied to a new window on :split
Bram Moolenaar <Bram@vim.org>
parents:
30610
diff
changeset
|
5682 to->wo_sms = from->wo_sms; |
2651 | 5683 to->wo_crb = from->wo_crb; |
5102
11d0c6df1d7b
updated for version 7.3.1294
Bram Moolenaar <bram@vim.org>
parents:
5070
diff
changeset
|
5684 to->wo_crb_save = from->wo_crb_save; |
744 | 5685 #ifdef FEAT_SPELL |
5686 to->wo_spell = from->wo_spell; | |
5687 #endif | |
221 | 5688 #ifdef FEAT_SYN_HL |
744 | 5689 to->wo_cuc = from->wo_cuc; |
5690 to->wo_cul = from->wo_cul; | |
29387
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
28942
diff
changeset
|
5691 to->wo_culopt = copy_option_val(from->wo_culopt); |
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
28942
diff
changeset
|
5692 to->wo_cc = copy_option_val(from->wo_cc); |
221 | 5693 #endif |
7 | 5694 #ifdef FEAT_DIFF |
5695 to->wo_diff = from->wo_diff; | |
5102
11d0c6df1d7b
updated for version 7.3.1294
Bram Moolenaar <bram@vim.org>
parents:
5070
diff
changeset
|
5696 to->wo_diff_saved = from->wo_diff_saved; |
7 | 5697 #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
|
5698 #ifdef FEAT_CONCEAL |
29387
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
28942
diff
changeset
|
5699 to->wo_cocu = copy_option_val(from->wo_cocu); |
2379
b67b0b5a93d3
Window split didn't copy the value of 'conceallevel'.
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
5700 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
|
5701 #endif |
11621
b8299e742f41
patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
11587
diff
changeset
|
5702 #ifdef FEAT_TERMINAL |
29387
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
28942
diff
changeset
|
5703 to->wo_twk = copy_option_val(from->wo_twk); |
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
28942
diff
changeset
|
5704 to->wo_tws = copy_option_val(from->wo_tws); |
11621
b8299e742f41
patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
11587
diff
changeset
|
5705 #endif |
7 | 5706 #ifdef FEAT_FOLDING |
5707 to->wo_fdc = from->wo_fdc; | |
5102
11d0c6df1d7b
updated for version 7.3.1294
Bram Moolenaar <bram@vim.org>
parents:
5070
diff
changeset
|
5708 to->wo_fdc_save = from->wo_fdc_save; |
7 | 5709 to->wo_fen = from->wo_fen; |
5102
11d0c6df1d7b
updated for version 7.3.1294
Bram Moolenaar <bram@vim.org>
parents:
5070
diff
changeset
|
5710 to->wo_fen_save = from->wo_fen_save; |
29387
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
28942
diff
changeset
|
5711 to->wo_fdi = copy_option_val(from->wo_fdi); |
7 | 5712 to->wo_fml = from->wo_fml; |
5713 to->wo_fdl = from->wo_fdl; | |
5102
11d0c6df1d7b
updated for version 7.3.1294
Bram Moolenaar <bram@vim.org>
parents:
5070
diff
changeset
|
5714 to->wo_fdl_save = from->wo_fdl_save; |
29387
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
28942
diff
changeset
|
5715 to->wo_fdm = copy_option_val(from->wo_fdm); |
5102
11d0c6df1d7b
updated for version 7.3.1294
Bram Moolenaar <bram@vim.org>
parents:
5070
diff
changeset
|
5716 to->wo_fdm_save = from->wo_diff_saved |
29387
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
28942
diff
changeset
|
5717 ? vim_strsave(from->wo_fdm_save) : empty_option; |
7 | 5718 to->wo_fdn = from->wo_fdn; |
5719 # ifdef FEAT_EVAL | |
29387
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
28942
diff
changeset
|
5720 to->wo_fde = copy_option_val(from->wo_fde); |
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
28942
diff
changeset
|
5721 to->wo_fdt = copy_option_val(from->wo_fdt); |
7 | 5722 # endif |
29387
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
28942
diff
changeset
|
5723 to->wo_fmr = copy_option_val(from->wo_fmr); |
7 | 5724 #endif |
9852
4eea48b76d03
commit https://github.com/vim/vim/commit/95ec9d6a6ab3117d60ff638670a803d43974ba51
Christian Brabandt <cb@256bit.org>
parents:
9798
diff
changeset
|
5725 #ifdef FEAT_SIGNS |
29387
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
28942
diff
changeset
|
5726 to->wo_scl = copy_option_val(from->wo_scl); |
9852
4eea48b76d03
commit https://github.com/vim/vim/commit/95ec9d6a6ab3117d60ff638670a803d43974ba51
Christian Brabandt <cb@256bit.org>
parents:
9798
diff
changeset
|
5727 #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
|
5728 |
212284f893d5
patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
5729 #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
|
5730 // 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
|
5731 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
|
5732 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
|
5733 #endif |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
5734 check_winopt(to); // don't want NULL pointers |
7 | 5735 } |
5736 | |
5737 /* | |
5738 * Check string options in a window for a NULL value. | |
5739 */ | |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17781
diff
changeset
|
5740 static void |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5741 check_win_options(win_T *win) |
7 | 5742 { |
5743 check_winopt(&win->w_onebuf_opt); | |
5744 check_winopt(&win->w_allbuf_opt); | |
5745 } | |
5746 | |
5747 /* | |
5748 * Check for NULL pointers in a winopt_T and replace them with empty_option. | |
5749 */ | |
5997 | 5750 static void |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5751 check_winopt(winopt_T *wop UNUSED) |
7 | 5752 { |
5753 #ifdef FEAT_FOLDING | |
5754 check_string_option(&wop->wo_fdi); | |
5755 check_string_option(&wop->wo_fdm); | |
5102
11d0c6df1d7b
updated for version 7.3.1294
Bram Moolenaar <bram@vim.org>
parents:
5070
diff
changeset
|
5756 check_string_option(&wop->wo_fdm_save); |
7 | 5757 # ifdef FEAT_EVAL |
5758 check_string_option(&wop->wo_fde); | |
5759 check_string_option(&wop->wo_fdt); | |
5760 # endif | |
5761 check_string_option(&wop->wo_fmr); | |
5762 #endif | |
9852
4eea48b76d03
commit https://github.com/vim/vim/commit/95ec9d6a6ab3117d60ff638670a803d43974ba51
Christian Brabandt <cb@256bit.org>
parents:
9798
diff
changeset
|
5763 #ifdef FEAT_SIGNS |
4eea48b76d03
commit https://github.com/vim/vim/commit/95ec9d6a6ab3117d60ff638670a803d43974ba51
Christian Brabandt <cb@256bit.org>
parents:
9798
diff
changeset
|
5764 check_string_option(&wop->wo_scl); |
4eea48b76d03
commit https://github.com/vim/vim/commit/95ec9d6a6ab3117d60ff638670a803d43974ba51
Christian Brabandt <cb@256bit.org>
parents:
9798
diff
changeset
|
5765 #endif |
7 | 5766 #ifdef FEAT_RIGHTLEFT |
5767 check_string_option(&wop->wo_rlc); | |
5768 #endif | |
18574
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
5769 #ifdef FEAT_LINEBREAK |
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
5770 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
|
5771 #endif |
40 | 5772 #ifdef FEAT_STL_OPT |
5773 check_string_option(&wop->wo_stl); | |
5774 #endif | |
2314
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
5775 #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
|
5776 check_string_option(&wop->wo_culopt); |
2314
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
5777 check_string_option(&wop->wo_cc); |
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
5778 #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
|
5779 #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
|
5780 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
|
5781 #endif |
11621
b8299e742f41
patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
11587
diff
changeset
|
5782 #ifdef FEAT_TERMINAL |
13742
a34b1323286c
patch 8.0.1743: terminal window options are named inconsistently
Christian Brabandt <cb@256bit.org>
parents:
13700
diff
changeset
|
5783 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
|
5784 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
|
5785 #endif |
5995 | 5786 #ifdef FEAT_LINEBREAK |
5787 check_string_option(&wop->wo_briopt); | |
5788 #endif | |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16764
diff
changeset
|
5789 check_string_option(&wop->wo_wcr); |
23952
44be09b25619
patch 8.2.2518: 'listchars' should be window-local
Bram Moolenaar <Bram@vim.org>
parents:
23821
diff
changeset
|
5790 check_string_option(&wop->wo_lcs); |
29387
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
28942
diff
changeset
|
5791 check_string_option(&wop->wo_fcs); |
25487
c26ff3203b43
patch 8.2.3280: 'virtualedit' local to buffer is not the best solution
Bram Moolenaar <Bram@vim.org>
parents:
25419
diff
changeset
|
5792 check_string_option(&wop->wo_ve); |
7 | 5793 } |
5794 | |
5795 /* | |
5796 * Free the allocated memory inside a winopt_T. | |
5797 */ | |
5798 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5799 clear_winopt(winopt_T *wop UNUSED) |
7 | 5800 { |
5801 #ifdef FEAT_FOLDING | |
5802 clear_string_option(&wop->wo_fdi); | |
5803 clear_string_option(&wop->wo_fdm); | |
5102
11d0c6df1d7b
updated for version 7.3.1294
Bram Moolenaar <bram@vim.org>
parents:
5070
diff
changeset
|
5804 clear_string_option(&wop->wo_fdm_save); |
7 | 5805 # ifdef FEAT_EVAL |
5806 clear_string_option(&wop->wo_fde); | |
5807 clear_string_option(&wop->wo_fdt); | |
5808 # endif | |
5809 clear_string_option(&wop->wo_fmr); | |
5810 #endif | |
9852
4eea48b76d03
commit https://github.com/vim/vim/commit/95ec9d6a6ab3117d60ff638670a803d43974ba51
Christian Brabandt <cb@256bit.org>
parents:
9798
diff
changeset
|
5811 #ifdef FEAT_SIGNS |
4eea48b76d03
commit https://github.com/vim/vim/commit/95ec9d6a6ab3117d60ff638670a803d43974ba51
Christian Brabandt <cb@256bit.org>
parents:
9798
diff
changeset
|
5812 clear_string_option(&wop->wo_scl); |
4eea48b76d03
commit https://github.com/vim/vim/commit/95ec9d6a6ab3117d60ff638670a803d43974ba51
Christian Brabandt <cb@256bit.org>
parents:
9798
diff
changeset
|
5813 #endif |
5995 | 5814 #ifdef FEAT_LINEBREAK |
5815 clear_string_option(&wop->wo_briopt); | |
5816 #endif | |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16764
diff
changeset
|
5817 clear_string_option(&wop->wo_wcr); |
7 | 5818 #ifdef FEAT_RIGHTLEFT |
5819 clear_string_option(&wop->wo_rlc); | |
5820 #endif | |
18574
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
5821 #ifdef FEAT_LINEBREAK |
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
5822 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
|
5823 #endif |
40 | 5824 #ifdef FEAT_STL_OPT |
5825 clear_string_option(&wop->wo_stl); | |
5826 #endif | |
2314
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
5827 #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
|
5828 clear_string_option(&wop->wo_culopt); |
2314
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
5829 clear_string_option(&wop->wo_cc); |
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
5830 #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
|
5831 #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
|
5832 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
|
5833 #endif |
11621
b8299e742f41
patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
11587
diff
changeset
|
5834 #ifdef FEAT_TERMINAL |
13742
a34b1323286c
patch 8.0.1743: terminal window options are named inconsistently
Christian Brabandt <cb@256bit.org>
parents:
13700
diff
changeset
|
5835 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
|
5836 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
|
5837 #endif |
23952
44be09b25619
patch 8.2.2518: 'listchars' should be window-local
Bram Moolenaar <Bram@vim.org>
parents:
23821
diff
changeset
|
5838 clear_string_option(&wop->wo_lcs); |
29387
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
28942
diff
changeset
|
5839 clear_string_option(&wop->wo_fcs); |
25487
c26ff3203b43
patch 8.2.3280: 'virtualedit' local to buffer is not the best solution
Bram Moolenaar <Bram@vim.org>
parents:
25419
diff
changeset
|
5840 clear_string_option(&wop->wo_ve); |
7 | 5841 } |
5842 | |
18380
212284f893d5
patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
5843 #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
|
5844 // 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
|
5845 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
|
5846 # 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
|
5847 |
212284f893d5
patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
5848 /* |
212284f893d5
patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
5849 * 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
|
5850 */ |
212284f893d5
patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
5851 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
|
5852 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
|
5853 { |
212284f893d5
patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
5854 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
|
5855 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
|
5856 |
212284f893d5
patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
5857 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
|
5858 return; |
212284f893d5
patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
5859 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
|
5860 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
|
5861 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
|
5862 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
|
5863 } |
212284f893d5
patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
5864 #else |
212284f893d5
patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
5865 # 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
|
5866 #endif |
212284f893d5
patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
5867 |
7 | 5868 /* |
5869 * Copy global option values to local options for one buffer. | |
5870 * Used when creating a new buffer and sometimes when entering a buffer. | |
5871 * 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
|
5872 * BCO_ENTER We will enter the buffer "buf". |
7 | 5873 * BCO_ALWAYS Always copy the options, but only set b_p_initialized when |
5874 * appropriate. | |
5875 * BCO_NOHELP Don't copy the values to a help buffer. | |
5876 */ | |
5877 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5878 buf_copy_options(buf_T *buf, int flags) |
7 | 5879 { |
5880 int should_copy = TRUE; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
5881 char_u *save_p_isk = NULL; // init for GCC |
7 | 5882 int dont_do_help; |
5883 int did_isk = FALSE; | |
5884 | |
5885 /* | |
5886 * Skip this when the option defaults have not been set yet. Happens when | |
5887 * main() allocates the first buffer. | |
5888 */ | |
5889 if (p_cpo != NULL) | |
5890 { | |
5891 /* | |
5892 * Always copy when entering and 'cpo' contains 'S'. | |
5893 * Don't copy when already initialized. | |
5894 * Don't copy when 'cpo' contains 's' and not entering. | |
5895 * 'S' BCO_ENTER initialized 's' should_copy | |
5896 * yes yes X X TRUE | |
5897 * yes no yes X FALSE | |
5898 * no X yes X FALSE | |
5899 * X no no yes FALSE | |
5900 * X no no no TRUE | |
5901 * no yes no X TRUE | |
5902 */ | |
5903 if ((vim_strchr(p_cpo, CPO_BUFOPTGLOB) == NULL || !(flags & BCO_ENTER)) | |
5904 && (buf->b_p_initialized | |
5905 || (!(flags & BCO_ENTER) | |
5906 && vim_strchr(p_cpo, CPO_BUFOPT) != NULL))) | |
5907 should_copy = FALSE; | |
5908 | |
5909 if (should_copy || (flags & BCO_ALWAYS)) | |
5910 { | |
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
|
5911 #ifdef FEAT_EVAL |
20007
aadd1cae2ff5
patch 8.2.0559: clearing a struct is verbose
Bram Moolenaar <Bram@vim.org>
parents:
19405
diff
changeset
|
5912 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
|
5913 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
|
5914 #endif |
212284f893d5
patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
5915 // 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
|
5916 // 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
|
5917 // (jumping back to a help file with CTRL-T or CTRL-O) |
7 | 5918 dont_do_help = ((flags & BCO_NOHELP) && buf->b_help) |
5919 || 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
|
5920 if (dont_do_help) // don't free b_p_isk |
7 | 5921 { |
5922 save_p_isk = buf->b_p_isk; | |
5923 buf->b_p_isk = NULL; | |
5924 } | |
5925 /* | |
14479
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14381
diff
changeset
|
5926 * 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
|
5927 * reset 'readonly' and copy 'fileformat'. |
7 | 5928 */ |
5929 if (!buf->b_p_initialized) | |
5930 { | |
5931 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
|
5932 buf->b_p_ro = FALSE; // don't copy readonly |
7 | 5933 buf->b_p_tx = p_tx; |
5934 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
|
5935 switch (*p_ffs) |
c55a7232fb48
commit https://github.com/vim/vim/commit/e8ef3a093453b73594e15462d4de50b011c8ba66
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5936 { |
c55a7232fb48
commit https://github.com/vim/vim/commit/e8ef3a093453b73594e15462d4de50b011c8ba66
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5937 case 'm': |
c55a7232fb48
commit https://github.com/vim/vim/commit/e8ef3a093453b73594e15462d4de50b011c8ba66
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5938 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
|
5939 case 'd': |
c55a7232fb48
commit https://github.com/vim/vim/commit/e8ef3a093453b73594e15462d4de50b011c8ba66
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5940 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
|
5941 case 'u': |
c55a7232fb48
commit https://github.com/vim/vim/commit/e8ef3a093453b73594e15462d4de50b011c8ba66
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5942 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
|
5943 default: |
c55a7232fb48
commit https://github.com/vim/vim/commit/e8ef3a093453b73594e15462d4de50b011c8ba66
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5944 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
|
5945 } |
c55a7232fb48
commit https://github.com/vim/vim/commit/e8ef3a093453b73594e15462d4de50b011c8ba66
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5946 if (buf->b_p_ff != NULL) |
c55a7232fb48
commit https://github.com/vim/vim/commit/e8ef3a093453b73594e15462d4de50b011c8ba66
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5947 buf->b_start_ffc = *buf->b_p_ff; |
7 | 5948 buf->b_p_bh = empty_option; |
5949 buf->b_p_bt = empty_option; | |
5950 } | |
5951 else | |
5952 free_buf_options(buf, FALSE); | |
5953 | |
5954 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
|
5955 COPY_OPT_SCTX(buf, BV_AI); |
7 | 5956 buf->b_p_ai_nopaste = p_ai_nopaste; |
5957 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
|
5958 COPY_OPT_SCTX(buf, BV_SW); |
7 | 5959 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
|
5960 COPY_OPT_SCTX(buf, BV_TW); |
7 | 5961 buf->b_p_tw_nopaste = p_tw_nopaste; |
5962 buf->b_p_tw_nobin = p_tw_nobin; | |
5963 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
|
5964 COPY_OPT_SCTX(buf, BV_WM); |
7 | 5965 buf->b_p_wm_nopaste = p_wm_nopaste; |
5966 buf->b_p_wm_nobin = p_wm_nobin; | |
5967 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
|
5968 COPY_OPT_SCTX(buf, BV_BIN); |
402 | 5969 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
|
5970 COPY_OPT_SCTX(buf, BV_BOMB); |
6954 | 5971 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
|
5972 COPY_OPT_SCTX(buf, BV_FIXEOL); |
7 | 5973 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
|
5974 COPY_OPT_SCTX(buf, BV_ET); |
7 | 5975 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
|
5976 buf->b_p_et_nopaste = p_et_nopaste; |
7 | 5977 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
|
5978 COPY_OPT_SCTX(buf, BV_ML); |
7 | 5979 buf->b_p_ml_nobin = p_ml_nobin; |
5980 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
|
5981 COPY_OPT_SCTX(buf, BV_INF); |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
22242
diff
changeset
|
5982 if (cmdmod.cmod_flags & CMOD_NOSWAPFILE) |
18380
212284f893d5
patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
5983 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
|
5984 else |
212284f893d5
patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
5985 { |
212284f893d5
patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
5986 buf->b_p_swf = p_swf; |
26550
919ee902079a
patch 8.2.3804: script context not set when copying 'swf' and 'ts'
Bram Moolenaar <Bram@vim.org>
parents:
26452
diff
changeset
|
5987 COPY_OPT_SCTX(buf, BV_SWF); |
18380
212284f893d5
patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
5988 } |
7 | 5989 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
|
5990 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
|
5991 #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
|
5992 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
|
5993 COPY_OPT_SCTX(buf, BV_CSL); |
7 | 5994 #endif |
12 | 5995 #ifdef FEAT_COMPL_FUNC |
5996 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
|
5997 COPY_OPT_SCTX(buf, BV_CFU); |
26388
8aba638e91eb
patch 8.2.3725: cannot use a lambda for 'completefunc' and 'omnifunc'
Bram Moolenaar <Bram@vim.org>
parents:
26362
diff
changeset
|
5998 set_buflocal_cfu_callback(buf); |
502 | 5999 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
|
6000 COPY_OPT_SCTX(buf, BV_OFU); |
26388
8aba638e91eb
patch 8.2.3725: cannot use a lambda for 'completefunc' and 'omnifunc'
Bram Moolenaar <Bram@vim.org>
parents:
26362
diff
changeset
|
6001 set_buflocal_ofu_callback(buf); |
12 | 6002 #endif |
16447
54ffc82f38a8
patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents:
16429
diff
changeset
|
6003 #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
|
6004 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
|
6005 COPY_OPT_SCTX(buf, BV_TFU); |
26388
8aba638e91eb
patch 8.2.3725: cannot use a lambda for 'completefunc' and 'omnifunc'
Bram Moolenaar <Bram@vim.org>
parents:
26362
diff
changeset
|
6006 set_buflocal_tfu_callback(buf); |
16447
54ffc82f38a8
patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents:
16429
diff
changeset
|
6007 #endif |
7 | 6008 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
|
6009 COPY_OPT_SCTX(buf, BV_STS); |
7 | 6010 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
|
6011 #ifdef FEAT_VARTABS |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
6012 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
|
6013 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
|
6014 if (p_vsts && p_vsts != empty_option) |
25733
4b2616ffe32b
patch 8.2.3402: invalid memory access when using :retab with large value
Bram Moolenaar <Bram@vim.org>
parents:
25487
diff
changeset
|
6015 (void)tabstop_set(p_vsts, &buf->b_p_vsts_array); |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
6016 else |
27434
c1702fd7e716
patch 8.2.4245: ":retab 0" may cause illegal memory access
Bram Moolenaar <Bram@vim.org>
parents:
27426
diff
changeset
|
6017 buf->b_p_vsts_array = NULL; |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
6018 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
|
6019 ? 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
|
6020 #endif |
7 | 6021 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
|
6022 COPY_OPT_SCTX(buf, BV_SN); |
7 | 6023 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
|
6024 COPY_OPT_SCTX(buf, BV_COM); |
7 | 6025 #ifdef FEAT_FOLDING |
6026 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
|
6027 COPY_OPT_SCTX(buf, BV_CMS); |
7 | 6028 #endif |
6029 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
|
6030 COPY_OPT_SCTX(buf, BV_FO); |
41 | 6031 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
|
6032 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
|
6033 // 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
|
6034 // when it is set to 8 bytes in defaults.vim. |
7 | 6035 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
|
6036 COPY_OPT_SCTX(buf, BV_NF); |
7 | 6037 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
|
6038 COPY_OPT_SCTX(buf, BV_MPS); |
7 | 6039 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
|
6040 COPY_OPT_SCTX(buf, BV_SI); |
7 | 6041 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
|
6042 COPY_OPT_SCTX(buf, BV_CI); |
28942
6cdf55afaae9
patch 8.2.4993: smart/C/lisp indenting is optional
Bram Moolenaar <Bram@vim.org>
parents:
28919
diff
changeset
|
6043 |
7 | 6044 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
|
6045 COPY_OPT_SCTX(buf, BV_CIN); |
7 | 6046 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
|
6047 COPY_OPT_SCTX(buf, BV_CINK); |
7 | 6048 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
|
6049 COPY_OPT_SCTX(buf, BV_CINO); |
28353
8bc8071928ed
patch 8.2.4702: C++ scope labels are hard-coded
Bram Moolenaar <Bram@vim.org>
parents:
28337
diff
changeset
|
6050 buf->b_p_cinsd = vim_strsave(p_cinsd); |
8bc8071928ed
patch 8.2.4702: C++ scope labels are hard-coded
Bram Moolenaar <Bram@vim.org>
parents:
28337
diff
changeset
|
6051 COPY_OPT_SCTX(buf, BV_CINSD); |
30853
40df8a6515f6
patch 9.0.0761: cannot use 'indentexpr' for Lisp indenting
Bram Moolenaar <Bram@vim.org>
parents:
30825
diff
changeset
|
6052 buf->b_p_lop = vim_strsave(p_lop); |
40df8a6515f6
patch 9.0.0761: cannot use 'indentexpr' for Lisp indenting
Bram Moolenaar <Bram@vim.org>
parents:
30825
diff
changeset
|
6053 COPY_OPT_SCTX(buf, BV_LOP); |
28942
6cdf55afaae9
patch 8.2.4993: smart/C/lisp indenting is optional
Bram Moolenaar <Bram@vim.org>
parents:
28919
diff
changeset
|
6054 |
18380
212284f893d5
patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
6055 // Don't copy 'filetype', it must be detected |
7 | 6056 buf->b_p_ft = empty_option; |
6057 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
|
6058 COPY_OPT_SCTX(buf, BV_PI); |
7 | 6059 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
|
6060 COPY_OPT_SCTX(buf, BV_CINW); |
7 | 6061 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
|
6062 COPY_OPT_SCTX(buf, BV_LISP); |
7 | 6063 #ifdef FEAT_SYN_HL |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6064 // Don't copy 'syntax', it must be set |
7 | 6065 buf->b_p_syn = empty_option; |
410 | 6066 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
|
6067 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
|
6068 buf->b_s.b_syn_isk = empty_option; |
744 | 6069 #endif |
6070 #ifdef FEAT_SPELL | |
2599 | 6071 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
|
6072 COPY_OPT_SCTX(buf, BV_SPC); |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2248
diff
changeset
|
6073 (void)compile_cap_prog(&buf->b_s); |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2248
diff
changeset
|
6074 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
|
6075 COPY_OPT_SCTX(buf, BV_SPF); |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2248
diff
changeset
|
6076 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
|
6077 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
|
6078 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
|
6079 COPY_OPT_SCTX(buf, BV_SPO); |
7 | 6080 #endif |
28942
6cdf55afaae9
patch 8.2.4993: smart/C/lisp indenting is optional
Bram Moolenaar <Bram@vim.org>
parents:
28919
diff
changeset
|
6081 #if defined(FEAT_EVAL) |
7 | 6082 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
|
6083 COPY_OPT_SCTX(buf, BV_INDE); |
7 | 6084 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
|
6085 COPY_OPT_SCTX(buf, BV_INDK); |
7 | 6086 #endif |
10579
688b97124d23
patch 8.0.0179: cannot have a local value for 'formatprg'
Christian Brabandt <cb@256bit.org>
parents:
10456
diff
changeset
|
6087 buf->b_p_fp = empty_option; |
667 | 6088 #if defined(FEAT_EVAL) |
6089 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
|
6090 COPY_OPT_SCTX(buf, BV_FEX); |
667 | 6091 #endif |
7 | 6092 #ifdef FEAT_CRYPT |
6093 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
|
6094 COPY_OPT_SCTX(buf, BV_KEY); |
7 | 6095 #endif |
6096 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
|
6097 COPY_OPT_SCTX(buf, BV_SUA); |
7 | 6098 #ifdef FEAT_KEYMAP |
6099 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
|
6100 COPY_OPT_SCTX(buf, BV_KMAP); |
7 | 6101 buf->b_kmap_state |= KEYMAP_INIT; |
6102 #endif | |
13742
a34b1323286c
patch 8.0.1743: terminal window options are named inconsistently
Christian Brabandt <cb@256bit.org>
parents:
13700
diff
changeset
|
6103 #ifdef FEAT_TERMINAL |
a34b1323286c
patch 8.0.1743: terminal window options are named inconsistently
Christian Brabandt <cb@256bit.org>
parents:
13700
diff
changeset
|
6104 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
|
6105 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
|
6106 #endif |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6107 // 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
|
6108 // state from the current buffer is better than resetting it. |
7 | 6109 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
|
6110 COPY_OPT_SCTX(buf, BV_IMI); |
7 | 6111 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
|
6112 COPY_OPT_SCTX(buf, BV_IMS); |
7 | 6113 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6114 // 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
|
6115 // are not copied, start using the global value |
7 | 6116 buf->b_p_ar = -1; |
5446 | 6117 buf->b_p_ul = NO_LOCAL_UNDOLEVEL; |
6243 | 6118 buf->b_p_bkc = empty_option; |
6119 buf->b_bkc_flags = 0; | |
7 | 6120 #ifdef FEAT_QUICKFIX |
6121 buf->b_p_gp = empty_option; | |
6122 buf->b_p_mp = empty_option; | |
6123 buf->b_p_efm = empty_option; | |
6124 #endif | |
6125 buf->b_p_ep = empty_option; | |
6126 buf->b_p_kp = empty_option; | |
6127 buf->b_p_path = empty_option; | |
6128 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
|
6129 buf->b_p_tc = empty_option; |
6ba7182fb7bd
commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents:
7218
diff
changeset
|
6130 buf->b_tc_flags = 0; |
7 | 6131 #ifdef FEAT_FIND_ID |
6132 buf->b_p_def = empty_option; | |
6133 buf->b_p_inc = empty_option; | |
6134 # ifdef FEAT_EVAL | |
6135 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
|
6136 COPY_OPT_SCTX(buf, BV_INEX); |
7 | 6137 # endif |
6138 #endif | |
6139 buf->b_p_dict = empty_option; | |
6140 buf->b_p_tsr = empty_option; | |
25990
ac330e2fecc4
patch 8.2.3528: 'thesaurus' and 'thesaurusfunc' do not have the same scope
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
6141 #ifdef FEAT_COMPL_FUNC |
ac330e2fecc4
patch 8.2.3528: 'thesaurus' and 'thesaurusfunc' do not have the same scope
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
6142 buf->b_p_tsrfu = empty_option; |
ac330e2fecc4
patch 8.2.3528: 'thesaurus' and 'thesaurusfunc' do not have the same scope
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
6143 #endif |
12 | 6144 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
|
6145 COPY_OPT_SCTX(buf, BV_QE); |
790 | 6146 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL) |
6147 buf->b_p_bexpr = empty_option; | |
6148 #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
|
6149 #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
|
6150 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
|
6151 #endif |
2214
f8222d1f9a73
Included patch for persistent undo. Lots of changes and added test.
Bram Moolenaar <bram@vim.org>
parents:
2184
diff
changeset
|
6152 #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
|
6153 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
|
6154 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
|
6155 #endif |
5712 | 6156 buf->b_p_lw = empty_option; |
11063
e71d3bdf3bc3
patch 8.0.0420: text garbled when the system encoding differs from 'encoding'
Christian Brabandt <cb@256bit.org>
parents:
10968
diff
changeset
|
6157 buf->b_p_menc = empty_option; |
7 | 6158 |
6159 /* | |
6160 * Don't copy the options set by ex_help(), use the saved values, | |
6161 * when going from a help buffer to a non-help buffer. | |
6162 * Don't touch these at all when BCO_NOHELP is used and going from | |
6163 * or to a help buffer. | |
6164 */ | |
6165 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
|
6166 { |
7 | 6167 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
|
6168 #ifdef FEAT_VARTABS |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
6169 if (p_vts && p_vts != empty_option && !buf->b_p_vts_array) |
25733
4b2616ffe32b
patch 8.2.3402: invalid memory access when using :retab with large value
Bram Moolenaar <Bram@vim.org>
parents:
25487
diff
changeset
|
6170 (void)tabstop_set(p_vts, &buf->b_p_vts_array); |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
6171 else |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
6172 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
|
6173 #endif |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
6174 } |
7 | 6175 else |
6176 { | |
6177 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
|
6178 COPY_OPT_SCTX(buf, BV_ISK); |
7 | 6179 did_isk = TRUE; |
6180 buf->b_p_ts = p_ts; | |
26550
919ee902079a
patch 8.2.3804: script context not set when copying 'swf' and 'ts'
Bram Moolenaar <Bram@vim.org>
parents:
26452
diff
changeset
|
6181 COPY_OPT_SCTX(buf, BV_TS); |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
6182 #ifdef FEAT_VARTABS |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
6183 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
|
6184 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
|
6185 if (p_vts && p_vts != empty_option && !buf->b_p_vts_array) |
25733
4b2616ffe32b
patch 8.2.3402: invalid memory access when using :retab with large value
Bram Moolenaar <Bram@vim.org>
parents:
25487
diff
changeset
|
6186 (void)tabstop_set(p_vts, &buf->b_p_vts_array); |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
6187 else |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
6188 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
|
6189 #endif |
7 | 6190 buf->b_help = FALSE; |
6191 if (buf->b_p_bt[0] == 'h') | |
6192 clear_string_option(&buf->b_p_bt); | |
6193 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
|
6194 COPY_OPT_SCTX(buf, BV_MA); |
7 | 6195 } |
6196 } | |
6197 | |
6198 /* | |
6199 * When the options should be copied (ignoring BCO_ALWAYS), set the | |
6200 * flag that indicates that the options have been initialized. | |
6201 */ | |
6202 if (should_copy) | |
6203 buf->b_p_initialized = TRUE; | |
6204 } | |
6205 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6206 check_buf_options(buf); // make sure we don't have NULLs |
7 | 6207 if (did_isk) |
6208 (void)buf_init_chartab(buf, FALSE); | |
6209 } | |
6210 | |
6211 /* | |
6212 * Reset the 'modifiable' option and its default value. | |
6213 */ | |
6214 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6215 reset_modifiable(void) |
7 | 6216 { |
6217 int opt_idx; | |
6218 | |
6219 curbuf->b_p_ma = FALSE; | |
6220 p_ma = FALSE; | |
6221 opt_idx = findoption((char_u *)"ma"); | |
838 | 6222 if (opt_idx >= 0) |
6223 options[opt_idx].def_val[VI_DEFAULT] = FALSE; | |
7 | 6224 } |
6225 | |
6226 /* | |
6227 * Set the global value for 'iminsert' to the local value. | |
6228 */ | |
6229 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6230 set_iminsert_global(void) |
7 | 6231 { |
6232 p_iminsert = curbuf->b_p_iminsert; | |
6233 } | |
6234 | |
6235 /* | |
6236 * Set the global value for 'imsearch' to the local value. | |
6237 */ | |
6238 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6239 set_imsearch_global(void) |
7 | 6240 { |
6241 p_imsearch = curbuf->b_p_imsearch; | |
6242 } | |
6243 | |
6244 static int expand_option_idx = -1; | |
6245 static char_u expand_option_name[5] = {'t', '_', NUL, NUL, NUL}; | |
6246 static int expand_option_flags = 0; | |
6247 | |
6248 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6249 set_context_in_set_cmd( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6250 expand_T *xp, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6251 char_u *arg, |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6252 int opt_flags) // OPT_GLOBAL and/or OPT_LOCAL |
7 | 6253 { |
6254 int nextchar; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6255 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
|
6256 int opt_idx = 0; // init for GCC |
7 | 6257 char_u *p; |
6258 char_u *s; | |
6259 int is_term_option = FALSE; | |
6260 int key; | |
6261 | |
6262 expand_option_flags = opt_flags; | |
6263 | |
6264 xp->xp_context = EXPAND_SETTINGS; | |
6265 if (*arg == NUL) | |
6266 { | |
6267 xp->xp_pattern = arg; | |
6268 return; | |
6269 } | |
6270 p = arg + STRLEN(arg) - 1; | |
6271 if (*p == ' ' && *(p - 1) != '\\') | |
6272 { | |
6273 xp->xp_pattern = p + 1; | |
6274 return; | |
6275 } | |
6276 while (p > arg) | |
6277 { | |
6278 s = p; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6279 // count number of backslashes before ' ' or ',' |
7 | 6280 if (*p == ' ' || *p == ',') |
6281 { | |
6282 while (s > arg && *(s - 1) == '\\') | |
6283 --s; | |
6284 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6285 // break at a space with an even number of backslashes |
7 | 6286 if (*p == ' ' && ((p - s) & 1) == 0) |
6287 { | |
6288 ++p; | |
6289 break; | |
6290 } | |
6291 --p; | |
6292 } | |
1911 | 6293 if (STRNCMP(p, "no", 2) == 0 && STRNCMP(p, "novice", 6) != 0) |
7 | 6294 { |
6295 xp->xp_context = EXPAND_BOOL_SETTINGS; | |
6296 p += 2; | |
6297 } | |
6298 if (STRNCMP(p, "inv", 3) == 0) | |
6299 { | |
6300 xp->xp_context = EXPAND_BOOL_SETTINGS; | |
6301 p += 3; | |
6302 } | |
6303 xp->xp_pattern = arg = p; | |
6304 if (*arg == '<') | |
6305 { | |
6306 while (*p != '>') | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6307 if (*p++ == NUL) // expand terminal option name |
7 | 6308 return; |
6309 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
|
6310 if (key == 0) // unknown name |
7 | 6311 { |
6312 xp->xp_context = EXPAND_NOTHING; | |
6313 return; | |
6314 } | |
6315 nextchar = *++p; | |
6316 is_term_option = TRUE; | |
6317 expand_option_name[2] = KEY2TERMCAP0(key); | |
6318 expand_option_name[3] = KEY2TERMCAP1(key); | |
6319 } | |
6320 else | |
6321 { | |
6322 if (p[0] == 't' && p[1] == '_') | |
6323 { | |
6324 p += 2; | |
6325 if (*p != NUL) | |
6326 ++p; | |
6327 if (*p == NUL) | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6328 return; // expand option name |
7 | 6329 nextchar = *++p; |
6330 is_term_option = TRUE; | |
6331 expand_option_name[2] = p[-2]; | |
6332 expand_option_name[3] = p[-1]; | |
6333 } | |
6334 else | |
6335 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6336 // Allow * wildcard |
7 | 6337 while (ASCII_ISALNUM(*p) || *p == '_' || *p == '*') |
6338 p++; | |
6339 if (*p == NUL) | |
6340 return; | |
6341 nextchar = *p; | |
6342 *p = NUL; | |
6343 opt_idx = findoption(arg); | |
6344 *p = nextchar; | |
6345 if (opt_idx == -1 || options[opt_idx].var == NULL) | |
6346 { | |
6347 xp->xp_context = EXPAND_NOTHING; | |
6348 return; | |
6349 } | |
6350 flags = options[opt_idx].flags; | |
6351 if (flags & P_BOOL) | |
6352 { | |
6353 xp->xp_context = EXPAND_NOTHING; | |
6354 return; | |
6355 } | |
6356 } | |
6357 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6358 // handle "-=" and "+=" |
7 | 6359 if ((nextchar == '-' || nextchar == '+' || nextchar == '^') && p[1] == '=') |
6360 { | |
6361 ++p; | |
6362 nextchar = '='; | |
6363 } | |
6364 if ((nextchar != '=' && nextchar != ':') | |
6365 || xp->xp_context == EXPAND_BOOL_SETTINGS) | |
6366 { | |
6367 xp->xp_context = EXPAND_UNSUCCESSFUL; | |
6368 return; | |
6369 } | |
6370 if (xp->xp_context != EXPAND_BOOL_SETTINGS && p[1] == NUL) | |
6371 { | |
6372 xp->xp_context = EXPAND_OLD_SETTING; | |
6373 if (is_term_option) | |
6374 expand_option_idx = -1; | |
6375 else | |
6376 expand_option_idx = opt_idx; | |
6377 xp->xp_pattern = p + 1; | |
6378 return; | |
6379 } | |
6380 xp->xp_context = EXPAND_NOTHING; | |
6381 if (is_term_option || (flags & P_NUM)) | |
6382 return; | |
6383 | |
6384 xp->xp_pattern = p + 1; | |
6385 | |
6386 if (flags & P_EXPAND) | |
6387 { | |
6388 p = options[opt_idx].var; | |
6389 if (p == (char_u *)&p_bdir | |
6390 || p == (char_u *)&p_dir | |
6391 || p == (char_u *)&p_path | |
8182
95d59081580f
commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents:
8163
diff
changeset
|
6392 || p == (char_u *)&p_pp |
7 | 6393 || p == (char_u *)&p_rtp |
6394 || p == (char_u *)&p_cdpath | |
6395 #ifdef FEAT_SESSION | |
6396 || p == (char_u *)&p_vdir | |
6397 #endif | |
6398 ) | |
6399 { | |
6400 xp->xp_context = EXPAND_DIRECTORIES; | |
29853
31c598083364
patch 9.0.0265: no good reason why the "gf" command isn't in the tiny version
Bram Moolenaar <Bram@vim.org>
parents:
29765
diff
changeset
|
6401 if (p == (char_u *)&p_path || p == (char_u *)&p_cdpath) |
7 | 6402 xp->xp_backslash = XP_BS_THREE; |
6403 else | |
6404 xp->xp_backslash = XP_BS_ONE; | |
6405 } | |
23821
bfc1ae959d9d
patch 8.2.2452: no completion for the 'filetype' option
Bram Moolenaar <Bram@vim.org>
parents:
23505
diff
changeset
|
6406 else if (p == (char_u *)&p_ft) |
bfc1ae959d9d
patch 8.2.2452: no completion for the 'filetype' option
Bram Moolenaar <Bram@vim.org>
parents:
23505
diff
changeset
|
6407 { |
bfc1ae959d9d
patch 8.2.2452: no completion for the 'filetype' option
Bram Moolenaar <Bram@vim.org>
parents:
23505
diff
changeset
|
6408 xp->xp_context = EXPAND_FILETYPE; |
bfc1ae959d9d
patch 8.2.2452: no completion for the 'filetype' option
Bram Moolenaar <Bram@vim.org>
parents:
23505
diff
changeset
|
6409 } |
7 | 6410 else |
6411 { | |
6412 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
|
6413 // for 'tags' need three backslashes for a space |
7 | 6414 if (p == (char_u *)&p_tags) |
6415 xp->xp_backslash = XP_BS_THREE; | |
6416 else | |
6417 xp->xp_backslash = XP_BS_ONE; | |
6418 } | |
6419 } | |
6420 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6421 // 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
|
6422 // last file name. |
7 | 6423 for (p = arg + STRLEN(arg) - 1; p > xp->xp_pattern; --p) |
6424 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6425 // count number of backslashes before ' ' or ',' |
7 | 6426 if (*p == ' ' || *p == ',') |
6427 { | |
6428 s = p; | |
6429 while (s > xp->xp_pattern && *(s - 1) == '\\') | |
6430 --s; | |
6431 if ((*p == ' ' && (xp->xp_backslash == XP_BS_THREE && (p - s) < 3)) | |
6432 || (*p == ',' && (flags & P_COMMA) && ((p - s) & 1) == 0)) | |
6433 { | |
6434 xp->xp_pattern = p + 1; | |
6435 break; | |
6436 } | |
6437 } | |
374 | 6438 |
744 | 6439 #ifdef FEAT_SPELL |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6440 // for 'spellsuggest' start at "file:" |
374 | 6441 if (options[opt_idx].var == (char_u *)&p_sps |
6442 && STRNCMP(p, "file:", 5) == 0) | |
6443 { | |
6444 xp->xp_pattern = p + 5; | |
6445 break; | |
6446 } | |
6447 #endif | |
7 | 6448 } |
6449 } | |
6450 | |
27875
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6451 /* |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6452 * Returns TRUE if 'str' either matches 'regmatch' or fuzzy matches 'pat'. |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6453 * |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6454 * If 'test_only' is TRUE and 'fuzzy' is FALSE and if 'str' matches the regular |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6455 * expression 'regmatch', then returns TRUE. Otherwise returns FALSE. |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6456 * |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6457 * If 'test_only' is FALSE and 'fuzzy' is FALSE and if 'str' matches the |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6458 * regular expression 'regmatch', then stores the match in matches[idx] and |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6459 * returns TRUE. |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6460 * |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6461 * If 'test_only' is TRUE and 'fuzzy' is TRUE and if 'str' fuzzy matches |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6462 * 'fuzzystr', then returns TRUE. Otherwise returns FALSE. |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6463 * |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6464 * If 'test_only' is FALSE and 'fuzzy' is TRUE and if 'str' fuzzy matches |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6465 * 'fuzzystr', then stores the match details in fuzmatch[idx] and returns TRUE. |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6466 */ |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6467 static int |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6468 match_str( |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6469 char_u *str, |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6470 regmatch_T *regmatch, |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6471 char_u **matches, |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6472 int idx, |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6473 int test_only, |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6474 int fuzzy, |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6475 char_u *fuzzystr, |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6476 fuzmatch_str_T *fuzmatch) |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6477 { |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6478 if (!fuzzy) |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6479 { |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6480 if (vim_regexec(regmatch, str, (colnr_T)0)) |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6481 { |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6482 if (!test_only) |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6483 matches[idx] = vim_strsave(str); |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6484 return TRUE; |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6485 } |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6486 } |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6487 else |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6488 { |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6489 int score; |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6490 |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6491 score = fuzzy_match_str(str, fuzzystr); |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6492 if (score != 0) |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6493 { |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6494 if (!test_only) |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6495 { |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6496 fuzmatch[idx].idx = idx; |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6497 fuzmatch[idx].str = vim_strsave(str); |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6498 fuzmatch[idx].score = score; |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6499 } |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6500 |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6501 return TRUE; |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6502 } |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6503 } |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6504 |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6505 return FALSE; |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6506 } |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6507 |
7 | 6508 int |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6509 ExpandSettings( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6510 expand_T *xp, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6511 regmatch_T *regmatch, |
27875
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6512 char_u *fuzzystr, |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6513 int *numMatches, |
28786
fd5942a62312
patch 8.2.4917: fuzzy expansion of option names is not right
Bram Moolenaar <Bram@vim.org>
parents:
28773
diff
changeset
|
6514 char_u ***matches, |
28809
d0241e74bfdb
patch 8.2.4928: various white space and cosmetic mistakes
Bram Moolenaar <Bram@vim.org>
parents:
28804
diff
changeset
|
6515 int can_fuzzy) |
7 | 6516 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6517 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
|
6518 int num_term = 0; // Nr of matching terminal code settings |
7 | 6519 int opt_idx; |
6520 int match; | |
6521 int count = 0; | |
6522 char_u *str; | |
6523 int loop; | |
6524 int is_term_opt; | |
6525 char_u name_buf[MAX_KEY_NAME_LEN]; | |
6526 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
|
6527 int ic = regmatch->rm_ic; // remember the ignore-case flag |
27875
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6528 int fuzzy; |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6529 fuzmatch_str_T *fuzmatch = NULL; |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6530 |
28786
fd5942a62312
patch 8.2.4917: fuzzy expansion of option names is not right
Bram Moolenaar <Bram@vim.org>
parents:
28773
diff
changeset
|
6531 fuzzy = can_fuzzy && cmdline_fuzzy_complete(fuzzystr); |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6532 |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6533 // do this loop twice: |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6534 // 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
|
6535 // loop == 1: copy the matching options into allocated memory |
7 | 6536 for (loop = 0; loop <= 1; ++loop) |
6537 { | |
6538 regmatch->rm_ic = ic; | |
6539 if (xp->xp_context != EXPAND_BOOL_SETTINGS) | |
6540 { | |
24768
7334bf933510
patch 8.2.2922: computing array length is done in various ways
Bram Moolenaar <Bram@vim.org>
parents:
24747
diff
changeset
|
6541 for (match = 0; match < (int)ARRAY_LENGTH(names); ++match) |
27875
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6542 { |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6543 if (match_str((char_u *)names[match], regmatch, *matches, |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6544 count, (loop == 0), fuzzy, fuzzystr, fuzmatch)) |
7 | 6545 { |
6546 if (loop == 0) | |
6547 num_normal++; | |
6548 else | |
27875
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6549 count++; |
7 | 6550 } |
27875
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6551 } |
7 | 6552 } |
6553 for (opt_idx = 0; (str = (char_u *)options[opt_idx].fullname) != NULL; | |
6554 opt_idx++) | |
6555 { | |
6556 if (options[opt_idx].var == NULL) | |
6557 continue; | |
6558 if (xp->xp_context == EXPAND_BOOL_SETTINGS | |
6559 && !(options[opt_idx].flags & P_BOOL)) | |
6560 continue; | |
18100
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
6561 is_term_opt = istermoption_idx(opt_idx); |
7 | 6562 if (is_term_opt && num_normal > 0) |
6563 continue; | |
27875
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6564 |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6565 if (match_str(str, regmatch, *matches, count, (loop == 0), |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6566 fuzzy, fuzzystr, fuzmatch)) |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6567 { |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6568 if (loop == 0) |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6569 { |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6570 if (is_term_opt) |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6571 num_term++; |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6572 else |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6573 num_normal++; |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6574 } |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6575 else |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6576 count++; |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6577 } |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6578 else if (!fuzzy && options[opt_idx].shortname != NULL |
7 | 6579 && vim_regexec(regmatch, |
28809
d0241e74bfdb
patch 8.2.4928: various white space and cosmetic mistakes
Bram Moolenaar <Bram@vim.org>
parents:
28804
diff
changeset
|
6580 (char_u *)options[opt_idx].shortname, (colnr_T)0)) |
27875
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6581 { |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6582 // Compare against the abbreviated option name (for regular |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6583 // expression match). Fuzzy matching (previous if) already |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6584 // matches against both the expanded and abbreviated names. |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6585 if (loop == 0) |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6586 { |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6587 if (is_term_opt) |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6588 num_term++; |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6589 else |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6590 num_normal++; |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6591 } |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6592 else |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6593 (*matches)[count++] = vim_strsave(str); |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6594 } |
7 | 6595 else if (is_term_opt) |
6596 { | |
6597 name_buf[0] = '<'; | |
6598 name_buf[1] = 't'; | |
6599 name_buf[2] = '_'; | |
6600 name_buf[3] = str[2]; | |
6601 name_buf[4] = str[3]; | |
6602 name_buf[5] = '>'; | |
6603 name_buf[6] = NUL; | |
27875
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6604 |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6605 if (match_str(name_buf, regmatch, *matches, count, (loop == 0), |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6606 fuzzy, fuzzystr, fuzmatch)) |
7 | 6607 { |
27875
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6608 if (loop == 0) |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6609 num_term++; |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6610 else |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6611 count++; |
7 | 6612 } |
6613 } | |
6614 } | |
27875
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6615 |
7 | 6616 /* |
6617 * Check terminal key codes, these are not in the option table | |
6618 */ | |
6619 if (xp->xp_context != EXPAND_BOOL_SETTINGS && num_normal == 0) | |
6620 { | |
6621 for (opt_idx = 0; (str = get_termcode(opt_idx)) != NULL; opt_idx++) | |
6622 { | |
6623 if (!isprint(str[0]) || !isprint(str[1])) | |
6624 continue; | |
6625 | |
6626 name_buf[0] = 't'; | |
6627 name_buf[1] = '_'; | |
6628 name_buf[2] = str[0]; | |
6629 name_buf[3] = str[1]; | |
6630 name_buf[4] = NUL; | |
6631 | |
27875
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6632 if (match_str(name_buf, regmatch, *matches, count, |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6633 (loop == 0), fuzzy, fuzzystr, fuzmatch)) |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6634 { |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6635 if (loop == 0) |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6636 num_term++; |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6637 else |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6638 count++; |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6639 } |
7 | 6640 else |
6641 { | |
6642 name_buf[0] = '<'; | |
6643 name_buf[1] = 't'; | |
6644 name_buf[2] = '_'; | |
6645 name_buf[3] = str[0]; | |
6646 name_buf[4] = str[1]; | |
6647 name_buf[5] = '>'; | |
6648 name_buf[6] = NUL; | |
6649 | |
27875
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6650 if (match_str(name_buf, regmatch, *matches, count, |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6651 (loop == 0), fuzzy, fuzzystr, |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6652 fuzmatch)) |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6653 { |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6654 if (loop == 0) |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6655 num_term++; |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6656 else |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6657 count++; |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6658 } |
7 | 6659 } |
6660 } | |
6661 | |
6662 /* | |
6663 * Check special key names. | |
6664 */ | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6665 regmatch->rm_ic = TRUE; // ignore case here |
7 | 6666 for (opt_idx = 0; (str = get_key_name(opt_idx)) != NULL; opt_idx++) |
6667 { | |
6668 name_buf[0] = '<'; | |
6669 STRCPY(name_buf + 1, str); | |
6670 STRCAT(name_buf, ">"); | |
6671 | |
27875
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6672 if (match_str(name_buf, regmatch, *matches, count, (loop == 0), |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6673 fuzzy, fuzzystr, fuzmatch)) |
7 | 6674 { |
6675 if (loop == 0) | |
6676 num_term++; | |
6677 else | |
27875
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6678 count++; |
7 | 6679 } |
6680 } | |
6681 } | |
6682 if (loop == 0) | |
6683 { | |
6684 if (num_normal > 0) | |
27875
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6685 *numMatches = num_normal; |
7 | 6686 else if (num_term > 0) |
27875
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6687 *numMatches = num_term; |
7 | 6688 else |
6689 return OK; | |
27875
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6690 if (!fuzzy) |
7 | 6691 { |
27875
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6692 *matches = ALLOC_MULT(char_u *, *numMatches); |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6693 if (*matches == NULL) |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6694 { |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6695 *matches = (char_u **)""; |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6696 return FAIL; |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6697 } |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6698 } |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6699 else |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6700 { |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6701 fuzmatch = ALLOC_MULT(fuzmatch_str_T, *numMatches); |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6702 if (fuzmatch == NULL) |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6703 { |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6704 *matches = (char_u **)""; |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6705 return FAIL; |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6706 } |
7 | 6707 } |
6708 } | |
6709 } | |
27875
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6710 |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6711 if (fuzzy && |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6712 fuzzymatches_to_strmatches(fuzmatch, matches, count, FALSE) == FAIL) |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6713 return FAIL; |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6714 |
7 | 6715 return OK; |
6716 } | |
6717 | |
6718 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6719 ExpandOldSetting(int *num_file, char_u ***file) |
7 | 6720 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6721 char_u *var = NULL; // init for GCC |
7 | 6722 char_u *buf; |
6723 | |
6724 *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
|
6725 *file = ALLOC_ONE(char_u *); |
7 | 6726 if (*file == NULL) |
6727 return FAIL; | |
6728 | |
6729 /* | |
6730 * For a terminal key code expand_option_idx is < 0. | |
6731 */ | |
6732 if (expand_option_idx < 0) | |
6733 { | |
6734 var = find_termcode(expand_option_name + 2); | |
6735 if (var == NULL) | |
6736 expand_option_idx = findoption(expand_option_name); | |
6737 } | |
6738 | |
6739 if (expand_option_idx >= 0) | |
6740 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6741 // put string of option value in NameBuff |
7 | 6742 option_value2string(&options[expand_option_idx], expand_option_flags); |
6743 var = NameBuff; | |
6744 } | |
6745 else if (var == NULL) | |
6746 var = (char_u *)""; | |
6747 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6748 // 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
|
6749 // what happens in do_set(). |
7 | 6750 buf = vim_strsave_escaped(var, escape_chars); |
6751 | |
6752 if (buf == NULL) | |
6753 { | |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13242
diff
changeset
|
6754 VIM_CLEAR(*file); |
7 | 6755 return FAIL; |
6756 } | |
6757 | |
6758 #ifdef BACKSLASH_IN_FILENAME | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6759 // 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
|
6760 // 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
|
6761 for (var = buf; *var != NUL; MB_PTR_ADV(var)) |
7 | 6762 if (var[0] == '\\' && var[1] == '\\' |
6763 && expand_option_idx >= 0 | |
6764 && (options[expand_option_idx].flags & P_EXPAND) | |
6765 && vim_isfilec(var[2]) | |
6766 && (var[2] != '\\' || (var == buf && var[4] != '\\'))) | |
1622 | 6767 STRMOVE(var, var + 1); |
7 | 6768 #endif |
6769 | |
6770 *file[0] = buf; | |
6771 *num_file = 1; | |
6772 return OK; | |
6773 } | |
6774 | |
6775 /* | |
6776 * Get the value for the numeric or string option *opp in a nice format into | |
6777 * NameBuff[]. Must not be called with a hidden option! | |
6778 */ | |
6779 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6780 option_value2string( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6781 struct vimoption *opp, |
26441
65ab0b035dd8
patch 8.2.3751: cannot assign a lambda to an option that takes a function
Bram Moolenaar <Bram@vim.org>
parents:
26400
diff
changeset
|
6782 int scope) // OPT_GLOBAL and/or OPT_LOCAL |
7 | 6783 { |
6784 char_u *varp; | |
6785 | |
26441
65ab0b035dd8
patch 8.2.3751: cannot assign a lambda to an option that takes a function
Bram Moolenaar <Bram@vim.org>
parents:
26400
diff
changeset
|
6786 varp = get_varp_scope(opp, scope); |
7 | 6787 |
6788 if (opp->flags & P_NUM) | |
6789 { | |
6790 long wc = 0; | |
6791 | |
6792 if (wc_use_keyname(varp, &wc)) | |
6793 STRCPY(NameBuff, get_special_key_name((int)wc, 0)); | |
6794 else if (wc != 0) | |
6795 STRCPY(NameBuff, transchar((int)wc)); | |
6796 else | |
6797 sprintf((char *)NameBuff, "%ld", *(long *)varp); | |
6798 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6799 else // P_STRING |
7 | 6800 { |
6801 varp = *(char_u **)(varp); | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6802 if (varp == NULL) // just in case |
7 | 6803 NameBuff[0] = NUL; |
6804 #ifdef FEAT_CRYPT | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6805 // don't show the actual value of 'key', only that it's set |
840 | 6806 else if (opp->var == (char_u *)&p_key && *varp) |
7 | 6807 STRCPY(NameBuff, "*****"); |
6808 #endif | |
6809 else if (opp->flags & P_EXPAND) | |
6810 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
|
6811 // Translate 'pastetoggle' into special key names |
7 | 6812 else if ((char_u **)opp->var == &p_pt) |
6813 str2specialbuf(p_pt, NameBuff, MAXPATHL); | |
6814 else | |
419 | 6815 vim_strncpy(NameBuff, varp, MAXPATHL - 1); |
7 | 6816 } |
6817 } | |
6818 | |
6819 /* | |
6820 * Return TRUE if "varp" points to 'wildchar' or 'wildcharm' and it can be | |
6821 * printed as a keyname. | |
6822 * "*wcp" is set to the value of the option if it's 'wildchar' or 'wildcharm'. | |
6823 */ | |
6824 static int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6825 wc_use_keyname(char_u *varp, long *wcp) |
7 | 6826 { |
6827 if (((long *)varp == &p_wc) || ((long *)varp == &p_wcm)) | |
6828 { | |
6829 *wcp = *(long *)varp; | |
6830 if (IS_SPECIAL(*wcp) || find_special_key_in_table((int)*wcp) >= 0) | |
6831 return TRUE; | |
6832 } | |
6833 return FALSE; | |
6834 } | |
6835 | |
6836 /* | |
6837 * Return TRUE if "x" is present in 'shortmess' option, or | |
6838 * 'shortmess' contains 'a' and "x" is present in SHM_A. | |
6839 */ | |
6840 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6841 shortmess(int x) |
7 | 6842 { |
3384 | 6843 return p_shm != NULL && |
6844 ( vim_strchr(p_shm, x) != NULL | |
7 | 6845 || (vim_strchr(p_shm, 'a') != NULL |
6846 && vim_strchr((char_u *)SHM_A, x) != NULL)); | |
6847 } | |
6848 | |
6849 /* | |
6850 * paste_option_changed() - Called after p_paste was set or reset. | |
6851 */ | |
6852 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6853 paste_option_changed(void) |
7 | 6854 { |
6855 static int old_p_paste = FALSE; | |
6856 static int save_sm = 0; | |
7113
83b3261352b3
commit https://github.com/vim/vim/commit/54f018cd5994c3ffcd0740526e56db6934edf1f2
Christian Brabandt <cb@256bit.org>
parents:
7058
diff
changeset
|
6857 static int save_sta = 0; |
7 | 6858 static int save_ru = 0; |
6859 #ifdef FEAT_RIGHTLEFT | |
6860 static int save_ri = 0; | |
6861 static int save_hkmap = 0; | |
6862 #endif | |
6863 buf_T *buf; | |
6864 | |
6865 if (p_paste) | |
6866 { | |
6867 /* | |
6868 * Paste switched from off to on. | |
6869 * Save the current values, so they can be restored later. | |
6870 */ | |
6871 if (!old_p_paste) | |
6872 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6873 // save options for each buffer |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6874 FOR_ALL_BUFFERS(buf) |
7 | 6875 { |
6876 buf->b_p_tw_nopaste = buf->b_p_tw; | |
6877 buf->b_p_wm_nopaste = buf->b_p_wm; | |
6878 buf->b_p_sts_nopaste = buf->b_p_sts; | |
6879 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
|
6880 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
|
6881 #ifdef FEAT_VARTABS |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
6882 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
|
6883 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
|
6884 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
|
6885 ? 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
|
6886 #endif |
7 | 6887 } |
6888 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6889 // save global options |
7 | 6890 save_sm = p_sm; |
7113
83b3261352b3
commit https://github.com/vim/vim/commit/54f018cd5994c3ffcd0740526e56db6934edf1f2
Christian Brabandt <cb@256bit.org>
parents:
7058
diff
changeset
|
6891 save_sta = p_sta; |
7 | 6892 save_ru = p_ru; |
6893 #ifdef FEAT_RIGHTLEFT | |
6894 save_ri = p_ri; | |
6895 save_hkmap = p_hkmap; | |
6896 #endif | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6897 // 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
|
6898 p_ai_nopaste = p_ai; |
83b3261352b3
commit https://github.com/vim/vim/commit/54f018cd5994c3ffcd0740526e56db6934edf1f2
Christian Brabandt <cb@256bit.org>
parents:
7058
diff
changeset
|
6899 p_et_nopaste = p_et; |
83b3261352b3
commit https://github.com/vim/vim/commit/54f018cd5994c3ffcd0740526e56db6934edf1f2
Christian Brabandt <cb@256bit.org>
parents:
7058
diff
changeset
|
6900 p_sts_nopaste = p_sts; |
7 | 6901 p_tw_nopaste = p_tw; |
6902 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
|
6903 #ifdef FEAT_VARTABS |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
6904 if (p_vsts_nopaste) |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
6905 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
|
6906 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
|
6907 #endif |
7 | 6908 } |
6909 | |
6910 /* | |
6911 * Always set the option values, also when 'paste' is set when it is | |
6912 * already on. | |
6913 */ | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6914 // set options for each buffer |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6915 FOR_ALL_BUFFERS(buf) |
7 | 6916 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6917 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
|
6918 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
|
6919 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
|
6920 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
|
6921 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
|
6922 #ifdef FEAT_VARTABS |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
6923 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
|
6924 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
|
6925 buf->b_p_vsts = empty_option; |
27434
c1702fd7e716
patch 8.2.4245: ":retab 0" may cause illegal memory access
Bram Moolenaar <Bram@vim.org>
parents:
27426
diff
changeset
|
6926 VIM_CLEAR(buf->b_p_vsts_array); |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
6927 #endif |
7 | 6928 } |
6929 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6930 // set global options |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6931 p_sm = 0; // no showmatch |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6932 p_sta = 0; // no smarttab |
7 | 6933 if (p_ru) |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6934 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
|
6935 p_ru = 0; // no ruler |
7 | 6936 #ifdef FEAT_RIGHTLEFT |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6937 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
|
6938 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
|
6939 #endif |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6940 // set global values for local buffer options |
7 | 6941 p_tw = 0; |
6942 p_wm = 0; | |
6943 p_sts = 0; | |
6944 p_ai = 0; | |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
6945 #ifdef FEAT_VARTABS |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
6946 if (p_vsts) |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
6947 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
|
6948 p_vsts = empty_option; |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
6949 #endif |
7 | 6950 } |
6951 | |
6952 /* | |
6953 * Paste switched from on to off: Restore saved values. | |
6954 */ | |
6955 else if (old_p_paste) | |
6956 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6957 // restore options for each buffer |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6958 FOR_ALL_BUFFERS(buf) |
7 | 6959 { |
6960 buf->b_p_tw = buf->b_p_tw_nopaste; | |
6961 buf->b_p_wm = buf->b_p_wm_nopaste; | |
6962 buf->b_p_sts = buf->b_p_sts_nopaste; | |
6963 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
|
6964 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
|
6965 #ifdef FEAT_VARTABS |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
6966 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
|
6967 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
|
6968 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
|
6969 ? vim_strsave(buf->b_p_vsts_nopaste) : empty_option; |
27434
c1702fd7e716
patch 8.2.4245: ":retab 0" may cause illegal memory access
Bram Moolenaar <Bram@vim.org>
parents:
27426
diff
changeset
|
6970 vim_free(buf->b_p_vsts_array); |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
6971 if (buf->b_p_vsts && buf->b_p_vsts != empty_option) |
25733
4b2616ffe32b
patch 8.2.3402: invalid memory access when using :retab with large value
Bram Moolenaar <Bram@vim.org>
parents:
25487
diff
changeset
|
6972 (void)tabstop_set(buf->b_p_vsts, &buf->b_p_vsts_array); |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
6973 else |
27434
c1702fd7e716
patch 8.2.4245: ":retab 0" may cause illegal memory access
Bram Moolenaar <Bram@vim.org>
parents:
27426
diff
changeset
|
6974 buf->b_p_vsts_array = NULL; |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
6975 #endif |
7 | 6976 } |
6977 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6978 // restore global options |
7 | 6979 p_sm = save_sm; |
7113
83b3261352b3
commit https://github.com/vim/vim/commit/54f018cd5994c3ffcd0740526e56db6934edf1f2
Christian Brabandt <cb@256bit.org>
parents:
7058
diff
changeset
|
6980 p_sta = save_sta; |
7 | 6981 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
|
6982 status_redraw_all(); // redraw to draw the ruler |
7 | 6983 p_ru = save_ru; |
6984 #ifdef FEAT_RIGHTLEFT | |
6985 p_ri = save_ri; | |
6986 p_hkmap = save_hkmap; | |
6987 #endif | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
6988 // 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
|
6989 p_ai = p_ai_nopaste; |
83b3261352b3
commit https://github.com/vim/vim/commit/54f018cd5994c3ffcd0740526e56db6934edf1f2
Christian Brabandt <cb@256bit.org>
parents:
7058
diff
changeset
|
6990 p_et = p_et_nopaste; |
83b3261352b3
commit https://github.com/vim/vim/commit/54f018cd5994c3ffcd0740526e56db6934edf1f2
Christian Brabandt <cb@256bit.org>
parents:
7058
diff
changeset
|
6991 p_sts = p_sts_nopaste; |
7 | 6992 p_tw = p_tw_nopaste; |
6993 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
|
6994 #ifdef FEAT_VARTABS |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
6995 if (p_vsts) |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14099
diff
changeset
|
6996 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
|
6997 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
|
6998 #endif |
7 | 6999 } |
7000 | |
7001 old_p_paste = p_paste; | |
7002 } | |
7003 | |
7004 /* | |
7005 * vimrc_found() - Called when a ".vimrc" or "VIMINIT" has been found. | |
7006 * | |
7007 * Reset 'compatible' and set the values for options that didn't get set yet | |
7008 * to the Vim defaults. | |
7009 * Don't do this if the 'compatible' option has been set or reset before. | |
819 | 7010 * When "fname" is not NULL, use it to set $"envname" when it wasn't set yet. |
7 | 7011 */ |
7012 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
7013 vimrc_found(char_u *fname, char_u *envname) |
819 | 7014 { |
7015 int opt_idx; | |
826 | 7016 int dofree = FALSE; |
819 | 7017 char_u *p; |
7 | 7018 |
7019 if (!option_was_set((char_u *)"cp")) | |
7020 { | |
7021 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
|
7022 for (opt_idx = 0; !istermoption_idx(opt_idx); opt_idx++) |
7 | 7023 if (!(options[opt_idx].flags & (P_WAS_SET|P_VI_DEF))) |
7024 set_option_default(opt_idx, OPT_FREE, FALSE); | |
7025 didset_options(); | |
7040
17a3fa77e941
commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents:
7034
diff
changeset
|
7026 didset_options2(); |
7 | 7027 } |
819 | 7028 |
7029 if (fname != NULL) | |
7030 { | |
7031 p = vim_getenv(envname, &dofree); | |
7032 if (p == NULL) | |
7033 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
7034 // Set $MYVIMRC to the first vimrc file found. |
819 | 7035 p = FullName_save(fname, FALSE); |
7036 if (p != NULL) | |
7037 { | |
7038 vim_setenv(envname, p); | |
7039 vim_free(p); | |
7040 } | |
7041 } | |
7042 else if (dofree) | |
7043 vim_free(p); | |
7044 } | |
7 | 7045 } |
7046 | |
7047 /* | |
7048 * Set 'compatible' on or off. Called for "-C" and "-N" command line arg. | |
7049 */ | |
7050 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
7051 change_compatible(int on) |
7 | 7052 { |
838 | 7053 int opt_idx; |
7054 | |
7 | 7055 if (p_cp != on) |
7056 { | |
7057 p_cp = on; | |
7058 compatible_set(); | |
7059 } | |
838 | 7060 opt_idx = findoption((char_u *)"cp"); |
7061 if (opt_idx >= 0) | |
7062 options[opt_idx].flags |= P_WAS_SET; | |
7 | 7063 } |
7064 | |
7065 /* | |
7066 * 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
|
7067 * Only works correctly for global options. |
7 | 7068 */ |
7069 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
7070 option_was_set(char_u *name) |
7 | 7071 { |
7072 int idx; | |
7073 | |
7074 idx = findoption(name); | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
7075 if (idx < 0) // unknown option |
7 | 7076 return FALSE; |
7077 if (options[idx].flags & P_WAS_SET) | |
7078 return TRUE; | |
7079 return FALSE; | |
7080 } | |
7081 | |
7082 /* | |
3980 | 7083 * Reset the flag indicating option "name" was set. |
7084 */ | |
14748
00da090af0ab
patch 8.1.0386: cannot test with non-default option value
Christian Brabandt <cb@256bit.org>
parents:
14702
diff
changeset
|
7085 int |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
7086 reset_option_was_set(char_u *name) |
3980 | 7087 { |
7088 int idx = findoption(name); | |
7089 | |
7090 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
|
7091 { |
3980 | 7092 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
|
7093 return OK; |
00da090af0ab
patch 8.1.0386: cannot test with non-default option value
Christian Brabandt <cb@256bit.org>
parents:
14702
diff
changeset
|
7094 } |
00da090af0ab
patch 8.1.0386: cannot test with non-default option value
Christian Brabandt <cb@256bit.org>
parents:
14702
diff
changeset
|
7095 return FAIL; |
3980 | 7096 } |
7097 | |
7098 /* | |
7 | 7099 * compatible_set() - Called when 'compatible' has been set or unset. |
7100 * | |
7101 * When 'compatible' set: Set all relevant options (those that have the P_VIM) | |
7102 * flag) to a Vi compatible value. | |
7103 * When 'compatible' is unset: Set all options that have a different default | |
7104 * for Vim (without the P_VI_DEF flag) to that default. | |
7105 */ | |
7106 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
7107 compatible_set(void) |
7 | 7108 { |
7109 int opt_idx; | |
7110 | |
18100
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
7111 for (opt_idx = 0; !istermoption_idx(opt_idx); opt_idx++) |
7 | 7112 if ( ((options[opt_idx].flags & P_VIM) && p_cp) |
7113 || (!(options[opt_idx].flags & P_VI_DEF) && !p_cp)) | |
7114 set_option_default(opt_idx, OPT_FREE, p_cp); | |
7115 didset_options(); | |
7040
17a3fa77e941
commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents:
7034
diff
changeset
|
7116 didset_options2(); |
7 | 7117 } |
7118 | |
18100
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
7119 #if defined(FEAT_LINEBREAK) || defined(PROTO) |
7 | 7120 |
7121 /* | |
7122 * fill_breakat_flags() -- called when 'breakat' changes value. | |
7123 */ | |
18100
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
7124 void |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
7125 fill_breakat_flags(void) |
7 | 7126 { |
500 | 7127 char_u *p; |
7 | 7128 int i; |
7129 | |
7130 for (i = 0; i < 256; i++) | |
7131 breakat_flags[i] = FALSE; | |
7132 | |
7133 if (p_breakat != NULL) | |
500 | 7134 for (p = p_breakat; *p; p++) |
7135 breakat_flags[*p] = TRUE; | |
7 | 7136 } |
7137 #endif | |
7138 | |
7139 /* | |
7140 * Check if backspacing over something is allowed. | |
7141 */ | |
7142 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
7143 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
|
7144 int what) // BS_INDENT, BS_EOL, BS_START or BS_NOSTOP |
7 | 7145 { |
14029
d9fc15c833d5
patch 8.1.0032: BS in prompt buffer starts new line
Christian Brabandt <cb@256bit.org>
parents:
14019
diff
changeset
|
7146 #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
|
7147 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
|
7148 return FALSE; |
d9fc15c833d5
patch 8.1.0032: BS in prompt buffer starts new line
Christian Brabandt <cb@256bit.org>
parents:
14019
diff
changeset
|
7149 #endif |
7 | 7150 switch (*p_bs) |
7151 { | |
20069
9a67d41708d2
patch 8.2.0590: no 'backspace' value allows ignoring the insertion point
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
7152 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
|
7153 case '2': return (what != BS_NOSTOP); |
7 | 7154 case '1': return (what != BS_START); |
7155 case '0': return FALSE; | |
7156 } | |
7157 return vim_strchr(p_bs, what) != NULL; | |
7158 } | |
7159 | |
7160 /* | |
15713
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15701
diff
changeset
|
7161 * 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
|
7162 * 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
|
7163 */ |
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15701
diff
changeset
|
7164 long |
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15701
diff
changeset
|
7165 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
|
7166 { |
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15701
diff
changeset
|
7167 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
|
7168 } |
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15701
diff
changeset
|
7169 |
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15701
diff
changeset
|
7170 /* |
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15701
diff
changeset
|
7171 * 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
|
7172 * 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
|
7173 */ |
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15701
diff
changeset
|
7174 long |
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15701
diff
changeset
|
7175 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
|
7176 { |
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15701
diff
changeset
|
7177 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
|
7178 } |
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15701
diff
changeset
|
7179 |
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15701
diff
changeset
|
7180 /* |
6243 | 7181 * Get the local or global value of 'backupcopy'. |
7182 */ | |
7183 unsigned int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
7184 get_bkc_value(buf_T *buf) |
6243 | 7185 { |
7186 return buf->b_bkc_flags ? buf->b_bkc_flags : bkc_flags; | |
7187 } | |
9852
4eea48b76d03
commit https://github.com/vim/vim/commit/95ec9d6a6ab3117d60ff638670a803d43974ba51
Christian Brabandt <cb@256bit.org>
parents:
9798
diff
changeset
|
7188 |
28405
473cfd79bcd8
patch 8.2.4727: unused code
Bram Moolenaar <Bram@vim.org>
parents:
28357
diff
changeset
|
7189 #if defined(FEAT_LINEBREAK) || defined(PROTO) |
25380
ac88cd21ae88
patch 8.2.3227: 'virtualedit' can only be set globally
Bram Moolenaar <Bram@vim.org>
parents:
25320
diff
changeset
|
7190 /* |
27128
164d59ddd48a
patch 8.2.4093: cached breakindent values not initialized properly
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
7191 * Get the local or global value of 'formatlistpat'. |
164d59ddd48a
patch 8.2.4093: cached breakindent values not initialized properly
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
7192 */ |
164d59ddd48a
patch 8.2.4093: cached breakindent values not initialized properly
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
7193 char_u * |
164d59ddd48a
patch 8.2.4093: cached breakindent values not initialized properly
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
7194 get_flp_value(buf_T *buf) |
164d59ddd48a
patch 8.2.4093: cached breakindent values not initialized properly
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
7195 { |
164d59ddd48a
patch 8.2.4093: cached breakindent values not initialized properly
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
7196 if (buf->b_p_flp == NULL || *buf->b_p_flp == NUL) |
164d59ddd48a
patch 8.2.4093: cached breakindent values not initialized properly
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
7197 return p_flp; |
164d59ddd48a
patch 8.2.4093: cached breakindent values not initialized properly
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
7198 return buf->b_p_flp; |
164d59ddd48a
patch 8.2.4093: cached breakindent values not initialized properly
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
7199 } |
28405
473cfd79bcd8
patch 8.2.4727: unused code
Bram Moolenaar <Bram@vim.org>
parents:
28357
diff
changeset
|
7200 #endif |
27128
164d59ddd48a
patch 8.2.4093: cached breakindent values not initialized properly
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
7201 |
164d59ddd48a
patch 8.2.4093: cached breakindent values not initialized properly
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
7202 /* |
25380
ac88cd21ae88
patch 8.2.3227: 'virtualedit' can only be set globally
Bram Moolenaar <Bram@vim.org>
parents:
25320
diff
changeset
|
7203 * Get the local or global value of the 'virtualedit' flags. |
ac88cd21ae88
patch 8.2.3227: 'virtualedit' can only be set globally
Bram Moolenaar <Bram@vim.org>
parents:
25320
diff
changeset
|
7204 */ |
ac88cd21ae88
patch 8.2.3227: 'virtualedit' can only be set globally
Bram Moolenaar <Bram@vim.org>
parents:
25320
diff
changeset
|
7205 unsigned int |
ac88cd21ae88
patch 8.2.3227: 'virtualedit' can only be set globally
Bram Moolenaar <Bram@vim.org>
parents:
25320
diff
changeset
|
7206 get_ve_flags(void) |
ac88cd21ae88
patch 8.2.3227: 'virtualedit' can only be set globally
Bram Moolenaar <Bram@vim.org>
parents:
25320
diff
changeset
|
7207 { |
25487
c26ff3203b43
patch 8.2.3280: 'virtualedit' local to buffer is not the best solution
Bram Moolenaar <Bram@vim.org>
parents:
25419
diff
changeset
|
7208 return (curwin->w_ve_flags ? curwin->w_ve_flags : ve_flags) |
c26ff3203b43
patch 8.2.3280: 'virtualedit' local to buffer is not the best solution
Bram Moolenaar <Bram@vim.org>
parents:
25419
diff
changeset
|
7209 & ~(VE_NONE | VE_NONEU); |
25380
ac88cd21ae88
patch 8.2.3227: 'virtualedit' can only be set globally
Bram Moolenaar <Bram@vim.org>
parents:
25320
diff
changeset
|
7210 } |
ac88cd21ae88
patch 8.2.3227: 'virtualedit' can only be set globally
Bram Moolenaar <Bram@vim.org>
parents:
25320
diff
changeset
|
7211 |
18574
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
7212 #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
|
7213 /* |
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
7214 * 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
|
7215 */ |
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
7216 char_u * |
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
7217 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
|
7218 { |
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
7219 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
|
7220 return p_sbr; |
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
7221 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
|
7222 return empty_option; |
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
7223 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
|
7224 } |
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
7225 #endif |
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
7226 |
9858
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9854
diff
changeset
|
7227 #if defined(FEAT_EVAL) || defined(PROTO) |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9854
diff
changeset
|
7228 /* |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9854
diff
changeset
|
7229 * Get window or buffer local options. |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9854
diff
changeset
|
7230 */ |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9854
diff
changeset
|
7231 dict_T * |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9854
diff
changeset
|
7232 get_winbuf_options(int bufopt) |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9854
diff
changeset
|
7233 { |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9854
diff
changeset
|
7234 dict_T *d; |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9854
diff
changeset
|
7235 int opt_idx; |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9854
diff
changeset
|
7236 |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9854
diff
changeset
|
7237 d = dict_alloc(); |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9854
diff
changeset
|
7238 if (d == NULL) |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9854
diff
changeset
|
7239 return NULL; |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9854
diff
changeset
|
7240 |
18100
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
7241 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
|
7242 { |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9854
diff
changeset
|
7243 struct vimoption *opt = &options[opt_idx]; |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9854
diff
changeset
|
7244 |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9854
diff
changeset
|
7245 if ((bufopt && (opt->indir & PV_BUF)) |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9854
diff
changeset
|
7246 || (!bufopt && (opt->indir & PV_WIN))) |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9854
diff
changeset
|
7247 { |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9854
diff
changeset
|
7248 char_u *varp = get_varp(opt); |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9854
diff
changeset
|
7249 |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9854
diff
changeset
|
7250 if (varp != NULL) |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9854
diff
changeset
|
7251 { |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9854
diff
changeset
|
7252 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
|
7253 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
|
7254 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
|
7255 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
|
7256 else |
14301
3c80092eb211
patch 8.1.0166: using dict_add_nr_str() is clumsy
Christian Brabandt <cb@256bit.org>
parents:
14243
diff
changeset
|
7257 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
|
7258 } |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9854
diff
changeset
|
7259 } |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9854
diff
changeset
|
7260 } |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9854
diff
changeset
|
7261 |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9854
diff
changeset
|
7262 return d; |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9854
diff
changeset
|
7263 } |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9854
diff
changeset
|
7264 #endif |
18068
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
7265 |
18100
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
7266 #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
|
7267 /* |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
7268 * 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
|
7269 */ |
18100
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
7270 int |
18068
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
7271 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
|
7272 { |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
7273 char_u *p; |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
7274 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
|
7275 |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
7276 if (val == NULL) |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
7277 p = wp->w_p_culopt; |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
7278 else |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
7279 p = val; |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
7280 while (*p != NUL) |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
7281 { |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
7282 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
|
7283 { |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
7284 p += 4; |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
7285 culopt_flags_new |= CULOPT_LINE; |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
7286 } |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
7287 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
|
7288 { |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
7289 p += 4; |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
7290 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
|
7291 } |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
7292 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
|
7293 { |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
7294 p += 6; |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
7295 culopt_flags_new |= CULOPT_NBR; |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
7296 } |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
7297 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
|
7298 { |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
7299 p += 10; |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
7300 culopt_flags_new |= CULOPT_SCRLINE; |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
7301 } |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
7302 |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
7303 if (*p != ',' && *p != NUL) |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
7304 return FAIL; |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
7305 if (*p == ',') |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
7306 ++p; |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
7307 } |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
7308 |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
7309 // 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
|
7310 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
|
7311 return FAIL; |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
7312 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
|
7313 |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
7314 return OK; |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
7315 } |
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
7316 #endif |
23272
a84e7abb0c92
patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
7317 |
a84e7abb0c92
patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
7318 /* |
a84e7abb0c92
patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
7319 * Get the value of 'magic' adjusted for Vim9 script. |
a84e7abb0c92
patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
7320 */ |
a84e7abb0c92
patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
7321 int |
a84e7abb0c92
patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
7322 magic_isset(void) |
a84e7abb0c92
patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
7323 { |
a84e7abb0c92
patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
7324 switch (magic_overruled) |
a84e7abb0c92
patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
7325 { |
23505
bb29b09902d5
patch 8.2.2295: incsearch does not detect empty pattern properly
Bram Moolenaar <Bram@vim.org>
parents:
23467
diff
changeset
|
7326 case OPTION_MAGIC_ON: return TRUE; |
bb29b09902d5
patch 8.2.2295: incsearch does not detect empty pattern properly
Bram Moolenaar <Bram@vim.org>
parents:
23467
diff
changeset
|
7327 case OPTION_MAGIC_OFF: return FALSE; |
bb29b09902d5
patch 8.2.2295: incsearch does not detect empty pattern properly
Bram Moolenaar <Bram@vim.org>
parents:
23467
diff
changeset
|
7328 case OPTION_MAGIC_NOT_SET: break; |
23272
a84e7abb0c92
patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
7329 } |
a84e7abb0c92
patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
7330 #ifdef FEAT_EVAL |
a84e7abb0c92
patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
7331 if (in_vim9script()) |
a84e7abb0c92
patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
7332 return TRUE; |
a84e7abb0c92
patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
7333 #endif |
a84e7abb0c92
patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
7334 return p_magic; |
a84e7abb0c92
patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
7335 } |
26175
6b4f017d7005
patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents:
25990
diff
changeset
|
7336 |
6b4f017d7005
patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents:
25990
diff
changeset
|
7337 /* |
6b4f017d7005
patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents:
25990
diff
changeset
|
7338 * Set the callback function value for an option that accepts a function name, |
6b4f017d7005
patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents:
25990
diff
changeset
|
7339 * lambda, et al. (e.g. 'operatorfunc', 'tagfunc', etc.) |
6b4f017d7005
patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents:
25990
diff
changeset
|
7340 * Returns OK if the option is successfully set to a function, otherwise |
6b4f017d7005
patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents:
25990
diff
changeset
|
7341 * returns FAIL. |
6b4f017d7005
patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents:
25990
diff
changeset
|
7342 */ |
6b4f017d7005
patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents:
25990
diff
changeset
|
7343 int |
6b4f017d7005
patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents:
25990
diff
changeset
|
7344 option_set_callback_func(char_u *optval UNUSED, callback_T *optcb UNUSED) |
6b4f017d7005
patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents:
25990
diff
changeset
|
7345 { |
6b4f017d7005
patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents:
25990
diff
changeset
|
7346 #ifdef FEAT_EVAL |
6b4f017d7005
patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents:
25990
diff
changeset
|
7347 typval_T *tv; |
6b4f017d7005
patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents:
25990
diff
changeset
|
7348 callback_T cb; |
6b4f017d7005
patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents:
25990
diff
changeset
|
7349 |
6b4f017d7005
patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents:
25990
diff
changeset
|
7350 if (optval == NULL || *optval == NUL) |
6b4f017d7005
patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents:
25990
diff
changeset
|
7351 { |
6b4f017d7005
patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents:
25990
diff
changeset
|
7352 free_callback(optcb); |
6b4f017d7005
patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents:
25990
diff
changeset
|
7353 return OK; |
6b4f017d7005
patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents:
25990
diff
changeset
|
7354 } |
6b4f017d7005
patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents:
25990
diff
changeset
|
7355 |
26362
dbe615b75f15
patch 8.2.3712: cannot use Vim9 lambda for 'tagfunc'
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
7356 if (*optval == '{' || (in_vim9script() && *optval == '(') |
26175
6b4f017d7005
patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents:
25990
diff
changeset
|
7357 || (STRNCMP(optval, "function(", 9) == 0) |
6b4f017d7005
patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents:
25990
diff
changeset
|
7358 || (STRNCMP(optval, "funcref(", 8) == 0)) |
6b4f017d7005
patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents:
25990
diff
changeset
|
7359 // Lambda expression or a funcref |
6b4f017d7005
patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents:
25990
diff
changeset
|
7360 tv = eval_expr(optval, NULL); |
6b4f017d7005
patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents:
25990
diff
changeset
|
7361 else |
6b4f017d7005
patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents:
25990
diff
changeset
|
7362 // treat everything else as a function name string |
26721
9c9b8d95b05f
patch 8.2.3889: duplicate code for translating script-local function name
Bram Moolenaar <Bram@vim.org>
parents:
26618
diff
changeset
|
7363 tv = alloc_string_tv(vim_strsave(optval)); |
26175
6b4f017d7005
patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents:
25990
diff
changeset
|
7364 if (tv == NULL) |
6b4f017d7005
patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents:
25990
diff
changeset
|
7365 return FAIL; |
6b4f017d7005
patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents:
25990
diff
changeset
|
7366 |
6b4f017d7005
patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents:
25990
diff
changeset
|
7367 cb = get_callback(tv); |
26452
65b4109a4297
patch 8.2.3756: might crash when callback is not valid
Bram Moolenaar <Bram@vim.org>
parents:
26441
diff
changeset
|
7368 if (cb.cb_name == NULL || *cb.cb_name == NUL) |
26175
6b4f017d7005
patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents:
25990
diff
changeset
|
7369 { |
6b4f017d7005
patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents:
25990
diff
changeset
|
7370 free_tv(tv); |
6b4f017d7005
patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents:
25990
diff
changeset
|
7371 return FAIL; |
6b4f017d7005
patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents:
25990
diff
changeset
|
7372 } |
6b4f017d7005
patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents:
25990
diff
changeset
|
7373 |
6b4f017d7005
patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents:
25990
diff
changeset
|
7374 free_callback(optcb); |
6b4f017d7005
patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents:
25990
diff
changeset
|
7375 set_callback(optcb, &cb); |
6b4f017d7005
patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents:
25990
diff
changeset
|
7376 free_tv(tv); |
27285
53edd190a607
patch 8.2.4171: cannot invoke option function using autoload import
Bram Moolenaar <Bram@vim.org>
parents:
27142
diff
changeset
|
7377 |
53edd190a607
patch 8.2.4171: cannot invoke option function using autoload import
Bram Moolenaar <Bram@vim.org>
parents:
27142
diff
changeset
|
7378 // when using Vim9 style "import.funcname" it needs to be expanded to |
53edd190a607
patch 8.2.4171: cannot invoke option function using autoload import
Bram Moolenaar <Bram@vim.org>
parents:
27142
diff
changeset
|
7379 // "import#funcname". |
53edd190a607
patch 8.2.4171: cannot invoke option function using autoload import
Bram Moolenaar <Bram@vim.org>
parents:
27142
diff
changeset
|
7380 expand_autload_callback(optcb); |
53edd190a607
patch 8.2.4171: cannot invoke option function using autoload import
Bram Moolenaar <Bram@vim.org>
parents:
27142
diff
changeset
|
7381 |
26175
6b4f017d7005
patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents:
25990
diff
changeset
|
7382 return OK; |
6b4f017d7005
patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents:
25990
diff
changeset
|
7383 #else |
6b4f017d7005
patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents:
25990
diff
changeset
|
7384 return FAIL; |
6b4f017d7005
patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents:
25990
diff
changeset
|
7385 #endif |
6b4f017d7005
patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents:
25990
diff
changeset
|
7386 } |